blob: 661fee2715ba1a07e09755858532f33d1b62064f [file] [log] [blame]
JF Bastien5ca0bac2015-07-10 18:23:10 +00001//===-- WebAssemblyInstrConv.td-WebAssembly Conversion support -*- tablegen -*-=
2//
Chandler Carruth2946cd72019-01-19 08:50:56 +00003// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
JF Bastien5ca0bac2015-07-10 18:23:10 +00006//
7//===----------------------------------------------------------------------===//
8///
9/// \file
Adrian Prantl5f8f34e42018-05-01 15:54:18 +000010/// WebAssembly datatype conversions, truncations, reinterpretations,
JF Bastien5ca0bac2015-07-10 18:23:10 +000011/// promotions, and demotions operand code-gen constructs.
12///
13//===----------------------------------------------------------------------===//
14
Wouter van Oortmerssen48dac312018-06-18 21:22:44 +000015defm I32_WRAP_I64 : I<(outs I32:$dst), (ins I64:$src), (outs), (ins),
Dan Gohmanbc58a7b2015-11-13 00:50:04 +000016 [(set I32:$dst, (trunc I64:$src))],
Thomas Lively6a87dda2019-01-08 06:25:55 +000017 "i32.wrap_i64\t$dst, $src", "i32.wrap_i64", 0xa7>;
Dan Gohmandc51b962015-10-03 02:10:28 +000018
Wouter van Oortmerssen48dac312018-06-18 21:22:44 +000019defm I64_EXTEND_S_I32 : I<(outs I64:$dst), (ins I32:$src), (outs), (ins),
Dan Gohmanbc58a7b2015-11-13 00:50:04 +000020 [(set I64:$dst, (sext I32:$src))],
Thomas Lively6a87dda2019-01-08 06:25:55 +000021 "i64.extend_i32_s\t$dst, $src", "i64.extend_i32_s",
Wouter van Oortmerssen48dac312018-06-18 21:22:44 +000022 0xac>;
23defm I64_EXTEND_U_I32 : I<(outs I64:$dst), (ins I32:$src), (outs), (ins),
24 [(set I64:$dst, (zext I32:$src))],
Thomas Lively6a87dda2019-01-08 06:25:55 +000025 "i64.extend_i32_u\t$dst, $src", "i64.extend_i32_u",
Wouter van Oortmerssen48dac312018-06-18 21:22:44 +000026 0xad>;
Dan Gohmandc51b962015-10-03 02:10:28 +000027
Dan Gohman5d2b9352018-01-19 17:16:24 +000028let Predicates = [HasSignExt] in {
Wouter van Oortmerssen48dac312018-06-18 21:22:44 +000029defm I32_EXTEND8_S_I32 : I<(outs I32:$dst), (ins I32:$src), (outs), (ins),
30 [(set I32:$dst, (sext_inreg I32:$src, i8))],
31 "i32.extend8_s\t$dst, $src", "i32.extend8_s",
32 0xc0>;
33defm I32_EXTEND16_S_I32 : I<(outs I32:$dst), (ins I32:$src), (outs), (ins),
34 [(set I32:$dst, (sext_inreg I32:$src, i16))],
35 "i32.extend16_s\t$dst, $src", "i32.extend16_s",
36 0xc1>;
37defm I64_EXTEND8_S_I64 : I<(outs I64:$dst), (ins I64:$src), (outs), (ins),
38 [(set I64:$dst, (sext_inreg I64:$src, i8))],
39 "i64.extend8_s\t$dst, $src", "i64.extend8_s",
40 0xc2>;
41defm I64_EXTEND16_S_I64 : I<(outs I64:$dst), (ins I64:$src), (outs), (ins),
42 [(set I64:$dst, (sext_inreg I64:$src, i16))],
43 "i64.extend16_s\t$dst, $src", "i64.extend16_s",
44 0xc3>;
45defm I64_EXTEND32_S_I64 : I<(outs I64:$dst), (ins I64:$src), (outs), (ins),
46 [(set I64:$dst, (sext_inreg I64:$src, i32))],
47 "i64.extend32_s\t$dst, $src", "i64.extend32_s",
48 0xc4>;
Dan Gohman5d2b9352018-01-19 17:16:24 +000049} // Predicates = [HasSignExt]
Derek Schuffa519fe52017-09-13 00:29:06 +000050
Dan Gohmandf00a9e2015-12-10 00:17:35 +000051// Expand a "don't care" extend into zero-extend (chosen over sign-extend
52// somewhat arbitrarily, although it favors popular hardware architectures
53// and is conceptually a simpler operation).
54def : Pat<(i64 (anyext I32:$src)), (I64_EXTEND_U_I32 I32:$src)>;
55
Dan Gohmancdd48b82017-11-28 01:13:40 +000056// Conversion from floating point to integer instructions which don't trap on
57// overflow or invalid.
Wouter van Oortmerssen48dac312018-06-18 21:22:44 +000058defm I32_TRUNC_S_SAT_F32 : I<(outs I32:$dst), (ins F32:$src), (outs), (ins),
59 [(set I32:$dst, (fp_to_sint F32:$src))],
Thomas Lively6a87dda2019-01-08 06:25:55 +000060 "i32.trunc_sat_f32_s\t$dst, $src",
61 "i32.trunc_sat_f32_s", 0xfc00>,
Wouter van Oortmerssen48dac312018-06-18 21:22:44 +000062 Requires<[HasNontrappingFPToInt]>;
63defm I32_TRUNC_U_SAT_F32 : I<(outs I32:$dst), (ins F32:$src), (outs), (ins),
64 [(set I32:$dst, (fp_to_uint F32:$src))],
Thomas Lively6a87dda2019-01-08 06:25:55 +000065 "i32.trunc_sat_f32_u\t$dst, $src",
66 "i32.trunc_sat_f32_u", 0xfc01>,
Wouter van Oortmerssen48dac312018-06-18 21:22:44 +000067 Requires<[HasNontrappingFPToInt]>;
68defm I64_TRUNC_S_SAT_F32 : I<(outs I64:$dst), (ins F32:$src), (outs), (ins),
69 [(set I64:$dst, (fp_to_sint F32:$src))],
Thomas Lively6a87dda2019-01-08 06:25:55 +000070 "i64.trunc_sat_f32_s\t$dst, $src",
71 "i64.trunc_sat_f32_s", 0xfc04>,
Wouter van Oortmerssen48dac312018-06-18 21:22:44 +000072 Requires<[HasNontrappingFPToInt]>;
73defm I64_TRUNC_U_SAT_F32 : I<(outs I64:$dst), (ins F32:$src), (outs), (ins),
74 [(set I64:$dst, (fp_to_uint F32:$src))],
Thomas Lively6a87dda2019-01-08 06:25:55 +000075 "i64.trunc_sat_f32_u\t$dst, $src",
76 "i64.trunc_sat_f32_u", 0xfc05>,
Wouter van Oortmerssen48dac312018-06-18 21:22:44 +000077 Requires<[HasNontrappingFPToInt]>;
78defm I32_TRUNC_S_SAT_F64 : I<(outs I32:$dst), (ins F64:$src), (outs), (ins),
79 [(set I32:$dst, (fp_to_sint F64:$src))],
Thomas Lively6a87dda2019-01-08 06:25:55 +000080 "i32.trunc_sat_f64_s\t$dst, $src",
81 "i32.trunc_sat_f64_s", 0xfc02>,
Wouter van Oortmerssen48dac312018-06-18 21:22:44 +000082 Requires<[HasNontrappingFPToInt]>;
83defm I32_TRUNC_U_SAT_F64 : I<(outs I32:$dst), (ins F64:$src), (outs), (ins),
84 [(set I32:$dst, (fp_to_uint F64:$src))],
Thomas Lively6a87dda2019-01-08 06:25:55 +000085 "i32.trunc_sat_f64_u\t$dst, $src",
86 "i32.trunc_sat_f64_u", 0xfc03>,
Wouter van Oortmerssen48dac312018-06-18 21:22:44 +000087 Requires<[HasNontrappingFPToInt]>;
88defm I64_TRUNC_S_SAT_F64 : I<(outs I64:$dst), (ins F64:$src), (outs), (ins),
89 [(set I64:$dst, (fp_to_sint F64:$src))],
Thomas Lively6a87dda2019-01-08 06:25:55 +000090 "i64.trunc_sat_f64_s\t$dst, $src",
91 "i64.trunc_sat_f64_s", 0xfc06>,
Wouter van Oortmerssen48dac312018-06-18 21:22:44 +000092 Requires<[HasNontrappingFPToInt]>;
93defm I64_TRUNC_U_SAT_F64 : I<(outs I64:$dst), (ins F64:$src), (outs), (ins),
94 [(set I64:$dst, (fp_to_uint F64:$src))],
Thomas Lively6a87dda2019-01-08 06:25:55 +000095 "i64.trunc_sat_f64_u\t$dst, $src",
96 "i64.trunc_sat_f64_u", 0xfc07>,
Wouter van Oortmerssen48dac312018-06-18 21:22:44 +000097 Requires<[HasNontrappingFPToInt]>;
Dan Gohmancdd48b82017-11-28 01:13:40 +000098
Thomas Lively2ebacb12018-10-11 00:01:25 +000099// Lower llvm.wasm.trunc.saturate.* to saturating instructions
100def : Pat<(int_wasm_trunc_saturate_signed F32:$src),
101 (I32_TRUNC_S_SAT_F32 F32:$src)>;
102def : Pat<(int_wasm_trunc_saturate_unsigned F32:$src),
103 (I32_TRUNC_U_SAT_F32 F32:$src)>;
104def : Pat<(int_wasm_trunc_saturate_signed F64:$src),
105 (I32_TRUNC_S_SAT_F64 F64:$src)>;
106def : Pat<(int_wasm_trunc_saturate_unsigned F64:$src),
107 (I32_TRUNC_U_SAT_F64 F64:$src)>;
108def : Pat<(int_wasm_trunc_saturate_signed F32:$src),
109 (I64_TRUNC_S_SAT_F32 F32:$src)>;
110def : Pat<(int_wasm_trunc_saturate_unsigned F32:$src),
111 (I64_TRUNC_U_SAT_F32 F32:$src)>;
112def : Pat<(int_wasm_trunc_saturate_signed F64:$src),
113 (I64_TRUNC_S_SAT_F64 F64:$src)>;
114def : Pat<(int_wasm_trunc_saturate_unsigned F64:$src),
115 (I64_TRUNC_U_SAT_F64 F64:$src)>;
116
Dan Gohmancdd48b82017-11-28 01:13:40 +0000117// Conversion from floating point to integer pseudo-instructions which don't
118// trap on overflow or invalid.
119let usesCustomInserter = 1, isCodeGenOnly = 1 in {
Wouter van Oortmerssen48dac312018-06-18 21:22:44 +0000120defm FP_TO_SINT_I32_F32 : I<(outs I32:$dst), (ins F32:$src), (outs), (ins),
121 [(set I32:$dst, (fp_to_sint F32:$src))], "", "", 0>,
122 Requires<[NotHasNontrappingFPToInt]>;
123defm FP_TO_UINT_I32_F32 : I<(outs I32:$dst), (ins F32:$src), (outs), (ins),
124 [(set I32:$dst, (fp_to_uint F32:$src))], "", "", 0>,
125 Requires<[NotHasNontrappingFPToInt]>;
126defm FP_TO_SINT_I64_F32 : I<(outs I64:$dst), (ins F32:$src), (outs), (ins),
127 [(set I64:$dst, (fp_to_sint F32:$src))], "", "", 0>,
128 Requires<[NotHasNontrappingFPToInt]>;
129defm FP_TO_UINT_I64_F32 : I<(outs I64:$dst), (ins F32:$src), (outs), (ins),
130 [(set I64:$dst, (fp_to_uint F32:$src))], "", "", 0>,
131 Requires<[NotHasNontrappingFPToInt]>;
132defm FP_TO_SINT_I32_F64 : I<(outs I32:$dst), (ins F64:$src), (outs), (ins),
133 [(set I32:$dst, (fp_to_sint F64:$src))], "", "", 0>,
134 Requires<[NotHasNontrappingFPToInt]>;
135defm FP_TO_UINT_I32_F64 : I<(outs I32:$dst), (ins F64:$src), (outs), (ins),
136 [(set I32:$dst, (fp_to_uint F64:$src))], "", "", 0>,
137 Requires<[NotHasNontrappingFPToInt]>;
138defm FP_TO_SINT_I64_F64 : I<(outs I64:$dst), (ins F64:$src), (outs), (ins),
139 [(set I64:$dst, (fp_to_sint F64:$src))], "", "", 0>,
140 Requires<[NotHasNontrappingFPToInt]>;
141defm FP_TO_UINT_I64_F64 : I<(outs I64:$dst), (ins F64:$src), (outs), (ins),
142 [(set I64:$dst, (fp_to_uint F64:$src))], "", "", 0>,
143 Requires<[NotHasNontrappingFPToInt]>;
Dan Gohmancdd48b82017-11-28 01:13:40 +0000144} // usesCustomInserter, isCodeGenOnly = 1
145
Dan Gohman174b2d82015-11-29 22:59:19 +0000146// Conversion from floating point to integer traps on overflow and invalid.
147let hasSideEffects = 1 in {
Wouter van Oortmerssen48dac312018-06-18 21:22:44 +0000148defm I32_TRUNC_S_F32 : I<(outs I32:$dst), (ins F32:$src), (outs), (ins),
Thomas Lively6a87dda2019-01-08 06:25:55 +0000149 [], "i32.trunc_f32_s\t$dst, $src", "i32.trunc_f32_s",
Wouter van Oortmerssen48dac312018-06-18 21:22:44 +0000150 0xa8>;
151defm I32_TRUNC_U_F32 : I<(outs I32:$dst), (ins F32:$src), (outs), (ins),
Thomas Lively6a87dda2019-01-08 06:25:55 +0000152 [], "i32.trunc_f32_u\t$dst, $src", "i32.trunc_f32_u",
Wouter van Oortmerssen48dac312018-06-18 21:22:44 +0000153 0xa9>;
154defm I64_TRUNC_S_F32 : I<(outs I64:$dst), (ins F32:$src), (outs), (ins),
Thomas Lively6a87dda2019-01-08 06:25:55 +0000155 [], "i64.trunc_f32_s\t$dst, $src", "i64.trunc_f32_s",
Wouter van Oortmerssen48dac312018-06-18 21:22:44 +0000156 0xae>;
157defm I64_TRUNC_U_F32 : I<(outs I64:$dst), (ins F32:$src), (outs), (ins),
Thomas Lively6a87dda2019-01-08 06:25:55 +0000158 [], "i64.trunc_f32_u\t$dst, $src", "i64.trunc_f32_u",
Wouter van Oortmerssen48dac312018-06-18 21:22:44 +0000159 0xaf>;
160defm I32_TRUNC_S_F64 : I<(outs I32:$dst), (ins F64:$src), (outs), (ins),
Thomas Lively6a87dda2019-01-08 06:25:55 +0000161 [], "i32.trunc_f64_s\t$dst, $src", "i32.trunc_f64_s",
Wouter van Oortmerssen48dac312018-06-18 21:22:44 +0000162 0xaa>;
163defm I32_TRUNC_U_F64 : I<(outs I32:$dst), (ins F64:$src), (outs), (ins),
Thomas Lively6a87dda2019-01-08 06:25:55 +0000164 [], "i32.trunc_f64_u\t$dst, $src", "i32.trunc_f64_u",
Wouter van Oortmerssen48dac312018-06-18 21:22:44 +0000165 0xab>;
166defm I64_TRUNC_S_F64 : I<(outs I64:$dst), (ins F64:$src), (outs), (ins),
Thomas Lively6a87dda2019-01-08 06:25:55 +0000167 [], "i64.trunc_f64_s\t$dst, $src", "i64.trunc_f64_s",
Wouter van Oortmerssen48dac312018-06-18 21:22:44 +0000168 0xb0>;
169defm I64_TRUNC_U_F64 : I<(outs I64:$dst), (ins F64:$src), (outs), (ins),
Thomas Lively6a87dda2019-01-08 06:25:55 +0000170 [], "i64.trunc_f64_u\t$dst, $src", "i64.trunc_f64_u",
Wouter van Oortmerssen48dac312018-06-18 21:22:44 +0000171 0xb1>;
Dan Gohman174b2d82015-11-29 22:59:19 +0000172} // hasSideEffects = 1
Dan Gohmandc51b962015-10-03 02:10:28 +0000173
Wouter van Oortmerssen48dac312018-06-18 21:22:44 +0000174defm F32_CONVERT_S_I32 : I<(outs F32:$dst), (ins I32:$src), (outs), (ins),
175 [(set F32:$dst, (sint_to_fp I32:$src))],
Thomas Lively6a87dda2019-01-08 06:25:55 +0000176 "f32.convert_i32_s\t$dst, $src", "f32.convert_i32_s",
Wouter van Oortmerssen48dac312018-06-18 21:22:44 +0000177 0xb2>;
178defm F32_CONVERT_U_I32 : I<(outs F32:$dst), (ins I32:$src), (outs), (ins),
179 [(set F32:$dst, (uint_to_fp I32:$src))],
Thomas Lively6a87dda2019-01-08 06:25:55 +0000180 "f32.convert_i32_u\t$dst, $src", "f32.convert_i32_u",
Wouter van Oortmerssen48dac312018-06-18 21:22:44 +0000181 0xb3>;
182defm F64_CONVERT_S_I32 : I<(outs F64:$dst), (ins I32:$src), (outs), (ins),
183 [(set F64:$dst, (sint_to_fp I32:$src))],
Thomas Lively6a87dda2019-01-08 06:25:55 +0000184 "f64.convert_i32_s\t$dst, $src", "f64.convert_i32_s",
Wouter van Oortmerssen48dac312018-06-18 21:22:44 +0000185 0xb7>;
186defm F64_CONVERT_U_I32 : I<(outs F64:$dst), (ins I32:$src), (outs), (ins),
187 [(set F64:$dst, (uint_to_fp I32:$src))],
Thomas Lively6a87dda2019-01-08 06:25:55 +0000188 "f64.convert_i32_u\t$dst, $src", "f64.convert_i32_u",
Wouter van Oortmerssen48dac312018-06-18 21:22:44 +0000189 0xb8>;
190defm F32_CONVERT_S_I64 : I<(outs F32:$dst), (ins I64:$src), (outs), (ins),
191 [(set F32:$dst, (sint_to_fp I64:$src))],
Thomas Lively6a87dda2019-01-08 06:25:55 +0000192 "f32.convert_i64_s\t$dst, $src", "f32.convert_i64_s",
Wouter van Oortmerssen48dac312018-06-18 21:22:44 +0000193 0xb4>;
194defm F32_CONVERT_U_I64 : I<(outs F32:$dst), (ins I64:$src), (outs), (ins),
195 [(set F32:$dst, (uint_to_fp I64:$src))],
Thomas Lively6a87dda2019-01-08 06:25:55 +0000196 "f32.convert_i64_u\t$dst, $src", "f32.convert_i64_u",
Wouter van Oortmerssen48dac312018-06-18 21:22:44 +0000197 0xb5>;
198defm F64_CONVERT_S_I64 : I<(outs F64:$dst), (ins I64:$src), (outs), (ins),
199 [(set F64:$dst, (sint_to_fp I64:$src))],
Thomas Lively6a87dda2019-01-08 06:25:55 +0000200 "f64.convert_i64_s\t$dst, $src", "f64.convert_i64_s",
Wouter van Oortmerssen48dac312018-06-18 21:22:44 +0000201 0xb9>;
202defm F64_CONVERT_U_I64 : I<(outs F64:$dst), (ins I64:$src), (outs), (ins),
203 [(set F64:$dst, (uint_to_fp I64:$src))],
Thomas Lively6a87dda2019-01-08 06:25:55 +0000204 "f64.convert_i64_u\t$dst, $src", "f64.convert_i64_u",
Wouter van Oortmerssen48dac312018-06-18 21:22:44 +0000205 0xba>;
Dan Gohmandc51b962015-10-03 02:10:28 +0000206
Wouter van Oortmerssen48dac312018-06-18 21:22:44 +0000207defm F64_PROMOTE_F32 : I<(outs F64:$dst), (ins F32:$src), (outs), (ins),
208 [(set F64:$dst, (fpextend F32:$src))],
Thomas Lively6a87dda2019-01-08 06:25:55 +0000209 "f64.promote_f32\t$dst, $src", "f64.promote_f32",
Wouter van Oortmerssen48dac312018-06-18 21:22:44 +0000210 0xbb>;
211defm F32_DEMOTE_F64 : I<(outs F32:$dst), (ins F64:$src), (outs), (ins),
212 [(set F32:$dst, (fpround F64:$src))],
Thomas Lively6a87dda2019-01-08 06:25:55 +0000213 "f32.demote_f64\t$dst, $src", "f32.demote_f64",
Wouter van Oortmerssen48dac312018-06-18 21:22:44 +0000214 0xb6>;
Dan Gohmandc51b962015-10-03 02:10:28 +0000215
Wouter van Oortmerssen48dac312018-06-18 21:22:44 +0000216defm I32_REINTERPRET_F32 : I<(outs I32:$dst), (ins F32:$src), (outs), (ins),
217 [(set I32:$dst, (bitconvert F32:$src))],
Thomas Lively6a87dda2019-01-08 06:25:55 +0000218 "i32.reinterpret_f32\t$dst, $src",
219 "i32.reinterpret_f32", 0xbc>;
Wouter van Oortmerssen48dac312018-06-18 21:22:44 +0000220defm F32_REINTERPRET_I32 : I<(outs F32:$dst), (ins I32:$src), (outs), (ins),
221 [(set F32:$dst, (bitconvert I32:$src))],
Thomas Lively6a87dda2019-01-08 06:25:55 +0000222 "f32.reinterpret_i32\t$dst, $src",
223 "f32.reinterpret_i32", 0xbe>;
Wouter van Oortmerssen48dac312018-06-18 21:22:44 +0000224defm I64_REINTERPRET_F64 : I<(outs I64:$dst), (ins F64:$src), (outs), (ins),
225 [(set I64:$dst, (bitconvert F64:$src))],
Thomas Lively6a87dda2019-01-08 06:25:55 +0000226 "i64.reinterpret_f64\t$dst, $src",
227 "i64.reinterpret_f64", 0xbd>;
Wouter van Oortmerssen48dac312018-06-18 21:22:44 +0000228defm F64_REINTERPRET_I64 : I<(outs F64:$dst), (ins I64:$src), (outs), (ins),
229 [(set F64:$dst, (bitconvert I64:$src))],
Thomas Lively6a87dda2019-01-08 06:25:55 +0000230 "f64.reinterpret_i64\t$dst, $src",
231 "f64.reinterpret_i64", 0xbf>;