Home
last modified time | relevance | path

Searched refs:index_operand (Results 1 – 11 of 11) sorted by relevance

/external/v8/src/compiler/s390/
Dinstruction-selector-s390.cc2269 InstructionOperand index_operand = value_operand; in VisitSwitch() local
2271 index_operand = g.TempRegister(); in VisitSwitch()
2272 Emit(kS390_Lay | AddressingModeField::encode(kMode_MRI), index_operand, in VisitSwitch()
2277 Emit(kS390_Uint32ToUint64, index_operand_zero_ext, index_operand); in VisitSwitch()
2278 index_operand = index_operand_zero_ext; in VisitSwitch()
2281 return EmitTableSwitch(sw, index_operand); in VisitSwitch()
/external/v8/src/compiler/
Dinstruction-selector.h228 void EmitTableSwitch(const SwitchInfo& sw, InstructionOperand& index_operand);
Dinstruction-selector.cc1743 InstructionOperand& index_operand) { in EmitTableSwitch() argument
1747 inputs[0] = index_operand; in EmitTableSwitch()
/external/v8/src/compiler/mips/
Dinstruction-selector-mips.cc1662 InstructionOperand index_operand = value_operand; in VisitSwitch() local
1664 index_operand = g.TempRegister(); in VisitSwitch()
1665 Emit(kMipsSub, index_operand, value_operand, in VisitSwitch()
1669 return EmitTableSwitch(sw, index_operand); in VisitSwitch()
/external/v8/src/compiler/ia32/
Dinstruction-selector-ia32.cc1524 InstructionOperand index_operand = value_operand; in VisitSwitch() local
1526 index_operand = g.TempRegister(); in VisitSwitch()
1527 Emit(kIA32Lea | AddressingModeField::encode(kMode_MRI), index_operand, in VisitSwitch()
1531 return EmitTableSwitch(sw, index_operand); in VisitSwitch()
/external/v8/src/compiler/x87/
Dinstruction-selector-x87.cc1633 InstructionOperand index_operand = value_operand; in VisitSwitch() local
1635 index_operand = g.TempRegister(); in VisitSwitch()
1636 Emit(kX87Lea | AddressingModeField::encode(kMode_MRI), index_operand, in VisitSwitch()
1640 return EmitTableSwitch(sw, index_operand); in VisitSwitch()
/external/v8/src/compiler/ppc/
Dinstruction-selector-ppc.cc1836 InstructionOperand index_operand = value_operand; in VisitSwitch() local
1838 index_operand = g.TempRegister(); in VisitSwitch()
1839 Emit(kPPC_Sub, index_operand, value_operand, in VisitSwitch()
1843 return EmitTableSwitch(sw, index_operand); in VisitSwitch()
/external/v8/src/compiler/x64/
Dinstruction-selector-x64.cc2026 InstructionOperand index_operand = g.TempRegister(); in VisitSwitch() local
2029 Emit(kX64Lea32 | AddressingModeField::encode(kMode_MRI), index_operand, in VisitSwitch()
2033 Emit(kX64Movl, index_operand, value_operand); in VisitSwitch()
2036 return EmitTableSwitch(sw, index_operand); in VisitSwitch()
/external/v8/src/compiler/arm/
Dinstruction-selector-arm.cc1978 InstructionOperand index_operand = value_operand; in VisitSwitch() local
1980 index_operand = g.TempRegister(); in VisitSwitch()
1982 index_operand, value_operand, g.TempImmediate(sw.min_value)); in VisitSwitch()
1985 return EmitTableSwitch(sw, index_operand); in VisitSwitch()
/external/v8/src/compiler/arm64/
Dinstruction-selector-arm64.cc2394 InstructionOperand index_operand = value_operand; in VisitSwitch() local
2396 index_operand = g.TempRegister(); in VisitSwitch()
2397 Emit(kArm64Sub32, index_operand, value_operand, in VisitSwitch()
2401 return EmitTableSwitch(sw, index_operand); in VisitSwitch()
/external/v8/src/compiler/mips64/
Dinstruction-selector-mips64.cc2361 InstructionOperand index_operand = value_operand; in VisitSwitch() local
2363 index_operand = g.TempRegister(); in VisitSwitch()
2364 Emit(kMips64Sub, index_operand, value_operand, in VisitSwitch()
2368 return EmitTableSwitch(sw, index_operand); in VisitSwitch()