Searched refs:callerFrame (Results 1 – 3 of 3) sorted by relevance
/external/webkit/JavaScriptCore/interpreter/ |
D | CallFrame.h | 104 CallFrame* callerFrame() const { return this[RegisterFile::CallerFrame].callFrame(); } in callerFrame() function 109 … void setCallerFrame(CallFrame* callerFrame) { this[RegisterFile::CallerFrame] = callerFrame; } in setCallerFrame() argument 113 CallFrame* callerFrame, int returnValueRegister, int argc, JSFunction* function) in init() argument 115 … ASSERT(callerFrame); // Use noCaller() rather than 0 for the outer host call frame caller. in init() 119 setCallerFrame(callerFrame); in init()
|
D | Interpreter.cpp | 519 callFrame = callFrame->callerFrame(); in unwindCallFrame() 3274 callFrame = callFrame->callerFrame(); in privateExecute() 3861 CallFrame* callerFrame = functionCallFrame->callerFrame(); in retrieveCaller() local 3862 if (callerFrame->hasHostCallFrameFlag()) in retrieveCaller() 3865 JSValue caller = callerFrame->callee(); in retrieveCaller() 3878 CallFrame* callerFrame = callFrame->callerFrame(); in retrieveLastCaller() local 3879 if (callerFrame->hasHostCallFrameFlag()) in retrieveLastCaller() 3882 CodeBlock* callerCodeBlock = callerFrame->codeBlock(); in retrieveLastCaller() 3886 …unsigned bytecodeOffset = bytecodeOffsetForPC(callerFrame, callerCodeBlock, callFrame->returnPC()); in retrieveLastCaller() 3887 lineNumber = callerCodeBlock->lineNumberForBytecodeOffset(callerFrame, bytecodeOffset - 1); in retrieveLastCaller() [all …]
|
/external/webkit/JavaScriptCore/jit/ |
D | JITStubs.cpp | 1005 CallFrame* oldCallFrame = stackFrame.callFrame->callerFrame(); in DEFINE_STUB_FUNCTION() 1502 CallFrame* oldCallFrame = callFrame->callerFrame(); in DEFINE_STUB_FUNCTION() 1549 …CallLinkInfo* callLinkInfo = &stackFrame.callFrame->callerFrame()->codeBlock()->getCallLinkInfo(st… in DEFINE_STUB_FUNCTION() 1554 …JIT::linkCall(callee, stackFrame.callFrame->callerFrame()->codeBlock(), codeBlock, jitCode, callLi… in DEFINE_STUB_FUNCTION()
|