/third_party/node/deps/v8/src/wasm/baseline/ppc/ |
D | liftoff-assembler-ppc.h | 798 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/ |
D | liftoff-assembler-mips.h | 771 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/ |
D | liftoff-assembler-loong64.h | 828 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/ |
D | liftoff-assembler-arm64.h | 885 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/ |
D | liftoff-assembler-s390.h | 1224 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/ |
D | liftoff-assembler.h | 790 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/ |
D | liftoff-assembler-mips64.h | 932 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/ |
D | liftoff-assembler-riscv64.h | 946 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/ |
D | liftoff-assembler-x64.h | 850 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/ |
D | liftoff-assembler-arm.h | 1365 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/ |
D | liftoff-assembler-ia32.h | 1141 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()
|