Searched refs:callFrame (Results 1 - 25 of 32) sorted by relevance

12

/external/webkit/Source/JavaScriptCore/runtime/
H A DOperations.cpp44 NEVER_INLINE JSValue jsAddSlowCase(CallFrame* callFrame, JSValue v1, JSValue v2) argument
47 JSValue p1 = v1.toPrimitive(callFrame);
48 JSValue p2 = v2.toPrimitive(callFrame);
52 ? jsString(callFrame, asString(p1), asString(p2))
53 : jsString(callFrame, asString(p1), p2.toString(callFrame));
56 return jsString(callFrame, p1.toString(callFrame), asString(p2));
58 return jsNumber(p1.toNumber(callFrame) + p2.toNumber(callFrame));
61 jsTypeStringForValue(CallFrame* callFrame, JSValue v) argument
[all...]
H A DArguments.h129 ALWAYS_INLINE void Arguments::getArgumentsData(CallFrame* callFrame, JSFunction*& function, ptrdiff_t& firstParameterIndex, Register*& argv, int& argc) argument
131 function = asFunction(callFrame->callee());
134 argc = callFrame->argumentCountIncludingThis();
137 argv = callFrame->registers() - RegisterFile::CallFrameHeaderSize - numParameters;
139 argv = callFrame->registers() - RegisterFile::CallFrameHeaderSize - numParameters - argc;
145 inline Arguments::Arguments(CallFrame* callFrame) argument
146 : JSNonFinalObject(callFrame->globalData(), callFrame->lexicalGlobalObject()->argumentsStructure())
155 getArgumentsData(callFrame, callee, firstParameterIndex, argv, numArguments);
161 d->registers = reinterpret_cast<WriteBarrier<Unknown>*>(callFrame
187 Arguments(CallFrame* callFrame, NoParametersType) argument
[all...]
H A DOperations.h337 ALWAYS_INLINE bool jsLess(CallFrame* callFrame, JSValue v1, JSValue v2) argument
347 JSGlobalData* globalData = &callFrame->globalData();
349 return asString(v1)->value(callFrame) < asString(v2)->value(callFrame);
353 bool wasNotString1 = v1.getPrimitiveNumber(callFrame, n1, p1);
354 bool wasNotString2 = v2.getPrimitiveNumber(callFrame, n2, p2);
359 return asString(p1)->value(callFrame) < asString(p2)->value(callFrame);
362 inline bool jsLessEq(CallFrame* callFrame, JSValue v1, JSValue v2) argument
372 JSGlobalData* globalData = &callFrame
396 jsAdd(CallFrame* callFrame, JSValue v1, JSValue v2) argument
412 normalizePrototypeChain(CallFrame* callFrame, JSValue base, JSValue slotBase, const Identifier& propertyName, size_t& slotOffset) argument
443 normalizePrototypeChain(CallFrame* callFrame, JSCell* base) argument
462 resolveBase(CallFrame* callFrame, Identifier& property, ScopeChainNode* scopeChain, bool isStrictPut) argument
[all...]
H A DJSActivation.cpp42 JSActivation::JSActivation(CallFrame* callFrame, FunctionExecutable* functionExecutable) argument
43 : Base(callFrame->globalData(), callFrame->globalData().activationStructure.get(), functionExecutable->symbolTable(), callFrame->registers())
214 CallFrame* callFrame = CallFrame::create(reinterpret_cast<Register*>(activation->m_registers)); local
216 if (JSValue arguments = callFrame->uncheckedR(argumentsRegister).jsValue())
220 JSValue arguments = JSValue(new (callFrame) Arguments(callFrame));
221 callFrame->uncheckedR(argumentsRegister) = arguments;
222 callFrame
[all...]
/external/webkit/Source/JavaScriptCore/interpreter/
H A DInterpreter.cpp92 NEVER_INLINE bool Interpreter::resolve(CallFrame* callFrame, Instruction* vPC, JSValue& exceptionValue) argument
97 ScopeChainNode* scopeChain = callFrame->scopeChain();
102 CodeBlock* codeBlock = callFrame->codeBlock();
107 if (o->getPropertySlot(callFrame, ident, slot)) {
108 JSValue result = slot.getValue(callFrame, ident);
109 exceptionValue = callFrame->globalData().exception;
112 callFrame->uncheckedR(dst) = JSValue(result);
116 exceptionValue = createUndefinedVariableError(callFrame, ident);
120 NEVER_INLINE bool Interpreter::resolveSkip(CallFrame* callFrame, Instruction* vPC, JSValue& exceptionValue) argument
122 CodeBlock* codeBlock = callFrame
160 resolveGlobal(CallFrame* callFrame, Instruction* vPC, JSValue& exceptionValue) argument
197 resolveGlobalDynamic(CallFrame* callFrame, Instruction* vPC, JSValue& exceptionValue) argument
274 resolveBase(CallFrame* callFrame, Instruction* vPC) argument
288 resolveBaseAndProperty(CallFrame* callFrame, Instruction* vPC, JSValue& exceptionValue) argument
326 slideRegisterWindowForCall(CodeBlock* newCodeBlock, RegisterFile* registerFile, CallFrame* callFrame, size_t registerOffset, int argc) argument
364 isInvalidParamForIn(CallFrame* callFrame, JSValue value, JSValue& exceptionData) argument
372 isInvalidParamForInstanceOf(CallFrame* callFrame, JSValue value, JSValue& exceptionData) argument
381 callEval(CallFrame* callFrame, RegisterFile* registerFile, Register* argv, int argc, int registerOffset) argument
434 dumpCallFrame(CallFrame* callFrame) argument
440 dumpRegisters(CallFrame* callFrame) argument
542 unwindCallFrame(CallFrame*& callFrame, JSValue exceptionValue, unsigned& bytecodeOffset, CodeBlock*& codeBlock) argument
596 appendSourceToError(CallFrame* callFrame, ErrorInstance* exception, unsigned bytecodeOffset) argument
647 throwException(CallFrame*& callFrame, JSValue& exceptionValue, unsigned bytecodeOffset) argument
728 execute(ProgramExecutable* program, CallFrame* callFrame, ScopeChainNode* scopeChain, JSObject* thisObj) argument
786 executeCall(CallFrame* callFrame, JSObject* function, CallType callType, const CallData& callData, JSValue thisValue, const ArgList& args) argument
876 executeConstruct(CallFrame* callFrame, JSObject* constructor, ConstructType constructType, const ConstructData& constructData, const ArgList& args) argument
971 prepareForRepeatCall(FunctionExecutable* FunctionExecutable, CallFrame* callFrame, JSFunction* function, int argCount, ScopeChainNode* scopeChain) argument
1052 execute(EvalExecutable* eval, CallFrame* callFrame, JSObject* thisObj, ScopeChainNode* scopeChain) argument
1060 execute(EvalExecutable* eval, CallFrame* callFrame, JSObject* thisObj, int globalRegisterOffset, ScopeChainNode* scopeChain) argument
1158 debug(CallFrame* callFrame, DebugHookID debugHookID, int firstLine, int lastLine) argument
1187 createExceptionScope(CallFrame* callFrame, const Instruction* vPC) argument
1199 tryCachePutByID(CallFrame* callFrame, CodeBlock* codeBlock, Instruction* vPC, JSValue baseValue, const PutPropertySlot& slot) argument
1274 tryCacheGetByID(CallFrame* callFrame, CodeBlock* codeBlock, Instruction* vPC, JSValue baseValue, const Identifier& propertyName, const PropertySlot& slot) argument
1417 privateExecute(ExecutionFlag flag, RegisterFile* registerFile, CallFrame* callFrame) argument
4791 retrieveArguments(CallFrame* callFrame, JSFunction* function) const argument
4815 retrieveCaller(CallFrame* callFrame, JSFunction* function) const argument
4832 retrieveLastCaller(CallFrame* callFrame, int& lineNumber, intptr_t& sourceID, UString& sourceURL, JSValue& function) const argument
4862 findFunctionCallFrame(CallFrame* callFrame, JSFunction* function) argument
[all...]
H A DCachedCall.h38 CachedCall(CallFrame* callFrame, JSFunction* function, int argCount) argument
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();
58 CallFrame* callFrame = m_closure.newCallFrame; local
59 callFrame->setScopeChain(exec->scopeChain());
60 return callFrame;
H A DCallFrame.h78 static const HashTable* arrayTable(CallFrame* callFrame) { return callFrame->globalData().arrayTable; } argument
79 static const HashTable* dateTable(CallFrame* callFrame) { return callFrame->globalData().dateTable; } argument
80 static const HashTable* jsonTable(CallFrame* callFrame) { return callFrame->globalData().jsonTable; } argument
81 static const HashTable* mathTable(CallFrame* callFrame) { return callFrame->globalData().mathTable; } argument
82 static const HashTable* numberTable(CallFrame* callFrame) { return callFrame argument
83 objectConstructorTable(CallFrame* callFrame) argument
84 regExpTable(CallFrame* callFrame) argument
85 regExpConstructorTable(CallFrame* callFrame) argument
86 stringTable(CallFrame* callFrame) argument
[all...]
H A DRegister.h66 CallFrame* callFrame() const;
84 CallFrame* callFrame; member in union:JSC::Register::__anon14368
126 ALWAYS_INLINE Register& Register::operator=(CallFrame* callFrame) argument
128 u.callFrame = callFrame;
149 ALWAYS_INLINE CallFrame* Register::callFrame() const function in class:JSC::Register
151 return u.callFrame;
/external/webkit/Source/JavaScriptCore/jit/
H A DJITStubs.cpp119 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);
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"
772 ASSERT(OBJECT_OFFSETOF(struct JITStackFrame, callFrame) == CALLFRAME_OFFSET);
792 ASSERT(OBJECT_OFFSETOF(struct JITStackFrame, callFrame) == CALLFRAME_OFFSET);
806 NEVER_INLINE void JITThunks::tryCachePutByID(CallFrame* callFrame, CodeBlock* codeBlock, ReturnAddressPtr returnAddress, JSValue baseValue, const PutPropertySlot& slot, StructureStubInfo* stubInfo, bool direct) argument
843 normalizePrototypeChain(callFrame, baseCell);
845 StructureChain* prototypeChain = structure->prototypeChain(callFrame);
856 tryCacheGetByID(CallFrame* callFrame, CodeBlock* codeBlock, ReturnAddressPtr returnAddress, JSValue baseValue, const Identifier& propertyName, const PropertySlot& slot, StructureStubInfo* stubInfo) argument
1000 throwStackOverflowError(CallFrame* callFrame, JSGlobalData* globalData, ReturnAddressPtr exceptionLocation, ReturnAddressPtr& returnAddressSlot) argument
1036 CallFrame* callFrame; member in struct:JSC::ExceptionHandler
1038 jitThrow(JSGlobalData* globalData, CallFrame* callFrame, JSValue exceptionValue, ReturnAddressPtr faultLocation) argument
1261 CallFrame* callFrame = stackFrame.callFrame; local
1285 CallFrame* callFrame = stackFrame.callFrame; local
1297 CallFrame* callFrame = stackFrame.callFrame; local
1310 CallFrame* callFrame = stackFrame.callFrame; local
1336 CallFrame* callFrame = stackFrame.callFrame; local
1363 CallFrame* callFrame = stackFrame.callFrame; local
1383 CallFrame* callFrame = stackFrame.callFrame; local
1419 CallFrame* callFrame = stackFrame.callFrame; local
1435 CallFrame* callFrame = stackFrame.callFrame; local
1454 CallFrame* callFrame = stackFrame.callFrame; local
1474 CallFrame* callFrame = stackFrame.callFrame; local
1487 CallFrame* callFrame = stackFrame.callFrame; local
1515 CallFrame* callFrame = stackFrame.callFrame; local
1587 CallFrame* callFrame = stackFrame.callFrame; local
1609 CallFrame* callFrame = stackFrame.callFrame; local
1684 CallFrame* callFrame = stackFrame.callFrame; local
1701 CallFrame* callFrame = stackFrame.callFrame; local
1716 CallFrame* callFrame = stackFrame.callFrame; local
1830 CallFrame* callFrame = stackFrame.callFrame; local
1847 CallFrame* callFrame = stackFrame.callFrame; local
1887 CallFrame* callFrame = stackFrame.callFrame; local
1972 CallFrame* callFrame = stackFrame.callFrame; local
2031 CallFrame* callFrame = stackFrame.callFrame; local
2090 CallFrame* callFrame = stackFrame.callFrame; local
2124 CallFrame* callFrame = stackFrame.callFrame; local
2180 CallFrame* callFrame = CallFrame::create(previousCallFrame->registers() + registerOffset); local
2277 CallFrame* callFrame = stackFrame.callFrame; local
2314 CallFrame* callFrame = CallFrame::create(previousCallFrame->registers() + registerOffset); local
2342 CallFrame* callFrame = stackFrame.callFrame; local
2388 CallFrame* callFrame = stackFrame.callFrame; local
2418 CallFrame* callFrame = stackFrame.callFrame; local
2467 CallFrame* callFrame = stackFrame.callFrame; local
2515 CallFrame* callFrame = stackFrame.callFrame; local
2558 CallFrame* callFrame = stackFrame.callFrame; local
2568 CallFrame* callFrame = stackFrame.callFrame; local
2706 CallFrame* callFrame = stackFrame.callFrame; local
2744 CallFrame* callFrame = stackFrame.callFrame; local
2793 CallFrame* callFrame = stackFrame.callFrame; local
2805 CallFrame* callFrame = stackFrame.callFrame; local
2818 CallFrame* callFrame = stackFrame.callFrame; local
2831 CallFrame* callFrame = stackFrame.callFrame; local
2844 CallFrame* callFrame = stackFrame.callFrame; local
2857 CallFrame* callFrame = stackFrame.callFrame; local
2989 CallFrame* callFrame = stackFrame.callFrame; local
3003 CallFrame* callFrame = stackFrame.callFrame; local
3016 CallFrame* callFrame = stackFrame.callFrame; local
3030 CallFrame* callFrame = stackFrame.callFrame; local
3040 CallFrame* callFrame = stackFrame.callFrame; local
3073 CallFrame* callFrame = stackFrame.callFrame; local
3101 CallFrame* callFrame = stackFrame.callFrame; local
3112 CallFrame* callFrame = stackFrame.callFrame; local
3124 CallFrame* callFrame = stackFrame.callFrame; local
3140 CallFrame* callFrame = stackFrame.callFrame; local
3153 CallFrame* callFrame = stackFrame.callFrame; local
3164 CallFrame* callFrame = stackFrame.callFrame; local
3182 CallFrame* callFrame = stackFrame.callFrame; local
3194 CallFrame* callFrame = stackFrame.callFrame; local
3229 CallFrame* callFrame = stackFrame.callFrame; local
3361 CallFrame* callFrame = stackFrame.callFrame; local
3372 CallFrame* callFrame = stackFrame.callFrame; local
3398 CallFrame* callFrame = stackFrame.callFrame; local
3408 CallFrame* callFrame = stackFrame.callFrame; local
3420 CallFrame* callFrame = stackFrame.callFrame; local
3432 CallFrame* callFrame = stackFrame.callFrame; local
3453 CallFrame* callFrame = stackFrame.callFrame; local
3474 CallFrame* callFrame = stackFrame.callFrame; local
3492 CallFrame* callFrame = stackFrame.callFrame; local
3520 CallFrame* callFrame = stackFrame.callFrame; local
3532 CallFrame* callFrame = stackFrame.callFrame; local
3544 CallFrame* callFrame = stackFrame.callFrame; local
3554 CallFrame* callFrame = stackFrame.callFrame; local
3576 CallFrame* callFrame = stackFrame.callFrame; local
[all...]
H A DJITCode.h75 inline JSValue execute(RegisterFile* registerFile, CallFrame* callFrame, JSGlobalData* globalData) argument
77 JSValue result = JSValue::decode(ctiTrampoline(m_ref.m_code.executableAddress(), registerFile, callFrame, 0, Profiler::enabledProfilerReference(), globalData));
H A DJITStubs.h99 CallFrame* callFrame; member in struct:JSC::JITStackFrame
135 CallFrame* callFrame; member in struct:JSC::JITStackFrame
163 CallFrame* callFrame; member in struct:JSC::JITStackFrame
191 CallFrame* callFrame; member in struct:JSC::JITStackFrame
223 CallFrame* callFrame; member in struct:JSC::JITStackFrame
246 CallFrame* callFrame; member in struct:JSC::JITStackFrame
H A DJIT.h186 static void compileGetByIdProto(JSGlobalData* globalData, CallFrame* callFrame, CodeBlock* codeBlock, StructureStubInfo* stubInfo, Structure* structure, Structure* prototypeStructure, const Identifier& ident, const PropertySlot& slot, size_t cachedOffset, ReturnAddressPtr returnAddress) argument
189 jit.privateCompileGetByIdProto(stubInfo, structure, prototypeStructure, ident, slot, cachedOffset, returnAddress, callFrame);
197 static void compileGetByIdProtoList(JSGlobalData* globalData, CallFrame* callFrame, CodeBlock* codeBlock, StructureStubInfo* stubInfo, PolymorphicAccessStructureList* prototypeStructureList, int currentIndex, Structure* structure, Structure* prototypeStructure, const Identifier& ident, const PropertySlot& slot, size_t cachedOffset) argument
200 jit.privateCompileGetByIdProtoList(stubInfo, prototypeStructureList, currentIndex, structure, prototypeStructure, ident, slot, cachedOffset, callFrame);
202 static void compileGetByIdChainList(JSGlobalData* globalData, CallFrame* callFrame, CodeBlock* codeBlock, StructureStubInfo* stubInfo, PolymorphicAccessStructureList* prototypeStructureList, int currentIndex, Structure* structure, StructureChain* chain, size_t count, const Identifier& ident, const PropertySlot& slot, size_t cachedOffset) argument
205 jit.privateCompileGetByIdChainList(stubInfo, prototypeStructureList, currentIndex, structure, chain, count, ident, slot, cachedOffset, callFrame);
208 static void compileGetByIdChain(JSGlobalData* globalData, CallFrame* callFrame, CodeBlock* codeBlock, StructureStubInfo* stubInfo, Structure* structure, StructureChain* chain, size_t count, const Identifier& ident, const PropertySlot& slot, size_t cachedOffset, ReturnAddressPtr returnAddress) argument
211 jit.privateCompileGetByIdChain(stubInfo, structure, chain, count, ident, slot, cachedOffset, returnAddress, callFrame);
267 void privateCompileGetByIdProto(StructureStubInfo*, Structure*, Structure* prototypeStructure, const Identifier&, const PropertySlot&, size_t cachedOffset, ReturnAddressPtr returnAddress, CallFrame* callFrame);
269 void privateCompileGetByIdProtoList(StructureStubInfo*, PolymorphicAccessStructureList*, int, Structure*, Structure* prototypeStructure, const Identifier&, const PropertySlot&, size_t cachedOffset, CallFrame* callFrame);
[all...]
H A DJITPropertyAccess.cpp722 void JIT::privateCompileGetByIdProto(StructureStubInfo* stubInfo, Structure* structure, Structure* prototypeStructure, const Identifier& ident, const PropertySlot& slot, size_t cachedOffset, ReturnAddressPtr returnAddress, CallFrame* callFrame) argument
726 JSObject* protoObject = asObject(structure->prototypeForLookup(callFrame));
844 void JIT::privateCompileGetByIdProtoList(StructureStubInfo* stubInfo, PolymorphicAccessStructureList* prototypeStructures, int currentIndex, Structure* structure, Structure* prototypeStructure, const Identifier& ident, const PropertySlot& slot, size_t cachedOffset, CallFrame* callFrame) argument
848 JSObject* protoObject = asObject(structure->prototypeForLookup(callFrame));
911 void JIT::privateCompileGetByIdChainList(StructureStubInfo* stubInfo, PolymorphicAccessStructureList* prototypeStructures, int currentIndex, Structure* structure, StructureChain* chain, size_t count, const Identifier& ident, const PropertySlot& slot, size_t cachedOffset, CallFrame* callFrame) argument
924 protoObject = asObject(currStructure->prototypeForLookup(callFrame));
971 prototypeStructures->list[currentIndex].set(callFrame->globalData(), m_codeBlock->ownerExecutable(), entryLabel, structure, chain);
979 void JIT::privateCompileGetByIdChain(StructureStubInfo* stubInfo, Structure* structure, StructureChain* chain, size_t count, const Identifier& ident, const PropertySlot& slot, size_t cachedOffset, ReturnAddressPtr returnAddress, CallFrame* callFrame) argument
992 protoObject = asObject(currStructure->prototypeForLookup(callFrame));
H A DJITPropertyAccess32_64.cpp749 void JIT::privateCompileGetByIdProto(StructureStubInfo* stubInfo, Structure* structure, Structure* prototypeStructure, const Identifier& ident, const PropertySlot& slot, size_t cachedOffset, ReturnAddressPtr returnAddress, CallFrame* callFrame) argument
755 JSObject* protoObject = asObject(structure->prototypeForLookup(callFrame));
874 void JIT::privateCompileGetByIdProtoList(StructureStubInfo* stubInfo, PolymorphicAccessStructureList* prototypeStructures, int currentIndex, Structure* structure, Structure* prototypeStructure, const Identifier& ident, const PropertySlot& slot, size_t cachedOffset, CallFrame* callFrame) argument
880 JSObject* protoObject = asObject(structure->prototypeForLookup(callFrame));
933 prototypeStructures->list[currentIndex].set(callFrame->globalData(), m_codeBlock->ownerExecutable(), entryLabel, structure, prototypeStructure);
941 void JIT::privateCompileGetByIdChainList(StructureStubInfo* stubInfo, PolymorphicAccessStructureList* prototypeStructures, int currentIndex, Structure* structure, StructureChain* chain, size_t count, const Identifier& ident, const PropertySlot& slot, size_t cachedOffset, CallFrame* callFrame) argument
955 protoObject = asObject(currStructure->prototypeForLookup(callFrame));
1001 prototypeStructures->list[currentIndex].set(callFrame->globalData(), m_codeBlock->ownerExecutable(), entryLabel, structure, chain);
1009 void JIT::privateCompileGetByIdChain(StructureStubInfo* stubInfo, Structure* structure, StructureChain* chain, size_t count, const Identifier& ident, const PropertySlot& slot, size_t cachedOffset, ReturnAddressPtr returnAddress, CallFrame* callFrame) argument
1023 protoObject = asObject(currStructure->prototypeForLookup(callFrame));
[all...]
/external/webkit/Source/JavaScriptCore/debugger/
H A DDebuggerCallFrame.h40 DebuggerCallFrame(CallFrame* callFrame) argument
41 : m_callFrame(callFrame)
45 DebuggerCallFrame(CallFrame* callFrame, JSValue exception) argument
46 : m_callFrame(callFrame)
/external/webkit/Source/WebCore/bindings/js/
H A DScriptCallStackFactory.cpp59 CallFrame* callFrame = exec; local
61 ASSERT(callFrame);
67 exec->interpreter()->retrieveLastCaller(callFrame, signedLineNumber, sourceID, urlString, function);
81 callFrame = callFrame->callerFrame();
H A DJSInjectedScriptHostCustom.cpp80 JavaScriptCallFrame* callFrame = impl()->debuggerAgent()->scriptDebugServer().currentCallFrame(); local
81 if (!callFrame || !callFrame->isValid())
85 return toJS(exec, callFrame);
/external/webkit/Source/WebCore/inspector/front-end/
H A DCallStackSidebarPane.js50 var callFrame = callFrames[i];
51 var title = callFrame.functionName || WebInspector.UIString("(anonymous function)");
54 if (!callFrame.isInternalScript)
55 subtitle = WebInspector.displayNameForURL(callFrame.url);
60 placard.callFrame = callFrame;
71 callFrame.sourceLine(didGetSourceLine.bind(this, placard));
82 placard.selected = (placard.callFrame === x);
117 this.selectedCallFrame = placard.callFrame
126 if (placard.callFrame
[all...]
H A DScopeChainSidebarPane.js35 update: function(callFrame)
39 if (!callFrame) {
60 var scopeChain = callFrame.scopeChain;
H A DDebuggerPresentationModel.js521 var callFrame = callFrames[i];
523 var script = WebInspector.debuggerModel.scriptForSourceID(callFrame.location.sourceID);
526 this._presentationCallFrames.push(new WebInspector.PresenationCallFrame(callFrame, i, sourceFile));
541 set selectedCallFrame(callFrame)
543 this._selectedCallFrameIndex = callFrame.index;
544 callFrame.select();
545 this.dispatchEventToListeners(WebInspector.DebuggerPresentationModel.Events.CallFrameSelected, callFrame);
651 WebInspector.PresenationCallFrame = function(callFrame, index, sourceFile)
653 this._callFrame = callFrame;
656 this._script = WebInspector.debuggerModel.scriptForSourceID(callFrame
[all...]
/external/webkit/Source/WebCore/bindings/v8/
H A DJavaScriptCallFrame.h44 static PassRefPtr<JavaScriptCallFrame> create(v8::Handle<v8::Context> debuggerContext, v8::Handle<v8::Object> callFrame) argument
46 return adoptRef(new JavaScriptCallFrame(debuggerContext, callFrame));
64 JavaScriptCallFrame(v8::Handle<v8::Context> debuggerContext, v8::Handle<v8::Object> callFrame);
H A DJavaScriptCallFrame.cpp40 JavaScriptCallFrame::JavaScriptCallFrame(v8::Handle<v8::Context> debuggerContext, v8::Handle<v8::Object> callFrame) argument
42 , m_callFrame(callFrame)
/external/webkit/Source/WebCore/inspector/
H A DInjectedScriptSource.js298 var callFrame = InjectedScriptHost.currentCallFrame();
299 if (!callFrame)
305 result.push(new InjectedScript.CallFrameProxy(depth++, callFrame));
306 callFrame = callFrame.caller;
307 } while (callFrame);
313 var callFrame = this._callFrameForId(callFrameId);
314 if (!callFrame)
316 return this._evaluateAndWrap(callFrame.evaluate, callFrame, expressio
[all...]
/external/webkit/Source/JavaScriptCore/dfg/
H A DDFGJITCompiler.cpp326 poke(callFrameRegister, OBJECT_OFFSETOF(struct JITStackFrame, callFrame) / sizeof(void*));
340 poke(callFrameRegister, OBJECT_OFFSETOF(struct JITStackFrame, callFrame) / sizeof(void*));
/external/webkit/Source/WebKit/chromium/src/js/
H A DTests.js456 var callFrame = WebInspector.currentPanel._presentationModel.selectedCallFrame;
457 this.assertEquals(expectations.functionsOnStack[0], callFrame.functionName);

Completed in 307 milliseconds

12