Home
last modified time | relevance | path

Searched refs:shift_type (Results 1 – 2 of 2) sorted by relevance

/art/compiler/utils/arm/
Dassembler_arm.cc96 uint32_t shift_type; in encodingArm() local
99 shift_type = static_cast<uint32_t>(shift_); in encodingArm()
103 shift_type = static_cast<uint32_t>(arm::Shift::ROR); // Same encoding as ROR. in encodingArm()
107 shift_type = static_cast<uint32_t>(shift_); in encodingArm()
113 shift_type << kShiftShift | in encodingArm()
118 shift_type << kShiftShift | (1 << 4) | in encodingArm()
/art/disassembler/
Ddisassembler_arm.cc695 uint32_t shift_type = ((instr >> 4) & 0x3); in DumpThumb32() local
785 bool noShift = (imm5 == 0 && shift_type != 0x3); in DumpThumb32()
788 switch (shift_type) { in DumpThumb32()
800 if (shift_type != 0x3 /* rrx */) { in DumpThumb32()
801 args << StringPrintf(" #%d", (0 != imm5 || 0 == shift_type) ? imm5 : 32); in DumpThumb32()