Lines Matching refs:UINT_TO_FP
1157 case ISD::UINT_TO_FP: return visitUINT_TO_FP(N);
6467 // but UINT_TO_FP is legal on this target, try to convert.
6469 TLI.isOperationLegalOrCustom(ISD::UINT_TO_FP, OpVT)) {
6470 // If the sign bit is known to be zero, we can change this to UINT_TO_FP.
6472 return DAG.getNode(ISD::UINT_TO_FP, SDLoc(N), VT, N0);
6516 // fold (uint_to_fp c1) -> c1fp
6521 return DAG.getNode(ISD::UINT_TO_FP, SDLoc(N), VT, N0);
6523 // If the input is a legal type, and UINT_TO_FP is not legal on this target,
6525 if (!TLI.isOperationLegalOrCustom(ISD::UINT_TO_FP, OpVT) &&
6538 // fold (uint_to_fp (setcc x, y, cc)) -> (select_cc x, y, -1.0, 0.0,, cc)
8982 (Opc == ISD::UINT_TO_FP || Opc == ISD::SINT_TO_FP)) {
9005 assert((Opcode == ISD::UINT_TO_FP || Opcode == ISD::SINT_TO_FP)