Searched refs:NegN1 (Results 1 – 3 of 3) sorted by relevance
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
H A D | DAGCombiner.cpp | 16571 if (SDValue NegN1 = TLI.getCheaperNegatedExpression( in visitFADD() local 16573 return DAG.getNode(ISD::FSUB, DL, VT, N0, NegN1); in visitFADD() 16737 if (SDValue NegN1 = TLI.getCheaperNegatedExpression( in visitSTRICT_FADD() local 16740 {Chain, N0, NegN1}); in visitSTRICT_FADD() 16803 if (SDValue NegN1 = in visitFSUB() local 16805 return NegN1; in visitFSUB() 16824 if (SDValue NegN1 = in visitFSUB() local 16826 return DAG.getNode(ISD::FADD, DL, VT, N0, NegN1); in visitFSUB() 17024 SDValue NegN1 = in visitFMUL() local 17026 if (NegN1 && (CostN0 == TargetLowering::NegatibleCost::Cheaper || in visitFMUL() [all …]
|
H A D | TargetLowering.cpp | 5206 SDValue NegN1 = DAG.getNode(ISD::FNEG, dl, N0.getValueType(), N1); in SimplifySetCC() local 5207 return DAG.getSetCC(dl, VT, N0.getOperand(0), NegN1, SwapCond); in SimplifySetCC()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/PowerPC/ |
H A D | PPCISelLowering.cpp | 17680 SDValue NegN1 = getNegatedExpression(N1, DAG, LegalOps, OptForSize, in getNegatedExpression() local 17686 } else if (NegN1) { in getNegatedExpression() 17688 return DAG.getNode(Opc, Loc, VT, N0, NegN1, NegN2, Flags); in getNegatedExpression() 18149 if (SDValue NegN1 = getCheaperNegatedExpression(N1, DAG, LegalOps, CodeSize)) in combineFMALike() local 18150 return DAG.getNode(invertFMAOpcode(Opc), Loc, VT, N0, NegN1, N2, Flags); in combineFMALike()
|