/openjdk7/hotspot/src/share/vm/gc_implementation/shared/ |
H A D | isGCActiveMark.hpp | 38 CollectedHeap* heap = Universe::heap(); local 39 assert(!heap->is_gc_active(), "Not reentrant"); 40 heap->_is_gc_active = true; 44 CollectedHeap* heap = Universe::heap(); local 45 assert(heap->is_gc_active(), "Sanity"); 46 heap->_is_gc_active = false;
|
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/livejvm/ |
H A D | JNIHandleAccessor.java | 33 private ObjectHeap heap; field in class:JNIHandleAccessor 35 JNIHandleAccessor(Address addr, ObjectHeap heap) { argument 37 this.heap = heap; 44 return heap.newOop(handle.getOopHandleAt(0));
|
/openjdk7/hotspot/src/share/vm/gc_implementation/parallelScavenge/ |
H A D | vmPSOperations.cpp | 46 ParallelScavengeHeap* heap = (ParallelScavengeHeap*)Universe::heap(); local 47 assert(heap->kind() == CollectedHeap::ParallelScavengeHeap, "must be a ParallelScavengeHeap"); 49 GCCauseSetter gccs(heap, _gc_cause); 50 _result = heap->failed_mem_allocate(_size); 68 ParallelScavengeHeap* heap = (ParallelScavengeHeap*)Universe::heap(); local 69 assert(heap->kind() == CollectedHeap::ParallelScavengeHeap, "must be a ParallelScavengeHeap"); 71 GCCauseSetter gccs(heap, _gc_cause); 72 _result = heap 89 ParallelScavengeHeap* heap = (ParallelScavengeHeap*)Universe::heap(); local [all...] |
H A D | psPromotionLAB.cpp | 106 assert(Universe::heap()->is_in(obj), "Object outside heap"); 140 ParallelScavengeHeap* heap = (ParallelScavengeHeap*)Universe::heap(); local 141 assert(heap->kind() == CollectedHeap::ParallelScavengeHeap, "Sanity"); 143 MutableSpace* to_space = heap->young_gen()->to_space(); 153 ParallelScavengeHeap* heap = (ParallelScavengeHeap*)Universe::heap(); local 154 assert(heap->kind() == CollectedHeap::ParallelScavengeHeap, "Sanity"); 157 PSOldGen* old_gen = heap [all...] |
H A D | psScavenge.inline.hpp | 35 ParallelScavengeHeap* heap = (ParallelScavengeHeap*)Universe::heap(); local 36 _to_space_top_before_gc = heap->young_gen()->to_space()->top(); 60 ParallelScavengeHeap* heap = (ParallelScavengeHeap*)Universe::heap(); local 61 return should_scavenge(p, heap->young_gen()->to_space()); 67 // This version tests the oop* to make sure it is within the heap before 81 // that are outside the heap. 83 Universe::heap()->is_in_reserved(p)) {
|
/openjdk7/hotspot/src/share/vm/services/ |
H A D | nmtDCmd.cpp | 31 bool heap): DCmdWithParser(output, heap), 30 NMTDCmd(outputStream* output, bool heap) argument
|
/openjdk7/jdk/src/share/native/sun/management/ |
H A D | MemoryImpl.c | 46 (JNIEnv *env, jobject dummy, jboolean heap) { 47 return jmm_interface->GetMemoryUsage(env, heap); 45 Java_sun_management_MemoryImpl_getMemoryUsage0(JNIEnv *env, jobject dummy, jboolean heap) argument
|
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/oops/ |
H A D | ArrayKlassKlass.java | 47 ArrayKlassKlass(OopHandle handle, ObjectHeap heap) { argument 48 super(handle, heap);
|
H A D | CompiledICHolderKlass.java | 47 CompiledICHolderKlass(OopHandle handle, ObjectHeap heap) { argument 48 super(handle, heap);
|
H A D | ConstMethodKlass.java | 49 ConstMethodKlass(OopHandle handle, ObjectHeap heap) { argument 50 super(handle, heap);
|
H A D | ConstantPoolCacheKlass.java | 49 ConstantPoolCacheKlass(OopHandle handle, ObjectHeap heap) { argument 50 super(handle, heap);
|
H A D | ConstantPoolKlass.java | 49 ConstantPoolKlass(OopHandle handle, ObjectHeap heap) { argument 50 super(handle, heap);
|
H A D | InstanceKlassKlass.java | 50 InstanceKlassKlass(OopHandle handle, ObjectHeap heap) { argument 51 super(handle, heap);
|
H A D | InstanceMirrorKlass.java | 51 InstanceMirrorKlass(OopHandle handle, ObjectHeap heap) { argument 52 super(handle, heap);
|
H A D | KlassKlass.java | 50 KlassKlass(OopHandle handle, ObjectHeap heap) { argument 51 super(handle, heap);
|
H A D | MethodDataKlass.java | 49 MethodDataKlass(OopHandle handle, ObjectHeap heap) { argument 50 super(handle, heap);
|
H A D | MethodKlass.java | 49 MethodKlass(OopHandle handle, ObjectHeap heap) { argument 50 super(handle, heap);
|
H A D | ObjArrayKlassKlass.java | 50 ObjArrayKlassKlass(OopHandle handle, ObjectHeap heap) { argument 51 super(handle, heap);
|
H A D | TypeArrayKlassKlass.java | 47 public TypeArrayKlassKlass(OopHandle handle, ObjectHeap heap) { argument 48 super(handle, heap);
|
H A D | Instance.java | 50 Instance(OopHandle handle, ObjectHeap heap) { argument 51 super(handle, heap);
|
H A D | ObjArray.java | 49 ObjArray(OopHandle handle, ObjectHeap heap) { argument 50 super(handle, heap);
|
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/ |
H A D | DeadlockDetector.java | 55 heap = VM.getVM().getObjectHeap(); 144 private static ObjectHeap heap; field in class:DeadlockDetector 181 Oop oop = heap.newOop(obj);
|
H A D | JNIid.java | 40 private ObjectHeap heap; field in class:JNIid 67 public JNIid(Address addr, ObjectHeap heap) { argument 69 this.heap = heap; 77 return new JNIid(nextAddr, heap); 80 public Klass holder() { return (Klass) heap.newOop(holder.getValue(addr)); } 85 public Method resolvedMethod() { return (Method) heap.newOop(resolvedMethod.getValue(addr)); } 86 public Klass resolvedReceiver() { return (Klass) heap.newOop(resolvedReceiver.getValue(addr)); }
|
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ui/ |
H A D | MonitorCacheDumpPanel.java | 70 Oop oop = heap.newOop(obj); 113 private static ObjectHeap heap = VM.getVM().getObjectHeap(); field in class:MonitorCacheDumpPanel
|
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/ |
H A D | MarkBits.java | 33 /** Helper class which covers the reserved area of the heap with an 35 the heap like liveness analysis. */ 38 public MarkBits(CollectedHeap heap) { argument 39 MemRegion reserved = heap.reservedRegion(); 44 // FIXME: will have trouble with larger heap sizes 54 outside the heap (should not happen), prints a warning and 63 // FIXME: will have trouble with larger heap sizes 66 System.err.println("MarkBits: WARNING: object " + handle + " outside of heap, ignoring"); 80 // FIXME: will have trouble with larger heap sizes 83 System.err.println("MarkBits: WARNING: object " + handle + " outside of heap, ignorin [all...] |