/third_party/node/deps/v8/src/builtins/mips/ |
H A D | builtins-mips.cc | 2017 Register old_sp = scratch1; in Generate_AllocateSpaceAndShiftExistingArguments() local 2019 __ mov(old_sp, sp); in Generate_AllocateSpaceAndShiftExistingArguments() 2027 __ Lsa(end, old_sp, argc_in_out, kSystemPointerSizeLog2); in Generate_AllocateSpaceAndShiftExistingArguments() 2029 __ Branch(&done, ge, old_sp, Operand(end)); in Generate_AllocateSpaceAndShiftExistingArguments() 2031 __ lw(value, MemOperand(old_sp, 0)); in Generate_AllocateSpaceAndShiftExistingArguments() 2033 __ Addu(old_sp, old_sp, Operand(kSystemPointerSize)); in Generate_AllocateSpaceAndShiftExistingArguments() 2035 __ Branch(&loop, lt, old_sp, Operand(end)); in Generate_AllocateSpaceAndShiftExistingArguments()
|
/third_party/node/deps/v8/src/builtins/mips64/ |
H A D | builtins-mips64.cc | 2062 Register old_sp = scratch1; in Generate_AllocateSpaceAndShiftExistingArguments() local 2064 __ mov(old_sp, sp); in Generate_AllocateSpaceAndShiftExistingArguments() 2072 __ Dlsa(end, old_sp, argc_in_out, kSystemPointerSizeLog2); in Generate_AllocateSpaceAndShiftExistingArguments() 2074 __ Branch(&done, ge, old_sp, Operand(end)); in Generate_AllocateSpaceAndShiftExistingArguments() 2076 __ Ld(value, MemOperand(old_sp, 0)); in Generate_AllocateSpaceAndShiftExistingArguments() 2078 __ Daddu(old_sp, old_sp, Operand(kSystemPointerSize)); in Generate_AllocateSpaceAndShiftExistingArguments() 2080 __ Branch(&loop, lt, old_sp, Operand(end)); in Generate_AllocateSpaceAndShiftExistingArguments()
|
/third_party/node/deps/v8/src/builtins/loong64/ |
H A D | builtins-loong64.cc | 2065 Register old_sp = scratch1; in Generate_AllocateSpaceAndShiftExistingArguments() local 2067 __ mov(old_sp, sp); in Generate_AllocateSpaceAndShiftExistingArguments() 2075 __ Alsl_d(end, argc_in_out, old_sp, kSystemPointerSizeLog2); in Generate_AllocateSpaceAndShiftExistingArguments() 2077 __ Branch(&done, ge, old_sp, Operand(end)); in Generate_AllocateSpaceAndShiftExistingArguments() 2079 __ Ld_d(value, MemOperand(old_sp, 0)); in Generate_AllocateSpaceAndShiftExistingArguments() 2081 __ Add_d(old_sp, old_sp, Operand(kSystemPointerSize)); in Generate_AllocateSpaceAndShiftExistingArguments() 2083 __ Branch(&loop, lt, old_sp, Operand(end)); in Generate_AllocateSpaceAndShiftExistingArguments()
|
/third_party/node/deps/v8/src/builtins/riscv64/ |
H A D | builtins-riscv64.cc | 2167 Register old_sp = scratch1; in Generate_AllocateSpaceAndShiftExistingArguments() local 2169 __ mv(old_sp, sp); in Generate_AllocateSpaceAndShiftExistingArguments() 2177 __ CalcScaledAddress(end, old_sp, argc_in_out, kSystemPointerSizeLog2); in Generate_AllocateSpaceAndShiftExistingArguments() 2179 __ Branch(&done, ge, old_sp, Operand(end)); in Generate_AllocateSpaceAndShiftExistingArguments() 2181 __ Ld(value, MemOperand(old_sp, 0)); in Generate_AllocateSpaceAndShiftExistingArguments() 2183 __ Add64(old_sp, old_sp, Operand(kSystemPointerSize)); in Generate_AllocateSpaceAndShiftExistingArguments() 2185 __ Branch(&loop, lt, old_sp, Operand(end)); in Generate_AllocateSpaceAndShiftExistingArguments()
|
/third_party/node/deps/v8/src/builtins/s390/ |
H A D | builtins-s390.cc | 2295 Register old_sp = scratch1; in Generate_AllocateSpaceAndShiftExistingArguments() local 2297 __ mov(old_sp, sp); in Generate_AllocateSpaceAndShiftExistingArguments() 2306 __ AddS64(end, old_sp, r0); in Generate_AllocateSpaceAndShiftExistingArguments() 2309 __ CmpS64(old_sp, end); in Generate_AllocateSpaceAndShiftExistingArguments() 2311 __ LoadU64(value, MemOperand(old_sp)); in Generate_AllocateSpaceAndShiftExistingArguments() 2312 __ lay(old_sp, MemOperand(old_sp, kSystemPointerSize)); in Generate_AllocateSpaceAndShiftExistingArguments()
|
/third_party/node/deps/v8/src/builtins/arm/ |
H A D | builtins-arm.cc | 2045 Register old_sp = scratch1; in Generate_AllocateSpaceAndShiftExistingArguments() local 2047 __ mov(old_sp, sp); in Generate_AllocateSpaceAndShiftExistingArguments() 2055 __ add(end, old_sp, Operand(argc_in_out, LSL, kSystemPointerSizeLog2)); in Generate_AllocateSpaceAndShiftExistingArguments() 2058 __ cmp(old_sp, end); in Generate_AllocateSpaceAndShiftExistingArguments() 2060 __ ldr(value, MemOperand(old_sp, kSystemPointerSize, PostIndex)); in Generate_AllocateSpaceAndShiftExistingArguments()
|
/third_party/node/deps/v8/src/builtins/ppc/ |
H A D | builtins-ppc.cc | 2252 Register old_sp = scratch1; in Generate_AllocateSpaceAndShiftExistingArguments() local 2254 __ addi(old_sp, sp, Operand(-kSystemPointerSize)); in Generate_AllocateSpaceAndShiftExistingArguments() 2266 __ LoadU64WithUpdate(r0, MemOperand(old_sp, kSystemPointerSize)); in Generate_AllocateSpaceAndShiftExistingArguments()
|