/third_party/node/deps/v8/src/wasm/baseline/ppc/ |
H A D | liftoff-assembler-ppc.h | 2958 int arg_bytes = 0; in CallC() local 2962 StoreU32(args->gp(), MemOperand(sp, arg_bytes), r0); in CallC() 2965 StoreU64(args->gp(), MemOperand(sp, arg_bytes), r0); in CallC() 2968 StoreF32(args->fp(), MemOperand(sp, arg_bytes), r0); in CallC() 2971 StoreF64(args->fp(), MemOperand(sp, arg_bytes), r0); in CallC() 2977 arg_bytes += value_kind_size(param_kind); in CallC() 2980 DCHECK_LE(arg_bytes, stack_bytes); in CallC()
|
/third_party/node/deps/v8/src/wasm/baseline/s390/ |
H A D | liftoff-assembler-s390.h | 2964 int arg_bytes = 0; in CallC() local 2968 StoreU32(args->gp(), MemOperand(sp, arg_bytes)); in CallC() 2971 StoreU64(args->gp(), MemOperand(sp, arg_bytes)); in CallC() 2974 StoreF32(args->fp(), MemOperand(sp, arg_bytes)); in CallC() 2977 StoreF64(args->fp(), MemOperand(sp, arg_bytes)); in CallC() 2983 arg_bytes += value_kind_size(param_kind); in CallC() 2986 DCHECK_LE(arg_bytes, stack_bytes); in CallC()
|
/third_party/node/deps/v8/src/wasm/baseline/arm/ |
H A D | liftoff-assembler-arm.h | 4155 int arg_bytes = 0; 4159 str(args->gp(), MemOperand(sp, arg_bytes)); 4162 str(args->low_gp(), MemOperand(sp, arg_bytes)); 4163 str(args->high_gp(), MemOperand(sp, arg_bytes + kSystemPointerSize)); 4166 vstr(liftoff::GetFloatRegister(args->fp()), MemOperand(sp, arg_bytes)); 4169 vstr(args->fp(), MemOperand(sp, arg_bytes)); 4172 vstr(args->low_fp(), MemOperand(sp, arg_bytes)); 4174 MemOperand(sp, arg_bytes + 2 * kSystemPointerSize)); 4180 arg_bytes += value_kind_size(param_kind); 4182 DCHECK_LE(arg_bytes, stack_byte [all...] |
/third_party/node/deps/v8/src/wasm/baseline/mips/ |
H A D | liftoff-assembler-mips.h | 2988 int arg_bytes = 0; in CallC() local 2990 liftoff::Store(this, sp, arg_bytes, *args++, param_kind); in CallC() 2991 arg_bytes += value_kind_size(param_kind); in CallC() 2993 DCHECK_LE(arg_bytes, stack_bytes); in CallC()
|
/third_party/node/deps/v8/src/wasm/baseline/loong64/ |
H A D | liftoff-assembler-loong64.h | 2963 int arg_bytes = 0; in CallC() local 2965 liftoff::Store(this, sp, arg_bytes, *args++, param_kind); in CallC() 2966 arg_bytes += value_kind_size(param_kind); in CallC() 2968 DCHECK_LE(arg_bytes, stack_bytes); in CallC()
|
/third_party/node/deps/v8/src/wasm/baseline/mips64/ |
H A D | liftoff-assembler-mips64.h | 3533 int arg_bytes = 0; in CallC() local 3535 liftoff::Store(this, sp, arg_bytes, *args++, param_kind); in CallC() 3536 arg_bytes += value_kind_size(param_kind); in CallC() 3538 DCHECK_LE(arg_bytes, stack_bytes); in CallC()
|
/third_party/node/deps/v8/src/wasm/baseline/ia32/ |
H A D | liftoff-assembler-ia32.h | 4542 int arg_bytes = 0; 4544 liftoff::Store(this, esp, arg_bytes, *args++, param_kind); 4545 arg_bytes += value_kind_size(param_kind); 4547 DCHECK_LE(arg_bytes, stack_bytes);
|
/third_party/node/deps/v8/src/wasm/baseline/x64/ |
H A D | liftoff-assembler-x64.h | 4090 int arg_bytes = 0; in CallC() local 4092 liftoff::Store(this, Operand(rsp, arg_bytes), *args++, param_kind); in CallC() 4093 arg_bytes += value_kind_size(param_kind); in CallC() 4095 DCHECK_LE(arg_bytes, stack_bytes); in CallC()
|
/third_party/node/deps/v8/src/wasm/baseline/riscv64/ |
H A D | liftoff-assembler-riscv64.h | 3718 int arg_bytes = 0; in CallC() local 3720 liftoff::Store(this, sp, arg_bytes, *args++, param_kind); in CallC() 3721 arg_bytes += value_kind_size(param_kind); in CallC() 3723 DCHECK_LE(arg_bytes, stack_bytes); in CallC()
|