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.1 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"
26 /* Reduce the number of ifdefs below. This assumes that all uses of
27 TCGV_HIGH and TCGV_LOW are properly protected by a conditional that
28 the compiler can eliminate. */
29 #if TCG_TARGET_REG_BITS == 64
30 extern TCGv_i32
TCGV_LOW_link_error(TCGv_i64
);
31 extern TCGv_i32
TCGV_HIGH_link_error(TCGv_i64
);
32 #define TCGV_LOW TCGV_LOW_link_error
33 #define TCGV_HIGH TCGV_HIGH_link_error
37 * Vector optional opcode tracking.
38 * Except for the basic logical operations (and, or, xor), and
39 * data movement (mov, ld, st, dupi), many vector opcodes are
40 * optional and may not be supported on the host. Thank Intel
41 * for the irregularity in their instruction set.
43 * The gvec expanders allow custom vector operations to be composed,
44 * generally via the .fniv callback in the GVecGen* structures. At
45 * the same time, in deciding whether to use this hook we need to
46 * know if the host supports the required operations. This is
47 * presented as an array of opcodes, terminated by 0. Each opcode
48 * is assumed to be expanded with the given VECE.
50 * For debugging, we want to validate this array. Therefore, when
51 * tcg_ctx->vec_opt_opc is non-NULL, the tcg_gen_*_vec expanders
52 * will validate that their opcode is present in the list.
54 #ifdef CONFIG_DEBUG_TCG
55 void tcg_assert_listed_vecop(TCGOpcode op
)
57 const TCGOpcode
*p
= tcg_ctx
->vecop_list
;
64 g_assert_not_reached();
69 bool tcg_can_emit_vecop_list(const TCGOpcode
*list
,
70 TCGType type
, unsigned vece
)
76 for (; *list
; ++list
) {
77 TCGOpcode opc
= *list
;
79 #ifdef CONFIG_DEBUG_TCG
81 case INDEX_op_and_vec
:
83 case INDEX_op_xor_vec
:
84 case INDEX_op_mov_vec
:
85 case INDEX_op_dup_vec
:
86 case INDEX_op_dupi_vec
:
87 case INDEX_op_dup2_vec
:
90 case INDEX_op_bitsel_vec
:
91 /* These opcodes are mandatory and should not be listed. */
92 g_assert_not_reached();
98 if (tcg_can_emit_vec_op(opc
, type
, vece
)) {
103 * The opcode list is created by front ends based on what they
104 * actually invoke. We must mirror the logic in the routines
105 * below for generic expansions using other opcodes.
108 case INDEX_op_neg_vec
:
109 if (tcg_can_emit_vec_op(INDEX_op_sub_vec
, type
, vece
)) {
113 case INDEX_op_abs_vec
:
114 if (tcg_can_emit_vec_op(INDEX_op_sub_vec
, type
, vece
)
115 && (tcg_can_emit_vec_op(INDEX_op_smax_vec
, type
, vece
) > 0
116 || tcg_can_emit_vec_op(INDEX_op_sari_vec
, type
, vece
) > 0
117 || tcg_can_emit_vec_op(INDEX_op_cmp_vec
, type
, vece
))) {
121 case INDEX_op_cmpsel_vec
:
122 case INDEX_op_smin_vec
:
123 case INDEX_op_smax_vec
:
124 case INDEX_op_umin_vec
:
125 case INDEX_op_umax_vec
:
126 if (tcg_can_emit_vec_op(INDEX_op_cmp_vec
, type
, vece
)) {
138 void vec_gen_2(TCGOpcode opc
, TCGType type
, unsigned vece
, TCGArg r
, TCGArg a
)
140 TCGOp
*op
= tcg_emit_op(opc
);
141 TCGOP_VECL(op
) = type
- TCG_TYPE_V64
;
142 TCGOP_VECE(op
) = vece
;
147 void vec_gen_3(TCGOpcode opc
, TCGType type
, unsigned vece
,
148 TCGArg r
, TCGArg a
, TCGArg b
)
150 TCGOp
*op
= tcg_emit_op(opc
);
151 TCGOP_VECL(op
) = type
- TCG_TYPE_V64
;
152 TCGOP_VECE(op
) = vece
;
158 void vec_gen_4(TCGOpcode opc
, TCGType type
, unsigned vece
,
159 TCGArg r
, TCGArg a
, TCGArg b
, TCGArg c
)
161 TCGOp
*op
= tcg_emit_op(opc
);
162 TCGOP_VECL(op
) = type
- TCG_TYPE_V64
;
163 TCGOP_VECE(op
) = vece
;
170 static void vec_gen_6(TCGOpcode opc
, TCGType type
, unsigned vece
, TCGArg r
,
171 TCGArg a
, TCGArg b
, TCGArg c
, TCGArg d
, TCGArg e
)
173 TCGOp
*op
= tcg_emit_op(opc
);
174 TCGOP_VECL(op
) = type
- TCG_TYPE_V64
;
175 TCGOP_VECE(op
) = vece
;
184 static void vec_gen_op2(TCGOpcode opc
, unsigned vece
, TCGv_vec r
, TCGv_vec a
)
186 TCGTemp
*rt
= tcgv_vec_temp(r
);
187 TCGTemp
*at
= tcgv_vec_temp(a
);
188 TCGType type
= rt
->base_type
;
190 /* Must enough inputs for the output. */
191 tcg_debug_assert(at
->base_type
>= type
);
192 vec_gen_2(opc
, type
, vece
, temp_arg(rt
), temp_arg(at
));
195 static void vec_gen_op3(TCGOpcode opc
, unsigned vece
,
196 TCGv_vec r
, TCGv_vec a
, TCGv_vec b
)
198 TCGTemp
*rt
= tcgv_vec_temp(r
);
199 TCGTemp
*at
= tcgv_vec_temp(a
);
200 TCGTemp
*bt
= tcgv_vec_temp(b
);
201 TCGType type
= rt
->base_type
;
203 /* Must enough inputs for the output. */
204 tcg_debug_assert(at
->base_type
>= type
);
205 tcg_debug_assert(bt
->base_type
>= type
);
206 vec_gen_3(opc
, type
, vece
, temp_arg(rt
), temp_arg(at
), temp_arg(bt
));
209 void tcg_gen_mov_vec(TCGv_vec r
, TCGv_vec a
)
212 vec_gen_op2(INDEX_op_mov_vec
, 0, r
, a
);
216 #define MO_REG (TCG_TARGET_REG_BITS == 64 ? MO_64 : MO_32)
218 static void do_dupi_vec(TCGv_vec r
, unsigned vece
, TCGArg a
)
220 TCGTemp
*rt
= tcgv_vec_temp(r
);
221 vec_gen_2(INDEX_op_dupi_vec
, rt
->base_type
, vece
, temp_arg(rt
), a
);
224 TCGv_vec
tcg_const_zeros_vec(TCGType type
)
226 TCGv_vec ret
= tcg_temp_new_vec(type
);
227 do_dupi_vec(ret
, MO_REG
, 0);
231 TCGv_vec
tcg_const_ones_vec(TCGType type
)
233 TCGv_vec ret
= tcg_temp_new_vec(type
);
234 do_dupi_vec(ret
, MO_REG
, -1);
238 TCGv_vec
tcg_const_zeros_vec_matching(TCGv_vec m
)
240 TCGTemp
*t
= tcgv_vec_temp(m
);
241 return tcg_const_zeros_vec(t
->base_type
);
244 TCGv_vec
tcg_const_ones_vec_matching(TCGv_vec m
)
246 TCGTemp
*t
= tcgv_vec_temp(m
);
247 return tcg_const_ones_vec(t
->base_type
);
250 void tcg_gen_dup64i_vec(TCGv_vec r
, uint64_t a
)
252 if (TCG_TARGET_REG_BITS
== 32 && a
== deposit64(a
, 32, 32, a
)) {
253 do_dupi_vec(r
, MO_32
, a
);
254 } else if (TCG_TARGET_REG_BITS
== 64 || a
== (uint64_t)(int32_t)a
) {
255 do_dupi_vec(r
, MO_64
, a
);
257 TCGv_i64 c
= tcg_const_i64(a
);
258 tcg_gen_dup_i64_vec(MO_64
, r
, c
);
259 tcg_temp_free_i64(c
);
263 void tcg_gen_dup32i_vec(TCGv_vec r
, uint32_t a
)
265 do_dupi_vec(r
, MO_REG
, dup_const(MO_32
, a
));
268 void tcg_gen_dup16i_vec(TCGv_vec r
, uint32_t a
)
270 do_dupi_vec(r
, MO_REG
, dup_const(MO_16
, a
));
273 void tcg_gen_dup8i_vec(TCGv_vec r
, uint32_t a
)
275 do_dupi_vec(r
, MO_REG
, dup_const(MO_8
, a
));
278 void tcg_gen_dupi_vec(unsigned vece
, TCGv_vec r
, uint64_t a
)
280 do_dupi_vec(r
, MO_REG
, dup_const(vece
, a
));
283 void tcg_gen_dup_i64_vec(unsigned vece
, TCGv_vec r
, TCGv_i64 a
)
285 TCGArg ri
= tcgv_vec_arg(r
);
286 TCGTemp
*rt
= arg_temp(ri
);
287 TCGType type
= rt
->base_type
;
289 if (TCG_TARGET_REG_BITS
== 64) {
290 TCGArg ai
= tcgv_i64_arg(a
);
291 vec_gen_2(INDEX_op_dup_vec
, type
, vece
, ri
, ai
);
292 } else if (vece
== MO_64
) {
293 TCGArg al
= tcgv_i32_arg(TCGV_LOW(a
));
294 TCGArg ah
= tcgv_i32_arg(TCGV_HIGH(a
));
295 vec_gen_3(INDEX_op_dup2_vec
, type
, MO_64
, ri
, al
, ah
);
297 TCGArg ai
= tcgv_i32_arg(TCGV_LOW(a
));
298 vec_gen_2(INDEX_op_dup_vec
, type
, vece
, ri
, ai
);
302 void tcg_gen_dup_i32_vec(unsigned vece
, TCGv_vec r
, TCGv_i32 a
)
304 TCGArg ri
= tcgv_vec_arg(r
);
305 TCGArg ai
= tcgv_i32_arg(a
);
306 TCGTemp
*rt
= arg_temp(ri
);
307 TCGType type
= rt
->base_type
;
309 vec_gen_2(INDEX_op_dup_vec
, type
, vece
, ri
, ai
);
312 void tcg_gen_dup_mem_vec(unsigned vece
, TCGv_vec r
, TCGv_ptr b
,
315 TCGArg ri
= tcgv_vec_arg(r
);
316 TCGArg bi
= tcgv_ptr_arg(b
);
317 TCGTemp
*rt
= arg_temp(ri
);
318 TCGType type
= rt
->base_type
;
320 vec_gen_3(INDEX_op_dupm_vec
, type
, vece
, ri
, bi
, ofs
);
323 static void vec_gen_ldst(TCGOpcode opc
, TCGv_vec r
, TCGv_ptr b
, TCGArg o
)
325 TCGArg ri
= tcgv_vec_arg(r
);
326 TCGArg bi
= tcgv_ptr_arg(b
);
327 TCGTemp
*rt
= arg_temp(ri
);
328 TCGType type
= rt
->base_type
;
330 vec_gen_3(opc
, type
, 0, ri
, bi
, o
);
333 void tcg_gen_ld_vec(TCGv_vec r
, TCGv_ptr b
, TCGArg o
)
335 vec_gen_ldst(INDEX_op_ld_vec
, r
, b
, o
);
338 void tcg_gen_st_vec(TCGv_vec r
, TCGv_ptr b
, TCGArg o
)
340 vec_gen_ldst(INDEX_op_st_vec
, r
, b
, o
);
343 void tcg_gen_stl_vec(TCGv_vec r
, TCGv_ptr b
, TCGArg o
, TCGType low_type
)
345 TCGArg ri
= tcgv_vec_arg(r
);
346 TCGArg bi
= tcgv_ptr_arg(b
);
347 TCGTemp
*rt
= arg_temp(ri
);
348 TCGType type
= rt
->base_type
;
350 tcg_debug_assert(low_type
>= TCG_TYPE_V64
);
351 tcg_debug_assert(low_type
<= type
);
352 vec_gen_3(INDEX_op_st_vec
, low_type
, 0, ri
, bi
, o
);
355 void tcg_gen_and_vec(unsigned vece
, TCGv_vec r
, TCGv_vec a
, TCGv_vec b
)
357 vec_gen_op3(INDEX_op_and_vec
, 0, r
, a
, b
);
360 void tcg_gen_or_vec(unsigned vece
, TCGv_vec r
, TCGv_vec a
, TCGv_vec b
)
362 vec_gen_op3(INDEX_op_or_vec
, 0, r
, a
, b
);
365 void tcg_gen_xor_vec(unsigned vece
, TCGv_vec r
, TCGv_vec a
, TCGv_vec b
)
367 vec_gen_op3(INDEX_op_xor_vec
, 0, r
, a
, b
);
370 void tcg_gen_andc_vec(unsigned vece
, TCGv_vec r
, TCGv_vec a
, TCGv_vec b
)
372 if (TCG_TARGET_HAS_andc_vec
) {
373 vec_gen_op3(INDEX_op_andc_vec
, 0, r
, a
, b
);
375 TCGv_vec t
= tcg_temp_new_vec_matching(r
);
376 tcg_gen_not_vec(0, t
, b
);
377 tcg_gen_and_vec(0, r
, a
, t
);
378 tcg_temp_free_vec(t
);
382 void tcg_gen_orc_vec(unsigned vece
, TCGv_vec r
, TCGv_vec a
, TCGv_vec b
)
384 if (TCG_TARGET_HAS_orc_vec
) {
385 vec_gen_op3(INDEX_op_orc_vec
, 0, r
, a
, b
);
387 TCGv_vec t
= tcg_temp_new_vec_matching(r
);
388 tcg_gen_not_vec(0, t
, b
);
389 tcg_gen_or_vec(0, r
, a
, t
);
390 tcg_temp_free_vec(t
);
394 void tcg_gen_nand_vec(unsigned vece
, TCGv_vec r
, TCGv_vec a
, TCGv_vec b
)
396 /* TODO: Add TCG_TARGET_HAS_nand_vec when adding a backend supports it. */
397 tcg_gen_and_vec(0, r
, a
, b
);
398 tcg_gen_not_vec(0, r
, r
);
401 void tcg_gen_nor_vec(unsigned vece
, TCGv_vec r
, TCGv_vec a
, TCGv_vec b
)
403 /* TODO: Add TCG_TARGET_HAS_nor_vec when adding a backend supports it. */
404 tcg_gen_or_vec(0, r
, a
, b
);
405 tcg_gen_not_vec(0, r
, r
);
408 void tcg_gen_eqv_vec(unsigned vece
, TCGv_vec r
, TCGv_vec a
, TCGv_vec b
)
410 /* TODO: Add TCG_TARGET_HAS_eqv_vec when adding a backend supports it. */
411 tcg_gen_xor_vec(0, r
, a
, b
);
412 tcg_gen_not_vec(0, r
, r
);
415 static bool do_op2(unsigned vece
, TCGv_vec r
, TCGv_vec a
, TCGOpcode opc
)
417 TCGTemp
*rt
= tcgv_vec_temp(r
);
418 TCGTemp
*at
= tcgv_vec_temp(a
);
419 TCGArg ri
= temp_arg(rt
);
420 TCGArg ai
= temp_arg(at
);
421 TCGType type
= rt
->base_type
;
424 tcg_debug_assert(at
->base_type
>= type
);
425 tcg_assert_listed_vecop(opc
);
426 can
= tcg_can_emit_vec_op(opc
, type
, vece
);
428 vec_gen_2(opc
, type
, vece
, ri
, ai
);
429 } else if (can
< 0) {
430 const TCGOpcode
*hold_list
= tcg_swap_vecop_list(NULL
);
431 tcg_expand_vec_op(opc
, type
, vece
, ri
, ai
);
432 tcg_swap_vecop_list(hold_list
);
439 void tcg_gen_not_vec(unsigned vece
, TCGv_vec r
, TCGv_vec a
)
441 if (!TCG_TARGET_HAS_not_vec
|| !do_op2(vece
, r
, a
, INDEX_op_not_vec
)) {
442 TCGv_vec t
= tcg_const_ones_vec_matching(r
);
443 tcg_gen_xor_vec(0, r
, a
, t
);
444 tcg_temp_free_vec(t
);
448 void tcg_gen_neg_vec(unsigned vece
, TCGv_vec r
, TCGv_vec a
)
450 const TCGOpcode
*hold_list
;
452 tcg_assert_listed_vecop(INDEX_op_neg_vec
);
453 hold_list
= tcg_swap_vecop_list(NULL
);
455 if (!TCG_TARGET_HAS_neg_vec
|| !do_op2(vece
, r
, a
, INDEX_op_neg_vec
)) {
456 TCGv_vec t
= tcg_const_zeros_vec_matching(r
);
457 tcg_gen_sub_vec(vece
, r
, t
, a
);
458 tcg_temp_free_vec(t
);
460 tcg_swap_vecop_list(hold_list
);
463 void tcg_gen_abs_vec(unsigned vece
, TCGv_vec r
, TCGv_vec a
)
465 const TCGOpcode
*hold_list
;
467 tcg_assert_listed_vecop(INDEX_op_abs_vec
);
468 hold_list
= tcg_swap_vecop_list(NULL
);
470 if (!do_op2(vece
, r
, a
, INDEX_op_abs_vec
)) {
471 TCGType type
= tcgv_vec_temp(r
)->base_type
;
472 TCGv_vec t
= tcg_temp_new_vec(type
);
474 tcg_debug_assert(tcg_can_emit_vec_op(INDEX_op_sub_vec
, type
, vece
));
475 if (tcg_can_emit_vec_op(INDEX_op_smax_vec
, type
, vece
) > 0) {
476 tcg_gen_neg_vec(vece
, t
, a
);
477 tcg_gen_smax_vec(vece
, r
, a
, t
);
479 if (tcg_can_emit_vec_op(INDEX_op_sari_vec
, type
, vece
) > 0) {
480 tcg_gen_sari_vec(vece
, t
, a
, (8 << vece
) - 1);
482 do_dupi_vec(t
, MO_REG
, 0);
483 tcg_gen_cmp_vec(TCG_COND_LT
, vece
, t
, a
, t
);
485 tcg_gen_xor_vec(vece
, r
, a
, t
);
486 tcg_gen_sub_vec(vece
, r
, r
, t
);
489 tcg_temp_free_vec(t
);
491 tcg_swap_vecop_list(hold_list
);
494 static void do_shifti(TCGOpcode opc
, unsigned vece
,
495 TCGv_vec r
, TCGv_vec a
, int64_t i
)
497 TCGTemp
*rt
= tcgv_vec_temp(r
);
498 TCGTemp
*at
= tcgv_vec_temp(a
);
499 TCGArg ri
= temp_arg(rt
);
500 TCGArg ai
= temp_arg(at
);
501 TCGType type
= rt
->base_type
;
504 tcg_debug_assert(at
->base_type
== type
);
505 tcg_debug_assert(i
>= 0 && i
< (8 << vece
));
506 tcg_assert_listed_vecop(opc
);
509 tcg_gen_mov_vec(r
, a
);
513 can
= tcg_can_emit_vec_op(opc
, type
, vece
);
515 vec_gen_3(opc
, type
, vece
, ri
, ai
, i
);
517 /* We leave the choice of expansion via scalar or vector shift
518 to the target. Often, but not always, dupi can feed a vector
519 shift easier than a scalar. */
520 const TCGOpcode
*hold_list
= tcg_swap_vecop_list(NULL
);
521 tcg_debug_assert(can
< 0);
522 tcg_expand_vec_op(opc
, type
, vece
, ri
, ai
, i
);
523 tcg_swap_vecop_list(hold_list
);
527 void tcg_gen_shli_vec(unsigned vece
, TCGv_vec r
, TCGv_vec a
, int64_t i
)
529 do_shifti(INDEX_op_shli_vec
, vece
, r
, a
, i
);
532 void tcg_gen_shri_vec(unsigned vece
, TCGv_vec r
, TCGv_vec a
, int64_t i
)
534 do_shifti(INDEX_op_shri_vec
, vece
, r
, a
, i
);
537 void tcg_gen_sari_vec(unsigned vece
, TCGv_vec r
, TCGv_vec a
, int64_t i
)
539 do_shifti(INDEX_op_sari_vec
, vece
, r
, a
, i
);
542 void tcg_gen_cmp_vec(TCGCond cond
, unsigned vece
,
543 TCGv_vec r
, TCGv_vec a
, TCGv_vec b
)
545 TCGTemp
*rt
= tcgv_vec_temp(r
);
546 TCGTemp
*at
= tcgv_vec_temp(a
);
547 TCGTemp
*bt
= tcgv_vec_temp(b
);
548 TCGArg ri
= temp_arg(rt
);
549 TCGArg ai
= temp_arg(at
);
550 TCGArg bi
= temp_arg(bt
);
551 TCGType type
= rt
->base_type
;
554 tcg_debug_assert(at
->base_type
>= type
);
555 tcg_debug_assert(bt
->base_type
>= type
);
556 tcg_assert_listed_vecop(INDEX_op_cmp_vec
);
557 can
= tcg_can_emit_vec_op(INDEX_op_cmp_vec
, type
, vece
);
559 vec_gen_4(INDEX_op_cmp_vec
, type
, vece
, ri
, ai
, bi
, cond
);
561 const TCGOpcode
*hold_list
= tcg_swap_vecop_list(NULL
);
562 tcg_debug_assert(can
< 0);
563 tcg_expand_vec_op(INDEX_op_cmp_vec
, type
, vece
, ri
, ai
, bi
, cond
);
564 tcg_swap_vecop_list(hold_list
);
568 static bool do_op3(unsigned vece
, TCGv_vec r
, TCGv_vec a
,
569 TCGv_vec b
, TCGOpcode opc
)
571 TCGTemp
*rt
= tcgv_vec_temp(r
);
572 TCGTemp
*at
= tcgv_vec_temp(a
);
573 TCGTemp
*bt
= tcgv_vec_temp(b
);
574 TCGArg ri
= temp_arg(rt
);
575 TCGArg ai
= temp_arg(at
);
576 TCGArg bi
= temp_arg(bt
);
577 TCGType type
= rt
->base_type
;
580 tcg_debug_assert(at
->base_type
>= type
);
581 tcg_debug_assert(bt
->base_type
>= type
);
582 tcg_assert_listed_vecop(opc
);
583 can
= tcg_can_emit_vec_op(opc
, type
, vece
);
585 vec_gen_3(opc
, type
, vece
, ri
, ai
, bi
);
586 } else if (can
< 0) {
587 const TCGOpcode
*hold_list
= tcg_swap_vecop_list(NULL
);
588 tcg_expand_vec_op(opc
, type
, vece
, ri
, ai
, bi
);
589 tcg_swap_vecop_list(hold_list
);
596 static void do_op3_nofail(unsigned vece
, TCGv_vec r
, TCGv_vec a
,
597 TCGv_vec b
, TCGOpcode opc
)
599 bool ok
= do_op3(vece
, r
, a
, b
, opc
);
600 tcg_debug_assert(ok
);
603 void tcg_gen_add_vec(unsigned vece
, TCGv_vec r
, TCGv_vec a
, TCGv_vec b
)
605 do_op3_nofail(vece
, r
, a
, b
, INDEX_op_add_vec
);
608 void tcg_gen_sub_vec(unsigned vece
, TCGv_vec r
, TCGv_vec a
, TCGv_vec b
)
610 do_op3_nofail(vece
, r
, a
, b
, INDEX_op_sub_vec
);
613 void tcg_gen_mul_vec(unsigned vece
, TCGv_vec r
, TCGv_vec a
, TCGv_vec b
)
615 do_op3_nofail(vece
, r
, a
, b
, INDEX_op_mul_vec
);
618 void tcg_gen_ssadd_vec(unsigned vece
, TCGv_vec r
, TCGv_vec a
, TCGv_vec b
)
620 do_op3_nofail(vece
, r
, a
, b
, INDEX_op_ssadd_vec
);
623 void tcg_gen_usadd_vec(unsigned vece
, TCGv_vec r
, TCGv_vec a
, TCGv_vec b
)
625 do_op3_nofail(vece
, r
, a
, b
, INDEX_op_usadd_vec
);
628 void tcg_gen_sssub_vec(unsigned vece
, TCGv_vec r
, TCGv_vec a
, TCGv_vec b
)
630 do_op3_nofail(vece
, r
, a
, b
, INDEX_op_sssub_vec
);
633 void tcg_gen_ussub_vec(unsigned vece
, TCGv_vec r
, TCGv_vec a
, TCGv_vec b
)
635 do_op3_nofail(vece
, r
, a
, b
, INDEX_op_ussub_vec
);
638 static void do_minmax(unsigned vece
, TCGv_vec r
, TCGv_vec a
,
639 TCGv_vec b
, TCGOpcode opc
, TCGCond cond
)
641 if (!do_op3(vece
, r
, a
, b
, opc
)) {
642 tcg_gen_cmpsel_vec(cond
, vece
, r
, a
, b
, a
, b
);
646 void tcg_gen_smin_vec(unsigned vece
, TCGv_vec r
, TCGv_vec a
, TCGv_vec b
)
648 do_minmax(vece
, r
, a
, b
, INDEX_op_smin_vec
, TCG_COND_LT
);
651 void tcg_gen_umin_vec(unsigned vece
, TCGv_vec r
, TCGv_vec a
, TCGv_vec b
)
653 do_minmax(vece
, r
, a
, b
, INDEX_op_umin_vec
, TCG_COND_LTU
);
656 void tcg_gen_smax_vec(unsigned vece
, TCGv_vec r
, TCGv_vec a
, TCGv_vec b
)
658 do_minmax(vece
, r
, a
, b
, INDEX_op_smax_vec
, TCG_COND_GT
);
661 void tcg_gen_umax_vec(unsigned vece
, TCGv_vec r
, TCGv_vec a
, TCGv_vec b
)
663 do_minmax(vece
, r
, a
, b
, INDEX_op_umax_vec
, TCG_COND_GTU
);
666 void tcg_gen_shlv_vec(unsigned vece
, TCGv_vec r
, TCGv_vec a
, TCGv_vec b
)
668 do_op3_nofail(vece
, r
, a
, b
, INDEX_op_shlv_vec
);
671 void tcg_gen_shrv_vec(unsigned vece
, TCGv_vec r
, TCGv_vec a
, TCGv_vec b
)
673 do_op3_nofail(vece
, r
, a
, b
, INDEX_op_shrv_vec
);
676 void tcg_gen_sarv_vec(unsigned vece
, TCGv_vec r
, TCGv_vec a
, TCGv_vec b
)
678 do_op3_nofail(vece
, r
, a
, b
, INDEX_op_sarv_vec
);
681 static void do_shifts(unsigned vece
, TCGv_vec r
, TCGv_vec a
,
682 TCGv_i32 s
, TCGOpcode opc_s
, TCGOpcode opc_v
)
684 TCGTemp
*rt
= tcgv_vec_temp(r
);
685 TCGTemp
*at
= tcgv_vec_temp(a
);
686 TCGTemp
*st
= tcgv_i32_temp(s
);
687 TCGArg ri
= temp_arg(rt
);
688 TCGArg ai
= temp_arg(at
);
689 TCGArg si
= temp_arg(st
);
690 TCGType type
= rt
->base_type
;
691 const TCGOpcode
*hold_list
;
694 tcg_debug_assert(at
->base_type
>= type
);
695 tcg_assert_listed_vecop(opc_s
);
696 hold_list
= tcg_swap_vecop_list(NULL
);
698 can
= tcg_can_emit_vec_op(opc_s
, type
, vece
);
700 vec_gen_3(opc_s
, type
, vece
, ri
, ai
, si
);
701 } else if (can
< 0) {
702 tcg_expand_vec_op(opc_s
, type
, vece
, ri
, ai
, si
);
704 TCGv_vec vec_s
= tcg_temp_new_vec(type
);
707 TCGv_i64 s64
= tcg_temp_new_i64();
708 tcg_gen_extu_i32_i64(s64
, s
);
709 tcg_gen_dup_i64_vec(MO_64
, vec_s
, s64
);
710 tcg_temp_free_i64(s64
);
712 tcg_gen_dup_i32_vec(vece
, vec_s
, s
);
714 do_op3_nofail(vece
, r
, a
, vec_s
, opc_v
);
715 tcg_temp_free_vec(vec_s
);
717 tcg_swap_vecop_list(hold_list
);
720 void tcg_gen_shls_vec(unsigned vece
, TCGv_vec r
, TCGv_vec a
, TCGv_i32 b
)
722 do_shifts(vece
, r
, a
, b
, INDEX_op_shls_vec
, INDEX_op_shlv_vec
);
725 void tcg_gen_shrs_vec(unsigned vece
, TCGv_vec r
, TCGv_vec a
, TCGv_i32 b
)
727 do_shifts(vece
, r
, a
, b
, INDEX_op_shrs_vec
, INDEX_op_shrv_vec
);
730 void tcg_gen_sars_vec(unsigned vece
, TCGv_vec r
, TCGv_vec a
, TCGv_i32 b
)
732 do_shifts(vece
, r
, a
, b
, INDEX_op_sars_vec
, INDEX_op_sarv_vec
);
735 void tcg_gen_bitsel_vec(unsigned vece
, TCGv_vec r
, TCGv_vec a
,
736 TCGv_vec b
, TCGv_vec c
)
738 TCGTemp
*rt
= tcgv_vec_temp(r
);
739 TCGTemp
*at
= tcgv_vec_temp(a
);
740 TCGTemp
*bt
= tcgv_vec_temp(b
);
741 TCGTemp
*ct
= tcgv_vec_temp(c
);
742 TCGType type
= rt
->base_type
;
744 tcg_debug_assert(at
->base_type
>= type
);
745 tcg_debug_assert(bt
->base_type
>= type
);
746 tcg_debug_assert(ct
->base_type
>= type
);
748 if (TCG_TARGET_HAS_bitsel_vec
) {
749 vec_gen_4(INDEX_op_bitsel_vec
, type
, MO_8
,
750 temp_arg(rt
), temp_arg(at
), temp_arg(bt
), temp_arg(ct
));
752 TCGv_vec t
= tcg_temp_new_vec(type
);
753 tcg_gen_and_vec(MO_8
, t
, a
, b
);
754 tcg_gen_andc_vec(MO_8
, r
, c
, a
);
755 tcg_gen_or_vec(MO_8
, r
, r
, t
);
756 tcg_temp_free_vec(t
);
760 void tcg_gen_cmpsel_vec(TCGCond cond
, unsigned vece
, TCGv_vec r
,
761 TCGv_vec a
, TCGv_vec b
, TCGv_vec c
, TCGv_vec d
)
763 TCGTemp
*rt
= tcgv_vec_temp(r
);
764 TCGTemp
*at
= tcgv_vec_temp(a
);
765 TCGTemp
*bt
= tcgv_vec_temp(b
);
766 TCGTemp
*ct
= tcgv_vec_temp(c
);
767 TCGTemp
*dt
= tcgv_vec_temp(d
);
768 TCGArg ri
= temp_arg(rt
);
769 TCGArg ai
= temp_arg(at
);
770 TCGArg bi
= temp_arg(bt
);
771 TCGArg ci
= temp_arg(ct
);
772 TCGArg di
= temp_arg(dt
);
773 TCGType type
= rt
->base_type
;
774 const TCGOpcode
*hold_list
;
777 tcg_debug_assert(at
->base_type
>= type
);
778 tcg_debug_assert(bt
->base_type
>= type
);
779 tcg_debug_assert(ct
->base_type
>= type
);
780 tcg_debug_assert(dt
->base_type
>= type
);
782 tcg_assert_listed_vecop(INDEX_op_cmpsel_vec
);
783 hold_list
= tcg_swap_vecop_list(NULL
);
784 can
= tcg_can_emit_vec_op(INDEX_op_cmpsel_vec
, type
, vece
);
787 vec_gen_6(INDEX_op_cmpsel_vec
, type
, vece
, ri
, ai
, bi
, ci
, di
, cond
);
788 } else if (can
< 0) {
789 tcg_expand_vec_op(INDEX_op_cmpsel_vec
, type
, vece
,
790 ri
, ai
, bi
, ci
, di
, cond
);
792 TCGv_vec t
= tcg_temp_new_vec(type
);
793 tcg_gen_cmp_vec(cond
, vece
, t
, a
, b
);
794 tcg_gen_bitsel_vec(vece
, r
, t
, c
, d
);
795 tcg_temp_free_vec(t
);
797 tcg_swap_vecop_list(hold_list
);