Home | History | Annotate | Download | only in SelectionDAG

Lines Matching refs:SINT_TO_FP

1137   case ISD::SINT_TO_FP:         return visitSINT_TO_FP(N);
5880 // fold (sint_to_fp c1) -> c1fp
5885 return DAG.getNode(ISD::SINT_TO_FP, N->getDebugLoc(), VT, N0);
5887 // If the input is a legal type, and SINT_TO_FP is not legal on this target,
5889 if (!TLI.isOperationLegalOrCustom(ISD::SINT_TO_FP, OpVT) &&
5913 // but SINT_TO_FP is legal on this target, try to convert.
5915 TLI.isOperationLegalOrCustom(ISD::SINT_TO_FP, OpVT)) {
5916 // If the sign bit is known to be zero, we can change this to SINT_TO_FP.
5918 return DAG.getNode(ISD::SINT_TO_FP, N->getDebugLoc(), VT, N0);