Searched refs:BytesPerLong (Results 1 - 24 of 24) sorted by relevance

/openjdk7/hotspot/src/cpu/sparc/vm/
H A Dcopy_sparc.hpp118 assert(BytesPerLong == BytesPerOop, "jlongs and oops must be the same size");
184 assert(MinObjAlignmentInBytes >= BytesPerLong, "need alternate implementation");
195 size_t odd = count % (BytesPerLong / HeapWordSize) ;
200 DEBUG_ONLY(count -= BytesPerLong / HeapWordSize ;)
H A DcppInterpreter_sparc.cpp1971 __ and3(L2_scratch, -2*BytesPerLong, L2_scratch);
H A DstubGenerator_sparc.cpp2872 __ btst(BytesPerLong-1, G1_bits);
H A Dassembler_sparc.cpp2942 int round_to_unit = ((HeapWordsPerLong > 1) ? BytesPerLong : 0);
2945 // hoist first instruction of round_to(scan_temp, BytesPerLong):
2954 // Was: round_to(scan_temp, BytesPerLong);
2955 // Hoisted: add(scan_temp, BytesPerLong-1, scan_temp);
/openjdk7/hotspot/src/cpu/zero/vm/
H A Dcopy_zero.hpp107 assert(BytesPerLong == BytesPerOop, "jlongs and oops must be the same size");
143 assert(BytesPerLong == BytesPerOop, "jlongs and oops must be the same size");
/openjdk7/hotspot/src/os_cpu/bsd_x86/vm/
H A Dcopy_bsd_x86.inline.hpp267 assert(BytesPerLong == BytesPerOop, "jlongs and oops must be the same size");
302 assert(BytesPerLong == BytesPerOop, "jlongs and oops must be the same size");
/openjdk7/hotspot/src/os_cpu/linux_x86/vm/
H A Dcopy_linux_x86.inline.hpp267 assert(BytesPerLong == BytesPerOop, "jlongs and oops must be the same size");
302 assert(BytesPerLong == BytesPerOop, "jlongs and oops must be the same size");
/openjdk7/hotspot/src/os_cpu/solaris_x86/vm/
H A Dcopy_solaris_x86.inline.hpp106 assert(BytesPerLong == BytesPerOop, "jlongs and oops must be the same size");
135 assert(BytesPerLong == BytesPerOop, "jlongs and oops must be the same size");
/openjdk7/hotspot/src/share/vm/utilities/
H A Dcopy.hpp59 // alignment: aligned to BytesPerLong
78 // whole alignment units. E.g., if BytesPerLong is 2x word alignment, an odd
302 if (mask_bits((uintptr_t)from, BytesPerLong-1) != 0)
304 if (mask_bits((uintptr_t)to, BytesPerLong-1) != 0)
311 if (mask_bits((uintptr_t)to, BytesPerLong-1) != 0)
H A DglobalDefinitions.hpp62 const int BytesPerLong = 1 << LogBytesPerLong; variable
138 const int HeapWordsPerLong = BytesPerLong / HeapWordSize;
328 // Minimum is max(BytesPerLong, BytesPerDouble, BytesPerOop) / HeapWordSize, so jlong, jdouble and
/openjdk7/hotspot/src/os_cpu/windows_x86/vm/
H A Dcopy_windows_x86.inline.hpp121 assert(BytesPerLong == BytesPerOop, "jlongs and oops must be the same size");
/openjdk7/hotspot/src/share/vm/runtime/
H A DstubRoutines.cpp175 address buffer = (address) round_to((intptr_t)&lbuffer[4], BytesPerLong);
176 address buffer2 = (address) round_to((intptr_t)&lbuffer2[4], BytesPerLong);
279 // Aligned to BytesPerLong
H A DvmStructs.cpp2163 declare_constant(BytesPerLong) \
/openjdk7/hotspot/src/share/vm/opto/
H A Dmemnode.cpp519 const int MAX_STORE = BytesPerLong;
2633 const int unit = BytesPerLong;
2661 Node *off = phase->MakeConX(BytesPerLong);
2706 int unit = BytesPerLong;
2731 int unit = BytesPerLong;
2761 if ((done_offset % BytesPerLong) != 0) {
3268 const int FAIL = 0, MAX_STORE = BytesPerLong;
3455 size_limit = align_size_up(size_limit, BytesPerLong);
3456 int num_tiles = size_limit / BytesPerLong;
3550 if (st_size < BytesPerLong) // somethin
[all...]
H A Dlibrary_call.cpp2907 if (thread_id_size == (size_t) BytesPerLong) {
4162 if (base_off % BytesPerLong != 0) {
4171 assert(base_off % BytesPerLong == 0, "expect 8 bytes alignment");
5103 BytesPerLong);
5119 int end_round = (-1 << scale) & (BytesPerLong - 1);
5197 if (((src_off | dest_off) & (BytesPerLong-1)) != 0) {
5201 if (((src_off | dest_off) & (BytesPerLong-1)) == BytesPerInt &&
5202 ((src_off ^ dest_off) & (BytesPerLong-1)) == 0) {
5213 assert(src_off % BytesPerLong == 0, "");
5214 assert(dest_off % BytesPerLong
[all...]
H A DgraphKit.cpp3124 assert((int)Klass::_lh_instance_slow_path_bit < BytesPerLong, "clear bit");
/openjdk7/hotspot/src/share/vm/classfile/
H A DclassFileParser.cpp3287 next_static_double_offset = align_size_up(next_static_double_offset, BytesPerLong);
3291 (fac.count[STATIC_DOUBLE] * BytesPerLong);
3336 next_nonstatic_double_offset = align_size_up(next_nonstatic_double_offset, BytesPerLong);
3339 (nonstatic_double_count * BytesPerLong);
3423 next_nonstatic_double_offset = align_size_up(offset, BytesPerLong);
3461 (nonstatic_double_count * BytesPerLong);
3506 next_static_double_offset += BytesPerLong;
3567 next_nonstatic_double_offset += BytesPerLong;
H A DjavaClasses.cpp2954 java_lang_boxing_object::long_value_offset = align_size_up((java_lang_boxing_object::hc_value_offset + header), BytesPerLong);
2968 java_lang_ref_SoftReference::timestamp_offset = align_size_up((java_lang_ref_SoftReference::hc_timestamp_offset * x + header), BytesPerLong);
/openjdk7/hotspot/src/share/vm/shark/
H A DsharkTopLevelBlock.cpp1166 itable_start, LLVMValue::intptr_constant(BytesPerLong - 1)),
1167 LLVMValue::intptr_constant(~(BytesPerLong - 1)),
/openjdk7/hotspot/src/cpu/x86/vm/
H A DstubGenerator_x86_32.cpp1619 __ testl(bits, BytesPerLong-1);
H A DstubGenerator_x86_64.cpp2467 __ testb(bits, BytesPerLong-1);
H A Dassembler_x86.cpp9349 round_to(scan_temp, BytesPerLong);
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_LIRGenerator.cpp2894 if (thread_id_size == (size_t) BytesPerLong) {
/openjdk7/hotspot/src/share/vm/prims/
H A Djvm.cpp593 assert(MinObjAlignmentInBytes >= BytesPerLong, "objects misaligned");

Completed in 467 milliseconds