93059fe3cf
Remove support for warnings in parser and related flags. Rename flag --error-on-malformed-type to --error-on-bad-type, since it covers both malformed and malbounded types (also closer to --error-on-bad-override). R=hausner@google.com Review URL: https://codereview.chromium.org//23465004 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@26677 260f80e4-7a28-3924-810f-c04153c831b5
1109 lines
37 KiB
C++
1109 lines
37 KiB
C++
// Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
|
|
// for details. All rights reserved. Use of this source code is governed by a
|
|
// BSD-style license that can be found in the LICENSE file.
|
|
|
|
#include "vm/deopt_instructions.h"
|
|
|
|
#include "vm/assembler.h"
|
|
#include "vm/code_patcher.h"
|
|
#include "vm/intermediate_language.h"
|
|
#include "vm/locations.h"
|
|
#include "vm/parser.h"
|
|
#include "vm/stack_frame.h"
|
|
|
|
namespace dart {
|
|
|
|
DEFINE_FLAG(bool, compress_deopt_info, true,
|
|
"Compress the size of the deoptimization info for optimized code.");
|
|
DECLARE_FLAG(bool, trace_deoptimization);
|
|
DECLARE_FLAG(bool, trace_deoptimization_verbose);
|
|
|
|
DeoptimizationContext::DeoptimizationContext(intptr_t* to_frame_start,
|
|
intptr_t to_frame_size,
|
|
const Array& object_table,
|
|
intptr_t num_args,
|
|
DeoptReasonId deopt_reason)
|
|
: object_table_(object_table),
|
|
to_frame_(to_frame_start),
|
|
to_frame_size_(to_frame_size),
|
|
from_frame_(NULL),
|
|
from_frame_size_(0),
|
|
registers_copy_(NULL),
|
|
fpu_registers_copy_(NULL),
|
|
num_args_(num_args),
|
|
deopt_reason_(deopt_reason),
|
|
isolate_(Isolate::Current()) {
|
|
from_frame_ = isolate_->deopt_frame_copy();
|
|
from_frame_size_ = isolate_->deopt_frame_copy_size();
|
|
registers_copy_ = isolate_->deopt_cpu_registers_copy();
|
|
fpu_registers_copy_ = isolate_->deopt_fpu_registers_copy();
|
|
// The deoptimized frame is filled starting just below the sp of its caller
|
|
// down to kDartFrameFixedSize words below its own sp.
|
|
// The chain of frame pointers is recreated from the fp of the caller.
|
|
caller_fp_ = GetFromFp();
|
|
}
|
|
|
|
|
|
intptr_t DeoptimizationContext::GetFromFp() const {
|
|
return from_frame_[from_frame_size_ - 1 - num_args_ - kParamEndSlotFromFp];
|
|
}
|
|
|
|
|
|
intptr_t DeoptimizationContext::GetFromPp() const {
|
|
return from_frame_[from_frame_size_ - 1 - num_args_ - kParamEndSlotFromFp +
|
|
StackFrame::SavedCallerPpSlotFromFp()];
|
|
}
|
|
|
|
|
|
intptr_t DeoptimizationContext::GetFromPc() const {
|
|
return from_frame_[from_frame_size_ - num_args_ + kSavedPcSlotFromSp];
|
|
}
|
|
|
|
|
|
intptr_t DeoptimizationContext::GetCallerFp() const {
|
|
return caller_fp_;
|
|
}
|
|
|
|
|
|
void DeoptimizationContext::SetCallerFp(intptr_t caller_fp) {
|
|
caller_fp_ = caller_fp;
|
|
}
|
|
|
|
|
|
// Deoptimization instruction moving value from optimized frame at
|
|
// 'from_index' to specified slots in the unoptimized frame.
|
|
// 'from_index' represents the slot index of the frame (0 being first argument)
|
|
// and accounts for saved return address, frame pointer, pool pointer and pc
|
|
// marker.
|
|
class DeoptStackSlotInstr : public DeoptInstr {
|
|
public:
|
|
explicit DeoptStackSlotInstr(intptr_t from_index)
|
|
: stack_slot_index_(from_index) {
|
|
ASSERT(stack_slot_index_ >= 0);
|
|
}
|
|
|
|
virtual intptr_t from_index() const { return stack_slot_index_; }
|
|
virtual DeoptInstr::Kind kind() const { return kStackSlot; }
|
|
|
|
virtual const char* ToCString() const {
|
|
return Isolate::Current()->current_zone()->PrintToString(
|
|
"s%" Pd "", stack_slot_index_);
|
|
}
|
|
|
|
void Execute(DeoptimizationContext* deopt_context, intptr_t* to_addr) {
|
|
intptr_t from_index =
|
|
deopt_context->from_frame_size() - stack_slot_index_ - 1;
|
|
intptr_t* from_addr = deopt_context->GetFromFrameAddressAt(from_index);
|
|
*to_addr = *from_addr;
|
|
}
|
|
|
|
private:
|
|
const intptr_t stack_slot_index_; // First argument is 0, always >= 0.
|
|
|
|
DISALLOW_COPY_AND_ASSIGN(DeoptStackSlotInstr);
|
|
};
|
|
|
|
|
|
class DeoptDoubleStackSlotInstr : public DeoptInstr {
|
|
public:
|
|
explicit DeoptDoubleStackSlotInstr(intptr_t from_index)
|
|
: stack_slot_index_(from_index) {
|
|
ASSERT(stack_slot_index_ >= 0);
|
|
}
|
|
|
|
virtual intptr_t from_index() const { return stack_slot_index_; }
|
|
virtual DeoptInstr::Kind kind() const { return kDoubleStackSlot; }
|
|
|
|
virtual const char* ToCString() const {
|
|
return Isolate::Current()->current_zone()->PrintToString(
|
|
"ds%" Pd "", stack_slot_index_);
|
|
}
|
|
|
|
void Execute(DeoptimizationContext* deopt_context, intptr_t* to_addr) {
|
|
intptr_t from_index =
|
|
deopt_context->from_frame_size() - stack_slot_index_ - 1;
|
|
double* from_addr = reinterpret_cast<double*>(
|
|
deopt_context->GetFromFrameAddressAt(from_index));
|
|
*reinterpret_cast<RawSmi**>(to_addr) = Smi::New(0);
|
|
Isolate::Current()->DeferDoubleMaterialization(
|
|
*from_addr, reinterpret_cast<RawDouble**>(to_addr));
|
|
}
|
|
|
|
private:
|
|
const intptr_t stack_slot_index_; // First argument is 0, always >= 0.
|
|
|
|
DISALLOW_COPY_AND_ASSIGN(DeoptDoubleStackSlotInstr);
|
|
};
|
|
|
|
|
|
class DeoptInt64StackSlotInstr : public DeoptInstr {
|
|
public:
|
|
explicit DeoptInt64StackSlotInstr(intptr_t from_index)
|
|
: stack_slot_index_(from_index) {
|
|
ASSERT(stack_slot_index_ >= 0);
|
|
}
|
|
|
|
virtual intptr_t from_index() const { return stack_slot_index_; }
|
|
virtual DeoptInstr::Kind kind() const { return kInt64StackSlot; }
|
|
|
|
virtual const char* ToCString() const {
|
|
return Isolate::Current()->current_zone()->PrintToString(
|
|
"ms%" Pd "", stack_slot_index_);
|
|
}
|
|
|
|
void Execute(DeoptimizationContext* deopt_context, intptr_t* to_addr) {
|
|
intptr_t from_index =
|
|
deopt_context->from_frame_size() - stack_slot_index_ - 1;
|
|
int64_t* from_addr = reinterpret_cast<int64_t*>(
|
|
deopt_context->GetFromFrameAddressAt(from_index));
|
|
*reinterpret_cast<RawSmi**>(to_addr) = Smi::New(0);
|
|
if (Smi::IsValid64(*from_addr)) {
|
|
*to_addr = reinterpret_cast<intptr_t>(
|
|
Smi::New(static_cast<intptr_t>(*from_addr)));
|
|
} else {
|
|
Isolate::Current()->DeferMintMaterialization(
|
|
*from_addr, reinterpret_cast<RawMint**>(to_addr));
|
|
}
|
|
}
|
|
|
|
private:
|
|
const intptr_t stack_slot_index_; // First argument is 0, always >= 0.
|
|
|
|
DISALLOW_COPY_AND_ASSIGN(DeoptInt64StackSlotInstr);
|
|
};
|
|
|
|
|
|
class DeoptFloat32x4StackSlotInstr : public DeoptInstr {
|
|
public:
|
|
explicit DeoptFloat32x4StackSlotInstr(intptr_t from_index)
|
|
: stack_slot_index_(from_index) {
|
|
ASSERT(stack_slot_index_ >= 0);
|
|
}
|
|
|
|
virtual intptr_t from_index() const { return stack_slot_index_; }
|
|
virtual DeoptInstr::Kind kind() const { return kFloat32x4StackSlot; }
|
|
|
|
virtual const char* ToCString() const {
|
|
return Isolate::Current()->current_zone()->PrintToString(
|
|
"f32x4s%" Pd "", stack_slot_index_);
|
|
}
|
|
|
|
void Execute(DeoptimizationContext* deopt_context, intptr_t* to_addr) {
|
|
intptr_t from_index =
|
|
deopt_context->from_frame_size() - stack_slot_index_ - 1;
|
|
simd128_value_t* from_addr = reinterpret_cast<simd128_value_t*>(
|
|
deopt_context->GetFromFrameAddressAt(from_index));
|
|
*reinterpret_cast<RawSmi**>(to_addr) = Smi::New(0);
|
|
Isolate::Current()->DeferFloat32x4Materialization(
|
|
*from_addr, reinterpret_cast<RawFloat32x4**>(to_addr));
|
|
}
|
|
|
|
private:
|
|
const intptr_t stack_slot_index_; // First argument is 0, always >= 0.
|
|
|
|
DISALLOW_COPY_AND_ASSIGN(DeoptFloat32x4StackSlotInstr);
|
|
};
|
|
|
|
|
|
class DeoptUint32x4StackSlotInstr : public DeoptInstr {
|
|
public:
|
|
explicit DeoptUint32x4StackSlotInstr(intptr_t from_index)
|
|
: stack_slot_index_(from_index) {
|
|
ASSERT(stack_slot_index_ >= 0);
|
|
}
|
|
|
|
virtual intptr_t from_index() const { return stack_slot_index_; }
|
|
virtual DeoptInstr::Kind kind() const { return kUint32x4StackSlot; }
|
|
|
|
virtual const char* ToCString() const {
|
|
return Isolate::Current()->current_zone()->PrintToString(
|
|
"ui32x4s%" Pd "", stack_slot_index_);
|
|
}
|
|
|
|
void Execute(DeoptimizationContext* deopt_context, intptr_t* to_addr) {
|
|
intptr_t from_index =
|
|
deopt_context->from_frame_size() - stack_slot_index_ - 1;
|
|
simd128_value_t* from_addr = reinterpret_cast<simd128_value_t*>(
|
|
deopt_context->GetFromFrameAddressAt(from_index));
|
|
*reinterpret_cast<RawSmi**>(to_addr) = Smi::New(0);
|
|
Isolate::Current()->DeferUint32x4Materialization(
|
|
*from_addr, reinterpret_cast<RawUint32x4**>(to_addr));
|
|
}
|
|
|
|
private:
|
|
const intptr_t stack_slot_index_; // First argument is 0, always >= 0.
|
|
|
|
DISALLOW_COPY_AND_ASSIGN(DeoptUint32x4StackSlotInstr);
|
|
};
|
|
|
|
|
|
// Deoptimization instruction creating return address using function and
|
|
// deopt-id stored at 'object_table_index'.
|
|
class DeoptRetAddressInstr : public DeoptInstr {
|
|
public:
|
|
DeoptRetAddressInstr(intptr_t object_table_index, intptr_t deopt_id)
|
|
: object_table_index_(object_table_index), deopt_id_(deopt_id) {
|
|
ASSERT(object_table_index >= 0);
|
|
ASSERT(deopt_id >= 0);
|
|
}
|
|
|
|
explicit DeoptRetAddressInstr(intptr_t from_index)
|
|
: object_table_index_(ObjectTableIndex::decode(from_index)),
|
|
deopt_id_(DeoptId::decode(from_index)) {
|
|
}
|
|
|
|
virtual intptr_t from_index() const {
|
|
return ObjectTableIndex::encode(object_table_index_) |
|
|
DeoptId::encode(deopt_id_);
|
|
}
|
|
|
|
virtual DeoptInstr::Kind kind() const { return kRetAddress; }
|
|
|
|
virtual const char* ToCString() const {
|
|
return Isolate::Current()->current_zone()->PrintToString(
|
|
"ret oti:%" Pd "(%" Pd ")", object_table_index_, deopt_id_);
|
|
}
|
|
|
|
void Execute(DeoptimizationContext* deopt_context, intptr_t* to_addr) {
|
|
Function& function = Function::Handle(deopt_context->isolate());
|
|
function ^= deopt_context->ObjectAt(object_table_index_);
|
|
const Code& code =
|
|
Code::Handle(deopt_context->isolate(), function.unoptimized_code());
|
|
ASSERT(!code.IsNull());
|
|
uword continue_at_pc = code.GetPcForDeoptId(deopt_id_,
|
|
PcDescriptors::kDeopt);
|
|
ASSERT(continue_at_pc != 0);
|
|
*to_addr = continue_at_pc;
|
|
|
|
uword pc = code.GetPcForDeoptId(deopt_id_, PcDescriptors::kIcCall);
|
|
if (pc != 0) {
|
|
// If the deoptimization happened at an IC call, update the IC data
|
|
// to avoid repeated deoptimization at the same site next time around.
|
|
ICData& ic_data = ICData::Handle();
|
|
CodePatcher::GetInstanceCallAt(pc, code, &ic_data);
|
|
if (!ic_data.IsNull()) {
|
|
ic_data.set_deopt_reason(deopt_context->deopt_reason());
|
|
}
|
|
}
|
|
}
|
|
|
|
intptr_t object_table_index() const { return object_table_index_; }
|
|
intptr_t deopt_id() const { return deopt_id_; }
|
|
|
|
private:
|
|
static const intptr_t kFieldWidth = kBitsPerWord / 2;
|
|
class ObjectTableIndex : public BitField<intptr_t, 0, kFieldWidth> { };
|
|
class DeoptId : public BitField<intptr_t, kFieldWidth, kFieldWidth> { };
|
|
|
|
const intptr_t object_table_index_;
|
|
const intptr_t deopt_id_;
|
|
|
|
DISALLOW_COPY_AND_ASSIGN(DeoptRetAddressInstr);
|
|
};
|
|
|
|
|
|
// Deoptimization instruction moving a constant stored at 'object_table_index'.
|
|
class DeoptConstantInstr : public DeoptInstr {
|
|
public:
|
|
explicit DeoptConstantInstr(intptr_t object_table_index)
|
|
: object_table_index_(object_table_index) {
|
|
ASSERT(object_table_index >= 0);
|
|
}
|
|
|
|
virtual intptr_t from_index() const { return object_table_index_; }
|
|
virtual DeoptInstr::Kind kind() const { return kConstant; }
|
|
|
|
virtual const char* ToCString() const {
|
|
return Isolate::Current()->current_zone()->PrintToString(
|
|
"const oti:%" Pd "", object_table_index_);
|
|
}
|
|
|
|
void Execute(DeoptimizationContext* deopt_context, intptr_t* to_addr) {
|
|
const Object& obj = Object::Handle(
|
|
deopt_context->isolate(), deopt_context->ObjectAt(object_table_index_));
|
|
*reinterpret_cast<RawObject**>(to_addr) = obj.raw();
|
|
}
|
|
|
|
private:
|
|
const intptr_t object_table_index_;
|
|
|
|
DISALLOW_COPY_AND_ASSIGN(DeoptConstantInstr);
|
|
};
|
|
|
|
|
|
// Deoptimization instruction moving a CPU register.
|
|
class DeoptRegisterInstr: public DeoptInstr {
|
|
public:
|
|
explicit DeoptRegisterInstr(intptr_t reg_as_int)
|
|
: reg_(static_cast<Register>(reg_as_int)) {}
|
|
|
|
virtual intptr_t from_index() const { return static_cast<intptr_t>(reg_); }
|
|
virtual DeoptInstr::Kind kind() const { return kRegister; }
|
|
|
|
virtual const char* ToCString() const {
|
|
return Assembler::RegisterName(reg_);
|
|
}
|
|
|
|
void Execute(DeoptimizationContext* deopt_context, intptr_t* to_addr) {
|
|
*to_addr = deopt_context->RegisterValue(reg_);
|
|
}
|
|
|
|
private:
|
|
const Register reg_;
|
|
|
|
DISALLOW_COPY_AND_ASSIGN(DeoptRegisterInstr);
|
|
};
|
|
|
|
|
|
// Deoptimization instruction moving an XMM register.
|
|
class DeoptFpuRegisterInstr: public DeoptInstr {
|
|
public:
|
|
explicit DeoptFpuRegisterInstr(intptr_t reg_as_int)
|
|
: reg_(static_cast<FpuRegister>(reg_as_int)) {}
|
|
|
|
virtual intptr_t from_index() const { return static_cast<intptr_t>(reg_); }
|
|
virtual DeoptInstr::Kind kind() const { return kFpuRegister; }
|
|
|
|
virtual const char* ToCString() const {
|
|
return Assembler::FpuRegisterName(reg_);
|
|
}
|
|
|
|
void Execute(DeoptimizationContext* deopt_context, intptr_t* to_addr) {
|
|
double value = deopt_context->FpuRegisterValue(reg_);
|
|
*reinterpret_cast<RawSmi**>(to_addr) = Smi::New(0);
|
|
Isolate::Current()->DeferDoubleMaterialization(
|
|
value, reinterpret_cast<RawDouble**>(to_addr));
|
|
}
|
|
|
|
private:
|
|
const FpuRegister reg_;
|
|
|
|
DISALLOW_COPY_AND_ASSIGN(DeoptFpuRegisterInstr);
|
|
};
|
|
|
|
|
|
class DeoptInt64FpuRegisterInstr: public DeoptInstr {
|
|
public:
|
|
explicit DeoptInt64FpuRegisterInstr(intptr_t reg_as_int)
|
|
: reg_(static_cast<FpuRegister>(reg_as_int)) {}
|
|
|
|
virtual intptr_t from_index() const { return static_cast<intptr_t>(reg_); }
|
|
virtual DeoptInstr::Kind kind() const { return kInt64FpuRegister; }
|
|
|
|
virtual const char* ToCString() const {
|
|
return Isolate::Current()->current_zone()->PrintToString(
|
|
"%s(m)", Assembler::FpuRegisterName(reg_));
|
|
}
|
|
|
|
void Execute(DeoptimizationContext* deopt_context, intptr_t* to_addr) {
|
|
int64_t value = deopt_context->FpuRegisterValueAsInt64(reg_);
|
|
*reinterpret_cast<RawSmi**>(to_addr) = Smi::New(0);
|
|
if (Smi::IsValid64(value)) {
|
|
*to_addr = reinterpret_cast<intptr_t>(
|
|
Smi::New(static_cast<intptr_t>(value)));
|
|
} else {
|
|
Isolate::Current()->DeferMintMaterialization(
|
|
value, reinterpret_cast<RawMint**>(to_addr));
|
|
}
|
|
}
|
|
|
|
private:
|
|
const FpuRegister reg_;
|
|
|
|
DISALLOW_COPY_AND_ASSIGN(DeoptInt64FpuRegisterInstr);
|
|
};
|
|
|
|
|
|
// Deoptimization instruction moving an XMM register.
|
|
class DeoptFloat32x4FpuRegisterInstr: public DeoptInstr {
|
|
public:
|
|
explicit DeoptFloat32x4FpuRegisterInstr(intptr_t reg_as_int)
|
|
: reg_(static_cast<FpuRegister>(reg_as_int)) {}
|
|
|
|
virtual intptr_t from_index() const { return static_cast<intptr_t>(reg_); }
|
|
virtual DeoptInstr::Kind kind() const { return kFloat32x4FpuRegister; }
|
|
|
|
virtual const char* ToCString() const {
|
|
return Isolate::Current()->current_zone()->PrintToString(
|
|
"%s(f32x4)", Assembler::FpuRegisterName(reg_));
|
|
}
|
|
|
|
void Execute(DeoptimizationContext* deopt_context, intptr_t* to_addr) {
|
|
simd128_value_t value = deopt_context->FpuRegisterValueAsSimd128(reg_);
|
|
*reinterpret_cast<RawSmi**>(to_addr) = Smi::New(0);
|
|
Isolate::Current()->DeferFloat32x4Materialization(
|
|
value, reinterpret_cast<RawFloat32x4**>(to_addr));
|
|
}
|
|
|
|
private:
|
|
const FpuRegister reg_;
|
|
|
|
DISALLOW_COPY_AND_ASSIGN(DeoptFloat32x4FpuRegisterInstr);
|
|
};
|
|
|
|
|
|
// Deoptimization instruction moving an XMM register.
|
|
class DeoptUint32x4FpuRegisterInstr: public DeoptInstr {
|
|
public:
|
|
explicit DeoptUint32x4FpuRegisterInstr(intptr_t reg_as_int)
|
|
: reg_(static_cast<FpuRegister>(reg_as_int)) {}
|
|
|
|
virtual intptr_t from_index() const { return static_cast<intptr_t>(reg_); }
|
|
virtual DeoptInstr::Kind kind() const { return kFloat32x4FpuRegister; }
|
|
|
|
virtual const char* ToCString() const {
|
|
return Isolate::Current()->current_zone()->PrintToString(
|
|
"%s(f32x4)", Assembler::FpuRegisterName(reg_));
|
|
}
|
|
|
|
void Execute(DeoptimizationContext* deopt_context, intptr_t* to_addr) {
|
|
simd128_value_t value = deopt_context->FpuRegisterValueAsSimd128(reg_);
|
|
*reinterpret_cast<RawSmi**>(to_addr) = Smi::New(0);
|
|
Isolate::Current()->DeferUint32x4Materialization(
|
|
value, reinterpret_cast<RawUint32x4**>(to_addr));
|
|
}
|
|
|
|
private:
|
|
const FpuRegister reg_;
|
|
|
|
DISALLOW_COPY_AND_ASSIGN(DeoptUint32x4FpuRegisterInstr);
|
|
};
|
|
|
|
|
|
// Deoptimization instruction creating a PC marker for the code of
|
|
// function at 'object_table_index'.
|
|
class DeoptPcMarkerInstr : public DeoptInstr {
|
|
public:
|
|
explicit DeoptPcMarkerInstr(intptr_t object_table_index)
|
|
: object_table_index_(object_table_index) {
|
|
ASSERT(object_table_index >= 0);
|
|
}
|
|
|
|
virtual intptr_t from_index() const { return object_table_index_; }
|
|
virtual DeoptInstr::Kind kind() const { return kPcMarker; }
|
|
|
|
virtual const char* ToCString() const {
|
|
return Isolate::Current()->current_zone()->PrintToString(
|
|
"pcmark oti:%" Pd "", object_table_index_);
|
|
}
|
|
|
|
void Execute(DeoptimizationContext* deopt_context, intptr_t* to_addr) {
|
|
Function& function = Function::Handle(deopt_context->isolate());
|
|
function ^= deopt_context->ObjectAt(object_table_index_);
|
|
if (function.IsNull()) {
|
|
// Callee's PC marker is not used (pc of Deoptimize stub). Set to 0.
|
|
*to_addr = 0;
|
|
return;
|
|
}
|
|
const Code& code =
|
|
Code::Handle(deopt_context->isolate(), function.unoptimized_code());
|
|
ASSERT(!code.IsNull());
|
|
const intptr_t pc_marker =
|
|
code.EntryPoint() + Assembler::kEntryPointToPcMarkerOffset;
|
|
*to_addr = pc_marker;
|
|
// Increment the deoptimization counter. This effectively increments each
|
|
// function occurring in the optimized frame.
|
|
function.set_deoptimization_counter(function.deoptimization_counter() + 1);
|
|
if (FLAG_trace_deoptimization || FLAG_trace_deoptimization_verbose) {
|
|
OS::PrintErr("Deoptimizing %s (count %d)\n",
|
|
function.ToFullyQualifiedCString(),
|
|
function.deoptimization_counter());
|
|
}
|
|
// Clear invocation counter so that hopefully the function gets reoptimized
|
|
// only after more feedback has been collected.
|
|
function.set_usage_counter(0);
|
|
if (function.HasOptimizedCode()) function.SwitchToUnoptimizedCode();
|
|
}
|
|
|
|
private:
|
|
intptr_t object_table_index_;
|
|
|
|
DISALLOW_COPY_AND_ASSIGN(DeoptPcMarkerInstr);
|
|
};
|
|
|
|
|
|
// Deoptimization instruction creating a pool pointer for the code of
|
|
// function at 'object_table_index'.
|
|
class DeoptPpInstr : public DeoptInstr {
|
|
public:
|
|
explicit DeoptPpInstr(intptr_t object_table_index)
|
|
: object_table_index_(object_table_index) {
|
|
ASSERT(object_table_index >= 0);
|
|
}
|
|
|
|
virtual intptr_t from_index() const { return object_table_index_; }
|
|
virtual DeoptInstr::Kind kind() const { return kPp; }
|
|
|
|
virtual const char* ToCString() const {
|
|
return Isolate::Current()->current_zone()->PrintToString(
|
|
"pp oti:%" Pd "", object_table_index_);
|
|
}
|
|
|
|
void Execute(DeoptimizationContext* deopt_context, intptr_t* to_addr) {
|
|
Function& function = Function::Handle(deopt_context->isolate());
|
|
function ^= deopt_context->ObjectAt(object_table_index_);
|
|
const Code& code =
|
|
Code::Handle(deopt_context->isolate(), function.unoptimized_code());
|
|
ASSERT(!code.IsNull());
|
|
const intptr_t pp = reinterpret_cast<intptr_t>(code.ObjectPool());
|
|
*to_addr = pp;
|
|
}
|
|
|
|
private:
|
|
intptr_t object_table_index_;
|
|
|
|
DISALLOW_COPY_AND_ASSIGN(DeoptPpInstr);
|
|
};
|
|
|
|
|
|
// Deoptimization instruction copying the caller saved FP from optimized frame.
|
|
class DeoptCallerFpInstr : public DeoptInstr {
|
|
public:
|
|
DeoptCallerFpInstr() {}
|
|
|
|
virtual intptr_t from_index() const { return 0; }
|
|
virtual DeoptInstr::Kind kind() const { return kCallerFp; }
|
|
|
|
virtual const char* ToCString() const {
|
|
return "callerfp";
|
|
}
|
|
|
|
void Execute(DeoptimizationContext* deopt_context, intptr_t* to_addr) {
|
|
*to_addr = deopt_context->GetCallerFp();
|
|
deopt_context->SetCallerFp(reinterpret_cast<intptr_t>(
|
|
to_addr - (kSavedCallerFpSlotFromFp * kWordSize)));
|
|
}
|
|
|
|
private:
|
|
DISALLOW_COPY_AND_ASSIGN(DeoptCallerFpInstr);
|
|
};
|
|
|
|
|
|
// Deoptimization instruction copying the caller saved PP from optimized frame.
|
|
class DeoptCallerPpInstr : public DeoptInstr {
|
|
public:
|
|
DeoptCallerPpInstr() {}
|
|
|
|
virtual intptr_t from_index() const { return 0; }
|
|
virtual DeoptInstr::Kind kind() const { return kCallerPp; }
|
|
|
|
virtual const char* ToCString() const {
|
|
return "callerpp";
|
|
}
|
|
|
|
void Execute(DeoptimizationContext* deopt_context, intptr_t* to_addr) {
|
|
*to_addr = deopt_context->GetFromPp();
|
|
}
|
|
|
|
private:
|
|
DISALLOW_COPY_AND_ASSIGN(DeoptCallerPpInstr);
|
|
};
|
|
|
|
|
|
// Deoptimization instruction copying the caller return address from optimized
|
|
// frame.
|
|
class DeoptCallerPcInstr : public DeoptInstr {
|
|
public:
|
|
DeoptCallerPcInstr() {}
|
|
|
|
virtual intptr_t from_index() const { return 0; }
|
|
virtual DeoptInstr::Kind kind() const { return kCallerPc; }
|
|
|
|
virtual const char* ToCString() const {
|
|
return "callerpc";
|
|
}
|
|
|
|
void Execute(DeoptimizationContext* deopt_context, intptr_t* to_addr) {
|
|
*to_addr = deopt_context->GetFromPc();
|
|
}
|
|
|
|
private:
|
|
DISALLOW_COPY_AND_ASSIGN(DeoptCallerPcInstr);
|
|
};
|
|
|
|
|
|
// Deoptimization instruction that indicates the rest of this DeoptInfo is a
|
|
// suffix of another one. The suffix contains the info number (0 based
|
|
// index in the deopt table of the DeoptInfo to share) and the length of the
|
|
// suffix.
|
|
class DeoptSuffixInstr : public DeoptInstr {
|
|
public:
|
|
DeoptSuffixInstr(intptr_t info_number, intptr_t suffix_length)
|
|
: info_number_(info_number), suffix_length_(suffix_length) {
|
|
ASSERT(info_number >= 0);
|
|
ASSERT(suffix_length >= 0);
|
|
}
|
|
|
|
explicit DeoptSuffixInstr(intptr_t from_index)
|
|
: info_number_(InfoNumber::decode(from_index)),
|
|
suffix_length_(SuffixLength::decode(from_index)) {
|
|
}
|
|
|
|
virtual intptr_t from_index() const {
|
|
return InfoNumber::encode(info_number_) |
|
|
SuffixLength::encode(suffix_length_);
|
|
}
|
|
virtual DeoptInstr::Kind kind() const { return kSuffix; }
|
|
|
|
virtual const char* ToCString() const {
|
|
return Isolate::Current()->current_zone()->PrintToString(
|
|
"suffix %" Pd ":%" Pd, info_number_, suffix_length_);
|
|
}
|
|
|
|
void Execute(DeoptimizationContext* deopt_context, intptr_t* to_addr) {
|
|
// The deoptimization info is uncompressed by translating away suffixes
|
|
// before executing the instructions.
|
|
UNREACHABLE();
|
|
}
|
|
|
|
private:
|
|
// Static decoder functions in DeoptInstr have access to the bitfield
|
|
// definitions.
|
|
friend class DeoptInstr;
|
|
|
|
static const intptr_t kFieldWidth = kBitsPerWord / 2;
|
|
class InfoNumber : public BitField<intptr_t, 0, kFieldWidth> { };
|
|
class SuffixLength : public BitField<intptr_t, kFieldWidth, kFieldWidth> { };
|
|
|
|
const intptr_t info_number_;
|
|
const intptr_t suffix_length_;
|
|
|
|
DISALLOW_COPY_AND_ASSIGN(DeoptSuffixInstr);
|
|
};
|
|
|
|
|
|
// Write reference to a materialized object with the given index into the
|
|
// stack slot.
|
|
class DeoptMaterializedObjectRefInstr : public DeoptInstr {
|
|
public:
|
|
explicit DeoptMaterializedObjectRefInstr(intptr_t index)
|
|
: index_(index) {
|
|
ASSERT(index >= 0);
|
|
}
|
|
|
|
virtual intptr_t from_index() const { return index_; }
|
|
virtual DeoptInstr::Kind kind() const { return kMaterializedObjectRef; }
|
|
|
|
virtual const char* ToCString() const {
|
|
return Isolate::Current()->current_zone()->PrintToString(
|
|
"mat ref #%" Pd "", index_);
|
|
}
|
|
|
|
void Execute(DeoptimizationContext* deopt_context, intptr_t* to_addr) {
|
|
*reinterpret_cast<RawSmi**>(to_addr) = Smi::New(0);
|
|
Isolate::Current()->DeferMaterializedObjectRef(
|
|
index_, to_addr);
|
|
}
|
|
|
|
private:
|
|
intptr_t index_;
|
|
|
|
DISALLOW_COPY_AND_ASSIGN(DeoptMaterializedObjectRefInstr);
|
|
};
|
|
|
|
|
|
// Materialize object with the given number of fields.
|
|
// Arguments for materialization (class and field-value pairs) are pushed
|
|
// to the expression stack of the bottom-most frame.
|
|
class DeoptMaterializeObjectInstr : public DeoptInstr {
|
|
public:
|
|
explicit DeoptMaterializeObjectInstr(intptr_t field_count)
|
|
: field_count_(field_count) {
|
|
ASSERT(field_count >= 0);
|
|
}
|
|
|
|
virtual intptr_t from_index() const { return field_count_; }
|
|
virtual DeoptInstr::Kind kind() const { return kMaterializeObject; }
|
|
|
|
virtual const char* ToCString() const {
|
|
return Isolate::Current()->current_zone()->PrintToString(
|
|
"mat obj len:%" Pd "", field_count_);
|
|
}
|
|
|
|
void Execute(DeoptimizationContext* deopt_context, intptr_t* to_addr) {
|
|
// This instructions are executed manually by the DeoptimizeWithDeoptInfo.
|
|
UNREACHABLE();
|
|
}
|
|
|
|
private:
|
|
intptr_t field_count_;
|
|
|
|
DISALLOW_COPY_AND_ASSIGN(DeoptMaterializeObjectInstr);
|
|
};
|
|
|
|
|
|
intptr_t DeoptInstr::DecodeSuffix(intptr_t from_index, intptr_t* info_number) {
|
|
*info_number = DeoptSuffixInstr::InfoNumber::decode(from_index);
|
|
return DeoptSuffixInstr::SuffixLength::decode(from_index);
|
|
}
|
|
|
|
|
|
uword DeoptInstr::GetRetAddress(DeoptInstr* instr,
|
|
const Array& object_table,
|
|
Function* func) {
|
|
ASSERT(instr->kind() == kRetAddress);
|
|
DeoptRetAddressInstr* ret_address_instr =
|
|
static_cast<DeoptRetAddressInstr*>(instr);
|
|
// The following assert may trigger when displaying a backtrace
|
|
// from the simulator.
|
|
ASSERT(Isolate::IsDeoptAfter(ret_address_instr->deopt_id()));
|
|
ASSERT(!object_table.IsNull());
|
|
ASSERT(func != NULL);
|
|
*func ^= object_table.At(ret_address_instr->object_table_index());
|
|
const Code& code = Code::Handle(func->unoptimized_code());
|
|
ASSERT(!code.IsNull());
|
|
uword res = code.GetPcForDeoptId(ret_address_instr->deopt_id(),
|
|
PcDescriptors::kDeopt);
|
|
ASSERT(res != 0);
|
|
return res;
|
|
}
|
|
|
|
|
|
DeoptInstr* DeoptInstr::Create(intptr_t kind_as_int, intptr_t from_index) {
|
|
Kind kind = static_cast<Kind>(kind_as_int);
|
|
switch (kind) {
|
|
case kStackSlot: return new DeoptStackSlotInstr(from_index);
|
|
case kDoubleStackSlot: return new DeoptDoubleStackSlotInstr(from_index);
|
|
case kInt64StackSlot: return new DeoptInt64StackSlotInstr(from_index);
|
|
case kFloat32x4StackSlot:
|
|
return new DeoptFloat32x4StackSlotInstr(from_index);
|
|
case kUint32x4StackSlot:
|
|
return new DeoptUint32x4StackSlotInstr(from_index);
|
|
case kRetAddress: return new DeoptRetAddressInstr(from_index);
|
|
case kConstant: return new DeoptConstantInstr(from_index);
|
|
case kRegister: return new DeoptRegisterInstr(from_index);
|
|
case kFpuRegister: return new DeoptFpuRegisterInstr(from_index);
|
|
case kInt64FpuRegister: return new DeoptInt64FpuRegisterInstr(from_index);
|
|
case kFloat32x4FpuRegister:
|
|
return new DeoptFloat32x4FpuRegisterInstr(from_index);
|
|
case kUint32x4FpuRegister:
|
|
return new DeoptUint32x4FpuRegisterInstr(from_index);
|
|
case kPcMarker: return new DeoptPcMarkerInstr(from_index);
|
|
case kPp: return new DeoptPpInstr(from_index);
|
|
case kCallerFp: return new DeoptCallerFpInstr();
|
|
case kCallerPp: return new DeoptCallerPpInstr();
|
|
case kCallerPc: return new DeoptCallerPcInstr();
|
|
case kSuffix: return new DeoptSuffixInstr(from_index);
|
|
case kMaterializedObjectRef:
|
|
return new DeoptMaterializedObjectRefInstr(from_index);
|
|
case kMaterializeObject: return new DeoptMaterializeObjectInstr(from_index);
|
|
}
|
|
UNREACHABLE();
|
|
return NULL;
|
|
}
|
|
|
|
|
|
class DeoptInfoBuilder::TrieNode : public ZoneAllocated {
|
|
public:
|
|
// Construct the root node representing the implicit "shared" terminator
|
|
// at the end of each deopt info.
|
|
TrieNode() : instruction_(NULL), info_number_(-1), children_(16) { }
|
|
|
|
// Construct a node representing a written instruction.
|
|
TrieNode(DeoptInstr* instruction, intptr_t info_number)
|
|
: instruction_(instruction), info_number_(info_number), children_(4) { }
|
|
|
|
intptr_t info_number() const { return info_number_; }
|
|
|
|
void AddChild(TrieNode* child) {
|
|
if (child != NULL) children_.Add(child);
|
|
}
|
|
|
|
TrieNode* FindChild(const DeoptInstr& instruction) {
|
|
for (intptr_t i = 0; i < children_.length(); ++i) {
|
|
TrieNode* child = children_[i];
|
|
if (child->instruction_->Equals(instruction)) return child;
|
|
}
|
|
return NULL;
|
|
}
|
|
|
|
private:
|
|
const DeoptInstr* instruction_; // Instruction that was written.
|
|
const intptr_t info_number_; // Index of the deopt info it was written to.
|
|
|
|
GrowableArray<TrieNode*> children_;
|
|
};
|
|
|
|
|
|
DeoptInfoBuilder::DeoptInfoBuilder(const intptr_t num_args)
|
|
: instructions_(),
|
|
object_table_(GrowableObjectArray::Handle(
|
|
GrowableObjectArray::New(Heap::kOld))),
|
|
num_args_(num_args),
|
|
trie_root_(new TrieNode()),
|
|
current_info_number_(0),
|
|
frame_start_(-1),
|
|
materializations_() {
|
|
}
|
|
|
|
|
|
intptr_t DeoptInfoBuilder::FindOrAddObjectInTable(const Object& obj) const {
|
|
for (intptr_t i = 0; i < object_table_.Length(); i++) {
|
|
if (object_table_.At(i) == obj.raw()) {
|
|
return i;
|
|
}
|
|
}
|
|
// Add object.
|
|
const intptr_t result = object_table_.Length();
|
|
object_table_.Add(obj, Heap::kOld);
|
|
return result;
|
|
}
|
|
|
|
|
|
intptr_t DeoptInfoBuilder::CalculateStackIndex(const Location& from_loc) const {
|
|
return from_loc.stack_index() < 0 ?
|
|
from_loc.stack_index() + num_args_ :
|
|
from_loc.stack_index() + num_args_ + kDartFrameFixedSize;
|
|
}
|
|
|
|
|
|
void DeoptInfoBuilder::AddReturnAddress(const Function& function,
|
|
intptr_t deopt_id,
|
|
intptr_t to_index) {
|
|
// Check that deopt_id exists.
|
|
// TODO(vegorov): verify after deoptimization targets as well.
|
|
#ifdef DEBUG
|
|
const Code& code = Code::Handle(function.unoptimized_code());
|
|
ASSERT(Isolate::IsDeoptAfter(deopt_id) ||
|
|
(code.GetPcForDeoptId(deopt_id, PcDescriptors::kDeopt) != 0));
|
|
#endif
|
|
const intptr_t object_table_index = FindOrAddObjectInTable(function);
|
|
ASSERT(to_index == FrameSize());
|
|
instructions_.Add(new DeoptRetAddressInstr(object_table_index, deopt_id));
|
|
}
|
|
|
|
|
|
void DeoptInfoBuilder::AddPcMarker(const Function& function,
|
|
intptr_t to_index) {
|
|
intptr_t object_table_index = FindOrAddObjectInTable(function);
|
|
ASSERT(to_index == FrameSize());
|
|
instructions_.Add(new DeoptPcMarkerInstr(object_table_index));
|
|
}
|
|
|
|
|
|
void DeoptInfoBuilder::AddPp(const Function& function, intptr_t to_index) {
|
|
intptr_t object_table_index = FindOrAddObjectInTable(function);
|
|
ASSERT(to_index == FrameSize());
|
|
instructions_.Add(new DeoptPpInstr(object_table_index));
|
|
}
|
|
|
|
|
|
void DeoptInfoBuilder::AddCopy(Value* value,
|
|
const Location& from_loc,
|
|
const intptr_t to_index) {
|
|
DeoptInstr* deopt_instr = NULL;
|
|
if (from_loc.IsConstant()) {
|
|
intptr_t object_table_index = FindOrAddObjectInTable(from_loc.constant());
|
|
deopt_instr = new DeoptConstantInstr(object_table_index);
|
|
} else if (from_loc.IsRegister()) {
|
|
ASSERT(value->definition()->representation() == kTagged);
|
|
deopt_instr = new DeoptRegisterInstr(from_loc.reg());
|
|
} else if (from_loc.IsFpuRegister()) {
|
|
if (value->definition()->representation() == kUnboxedDouble) {
|
|
deopt_instr = new DeoptFpuRegisterInstr(from_loc.fpu_reg());
|
|
} else if (value->definition()->representation() == kUnboxedMint) {
|
|
deopt_instr = new DeoptInt64FpuRegisterInstr(from_loc.fpu_reg());
|
|
} else if (value->definition()->representation() == kUnboxedFloat32x4) {
|
|
deopt_instr = new DeoptFloat32x4FpuRegisterInstr(from_loc.fpu_reg());
|
|
} else {
|
|
ASSERT(value->definition()->representation() == kUnboxedUint32x4);
|
|
deopt_instr = new DeoptUint32x4FpuRegisterInstr(from_loc.fpu_reg());
|
|
}
|
|
} else if (from_loc.IsStackSlot()) {
|
|
ASSERT(value->definition()->representation() == kTagged);
|
|
intptr_t from_index = CalculateStackIndex(from_loc);
|
|
deopt_instr = new DeoptStackSlotInstr(from_index);
|
|
} else if (from_loc.IsDoubleStackSlot()) {
|
|
intptr_t from_index = CalculateStackIndex(from_loc);
|
|
if (value->definition()->representation() == kUnboxedDouble) {
|
|
deopt_instr = new DeoptDoubleStackSlotInstr(from_index);
|
|
} else {
|
|
ASSERT(value->definition()->representation() == kUnboxedMint);
|
|
deopt_instr = new DeoptInt64StackSlotInstr(from_index);
|
|
}
|
|
} else if (from_loc.IsQuadStackSlot()) {
|
|
intptr_t from_index = CalculateStackIndex(from_loc);
|
|
if (value->definition()->representation() == kUnboxedFloat32x4) {
|
|
deopt_instr = new DeoptFloat32x4StackSlotInstr(from_index);
|
|
} else {
|
|
ASSERT(value->definition()->representation() == kUnboxedUint32x4);
|
|
deopt_instr = new DeoptUint32x4StackSlotInstr(from_index);
|
|
}
|
|
} else if (from_loc.IsInvalid() &&
|
|
value->definition()->IsMaterializeObject()) {
|
|
const intptr_t index = FindMaterialization(
|
|
value->definition()->AsMaterializeObject());
|
|
ASSERT(index >= 0);
|
|
deopt_instr = new DeoptMaterializedObjectRefInstr(index);
|
|
} else {
|
|
UNREACHABLE();
|
|
}
|
|
ASSERT(to_index == FrameSize());
|
|
ASSERT(deopt_instr != NULL);
|
|
instructions_.Add(deopt_instr);
|
|
}
|
|
|
|
|
|
void DeoptInfoBuilder::AddCallerFp(intptr_t to_index) {
|
|
ASSERT(to_index == FrameSize());
|
|
instructions_.Add(new DeoptCallerFpInstr());
|
|
}
|
|
|
|
|
|
void DeoptInfoBuilder::AddCallerPp(intptr_t to_index) {
|
|
ASSERT(to_index == FrameSize());
|
|
instructions_.Add(new DeoptCallerPpInstr());
|
|
}
|
|
|
|
|
|
void DeoptInfoBuilder::AddCallerPc(intptr_t to_index) {
|
|
ASSERT(to_index == FrameSize());
|
|
instructions_.Add(new DeoptCallerPcInstr());
|
|
}
|
|
|
|
|
|
void DeoptInfoBuilder::AddConstant(const Object& obj, intptr_t to_index) {
|
|
ASSERT(to_index == FrameSize());
|
|
intptr_t object_table_index = FindOrAddObjectInTable(obj);
|
|
instructions_.Add(new DeoptConstantInstr(object_table_index));
|
|
}
|
|
|
|
|
|
void DeoptInfoBuilder::AddMaterialization(MaterializeObjectInstr* mat) {
|
|
const intptr_t index = FindMaterialization(mat);
|
|
if (index >= 0) {
|
|
return; // Already added.
|
|
}
|
|
materializations_.Add(mat);
|
|
|
|
// Count initialized fields and emit kMaterializeObject instruction.
|
|
// There is no need to write nulls into fields because object is null
|
|
// initialized by default.
|
|
intptr_t non_null_fields = 0;
|
|
for (intptr_t i = 0; i < mat->InputCount(); i++) {
|
|
if (!mat->InputAt(i)->BindsToConstantNull()) {
|
|
non_null_fields++;
|
|
}
|
|
}
|
|
|
|
instructions_.Add(new DeoptMaterializeObjectInstr(non_null_fields));
|
|
}
|
|
|
|
|
|
intptr_t DeoptInfoBuilder::EmitMaterializationArguments(intptr_t to_index) {
|
|
ASSERT(to_index == kDartFrameFixedSize);
|
|
for (intptr_t i = 0; i < materializations_.length(); i++) {
|
|
MaterializeObjectInstr* mat = materializations_[i];
|
|
AddConstant(mat->cls(), to_index++); // Class of the instance to allocate.
|
|
for (intptr_t i = 0; i < mat->InputCount(); i++) {
|
|
if (!mat->InputAt(i)->BindsToConstantNull()) {
|
|
// Emit field-value pair.
|
|
AddConstant(mat->FieldAt(i), to_index++);
|
|
AddCopy(mat->InputAt(i), mat->LocationAt(i), to_index++);
|
|
}
|
|
}
|
|
}
|
|
return to_index;
|
|
}
|
|
|
|
|
|
intptr_t DeoptInfoBuilder::FindMaterialization(
|
|
MaterializeObjectInstr* mat) const {
|
|
for (intptr_t i = 0; i < materializations_.length(); i++) {
|
|
if (materializations_[i] == mat) {
|
|
return i;
|
|
}
|
|
}
|
|
return -1;
|
|
}
|
|
|
|
|
|
RawDeoptInfo* DeoptInfoBuilder::CreateDeoptInfo() {
|
|
// TODO(vegorov): enable compression of deoptimization info containing object
|
|
// materialization instructions.
|
|
const bool disable_compression =
|
|
(instructions_[0]->kind() == DeoptInstr::kMaterializeObject);
|
|
|
|
intptr_t length = instructions_.length();
|
|
|
|
// Count the number of instructions that are a shared suffix of some deopt
|
|
// info already written.
|
|
TrieNode* suffix = trie_root_;
|
|
intptr_t suffix_length = 0;
|
|
if (FLAG_compress_deopt_info && !disable_compression) {
|
|
for (intptr_t i = length - 1; i >= 0; --i) {
|
|
TrieNode* node = suffix->FindChild(*instructions_[i]);
|
|
if (node == NULL) break;
|
|
suffix = node;
|
|
++suffix_length;
|
|
}
|
|
}
|
|
|
|
// Allocate space for the translation. If the shared suffix is longer
|
|
// than one instruction, we replace it with a single suffix instruction.
|
|
if (suffix_length > 1) length -= (suffix_length - 1);
|
|
const DeoptInfo& deopt_info = DeoptInfo::Handle(DeoptInfo::New(length));
|
|
|
|
// Write the unshared instructions and build their sub-tree.
|
|
TrieNode* node = NULL;
|
|
intptr_t write_count = (suffix_length > 1) ? length - 1 : length;
|
|
for (intptr_t i = 0; i < write_count; ++i) {
|
|
DeoptInstr* instr = instructions_[i];
|
|
deopt_info.SetAt(i, instr->kind(), instr->from_index());
|
|
TrieNode* child = node;
|
|
node = new TrieNode(instr, current_info_number_);
|
|
node->AddChild(child);
|
|
}
|
|
suffix->AddChild(node);
|
|
|
|
if (suffix_length > 1) {
|
|
DeoptInstr* instr =
|
|
new DeoptSuffixInstr(suffix->info_number(), suffix_length);
|
|
deopt_info.SetAt(length - 1, instr->kind(), instr->from_index());
|
|
}
|
|
|
|
instructions_.Clear();
|
|
materializations_.Clear();
|
|
frame_start_ = -1;
|
|
|
|
++current_info_number_;
|
|
return deopt_info.raw();
|
|
}
|
|
|
|
|
|
intptr_t DeoptTable::SizeFor(intptr_t length) {
|
|
return length * kEntrySize;
|
|
}
|
|
|
|
void DeoptTable::SetEntry(const Array& table,
|
|
intptr_t index,
|
|
const Smi& offset,
|
|
const DeoptInfo& info,
|
|
const Smi& reason) {
|
|
ASSERT((table.Length() % kEntrySize) == 0);
|
|
intptr_t i = index * kEntrySize;
|
|
table.SetAt(i, offset);
|
|
table.SetAt(i + 1, info);
|
|
table.SetAt(i + 2, reason);
|
|
}
|
|
|
|
|
|
intptr_t DeoptTable::GetLength(const Array& table) {
|
|
ASSERT((table.Length() % kEntrySize) == 0);
|
|
return table.Length() / kEntrySize;
|
|
}
|
|
|
|
|
|
void DeoptTable::GetEntry(const Array& table,
|
|
intptr_t index,
|
|
Smi* offset,
|
|
DeoptInfo* info,
|
|
Smi* reason) {
|
|
intptr_t i = index * kEntrySize;
|
|
*offset ^= table.At(i);
|
|
*info ^= table.At(i + 1);
|
|
*reason ^= table.At(i + 2);
|
|
}
|
|
|
|
} // namespace dart
|