Lines Matching refs:BitSize
542 static bool canBeExpandedToORR(const MachineInstr &MI, unsigned BitSize) { in canBeExpandedToORR() argument
544 uint64_t UImm = Imm << (64 - BitSize) >> (64 - BitSize); in canBeExpandedToORR()
546 return AArch64_AM::processLogicalImmediate(UImm, BitSize, Encoding); in canBeExpandedToORR()
3438 unsigned BitSize, OrrOpc, ZeroReg; in genAlternativeCodeSequence() local
3442 BitSize = 32; in genAlternativeCodeSequence()
3449 BitSize = 64; in genAlternativeCodeSequence()
3461 uint64_t UImm = Imm << (64 - BitSize) >> (64 - BitSize); in genAlternativeCodeSequence()
3463 if (AArch64_AM::processLogicalImmediate(UImm, BitSize, Encoding)) { in genAlternativeCodeSequence()
3530 unsigned BitSize, OrrOpc, ZeroReg; in genAlternativeCodeSequence() local
3534 BitSize = 32; in genAlternativeCodeSequence()
3541 BitSize = 64; in genAlternativeCodeSequence()
3552 uint64_t UImm = -Imm << (64 - BitSize) >> (64 - BitSize); in genAlternativeCodeSequence()
3554 if (AArch64_AM::processLogicalImmediate(UImm, BitSize, Encoding)) { in genAlternativeCodeSequence()