// Copyright 2016 the V8 project authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef V8_INSPECTOR_V8_STACK_TRACE_IMPL_H_ #define V8_INSPECTOR_V8_STACK_TRACE_IMPL_H_ #include #include #include "include/v8-inspector.h" #include "include/v8.h" #include "src/base/macros.h" #include "src/inspector/protocol/Runtime.h" #include "src/inspector/string-16.h" namespace v8_inspector { class AsyncStackTrace; class V8Debugger; class WasmTranslation; struct V8StackTraceId; class StackFrame { public: explicit StackFrame(v8::Isolate* isolate, v8::Local frame); ~StackFrame() = default; void translate(WasmTranslation* wasmTranslation); const String16& functionName() const; const String16& scriptId() const; const String16& sourceURL() const; int lineNumber() const; // 0-based. int columnNumber() const; // 0-based. std::unique_ptr buildInspectorObject( V8InspectorClient* client) const; bool isEqual(StackFrame* frame) const; private: String16 m_functionName; String16 m_scriptId; String16 m_sourceURL; int m_lineNumber; // 0-based. int m_columnNumber; // 0-based. bool m_hasSourceURLComment; }; class V8StackTraceImpl : public V8StackTrace { public: static void setCaptureStackTraceForUncaughtExceptions(v8::Isolate*, bool capture); static int maxCallStackSizeToCapture; static std::unique_ptr create(V8Debugger*, int contextGroupId, v8::Local, int maxStackSize); static std::unique_ptr capture(V8Debugger*, int contextGroupId, int maxStackSize); ~V8StackTraceImpl() override; std::unique_ptr buildInspectorObjectImpl( V8Debugger* debugger) const; // V8StackTrace implementation. // This method drops the async stack trace. std::unique_ptr clone() override; StringView firstNonEmptySourceURL() const override; bool isEmpty() const override; StringView topSourceURL() const override; int topLineNumber() const override; // 1-based. int topColumnNumber() const override; // 1-based. StringView topScriptId() const override; StringView topFunctionName() const override; std::unique_ptr buildInspectorObject() const override; std::unique_ptr toString() const override; bool isEqualIgnoringTopFrame(V8StackTraceImpl* stackTrace) const; private: V8StackTraceImpl(std::vector> frames, int maxAsyncDepth, std::shared_ptr asyncParent, const V8StackTraceId& externalParent); class StackFrameIterator { public: explicit StackFrameIterator(const V8StackTraceImpl* stackTrace); void next(); StackFrame* frame(); bool done(); private: std::vector>::const_iterator m_currentIt; std::vector>::const_iterator m_currentEnd; AsyncStackTrace* m_parent; }; std::vector> m_frames; int m_maxAsyncDepth; std::weak_ptr m_asyncParent; V8StackTraceId m_externalParent; DISALLOW_COPY_AND_ASSIGN(V8StackTraceImpl); }; class AsyncStackTrace { public: static std::shared_ptr capture(V8Debugger*, int contextGroupId, const String16& description, int maxStackSize); static uintptr_t store(V8Debugger* debugger, std::shared_ptr stack); std::unique_ptr buildInspectorObject( V8Debugger* debugger, int maxAsyncDepth) const; // If async stack has suspended task id, it means that at moment when we // capture current stack trace we suspended corresponded asynchronous // execution flow and it is possible to request pause for a momemnt when // that flow is resumed. // E.g. every time when we suspend async function we mark corresponded async // stack as suspended and every time when this function is resumed we remove // suspendedTaskId. void setSuspendedTaskId(void* task); void* suspendedTaskId() const; int contextGroupId() const; const String16& description() const; std::weak_ptr parent() const; bool isEmpty() const; const V8StackTraceId& externalParent() const { return m_externalParent; } const std::vector>& frames() const { return m_frames; } private: AsyncStackTrace(int contextGroupId, const String16& description, std::vector> frames, std::shared_ptr asyncParent, const V8StackTraceId& externalParent); int m_contextGroupId; uintptr_t m_id; void* m_suspendedTaskId; String16 m_description; std::vector> m_frames; std::weak_ptr m_asyncParent; V8StackTraceId m_externalParent; DISALLOW_COPY_AND_ASSIGN(AsyncStackTrace); }; } // namespace v8_inspector #endif // V8_INSPECTOR_V8_STACK_TRACE_IMPL_H_