summaryrefslogtreecommitdiff
path: root/Source/JavaScriptCore/debugger/DebuggerCallFrame.cpp
diff options
context:
space:
mode:
authorKonstantin Tokarev <annulen@yandex.ru>2016-08-25 19:20:41 +0300
committerKonstantin Tokarev <annulen@yandex.ru>2017-02-02 12:30:55 +0000
commit6882a04fb36642862b11efe514251d32070c3d65 (patch)
treeb7959826000b061fd5ccc7512035c7478742f7b0 /Source/JavaScriptCore/debugger/DebuggerCallFrame.cpp
parentab6df191029eeeb0b0f16f127d553265659f739e (diff)
downloadqtwebkit-6882a04fb36642862b11efe514251d32070c3d65.tar.gz
Imported QtWebKit TP3 (git b57bc6801f1876c3220d5a4bfea33d620d477443)
Change-Id: I3b1d8a2808782c9f34d50240000e20cb38d3680f Reviewed-by: Konstantin Tokarev <annulen@yandex.ru>
Diffstat (limited to 'Source/JavaScriptCore/debugger/DebuggerCallFrame.cpp')
-rw-r--r--Source/JavaScriptCore/debugger/DebuggerCallFrame.cpp232
1 files changed, 190 insertions, 42 deletions
diff --git a/Source/JavaScriptCore/debugger/DebuggerCallFrame.cpp b/Source/JavaScriptCore/debugger/DebuggerCallFrame.cpp
index a5d045cb9..f4794fd45 100644
--- a/Source/JavaScriptCore/debugger/DebuggerCallFrame.cpp
+++ b/Source/JavaScriptCore/debugger/DebuggerCallFrame.cpp
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2008 Apple Inc. All rights reserved.
+ * Copyright (C) 2008, 2013, 2014 Apple Inc. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
@@ -10,7 +10,7 @@
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
- * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of
+ * 3. Neither the name of Apple Inc. ("Apple") nor the names of
* its contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
@@ -29,81 +29,229 @@
#include "config.h"
#include "DebuggerCallFrame.h"
-#include "JSFunction.h"
#include "CodeBlock.h"
+#include "DebuggerEvalEnabler.h"
+#include "DebuggerScope.h"
#include "Interpreter.h"
-#include "Operations.h"
+#include "JSFunction.h"
+#include "JSLexicalEnvironment.h"
+#include "JSCInlines.h"
#include "Parser.h"
+#include "StackVisitor.h"
+#include "StrongInlines.h"
namespace JSC {
-String DebuggerCallFrame::functionName() const
+class LineAndColumnFunctor {
+public:
+ StackVisitor::Status operator()(StackVisitor& visitor)
+ {
+ visitor->computeLineAndColumn(m_line, m_column);
+ return StackVisitor::Done;
+ }
+
+ unsigned line() const { return m_line; }
+ unsigned column() const { return m_column; }
+
+private:
+ unsigned m_line;
+ unsigned m_column;
+};
+
+class FindCallerMidStackFunctor {
+public:
+ FindCallerMidStackFunctor(CallFrame* callFrame)
+ : m_callFrame(callFrame)
+ , m_callerFrame(nullptr)
+ { }
+
+ StackVisitor::Status operator()(StackVisitor& visitor)
+ {
+ if (visitor->callFrame() == m_callFrame) {
+ m_callerFrame = visitor->callerFrame();
+ return StackVisitor::Done;
+ }
+ return StackVisitor::Continue;
+ }
+
+ CallFrame* getCallerFrame() const { return m_callerFrame; }
+
+private:
+ CallFrame* m_callFrame;
+ CallFrame* m_callerFrame;
+};
+
+DebuggerCallFrame::DebuggerCallFrame(CallFrame* callFrame)
+ : m_callFrame(callFrame)
{
- if (!m_callFrame->codeBlock())
- return String();
+ m_position = positionForCallFrame(m_callFrame);
+}
- if (!m_callFrame->callee())
- return String();
+RefPtr<DebuggerCallFrame> DebuggerCallFrame::callerFrame()
+{
+ ASSERT(isValid());
+ if (!isValid())
+ return 0;
- JSObject* function = m_callFrame->callee();
- if (!function || !function->inherits(&JSFunction::s_info))
- return String();
- return jsCast<JSFunction*>(function)->name(m_callFrame);
+ if (m_caller)
+ return m_caller;
+
+ FindCallerMidStackFunctor functor(m_callFrame);
+ m_callFrame->vm().topCallFrame->iterate(functor);
+
+ CallFrame* callerFrame = functor.getCallerFrame();
+ if (!callerFrame)
+ return nullptr;
+
+ m_caller = DebuggerCallFrame::create(callerFrame);
+ return m_caller;
}
-
-String DebuggerCallFrame::calculatedFunctionName() const
+
+JSC::JSGlobalObject* DebuggerCallFrame::vmEntryGlobalObject() const
{
- if (!m_callFrame->codeBlock())
- return String();
+ ASSERT(isValid());
+ if (!isValid())
+ return 0;
+ return m_callFrame->vmEntryGlobalObject();
+}
- JSObject* function = m_callFrame->callee();
+SourceID DebuggerCallFrame::sourceID() const
+{
+ ASSERT(isValid());
+ if (!isValid())
+ return noSourceID;
+ return sourceIDForCallFrame(m_callFrame);
+}
- if (!function)
+String DebuggerCallFrame::functionName() const
+{
+ ASSERT(isValid());
+ if (!isValid())
return String();
+ return m_callFrame->friendlyFunctionName();
+}
- return getCalculatedDisplayName(m_callFrame, function);
+DebuggerScope* DebuggerCallFrame::scope()
+{
+ ASSERT(isValid());
+ if (!isValid())
+ return 0;
+
+ if (!m_scope) {
+ VM& vm = m_callFrame->vm();
+ JSScope* scope;
+ CodeBlock* codeBlock = m_callFrame->codeBlock();
+ if (codeBlock && codeBlock->scopeRegister().isValid())
+ scope = m_callFrame->scope(codeBlock->scopeRegister().offset());
+ else if (JSCallee* callee = jsDynamicCast<JSCallee*>(m_callFrame->callee()))
+ scope = callee->scope();
+ else
+ scope = m_callFrame->lexicalGlobalObject();
+
+ m_scope.set(vm, DebuggerScope::create(vm, scope));
+ }
+ return m_scope.get();
}
DebuggerCallFrame::Type DebuggerCallFrame::type() const
{
- if (m_callFrame->callee())
+ ASSERT(isValid());
+ if (!isValid())
+ return ProgramType;
+
+ if (jsDynamicCast<JSFunction*>(m_callFrame->callee()))
return FunctionType;
return ProgramType;
}
-JSObject* DebuggerCallFrame::thisObject() const
+JSValue DebuggerCallFrame::thisValue() const
{
- CodeBlock* codeBlock = m_callFrame->codeBlock();
- if (!codeBlock)
- return 0;
-
- JSValue thisValue = m_callFrame->uncheckedR(codeBlock->thisRegister()).jsValue();
- if (!thisValue.isObject())
- return 0;
-
- return asObject(thisValue);
+ ASSERT(isValid());
+ return thisValueForCallFrame(m_callFrame);
}
-JSValue DebuggerCallFrame::evaluate(const String& script, JSValue& exception) const
+// Evaluate some JavaScript code in the scope of this frame.
+JSValue DebuggerCallFrame::evaluate(const String& script, NakedPtr<Exception>& exception)
{
- if (!m_callFrame->codeBlock())
+ ASSERT(isValid());
+ CallFrame* callFrame = m_callFrame;
+ if (!callFrame)
+ return jsNull();
+
+ JSLockHolder lock(callFrame);
+
+ if (!callFrame->codeBlock())
return JSValue();
- VM& vm = m_callFrame->vm();
- EvalExecutable* eval = EvalExecutable::create(m_callFrame, m_callFrame->codeBlock()->unlinkedCodeBlock()->codeCacheForEval(), makeSource(script), m_callFrame->codeBlock()->isStrictMode());
- if (vm.exception) {
- exception = vm.exception;
- vm.exception = JSValue();
+ DebuggerEvalEnabler evalEnabler(callFrame);
+ VM& vm = callFrame->vm();
+ auto& codeBlock = *callFrame->codeBlock();
+ ThisTDZMode thisTDZMode = codeBlock.unlinkedCodeBlock()->constructorKind() == ConstructorKind::Derived ? ThisTDZMode::AlwaysCheck : ThisTDZMode::CheckIfNeeded;
+
+ VariableEnvironment variablesUnderTDZ;
+ JSScope::collectVariablesUnderTDZ(scope()->jsScope(), variablesUnderTDZ);
+
+ EvalExecutable* eval = EvalExecutable::create(callFrame, makeSource(script), codeBlock.isStrictMode(), thisTDZMode, codeBlock.unlinkedCodeBlock()->derivedContextType(), codeBlock.unlinkedCodeBlock()->isArrowFunction(), &variablesUnderTDZ);
+ if (vm.exception()) {
+ exception = vm.exception();
+ vm.clearException();
+ return jsUndefined();
}
- JSValue result = vm.interpreter->execute(eval, m_callFrame, thisObject(), m_callFrame->scope());
- if (vm.exception) {
- exception = vm.exception;
- vm.exception = JSValue();
+ JSValue thisValue = thisValueForCallFrame(callFrame);
+ JSValue result = vm.interpreter->execute(eval, callFrame, thisValue, scope()->jsScope());
+ if (vm.exception()) {
+ exception = vm.exception();
+ vm.clearException();
}
ASSERT(result);
return result;
}
+void DebuggerCallFrame::invalidate()
+{
+ RefPtr<DebuggerCallFrame> frame = this;
+ while (frame) {
+ frame->m_callFrame = nullptr;
+ if (frame->m_scope) {
+ frame->m_scope->invalidateChain();
+ frame->m_scope.clear();
+ }
+ frame = frame->m_caller.release();
+ }
+}
+
+TextPosition DebuggerCallFrame::positionForCallFrame(CallFrame* callFrame)
+{
+ if (!callFrame)
+ return TextPosition();
+
+ LineAndColumnFunctor functor;
+ callFrame->iterate(functor);
+ return TextPosition(OrdinalNumber::fromOneBasedInt(functor.line()), OrdinalNumber::fromOneBasedInt(functor.column()));
+}
+
+SourceID DebuggerCallFrame::sourceIDForCallFrame(CallFrame* callFrame)
+{
+ ASSERT(callFrame);
+ CodeBlock* codeBlock = callFrame->codeBlock();
+ if (!codeBlock)
+ return noSourceID;
+ return codeBlock->ownerScriptExecutable()->sourceID();
+}
+
+JSValue DebuggerCallFrame::thisValueForCallFrame(CallFrame* callFrame)
+{
+ if (!callFrame)
+ return jsNull();
+
+ ECMAMode ecmaMode = NotStrictMode;
+ CodeBlock* codeBlock = callFrame->codeBlock();
+ if (codeBlock && codeBlock->isStrictMode())
+ ecmaMode = StrictMode;
+ JSValue thisValue = callFrame->thisValue().toThis(callFrame, ecmaMode);
+ return thisValue;
+}
+
} // namespace JSC