Home
last modified time | relevance | path

Searched refs:additional_pop_count (Results 1 - 10 of 10) sorted by relevance

/third_party/node/deps/v8/src/compiler/backend/loong64/
H A Dcode-generator-loong64.cc2320 void CodeGenerator::AssembleReturn(InstructionOperand* additional_pop_count) { in AssembleConstructFrame() argument
2348 if (additional_pop_count->IsImmediate()) { in AssembleConstructFrame()
2349 DCHECK_EQ(g.ToConstant(additional_pop_count).ToInt32(), 0); in AssembleConstructFrame()
2352 g.ToRegister(additional_pop_count), in AssembleConstructFrame()
2370 if (additional_pop_count->IsImmediate() && in AssembleConstructFrame()
2371 g.ToConstant(additional_pop_count).ToInt32() == 0) { in AssembleConstructFrame()
2394 } else if (additional_pop_count->IsImmediate()) { in AssembleConstructFrame()
2395 int additional_count = g.ToConstant(additional_pop_count).ToInt32(); in AssembleConstructFrame()
2398 Register pop_reg = g.ToRegister(additional_pop_count); in AssembleConstructFrame()
/third_party/node/deps/v8/src/compiler/backend/arm/
H A Dcode-generator-arm.cc3807 void CodeGenerator::AssembleReturn(InstructionOperand* additional_pop_count) { in AssembleArchInstruction()
3835 // {additional_pop_count} is only greater than zero if {parameter_slots = 0}. in AssembleArchInstruction()
3838 if (additional_pop_count->IsImmediate()) { in AssembleArchInstruction()
3839 DCHECK_EQ(g.ToConstant(additional_pop_count).ToInt32(), 0); in AssembleArchInstruction()
3841 __ cmp(g.ToRegister(additional_pop_count), Operand(0)); in AssembleArchInstruction()
3859 if (additional_pop_count->IsImmediate() && in AssembleArchInstruction()
3860 g.ToConstant(additional_pop_count).ToInt32() == 0) { in AssembleArchInstruction()
3888 } else if (additional_pop_count->IsImmediate()) { in AssembleArchInstruction()
3889 DCHECK_EQ(Constant::kInt32, g.ToConstant(additional_pop_count).type()); in AssembleArchInstruction()
3890 int additional_count = g.ToConstant(additional_pop_count) in AssembleArchInstruction()
[all...]
/third_party/node/deps/v8/src/compiler/backend/arm64/
H A Dcode-generator-arm64.cc3213 void CodeGenerator::AssembleReturn(InstructionOperand* additional_pop_count) { in AssembleArchInstruction()
3240 if (additional_pop_count->IsImmediate()) { in AssembleArchInstruction()
3241 DCHECK_EQ(g.ToConstant(additional_pop_count).ToInt32(), 0); in AssembleArchInstruction()
3243 __ cmp(g.ToRegister(additional_pop_count), Operand(0)); in AssembleArchInstruction()
3261 if (additional_pop_count->IsImmediate() && in AssembleArchInstruction()
3262 g.ToConstant(additional_pop_count).ToInt32() == 0) { in AssembleArchInstruction()
3290 } else if (additional_pop_count->IsImmediate()) { in AssembleArchInstruction()
3291 int additional_count = g.ToConstant(additional_pop_count).ToInt32(); in AssembleArchInstruction()
3294 __ DropArguments(g.ToRegister(additional_pop_count)); in AssembleArchInstruction()
3296 // {additional_pop_count} i in AssembleArchInstruction()
[all...]
/third_party/node/deps/v8/src/compiler/backend/ppc/
H A Dcode-generator-ppc.cc4152 void CodeGenerator::AssembleReturn(InstructionOperand* additional_pop_count) { in AssembleConstructFrame() argument
4185 if (additional_pop_count->IsImmediate()) { in AssembleConstructFrame()
4186 DCHECK_EQ(g.ToConstant(additional_pop_count).ToInt32(), 0); in AssembleConstructFrame()
4188 __ cmpi(g.ToRegister(additional_pop_count), Operand(0)); in AssembleConstructFrame()
4207 if (additional_pop_count->IsImmediate() && in AssembleConstructFrame()
4208 g.ToConstant(additional_pop_count).ToInt32() == 0) { in AssembleConstructFrame()
4240 } else if (additional_pop_count->IsImmediate()) { in AssembleConstructFrame()
4241 int additional_count = g.ToConstant(additional_pop_count).ToInt32(); in AssembleConstructFrame()
4244 __ Drop(g.ToRegister(additional_pop_count)); in AssembleConstructFrame()
4246 // {additional_pop_count} i in AssembleConstructFrame()
[all...]
/third_party/node/deps/v8/src/compiler/backend/ia32/
H A Dcode-generator-ia32.cc4122 void CodeGenerator::AssembleReturn(InstructionOperand* additional_pop_count) { in AssembleReturn() argument
4143 if (additional_pop_count->IsImmediate()) { in AssembleReturn()
4144 DCHECK_EQ(g.ToConstant(additional_pop_count).ToInt32(), 0); in AssembleReturn()
4146 __ cmp(g.ToRegister(additional_pop_count), Immediate(0)); in AssembleReturn()
4165 if (additional_pop_count->IsImmediate() && in AssembleReturn()
4166 g.ToConstant(additional_pop_count).ToInt32() == 0) { in AssembleReturn()
4200 } else if (additional_pop_count->IsImmediate()) { in AssembleReturn()
4201 int additional_count = g.ToConstant(additional_pop_count).ToInt32(); in AssembleReturn()
4214 Register pop_reg = g.ToRegister(additional_pop_count); in AssembleReturn()
/third_party/node/deps/v8/src/compiler/backend/s390/
H A Dcode-generator-s390.cc3505 void CodeGenerator::AssembleReturn(InstructionOperand* additional_pop_count) { in AssembleConstructFrame() argument
3535 if (additional_pop_count->IsImmediate()) { in AssembleConstructFrame()
3536 DCHECK_EQ(g.ToConstant(additional_pop_count).ToInt32(), 0); in AssembleConstructFrame()
3538 __ CmpS64(g.ToRegister(additional_pop_count), Operand(0)); in AssembleConstructFrame()
3557 if (additional_pop_count->IsImmediate() && in AssembleConstructFrame()
3558 g.ToConstant(additional_pop_count).ToInt32() == 0) { in AssembleConstructFrame()
3590 } else if (additional_pop_count->IsImmediate()) { in AssembleConstructFrame()
3591 int additional_count = g.ToConstant(additional_pop_count).ToInt32(); in AssembleConstructFrame()
3594 __ Drop(g.ToRegister(additional_pop_count)); in AssembleConstructFrame()
3596 // {additional_pop_count} i in AssembleConstructFrame()
[all...]
/third_party/node/deps/v8/src/compiler/backend/mips/
H A Dcode-generator-mips.cc4072 void CodeGenerator::AssembleReturn(InstructionOperand* additional_pop_count) { in AssembleConstructFrame() argument
4099 if (additional_pop_count->IsImmediate()) { in AssembleConstructFrame()
4100 DCHECK_EQ(g.ToConstant(additional_pop_count).ToInt32(), 0); in AssembleConstructFrame()
4103 g.ToRegister(additional_pop_count), in AssembleConstructFrame()
4120 if (additional_pop_count->IsImmediate() && in AssembleConstructFrame()
4121 g.ToConstant(additional_pop_count).ToInt32() == 0) { in AssembleConstructFrame()
4145 } else if (additional_pop_count->IsImmediate()) { in AssembleConstructFrame()
4146 DCHECK_EQ(Constant::kInt32, g.ToConstant(additional_pop_count).type()); in AssembleConstructFrame()
4147 int additional_count = g.ToConstant(additional_pop_count).ToInt32(); in AssembleConstructFrame()
4150 Register pop_reg = g.ToRegister(additional_pop_count); in AssembleConstructFrame()
[all...]
/third_party/node/deps/v8/src/compiler/backend/riscv64/
H A Dcode-generator-riscv64.cc3978 void CodeGenerator::AssembleReturn(InstructionOperand* additional_pop_count) { in AssembleReturn() argument
4006 if (additional_pop_count->IsImmediate()) { in AssembleReturn()
4007 DCHECK_EQ(g.ToConstant(additional_pop_count).ToInt32(), 0); in AssembleReturn()
4010 g.ToRegister(additional_pop_count), in AssembleReturn()
4028 if (additional_pop_count->IsImmediate() && in AssembleReturn()
4029 g.ToConstant(additional_pop_count).ToInt32() == 0) { in AssembleReturn()
4055 } else if (additional_pop_count->IsImmediate()) { in AssembleReturn()
4057 DCHECK_LE(g.ToConstant(additional_pop_count).type(), Constant::kInt64); in AssembleReturn()
4058 int additional_count = g.ToConstant(additional_pop_count).ToInt32(); in AssembleReturn()
4061 Register pop_reg = g.ToRegister(additional_pop_count); in AssembleReturn()
[all...]
/third_party/node/deps/v8/src/compiler/backend/mips64/
H A Dcode-generator-mips64.cc4275 void CodeGenerator::AssembleReturn(InstructionOperand* additional_pop_count) { in AssembleConstructFrame() argument
4303 if (additional_pop_count->IsImmediate()) { in AssembleConstructFrame()
4304 DCHECK_EQ(g.ToConstant(additional_pop_count).ToInt32(), 0); in AssembleConstructFrame()
4307 g.ToRegister(additional_pop_count), in AssembleConstructFrame()
4325 if (additional_pop_count->IsImmediate() && in AssembleConstructFrame()
4326 g.ToConstant(additional_pop_count).ToInt32() == 0) { in AssembleConstructFrame()
4349 } else if (additional_pop_count->IsImmediate()) { in AssembleConstructFrame()
4350 int additional_count = g.ToConstant(additional_pop_count).ToInt32(); in AssembleConstructFrame()
4353 Register pop_reg = g.ToRegister(additional_pop_count); in AssembleConstructFrame()
/third_party/node/deps/v8/src/compiler/backend/x64/
H A Dcode-generator-x64.cc4778 void CodeGenerator::AssembleReturn(InstructionOperand* additional_pop_count) { in AssembleReturn() argument
4814 if (additional_pop_count->IsImmediate()) { in AssembleReturn()
4815 DCHECK_EQ(g.ToConstant(additional_pop_count).ToInt32(), 0); in AssembleReturn()
4817 __ cmpq(g.ToRegister(additional_pop_count), Immediate(0)); in AssembleReturn()
4833 if (additional_pop_count->IsImmediate() && in AssembleReturn()
4834 g.ToConstant(additional_pop_count).ToInt32() == 0) { in AssembleReturn()
4869 } else if (additional_pop_count->IsImmediate()) { in AssembleReturn()
4872 int additional_count = g.ToConstant(additional_pop_count).ToInt32(); in AssembleReturn()
4877 Register pop_reg = g.ToRegister(additional_pop_count); in AssembleReturn()

Completed in 50 milliseconds