// Copyright 2021 the V8 project authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef V8_EXECUTION_LOONG64_FRAME_CONSTANTS_LOONG64_H_ #define V8_EXECUTION_LOONG64_FRAME_CONSTANTS_LOONG64_H_ #include "src/base/bits.h" #include "src/base/macros.h" #include "src/codegen/register.h" #include "src/execution/frame-constants.h" namespace v8 { namespace internal { class EntryFrameConstants : public AllStatic { public: // This is the offset to where JSEntry pushes the current value of // Isolate::c_entry_fp onto the stack. static constexpr int kCallerFPOffset = -3 * kSystemPointerSize; }; class WasmCompileLazyFrameConstants : public TypedFrameConstants { public: static constexpr int kNumberOfSavedGpParamRegs = 7; static constexpr int kNumberOfSavedFpParamRegs = 8; static constexpr int kNumberOfSavedAllParamRegs = 15; // FP-relative. // See Generate_WasmCompileLazy in builtins-loong64.cc. static constexpr int kWasmInstanceOffset = TYPED_FRAME_PUSHED_VALUE_OFFSET(6); static constexpr int kFixedFrameSizeFromFp = TypedFrameConstants::kFixedFrameSizeFromFp + kNumberOfSavedGpParamRegs * kPointerSize + kNumberOfSavedFpParamRegs * kDoubleSize; }; // Frame constructed by the {WasmDebugBreak} builtin. // After pushing the frame type marker, the builtin pushes all Liftoff cache // registers (see liftoff-assembler-defs.h). class WasmDebugBreakFrameConstants : public TypedFrameConstants { public: // {a0 ... a7, t0 ... t5, s0, s1, s2, s5, s7, s8} static constexpr RegList kPushedGpRegs = {a0, a1, a2, a3, a4, a5, a6, a7, t0, t1, t2, t3, t4, t5, s0, s1, s2, s5, s7, s8}; // {f0, f1, f2, ... f27, f28} static constexpr DoubleRegList kPushedFpRegs = { f0, f1, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11, f12, f13, f14, f15, f16, f17, f18, f19, f20, f21, f22, f23, f24, f25, f26, f27, f28}; static constexpr int kNumPushedGpRegisters = kPushedGpRegs.Count(); static constexpr int kNumPushedFpRegisters = kPushedFpRegs.Count(); static constexpr int kLastPushedGpRegisterOffset = -kFixedFrameSizeFromFp - kNumPushedGpRegisters * kSystemPointerSize; static constexpr int kLastPushedFpRegisterOffset = kLastPushedGpRegisterOffset - kNumPushedFpRegisters * kDoubleSize; // Offsets are fp-relative. static int GetPushedGpRegisterOffset(int reg_code) { DCHECK_NE(0, kPushedGpRegs.bits() & (1 << reg_code)); uint32_t lower_regs = kPushedGpRegs.bits() & ((uint32_t{1} << reg_code) - 1); return kLastPushedGpRegisterOffset + base::bits::CountPopulation(lower_regs) * kSystemPointerSize; } static int GetPushedFpRegisterOffset(int reg_code) { DCHECK_NE(0, kPushedFpRegs.bits() & (1 << reg_code)); uint32_t lower_regs = kPushedFpRegs.bits() & ((uint32_t{1} << reg_code) - 1); return kLastPushedFpRegisterOffset + base::bits::CountPopulation(lower_regs) * kDoubleSize; } }; } // namespace internal } // namespace v8 #endif // V8_EXECUTION_LOONG64_FRAME_CONSTANTS_LOONG64_H_