Searched refs:LogHeapWordSize (Results 1 - 25 of 30) sorted by relevance

12

/openjdk7/hotspot/src/share/vm/utilities/
H A Dcopy.hpp89 assert_params_ok(from, to, LogHeapWordSize);
95 assert_params_ok(from, to, LogHeapWordSize);
102 assert_params_ok(from, to, LogHeapWordSize);
203 assert_params_ok(from, to, LogHeapWordSize);
206 size_t count = (size_t)round_to(byte_count, HeapWordSize) >> LogHeapWordSize;
217 assert_params_ok(from, to, LogHeapWordSize);
220 size_t count = (size_t)round_to(byte_count, HeapWordSize) >> LogHeapWordSize;
235 assert_params_ok(to, LogHeapWordSize);
259 assert_params_ok(to, LogHeapWordSize);
H A DglobalDefinitions.hpp131 // HeapWordSize must be 2^LogHeapWordSize.
134 const int LogHeapWordSize = 3; variable
136 const int LogHeapWordSize = 2; variable
139 const int LogHeapWordsPerLong = LogBytesPerLong - LogHeapWordSize;
155 return (byte_size + (HeapWordSize-1)) >> LogHeapWordSize;
/openjdk7/hotspot/src/share/vm/oops/
H A DinstanceMirrorKlass.hpp66 _offset_of_static_fields = instanceMirrorKlass::cast(SystemDictionary::Class_klass())->size_helper() << LogHeapWordSize;
H A DtypeArrayOop.hpp168 julong size_in_words = ((size_in_bytes + (HeapWordSize-1)) >> LogHeapWordSize);
H A Dklass.hpp452 return (size << LogHeapWordSize)
458 return lh >> LogHeapWordSize;
H A DinstanceKlass.hpp131 LogHeapWordSize;
H A Doop.inline.hpp448 s = lh >> LogHeapWordSize; // deliver size scaled by wordSize
/openjdk7/hotspot/src/share/vm/ci/
H A DciInstanceKlass.hpp150 >> LogHeapWordSize);
/openjdk7/hotspot/src/share/vm/gc_implementation/shared/
H A DmutableNUMASpace.cpp636 new_region = MemRegion(bottom(), rounded_bottom + (chunk_byte_size >> LogHeapWordSize));
644 ps->end() + (chunk_byte_size >> LogHeapWordSize));
799 for (HeapWord *i = p; i < p + size; i += os::vm_page_size() >> LogHeapWordSize) {
850 for (HeapWord *i = p; i < p + size; i += os::vm_page_size() >> LogHeapWordSize) {
/openjdk7/hotspot/src/share/vm/memory/
H A DdefNewGeneration.hpp264 size_t overflow_limit = (size_t)1 << (BitsPerSize_t - LogHeapWordSize);
H A Dgeneration.hpp257 size_t overflow_limit = (size_t)1 << (BitsPerSize_t - LogHeapWordSize);
H A DblockOffsetTable.hpp112 LogN_words = LogN - LogHeapWordSize,
H A DdefNewGeneration.cpp205 _pretenure_size_threshold_words = PretenureSizeThreshold >> LogHeapWordSize;
H A Duniverse.cpp754 guarantee(1 << LogHeapWordSize == sizeof(HeapWord),
755 "LogHeapWordSize is incorrect.");
/openjdk7/hotspot/src/cpu/sparc/vm/
H A Dcopy_sparc.hpp187 (count > (BlockZeroingLowLimit >> LogHeapWordSize))) {
H A Dassembler_sparc.cpp4105 srl_ptr(t1, LogHeapWordSize, t1);
4160 sll_ptr(t1, LogHeapWordSize, t1);
4171 sll_ptr(t2, LogHeapWordSize, t2);
H A DtemplateTable_sparc.cpp3443 __ srlx(RfreeValue, LogHeapWordSize, RfreeValue);
3445 __ srl(RfreeValue, LogHeapWordSize, RfreeValue);
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A Dg1BlockOffsetTable.hpp227 LogN_words = LogN - LogHeapWordSize,
H A DheapRegion.cpp325 LogOfHRGrainWords = LogOfHRGrainBytes - LogHeapWordSize;
333 GrainWords = GrainBytes >> LogHeapWordSize;
H A DheapRegionRemSet.cpp108 hw_offset >> (CardTableModRefBS::card_shift - LogHeapWordSize);
/openjdk7/hotspot/src/share/vm/gc_implementation/parNew/
H A DparNewGeneration.cpp238 ParGCAllocBuffer::min_size() << LogHeapWordSize;
241 buf_size = free_bytes >> LogHeapWordSize;
/openjdk7/hotspot/src/share/vm/gc_implementation/parallelScavenge/
H A DpsParallelCompact.hpp630 return (size_t(addr) & RegionAddrOffsetMask) >> LogHeapWordSize;
696 return (size_t(addr) & BlockAddrOffsetMask) >> LogHeapWordSize;
H A DpsParallelCompact.cpp70 RegionSize << LogHeapWordSize;
78 BlockSize << LogHeapWordSize;
/openjdk7/hotspot/src/share/vm/shark/
H A DsharkTopLevelBlock.cpp1642 size_t size_in_bytes = klass->size_helper() << LogHeapWordSize;
/openjdk7/hotspot/src/share/vm/classfile/
H A DclassFileParser.cpp751 raw_hash += ((unsigned int)(uintptr_t)name) >> (LogHeapWordSize + 2);
752 raw_hash += ((unsigned int)(uintptr_t)sig) >> LogHeapWordSize;

Completed in 149 milliseconds

12