Searched defs:heap (Results 1 - 25 of 79) sorted by relevance

1234

/openjdk7/hotspot/src/share/vm/gc_implementation/shared/
H A DisGCActiveMark.hpp38 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 DJNIHandleAccessor.java33 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 DvmPSOperations.cpp46 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 DpsPromotionLAB.cpp106 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 DpsScavenge.inline.hpp35 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 DnmtDCmd.cpp31 bool heap): DCmdWithParser(output, heap),
30 NMTDCmd(outputStream* output, bool heap) argument
/openjdk7/jdk/src/share/native/sun/management/
H A DMemoryImpl.c46 (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 DArrayKlassKlass.java47 ArrayKlassKlass(OopHandle handle, ObjectHeap heap) { argument
48 super(handle, heap);
H A DCompiledICHolderKlass.java47 CompiledICHolderKlass(OopHandle handle, ObjectHeap heap) { argument
48 super(handle, heap);
H A DConstMethodKlass.java49 ConstMethodKlass(OopHandle handle, ObjectHeap heap) { argument
50 super(handle, heap);
H A DConstantPoolCacheKlass.java49 ConstantPoolCacheKlass(OopHandle handle, ObjectHeap heap) { argument
50 super(handle, heap);
H A DConstantPoolKlass.java49 ConstantPoolKlass(OopHandle handle, ObjectHeap heap) { argument
50 super(handle, heap);
H A DInstanceKlassKlass.java50 InstanceKlassKlass(OopHandle handle, ObjectHeap heap) { argument
51 super(handle, heap);
H A DInstanceMirrorKlass.java51 InstanceMirrorKlass(OopHandle handle, ObjectHeap heap) { argument
52 super(handle, heap);
H A DKlassKlass.java50 KlassKlass(OopHandle handle, ObjectHeap heap) { argument
51 super(handle, heap);
H A DMethodDataKlass.java49 MethodDataKlass(OopHandle handle, ObjectHeap heap) { argument
50 super(handle, heap);
H A DMethodKlass.java49 MethodKlass(OopHandle handle, ObjectHeap heap) { argument
50 super(handle, heap);
H A DObjArrayKlassKlass.java50 ObjArrayKlassKlass(OopHandle handle, ObjectHeap heap) { argument
51 super(handle, heap);
H A DTypeArrayKlassKlass.java47 public TypeArrayKlassKlass(OopHandle handle, ObjectHeap heap) { argument
48 super(handle, heap);
H A DInstance.java50 Instance(OopHandle handle, ObjectHeap heap) { argument
51 super(handle, heap);
H A DObjArray.java49 ObjArray(OopHandle handle, ObjectHeap heap) { argument
50 super(handle, heap);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/
H A DDeadlockDetector.java55 heap = VM.getVM().getObjectHeap();
144 private static ObjectHeap heap; field in class:DeadlockDetector
181 Oop oop = heap.newOop(obj);
H A DJNIid.java40 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 DMonitorCacheDumpPanel.java70 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 DMarkBits.java33 /** 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...]

Completed in 96 milliseconds

1234