Home
last modified time | relevance | path

Searched refs:required_slots (Results 1 - 12 of 12) sorted by relevance

/third_party/node/deps/v8/src/compiler/backend/arm64/
H A Dcode-generator-arm64.cc3040 int required_slots = in AssembleArchInstruction()
3057 DCHECK_EQ(required_slots % 2, 1); in AssembleArchInstruction()
3059 // Update required_slots count since we have just claimed one extra slot. in AssembleArchInstruction()
3061 required_slots -= TurboAssembler::kExtraSlotClaimedByPrologue; in AssembleArchInstruction()
3085 required_slots -= in AssembleArchInstruction()
3090 if (info()->IsWasm() && required_slots * kSystemPointerSize > 4 * KB) { in AssembleArchInstruction()
3099 if (required_slots * kSystemPointerSize < FLAG_stack_size * KB) { in AssembleArchInstruction()
3106 __ Add(scratch, scratch, required_slots * kSystemPointerSize); in AssembleArchInstruction()
3131 required_slots -= saves.Count(); in AssembleArchInstruction()
3132 required_slots in AssembleArchInstruction()
[all...]
/third_party/node/deps/v8/src/compiler/backend/loong64/
H A Dcode-generator-loong64.cc2235 int required_slots = in AssembleConstructFrame() local
2248 required_slots -= osr_helper()->UnoptimizedFrameSlots(); in AssembleConstructFrame()
2254 if (required_slots > 0) { in AssembleConstructFrame()
2257 if (info()->IsWasm() && required_slots * kSystemPointerSize > 4 * KB) { in AssembleConstructFrame()
2267 if (required_slots * kSystemPointerSize < FLAG_stack_size * KB) { in AssembleConstructFrame()
2275 Operand(required_slots * kSystemPointerSize)); in AssembleConstructFrame()
2296 required_slots -= saves.Count(); in AssembleConstructFrame()
2297 required_slots -= saves_fpu.Count(); in AssembleConstructFrame()
2298 required_slots -= returns; in AssembleConstructFrame()
2299 if (required_slots > in AssembleConstructFrame()
[all...]
/third_party/mesa3d/src/gallium/drivers/r600/sfn/
H A Dsfn_instr_alu.h153 unsigned required_slots() const { return m_required_slots;}
H A Dsfn_assembler.cpp382 if (m_bc->cf_last->ndw + 2 * (*group.begin())->required_slots() > 220) { in visit()
/third_party/node/deps/v8/src/compiler/backend/arm/
H A Dcode-generator-arm.cc3727 int required_slots = in AssembleArchInstruction()
3740 required_slots -= osr_helper()->UnoptimizedFrameSlots(); in AssembleArchInstruction()
3746 if (required_slots > 0) { in AssembleArchInstruction()
3749 if (info()->IsWasm() && required_slots * kSystemPointerSize > 4 * KB) { in AssembleArchInstruction()
3759 if (required_slots * kSystemPointerSize < FLAG_stack_size * KB) { in AssembleArchInstruction()
3766 __ add(scratch, scratch, Operand(required_slots * kSystemPointerSize)); in AssembleArchInstruction()
3783 required_slots -= saves.Count(); in AssembleArchInstruction()
3784 required_slots -= frame()->GetReturnSlotCount(); in AssembleArchInstruction()
3785 required_slots -= 2 * saves_fp.Count(); in AssembleArchInstruction()
3786 if (required_slots > in AssembleArchInstruction()
[all...]
/third_party/node/deps/v8/src/compiler/backend/ppc/
H A Dcode-generator-ppc.cc4070 int required_slots = in AssembleConstructFrame() local
4082 required_slots -= osr_helper()->UnoptimizedFrameSlots(); in AssembleConstructFrame()
4091 if (required_slots > 0) { in AssembleConstructFrame()
4093 if (info()->IsWasm() && required_slots * kSystemPointerSize > 4 * KB) { in AssembleConstructFrame()
4103 if (required_slots * kSystemPointerSize < FLAG_stack_size * KB) { in AssembleConstructFrame()
4112 Operand(required_slots * kSystemPointerSize), r0); in AssembleConstructFrame()
4129 required_slots -= saves.Count(); in AssembleConstructFrame()
4130 required_slots -= frame()->GetReturnSlotCount(); in AssembleConstructFrame()
4131 required_slots -= (kDoubleSize / kSystemPointerSize) * saves_fp.Count(); in AssembleConstructFrame()
4132 __ AddS64(sp, sp, Operand(-required_slots * kSystemPointerSiz in AssembleConstructFrame()
[all...]
/third_party/node/deps/v8/src/compiler/backend/ia32/
H A Dcode-generator-ia32.cc4047 int required_slots = in AssembleConstructFrame() local
4060 required_slots -= osr_helper()->UnoptimizedFrameSlots(); in AssembleConstructFrame()
4064 if (required_slots > 0) { in AssembleConstructFrame()
4067 if (info()->IsWasm() && required_slots * kSystemPointerSize > 4 * KB) { in AssembleConstructFrame()
4077 if (required_slots * kSystemPointerSize < FLAG_stack_size * KB) { in AssembleConstructFrame()
4084 __ add(scratch, Immediate(required_slots * kSystemPointerSize)); in AssembleConstructFrame()
4102 required_slots -= saves.Count(); in AssembleConstructFrame()
4103 required_slots -= frame()->GetReturnSlotCount(); in AssembleConstructFrame()
4104 if (required_slots > 0) { in AssembleConstructFrame()
4105 __ AllocateStackSpace(required_slots * kSystemPointerSiz in AssembleConstructFrame()
[all...]
/third_party/node/deps/v8/src/compiler/backend/s390/
H A Dcode-generator-s390.cc3427 int required_slots = in AssembleConstructFrame() local
3439 required_slots -= osr_helper()->UnoptimizedFrameSlots(); in AssembleConstructFrame()
3445 if (required_slots > 0) { in AssembleConstructFrame()
3447 if (info()->IsWasm() && required_slots * kSystemPointerSize > 4 * KB) { in AssembleConstructFrame()
3457 if (required_slots * kSystemPointerSize < FLAG_stack_size * KB) { in AssembleConstructFrame()
3465 Operand(required_slots * kSystemPointerSize)); in AssembleConstructFrame()
3482 required_slots -= saves.Count(); in AssembleConstructFrame()
3483 required_slots -= frame()->GetReturnSlotCount(); in AssembleConstructFrame()
3484 required_slots -= (kDoubleSize / kSystemPointerSize) * saves_fp.Count(); in AssembleConstructFrame()
3485 __ lay(sp, MemOperand(sp, -required_slots * kSystemPointerSiz in AssembleConstructFrame()
[all...]
/third_party/node/deps/v8/src/compiler/backend/mips64/
H A Dcode-generator-mips64.cc4193 int required_slots = in AssembleConstructFrame() local
4206 required_slots -= osr_helper()->UnoptimizedFrameSlots(); in AssembleConstructFrame()
4212 if (required_slots > 0) { in AssembleConstructFrame()
4215 if (info()->IsWasm() && required_slots * kSystemPointerSize > 4 * KB) { in AssembleConstructFrame()
4225 if (required_slots * kSystemPointerSize < FLAG_stack_size * KB) { in AssembleConstructFrame()
4232 Operand(required_slots * kSystemPointerSize)); in AssembleConstructFrame()
4251 required_slots -= saves.Count(); in AssembleConstructFrame()
4252 required_slots -= saves_fpu.Count(); in AssembleConstructFrame()
4253 required_slots -= returns; in AssembleConstructFrame()
4254 if (required_slots > in AssembleConstructFrame()
[all...]
/third_party/node/deps/v8/src/compiler/backend/x64/
H A Dcode-generator-x64.cc4690 int required_slots = in AssembleConstructFrame() local
4703 required_slots -= static_cast<int>(osr_helper()->UnoptimizedFrameSlots()); in AssembleConstructFrame()
4709 if (required_slots > 0) { in AssembleConstructFrame()
4712 if (info()->IsWasm() && required_slots * kSystemPointerSize > 4 * KB) { in AssembleConstructFrame()
4722 if (required_slots * kSystemPointerSize < FLAG_stack_size * KB) { in AssembleConstructFrame()
4728 Immediate(required_slots * kSystemPointerSize)); in AssembleConstructFrame()
4745 required_slots -= saves.Count(); in AssembleConstructFrame()
4746 required_slots -= saves_fp.Count() * (kQuadWordSize / kSystemPointerSize); in AssembleConstructFrame()
4747 required_slots -= frame()->GetReturnSlotCount(); in AssembleConstructFrame()
4748 if (required_slots > in AssembleConstructFrame()
[all...]
/third_party/node/deps/v8/src/compiler/backend/mips/
H A Dcode-generator-mips.cc3991 int required_slots = in AssembleConstructFrame() local
4004 required_slots -= osr_helper()->UnoptimizedFrameSlots(); in AssembleConstructFrame()
4010 if (required_slots > 0) { in AssembleConstructFrame()
4013 if (info()->IsWasm() && required_slots * kSystemPointerSize > 4 * KB) { in AssembleConstructFrame()
4023 if (required_slots * kSystemPointerSize < FLAG_stack_size * KB) { in AssembleConstructFrame()
4030 Operand(required_slots * kSystemPointerSize)); in AssembleConstructFrame()
4049 required_slots -= saves.Count(); in AssembleConstructFrame()
4050 required_slots -= 2 * saves_fpu.Count(); in AssembleConstructFrame()
4051 required_slots -= returns; in AssembleConstructFrame()
4052 if (required_slots > in AssembleConstructFrame()
[all...]
/third_party/node/deps/v8/src/compiler/backend/riscv64/
H A Dcode-generator-riscv64.cc3897 int required_slots = in AssembleConstructFrame() local
3910 required_slots -= osr_helper()->UnoptimizedFrameSlots(); in AssembleConstructFrame()
3916 if (required_slots > 0) { in AssembleConstructFrame()
3918 if (info()->IsWasm() && required_slots > 128) { in AssembleConstructFrame()
3928 if ((required_slots * kSystemPointerSize) < (FLAG_stack_size * 1024)) { in AssembleConstructFrame()
3935 Operand(required_slots * kSystemPointerSize)); in AssembleConstructFrame()
3954 required_slots -= saves.Count(); in AssembleConstructFrame()
3955 required_slots -= saves_fpu.Count(); in AssembleConstructFrame()
3956 required_slots -= returns; in AssembleConstructFrame()
3957 if (required_slots > in AssembleConstructFrame()
[all...]

Completed in 49 milliseconds