Changeset 156936 in webkit
- Timestamp:
- Oct 4, 2013, 5:51:31 PM (12 years ago)
- Location:
- trunk
- Files:
-
- 8 added
- 19 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LayoutTests/ChangeLog
r156930 r156936 1 2013-10-04 Mark Lam <mark.lam@apple.com> 2 3 Change ScriptDebugServer to use DebuggerCallFrame instead of JavaScriptCallFrame. 4 https://bugs.webkit.org/show_bug.cgi?id=121969. 5 6 Reviewed by Geoffrey Garen. 7 8 * http/tests/inspector/debugger-test.js: 9 (initialize_DebuggerTest): 10 * inspector-protocol/debugger/call-frame-function-name-expected.txt: Added. 11 * inspector-protocol/debugger/call-frame-function-name.html: Added. 12 * inspector-protocol/debugger/call-frame-this-host-expected.txt: Added. 13 * inspector-protocol/debugger/call-frame-this-host.html: Added. 14 * inspector-protocol/debugger/call-frame-this-nonstrict-expected.txt: Added. 15 * inspector-protocol/debugger/call-frame-this-nonstrict.html: Added. 16 * inspector-protocol/debugger/call-frame-this-strict-expected.txt: Added. 17 * inspector-protocol/debugger/call-frame-this-strict.html: Added. 18 * inspector/debugger/pause-in-internal-script-expected.txt: 19 1 20 2013-10-04 Frédéric Wang <fred.wang@free.fr> 2 21 -
trunk/LayoutTests/http/tests/inspector/debugger-test.js
r147102 r156936 106 106 }; 107 107 108 InspectorTest.captureStackTrace = function(callFrames, dropLineNumbers )108 InspectorTest.captureStackTrace = function(callFrames, dropLineNumbers, verbose) 109 109 { 110 110 InspectorTest.addResult("Call stack:"); … … 114 114 var url; 115 115 var lineNumber; 116 var dropFrameLineNumber = dropLineNumbers; 116 117 if (script) { 117 118 url = WebInspector.displayNameForURL(script.sourceURL); … … 119 120 } else { 120 121 url = "(internal script)"; 121 lineNumber = "(line number)";122 } 123 var s = " " + i + ") " + frame.functionName + " (" + url + (drop LineNumbers? "" : ":" + lineNumber) + ")";122 dropFrameLineNumber = true; 123 } 124 var s = " " + i + ") " + frame.functionName + " (" + url + (dropFrameLineNumber ? "" : ":" + lineNumber) + ")"; 124 125 InspectorTest.addResult(s); 125 126 } -
trunk/LayoutTests/inspector/debugger/pause-in-internal-script-expected.txt
r91670 r156936 9 9 Call stack: 10 10 0) (pause-in-internal-script.html:14) 11 1) testFunction (pause-in-internal-script.html:12) 11 1) forEach ((internal script)) 12 2) testFunction (pause-in-internal-script.html:12) 12 13 Script execution resumed. 13 14 Script execution paused. -
trunk/Source/JavaScriptCore/ChangeLog
r156934 r156936 1 2013-10-04 Mark Lam <mark.lam@apple.com> 2 3 Change ScriptDebugServer to use DebuggerCallFrame instead of JavaScriptCallFrame. 4 https://bugs.webkit.org/show_bug.cgi?id=121969. 5 6 Reviewed by Geoffrey Garen. 7 8 1. Make JavaScriptCallFrame a thin shell around the DebuggerCallFrame. 9 DebuggerCallFrame now tracks whether it is valid instead of needing 10 JavaScriptCallFrame do it. 11 2. ScriptDebugServer now only instantiates an DebuggerCallFrame when needed 12 just before it pauses and calls back to its client, and then invalidates 13 it immediately when the callback returns. Every subsequent callback to 14 the client will use a new instance of the DebuggerCallFrame. 15 3. Similarly, ScriptDebugServer now only creates a JavaScriptCallFrame when 16 it "pauses". 17 4. DebuggerCallFrame only creates its caller DebuggerCallFrame when 18 it is needed i.e. when the client calls callerFrame(). Similarly, 19 JavaScriptCallFrame only creates its caller when it's requested. 20 5. DebuggerCallFrame's line() and column() now returns a base-zero int. 21 6. WebScriptDebugDelegate now only caches the functionName of the frame 22 instead of the entire DebuggerCallFrame because that is all that is 23 needed. 24 7. Also removed evaluateInGlobalCallFrame() which is not used anywhere. 25 26 * debugger/Debugger.cpp: 27 * debugger/Debugger.h: 28 * debugger/DebuggerCallFrame.cpp: 29 (JSC::DebuggerCallFrame::DebuggerCallFrame): 30 (JSC::DebuggerCallFrame::callerFrame): 31 (JSC::DebuggerCallFrame::dynamicGlobalObject): 32 (JSC::DebuggerCallFrame::sourceId): 33 (JSC::DebuggerCallFrame::functionName): 34 (JSC::DebuggerCallFrame::scope): 35 (JSC::DebuggerCallFrame::type): 36 (JSC::DebuggerCallFrame::thisValue): 37 (JSC::DebuggerCallFrame::evaluate): 38 (JSC::DebuggerCallFrame::evaluateWithCallFrame): 39 (JSC::DebuggerCallFrame::invalidate): 40 (JSC::DebuggerCallFrame::positionForCallFrame): 41 (JSC::DebuggerCallFrame::sourceIdForCallFrame): 42 (JSC::DebuggerCallFrame::thisValueForCallFrame): 43 * debugger/DebuggerCallFrame.h: 44 (JSC::DebuggerCallFrame::create): 45 (JSC::DebuggerCallFrame::exec): 46 (JSC::DebuggerCallFrame::line): 47 (JSC::DebuggerCallFrame::column): 48 (JSC::DebuggerCallFrame::position): 49 (JSC::DebuggerCallFrame::isValid): 50 * interpreter/StackVisitor.cpp: 51 1 52 2013-10-04 Brent Fulgham <bfulgham@apple.com> 2 53 -
trunk/Source/JavaScriptCore/debugger/Debugger.cpp
r155891 r156936 128 128 } 129 129 130 JSValue evaluateInGlobalCallFrame(const String& script, JSValue& exception, JSGlobalObject* globalObject)131 {132 CallFrame* globalCallFrame = globalObject->globalExec();133 VM& vm = globalObject->vm();134 135 EvalExecutable* eval = EvalExecutable::create(globalCallFrame, makeSource(script), false);136 if (!eval) {137 exception = vm.exception();138 vm.clearException();139 return exception;140 }141 142 JSValue result = vm.interpreter->execute(eval, globalCallFrame, globalObject, globalCallFrame->scope());143 if (vm.exception()) {144 exception = vm.exception();145 vm.clearException();146 }147 ASSERT(result);148 return result;149 }150 151 130 } // namespace JSC -
trunk/Source/JavaScriptCore/debugger/Debugger.h
r156374 r156936 60 60 }; 61 61 62 // This function exists only for backwards compatibility with existing WebScriptDebugger clients.63 JS_EXPORT_PRIVATE JSValue evaluateInGlobalCallFrame(const WTF::String&, JSValue& exception, JSGlobalObject*);64 65 62 } // namespace JSC 66 63 -
trunk/Source/JavaScriptCore/debugger/DebuggerCallFrame.cpp
r156511 r156936 1 1 /* 2 * Copyright (C) 2008 Apple Inc. All rights reserved.2 * Copyright (C) 2008, 2013 Apple Inc. All rights reserved. 3 3 * 4 4 * Redistribution and use in source and binary forms, with or without … … 58 58 : m_callFrame(callFrame) 59 59 { 60 LineAndColumnFunctor functor; 61 m_callFrame->iterate(functor); 62 m_line = functor.line(); 63 m_column = functor.column(); 60 m_position = positionForCallFrame(m_callFrame); 61 } 62 63 PassRefPtr<DebuggerCallFrame> DebuggerCallFrame::callerFrame() 64 { 65 ASSERT(isValid()); 66 if (!isValid()) 67 return 0; 68 69 if (m_caller) 70 return m_caller; 71 72 CallFrame* callerFrame = m_callFrame->callerFrameNoFlags(); 73 if (!callerFrame) 74 return 0; 75 76 m_caller = DebuggerCallFrame::create(callerFrame); 77 return m_caller; 78 } 79 80 JSC::JSGlobalObject* DebuggerCallFrame::dynamicGlobalObject() const 81 { 82 ASSERT(isValid()); 83 if (!isValid()) 84 return 0; 85 return m_callFrame->dynamicGlobalObject(); 64 86 } 65 87 66 88 intptr_t DebuggerCallFrame::sourceId() const 67 89 { 68 return m_callFrame->codeBlock()->ownerExecutable()->sourceID(); 90 ASSERT(isValid()); 91 if (!isValid()) 92 return 0; 93 return sourceIdForCallFrame(m_callFrame); 69 94 } 70 95 71 96 String DebuggerCallFrame::functionName() const 72 97 { 73 if (!m_callFrame->codeBlock()) 98 ASSERT(isValid()); 99 if (!isValid()) 74 100 return String(); 75 76 if (!m_callFrame->callee())77 return String();78 79 101 JSObject* function = m_callFrame->callee(); 80 if (!function || !function->inherits(JSFunction::info()))81 return String();82 return jsCast<JSFunction*>(function)->name(m_callFrame);83 }84 85 String DebuggerCallFrame::calculatedFunctionName() const86 {87 if (!m_callFrame->codeBlock())88 return String();89 90 JSObject* function = m_callFrame->callee();91 92 102 if (!function) 93 103 return String(); … … 96 106 } 97 107 108 JSScope* DebuggerCallFrame::scope() const 109 { 110 ASSERT(isValid()); 111 if (!isValid()) 112 return 0; 113 return m_callFrame->scope(); 114 } 115 98 116 DebuggerCallFrame::Type DebuggerCallFrame::type() const 99 117 { 118 ASSERT(isValid()); 119 if (!isValid()) 120 return ProgramType; 121 100 122 if (m_callFrame->callee()) 101 123 return FunctionType; … … 104 126 } 105 127 106 JSObject* DebuggerCallFrame::thisObject() const 107 { 108 CodeBlock* codeBlock = m_callFrame->codeBlock(); 109 if (!codeBlock) 110 return 0; 111 112 JSValue thisValue = m_callFrame->uncheckedR(codeBlock->thisRegister().offset()).jsValue(); 113 if (!thisValue.isObject()) 114 return 0; 115 116 return asObject(thisValue); 117 } 118 128 JSValue DebuggerCallFrame::thisValue() const 129 { 130 ASSERT(isValid()); 131 return thisValueForCallFrame(m_callFrame); 132 } 133 134 // Evaluate some JavaScript code in the scope of this frame. 119 135 JSValue DebuggerCallFrame::evaluate(const String& script, JSValue& exception) const 120 136 { 121 if (!m_callFrame->codeBlock()) 137 ASSERT(isValid()); 138 return evaluateWithCallFrame(m_callFrame, script, exception); 139 } 140 141 JSValue DebuggerCallFrame::evaluateWithCallFrame(CallFrame* callFrame, const String& script, JSValue& exception) 142 { 143 if (!callFrame) 144 return jsNull(); 145 146 JSLockHolder lock(callFrame); 147 148 if (!callFrame->codeBlock()) 122 149 return JSValue(); 123 150 124 VM& vm = m_callFrame->vm();125 EvalExecutable* eval = EvalExecutable::create( m_callFrame, makeSource(script), m_callFrame->codeBlock()->isStrictMode());151 VM& vm = callFrame->vm(); 152 EvalExecutable* eval = EvalExecutable::create(callFrame, makeSource(script), callFrame->codeBlock()->isStrictMode()); 126 153 if (vm.exception()) { 127 154 exception = vm.exception(); … … 129 156 } 130 157 131 JSValue result = vm.interpreter->execute(eval, m_callFrame, thisObject(), m_callFrame->scope()); 158 JSValue thisValue = thisValueForCallFrame(callFrame); 159 JSValue result = vm.interpreter->execute(eval, callFrame, thisValue, callFrame->scope()); 132 160 if (vm.exception()) { 133 161 exception = vm.exception(); … … 138 166 } 139 167 140 void DebuggerCallFrame::clear() 141 { 142 m_callFrame = 0; 168 void DebuggerCallFrame::invalidate() 169 { 170 m_callFrame = nullptr; 171 RefPtr<DebuggerCallFrame> frame = m_caller.release(); 172 while (frame) { 173 frame->m_callFrame = nullptr; 174 frame = frame->m_caller.release(); 175 } 176 } 177 178 TextPosition DebuggerCallFrame::positionForCallFrame(CallFrame* callFrame) 179 { 180 if (!callFrame) 181 return TextPosition(); 182 183 LineAndColumnFunctor functor; 184 callFrame->iterate(functor); 185 ASSERT(!callFrame->codeBlock() || functor.line() >= 0); 186 ASSERT(!callFrame->codeBlock() || functor.column() >= 0); 187 return TextPosition(OrdinalNumber::fromOneBasedInt(functor.line()), OrdinalNumber::fromOneBasedInt(functor.column())); 188 } 189 190 intptr_t DebuggerCallFrame::sourceIdForCallFrame(CallFrame* callFrame) 191 { 192 ASSERT(callFrame); 193 CodeBlock* codeBlock = callFrame->codeBlock(); 194 if (!codeBlock) 195 return 0; 196 return codeBlock->ownerExecutable()->sourceID(); 197 } 198 199 JSValue DebuggerCallFrame::thisValueForCallFrame(CallFrame* callFrame) 200 { 201 if (!callFrame) 202 return jsNull(); 203 204 ECMAMode ecmaMode = NotStrictMode; 205 CodeBlock* codeBlock = callFrame->codeBlock(); 206 if (codeBlock && codeBlock->isStrictMode()) 207 ecmaMode = StrictMode; 208 JSValue thisValue = callFrame->thisValue().toThis(callFrame, ecmaMode); 209 return thisValue; 143 210 } 144 211 -
trunk/Source/JavaScriptCore/debugger/DebuggerCallFrame.h
r156374 r156936 1 1 /* 2 * Copyright (C) 2008 Apple Inc. All rights reserved.2 * Copyright (C) 2008, 2013 Apple Inc. All rights reserved. 3 3 * 4 4 * Redistribution and use in source and binary forms, with or without … … 31 31 32 32 #include "CallFrame.h" 33 #include <wtf/PassRefPtr.h> 34 #include <wtf/RefCounted.h> 35 #include <wtf/text/TextPosition.h> 33 36 34 37 namespace JSC { 35 38 36 class DebuggerCallFrame {39 class DebuggerCallFrame : public RefCounted<DebuggerCallFrame> { 37 40 public: 38 41 enum Type { ProgramType, FunctionType }; 42 43 static PassRefPtr<DebuggerCallFrame> create(CallFrame* callFrame) 44 { 45 return adoptRef(new DebuggerCallFrame(callFrame)); 46 } 39 47 40 48 JS_EXPORT_PRIVATE explicit DebuggerCallFrame(CallFrame*); 41 49 42 50 CallFrame* callFrame() const { return m_callFrame; } 51 JS_EXPORT_PRIVATE PassRefPtr<DebuggerCallFrame> callerFrame(); 52 ExecState* exec() const { return m_callFrame; } 43 53 JS_EXPORT_PRIVATE intptr_t sourceId() const; 44 unsigned line() const { return m_line; } 45 unsigned column() const { return m_column; } 46 JSGlobalObject* dynamicGlobalObject() const { return m_callFrame->dynamicGlobalObject(); } 47 JSScope* scope() const { return m_callFrame->scope(); } 54 55 // line and column are in base 0 e.g. the first line is line 0. 56 int line() const { return m_position.m_line.zeroBasedInt(); } 57 int column() const { return m_position.m_column.zeroBasedInt(); } 58 JS_EXPORT_PRIVATE const TextPosition& position() const { return m_position; } 59 60 JS_EXPORT_PRIVATE JSGlobalObject* dynamicGlobalObject() const; 61 JS_EXPORT_PRIVATE JSScope* scope() const; 48 62 JS_EXPORT_PRIVATE String functionName() const; 49 JS_EXPORT_PRIVATE String calculatedFunctionName() const;50 63 JS_EXPORT_PRIVATE Type type() const; 51 JS_EXPORT_PRIVATE JS Object* thisObject() const;64 JS_EXPORT_PRIVATE JSValue thisValue() const; 52 65 JS_EXPORT_PRIVATE JSValue evaluate(const String&, JSValue& exception) const; 53 66 54 void clear(); 67 bool isValid() const { return !!m_callFrame; } 68 JS_EXPORT_PRIVATE void invalidate(); 69 70 // The following are only public for the Debugger's use only. They will be 71 // made private soon. Other clients should not use these. 72 73 JS_EXPORT_PRIVATE static JSValue evaluateWithCallFrame(CallFrame*, const String& script, JSValue& exception); 74 JS_EXPORT_PRIVATE static TextPosition positionForCallFrame(CallFrame*); 75 JS_EXPORT_PRIVATE static intptr_t sourceIdForCallFrame(CallFrame*); 76 static JSValue thisValueForCallFrame(CallFrame*); 55 77 56 78 private: 57 79 CallFrame* m_callFrame; 58 unsigned m_line;59 unsigned m_column;80 RefPtr<DebuggerCallFrame> m_caller; 81 TextPosition m_position; 60 82 }; 61 83 -
trunk/Source/JavaScriptCore/interpreter/StackVisitor.cpp
r156233 r156936 426 426 427 427 // For debugging use 428 void debugPrintCallFrame(JSC::CallFrame*);429 void debugPrintStack(JSC::CallFrame* topCallFrame);428 JS_EXPORT_PRIVATE void debugPrintCallFrame(JSC::CallFrame*); 429 JS_EXPORT_PRIVATE void debugPrintStack(JSC::CallFrame* topCallFrame); 430 430 431 431 class DebugPrintFrameFunctor { -
trunk/Source/WebCore/ChangeLog
r156932 r156936 1 2013-10-04 Mark Lam <mark.lam@apple.com> 2 3 Change ScriptDebugServer to use DebuggerCallFrame instead of JavaScriptCallFrame. 4 https://bugs.webkit.org/show_bug.cgi?id=121969. 5 6 Reviewed by Geoffrey Garen. 7 8 Tests: inspector-protocol/debugger/call-frame-function-name.html 9 inspector-protocol/debugger/call-frame-this-host.html 10 inspector-protocol/debugger/call-frame-this-nonstrict.html 11 inspector-protocol/debugger/call-frame-this-strict.html 12 13 1. Make JavaScriptCallFrame a thin shell around the DebuggerCallFrame. 14 DebuggerCallFrame now tracks whether it is valid instead of needing 15 JavaScriptCallFrame do it. 16 2. ScriptDebugServer now only instantiates an DebuggerCallFrame when needed 17 just before it pauses and calls back to its client, and then invalidates 18 it immediately when the callback returns. Every subsequent callback to 19 the client will use a new instance of the DebuggerCallFrame. 20 3. Similarly, ScriptDebugServer now only creates a JavaScriptCallFrame when 21 it "pauses". 22 4. DebuggerCallFrame only creates its caller DebuggerCallFrame when 23 it is needed i.e. when the client calls callerFrame(). Similarly, 24 JavaScriptCallFrame only creates its caller when it's requested. 25 5. DebuggerCallFrame's line() and column() now returns a base-zero int. 26 6. WebScriptDebugDelegate now only caches the functionName of the frame 27 instead of the entire DebuggerCallFrame because that is all that is 28 needed. 29 7. Also removed evaluateInGlobalCallFrame() which is not used anywhere. 30 31 * bindings/js/JSJavaScriptCallFrameCustom.cpp: 32 (WebCore::JSJavaScriptCallFrame::thisObject): 33 * bindings/js/JavaScriptCallFrame.cpp: 34 (WebCore::JavaScriptCallFrame::JavaScriptCallFrame): 35 (WebCore::JavaScriptCallFrame::caller): 36 * bindings/js/JavaScriptCallFrame.h: 37 (WebCore::JavaScriptCallFrame::create): 38 (WebCore::JavaScriptCallFrame::sourceID): 39 (WebCore::JavaScriptCallFrame::position): 40 (WebCore::JavaScriptCallFrame::line): 41 (WebCore::JavaScriptCallFrame::column): 42 (WebCore::JavaScriptCallFrame::functionName): 43 (WebCore::JavaScriptCallFrame::type): 44 (WebCore::JavaScriptCallFrame::scopeChain): 45 (WebCore::JavaScriptCallFrame::dynamicGlobalObject): 46 (WebCore::JavaScriptCallFrame::thisValue): 47 (WebCore::JavaScriptCallFrame::evaluate): 48 * bindings/js/ScriptDebugServer.cpp: 49 (WebCore::DebuggerCallFrameScope::DebuggerCallFrameScope): 50 (WebCore::DebuggerCallFrameScope::~DebuggerCallFrameScope): 51 (WebCore::ScriptDebugServer::ScriptDebugServer): 52 (WebCore::ScriptDebugServer::setBreakpoint): 53 (WebCore::ScriptDebugServer::removeBreakpoint): 54 (WebCore::ScriptDebugServer::hasBreakpoint): 55 (WebCore::ScriptDebugServer::evaluateBreakpointAction): 56 (WebCore::ScriptDebugServer::breakProgram): 57 (WebCore::ScriptDebugServer::stepOverStatement): 58 (WebCore::ScriptDebugServer::stepOutOfFunction): 59 (WebCore::ScriptDebugServer::currentDebuggerCallFrame): 60 (WebCore::ScriptDebugServer::dispatchDidPause): 61 (WebCore::ScriptDebugServer::updateCallFrame): 62 (WebCore::ScriptDebugServer::updateCallFrameAndPauseIfNeeded): 63 (WebCore::ScriptDebugServer::pauseIfNeeded): 64 (WebCore::ScriptDebugServer::callEvent): 65 (WebCore::ScriptDebugServer::returnEvent): 66 (WebCore::ScriptDebugServer::willExecuteProgram): 67 (WebCore::ScriptDebugServer::didExecuteProgram): 68 * bindings/js/ScriptDebugServer.h: 69 * bindings/js/WorkerScriptDebugServer.cpp: 70 (WebCore::WorkerScriptDebugServer::willExecuteProgram): 71 1 72 2013-10-04 Andreas Kling <akling@apple.com> 2 73 -
trunk/Source/WebCore/bindings/js/JSJavaScriptCallFrameCustom.cpp
r155589 r156936 51 51 JSValue JSJavaScriptCallFrame::thisObject(ExecState*) const 52 52 { 53 return impl()->this Object() ? JSValue(impl()->thisObject()) : jsNull();53 return impl()->thisValue(); 54 54 } 55 55 -
trunk/Source/WebCore/bindings/js/JavaScriptCallFrame.cpp
r155622 r156936 1 1 /* 2 * Copyright (C) 2008 Apple Inc. All Rights Reserved.2 * Copyright (C) 2008, 2013 Apple Inc. All Rights Reserved. 3 3 * 4 4 * Redistribution and use in source and binary forms, with or without … … 30 30 #include "JavaScriptCallFrame.h" 31 31 32 #include "JSDOMBinding.h"33 #include "JSDOMWindowBase.h"34 32 #include <debugger/DebuggerCallFrame.h> 35 #include <runtime/Completion.h>36 #include <runtime/JSCJSValue.h>37 #include <runtime/JSGlobalObject.h>38 #include <runtime/JSLock.h>39 #include <runtime/JSObject.h>40 #include <wtf/text/WTFString.h>41 33 42 34 using namespace JSC; 43 35 44 36 namespace WebCore { 45 46 JavaScriptCallFrame::JavaScriptCallFrame( const DebuggerCallFrame& debuggerCallFrame, PassRefPtr<JavaScriptCallFrame> caller)37 38 JavaScriptCallFrame::JavaScriptCallFrame(PassRefPtr<DebuggerCallFrame> debuggerCallFrame) 47 39 : m_debuggerCallFrame(debuggerCallFrame) 48 , m_caller(caller)49 , m_isValid(true)50 40 { 51 41 } … … 53 43 JavaScriptCallFrame* JavaScriptCallFrame::caller() 54 44 { 45 if (m_caller) 46 return m_caller.get(); 47 48 RefPtr<DebuggerCallFrame> debuggerCallerFrame = m_debuggerCallFrame->callerFrame(); 49 if (!debuggerCallerFrame) 50 return 0; 51 52 m_caller = create(debuggerCallerFrame); 55 53 return m_caller.get(); 56 }57 58 JSC::JSScope* JavaScriptCallFrame::scopeChain() const59 {60 ASSERT(m_isValid);61 if (!m_isValid)62 return 0;63 return m_debuggerCallFrame.scope();64 }65 66 JSC::JSGlobalObject* JavaScriptCallFrame::dynamicGlobalObject() const67 {68 ASSERT(m_isValid);69 if (!m_isValid)70 return 0;71 return m_debuggerCallFrame.dynamicGlobalObject();72 }73 74 String JavaScriptCallFrame::functionName() const75 {76 ASSERT(m_isValid);77 if (!m_isValid)78 return String();79 String functionName = m_debuggerCallFrame.calculatedFunctionName();80 if (functionName.isEmpty())81 return String();82 return functionName;83 }84 85 DebuggerCallFrame::Type JavaScriptCallFrame::type() const86 {87 ASSERT(m_isValid);88 if (!m_isValid)89 return DebuggerCallFrame::ProgramType;90 return m_debuggerCallFrame.type();91 }92 93 JSObject* JavaScriptCallFrame::thisObject() const94 {95 ASSERT(m_isValid);96 if (!m_isValid)97 return 0;98 return m_debuggerCallFrame.thisObject();99 }100 101 ExecState* JavaScriptCallFrame::exec() const102 {103 ASSERT(m_isValid);104 if (!m_isValid)105 return 0;106 return m_debuggerCallFrame.callFrame();107 }108 109 // Evaluate some JavaScript code in the scope of this frame.110 JSValue JavaScriptCallFrame::evaluate(const String& script, JSValue& exception) const111 {112 ASSERT(m_isValid);113 if (!m_isValid)114 return jsNull();115 116 JSLockHolder lock(m_debuggerCallFrame.callFrame());117 return m_debuggerCallFrame.evaluate(script, exception);118 54 } 119 55 -
trunk/Source/WebCore/bindings/js/JavaScriptCallFrame.h
r155622 r156936 1 1 /* 2 * Copyright (C) 2008 Apple Inc. All Rights Reserved.2 * Copyright (C) 2008, 2013 Apple Inc. All Rights Reserved. 3 3 * 4 4 * Redistribution and use in source and binary forms, with or without … … 40 40 class JavaScriptCallFrame : public RefCounted<JavaScriptCallFrame> { 41 41 public: 42 static PassRefPtr<JavaScriptCallFrame> create( const JSC::DebuggerCallFrame& debuggerCallFrame, PassRefPtr<JavaScriptCallFrame> caller)42 static PassRefPtr<JavaScriptCallFrame> create(PassRefPtr<JSC::DebuggerCallFrame> debuggerCallFrame) 43 43 { 44 return adoptRef(new JavaScriptCallFrame(debuggerCallFrame , caller));44 return adoptRef(new JavaScriptCallFrame(debuggerCallFrame)); 45 45 } 46 46 47 void invalidate()48 {49 m_isValid = false;50 m_debuggerCallFrame.clear();51 }47 JavaScriptCallFrame* caller(); 48 intptr_t sourceID() const { return m_debuggerCallFrame->sourceId(); } 49 const TextPosition position() const { return m_debuggerCallFrame->position(); } 50 int line() const { return m_debuggerCallFrame->line(); } 51 int column() const { return m_debuggerCallFrame->column(); } 52 52 53 bool isValid() const { return m_isValid; } 53 String functionName() const { return m_debuggerCallFrame->functionName(); } 54 JSC::DebuggerCallFrame::Type type() const { return m_debuggerCallFrame->type(); } 55 JSC::JSScope* scopeChain() const { return m_debuggerCallFrame->scope(); } 56 JSC::JSGlobalObject* dynamicGlobalObject() const { return m_debuggerCallFrame->dynamicGlobalObject(); } 54 57 55 JavaScriptCallFrame* caller(); 56 57 intptr_t sourceID() const { return m_debuggerCallFrame.sourceId(); } 58 const TextPosition position() const 59 { 60 OrdinalNumber line = WTF::OrdinalNumber::fromOneBasedInt(m_debuggerCallFrame.line()); 61 OrdinalNumber column = WTF::OrdinalNumber::fromOneBasedInt(m_debuggerCallFrame.column()); 62 return TextPosition(line, column); 63 } 64 int line() const 65 { 66 return WTF::OrdinalNumber::fromOneBasedInt(m_debuggerCallFrame.line()).zeroBasedInt(); 67 } 68 int column() const 69 { 70 return WTF::OrdinalNumber::fromOneBasedInt(m_debuggerCallFrame.column()).zeroBasedInt(); 71 } 72 73 void update(const JSC::DebuggerCallFrame& debuggerCallFrame) 74 { 75 m_debuggerCallFrame = debuggerCallFrame; 76 m_isValid = true; 77 } 78 79 String functionName() const; 80 JSC::DebuggerCallFrame::Type type() const; 81 JSC::JSScope* scopeChain() const; 82 JSC::JSGlobalObject* dynamicGlobalObject() const; 83 JSC::ExecState* exec() const; 84 85 JSC::JSObject* thisObject() const; 86 JSC::JSValue evaluate(const String& script, JSC::JSValue& exception) const; 58 JSC::JSValue thisValue() const { return m_debuggerCallFrame->thisValue(); } 59 JSC::JSValue evaluate(const String& script, JSC::JSValue& exception) const { return m_debuggerCallFrame->evaluate(script, exception); } 87 60 88 61 private: 89 JavaScriptCallFrame( const JSC::DebuggerCallFrame&, PassRefPtr<JavaScriptCallFrame> caller);62 JavaScriptCallFrame(PassRefPtr<JSC::DebuggerCallFrame>); 90 63 91 JSC::DebuggerCallFramem_debuggerCallFrame;64 RefPtr<JSC::DebuggerCallFrame> m_debuggerCallFrame; 92 65 RefPtr<JavaScriptCallFrame> m_caller; 93 bool m_isValid;94 66 }; 95 67 -
trunk/Source/WebCore/bindings/js/ScriptDebugServer.cpp
r156769 r156936 54 54 namespace WebCore { 55 55 56 class DebuggerCallFrameScope { 57 public: 58 DebuggerCallFrameScope(ScriptDebugServer& debugger) 59 : m_debugger(debugger) 60 { 61 ASSERT(!m_debugger.m_currentDebuggerCallFrame); 62 if (m_debugger.m_currentCallFrame) 63 m_debugger.m_currentDebuggerCallFrame = DebuggerCallFrame::create(debugger.m_currentCallFrame); 64 } 65 66 ~DebuggerCallFrameScope() 67 { 68 if (m_debugger.m_currentDebuggerCallFrame) { 69 m_debugger.m_currentDebuggerCallFrame->invalidate(); 70 m_debugger.m_currentDebuggerCallFrame = 0; 71 } 72 } 73 74 private: 75 ScriptDebugServer& m_debugger; 76 }; 77 78 56 79 ScriptDebugServer::ScriptDebugServer() 57 80 : m_callingListeners(false) … … 63 86 , m_breakpointsActivated(true) 64 87 , m_pauseOnCallFrame(0) 88 , m_currentCallFrame(0) 65 89 , m_recompileTimer(this, &ScriptDebugServer::recompileAllJSFunctions) 66 90 , m_lastExecutedLine(-1) … … 80 104 SourceIdToBreakpointsMap::iterator it = m_sourceIdToBreakpoints.find(sourceIDValue); 81 105 if (it == m_sourceIdToBreakpoints.end()) 82 it = m_sourceIdToBreakpoints.set(sourceIDValue, LineToBreakpoint Map()).iterator;83 LineToBreakpoint Map::iterator breaksIt = it->value.find(scriptBreakpoint.lineNumber + 1);106 it = m_sourceIdToBreakpoints.set(sourceIDValue, LineToBreakpointsMap()).iterator; 107 LineToBreakpointsMap::iterator breaksIt = it->value.find(scriptBreakpoint.lineNumber); 84 108 if (breaksIt == it->value.end()) 85 breaksIt = it->value.set(scriptBreakpoint.lineNumber + 1, BreakpointsInLine()).iterator;109 breaksIt = it->value.set(scriptBreakpoint.lineNumber, BreakpointsInLine()).iterator; 86 110 87 111 BreakpointsInLine& breaksVector = breaksIt->value; … … 118 142 if (it == m_sourceIdToBreakpoints.end()) 119 143 return; 120 LineToBreakpoint Map::iterator breaksIt = it->value.find(lineNumber + 1);144 LineToBreakpointsMap::iterator breaksIt = it->value.find(lineNumber); 121 145 if (breaksIt == it->value.end()) 122 146 return; … … 141 165 return false; 142 166 143 int line Number= position.m_line.zeroBasedInt();144 int column Number= position.m_column.zeroBasedInt();145 if (line Number < 0 || columnNumber< 0)167 int line = position.m_line.zeroBasedInt(); 168 int column = position.m_column.zeroBasedInt(); 169 if (line < 0 || column < 0) 146 170 return false; 147 171 148 LineToBreakpoint Map::const_iterator breaksIt = it->value.find(lineNumber + 1);172 LineToBreakpointsMap::const_iterator breaksIt = it->value.find(line); 149 173 if (breaksIt == it->value.end()) 150 174 return false; … … 158 182 int breakColumn = breaksVector.at(i).columnNumber; 159 183 // Since frontend truncates the indent, the first statement in a line must match the breakpoint (line,0). 160 if ((line Number != m_lastExecutedLine && lineNumber== breakLine && !breakColumn)161 || (line Number == breakLine && columnNumber== breakColumn)) {184 if ((line != m_lastExecutedLine && line == breakLine && !breakColumn) 185 || (line == breakLine && column == breakColumn)) { 162 186 hit = true; 163 187 break; … … 175 199 176 200 JSValue exception; 177 JSValue result = m_currentCallFrame->evaluate(breaksVector.at(i).condition, exception);201 JSValue result = DebuggerCallFrame::evaluateWithCallFrame(m_currentCallFrame, breaksVector.at(i).condition, exception); 178 202 if (exception) { 179 203 // An erroneous condition counts as "false". 180 reportException(m_currentCallFrame ->exec(), exception);204 reportException(m_currentCallFrame, exception); 181 205 return false; 182 206 } 183 return result.toBoolean(m_currentCallFrame ->exec());207 return result.toBoolean(m_currentCallFrame); 184 208 } 185 209 186 210 bool ScriptDebugServer::evaluateBreakpointAction(const ScriptBreakpointAction& breakpointAction) const 187 211 { 212 DebuggerCallFrame* debuggerCallFrame = currentDebuggerCallFrame(); 188 213 switch (breakpointAction.type) { 189 214 case ScriptBreakpointActionTypeLog: { 190 DOMWindow* window = asJSDOMWindow( m_currentCallFrame->dynamicGlobalObject())->impl();215 DOMWindow* window = asJSDOMWindow(debuggerCallFrame->dynamicGlobalObject())->impl(); 191 216 if (PageConsole* console = window->pageConsole()) 192 217 console->addMessage(JSMessageSource, LogMessageLevel, breakpointAction.data); … … 195 220 case ScriptBreakpointActionTypeEvaluate: { 196 221 JSValue exception; 197 m_currentCallFrame->evaluate(breakpointAction.data, exception);222 debuggerCallFrame->evaluate(breakpointAction.data, exception); 198 223 if (exception) 199 reportException( m_currentCallFrame->exec(), exception);224 reportException(debuggerCallFrame->exec(), exception); 200 225 break; 201 226 } … … 244 269 245 270 m_pauseOnNextStatement = true; 246 pauseIfNeeded(m_currentCallFrame ->dynamicGlobalObject());271 pauseIfNeeded(m_currentCallFrame); 247 272 } 248 273 … … 270 295 return; 271 296 272 m_pauseOnCallFrame = m_currentCallFrame .get();297 m_pauseOnCallFrame = m_currentCallFrame; 273 298 m_doneProcessingDebuggerEvents = true; 274 299 } … … 279 304 return; 280 305 281 m_pauseOnCallFrame = m_currentCallFrame ? m_currentCallFrame->caller () : 0;306 m_pauseOnCallFrame = m_currentCallFrame ? m_currentCallFrame->callerFrameNoFlags() : 0; 282 307 m_doneProcessingDebuggerEvents = true; 283 308 } … … 301 326 } 302 327 328 DebuggerCallFrame* ScriptDebugServer::currentDebuggerCallFrame() const 329 { 330 ASSERT(m_currentDebuggerCallFrame); 331 return m_currentDebuggerCallFrame.get(); 332 } 333 303 334 void ScriptDebugServer::dispatchDidPause(ScriptDebugListener* listener) 304 335 { 305 336 ASSERT(m_paused); 306 JSGlobalObject* globalObject = m_currentCallFrame->scopeChain()->globalObject(); 337 DebuggerCallFrame* debuggerCallFrame = currentDebuggerCallFrame(); 338 JSGlobalObject* globalObject = debuggerCallFrame->scope()->globalObject(); 307 339 JSC::ExecState* state = globalObject->globalExec(); 340 RefPtr<JavaScriptCallFrame> javaScriptCallFrame = JavaScriptCallFrame::create(debuggerCallFrame); 308 341 JSValue jsCallFrame; 309 342 { 310 if ( m_currentCallFrame->isValid() &&globalObject->inherits(JSDOMGlobalObject::info())) {343 if (globalObject->inherits(JSDOMGlobalObject::info())) { 311 344 JSDOMGlobalObject* domGlobalObject = jsCast<JSDOMGlobalObject*>(globalObject); 312 345 JSLockHolder lock(state); 313 jsCallFrame = toJS(state, domGlobalObject, m_currentCallFrame.get());346 jsCallFrame = toJS(state, domGlobalObject, javaScriptCallFrame.get()); 314 347 } else 315 348 jsCallFrame = jsUndefined(); … … 430 463 } 431 464 432 void ScriptDebugServer::createCallFrame(CallFrame* callFrame) 433 { 434 DebuggerCallFrame debuggerCallFrame(callFrame); 435 m_currentCallFrame = JavaScriptCallFrame::create(debuggerCallFrame, m_currentCallFrame); 436 intptr_t sourceId = m_currentCallFrame->sourceID(); 465 void ScriptDebugServer::updateCallFrame(CallFrame* callFrame) 466 { 467 m_currentCallFrame = callFrame; 468 intptr_t sourceId = DebuggerCallFrame::sourceIdForCallFrame(callFrame); 437 469 if (m_lastExecutedSourceId != sourceId) { 438 470 m_lastExecutedLine = -1; … … 443 475 void ScriptDebugServer::updateCallFrameAndPauseIfNeeded(CallFrame* callFrame) 444 476 { 445 // ASSERT(m_currentCallFrame); 446 if (!m_currentCallFrame) 447 return; 448 449 m_currentCallFrame->update(DebuggerCallFrame(callFrame)); 450 pauseIfNeeded(callFrame->dynamicGlobalObject()); 451 } 452 453 void ScriptDebugServer::pauseIfNeeded(JSGlobalObject* dynamicGlobalObject) 477 updateCallFrame(callFrame); 478 pauseIfNeeded(callFrame); 479 } 480 481 void ScriptDebugServer::pauseIfNeeded(CallFrame* callFrame) 454 482 { 455 483 if (m_paused) 456 484 return; 457 485 486 JSGlobalObject* dynamicGlobalObject = callFrame->dynamicGlobalObject(); 458 487 if (!getListenersForGlobalObject(dynamicGlobalObject)) 459 488 return; … … 463 492 bool pauseNow = m_pauseOnNextStatement; 464 493 pauseNow |= (m_pauseOnCallFrame == m_currentCallFrame); 465 pauseNow |= didHitBreakpoint = hasBreakpoint(m_currentCallFrame->sourceID(), m_currentCallFrame->position(), &breakpoint); 466 m_lastExecutedLine = m_currentCallFrame->position().m_line.zeroBasedInt(); 494 495 intptr_t sourceId = DebuggerCallFrame::sourceIdForCallFrame(m_currentCallFrame); 496 TextPosition position = DebuggerCallFrame::positionForCallFrame(m_currentCallFrame); 497 pauseNow |= didHitBreakpoint = hasBreakpoint(sourceId, position, &breakpoint); 498 m_lastExecutedLine = position.m_line.zeroBasedInt(); 467 499 if (!pauseNow) 468 500 return; 501 502 DebuggerCallFrameScope debuggerCallFrameScope(*this); 469 503 470 504 if (didHitBreakpoint) { … … 497 531 { 498 532 if (!m_paused) { 499 createCallFrame(callFrame);500 pauseIfNeeded(callFrame ->dynamicGlobalObject());533 updateCallFrame(callFrame); 534 pauseIfNeeded(callFrame); 501 535 } 502 536 } … … 521 555 // Treat stepping over a return statement like stepping out. 522 556 if (m_currentCallFrame == m_pauseOnCallFrame) 523 m_pauseOnCallFrame = m_currentCallFrame->caller(); 524 m_currentCallFrame = m_currentCallFrame->caller(); 557 m_pauseOnCallFrame = m_currentCallFrame->callerFrameNoFlags(); 558 559 m_currentCallFrame = m_currentCallFrame->callerFrameNoFlags(); 525 560 } 526 561 … … 539 574 { 540 575 if (!m_paused) { 541 createCallFrame(callFrame);542 pauseIfNeeded(callFrame ->dynamicGlobalObject());576 updateCallFrame(callFrame); 577 pauseIfNeeded(callFrame); 543 578 } 544 579 } … … 555 590 return; 556 591 if (m_currentCallFrame == m_pauseOnCallFrame) { 557 m_pauseOnCallFrame = m_currentCallFrame->caller ();592 m_pauseOnCallFrame = m_currentCallFrame->callerFrameNoFlags(); 558 593 if (!m_currentCallFrame) 559 594 return; 560 595 } 561 m_currentCallFrame = m_currentCallFrame->caller ();596 m_currentCallFrame = m_currentCallFrame->callerFrameNoFlags(); 562 597 } 563 598 -
trunk/Source/WebCore/bindings/js/ScriptDebugServer.h
r156374 r156936 51 51 namespace WebCore { 52 52 53 class JavaScriptCallFrame;54 53 class ScriptDebugListener; 55 54 class ScriptObject; … … 136 135 void dispatchFailedToParseSource(const ListenerSet& listeners, JSC::SourceProvider*, int errorLine, const String& errorMessage); 137 136 138 void createCallFrame(JSC::CallFrame*); 137 // These update functions are only needed because our current breakpoints are 138 // key'ed off the source position instead of the bytecode PC. This ensures 139 // that we don't break on the same line more than once. Once we switch to a 140 // bytecode PC key'ed breakpoint, we will not need these anymore and should 141 // be able to remove them. 142 void updateCallFrame(JSC::CallFrame*); 139 143 void updateCallFrameAndPauseIfNeeded(JSC::CallFrame*); 140 void pauseIfNeeded(JSC::JSGlobalObject* dynamicGlobalObject); 144 void pauseIfNeeded(JSC::CallFrame*); 145 146 JSC::DebuggerCallFrame* currentDebuggerCallFrame() const; 141 147 142 148 virtual void detach(JSC::JSGlobalObject*) OVERRIDE; … … 152 158 153 159 typedef Vector<ScriptBreakpoint> BreakpointsInLine; 154 typedef HashMap< long, BreakpointsInLine> LineToBreakpointMap;155 typedef HashMap<intptr_t, LineToBreakpoint Map> SourceIdToBreakpointsMap;160 typedef HashMap<int, BreakpointsInLine, WTF::IntHash<int>, WTF::UnsignedWithZeroKeyHashTraits<int> > LineToBreakpointsMap; 161 typedef HashMap<intptr_t, LineToBreakpointsMap> SourceIdToBreakpointsMap; 156 162 157 163 bool m_callingListeners; … … 162 168 bool m_doneProcessingDebuggerEvents; 163 169 bool m_breakpointsActivated; 164 JavaScriptCallFrame* m_pauseOnCallFrame; 165 RefPtr<JavaScriptCallFrame> m_currentCallFrame; 170 JSC::CallFrame* m_pauseOnCallFrame; 171 JSC::CallFrame* m_currentCallFrame; 172 RefPtr<JSC::DebuggerCallFrame> m_currentDebuggerCallFrame; 166 173 SourceIdToBreakpointsMap m_sourceIdToBreakpoints; 167 174 Timer<ScriptDebugServer> m_recompileTimer; … … 169 176 int m_lastExecutedLine; 170 177 intptr_t m_lastExecutedSourceId; 178 179 friend class DebuggerCallFrameScope; 171 180 }; 172 181 -
trunk/Source/WebCore/bindings/js/WorkerScriptDebugServer.cpp
r156374 r156936 64 64 { 65 65 if (!m_paused) 66 createCallFrame(callFrame);66 updateCallFrame(callFrame); 67 67 } 68 68 -
trunk/Source/WebKit/mac/ChangeLog
r156921 r156936 1 2013-10-04 Mark Lam <mark.lam@apple.com> 2 3 Change ScriptDebugServer to use DebuggerCallFrame instead of JavaScriptCallFrame. 4 https://bugs.webkit.org/show_bug.cgi?id=121969. 5 6 Reviewed by Geoffrey Garen. 7 8 1. Make JavaScriptCallFrame a thin shell around the DebuggerCallFrame. 9 DebuggerCallFrame now tracks whether it is valid instead of needing 10 JavaScriptCallFrame do it. 11 2. ScriptDebugServer now only instantiates an DebuggerCallFrame when needed 12 just before it pauses and calls back to its client, and then invalidates 13 it immediately when the callback returns. Every subsequent callback to 14 the client will use a new instance of the DebuggerCallFrame. 15 3. Similarly, ScriptDebugServer now only creates a JavaScriptCallFrame when 16 it "pauses". 17 4. DebuggerCallFrame only creates its caller DebuggerCallFrame when 18 it is needed i.e. when the client calls callerFrame(). Similarly, 19 JavaScriptCallFrame only creates its caller when it's requested. 20 5. DebuggerCallFrame's line() and column() now returns a base-zero int. 21 6. WebScriptDebugDelegate now only caches the functionName of the frame 22 instead of the entire DebuggerCallFrame because that is all that is 23 needed. 24 7. Also removed evaluateInGlobalCallFrame() which is not used anywhere. 25 26 * WebView/WebScriptDebugDelegate.mm: 27 (-[WebScriptCallFramePrivate dealloc]): 28 (-[WebScriptCallFrame _initWithGlobalObject:functionName:exceptionValue:JSC::]): 29 (-[WebScriptCallFrame functionName]): 30 (-[WebScriptCallFrame exception]): 31 * WebView/WebScriptDebugger.mm: 32 (WebScriptDebugger::exception): 33 1 34 2013-10-04 Anders Carlsson <andersca@apple.com> 2 35 -
trunk/Source/WebKit/mac/WebView/WebScriptDebugDelegate.mm
r156374 r156936 39 39 #import <debugger/Debugger.h> 40 40 #import <debugger/DebuggerActivation.h> 41 #import <debugger/DebuggerCallFrame.h>42 41 #import <interpreter/CallFrame.h> 43 42 #import <runtime/Completion.h> … … 63 62 @public 64 63 WebScriptObject *globalObject; // the global object's proxy (not retained) 65 DebuggerCallFrame* debuggerCallFrame;64 String functionName; 66 65 JSC::JSValue exceptionValue; 67 66 } … … 71 70 - (void)dealloc 72 71 { 73 delete debuggerCallFrame;74 72 [super dealloc]; 75 73 } … … 87 85 @implementation WebScriptCallFrame (WebScriptDebugDelegateInternal) 88 86 89 - (WebScriptCallFrame *)_initWithGlobalObject:(WebScriptObject *)globalObj debuggerCallFrame:(const DebuggerCallFrame&)debuggerCallFrame exceptionValue:(JSC::JSValue)exceptionValue87 - (WebScriptCallFrame *)_initWithGlobalObject:(WebScriptObject *)globalObj functionName:(String)functionName exceptionValue:(JSC::JSValue)exceptionValue 90 88 { 91 89 if ((self = [super init])) { 92 90 _private = [[WebScriptCallFramePrivate alloc] init]; 93 91 _private->globalObject = globalObj; 94 _private-> debuggerCallFrame = new DebuggerCallFrame(debuggerCallFrame);92 _private->functionName = functionName; 95 93 _private->exceptionValue = exceptionValue; 96 94 } … … 149 147 - (NSString *)functionName 150 148 { 151 if ( !_private->debuggerCallFrame)149 if (_private->functionName.isEmpty()) 152 150 return nil; 153 151 154 String functionName = _private-> debuggerCallFrame->functionName();152 String functionName = _private->functionName; 155 153 return nsStringNilIfEmpty(functionName); 156 154 } … … 160 158 - (id)exception 161 159 { 162 if (!_private-> debuggerCallFrame)160 if (!_private->exceptionValue) 163 161 return nil; 164 162 -
trunk/Source/WebKit/mac/WebView/WebScriptDebugger.mm
r156550 r156936 47 47 48 48 @interface WebScriptCallFrame (WebScriptDebugDelegateInternal) 49 - (WebScriptCallFrame *)_initWithGlobalObject:(WebScriptObject *)globalObj debuggerCallFrame:(const DebuggerCallFrame&)debuggerCallFrame exceptionValue:(JSC::JSValue)exceptionValue;49 - (WebScriptCallFrame *)_initWithGlobalObject:(WebScriptObject *)globalObj functionName:(String)functionName exceptionValue:(JSC::JSValue)exceptionValue; 50 50 @end 51 51 … … 126 126 WebFrame *webFrame = toWebFrame(callFrame->dynamicGlobalObject()); 127 127 WebView *webView = [webFrame webView]; 128 DebuggerCallFrame debuggerCallFrame(callFrame); 129 RetainPtr<WebScriptCallFrame> webCallFrame = adoptNS([[WebScriptCallFrame alloc] _initWithGlobalObject:core(webFrame)->script().windowScriptObject() debuggerCallFrame:debuggerCallFrame exceptionValue:exceptionValue]); 128 RefPtr<DebuggerCallFrame> debuggerCallFrame = DebuggerCallFrame::create(callFrame); 129 String functionName = debuggerCallFrame->functionName(); 130 RetainPtr<WebScriptCallFrame> webCallFrame = adoptNS([[WebScriptCallFrame alloc] _initWithGlobalObject:core(webFrame)->script().windowScriptObject() functionName:functionName exceptionValue:exceptionValue]); 130 131 131 132 WebScriptDebugDelegateImplementationCache* cache = WebViewGetScriptDebugDelegateImplementations(webView); 132 133 if (cache->exceptionWasRaisedFunc) { 133 134 if (cache->exceptionWasRaisedExpectsHasHandlerFlag) 134 CallScriptDebugDelegate(cache->exceptionWasRaisedFunc, webView, @selector(webView:exceptionWasRaised:hasHandler:sourceId:line:forWebFrame:), webCallFrame.get(), hasHandler, debuggerCallFrame .sourceId(), debuggerCallFrame.line(), webFrame);135 CallScriptDebugDelegate(cache->exceptionWasRaisedFunc, webView, @selector(webView:exceptionWasRaised:hasHandler:sourceId:line:forWebFrame:), webCallFrame.get(), hasHandler, debuggerCallFrame->sourceId(), debuggerCallFrame->line(), webFrame); 135 136 else 136 CallScriptDebugDelegate(cache->exceptionWasRaisedFunc, webView, @selector(webView:exceptionWasRaised:sourceId:line:forWebFrame:), webCallFrame.get(), debuggerCallFrame .sourceId(), debuggerCallFrame.line(), webFrame);137 CallScriptDebugDelegate(cache->exceptionWasRaisedFunc, webView, @selector(webView:exceptionWasRaised:sourceId:line:forWebFrame:), webCallFrame.get(), debuggerCallFrame->sourceId(), debuggerCallFrame->line(), webFrame); 137 138 } 138 139
Note:
See TracChangeset
for help on using the changeset viewer.