mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Better naming of the after_JSOP_CALL event (EnterFrame).
This commit is contained in:
parent
2442099090
commit
b243a8350a
@ -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);
|
||||
|
@ -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));
|
||||
|
@ -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();
|
||||
|
Loading…
Reference in New Issue
Block a user