HomeSort by: relevance | last modified time | path
    Searched refs:CondC (Results 1 - 6 of 6) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
InlineCost.cpp 1923 Constant *CondC =
1926 if (!CondC) {
1952 Value *SelectedV = CondC->isAllOnesValue()
1954 : (CondC->isNullValue()) ? FalseVal : nullptr;
1960 if (auto *C = ConstantExpr::getSelect(CondC, TrueC, FalseC)) {
InstructionSimplify.cpp 4143 if (auto *CondC = dyn_cast<Constant>(Cond)) {
4146 return ConstantFoldSelectInstruction(CondC, TrueC, FalseC);
4149 if (Q.isUndefValue(CondC))
4155 if (CondC->isAllOnesValue())
4158 if (CondC->isNullValue())
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
InstCombineSelect.cpp 1977 Constant *CondC;
1979 if (!CondValTy || !match(CondVal, m_Constant(CondC)))
1986 Constant *Elt = CondC->getAggregateElement(i);
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
LegalizeIntegerTypes.cpp 2522 ISD::CondCode CondC;
2523 std::tie(CondC, LoOpc) = getExpandedMinMaxOps(N->getOpcode());
2539 SDValue IsHiLeft = DAG.getSetCC(DL, CCT, LHSH, RHSH, CondC);
SelectionDAG.cpp 7735 if (auto *CondC = dyn_cast<ConstantSDNode>(Cond))
7736 return CondC->isNullValue() ? F : T;
DAGCombiner.cpp 9238 SDValue CondC = Cond.getOperand(1);
9240 if (CC == ISD::SETGT && isAllOnesOrAllOnesSplat(CondC) &&
9248 if (CC == ISD::SETLT && isNullOrNullSplat(CondC) && isNullOrNullSplat(C2)) {

Completed in 127 milliseconds