Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/lib/Transforms/InstCombine/
H A DInstCombineSimplifyDemanded.cpp1116 APInt BitMask2(APInt::getAllOnes(BitWidth)); in simplifyShrShlDemandedBits() local
1123 BitMask2 <<= (ShlAmt - ShrAmt); in simplifyShrShlDemandedBits()
1125 BitMask2 = isLshr ? BitMask2.lshr(ShrAmt - ShlAmt): in simplifyShrShlDemandedBits()
1126 BitMask2.ashr(ShrAmt - ShlAmt); in simplifyShrShlDemandedBits()
1130 if ((BitMask1 & DemandedMask) == (BitMask2 & DemandedMask)) { in simplifyShrShlDemandedBits()