Searched refs:byte_map_base (Results 1 - 19 of 19) sorted by relevance

/openjdk7/hotspot/src/share/vm/memory/
H A DcardTableModRefBS.hpp159 jbyte* result = &byte_map_base[uintptr_t(p) >> card_shift];
379 jbyte* byte_map_base; member in class:CardTableModRefBS
453 size_t delta = pointer_delta(p, byte_map_base, sizeof(jbyte));
H A DcardTableModRefBS.cpp105 // then add it to byte_map_base, i.e.
107 // _byte_map = byte_map_base + (uintptr_t(low_bound) >> card_shift)
109 byte_map_base = _byte_map - (uintptr_t(low_bound) >> card_shift);
148 " byte_map_base: " INTPTR_FORMAT,
149 byte_map_base);
715 st->print_cr("Card table byte_map: [" INTPTR_FORMAT "," INTPTR_FORMAT "] byte_map_base: " INTPTR_FORMAT,
716 _byte_map, _byte_map + _byte_map_size, byte_map_base);
/openjdk7/hotspot/src/share/vm/opto/
H A DgraphKit.hpp106 // Helper for byte_map_base
110 assert(sizeof(*ct->byte_map_base) == sizeof(jbyte), "adjust users of this code");
111 if (ct->byte_map_base != NULL) {
112 return makecon(TypeRawPtr::make((address)ct->byte_map_base));
/openjdk7/hotspot/src/cpu/sparc/vm/
H A Dc1_Runtime1_sparc.cpp899 jbyte* byte_map_base = ((CardTableModRefBS*)bs)->byte_map_base; local
909 AddressLiteral rs(byte_map_base);
H A Dc1_CodeStubs_sparc.cpp444 return ((G1SATBCardTableModRefBS*)bs)->byte_map_base;
H A Dassembler_sparc.cpp1269 void MacroAssembler::card_table_write(jbyte* byte_map_base, argument
1277 set((address) byte_map_base, tmp);
4508 static void generate_dirty_card_log_enqueue(jbyte* byte_map_base) { argument
4522 AddressLiteral addrlit(byte_map_base);
4597 generate_dirty_card_log_enqueue_if_necessary(jbyte* byte_map_base) { argument
4599 generate_dirty_card_log_enqueue(byte_map_base);
4645 generate_dirty_card_log_enqueue_if_necessary(bs->byte_map_base);
4667 card_table_write(bs->byte_map_base, tmp, store_addr);
H A DstubGenerator_sparc.cpp1094 assert(sizeof(*ct->byte_map_base) == sizeof(jbyte), "adjust this code");
1106 AddressLiteral rs(ct->byte_map_base);
H A Dassembler_sparc.hpp2339 void card_table_write(jbyte* byte_map_base, Register tmp, Register obj);
/openjdk7/hotspot/src/share/vm/shark/
H A DsharkBuilder.cpp543 (intptr_t) ((CardTableModRefBS *) bs)->byte_map_base),
/openjdk7/hotspot/src/share/vm/compiler/
H A Ddisassembler.cpp328 adr == (address)((CardTableModRefBS*)(bs))->byte_map_base) {
/openjdk7/hotspot/src/cpu/x86/vm/
H A Dc1_CodeStubs_x86.cpp497 return ((G1SATBCardTableModRefBS*)bs)->byte_map_base;
H A Dc1_Runtime1_x86.cpp1726 ExternalAddress cardtable((address)ct->byte_map_base);
1727 assert(sizeof(*ct->byte_map_base) == sizeof(jbyte), "adjust this code");
H A DstubGenerator_x86_32.cpp786 assert(sizeof(*ct->byte_map_base) == sizeof(jbyte), "adjust this code");
797 intptr_t disp = (intptr_t) ct->byte_map_base;
H A DstubGenerator_x86_64.cpp1278 assert(sizeof(*ct->byte_map_base) == sizeof(jbyte), "adjust this code");
1289 int64_t disp = (int64_t) ct->byte_map_base;
H A Dassembler_x86.cpp8735 ExternalAddress cardtable((address) ct->byte_map_base);
8736 assert(sizeof(*ct->byte_map_base) == sizeof(jbyte), "adjust this code");
8823 assert(sizeof(*ct->byte_map_base) == sizeof(jbyte), "adjust this code");
8825 // The calculation for byte_map_base is as follows:
8826 // byte_map_base = _byte_map - (uintptr_t(low_bound) >> card_shift);
8831 intptr_t disp = (intptr_t) ct->byte_map_base;
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_CodeStubs.hpp584 static jbyte* byte_map_base() { function in class:G1PostBarrierStub
H A Dc1_LIRGenerator.cpp1583 assert(sizeof(*((CardTableModRefBS*)_bs)->byte_map_base) == sizeof(jbyte), "adjust this code");
1584 LIR_Const* card_table_base = new LIR_Const(((CardTableModRefBS*)_bs)->byte_map_base);
1611 if(((int)ct->byte_map_base & 0xff) == 0) {
/openjdk7/hotspot/src/share/vm/interpreter/
H A DbytecodeInterpreter.cpp612 _byte_map_base = (volatile jbyte*)(((CardTableModRefBS*)bs)->byte_map_base);
/openjdk7/hotspot/src/share/vm/runtime/
H A DvmStructs.cpp527 nonstatic_field(CardTableModRefBS, byte_map_base, jbyte*) \

Completed in 150 milliseconds