/external/webkit/JavaScriptCore/runtime/ |
D | ScopeChain.h | 34 class ScopeChainNode : public FastAllocBase { 36 …ScopeChainNode(ScopeChainNode* next, JSObject* object, JSGlobalData* globalData, JSObject* globalT… in ScopeChainNode() function 49 ~ScopeChainNode() in ~ScopeChainNode() 58 ScopeChainNode* next; 73 ScopeChainNode* copy() in copy() 79 ScopeChainNode* push(JSObject*); 80 ScopeChainNode* pop(); 93 inline ScopeChainNode* ScopeChainNode::push(JSObject* o) in push() 96 return new ScopeChainNode(this, o, globalData, globalThis); in push() 99 inline ScopeChainNode* ScopeChainNode::pop() in pop() [all …]
|
D | ConstructData.h | 39 class ScopeChainNode; variable 55 ScopeChainNode* scopeChain;
|
D | CallData.h | 41 class ScopeChainNode; variable 57 ScopeChainNode* scopeChain;
|
D | JSFunction.h | 54 JSFunction(ExecState*, const Identifier&, FunctionBodyNode*, ScopeChainNode*); 111 void setScopeChain(ScopeChainNode* sc) in setScopeChain()
|
D | ScopeChainMark.h | 30 for (ScopeChainNode* n = m_node; n; n = n->next) in markAggregate()
|
D | ScopeChain.cpp | 34 void ScopeChainNode::print() const in print()
|
D | JSGlobalObject.h | 337 inline JSGlobalObject* ScopeChainNode::globalObject() const in globalObject() 339 const ScopeChainNode* n = this; in globalObject()
|
D | JSFunction.cpp | 66 …ion(ExecState* exec, const Identifier& name, FunctionBodyNode* body, ScopeChainNode* scopeChainNod… in JSFunction()
|
D | Operations.h | 255 …ALWAYS_INLINE JSValue resolveBase(CallFrame* callFrame, Identifier& property, ScopeChainNode* scop… in resolveBase()
|
/external/webkit/JavaScriptCore/interpreter/ |
D | Interpreter.h | 52 class ScopeChainNode; variable 98 … JSValue execute(ProgramNode*, CallFrame*, ScopeChainNode*, JSObject* thisObj, JSValue* exception); 99 …e*, CallFrame*, JSFunction*, JSObject* thisObj, const ArgList& args, ScopeChainNode*, JSValue* exc… 100 …JSValue execute(EvalNode* evalNode, CallFrame* exec, JSObject* thisObj, ScopeChainNode* scopeChain… 118 …RepeatCall(FunctionBodyNode*, CallFrame*, JSFunction*, int argCount, ScopeChainNode*, JSValue* exc… 122 …alNode*, CallFrame*, JSObject* thisObject, int globalRegisterOffset, ScopeChainNode*, JSValue* exc… 131 NEVER_INLINE ScopeChainNode* createExceptionScope(CallFrame*, const Instruction* vPC);
|
D | Register.h | 45 class ScopeChainNode; variable 66 Register(ScopeChainNode*); 76 ScopeChainNode* scopeChain() const; 96 ScopeChainNode* scopeChain; 150 ALWAYS_INLINE Register::Register(ScopeChainNode* scopeChain) in Register() 195 ALWAYS_INLINE ScopeChainNode* Register::scopeChain() const in scopeChain()
|
D | CallFrame.h | 42 …ScopeChainNode* scopeChain() const { return this[RegisterFile::ScopeChain].Register::scopeChain();… in scopeChain() 110 … void setScopeChain(ScopeChainNode* scopeChain) { this[RegisterFile::ScopeChain] = scopeChain; } in setScopeChain() 112 ALWAYS_INLINE void init(CodeBlock* codeBlock, Instruction* vPC, ScopeChainNode* scopeChain, in init()
|
D | CallFrameClosure.h | 38 ScopeChainNode* scopeChain;
|
D | Interpreter.cpp | 97 ScopeChainNode* scopeChain = callFrame->scopeChain(); in resolve() 128 ScopeChainNode* scopeChain = callFrame->scopeChain(); in resolveSkip() 206 ScopeChainNode* scopeChain = callFrame->scopeChain(); in resolveBaseAndProperty() 242 ScopeChainNode* scopeChain = callFrame->scopeChain(); in resolveBaseAndFunc() 355 ScopeChainNode* scopeChain = callFrame->scopeChain(); in callEval() 488 ScopeChainNode* scopeChain = callFrame->scopeChain(); in unwindCallFrame() 602 ScopeChainNode* scopeChain = callFrame->scopeChain(); in throwException() 613 JSValue Interpreter::execute(ProgramNode* programNode, CallFrame* callFrame, ScopeChainNode* scopeC… in execute() 674 …Frame, JSFunction* function, JSObject* thisObj, const ArgList& args, ScopeChainNode* scopeChain, J… in execute() 736 …nBodyNode, CallFrame* callFrame, JSFunction* function, int argCount, ScopeChainNode* scopeChain, J… in prepareForRepeatCall() [all …]
|
/external/webkit/JavaScriptCore/parser/ |
D | Nodes.h | 51 class ScopeChainNode; variable 1476 ProgramCodeBlock& bytecode(ScopeChainNode* scopeChain) in bytecode() 1484 JITCode& jitCode(ScopeChainNode* scopeChain) in jitCode() 1495 void generateBytecode(ScopeChainNode*); 1499 void generateJITCode(ScopeChainNode*); 1509 EvalCodeBlock& bytecode(ScopeChainNode* scopeChain) in bytecode() 1516 EvalCodeBlock& bytecodeForExceptionInfoReparse(ScopeChainNode*, CodeBlock*); 1521 JITCode& jitCode(ScopeChainNode* scopeChain) in jitCode() 1532 void generateBytecode(ScopeChainNode*); 1536 void generateJITCode(ScopeChainNode*); [all …]
|
D | Nodes.cpp | 1889 void ProgramNode::generateBytecode(ScopeChainNode* scopeChainNode) in generateBytecode() 1903 void ProgramNode::generateJITCode(ScopeChainNode* scopeChainNode) in generateJITCode() 1944 void EvalNode::generateBytecode(ScopeChainNode* scopeChainNode) in generateBytecode() 1959 EvalCodeBlock& EvalNode::bytecodeForExceptionInfoReparse(ScopeChainNode* scopeChainNode, CodeBlock*… in bytecodeForExceptionInfoReparse() 1982 void EvalNode::generateJITCode(ScopeChainNode* scopeChainNode) in generateJITCode() 2071 void FunctionBodyNode::generateBytecode(ScopeChainNode* scopeChainNode) in generateBytecode() 2091 void FunctionBodyNode::generateJITCode(ScopeChainNode* scopeChainNode) in generateJITCode() 2101 CodeBlock& FunctionBodyNode::bytecodeForExceptionInfoReparse(ScopeChainNode* scopeChainNode, CodeBl… in bytecodeForExceptionInfoReparse() 2154 JSFunction* FuncDeclNode::makeFunction(ExecState* exec, ScopeChainNode* scopeChain) in makeFunction() 2173 JSFunction* FuncExprNode::makeFunction(ExecState* exec, ScopeChainNode* scopeChain) in makeFunction()
|
/external/webkit/JavaScriptCore/debugger/ |
D | DebuggerCallFrame.h | 52 const ScopeChainNode* scopeChain() const { return m_callFrame->scopeChain(); } in scopeChain()
|
/external/webkit/WebCore/bindings/js/ |
D | JSJavaScriptCallFrameCustom.cpp | 72 const ScopeChainNode* scopeChain = impl()->scopeChain(); in scopeChain()
|
/external/webkit/WebCore/inspector/ |
D | JavaScriptCallFrame.cpp | 57 const JSC::ScopeChainNode* JavaScriptCallFrame::scopeChain() const in scopeChain()
|
D | JavaScriptCallFrame.h | 63 const JSC::ScopeChainNode* scopeChain() const;
|
/external/webkit/JavaScriptCore/bytecode/ |
D | EvalCodeCache.h | 44 …PassRefPtr<EvalNode> get(ExecState* exec, const UString& evalSource, ScopeChainNode* scopeChain, J… in get()
|
/external/webkit/JavaScriptCore/jit/ |
D | JITOpcodes.cpp | 587 loadPtr(Address(regT2, OBJECT_OFFSETOF(ScopeChainNode, next)), regT2); in emit_op_get_scoped_var() 589 loadPtr(Address(regT2, OBJECT_OFFSETOF(ScopeChainNode, object)), regT2); in emit_op_get_scoped_var() 608 loadPtr(Address(regT2, OBJECT_OFFSETOF(ScopeChainNode, next)), regT2); in emit_op_put_scoped_var() 610 loadPtr(Address(regT2, OBJECT_OFFSETOF(ScopeChainNode, object)), regT2); in emit_op_put_scoped_var() 2032 loadPtr(Address(regT0, OBJECT_OFFSETOF(ScopeChainNode, next)), regT0); 2034 loadPtr(Address(regT0, OBJECT_OFFSETOF(ScopeChainNode, object)), regT0); 2046 loadPtr(Address(regT1, OBJECT_OFFSETOF(ScopeChainNode, next)), regT1); 2048 loadPtr(Address(regT1, OBJECT_OFFSETOF(ScopeChainNode, object)), regT1);
|
D | JITStubs.cpp | 919 ScopeChainNode* scopeChain = stackFrame.callFrame->scopeChain(); in DEFINE_STUB_FUNCTION() 1485 ScopeChainNode* callDataScopeChain = function->scope().node(); in DEFINE_STUB_FUNCTION() 1690 ScopeChainNode* scopeChain = callFrame->scopeChain(); in DEFINE_STUB_FUNCTION() 2144 ScopeChainNode* scopeChain = callFrame->scopeChain(); in DEFINE_STUB_FUNCTION() 2486 ScopeChainNode* scopeChain = callFrame->scopeChain(); in DEFINE_STUB_FUNCTION() 2845 ScopeChainNode* tmp = callFrame->scopeChain(); in DEFINE_STUB_FUNCTION()
|
D | JIT.h | 61 class ScopeChainNode; variable
|
/external/webkit/WebKit/mac/WebView/ |
D | WebScriptDebugDelegate.mm | 179 const ScopeChainNode* scopeChain = _private->debuggerCallFrame->scopeChain();
|