Home | History | Annotate | Download | only in SelectionDAG

Lines Matching refs:UINT_TO_FP

1138   case ISD::UINT_TO_FP:         return visitUINT_TO_FP(N);
5888 // but UINT_TO_FP is legal on this target, try to convert.
5890 TLI.isOperationLegalOrCustom(ISD::UINT_TO_FP, OpVT)) {
5891 // If the sign bit is known to be zero, we can change this to UINT_TO_FP.
5893 return DAG.getNode(ISD::UINT_TO_FP, N->getDebugLoc(), VT, N0);
5905 // fold (uint_to_fp c1) -> c1fp
5910 return DAG.getNode(ISD::UINT_TO_FP, N->getDebugLoc(), VT, N0);
5912 // If the input is a legal type, and UINT_TO_FP is not legal on this target,
5914 if (!TLI.isOperationLegalOrCustom(ISD::UINT_TO_FP, OpVT) &&