Lines Matching refs:F64
52 def I32_TRUNC_S_F64 : I<(outs I32:$dst), (ins F64:$src),
53 [(set I32:$dst, (fp_to_sint F64:$src))],
55 def I32_TRUNC_U_F64 : I<(outs I32:$dst), (ins F64:$src),
56 [(set I32:$dst, (fp_to_uint F64:$src))],
58 def I64_TRUNC_S_F64 : I<(outs I64:$dst), (ins F64:$src),
59 [(set I64:$dst, (fp_to_sint F64:$src))],
61 def I64_TRUNC_U_F64 : I<(outs I64:$dst), (ins F64:$src),
62 [(set I64:$dst, (fp_to_uint F64:$src))],
72 def F64_CONVERT_S_I32 : I<(outs F64:$dst), (ins I32:$src),
73 [(set F64:$dst, (sint_to_fp I32:$src))],
75 def F64_CONVERT_U_I32 : I<(outs F64:$dst), (ins I32:$src),
76 [(set F64:$dst, (uint_to_fp I32:$src))],
84 def F64_CONVERT_S_I64 : I<(outs F64:$dst), (ins I64:$src),
85 [(set F64:$dst, (sint_to_fp I64:$src))],
87 def F64_CONVERT_U_I64 : I<(outs F64:$dst), (ins I64:$src),
88 [(set F64:$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))],
104 def I64_REINTERPRET_F64 : I<(outs I64:$dst), (ins F64:$src),
105 [(set I64:$dst, (bitconvert F64:$src))],
107 def F64_REINTERPRET_I64 : I<(outs F64:$dst), (ins I64:$src),
108 [(set F64:$dst, (bitconvert I64:$src))],