Searched refs:WillInvertAllUses (Results 1 – 2 of 2) sorted by relevance
/freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/InstCombine/ |
H A D | InstCombiner.h | 209 Value *getFreelyInvertedImpl(Value *V, bool WillInvertAllUses, 213 Value *getFreelyInverted(Value *V, bool WillInvertAllUses, in getFreelyInverted() argument 216 return getFreelyInvertedImpl(V, WillInvertAllUses, Builder, DoesConsume, in getFreelyInverted() 220 Value *getFreelyInverted(Value *V, bool WillInvertAllUses, in getFreelyInverted() argument 223 return getFreelyInverted(V, WillInvertAllUses, Builder, Unused); in getFreelyInverted() 232 bool isFreeToInvert(Value *V, bool WillInvertAllUses, in isFreeToInvert() argument 234 return getFreelyInverted(V, WillInvertAllUses, /*Builder*/ nullptr, in isFreeToInvert() 238 bool isFreeToInvert(Value *V, bool WillInvertAllUses) { in isFreeToInvert() argument 240 return isFreeToInvert(V, WillInvertAllUses, Unused); in isFreeToInvert()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/InstCombine/ |
H A D | InstructionCombining.cpp | 2520 Value *InstCombiner::getFreelyInvertedImpl(Value *V, bool WillInvertAllUses, in getFreelyInvertedImpl() argument 2541 if (!WillInvertAllUses) in getFreelyInvertedImpl()
|