Home
last modified time | relevance | path

Searched refs:caller_slot_idx (Results 1 – 11 of 11) sorted by relevance

/third_party/node/deps/v8/src/wasm/baseline/ppc/
Dliftoff-assembler-ppc.h798 uint32_t caller_slot_idx, in LoadCallerFrameSlot() argument
800 int32_t offset = (caller_slot_idx + 1) * kSystemPointerSize; in LoadCallerFrameSlot()
836 uint32_t caller_slot_idx, in StoreCallerFrameSlot() argument
838 int32_t offset = (caller_slot_idx + 1) * kSystemPointerSize; in StoreCallerFrameSlot()
/third_party/node/deps/v8/src/wasm/baseline/mips/
Dliftoff-assembler-mips.h771 uint32_t caller_slot_idx, in LoadCallerFrameSlot() argument
773 int32_t offset = kSystemPointerSize * (caller_slot_idx + 1); in LoadCallerFrameSlot()
778 uint32_t caller_slot_idx, in StoreCallerFrameSlot() argument
780 int32_t offset = kSystemPointerSize * (caller_slot_idx + 1); in StoreCallerFrameSlot()
/third_party/node/deps/v8/src/wasm/baseline/loong64/
Dliftoff-assembler-loong64.h828 uint32_t caller_slot_idx, in LoadCallerFrameSlot() argument
830 MemOperand src(fp, kSystemPointerSize * (caller_slot_idx + 1)); in LoadCallerFrameSlot()
835 uint32_t caller_slot_idx, in StoreCallerFrameSlot() argument
837 int32_t offset = kSystemPointerSize * (caller_slot_idx + 1); in StoreCallerFrameSlot()
/third_party/node/deps/v8/src/wasm/baseline/arm64/
Dliftoff-assembler-arm64.h885 uint32_t caller_slot_idx, in LoadCallerFrameSlot() argument
887 int32_t offset = (caller_slot_idx + 1) * LiftoffAssembler::kStackSlotSize; in LoadCallerFrameSlot()
892 uint32_t caller_slot_idx, in StoreCallerFrameSlot() argument
894 int32_t offset = (caller_slot_idx + 1) * LiftoffAssembler::kStackSlotSize; in StoreCallerFrameSlot()
/third_party/node/deps/v8/src/wasm/baseline/s390/
Dliftoff-assembler-s390.h1224 uint32_t caller_slot_idx, in LoadCallerFrameSlot() argument
1226 int32_t offset = (caller_slot_idx + 1) * 8; in LoadCallerFrameSlot()
1264 uint32_t caller_slot_idx, in StoreCallerFrameSlot() argument
1266 int32_t offset = (caller_slot_idx + 1) * 8; in StoreCallerFrameSlot()
/third_party/node/deps/v8/src/wasm/baseline/
Dliftoff-assembler.h790 inline void LoadCallerFrameSlot(LiftoffRegister, uint32_t caller_slot_idx,
792 inline void StoreCallerFrameSlot(LiftoffRegister, uint32_t caller_slot_idx,
/third_party/node/deps/v8/src/wasm/baseline/mips64/
Dliftoff-assembler-mips64.h932 uint32_t caller_slot_idx, in LoadCallerFrameSlot() argument
934 MemOperand src(fp, kSystemPointerSize * (caller_slot_idx + 1)); in LoadCallerFrameSlot()
939 uint32_t caller_slot_idx, in StoreCallerFrameSlot() argument
941 int32_t offset = kSystemPointerSize * (caller_slot_idx + 1); in StoreCallerFrameSlot()
/third_party/node/deps/v8/src/wasm/baseline/riscv64/
Dliftoff-assembler-riscv64.h946 uint32_t caller_slot_idx, in LoadCallerFrameSlot() argument
948 MemOperand src(fp, kSystemPointerSize * (caller_slot_idx + 1)); in LoadCallerFrameSlot()
953 uint32_t caller_slot_idx, in StoreCallerFrameSlot() argument
955 int32_t offset = kSystemPointerSize * (caller_slot_idx + 1); in StoreCallerFrameSlot()
/third_party/node/deps/v8/src/wasm/baseline/x64/
Dliftoff-assembler-x64.h850 uint32_t caller_slot_idx, in LoadCallerFrameSlot() argument
852 Operand src(rbp, kSystemPointerSize * (caller_slot_idx + 1)); in LoadCallerFrameSlot()
857 uint32_t caller_slot_idx, in StoreCallerFrameSlot() argument
859 Operand dst(rbp, kSystemPointerSize * (caller_slot_idx + 1)); in StoreCallerFrameSlot()
/third_party/node/deps/v8/src/wasm/baseline/arm/
Dliftoff-assembler-arm.h1365 uint32_t caller_slot_idx, in LoadCallerFrameSlot() argument
1367 MemOperand src(fp, (caller_slot_idx + 1) * kSystemPointerSize); in LoadCallerFrameSlot()
1372 uint32_t caller_slot_idx, in StoreCallerFrameSlot() argument
1374 MemOperand dst(fp, (caller_slot_idx + 1) * kSystemPointerSize); in StoreCallerFrameSlot()
/third_party/node/deps/v8/src/wasm/baseline/ia32/
Dliftoff-assembler-ia32.h1141 uint32_t caller_slot_idx, in LoadCallerFrameSlot() argument
1143 liftoff::Load(this, dst, ebp, kSystemPointerSize * (caller_slot_idx + 1), in LoadCallerFrameSlot()
1153 uint32_t caller_slot_idx, in StoreCallerFrameSlot() argument
1155 liftoff::Store(this, ebp, kSystemPointerSize * (caller_slot_idx + 1), src, in StoreCallerFrameSlot()