Home
last modified time | relevance | path

Searched refs:UNWIDE (Results 1 – 6 of 6) sorted by relevance

/art/compiler/dex/quick/arm64/
Dassemble_arm64.cc693 A64Opcode opcode = UNWIDE(lir->opcode); in EncodeLIRs()
788 << "(" << UNWIDE(encoder->opcode) << ", " << encoder->fmt << ")" in EncodeLIRs()
957 lir->opcode = UNWIDE(opcode); in AssembleLIR()
984 opcode = UNWIDE(opcode); in AssembleLIR()
1036 uint64_t prev_insn_flags = EncodingMap[UNWIDE(prev_insn->opcode)].flags; in AssembleLIR()
1102 A64Opcode opcode = UNWIDE(lir->opcode); in GetInsnSize()
1113 A64Opcode opcode = UNWIDE(lir->opcode); in LinkFixupInsns()
Dutility_arm64.cc94 A64Opcode opcode = UNWIDE(lir->opcode); in GetLoadStoreSize()
565 A64Opcode wide = (r_dest_src1.Is64Bit()) ? WIDE(0) : UNWIDE(0); in OpRegRegShift()
632 A64Opcode wide = (r_dest_src1.Is64Bit()) ? WIDE(0) : UNWIDE(0); in OpRegRegExtend()
817 A64Opcode wide = (is_wide) ? WIDE(0) : UNWIDE(0); in OpRegRegImm64()
940 A64Opcode wide = (r_dest_src1.Is64Bit()) ? WIDE(0) : UNWIDE(0); in OpRegImm64()
1097 DCHECK_NE(EncodingMap[UNWIDE(opcode)].flags & IS_TERTIARY_OP, 0U); in LoadBaseIndexed()
1175 DCHECK_NE(EncodingMap[UNWIDE(opcode)].flags & IS_TERTIARY_OP, 0U); in StoreBaseIndexed()
Dtarget_arm64.cc612 DCHECK_EQ(UNWIDE(Arm64Mir2Lir::EncodingMap[i].opcode), i) in Arm64Mir2Lir()
801 return Arm64Mir2Lir::EncodingMap[UNWIDE(opcode)].flags; in GetTargetInstFlags()
806 return Arm64Mir2Lir::EncodingMap[UNWIDE(opcode)].name; in GetTargetInstName()
811 return Arm64Mir2Lir::EncodingMap[UNWIDE(opcode)].fmt; in GetTargetInstFmt()
862 auto non_wide = UNWIDE(p->opcode); // May be a wide load for ArtMethod*. in InstallLiteralPools()
Dfp_arm64.cc452 A64Opcode wide = (is_double) ? WIDE(0) : UNWIDE(0); in GenInlinedRound()
470 A64Opcode wide = (is_double) ? WIDE(0) : UNWIDE(0); in GenInlinedMinMaxFP()
Dint_arm64.cc275 A64Opcode wide = reg.Is64Bit() ? WIDE(0) : UNWIDE(0); in OpCmpImmBranch()
281 A64Opcode wide = reg.Is64Bit() ? WIDE(0) : UNWIDE(0); in OpCmpImmBranch()
285 A64Opcode wide = reg.Is64Bit() ? WIDE(0) : UNWIDE(0); in OpCmpImmBranch()
653 wide = UNWIDE(0); in GenDivRem()
787 A64Opcode wide = UNWIDE(0); in GenInlinedCas()
1029 A64Opcode opcode = reg.Is64Bit() ? WIDE(kA64Subs3rRd) : UNWIDE(kA64Subs3rRd); in OpDecAndBranch()
1784 A64Opcode wide = IsWide(size) ? WIDE(0) : UNWIDE(0); in GenInlinedReverseBits()
Darm64_lir.h380 #define UNWIDE(op) ((A64Opcode)((op) & ~kA64Wide)) macro