Searched refs:LHSCache (Results 1 – 4 of 4) sorted by relevance
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/ |
H A D | ValueTracking.h | 110 bool haveNoCommonBitsSet(const WithCache<const Value *> &LHSCache,
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/InstCombine/ |
H A D | InstCombineAddSub.cpp | 1626 WithCache<const Value *> LHSCache(LHS), RHSCache(RHS); in visitAdd() local 1627 if (haveNoCommonBitsSet(LHSCache, RHSCache, SQ.getWithInstruction(&I))) in visitAdd() 1753 if (!I.hasNoSignedWrap() && willNotOverflowSignedAdd(LHSCache, RHSCache, I)) { in visitAdd() 1758 willNotOverflowUnsignedAdd(LHSCache, RHSCache, I)) { in visitAdd()
|
H A D | InstCombineSimplifyDemanded.cpp | 267 WithCache<const Value *> LHSCache(I->getOperand(0), LHSKnown), in SimplifyDemandedUseBits() local 269 if (haveNoCommonBitsSet(LHSCache, RHSCache, Q)) { in SimplifyDemandedUseBits()
|
/freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
H A D | ValueTracking.cpp | 236 bool llvm::haveNoCommonBitsSet(const WithCache<const Value *> &LHSCache, in haveNoCommonBitsSet() argument 239 const Value *LHS = LHSCache.getValue(); in haveNoCommonBitsSet() 251 return KnownBits::haveNoCommonBitsSet(LHSCache.getKnownBits(SQ), in haveNoCommonBitsSet()
|