Searched refs:CondC (Results 1 - 6 of 6) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DInlineCost.cpp1582 Constant *CondC = local
1585 if (!CondC) {
1611 Value *SelectedV = CondC->isAllOnesValue()
1613 : (CondC->isNullValue()) ? FalseVal : nullptr;
1619 if (auto *C = ConstantExpr::getSelect(CondC, TrueC, FalseC)) {
H A DInstructionSimplify.cpp3980 if (auto *CondC = dyn_cast<Constant>(Cond)) {
3983 return ConstantFoldSelectInstruction(CondC, TrueC, FalseC);
3986 if (isa<UndefValue>(CondC))
3992 if (CondC->isAllOnesValue())
3995 if (CondC->isNullValue())
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineSelect.cpp1936 Constant *CondC; local
1937 if (!CondVal->getType()->isVectorTy() || !match(CondVal, m_Constant(CondC)))
1945 Constant *Elt = CondC->getAggregateElement(i);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeIntegerTypes.cpp2235 ISD::CondCode CondC; local
2236 std::tie(CondC, LoOpc) = getExpandedMinMaxOps(N->getOpcode());
2252 SDValue IsHiLeft = DAG.getSetCC(DL, CCT, LHSH, RHSH, CondC);
H A DSelectionDAG.cpp7250 if (auto *CondC = dyn_cast<ConstantSDNode>(Cond))
7251 return CondC->isNullValue() ? F : T;
H A DDAGCombiner.cpp8383 SDValue CondC = Cond.getOperand(1); local
8385 if (CC == ISD::SETGT && isAllOnesOrAllOnesSplat(CondC) &&
8393 if (CC == ISD::SETLT && isNullOrNullSplat(CondC) && isNullOrNullSplat(C2)) {

Completed in 187 milliseconds