Searched defs:shift_type (Results 1 - 2 of 2) sorted by relevance

/art/compiler/dex/quick/arm64/
H A Dutility_arm64.cc1008 int Arm64Mir2Lir::EncodeShift(int shift_type, int amount) { argument
1009 DCHECK_EQ(shift_type & 0x3, shift_type);
1011 return ((shift_type & 0x3) << 7) | (amount & 0x3f);
/art/disassembler/
H A Ddisassembler_arm.cc678 uint32_t shift_type = ((instr >> 4) & 0x3); local
768 bool noShift = (imm5 == 0 && shift_type != 0x3);
771 switch (shift_type) {
783 if (shift_type != 0x3 /* rrx */) {
784 args << StringPrintf(" #%d", (0 != imm5 || 0 == shift_type) ? imm5 : 32);

Completed in 106 milliseconds