blob: f7277bac84bb34d9658bfe7c1fba28b8282a2fa4 [file]
// 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_EXECUTION_FRAMES_INL_H_
#define V8_EXECUTION_FRAMES_INL_H_
#include "src/execution/frames.h"
// Include the non-inl header before the rest of the headers.
#include <optional>
#include "src/base/memory.h"
#include "src/execution/frame-constants.h"
#include "src/execution/isolate.h"
#include "src/execution/pointer-authentication.h"
#include "src/objects/objects-inl.h"
namespace v8 {
namespace internal {
class InnerPointerToCodeCache final {
public:
struct Entry {
enum Kind { kSafepoint, kMaglevSafepoint };
Address inner_pointer{kNullAddress};
// TODO(jkummerow): The std::optional needs 8 bytes to store presence of
// the value; we could just use Smi::zero() as sentinel instead.
std::optional<Tagged<GcSafeCode>> code;
Kind safepoint_kind{kSafepoint};
union {
SafepointEntry safepoint_entry = {};
MaglevSafepointEntry maglev_safepoint_entry;
};
Entry() = default;
~Entry() {
if (safepoint_kind == kSafepoint) {
safepoint_entry.~SafepointEntry();
} else {
DCHECK_EQ(safepoint_kind, kMaglevSafepoint);
maglev_safepoint_entry.~MaglevSafepointEntry();
}
}
bool safepoint_is_initialized() const {
if (safepoint_kind == kSafepoint) {
return safepoint_entry.is_initialized();
} else {
DCHECK_EQ(safepoint_kind, kMaglevSafepoint);
return maglev_safepoint_entry.is_initialized();
}
}
void ToSafepoint() {
if (safepoint_kind == kSafepoint) return;
DCHECK_EQ(safepoint_kind, kMaglevSafepoint);
maglev_safepoint_entry.~MaglevSafepointEntry();
new (&safepoint_entry) SafepointEntry();
safepoint_kind = kSafepoint;
}
void ToMaglevSafepoint() {
if (safepoint_kind == kMaglevSafepoint) return;
DCHECK_EQ(safepoint_kind, kSafepoint);
safepoint_entry.~SafepointEntry();
new (&maglev_safepoint_entry) MaglevSafepointEntry();
safepoint_kind = kMaglevSafepoint;
}
void ResetSafepoint() {
if (safepoint_kind == kSafepoint) {
safepoint_entry.Reset();
} else {
DCHECK_EQ(safepoint_kind, kMaglevSafepoint);
maglev_safepoint_entry.Reset();
}
}
};
explicit InnerPointerToCodeCache(Isolate* isolate) : isolate_(isolate) {}
InnerPointerToCodeCache(const InnerPointerToCodeCache&) = delete;
InnerPointerToCodeCache& operator=(const InnerPointerToCodeCache&) = delete;
void Flush() {
for (Entry& slot : cache_) {
if (slot.safepoint_kind == Entry::kSafepoint) {
slot.safepoint_entry.ReleaseData();
slot.safepoint_entry.Reset();
} else {
DCHECK_EQ(slot.safepoint_kind, Entry::kMaglevSafepoint);
slot.maglev_safepoint_entry.Reset();
}
slot.inner_pointer = kNullAddress;
}
}
Entry* GetCacheEntry(Address inner_pointer);
private:
Entry* cache(int index) { return &cache_[index]; }
Isolate* const isolate_;
static const int kInnerPointerToCodeCacheSize = 1024;
Entry cache_[kInnerPointerToCodeCacheSize];
};
inline Address StackHandler::address() const {
return reinterpret_cast<Address>(const_cast<StackHandler*>(this));
}
inline StackHandler* StackHandler::next() const {
const int offset = StackHandlerConstants::kNextOffset;
return FromAddress(base::Memory<Address>(address() + offset));
}
inline Address StackHandler::next_address() const {
return base::Memory<Address>(address() + StackHandlerConstants::kNextOffset);
}
inline StackHandler* StackHandler::FromAddress(Address address) {
return reinterpret_cast<StackHandler*>(address);
}
inline StackFrame::StackFrame(StackFrameIteratorBase* iterator)
: iterator_(iterator), isolate_(iterator_->isolate()) {}
inline StackHandler* StackFrame::top_handler() const {
return iterator_->handler();
}
inline Address StackFrame::pc() const { return ReadPC(pc_address()); }
inline Address StackFrame::unauthenticated_pc() const {
return unauthenticated_pc(pc_address());
}
// static
inline Address StackFrame::unauthenticated_pc(Address* pc_address) {
return PointerAuthentication::StripPAC(*pc_address);
}
inline Address StackFrame::maybe_unauthenticated_pc() const {
if (!InFastCCall() && !is_profiler_entry_frame() && !is_stack_exit_frame()) {
// Here the pc_address() is on the stack and properly authenticated.
return pc();
} else {
// For fast C calls pc_address() points into IsolateData and the pc in there
// is unauthenticated. For the profiler, the pc_address of the first visited
// frame is also not written by a call instruction.
// For wasm stacks, the exit frame's pc is stored in the jump buffer
// unsigned.
return unauthenticated_pc(pc_address());
}
}
inline Address StackFrame::ReadPC(Address* pc_address) {
return PointerAuthentication::AuthenticatePC(pc_address, kSystemPointerSize);
}
inline Address* StackFrame::ResolveReturnAddressLocation(Address* pc_address) {
if (return_address_location_resolver_ == nullptr) {
return pc_address;
} else {
return reinterpret_cast<Address*>(return_address_location_resolver_(
reinterpret_cast<uintptr_t>(pc_address)));
}
}
inline TypedFrame::TypedFrame(StackFrameIteratorBase* iterator)
: CommonFrame(iterator) {}
inline CommonFrameWithJSLinkage::CommonFrameWithJSLinkage(
StackFrameIteratorBase* iterator)
: CommonFrame(iterator) {}
inline TypedFrameWithJSLinkage::TypedFrameWithJSLinkage(
StackFrameIteratorBase* iterator)
: CommonFrameWithJSLinkage(iterator) {}
inline NativeFrame::NativeFrame(StackFrameIteratorBase* iterator)
: TypedFrame(iterator) {}
inline EntryFrame::EntryFrame(StackFrameIteratorBase* iterator)
: TypedFrame(iterator) {}
inline ConstructEntryFrame::ConstructEntryFrame(
StackFrameIteratorBase* iterator)
: EntryFrame(iterator) {}
inline ExitFrame::ExitFrame(StackFrameIteratorBase* iterator)
: TypedFrame(iterator) {}
inline BuiltinExitFrame::BuiltinExitFrame(StackFrameIteratorBase* iterator)
: ExitFrame(iterator) {}
inline Tagged<Object> BuiltinExitFrame::receiver_slot_object() const {
return Tagged<Object>(
base::Memory<Address>(fp() + BuiltinExitFrameConstants::kReceiverOffset));
}
inline Tagged<Object> BuiltinExitFrame::argc_slot_object() const {
return Tagged<Object>(
base::Memory<Address>(fp() + BuiltinExitFrameConstants::kArgcOffset));
}
inline Tagged<Object> BuiltinExitFrame::target_slot_object() const {
return Tagged<Object>(
base::Memory<Address>(fp() + BuiltinExitFrameConstants::kTargetOffset));
}
inline Tagged<Object> BuiltinExitFrame::new_target_slot_object() const {
return Tagged<Object>(base::Memory<Address>(
fp() + BuiltinExitFrameConstants::kNewTargetOffset));
}
inline ApiCallbackExitFrame::ApiCallbackExitFrame(
StackFrameIteratorBase* iterator)
: ExitFrame(iterator) {}
inline Tagged<Object> ApiCallbackExitFrame::context() const {
return Tagged<Object>(base::Memory<Address>(
fp() + ApiCallbackExitFrameConstants::kContextOffset));
}
inline FullObjectSlot ApiCallbackExitFrame::target_slot() const {
return FullObjectSlot(fp() + ApiCallbackExitFrameConstants::kTargetOffset);
}
Tagged<Object> ApiCallbackExitFrame::receiver() const {
return Tagged<Object>(base::Memory<Address>(
fp() + ApiCallbackExitFrameConstants::kReceiverOffset));
}
Tagged<HeapObject> ApiCallbackExitFrame::target() const {
Tagged<Object> function = *target_slot();
DCHECK(IsJSFunction(function) || IsFunctionTemplateInfo(function));
return Cast<HeapObject>(function);
}
void ApiCallbackExitFrame::set_target(Tagged<HeapObject> function) const {
DCHECK(IsJSFunction(function) || IsFunctionTemplateInfo(function));
target_slot().store(function);
}
uint32_t ApiCallbackExitFrame::ComputeParametersCount() const {
int argc = static_cast<int>(base::Memory<Address>(
fp() + ApiCallbackExitFrameConstants::kFCIArgcOffset));
DCHECK_GE(argc, 0);
return static_cast<uint32_t>(argc);
}
Tagged<Object> ApiCallbackExitFrame::GetParameter(int i) const {
DCHECK(i >= 0 && static_cast<uint32_t>(i) < ComputeParametersCount());
int offset = ApiCallbackExitFrameConstants::kFirstJSArgumentOffset +
i * kSystemPointerSize;
return Tagged<Object>(base::Memory<Address>(fp() + offset));
}
inline ApiConstructExitFrame::ApiConstructExitFrame(
StackFrameIteratorBase* iterator)
: ApiCallbackExitFrame(iterator) {}
inline FullObjectSlot ApiConstructExitFrame::new_target_slot() const {
return FullObjectSlot(fp() +
ApiConstructExitFrameConstants::kFCINewTargetOffset);
}
inline ApiAccessorExitFrame::ApiAccessorExitFrame(
StackFrameIteratorBase* iterator)
: ExitFrame(iterator) {}
inline FullObjectSlot ApiAccessorExitFrame::property_key_slot() const {
return FullObjectSlot(fp() +
ApiAccessorExitFrameConstants::kPropertyKeyOffset);
}
inline FullObjectSlot ApiAccessorExitFrame::holder_slot() const {
return FullObjectSlot(fp() + ApiAccessorExitFrameConstants::kHolderOffset);
}
Tagged<Object> ApiAccessorExitFrame::holder() const { return *holder_slot(); }
inline ApiNamedAccessorExitFrame::ApiNamedAccessorExitFrame(
StackFrameIteratorBase* iterator)
: ApiAccessorExitFrame(iterator) {}
Tagged<Name> ApiNamedAccessorExitFrame::property_name() const {
return Cast<Name>(*property_key_slot());
}
inline ApiIndexedAccessorExitFrame::ApiIndexedAccessorExitFrame(
StackFrameIteratorBase* iterator)
: ApiAccessorExitFrame(iterator) {}
inline CommonFrame::CommonFrame(StackFrameIteratorBase* iterator)
: StackFrame(iterator) {}
inline Tagged<Object> CommonFrame::GetExpression(int index) const {
return Tagged<Object>(base::Memory<Address>(GetExpressionAddress(index)));
}
inline void CommonFrame::SetExpression(int index, Tagged<Object> value) {
base::Memory<Address>(GetExpressionAddress(index)) = value.ptr();
}
inline Address CommonFrame::caller_fp() const {
return base::Memory<Address>(fp() + StandardFrameConstants::kCallerFPOffset);
}
inline Address CommonFrame::caller_pc() const {
return ReadPC(reinterpret_cast<Address*>(
fp() + StandardFrameConstants::kCallerPCOffset));
}
inline bool CommonFrameWithJSLinkage::IsConstructFrame(Address fp) {
intptr_t frame_type =
base::Memory<intptr_t>(fp + TypedFrameConstants::kFrameTypeOffset);
return frame_type == StackFrame::TypeToMarker(StackFrame::CONSTRUCT) ||
frame_type == StackFrame::TypeToMarker(StackFrame::FAST_CONSTRUCT);
}
inline JavaScriptFrame::JavaScriptFrame(StackFrameIteratorBase* iterator)
: CommonFrameWithJSLinkage(iterator) {}
Address CommonFrameWithJSLinkage::GetParameterSlot(int index) const {
DCHECK_LE(-1, index);
DCHECK(index == -1 ||
static_cast<uint32_t>(index) <
std::max(GetActualArgumentCount(), ComputeParametersCount()));
int parameter_offset = (index + 1) * kSystemPointerSize;
return caller_sp() + parameter_offset;
}
inline uint32_t CommonFrameWithJSLinkage::GetActualArgumentCount() const {
return 0;
}
inline void JavaScriptFrame::set_receiver(Tagged<Object> value) {
base::Memory<Address>(GetParameterSlot(-1)) = value.ptr();
}
inline void UnoptimizedJSFrame::SetFeedbackVector(
Tagged<FeedbackVector> feedback_vector) {
const int offset = InterpreterFrameConstants::kFeedbackVectorFromFp;
base::Memory<Address>(fp() + offset) = feedback_vector.ptr();
}
inline Tagged<Object> JavaScriptFrame::function_slot_object() const {
const int offset = StandardFrameConstants::kFunctionOffset;
return Tagged<Object>(base::Memory<Address>(fp() + offset));
}
inline TurbofanStubWithContextFrame::TurbofanStubWithContextFrame(
StackFrameIteratorBase* iterator)
: CommonFrame(iterator) {}
inline StubFrame::StubFrame(StackFrameIteratorBase* iterator)
: TypedFrame(iterator) {}
inline OptimizedJSFrame::OptimizedJSFrame(StackFrameIteratorBase* iterator)
: JavaScriptFrame(iterator) {}
inline UnoptimizedJSFrame::UnoptimizedJSFrame(StackFrameIteratorBase* iterator)
: JavaScriptFrame(iterator) {}
inline InterpretedFrame::InterpretedFrame(StackFrameIteratorBase* iterator)
: UnoptimizedJSFrame(iterator) {}
inline BaselineFrame::BaselineFrame(StackFrameIteratorBase* iterator)
: UnoptimizedJSFrame(iterator) {}
inline MaglevFrame::MaglevFrame(StackFrameIteratorBase* iterator)
: OptimizedJSFrame(iterator) {}
inline TurbofanJSFrame::TurbofanJSFrame(StackFrameIteratorBase* iterator)
: OptimizedJSFrame(iterator) {}
inline BuiltinFrame::BuiltinFrame(StackFrameIteratorBase* iterator)
: TypedFrameWithJSLinkage(iterator) {}
#if V8_ENABLE_WEBASSEMBLY
inline WasmFrame::WasmFrame(StackFrameIteratorBase* iterator)
: TypedFrame(iterator) {}
inline WasmSegmentStartFrame::WasmSegmentStartFrame(
StackFrameIteratorBase* iterator)
: WasmFrame(iterator) {}
inline WasmExitFrame::WasmExitFrame(StackFrameIteratorBase* iterator)
: WasmFrame(iterator) {}
#if V8_ENABLE_DRUMBRAKE
inline WasmInterpreterEntryFrame::WasmInterpreterEntryFrame(
StackFrameIteratorBase* iterator)
: WasmFrame(iterator) {}
#endif // V8_ENABLE_DRUMBRAKE
inline WasmDebugBreakFrame::WasmDebugBreakFrame(
StackFrameIteratorBase* iterator)
: TypedFrame(iterator) {}
inline WasmToJsFrame::WasmToJsFrame(StackFrameIteratorBase* iterator)
: WasmFrame(iterator) {}
inline JsToWasmFrame::JsToWasmFrame(StackFrameIteratorBase* iterator)
: StubFrame(iterator) {}
inline WasmJspiFrame::WasmJspiFrame(StackFrameIteratorBase* iterator)
: ExitFrame(iterator) {}
inline WasmStackEntryFrame::WasmStackEntryFrame(
StackFrameIteratorBase* iterator)
: TypedFrame(iterator) {}
inline WasmStackExitFrame::WasmStackExitFrame(StackFrameIteratorBase* iterator)
: TypedFrame(iterator) {}
inline CWasmEntryFrame::CWasmEntryFrame(StackFrameIteratorBase* iterator)
: StubFrame(iterator) {}
inline WasmLiftoffSetupFrame::WasmLiftoffSetupFrame(
StackFrameIteratorBase* iterator)
: TypedFrame(iterator) {}
#endif // V8_ENABLE_WEBASSEMBLY
inline InternalFrame::InternalFrame(StackFrameIteratorBase* iterator)
: TypedFrame(iterator) {}
inline ConstructFrame::ConstructFrame(StackFrameIteratorBase* iterator)
: InternalFrame(iterator) {}
inline FastConstructFrame::FastConstructFrame(StackFrameIteratorBase* iterator)
: InternalFrame(iterator) {}
inline BuiltinContinuationFrame::BuiltinContinuationFrame(
StackFrameIteratorBase* iterator)
: InternalFrame(iterator) {}
inline JavaScriptBuiltinContinuationFrame::JavaScriptBuiltinContinuationFrame(
StackFrameIteratorBase* iterator)
: TypedFrameWithJSLinkage(iterator) {}
inline JavaScriptBuiltinContinuationWithCatchFrame::
JavaScriptBuiltinContinuationWithCatchFrame(
StackFrameIteratorBase* iterator)
: JavaScriptBuiltinContinuationFrame(iterator) {}
inline IrregexpFrame::IrregexpFrame(StackFrameIteratorBase* iterator)
: TypedFrame(iterator) {}
inline CommonFrame* DebuggableStackFrameIterator::frame() const {
StackFrame* frame = iterator_.frame();
#if V8_ENABLE_WEBASSEMBLY
DCHECK(frame->is_javascript() || frame->is_wasm());
#else
DCHECK(frame->is_javascript());
#endif // V8_ENABLE_WEBASSEMBLY
return static_cast<CommonFrame*>(frame);
}
inline CommonFrame* DebuggableStackFrameIterator::Reframe() {
iterator_.Reframe();
return frame();
}
bool DebuggableStackFrameIterator::is_javascript() const {
return frame()->is_javascript();
}
#if V8_ENABLE_WEBASSEMBLY
bool DebuggableStackFrameIterator::is_wasm() const {
return frame()->is_wasm();
}
#if V8_ENABLE_DRUMBRAKE
bool DebuggableStackFrameIterator::is_wasm_interpreter_entry() const {
return frame()->is_wasm_interpreter_entry();
}
#endif // V8_ENABLE_DRUMBRAKE
#endif // V8_ENABLE_WEBASSEMBLY
JavaScriptFrame* DebuggableStackFrameIterator::javascript_frame() const {
return JavaScriptFrame::cast(frame());
}
// static
inline bool StackFrameIteratorForProfiler::IsValidFrameType(
StackFrame::Type type) {
#if V8_ENABLE_WEBASSEMBLY
DCHECK_NE(type, StackFrame::C_WASM_ENTRY);
#endif // V8_ENABLE_WEBASSEMBLY
return StackFrame::IsJavaScript(type) || type == StackFrame::EXIT ||
type == StackFrame::BUILTIN_EXIT ||
type == StackFrame::API_NAMED_ACCESSOR_EXIT ||
type == StackFrame::API_CALLBACK_EXIT ||
#if V8_ENABLE_WEBASSEMBLY
type == StackFrame::WASM || type == StackFrame::WASM_TO_JS ||
type == StackFrame::JS_TO_WASM ||
type == StackFrame::WASM_SEGMENT_START ||
#if V8_ENABLE_DRUMBRAKE
type == StackFrame::WASM_INTERPRETER_ENTRY ||
#endif // V8_ENABLE_DRUMBRAKE
#endif // V8_ENABLE_WEBASSEMBLY
false;
}
inline StackFrame* StackFrameIteratorForProfiler::frame() const {
DCHECK(!done());
DCHECK(IsValidFrameType(frame_->type()));
return frame_;
}
} // namespace internal
} // namespace v8
#endif // V8_EXECUTION_FRAMES_INL_H_