Home | History | Annotate | Download | only in SelectionDAG

Lines Matching refs:FCOPYSIGN

1136   case ISD::FCOPYSIGN:          return visitFCOPYSIGN(N);
5402 // fold (bitconvert (fcopysign cst, x)) ->
5406 if (N0.getOpcode() == ISD::FCOPYSIGN && N0.getNode()->hasOneUse() &&
5832 return DAG.getNode(ISD::FCOPYSIGN, N->getDebugLoc(), VT, N0, N1);
5852 N0.getOpcode() == ISD::FCOPYSIGN)
5853 return DAG.getNode(ISD::FCOPYSIGN, N->getDebugLoc(), VT,
5861 if (N1.getOpcode() == ISD::FCOPYSIGN)
5862 return DAG.getNode(ISD::FCOPYSIGN, N->getDebugLoc(), VT,
5868 return DAG.getNode(ISD::FCOPYSIGN, N->getDebugLoc(), VT,
5972 if (N0.getOpcode() == ISD::FCOPYSIGN && N0.getNode()->hasOneUse()) {
5976 return DAG.getNode(ISD::FCOPYSIGN, N->getDebugLoc(), VT,
6086 // fold (fabs (fcopysign x, y)) -> (fabs x)
6087 if (N0.getOpcode() == ISD::FNEG || N0.getOpcode() == ISD::FCOPYSIGN)