Home | History | Annotate | Download | only in SelectionDAG

Lines Matching refs:FDIV

491   case ISD::FDIV:
559 case ISD::FDIV:
1245 case ISD::FDIV: return visitFDIV(N);
6917 // fold (fdiv c1, c2) -> c1/c2
6919 return DAG.getNode(ISD::FDIV, SDLoc(N), VT, N0, N1);
6921 // fold (fdiv X, c2) -> fmul X, 1/c2 if losing precision is acceptable.
6940 // (fdiv (fneg X), (fneg Y)) -> (fdiv X, Y)
6948 return DAG.getNode(ISD::FDIV, SDLoc(N), VT,
10870 N->getOpcode() == ISD::FDIV) {