#include "src/deoptimizer/deoptimizer.h"
#include <optional>
#include "src/base/memory.h"
#include "src/codegen/interface-descriptors-inl.h"
#include "src/codegen/register-configuration.h"
#include "src/codegen/reloc-info.h"
#include "src/debug/debug.h"
#include "src/deoptimizer/deoptimized-frame-info.h"
#include "src/deoptimizer/materialized-object-store.h"
#include "src/deoptimizer/translated-state.h"
#include "src/execution/frames-inl.h"
#include "src/execution/isolate.h"
#include "src/execution/pointer-authentication.h"
#include "src/execution/v8threads.h"
#include "src/handles/handles-inl.h"
#include "src/heap/heap-inl.h"
#include "src/logging/counters.h"
#include "src/logging/log.h"
#include "src/logging/runtime-call-stats-scope.h"
#include "src/objects/deoptimization-data.h"
#include "src/objects/js-function-inl.h"
#include "src/objects/oddball.h"
#include "src/snapshot/embedded/embedded-data.h"
#include "src/utils/utils.h"
#if V8_ENABLE_WEBASSEMBLY
#include "src/wasm/baseline/liftoff-compiler.h"
#include "src/wasm/baseline/liftoff-varstate.h"
#include "src/wasm/compilation-environment-inl.h"
#include "src/wasm/function-compiler.h"
#include "src/wasm/signature-hashing.h"
#include "src/wasm/wasm-deopt-data.h"
#include "src/wasm/wasm-engine.h"
#include "src/wasm/wasm-linkage.h"
#endif
namespace v8 {
using base::Memory;
namespace internal {
namespace {
class DeoptimizableCodeIterator {
public:
explicit DeoptimizableCodeIterator(Isolate* isolate);
DeoptimizableCodeIterator(const DeoptimizableCodeIterator&) = delete;
DeoptimizableCodeIterator& operator=(const DeoptimizableCodeIterator&) =
delete;
Tagged<Code> Next();
private:
Isolate* const isolate_;
std::unique_ptr<SafepointScope> safepoint_scope_;
std::unique_ptr<ObjectIterator> object_iterator_;
enum { kIteratingCodeSpace, kIteratingCodeLOSpace, kDone } state_;
DISALLOW_GARBAGE_COLLECTION(no_gc)
};
DeoptimizableCodeIterator::DeoptimizableCodeIterator(Isolate* isolate)
: isolate_(isolate),
safepoint_scope_(std::make_unique<SafepointScope>(
isolate, isolate->is_shared_space_isolate()
? SafepointKind::kGlobal
: SafepointKind::kIsolate)),
object_iterator_(
isolate->heap()->code_space()->GetObjectIterator(isolate->heap())),
state_(kIteratingCodeSpace) {}
Tagged<Code> DeoptimizableCodeIterator::Next() {
while (true) {
Tagged<HeapObject> object = object_iterator_->Next();
if (object.is_null()) {
switch (state_) {
case kIteratingCodeSpace: {
object_iterator_ =
isolate_->heap()->code_lo_space()->GetObjectIterator(
isolate_->heap());
state_ = kIteratingCodeLOSpace;
continue;
}
case kIteratingCodeLOSpace:
safepoint_scope_.reset();
state_ = kDone;
[[fallthrough]];
case kDone:
return Code();
}
}
Tagged<InstructionStream> istream = SbxCast<InstructionStream>(object);
Tagged<Code> code;
if (!istream->TryGetCode(&code, kAcquireLoad)) continue;
if (!CodeKindCanDeoptimize(code->kind())) continue;
return code;
}
}
}
class FrameWriter {
public:
static const int NO_INPUT_INDEX = -1;
FrameWriter(Deoptimizer* deoptimizer, FrameDescription* frame,
CodeTracer::Scope* trace_scope)
: deoptimizer_(deoptimizer),
frame_(frame),
trace_scope_(trace_scope),
top_offset_(frame->GetFrameSize()) {}
void PushRawValue(intptr_t value, const char* debug_hint) {
PushValue(value);
if (trace_scope_ != nullptr) {
DebugPrintOutputValue(value, debug_hint);
}
}
void PushRawObject(Tagged<Object> obj, const char* debug_hint) {
intptr_t value = obj.ptr();
PushValue(value);
if (trace_scope_ != nullptr) {
DebugPrintOutputObject(obj, top_offset_, debug_hint);
}
}
void PushBottommostCallerPc(intptr_t pc) {
top_offset_ -= kPCOnStackSize;
frame_->SetFrameSlot(top_offset_, pc);
DebugPrintOutputPc(pc, "bottommost caller's pc\n");
}
void PushApprovedCallerPc(intptr_t pc) {
top_offset_ -= kPCOnStackSize;
frame_->SetCallerPc(top_offset_, pc);
DebugPrintOutputPc(pc, "caller's pc\n");
}
void PushCallerFp(intptr_t fp) {
top_offset_ -= kFPOnStackSize;
frame_->SetCallerFp(top_offset_, fp);
DebugPrintOutputValue(fp, "caller's fp\n");
}
void PushCallerConstantPool(intptr_t cp) {
top_offset_ -= kSystemPointerSize;
frame_->SetCallerConstantPool(top_offset_, cp);
DebugPrintOutputValue(cp, "caller's constant_pool\n");
}
void PushTranslatedValue(const TranslatedFrame::iterator& iterator,
const char* debug_hint = "") {
Tagged<Object> obj = iterator->GetRawValue();
PushRawObject(obj, debug_hint);
if (trace_scope_ != nullptr) {
PrintF(trace_scope_->file(), " (input #%d)\n", iterator.input_index());
}
deoptimizer_->QueueValueForMaterialization(output_address(top_offset_), obj,
iterator);
}
void PushFeedbackVectorForMaterialization(
const TranslatedFrame::iterator& iterator) {
PushRawObject(ReadOnlyRoots(deoptimizer_->isolate()).arguments_marker(),
"feedback vector");
deoptimizer_->QueueFeedbackVectorForMaterialization(
output_address(top_offset_), iterator);
}
void PushStackJSArguments(TranslatedFrame::iterator& iterator,
int parameters_count) {
std::vector<TranslatedFrame::iterator> parameters;
parameters.reserve(parameters_count);
for (int i = 0; i < parameters_count; ++i, ++iterator) {
parameters.push_back(iterator);
}
for (auto& parameter : base::Reversed(parameters)) {
PushTranslatedValue(parameter, "stack parameter");
}
}
unsigned top_offset() const { return top_offset_; }
FrameDescription* frame() { return frame_; }
private:
void PushValue(intptr_t value) {
CHECK_GE(top_offset_, 0);
top_offset_ -= kSystemPointerSize;
frame_->SetFrameSlot(top_offset_, value);
}
Address output_address(unsigned output_offset) {
Address output_address =
static_cast<Address>(frame_->GetTop()) + output_offset;
return output_address;
}
void DebugPrintOutputValue(intptr_t value, const char* debug_hint = "") {
if (trace_scope_ != nullptr) {
PrintF(trace_scope_->file(),
" " V8PRIxPTR_FMT ": [top + %3d] <- " V8PRIxPTR_FMT " ; %s",
output_address(top_offset_), top_offset_, value, debug_hint);
}
}
void DebugPrintOutputPc(intptr_t value, const char* debug_hint = "") {
#ifdef V8_ENABLE_CONTROL_FLOW_INTEGRITY
if (trace_scope_ != nullptr) {
PrintF(trace_scope_->file(),
" " V8PRIxPTR_FMT ": [top + %3d] <- " V8PRIxPTR_FMT
" (signed) " V8PRIxPTR_FMT " (unsigned) ; %s",
output_address(top_offset_), top_offset_, value,
PointerAuthentication::StripPAC(value), debug_hint);
}
#else
DebugPrintOutputValue(value, debug_hint);
#endif
}
void DebugPrintOutputObject(Tagged<Object> obj, unsigned output_offset,
const char* debug_hint = "") {
if (trace_scope_ != nullptr) {
PrintF(trace_scope_->file(), " " V8PRIxPTR_FMT ": [top + %3d] <- ",
output_address(output_offset), output_offset);
if (IsSmi(obj)) {
PrintF(trace_scope_->file(), V8PRIxPTR_FMT " <Smi %d>", obj.ptr(),
Cast<Smi>(obj).value());
} else {
ShortPrint(obj, trace_scope_->file());
}
PrintF(trace_scope_->file(), " ; %s", debug_hint);
}
}
Deoptimizer* deoptimizer_;
FrameDescription* frame_;
CodeTracer::Scope* const trace_scope_;
unsigned top_offset_;
};
Deoptimizer* Deoptimizer::New(Address raw_function, DeoptimizeKind kind,
Address from, int fp_to_sp_delta,
Isolate* isolate) {
Tagged<JSFunction> function =
raw_function != 0 ? Cast<JSFunction>(Tagged<Object>(raw_function))
: Tagged<JSFunction>();
Deoptimizer* deoptimizer =
new Deoptimizer(isolate, function, kind, from, fp_to_sp_delta);
DCHECK_NOT_NULL(deoptimizer);
isolate->set_current_deoptimizer(deoptimizer);
return deoptimizer;
}
Deoptimizer* Deoptimizer::Grab(Isolate* isolate) {
Deoptimizer* result = isolate->GetAndClearCurrentDeoptimizer();
result->DeleteFrameDescriptions();
return result;
}
size_t Deoptimizer::DeleteForWasm(Isolate* isolate) {
DCHECK(!AllowGarbageCollection::IsAllowed());
Deoptimizer* deoptimizer = Deoptimizer::Grab(isolate);
int output_count = deoptimizer->output_count();
delete deoptimizer;
DCHECK(AllowGarbageCollection::IsAllowed());
return output_count;
}
DeoptimizedFrameInfo* Deoptimizer::DebuggerInspectableFrame(
JavaScriptFrame* frame, int jsframe_index, Isolate* isolate) {
CHECK(frame->is_optimized_js());
TranslatedState translated_values(frame);
translated_values.Prepare(frame->fp());
TranslatedState::iterator frame_it = translated_values.end();
int counter = jsframe_index;
for (auto it = translated_values.begin(); it != translated_values.end();
it++) {
if (TranslatedFrame::IsJavaScriptFrame(it->kind())) {
if (counter == 0) {
frame_it = it;
break;
}
counter--;
}
}
CHECK(frame_it != translated_values.end());
CHECK_EQ(frame_it->kind(), TranslatedFrame::kUnoptimizedFunction);
DeoptimizedFrameInfo* info =
new DeoptimizedFrameInfo(&translated_values, frame_it, isolate);
return info;
}
namespace {
#ifdef OHOS_JS_ENGINE
void PrintCodeState(Tagged<GcSafeCode> code, int trampoline_pc) {
std::stringstream os;
os << "ERROR in depot for code:\n";
CodeKind kind = code->kind();
os << "kind = " << CodeKindToString(kind) << "\n";
bool has_deopt_data = (trampoline_pc != SafepointEntry::kNoTrampolinePC);
os << "can_deoptimize = " << CodeKindCanDeoptimize(kind) << "\n";
os << "marked_for_deoptimization = " << code->marked_for_deoptimization()
<< "\n";
os << "has_deopt_data = " << has_deopt_data << "\n";
const char* name = nullptr;
if (code->is_builtin()) {
name = Builtins::name(code->builtin_id());
}
if ((name != nullptr) && (name[0] != '\0')) {
os << "name = " << name << "\n";
}
if (CodeKindIsOptimizedJSFunction(kind)) {
os << "stack_slots = " << code->stack_slots() << "\n";
}
os << "compiler = "
<< (code->is_turbofanned() ? "turbofan"
: code->is_maglevved() ? "maglev"
: kind == CodeKind::BASELINE ? "baseline"
: "unknown")
<< "\n";
base::OS::PrintError("%s", os.str().c_str());
return;
}
#endif
class ActivationsFinder : public ThreadVisitor {
public:
ActivationsFinder(Tagged<GcSafeCode> topmost_optimized_code,
bool safe_to_deopt_topmost_optimized_code) {
#ifdef DEBUG
topmost_ = topmost_optimized_code;
safe_to_deopt_ = safe_to_deopt_topmost_optimized_code;
#endif
}
void VisitThread(Isolate* isolate, ThreadLocalTop* top) override {
for (StackFrameIterator it(isolate, top); !it.done(); it.Advance()) {
if (it.frame()->is_optimized_js()) {
Tagged<GcSafeCode> code = it.frame()->GcSafeLookupCode();
if (CodeKindCanDeoptimize(code->kind()) &&
code->marked_for_deoptimization()) {
int trampoline_pc;
if (code->is_maglevved()) {
MaglevSafepointEntry safepoint = MaglevSafepointTable::FindEntry(
isolate, code, it.frame()->pc());
trampoline_pc = safepoint.trampoline_pc();
} else {
SafepointEntry safepoint = SafepointTable::FindEntry(
isolate, code, it.frame()->maybe_unauthenticated_pc());
trampoline_pc = safepoint.trampoline_pc();
}
static_assert(!kAllCodeObjectsLiveInTrustedSpace);
DCHECK_IMPLIES(code.SafeEquals(topmost_), safe_to_deopt_);
static_assert(SafepointEntry::kNoTrampolinePC == -1);
#ifdef OHOS_JS_ENGINE
if (trampoline_pc < 0) {
PrintCodeState(code, trampoline_pc);
}
#endif
CHECK_GE(trampoline_pc, 0);
Address new_pc = code->instruction_start() + trampoline_pc;
if (it.frame()->InFastCCall()) {
Address pc = *it.frame()->pc_address();
Deoptimizer::PatchToJump(pc, new_pc);
} else {
if (v8_flags.cet_compatible) {
Address pc = *it.frame()->pc_address();
Deoptimizer::PatchToJump(pc, new_pc);
} else {
Address* pc_addr = it.frame()->pc_address();
PointerAuthentication::ReplacePC(pc_addr, new_pc,
kSystemPointerSize);
}
}
}
}
}
}
private:
#ifdef DEBUG
Tagged<GcSafeCode> topmost_;
bool safe_to_deopt_;
#endif
};
}
void Deoptimizer::DeoptimizeMarkedCode(Isolate* isolate) {
DisallowGarbageCollection no_gc;
Tagged<GcSafeCode> topmost_optimized_code;
bool safe_to_deopt_topmost_optimized_code = false;
#ifdef DEBUG
for (StackFrameIterator it(isolate, isolate->thread_local_top()); !it.done();
it.Advance()) {
if (it.frame()->is_optimized_js()) {
Tagged<GcSafeCode> code = it.frame()->GcSafeLookupCode();
Tagged<JSFunction> function =
static_cast<OptimizedJSFrame*>(it.frame())->function();
TraceFoundActivation(isolate, function);
bool safe_if_deopt_triggered;
if (code->is_maglevved()) {
MaglevSafepointEntry safepoint =
MaglevSafepointTable::FindEntry(isolate, code, it.frame()->pc());
safe_if_deopt_triggered = safepoint.has_deoptimization_index();
} else {
SafepointEntry safepoint = SafepointTable::FindEntry(
isolate, code, it.frame()->maybe_unauthenticated_pc());
safe_if_deopt_triggered = safepoint.has_deoptimization_index();
}
bool is_builtin_code = code->kind() == CodeKind::BUILTIN;
DCHECK(topmost_optimized_code.is_null() || safe_if_deopt_triggered ||
is_builtin_code);
if (topmost_optimized_code.is_null()) {
topmost_optimized_code = code;
safe_to_deopt_topmost_optimized_code = safe_if_deopt_triggered;
}
}
}
#endif
ActivationsFinder visitor(topmost_optimized_code,
safe_to_deopt_topmost_optimized_code);
visitor.VisitThread(isolate, isolate->thread_local_top());
isolate->thread_manager()->IterateArchivedThreads(&visitor);
}
void Deoptimizer::DeoptimizeAll(Isolate* isolate) {
RCS_SCOPE(isolate, RuntimeCallCounterId::kDeoptimizeCode);
TimerEventScope<TimerEventDeoptimizeCode> timer(isolate);
TRACE_EVENT0("v8", "V8.DeoptimizeCode");
TraceDeoptAll(isolate);
isolate->AbortConcurrentOptimization(BlockingBehavior::kBlock);
{
DeoptimizableCodeIterator it(isolate);
for (Tagged<Code> code = it.Next(); !code.is_null(); code = it.Next()) {
code->SetMarkedForDeoptimization(isolate,
LazyDeoptimizeReason::kDebugger);
}
}
DeoptimizeMarkedCode(isolate);
}
void Deoptimizer::DeoptimizeFunction(Tagged<JSFunction> function,
LazyDeoptimizeReason reason,
Tagged<Code> code) {
Isolate* isolate = Isolate::Current();
RCS_SCOPE(isolate, RuntimeCallCounterId::kDeoptimizeCode);
TimerEventScope<TimerEventDeoptimizeCode> timer(isolate);
TRACE_EVENT0("v8", "V8.DeoptimizeCode");
function->ResetIfCodeFlushed(isolate);
if (code.is_null()) code = function->code(isolate);
if (CodeKindCanDeoptimize(code->kind())) {
code->SetMarkedForDeoptimization(isolate, reason);
DeoptimizeMarkedCode(isolate);
}
}
void Deoptimizer::DeoptimizeAllOptimizedCodeWithFunction(
Isolate* isolate, DirectHandle<SharedFunctionInfo> function) {
RCS_SCOPE(isolate, RuntimeCallCounterId::kDeoptimizeCode);
TimerEventScope<TimerEventDeoptimizeCode> timer(isolate);
TRACE_EVENT0("v8", "V8.DeoptimizeAllOptimizedCodeWithFunction");
isolate->AbortConcurrentOptimization(BlockingBehavior::kBlock);
bool any_marked = false;
{
DeoptimizableCodeIterator it(isolate);
for (Tagged<Code> code = it.Next(); !code.is_null(); code = it.Next()) {
if (code->Inlines(*function)) {
code->SetMarkedForDeoptimization(isolate,
LazyDeoptimizeReason::kDebugger);
any_marked = true;
}
}
}
if (any_marked) {
DeoptimizeMarkedCode(isolate);
}
}
#define DEOPTIMIZATION_HELPER_BUILTINS(V) \
V(Builtin::kInterpreterEnterAtBytecode, \
deopt_pc_offset_after_adapt_shadow_stack) \
V(Builtin::kInterpreterEnterAtNextBytecode, \
deopt_pc_offset_after_adapt_shadow_stack) \
V(Builtin::kContinueToCodeStubBuiltinWithResult, \
deopt_pc_offset_after_adapt_shadow_stack) \
V(Builtin::kContinueToCodeStubBuiltin, \
deopt_pc_offset_after_adapt_shadow_stack) \
V(Builtin::kContinueToJavaScriptBuiltinWithResult, \
deopt_pc_offset_after_adapt_shadow_stack) \
V(Builtin::kContinueToJavaScriptBuiltin, \
deopt_pc_offset_after_adapt_shadow_stack) \
V(Builtin::kRestartFrameTrampoline, \
deopt_pc_offset_after_adapt_shadow_stack) \
V(Builtin::kJSConstructStubGeneric, construct_stub_create_deopt_pc_offset) \
V(Builtin::kInterpreterPushArgsThenFastConstructFunction, \
construct_stub_invoke_deopt_pc_offset)
Address Deoptimizer::EnsureValidReturnAddress(Isolate* isolate,
Address address) {
Builtins* builtins = isolate->builtins();
Heap* heap = isolate->heap();
#define CHECK_BUILTIN(builtin, offset) \
if (builtins->code(builtin)->instruction_start() + heap->offset().value() - \
Deoptimizer::kAdaptShadowStackOffsetToSubtract == \
address) \
return address;
DEOPTIMIZATION_HELPER_BUILTINS(CHECK_BUILTIN)
#undef CHECK_BUILTIN
if (builtins->code(Builtin::kNotifyDeoptimized)->instruction_start() ==
address)
return address;
#if V8_ENABLE_WEBASSEMBLY
if (v8_flags.wasm_deopt &&
wasm::GetWasmCodeManager()->LookupCode(isolate, address) != nullptr) {
return address;
}
#endif
CHECK_WITH_MSG(false, "Not allowed return address");
}
void Deoptimizer::ComputeOutputFrames(Deoptimizer* deoptimizer) {
deoptimizer->DoComputeOutputFrames();
#if V8_ENABLE_WEBASSEMBLY
deoptimizer->no_sandbox_access_during_wasm_deopt_.reset();
#endif
}
const char* Deoptimizer::MessageFor(DeoptimizeKind kind) {
switch (kind) {
case DeoptimizeKind::kEager:
return "deopt-eager";
case DeoptimizeKind::kLazyAfterFastCall:
return "deopt-lazy-after-fastcall";
case DeoptimizeKind::kLazy:
return "deopt-lazy";
}
}
Deoptimizer::Deoptimizer(Isolate* isolate, Tagged<JSFunction> function,
DeoptimizeKind kind, Address from, int fp_to_sp_delta)
: isolate_(isolate),
function_(function),
deopt_exit_index_(kFixedExitSizeMarker),
deopt_kind_(kind),
from_(from),
fp_to_sp_delta_(fp_to_sp_delta),
deoptimizing_throw_(false),
catch_handler_data_(-1),
catch_handler_pc_offset_(-1),
restart_frame_index_(-1),
input_(nullptr),
output_count_(0),
output_(nullptr),
caller_frame_top_(0),
caller_fp_(0),
caller_pc_(0),
caller_constant_pool_(0),
actual_argument_count_(0),
stack_fp_(0),
trace_scope_(v8_flags.trace_deopt
? new CodeTracer::Scope(isolate->GetCodeTracer())
: nullptr) {
if (isolate->deoptimizer_lazy_throw()) {
CHECK_EQ(kind, DeoptimizeKind::kLazy);
isolate->set_deoptimizer_lazy_throw(false);
deoptimizing_throw_ = true;
}
if (isolate->debug()->IsRestartFrameScheduled()) {
CHECK(deoptimizing_throw_);
restart_frame_index_ = isolate->debug()->restart_inline_frame_index();
CHECK_GE(restart_frame_index_, 0);
isolate->debug()->clear_restart_frame();
}
DCHECK_NE(from, kNullAddress);
#ifdef DEBUG
DCHECK(AllowGarbageCollection::IsAllowed());
disallow_garbage_collection_ = new DisallowGarbageCollection();
#endif
#if V8_ENABLE_WEBASSEMBLY
if (v8_flags.wasm_deopt && function.is_null()) {
no_sandbox_access_during_wasm_deopt_.emplace();
wasm::WasmCode* code =
wasm::GetWasmCodeManager()->LookupCode(isolate, from);
compiled_optimized_wasm_code_ = code;
DCHECK_NOT_NULL(code);
CHECK_EQ(code->kind(), wasm::WasmCode::kWasmFunction);
wasm::WasmDeoptView deopt_view(code->deopt_data());
const wasm::WasmDeoptData& deopt_data = deopt_view.GetDeoptData();
DCHECK_NE(deopt_data.translation_array_size, 0);
CHECK_GE(from, deopt_data.deopt_exit_start_offset);
Address deopt_exit_offset = from - code->instruction_start();
deopt_exit_index_ =
static_cast<uint32_t>(deopt_exit_offset -
deopt_data.deopt_exit_start_offset -
kEagerDeoptExitSize) /
kEagerDeoptExitSize;
const wasm::FunctionSig* sig =
code->native_module()->module()->functions[code->index()].sig;
int parameter_stack_slots, return_stack_slots;
GetWasmStackSlotsCounts(sig, ¶meter_stack_slots, &return_stack_slots);
unsigned input_frame_size = fp_to_sp_delta +
parameter_stack_slots * kSystemPointerSize +
CommonFrameConstants::kFixedFrameSizeAboveFp;
input_ = FrameDescription::Create(input_frame_size, parameter_stack_slots,
isolate_);
return;
}
#endif
compiled_code_ = isolate_->heap()->FindCodeForInnerPointer(from);
DCHECK(!compiled_code_.is_null());
DCHECK(IsCode(compiled_code_));
DCHECK(IsJSFunction(function));
CHECK(CodeKindCanDeoptimize(compiled_code_->kind()));
{
HandleScope scope(isolate_);
PROFILE(isolate_, CodeDeoptEvent(direct_handle(compiled_code_, isolate_),
kind, from_, fp_to_sp_delta_));
}
unsigned size = ComputeInputFrameSize();
const int parameter_count = compiled_code_->parameter_count();
DCHECK_EQ(
parameter_count,
function->shared()->internal_formal_parameter_count_with_receiver());
input_ = FrameDescription::Create(size, parameter_count, isolate_);
DCHECK_EQ(deopt_exit_index_, kFixedExitSizeMarker);
DCHECK_GT(kEagerDeoptExitSize, 0);
DCHECK_GT(kLazyDeoptExitSize, 0);
Tagged<DeoptimizationData> deopt_data = compiled_code_->deoptimization_data();
Address deopt_start = compiled_code_->instruction_start() +
deopt_data->DeoptExitStart().value();
int eager_deopt_count = deopt_data->EagerDeoptCount().value();
Address lazy_deopt_start =
deopt_start + eager_deopt_count * kEagerDeoptExitSize;
static_assert(static_cast<int>(DeoptimizeKind::kLazy) ==
static_cast<int>(kLastDeoptimizeKind),
"lazy deopts are expected to be emitted last");
if (from_ <= lazy_deopt_start) {
DCHECK_EQ(kind, DeoptimizeKind::kEager);
int offset = static_cast<int>(from_ - kEagerDeoptExitSize - deopt_start);
DCHECK_EQ(0, offset % kEagerDeoptExitSize);
deopt_exit_index_ = offset / kEagerDeoptExitSize;
} else {
DCHECK_EQ(kind, DeoptimizeKind::kLazy);
int offset =
static_cast<int>(from_ - kLazyDeoptExitSize - lazy_deopt_start);
DCHECK_EQ(0, offset % kLazyDeoptExitSize);
deopt_exit_index_ = eager_deopt_count + (offset / kLazyDeoptExitSize);
}
}
DirectHandle<JSFunction> Deoptimizer::function() const {
return DirectHandle<JSFunction>(function_, isolate());
}
DirectHandle<Code> Deoptimizer::compiled_code() const {
return DirectHandle<Code>(compiled_code_, isolate());
}
Deoptimizer::~Deoptimizer() {
DCHECK(input_ == nullptr && output_ == nullptr);
#ifdef V8_ENABLE_CET_SHADOW_STACK
DCHECK_NULL(shadow_stack_);
#endif
DCHECK_NULL(disallow_garbage_collection_);
delete trace_scope_;
}
void Deoptimizer::DeleteFrameDescriptions() {
delete input_;
for (int i = 0; i < output_count_; ++i) {
if (output_[i] != input_) delete output_[i];
}
delete[] output_;
input_ = nullptr;
output_ = nullptr;
#ifdef V8_ENABLE_CET_SHADOW_STACK
if (shadow_stack_ != nullptr) {
delete[] shadow_stack_;
shadow_stack_ = nullptr;
}
#endif
#ifdef DEBUG
DCHECK(!AllowGarbageCollection::IsAllowed());
DCHECK_NOT_NULL(disallow_garbage_collection_);
delete disallow_garbage_collection_;
disallow_garbage_collection_ = nullptr;
#endif
}
Builtin Deoptimizer::GetDeoptimizationEntry(DeoptimizeKind kind) {
switch (kind) {
case DeoptimizeKind::kEager:
return Builtin::kDeoptimizationEntry_Eager;
case DeoptimizeKind::kLazyAfterFastCall:
return Builtin::kDeoptimizationEntry_LazyAfterFastCall;
case DeoptimizeKind::kLazy:
return Builtin::kDeoptimizationEntry_Lazy;
}
}
namespace {
int LookupCatchHandler(Isolate* isolate, TranslatedFrame* translated_frame,
int* data_out) {
switch (translated_frame->kind()) {
case TranslatedFrame::kUnoptimizedFunction: {
int bytecode_offset = translated_frame->bytecode_offset().ToInt();
HandlerTable table(
translated_frame->raw_shared_info()->GetBytecodeArray(isolate));
int handler_index = table.LookupHandlerIndexForRange(bytecode_offset);
if (handler_index == HandlerTable::kNoHandlerFound) return handler_index;
*data_out = table.GetRangeData(handler_index);
table.MarkHandlerUsed(handler_index);
return table.GetRangeHandler(handler_index);
}
case TranslatedFrame::kJavaScriptBuiltinContinuationWithCatch: {
return 0;
}
default:
break;
}
return -1;
}
const char* CodeValidityToString(Deoptimizer::CodeValidity code_validity) {
switch (code_validity) {
case Deoptimizer::CodeValidity::kUnaffected:
return "unaffected";
case Deoptimizer::CodeValidity::kInvalidated:
return "invalidated";
case Deoptimizer::CodeValidity::kInvalidatedOsr:
return "invalidated-osr";
case Deoptimizer::CodeValidity::kUnknown:
return "unknown";
}
}
}
void Deoptimizer::TraceDeoptBegin(int optimization_id,
BytecodeOffset bytecode_offset) {
DCHECK(tracing_enabled());
FILE* file = trace_scope()->file();
PrintF(file,
"[bailout (kind: %s, reason: %s): begin. "
"deoptimizing ",
MessageFor(deopt_kind_),
DeoptimizeReasonToString(GetDeoptInfo().deopt_reason));
if (IsJSFunction(function_)) {
ShortPrint(function_, file);
PrintF(file, ", ");
}
ShortPrint(compiled_code_, file);
PrintF(file,
", opt id %d, "
#ifdef DEBUG
"node id %d, "
#endif
"bytecode offset %d, deopt exit %d, FP to SP "
"delta %d, "
"caller SP " V8PRIxPTR_FMT ", pc " V8PRIxPTR_FMT "]\n",
optimization_id,
#ifdef DEBUG
GetDeoptInfo().node_id,
#endif
bytecode_offset.ToInt(), deopt_exit_index_, fp_to_sp_delta_,
caller_frame_top_, PointerAuthentication::StripPAC(from_));
if (verbose_tracing_enabled() && deopt_kind_ != DeoptimizeKind::kLazy) {
PrintF(file, " ;;; deoptimize at ");
OFStream outstr(file);
GetDeoptInfo().position.Print(outstr, compiled_code_);
PrintF(file, "\n");
}
}
void Deoptimizer::TraceDeoptEnd(double deopt_duration) {
DCHECK(verbose_tracing_enabled());
PrintF(trace_scope()->file(), "[bailout end. ");
if (code_validity_ != CodeValidity::kUnknown) {
PrintF(trace_scope()->file(), "code_invalidation: %s, ",
CodeValidityToString(code_validity()));
}
PrintF(trace_scope()->file(), "took %0.3f ms]\n", deopt_duration);
}
void Deoptimizer::TraceMarkForDeoptimization(Isolate* isolate,
Tagged<Code> code,
LazyDeoptimizeReason reason) {
if (code->kind() == CodeKind::BASELINE) return;
DCHECK(code->uses_deoptimization_data());
if (!v8_flags.trace_deopt && !v8_flags.log_deopt) return;
DisallowGarbageCollection no_gc;
Tagged<DeoptimizationData> deopt_data = code->deoptimization_data();
CodeTracer::Scope scope(isolate->GetCodeTracer());
if (v8_flags.trace_deopt) {
PrintF(scope.file(), "[marking dependent code ");
ShortPrint(code, scope.file());
PrintF(scope.file(), " (");
ShortPrint(deopt_data->GetSharedFunctionInfo(), scope.file());
PrintF(") (opt id %d) for deoptimization, reason: %s]\n",
deopt_data->OptimizationId().value(),
DeoptimizeReasonToString(reason));
}
if (!v8_flags.log_deopt) return;
no_gc.Release();
{
HandleScope handle_scope(isolate);
PROFILE(isolate,
CodeDependencyChangeEvent(
direct_handle(code, isolate),
direct_handle(deopt_data->GetSharedFunctionInfo(), isolate),
DeoptimizeReasonToString(reason)));
}
}
void Deoptimizer::TraceEvictFromOptimizedCodeCache(
Isolate* isolate, Tagged<SharedFunctionInfo> sfi, const char* reason) {
if (!v8_flags.trace_deopt_verbose) return;
DisallowGarbageCollection no_gc;
CodeTracer::Scope scope(isolate->GetCodeTracer());
PrintF(scope.file(),
"[evicting optimized code marked for deoptimization (%s) for ",
reason);
ShortPrint(sfi, scope.file());
PrintF(scope.file(), "]\n");
}
#ifdef DEBUG
void Deoptimizer::TraceFoundActivation(Isolate* isolate,
Tagged<JSFunction> function) {
if (!v8_flags.trace_deopt_verbose) return;
CodeTracer::Scope scope(isolate->GetCodeTracer());
PrintF(scope.file(), "[deoptimizer found activation of function: ");
function->PrintName(scope.file());
PrintF(scope.file(), " / %" V8PRIxPTR "]\n", function.ptr());
}
#endif
void Deoptimizer::TraceDeoptAll(Isolate* isolate) {
if (!v8_flags.trace_deopt_verbose) return;
CodeTracer::Scope scope(isolate->GetCodeTracer());
PrintF(scope.file(), "[deoptimize all code in all contexts]\n");
}
#if V8_ENABLE_WEBASSEMBLY
namespace {
std::pair<wasm::WasmCode*,
std::unique_ptr<wasm::LiftoffFrameDescriptionForDeopt>>
CompileWithLiftoffAndGetDeoptInfo(wasm::NativeModule* native_module,
int function_index,
BytecodeOffset deopt_point, bool is_topmost) {
wasm::CompilationEnv env = wasm::CompilationEnv::ForModule(native_module);
base::Vector<const uint8_t> wire_bytes = native_module->wire_bytes();
const wasm::WasmFunction* function = &env.module->functions[function_index];
bool is_shared = env.module->type(function->sig_index).is_shared;
wasm::FunctionBody body{function->sig, function->code.offset(),
wire_bytes.begin() + function->code.offset(),
wire_bytes.begin() + function->code.end_offset(),
is_shared};
wasm::ForDebugging for_debugging = v8_flags.wasm_code_coverage
? wasm::ForDebugging::kForDebugging
: wasm::ForDebugging::kNotForDebugging;
wasm::WasmCompilationResult result = ExecuteLiftoffCompilation(
&env, body,
wasm::LiftoffOptions{.func_index = function_index,
.for_debugging = for_debugging,
.counter_updates = native_module->counter_updates(),
.deopt_info_bytecode_offset =
static_cast<uint32_t>(deopt_point.ToInt()),
.deopt_location_kind =
is_topmost
? wasm::LocationKindForDeopt::kEagerDeopt
: wasm::LocationKindForDeopt::kInlinedCall});
wasm::UnpublishedWasmCode compiled_code =
native_module->AddCompiledCode(result);
wasm::WasmCodeRefScope code_ref_scope;
wasm::WasmCode* wasm_code = native_module->compilation_state()->PublishCode(
base::VectorOf(&compiled_code, 1))[0];
return {wasm_code, std::move(result.liftoff_frame_descriptions)};
}
}
FrameDescription* Deoptimizer::DoComputeWasmLiftoffFrame(
TranslatedFrame& frame, wasm::NativeModule* native_module,
Tagged<WasmTrustedInstanceData> wasm_trusted_instance, int frame_index,
std::stack<intptr_t>& shadow_stack) {
const bool is_bottommost = frame_index == 0;
const bool is_topmost = output_count_ - 1 == frame_index;
auto [wasm_code, liftoff_description] = CompileWithLiftoffAndGetDeoptInfo(
native_module, frame.wasm_function_index(), frame.bytecode_offset(),
is_topmost);
DCHECK(liftoff_description);
int parameter_stack_slots, return_stack_slots;
const wasm::FunctionSig* sig =
native_module->module()->functions[frame.wasm_function_index()].sig;
GetWasmStackSlotsCounts(sig, ¶meter_stack_slots, &return_stack_slots);
const uint32_t output_frame_size = liftoff_description->total_frame_size;
const uint32_t total_output_frame_size =
output_frame_size + parameter_stack_slots * kSystemPointerSize +
CommonFrameConstants::kFixedFrameSizeAboveFp;
if (verbose_tracing_enabled()) {
std::ostringstream outstream;
outstream << " Liftoff stack & register state for function index "
<< frame.wasm_function_index() << ", frame size "
<< output_frame_size << ", total frame size "
<< total_output_frame_size << '\n';
size_t index = 0;
for (const wasm::LiftoffVarState& state : liftoff_description->var_state) {
outstream << " " << index++ << ": " << state << '\n';
}
FILE* file = trace_scope()->file();
PrintF(file, "%s", outstream.str().c_str());
}
FrameDescription* output_frame = FrameDescription::Create(
total_output_frame_size, parameter_stack_slots, isolate());
static_assert(CommonFrameConstants::kFixedFrameSizeAboveFp ==
2 * kSystemPointerSize);
uint32_t output_offset = total_output_frame_size;
for (int i = 0; i < parameter_stack_slots; ++i) {
output_offset -= kSystemPointerSize;
output_frame->SetFrameSlot(output_offset, 0);
}
Address top = is_bottommost ? caller_frame_top_ - total_output_frame_size
: output_[frame_index - 1]->GetTop() -
total_output_frame_size;
output_frame->SetTop(top);
Address pc = wasm_code->instruction_start() + liftoff_description->pc_offset;
output_frame->SetPc(PointerAuthentication::SignAndCheckPC(
isolate(), pc, output_frame->GetTop()));
#ifdef V8_ENABLE_CET_SHADOW_STACK
if (v8_flags.cet_compatible) {
if (is_topmost) {
shadow_stack.push(pc);
} else {
shadow_stack.push(wasm_code->instruction_start() +
liftoff_description->adapt_shadow_stack_pc_offset);
}
}
#endif
if (is_bottommost) {
Address old_context =
caller_frame_top_ - input_->parameter_count() * kSystemPointerSize;
Address new_context =
caller_frame_top_ - parameter_stack_slots * kSystemPointerSize;
caller_pc_ = PointerAuthentication::MoveSignedPC(isolate(), caller_pc_,
new_context, old_context);
} else if (parameter_stack_slots != 0) {
FrameDescription* previous_frame = output_[frame_index - 1];
Address old_context = previous_frame->GetTop();
Address new_context =
old_context - parameter_stack_slots * kSystemPointerSize;
Address signed_pc = PointerAuthentication::MoveSignedPC(
isolate(), previous_frame->GetPc(), new_context, old_context);
previous_frame->SetPc(signed_pc);
}
output_offset -= kSystemPointerSize;
output_frame->SetFrameSlot(
output_offset,
is_bottommost ? caller_pc_ : output_[frame_index - 1]->GetPc());
output_offset -= kSystemPointerSize;
output_frame->SetFrameSlot(
output_offset,
is_bottommost ? caller_fp_ : output_[frame_index - 1]->GetFp());
CHECK_EQ(output_frame_size, output_offset);
int base_offset = output_frame_size;
output_frame->SetFrameSlot(
base_offset - WasmLiftoffFrameConstants::kInstanceDataOffset,
wasm_trusted_instance.ptr());
if (liftoff_description->trusted_instance != no_reg) {
output_frame->SetRegister(liftoff_description->trusted_instance.code(),
wasm_trusted_instance.ptr());
}
DCHECK_GE(translated_state_.frames().size(), 1);
auto liftoff_iter = liftoff_description->var_state.begin();
if constexpr (Is64()) {
CHECK_EQ(liftoff_description->var_state.size(), frame.GetValueCount());
}
bool int64_lowering_is_low = true;
for (const TranslatedValue& value : frame) {
bool skip_increase_liftoff_iter = false;
switch (liftoff_iter->loc()) {
case wasm::LiftoffVarState::kIntConst:
if (!Is64() && liftoff_iter->kind() == wasm::ValueKind::kI64) {
if (int64_lowering_is_low) skip_increase_liftoff_iter = true;
int64_lowering_is_low = !int64_lowering_is_low;
}
break;
case wasm::LiftoffVarState::kRegister:
if (liftoff_iter->is_gp_reg()) {
intptr_t reg_value = kZapValue;
switch (value.kind()) {
case TranslatedValue::Kind::kInt32:
reg_value = static_cast<uint32_t>(value.int32_value());
break;
case TranslatedValue::Kind::kTagged:
reg_value = value.raw_literal().ptr();
break;
case TranslatedValue::Kind::kInt64:
reg_value = value.int64_value();
break;
default:
UNIMPLEMENTED();
}
output_frame->SetRegister(liftoff_iter->reg().gp().code(), reg_value);
} else if (liftoff_iter->is_fp_reg()) {
switch (value.kind()) {
case TranslatedValue::Kind::kDouble:
output_frame->SetDoubleRegister(liftoff_iter->reg().fp().code(),
value.double_value());
break;
case TranslatedValue::Kind::kFloat:
static_assert(std::is_same_v<decltype(liftoff_iter->reg().fp()),
DoubleRegister>);
output_frame->SetDoubleRegister(
liftoff_iter->reg().fp().code(),
Float64::FromBits(value.float_value().get_bits()));
break;
case TranslatedValue::Kind::kSimd128:
output_frame->SetSimd128Register(liftoff_iter->reg().fp().code(),
value.simd_value());
break;
default:
UNIMPLEMENTED();
}
} else if (!Is64() && liftoff_iter->is_gp_reg_pair()) {
intptr_t reg_value = kZapValue;
switch (value.kind()) {
case TranslatedValue::Kind::kInt32:
reg_value = static_cast<uint32_t>(value.int32_value());
break;
case TranslatedValue::Kind::kTagged:
reg_value = value.raw_literal().ptr();
break;
default:
UNREACHABLE();
}
int8_t reg = int64_lowering_is_low
? liftoff_iter->reg().low_gp().code()
: liftoff_iter->reg().high_gp().code();
output_frame->SetRegister(reg, reg_value);
if (int64_lowering_is_low) skip_increase_liftoff_iter = true;
int64_lowering_is_low = !int64_lowering_is_low;
} else if (!Is64() && liftoff_iter->is_fp_reg_pair()) {
CHECK_EQ(value.kind(), TranslatedValue::Kind::kSimd128);
Simd128 simd_value = value.simd_value();
Address val_ptr = reinterpret_cast<Address>(&simd_value);
output_frame->SetDoubleRegister(
liftoff_iter->reg().low_fp().code(),
Float64::FromBits(base::ReadUnalignedValue<uint64_t>(val_ptr)));
output_frame->SetDoubleRegister(
liftoff_iter->reg().high_fp().code(),
Float64::FromBits(base::ReadUnalignedValue<uint64_t>(
val_ptr + sizeof(double))));
} else {
UNREACHABLE();
}
break;
case wasm::LiftoffVarState::kStack:
#ifdef V8_TARGET_BIG_ENDIAN
static constexpr int kLiftoffStackBias = 4;
#else
static constexpr int kLiftoffStackBias = 0;
#endif
switch (liftoff_iter->kind()) {
case wasm::ValueKind::kI32:
CHECK(value.kind() == TranslatedValue::Kind::kInt32 ||
value.kind() == TranslatedValue::Kind::kUint32);
output_frame->SetLiftoffFrameSlot32(
base_offset - liftoff_iter->offset() + kLiftoffStackBias,
value.int32_value_);
break;
case wasm::ValueKind::kF32:
CHECK_EQ(value.kind(), TranslatedValue::Kind::kFloat);
output_frame->SetLiftoffFrameSlot32(
base_offset - liftoff_iter->offset() + kLiftoffStackBias,
value.float_value().get_bits());
break;
case wasm::ValueKind::kI64:
if constexpr (Is64()) {
CHECK(value.kind() == TranslatedValue::Kind::kInt64 ||
value.kind() == TranslatedValue::Kind::kUint64);
output_frame->SetLiftoffFrameSlot64(
base_offset - liftoff_iter->offset(), value.int64_value_);
} else {
CHECK(value.kind() == TranslatedValue::Kind::kInt32 ||
value.kind() == TranslatedValue::Kind::kUint32);
if (int64_lowering_is_low) {
skip_increase_liftoff_iter = true;
output_frame->SetLiftoffFrameSlot32(
base_offset - liftoff_iter->offset(), value.int32_value_);
} else {
output_frame->SetLiftoffFrameSlot32(
base_offset - liftoff_iter->offset() + sizeof(int32_t),
value.int32_value_);
}
int64_lowering_is_low = !int64_lowering_is_low;
}
break;
case wasm::ValueKind::kS128: {
Simd128::int64x2 values = value.simd_value().to_i64x2();
const int offset = base_offset - liftoff_iter->offset();
output_frame->SetLiftoffFrameSlot64(offset, values[0]);
output_frame->SetLiftoffFrameSlot64(offset + sizeof(int64_t),
values[1]);
break;
}
case wasm::ValueKind::kF64:
CHECK_EQ(value.kind(), TranslatedValue::Kind::kDouble);
output_frame->SetLiftoffFrameSlot64(
base_offset - liftoff_iter->offset(),
value.double_value().get_bits());
break;
case wasm::ValueKind::kRef:
case wasm::ValueKind::kRefNull:
CHECK_EQ(value.kind(), TranslatedValue::Kind::kTagged);
output_frame->SetLiftoffFrameSlotPointer(
base_offset - liftoff_iter->offset(), value.raw_literal_.ptr());
break;
default:
UNIMPLEMENTED();
}
break;
}
DCHECK_IMPLIES(skip_increase_liftoff_iter, !Is64());
if (!skip_increase_liftoff_iter) {
++liftoff_iter;
}
}
uint32_t frame_type_offset =
base_offset + WasmLiftoffFrameConstants::kFrameTypeOffset;
output_frame->SetFrameSlot(frame_type_offset,
StackFrame::TypeToMarker(StackFrame::WASM));
uint32_t feedback_offset =
base_offset - WasmLiftoffFrameConstants::kFeedbackVectorOffset;
uint32_t fct_feedback_index = wasm::declared_function_index(
native_module->module(), frame.wasm_function_index());
output_frame->SetFrameSlot(feedback_offset,
Smi::FromInt(fct_feedback_index).ptr());
output_frame->SetContinuation(0);
const intptr_t fp_value = top + output_frame_size;
output_frame->SetFp(fp_value);
Register fp_reg = JavaScriptFrame::fp_register();
output_frame->SetRegister(fp_reg.code(), fp_value);
output_frame->SetRegister(kRootRegister.code(), isolate()->isolate_root());
#ifdef V8_COMPRESS_POINTERS
output_frame->SetRegister(kPtrComprCageBaseRegister.code(),
isolate()->cage_base());
#endif
return output_frame;
}
void Deoptimizer::DoComputeOutputFramesWasmImpl() {
CHECK(v8_flags.wasm_deopt);
base::ElapsedTimer timer;
wasm::WasmCode* code = compiled_optimized_wasm_code_;
DCHECK_NOT_NULL(code);
DCHECK_EQ(code->kind(), wasm::WasmCode::kWasmFunction);
wasm::WasmDeoptView deopt_view(code->deopt_data());
wasm::WasmDeoptEntry deopt_entry =
deopt_view.GetDeoptEntry(deopt_exit_index_);
if (tracing_enabled()) {
timer.Start();
FILE* file = trace_scope()->file();
PrintF(file,
"[bailout (kind: %s, reason: %s, type: Wasm): begin. deoptimizing "
"%s, function index %d, bytecode offset %d, deopt exit %d, FP to SP "
"delta %d, "
"pc " V8PRIxPTR_FMT "]\n",
MessageFor(deopt_kind_),
DeoptimizeReasonToString(DeoptimizeReason::kWrongCallTarget),
code->DebugName().c_str(), code->index(),
deopt_entry.bytecode_offset.ToInt(), deopt_entry.translation_index,
fp_to_sp_delta_, PointerAuthentication::StripPAC(from_));
}
base::Vector<const uint8_t> off_heap_translations =
deopt_view.GetTranslationsArray();
DeoptTranslationIterator state_iterator(off_heap_translations,
deopt_entry.translation_index);
wasm::NativeModule* native_module = code->native_module();
int parameter_count = static_cast<int>(
native_module->module()->functions[code->index()].sig->parameter_count());
DeoptimizationLiteralProvider literals(
deopt_view.BuildDeoptimizationLiteralArray());
Register fp_reg = JavaScriptFrame::fp_register();
stack_fp_ = input_->GetRegister(fp_reg.code());
Address fp_address = input_->GetFramePointerAddress();
caller_fp_ = Memory<intptr_t>(fp_address);
caller_pc_ =
Memory<intptr_t>(fp_address + CommonFrameConstants::kCallerPCOffset);
caller_frame_top_ = stack_fp_ + CommonFrameConstants::kFixedFrameSizeAboveFp +
input_->parameter_count() * kSystemPointerSize;
FILE* trace_file =
verbose_tracing_enabled() ? trace_scope()->file() : nullptr;
translated_state_.Init(isolate_, input_->GetFramePointerAddress(), stack_fp_,
&state_iterator, {}, literals,
input_->GetRegisterValues(), trace_file,
parameter_count, parameter_count);
const size_t output_frames = translated_state_.frames().size();
CHECK_GT(output_frames, 0);
output_count_ = static_cast<int>(output_frames);
output_ = new FrameDescription* [output_frames] {};
if (translated_state_.frames()[0].wasm_function_index() !=
compiled_optimized_wasm_code_->index()) {
CompileWithLiftoffAndGetDeoptInfo(native_module,
compiled_optimized_wasm_code_->index(),
deopt_entry.bytecode_offset, false);
}
Tagged<WasmTrustedInstanceData> wasm_trusted_instance =
TrustedCast<WasmTrustedInstanceData>((Tagged<Object>(input_->GetFrameSlot(
input_->GetFrameSize() -
(2 + input_->parameter_count()) * kSystemPointerSize -
WasmLiftoffFrameConstants::kInstanceDataOffset))));
std::stack<intptr_t> shadow_stack;
for (int i = 0; i < output_count_; ++i) {
TranslatedFrame& frame = translated_state_.frames()[i];
output_[i] = DoComputeWasmLiftoffFrame(
frame, native_module, wasm_trusted_instance, i, shadow_stack);
}
#ifdef V8_ENABLE_CET_SHADOW_STACK
if (v8_flags.cet_compatible) {
CHECK_EQ(shadow_stack_count_, 0);
shadow_stack_ = new intptr_t[shadow_stack.size()];
while (!shadow_stack.empty()) {
shadow_stack_[shadow_stack_count_++] = shadow_stack.top();
shadow_stack.pop();
}
CHECK_EQ(shadow_stack_count_, output_count_);
}
#endif
{
wasm::TypeFeedbackStorage& feedback =
native_module->module()->type_feedback;
base::MutexGuard mutex_guard(&feedback.mutex);
for (const TranslatedFrame& frame : translated_state_) {
int index = frame.wasm_function_index();
auto iter = feedback.feedback_for_function.find(index);
if (iter != feedback.feedback_for_function.end()) {
iter->second.needs_reprocessing_after_deopt = true;
}
}
feedback.feedback_for_function[code->index()].tierup_priority = 0;
isolate()->counters()->wasm_deopts_per_function()->AddSample(
++feedback.deopt_count_for_function[code->index()]);
}
int declared_func_index =
wasm::declared_function_index(native_module->module(), code->index());
{
AllowSandboxAccess sandbox_access_for_write;
wasm_trusted_instance->tiering_budget_array()[declared_func_index].store(
v8_flags.wasm_tiering_budget, std::memory_order_relaxed);
}
isolate()->counters()->wasm_deopts_executed()->AddSample(
wasm::GetWasmEngine()->IncrementDeoptsExecutedCount());
native_module->counter_updates()->Publish(isolate());
if (verbose_tracing_enabled()) {
TraceDeoptEnd(timer.Elapsed().InMillisecondsF());
}
}
void Deoptimizer::GetWasmStackSlotsCounts(const wasm::FunctionSig* sig,
int* parameter_stack_slots,
int* return_stack_slots) {
class DummyResultCollector {
public:
void AddParamAt(size_t index, LinkageLocation location) {}
void AddReturnAt(size_t index, LinkageLocation location) {}
} result_collector;
#if V8_TARGET_ARCH_32_BIT
if (!alloc_) {
DCHECK(!zone_);
alloc_.emplace();
zone_.emplace(&*alloc_, "deoptimizer i32sig lowering");
}
sig = GetI32Sig(&*zone_, sig);
#endif
int untagged_slots, untagged_return_slots;
wasm::IterateSignatureImpl(sig, false, result_collector, &untagged_slots,
parameter_stack_slots, &untagged_return_slots,
return_stack_slots);
}
#endif
namespace {
bool DeoptimizedMaglevvedCodeEarly(Isolate* isolate,
Tagged<JSFunction> function,
Tagged<Code> code) {
if (!code->is_maglevved()) return false;
if (function->tiering_in_progress() ||
function->GetRequestedOptimizationIfAny(isolate) ==
CodeKind::TURBOFAN_JS) {
return false;
}
int current_invocation_budget =
function->raw_feedback_cell()->interrupt_budget() /
function->shared()->GetBytecodeArray(isolate)->length();
return current_invocation_budget >=
v8_flags.invocation_count_for_turbofan -
v8_flags.invocation_count_for_maglev_with_delay;
}
}
void Deoptimizer::DoComputeOutputFrames() {
#if V8_TARGET_ARCH_STORES_RETURN_ADDRESS_ON_STACK
DCHECK_EQ(0, isolate()->isolate_data()->stack_is_iterable());
#endif
base::ElapsedTimer timer;
#if V8_ENABLE_WEBASSEMBLY
if (v8_flags.wasm_deopt && function_.is_null()) {
DoComputeOutputFramesWasmImpl();
return;
}
#endif
Tagged<DeoptimizationData> input_data = compiled_code_->deoptimization_data();
{
Register fp_reg = JavaScriptFrame::fp_register();
stack_fp_ = input_->GetRegister(fp_reg.code());
caller_frame_top_ = stack_fp_ + ComputeInputFrameAboveFpFixedSize();
Address fp_address = input_->GetFramePointerAddress();
caller_fp_ = Memory<intptr_t>(fp_address);
caller_pc_ =
Memory<intptr_t>(fp_address + CommonFrameConstants::kCallerPCOffset);
actual_argument_count_ = static_cast<int>(
Memory<intptr_t>(fp_address + StandardFrameConstants::kArgCOffset));
if (V8_EMBEDDED_CONSTANT_POOL_BOOL) {
caller_constant_pool_ = Memory<intptr_t>(
fp_address + CommonFrameConstants::kConstantPoolOffset);
}
}
StackGuard* const stack_guard = isolate()->stack_guard();
CHECK_GT(static_cast<uintptr_t>(caller_frame_top_),
stack_guard->real_jslimit());
BytecodeOffset bytecode_offset =
input_data->GetBytecodeOffsetOrBuiltinContinuationId(deopt_exit_index_);
auto translations = input_data->FrameTranslation();
unsigned translation_index =
input_data->TranslationIndex(deopt_exit_index_).value();
if (tracing_enabled()) {
timer.Start();
TraceDeoptBegin(input_data->OptimizationId().value(), bytecode_offset);
}
FILE* trace_file =
verbose_tracing_enabled() ? trace_scope()->file() : nullptr;
DeoptimizationFrameTranslation::Iterator state_iterator(translations,
translation_index);
DeoptimizationLiteralProvider literals(input_data->LiteralArray());
translated_state_.Init(isolate_, input_->GetFramePointerAddress(), stack_fp_,
&state_iterator, input_data->ProtectedLiteralArray(),
literals, input_->GetRegisterValues(), trace_file,
compiled_code_->parameter_count_without_receiver(),
actual_argument_count_ - kJSArgcReceiverSlots);
bytecode_offset_in_outermost_frame_ =
translated_state_.frames()[0].bytecode_offset();
size_t count = translated_state_.frames().size();
if (is_restart_frame()) {
count = restart_frame_index_ + 1;
} else if (deoptimizing_throw_) {
size_t catch_handler_frame_index = count;
for (size_t i = count; i-- > 0;) {
catch_handler_pc_offset_ = LookupCatchHandler(
isolate(), &(translated_state_.frames()[i]), &catch_handler_data_);
if (catch_handler_pc_offset_ >= 0) {
catch_handler_frame_index = i;
break;
}
}
CHECK_LT(catch_handler_frame_index, count);
count = catch_handler_frame_index + 1;
}
DCHECK_NULL(output_);
output_ = new FrameDescription* [count] {};
output_count_ = static_cast<int>(count);
int frame_index = 0;
size_t total_output_frame_size = 0;
for (size_t i = 0; i < count; ++i, ++frame_index) {
TranslatedFrame* translated_frame = &(translated_state_.frames()[i]);
const bool handle_exception = deoptimizing_throw_ && i == count - 1;
switch (translated_frame->kind()) {
case TranslatedFrame::kUnoptimizedFunction:
DoComputeUnoptimizedFrame(translated_frame, frame_index,
handle_exception);
break;
case TranslatedFrame::kInlinedExtraArguments:
DoComputeInlinedExtraArguments(translated_frame, frame_index);
break;
case TranslatedFrame::kConstructCreateStub:
DoComputeConstructCreateStubFrame(translated_frame, frame_index);
break;
case TranslatedFrame::kConstructInvokeStub:
DoComputeConstructInvokeStubFrame(translated_frame, frame_index);
break;
case TranslatedFrame::kBuiltinContinuation:
#if V8_ENABLE_WEBASSEMBLY
case TranslatedFrame::kJSToWasmBuiltinContinuation:
#endif
DoComputeBuiltinContinuation(translated_frame, frame_index,
BuiltinContinuationMode::STUB);
break;
case TranslatedFrame::kJavaScriptBuiltinContinuation:
DoComputeBuiltinContinuation(translated_frame, frame_index,
BuiltinContinuationMode::JAVASCRIPT);
break;
case TranslatedFrame::kJavaScriptBuiltinContinuationWithCatch:
DoComputeBuiltinContinuation(
translated_frame, frame_index,
handle_exception
? BuiltinContinuationMode::JAVASCRIPT_HANDLE_EXCEPTION
: BuiltinContinuationMode::JAVASCRIPT_WITH_CATCH);
break;
#if V8_ENABLE_WEBASSEMBLY
case TranslatedFrame::kWasmInlinedIntoJS:
FATAL("inlined wasm frames may not appear in JS deopts");
case TranslatedFrame::kLiftoffFunction:
FATAL("wasm liftoff frames may not appear in JS deopts");
#endif
case TranslatedFrame::kInvalid:
FATAL("invalid frame");
}
total_output_frame_size += output_[frame_index]->GetFrameSize();
}
FrameDescription* topmost = output_[count - 1];
topmost->GetRegisterValues()->SetRegister(kRootRegister.code(),
isolate()->isolate_root());
#ifdef V8_COMPRESS_POINTERS
topmost->GetRegisterValues()->SetRegister(kPtrComprCageBaseRegister.code(),
isolate()->cage_base());
#endif
#ifdef V8_ENABLE_CET_SHADOW_STACK
if (v8_flags.cet_compatible) {
CHECK_EQ(shadow_stack_count_, 0);
shadow_stack_ = new intptr_t[count + 1];
if (output_[count - 1]->GetContinuation()) {
shadow_stack_[shadow_stack_count_++] =
output_[count - 1]->GetContinuation();
output_[count - 1]->SetContinuation(0);
}
shadow_stack_[shadow_stack_count_++] =
output_[count - 1]->GetPc() -
Deoptimizer::kAdaptShadowStackOffsetToSubtract;
for (int i = static_cast<int>(count) - 1; i > 0; i--) {
if (!output_[i]->HasCallerPc()) continue;
shadow_stack_[shadow_stack_count_++] =
output_[i]->GetCallerPc() -
Deoptimizer::kAdaptShadowStackOffsetToSubtract;
}
}
#endif
if (IsJSFunction(function_)) {
code_validity_ = CodeValidity::kUnaffected;
if (deopt_kind_ == DeoptimizeKind::kEager &&
!IsDeoptimizationWithoutCodeInvalidation(GetDeoptInfo().deopt_reason) &&
!compiled_code_->marked_for_deoptimization()) {
if (compiled_code_->osr_offset().IsNone()) {
static_assert(!kAllCodeObjectsLiveInTrustedSpace);
if (function_->code(isolate()).SafeEquals(compiled_code_)) {
code_validity_ = CodeValidity::kInvalidated;
}
} else {
DCHECK_NE(GetDeoptInfo().deopt_reason, DeoptimizeReason::kOSREarlyExit);
if (DeoptExitIsInsideOsrLoop(
isolate(), function_, bytecode_offset_in_outermost_frame_,
compiled_code_->osr_offset(), compiled_code_->kind())) {
code_validity_ = CodeValidity::kInvalidatedOsr;
}
}
}
if (code_validity_ != CodeValidity::kUnaffected) {
if (v8_flags.profile_guided_optimization &&
function_->shared()->cached_tiering_decision() !=
CachedTieringDecision::kDelayMaglev) {
if (DeoptimizedMaglevvedCodeEarly(isolate(), function_,
compiled_code_)) {
function_->shared()->set_cached_tiering_decision(
CachedTieringDecision::kDelayMaglev);
} else {
function_->shared()->set_cached_tiering_decision(
CachedTieringDecision::kNormal);
}
}
function_->ResetTieringRequests();
function_->SetTieringInProgress(isolate_, false);
function_->SetInterruptBudget(isolate_, BudgetModification::kReset,
CodeKind::INTERPRETED_FUNCTION);
function_->feedback_vector()->set_was_once_deoptimized();
}
}
if (verbose_tracing_enabled()) {
TraceDeoptEnd(timer.Elapsed().InMillisecondsF());
}
isolate()->counters()->deopts()->Increment();
CHECK_GT(
static_cast<uintptr_t>(caller_frame_top_) - total_output_frame_size,
stack_guard->real_jslimit() - kStackLimitSlackForDeoptimizationInBytes);
}
bool Deoptimizer::DeoptExitIsInsideOsrLoop(Isolate* isolate,
Tagged<JSFunction> function,
BytecodeOffset deopt_exit_offset,
BytecodeOffset osr_offset,
CodeKind code_kind) {
DisallowGarbageCollection no_gc;
HandleScope scope(isolate);
DCHECK(!deopt_exit_offset.IsNone());
DCHECK(!osr_offset.IsNone());
Handle<BytecodeArray> bytecode_array(
function->shared()->GetBytecodeArray(isolate), isolate);
DCHECK(interpreter::BytecodeArrayIterator::IsValidOffset(
bytecode_array, deopt_exit_offset.ToInt()));
interpreter::BytecodeArrayIterator it(bytecode_array, osr_offset.ToInt());
CHECK(it.CurrentBytecodeIsValidOSREntry());
const int osr_loop_nesting_level = it.GetImmediateOperand(1);
for (; !it.done(); it.Advance()) {
const int current_offset = it.current_offset();
if (current_offset == deopt_exit_offset.ToInt()) return true;
if (it.current_bytecode() != interpreter::Bytecode::kJumpLoop) continue;
if (base::IsInRange(deopt_exit_offset.ToInt(), it.GetJumpTargetOffset(),
current_offset)) {
return true;
}
const int loop_nesting_level = it.GetImmediateOperand(1);
if (loop_nesting_level == 0) return false;
if (code_kind == CodeKind::MAGLEV &&
loop_nesting_level < osr_loop_nesting_level) {
return false;
}
}
UNREACHABLE();
}
bool Deoptimizer::GetOutermostOuterLoopWithCodeKind(
Isolate* isolate, Tagged<JSFunction> function, BytecodeOffset osr_offset,
CodeKind outer_loop_code_kind, BytecodeOffset* outer_loop_osr_offset) {
DisallowGarbageCollection no_gc;
HandleScope scope(isolate);
DCHECK(!osr_offset.IsNone());
Handle<BytecodeArray> bytecode_array(
function->shared()->GetBytecodeArray(isolate), isolate);
interpreter::BytecodeArrayIterator it(bytecode_array, osr_offset.ToInt());
CHECK(it.CurrentBytecodeIsValidOSREntry());
bool loop_found = false;
for (; !it.done(); it.Advance()) {
if (it.current_bytecode() != interpreter::Bytecode::kJumpLoop) continue;
std::optional<Tagged<Code>> maybe_code =
function->feedback_vector()->GetOptimizedOsrCode(isolate, {},
it.GetSlotOperand(2));
if (maybe_code.has_value() &&
(*maybe_code)->kind() == outer_loop_code_kind) {
*outer_loop_osr_offset = BytecodeOffset(it.current_offset());
loop_found = true;
}
const int loop_nesting_level = it.GetImmediateOperand(1);
if (loop_nesting_level == 0) {
break;
}
}
return loop_found;
}
namespace {
Builtin DispatchBuiltinFor(bool advance_bc, bool is_restart_frame) {
if (is_restart_frame) return Builtin::kRestartFrameTrampoline;
return advance_bc ? Builtin::kInterpreterEnterAtNextBytecode
: Builtin::kInterpreterEnterAtBytecode;
}
}
void Deoptimizer::DoComputeUnoptimizedFrame(TranslatedFrame* translated_frame,
int frame_index,
bool goto_catch_handler) {
Tagged<BytecodeArray> bytecode_array = translated_frame->raw_bytecode_array();
TranslatedFrame::iterator value_iterator = translated_frame->begin();
const bool is_bottommost = (0 == frame_index);
const bool is_topmost = (output_count_ - 1 == frame_index);
const int real_bytecode_offset = translated_frame->bytecode_offset().ToInt();
const int bytecode_offset =
goto_catch_handler ? catch_handler_pc_offset_ : real_bytecode_offset;
const int parameters_count = bytecode_array->parameter_count();
bool should_pad_arguments =
!is_bottommost && (translated_state_.frames()[frame_index - 1]).kind() !=
TranslatedFrame::kInlinedExtraArguments;
const int locals_count = translated_frame->height();
UnoptimizedFrameInfo frame_info = UnoptimizedFrameInfo::Precise(
parameters_count, locals_count, is_topmost, should_pad_arguments);
const uint32_t output_frame_size = frame_info.frame_size_in_bytes();
TranslatedFrame::iterator function_iterator = value_iterator++;
std::optional<Tagged<DebugInfo>> debug_info =
translated_frame->raw_shared_info()->TryGetDebugInfo(isolate());
if (debug_info.has_value() && debug_info.value()->HasBreakInfo()) {
bytecode_array = debug_info.value()->DebugBytecodeArray(isolate());
}
FrameDescription* output_frame =
FrameDescription::Create(output_frame_size, parameters_count, isolate());
FrameWriter frame_writer(this, output_frame, verbose_trace_scope());
CHECK(frame_index >= 0 && frame_index < output_count_);
CHECK_NULL(output_[frame_index]);
output_[frame_index] = output_frame;
Builtins* builtins = isolate_->builtins();
const bool advance_bc =
(!is_topmost || (deopt_kind_ == DeoptimizeKind::kLazy)) &&
!goto_catch_handler;
const bool restart_frame = goto_catch_handler && is_restart_frame();
Tagged<Code> dispatch_builtin =
builtins->code(DispatchBuiltinFor(advance_bc, restart_frame));
if (verbose_tracing_enabled()) {
PrintF(trace_scope()->file(), " translating interpreted frame ");
std::unique_ptr<char[]> name =
translated_frame->raw_shared_info()->DebugNameCStr();
PrintF(trace_scope()->file(), "%s", name.get());
PrintF(trace_scope()->file(), " => bytecode_offset=%d, ",
real_bytecode_offset);
PrintF(trace_scope()->file(), "variable_frame_size=%d, frame_size=%d%s\n",
frame_info.frame_size_in_bytes_without_fixed(), output_frame_size,
goto_catch_handler ? " (throw)" : "");
}
const intptr_t top_address =
is_bottommost ? caller_frame_top_ - output_frame_size
: output_[frame_index - 1]->GetTop() - output_frame_size;
output_frame->SetTop(top_address);
ReadOnlyRoots roots(isolate());
if (should_pad_arguments) {
for (int i = 0; i < ArgumentPaddingSlots(parameters_count); ++i) {
frame_writer.PushRawObject(roots.the_hole_value(), "padding\n");
}
}
if (verbose_tracing_enabled() && is_bottommost &&
actual_argument_count_ > parameters_count) {
PrintF(trace_scope_->file(),
" -- %d extra argument(s) already in the stack --\n",
actual_argument_count_ - parameters_count);
}
frame_writer.PushStackJSArguments(value_iterator, parameters_count);
DCHECK_EQ(output_frame->GetLastArgumentSlotOffset(should_pad_arguments),
frame_writer.top_offset());
if (verbose_tracing_enabled()) {
PrintF(trace_scope()->file(), " -------------------------\n");
}
if (is_bottommost) {
frame_writer.PushBottommostCallerPc(caller_pc_);
} else {
frame_writer.PushApprovedCallerPc(output_[frame_index - 1]->GetPc());
}
const intptr_t caller_fp =
is_bottommost ? caller_fp_ : output_[frame_index - 1]->GetFp();
frame_writer.PushCallerFp(caller_fp);
const intptr_t fp_value = top_address + frame_writer.top_offset();
output_frame->SetFp(fp_value);
if (is_topmost) {
Register fp_reg = UnoptimizedJSFrame::fp_register();
output_frame->SetRegister(fp_reg.code(), fp_value);
}
if (V8_EMBEDDED_CONSTANT_POOL_BOOL) {
const intptr_t caller_cp =
is_bottommost ? caller_constant_pool_
: output_[frame_index - 1]->GetConstantPool();
frame_writer.PushCallerConstantPool(caller_cp);
}
TranslatedFrame::iterator context_pos = value_iterator++;
if (goto_catch_handler) {
for (int i = 0; i < catch_handler_data_ + 1; ++i) {
context_pos++;
}
}
frame_writer.PushTranslatedValue(context_pos, "context");
frame_writer.PushTranslatedValue(function_iterator, "function");
int argc;
if (is_bottommost) {
argc = actual_argument_count_;
} else {
TranslatedFrame::Kind previous_frame_kind =
(translated_state_.frames()[frame_index - 1]).kind();
argc = previous_frame_kind == TranslatedFrame::kInlinedExtraArguments
? output_[frame_index - 1]->parameter_count()
: parameters_count;
}
frame_writer.PushRawValue(argc, "actual argument count\n");
frame_writer.PushRawObject(bytecode_array, "bytecode array\n");
const int raw_bytecode_offset =
BytecodeArray::kHeaderSize - kHeapObjectTag + bytecode_offset;
Tagged<Smi> smi_bytecode_offset = Smi::FromInt(raw_bytecode_offset);
frame_writer.PushRawObject(smi_bytecode_offset, "bytecode offset\n");
frame_writer.PushFeedbackVectorForMaterialization(function_iterator);
if (verbose_tracing_enabled()) {
PrintF(trace_scope()->file(), " -------------------------\n");
}
const int return_value_first_reg =
locals_count - translated_frame->return_value_offset();
const int return_value_count = translated_frame->return_value_count();
for (int i = 0; i < locals_count; ++i, ++value_iterator) {
if (is_topmost && !goto_catch_handler &&
deopt_kind_ == DeoptimizeKind::kLazy && i >= return_value_first_reg &&
i < return_value_first_reg + return_value_count) {
const int return_index = i - return_value_first_reg;
if (return_index == 0) {
frame_writer.PushRawValue(input_->GetRegister(kReturnRegister0.code()),
"return value 0\n");
CHECK_LE(return_value_first_reg + return_value_count, locals_count);
} else {
CHECK_EQ(return_index, 1);
frame_writer.PushRawValue(input_->GetRegister(kReturnRegister1.code()),
"return value 1\n");
}
} else {
frame_writer.PushTranslatedValue(value_iterator, "stack parameter");
}
}
uint32_t register_slots_written = static_cast<uint32_t>(locals_count);
DCHECK_LE(register_slots_written, frame_info.register_stack_slot_count());
while (register_slots_written < frame_info.register_stack_slot_count()) {
register_slots_written++;
frame_writer.PushRawObject(roots.the_hole_value(), "padding\n");
}
if (is_topmost) {
for (int i = 0; i < ArgumentPaddingSlots(1); ++i) {
frame_writer.PushRawObject(roots.the_hole_value(), "padding\n");
}
if (goto_catch_handler) {
intptr_t accumulator_value =
input_->GetRegister(kInterpreterAccumulatorRegister.code());
frame_writer.PushRawObject(Tagged<Object>(accumulator_value),
"accumulator\n");
} else {
if (deopt_kind_ == DeoptimizeKind::kLazy &&
translated_frame->return_value_offset() == 0 &&
translated_frame->return_value_count() > 0) {
CHECK_EQ(translated_frame->return_value_count(), 1);
frame_writer.PushRawValue(input_->GetRegister(kReturnRegister0.code()),
"return value 0\n");
} else {
frame_writer.PushTranslatedValue(value_iterator, "accumulator");
}
}
++value_iterator;
} else {
++value_iterator;
}
CHECK_EQ(translated_frame->end(), value_iterator);
CHECK_EQ(0u, frame_writer.top_offset());
const intptr_t pc =
static_cast<intptr_t>(dispatch_builtin->instruction_start()) +
isolate()->heap()->deopt_pc_offset_after_adapt_shadow_stack().value();
if (is_topmost) {
const intptr_t top_most_pc = PointerAuthentication::SignAndCheckPC(
isolate(), pc, frame_writer.frame()->GetTop());
output_frame->SetPc(top_most_pc);
} else {
output_frame->SetPc(pc);
}
if (V8_EMBEDDED_CONSTANT_POOL_BOOL) {
intptr_t constant_pool_value =
static_cast<intptr_t>(dispatch_builtin->constant_pool());
output_frame->SetConstantPool(constant_pool_value);
if (is_topmost) {
Register constant_pool_reg =
UnoptimizedJSFrame::constant_pool_pointer_register();
output_frame->SetRegister(constant_pool_reg.code(), constant_pool_value);
}
}
if (is_topmost) {
intptr_t context_value = static_cast<intptr_t>(Smi::zero().ptr());
Register context_reg = JavaScriptFrame::context_register();
output_frame->SetRegister(context_reg.code(), context_value);
Tagged<Code> continuation = builtins->code(Builtin::kNotifyDeoptimized);
output_frame->SetContinuation(
static_cast<intptr_t>(continuation->instruction_start()));
}
}
void Deoptimizer::DoComputeInlinedExtraArguments(
TranslatedFrame* translated_frame, int frame_index) {
CHECK(frame_index < output_count_ - 1);
CHECK_GT(frame_index, 0);
CHECK_NULL(output_[frame_index]);
TranslatedFrame::iterator value_iterator = translated_frame->begin();
const int argument_count_without_receiver = translated_frame->height() - 1;
const int formal_parameter_count_without_receiver =
translated_frame->formal_parameter_count() - 1;
SBXCHECK_GE(formal_parameter_count_without_receiver, 0);
const int extra_argument_count =
argument_count_without_receiver - formal_parameter_count_without_receiver;
const int padding =
ArgumentPaddingSlots(std::max(argument_count_without_receiver,
formal_parameter_count_without_receiver) +
1);
const int output_frame_size =
(std::max(0, extra_argument_count) + padding) * kSystemPointerSize;
if (verbose_tracing_enabled()) {
PrintF(trace_scope_->file(),
" translating inlined arguments frame => variable_size=%d\n",
output_frame_size);
}
FrameDescription* output_frame = FrameDescription::Create(
output_frame_size, JSParameterCount(argument_count_without_receiver),
isolate());
const intptr_t top_address =
output_[frame_index - 1]->GetTop() - output_frame_size;
output_frame->SetTop(top_address);
output_frame->SetPc(output_[frame_index - 1]->GetPc());
output_frame->SetFp(output_[frame_index - 1]->GetFp());
output_[frame_index] = output_frame;
FrameWriter frame_writer(this, output_frame, verbose_trace_scope());
ReadOnlyRoots roots(isolate());
for (int i = 0; i < padding; ++i) {
frame_writer.PushRawObject(roots.the_hole_value(), "padding\n");
}
if (extra_argument_count > 0) {
value_iterator++;
value_iterator++;
for (int i = 0; i < formal_parameter_count_without_receiver; i++)
value_iterator++;
frame_writer.PushStackJSArguments(value_iterator, extra_argument_count);
}
}
void Deoptimizer::DoComputeConstructCreateStubFrame(
TranslatedFrame* translated_frame, int frame_index) {
TranslatedFrame::iterator value_iterator = translated_frame->begin();
const bool is_topmost = (output_count_ - 1 == frame_index);
CHECK(!is_topmost || deopt_kind_ == DeoptimizeKind::kLazy);
DCHECK_EQ(translated_frame->kind(), TranslatedFrame::kConstructCreateStub);
const int parameters_count = translated_frame->height();
ConstructStubFrameInfo frame_info =
ConstructStubFrameInfo::Precise(parameters_count, is_topmost);
const uint32_t output_frame_size = frame_info.frame_size_in_bytes();
TranslatedFrame::iterator function_iterator = value_iterator++;
if (verbose_tracing_enabled()) {
PrintF(trace_scope()->file(),
" translating construct create stub => variable_frame_size=%d, "
"frame_size=%d\n",
frame_info.frame_size_in_bytes_without_fixed(), output_frame_size);
}
FrameDescription* output_frame =
FrameDescription::Create(output_frame_size, parameters_count, isolate());
FrameWriter frame_writer(this, output_frame, verbose_trace_scope());
DCHECK(frame_index > 0 && frame_index < output_count_);
DCHECK_NULL(output_[frame_index]);
output_[frame_index] = output_frame;
const intptr_t top_address =
output_[frame_index - 1]->GetTop() - output_frame_size;
output_frame->SetTop(top_address);
ReadOnlyRoots roots(isolate());
for (int i = 0; i < ArgumentPaddingSlots(parameters_count); ++i) {
frame_writer.PushRawObject(roots.the_hole_value(), "padding\n");
}
TranslatedFrame::iterator receiver_iterator = value_iterator;
frame_writer.PushStackJSArguments(value_iterator, parameters_count);
DCHECK_EQ(output_frame->GetLastArgumentSlotOffset(),
frame_writer.top_offset());
const intptr_t caller_pc = output_[frame_index - 1]->GetPc();
frame_writer.PushApprovedCallerPc(caller_pc);
const intptr_t caller_fp = output_[frame_index - 1]->GetFp();
frame_writer.PushCallerFp(caller_fp);
const intptr_t fp_value = top_address + frame_writer.top_offset();
output_frame->SetFp(fp_value);
if (is_topmost) {
Register fp_reg = JavaScriptFrame::fp_register();
output_frame->SetRegister(fp_reg.code(), fp_value);
}
if (V8_EMBEDDED_CONSTANT_POOL_BOOL) {
const intptr_t caller_cp = output_[frame_index - 1]->GetConstantPool();
frame_writer.PushCallerConstantPool(caller_cp);
}
intptr_t marker = StackFrame::TypeToMarker(StackFrame::CONSTRUCT);
frame_writer.PushRawValue(marker, "context (construct stub sentinel)\n");
frame_writer.PushTranslatedValue(value_iterator++, "context");
const uint32_t argc = parameters_count;
frame_writer.PushRawValue(argc, "argc\n");
frame_writer.PushTranslatedValue(function_iterator, "constructor function\n");
frame_writer.PushRawObject(roots.the_hole_value(), "padding\n");
frame_writer.PushTranslatedValue(receiver_iterator, "new target\n");
if (is_topmost) {
for (int i = 0; i < ArgumentPaddingSlots(1); ++i) {
frame_writer.PushRawObject(roots.the_hole_value(), "padding\n");
}
Register result_reg = kReturnRegister0;
intptr_t result = input_->GetRegister(result_reg.code());
frame_writer.PushRawValue(result, "subcall result\n");
}
CHECK_EQ(translated_frame->end(), value_iterator);
CHECK_EQ(0u, frame_writer.top_offset());
Tagged<Code> construct_stub =
isolate_->builtins()->code(Builtin::kJSConstructStubGeneric);
Address start = construct_stub->instruction_start();
const int pc_offset =
isolate_->heap()->construct_stub_create_deopt_pc_offset().value();
intptr_t pc_value = static_cast<intptr_t>(start + pc_offset);
if (is_topmost) {
output_frame->SetPc(PointerAuthentication::SignAndCheckPC(
isolate(), pc_value, frame_writer.frame()->GetTop()));
} else {
output_frame->SetPc(pc_value);
}
if (V8_EMBEDDED_CONSTANT_POOL_BOOL) {
intptr_t constant_pool_value =
static_cast<intptr_t>(construct_stub->constant_pool());
output_frame->SetConstantPool(constant_pool_value);
if (is_topmost) {
Register constant_pool_reg =
JavaScriptFrame::constant_pool_pointer_register();
output_frame->SetRegister(constant_pool_reg.code(), constant_pool_value);
}
}
if (is_topmost) {
intptr_t context_value = static_cast<intptr_t>(Smi::zero().ptr());
Register context_reg = JavaScriptFrame::context_register();
output_frame->SetRegister(context_reg.code(), context_value);
DCHECK_EQ(DeoptimizeKind::kLazy, deopt_kind_);
Tagged<Code> continuation =
isolate_->builtins()->code(Builtin::kNotifyDeoptimized);
output_frame->SetContinuation(
static_cast<intptr_t>(continuation->instruction_start()));
}
}
void Deoptimizer::DoComputeConstructInvokeStubFrame(
TranslatedFrame* translated_frame, int frame_index) {
TranslatedFrame::iterator value_iterator = translated_frame->begin();
const bool is_topmost = (output_count_ - 1 == frame_index);
CHECK(!is_topmost || deopt_kind_ == DeoptimizeKind::kLazy);
DCHECK_EQ(translated_frame->kind(), TranslatedFrame::kConstructInvokeStub);
DCHECK_EQ(translated_frame->height(), 0);
FastConstructStubFrameInfo frame_info =
FastConstructStubFrameInfo::Precise(is_topmost);
const uint32_t output_frame_size = frame_info.frame_size_in_bytes();
if (verbose_tracing_enabled()) {
PrintF(trace_scope()->file(),
" translating construct invoke stub => variable_frame_size=%d, "
"frame_size=%d\n",
frame_info.frame_size_in_bytes_without_fixed(), output_frame_size);
}
FrameDescription* output_frame =
FrameDescription::Create(output_frame_size, 0, isolate());
FrameWriter frame_writer(this, output_frame, verbose_trace_scope());
DCHECK(frame_index > 0 && frame_index < output_count_);
DCHECK_NULL(output_[frame_index]);
output_[frame_index] = output_frame;
const intptr_t top_address =
output_[frame_index - 1]->GetTop() - output_frame_size;
output_frame->SetTop(top_address);
TranslatedFrame::iterator receiver_iterator = value_iterator;
value_iterator++;
const intptr_t caller_pc = output_[frame_index - 1]->GetPc();
frame_writer.PushApprovedCallerPc(caller_pc);
const intptr_t caller_fp = output_[frame_index - 1]->GetFp();
frame_writer.PushCallerFp(caller_fp);
const intptr_t fp_value = top_address + frame_writer.top_offset();
output_frame->SetFp(fp_value);
if (is_topmost) {
Register fp_reg = JavaScriptFrame::fp_register();
output_frame->SetRegister(fp_reg.code(), fp_value);
}
if (V8_EMBEDDED_CONSTANT_POOL_BOOL) {
const intptr_t caller_cp = output_[frame_index - 1]->GetConstantPool();
frame_writer.PushCallerConstantPool(caller_cp);
}
intptr_t marker = StackFrame::TypeToMarker(StackFrame::FAST_CONSTRUCT);
frame_writer.PushRawValue(marker, "fast construct stub sentinel\n");
frame_writer.PushTranslatedValue(value_iterator++, "context");
frame_writer.PushTranslatedValue(receiver_iterator, "implicit receiver");
ReadOnlyRoots roots(isolate());
for (int i = 0; i < ArgumentPaddingSlots(1); ++i) {
frame_writer.PushRawObject(roots.the_hole_value(), "padding\n");
}
if (is_topmost) {
for (int i = 0; i < ArgumentPaddingSlots(1); ++i) {
frame_writer.PushRawObject(roots.the_hole_value(), "padding\n");
}
Register result_reg = kReturnRegister0;
intptr_t result = input_->GetRegister(result_reg.code());
frame_writer.PushRawValue(result, "subcall result\n");
}
CHECK_EQ(translated_frame->end(), value_iterator);
CHECK_EQ(0u, frame_writer.top_offset());
Tagged<Code> construct_stub = isolate_->builtins()->code(
Builtin::kInterpreterPushArgsThenFastConstructFunction);
Address start = construct_stub->instruction_start();
const int pc_offset =
isolate_->heap()->construct_stub_invoke_deopt_pc_offset().value();
intptr_t pc_value = static_cast<intptr_t>(start + pc_offset);
if (is_topmost) {
output_frame->SetPc(PointerAuthentication::SignAndCheckPC(
isolate(), pc_value, frame_writer.frame()->GetTop()));
} else {
output_frame->SetPc(pc_value);
}
if (V8_EMBEDDED_CONSTANT_POOL_BOOL) {
intptr_t constant_pool_value =
static_cast<intptr_t>(construct_stub->constant_pool());
output_frame->SetConstantPool(constant_pool_value);
if (is_topmost) {
Register constant_pool_reg =
JavaScriptFrame::constant_pool_pointer_register();
output_frame->SetRegister(constant_pool_reg.code(), constant_pool_value);
}
}
if (is_topmost) {
intptr_t context_value = static_cast<intptr_t>(Smi::zero().ptr());
Register context_reg = JavaScriptFrame::context_register();
output_frame->SetRegister(context_reg.code(), context_value);
DCHECK_EQ(DeoptimizeKind::kLazy, deopt_kind_);
Tagged<Code> continuation =
isolate_->builtins()->code(Builtin::kNotifyDeoptimized);
output_frame->SetContinuation(
static_cast<intptr_t>(continuation->instruction_start()));
}
}
namespace {
bool BuiltinContinuationModeIsJavaScript(BuiltinContinuationMode mode) {
switch (mode) {
case BuiltinContinuationMode::STUB:
return false;
case BuiltinContinuationMode::JAVASCRIPT:
case BuiltinContinuationMode::JAVASCRIPT_WITH_CATCH:
case BuiltinContinuationMode::JAVASCRIPT_HANDLE_EXCEPTION:
return true;
}
UNREACHABLE();
}
StackFrame::Type BuiltinContinuationModeToFrameType(
BuiltinContinuationMode mode) {
switch (mode) {
case BuiltinContinuationMode::STUB:
return StackFrame::BUILTIN_CONTINUATION;
case BuiltinContinuationMode::JAVASCRIPT:
return StackFrame::JAVASCRIPT_BUILTIN_CONTINUATION;
case BuiltinContinuationMode::JAVASCRIPT_WITH_CATCH:
return StackFrame::JAVASCRIPT_BUILTIN_CONTINUATION_WITH_CATCH;
case BuiltinContinuationMode::JAVASCRIPT_HANDLE_EXCEPTION:
return StackFrame::JAVASCRIPT_BUILTIN_CONTINUATION_WITH_CATCH;
}
UNREACHABLE();
}
}
Builtin Deoptimizer::TrampolineForBuiltinContinuation(
BuiltinContinuationMode mode, bool must_handle_result) {
switch (mode) {
case BuiltinContinuationMode::STUB:
return must_handle_result ? Builtin::kContinueToCodeStubBuiltinWithResult
: Builtin::kContinueToCodeStubBuiltin;
case BuiltinContinuationMode::JAVASCRIPT:
case BuiltinContinuationMode::JAVASCRIPT_WITH_CATCH:
case BuiltinContinuationMode::JAVASCRIPT_HANDLE_EXCEPTION:
return must_handle_result
? Builtin::kContinueToJavaScriptBuiltinWithResult
: Builtin::kContinueToJavaScriptBuiltin;
}
UNREACHABLE();
}
#if V8_ENABLE_WEBASSEMBLY
TranslatedValue Deoptimizer::TranslatedValueForWasmReturnKind(
std::optional<wasm::ValueKind> wasm_call_return_kind) {
if (wasm_call_return_kind) {
switch (wasm_call_return_kind.value()) {
case wasm::kI32:
return TranslatedValue::NewInt32(
&translated_state_,
static_cast<int32_t>(input_->GetRegister(kReturnRegister0.code())));
case wasm::kI64:
return TranslatedValue::NewInt64ToBigInt(
&translated_state_,
static_cast<int64_t>(input_->GetRegister(kReturnRegister0.code())));
case wasm::kF32:
return TranslatedValue::NewFloat(
&translated_state_,
input_->GetFloatRegister(wasm::kFpReturnRegisters[0].code()));
case wasm::kF64:
return TranslatedValue::NewDouble(
&translated_state_,
input_->GetDoubleRegister(wasm::kFpReturnRegisters[0].code()));
case wasm::kRefNull:
case wasm::kRef:
return TranslatedValue::NewTagged(
&translated_state_,
Tagged<Object>(input_->GetRegister(kReturnRegister0.code())));
default:
UNREACHABLE();
}
}
return TranslatedValue::NewTagged(&translated_state_,
ReadOnlyRoots(isolate()).undefined_value());
}
#endif
void Deoptimizer::DoComputeBuiltinContinuation(
TranslatedFrame* translated_frame, int frame_index,
BuiltinContinuationMode mode) {
TranslatedFrame::iterator result_iterator = translated_frame->end();
bool is_js_to_wasm_builtin_continuation = false;
#if V8_ENABLE_WEBASSEMBLY
is_js_to_wasm_builtin_continuation =
translated_frame->kind() == TranslatedFrame::kJSToWasmBuiltinContinuation;
if (is_js_to_wasm_builtin_continuation) {
TranslatedValue result = TranslatedValueForWasmReturnKind(
translated_frame->wasm_call_return_kind());
translated_frame->Add(result);
}
#endif
TranslatedFrame::iterator value_iterator = translated_frame->begin();
const BytecodeOffset bytecode_offset = translated_frame->bytecode_offset();
Builtin builtin = Builtins::GetBuiltinFromBytecodeOffset(bytecode_offset);
CallInterfaceDescriptor continuation_descriptor =
Builtins::CallInterfaceDescriptorFor(builtin);
const RegisterConfiguration* config = RegisterConfiguration::Default();
const bool is_bottommost = (0 == frame_index);
const bool is_topmost = (output_count_ - 1 == frame_index);
const int parameters_count = translated_frame->height();
BuiltinContinuationFrameInfo frame_info =
BuiltinContinuationFrameInfo::Precise(parameters_count,
continuation_descriptor, config,
is_topmost, deopt_kind_, mode);
const unsigned output_frame_size = frame_info.frame_size_in_bytes();
const unsigned output_frame_size_above_fp =
frame_info.frame_size_in_bytes_above_fp();
bool has_argc = false;
const int register_parameter_count =
continuation_descriptor.GetRegisterParameterCount();
for (int i = 0; i < register_parameter_count; ++i) {
MachineType type = continuation_descriptor.GetParameterType(i);
int code = continuation_descriptor.GetRegisterParameter(i).code();
if (type == MachineType::Int32()) {
CHECK(code == kJavaScriptCallArgCountRegister.code() ||
code == kJavaScriptCallDispatchHandleRegister.code());
has_argc = true;
} else {
CHECK(IsAnyTagged(type.representation()));
}
}
CHECK_EQ(BuiltinContinuationModeIsJavaScript(mode), has_argc);
if (verbose_tracing_enabled()) {
PrintF(trace_scope()->file(),
" translating BuiltinContinuation to %s,"
" => register_param_count=%d,"
" stack_param_count=%d, frame_size=%d\n",
Builtins::name(builtin), register_parameter_count,
frame_info.stack_parameter_count(), output_frame_size);
}
FrameDescription* output_frame = FrameDescription::Create(
output_frame_size, frame_info.stack_parameter_count(), isolate());
output_[frame_index] = output_frame;
FrameWriter frame_writer(this, output_frame, verbose_trace_scope());
const intptr_t top_address =
is_bottommost ? caller_frame_top_ - output_frame_size
: output_[frame_index - 1]->GetTop() - output_frame_size;
output_frame->SetTop(top_address);
const intptr_t maybe_function = value_iterator->GetRawValue().ptr();
++value_iterator;
ReadOnlyRoots roots(isolate());
const int padding = ArgumentPaddingSlots(frame_info.stack_parameter_count());
for (int i = 0; i < padding; ++i) {
frame_writer.PushRawObject(roots.the_hole_value(), "padding\n");
}
std::vector<TranslatedFrame::iterator> register_values;
int total_registers = config->num_general_registers();
register_values.resize(total_registers, {value_iterator});
if (mode == BuiltinContinuationMode::STUB) {
for (int i = 0; i < register_parameter_count; ++i, ++value_iterator) {
int code = continuation_descriptor.GetRegisterParameter(i).code();
register_values[code] = value_iterator;
}
DCHECK_EQ(continuation_descriptor.GetStackArgumentOrder(),
StackArgumentOrder::kDefault);
for (uint32_t i = 0; i < frame_info.translated_stack_parameter_count();
++i, ++value_iterator) {
frame_writer.PushTranslatedValue(value_iterator, "stack parameter");
}
if (frame_info.frame_has_result_stack_slot()) {
if (is_js_to_wasm_builtin_continuation) {
frame_writer.PushTranslatedValue(result_iterator,
"return result on lazy deopt\n");
} else {
DCHECK_EQ(result_iterator, translated_frame->end());
frame_writer.PushRawObject(
roots.the_hole_value(),
"placeholder for return result on lazy deopt\n");
}
}
} else {
if (frame_info.frame_has_result_stack_slot()) {
frame_writer.PushRawObject(
roots.the_hole_value(),
"placeholder for return result on lazy deopt\n");
}
switch (mode) {
case BuiltinContinuationMode::STUB:
UNREACHABLE();
case BuiltinContinuationMode::JAVASCRIPT:
break;
case BuiltinContinuationMode::JAVASCRIPT_WITH_CATCH: {
frame_writer.PushRawObject(roots.the_hole_value(),
"placeholder for exception on lazy deopt\n");
} break;
case BuiltinContinuationMode::JAVASCRIPT_HANDLE_EXCEPTION: {
intptr_t accumulator_value =
input_->GetRegister(kInterpreterAccumulatorRegister.code());
frame_writer.PushRawObject(Tagged<Object>(accumulator_value),
"exception (from accumulator)\n");
} break;
}
frame_writer.PushStackJSArguments(
value_iterator, frame_info.translated_stack_parameter_count());
static_assert(TranslatedFrame::kReceiverIsFirstParameterInJSFrames);
DCHECK_EQ(register_parameter_count,
JSTrampolineDescriptor::GetRegisterParameterCount());
for (int i = 0; i < register_parameter_count; ++i, ++value_iterator) {
int code = continuation_descriptor.GetRegisterParameter(i).code();
register_values[code] = value_iterator;
}
}
DCHECK_EQ(output_frame->GetLastArgumentSlotOffset(),
frame_writer.top_offset());
Tagged<Object> context = value_iterator->GetRawValue();
const intptr_t value = context.ptr();
TranslatedFrame::iterator context_register_value = value_iterator++;
register_values[kContextRegister.code()] = context_register_value;
output_frame->SetRegister(kContextRegister.code(), value);
if (is_bottommost) {
frame_writer.PushBottommostCallerPc(caller_pc_);
} else {
frame_writer.PushApprovedCallerPc(output_[frame_index - 1]->GetPc());
}
const intptr_t caller_fp =
is_bottommost ? caller_fp_ : output_[frame_index - 1]->GetFp();
frame_writer.PushCallerFp(caller_fp);
const intptr_t fp_value = top_address + frame_writer.top_offset();
output_frame->SetFp(fp_value);
DCHECK_EQ(output_frame_size_above_fp, frame_writer.top_offset());
if (V8_EMBEDDED_CONSTANT_POOL_BOOL) {
const intptr_t caller_cp =
is_bottommost ? caller_constant_pool_
: output_[frame_index - 1]->GetConstantPool();
frame_writer.PushCallerConstantPool(caller_cp);
}
const intptr_t marker =
StackFrame::TypeToMarker(BuiltinContinuationModeToFrameType(mode));
frame_writer.PushRawValue(marker,
"context (builtin continuation sentinel)\n");
if (BuiltinContinuationModeIsJavaScript(mode)) {
frame_writer.PushRawValue(maybe_function, "JSFunction\n");
} else {
frame_writer.PushRawValue(0, "unused\n");
}
frame_writer.PushRawObject(Smi::FromInt(output_frame_size_above_fp),
"frame height at deoptimization\n");
frame_writer.PushTranslatedValue(context_register_value,
"builtin JavaScript context\n");
frame_writer.PushRawObject(Smi::FromInt(static_cast<int>(builtin)),
"builtin index\n");
const int allocatable_register_count =
config->num_allocatable_general_registers();
for (int i = 0; i < allocatable_register_count; ++i) {
int code = config->GetAllocatableGeneralCode(i);
base::ScopedVector<char> str(128);
if (verbose_tracing_enabled()) {
if (BuiltinContinuationModeIsJavaScript(mode) &&
code == kJavaScriptCallArgCountRegister.code()) {
SNPrintF(
str,
"tagged argument count %s (will be untagged by continuation)\n",
RegisterName(Register::from_code(code)));
} else {
SNPrintF(str, "builtin register argument %s\n",
RegisterName(Register::from_code(code)));
}
}
frame_writer.PushTranslatedValue(
register_values[code], verbose_tracing_enabled() ? str.begin() : "");
}
const int padding_slot_count =
BuiltinContinuationFrameConstants::PaddingSlotCount(
allocatable_register_count);
for (int i = 0; i < padding_slot_count; ++i) {
frame_writer.PushRawObject(roots.the_hole_value(), "padding\n");
}
if (is_topmost) {
for (int i = 0; i < ArgumentPaddingSlots(1); ++i) {
frame_writer.PushRawObject(roots.the_hole_value(), "padding\n");
}
if (frame_info.frame_has_result_stack_slot() &&
!is_js_to_wasm_builtin_continuation) {
Register result_reg = kReturnRegister0;
frame_writer.PushRawValue(input_->GetRegister(result_reg.code()),
"callback result\n");
} else {
frame_writer.PushRawObject(roots.undefined_value(), "callback result\n");
}
}
CHECK_EQ(result_iterator, value_iterator);
CHECK_EQ(0u, frame_writer.top_offset());
if (is_topmost) {
intptr_t context_value = static_cast<intptr_t>(Smi::zero().ptr());
Register context_reg = JavaScriptFrame::context_register();
output_frame->SetRegister(context_reg.code(), context_value);
}
Register fp_reg = JavaScriptFrame::fp_register();
output_frame->SetRegister(fp_reg.code(), fp_value);
Tagged<Code> continue_to_builtin =
isolate()->builtins()->code(TrampolineForBuiltinContinuation(
mode, frame_info.frame_has_result_stack_slot() &&
!is_js_to_wasm_builtin_continuation));
intptr_t pc =
static_cast<intptr_t>(continue_to_builtin->instruction_start()) +
isolate()->heap()->deopt_pc_offset_after_adapt_shadow_stack().value();
if (is_topmost) {
const intptr_t top_most_pc = PointerAuthentication::SignAndCheckPC(
isolate(), pc, frame_writer.frame()->GetTop());
output_frame->SetPc(top_most_pc);
} else {
output_frame->SetPc(pc);
}
Tagged<Code> continuation =
isolate()->builtins()->code(Builtin::kNotifyDeoptimized);
output_frame->SetContinuation(
static_cast<intptr_t>(continuation->instruction_start()));
}
void Deoptimizer::MaterializeHeapObjects() {
translated_state_.Prepare(static_cast<Address>(stack_fp_));
if (v8_flags.deopt_every_n_times > 0) {
isolate_->heap()->CollectAllGarbage(GCFlag::kNoFlags,
GarbageCollectionReason::kTesting);
}
for (auto& materialization : values_to_materialize_) {
DirectHandle<Object> value = materialization.value_->GetValue();
if (verbose_tracing_enabled()) {
PrintF(trace_scope()->file(),
"Materialization [" V8PRIxPTR_FMT "] <- " V8PRIxPTR_FMT " ; ",
static_cast<intptr_t>(materialization.output_slot_address_),
(*value).ptr());
ShortPrint(*value, trace_scope()->file());
PrintF(trace_scope()->file(), "\n");
}
*(reinterpret_cast<Address*>(materialization.output_slot_address_)) =
(*value).ptr();
}
for (auto& fbv_materialization : feedback_vector_to_materialize_) {
DirectHandle<Object> closure = fbv_materialization.value_->GetValue();
DCHECK(IsJSFunction(*closure));
Tagged<Object> feedback_vector =
Cast<JSFunction>(*closure)->raw_feedback_cell()->value();
CHECK(IsFeedbackVector(feedback_vector));
*(reinterpret_cast<Address*>(fbv_materialization.output_slot_address_)) =
feedback_vector.ptr();
}
translated_state_.VerifyMaterializedObjects();
isolate_->materialized_object_store()->Remove(
static_cast<Address>(stack_fp_));
}
void Deoptimizer::ProcessDeoptReason(DeoptimizeReason reason) {
bool feedback_updated = translated_state_.DoUpdateFeedback(reason);
if (verbose_tracing_enabled() && feedback_updated) {
FILE* file = trace_scope()->file();
PrintF(file, "Feedback updated from deoptimization at ");
OFStream outstr(file);
GetDeoptInfo().position.Print(outstr, compiled_code_);
PrintF(file, ", %s\n",
DeoptimizeReasonToString(GetDeoptInfo().deopt_reason));
}
}
void Deoptimizer::QueueValueForMaterialization(
Address output_address, Tagged<Object> obj,
const TranslatedFrame::iterator& iterator) {
if (obj == ReadOnlyRoots(isolate_).arguments_marker()) {
values_to_materialize_.push_back({output_address, iterator});
}
}
void Deoptimizer::QueueFeedbackVectorForMaterialization(
Address output_address, const TranslatedFrame::iterator& iterator) {
feedback_vector_to_materialize_.push_back({output_address, iterator});
}
unsigned Deoptimizer::ComputeInputFrameAboveFpFixedSize() const {
unsigned fixed_size = CommonFrameConstants::kFixedFrameSizeAboveFp;
IF_WASM(DCHECK_IMPLIES, function_.is_null(), v8_flags.wasm_deopt);
DCHECK_IMPLIES(function_.is_null(), compiled_code_->parameter_count() == 0);
fixed_size += ComputeIncomingArgumentSize(compiled_code_);
return fixed_size;
}
namespace {
Address GetDeoptCallPCFromReturnPC(Address return_pc, Tagged<Code> code) {
DCHECK_GT(Deoptimizer::kEagerDeoptExitSize, 0);
DCHECK_GT(Deoptimizer::kLazyDeoptExitSize, 0);
Tagged<DeoptimizationData> deopt_data = code->deoptimization_data();
Address deopt_start =
code->instruction_start() + deopt_data->DeoptExitStart().value();
int eager_deopt_count = deopt_data->EagerDeoptCount().value();
Address lazy_deopt_start =
deopt_start + eager_deopt_count * Deoptimizer::kEagerDeoptExitSize;
static_assert(static_cast<int>(DeoptimizeKind::kLazy) ==
static_cast<int>(kLastDeoptimizeKind),
"lazy deopts are expected to be emitted last");
if (return_pc <= lazy_deopt_start) {
return return_pc - Deoptimizer::kEagerDeoptExitSize;
} else {
return return_pc - Deoptimizer::kLazyDeoptExitSize;
}
}
}
unsigned Deoptimizer::ComputeInputFrameSize() const {
unsigned fixed_size_above_fp = ComputeInputFrameAboveFpFixedSize();
unsigned result = fixed_size_above_fp + fp_to_sp_delta_;
DCHECK(CodeKindCanDeoptimize(compiled_code_->kind()));
unsigned stack_slots = compiled_code_->stack_slots();
if (compiled_code_->is_maglevved() && !deoptimizing_throw_) {
CHECK_LE(fixed_size_above_fp + (stack_slots * kSystemPointerSize) -
CommonFrameConstants::kFixedFrameSizeAboveFp,
result);
if (v8_flags.enable_slow_asserts) {
Address deopt_call_pc = GetDeoptCallPCFromReturnPC(from_, compiled_code_);
MaglevSafepointTable table(isolate_, deopt_call_pc, compiled_code_);
MaglevSafepointEntry safepoint = table.FindEntry(deopt_call_pc);
unsigned extra_spills = safepoint.num_extra_spill_slots();
CHECK_EQ(fixed_size_above_fp + (stack_slots * kSystemPointerSize) -
CommonFrameConstants::kFixedFrameSizeAboveFp +
extra_spills * kSystemPointerSize,
result);
}
} else {
CHECK_LE(fixed_size_above_fp + (stack_slots * kSystemPointerSize) -
CommonFrameConstants::kFixedFrameSizeAboveFp,
result);
}
return result;
}
unsigned Deoptimizer::ComputeIncomingArgumentSize(Tagged<Code> code) {
int parameter_slots = code->parameter_count();
return parameter_slots * kSystemPointerSize;
}
Deoptimizer::DeoptInfo Deoptimizer::ComputeDeoptInfo(Tagged<Code> code,
Address pc) {
CHECK(code->instruction_start() <= pc && pc <= code->instruction_end());
SourcePosition position = SourcePosition::Unknown();
DeoptimizeReason reason = DeoptimizeReason::kUnknown;
#ifdef DEBUG
uint32_t node_id = 0;
#endif
int deopt_id = kNoDeoptimizationId;
int mask = RelocInfo::ModeMask(RelocInfo::DEOPT_REASON) |
RelocInfo::ModeMask(RelocInfo::DEOPT_ID) |
RelocInfo::ModeMask(RelocInfo::DEOPT_SCRIPT_OFFSET) |
RelocInfo::ModeMask(RelocInfo::DEOPT_INLINING_ID) |
RelocInfo::ModeMask(RelocInfo::DEOPT_NODE_ID);
RelocIterator it(code, mask);
while (!it.done() && it.rinfo()->pc() < pc) {
it.next();
}
while (!it.done() && it.rinfo()->pc() == pc) {
RelocInfo* info = it.rinfo();
if (info->rmode() == RelocInfo::DEOPT_SCRIPT_OFFSET) {
int script_offset = static_cast<int>(info->data());
it.next();
DCHECK(it.rinfo()->rmode() == RelocInfo::DEOPT_INLINING_ID);
int inlining_id = static_cast<int>(it.rinfo()->data());
position = SourcePosition(script_offset, inlining_id);
} else if (info->rmode() == RelocInfo::DEOPT_ID) {
deopt_id = static_cast<int>(info->data());
} else if (info->rmode() == RelocInfo::DEOPT_REASON) {
reason = static_cast<DeoptimizeReason>(info->data());
} else {
#ifdef DEBUG
if (info->rmode() == RelocInfo::DEOPT_NODE_ID) {
node_id = static_cast<uint32_t>(info->data());
}
#endif
}
it.next();
}
#ifdef DEBUG
return DeoptInfo(position, deopt_id, node_id, reason);
#else
return DeoptInfo(position, deopt_id, reason);
#endif
}
}
}