#include "src/codegen/flush-instruction-cache.h"
#include "src/codegen/macro-assembler.h"
#include "src/deoptimizer/deoptimizer.h"
namespace v8 {
namespace internal {
const int Deoptimizer::kEagerDeoptExitSize = 3 * kInstrSize;
const int Deoptimizer::kLazyDeoptExitSize = 3 * kInstrSize;
const int Deoptimizer::kAdaptShadowStackOffsetToSubtract = 0;
void Deoptimizer::ZapCode(Address start, Address end, RelocIterator& it) {
}
void Deoptimizer::PatchToJump(Address pc, Address new_pc) {
intptr_t offset = (new_pc - pc) / kInstrSize;
constexpr int kSize = 128;
AccountingAllocator allocator;
Assembler masm(
&allocator, AssemblerOptions{},
ExternalAssemblerBuffer(reinterpret_cast<uint8_t*>(pc), kSize));
DCHECK(is_int16(offset));
masm.b(static_cast<int>(offset - 1));
masm.nop();
FlushInstructionCache(pc, kSize);
}
Float32 RegisterValues::GetFloatRegister(unsigned n) const {
V8_ASSUME(n < arraysize(simd128_registers_));
return base::ReadUnalignedValue<Float32>(
reinterpret_cast<Address>(simd128_registers_ + n));
}
Float64 RegisterValues::GetDoubleRegister(unsigned n) const {
V8_ASSUME(n < arraysize(simd128_registers_));
return base::ReadUnalignedValue<Float64>(
reinterpret_cast<Address>(simd128_registers_ + n));
}
void RegisterValues::SetDoubleRegister(unsigned n, Float64 value) {
V8_ASSUME(n < arraysize(simd128_registers_));
base::WriteUnalignedValue(reinterpret_cast<Address>(simd128_registers_ + n),
value);
}
void FrameDescription::SetCallerPc(unsigned offset, intptr_t value) {
SetFrameSlot(offset, value);
}
void FrameDescription::SetCallerFp(unsigned offset, intptr_t value) {
SetFrameSlot(offset, value);
}
void FrameDescription::SetCallerConstantPool(unsigned offset, intptr_t value) {
UNREACHABLE();
}
void FrameDescription::SetPc(intptr_t pc) { pc_ = pc; }
}
}