Searched refs:callerFrame (Results 1 - 6 of 6) sorted by relevance

/external/webkit/Source/JavaScriptCore/interpreter/
H A DCallFrame.h93 CallFrame* callerFrame() const { return this[RegisterFile::CallerFrame].callFrame(); } function in class:JSC::ExecState
101 void setCallerFrame(CallFrame* callerFrame) { static_cast<Register*>(this)[RegisterFile::CallerFrame] = callerFrame; } argument
105 CallFrame* callerFrame, int argc, JSObject* callee)
107 ASSERT(callerFrame); // Use noCaller() rather than 0 for the outer host call frame caller.
108 ASSERT(callerFrame == noCaller() || callerFrame->removeHostCallFrameFlag()->registerFile()->end() >= this);
112 setCallerFrame(callerFrame);
104 init(CodeBlock* codeBlock, Instruction* vPC, ScopeChainNode* scopeChain, CallFrame* callerFrame, int argc, JSObject* callee) argument
H A DInterpreter.cpp576 CallFrame* callerFrame = callFrame->callerFrame(); local
577 if (callerFrame->hasHostCallFrameFlag())
580 codeBlock = callerFrame->codeBlock();
582 if (callerFrame->globalData().canUseJIT())
592 callFrame = callerFrame;
693 for (CallFrame* callerFrame = callFrame; callerFrame; callerFrame = callerFrame
4838 CallFrame* callerFrame = callFrame->callerFrame(); local
[all...]
/external/webkit/Source/WebCore/bindings/v8/
H A DJavaScriptCallFrame.cpp55 v8::Handle<v8::Value> callerFrame = m_callFrame.get()->Get(v8String("caller")); local
56 if (!callerFrame->IsObject())
58 m_caller = JavaScriptCallFrame::create(m_debuggerContext.get(), v8::Handle<v8::Object>::Cast(callerFrame));
H A DDebuggerScript.js193 DebuggerScript._frameMirrorToJSCallFrame = function(frameMirror, callerFrame)
264 "caller": callerFrame
/external/webkit/Source/WebCore/bindings/js/
H A DScriptCallStackFactory.cpp81 callFrame = callFrame->callerFrame();
/external/webkit/Source/JavaScriptCore/jit/
H A DJITStubs.cpp1368 CallFrame* oldCallFrame = callFrame->callerFrame();
1981 CallFrame* oldCallFrame = callFrame->callerFrame();
2040 CallFrame* oldCallFrame = callFrame->callerFrame();
2111 CallLinkInfo* callLinkInfo = &stackFrame.callFrame->callerFrame()->codeBlock()->getCallLinkInfo(callFrame->returnPC());
2116 JIT::linkCall(callee, stackFrame.callFrame->callerFrame()->codeBlock(), codeBlock, codePtr, callLinkInfo, callFrame->argumentCountIncludingThis(), stackFrame.globalData);
2145 CallLinkInfo* callLinkInfo = &stackFrame.callFrame->callerFrame()->codeBlock()->getCallLinkInfo(callFrame->returnPC());
2150 JIT::linkConstruct(callee, stackFrame.callFrame->callerFrame()->codeBlock(), codeBlock, codePtr, callLinkInfo, callFrame->argumentCountIncludingThis(), stackFrame.globalData);

Completed in 76 milliseconds