Home
last modified time | relevance | path

Searched refs:CompOpc (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCISelLowering.cpp17377 PPC::Predicate CompOpc; in PerformDAGCombine() local
17383 CompOpc = CC == ISD::SETEQ ? PPC::PRED_NE : PPC::PRED_EQ; in PerformDAGCombine()
17385 CompOpc = CC == ISD::SETEQ ? PPC::PRED_EQ : PPC::PRED_NE; in PerformDAGCombine()
17409 DAG.getConstant(CompOpc, dl, MVT::i32), in PerformDAGCombine()
17432 PPC::Predicate CompOpc; in PerformDAGCombine() local
17436 CompOpc = BranchOnWhenPredTrue ? PPC::PRED_EQ : PPC::PRED_NE; in PerformDAGCombine()
17439 CompOpc = BranchOnWhenPredTrue ? PPC::PRED_NE : PPC::PRED_EQ; in PerformDAGCombine()
17442 CompOpc = BranchOnWhenPredTrue ? PPC::PRED_LT : PPC::PRED_GE; in PerformDAGCombine()
17445 CompOpc = BranchOnWhenPredTrue ? PPC::PRED_GE : PPC::PRED_LT; in PerformDAGCombine()
17450 DAG.getConstant(CompOpc, dl, MVT::i32), in PerformDAGCombine()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DTargetLowering.cpp8718 unsigned CompOpc = IsMax ? ISD::FMAXNUM : ISD::FMINNUM; in expandFMINIMUM_FMAXIMUM() local
8727 } else if (isOperationLegalOrCustom(CompOpc, VT)) { in expandFMINIMUM_FMAXIMUM()
8728 MinMax = DAG.getNode(CompOpc, DL, VT, LHS, RHS, Flags); in expandFMINIMUM_FMAXIMUM()