Home
last modified time | relevance | path

Searched defs:AllocateStackSpace (Results 1 – 25 of 25) sorted by relevance

/third_party/node/deps/v8/src/codegen/arm/
Dmacro-assembler-arm.h64 void AllocateStackSpace(Register bytes) { sub(sp, sp, bytes); } in AllocateStackSpace() function
65 void AllocateStackSpace(int bytes) { in AllocateStackSpace() function
Dmacro-assembler-arm.cc1390 void TurboAssembler::AllocateStackSpace(Register bytes_scratch) { in CallRecordWriteStub() function in v8::internal::TurboAssembler
1413 void TurboAssembler::AllocateStackSpace(int bytes) { in CallRecordWriteStub() function in v8::internal::TurboAssembler
/third_party/node/deps/v8/src/codegen/x64/
Dmacro-assembler-x64.h485 void AllocateStackSpace(Register bytes) { subq(rsp, bytes); } in AllocateStackSpace() function
486 void AllocateStackSpace(int bytes) { in AllocateStackSpace() function
Dmacro-assembler-x64.cc2776 void TurboAssembler::AllocateStackSpace(Register bytes_scratch) { in CallRecordWriteStub() function in v8::internal::TurboAssembler
2798 void TurboAssembler::AllocateStackSpace(int bytes) { in CallRecordWriteStub() function in v8::internal::TurboAssembler
/third_party/node/deps/v8/src/codegen/ia32/
Dmacro-assembler-ia32.h97 void AllocateStackSpace(Register bytes) { sub(esp, bytes); } in AllocateStackSpace() function
98 void AllocateStackSpace(int bytes) { in AllocateStackSpace() function
Dmacro-assembler-ia32.cc957 void TurboAssembler::AllocateStackSpace(Register bytes_scratch) { in CallRecordWriteStub() function in v8::internal::TurboAssembler
979 void TurboAssembler::AllocateStackSpace(int bytes) { in CallRecordWriteStub() function in v8::internal::TurboAssembler
/third_party/node/deps/v8/src/compiler/backend/ia32/
Dcode-generator-ia32.cc274 __ AllocateStackSpace(kDoubleSize); in Generate() local
1400 __ AllocateStackSpace(kDoubleSize); in AssembleArchInstruction() local
1694 __ AllocateStackSpace(stack_decrement - kSystemPointerSize); in AssembleArchInstruction() local
1698 __ AllocateStackSpace(stack_decrement - kSystemPointerSize); in AssembleArchInstruction() local
1705 __ AllocateStackSpace(stack_decrement - kSystemPointerSize); in AssembleArchInstruction() local
1709 __ AllocateStackSpace(stack_decrement); in AssembleArchInstruction() local
1713 __ AllocateStackSpace(stack_decrement); in AssembleArchInstruction() local
1717 __ AllocateStackSpace(stack_decrement); in AssembleArchInstruction() local
1721 __ AllocateStackSpace(stack_decrement - kSystemPointerSize); in AssembleArchInstruction() local
1726 __ AllocateStackSpace(stack_decrement); in AssembleArchInstruction() local
[all …]
/third_party/node/deps/v8/src/codegen/ppc/
Dmacro-assembler-ppc.h104 void AllocateStackSpace(int bytes) { in AllocateStackSpace() function
110 void AllocateStackSpace(Register bytes) { sub(sp, sp, bytes); } in AllocateStackSpace() function
/third_party/node/deps/v8/src/compiler/backend/x64/
Dcode-generator-x64.cc223 __ AllocateStackSpace(kDoubleSize); in Generate() local
1834 __ AllocateStackSpace(kDoubleSize); in AssembleArchInstruction() local
2664 __ AllocateStackSpace(stack_decrement - kSystemPointerSize); in AssembleArchInstruction() local
2667 __ AllocateStackSpace(stack_decrement - kSystemPointerSize); in AssembleArchInstruction() local
2674 __ AllocateStackSpace(stack_decrement - kSystemPointerSize); in AssembleArchInstruction() local
2678 __ AllocateStackSpace(stack_decrement); in AssembleArchInstruction() local
2682 __ AllocateStackSpace(stack_decrement); in AssembleArchInstruction() local
2687 __ AllocateStackSpace(stack_decrement - kSystemPointerSize); in AssembleArchInstruction() local
2694 __ AllocateStackSpace(stack_decrement); in AssembleArchInstruction() local
4664 __ AllocateStackSpace(kSystemPointerSize); in AssembleConstructFrame() local
[all …]
/third_party/node/deps/v8/src/codegen/loong64/
Dmacro-assembler-loong64.h74 void AllocateStackSpace(Register bytes) { Sub_d(sp, sp, bytes); } in AllocateStackSpace() function
76 void AllocateStackSpace(int bytes) { in AllocateStackSpace() function
/third_party/node/deps/v8/src/codegen/mips/
Dmacro-assembler-mips.h85 void AllocateStackSpace(Register bytes) { Subu(sp, sp, bytes); } in AllocateStackSpace() function
86 void AllocateStackSpace(int bytes) { in AllocateStackSpace() function
/third_party/node/deps/v8/src/codegen/s390/
Dmacro-assembler-s390.h1078 void AllocateStackSpace(int bytes) { in AllocateStackSpace() function
1084 void AllocateStackSpace(Register bytes) { SubS64(sp, sp, bytes); } in AllocateStackSpace() function
/third_party/node/deps/v8/src/codegen/mips64/
Dmacro-assembler-mips64.h105 void AllocateStackSpace(Register bytes) { Dsubu(sp, sp, bytes); } in AllocateStackSpace() function
107 void AllocateStackSpace(int bytes) { in AllocateStackSpace() function
/third_party/node/deps/v8/src/codegen/riscv64/
Dmacro-assembler-riscv64.h163 void AllocateStackSpace(Register bytes) { Sub64(sp, sp, bytes); } in AllocateStackSpace() function
165 void AllocateStackSpace(int bytes) { in AllocateStackSpace() function
/third_party/node/deps/v8/src/builtins/ia32/
Dbuiltins-ia32.cc388 __ AllocateStackSpace(kSystemPointerSize); in Generate_JSEntryVariant() local
1443 __ AllocateStackSpace(scratch1); in Generate_InterpreterPushZeroAndArgsAndReturnAddress() local
2155 __ AllocateStackSpace(new_space); in Generate_AllocateSpaceAndShiftExistingArguments() local
2874 __ AllocateStackSpace(kSimd128Size * arraysize(wasm::kFpParamRegisters)); in Generate_WasmCompileLazy() local
2934 __ AllocateStackSpace(kFpStackSize); in Generate_WasmDebugBreak() local
3188 __ AllocateStackSpace(kDoubleSize); // Nolint. in Generate_DoubleToI() local
3986 __ AllocateStackSpace(kDoubleRegsSize); in Generate_DeoptimizationEntry() local
/third_party/node/deps/v8/src/regexp/arm/
Dregexp-macro-assembler-arm.cc763 __ AllocateStackSpace(num_registers_ * kPointerSize); in GetCode() local
1154 __ AllocateStackSpace(stack_alignment); in CallCheckStackGuardState() local
/third_party/node/deps/v8/src/compiler/backend/arm/
Dcode-generator-arm.cc1734 __ AllocateStackSpace((slots - pushed_slots) * kSystemPointerSize); in AssembleArchInstruction() local
3698 __ AllocateStackSpace(kSystemPointerSize); in AssembleConstructFrame() local
3719 __ AllocateStackSpace(kSystemPointerSize); in AssembleConstructFrame() local
3787 __ AllocateStackSpace(required_slots * kSystemPointerSize); in AssembleConstructFrame() local
3804 __ AllocateStackSpace(returns * kSystemPointerSize); in AssembleConstructFrame() local
/third_party/node/deps/v8/src/builtins/x64/
Dbuiltins-x64.cc378 __ AllocateStackSpace(kSystemPointerSize); in Generate_JSEntryVariant() local
392 __ AllocateStackSpace(EntryFrameConstants::kXMMRegistersBlockSize); in Generate_JSEntryVariant() local
2135 __ AllocateStackSpace(new_space); in Generate_AllocateSpaceAndShiftExistingArguments() local
2806 __ AllocateStackSpace(kSimd128Size * arraysize(wasm::kFpParamRegisters)); in Generate_WasmCompileLazy() local
2866 __ AllocateStackSpace(kFpStackSize); in Generate_WasmDebugBreak() local
4830 __ AllocateStackSpace(kDoubleRegsSize); in Generate_DeoptimizationEntry() local
/third_party/node/deps/v8/src/compiler/backend/s390/
Dcode-generator-s390.cc1971 __ AllocateStackSpace((slots - pushed_slots) * kSystemPointerSize); in AssembleArchInstruction() local
3502 __ AllocateStackSpace(returns * kSystemPointerSize); in AssembleConstructFrame() local
/third_party/node/deps/v8/src/regexp/ia32/
Dregexp-macro-assembler-ia32.cc809 __ AllocateStackSpace(num_registers_ * kSystemPointerSize); in GetCode() local
/third_party/node/deps/v8/src/regexp/x64/
Dregexp-macro-assembler-x64.cc844 __ AllocateStackSpace(num_registers_ * kSystemPointerSize); in GetCode() local
/third_party/node/deps/v8/src/compiler/backend/ppc/
Dcode-generator-ppc.cc1679 __ AllocateStackSpace((slots - pushed_slots) * kSystemPointerSize); in AssembleArchInstruction() local
4149 __ AllocateStackSpace(returns * kSystemPointerSize); in AssembleConstructFrame() local
/third_party/node/deps/v8/src/builtins/arm/
Dbuiltins-arm.cc2049 __ AllocateStackSpace(new_space); in Generate_AllocateSpaceAndShiftExistingArguments() local
3137 __ AllocateStackSpace(FCA::kArgsLength * kPointerSize); in Generate_CallApiCallback() local
/third_party/node/deps/v8/src/builtins/s390/
Dbuiltins-s390.cc2299 __ AllocateStackSpace(new_space); in Generate_AllocateSpaceAndShiftExistingArguments() local
/third_party/node/deps/v8/src/builtins/ppc/
Dbuiltins-ppc.cc2256 __ AllocateStackSpace(new_space); in Generate_AllocateSpaceAndShiftExistingArguments() local