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

  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/GlobalISel/
IRTranslator.cpp 837 Register CondRHS = getOrCreateVReg(*CB.CmpRHS);
840 MIB.buildFCmp(CB.PredInfo.Pred, i1Ty, CondLHS, CondRHS).getReg(0);
843 MIB.buildICmp(CB.PredInfo.Pred, i1Ty, CondLHS, CondRHS).getReg(0);
854 Register CondRHS = getOrCreateVReg(*CB.CmpRHS);
856 MIB.buildICmp(CmpInst::ICMP_SLE, i1Ty, CmpOpReg, CondRHS).getReg(0);
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
JumpThreading.cpp 2810 Constant *CondRHS = cast<Constant>(CondCmp->getOperand(1));
2834 CondRHS, Pred, BB, CondCmp);
2837 CondRHS, Pred, BB, CondCmp);
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
DAGCombiner.cpp 9949 SDValue CondLHS = LHS, CondRHS = RHS;
9954 std::swap(CondLHS, CondRHS);
9961 if (SatCC == ISD::SETULE && Other == CondRHS &&
9965 if (isa<BuildVectorSDNode>(OpRHS) && isa<BuildVectorSDNode>(CondRHS) &&
9974 ISD::matchBinaryPredicate(OpRHS, CondRHS, MatchUADDSAT))
9994 SDValue CondRHS = RHS;
10015 Other.getOpcode() == ISD::SUB && OpRHS == CondRHS)
10019 if (isa<BuildVectorSDNode>(CondRHS)) {
10029 ISD::matchBinaryPredicate(OpRHS, CondRHS, MatchUSUBSAT,
10043 ISD::isBuildVectorAllZeros(CondRHS.getNode()) &
    [all...]
SelectionDAGBuilder.cpp 2467 SDValue CondRHS = getValue(CB.CmpRHS);
2474 CondRHS = DAG.getPtrExtOrTrunc(CondRHS, getCurSDLoc(), MemVT);
2476 Cond = DAG.getSetCC(dl, MVT::i1, CondLHS, CondRHS, CB.CC);
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaExpr.cpp 8627 Expr *CondRHS;
8629 if (!IsArithmeticBinaryExpr(Condition, &CondOpcode, &CondRHS))
8631 if (!ExprLooksBoolean(CondRHS))
8653 SourceRange(CondRHS->getBeginLoc(), RHSExpr->getEndLoc()));

Completed in 87 milliseconds