/external/v8/src/compiler/arm/ |
D | instruction-selector-arm.cc | 509 InstructionOperand value_operand; in EmitBic() local 511 if (TryMatchShift(selector, &opcode, right, &value_operand, &shift_operand)) { in EmitBic() 513 value_operand, shift_operand); in EmitBic() 611 InstructionOperand value_operand; in VisitWord32Xor() local 613 if (TryMatchShift(this, &opcode, m.left().node(), &value_operand, in VisitWord32Xor() 615 Emit(opcode, g.DefineAsRegister(node), value_operand, shift_operand); in VisitWord32Xor() 1408 InstructionOperand const value_operand = g.UseRegister(value); in VisitWordCompareZero() local 1410 selector->Emit(opcode, g.NoOutput(), value_operand, value_operand, in VisitWordCompareZero() 1413 selector->Emit(opcode, g.DefineAsRegister(cont->result()), value_operand, in VisitWordCompareZero() 1414 value_operand); in VisitWordCompareZero() [all …]
|
/external/v8/src/compiler/mips/ |
D | instruction-selector-mips.cc | 1142 InstructionOperand const value_operand = g.UseRegister(value); in VisitWordCompareZero() local 1144 selector->Emit(opcode, g.NoOutput(), value_operand, g.TempImmediate(0), in VisitWordCompareZero() 1147 selector->Emit(opcode, g.DefineAsRegister(cont->result()), value_operand, in VisitWordCompareZero() 1162 InstructionOperand value_operand = g.UseRegister(node->InputAt(0)); in VisitSwitch() local 1173 InstructionOperand index_operand = value_operand; in VisitSwitch() 1176 Emit(kMipsSub, index_operand, value_operand, in VisitSwitch() 1184 return EmitLookupSwitch(sw, value_operand); in VisitSwitch()
|
/external/v8/src/compiler/ia32/ |
D | instruction-selector-ia32.cc | 383 InstructionOperand value_operand = in VisitCheckedStore() local 394 offset_operand, length_operand, value_operand, offset_operand, in VisitCheckedStore() 398 offset_operand, length_operand, value_operand, g.UseRegister(buffer), in VisitCheckedStore() 1154 InstructionOperand value_operand = g.UseRegister(node->InputAt(0)); in VisitSwitch() local 1165 InstructionOperand index_operand = value_operand; in VisitSwitch() 1169 value_operand, g.TempImmediate(-sw.min_value)); in VisitSwitch() 1176 return EmitLookupSwitch(sw, value_operand); in VisitSwitch()
|
/external/v8/src/compiler/x64/ |
D | instruction-selector-x64.cc | 232 InstructionOperand value_operand = in VisitStore() local 234 inputs[input_count++] = value_operand; in VisitStore() 325 InstructionOperand value_operand = in VisitCheckedStore() local 336 value_operand); in VisitCheckedStore() 343 g.TempImmediate(0), length_operand, value_operand); in VisitCheckedStore() 1553 InstructionOperand value_operand = g.UseRegister(node->InputAt(0)); in VisitSwitch() local 1568 value_operand, g.TempImmediate(-sw.min_value)); in VisitSwitch() 1571 Emit(kX64Movl, index_operand, value_operand); in VisitSwitch() 1578 return EmitLookupSwitch(sw, value_operand); in VisitSwitch()
|
/external/v8/src/compiler/x87/ |
D | instruction-selector-x87.cc | 344 InstructionOperand value_operand = in VisitCheckedStore() local 355 offset_operand, length_operand, value_operand, offset_operand, in VisitCheckedStore() 359 offset_operand, length_operand, value_operand, g.UseRegister(buffer), in VisitCheckedStore() 1171 InstructionOperand value_operand = g.UseRegister(node->InputAt(0)); in VisitSwitch() local 1182 InstructionOperand index_operand = value_operand; in VisitSwitch() 1186 value_operand, g.TempImmediate(-sw.min_value)); in VisitSwitch() 1193 return EmitLookupSwitch(sw, value_operand); in VisitSwitch()
|
/external/v8/src/compiler/mips64/ |
D | instruction-selector-mips64.cc | 1508 InstructionOperand const value_operand = g.UseRegister(value); in EmitWordCompareZero() local 1510 selector->Emit(opcode, g.NoOutput(), value_operand, g.TempImmediate(0), in EmitWordCompareZero() 1513 selector->Emit(opcode, g.DefineAsRegister(cont->result()), value_operand, in EmitWordCompareZero() 1646 InstructionOperand value_operand = g.UseRegister(node->InputAt(0)); in VisitSwitch() local 1657 InstructionOperand index_operand = value_operand; in VisitSwitch() 1660 Emit(kMips64Sub, index_operand, value_operand, in VisitSwitch() 1668 return EmitLookupSwitch(sw, value_operand); in VisitSwitch()
|
/external/v8/src/compiler/ |
D | instruction-selector.h | 162 InstructionOperand& value_operand);
|
D | instruction-selector.cc | 1117 InstructionOperand& value_operand) { in EmitLookupSwitch() argument 1121 inputs[0] = value_operand; in EmitLookupSwitch()
|
/external/v8/src/compiler/ppc/ |
D | instruction-selector-ppc.cc | 1534 InstructionOperand value_operand = g.UseRegister(node->InputAt(0)); in VisitSwitch() local 1545 InstructionOperand index_operand = value_operand; in VisitSwitch() 1548 Emit(kPPC_Sub, index_operand, value_operand, in VisitSwitch() 1556 return EmitLookupSwitch(sw, value_operand); in VisitSwitch()
|
/external/v8/src/compiler/arm64/ |
D | instruction-selector-arm64.cc | 1917 InstructionOperand value_operand = g.UseRegister(node->InputAt(0)); in VisitSwitch() local 1928 InstructionOperand index_operand = value_operand; in VisitSwitch() 1931 Emit(kArm64Sub32, index_operand, value_operand, in VisitSwitch() 1939 return EmitLookupSwitch(sw, value_operand); in VisitSwitch()
|