HomeSort by: relevance | last modified time | path
    Searched defs:Cond1 (Results 1 - 7 of 7) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
IdenticalExprChecker.cpp 136 const Expr *Cond1 = I->getCond();
140 if (isIdenticalStmt(AC->getASTContext(), Cond1, Cond2, false)) {
141 SourceRange Sr = Cond1->getSourceRange();
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
LibCallsShrinkWrap.cpp 109 auto Cond1 = createCond(BBBuilder, Arg, Cmp, Val);
110 return BBBuilder.CreateOr(Cond1, Cond2);
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
IfConversion.cpp 1800 SmallVector<MachineOperand, 4> *Cond1 = &BBI.BrCond;
1814 std::swap(Cond1, Cond2);
1980 PredicateBlock(*BBI1, MBB1.end(), *Cond1, &RedefsByFalse);
ModuloSchedule.cpp 326 SmallVector<MachineOperand, 4> Cond1;
327 TII->insertBranch(*LastEpilogBB, LoopExitBB, nullptr, Cond1, DebugLoc());
CodeGenPrepare.cpp 8116 // %cond1 = icmp|fcmp|binary instruction ...
8118 // %cond.or = or|and i1 %cond1, cond2
8135 Value *Cond1, *Cond2;
8137 m_LogicalAnd(m_OneUse(m_Value(Cond1)), m_OneUse(m_Value(Cond2)))))
8139 else if (match(LogicOp, m_LogicalOr(m_OneUse(m_Value(Cond1)),
8151 if (!IsGoodCond(Cond1) || !IsGoodCond(Cond2))
8163 Br1->setCondition(Cond1);
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
LegalizeVectorTypes.cpp 4345 SDValue Cond1 = N->getOperand(0);
4346 EVT CondVT = Cond1.getValueType();
4360 Cond1 = GetWidenedVector(Cond1);
4373 if (Cond1.getValueType() != CondWidenVT)
4374 Cond1 = ModifyToType(Cond1, CondWidenVT);
4381 WidenVT, Cond1, InOp1, InOp2);
DAGCombiner.cpp 9433 // select (and Cond0, Cond1), X, Y
9434 // -> select Cond0, (select Cond1, X, Y), Y
9437 SDValue Cond1 = N0->getOperand(1);
9439 DAG.getNode(ISD::SELECT, DL, N1.getValueType(), Cond1, N1, N2, Flags);
9447 // select (or Cond0, Cond1), X, Y -> select Cond0, X, (select Cond1, X, Y)
9450 SDValue Cond1 = N0->getOperand(1);
9452 Cond1, N1, N2, Flags);
9461 // select Cond0, (select Cond1, X, Y), Y -> select (and Cond0, Cond1), X,
    [all...]

Completed in 68 milliseconds