Searched refs:card_addr (Results 1 - 8 of 8) sorted by relevance

/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A Dg1BlockOffsetTable.cpp580 HeapWord* card_addr = _array->address_for_index(card); local
581 HeapWord* block_start = block_start_const(card_addr);
588 block_start, card, card_addr,
H A DheapRegionRemSet.cpp770 HeapWord* card_addr = (HeapWord*) local
772 if (hr()->is_in_reserved(card_addr)) {
/openjdk7/hotspot/src/share/vm/opto/
H A Druntime.hpp161 static void g1_wb_post_C(void* card_addr, JavaThread* thread);
/openjdk7/hotspot/src/cpu/x86/vm/
H A Dc1_Runtime1_x86.cpp1729 const Register card_addr = rcx; local
1732 f.load_argument(0, card_addr);
1733 __ shrq(card_addr, CardTableModRefBS::card_shift);
1736 __ addq(card_addr, tmp);
1743 __ leal(card_addr, __ as_Address(ArrayAddress(cardtable, index)));
1746 __ cmpb(Address(card_addr, 0), 0);
1752 __ movb(Address(card_addr, 0), 0);
1769 __ movptr(Address(buffer_addr, 0), card_addr); local
1786 __ call_VM_leaf(CAST_FROM_FN_PTR(address, SharedRuntime::g1_wb_post), card_addr, thread); local
H A Dassembler_x86.cpp8738 const Register card_addr = tmp; local
8740 movq(card_addr, store_addr);
8741 shrq(card_addr, CardTableModRefBS::card_shift);
8746 addq(card_addr, tmp2);
8754 const Register card_addr = tmp; local
8755 lea(card_addr, as_Address(ArrayAddress(cardtable, index)));
8757 cmpb(Address(card_addr, 0), 0);
8763 movb(Address(card_addr, 0), 0);
8772 movq(Address(tmp2, 0), card_addr); local
8784 call_VM_leaf(CAST_FROM_FN_PTR(address, SharedRuntime::g1_wb_post), card_addr, r15_threa local
8787 call_VM_leaf(CAST_FROM_FN_PTR(address, SharedRuntime::g1_wb_post), card_addr, thread); local
[all...]
/openjdk7/hotspot/src/share/vm/runtime/
H A DsharedRuntime.hpp174 static void g1_wb_post(void* card_addr, JavaThread* thread);
H A DsharedRuntime.cpp228 JRT_LEAF(void, SharedRuntime::g1_wb_post(void* card_addr, JavaThread* thread))
229 thread->dirty_card_queue().enqueue(card_addr); variable
/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); local
1612 __ move(tmp, card_addr);
1616 __ move(tmp_zero, card_addr);

Completed in 166 milliseconds