Lines Matching refs:FusedOp
14323 unsigned FusedOp = getFusedOpcode(DAG, N, LHS.getNode()); in performFAddCombine() local
14324 if (FusedOp != 0) { in performFAddCombine()
14326 return DAG.getNode(FusedOp, SL, VT, A, Two, RHS); in performFAddCombine()
14335 unsigned FusedOp = getFusedOpcode(DAG, N, RHS.getNode()); in performFAddCombine() local
14336 if (FusedOp != 0) { in performFAddCombine()
14338 return DAG.getNode(FusedOp, SL, VT, A, Two, LHS); in performFAddCombine()
14367 unsigned FusedOp = getFusedOpcode(DAG, N, LHS.getNode()); in performFSubCombine() local
14368 if (FusedOp != 0){ in performFSubCombine()
14372 return DAG.getNode(FusedOp, SL, VT, A, Two, NegRHS); in performFSubCombine()
14382 unsigned FusedOp = getFusedOpcode(DAG, N, RHS.getNode()); in performFSubCombine() local
14383 if (FusedOp != 0){ in performFSubCombine()
14385 return DAG.getNode(FusedOp, SL, VT, A, NegTwo, LHS); in performFSubCombine()