HomeSort by relevance Sort by last modified time
    Searched defs:callFrame (Results 1 - 9 of 9) sorted by null

  /external/webkit/Source/WebCore/bindings/js/
JSInjectedScriptHostCustom.cpp 80 JavaScriptCallFrame* callFrame = impl()->debuggerAgent()->scriptDebugServer().currentCallFrame();
81 if (!callFrame || !callFrame->isValid())
85 return toJS(exec, callFrame);
ScriptCallStackFactory.cpp 39 #include <interpreter/CallFrame.h>
59 CallFrame* callFrame = exec;
61 ASSERT(callFrame);
67 exec->interpreter()->retrieveLastCaller(callFrame, signedLineNumber, sourceID, urlString, function);
81 callFrame = callFrame->callerFrame();
  /external/webkit/Source/JavaScriptCore/interpreter/
CachedCall.h 38 CachedCall(CallFrame* callFrame, JSFunction* function, int argCount)
40 , m_interpreter(callFrame->interpreter())
41 , m_globalObjectScope(callFrame->globalData(), function->scope()->globalObject.get())
44 m_closure = m_interpreter->prepareForRepeatCall(function->jsExecutable(), callFrame, function, argCount, function->scope());
45 m_valid = !callFrame->hadException();
56 CallFrame* newCallFrame(ExecState* exec)
58 CallFrame* callFrame = m_closure.newCallFrame;
59 callFrame->setScopeChain(exec->scopeChain())
    [all...]
Register.h 47 typedef ExecState CallFrame;
59 Register& operator=(CallFrame*);
66 CallFrame* callFrame() const;
84 CallFrame* callFrame;
126 ALWAYS_INLINE Register& Register::operator=(CallFrame* callFrame)
128 u.callFrame = callFrame;
    [all...]
  /external/webkit/Source/JavaScriptCore/runtime/
JSActivation.cpp 42 JSActivation::JSActivation(CallFrame* callFrame, FunctionExecutable* functionExecutable)
43 : Base(callFrame->globalData(), callFrame->globalData().activationStructure.get(), functionExecutable->symbolTable(), callFrame->registers())
214 CallFrame* callFrame = CallFrame::create(reinterpret_cast<Register*>(activation->m_registers));
216 if (JSValue arguments = callFrame->uncheckedR(argumentsRegister).jsValue())
220 JSValue arguments = JSValue(new (callFrame) Arguments(callFrame))
    [all...]
  /external/webkit/Source/JavaScriptCore/jit/
JITStubs.h 99 CallFrame* callFrame;
135 CallFrame* callFrame;
163 CallFrame* callFrame;
191 CallFrame* callFrame;
223 CallFrame* callFrame;
    [all...]
JITStubs.cpp 37 #include "CallFrame.h"
119 COMPILE_ASSERT(offsetof(struct JITStackFrame, callFrame) == 0x58, JITStackFrame_callFrame_offset_matches_ctiTrampoline);
171 COMPILE_ASSERT(offsetof(struct JITStackFrame, callFrame) == 0x90, JITStackFrame_callFrame_offset_matches_ctiTrampoline);
249 COMPILE_ASSERT(offsetof(struct JITStackFrame, callFrame) == 0x58, JITStackFrame_callFrame_offset_matches_ctiTrampoline);
254 __declspec(naked) EncodedJSValue ctiTrampoline(void* code, RegisterFile*, CallFrame*, void* /*unused1*/, Profiler**, JSGlobalData*)
319 /* code (r4), RegisterFile* (r5), CallFrame* (r6), JSValue* exception (r7), Profiler**(sp), JSGlobalData (sp)*/
400 COMPILE_ASSERT(offsetof(struct JITStackFrame, callFrame) == 0x58, JITStackFrame_callFrame_offset_matches_ctiTrampoline);
490 "sw $6," STRINGIZE_VALUE_OF(CALLFRAME_OFFSET) "($29) # store callFrame to curent stack" "\n"
662 __asm EncodedJSValue ctiTrampoline(void*, RegisterFile*, CallFrame*, JSValue*, Profiler**, JSGlobalData*)
710 __asm EncodedJSValue ctiTrampoline(void*, RegisterFile*, CallFrame*, void* /*unused1*/, Profiler**, JSGlobalData*
    [all...]
  /external/webkit/Source/JavaScriptCore/bytecompiler/
BytecodeGenerator.h 58 unsigned callFrame() { return thisRegister()->index() + count() + RegisterFile::CallFrameHeaderSize; }
BytecodeGenerator.cpp     [all...]

Completed in 774 milliseconds