Home | History | Annotate | Download | only in interpreter

Lines Matching refs:callFrame

37         CachedCall(CallFrame* callFrame, JSFunction* function, int argCount, JSValue* exception)
39 , m_interpreter(callFrame->interpreter())
41 , m_globalObjectScope(callFrame, function->scope().globalObject())
44 m_closure = m_interpreter->prepareForRepeatCall(function->jsExecutable(), callFrame, function, argCount, function->scope().node(), exception);
56 CallFrame* newCallFrame(ExecState* exec)
58 CallFrame* callFrame = m_closure.newCallFrame;
59 callFrame->setScopeChain(exec->scopeChain());
60 return callFrame;