2 * Tiny Code Generator for QEMU
4 * Copyright (c) 2018 Linaro, Inc.
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
20 #include "qemu/osdep.h"
21 #include "qemu-common.h"
27 /* Reduce the number of ifdefs below. This assumes that all uses of
28 TCGV_HIGH and TCGV_LOW are properly protected by a conditional that
29 the compiler can eliminate. */
30 #if TCG_TARGET_REG_BITS == 64
31 extern TCGv_i32
TCGV_LOW_link_error(TCGv_i64
);
32 extern TCGv_i32
TCGV_HIGH_link_error(TCGv_i64
);
33 #define TCGV_LOW TCGV_LOW_link_error
34 #define TCGV_HIGH TCGV_HIGH_link_error
37 void vec_gen_2(TCGOpcode opc
, TCGType type
, unsigned vece
, TCGArg r
, TCGArg a
)
39 TCGOp
*op
= tcg_emit_op(opc
);
40 TCGOP_VECL(op
) = type
- TCG_TYPE_V64
;
41 TCGOP_VECE(op
) = vece
;
46 void vec_gen_3(TCGOpcode opc
, TCGType type
, unsigned vece
,
47 TCGArg r
, TCGArg a
, TCGArg b
)
49 TCGOp
*op
= tcg_emit_op(opc
);
50 TCGOP_VECL(op
) = type
- TCG_TYPE_V64
;
51 TCGOP_VECE(op
) = vece
;
57 void vec_gen_4(TCGOpcode opc
, TCGType type
, unsigned vece
,
58 TCGArg r
, TCGArg a
, TCGArg b
, TCGArg c
)
60 TCGOp
*op
= tcg_emit_op(opc
);
61 TCGOP_VECL(op
) = type
- TCG_TYPE_V64
;
62 TCGOP_VECE(op
) = vece
;
69 static void vec_gen_op2(TCGOpcode opc
, unsigned vece
, TCGv_vec r
, TCGv_vec a
)
71 TCGTemp
*rt
= tcgv_vec_temp(r
);
72 TCGTemp
*at
= tcgv_vec_temp(a
);
73 TCGType type
= rt
->base_type
;
75 /* Must enough inputs for the output. */
76 tcg_debug_assert(at
->base_type
>= type
);
77 vec_gen_2(opc
, type
, vece
, temp_arg(rt
), temp_arg(at
));
80 static void vec_gen_op3(TCGOpcode opc
, unsigned vece
,
81 TCGv_vec r
, TCGv_vec a
, TCGv_vec b
)
83 TCGTemp
*rt
= tcgv_vec_temp(r
);
84 TCGTemp
*at
= tcgv_vec_temp(a
);
85 TCGTemp
*bt
= tcgv_vec_temp(b
);
86 TCGType type
= rt
->base_type
;
88 /* Must enough inputs for the output. */
89 tcg_debug_assert(at
->base_type
>= type
);
90 tcg_debug_assert(bt
->base_type
>= type
);
91 vec_gen_3(opc
, type
, vece
, temp_arg(rt
), temp_arg(at
), temp_arg(bt
));
94 void tcg_gen_mov_vec(TCGv_vec r
, TCGv_vec a
)
97 vec_gen_op2(INDEX_op_mov_vec
, 0, r
, a
);
101 #define MO_REG (TCG_TARGET_REG_BITS == 64 ? MO_64 : MO_32)
103 static void do_dupi_vec(TCGv_vec r
, unsigned vece
, TCGArg a
)
105 TCGTemp
*rt
= tcgv_vec_temp(r
);
106 vec_gen_2(INDEX_op_dupi_vec
, rt
->base_type
, vece
, temp_arg(rt
), a
);
109 TCGv_vec
tcg_const_zeros_vec(TCGType type
)
111 TCGv_vec ret
= tcg_temp_new_vec(type
);
112 do_dupi_vec(ret
, MO_REG
, 0);
116 TCGv_vec
tcg_const_ones_vec(TCGType type
)
118 TCGv_vec ret
= tcg_temp_new_vec(type
);
119 do_dupi_vec(ret
, MO_REG
, -1);
123 TCGv_vec
tcg_const_zeros_vec_matching(TCGv_vec m
)
125 TCGTemp
*t
= tcgv_vec_temp(m
);
126 return tcg_const_zeros_vec(t
->base_type
);
129 TCGv_vec
tcg_const_ones_vec_matching(TCGv_vec m
)
131 TCGTemp
*t
= tcgv_vec_temp(m
);
132 return tcg_const_ones_vec(t
->base_type
);
135 void tcg_gen_dup64i_vec(TCGv_vec r
, uint64_t a
)
137 if (TCG_TARGET_REG_BITS
== 32 && a
== deposit64(a
, 32, 32, a
)) {
138 do_dupi_vec(r
, MO_32
, a
);
139 } else if (TCG_TARGET_REG_BITS
== 64 || a
== (uint64_t)(int32_t)a
) {
140 do_dupi_vec(r
, MO_64
, a
);
142 TCGv_i64 c
= tcg_const_i64(a
);
143 tcg_gen_dup_i64_vec(MO_64
, r
, c
);
144 tcg_temp_free_i64(c
);
148 void tcg_gen_dup32i_vec(TCGv_vec r
, uint32_t a
)
150 do_dupi_vec(r
, MO_REG
, dup_const(MO_32
, a
));
153 void tcg_gen_dup16i_vec(TCGv_vec r
, uint32_t a
)
155 do_dupi_vec(r
, MO_REG
, dup_const(MO_16
, a
));
158 void tcg_gen_dup8i_vec(TCGv_vec r
, uint32_t a
)
160 do_dupi_vec(r
, MO_REG
, dup_const(MO_8
, a
));
163 void tcg_gen_dupi_vec(unsigned vece
, TCGv_vec r
, uint64_t a
)
165 do_dupi_vec(r
, MO_REG
, dup_const(vece
, a
));
168 void tcg_gen_dup_i64_vec(unsigned vece
, TCGv_vec r
, TCGv_i64 a
)
170 TCGArg ri
= tcgv_vec_arg(r
);
171 TCGTemp
*rt
= arg_temp(ri
);
172 TCGType type
= rt
->base_type
;
174 if (TCG_TARGET_REG_BITS
== 64) {
175 TCGArg ai
= tcgv_i64_arg(a
);
176 vec_gen_2(INDEX_op_dup_vec
, type
, vece
, ri
, ai
);
177 } else if (vece
== MO_64
) {
178 TCGArg al
= tcgv_i32_arg(TCGV_LOW(a
));
179 TCGArg ah
= tcgv_i32_arg(TCGV_HIGH(a
));
180 vec_gen_3(INDEX_op_dup2_vec
, type
, MO_64
, ri
, al
, ah
);
182 TCGArg ai
= tcgv_i32_arg(TCGV_LOW(a
));
183 vec_gen_2(INDEX_op_dup_vec
, type
, vece
, ri
, ai
);
187 void tcg_gen_dup_i32_vec(unsigned vece
, TCGv_vec r
, TCGv_i32 a
)
189 TCGArg ri
= tcgv_vec_arg(r
);
190 TCGArg ai
= tcgv_i32_arg(a
);
191 TCGTemp
*rt
= arg_temp(ri
);
192 TCGType type
= rt
->base_type
;
194 vec_gen_2(INDEX_op_dup_vec
, type
, vece
, ri
, ai
);
197 static void vec_gen_ldst(TCGOpcode opc
, TCGv_vec r
, TCGv_ptr b
, TCGArg o
)
199 TCGArg ri
= tcgv_vec_arg(r
);
200 TCGArg bi
= tcgv_ptr_arg(b
);
201 TCGTemp
*rt
= arg_temp(ri
);
202 TCGType type
= rt
->base_type
;
204 vec_gen_3(opc
, type
, 0, ri
, bi
, o
);
207 void tcg_gen_ld_vec(TCGv_vec r
, TCGv_ptr b
, TCGArg o
)
209 vec_gen_ldst(INDEX_op_ld_vec
, r
, b
, o
);
212 void tcg_gen_st_vec(TCGv_vec r
, TCGv_ptr b
, TCGArg o
)
214 vec_gen_ldst(INDEX_op_st_vec
, r
, b
, o
);
217 void tcg_gen_stl_vec(TCGv_vec r
, TCGv_ptr b
, TCGArg o
, TCGType low_type
)
219 TCGArg ri
= tcgv_vec_arg(r
);
220 TCGArg bi
= tcgv_ptr_arg(b
);
221 TCGTemp
*rt
= arg_temp(ri
);
222 TCGType type
= rt
->base_type
;
224 tcg_debug_assert(low_type
>= TCG_TYPE_V64
);
225 tcg_debug_assert(low_type
<= type
);
226 vec_gen_3(INDEX_op_st_vec
, low_type
, 0, ri
, bi
, o
);
229 void tcg_gen_add_vec(unsigned vece
, TCGv_vec r
, TCGv_vec a
, TCGv_vec b
)
231 vec_gen_op3(INDEX_op_add_vec
, vece
, r
, a
, b
);
234 void tcg_gen_sub_vec(unsigned vece
, TCGv_vec r
, TCGv_vec a
, TCGv_vec b
)
236 vec_gen_op3(INDEX_op_sub_vec
, vece
, r
, a
, b
);
239 void tcg_gen_and_vec(unsigned vece
, TCGv_vec r
, TCGv_vec a
, TCGv_vec b
)
241 vec_gen_op3(INDEX_op_and_vec
, 0, r
, a
, b
);
244 void tcg_gen_or_vec(unsigned vece
, TCGv_vec r
, TCGv_vec a
, TCGv_vec b
)
246 vec_gen_op3(INDEX_op_or_vec
, 0, r
, a
, b
);
249 void tcg_gen_xor_vec(unsigned vece
, TCGv_vec r
, TCGv_vec a
, TCGv_vec b
)
251 vec_gen_op3(INDEX_op_xor_vec
, 0, r
, a
, b
);
254 void tcg_gen_andc_vec(unsigned vece
, TCGv_vec r
, TCGv_vec a
, TCGv_vec b
)
256 if (TCG_TARGET_HAS_andc_vec
) {
257 vec_gen_op3(INDEX_op_andc_vec
, 0, r
, a
, b
);
259 TCGv_vec t
= tcg_temp_new_vec_matching(r
);
260 tcg_gen_not_vec(0, t
, b
);
261 tcg_gen_and_vec(0, r
, a
, t
);
262 tcg_temp_free_vec(t
);
266 void tcg_gen_orc_vec(unsigned vece
, TCGv_vec r
, TCGv_vec a
, TCGv_vec b
)
268 if (TCG_TARGET_HAS_orc_vec
) {
269 vec_gen_op3(INDEX_op_orc_vec
, 0, r
, a
, b
);
271 TCGv_vec t
= tcg_temp_new_vec_matching(r
);
272 tcg_gen_not_vec(0, t
, b
);
273 tcg_gen_or_vec(0, r
, a
, t
);
274 tcg_temp_free_vec(t
);
278 void tcg_gen_not_vec(unsigned vece
, TCGv_vec r
, TCGv_vec a
)
280 if (TCG_TARGET_HAS_not_vec
) {
281 vec_gen_op2(INDEX_op_not_vec
, 0, r
, a
);
283 TCGv_vec t
= tcg_const_ones_vec_matching(r
);
284 tcg_gen_xor_vec(0, r
, a
, t
);
285 tcg_temp_free_vec(t
);
289 void tcg_gen_neg_vec(unsigned vece
, TCGv_vec r
, TCGv_vec a
)
291 if (TCG_TARGET_HAS_neg_vec
) {
292 vec_gen_op2(INDEX_op_neg_vec
, vece
, r
, a
);
294 TCGv_vec t
= tcg_const_zeros_vec_matching(r
);
295 tcg_gen_sub_vec(vece
, r
, t
, a
);
296 tcg_temp_free_vec(t
);
300 static void do_shifti(TCGOpcode opc
, unsigned vece
,
301 TCGv_vec r
, TCGv_vec a
, int64_t i
)
303 TCGTemp
*rt
= tcgv_vec_temp(r
);
304 TCGTemp
*at
= tcgv_vec_temp(a
);
305 TCGArg ri
= temp_arg(rt
);
306 TCGArg ai
= temp_arg(at
);
307 TCGType type
= rt
->base_type
;
310 tcg_debug_assert(at
->base_type
== type
);
311 tcg_debug_assert(i
>= 0 && i
< (8 << vece
));
314 tcg_gen_mov_vec(r
, a
);
318 can
= tcg_can_emit_vec_op(opc
, type
, vece
);
320 vec_gen_3(opc
, type
, vece
, ri
, ai
, i
);
322 /* We leave the choice of expansion via scalar or vector shift
323 to the target. Often, but not always, dupi can feed a vector
324 shift easier than a scalar. */
325 tcg_debug_assert(can
< 0);
326 tcg_expand_vec_op(opc
, type
, vece
, ri
, ai
, i
);
330 void tcg_gen_shli_vec(unsigned vece
, TCGv_vec r
, TCGv_vec a
, int64_t i
)
332 do_shifti(INDEX_op_shli_vec
, vece
, r
, a
, i
);
335 void tcg_gen_shri_vec(unsigned vece
, TCGv_vec r
, TCGv_vec a
, int64_t i
)
337 do_shifti(INDEX_op_shri_vec
, vece
, r
, a
, i
);
340 void tcg_gen_sari_vec(unsigned vece
, TCGv_vec r
, TCGv_vec a
, int64_t i
)
342 do_shifti(INDEX_op_sari_vec
, vece
, r
, a
, i
);
345 void tcg_gen_cmp_vec(TCGCond cond
, unsigned vece
,
346 TCGv_vec r
, TCGv_vec a
, TCGv_vec b
)
348 TCGTemp
*rt
= tcgv_vec_temp(r
);
349 TCGTemp
*at
= tcgv_vec_temp(a
);
350 TCGTemp
*bt
= tcgv_vec_temp(b
);
351 TCGArg ri
= temp_arg(rt
);
352 TCGArg ai
= temp_arg(at
);
353 TCGArg bi
= temp_arg(bt
);
354 TCGType type
= rt
->base_type
;
357 tcg_debug_assert(at
->base_type
>= type
);
358 tcg_debug_assert(bt
->base_type
>= type
);
359 can
= tcg_can_emit_vec_op(INDEX_op_cmp_vec
, type
, vece
);
361 vec_gen_4(INDEX_op_cmp_vec
, type
, vece
, ri
, ai
, bi
, cond
);
363 tcg_debug_assert(can
< 0);
364 tcg_expand_vec_op(INDEX_op_cmp_vec
, type
, vece
, ri
, ai
, bi
, cond
);
368 void tcg_gen_mul_vec(unsigned vece
, TCGv_vec r
, TCGv_vec a
, TCGv_vec b
)
370 TCGTemp
*rt
= tcgv_vec_temp(r
);
371 TCGTemp
*at
= tcgv_vec_temp(a
);
372 TCGTemp
*bt
= tcgv_vec_temp(b
);
373 TCGArg ri
= temp_arg(rt
);
374 TCGArg ai
= temp_arg(at
);
375 TCGArg bi
= temp_arg(bt
);
376 TCGType type
= rt
->base_type
;
379 tcg_debug_assert(at
->base_type
>= type
);
380 tcg_debug_assert(bt
->base_type
>= type
);
381 can
= tcg_can_emit_vec_op(INDEX_op_mul_vec
, type
, vece
);
383 vec_gen_3(INDEX_op_mul_vec
, type
, vece
, ri
, ai
, bi
);
385 tcg_debug_assert(can
< 0);
386 tcg_expand_vec_op(INDEX_op_mul_vec
, type
, vece
, ri
, ai
, bi
);