Searched refs:RFrame (Results 1 - 5 of 5) sorted by relevance

/openjdk7/hotspot/src/share/vm/runtime/
H A Drframe.hpp35 class RFrame : public ResourceObj { class in inherits:ResourceObj
39 RFrame* _caller; // caller / callee rframes (or NULL)
40 RFrame*const _callee;
46 RFrame(frame fr, JavaThread* thread, RFrame*const callee);
52 static RFrame* new_RFrame(frame fr, JavaThread* thread, RFrame*const callee);
67 RFrame* caller();
68 RFrame* callee() const { return _callee; }
69 RFrame* paren
[all...]
H A Drframe.cpp35 static RFrame*const noCaller = (RFrame*) 0x1; // no caller (i.e., initial frame)
36 static RFrame*const noCallerYet = (RFrame*) 0x0; // caller not yet computed
38 RFrame::RFrame(frame fr, JavaThread* thread, RFrame*const callee) : function in class:RFrame
40 _caller = (RFrame*)noCallerYet;
45 void RFrame::set_distance(int d) {
50 InterpretedRFrame::InterpretedRFrame(frame fr, JavaThread* thread, RFrame*cons
[all...]
H A DcompilationPolicy.hpp128 RFrame* findTopInlinableFrame(GrowableArray<RFrame*>* stack);
129 RFrame* senderOf(RFrame* rf, GrowableArray<RFrame*>* stack);
H A DcompilationPolicy.cpp447 RFrame* first = new InterpretedRFrame(triggerVF->fr(), thread, m);
454 GrowableArray<RFrame*>* stack = new GrowableArray<RFrame*>(50);
456 RFrame* top = findTopInlinableFrame(stack);
477 RFrame* StackWalkCompPolicy::findTopInlinableFrame(GrowableArray<RFrame*>* stack) {
480 RFrame* current = stack->at(0); // current choice for stopping
488 RFrame* next = senderOf(current, stack);
592 RFrame* StackWalkCompPolicy::senderOf(RFrame* r
[all...]
/openjdk7/hotspot/src/share/vm/utilities/
H A DglobalDefinitions.hpp819 class RFrame;

Completed in 39 milliseconds