Searched defs:last_addr (Results 1 - 6 of 6) sorted by relevance

/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A Dg1CardCounts.cpp191 HeapWord* last_addr = _ct_bs->addr_for(last_card_ptr); local
192 assert((last_addr + CardTableModRefBS::card_size_in_words) == hr->end(), "alignment");
/openjdk7/hotspot/src/os_cpu/linux_x86/vm/
H A Dos_linux_x86.cpp451 static volatile address last_addr = local
455 if (addr != last_addr &&
474 // Set last_addr so if we fault again at the same address, we don't end
487 // last_addr, these solutions are unnecessary complication: this
492 last_addr = addr;
/openjdk7/hotspot/src/os_cpu/bsd_x86/vm/
H A Dos_bsd_x86.cpp666 static volatile address last_addr = local
670 if (addr != last_addr &&
689 // Set last_addr so if we fault again at the same address, we don't end
702 // last_addr, these solutions are unnecessary complication: this
707 last_addr = addr;
/openjdk7/hotspot/src/os_cpu/solaris_x86/vm/
H A Dos_solaris_x86.cpp592 static volatile address last_addr = local
596 if (addr != last_addr &&
615 // Set last_addr so if we fault again at the same address, we don't end
628 // last_addr, these solutions are unnecessary complication: this
633 last_addr = addr;
/openjdk7/hotspot/src/share/vm/gc_implementation/parallelScavenge/
H A DpsParallelCompact.cpp731 HeapWord* const last_addr = dest_addr + words - 1; local
733 const size_t dest_region_2 = addr_to_region_idx(last_addr);
/openjdk7/hotspot/src/os/windows/vm/
H A Dos_windows.cpp2261 static volatile address last_addr = local
2265 if (UnguardOnExecutionViolation > 0 && addr != last_addr &&
2283 // Set last_addr so if we fault again at the same address, we don't
2297 // local last_addr, these solutions are unnecessary complication:
2302 last_addr = addr;

Completed in 69 milliseconds