Searched refs:callFrame (Results 26 - 50 of 56) sorted by relevance

123

/macosx-10.10.1/WebInspectorUI-7600.1.17/UserInterface/Views/
H A DTimelineDataGridNode.js141 var callFrame = value;
144 var functionName = callFrame.functionName;
154 if (callFrame.sourceCodeLocation && callFrame.sourceCodeLocation.sourceCode) {
156 callFrame.sourceCodeLocation.populateLiveDisplayLocationTooltip(cell);
158 var goToArrowButtonLink = WebInspector.createSourceCodeLocationLink(callFrame.sourceCodeLocation, false, true);
167 if (callFrame.sourceCodeLocation.sourceCode instanceof WebInspector.Resource) {
169 cell.classList.add(callFrame.sourceCodeLocation.sourceCode.type);
170 } else if (callFrame.sourceCodeLocation.sourceCode instanceof WebInspector.Script) {
171 if (callFrame
[all...]
H A DDebuggerDashboardView.js83 var callFrame = WebInspector.debuggerManager.activeCallFrame;
84 var functionName = callFrame.functionName || WebInspector.UIString("(anonymous function)");
90 if (callFrame.functionName && callFrame.functionName.startsWith("on") && callFrame.functionName.length >= 5)
H A DTimelineDataGrid.js475 var callFrame = treeElement.callFrame; variable
476 if (!callFrame.sourceCodeLocation)
479 WebInspector.resourceSidebarPanel.showSourceCodeLocation(callFrame.sourceCodeLocation);
H A DConsoleMessageImpl.js191 _linkifyCallFrame: function(callFrame)
193 return this._linkifyLocation(callFrame.url, callFrame.lineNumber, callFrame.columnNumber);
H A DDebuggerSidebarPanel.js540 var callFrame = treeElement.callFrame;
541 WebInspector.debuggerManager.activeCallFrame = callFrame;
542 WebInspector.resourceSidebarPanel.showSourceCodeLocation(callFrame.sourceCodeLocation);
/macosx-10.10.1/JavaScriptCore-7600.1.17/interpreter/
H A DRegister.h63 CallFrame* callFrame() const;
90 CallFrame* callFrame; member in union:JSC::Register::__anon2618
128 ALWAYS_INLINE Register& Register::operator=(CallFrame* callFrame) argument
130 u.callFrame = callFrame;
145 ALWAYS_INLINE CallFrame* Register::callFrame() const function in class:JSC::Register
147 return u.callFrame;
H A DStackVisitor.h82 CallFrame* callFrame() const { return m_callFrame; } function in class:JSC::StackVisitor::Frame
122 while (visitor->callFrame()) {
H A DCallFrame.h277 return this[JSStack::ScopeChain].callFrame();
280 void initializeVMEntrySentinelFrame(CallFrame* callFrame)
285 static_cast<Register*>(this)[JSStack::ScopeChain] = callFrame;
/macosx-10.10.1/JavaScriptCore-7600.1.17/inspector/
H A DInjectedScriptSource.js585 * @param {Object} callFrame
588 wrapCallFrames: function(callFrame)
590 if (!callFrame)
596 result.push(new InjectedScript.CallFrameProxy(depth++, callFrame));
597 callFrame = callFrame.caller;
598 } while (callFrame);
614 var callFrame = this._callFrameForId(topCallFrame, callFrameId);
615 if (!callFrame)
617 return this._evaluateAndWrap(callFrame
629 var callFrame = topCallFrame; variable
[all...]
H A DJSGlobalObjectInspectorController.cpp164 const ScriptCallFrame& callFrame = callStack->at(0); local
165 ConsoleClient::printConsoleMessage(MessageSource::JS, MessageType::Log, MessageLevel::Error, errorMessage, callFrame.sourceURL(), callFrame.lineNumber(), callFrame.columnNumber());
/macosx-10.10.1/JavaScriptCore-7600.1.17/debugger/
H A DDebugger.cpp608 void Debugger::updateCallFrame(CallFrame* callFrame) argument
610 m_currentCallFrame = callFrame;
611 SourceID sourceID = DebuggerCallFrame::sourceIDForCallFrame(callFrame);
618 void Debugger::updateCallFrameAndPauseIfNeeded(CallFrame* callFrame) argument
620 updateCallFrame(callFrame);
621 pauseIfNeeded(callFrame);
626 void Debugger::pauseIfNeeded(CallFrame* callFrame) argument
631 JSGlobalObject* vmEntryGlobalObject = callFrame->vmEntryGlobalObject();
671 void Debugger::exception(CallFrame* callFrame, JSValue exception, bool hasHandler) argument
684 updateCallFrameAndPauseIfNeeded(callFrame);
689 atStatement(CallFrame* callFrame) argument
698 callEvent(CallFrame* callFrame) argument
707 returnEvent(CallFrame* callFrame) argument
726 willExecuteProgram(CallFrame* callFrame) argument
741 didExecuteProgram(CallFrame* callFrame) argument
760 didReachBreakpoint(CallFrame* callFrame) argument
[all...]
H A DDebuggerCallFrame.h44 static PassRefPtr<DebuggerCallFrame> create(CallFrame* callFrame) argument
46 return adoptRef(new DebuggerCallFrame(callFrame));
/macosx-10.10.1/JavaScriptCore-7600.1.17/runtime/
H A DJSActivation.h49 static JSActivation* create(VM& vm, CallFrame* callFrame, Register* registers, CodeBlock* codeBlock) argument
59 ) JSActivation(vm, callFrame, registers, symbolTable);
64 static JSActivation* create(VM& vm, CallFrame* callFrame, CodeBlock* codeBlock) argument
66 return create(vm, callFrame, callFrame->registers() + codeBlock->framePointerOffsetToGetActivationRegisters(), codeBlock);
114 inline JSActivation::JSActivation(VM& vm, CallFrame* callFrame, Register* registers, SymbolTable* symbolTable) argument
117 callFrame->lexicalGlobalObject()->activationStructure(),
119 callFrame->scope(),
H A DJSArgumentsIterator.h51 bool next(CallFrame* callFrame, JSValue& value) argument
53 if (m_nextIndex >= m_arguments->length(callFrame))
H A DJSMapIterator.h58 bool next(CallFrame* callFrame, JSValue& value) argument
68 value = createPair(callFrame, m_iterator.key(), m_iterator.value());
H A DJSSetIterator.h59 bool next(CallFrame* callFrame, JSValue& value) argument
66 value = createPair(callFrame, m_iterator.key(), m_iterator.key());
H A DArguments.cpp109 void Arguments::copyToArguments(ExecState* exec, CallFrame* callFrame, uint32_t copyLength, int32_t firstVarArgOffset) argument
116 callFrame->setArgument(i, get(exec, i));
122 callFrame->setArgument(i - firstVarArgOffset, value);
124 callFrame->setArgument(i - firstVarArgOffset, get(exec, i));
375 void Arguments::tearOff(CallFrame* callFrame) argument
384 ASSERT(bitwise_cast<WriteBarrier<Unknown>*>(callFrame) == m_registers);
386 allocateRegisterArray(callFrame->vm());
402 trySetArgument(callFrame->vm(), i, callFrame->argumentAfterCapture(i));
418 void Arguments::tearOff(CallFrame* callFrame, InlineCallFram argument
[all...]
H A DConsoleClient.cpp171 const ScriptCallFrame& callFrame = callStack->at(i); local
172 String functionName = String(callFrame.functionName());
181 appendURLAndPosition(callFrameBuilder, callFrame.sourceURL(), callFrame.lineNumber(), callFrame.columnNumber());
H A DVM.cpp601 static void appendSourceToError(CallFrame* callFrame, ErrorInstance* exception, unsigned bytecodeOffset) argument
605 if (!callFrame->codeBlock()->hasExpressionInfo())
614 CodeBlock* codeBlock = callFrame->codeBlock();
624 VM* vm = &callFrame->vm();
629 String message = asString(jsMessage)->value(callFrame);
693 CallFrame* callFrame; local
694 for (callFrame = exec; callFrame && !callFrame->codeBlock(); ) {
696 callFrame
[all...]
H A DError.cpp134 JSObject* addErrorInfo(CallFrame* callFrame, JSObject* error, int line, const SourceCode& source) argument
136 VM* vm = &callFrame->vm();
H A DExecutable.cpp463 JSObject* ProgramExecutable::initializeGlobalProperties(VM& vm, CallFrame* callFrame, JSScope* scope) argument
471 UnlinkedProgramCodeBlock* unlinkedCodeBlock = globalObject->createProgramCodeBlock(callFrame, this, &exception);
485 globalObject->addFunction(callFrame, functionDeclarations[i].first, value);
490 globalObject->addConst(callFrame, variableDeclarations[i].first);
492 globalObject->addVar(callFrame, variableDeclarations[i].first);
H A DJSGlobalObject.cpp759 UnlinkedProgramCodeBlock* JSGlobalObject::createProgramCodeBlock(CallFrame* callFrame, ProgramExecutable* executable, JSObject** exception) argument
768 debugger()->sourceParsed(callFrame, executable->source().provider(), error.m_line, error.m_message);
778 UnlinkedEvalCodeBlock* JSGlobalObject::createEvalCodeBlock(CallFrame* callFrame, EvalExecutable* executable) argument
787 debugger()->sourceParsed(callFrame, executable->source().provider(), error.m_line, error.m_message);
790 throwVMError(callFrame, error.toErrorObject(this, executable->source()));
/macosx-10.10.1/JavaScriptCore-7600.1.17/jit/
H A DJITOperations.cpp444 static void putByVal(CallFrame* callFrame, JSValue baseValue, JSValue subscript, JSValue value) argument
446 VM& vm = callFrame->vm();
452 object->setIndexQuickly(callFrame->vm(), i, value);
454 object->methodTable(vm)->putByIndex(object, callFrame, i, value, callFrame->codeBlock()->isStrictMode());
456 baseValue.putByIndex(callFrame, i, value, callFrame->codeBlock()->isStrictMode());
458 PutPropertySlot slot(baseValue, callFrame->codeBlock()->isStrictMode());
459 baseValue.put(callFrame, jsCast<NameInstance*>(subscript.asCell())->privateName(), value, slot);
461 Identifier property = subscript.toString(callFrame)
469 directPutByVal(CallFrame* callFrame, JSObject* baseObject, JSValue subscript, JSValue value) argument
531 operationDirectPutByVal(ExecState* callFrame, EncodedJSValue encodedBaseValue, EncodedJSValue encodedSubscript, EncodedJSValue encodedValue) argument
[all...]
/macosx-10.10.1/JavaScriptCore-7600.1.17/llint/
H A DLowLevelInterpreter.cpp224 CallFrame* callFrame; member in union:JSC::CLoopRegister::__anon2627
335 cfr.callFrame = vm->topCallFrame;
338 CallFrame* startCFR = cfr.callFrame;
431 ASSERT(startCFR == cfr.callFrame);
/macosx-10.10.1/WebInspectorUI-7600.1.17/UserInterface/Controllers/
H A DDebuggerManager.js139 set activeCallFrame(callFrame)
141 if (callFrame === this._activeCallFrame)
144 this._activeCallFrame = callFrame || null;
373 var callFrame = new WebInspector.CallFrame(callFramePayload.callFrameId, sourceCodeLocation, callFramePayload.functionName, thisObject, scopeChain);
374 this._callFrames.push(callFrame);

Completed in 386 milliseconds

123