Searched refs:card_shift (Results 1 - 20 of 20) sorted by relevance

/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A Dg1CardCounts.cpp75 _reserved_max_card_num = reserved_bytes >> CardTableModRefBS::card_shift;
118 size_t new_size = (heap_capacity >> CardTableModRefBS::card_shift) * sizeof(jbyte);
H A DheapRegionRemSet.cpp108 hw_offset >> (CardTableModRefBS::card_shift - LogHeapWordSize);
406 int from_card = (int)(uintptr_t(from) >> CardTableModRefBS::card_shift);
448 >> CardTableModRefBS::card_shift;
771 (uintptr_t(fcc_ent) << CardTableModRefBS::card_shift);
821 (uintptr_t(from) >> CardTableModRefBS::card_shift);
823 uintptr_t(hr->bottom()) >> CardTableModRefBS::card_shift;
H A DconcurrentMark.inline.hpp74 intptr_t card_num = intptr_t(uintptr_t(addr) >> CardTableModRefBS::card_shift);
H A DheapRegion.cpp337 CardsPerRegion = GrainBytes >> CardTableModRefBS::card_shift;
H A DconcurrentMark.cpp425 CardTableModRefBS::card_shift,
519 CardTableModRefBS::card_shift);
3207 return _card_bm.at(offset >> CardTableModRefBS::card_shift);
/openjdk7/hotspot/src/share/vm/memory/
H A DcardTableModRefBS.hpp159 jbyte* result = &byte_map_base[uintptr_t(p) >> card_shift];
265 card_shift = 9, enumerator in enum:CardTableModRefBS::SomePublicConstants
266 card_size = 1 << card_shift,
454 HeapWord* result = (HeapWord*) (delta << card_shift);
H A DcardTableModRefBS.cpp107 // _byte_map = byte_map_base + (uintptr_t(low_bound) >> card_shift)
109 byte_map_base = _byte_map - (uintptr_t(low_bound) >> card_shift);
/openjdk7/hotspot/src/share/vm/shark/
H A DsharkBuilder.cpp546 LLVMValue::intptr_constant(CardTableModRefBS::card_shift))),
/openjdk7/hotspot/src/cpu/sparc/vm/
H A Dc1_Runtime1_sparc.cpp904 __ srlx(addr, CardTableModRefBS::card_shift, addr);
906 __ srl(addr, CardTableModRefBS::card_shift, addr);
H A Dassembler_sparc.cpp1272 srlx(obj, CardTableModRefBS::card_shift, obj);
1274 srl(obj, CardTableModRefBS::card_shift, obj);
4518 __ srlx(O0, CardTableModRefBS::card_shift, O0);
4520 __ srl(O0, CardTableModRefBS::card_shift, O0);
H A DstubGenerator_sparc.cpp1103 __ srl_ptr(addr, CardTableModRefBS::card_shift, addr);
1104 __ srl_ptr(count, CardTableModRefBS::card_shift, count);
/openjdk7/hotspot/src/share/vm/interpreter/
H A DbytecodeInterpreter.cpp1639 OrderAccess::release_store(&BYTE_MAP_BASE[(uintptr_t)elem_loc >> CardTableModRefBS::card_shift], 0);
1901 OrderAccess::release_store(&BYTE_MAP_BASE[(uintptr_t)obj >> CardTableModRefBS::card_shift], 0);
1922 OrderAccess::release_store(&BYTE_MAP_BASE[(uintptr_t)obj >> CardTableModRefBS::card_shift], 0);
/openjdk7/hotspot/src/cpu/x86/vm/
H A Dc1_Runtime1_x86.cpp1733 __ shrq(card_addr, CardTableModRefBS::card_shift);
1740 __ shrl(card_index, CardTableModRefBS::card_shift);
H A DstubGenerator_x86_32.cpp793 __ shrptr(start, CardTableModRefBS::card_shift);
794 __ shrptr(end, CardTableModRefBS::card_shift);
H A DstubGenerator_x86_64.cpp1285 __ shrptr(start, CardTableModRefBS::card_shift);
1286 __ shrptr(end, CardTableModRefBS::card_shift);
H A Dassembler_x86.cpp8741 shrq(card_addr, CardTableModRefBS::card_shift);
8751 shrl(card_index, CardTableModRefBS::card_shift);
8816 shrptr(obj, CardTableModRefBS::card_shift);
8826 // byte_map_base = _byte_map - (uintptr_t(low_bound) >> card_shift);
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_LIRGenerator.cpp1610 LIR_Address *card_addr = new LIR_Address(tmp, addr, (LIR_Address::Scale) -CardTableModRefBS::card_shift, 0, T_BYTE);
1622 __ unsigned_shift_right(tmp, CardTableModRefBS::card_shift, tmp);
1624 __ unsigned_shift_right(addr, CardTableModRefBS::card_shift, tmp);
/openjdk7/hotspot/src/share/vm/opto/
H A DgraphKit.cpp3503 Node* card_offset = __ URShiftX( cast, __ ConI(CardTableModRefBS::card_shift) );
3734 Node* card_offset = __ URShiftX( cast, __ ConI(CardTableModRefBS::card_shift) );
/openjdk7/hotspot/src/share/vm/runtime/
H A DvmStructs.cpp2187 declare_constant(CardTableModRefBS::card_shift) \
/openjdk7/hotspot/src/share/vm/gc_implementation/concurrentMarkSweep/
H A DconcurrentMarkSweepGeneration.cpp567 _modUnionTable((CardTableModRefBS::card_shift - LogHeapWordSize),

Completed in 261 milliseconds