Home | History | Annotate | Download | only in interpreter

Lines Matching refs:thisObj

728 JSValue Interpreter::execute(ProgramExecutable* program, CallFrame* callFrame, ScopeChainNode* scopeChain, JSObject* thisObj)
754 newCallFrame->uncheckedR(newCallFrame->hostThisRegister()) = JSValue(thisObj);
1052 JSValue Interpreter::execute(EvalExecutable* eval, CallFrame* callFrame, JSObject* thisObj, ScopeChainNode* scopeChain)
1057 return execute(eval, callFrame, thisObj, m_registerFile.size() + eval->generatedBytecode().m_numParameters + RegisterFile::CallFrameHeaderSize, scopeChain);
1060 JSValue Interpreter::execute(EvalExecutable* eval, CallFrame* callFrame, JSObject* thisObj, int globalRegisterOffset, ScopeChainNode* scopeChain)
1122 newCallFrame->uncheckedR(newCallFrame->hostThisRegister()) = JSValue(thisObj);