Searched refs:BytesPerInstWord (Results 1 - 9 of 9) sorted by relevance

/openjdk7/hotspot/src/cpu/sparc/vm/
H A DglobalDefinitions_sparc.hpp29 const int BytesPerInstWord = 4; variable
H A DvtableStubs_sparc.cpp116 int slop = 2*BytesPerInstWord; // 32-bit offset is this much larger than a 13-bit one
208 int slop = 2*BytesPerInstWord; // 32-bit offset is this much larger than a 13-bit one
219 const int slop = 2*BytesPerInstWord; // sethi;add (needed for long offsets)
222 const int basic = 5*BytesPerInstWord +
225 ((Universe::narrow_oop_base() == NULL) ? BytesPerInstWord : 2*BytesPerInstWord) : 0);
228 const int basic = (28 LP64_ONLY(+ 6)) * BytesPerInstWord +
231 ((Universe::narrow_oop_base() == NULL) ? BytesPerInstWord : 2*BytesPerInstWord) : 0);
H A DnativeInst_sparc.hpp169 address next_instruction_address() const { return addr_at(BytesPerInstWord); }
378 call->set_long_at(0 * BytesPerInstWord, call_instruction(destination, instr));
379 call->set_long_at(1 * BytesPerInstWord, nop_instruction());
380 assert(call->addr_at(2 * BytesPerInstWord) - instr == instruction_size, "instruction size");
453 instruction_size = 9 * BytesPerInstWord,
454 return_address_offset = 9 * BytesPerInstWord,
455 jmpl_offset = 7 * BytesPerInstWord,
522 add_offset = 7 * BytesPerInstWord,
523 instruction_size = 8 * BytesPerInstWord
581 nop_offset = 7 * BytesPerInstWord,
[all...]
H A DicBuffer_sparc.cpp41 (1*BytesPerInstWord) + 1); // flush + 1 extra byte
H A DnativeInst_sparc.cpp45 CodeBuffer buf(instaddr, 10 * BytesPerInstWord );
52 ICache::invalidate_range(instaddr, 7 * BytesPerInstWord);
57 unsigned char buffer[10 * BytesPerInstWord];
58 CodeBuffer buf(buffer, 10 * BytesPerInstWord);
163 int* contention_addr = (int*) n_call->addr_at(1*BytesPerInstWord);
168 n_call->set_long_at(1*BytesPerInstWord, i1);
169 n_call->set_long_at(0*BytesPerInstWord, i0);
531 for (int i = 0; i < instruction_size; i += BytesPerInstWord) {
913 int code_size = 1 * BytesPerInstWord;
1005 int* contention_addr = (int*) h_jump->addr_at(1*BytesPerInstWord);
[all...]
H A Dframe_sparc.hpp106 pc_return_offset = 2 * BytesPerInstWord,
H A Dassembler_sparc.cpp594 JMP(O7, 2 * BytesPerInstWord);
596 jmpl( I7, 2 * BytesPerInstWord, G0 );
600 void MacroAssembler::retl( bool trace ) { if (trace) JMP(O7, 2 * BytesPerInstWord);
601 else jmpl( O7, 2 * BytesPerInstWord, G0 ); }
878 inc(L4, get_pc(L4) + 2 * BytesPerInstWord); // skip getpc() code + inc + st_ptr to point L4 at call
1329 while (pc() < (save_pc + (7 * BytesPerInstWord)))
H A Dassembler_sparc.hpp2001 JMP(O7, 2 * BytesPerInstWord);
2003 jmpl( I7, 2 * BytesPerInstWord, G0 );
2007 inline void retl( bool trace = TraceJumps ) { if (trace) JMP(O7, 2 * BytesPerInstWord);
2008 else jmpl( O7, 2 * BytesPerInstWord, G0 ); }
H A Dassembler_sparc.inline.hpp677 intptr_t thepc = (intptr_t)pc() + 2*BytesPerInstWord + bytes_to_skip;

Completed in 82 milliseconds