Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/lib/Transforms/InstCombine/
H A DInstCombineSimplifyDemanded.cpp927 APInt BitMask2(APInt::getAllOnesValue(BitWidth)); in simplifyShrShlDemandedBits() local
934 BitMask2 <<= (ShlAmt - ShrAmt); in simplifyShrShlDemandedBits()
936 BitMask2 = isLshr ? BitMask2.lshr(ShrAmt - ShlAmt): in simplifyShrShlDemandedBits()
937 BitMask2.ashr(ShrAmt - ShlAmt); in simplifyShrShlDemandedBits()
941 if ((BitMask1 & DemandedMask) == (BitMask2 & DemandedMask)) { in simplifyShrShlDemandedBits()