HomeSort by relevance Sort by last modified time
    Searched defs:kOpcodeShift (Results 1 - 3 of 3) sorted by null

  /art/disassembler/
disassembler_mips.cc 39 static const uint32_t kOpcodeShift = 26;
41 static const uint32_t kCop1 = (17 << kOpcodeShift);
43 static const uint32_t kITypeMask = (0x3f << kOpcodeShift);
44 static const uint32_t kJTypeMask = (0x3f << kOpcodeShift);
45 static const uint32_t kRTypeMask = ((0x3f << kOpcodeShift) | (0x3f));
46 static const uint32_t kSpecial2Mask = (0x3f << kOpcodeShift);
95 { kSpecial2Mask | 0x7ff, (28 << kOpcodeShift) | 2, "mul", "DST" },
96 { kSpecial2Mask | 0x7ff, (28 << kOpcodeShift) | 32, "clz", "DS" },
97 { kSpecial2Mask | 0xffff, (28 << kOpcodeShift) | 0, "madd", "ST" },
98 { kSpecial2Mask | 0xffff, (28 << kOpcodeShift) | 1, "maddu", "ST" }
    [all...]
  /art/compiler/utils/mips/
constants_mips.h 56 kOpcodeShift = 26,
  /art/compiler/utils/arm/
constants_arm.h 174 kOpcodeShift = 21,
280 return static_cast<Opcode>(Bits(kOpcodeShift, kOpcodeBits));

Completed in 99 milliseconds