]> git.proxmox.com Git - mirror_qemu.git/blame - tcg/optimize.c
Merge remote-tracking branch 'remotes/thuth-gitlab/tags/pull-request-2021-06-02'...
[mirror_qemu.git] / tcg / optimize.c
CommitLineData
8f2e8c07
KB
1/*
2 * Optimizations for Tiny Code Generator for QEMU
3 *
4 * Copyright (c) 2010 Samsung Electronics.
5 * Contributed by Kirill Batuzov <batuzovk@ispras.ru>
6 *
7 * Permission is hereby granted, free of charge, to any person obtaining a copy
8 * of this software and associated documentation files (the "Software"), to deal
9 * in the Software without restriction, including without limitation the rights
10 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11 * copies of the Software, and to permit persons to whom the Software is
12 * furnished to do so, subject to the following conditions:
13 *
14 * The above copyright notice and this permission notice shall be included in
15 * all copies or substantial portions of the Software.
16 *
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
20 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
23 * THE SOFTWARE.
24 */
25
757e725b 26#include "qemu/osdep.h"
dcb32f1d 27#include "tcg/tcg-op.h"
8f2e8c07 28
8f2e8c07
KB
29#define CASE_OP_32_64(x) \
30 glue(glue(case INDEX_op_, x), _i32): \
31 glue(glue(case INDEX_op_, x), _i64)
8f2e8c07 32
170ba88f
RH
33#define CASE_OP_32_64_VEC(x) \
34 glue(glue(case INDEX_op_, x), _i32): \
35 glue(glue(case INDEX_op_, x), _i64): \
36 glue(glue(case INDEX_op_, x), _vec)
37
6fcb98ed 38typedef struct TempOptInfo {
b41059dd 39 bool is_const;
6349039d
RH
40 TCGTemp *prev_copy;
41 TCGTemp *next_copy;
54795544
RH
42 uint64_t val;
43 uint64_t mask;
6fcb98ed 44} TempOptInfo;
22613af4 45
6fcb98ed 46static inline TempOptInfo *ts_info(TCGTemp *ts)
d9c769c6 47{
6349039d 48 return ts->state_ptr;
d9c769c6
AJ
49}
50
6fcb98ed 51static inline TempOptInfo *arg_info(TCGArg arg)
d9c769c6 52{
6349039d
RH
53 return ts_info(arg_temp(arg));
54}
55
56static inline bool ts_is_const(TCGTemp *ts)
57{
58 return ts_info(ts)->is_const;
59}
60
61static inline bool arg_is_const(TCGArg arg)
62{
63 return ts_is_const(arg_temp(arg));
64}
65
66static inline bool ts_is_copy(TCGTemp *ts)
67{
68 return ts_info(ts)->next_copy != ts;
d9c769c6
AJ
69}
70
b41059dd 71/* Reset TEMP's state, possibly removing the temp for the list of copies. */
6349039d
RH
72static void reset_ts(TCGTemp *ts)
73{
6fcb98ed
RH
74 TempOptInfo *ti = ts_info(ts);
75 TempOptInfo *pi = ts_info(ti->prev_copy);
76 TempOptInfo *ni = ts_info(ti->next_copy);
6349039d
RH
77
78 ni->prev_copy = ti->prev_copy;
79 pi->next_copy = ti->next_copy;
80 ti->next_copy = ts;
81 ti->prev_copy = ts;
82 ti->is_const = false;
83 ti->mask = -1;
84}
85
86static void reset_temp(TCGArg arg)
22613af4 87{
6349039d 88 reset_ts(arg_temp(arg));
22613af4
KB
89}
90
1208d7dd 91/* Initialize and activate a temporary. */
8f17a975 92static void init_ts_info(TCGTempSet *temps_used, TCGTemp *ts)
1208d7dd 93{
6349039d 94 size_t idx = temp_idx(ts);
8f17a975 95 TempOptInfo *ti;
6349039d 96
8f17a975
RH
97 if (test_bit(idx, temps_used->l)) {
98 return;
99 }
100 set_bit(idx, temps_used->l);
101
102 ti = ts->state_ptr;
103 if (ti == NULL) {
104 ti = tcg_malloc(sizeof(TempOptInfo));
6349039d 105 ts->state_ptr = ti;
8f17a975
RH
106 }
107
108 ti->next_copy = ts;
109 ti->prev_copy = ts;
110 if (ts->kind == TEMP_CONST) {
111 ti->is_const = true;
112 ti->val = ts->val;
113 ti->mask = ts->val;
114 if (TCG_TARGET_REG_BITS > 32 && ts->type == TCG_TYPE_I32) {
115 /* High bits of a 32-bit quantity are garbage. */
116 ti->mask |= ~0xffffffffull;
c0522136 117 }
8f17a975
RH
118 } else {
119 ti->is_const = false;
120 ti->mask = -1;
1208d7dd
AJ
121 }
122}
123
8f17a975 124static void init_arg_info(TCGTempSet *temps_used, TCGArg arg)
6349039d 125{
8f17a975 126 init_ts_info(temps_used, arg_temp(arg));
6349039d
RH
127}
128
6349039d 129static TCGTemp *find_better_copy(TCGContext *s, TCGTemp *ts)
e590d4e6 130{
4c868ce6 131 TCGTemp *i, *g, *l;
e590d4e6 132
4c868ce6
RH
133 /* If this is already readonly, we can't do better. */
134 if (temp_readonly(ts)) {
6349039d 135 return ts;
e590d4e6
AJ
136 }
137
4c868ce6 138 g = l = NULL;
6349039d 139 for (i = ts_info(ts)->next_copy; i != ts; i = ts_info(i)->next_copy) {
4c868ce6 140 if (temp_readonly(i)) {
e590d4e6 141 return i;
4c868ce6
RH
142 } else if (i->kind > ts->kind) {
143 if (i->kind == TEMP_GLOBAL) {
144 g = i;
145 } else if (i->kind == TEMP_LOCAL) {
146 l = i;
e590d4e6
AJ
147 }
148 }
149 }
150
4c868ce6
RH
151 /* If we didn't find a better representation, return the same temp. */
152 return g ? g : l ? l : ts;
e590d4e6
AJ
153}
154
6349039d 155static bool ts_are_copies(TCGTemp *ts1, TCGTemp *ts2)
e590d4e6 156{
6349039d 157 TCGTemp *i;
e590d4e6 158
6349039d 159 if (ts1 == ts2) {
e590d4e6
AJ
160 return true;
161 }
162
6349039d 163 if (!ts_is_copy(ts1) || !ts_is_copy(ts2)) {
e590d4e6
AJ
164 return false;
165 }
166
6349039d
RH
167 for (i = ts_info(ts1)->next_copy; i != ts1; i = ts_info(i)->next_copy) {
168 if (i == ts2) {
e590d4e6
AJ
169 return true;
170 }
171 }
172
173 return false;
174}
175
6349039d
RH
176static bool args_are_copies(TCGArg arg1, TCGArg arg2)
177{
178 return ts_are_copies(arg_temp(arg1), arg_temp(arg2));
179}
180
acd93701 181static void tcg_opt_gen_mov(TCGContext *s, TCGOp *op, TCGArg dst, TCGArg src)
22613af4 182{
6349039d
RH
183 TCGTemp *dst_ts = arg_temp(dst);
184 TCGTemp *src_ts = arg_temp(src);
170ba88f 185 const TCGOpDef *def;
6fcb98ed
RH
186 TempOptInfo *di;
187 TempOptInfo *si;
54795544 188 uint64_t mask;
6349039d
RH
189 TCGOpcode new_op;
190
191 if (ts_are_copies(dst_ts, src_ts)) {
5365718a
AJ
192 tcg_op_remove(s, op);
193 return;
194 }
195
6349039d
RH
196 reset_ts(dst_ts);
197 di = ts_info(dst_ts);
198 si = ts_info(src_ts);
170ba88f
RH
199 def = &tcg_op_defs[op->opc];
200 if (def->flags & TCG_OPF_VECTOR) {
201 new_op = INDEX_op_mov_vec;
202 } else if (def->flags & TCG_OPF_64BIT) {
203 new_op = INDEX_op_mov_i64;
204 } else {
205 new_op = INDEX_op_mov_i32;
206 }
c45cb8bb 207 op->opc = new_op;
170ba88f 208 /* TCGOP_VECL and TCGOP_VECE remain unchanged. */
6349039d
RH
209 op->args[0] = dst;
210 op->args[1] = src;
a62f6f56 211
6349039d 212 mask = si->mask;
24666baf
RH
213 if (TCG_TARGET_REG_BITS > 32 && new_op == INDEX_op_mov_i32) {
214 /* High bits of the destination are now garbage. */
215 mask |= ~0xffffffffull;
216 }
6349039d 217 di->mask = mask;
e590d4e6 218
6349039d 219 if (src_ts->type == dst_ts->type) {
6fcb98ed 220 TempOptInfo *ni = ts_info(si->next_copy);
6349039d
RH
221
222 di->next_copy = si->next_copy;
223 di->prev_copy = src_ts;
224 ni->prev_copy = dst_ts;
225 si->next_copy = dst_ts;
226 di->is_const = si->is_const;
227 di->val = si->val;
228 }
22613af4
KB
229}
230
8fe35e04
RH
231static void tcg_opt_gen_movi(TCGContext *s, TCGTempSet *temps_used,
232 TCGOp *op, TCGArg dst, uint64_t val)
233{
234 const TCGOpDef *def = &tcg_op_defs[op->opc];
235 TCGType type;
236 TCGTemp *tv;
237
238 if (def->flags & TCG_OPF_VECTOR) {
239 type = TCGOP_VECL(op) + TCG_TYPE_V64;
240 } else if (def->flags & TCG_OPF_64BIT) {
241 type = TCG_TYPE_I64;
242 } else {
243 type = TCG_TYPE_I32;
244 }
245
246 /* Convert movi to mov with constant temp. */
247 tv = tcg_constant_internal(type, val);
248 init_ts_info(temps_used, tv);
249 tcg_opt_gen_mov(s, op, dst, temp_arg(tv));
250}
251
54795544 252static uint64_t do_constant_folding_2(TCGOpcode op, uint64_t x, uint64_t y)
53108fb5 253{
03271524
RH
254 uint64_t l64, h64;
255
53108fb5
KB
256 switch (op) {
257 CASE_OP_32_64(add):
258 return x + y;
259
260 CASE_OP_32_64(sub):
261 return x - y;
262
263 CASE_OP_32_64(mul):
264 return x * y;
265
9a81090b
KB
266 CASE_OP_32_64(and):
267 return x & y;
268
269 CASE_OP_32_64(or):
270 return x | y;
271
272 CASE_OP_32_64(xor):
273 return x ^ y;
274
55c0975c 275 case INDEX_op_shl_i32:
50c5c4d1 276 return (uint32_t)x << (y & 31);
55c0975c 277
55c0975c 278 case INDEX_op_shl_i64:
50c5c4d1 279 return (uint64_t)x << (y & 63);
55c0975c
KB
280
281 case INDEX_op_shr_i32:
50c5c4d1 282 return (uint32_t)x >> (y & 31);
55c0975c 283
55c0975c 284 case INDEX_op_shr_i64:
50c5c4d1 285 return (uint64_t)x >> (y & 63);
55c0975c
KB
286
287 case INDEX_op_sar_i32:
50c5c4d1 288 return (int32_t)x >> (y & 31);
55c0975c 289
55c0975c 290 case INDEX_op_sar_i64:
50c5c4d1 291 return (int64_t)x >> (y & 63);
55c0975c
KB
292
293 case INDEX_op_rotr_i32:
50c5c4d1 294 return ror32(x, y & 31);
55c0975c 295
55c0975c 296 case INDEX_op_rotr_i64:
50c5c4d1 297 return ror64(x, y & 63);
55c0975c
KB
298
299 case INDEX_op_rotl_i32:
50c5c4d1 300 return rol32(x, y & 31);
55c0975c 301
55c0975c 302 case INDEX_op_rotl_i64:
50c5c4d1 303 return rol64(x, y & 63);
25c4d9cc
RH
304
305 CASE_OP_32_64(not):
a640f031 306 return ~x;
25c4d9cc 307
cb25c80a
RH
308 CASE_OP_32_64(neg):
309 return -x;
310
311 CASE_OP_32_64(andc):
312 return x & ~y;
313
314 CASE_OP_32_64(orc):
315 return x | ~y;
316
317 CASE_OP_32_64(eqv):
318 return ~(x ^ y);
319
320 CASE_OP_32_64(nand):
321 return ~(x & y);
322
323 CASE_OP_32_64(nor):
324 return ~(x | y);
325
0e28d006
RH
326 case INDEX_op_clz_i32:
327 return (uint32_t)x ? clz32(x) : y;
328
329 case INDEX_op_clz_i64:
330 return x ? clz64(x) : y;
331
332 case INDEX_op_ctz_i32:
333 return (uint32_t)x ? ctz32(x) : y;
334
335 case INDEX_op_ctz_i64:
336 return x ? ctz64(x) : y;
337
a768e4e9
RH
338 case INDEX_op_ctpop_i32:
339 return ctpop32(x);
340
341 case INDEX_op_ctpop_i64:
342 return ctpop64(x);
343
25c4d9cc 344 CASE_OP_32_64(ext8s):
a640f031 345 return (int8_t)x;
25c4d9cc
RH
346
347 CASE_OP_32_64(ext16s):
a640f031 348 return (int16_t)x;
25c4d9cc
RH
349
350 CASE_OP_32_64(ext8u):
a640f031 351 return (uint8_t)x;
25c4d9cc
RH
352
353 CASE_OP_32_64(ext16u):
a640f031
KB
354 return (uint16_t)x;
355
6498594c
RH
356 CASE_OP_32_64(bswap16):
357 return bswap16(x);
358
359 CASE_OP_32_64(bswap32):
360 return bswap32(x);
361
362 case INDEX_op_bswap64_i64:
363 return bswap64(x);
364
8bcb5c8f 365 case INDEX_op_ext_i32_i64:
a640f031
KB
366 case INDEX_op_ext32s_i64:
367 return (int32_t)x;
368
8bcb5c8f 369 case INDEX_op_extu_i32_i64:
609ad705 370 case INDEX_op_extrl_i64_i32:
a640f031
KB
371 case INDEX_op_ext32u_i64:
372 return (uint32_t)x;
a640f031 373
609ad705
RH
374 case INDEX_op_extrh_i64_i32:
375 return (uint64_t)x >> 32;
376
03271524
RH
377 case INDEX_op_muluh_i32:
378 return ((uint64_t)(uint32_t)x * (uint32_t)y) >> 32;
379 case INDEX_op_mulsh_i32:
380 return ((int64_t)(int32_t)x * (int32_t)y) >> 32;
381
382 case INDEX_op_muluh_i64:
383 mulu64(&l64, &h64, x, y);
384 return h64;
385 case INDEX_op_mulsh_i64:
386 muls64(&l64, &h64, x, y);
387 return h64;
388
01547f7f
RH
389 case INDEX_op_div_i32:
390 /* Avoid crashing on divide by zero, otherwise undefined. */
391 return (int32_t)x / ((int32_t)y ? : 1);
392 case INDEX_op_divu_i32:
393 return (uint32_t)x / ((uint32_t)y ? : 1);
394 case INDEX_op_div_i64:
395 return (int64_t)x / ((int64_t)y ? : 1);
396 case INDEX_op_divu_i64:
397 return (uint64_t)x / ((uint64_t)y ? : 1);
398
399 case INDEX_op_rem_i32:
400 return (int32_t)x % ((int32_t)y ? : 1);
401 case INDEX_op_remu_i32:
402 return (uint32_t)x % ((uint32_t)y ? : 1);
403 case INDEX_op_rem_i64:
404 return (int64_t)x % ((int64_t)y ? : 1);
405 case INDEX_op_remu_i64:
406 return (uint64_t)x % ((uint64_t)y ? : 1);
407
53108fb5
KB
408 default:
409 fprintf(stderr,
410 "Unrecognized operation %d in do_constant_folding.\n", op);
411 tcg_abort();
412 }
413}
414
54795544 415static uint64_t do_constant_folding(TCGOpcode op, uint64_t x, uint64_t y)
53108fb5 416{
170ba88f 417 const TCGOpDef *def = &tcg_op_defs[op];
54795544 418 uint64_t res = do_constant_folding_2(op, x, y);
170ba88f 419 if (!(def->flags & TCG_OPF_64BIT)) {
29f3ff8d 420 res = (int32_t)res;
53108fb5 421 }
53108fb5
KB
422 return res;
423}
424
9519da7e
RH
425static bool do_constant_folding_cond_32(uint32_t x, uint32_t y, TCGCond c)
426{
427 switch (c) {
428 case TCG_COND_EQ:
429 return x == y;
430 case TCG_COND_NE:
431 return x != y;
432 case TCG_COND_LT:
433 return (int32_t)x < (int32_t)y;
434 case TCG_COND_GE:
435 return (int32_t)x >= (int32_t)y;
436 case TCG_COND_LE:
437 return (int32_t)x <= (int32_t)y;
438 case TCG_COND_GT:
439 return (int32_t)x > (int32_t)y;
440 case TCG_COND_LTU:
441 return x < y;
442 case TCG_COND_GEU:
443 return x >= y;
444 case TCG_COND_LEU:
445 return x <= y;
446 case TCG_COND_GTU:
447 return x > y;
448 default:
449 tcg_abort();
450 }
451}
452
453static bool do_constant_folding_cond_64(uint64_t x, uint64_t y, TCGCond c)
454{
455 switch (c) {
456 case TCG_COND_EQ:
457 return x == y;
458 case TCG_COND_NE:
459 return x != y;
460 case TCG_COND_LT:
461 return (int64_t)x < (int64_t)y;
462 case TCG_COND_GE:
463 return (int64_t)x >= (int64_t)y;
464 case TCG_COND_LE:
465 return (int64_t)x <= (int64_t)y;
466 case TCG_COND_GT:
467 return (int64_t)x > (int64_t)y;
468 case TCG_COND_LTU:
469 return x < y;
470 case TCG_COND_GEU:
471 return x >= y;
472 case TCG_COND_LEU:
473 return x <= y;
474 case TCG_COND_GTU:
475 return x > y;
476 default:
477 tcg_abort();
478 }
479}
480
481static bool do_constant_folding_cond_eq(TCGCond c)
482{
483 switch (c) {
484 case TCG_COND_GT:
485 case TCG_COND_LTU:
486 case TCG_COND_LT:
487 case TCG_COND_GTU:
488 case TCG_COND_NE:
489 return 0;
490 case TCG_COND_GE:
491 case TCG_COND_GEU:
492 case TCG_COND_LE:
493 case TCG_COND_LEU:
494 case TCG_COND_EQ:
495 return 1;
496 default:
497 tcg_abort();
498 }
499}
500
b336ceb6
AJ
501/* Return 2 if the condition can't be simplified, and the result
502 of the condition (0 or 1) if it can */
f8dd19e5
AJ
503static TCGArg do_constant_folding_cond(TCGOpcode op, TCGArg x,
504 TCGArg y, TCGCond c)
505{
54795544
RH
506 uint64_t xv = arg_info(x)->val;
507 uint64_t yv = arg_info(y)->val;
508
6349039d 509 if (arg_is_const(x) && arg_is_const(y)) {
170ba88f
RH
510 const TCGOpDef *def = &tcg_op_defs[op];
511 tcg_debug_assert(!(def->flags & TCG_OPF_VECTOR));
512 if (def->flags & TCG_OPF_64BIT) {
6349039d 513 return do_constant_folding_cond_64(xv, yv, c);
170ba88f
RH
514 } else {
515 return do_constant_folding_cond_32(xv, yv, c);
b336ceb6 516 }
6349039d 517 } else if (args_are_copies(x, y)) {
9519da7e 518 return do_constant_folding_cond_eq(c);
6349039d 519 } else if (arg_is_const(y) && yv == 0) {
b336ceb6 520 switch (c) {
f8dd19e5 521 case TCG_COND_LTU:
b336ceb6 522 return 0;
f8dd19e5 523 case TCG_COND_GEU:
b336ceb6
AJ
524 return 1;
525 default:
526 return 2;
f8dd19e5 527 }
f8dd19e5 528 }
550276ae 529 return 2;
f8dd19e5
AJ
530}
531
6c4382f8
RH
532/* Return 2 if the condition can't be simplified, and the result
533 of the condition (0 or 1) if it can */
534static TCGArg do_constant_folding_cond2(TCGArg *p1, TCGArg *p2, TCGCond c)
535{
536 TCGArg al = p1[0], ah = p1[1];
537 TCGArg bl = p2[0], bh = p2[1];
538
6349039d
RH
539 if (arg_is_const(bl) && arg_is_const(bh)) {
540 tcg_target_ulong blv = arg_info(bl)->val;
541 tcg_target_ulong bhv = arg_info(bh)->val;
542 uint64_t b = deposit64(blv, 32, 32, bhv);
6c4382f8 543
6349039d
RH
544 if (arg_is_const(al) && arg_is_const(ah)) {
545 tcg_target_ulong alv = arg_info(al)->val;
546 tcg_target_ulong ahv = arg_info(ah)->val;
547 uint64_t a = deposit64(alv, 32, 32, ahv);
6c4382f8
RH
548 return do_constant_folding_cond_64(a, b, c);
549 }
550 if (b == 0) {
551 switch (c) {
552 case TCG_COND_LTU:
553 return 0;
554 case TCG_COND_GEU:
555 return 1;
556 default:
557 break;
558 }
559 }
560 }
6349039d 561 if (args_are_copies(al, bl) && args_are_copies(ah, bh)) {
6c4382f8
RH
562 return do_constant_folding_cond_eq(c);
563 }
564 return 2;
565}
566
24c9ae4e
RH
567static bool swap_commutative(TCGArg dest, TCGArg *p1, TCGArg *p2)
568{
569 TCGArg a1 = *p1, a2 = *p2;
570 int sum = 0;
6349039d
RH
571 sum += arg_is_const(a1);
572 sum -= arg_is_const(a2);
24c9ae4e
RH
573
574 /* Prefer the constant in second argument, and then the form
575 op a, a, b, which is better handled on non-RISC hosts. */
576 if (sum > 0 || (sum == 0 && dest == a2)) {
577 *p1 = a2;
578 *p2 = a1;
579 return true;
580 }
581 return false;
582}
583
0bfcb865
RH
584static bool swap_commutative2(TCGArg *p1, TCGArg *p2)
585{
586 int sum = 0;
6349039d
RH
587 sum += arg_is_const(p1[0]);
588 sum += arg_is_const(p1[1]);
589 sum -= arg_is_const(p2[0]);
590 sum -= arg_is_const(p2[1]);
0bfcb865
RH
591 if (sum > 0) {
592 TCGArg t;
593 t = p1[0], p1[0] = p2[0], p2[0] = t;
594 t = p1[1], p1[1] = p2[1], p2[1] = t;
595 return true;
596 }
597 return false;
598}
599
22613af4 600/* Propagate constants and copies, fold constant expressions. */
36e60ef6 601void tcg_optimize(TCGContext *s)
8f2e8c07 602{
8f17a975 603 int nb_temps, nb_globals, i;
15fa08f8 604 TCGOp *op, *op_next, *prev_mb = NULL;
34184b07 605 TCGTempSet temps_used;
5d8f5363 606
22613af4
KB
607 /* Array VALS has an element for each temp.
608 If this temp holds a constant then its value is kept in VALS' element.
e590d4e6
AJ
609 If this temp is a copy of other ones then the other copies are
610 available through the doubly linked circular list. */
8f2e8c07
KB
611
612 nb_temps = s->nb_temps;
613 nb_globals = s->nb_globals;
8f17a975 614
8fe35e04 615 memset(&temps_used, 0, sizeof(temps_used));
8f17a975
RH
616 for (i = 0; i < nb_temps; ++i) {
617 s->temps[i].state_ptr = NULL;
618 }
8f2e8c07 619
15fa08f8 620 QTAILQ_FOREACH_SAFE(op, &s->ops, link, op_next) {
54795544 621 uint64_t mask, partmask, affected, tmp;
8f17a975 622 int nb_oargs, nb_iargs;
c45cb8bb
RH
623 TCGOpcode opc = op->opc;
624 const TCGOpDef *def = &tcg_op_defs[opc];
625
1208d7dd
AJ
626 /* Count the arguments, and initialize the temps that are
627 going to be used */
c45cb8bb 628 if (opc == INDEX_op_call) {
cd9090aa
RH
629 nb_oargs = TCGOP_CALLO(op);
630 nb_iargs = TCGOP_CALLI(op);
1208d7dd 631 for (i = 0; i < nb_oargs + nb_iargs; i++) {
6349039d
RH
632 TCGTemp *ts = arg_temp(op->args[i]);
633 if (ts) {
8f17a975 634 init_ts_info(&temps_used, ts);
1208d7dd
AJ
635 }
636 }
1ff8c541 637 } else {
cf066674
RH
638 nb_oargs = def->nb_oargs;
639 nb_iargs = def->nb_iargs;
1208d7dd 640 for (i = 0; i < nb_oargs + nb_iargs; i++) {
8f17a975 641 init_arg_info(&temps_used, op->args[i]);
1208d7dd 642 }
cf066674
RH
643 }
644
645 /* Do copy propagation */
646 for (i = nb_oargs; i < nb_oargs + nb_iargs; i++) {
6349039d
RH
647 TCGTemp *ts = arg_temp(op->args[i]);
648 if (ts && ts_is_copy(ts)) {
649 op->args[i] = temp_arg(find_better_copy(s, ts));
22613af4
KB
650 }
651 }
652
53108fb5 653 /* For commutative operations make constant second argument */
c45cb8bb 654 switch (opc) {
170ba88f
RH
655 CASE_OP_32_64_VEC(add):
656 CASE_OP_32_64_VEC(mul):
657 CASE_OP_32_64_VEC(and):
658 CASE_OP_32_64_VEC(or):
659 CASE_OP_32_64_VEC(xor):
cb25c80a
RH
660 CASE_OP_32_64(eqv):
661 CASE_OP_32_64(nand):
662 CASE_OP_32_64(nor):
03271524
RH
663 CASE_OP_32_64(muluh):
664 CASE_OP_32_64(mulsh):
acd93701 665 swap_commutative(op->args[0], &op->args[1], &op->args[2]);
53108fb5 666 break;
65a7cce1 667 CASE_OP_32_64(brcond):
acd93701
RH
668 if (swap_commutative(-1, &op->args[0], &op->args[1])) {
669 op->args[2] = tcg_swap_cond(op->args[2]);
65a7cce1
AJ
670 }
671 break;
672 CASE_OP_32_64(setcond):
acd93701
RH
673 if (swap_commutative(op->args[0], &op->args[1], &op->args[2])) {
674 op->args[3] = tcg_swap_cond(op->args[3]);
65a7cce1
AJ
675 }
676 break;
fa01a208 677 CASE_OP_32_64(movcond):
acd93701
RH
678 if (swap_commutative(-1, &op->args[1], &op->args[2])) {
679 op->args[5] = tcg_swap_cond(op->args[5]);
5d8f5363
RH
680 }
681 /* For movcond, we canonicalize the "false" input reg to match
682 the destination reg so that the tcg backend can implement
683 a "move if true" operation. */
acd93701
RH
684 if (swap_commutative(op->args[0], &op->args[4], &op->args[3])) {
685 op->args[5] = tcg_invert_cond(op->args[5]);
fa01a208 686 }
1e484e61 687 break;
d7156f7c 688 CASE_OP_32_64(add2):
acd93701
RH
689 swap_commutative(op->args[0], &op->args[2], &op->args[4]);
690 swap_commutative(op->args[1], &op->args[3], &op->args[5]);
1e484e61 691 break;
d7156f7c 692 CASE_OP_32_64(mulu2):
4d3203fd 693 CASE_OP_32_64(muls2):
acd93701 694 swap_commutative(op->args[0], &op->args[2], &op->args[3]);
1414968a 695 break;
0bfcb865 696 case INDEX_op_brcond2_i32:
acd93701
RH
697 if (swap_commutative2(&op->args[0], &op->args[2])) {
698 op->args[4] = tcg_swap_cond(op->args[4]);
0bfcb865
RH
699 }
700 break;
701 case INDEX_op_setcond2_i32:
acd93701
RH
702 if (swap_commutative2(&op->args[1], &op->args[3])) {
703 op->args[5] = tcg_swap_cond(op->args[5]);
0bfcb865
RH
704 }
705 break;
53108fb5
KB
706 default:
707 break;
708 }
709
2d497542
RH
710 /* Simplify expressions for "shift/rot r, 0, a => movi r, 0",
711 and "sub r, 0, a => neg r, a" case. */
c45cb8bb 712 switch (opc) {
01ee5282
AJ
713 CASE_OP_32_64(shl):
714 CASE_OP_32_64(shr):
715 CASE_OP_32_64(sar):
716 CASE_OP_32_64(rotl):
717 CASE_OP_32_64(rotr):
6349039d
RH
718 if (arg_is_const(op->args[1])
719 && arg_info(op->args[1])->val == 0) {
8fe35e04 720 tcg_opt_gen_movi(s, &temps_used, op, op->args[0], 0);
01ee5282
AJ
721 continue;
722 }
723 break;
170ba88f 724 CASE_OP_32_64_VEC(sub):
2d497542
RH
725 {
726 TCGOpcode neg_op;
727 bool have_neg;
728
6349039d 729 if (arg_is_const(op->args[2])) {
2d497542
RH
730 /* Proceed with possible constant folding. */
731 break;
732 }
c45cb8bb 733 if (opc == INDEX_op_sub_i32) {
2d497542
RH
734 neg_op = INDEX_op_neg_i32;
735 have_neg = TCG_TARGET_HAS_neg_i32;
170ba88f 736 } else if (opc == INDEX_op_sub_i64) {
2d497542
RH
737 neg_op = INDEX_op_neg_i64;
738 have_neg = TCG_TARGET_HAS_neg_i64;
ac383dde
RH
739 } else if (TCG_TARGET_HAS_neg_vec) {
740 TCGType type = TCGOP_VECL(op) + TCG_TYPE_V64;
741 unsigned vece = TCGOP_VECE(op);
170ba88f 742 neg_op = INDEX_op_neg_vec;
ac383dde
RH
743 have_neg = tcg_can_emit_vec_op(neg_op, type, vece) > 0;
744 } else {
745 break;
2d497542
RH
746 }
747 if (!have_neg) {
748 break;
749 }
6349039d
RH
750 if (arg_is_const(op->args[1])
751 && arg_info(op->args[1])->val == 0) {
c45cb8bb 752 op->opc = neg_op;
acd93701
RH
753 reset_temp(op->args[0]);
754 op->args[1] = op->args[2];
2d497542
RH
755 continue;
756 }
757 }
758 break;
170ba88f 759 CASE_OP_32_64_VEC(xor):
e201b564 760 CASE_OP_32_64(nand):
6349039d
RH
761 if (!arg_is_const(op->args[1])
762 && arg_is_const(op->args[2])
763 && arg_info(op->args[2])->val == -1) {
e201b564
RH
764 i = 1;
765 goto try_not;
766 }
767 break;
768 CASE_OP_32_64(nor):
6349039d
RH
769 if (!arg_is_const(op->args[1])
770 && arg_is_const(op->args[2])
771 && arg_info(op->args[2])->val == 0) {
e201b564
RH
772 i = 1;
773 goto try_not;
774 }
775 break;
170ba88f 776 CASE_OP_32_64_VEC(andc):
6349039d
RH
777 if (!arg_is_const(op->args[2])
778 && arg_is_const(op->args[1])
779 && arg_info(op->args[1])->val == -1) {
e201b564
RH
780 i = 2;
781 goto try_not;
782 }
783 break;
170ba88f 784 CASE_OP_32_64_VEC(orc):
e201b564 785 CASE_OP_32_64(eqv):
6349039d
RH
786 if (!arg_is_const(op->args[2])
787 && arg_is_const(op->args[1])
788 && arg_info(op->args[1])->val == 0) {
e201b564
RH
789 i = 2;
790 goto try_not;
791 }
792 break;
793 try_not:
794 {
795 TCGOpcode not_op;
796 bool have_not;
797
170ba88f
RH
798 if (def->flags & TCG_OPF_VECTOR) {
799 not_op = INDEX_op_not_vec;
800 have_not = TCG_TARGET_HAS_not_vec;
801 } else if (def->flags & TCG_OPF_64BIT) {
e201b564
RH
802 not_op = INDEX_op_not_i64;
803 have_not = TCG_TARGET_HAS_not_i64;
804 } else {
805 not_op = INDEX_op_not_i32;
806 have_not = TCG_TARGET_HAS_not_i32;
807 }
808 if (!have_not) {
809 break;
810 }
c45cb8bb 811 op->opc = not_op;
acd93701
RH
812 reset_temp(op->args[0]);
813 op->args[1] = op->args[i];
e201b564
RH
814 continue;
815 }
01ee5282
AJ
816 default:
817 break;
818 }
819
464a1441 820 /* Simplify expression for "op r, a, const => mov r, a" cases */
c45cb8bb 821 switch (opc) {
170ba88f
RH
822 CASE_OP_32_64_VEC(add):
823 CASE_OP_32_64_VEC(sub):
824 CASE_OP_32_64_VEC(or):
825 CASE_OP_32_64_VEC(xor):
826 CASE_OP_32_64_VEC(andc):
55c0975c
KB
827 CASE_OP_32_64(shl):
828 CASE_OP_32_64(shr):
829 CASE_OP_32_64(sar):
25c4d9cc
RH
830 CASE_OP_32_64(rotl):
831 CASE_OP_32_64(rotr):
6349039d
RH
832 if (!arg_is_const(op->args[1])
833 && arg_is_const(op->args[2])
834 && arg_info(op->args[2])->val == 0) {
acd93701 835 tcg_opt_gen_mov(s, op, op->args[0], op->args[1]);
97a79eb7 836 continue;
53108fb5
KB
837 }
838 break;
170ba88f
RH
839 CASE_OP_32_64_VEC(and):
840 CASE_OP_32_64_VEC(orc):
464a1441 841 CASE_OP_32_64(eqv):
6349039d
RH
842 if (!arg_is_const(op->args[1])
843 && arg_is_const(op->args[2])
844 && arg_info(op->args[2])->val == -1) {
acd93701 845 tcg_opt_gen_mov(s, op, op->args[0], op->args[1]);
97a79eb7 846 continue;
464a1441
RH
847 }
848 break;
56e49438
AJ
849 default:
850 break;
851 }
852
3031244b
AJ
853 /* Simplify using known-zero bits. Currently only ops with a single
854 output argument is supported. */
3a9d8b17 855 mask = -1;
633f6502 856 affected = -1;
c45cb8bb 857 switch (opc) {
3a9d8b17 858 CASE_OP_32_64(ext8s):
6349039d 859 if ((arg_info(op->args[1])->mask & 0x80) != 0) {
3a9d8b17
PB
860 break;
861 }
d84568b7 862 QEMU_FALLTHROUGH;
3a9d8b17
PB
863 CASE_OP_32_64(ext8u):
864 mask = 0xff;
865 goto and_const;
866 CASE_OP_32_64(ext16s):
6349039d 867 if ((arg_info(op->args[1])->mask & 0x8000) != 0) {
3a9d8b17
PB
868 break;
869 }
d84568b7 870 QEMU_FALLTHROUGH;
3a9d8b17
PB
871 CASE_OP_32_64(ext16u):
872 mask = 0xffff;
873 goto and_const;
874 case INDEX_op_ext32s_i64:
6349039d 875 if ((arg_info(op->args[1])->mask & 0x80000000) != 0) {
3a9d8b17
PB
876 break;
877 }
d84568b7 878 QEMU_FALLTHROUGH;
3a9d8b17
PB
879 case INDEX_op_ext32u_i64:
880 mask = 0xffffffffU;
881 goto and_const;
882
883 CASE_OP_32_64(and):
6349039d
RH
884 mask = arg_info(op->args[2])->mask;
885 if (arg_is_const(op->args[2])) {
3a9d8b17 886 and_const:
6349039d 887 affected = arg_info(op->args[1])->mask & ~mask;
3a9d8b17 888 }
6349039d 889 mask = arg_info(op->args[1])->mask & mask;
3a9d8b17
PB
890 break;
891
8bcb5c8f 892 case INDEX_op_ext_i32_i64:
6349039d 893 if ((arg_info(op->args[1])->mask & 0x80000000) != 0) {
8bcb5c8f
AJ
894 break;
895 }
d84568b7 896 QEMU_FALLTHROUGH;
8bcb5c8f
AJ
897 case INDEX_op_extu_i32_i64:
898 /* We do not compute affected as it is a size changing op. */
6349039d 899 mask = (uint32_t)arg_info(op->args[1])->mask;
8bcb5c8f
AJ
900 break;
901
23ec69ed
RH
902 CASE_OP_32_64(andc):
903 /* Known-zeros does not imply known-ones. Therefore unless
acd93701 904 op->args[2] is constant, we can't infer anything from it. */
6349039d
RH
905 if (arg_is_const(op->args[2])) {
906 mask = ~arg_info(op->args[2])->mask;
23ec69ed
RH
907 goto and_const;
908 }
6349039d
RH
909 /* But we certainly know nothing outside args[1] may be set. */
910 mask = arg_info(op->args[1])->mask;
23ec69ed
RH
911 break;
912
e46b225a 913 case INDEX_op_sar_i32:
6349039d
RH
914 if (arg_is_const(op->args[2])) {
915 tmp = arg_info(op->args[2])->val & 31;
916 mask = (int32_t)arg_info(op->args[1])->mask >> tmp;
e46b225a
AJ
917 }
918 break;
919 case INDEX_op_sar_i64:
6349039d
RH
920 if (arg_is_const(op->args[2])) {
921 tmp = arg_info(op->args[2])->val & 63;
922 mask = (int64_t)arg_info(op->args[1])->mask >> tmp;
3a9d8b17
PB
923 }
924 break;
925
e46b225a 926 case INDEX_op_shr_i32:
6349039d
RH
927 if (arg_is_const(op->args[2])) {
928 tmp = arg_info(op->args[2])->val & 31;
929 mask = (uint32_t)arg_info(op->args[1])->mask >> tmp;
e46b225a
AJ
930 }
931 break;
932 case INDEX_op_shr_i64:
6349039d
RH
933 if (arg_is_const(op->args[2])) {
934 tmp = arg_info(op->args[2])->val & 63;
935 mask = (uint64_t)arg_info(op->args[1])->mask >> tmp;
3a9d8b17
PB
936 }
937 break;
938
609ad705 939 case INDEX_op_extrl_i64_i32:
6349039d 940 mask = (uint32_t)arg_info(op->args[1])->mask;
609ad705
RH
941 break;
942 case INDEX_op_extrh_i64_i32:
6349039d 943 mask = (uint64_t)arg_info(op->args[1])->mask >> 32;
4bb7a41e
RH
944 break;
945
3a9d8b17 946 CASE_OP_32_64(shl):
6349039d
RH
947 if (arg_is_const(op->args[2])) {
948 tmp = arg_info(op->args[2])->val & (TCG_TARGET_REG_BITS - 1);
949 mask = arg_info(op->args[1])->mask << tmp;
3a9d8b17
PB
950 }
951 break;
952
953 CASE_OP_32_64(neg):
954 /* Set to 1 all bits to the left of the rightmost. */
6349039d
RH
955 mask = -(arg_info(op->args[1])->mask
956 & -arg_info(op->args[1])->mask);
3a9d8b17
PB
957 break;
958
959 CASE_OP_32_64(deposit):
6349039d
RH
960 mask = deposit64(arg_info(op->args[1])->mask,
961 op->args[3], op->args[4],
962 arg_info(op->args[2])->mask);
3a9d8b17
PB
963 break;
964
7ec8bab3 965 CASE_OP_32_64(extract):
6349039d
RH
966 mask = extract64(arg_info(op->args[1])->mask,
967 op->args[2], op->args[3]);
acd93701 968 if (op->args[2] == 0) {
6349039d 969 affected = arg_info(op->args[1])->mask & ~mask;
7ec8bab3
RH
970 }
971 break;
972 CASE_OP_32_64(sextract):
6349039d 973 mask = sextract64(arg_info(op->args[1])->mask,
acd93701
RH
974 op->args[2], op->args[3]);
975 if (op->args[2] == 0 && (tcg_target_long)mask >= 0) {
6349039d 976 affected = arg_info(op->args[1])->mask & ~mask;
7ec8bab3
RH
977 }
978 break;
979
3a9d8b17
PB
980 CASE_OP_32_64(or):
981 CASE_OP_32_64(xor):
6349039d 982 mask = arg_info(op->args[1])->mask | arg_info(op->args[2])->mask;
3a9d8b17
PB
983 break;
984
0e28d006
RH
985 case INDEX_op_clz_i32:
986 case INDEX_op_ctz_i32:
6349039d 987 mask = arg_info(op->args[2])->mask | 31;
0e28d006
RH
988 break;
989
990 case INDEX_op_clz_i64:
991 case INDEX_op_ctz_i64:
6349039d 992 mask = arg_info(op->args[2])->mask | 63;
0e28d006
RH
993 break;
994
a768e4e9
RH
995 case INDEX_op_ctpop_i32:
996 mask = 32 | 31;
997 break;
998 case INDEX_op_ctpop_i64:
999 mask = 64 | 63;
1000 break;
1001
3a9d8b17 1002 CASE_OP_32_64(setcond):
a763551a 1003 case INDEX_op_setcond2_i32:
3a9d8b17
PB
1004 mask = 1;
1005 break;
1006
1007 CASE_OP_32_64(movcond):
6349039d 1008 mask = arg_info(op->args[3])->mask | arg_info(op->args[4])->mask;
3a9d8b17
PB
1009 break;
1010
c8d70272 1011 CASE_OP_32_64(ld8u):
c8d70272
AJ
1012 mask = 0xff;
1013 break;
1014 CASE_OP_32_64(ld16u):
c8d70272
AJ
1015 mask = 0xffff;
1016 break;
1017 case INDEX_op_ld32u_i64:
c8d70272
AJ
1018 mask = 0xffffffffu;
1019 break;
1020
1021 CASE_OP_32_64(qemu_ld):
1022 {
acd93701 1023 TCGMemOpIdx oi = op->args[nb_oargs + nb_iargs];
14776ab5 1024 MemOp mop = get_memop(oi);
c8d70272
AJ
1025 if (!(mop & MO_SIGN)) {
1026 mask = (2ULL << ((8 << (mop & MO_SIZE)) - 1)) - 1;
1027 }
1028 }
1029 break;
1030
3a9d8b17
PB
1031 default:
1032 break;
1033 }
1034
bc8d688f
RH
1035 /* 32-bit ops generate 32-bit results. For the result is zero test
1036 below, we can ignore high bits, but for further optimizations we
1037 need to record that the high bits contain garbage. */
24666baf 1038 partmask = mask;
bc8d688f 1039 if (!(def->flags & TCG_OPF_64BIT)) {
24666baf
RH
1040 mask |= ~(tcg_target_ulong)0xffffffffu;
1041 partmask &= 0xffffffffu;
1042 affected &= 0xffffffffu;
f096dc96
AJ
1043 }
1044
24666baf 1045 if (partmask == 0) {
eabb7b91 1046 tcg_debug_assert(nb_oargs == 1);
8fe35e04 1047 tcg_opt_gen_movi(s, &temps_used, op, op->args[0], 0);
633f6502
PB
1048 continue;
1049 }
1050 if (affected == 0) {
eabb7b91 1051 tcg_debug_assert(nb_oargs == 1);
acd93701 1052 tcg_opt_gen_mov(s, op, op->args[0], op->args[1]);
633f6502
PB
1053 continue;
1054 }
1055
56e49438 1056 /* Simplify expression for "op r, a, 0 => movi r, 0" cases */
c45cb8bb 1057 switch (opc) {
170ba88f
RH
1058 CASE_OP_32_64_VEC(and):
1059 CASE_OP_32_64_VEC(mul):
03271524
RH
1060 CASE_OP_32_64(muluh):
1061 CASE_OP_32_64(mulsh):
6349039d
RH
1062 if (arg_is_const(op->args[2])
1063 && arg_info(op->args[2])->val == 0) {
8fe35e04 1064 tcg_opt_gen_movi(s, &temps_used, op, op->args[0], 0);
53108fb5
KB
1065 continue;
1066 }
1067 break;
56e49438
AJ
1068 default:
1069 break;
1070 }
1071
1072 /* Simplify expression for "op r, a, a => mov r, a" cases */
c45cb8bb 1073 switch (opc) {
170ba88f
RH
1074 CASE_OP_32_64_VEC(or):
1075 CASE_OP_32_64_VEC(and):
6349039d 1076 if (args_are_copies(op->args[1], op->args[2])) {
acd93701 1077 tcg_opt_gen_mov(s, op, op->args[0], op->args[1]);
9a81090b
KB
1078 continue;
1079 }
1080 break;
fe0de7aa
BS
1081 default:
1082 break;
53108fb5
KB
1083 }
1084
3c94193e 1085 /* Simplify expression for "op r, a, a => movi r, 0" cases */
c45cb8bb 1086 switch (opc) {
170ba88f
RH
1087 CASE_OP_32_64_VEC(andc):
1088 CASE_OP_32_64_VEC(sub):
1089 CASE_OP_32_64_VEC(xor):
6349039d 1090 if (args_are_copies(op->args[1], op->args[2])) {
8fe35e04 1091 tcg_opt_gen_movi(s, &temps_used, op, op->args[0], 0);
3c94193e
AJ
1092 continue;
1093 }
1094 break;
1095 default:
1096 break;
1097 }
1098
22613af4
KB
1099 /* Propagate constants through copy operations and do constant
1100 folding. Constants will be substituted to arguments by register
1101 allocator where needed and possible. Also detect copies. */
c45cb8bb 1102 switch (opc) {
170ba88f 1103 CASE_OP_32_64_VEC(mov):
acd93701 1104 tcg_opt_gen_mov(s, op, op->args[0], op->args[1]);
97a79eb7 1105 break;
6e14e91b 1106
170ba88f
RH
1107 case INDEX_op_dup_vec:
1108 if (arg_is_const(op->args[1])) {
1109 tmp = arg_info(op->args[1])->val;
1110 tmp = dup_const(TCGOP_VECE(op), tmp);
8fe35e04 1111 tcg_opt_gen_movi(s, &temps_used, op, op->args[0], tmp);
1fb57da7 1112 break;
170ba88f 1113 }
1fb57da7 1114 goto do_default;
170ba88f 1115
1dc4fe70
RH
1116 case INDEX_op_dup2_vec:
1117 assert(TCG_TARGET_REG_BITS == 32);
1118 if (arg_is_const(op->args[1]) && arg_is_const(op->args[2])) {
0b4286dd
RH
1119 tcg_opt_gen_movi(s, &temps_used, op, op->args[0],
1120 deposit64(arg_info(op->args[1])->val, 32, 32,
1121 arg_info(op->args[2])->val));
1122 break;
1dc4fe70
RH
1123 } else if (args_are_copies(op->args[1], op->args[2])) {
1124 op->opc = INDEX_op_dup_vec;
1125 TCGOP_VECE(op) = MO_32;
1126 nb_iargs = 1;
1127 }
1128 goto do_default;
1129
a640f031 1130 CASE_OP_32_64(not):
cb25c80a 1131 CASE_OP_32_64(neg):
25c4d9cc
RH
1132 CASE_OP_32_64(ext8s):
1133 CASE_OP_32_64(ext8u):
1134 CASE_OP_32_64(ext16s):
1135 CASE_OP_32_64(ext16u):
a768e4e9 1136 CASE_OP_32_64(ctpop):
6498594c
RH
1137 CASE_OP_32_64(bswap16):
1138 CASE_OP_32_64(bswap32):
1139 case INDEX_op_bswap64_i64:
a640f031
KB
1140 case INDEX_op_ext32s_i64:
1141 case INDEX_op_ext32u_i64:
8bcb5c8f
AJ
1142 case INDEX_op_ext_i32_i64:
1143 case INDEX_op_extu_i32_i64:
609ad705
RH
1144 case INDEX_op_extrl_i64_i32:
1145 case INDEX_op_extrh_i64_i32:
6349039d
RH
1146 if (arg_is_const(op->args[1])) {
1147 tmp = do_constant_folding(opc, arg_info(op->args[1])->val, 0);
8fe35e04 1148 tcg_opt_gen_movi(s, &temps_used, op, op->args[0], tmp);
6e14e91b 1149 break;
a640f031 1150 }
6e14e91b
RH
1151 goto do_default;
1152
53108fb5
KB
1153 CASE_OP_32_64(add):
1154 CASE_OP_32_64(sub):
1155 CASE_OP_32_64(mul):
9a81090b
KB
1156 CASE_OP_32_64(or):
1157 CASE_OP_32_64(and):
1158 CASE_OP_32_64(xor):
55c0975c
KB
1159 CASE_OP_32_64(shl):
1160 CASE_OP_32_64(shr):
1161 CASE_OP_32_64(sar):
25c4d9cc
RH
1162 CASE_OP_32_64(rotl):
1163 CASE_OP_32_64(rotr):
cb25c80a
RH
1164 CASE_OP_32_64(andc):
1165 CASE_OP_32_64(orc):
1166 CASE_OP_32_64(eqv):
1167 CASE_OP_32_64(nand):
1168 CASE_OP_32_64(nor):
03271524
RH
1169 CASE_OP_32_64(muluh):
1170 CASE_OP_32_64(mulsh):
01547f7f
RH
1171 CASE_OP_32_64(div):
1172 CASE_OP_32_64(divu):
1173 CASE_OP_32_64(rem):
1174 CASE_OP_32_64(remu):
6349039d
RH
1175 if (arg_is_const(op->args[1]) && arg_is_const(op->args[2])) {
1176 tmp = do_constant_folding(opc, arg_info(op->args[1])->val,
1177 arg_info(op->args[2])->val);
8fe35e04 1178 tcg_opt_gen_movi(s, &temps_used, op, op->args[0], tmp);
6e14e91b 1179 break;
53108fb5 1180 }
6e14e91b
RH
1181 goto do_default;
1182
0e28d006
RH
1183 CASE_OP_32_64(clz):
1184 CASE_OP_32_64(ctz):
6349039d
RH
1185 if (arg_is_const(op->args[1])) {
1186 TCGArg v = arg_info(op->args[1])->val;
0e28d006
RH
1187 if (v != 0) {
1188 tmp = do_constant_folding(opc, v, 0);
8fe35e04 1189 tcg_opt_gen_movi(s, &temps_used, op, op->args[0], tmp);
0e28d006 1190 } else {
acd93701 1191 tcg_opt_gen_mov(s, op, op->args[0], op->args[2]);
0e28d006
RH
1192 }
1193 break;
1194 }
1195 goto do_default;
1196
7ef55fc9 1197 CASE_OP_32_64(deposit):
6349039d
RH
1198 if (arg_is_const(op->args[1]) && arg_is_const(op->args[2])) {
1199 tmp = deposit64(arg_info(op->args[1])->val,
1200 op->args[3], op->args[4],
1201 arg_info(op->args[2])->val);
8fe35e04 1202 tcg_opt_gen_movi(s, &temps_used, op, op->args[0], tmp);
6e14e91b 1203 break;
7ef55fc9 1204 }
6e14e91b
RH
1205 goto do_default;
1206
7ec8bab3 1207 CASE_OP_32_64(extract):
6349039d
RH
1208 if (arg_is_const(op->args[1])) {
1209 tmp = extract64(arg_info(op->args[1])->val,
acd93701 1210 op->args[2], op->args[3]);
8fe35e04 1211 tcg_opt_gen_movi(s, &temps_used, op, op->args[0], tmp);
7ec8bab3
RH
1212 break;
1213 }
1214 goto do_default;
1215
1216 CASE_OP_32_64(sextract):
6349039d
RH
1217 if (arg_is_const(op->args[1])) {
1218 tmp = sextract64(arg_info(op->args[1])->val,
acd93701 1219 op->args[2], op->args[3]);
8fe35e04 1220 tcg_opt_gen_movi(s, &temps_used, op, op->args[0], tmp);
7ec8bab3
RH
1221 break;
1222 }
1223 goto do_default;
1224
fce1296f
RH
1225 CASE_OP_32_64(extract2):
1226 if (arg_is_const(op->args[1]) && arg_is_const(op->args[2])) {
54795544
RH
1227 uint64_t v1 = arg_info(op->args[1])->val;
1228 uint64_t v2 = arg_info(op->args[2])->val;
1229 int shr = op->args[3];
fce1296f
RH
1230
1231 if (opc == INDEX_op_extract2_i64) {
54795544 1232 tmp = (v1 >> shr) | (v2 << (64 - shr));
fce1296f 1233 } else {
54795544
RH
1234 tmp = (int32_t)(((uint32_t)v1 >> shr) |
1235 ((uint32_t)v2 << (32 - shr)));
fce1296f 1236 }
8fe35e04 1237 tcg_opt_gen_movi(s, &temps_used, op, op->args[0], tmp);
fce1296f
RH
1238 break;
1239 }
1240 goto do_default;
1241
f8dd19e5 1242 CASE_OP_32_64(setcond):
acd93701
RH
1243 tmp = do_constant_folding_cond(opc, op->args[1],
1244 op->args[2], op->args[3]);
b336ceb6 1245 if (tmp != 2) {
8fe35e04 1246 tcg_opt_gen_movi(s, &temps_used, op, op->args[0], tmp);
6e14e91b 1247 break;
f8dd19e5 1248 }
6e14e91b
RH
1249 goto do_default;
1250
fbeaa26c 1251 CASE_OP_32_64(brcond):
acd93701
RH
1252 tmp = do_constant_folding_cond(opc, op->args[0],
1253 op->args[1], op->args[2]);
b336ceb6
AJ
1254 if (tmp != 2) {
1255 if (tmp) {
8fe35e04 1256 memset(&temps_used, 0, sizeof(temps_used));
c45cb8bb 1257 op->opc = INDEX_op_br;
acd93701 1258 op->args[0] = op->args[3];
fbeaa26c 1259 } else {
0c627cdc 1260 tcg_op_remove(s, op);
fbeaa26c 1261 }
6e14e91b 1262 break;
fbeaa26c 1263 }
6e14e91b
RH
1264 goto do_default;
1265
fa01a208 1266 CASE_OP_32_64(movcond):
acd93701
RH
1267 tmp = do_constant_folding_cond(opc, op->args[1],
1268 op->args[2], op->args[5]);
b336ceb6 1269 if (tmp != 2) {
acd93701 1270 tcg_opt_gen_mov(s, op, op->args[0], op->args[4-tmp]);
6e14e91b 1271 break;
fa01a208 1272 }
6349039d 1273 if (arg_is_const(op->args[3]) && arg_is_const(op->args[4])) {
54795544
RH
1274 uint64_t tv = arg_info(op->args[3])->val;
1275 uint64_t fv = arg_info(op->args[4])->val;
acd93701 1276 TCGCond cond = op->args[5];
54795544 1277
333b21b8
RH
1278 if (fv == 1 && tv == 0) {
1279 cond = tcg_invert_cond(cond);
1280 } else if (!(tv == 1 && fv == 0)) {
1281 goto do_default;
1282 }
acd93701 1283 op->args[3] = cond;
333b21b8
RH
1284 op->opc = opc = (opc == INDEX_op_movcond_i32
1285 ? INDEX_op_setcond_i32
1286 : INDEX_op_setcond_i64);
1287 nb_iargs = 2;
1288 }
6e14e91b 1289 goto do_default;
212c328d
RH
1290
1291 case INDEX_op_add2_i32:
1292 case INDEX_op_sub2_i32:
6349039d
RH
1293 if (arg_is_const(op->args[2]) && arg_is_const(op->args[3])
1294 && arg_is_const(op->args[4]) && arg_is_const(op->args[5])) {
1295 uint32_t al = arg_info(op->args[2])->val;
1296 uint32_t ah = arg_info(op->args[3])->val;
1297 uint32_t bl = arg_info(op->args[4])->val;
1298 uint32_t bh = arg_info(op->args[5])->val;
212c328d
RH
1299 uint64_t a = ((uint64_t)ah << 32) | al;
1300 uint64_t b = ((uint64_t)bh << 32) | bl;
1301 TCGArg rl, rh;
8fe35e04 1302 TCGOp *op2 = tcg_op_insert_before(s, op, INDEX_op_mov_i32);
212c328d 1303
c45cb8bb 1304 if (opc == INDEX_op_add2_i32) {
212c328d
RH
1305 a += b;
1306 } else {
1307 a -= b;
1308 }
1309
acd93701
RH
1310 rl = op->args[0];
1311 rh = op->args[1];
8fe35e04
RH
1312 tcg_opt_gen_movi(s, &temps_used, op, rl, (int32_t)a);
1313 tcg_opt_gen_movi(s, &temps_used, op2, rh, (int32_t)(a >> 32));
212c328d
RH
1314 break;
1315 }
1316 goto do_default;
1414968a
RH
1317
1318 case INDEX_op_mulu2_i32:
6349039d
RH
1319 if (arg_is_const(op->args[2]) && arg_is_const(op->args[3])) {
1320 uint32_t a = arg_info(op->args[2])->val;
1321 uint32_t b = arg_info(op->args[3])->val;
1414968a
RH
1322 uint64_t r = (uint64_t)a * b;
1323 TCGArg rl, rh;
8fe35e04 1324 TCGOp *op2 = tcg_op_insert_before(s, op, INDEX_op_mov_i32);
1414968a 1325
acd93701
RH
1326 rl = op->args[0];
1327 rh = op->args[1];
8fe35e04
RH
1328 tcg_opt_gen_movi(s, &temps_used, op, rl, (int32_t)r);
1329 tcg_opt_gen_movi(s, &temps_used, op2, rh, (int32_t)(r >> 32));
1414968a
RH
1330 break;
1331 }
1332 goto do_default;
6e14e91b 1333
bc1473ef 1334 case INDEX_op_brcond2_i32:
acd93701
RH
1335 tmp = do_constant_folding_cond2(&op->args[0], &op->args[2],
1336 op->args[4]);
6c4382f8
RH
1337 if (tmp != 2) {
1338 if (tmp) {
a763551a 1339 do_brcond_true:
8fe35e04 1340 memset(&temps_used, 0, sizeof(temps_used));
c45cb8bb 1341 op->opc = INDEX_op_br;
acd93701 1342 op->args[0] = op->args[5];
6c4382f8 1343 } else {
a763551a 1344 do_brcond_false:
0c627cdc 1345 tcg_op_remove(s, op);
6c4382f8 1346 }
acd93701
RH
1347 } else if ((op->args[4] == TCG_COND_LT
1348 || op->args[4] == TCG_COND_GE)
6349039d
RH
1349 && arg_is_const(op->args[2])
1350 && arg_info(op->args[2])->val == 0
1351 && arg_is_const(op->args[3])
1352 && arg_info(op->args[3])->val == 0) {
6c4382f8
RH
1353 /* Simplify LT/GE comparisons vs zero to a single compare
1354 vs the high word of the input. */
a763551a 1355 do_brcond_high:
8fe35e04 1356 memset(&temps_used, 0, sizeof(temps_used));
c45cb8bb 1357 op->opc = INDEX_op_brcond_i32;
acd93701
RH
1358 op->args[0] = op->args[1];
1359 op->args[1] = op->args[3];
1360 op->args[2] = op->args[4];
1361 op->args[3] = op->args[5];
1362 } else if (op->args[4] == TCG_COND_EQ) {
a763551a
RH
1363 /* Simplify EQ comparisons where one of the pairs
1364 can be simplified. */
1365 tmp = do_constant_folding_cond(INDEX_op_brcond_i32,
acd93701
RH
1366 op->args[0], op->args[2],
1367 TCG_COND_EQ);
a763551a
RH
1368 if (tmp == 0) {
1369 goto do_brcond_false;
1370 } else if (tmp == 1) {
1371 goto do_brcond_high;
1372 }
1373 tmp = do_constant_folding_cond(INDEX_op_brcond_i32,
acd93701
RH
1374 op->args[1], op->args[3],
1375 TCG_COND_EQ);
a763551a
RH
1376 if (tmp == 0) {
1377 goto do_brcond_false;
1378 } else if (tmp != 1) {
1379 goto do_default;
1380 }
1381 do_brcond_low:
8fe35e04 1382 memset(&temps_used, 0, sizeof(temps_used));
c45cb8bb 1383 op->opc = INDEX_op_brcond_i32;
acd93701
RH
1384 op->args[1] = op->args[2];
1385 op->args[2] = op->args[4];
1386 op->args[3] = op->args[5];
1387 } else if (op->args[4] == TCG_COND_NE) {
a763551a
RH
1388 /* Simplify NE comparisons where one of the pairs
1389 can be simplified. */
1390 tmp = do_constant_folding_cond(INDEX_op_brcond_i32,
acd93701
RH
1391 op->args[0], op->args[2],
1392 TCG_COND_NE);
a763551a
RH
1393 if (tmp == 0) {
1394 goto do_brcond_high;
1395 } else if (tmp == 1) {
1396 goto do_brcond_true;
1397 }
1398 tmp = do_constant_folding_cond(INDEX_op_brcond_i32,
acd93701
RH
1399 op->args[1], op->args[3],
1400 TCG_COND_NE);
a763551a
RH
1401 if (tmp == 0) {
1402 goto do_brcond_low;
1403 } else if (tmp == 1) {
1404 goto do_brcond_true;
1405 }
1406 goto do_default;
6c4382f8
RH
1407 } else {
1408 goto do_default;
bc1473ef 1409 }
6c4382f8 1410 break;
bc1473ef
RH
1411
1412 case INDEX_op_setcond2_i32:
acd93701
RH
1413 tmp = do_constant_folding_cond2(&op->args[1], &op->args[3],
1414 op->args[5]);
6c4382f8 1415 if (tmp != 2) {
a763551a 1416 do_setcond_const:
8fe35e04 1417 tcg_opt_gen_movi(s, &temps_used, op, op->args[0], tmp);
acd93701
RH
1418 } else if ((op->args[5] == TCG_COND_LT
1419 || op->args[5] == TCG_COND_GE)
6349039d
RH
1420 && arg_is_const(op->args[3])
1421 && arg_info(op->args[3])->val == 0
1422 && arg_is_const(op->args[4])
1423 && arg_info(op->args[4])->val == 0) {
6c4382f8
RH
1424 /* Simplify LT/GE comparisons vs zero to a single compare
1425 vs the high word of the input. */
a763551a 1426 do_setcond_high:
acd93701 1427 reset_temp(op->args[0]);
6349039d 1428 arg_info(op->args[0])->mask = 1;
c45cb8bb 1429 op->opc = INDEX_op_setcond_i32;
acd93701
RH
1430 op->args[1] = op->args[2];
1431 op->args[2] = op->args[4];
1432 op->args[3] = op->args[5];
1433 } else if (op->args[5] == TCG_COND_EQ) {
a763551a
RH
1434 /* Simplify EQ comparisons where one of the pairs
1435 can be simplified. */
1436 tmp = do_constant_folding_cond(INDEX_op_setcond_i32,
acd93701
RH
1437 op->args[1], op->args[3],
1438 TCG_COND_EQ);
a763551a
RH
1439 if (tmp == 0) {
1440 goto do_setcond_const;
1441 } else if (tmp == 1) {
1442 goto do_setcond_high;
1443 }
1444 tmp = do_constant_folding_cond(INDEX_op_setcond_i32,
acd93701
RH
1445 op->args[2], op->args[4],
1446 TCG_COND_EQ);
a763551a
RH
1447 if (tmp == 0) {
1448 goto do_setcond_high;
1449 } else if (tmp != 1) {
1450 goto do_default;
1451 }
1452 do_setcond_low:
acd93701 1453 reset_temp(op->args[0]);
6349039d 1454 arg_info(op->args[0])->mask = 1;
c45cb8bb 1455 op->opc = INDEX_op_setcond_i32;
acd93701
RH
1456 op->args[2] = op->args[3];
1457 op->args[3] = op->args[5];
1458 } else if (op->args[5] == TCG_COND_NE) {
a763551a
RH
1459 /* Simplify NE comparisons where one of the pairs
1460 can be simplified. */
1461 tmp = do_constant_folding_cond(INDEX_op_setcond_i32,
acd93701
RH
1462 op->args[1], op->args[3],
1463 TCG_COND_NE);
a763551a
RH
1464 if (tmp == 0) {
1465 goto do_setcond_high;
1466 } else if (tmp == 1) {
1467 goto do_setcond_const;
1468 }
1469 tmp = do_constant_folding_cond(INDEX_op_setcond_i32,
acd93701
RH
1470 op->args[2], op->args[4],
1471 TCG_COND_NE);
a763551a
RH
1472 if (tmp == 0) {
1473 goto do_setcond_low;
1474 } else if (tmp == 1) {
1475 goto do_setcond_const;
1476 }
1477 goto do_default;
6c4382f8
RH
1478 } else {
1479 goto do_default;
bc1473ef 1480 }
6c4382f8 1481 break;
bc1473ef 1482
8f2e8c07 1483 case INDEX_op_call:
acd93701 1484 if (!(op->args[nb_oargs + nb_iargs + 1]
cf066674 1485 & (TCG_CALL_NO_READ_GLOBALS | TCG_CALL_NO_WRITE_GLOBALS))) {
22613af4 1486 for (i = 0; i < nb_globals; i++) {
1208d7dd 1487 if (test_bit(i, temps_used.l)) {
6349039d 1488 reset_ts(&s->temps[i]);
1208d7dd 1489 }
22613af4
KB
1490 }
1491 }
c56caea3 1492 goto do_reset_output;
6e14e91b 1493
8f2e8c07 1494 default:
6e14e91b 1495 do_default:
c56caea3
RH
1496 /* Default case: we know nothing about operation (or were unable
1497 to compute the operation result) so no propagation is done.
1498 We trash everything if the operation is the end of a basic
1499 block, otherwise we only trash the output args. "mask" is
1500 the non-zero bits mask for the first output arg. */
1501 if (def->flags & TCG_OPF_BB_END) {
8fe35e04 1502 memset(&temps_used, 0, sizeof(temps_used));
c56caea3
RH
1503 } else {
1504 do_reset_output:
1505 for (i = 0; i < nb_oargs; i++) {
1506 reset_temp(op->args[i]);
1507 /* Save the corresponding known-zero bits mask for the
1508 first output argument (only one supported so far). */
1509 if (i == 0) {
1510 arg_info(op->args[i])->mask = mask;
1511 }
a2550660 1512 }
22613af4 1513 }
8f2e8c07
KB
1514 break;
1515 }
34f93921
PK
1516
1517 /* Eliminate duplicate and redundant fence instructions. */
acd93701 1518 if (prev_mb) {
34f93921
PK
1519 switch (opc) {
1520 case INDEX_op_mb:
1521 /* Merge two barriers of the same type into one,
1522 * or a weaker barrier into a stronger one,
1523 * or two weaker barriers into a stronger one.
1524 * mb X; mb Y => mb X|Y
1525 * mb; strl => mb; st
1526 * ldaq; mb => ld; mb
1527 * ldaq; strl => ld; mb; st
1528 * Other combinations are also merged into a strong
1529 * barrier. This is stricter than specified but for
1530 * the purposes of TCG is better than not optimizing.
1531 */
acd93701 1532 prev_mb->args[0] |= op->args[0];
34f93921
PK
1533 tcg_op_remove(s, op);
1534 break;
1535
1536 default:
1537 /* Opcodes that end the block stop the optimization. */
1538 if ((def->flags & TCG_OPF_BB_END) == 0) {
1539 break;
1540 }
1541 /* fallthru */
1542 case INDEX_op_qemu_ld_i32:
1543 case INDEX_op_qemu_ld_i64:
1544 case INDEX_op_qemu_st_i32:
07ce0b05 1545 case INDEX_op_qemu_st8_i32:
34f93921
PK
1546 case INDEX_op_qemu_st_i64:
1547 case INDEX_op_call:
1548 /* Opcodes that touch guest memory stop the optimization. */
acd93701 1549 prev_mb = NULL;
34f93921
PK
1550 break;
1551 }
1552 } else if (opc == INDEX_op_mb) {
acd93701 1553 prev_mb = op;
34f93921 1554 }
8f2e8c07 1555 }
8f2e8c07 1556}