2012-02-09 09:43:37 +00:00
|
|
|
// Copyright 2012 the V8 project authors. All rights reserved.
|
2014-04-29 06:42:26 +00:00
|
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
|
|
// found in the LICENSE file.
|
2008-07-03 15:10:15 +00:00
|
|
|
|
|
|
|
#ifndef V8_FRAMES_INL_H_
|
|
|
|
#define V8_FRAMES_INL_H_
|
|
|
|
|
2014-06-03 08:12:43 +00:00
|
|
|
#include "src/frames.h"
|
|
|
|
#include "src/isolate.h"
|
2015-09-01 10:30:40 +00:00
|
|
|
#include "src/objects-inl.h"
|
2014-06-03 08:12:43 +00:00
|
|
|
#include "src/v8memory.h"
|
2011-03-18 20:35:07 +00:00
|
|
|
|
2009-05-05 12:06:20 +00:00
|
|
|
#if V8_TARGET_ARCH_IA32
|
2014-06-20 08:40:11 +00:00
|
|
|
#include "src/ia32/frames-ia32.h" // NOLINT
|
2009-05-05 12:06:20 +00:00
|
|
|
#elif V8_TARGET_ARCH_X64
|
2014-06-20 08:40:11 +00:00
|
|
|
#include "src/x64/frames-x64.h" // NOLINT
|
2014-03-21 09:28:26 +00:00
|
|
|
#elif V8_TARGET_ARCH_ARM64
|
2014-06-20 08:40:11 +00:00
|
|
|
#include "src/arm64/frames-arm64.h" // NOLINT
|
2009-05-05 12:06:20 +00:00
|
|
|
#elif V8_TARGET_ARCH_ARM
|
2014-06-20 08:40:11 +00:00
|
|
|
#include "src/arm/frames-arm.h" // NOLINT
|
2015-01-16 07:42:00 +00:00
|
|
|
#elif V8_TARGET_ARCH_PPC
|
|
|
|
#include "src/ppc/frames-ppc.h" // NOLINT
|
2010-02-04 20:36:58 +00:00
|
|
|
#elif V8_TARGET_ARCH_MIPS
|
2014-06-20 08:40:11 +00:00
|
|
|
#include "src/mips/frames-mips.h" // NOLINT
|
2014-07-09 11:08:26 +00:00
|
|
|
#elif V8_TARGET_ARCH_MIPS64
|
|
|
|
#include "src/mips64/frames-mips64.h" // NOLINT
|
2016-03-10 14:02:50 +00:00
|
|
|
#elif V8_TARGET_ARCH_S390
|
|
|
|
#include "src/s390/frames-s390.h" // NOLINT
|
2014-05-23 16:37:27 +00:00
|
|
|
#elif V8_TARGET_ARCH_X87
|
2014-06-20 08:40:11 +00:00
|
|
|
#include "src/x87/frames-x87.h" // NOLINT
|
2009-06-29 17:07:30 +00:00
|
|
|
#else
|
|
|
|
#error Unsupported target architecture.
|
2008-07-03 15:10:15 +00:00
|
|
|
#endif
|
|
|
|
|
2009-05-25 10:05:56 +00:00
|
|
|
namespace v8 {
|
|
|
|
namespace internal {
|
2008-07-03 15:10:15 +00:00
|
|
|
|
|
|
|
|
|
|
|
inline Address StackHandler::address() const {
|
2009-06-10 09:00:07 +00:00
|
|
|
return reinterpret_cast<Address>(const_cast<StackHandler*>(this));
|
2008-07-03 15:10:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
inline StackHandler* StackHandler::next() const {
|
|
|
|
const int offset = StackHandlerConstants::kNextOffset;
|
|
|
|
return FromAddress(Memory::Address_at(address() + offset));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
inline StackHandler* StackHandler::FromAddress(Address address) {
|
|
|
|
return reinterpret_cast<StackHandler*>(address);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-06-27 09:34:31 +00:00
|
|
|
inline StackFrame::StackFrame(StackFrameIteratorBase* iterator)
|
Simplify isolates access during stack iteration (WAS: Move SafeStackFrameIterator::active_count_...)
While trying to fix Mac and Windows versions for this change:
http://codereview.chromium.org/6771047/, I figured out, that we
already store an isolate in StackFrameIterator, so we can use it in
frame objects, instead of requiring it from caller.
I've changed iterators usage to the following scheme: whenever a
caller maintains an isolate pointer, it just passes it to stack
iterator, and no more worries about passing it to frame content
accessors. If a caller uses current isolate, it can omit passing it
to iterator, in this case, an iterator will use the current isolate,
too.
There was a special case with LiveEdit, which creates
detached copies of frame objects.
R=vitalyr@chromium.org
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/6794019
git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@7499 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
2011-04-05 09:01:47 +00:00
|
|
|
: iterator_(iterator), isolate_(iterator_->isolate()) {
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-07-03 15:10:15 +00:00
|
|
|
inline StackHandler* StackFrame::top_handler() const {
|
|
|
|
return iterator_->handler();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-10-03 11:13:20 +00:00
|
|
|
inline Code* StackFrame::LookupCode() const {
|
2016-08-30 08:27:52 +00:00
|
|
|
// TODO(jgruber): This should really check that pc is within the returned
|
|
|
|
// code's instruction range [instruction_start(), instruction_end()[.
|
2011-10-03 11:13:20 +00:00
|
|
|
return GetContainingCode(isolate(), pc());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-03-18 20:35:07 +00:00
|
|
|
inline Code* StackFrame::GetContainingCode(Isolate* isolate, Address pc) {
|
2011-09-20 10:08:39 +00:00
|
|
|
return isolate->inner_pointer_to_code_cache()->GetCacheEntry(pc)->code;
|
2011-03-18 20:35:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-06-28 13:40:41 +00:00
|
|
|
inline Address* StackFrame::ResolveReturnAddressLocation(Address* pc_address) {
|
|
|
|
if (return_address_location_resolver_ == NULL) {
|
|
|
|
return pc_address;
|
|
|
|
} else {
|
|
|
|
return reinterpret_cast<Address*>(
|
|
|
|
return_address_location_resolver_(
|
|
|
|
reinterpret_cast<uintptr_t>(pc_address)));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-06-27 09:34:31 +00:00
|
|
|
inline EntryFrame::EntryFrame(StackFrameIteratorBase* iterator)
|
2011-10-03 11:13:20 +00:00
|
|
|
: StackFrame(iterator) {
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-06-27 09:34:31 +00:00
|
|
|
inline EntryConstructFrame::EntryConstructFrame(
|
|
|
|
StackFrameIteratorBase* iterator)
|
2011-10-03 11:13:20 +00:00
|
|
|
: EntryFrame(iterator) {
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-06-27 09:34:31 +00:00
|
|
|
inline ExitFrame::ExitFrame(StackFrameIteratorBase* iterator)
|
2011-10-03 11:13:20 +00:00
|
|
|
: StackFrame(iterator) {
|
|
|
|
}
|
|
|
|
|
2016-06-30 06:55:22 +00:00
|
|
|
inline BuiltinExitFrame::BuiltinExitFrame(StackFrameIteratorBase* iterator)
|
|
|
|
: ExitFrame(iterator) {}
|
|
|
|
|
2016-07-04 12:44:18 +00:00
|
|
|
inline Object* BuiltinExitFrame::receiver_slot_object() const {
|
|
|
|
// The receiver is the first argument on the frame.
|
|
|
|
// fp[1]: return address.
|
|
|
|
// fp[2]: the last argument (new target).
|
|
|
|
// fp[4]: argc.
|
|
|
|
// fp[2 + argc - 1]: receiver.
|
2016-07-11 13:27:48 +00:00
|
|
|
Object* argc_slot = argc_slot_object();
|
2016-07-04 12:44:18 +00:00
|
|
|
DCHECK(argc_slot->IsSmi());
|
|
|
|
int argc = Smi::cast(argc_slot)->value();
|
|
|
|
|
|
|
|
const int receiverOffset =
|
|
|
|
BuiltinExitFrameConstants::kNewTargetOffset + (argc - 1) * kPointerSize;
|
|
|
|
return Memory::Object_at(fp() + receiverOffset);
|
|
|
|
}
|
|
|
|
|
2016-07-11 13:27:48 +00:00
|
|
|
inline Object* BuiltinExitFrame::argc_slot_object() const {
|
|
|
|
return Memory::Object_at(fp() + BuiltinExitFrameConstants::kArgcOffset);
|
|
|
|
}
|
|
|
|
|
|
|
|
inline Object* BuiltinExitFrame::target_slot_object() const {
|
|
|
|
return Memory::Object_at(fp() + BuiltinExitFrameConstants::kTargetOffset);
|
|
|
|
}
|
|
|
|
|
|
|
|
inline Object* BuiltinExitFrame::new_target_slot_object() const {
|
|
|
|
return Memory::Object_at(fp() + BuiltinExitFrameConstants::kNewTargetOffset);
|
|
|
|
}
|
|
|
|
|
2013-06-27 09:34:31 +00:00
|
|
|
inline StandardFrame::StandardFrame(StackFrameIteratorBase* iterator)
|
2011-10-03 11:13:20 +00:00
|
|
|
: StackFrame(iterator) {
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-07-03 15:10:15 +00:00
|
|
|
inline Object* StandardFrame::GetExpression(int index) const {
|
|
|
|
return Memory::Object_at(GetExpressionAddress(index));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
inline void StandardFrame::SetExpression(int index, Object* value) {
|
|
|
|
Memory::Object_at(GetExpressionAddress(index)) = value;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
inline Address StandardFrame::caller_fp() const {
|
|
|
|
return Memory::Address_at(fp() + StandardFrameConstants::kCallerFPOffset);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
inline Address StandardFrame::caller_pc() const {
|
|
|
|
return Memory::Address_at(ComputePCAddress(fp()));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
inline Address StandardFrame::ComputePCAddress(Address fp) {
|
|
|
|
return fp + StandardFrameConstants::kCallerPCOffset;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-03-14 15:11:58 +00:00
|
|
|
inline Address StandardFrame::ComputeConstantPoolAddress(Address fp) {
|
|
|
|
return fp + StandardFrameConstants::kConstantPoolOffset;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-07-03 15:10:15 +00:00
|
|
|
inline bool StandardFrame::IsArgumentsAdaptorFrame(Address fp) {
|
[runtime] Unify and simplify how frames are marked
Before this CL, various code stubs used different techniques
for marking their frames to enable stack-crawling and other
access to data in the frame. All of them were based on a abuse
of the "standard" frame representation, e.g. storing the a
context pointer immediately below the frame's fp, and a
function pointer after that. Although functional, this approach
tends to make stubs and builtins do an awkward, unnecessary
dance to appear like standard frames, even if they have
nothing to do with JavaScript execution.
This CL attempts to improve this by:
* Ensuring that there are only two fundamentally different
types of frames, a "standard" frame and a "typed" frame.
Standard frames, as before, contain both a context and
function pointer. Typed frames contain only a minimum
of a smi marker in the position immediately below the fp
where the context is in standard frames.
* Only interpreted, full codegen, and optimized Crankshaft and
TurboFan JavaScript frames use the "standard" format. All
other frames use the type frame format with an explicit
marker.
* Typed frames can contain one or more values below the
type marker. There is new magic macro machinery in
frames.h that simplifies defining the offsets of these fields
in typed frames.
* A new flag in the CallDescriptor enables specifying whether
a frame is a standard frame or a typed frame. Secondary
register location spilling is now only enabled for standard
frames.
* A zillion places in the code have been updated to deal with
the fact that most code stubs and internal frames use the
typed frame format. This includes changes in the
deoptimizer, debugger, and liveedit.
* StandardFrameConstants::kMarkerOffset is deprecated,
(CommonFrameConstants::kContextOrFrameTypeOffset
and StandardFrameConstants::kFrameOffset are now used
in its stead).
LOG=N
Review URL: https://codereview.chromium.org/1696043002
Cr-Commit-Position: refs/heads/master@{#34571}
2016-03-08 08:35:44 +00:00
|
|
|
Object* frame_type =
|
|
|
|
Memory::Object_at(fp + TypedFrameConstants::kFrameTypeOffset);
|
|
|
|
return frame_type == Smi::FromInt(StackFrame::ARGUMENTS_ADAPTOR);
|
2008-07-03 15:10:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-10-10 09:09:38 +00:00
|
|
|
inline bool StandardFrame::IsConstructFrame(Address fp) {
|
[runtime] Unify and simplify how frames are marked
Before this CL, various code stubs used different techniques
for marking their frames to enable stack-crawling and other
access to data in the frame. All of them were based on a abuse
of the "standard" frame representation, e.g. storing the a
context pointer immediately below the frame's fp, and a
function pointer after that. Although functional, this approach
tends to make stubs and builtins do an awkward, unnecessary
dance to appear like standard frames, even if they have
nothing to do with JavaScript execution.
This CL attempts to improve this by:
* Ensuring that there are only two fundamentally different
types of frames, a "standard" frame and a "typed" frame.
Standard frames, as before, contain both a context and
function pointer. Typed frames contain only a minimum
of a smi marker in the position immediately below the fp
where the context is in standard frames.
* Only interpreted, full codegen, and optimized Crankshaft and
TurboFan JavaScript frames use the "standard" format. All
other frames use the type frame format with an explicit
marker.
* Typed frames can contain one or more values below the
type marker. There is new magic macro machinery in
frames.h that simplifies defining the offsets of these fields
in typed frames.
* A new flag in the CallDescriptor enables specifying whether
a frame is a standard frame or a typed frame. Secondary
register location spilling is now only enabled for standard
frames.
* A zillion places in the code have been updated to deal with
the fact that most code stubs and internal frames use the
typed frame format. This includes changes in the
deoptimizer, debugger, and liveedit.
* StandardFrameConstants::kMarkerOffset is deprecated,
(CommonFrameConstants::kContextOrFrameTypeOffset
and StandardFrameConstants::kFrameOffset are now used
in its stead).
LOG=N
Review URL: https://codereview.chromium.org/1696043002
Cr-Commit-Position: refs/heads/master@{#34571}
2016-03-08 08:35:44 +00:00
|
|
|
Object* frame_type =
|
|
|
|
Memory::Object_at(fp + TypedFrameConstants::kFrameTypeOffset);
|
|
|
|
return frame_type == Smi::FromInt(StackFrame::CONSTRUCT);
|
2008-07-03 15:10:15 +00:00
|
|
|
}
|
|
|
|
|
2013-06-27 09:34:31 +00:00
|
|
|
inline JavaScriptFrame::JavaScriptFrame(StackFrameIteratorBase* iterator)
|
2016-02-23 19:38:50 +00:00
|
|
|
: StandardFrame(iterator) {}
|
2011-10-03 11:13:20 +00:00
|
|
|
|
2011-04-06 14:23:27 +00:00
|
|
|
Address JavaScriptFrame::GetParameterSlot(int index) const {
|
|
|
|
int param_count = ComputeParametersCount();
|
2014-08-04 11:34:54 +00:00
|
|
|
DCHECK(-1 <= index && index < param_count);
|
2011-04-06 14:23:27 +00:00
|
|
|
int parameter_offset = (param_count - index - 1) * kPointerSize;
|
|
|
|
return caller_sp() + parameter_offset;
|
|
|
|
}
|
|
|
|
|
2013-04-26 12:09:32 +00:00
|
|
|
inline Address JavaScriptFrame::GetOperandSlot(int index) const {
|
|
|
|
Address base = fp() + JavaScriptFrameConstants::kLocal0Offset;
|
2014-08-04 11:34:54 +00:00
|
|
|
DCHECK(IsAddressAligned(base, kPointerSize));
|
|
|
|
DCHECK_EQ(type(), JAVA_SCRIPT);
|
|
|
|
DCHECK_LT(index, ComputeOperandsCount());
|
|
|
|
DCHECK_LE(0, index);
|
2013-04-26 12:09:32 +00:00
|
|
|
// Operand stack grows down.
|
|
|
|
return base - index * kPointerSize;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
inline Object* JavaScriptFrame::GetOperand(int index) const {
|
|
|
|
return Memory::Object_at(GetOperandSlot(index));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
inline int JavaScriptFrame::ComputeOperandsCount() const {
|
|
|
|
Address base = fp() + JavaScriptFrameConstants::kLocal0Offset;
|
|
|
|
// Base points to low address of first operand and stack grows down, so add
|
|
|
|
// kPointerSize to get the actual stack size.
|
|
|
|
intptr_t stack_size_in_bytes = (base + kPointerSize) - sp();
|
2014-08-04 11:34:54 +00:00
|
|
|
DCHECK(IsAligned(stack_size_in_bytes, kPointerSize));
|
|
|
|
DCHECK(type() == JAVA_SCRIPT);
|
|
|
|
DCHECK(stack_size_in_bytes >= 0);
|
2013-04-26 15:10:34 +00:00
|
|
|
return static_cast<int>(stack_size_in_bytes >> kPointerSizeLog2);
|
2013-04-26 12:09:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-07-03 15:10:15 +00:00
|
|
|
inline void JavaScriptFrame::set_receiver(Object* value) {
|
2011-04-06 14:23:27 +00:00
|
|
|
Memory::Object_at(GetParameterSlot(-1)) = value;
|
2008-07-03 15:10:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
inline bool JavaScriptFrame::has_adapted_arguments() const {
|
|
|
|
return IsArgumentsAdaptorFrame(caller_fp());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-07-13 12:45:19 +00:00
|
|
|
inline Object* JavaScriptFrame::function_slot_object() const {
|
|
|
|
const int offset = JavaScriptFrameConstants::kFunctionOffset;
|
|
|
|
return Memory::Object_at(fp() + offset);
|
|
|
|
}
|
|
|
|
|
2013-06-27 09:34:31 +00:00
|
|
|
inline StubFrame::StubFrame(StackFrameIteratorBase* iterator)
|
2012-12-18 16:25:45 +00:00
|
|
|
: StandardFrame(iterator) {
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-06-27 09:34:31 +00:00
|
|
|
inline OptimizedFrame::OptimizedFrame(StackFrameIteratorBase* iterator)
|
2012-12-10 11:09:12 +00:00
|
|
|
: JavaScriptFrame(iterator) {
|
2012-12-05 11:04:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-10-16 15:06:10 +00:00
|
|
|
inline InterpretedFrame::InterpretedFrame(StackFrameIteratorBase* iterator)
|
|
|
|
: JavaScriptFrame(iterator) {}
|
|
|
|
|
|
|
|
|
2011-10-03 11:13:20 +00:00
|
|
|
inline ArgumentsAdaptorFrame::ArgumentsAdaptorFrame(
|
2013-06-27 09:34:31 +00:00
|
|
|
StackFrameIteratorBase* iterator) : JavaScriptFrame(iterator) {
|
2011-10-03 11:13:20 +00:00
|
|
|
}
|
|
|
|
|
2016-06-17 07:40:13 +00:00
|
|
|
inline BuiltinFrame::BuiltinFrame(StackFrameIteratorBase* iterator)
|
|
|
|
: JavaScriptFrame(iterator) {}
|
|
|
|
|
2016-02-23 19:38:50 +00:00
|
|
|
inline WasmFrame::WasmFrame(StackFrameIteratorBase* iterator)
|
|
|
|
: StandardFrame(iterator) {}
|
2011-10-03 11:13:20 +00:00
|
|
|
|
2016-03-04 04:45:22 +00:00
|
|
|
inline WasmToJsFrame::WasmToJsFrame(StackFrameIteratorBase* iterator)
|
2016-03-29 17:41:42 +00:00
|
|
|
: StubFrame(iterator) {}
|
2016-03-04 04:45:22 +00:00
|
|
|
|
|
|
|
inline JsToWasmFrame::JsToWasmFrame(StackFrameIteratorBase* iterator)
|
2016-03-29 17:41:42 +00:00
|
|
|
: StubFrame(iterator) {}
|
2016-03-04 04:45:22 +00:00
|
|
|
|
2013-06-27 09:34:31 +00:00
|
|
|
inline InternalFrame::InternalFrame(StackFrameIteratorBase* iterator)
|
2011-10-03 11:13:20 +00:00
|
|
|
: StandardFrame(iterator) {
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-01-29 09:12:20 +00:00
|
|
|
inline StubFailureTrampolineFrame::StubFailureTrampolineFrame(
|
2013-06-27 09:34:31 +00:00
|
|
|
StackFrameIteratorBase* iterator) : StandardFrame(iterator) {
|
2013-01-29 09:12:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-06-27 09:34:31 +00:00
|
|
|
inline ConstructFrame::ConstructFrame(StackFrameIteratorBase* iterator)
|
2011-10-03 11:13:20 +00:00
|
|
|
: InternalFrame(iterator) {
|
|
|
|
}
|
|
|
|
|
2013-06-24 08:38:37 +00:00
|
|
|
inline JavaScriptFrameIterator::JavaScriptFrameIterator(
|
Simplify isolates access during stack iteration (WAS: Move SafeStackFrameIterator::active_count_...)
While trying to fix Mac and Windows versions for this change:
http://codereview.chromium.org/6771047/, I figured out, that we
already store an isolate in StackFrameIterator, so we can use it in
frame objects, instead of requiring it from caller.
I've changed iterators usage to the following scheme: whenever a
caller maintains an isolate pointer, it just passes it to stack
iterator, and no more worries about passing it to frame content
accessors. If a caller uses current isolate, it can omit passing it
to iterator, in this case, an iterator will use the current isolate,
too.
There was a special case with LiveEdit, which creates
detached copies of frame objects.
R=vitalyr@chromium.org
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/6794019
git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@7499 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
2011-04-05 09:01:47 +00:00
|
|
|
Isolate* isolate)
|
|
|
|
: iterator_(isolate) {
|
|
|
|
if (!done()) Advance();
|
|
|
|
}
|
|
|
|
|
2013-06-24 08:38:37 +00:00
|
|
|
inline JavaScriptFrameIterator::JavaScriptFrameIterator(
|
2011-10-12 10:35:42 +00:00
|
|
|
Isolate* isolate, ThreadLocalTop* top)
|
|
|
|
: iterator_(isolate, top) {
|
|
|
|
if (!done()) Advance();
|
|
|
|
}
|
|
|
|
|
2013-06-24 08:38:37 +00:00
|
|
|
inline JavaScriptFrame* JavaScriptFrameIterator::frame() const {
|
2008-07-03 15:10:15 +00:00
|
|
|
// TODO(1233797): The frame hierarchy needs to change. It's
|
|
|
|
// problematic that we can't use the safe-cast operator to cast to
|
|
|
|
// the JavaScript frame type, because we may encounter arguments
|
|
|
|
// adaptor frames.
|
|
|
|
StackFrame* frame = iterator_.frame();
|
2014-08-04 11:34:54 +00:00
|
|
|
DCHECK(frame->is_java_script() || frame->is_arguments_adaptor());
|
2008-07-03 15:10:15 +00:00
|
|
|
return static_cast<JavaScriptFrame*>(frame);
|
|
|
|
}
|
|
|
|
|
2016-04-06 11:37:15 +00:00
|
|
|
inline StandardFrame* StackTraceFrameIterator::frame() const {
|
|
|
|
StackFrame* frame = iterator_.frame();
|
|
|
|
DCHECK(frame->is_java_script() || frame->is_arguments_adaptor() ||
|
|
|
|
frame->is_wasm());
|
|
|
|
return static_cast<StandardFrame*>(frame);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool StackTraceFrameIterator::is_javascript() const {
|
|
|
|
return frame()->is_java_script();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool StackTraceFrameIterator::is_wasm() const { return frame()->is_wasm(); }
|
|
|
|
|
|
|
|
JavaScriptFrame* StackTraceFrameIterator::javascript_frame() const {
|
|
|
|
DCHECK(is_javascript());
|
|
|
|
return static_cast<JavaScriptFrame*>(frame());
|
|
|
|
}
|
|
|
|
|
|
|
|
WasmFrame* StackTraceFrameIterator::wasm_frame() const {
|
|
|
|
DCHECK(is_wasm());
|
|
|
|
return static_cast<WasmFrame*>(frame());
|
|
|
|
}
|
2008-07-03 15:10:15 +00:00
|
|
|
|
2013-07-23 15:01:38 +00:00
|
|
|
inline StackFrame* SafeStackFrameIterator::frame() const {
|
2014-08-04 11:34:54 +00:00
|
|
|
DCHECK(!done());
|
2016-06-30 06:55:22 +00:00
|
|
|
DCHECK(frame_->is_java_script() || frame_->is_exit() ||
|
|
|
|
frame_->is_builtin_exit());
|
2013-07-23 15:01:38 +00:00
|
|
|
return frame_;
|
2009-03-03 11:56:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-09-30 13:46:56 +00:00
|
|
|
} // namespace internal
|
|
|
|
} // namespace v8
|
2008-07-03 15:10:15 +00:00
|
|
|
|
|
|
|
#endif // V8_FRAMES_INL_H_
|