Searched refs:FalseC (Results 1 - 9 of 9) sorted by relevance

/openbsd-current/gnu/llvm/clang/include/clang/Tooling/Transformer/
H A DMatchConsumer.h48 MatchConsumer<T> FalseC) {
51 return (Map.find(ID) != Map.end() ? TrueC : FalseC)(Result);
47 ifBound(std::string ID, MatchConsumer<T> TrueC, MatchConsumer<T> FalseC) argument
/openbsd-current/gnu/llvm/llvm/lib/Transforms/InstCombine/
H A DInstCombineNegator.cpp220 Constant *TrueC, *FalseC; local
222 match(Sel->getFalseValue(), m_ImmConstant(FalseC))) {
224 Constant *NegFalseC = ConstantExpr::getNeg(FalseC);
H A DInstructionCombining.cpp1969 Constant *TrueC, *FalseC; local
1972 m_Select(m_Value(Cond), m_Constant(TrueC), m_Constant(FalseC))))
1975 // gep (select Cond, TrueC, FalseC), IndexC --> select Cond, TrueC', FalseC'
1982 Value *NewFalseC = Builder.CreateGEP(Ty, FalseC, IndexC, "", IsInBounds);
/openbsd-current/gnu/llvm/llvm/lib/Analysis/
H A DInlineCost.cpp2280 Constant *FalseC = dyn_cast<Constant>(FalseVal); local
2281 if (!FalseC)
2282 FalseC = SimplifiedValues.lookup(FalseVal);
2288 if (TrueC == FalseC && TrueC) {
2319 if (TrueC && FalseC) {
2320 if (auto *C = ConstantExpr::getSelect(CondC, TrueC, FalseC)) {
H A DInstructionSimplify.cpp4552 if (auto *FalseC = dyn_cast<Constant>(FalseVal))
4553 return ConstantFoldSelectInstruction(CondC, TrueC, FalseC);
4668 Constant *TrueC, *FalseC;
4671 match(FalseVal, m_Constant(FalseC))) {
4678 Constant *FEltC = FalseC->getAggregateElement(i);
/openbsd-current/gnu/llvm/llvm/lib/Transforms/Scalar/
H A DConstraintElimination.cpp804 Constant *FalseC =
806 Cmp->replaceAllUsesWith(FalseC);
/openbsd-current/gnu/llvm/llvm/lib/Target/Mips/
H A DMipsISelLowering.cpp674 ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(False);
683 if (!FalseC)
688 if (!FalseC->getZExtValue()) {
713 int64_t Diff = TrueC->getSExtValue() - FalseC->getSExtValue();
745 ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(ValueIfFalse); local
746 if (!FalseC || FalseC->getZExtValue())
/openbsd-current/gnu/llvm/llvm/lib/IR/
H A DConstants.cpp863 ConstantInt *FalseC = ConstantInt::getFalse(Ty->getContext());
865 return ConstantVector::getSplat(VTy->getElementCount(), FalseC);
866 return FalseC;
/openbsd-current/gnu/llvm/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp[all...]

Completed in 522 milliseconds