5febc27b5d
Prior to this commit, calls to C++ builtins created standard exit frames, which are skipped when constructing JS stack traces. In order to show these calls on traces, we introduce a new builtin exit frame type. Builtin exit frames contain target and new.target on the stack and are not skipped during stack trace construction. BUG=v8:4815 R=bmeurer@chromium.org, yangguo@chromium.org CQ_INCLUDE_TRYBOTS=tryserver.chromium.linux:linux_chromium_rel_ng;tryserver.blink:linux_blink_rel;tryserver.v8:v8_linux_nosnap_dbg Committed: https://crrev.com/3c60c6b105f39344f93a8407f41534e5e60cf19a Review-Url: https://codereview.chromium.org/2090723005 Cr-Original-Commit-Position: refs/heads/master@{#37384} Cr-Commit-Position: refs/heads/master@{#37416}
1310 lines
43 KiB
C++
1310 lines
43 KiB
C++
// Copyright 2012 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_FRAMES_H_
|
|
#define V8_FRAMES_H_
|
|
|
|
#include "src/allocation.h"
|
|
#include "src/handles.h"
|
|
#include "src/safepoint-table.h"
|
|
|
|
namespace v8 {
|
|
namespace internal {
|
|
|
|
#if V8_TARGET_ARCH_ARM64
|
|
typedef uint64_t RegList;
|
|
#else
|
|
typedef uint32_t RegList;
|
|
#endif
|
|
|
|
// Get the number of registers in a given register list.
|
|
int NumRegs(RegList list);
|
|
|
|
void SetUpJSCallerSavedCodeData();
|
|
|
|
// Return the code of the n-th saved register available to JavaScript.
|
|
int JSCallerSavedCode(int n);
|
|
|
|
|
|
// Forward declarations.
|
|
class ExternalCallbackScope;
|
|
class StackFrameIteratorBase;
|
|
class ThreadLocalTop;
|
|
class Isolate;
|
|
|
|
class InnerPointerToCodeCache {
|
|
public:
|
|
struct InnerPointerToCodeCacheEntry {
|
|
Address inner_pointer;
|
|
Code* code;
|
|
SafepointEntry safepoint_entry;
|
|
};
|
|
|
|
explicit InnerPointerToCodeCache(Isolate* isolate) : isolate_(isolate) {
|
|
Flush();
|
|
}
|
|
|
|
Code* GcSafeFindCodeForInnerPointer(Address inner_pointer);
|
|
Code* GcSafeCastToCode(HeapObject* object, Address inner_pointer);
|
|
|
|
void Flush() {
|
|
memset(&cache_[0], 0, sizeof(cache_));
|
|
}
|
|
|
|
InnerPointerToCodeCacheEntry* GetCacheEntry(Address inner_pointer);
|
|
|
|
private:
|
|
InnerPointerToCodeCacheEntry* cache(int index) { return &cache_[index]; }
|
|
|
|
Isolate* isolate_;
|
|
|
|
static const int kInnerPointerToCodeCacheSize = 1024;
|
|
InnerPointerToCodeCacheEntry cache_[kInnerPointerToCodeCacheSize];
|
|
|
|
DISALLOW_COPY_AND_ASSIGN(InnerPointerToCodeCache);
|
|
};
|
|
|
|
|
|
// Every try-block pushes the context register.
|
|
class TryBlockConstant : public AllStatic {
|
|
public:
|
|
static const int kElementCount = 1;
|
|
};
|
|
|
|
|
|
class StackHandlerConstants : public AllStatic {
|
|
public:
|
|
static const int kNextOffset = 0 * kPointerSize;
|
|
|
|
static const int kSize = kNextOffset + kPointerSize;
|
|
static const int kSlotCount = kSize >> kPointerSizeLog2;
|
|
};
|
|
|
|
|
|
class StackHandler BASE_EMBEDDED {
|
|
public:
|
|
// Get the address of this stack handler.
|
|
inline Address address() const;
|
|
|
|
// Get the next stack handler in the chain.
|
|
inline StackHandler* next() const;
|
|
|
|
// Conversion support.
|
|
static inline StackHandler* FromAddress(Address address);
|
|
|
|
private:
|
|
DISALLOW_IMPLICIT_CONSTRUCTORS(StackHandler);
|
|
};
|
|
|
|
#define STACK_FRAME_TYPE_LIST(V) \
|
|
V(ENTRY, EntryFrame) \
|
|
V(ENTRY_CONSTRUCT, EntryConstructFrame) \
|
|
V(EXIT, ExitFrame) \
|
|
V(JAVA_SCRIPT, JavaScriptFrame) \
|
|
V(OPTIMIZED, OptimizedFrame) \
|
|
V(WASM, WasmFrame) \
|
|
V(WASM_TO_JS, WasmToJsFrame) \
|
|
V(JS_TO_WASM, JsToWasmFrame) \
|
|
V(INTERPRETED, InterpretedFrame) \
|
|
V(STUB, StubFrame) \
|
|
V(STUB_FAILURE_TRAMPOLINE, StubFailureTrampolineFrame) \
|
|
V(INTERNAL, InternalFrame) \
|
|
V(CONSTRUCT, ConstructFrame) \
|
|
V(ARGUMENTS_ADAPTOR, ArgumentsAdaptorFrame) \
|
|
V(BUILTIN, BuiltinFrame) \
|
|
V(BUILTIN_EXIT, BuiltinExitFrame)
|
|
|
|
// Every pointer in a frame has a slot id. On 32-bit platforms, doubles consume
|
|
// two slots.
|
|
//
|
|
// Stack slot indices >= 0 access the callee stack with slot 0 corresponding to
|
|
// the callee's saved return address and 1 corresponding to the saved frame
|
|
// pointer. Some frames have additional information stored in the fixed header,
|
|
// for example JSFunctions store the function context and marker in the fixed
|
|
// header, with slot index 2 corresponding to the current function context and 3
|
|
// corresponding to the frame marker/JSFunction.
|
|
//
|
|
// slot JS frame
|
|
// +-----------------+--------------------------------
|
|
// -n-1 | parameter 0 | ^
|
|
// |- - - - - - - - -| |
|
|
// -n | | Caller
|
|
// ... | ... | frame slots
|
|
// -2 | parameter n-1 | (slot < 0)
|
|
// |- - - - - - - - -| |
|
|
// -1 | parameter n | v
|
|
// -----+-----------------+--------------------------------
|
|
// 0 | return addr | ^ ^
|
|
// |- - - - - - - - -| | |
|
|
// 1 | saved frame ptr | Fixed |
|
|
// |- - - - - - - - -| Header <-- frame ptr |
|
|
// 2 | [Constant Pool] | | |
|
|
// |- - - - - - - - -| | |
|
|
// 2+cp |Context/Frm. Type| v if a constant pool |
|
|
// |-----------------+---- is used, cp = 1, |
|
|
// 3+cp | | ^ otherwise, cp = 0 |
|
|
// |- - - - - - - - -| | |
|
|
// 4+cp | | | Callee
|
|
// |- - - - - - - - -| | frame slots
|
|
// ... | | Frame slots (slot >= 0)
|
|
// |- - - - - - - - -| | |
|
|
// | | v |
|
|
// -----+-----------------+----- <-- stack ptr -------------
|
|
//
|
|
class CommonFrameConstants : public AllStatic {
|
|
public:
|
|
static const int kCallerFPOffset = 0 * kPointerSize;
|
|
static const int kCallerPCOffset = kCallerFPOffset + 1 * kFPOnStackSize;
|
|
static const int kCallerSPOffset = kCallerPCOffset + 1 * kPCOnStackSize;
|
|
|
|
// Fixed part of the frame consists of return address, caller fp,
|
|
// constant pool (if FLAG_enable_embedded_constant_pool), context, and
|
|
// function. StandardFrame::IterateExpressions assumes that kLastObjectOffset
|
|
// is the last object pointer.
|
|
static const int kFixedFrameSizeAboveFp = kPCOnStackSize + kFPOnStackSize;
|
|
static const int kFixedSlotCountAboveFp =
|
|
kFixedFrameSizeAboveFp / kPointerSize;
|
|
static const int kCPSlotSize =
|
|
FLAG_enable_embedded_constant_pool ? kPointerSize : 0;
|
|
static const int kCPSlotCount = kCPSlotSize / kPointerSize;
|
|
static const int kConstantPoolOffset = kCPSlotSize ? -1 * kPointerSize : 0;
|
|
static const int kContextOrFrameTypeSize = kPointerSize;
|
|
static const int kContextOrFrameTypeOffset =
|
|
-(kCPSlotSize + kContextOrFrameTypeSize);
|
|
};
|
|
|
|
// StandardFrames are used for interpreted, full-codegen and optimized
|
|
// JavaScript frames. They always have a context below the saved fp/constant
|
|
// pool and below that the JSFunction of the executing function.
|
|
//
|
|
// slot JS frame
|
|
// +-----------------+--------------------------------
|
|
// -n-1 | parameter 0 | ^
|
|
// |- - - - - - - - -| |
|
|
// -n | | Caller
|
|
// ... | ... | frame slots
|
|
// -2 | parameter n-1 | (slot < 0)
|
|
// |- - - - - - - - -| |
|
|
// -1 | parameter n | v
|
|
// -----+-----------------+--------------------------------
|
|
// 0 | return addr | ^ ^
|
|
// |- - - - - - - - -| | |
|
|
// 1 | saved frame ptr | Fixed |
|
|
// |- - - - - - - - -| Header <-- frame ptr |
|
|
// 2 | [Constant Pool] | | |
|
|
// |- - - - - - - - -| | |
|
|
// 2+cp | Context | | if a constant pool |
|
|
// |- - - - - - - - -| | is used, cp = 1, |
|
|
// 3+cp | JSFunction | v otherwise, cp = 0 |
|
|
// +-----------------+---- |
|
|
// 4+cp | | ^ Callee
|
|
// |- - - - - - - - -| | frame slots
|
|
// ... | | Frame slots (slot >= 0)
|
|
// |- - - - - - - - -| | |
|
|
// | | v |
|
|
// -----+-----------------+----- <-- stack ptr -------------
|
|
//
|
|
class StandardFrameConstants : public CommonFrameConstants {
|
|
public:
|
|
static const int kFixedFrameSizeFromFp = 2 * kPointerSize + kCPSlotSize;
|
|
static const int kFixedFrameSize =
|
|
kFixedFrameSizeAboveFp + kFixedFrameSizeFromFp;
|
|
static const int kFixedSlotCountFromFp = kFixedFrameSizeFromFp / kPointerSize;
|
|
static const int kFixedSlotCount = kFixedFrameSize / kPointerSize;
|
|
static const int kContextOffset = kContextOrFrameTypeOffset;
|
|
static const int kFunctionOffset = -2 * kPointerSize - kCPSlotSize;
|
|
static const int kExpressionsOffset = -3 * kPointerSize - kCPSlotSize;
|
|
static const int kLastObjectOffset = kContextOffset;
|
|
};
|
|
|
|
// TypedFrames have a SMI type maker value below the saved FP/constant pool to
|
|
// distinguish them from StandardFrames, which have a context in that position
|
|
// instead.
|
|
//
|
|
// slot JS frame
|
|
// +-----------------+--------------------------------
|
|
// -n-1 | parameter 0 | ^
|
|
// |- - - - - - - - -| |
|
|
// -n | | Caller
|
|
// ... | ... | frame slots
|
|
// -2 | parameter n-1 | (slot < 0)
|
|
// |- - - - - - - - -| |
|
|
// -1 | parameter n | v
|
|
// -----+-----------------+--------------------------------
|
|
// 0 | return addr | ^ ^
|
|
// |- - - - - - - - -| | |
|
|
// 1 | saved frame ptr | Fixed |
|
|
// |- - - - - - - - -| Header <-- frame ptr |
|
|
// 2 | [Constant Pool] | | |
|
|
// |- - - - - - - - -| | |
|
|
// 2+cp |Frame Type Marker| v if a constant pool |
|
|
// |-----------------+---- is used, cp = 1, |
|
|
// 3+cp | | ^ otherwise, cp = 0 |
|
|
// |- - - - - - - - -| | |
|
|
// 4+cp | | | Callee
|
|
// |- - - - - - - - -| | frame slots
|
|
// ... | | Frame slots (slot >= 0)
|
|
// |- - - - - - - - -| | |
|
|
// | | v |
|
|
// -----+-----------------+----- <-- stack ptr -------------
|
|
//
|
|
class TypedFrameConstants : public CommonFrameConstants {
|
|
public:
|
|
static const int kFrameTypeSize = kContextOrFrameTypeSize;
|
|
static const int kFrameTypeOffset = kContextOrFrameTypeOffset;
|
|
static const int kFixedFrameSizeFromFp = kCPSlotSize + kFrameTypeSize;
|
|
static const int kFixedSlotCountFromFp = kFixedFrameSizeFromFp / kPointerSize;
|
|
static const int kFixedFrameSize =
|
|
StandardFrameConstants::kFixedFrameSizeAboveFp + kFixedFrameSizeFromFp;
|
|
static const int kFixedSlotCount = kFixedFrameSize / kPointerSize;
|
|
static const int kFirstPushedFrameValueOffset =
|
|
-StandardFrameConstants::kCPSlotSize - kFrameTypeSize - kPointerSize;
|
|
};
|
|
|
|
#define TYPED_FRAME_PUSHED_VALUE_OFFSET(x) \
|
|
(TypedFrameConstants::kFirstPushedFrameValueOffset - (x)*kPointerSize)
|
|
#define TYPED_FRAME_SIZE(count) \
|
|
(TypedFrameConstants::kFixedFrameSize + (count)*kPointerSize)
|
|
#define TYPED_FRAME_SIZE_FROM_SP(count) \
|
|
(TypedFrameConstants::kFixedFrameSizeFromFp + (count)*kPointerSize)
|
|
#define DEFINE_TYPED_FRAME_SIZES(count) \
|
|
static const int kFixedFrameSize = TYPED_FRAME_SIZE(count); \
|
|
static const int kFixedSlotCount = kFixedFrameSize / kPointerSize; \
|
|
static const int kFixedFrameSizeFromFp = TYPED_FRAME_SIZE_FROM_SP(count); \
|
|
static const int kFixedSlotCountFromFp = kFixedFrameSizeFromFp / kPointerSize
|
|
|
|
class ArgumentsAdaptorFrameConstants : public TypedFrameConstants {
|
|
public:
|
|
// FP-relative.
|
|
static const int kFunctionOffset = TYPED_FRAME_PUSHED_VALUE_OFFSET(0);
|
|
static const int kLengthOffset = TYPED_FRAME_PUSHED_VALUE_OFFSET(1);
|
|
DEFINE_TYPED_FRAME_SIZES(2);
|
|
};
|
|
|
|
class BuiltinFrameConstants : public TypedFrameConstants {
|
|
public:
|
|
// FP-relative.
|
|
static const int kFunctionOffset = TYPED_FRAME_PUSHED_VALUE_OFFSET(0);
|
|
static const int kLengthOffset = TYPED_FRAME_PUSHED_VALUE_OFFSET(1);
|
|
DEFINE_TYPED_FRAME_SIZES(2);
|
|
};
|
|
|
|
class InternalFrameConstants : public TypedFrameConstants {
|
|
public:
|
|
// FP-relative.
|
|
static const int kCodeOffset = TYPED_FRAME_PUSHED_VALUE_OFFSET(0);
|
|
DEFINE_TYPED_FRAME_SIZES(1);
|
|
};
|
|
|
|
class FrameDropperFrameConstants : public InternalFrameConstants {
|
|
public:
|
|
// FP-relative.
|
|
static const int kFunctionOffset = TYPED_FRAME_PUSHED_VALUE_OFFSET(1);
|
|
DEFINE_TYPED_FRAME_SIZES(2);
|
|
};
|
|
|
|
class ConstructFrameConstants : public TypedFrameConstants {
|
|
public:
|
|
// FP-relative.
|
|
static const int kContextOffset = TYPED_FRAME_PUSHED_VALUE_OFFSET(0);
|
|
static const int kAllocationSiteOffset = TYPED_FRAME_PUSHED_VALUE_OFFSET(1);
|
|
static const int kLengthOffset = TYPED_FRAME_PUSHED_VALUE_OFFSET(2);
|
|
static const int kImplicitReceiverOffset = TYPED_FRAME_PUSHED_VALUE_OFFSET(3);
|
|
DEFINE_TYPED_FRAME_SIZES(4);
|
|
};
|
|
|
|
class StubFailureTrampolineFrameConstants : public InternalFrameConstants {
|
|
public:
|
|
static const int kArgumentsArgumentsOffset =
|
|
TYPED_FRAME_PUSHED_VALUE_OFFSET(0);
|
|
static const int kArgumentsLengthOffset = TYPED_FRAME_PUSHED_VALUE_OFFSET(1);
|
|
static const int kArgumentsPointerOffset = TYPED_FRAME_PUSHED_VALUE_OFFSET(2);
|
|
static const int kFixedHeaderBottomOffset = kArgumentsPointerOffset;
|
|
DEFINE_TYPED_FRAME_SIZES(3);
|
|
};
|
|
|
|
// Behaves like an exit frame but with target and new target args.
|
|
class BuiltinExitFrameConstants : public CommonFrameConstants {
|
|
public:
|
|
static const int kNewTargetOffset = kCallerPCOffset + 1 * kPointerSize;
|
|
static const int kTargetOffset = kNewTargetOffset + 1 * kPointerSize;
|
|
};
|
|
|
|
class InterpreterFrameConstants : public AllStatic {
|
|
public:
|
|
// Fixed frame includes new.target and bytecode offset.
|
|
static const int kFixedFrameSize =
|
|
StandardFrameConstants::kFixedFrameSize + 3 * kPointerSize;
|
|
static const int kFixedFrameSizeFromFp =
|
|
StandardFrameConstants::kFixedFrameSizeFromFp + 3 * kPointerSize;
|
|
|
|
// FP-relative.
|
|
static const int kLastParamFromFp = StandardFrameConstants::kCallerSPOffset;
|
|
static const int kCallerPCOffsetFromFp =
|
|
StandardFrameConstants::kCallerPCOffset;
|
|
static const int kNewTargetFromFp =
|
|
-StandardFrameConstants::kFixedFrameSizeFromFp - 1 * kPointerSize;
|
|
static const int kBytecodeArrayFromFp =
|
|
-StandardFrameConstants::kFixedFrameSizeFromFp - 2 * kPointerSize;
|
|
static const int kBytecodeOffsetFromFp =
|
|
-StandardFrameConstants::kFixedFrameSizeFromFp - 3 * kPointerSize;
|
|
static const int kRegisterFileFromFp =
|
|
-StandardFrameConstants::kFixedFrameSizeFromFp - 4 * kPointerSize;
|
|
|
|
static const int kExpressionsOffset = kRegisterFileFromFp;
|
|
|
|
// Expression index for {StandardFrame::GetExpressionAddress}.
|
|
static const int kBytecodeArrayExpressionIndex = -2;
|
|
static const int kBytecodeOffsetExpressionIndex = -1;
|
|
static const int kRegisterFileExpressionIndex = 0;
|
|
};
|
|
|
|
inline static int FPOffsetToFrameSlot(int frame_offset) {
|
|
return StandardFrameConstants::kFixedSlotCountAboveFp - 1 -
|
|
frame_offset / kPointerSize;
|
|
}
|
|
|
|
inline static int FrameSlotToFPOffset(int slot) {
|
|
return (StandardFrameConstants::kFixedSlotCountAboveFp - 1 - slot) *
|
|
kPointerSize;
|
|
}
|
|
|
|
// Abstract base class for all stack frames.
|
|
class StackFrame BASE_EMBEDDED {
|
|
public:
|
|
#define DECLARE_TYPE(type, ignore) type,
|
|
enum Type {
|
|
NONE = 0,
|
|
STACK_FRAME_TYPE_LIST(DECLARE_TYPE)
|
|
NUMBER_OF_TYPES,
|
|
// Used by FrameScope to indicate that the stack frame is constructed
|
|
// manually and the FrameScope does not need to emit code.
|
|
MANUAL
|
|
};
|
|
#undef DECLARE_TYPE
|
|
|
|
// Opaque data type for identifying stack frames. Used extensively
|
|
// by the debugger.
|
|
// ID_MIN_VALUE and ID_MAX_VALUE are specified to ensure that enumeration type
|
|
// has correct value range (see Issue 830 for more details).
|
|
enum Id {
|
|
ID_MIN_VALUE = kMinInt,
|
|
ID_MAX_VALUE = kMaxInt,
|
|
NO_ID = 0
|
|
};
|
|
|
|
// Used to mark the outermost JS entry frame.
|
|
enum JsFrameMarker {
|
|
INNER_JSENTRY_FRAME = 0,
|
|
OUTERMOST_JSENTRY_FRAME = 1
|
|
};
|
|
|
|
struct State {
|
|
State() : sp(NULL), fp(NULL), pc_address(NULL),
|
|
constant_pool_address(NULL) { }
|
|
Address sp;
|
|
Address fp;
|
|
Address* pc_address;
|
|
Address* constant_pool_address;
|
|
};
|
|
|
|
// Copy constructor; it breaks the connection to host iterator
|
|
// (as an iterator usually lives on stack).
|
|
StackFrame(const StackFrame& original) {
|
|
this->state_ = original.state_;
|
|
this->iterator_ = NULL;
|
|
this->isolate_ = original.isolate_;
|
|
}
|
|
|
|
// Type testers.
|
|
bool is_entry() const { return type() == ENTRY; }
|
|
bool is_entry_construct() const { return type() == ENTRY_CONSTRUCT; }
|
|
bool is_exit() const { return type() == EXIT; }
|
|
bool is_optimized() const { return type() == OPTIMIZED; }
|
|
bool is_interpreted() const { return type() == INTERPRETED; }
|
|
bool is_wasm() const { return type() == WASM; }
|
|
bool is_wasm_to_js() const { return type() == WASM_TO_JS; }
|
|
bool is_js_to_wasm() const { return type() == JS_TO_WASM; }
|
|
bool is_arguments_adaptor() const { return type() == ARGUMENTS_ADAPTOR; }
|
|
bool is_builtin() const { return type() == BUILTIN; }
|
|
bool is_internal() const { return type() == INTERNAL; }
|
|
bool is_stub_failure_trampoline() const {
|
|
return type() == STUB_FAILURE_TRAMPOLINE;
|
|
}
|
|
bool is_construct() const { return type() == CONSTRUCT; }
|
|
bool is_builtin_exit() const { return type() == BUILTIN_EXIT; }
|
|
virtual bool is_standard() const { return false; }
|
|
|
|
bool is_java_script() const {
|
|
Type type = this->type();
|
|
return (type == JAVA_SCRIPT) || (type == OPTIMIZED) ||
|
|
(type == INTERPRETED) || (type == BUILTIN);
|
|
}
|
|
|
|
// Accessors.
|
|
Address sp() const { return state_.sp; }
|
|
Address fp() const { return state_.fp; }
|
|
Address caller_sp() const { return GetCallerStackPointer(); }
|
|
|
|
// If this frame is optimized and was dynamically aligned return its old
|
|
// unaligned frame pointer. When the frame is deoptimized its FP will shift
|
|
// up one word and become unaligned.
|
|
Address UnpaddedFP() const;
|
|
|
|
Address pc() const { return *pc_address(); }
|
|
void set_pc(Address pc) { *pc_address() = pc; }
|
|
|
|
Address constant_pool() const { return *constant_pool_address(); }
|
|
void set_constant_pool(Address constant_pool) {
|
|
*constant_pool_address() = constant_pool;
|
|
}
|
|
|
|
virtual void SetCallerFp(Address caller_fp) = 0;
|
|
|
|
// Manually changes value of fp in this object.
|
|
void UpdateFp(Address fp) { state_.fp = fp; }
|
|
|
|
Address* pc_address() const { return state_.pc_address; }
|
|
|
|
Address* constant_pool_address() const {
|
|
return state_.constant_pool_address;
|
|
}
|
|
|
|
// Get the id of this stack frame.
|
|
Id id() const { return static_cast<Id>(OffsetFrom(caller_sp())); }
|
|
|
|
// Get the top handler from the current stack iterator.
|
|
inline StackHandler* top_handler() const;
|
|
|
|
// Get the type of this frame.
|
|
virtual Type type() const = 0;
|
|
|
|
// Get the code associated with this frame.
|
|
// This method could be called during marking phase of GC.
|
|
virtual Code* unchecked_code() const = 0;
|
|
|
|
// Get the code associated with this frame.
|
|
inline Code* LookupCode() const;
|
|
|
|
// Get the code object that contains the given pc.
|
|
static inline Code* GetContainingCode(Isolate* isolate, Address pc);
|
|
|
|
// Get the code object containing the given pc and fill in the
|
|
// safepoint entry and the number of stack slots. The pc must be at
|
|
// a safepoint.
|
|
static Code* GetSafepointData(Isolate* isolate,
|
|
Address pc,
|
|
SafepointEntry* safepoint_entry,
|
|
unsigned* stack_slots);
|
|
|
|
virtual void Iterate(ObjectVisitor* v) const = 0;
|
|
static void IteratePc(ObjectVisitor* v, Address* pc_address,
|
|
Address* constant_pool_address, Code* holder);
|
|
|
|
// Sets a callback function for return-address rewriting profilers
|
|
// to resolve the location of a return address to the location of the
|
|
// profiler's stashed return address.
|
|
static void SetReturnAddressLocationResolver(
|
|
ReturnAddressLocationResolver resolver);
|
|
|
|
// Resolves pc_address through the resolution address function if one is set.
|
|
static inline Address* ResolveReturnAddressLocation(Address* pc_address);
|
|
|
|
// Printing support.
|
|
enum PrintMode { OVERVIEW, DETAILS };
|
|
virtual void Print(StringStream* accumulator,
|
|
PrintMode mode,
|
|
int index) const { }
|
|
|
|
Isolate* isolate() const { return isolate_; }
|
|
|
|
protected:
|
|
inline explicit StackFrame(StackFrameIteratorBase* iterator);
|
|
virtual ~StackFrame() { }
|
|
|
|
// Compute the stack pointer for the calling frame.
|
|
virtual Address GetCallerStackPointer() const = 0;
|
|
|
|
// Printing support.
|
|
static void PrintIndex(StringStream* accumulator,
|
|
PrintMode mode,
|
|
int index);
|
|
|
|
// Compute the stack frame type for the given state.
|
|
static Type ComputeType(const StackFrameIteratorBase* iterator, State* state);
|
|
|
|
#ifdef DEBUG
|
|
bool can_access_heap_objects() const;
|
|
#endif
|
|
|
|
private:
|
|
const StackFrameIteratorBase* iterator_;
|
|
Isolate* isolate_;
|
|
State state_;
|
|
|
|
static ReturnAddressLocationResolver return_address_location_resolver_;
|
|
|
|
// Fill in the state of the calling frame.
|
|
virtual void ComputeCallerState(State* state) const = 0;
|
|
|
|
// Get the type and the state of the calling frame.
|
|
virtual Type GetCallerState(State* state) const;
|
|
|
|
static const intptr_t kIsolateTag = 1;
|
|
|
|
friend class StackFrameIterator;
|
|
friend class StackFrameIteratorBase;
|
|
friend class StackHandlerIterator;
|
|
friend class SafeStackFrameIterator;
|
|
|
|
private:
|
|
void operator=(const StackFrame& original);
|
|
};
|
|
|
|
|
|
// Entry frames are used to enter JavaScript execution from C.
|
|
class EntryFrame: public StackFrame {
|
|
public:
|
|
Type type() const override { return ENTRY; }
|
|
|
|
Code* unchecked_code() const override;
|
|
|
|
// Garbage collection support.
|
|
void Iterate(ObjectVisitor* v) const override;
|
|
|
|
static EntryFrame* cast(StackFrame* frame) {
|
|
DCHECK(frame->is_entry());
|
|
return static_cast<EntryFrame*>(frame);
|
|
}
|
|
void SetCallerFp(Address caller_fp) override;
|
|
|
|
protected:
|
|
inline explicit EntryFrame(StackFrameIteratorBase* iterator);
|
|
|
|
// The caller stack pointer for entry frames is always zero. The
|
|
// real information about the caller frame is available through the
|
|
// link to the top exit frame.
|
|
Address GetCallerStackPointer() const override { return 0; }
|
|
|
|
private:
|
|
void ComputeCallerState(State* state) const override;
|
|
Type GetCallerState(State* state) const override;
|
|
|
|
friend class StackFrameIteratorBase;
|
|
};
|
|
|
|
|
|
class EntryConstructFrame: public EntryFrame {
|
|
public:
|
|
Type type() const override { return ENTRY_CONSTRUCT; }
|
|
|
|
Code* unchecked_code() const override;
|
|
|
|
static EntryConstructFrame* cast(StackFrame* frame) {
|
|
DCHECK(frame->is_entry_construct());
|
|
return static_cast<EntryConstructFrame*>(frame);
|
|
}
|
|
|
|
protected:
|
|
inline explicit EntryConstructFrame(StackFrameIteratorBase* iterator);
|
|
|
|
private:
|
|
friend class StackFrameIteratorBase;
|
|
};
|
|
|
|
|
|
// Exit frames are used to exit JavaScript execution and go to C.
|
|
class ExitFrame: public StackFrame {
|
|
public:
|
|
Type type() const override { return EXIT; }
|
|
|
|
Code* unchecked_code() const override;
|
|
|
|
Object*& code_slot() const;
|
|
|
|
// Garbage collection support.
|
|
void Iterate(ObjectVisitor* v) const override;
|
|
|
|
void SetCallerFp(Address caller_fp) override;
|
|
|
|
static ExitFrame* cast(StackFrame* frame) {
|
|
DCHECK(frame->is_exit());
|
|
return static_cast<ExitFrame*>(frame);
|
|
}
|
|
|
|
// Compute the state and type of an exit frame given a frame
|
|
// pointer. Used when constructing the first stack frame seen by an
|
|
// iterator and the frames following entry frames.
|
|
static Type GetStateForFramePointer(Address fp, State* state);
|
|
static Address ComputeStackPointer(Address fp);
|
|
static StackFrame::Type ComputeFrameType(Address fp);
|
|
static void FillState(Address fp, Address sp, State* state);
|
|
|
|
protected:
|
|
inline explicit ExitFrame(StackFrameIteratorBase* iterator);
|
|
|
|
Address GetCallerStackPointer() const override;
|
|
|
|
private:
|
|
void ComputeCallerState(State* state) const override;
|
|
|
|
friend class StackFrameIteratorBase;
|
|
};
|
|
|
|
// Builtin exit frames are a special case of exit frames, which are used
|
|
// whenever C++ builtins (e.g., Math.acos) are called. Their main purpose is
|
|
// to allow such builtins to appear in stack traces.
|
|
class BuiltinExitFrame : public ExitFrame {
|
|
public:
|
|
Type type() const override { return BUILTIN_EXIT; }
|
|
|
|
static BuiltinExitFrame* cast(StackFrame* frame) {
|
|
DCHECK(frame->is_builtin_exit());
|
|
return static_cast<BuiltinExitFrame*>(frame);
|
|
}
|
|
|
|
virtual JSFunction* function() const;
|
|
|
|
protected:
|
|
inline explicit BuiltinExitFrame(StackFrameIteratorBase* iterator);
|
|
|
|
private:
|
|
inline Object* function_slot_object() const;
|
|
|
|
friend class StackFrameIteratorBase;
|
|
};
|
|
|
|
class JavaScriptFrame;
|
|
|
|
class FrameSummary BASE_EMBEDDED {
|
|
public:
|
|
// Mode for JavaScriptFrame::Summarize. Exact summary is required to produce
|
|
// an exact stack trace. It will trigger an assertion failure if that is not
|
|
// possible, e.g., because of missing deoptimization information. The
|
|
// approximate mode should produce a summary even without deoptimization
|
|
// information, but it might miss frames.
|
|
enum Mode { kExactSummary, kApproximateSummary };
|
|
|
|
FrameSummary(Object* receiver, JSFunction* function,
|
|
AbstractCode* abstract_code, int code_offset,
|
|
bool is_constructor, Mode mode = kExactSummary);
|
|
|
|
static FrameSummary GetFirst(JavaScriptFrame* frame);
|
|
|
|
Handle<Object> receiver() { return receiver_; }
|
|
Handle<JSFunction> function() { return function_; }
|
|
Handle<AbstractCode> abstract_code() { return abstract_code_; }
|
|
int code_offset() { return code_offset_; }
|
|
bool is_constructor() { return is_constructor_; }
|
|
|
|
void Print();
|
|
|
|
private:
|
|
Handle<Object> receiver_;
|
|
Handle<JSFunction> function_;
|
|
Handle<AbstractCode> abstract_code_;
|
|
int code_offset_;
|
|
bool is_constructor_;
|
|
};
|
|
|
|
class StandardFrame : public StackFrame {
|
|
public:
|
|
// Testers.
|
|
bool is_standard() const override { return true; }
|
|
|
|
// Accessors.
|
|
virtual Object* receiver() const;
|
|
virtual Script* script() const;
|
|
virtual Object* context() const;
|
|
|
|
// Access the expressions in the stack frame including locals.
|
|
inline Object* GetExpression(int index) const;
|
|
inline void SetExpression(int index, Object* value);
|
|
int ComputeExpressionsCount() const;
|
|
|
|
// Access the parameters.
|
|
virtual Object* GetParameter(int index) const;
|
|
virtual int ComputeParametersCount() const;
|
|
|
|
void SetCallerFp(Address caller_fp) override;
|
|
|
|
// Check if this frame is a constructor frame invoked through 'new'.
|
|
virtual bool IsConstructor() const;
|
|
|
|
static StandardFrame* cast(StackFrame* frame) {
|
|
DCHECK(frame->is_standard());
|
|
return static_cast<StandardFrame*>(frame);
|
|
}
|
|
|
|
protected:
|
|
inline explicit StandardFrame(StackFrameIteratorBase* iterator);
|
|
|
|
void ComputeCallerState(State* state) const override;
|
|
|
|
// Accessors.
|
|
inline Address caller_fp() const;
|
|
inline Address caller_pc() const;
|
|
|
|
// Computes the address of the PC field in the standard frame given
|
|
// by the provided frame pointer.
|
|
static inline Address ComputePCAddress(Address fp);
|
|
|
|
// Computes the address of the constant pool field in the standard
|
|
// frame given by the provided frame pointer.
|
|
static inline Address ComputeConstantPoolAddress(Address fp);
|
|
|
|
// Iterate over expression stack including stack handlers, locals,
|
|
// and parts of the fixed part including context and code fields.
|
|
void IterateExpressions(ObjectVisitor* v) const;
|
|
|
|
// Returns the address of the n'th expression stack element.
|
|
virtual Address GetExpressionAddress(int n) const;
|
|
|
|
// Determines if the standard frame for the given frame pointer is
|
|
// an arguments adaptor frame.
|
|
static inline bool IsArgumentsAdaptorFrame(Address fp);
|
|
|
|
// Determines if the standard frame for the given frame pointer is a
|
|
// construct frame.
|
|
static inline bool IsConstructFrame(Address fp);
|
|
|
|
// Used by OptimizedFrames and StubFrames.
|
|
void IterateCompiledFrame(ObjectVisitor* v) const;
|
|
|
|
private:
|
|
friend class StackFrame;
|
|
friend class SafeStackFrameIterator;
|
|
};
|
|
|
|
class JavaScriptFrame : public StandardFrame {
|
|
public:
|
|
Type type() const override { return JAVA_SCRIPT; }
|
|
|
|
// Build a list with summaries for this frame including all inlined frames.
|
|
virtual void Summarize(
|
|
List<FrameSummary>* frames,
|
|
FrameSummary::Mode mode = FrameSummary::kExactSummary) const;
|
|
|
|
// Accessors.
|
|
virtual JSFunction* function() const;
|
|
Object* receiver() const override;
|
|
Object* context() const override;
|
|
Script* script() const override;
|
|
|
|
inline void set_receiver(Object* value);
|
|
|
|
// Access the parameters.
|
|
inline Address GetParameterSlot(int index) const;
|
|
Object* GetParameter(int index) const override;
|
|
int ComputeParametersCount() const override;
|
|
|
|
// Access the operand stack.
|
|
inline Address GetOperandSlot(int index) const;
|
|
inline Object* GetOperand(int index) const;
|
|
inline int ComputeOperandsCount() const;
|
|
|
|
// Generator support to preserve operand stack.
|
|
void SaveOperandStack(FixedArray* store) const;
|
|
|
|
// Debugger access.
|
|
void SetParameterValue(int index, Object* value) const;
|
|
|
|
// Check if this frame is a constructor frame invoked through 'new'.
|
|
bool IsConstructor() const override;
|
|
|
|
// Determines whether this frame includes inlined activations. To get details
|
|
// about the inlined frames use {GetFunctions} and {Summarize}.
|
|
bool HasInlinedFrames() const;
|
|
|
|
// Check if this frame has "adapted" arguments in the sense that the
|
|
// actual passed arguments are available in an arguments adaptor
|
|
// frame below it on the stack.
|
|
inline bool has_adapted_arguments() const;
|
|
int GetArgumentsLength() const;
|
|
|
|
// Garbage collection support.
|
|
void Iterate(ObjectVisitor* v) const override;
|
|
|
|
// Printing support.
|
|
void Print(StringStream* accumulator, PrintMode mode,
|
|
int index) const override;
|
|
|
|
// Determine the code for the frame.
|
|
Code* unchecked_code() const override;
|
|
|
|
// Return a list with JSFunctions of this frame.
|
|
virtual void GetFunctions(List<JSFunction*>* functions) const;
|
|
|
|
// Lookup exception handler for current {pc}, returns -1 if none found. Also
|
|
// returns data associated with the handler site specific to the frame type:
|
|
// - JavaScriptFrame : Data is the stack depth at entry of the try-block.
|
|
// - OptimizedFrame : Data is the stack slot count of the entire frame.
|
|
// - InterpretedFrame: Data is the register index holding the context.
|
|
virtual int LookupExceptionHandlerInTable(
|
|
int* data, HandlerTable::CatchPrediction* prediction);
|
|
|
|
// Architecture-specific register description.
|
|
static Register fp_register();
|
|
static Register context_register();
|
|
static Register constant_pool_pointer_register();
|
|
|
|
static JavaScriptFrame* cast(StackFrame* frame) {
|
|
DCHECK(frame->is_java_script());
|
|
return static_cast<JavaScriptFrame*>(frame);
|
|
}
|
|
|
|
static void PrintFunctionAndOffset(JSFunction* function, Code* code,
|
|
Address pc, FILE* file,
|
|
bool print_line_number);
|
|
|
|
static void PrintTop(Isolate* isolate, FILE* file, bool print_args,
|
|
bool print_line_number);
|
|
|
|
protected:
|
|
inline explicit JavaScriptFrame(StackFrameIteratorBase* iterator);
|
|
|
|
Address GetCallerStackPointer() const override;
|
|
|
|
virtual int GetNumberOfIncomingArguments() const;
|
|
|
|
// Garbage collection support. Iterates over incoming arguments,
|
|
// receiver, and any callee-saved registers.
|
|
void IterateArguments(ObjectVisitor* v) const;
|
|
|
|
private:
|
|
inline Object* function_slot_object() const;
|
|
|
|
friend class StackFrameIteratorBase;
|
|
};
|
|
|
|
|
|
class StubFrame : public StandardFrame {
|
|
public:
|
|
Type type() const override { return STUB; }
|
|
|
|
// GC support.
|
|
void Iterate(ObjectVisitor* v) const override;
|
|
|
|
// Determine the code for the frame.
|
|
Code* unchecked_code() const override;
|
|
|
|
protected:
|
|
inline explicit StubFrame(StackFrameIteratorBase* iterator);
|
|
|
|
Address GetCallerStackPointer() const override;
|
|
|
|
virtual int GetNumberOfIncomingArguments() const;
|
|
|
|
friend class StackFrameIteratorBase;
|
|
};
|
|
|
|
|
|
class OptimizedFrame : public JavaScriptFrame {
|
|
public:
|
|
Type type() const override { return OPTIMIZED; }
|
|
|
|
// GC support.
|
|
void Iterate(ObjectVisitor* v) const override;
|
|
|
|
// Return a list with JSFunctions of this frame.
|
|
// The functions are ordered bottom-to-top (i.e. functions.last()
|
|
// is the top-most activation)
|
|
void GetFunctions(List<JSFunction*>* functions) const override;
|
|
|
|
void Summarize(
|
|
List<FrameSummary>* frames,
|
|
FrameSummary::Mode mode = FrameSummary::kExactSummary) const override;
|
|
|
|
// Lookup exception handler for current {pc}, returns -1 if none found.
|
|
int LookupExceptionHandlerInTable(
|
|
int* data, HandlerTable::CatchPrediction* prediction) override;
|
|
|
|
DeoptimizationInputData* GetDeoptimizationData(int* deopt_index) const;
|
|
|
|
static int StackSlotOffsetRelativeToFp(int slot_index);
|
|
|
|
protected:
|
|
inline explicit OptimizedFrame(StackFrameIteratorBase* iterator);
|
|
|
|
private:
|
|
friend class StackFrameIteratorBase;
|
|
|
|
Object* StackSlotAt(int index) const;
|
|
};
|
|
|
|
|
|
class InterpretedFrame : public JavaScriptFrame {
|
|
public:
|
|
Type type() const override { return INTERPRETED; }
|
|
|
|
// Lookup exception handler for current {pc}, returns -1 if none found.
|
|
int LookupExceptionHandlerInTable(
|
|
int* data, HandlerTable::CatchPrediction* prediction) override;
|
|
|
|
// Returns the current offset into the bytecode stream.
|
|
int GetBytecodeOffset() const;
|
|
|
|
// Updates the current offset into the bytecode stream, mainly used for stack
|
|
// unwinding to continue execution at a different bytecode offset.
|
|
void PatchBytecodeOffset(int new_offset);
|
|
|
|
// Returns the frame's current bytecode array.
|
|
BytecodeArray* GetBytecodeArray() const;
|
|
|
|
// Updates the frame's BytecodeArray with |bytecode_array|. Used by the
|
|
// debugger to swap execution onto a BytecodeArray patched with breakpoints.
|
|
void PatchBytecodeArray(BytecodeArray* bytecode_array);
|
|
|
|
// Access to the interpreter register file for this frame.
|
|
Object* ReadInterpreterRegister(int register_index) const;
|
|
void WriteInterpreterRegister(int register_index, Object* value);
|
|
|
|
// Build a list with summaries for this frame including all inlined frames.
|
|
void Summarize(
|
|
List<FrameSummary>* frames,
|
|
FrameSummary::Mode mode = FrameSummary::kExactSummary) const override;
|
|
|
|
protected:
|
|
inline explicit InterpretedFrame(StackFrameIteratorBase* iterator);
|
|
|
|
Address GetExpressionAddress(int n) const override;
|
|
|
|
private:
|
|
friend class StackFrameIteratorBase;
|
|
};
|
|
|
|
|
|
// Arguments adaptor frames are automatically inserted below
|
|
// JavaScript frames when the actual number of parameters does not
|
|
// match the formal number of parameters.
|
|
class ArgumentsAdaptorFrame: public JavaScriptFrame {
|
|
public:
|
|
Type type() const override { return ARGUMENTS_ADAPTOR; }
|
|
|
|
// Determine the code for the frame.
|
|
Code* unchecked_code() const override;
|
|
|
|
static ArgumentsAdaptorFrame* cast(StackFrame* frame) {
|
|
DCHECK(frame->is_arguments_adaptor());
|
|
return static_cast<ArgumentsAdaptorFrame*>(frame);
|
|
}
|
|
|
|
// Printing support.
|
|
void Print(StringStream* accumulator, PrintMode mode,
|
|
int index) const override;
|
|
|
|
static int GetLength(Address fp);
|
|
|
|
protected:
|
|
inline explicit ArgumentsAdaptorFrame(StackFrameIteratorBase* iterator);
|
|
|
|
int GetNumberOfIncomingArguments() const override;
|
|
|
|
private:
|
|
friend class StackFrameIteratorBase;
|
|
};
|
|
|
|
// Builtin frames are built for builtins with JavaScript linkage, such as
|
|
// various standard library functions (i.e. Math.asin, Math.floor, etc.).
|
|
class BuiltinFrame final : public JavaScriptFrame {
|
|
public:
|
|
Type type() const final { return BUILTIN; }
|
|
|
|
static BuiltinFrame* cast(StackFrame* frame) {
|
|
DCHECK(frame->is_builtin());
|
|
return static_cast<BuiltinFrame*>(frame);
|
|
}
|
|
|
|
// Printing support.
|
|
void Print(StringStream* accumulator, PrintMode mode, int index) const final;
|
|
|
|
protected:
|
|
inline explicit BuiltinFrame(StackFrameIteratorBase* iterator);
|
|
|
|
int GetNumberOfIncomingArguments() const final;
|
|
|
|
private:
|
|
friend class StackFrameIteratorBase;
|
|
};
|
|
|
|
class WasmFrame : public StandardFrame {
|
|
public:
|
|
Type type() const override { return WASM; }
|
|
|
|
// GC support.
|
|
void Iterate(ObjectVisitor* v) const override;
|
|
|
|
// Printing support.
|
|
void Print(StringStream* accumulator, PrintMode mode,
|
|
int index) const override;
|
|
|
|
// Determine the code for the frame.
|
|
Code* unchecked_code() const override;
|
|
|
|
// Accessors.
|
|
Object* wasm_obj() const;
|
|
uint32_t function_index() const;
|
|
Script* script() const override;
|
|
|
|
static WasmFrame* cast(StackFrame* frame) {
|
|
DCHECK(frame->is_wasm());
|
|
return static_cast<WasmFrame*>(frame);
|
|
}
|
|
|
|
protected:
|
|
inline explicit WasmFrame(StackFrameIteratorBase* iterator);
|
|
|
|
Address GetCallerStackPointer() const override;
|
|
|
|
private:
|
|
friend class StackFrameIteratorBase;
|
|
};
|
|
|
|
class WasmToJsFrame : public StubFrame {
|
|
public:
|
|
Type type() const override { return WASM_TO_JS; }
|
|
|
|
protected:
|
|
inline explicit WasmToJsFrame(StackFrameIteratorBase* iterator);
|
|
|
|
private:
|
|
friend class StackFrameIteratorBase;
|
|
};
|
|
|
|
class JsToWasmFrame : public StubFrame {
|
|
public:
|
|
Type type() const override { return JS_TO_WASM; }
|
|
|
|
protected:
|
|
inline explicit JsToWasmFrame(StackFrameIteratorBase* iterator);
|
|
|
|
private:
|
|
friend class StackFrameIteratorBase;
|
|
};
|
|
|
|
class InternalFrame: public StandardFrame {
|
|
public:
|
|
Type type() const override { return INTERNAL; }
|
|
|
|
// Garbage collection support.
|
|
void Iterate(ObjectVisitor* v) const override;
|
|
|
|
// Determine the code for the frame.
|
|
Code* unchecked_code() const override;
|
|
|
|
static InternalFrame* cast(StackFrame* frame) {
|
|
DCHECK(frame->is_internal());
|
|
return static_cast<InternalFrame*>(frame);
|
|
}
|
|
|
|
protected:
|
|
inline explicit InternalFrame(StackFrameIteratorBase* iterator);
|
|
|
|
Address GetCallerStackPointer() const override;
|
|
|
|
private:
|
|
friend class StackFrameIteratorBase;
|
|
};
|
|
|
|
|
|
class StubFailureTrampolineFrame: public StandardFrame {
|
|
public:
|
|
Type type() const override { return STUB_FAILURE_TRAMPOLINE; }
|
|
|
|
// Get the code associated with this frame.
|
|
// This method could be called during marking phase of GC.
|
|
Code* unchecked_code() const override;
|
|
|
|
void Iterate(ObjectVisitor* v) const override;
|
|
|
|
// Architecture-specific register description.
|
|
static Register fp_register();
|
|
static Register context_register();
|
|
static Register constant_pool_pointer_register();
|
|
|
|
protected:
|
|
inline explicit StubFailureTrampolineFrame(
|
|
StackFrameIteratorBase* iterator);
|
|
|
|
Address GetCallerStackPointer() const override;
|
|
|
|
private:
|
|
friend class StackFrameIteratorBase;
|
|
};
|
|
|
|
|
|
// Construct frames are special trampoline frames introduced to handle
|
|
// function invocations through 'new'.
|
|
class ConstructFrame: public InternalFrame {
|
|
public:
|
|
Type type() const override { return CONSTRUCT; }
|
|
|
|
static ConstructFrame* cast(StackFrame* frame) {
|
|
DCHECK(frame->is_construct());
|
|
return static_cast<ConstructFrame*>(frame);
|
|
}
|
|
|
|
protected:
|
|
inline explicit ConstructFrame(StackFrameIteratorBase* iterator);
|
|
|
|
private:
|
|
friend class StackFrameIteratorBase;
|
|
};
|
|
|
|
|
|
class StackFrameIteratorBase BASE_EMBEDDED {
|
|
public:
|
|
Isolate* isolate() const { return isolate_; }
|
|
|
|
bool done() const { return frame_ == NULL; }
|
|
|
|
protected:
|
|
// An iterator that iterates over a given thread's stack.
|
|
StackFrameIteratorBase(Isolate* isolate, bool can_access_heap_objects);
|
|
|
|
Isolate* isolate_;
|
|
#define DECLARE_SINGLETON(ignore, type) type type##_;
|
|
STACK_FRAME_TYPE_LIST(DECLARE_SINGLETON)
|
|
#undef DECLARE_SINGLETON
|
|
StackFrame* frame_;
|
|
StackHandler* handler_;
|
|
const bool can_access_heap_objects_;
|
|
|
|
StackHandler* handler() const {
|
|
DCHECK(!done());
|
|
return handler_;
|
|
}
|
|
|
|
// Get the type-specific frame singleton in a given state.
|
|
StackFrame* SingletonFor(StackFrame::Type type, StackFrame::State* state);
|
|
// A helper function, can return a NULL pointer.
|
|
StackFrame* SingletonFor(StackFrame::Type type);
|
|
|
|
private:
|
|
friend class StackFrame;
|
|
DISALLOW_COPY_AND_ASSIGN(StackFrameIteratorBase);
|
|
};
|
|
|
|
|
|
class StackFrameIterator: public StackFrameIteratorBase {
|
|
public:
|
|
// An iterator that iterates over the isolate's current thread's stack,
|
|
explicit StackFrameIterator(Isolate* isolate);
|
|
// An iterator that iterates over a given thread's stack.
|
|
StackFrameIterator(Isolate* isolate, ThreadLocalTop* t);
|
|
|
|
StackFrame* frame() const {
|
|
DCHECK(!done());
|
|
return frame_;
|
|
}
|
|
void Advance();
|
|
|
|
private:
|
|
// Go back to the first frame.
|
|
void Reset(ThreadLocalTop* top);
|
|
|
|
DISALLOW_COPY_AND_ASSIGN(StackFrameIterator);
|
|
};
|
|
|
|
// Iterator that supports iterating through all JavaScript frames.
|
|
class JavaScriptFrameIterator BASE_EMBEDDED {
|
|
public:
|
|
inline explicit JavaScriptFrameIterator(Isolate* isolate);
|
|
inline JavaScriptFrameIterator(Isolate* isolate, ThreadLocalTop* top);
|
|
// Skip frames until the frame with the given id is reached.
|
|
JavaScriptFrameIterator(Isolate* isolate, StackFrame::Id id);
|
|
|
|
inline JavaScriptFrame* frame() const;
|
|
|
|
bool done() const { return iterator_.done(); }
|
|
void Advance();
|
|
|
|
// Advance to the frame holding the arguments for the current
|
|
// frame. This only affects the current frame if it has adapted
|
|
// arguments.
|
|
void AdvanceToArgumentsFrame();
|
|
|
|
private:
|
|
StackFrameIterator iterator_;
|
|
};
|
|
|
|
// NOTE: The stack trace frame iterator is an iterator that only traverse proper
|
|
// JavaScript frames that have proper JavaScript functions and WASM frames.
|
|
// This excludes the problematic functions in runtime.js.
|
|
class StackTraceFrameIterator BASE_EMBEDDED {
|
|
public:
|
|
explicit StackTraceFrameIterator(Isolate* isolate);
|
|
StackTraceFrameIterator(Isolate* isolate, StackFrame::Id id);
|
|
bool done() const { return iterator_.done(); }
|
|
void Advance();
|
|
|
|
inline StandardFrame* frame() const;
|
|
|
|
inline bool is_javascript() const;
|
|
inline bool is_wasm() const;
|
|
inline JavaScriptFrame* javascript_frame() const;
|
|
inline WasmFrame* wasm_frame() const;
|
|
|
|
// Advance to the frame holding the arguments for the current
|
|
// frame. This only affects the current frame if it is a javascript frame and
|
|
// has adapted arguments.
|
|
void AdvanceToArgumentsFrame();
|
|
|
|
private:
|
|
StackFrameIterator iterator_;
|
|
bool IsValidFrame(StackFrame* frame) const;
|
|
};
|
|
|
|
|
|
class SafeStackFrameIterator: public StackFrameIteratorBase {
|
|
public:
|
|
SafeStackFrameIterator(Isolate* isolate,
|
|
Address fp, Address sp,
|
|
Address js_entry_sp);
|
|
|
|
inline StackFrame* frame() const;
|
|
void Advance();
|
|
|
|
StackFrame::Type top_frame_type() const { return top_frame_type_; }
|
|
|
|
private:
|
|
void AdvanceOneFrame();
|
|
|
|
bool IsValidStackAddress(Address addr) const {
|
|
return low_bound_ <= addr && addr <= high_bound_;
|
|
}
|
|
bool IsValidFrame(StackFrame* frame) const;
|
|
bool IsValidCaller(StackFrame* frame);
|
|
bool IsValidExitFrame(Address fp) const;
|
|
bool IsValidTop(ThreadLocalTop* top) const;
|
|
|
|
const Address low_bound_;
|
|
const Address high_bound_;
|
|
StackFrame::Type top_frame_type_;
|
|
ExternalCallbackScope* external_callback_scope_;
|
|
};
|
|
|
|
|
|
class StackFrameLocator BASE_EMBEDDED {
|
|
public:
|
|
explicit StackFrameLocator(Isolate* isolate) : iterator_(isolate) {}
|
|
|
|
// Find the nth JavaScript frame on the stack. The caller must
|
|
// guarantee that such a frame exists.
|
|
JavaScriptFrame* FindJavaScriptFrame(int n);
|
|
|
|
private:
|
|
StackFrameIterator iterator_;
|
|
};
|
|
|
|
|
|
// Reads all frames on the current stack and copies them into the current
|
|
// zone memory.
|
|
Vector<StackFrame*> CreateStackMap(Isolate* isolate, Zone* zone);
|
|
|
|
} // namespace internal
|
|
} // namespace v8
|
|
|
|
#endif // V8_FRAMES_H_
|