Searched refs:shift_operand (Results 1 – 7 of 7) sorted by relevance
/external/vixl/src/aarch32/ |
D | disasm-aarch32.cc | 7152 ImmediateShiftOperand shift_operand((instr >> 27) & 0x3, in DecodeT32() local 7160 shift_operand.GetType(), in DecodeT32() 7161 shift_operand.GetAmount())); in DecodeT32() 7169 shift_operand.GetType(), in DecodeT32() 7170 shift_operand.GetAmount())); in DecodeT32() 18181 shift_operand((instr >> 4) & 0x3, in DecodeT32() local 18186 shift_operand.GetShift().IsLSL() && in DecodeT32() 18187 (shift_operand.GetAmount() == 0) && in DecodeT32() 18206 shift_operand.GetType(), in DecodeT32() 18207 shift_operand.GetAmount())); in DecodeT32() [all …]
|
D | instructions-aarch32.h | 1123 ImmediateShiftOperand const& shift_operand) { 1124 if (shift_operand.IsLSL() && shift_operand.GetAmount() == 0) return os; 1125 if (shift_operand.IsRRX()) return os << ", rrx"; 1126 return os << ", " << shift_operand.GetName() << " #" 1127 << shift_operand.GetAmount(); 1146 const RegisterShiftOperand& shift_operand) { 1147 return s << shift_operand.GetName() << " " 1148 << shift_operand.GetShiftRegister();
|
/external/v8/src/compiler/arm/ |
D | instruction-selector-arm.cc | 772 InstructionOperand shift_operand; in EmitBic() local 773 if (TryMatchShift(selector, &opcode, right, &value_operand, &shift_operand)) { in EmitBic() 775 value_operand, shift_operand); in EmitBic() 905 InstructionOperand shift_operand; in VisitWord32Xor() local 907 &shift_operand)) { in VisitWord32Xor() 908 Emit(opcode, g.DefineAsRegister(node), value_operand, shift_operand); in VisitWord32Xor() 1090 InstructionOperand shift_operand; in VisitWord32PairShift() local 1092 shift_operand = g.UseImmediate(m.node()); in VisitWord32PairShift() 1094 shift_operand = g.UseUniqueRegister(m.node()); in VisitWord32PairShift() 1099 shift_operand}; in VisitWord32PairShift()
|
/external/v8/src/compiler/ppc/ |
D | instruction-selector-ppc.cc | 807 InstructionOperand shift_operand; in VisitPairShift() local 809 shift_operand = g.UseImmediate(m.node()); in VisitPairShift() 811 shift_operand = g.UseUniqueRegister(m.node()); in VisitPairShift() 816 shift_operand}; in VisitPairShift()
|
/external/v8/src/compiler/mips/ |
D | instruction-selector-mips.cc | 603 InstructionOperand shift_operand; in VisitWord32PairShift() local 605 shift_operand = g.UseImmediate(m.node()); in VisitWord32PairShift() 607 shift_operand = g.UseUniqueRegister(m.node()); in VisitWord32PairShift() 614 shift_operand}; in VisitWord32PairShift()
|
/external/v8/src/compiler/s390/ |
D | instruction-selector-s390.cc | 1089 InstructionOperand shift_operand; in VisitPairShift() local 1091 shift_operand = g.UseImmediate(m.node()); in VisitPairShift() 1093 shift_operand = g.UseUniqueRegister(m.node()); in VisitPairShift() 1098 shift_operand}; in VisitPairShift()
|
/external/v8/src/compiler/ia32/ |
D | instruction-selector-ia32.cc | 701 InstructionOperand shift_operand; in VisitWord32PairShift() local 703 shift_operand = g.UseImmediate(shift); in VisitWord32PairShift() 705 shift_operand = g.UseFixed(shift, ecx); in VisitWord32PairShift() 709 shift_operand}; in VisitWord32PairShift()
|