Searched refs:ShiftedMask (Results 1 – 3 of 3) sorted by relevance
356 uint64_t ShiftedMask = (0xFFFFULL << Shift); in expandMOVImm() local357 uint64_t ZeroChunk = UImm & ~ShiftedMask; in expandMOVImm()358 uint64_t OneChunk = UImm | ShiftedMask; in expandMOVImm()360 uint64_t ReplicateChunk = ZeroChunk | (RotatedImm & ShiftedMask); in expandMOVImm()
2637 auto ShiftedMask = B.buildShl(TargetTy, EltMask, OffsetBits); in buildBitFieldInsert() local2638 auto InvShiftedMask = B.buildNot(TargetTy, ShiftedMask); in buildBitFieldInsert()
11652 APInt ShiftedMask = Mask.lshr(ShAmt); in ReduceLoadWidth() local11653 ActiveBits = ShiftedMask.countTrailingOnes(); in ReduceLoadWidth()