/external/v8/src/compiler/arm/ |
D | instruction-selector-arm.cc | 771 InstructionOperand value_operand; in EmitBic() local 773 if (TryMatchShift(selector, &opcode, right, &value_operand, &shift_operand)) { in EmitBic() 775 value_operand, shift_operand); in EmitBic() 904 InstructionOperand value_operand; in VisitWord32Xor() local 906 if (TryMatchShift(this, &opcode, m.left().node(), &value_operand, in VisitWord32Xor() 908 Emit(opcode, g.DefineAsRegister(node), value_operand, shift_operand); in VisitWord32Xor() 1911 InstructionOperand const value_operand = g.UseRegister(value); in VisitWordCompareZero() local 1912 EmitWithContinuation(opcode, value_operand, value_operand, cont); in VisitWordCompareZero() 1917 InstructionOperand value_operand = g.UseRegister(node->InputAt(0)); in VisitSwitch() local 1931 InstructionOperand index_operand = value_operand; in VisitSwitch() [all …]
|
/external/v8/src/compiler/x64/ |
D | instruction-selector-x64.cc | 380 InstructionOperand value_operand = in VisitStore() local 382 inputs[input_count++] = value_operand; in VisitStore() 401 InstructionOperand value_operand = in VisitProtectedStore() local 403 inputs[input_count++] = value_operand; in VisitProtectedStore() 2032 InstructionOperand value_operand = g.UseRegister(node->InputAt(0)); in VisitSwitch() local 2051 value_operand, g.TempImmediate(-sw.min_value())); in VisitSwitch() 2054 Emit(kX64Movl, index_operand, value_operand); in VisitSwitch() 2062 return EmitBinarySearchSwitch(sw, value_operand); in VisitSwitch()
|
/external/v8/src/compiler/ia32/ |
D | instruction-selector-ia32.cc | 1303 InstructionOperand value_operand = (rep == MachineRepresentation::kWord8) in VisitAtomicExchange() local 1307 value_operand, g.UseUniqueRegister(base), in VisitAtomicExchange() 1479 InstructionOperand value_operand = g.UseRegister(node->InputAt(0)); in VisitSwitch() local 1493 InstructionOperand index_operand = value_operand; in VisitSwitch() 1497 value_operand, g.TempImmediate(-sw.min_value())); in VisitSwitch() 1505 return EmitBinarySearchSwitch(sw, value_operand); in VisitSwitch() 1899 InstructionOperand value_operand = in VISIT_ATOMIC_BINOP() local 1904 value_operand, g.UseUniqueRegister(base), in VISIT_ATOMIC_BINOP()
|
/external/v8/src/compiler/ |
D | instruction-selector.h | 496 InstructionOperand& value_operand); 498 InstructionOperand& value_operand);
|
D | instruction-selector.cc | 2167 InstructionOperand& value_operand) { in EmitLookupSwitch() argument 2173 inputs[0] = value_operand; in EmitLookupSwitch() 2184 const SwitchInfo& sw, InstructionOperand& value_operand) { in EmitBinarySearchSwitch() argument 2189 inputs[0] = value_operand; in EmitBinarySearchSwitch()
|
/external/v8/src/compiler/mips/ |
D | instruction-selector-mips.cc | 1528 InstructionOperand const value_operand = g.UseRegister(value); in VisitWordCompareZero() local 1529 EmitWithContinuation(kMipsCmp, value_operand, g.TempImmediate(0), cont); in VisitWordCompareZero() 1534 InstructionOperand value_operand = g.UseRegister(node->InputAt(0)); in VisitSwitch() local 1548 InstructionOperand index_operand = value_operand; in VisitSwitch() 1551 Emit(kMipsSub, index_operand, value_operand, in VisitSwitch() 1560 return EmitBinarySearchSwitch(std::move(sw), value_operand); in VisitSwitch()
|
/external/v8/src/compiler/s390/ |
D | instruction-selector-s390.cc | 819 InstructionOperand value_operand = g.UseRegister(value); in VisitStore() local 820 inputs[input_count++] = value_operand; in VisitStore() 2014 InstructionOperand value_operand = g.UseRegister(node->InputAt(0)); in VisitSwitch() local 2028 InstructionOperand index_operand = value_operand; in VisitSwitch() 2032 value_operand, g.TempImmediate(-sw.min_value())); in VisitSwitch() 2045 return EmitBinarySearchSwitch(sw, value_operand); in VisitSwitch()
|
/external/v8/src/compiler/ppc/ |
D | instruction-selector-ppc.cc | 1706 InstructionOperand value_operand = g.UseRegister(node->InputAt(0)); in VisitSwitch() local 1720 InstructionOperand index_operand = value_operand; in VisitSwitch() 1723 Emit(kPPC_Sub, index_operand, value_operand, in VisitSwitch() 1732 return EmitBinarySearchSwitch(sw, value_operand); in VisitSwitch()
|
/external/v8/src/compiler/mips64/ |
D | instruction-selector-mips64.cc | 2147 InstructionOperand value_operand = g.UseRegister(node->InputAt(0)); in VisitSwitch() local 2161 InstructionOperand index_operand = value_operand; in VisitSwitch() 2164 Emit(kMips64Sub, index_operand, value_operand, in VisitSwitch() 2173 return EmitBinarySearchSwitch(sw, value_operand); in VisitSwitch()
|
/external/v8/src/compiler/arm64/ |
D | instruction-selector-arm64.cc | 2442 InstructionOperand value_operand = g.UseRegister(node->InputAt(0)); in VisitSwitch() local 2456 InstructionOperand index_operand = value_operand; in VisitSwitch() 2459 Emit(kArm64Sub32, index_operand, value_operand, in VisitSwitch() 2468 return EmitBinarySearchSwitch(sw, value_operand); in VisitSwitch()
|