Better naming of the after_JSOP_CALL event (EnterFrame).

This commit is contained in:
Andreas Gal 2008-07-16 23:00:59 -07:00
parent 2442099090
commit b243a8350a
3 changed files with 3 additions and 3 deletions

View File

@ -4933,7 +4933,7 @@ js_Interpret(JSContext *cx)
cx->fp = fp = &newifp->frame;
if (JS_TRACE_MONITOR(cx).recorder)
RECORD(after_JSOP_CALL);
RECORD(EnterFrame);
inlineCallCount++;
JS_RUNTIME_METER(rt, inlineCalls);

View File

@ -2055,7 +2055,7 @@ bool TraceRecorder::record_JSOP_CALL()
}
bool
TraceRecorder::record_after_JSOP_CALL()
TraceRecorder::record_EnterFrame()
{
JSStackFrame* fp = cx->fp;
LIns* void_ins = lir->insImm(JSVAL_TO_BOOLEAN(JSVAL_VOID));

View File

@ -220,7 +220,7 @@ public:
bool loopEdge();
void stop();
bool record_after_JSOP_CALL();
bool record_EnterFrame();
#define OPDEF(op,val,name,token,length,nuses,ndefs,prec,format) \
bool record_##op();