Home
last modified time | relevance | path

Searched refs:callerFrame (Results 1 – 7 of 7) sorted by relevance

/external/webkit/Source/JavaScriptCore/interpreter/
DCallFrame.h93 CallFrame* callerFrame() const { return this[RegisterFile::CallerFrame].callFrame(); } in callerFrame() function
101 …void setCallerFrame(CallFrame* callerFrame) { static_cast<Register*>(this)[RegisterFile::CallerFra… in setCallerFrame() argument
105 CallFrame* callerFrame, int argc, JSObject* callee) in init() argument
107 … ASSERT(callerFrame); // Use noCaller() rather than 0 for the outer host call frame caller. in init()
108 …ASSERT(callerFrame == noCaller() || callerFrame->removeHostCallFrameFlag()->registerFile()->end() … in init()
112 setCallerFrame(callerFrame); in init()
DInterpreter.cpp576 CallFrame* callerFrame = callFrame->callerFrame(); in unwindCallFrame() local
577 if (callerFrame->hasHostCallFrameFlag()) in unwindCallFrame()
580 codeBlock = callerFrame->codeBlock(); in unwindCallFrame()
582 if (callerFrame->globalData().canUseJIT()) in unwindCallFrame()
592 callFrame = callerFrame; in unwindCallFrame()
693 …for (CallFrame* callerFrame = callFrame; callerFrame; callerFrame = callerFrame->callerFrame()->re… in throwException() local
694 CodeBlock* codeBlock = callerFrame->codeBlock(); in throwException()
697 Register* callerHighWaterMark = callerFrame->registers() + codeBlock->m_numCalleeRegisters; in throwException()
4155 callFrame = callFrame->callerFrame(); in privateExecute()
4196 callFrame = callFrame->callerFrame(); in privateExecute()
[all …]
/external/webkit/Source/WebCore/bindings/v8/
DJavaScriptCallFrame.cpp55 v8::Handle<v8::Value> callerFrame = m_callFrame.get()->Get(v8String("caller")); in caller() local
56 if (!callerFrame->IsObject()) in caller()
58 … = JavaScriptCallFrame::create(m_debuggerContext.get(), v8::Handle<v8::Object>::Cast(callerFrame)); in caller()
DDebuggerScript.js193 DebuggerScript._frameMirrorToJSCallFrame = function(frameMirror, callerFrame) argument
264 "caller": callerFrame
/external/webkit/Source/WebCore/bindings/js/
DScriptCallStackFactory.cpp81 callFrame = callFrame->callerFrame(); in createScriptCallStack()
/external/webkit/Source/JavaScriptCore/jit/
DJITStubs.cpp1368 CallFrame* oldCallFrame = callFrame->callerFrame(); in DEFINE_STUB_FUNCTION()
1981 CallFrame* oldCallFrame = callFrame->callerFrame(); in DEFINE_STUB_FUNCTION()
2040 CallFrame* oldCallFrame = callFrame->callerFrame(); in DEFINE_STUB_FUNCTION()
2111 …CallLinkInfo* callLinkInfo = &stackFrame.callFrame->callerFrame()->codeBlock()->getCallLinkInfo(ca… in DEFINE_STUB_FUNCTION()
2116 …JIT::linkCall(callee, stackFrame.callFrame->callerFrame()->codeBlock(), codeBlock, codePtr, callLi… in DEFINE_STUB_FUNCTION()
2145 …CallLinkInfo* callLinkInfo = &stackFrame.callFrame->callerFrame()->codeBlock()->getCallLinkInfo(ca… in DEFINE_STUB_FUNCTION()
2150 …JIT::linkConstruct(callee, stackFrame.callFrame->callerFrame()->codeBlock(), codeBlock, codePtr, c… in DEFINE_STUB_FUNCTION()
/external/webkit/Source/JavaScriptCore/
DChangeLog-2010-05-241091 (JSC::ExecState::callerFrame):