Searched refs:kOpcodeShift (Results 1 - 7 of 7) sorted by relevance

/art/disassembler/
H A Ddisassembler_mips.cc40 static const uint32_t kOpcodeShift = 26; member in namespace:art::mips
42 static const uint32_t kCop1 = (17 << kOpcodeShift);
44 static const uint32_t kITypeMask = (0x3f << kOpcodeShift);
45 static const uint32_t kJTypeMask = (0x3f << kOpcodeShift);
46 static const uint32_t kRTypeMask = ((0x3f << kOpcodeShift) | (0x3f));
47 static const uint32_t kSpecial0Mask = (0x3f << kOpcodeShift);
48 static const uint32_t kSpecial2Mask = (0x3f << kOpcodeShift);
109 { kRTypeMask, (31u << kOpcodeShift) | 3, "dext", "TSAZ", },
134 { kSpecial2Mask | 0x7ff, (28 << kOpcodeShift) | 2, "mul", "DST" },
135 { kSpecial2Mask | 0x7ff, (28 << kOpcodeShift) | 3
[all...]
/art/compiler/utils/mips64/
H A Dconstants_mips64.h32 kOpcodeShift = 26, enumerator in enum:art::mips64::InstructionFields
H A Dassembler_mips64.cc38 uint32_t encoding = static_cast<uint32_t>(opcode) << kOpcodeShift |
50 uint32_t encoding = static_cast<uint32_t>(opcode) << kOpcodeShift |
59 uint32_t encoding = static_cast<uint32_t>(opcode) << kOpcodeShift |
66 uint32_t encoding = static_cast<uint32_t>(opcode) << kOpcodeShift |
76 uint32_t encoding = static_cast<uint32_t>(opcode) << kOpcodeShift |
87 uint32_t encoding = static_cast<uint32_t>(opcode) << kOpcodeShift |
/art/compiler/utils/mips/
H A Dconstants_mips.h56 kOpcodeShift = 26, enumerator in enum:art::mips::InstructionFields
H A Dassembler_mips.cc46 int32_t encoding = opcode << kOpcodeShift |
58 int32_t encoding = opcode << kOpcodeShift |
66 int32_t encoding = opcode << kOpcodeShift |
75 int32_t encoding = opcode << kOpcodeShift |
86 int32_t encoding = opcode << kOpcodeShift |
/art/compiler/utils/arm/
H A Dconstants_arm.h171 kOpcodeShift = 21, enumerator in enum:art::arm::InstructionFields
277 return static_cast<Opcode>(Bits(kOpcodeShift, kOpcodeBits));
H A Dassembler_arm32.cc594 static_cast<int32_t>(opcode) << kOpcodeShift |
692 static_cast<int32_t>(MOV) << kOpcodeShift |
709 static_cast<int32_t>(MOV) << kOpcodeShift |

Completed in 196 milliseconds