Lines Matching refs:F32
40 def I32_TRUNC_S_F32 : I<(outs I32:$dst), (ins F32:$src),
41 [(set I32:$dst, (fp_to_sint F32:$src))],
43 def I32_TRUNC_U_F32 : I<(outs I32:$dst), (ins F32:$src),
44 [(set I32:$dst, (fp_to_uint F32:$src))],
46 def I64_TRUNC_S_F32 : I<(outs I64:$dst), (ins F32:$src),
47 [(set I64:$dst, (fp_to_sint F32:$src))],
49 def I64_TRUNC_U_F32 : I<(outs I64:$dst), (ins F32:$src),
50 [(set I64:$dst, (fp_to_uint F32:$src))],
66 def F32_CONVERT_S_I32 : I<(outs F32:$dst), (ins I32:$src),
67 [(set F32:$dst, (sint_to_fp I32:$src))],
69 def F32_CONVERT_U_I32 : I<(outs F32:$dst), (ins I32:$src),
70 [(set F32:$dst, (uint_to_fp I32:$src))],
78 def F32_CONVERT_S_I64 : I<(outs F32:$dst), (ins I64:$src),
79 [(set F32:$dst, (sint_to_fp I64:$src))],
81 def F32_CONVERT_U_I64 : I<(outs F32:$dst), (ins I64:$src),
82 [(set F32:$dst, (uint_to_fp I64:$src))],
91 def F64_PROMOTE_F32 : I<(outs F64:$dst), (ins F32:$src),
92 [(set F64:$dst, (fextend F32:$src))],
94 def F32_DEMOTE_F64 : I<(outs F32:$dst), (ins F64:$src),
95 [(set F32:$dst, (fround F64:$src))],
98 def I32_REINTERPRET_F32 : I<(outs I32:$dst), (ins F32:$src),
99 [(set I32:$dst, (bitconvert F32:$src))],
101 def F32_REINTERPRET_I32 : I<(outs F32:$dst), (ins I32:$src),
102 [(set F32:$dst, (bitconvert I32:$src))],