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

/openjdk7/hotspot/src/share/vm/runtime/
H A DvframeArray.hpp34 // A vframeArray is an array used for momentarily storing off stack Java method activations
46 // A vframeArrayElement is an element of a vframeArray. Each element
113 class vframeArray: public CHeapObj<mtCompiler> { class in inherits:CHeapObj
119 // Here is what a vframeArray looks like in memory
135 vframeArray* _next;
137 frame _caller; // caller of root frame in vframeArray
164 static vframeArray* allocate(JavaThread* thread, int frame_size, GrowableArray<compiledVFrame*>* chunk,
173 // Returns the owner of this vframeArray
177 vframeArray* next() const { return _next; }
178 void set_next(vframeArray* valu
[all...]

Completed in 380 milliseconds