Searched refs:BytesPerWord (Results 26 - 49 of 49) sorted by relevance

12

/openjdk7/hotspot/src/cpu/x86/vm/
H A DnativeInst_x86.hpp123 enum { cache_line_size = BytesPerWord }; // conservative estimate!
H A DstubGenerator_x86_32.cpp641 Address next_pc(rsp, RegisterImpl::number_of_registers * BytesPerWord);
H A DstubGenerator_x86_64.cpp955 Address next_pc(rsp, RegisterImpl::number_of_registers * BytesPerWord);
H A Dassembler_x86.cpp7625 subptr(rsp, BytesPerWord);
7636 addptr(rsp, BytesPerWord);
9743 // Address adjust(addr.base(), addr.index(), addr.scale(), addr.disp() + BytesPerWord);
9762 pushptr(Address(rax, LP64_ONLY(2 *) BytesPerWord));
/openjdk7/hotspot/src/share/vm/oops/
H A DmethodDataOop.cpp603 int word_size = align_size_up(byte_size, BytesPerWord) / BytesPerWord;
H A DmethodDataOop.hpp1327 return align_object_size(align_size_up(_size, BytesPerWord)/BytesPerWord);
H A DmethodOop.cpp221 int extra_words = align_size_up(extra_bytes, BytesPerWord) / BytesPerWord;
/openjdk7/hotspot/src/share/vm/runtime/
H A Ddeoptimization.cpp424 frame_sizes[number_of_frames - 1 - index] = BytesPerWord * array->element(index)->on_stack_size(caller_parms,
484 UnrollBlock* info = new UnrollBlock(array->frame_size() * BytesPerWord,
485 caller_adjustment * BytesPerWord,
H A Dfprofiler.cpp140 return ((int)CodeCache::max_capacity())/bucket_size * BytesPerWord;
/openjdk7/hotspot/src/cpu/sparc/vm/
H A Dinterp_masm_sparc.cpp553 btst(2*BytesPerWord-1, Rsp);
642 add(Lesp, BytesPerWord, Gargs); // setup parameter pointer
756 sll(tmp, exact_log2(in_words(ConstantPoolCacheEntry::size()) * BytesPerWord), tmp);
791 sll(tmp, exact_log2(in_words(ConstantPoolCacheEntry::size()) * BytesPerWord), tmp);
H A Dassembler_sparc.cpp78 int disp = ((_number - Argument::n_register_parameters + frame::memory_parameter_word_sp_offset) * BytesPerWord) + STACK_BIAS;
1531 return nWords * BytesPerWord;
1938 save_frame(::round_to(sizeof(RegistersForDebugging) / BytesPerWord, 2));
1967 save_frame(::round_to(sizeof(RegistersForDebugging) / BytesPerWord, 2));
1990 save_frame(::round_to(sizeof(RegistersForDebugging) / BytesPerWord, 2));
H A Dc1_LIRAssembler_sparc.cpp203 int monitor_offset = BytesPerWord * method()->max_locals() +
204 (2 * BytesPerWord) * (number_of_locks - 1);
209 int slot_offset = monitor_offset - ((i * 2) * BytesPerWord);
214 __ ld_ptr(OSR_buf, slot_offset + 1*BytesPerWord, O7);
223 __ ld_ptr(OSR_buf, slot_offset + 1*BytesPerWord, O7);
H A DsharedRuntime_sparc.cpp740 1*Interpreter::stackElementSize+bias+BytesPerWord, G1);
853 __ sub(Gargs, BytesPerWord, Gargs);
H A DstubGenerator_sparc.cpp210 __ delayed()->sub(dst, BytesPerWord, dst); // setup Lentry_args
217 __ add(src, BytesPerWord, src);
H A DcppInterpreter_sparc.cpp490 ConstantPoolCacheEntry::size()) * BytesPerWord), G1_scratch);
627 __ add(Gargs, Gtmp2, Gargs); // points to first local + BytesPerWord
1493 __ add(args, Gtmp, Gargs); // points to first local + BytesPerWord
/openjdk7/hotspot/src/share/vm/code/
H A DrelocInfo.hpp453 length_limit = 1 + 1 + (3*BytesPerWord/BytesPerShort) + 1,
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_LIRAssembler.cpp604 while (code_offset() % BytesPerWord != 0) {
H A Dc1_Runtime1.cpp217 sasm->align(BytesPerWord);
H A Dc1_GraphBuilder.cpp2940 int locals_offset = BytesPerWord * (method()->max_locals() - 1);
2942 int offset = locals_offset - (index + local->type()->size() - 1) * BytesPerWord;
/openjdk7/hotspot/src/share/vm/gc_implementation/concurrentMarkSweep/
H A DcompactibleFreeListSpace.cpp65 MinChunkSize = min_chunk_size_in_bytes / BytesPerWord;
93 assert(sizeof(FreeChunk) / BytesPerWord <= MinChunkSize,
/openjdk7/hotspot/src/os/solaris/vm/
H A Dos_solaris.cpp1219 stack_size = (BytesPerWord >> 2) * K * K;
5394 // Add in 2*BytesPerWord times page size to account for VM stack during
5398 2*BytesPerWord COMPILER2_PRESENT(+1)) * page_size);
/openjdk7/hotspot/src/os/bsd/vm/
H A Dos_bsd.cpp4726 // Add in 2*BytesPerWord times page size to account for VM stack during
4730 2*BytesPerWord COMPILER2_PRESENT(+1)) * Bsd::page_size());
/openjdk7/hotspot/src/os/linux/vm/
H A Dos_linux.cpp4538 // Add in 2*BytesPerWord times page size to account for VM stack during
4542 (2*BytesPerWord COMPILER2_PRESENT(+1)) * Linux::vm_default_page_size());
/openjdk7/hotspot/src/os/windows/vm/
H A Dos_windows.cpp3863 // Add in 2*BytesPerWord times page size to account for VM stack during
3867 2*BytesPerWord COMPILER2_PRESENT(+1)) * os::vm_page_size();

Completed in 412 milliseconds

12