Home
last modified time | relevance | path

Searched refs:shift_operand (Results 1 – 8 of 8) sorted by relevance

/external/vixl/src/aarch32/
Ddisasm-aarch32.cc7205 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 …]
Dinstructions-aarch32.h1120 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/
Dinstruction-selector-arm.cc714 InstructionOperand shift_operand; in EmitBic() local
715 if (TryMatchShift(selector, &opcode, right, &value_operand, &shift_operand)) { in EmitBic()
717 value_operand, shift_operand); in EmitBic()
840 InstructionOperand shift_operand; in VisitWord32Xor() local
842 &shift_operand)) { in VisitWord32Xor()
843 Emit(opcode, g.DefineAsRegister(node), value_operand, shift_operand); in VisitWord32Xor()
1038 InstructionOperand shift_operand; in VisitWord32PairShift() local
1040 shift_operand = g.UseImmediate(m.node()); in VisitWord32PairShift()
1042 shift_operand = g.UseUniqueRegister(m.node()); in VisitWord32PairShift()
1047 shift_operand}; in VisitWord32PairShift()
/external/v8/src/compiler/ia32/
Dinstruction-selector-ia32.cc728 InstructionOperand shift_operand; in VisitWord32PairShift() local
730 shift_operand = g.UseImmediate(shift); in VisitWord32PairShift()
732 shift_operand = g.UseFixed(shift, ecx); in VisitWord32PairShift()
736 shift_operand}; in VisitWord32PairShift()
/external/v8/src/compiler/x87/
Dinstruction-selector-x87.cc689 InstructionOperand shift_operand; in VisitWord32PairShift() local
691 shift_operand = g.UseImmediate(shift); in VisitWord32PairShift()
693 shift_operand = g.UseFixed(shift, ecx); in VisitWord32PairShift()
697 shift_operand}; in VisitWord32PairShift()
/external/v8/src/compiler/mips/
Dinstruction-selector-mips.cc573 InstructionOperand shift_operand; in VisitWord32PairShift() local
575 shift_operand = g.UseImmediate(m.node()); in VisitWord32PairShift()
577 shift_operand = g.UseUniqueRegister(m.node()); in VisitWord32PairShift()
584 shift_operand}; in VisitWord32PairShift()
/external/v8/src/compiler/s390/
Dinstruction-selector-s390.cc902 InstructionOperand shift_operand; in VisitPairShift() local
904 shift_operand = g.UseImmediate(m.node()); in VisitPairShift()
906 shift_operand = g.UseUniqueRegister(m.node()); in VisitPairShift()
911 shift_operand}; in VisitPairShift()
/external/v8/src/compiler/ppc/
Dinstruction-selector-ppc.cc878 InstructionOperand shift_operand; in VisitPairShift() local
880 shift_operand = g.UseImmediate(m.node()); in VisitPairShift()
882 shift_operand = g.UseUniqueRegister(m.node()); in VisitPairShift()
887 shift_operand}; in VisitPairShift()