Home
last modified time | relevance | path

Searched refs:ShiftedMask (Results 1 – 3 of 3) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/
H A DAArch64ExpandImm.cpp356 uint64_t ShiftedMask = (0xFFFFULL << Shift); in expandMOVImm() local
357 uint64_t ZeroChunk = UImm & ~ShiftedMask; in expandMOVImm()
358 uint64_t OneChunk = UImm | ShiftedMask; in expandMOVImm()
360 uint64_t ReplicateChunk = ZeroChunk | (RotatedImm & ShiftedMask); in expandMOVImm()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/GlobalISel/
H A DLegalizerHelper.cpp2637 auto ShiftedMask = B.buildShl(TargetTy, EltMask, OffsetBits); in buildBitFieldInsert() local
2638 auto InvShiftedMask = B.buildNot(TargetTy, ShiftedMask); in buildBitFieldInsert()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp11652 APInt ShiftedMask = Mask.lshr(ShAmt); in ReduceLoadWidth() local
11653 ActiveBits = ShiftedMask.countTrailingOnes(); in ReduceLoadWidth()