Searched refs:LogBytesPerLong (Results 1 - 13 of 13) sorted by relevance

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/
H A DBits.java38 public static final int LogBytesPerLong = 3; field in class:Bits
/openjdk7/hotspot/src/share/vm/utilities/
H A Dcopy.hpp146 assert_params_ok(from, to, LogBytesPerLong);
188 assert_params_ok(from, to, LogBytesPerLong);
H A DglobalDefinitions.hpp57 const int LogBytesPerLong = 3; variable
62 const int BytesPerLong = 1 << LogBytesPerLong;
68 const int LogBitsPerLong = LogBitsPerByte + LogBytesPerLong;
77 const int LongAlignmentMask = (1 << LogBytesPerLong) - 1;
139 const int LogHeapWordsPerLong = LogBytesPerLong - LogHeapWordSize;
/openjdk7/hotspot/src/cpu/sparc/vm/
H A Dcopy_sparc.hpp166 guarantee(mask_bits((uintptr_t)tohw, right_n_bits(LogBytesPerLong)) == 0,
H A DtemplateTable_sparc.cpp596 __ index_check(O2, Otos_i, LogBytesPerLong, G3_scratch, O3);
614 __ index_check(O2, Otos_i, LogBytesPerLong, G3_scratch, O3);
853 __ index_check(O3, O2, LogBytesPerLong, G3_scratch, O2);
873 __ index_check(O3, O2, LogBytesPerLong, G3_scratch, O2);
H A DstubGenerator_sparc.cpp2523 __ delayed()->sllx(count, LogBytesPerLong, offset8);
2876 __ delayed()->srax(O2_count, LogBytesPerLong, O2_count);
3137 __ cmp_and_br_short(G3_elsize, LogBytesPerLong, Assembler::equal, Assembler::pt, L);
/openjdk7/hotspot/src/share/vm/opto/
H A DgraphKit.cpp3125 Node* mask = MakeConX(~ (intptr_t)right_n_bits(LogBytesPerLong));
3195 fast_size_limit <<= (LogBytesPerLong - log2_esize);
H A Dlibrary_call.cpp4179 countx = _gvn.transform( new (C) URShiftXNode(countx, intcon(LogBytesPerLong) ));
5182 if (scale >= LogBytesPerLong)
5221 countx = _gvn.transform( new (C) URShiftXNode(countx, intcon(LogBytesPerLong)) );
H A Dmemnode.cpp3514 intptr_t j = st_off >> LogBytesPerLong;
/openjdk7/hotspot/src/cpu/x86/vm/
H A DstubGenerator_x86_32.cpp1639 __ shrptr(count, LogBytesPerLong); // size => qword_count
1883 __ cmpl(rdi_elsize, LogBytesPerLong);
H A DstubGenerator_x86_64.cpp2485 __ shrptr(size, LogBytesPerLong); // size => qword_count
2744 __ cmpl(rax_elsize, LogBytesPerLong);
H A DtemplateTable_x86_32.cpp3323 __ shrl(rdx, LogBytesPerLong); // divide by 2*oopSize and set carry flag if odd
H A DtemplateTable_x86_64.cpp3395 __ shrl(rdx, LogBytesPerLong); // divide by oopSize to simplify the loop

Completed in 159 milliseconds