Searched refs:shift_operand (Results 1 – 8 of 8) sorted by relevance
/external/vixl/src/aarch32/ |
D | disasm-aarch32.cc | 7205 ImmediateShiftOperand shift_operand((instr >> 27) & 0x3, in DecodeT32() local 7213 shift_operand.GetType(), in DecodeT32() 7214 shift_operand.GetAmount())); in DecodeT32() 7222 shift_operand.GetType(), in DecodeT32() 7223 shift_operand.GetAmount())); in DecodeT32() 18097 shift_operand((instr >> 4) & 0x3, in DecodeT32() local 18102 shift_operand.GetShift().IsLSL() && in DecodeT32() 18103 (shift_operand.GetAmount() == 0) && in DecodeT32() 18123 shift_operand.GetType(), in DecodeT32() 18124 shift_operand.GetAmount())); in DecodeT32() [all …]
|
D | instructions-aarch32.h | 1120 ImmediateShiftOperand const& shift_operand) { 1121 if (shift_operand.IsLSL() && shift_operand.GetAmount() == 0) return os; 1122 if (shift_operand.IsRRX()) return os << ", rrx"; 1123 return os << ", " << shift_operand.GetName() << " #" 1124 << shift_operand.GetAmount(); 1143 const RegisterShiftOperand& shift_operand) { 1144 return s << shift_operand.GetName() << " " 1145 << shift_operand.GetShiftRegister();
|
/external/v8/src/compiler/arm/ |
D | instruction-selector-arm.cc | 756 InstructionOperand shift_operand; in EmitBic() local 757 if (TryMatchShift(selector, &opcode, right, &value_operand, &shift_operand)) { in EmitBic() 759 value_operand, shift_operand); in EmitBic() 882 InstructionOperand shift_operand; in VisitWord32Xor() local 884 &shift_operand)) { in VisitWord32Xor() 885 Emit(opcode, g.DefineAsRegister(node), value_operand, shift_operand); in VisitWord32Xor() 1083 InstructionOperand shift_operand; in VisitWord32PairShift() local 1085 shift_operand = g.UseImmediate(m.node()); in VisitWord32PairShift() 1087 shift_operand = g.UseUniqueRegister(m.node()); in VisitWord32PairShift() 1092 shift_operand}; in VisitWord32PairShift()
|
/external/v8/src/compiler/mips/ |
D | instruction-selector-mips.cc | 588 InstructionOperand shift_operand; in VisitWord32PairShift() local 590 shift_operand = g.UseImmediate(m.node()); in VisitWord32PairShift() 592 shift_operand = g.UseUniqueRegister(m.node()); in VisitWord32PairShift() 599 shift_operand}; in VisitWord32PairShift()
|
/external/v8/src/compiler/ia32/ |
D | instruction-selector-ia32.cc | 793 InstructionOperand shift_operand; in VisitWord32PairShift() local 795 shift_operand = g.UseImmediate(shift); in VisitWord32PairShift() 797 shift_operand = g.UseFixed(shift, ecx); in VisitWord32PairShift() 801 shift_operand}; in VisitWord32PairShift()
|
/external/v8/src/compiler/x87/ |
D | instruction-selector-x87.cc | 706 InstructionOperand shift_operand; in VisitWord32PairShift() local 708 shift_operand = g.UseImmediate(shift); in VisitWord32PairShift() 710 shift_operand = g.UseFixed(shift, ecx); in VisitWord32PairShift() 714 shift_operand}; in VisitWord32PairShift()
|
/external/v8/src/compiler/ppc/ |
D | instruction-selector-ppc.cc | 898 InstructionOperand shift_operand; in VisitPairShift() local 900 shift_operand = g.UseImmediate(m.node()); in VisitPairShift() 902 shift_operand = g.UseUniqueRegister(m.node()); in VisitPairShift() 907 shift_operand}; in VisitPairShift()
|
/external/v8/src/compiler/s390/ |
D | instruction-selector-s390.cc | 1173 InstructionOperand shift_operand; in VisitPairShift() local 1175 shift_operand = g.UseImmediate(m.node()); in VisitPairShift() 1177 shift_operand = g.UseUniqueRegister(m.node()); in VisitPairShift() 1182 shift_operand}; in VisitPairShift()
|