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

/external/v8/src/interpreter/
H A Dbytecode-peephole-optimizer.cc85 uint32_t index_operand = node->operand(0); local
86 return constant_array_builder_->At(index_operand);
/external/v8/src/compiler/
H A Dinstruction-selector.h176 void EmitTableSwitch(const SwitchInfo& sw, InstructionOperand& index_operand);
H A Dinstruction-selector.cc1321 InstructionOperand& index_operand) {
1325 inputs[0] = index_operand;
1320 EmitTableSwitch(const SwitchInfo& sw, InstructionOperand& index_operand) argument
/external/v8/src/compiler/mips/
H A Dinstruction-selector-mips.cc1334 InstructionOperand index_operand = value_operand; local
1336 index_operand = g.TempRegister();
1337 Emit(kMipsSub, index_operand, value_operand,
1341 return EmitTableSwitch(sw, index_operand);
/external/v8/src/compiler/arm/
H A Dinstruction-selector-arm.cc1765 InstructionOperand index_operand = value_operand; local
1767 index_operand = g.TempRegister();
1769 index_operand, value_operand, g.TempImmediate(sw.min_value));
1772 return EmitTableSwitch(sw, index_operand);
/external/v8/src/compiler/ia32/
H A Dinstruction-selector-ia32.cc1456 InstructionOperand index_operand = value_operand; local
1458 index_operand = g.TempRegister();
1459 Emit(kIA32Lea | AddressingModeField::encode(kMode_MRI), index_operand,
1463 return EmitTableSwitch(sw, index_operand);
/external/v8/src/compiler/mips64/
H A Dinstruction-selector-mips64.cc1791 InstructionOperand index_operand = value_operand; local
1793 index_operand = g.TempRegister();
1794 Emit(kMips64Sub, index_operand, value_operand,
1798 return EmitTableSwitch(sw, index_operand);
/external/v8/src/compiler/ppc/
H A Dinstruction-selector-ppc.cc1728 InstructionOperand index_operand = value_operand; local
1730 index_operand = g.TempRegister();
1731 Emit(kPPC_Sub, index_operand, value_operand,
1735 return EmitTableSwitch(sw, index_operand);
/external/v8/src/compiler/s390/
H A Dinstruction-selector-s390.cc1584 InstructionOperand index_operand = value_operand; local
1586 index_operand = g.TempRegister();
1587 Emit(kS390_Sub, index_operand, value_operand,
1591 return EmitTableSwitch(sw, index_operand);
/external/v8/src/compiler/x64/
H A Dinstruction-selector-x64.cc1832 InstructionOperand index_operand = g.TempRegister(); local
1835 Emit(kX64Lea32 | AddressingModeField::encode(kMode_MRI), index_operand,
1839 Emit(kX64Movl, index_operand, value_operand);
1842 return EmitTableSwitch(sw, index_operand);
/external/v8/src/compiler/x87/
H A Dinstruction-selector-x87.cc1490 InstructionOperand index_operand = value_operand; local
1492 index_operand = g.TempRegister();
1493 Emit(kX87Lea | AddressingModeField::encode(kMode_MRI), index_operand,
1497 return EmitTableSwitch(sw, index_operand);
/external/v8/src/compiler/arm64/
H A Dinstruction-selector-arm64.cc2211 InstructionOperand index_operand = value_operand; local
2213 index_operand = g.TempRegister();
2214 Emit(kArm64Sub32, index_operand, value_operand,
2218 return EmitTableSwitch(sw, index_operand);

Completed in 470 milliseconds