Searched refs:CondC (Results 1 – 5 of 5) sorted by relevance
| /freebsd-12.1/contrib/llvm/lib/Analysis/ |
| H A D | InlineCost.cpp | 1338 Constant *CondC = in visitSelectInst() local 1341 if (!CondC) { in visitSelectInst() 1369 Value *SelectedV = CondC->isAllOnesValue() in visitSelectInst() 1371 : (CondC->isNullValue()) ? FalseVal : nullptr; in visitSelectInst() 1377 if (auto *C = ConstantExpr::getSelect(CondC, TrueC, FalseC)) { in visitSelectInst()
|
| H A D | InstructionSimplify.cpp | 3997 if (auto *CondC = dyn_cast<Constant>(Cond)) { in SimplifySelectInst() local 4000 return ConstantFoldSelectInstruction(CondC, TrueC, FalseC); in SimplifySelectInst() 4003 if (isa<UndefValue>(CondC)) in SimplifySelectInst() 4009 if (CondC->isAllOnesValue()) in SimplifySelectInst() 4012 if (CondC->isNullValue()) in SimplifySelectInst()
|
| /freebsd-12.1/contrib/llvm/lib/Transforms/InstCombine/ |
| H A D | InstCombineSelect.cpp | 1346 Constant *CondC; in canonicalizeSelectToShuffle() local 1347 if (!CondVal->getType()->isVectorTy() || !match(CondVal, m_Constant(CondC))) in canonicalizeSelectToShuffle() 1355 Constant *Elt = CondC->getAggregateElement(i); in canonicalizeSelectToShuffle()
|
| /freebsd-12.1/contrib/llvm/lib/CodeGen/SelectionDAG/ |
| H A D | LegalizeIntegerTypes.cpp | 1908 ISD::CondCode CondC; in ExpandIntRes_MINMAX() local 1909 std::tie(CondC, LoOpc) = getExpandedMinMaxOps(N->getOpcode()); in ExpandIntRes_MINMAX() 1925 SDValue IsHiLeft = DAG.getSetCC(DL, CCT, LHSH, RHSH, CondC); in ExpandIntRes_MINMAX()
|
| H A D | SelectionDAG.cpp | 7019 if (auto *CondC = dyn_cast<ConstantSDNode>(Cond)) in simplifySelect() local 7020 return CondC->isNullValue() ? F : T; in simplifySelect()
|