Searched refs:Prefetch (Results 1 - 22 of 22) sorted by relevance

/openjdk7/hotspot/src/os_cpu/bsd_zero/vm/
H A Dprefetch_bsd_zero.inline.hpp31 inline void Prefetch::read(void* loc, intx interval) {
34 inline void Prefetch::write(void* loc, intx interval) {
/openjdk7/hotspot/src/os_cpu/linux_zero/vm/
H A Dprefetch_linux_zero.inline.hpp31 inline void Prefetch::read(void* loc, intx interval) {
34 inline void Prefetch::write(void* loc, intx interval) {
/openjdk7/hotspot/src/os_cpu/windows_x86/vm/
H A Dprefetch_windows_x86.inline.hpp30 inline void Prefetch::read (void *loc, intx interval) {}
31 inline void Prefetch::write(void *loc, intx interval) {}
/openjdk7/hotspot/src/os_cpu/linux_sparc/vm/
H A Dprefetch_linux_sparc.inline.hpp32 inline void Prefetch::read(void *loc, intx interval) {
36 inline void Prefetch::write(void *loc, intx interval) {
42 inline void Prefetch::read (void *loc, intx interval) {}
43 inline void Prefetch::write(void *loc, intx interval) {}
/openjdk7/hotspot/src/os_cpu/bsd_x86/vm/
H A Dprefetch_bsd_x86.inline.hpp31 inline void Prefetch::read (void *loc, intx interval) {
37 inline void Prefetch::write(void *loc, intx interval) {
/openjdk7/hotspot/src/os_cpu/linux_x86/vm/
H A Dprefetch_linux_x86.inline.hpp31 inline void Prefetch::read (void *loc, intx interval) {
37 inline void Prefetch::write(void *loc, intx interval) {
/openjdk7/hotspot/src/os_cpu/solaris_sparc/vm/
H A Dprefetch_solaris_sparc.inline.hpp37 inline void Prefetch::read(void *loc, intx interval) {
41 inline void Prefetch::write(void *loc, intx interval) {
60 inline void Prefetch::read (void *loc, intx interval) {}
61 inline void Prefetch::write(void *loc, intx interval) {}
/openjdk7/hotspot/src/os_cpu/solaris_x86/vm/
H A Dprefetch_solaris_x86.inline.hpp35 inline void Prefetch::read (void *loc, intx interval) {
42 inline void Prefetch::write(void *loc, intx interval) {
/openjdk7/hotspot/src/share/vm/runtime/
H A Dprefetch.hpp31 // such that if Prefetch{Scan,Copy}Interval and/or PrefetchFieldInterval
36 class Prefetch : AllStatic { class in inherits:AllStatic
44 // Prefetch anticipating read; must not fault, semantically a no-op
47 // Prefetch anticipating write; must not fault, semantically a no-op
/openjdk7/hotspot/src/share/vm/gc_implementation/concurrentMarkSweep/
H A DcmsOopClosures.hpp64 Prefetch::style prefetch_style() {
65 return Prefetch::do_read;
86 Prefetch::style prefetch_style() {
87 return Prefetch::do_read;
151 Prefetch::style prefetch_style() {
152 return Prefetch::do_read;
187 Prefetch::style prefetch_style() {
188 return Prefetch::do_read;
227 Prefetch::style prefetch_style() {
228 return Prefetch
[all...]
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A Dg1OopClosures.inline.hpp72 Prefetch::write(obj->mark_addr(), 0);
73 Prefetch::read(obj->mark_addr(), (HeapWordSize*2));
97 Prefetch::write(obj->mark_addr(), 0);
98 Prefetch::read(obj->mark_addr(), (HeapWordSize*2));
H A DconcurrentMark.cpp1052 Prefetch::read(curr, interval);
H A Dg1CollectedHeap.cpp4677 Prefetch::write(obj_ptr, PrefetchCopyIntervalInBytes);
/openjdk7/hotspot/src/share/vm/memory/
H A DgenOopClosures.hpp104 Prefetch::style prefetch_style() {
105 return Prefetch::do_write;
127 Prefetch::style prefetch_style() {
128 return Prefetch::do_write;
H A Diterator.hpp88 Prefetch::style prefetch_style() { // Note that this is non-virtual.
89 return Prefetch::do_none;
H A Dspace.hpp564 Prefetch::write(q, interval); \
575 Prefetch::write(end, interval); \
682 Prefetch::write(q, interval); \
749 Prefetch::read(q, scan_interval); \
756 Prefetch::write(compaction_top, copy_interval); \
H A DdefNewGeneration.cpp773 // Prefetch beyond obj
775 Prefetch::write(obj, interval);
H A Dspace.cpp777 Prefetch::write(p, interval); \
/openjdk7/hotspot/src/share/vm/gc_implementation/parallelScavenge/
H A DpsMarkSweepDecorator.cpp133 Prefetch::write(q, interval);
187 Prefetch::write(end, interval);
336 Prefetch::write(q, interval);
402 Prefetch::read(q, scan_interval);
409 Prefetch::write(compaction_top, copy_interval);
H A DcardTableExtension.cpp367 Prefetch::write(p, interval);
/openjdk7/hotspot/src/share/vm/oops/
H A Dklass.hpp695 // Prefetch within oop iterators. This is a macro because we
702 // const Prefetch::style pstyle);
705 const Prefetch::style pstyle_ = (pstyle); \
707 if (pstyle_ != Prefetch::do_none) { \
711 case Prefetch::do_read: \
712 Prefetch::read(*ref, foffset_); \
714 case Prefetch::do_write: \
715 Prefetch::write(*ref, foffset_); \
/openjdk7/hotspot/src/share/vm/prims/
H A Dunsafe.cpp1292 Prefetch::read(addr, (intx)offset);
1299 Prefetch::write(addr, (intx)offset);

Completed in 123 milliseconds