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

  /external/webkit/JavaScriptCore/interpreter/
CachedCall.h 37 CachedCall(CallFrame* callFrame, JSFunction* function, int argCount, JSValue* exception)
39 , m_interpreter(callFrame->interpreter())
41 , m_globalObjectScope(callFrame, function->scope().globalObject())
44 m_closure = m_interpreter->prepareForRepeatCall(function->jsExecutable(), callFrame, function, argCount, function->scope().node(), exception);
56 CallFrame* newCallFrame(ExecState* exec)
58 CallFrame* callFrame = m_closure.newCallFrame;
59 callFrame->setScopeChain(exec->scopeChain());
60 return callFrame;
    [all...]
Register.h 49 typedef ExecState CallFrame;
60 Register& operator=(CallFrame*);
70 CallFrame* callFrame() const;
90 CallFrame* callFrame;
136 ALWAYS_INLINE Register& Register::operator=(CallFrame* callFrame)
138 u.callFrame = callFrame;
    [all...]
  /external/webkit/JavaScriptCore/runtime/
JSActivation.cpp 42 JSActivation::JSActivation(CallFrame* callFrame, NonNullPassRefPtr<FunctionExecutable> functionExecutable)
43 : Base(callFrame->globalData().activationStructure, new JSActivationData(functionExecutable, callFrame->registers()))
152 CallFrame* callFrame = CallFrame::create(activation->d()->registers);
153 Arguments* arguments = callFrame->optionalCalleeArguments();
155 arguments = new (callFrame) Arguments(callFrame);
    [all...]
  /external/webkit/WebCore/bindings/js/
JSInjectedScriptHostCustom.cpp 124 JavaScriptCallFrame* callFrame = impl()->currentCallFrame();
125 if (!callFrame || !callFrame->isValid())
129 return toJS(exec, callFrame);
  /external/webkit/JavaScriptCore/jit/
JITStubs.h 94 CallFrame* callFrame;
130 CallFrame* callFrame;
158 CallFrame* callFrame;
184 CallFrame* callFrame;
241 extern "C" EncodedJSValue ctiTrampoline(void* code, RegisterFile*, CallFrame*, JSValue* exception, Profiler**, JSGlobalData*);
247 static void tryCacheGetByID(CallFrame*, CodeBlock*, ReturnAddressPtr returnAddress, JSValue baseValue, const Identifier& propertyName, c (…)
    [all...]
JITStubs.cpp 36 #include "CallFrame.h"
112 COMPILE_ASSERT(offsetof(struct JITStackFrame, callFrame) == 0x58, JITStackFrame_callFrame_offset_matches_ctiTrampoline);
175 COMPILE_ASSERT(offsetof(struct JITStackFrame, callFrame) == 0x90, JITStackFrame_callFrame_offset_matches_ctiTrampoline);
345 COMPILE_ASSERT(offsetof(struct JITStackFrame, callFrame) == 0x58, JITStackFrame_callFrame_offset_matches_ctiTrampoline);
350 __declspec(naked) EncodedJSValue ctiTrampoline(void* code, RegisterFile*, CallFrame*, JSValue* exception, Profiler**, JSGlobalData*)
409 COMPILE_ASSERT(offsetof(struct JITStackFrame, callFrame) == 0x38, JITStackFrame_callFrame_offset_matches_ctiTrampoline);
471 COMPILE_ASSERT(offsetof(struct JITStackFrame, callFrame) == 0x58, JITStackFrame_callFrame_offset_matches_ctiTrampoline);
646 __asm EncodedJSValue ctiTrampoline(void*, RegisterFile*, CallFrame*, JSValue*, Profiler**, JSGlobalData*)
691 COMPILE_ASSERT(offsetof(struct JITStackFrame, callFrame) == 0x38, JITStackFrame_callFrame_offset_matches_ctiTrampoline);
697 __declspec(naked) EncodedJSValue ctiTrampoline(void* code, RegisterFile*, CallFrame*, JSValue* exception, Profiler**, JSGlobalData*
    [all...]
  /external/webkit/JavaScriptCore/bytecompiler/
BytecodeGenerator.cpp     [all...]
  /external/webkit/WebCore/inspector/
InspectorController.cpp     [all...]

Completed in 172 milliseconds