]> git.proxmox.com Git - mirror_qemu.git/blame - tcg/optimize.c
tcg/optimize: optimize "op r, a, a => movi r, 0"
[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
26#include "config.h"
27
28#include <stdlib.h>
29#include <stdio.h>
30
31#include "qemu-common.h"
32#include "tcg-op.h"
33
8f2e8c07
KB
34#define CASE_OP_32_64(x) \
35 glue(glue(case INDEX_op_, x), _i32): \
36 glue(glue(case INDEX_op_, x), _i64)
8f2e8c07 37
22613af4
KB
38typedef enum {
39 TCG_TEMP_UNDEF = 0,
40 TCG_TEMP_CONST,
41 TCG_TEMP_COPY,
22613af4
KB
42} tcg_temp_state;
43
44struct tcg_temp_info {
45 tcg_temp_state state;
46 uint16_t prev_copy;
47 uint16_t next_copy;
48 tcg_target_ulong val;
49};
50
51static struct tcg_temp_info temps[TCG_MAX_TEMPS];
52
e590d4e6
AJ
53/* Reset TEMP's state to TCG_TEMP_UNDEF. If TEMP only had one copy, remove
54 the copy flag from the left temp. */
55static void reset_temp(TCGArg temp)
22613af4 56{
e590d4e6
AJ
57 if (temps[temp].state == TCG_TEMP_COPY) {
58 if (temps[temp].prev_copy == temps[temp].next_copy) {
59 temps[temps[temp].next_copy].state = TCG_TEMP_UNDEF;
60 } else {
61 temps[temps[temp].next_copy].prev_copy = temps[temp].prev_copy;
62 temps[temps[temp].prev_copy].next_copy = temps[temp].next_copy;
22613af4 63 }
22613af4 64 }
48b56ce1 65 temps[temp].state = TCG_TEMP_UNDEF;
22613af4
KB
66}
67
fe0de7aa 68static int op_bits(TCGOpcode op)
22613af4 69{
8399ad59
RH
70 const TCGOpDef *def = &tcg_op_defs[op];
71 return def->flags & TCG_OPF_64BIT ? 64 : 32;
22613af4
KB
72}
73
fe0de7aa 74static TCGOpcode op_to_movi(TCGOpcode op)
22613af4
KB
75{
76 switch (op_bits(op)) {
77 case 32:
78 return INDEX_op_movi_i32;
22613af4
KB
79 case 64:
80 return INDEX_op_movi_i64;
22613af4
KB
81 default:
82 fprintf(stderr, "op_to_movi: unexpected return value of "
83 "function op_bits.\n");
84 tcg_abort();
85 }
86}
87
e590d4e6
AJ
88static TCGArg find_better_copy(TCGContext *s, TCGArg temp)
89{
90 TCGArg i;
91
92 /* If this is already a global, we can't do better. */
93 if (temp < s->nb_globals) {
94 return temp;
95 }
96
97 /* Search for a global first. */
98 for (i = temps[temp].next_copy ; i != temp ; i = temps[i].next_copy) {
99 if (i < s->nb_globals) {
100 return i;
101 }
102 }
103
104 /* If it is a temp, search for a temp local. */
105 if (!s->temps[temp].temp_local) {
106 for (i = temps[temp].next_copy ; i != temp ; i = temps[i].next_copy) {
107 if (s->temps[i].temp_local) {
108 return i;
109 }
110 }
111 }
112
113 /* Failure to find a better representation, return the same temp. */
114 return temp;
115}
116
117static bool temps_are_copies(TCGArg arg1, TCGArg arg2)
118{
119 TCGArg i;
120
121 if (arg1 == arg2) {
122 return true;
123 }
124
125 if (temps[arg1].state != TCG_TEMP_COPY
126 || temps[arg2].state != TCG_TEMP_COPY) {
127 return false;
128 }
129
130 for (i = temps[arg1].next_copy ; i != arg1 ; i = temps[i].next_copy) {
131 if (i == arg2) {
132 return true;
133 }
134 }
135
136 return false;
137}
138
b80bb016
AJ
139static void tcg_opt_gen_mov(TCGContext *s, TCGArg *gen_args,
140 TCGArg dst, TCGArg src)
22613af4 141{
e590d4e6
AJ
142 reset_temp(dst);
143 assert(temps[src].state != TCG_TEMP_CONST);
144
145 if (s->temps[src].type == s->temps[dst].type) {
146 if (temps[src].state != TCG_TEMP_COPY) {
147 temps[src].state = TCG_TEMP_COPY;
22613af4
KB
148 temps[src].next_copy = src;
149 temps[src].prev_copy = src;
150 }
151 temps[dst].state = TCG_TEMP_COPY;
22613af4
KB
152 temps[dst].next_copy = temps[src].next_copy;
153 temps[dst].prev_copy = src;
154 temps[temps[dst].next_copy].prev_copy = dst;
155 temps[src].next_copy = dst;
156 }
e590d4e6 157
22613af4
KB
158 gen_args[0] = dst;
159 gen_args[1] = src;
160}
161
e590d4e6 162static void tcg_opt_gen_movi(TCGArg *gen_args, TCGArg dst, TCGArg val)
22613af4 163{
e590d4e6 164 reset_temp(dst);
22613af4
KB
165 temps[dst].state = TCG_TEMP_CONST;
166 temps[dst].val = val;
167 gen_args[0] = dst;
168 gen_args[1] = val;
169}
170
fe0de7aa 171static TCGOpcode op_to_mov(TCGOpcode op)
53108fb5
KB
172{
173 switch (op_bits(op)) {
174 case 32:
175 return INDEX_op_mov_i32;
53108fb5
KB
176 case 64:
177 return INDEX_op_mov_i64;
53108fb5
KB
178 default:
179 fprintf(stderr, "op_to_mov: unexpected return value of "
180 "function op_bits.\n");
181 tcg_abort();
182 }
183}
184
fe0de7aa 185static TCGArg do_constant_folding_2(TCGOpcode op, TCGArg x, TCGArg y)
53108fb5
KB
186{
187 switch (op) {
188 CASE_OP_32_64(add):
189 return x + y;
190
191 CASE_OP_32_64(sub):
192 return x - y;
193
194 CASE_OP_32_64(mul):
195 return x * y;
196
9a81090b
KB
197 CASE_OP_32_64(and):
198 return x & y;
199
200 CASE_OP_32_64(or):
201 return x | y;
202
203 CASE_OP_32_64(xor):
204 return x ^ y;
205
55c0975c
KB
206 case INDEX_op_shl_i32:
207 return (uint32_t)x << (uint32_t)y;
208
55c0975c
KB
209 case INDEX_op_shl_i64:
210 return (uint64_t)x << (uint64_t)y;
55c0975c
KB
211
212 case INDEX_op_shr_i32:
213 return (uint32_t)x >> (uint32_t)y;
214
55c0975c
KB
215 case INDEX_op_shr_i64:
216 return (uint64_t)x >> (uint64_t)y;
55c0975c
KB
217
218 case INDEX_op_sar_i32:
219 return (int32_t)x >> (int32_t)y;
220
55c0975c
KB
221 case INDEX_op_sar_i64:
222 return (int64_t)x >> (int64_t)y;
55c0975c
KB
223
224 case INDEX_op_rotr_i32:
25c4d9cc 225 x = ((uint32_t)x << (32 - y)) | ((uint32_t)x >> y);
55c0975c
KB
226 return x;
227
55c0975c 228 case INDEX_op_rotr_i64:
25c4d9cc 229 x = ((uint64_t)x << (64 - y)) | ((uint64_t)x >> y);
55c0975c 230 return x;
55c0975c
KB
231
232 case INDEX_op_rotl_i32:
25c4d9cc 233 x = ((uint32_t)x << y) | ((uint32_t)x >> (32 - y));
55c0975c
KB
234 return x;
235
55c0975c 236 case INDEX_op_rotl_i64:
25c4d9cc 237 x = ((uint64_t)x << y) | ((uint64_t)x >> (64 - y));
55c0975c 238 return x;
25c4d9cc
RH
239
240 CASE_OP_32_64(not):
a640f031 241 return ~x;
25c4d9cc 242
cb25c80a
RH
243 CASE_OP_32_64(neg):
244 return -x;
245
246 CASE_OP_32_64(andc):
247 return x & ~y;
248
249 CASE_OP_32_64(orc):
250 return x | ~y;
251
252 CASE_OP_32_64(eqv):
253 return ~(x ^ y);
254
255 CASE_OP_32_64(nand):
256 return ~(x & y);
257
258 CASE_OP_32_64(nor):
259 return ~(x | y);
260
25c4d9cc 261 CASE_OP_32_64(ext8s):
a640f031 262 return (int8_t)x;
25c4d9cc
RH
263
264 CASE_OP_32_64(ext16s):
a640f031 265 return (int16_t)x;
25c4d9cc
RH
266
267 CASE_OP_32_64(ext8u):
a640f031 268 return (uint8_t)x;
25c4d9cc
RH
269
270 CASE_OP_32_64(ext16u):
a640f031
KB
271 return (uint16_t)x;
272
a640f031
KB
273 case INDEX_op_ext32s_i64:
274 return (int32_t)x;
275
276 case INDEX_op_ext32u_i64:
277 return (uint32_t)x;
a640f031 278
53108fb5
KB
279 default:
280 fprintf(stderr,
281 "Unrecognized operation %d in do_constant_folding.\n", op);
282 tcg_abort();
283 }
284}
285
fe0de7aa 286static TCGArg do_constant_folding(TCGOpcode op, TCGArg x, TCGArg y)
53108fb5
KB
287{
288 TCGArg res = do_constant_folding_2(op, x, y);
53108fb5
KB
289 if (op_bits(op) == 32) {
290 res &= 0xffffffff;
291 }
53108fb5
KB
292 return res;
293}
294
f8dd19e5
AJ
295static TCGArg do_constant_folding_cond(TCGOpcode op, TCGArg x,
296 TCGArg y, TCGCond c)
297{
298 switch (op_bits(op)) {
299 case 32:
300 switch (c) {
301 case TCG_COND_EQ:
302 return (uint32_t)x == (uint32_t)y;
303 case TCG_COND_NE:
304 return (uint32_t)x != (uint32_t)y;
305 case TCG_COND_LT:
306 return (int32_t)x < (int32_t)y;
307 case TCG_COND_GE:
308 return (int32_t)x >= (int32_t)y;
309 case TCG_COND_LE:
310 return (int32_t)x <= (int32_t)y;
311 case TCG_COND_GT:
312 return (int32_t)x > (int32_t)y;
313 case TCG_COND_LTU:
314 return (uint32_t)x < (uint32_t)y;
315 case TCG_COND_GEU:
316 return (uint32_t)x >= (uint32_t)y;
317 case TCG_COND_LEU:
318 return (uint32_t)x <= (uint32_t)y;
319 case TCG_COND_GTU:
320 return (uint32_t)x > (uint32_t)y;
321 }
322 break;
323 case 64:
324 switch (c) {
325 case TCG_COND_EQ:
326 return (uint64_t)x == (uint64_t)y;
327 case TCG_COND_NE:
328 return (uint64_t)x != (uint64_t)y;
329 case TCG_COND_LT:
330 return (int64_t)x < (int64_t)y;
331 case TCG_COND_GE:
332 return (int64_t)x >= (int64_t)y;
333 case TCG_COND_LE:
334 return (int64_t)x <= (int64_t)y;
335 case TCG_COND_GT:
336 return (int64_t)x > (int64_t)y;
337 case TCG_COND_LTU:
338 return (uint64_t)x < (uint64_t)y;
339 case TCG_COND_GEU:
340 return (uint64_t)x >= (uint64_t)y;
341 case TCG_COND_LEU:
342 return (uint64_t)x <= (uint64_t)y;
343 case TCG_COND_GTU:
344 return (uint64_t)x > (uint64_t)y;
345 }
346 break;
347 }
348
349 fprintf(stderr,
350 "Unrecognized bitness %d or condition %d in "
351 "do_constant_folding_cond.\n", op_bits(op), c);
352 tcg_abort();
353}
354
22613af4 355/* Propagate constants and copies, fold constant expressions. */
8f2e8c07
KB
356static TCGArg *tcg_constant_folding(TCGContext *s, uint16_t *tcg_opc_ptr,
357 TCGArg *args, TCGOpDef *tcg_op_defs)
358{
fe0de7aa
BS
359 int i, nb_ops, op_index, nb_temps, nb_globals, nb_call_args;
360 TCGOpcode op;
8f2e8c07
KB
361 const TCGOpDef *def;
362 TCGArg *gen_args;
53108fb5 363 TCGArg tmp;
5d8f5363
RH
364 TCGCond cond;
365
22613af4
KB
366 /* Array VALS has an element for each temp.
367 If this temp holds a constant then its value is kept in VALS' element.
e590d4e6
AJ
368 If this temp is a copy of other ones then the other copies are
369 available through the doubly linked circular list. */
8f2e8c07
KB
370
371 nb_temps = s->nb_temps;
372 nb_globals = s->nb_globals;
22613af4 373 memset(temps, 0, nb_temps * sizeof(struct tcg_temp_info));
8f2e8c07
KB
374
375 nb_ops = tcg_opc_ptr - gen_opc_buf;
376 gen_args = args;
377 for (op_index = 0; op_index < nb_ops; op_index++) {
378 op = gen_opc_buf[op_index];
379 def = &tcg_op_defs[op];
22613af4 380 /* Do copy propagation */
1ff8c541
AJ
381 if (op == INDEX_op_call) {
382 int nb_oargs = args[0] >> 16;
383 int nb_iargs = args[0] & 0xffff;
384 for (i = nb_oargs + 1; i < nb_oargs + nb_iargs + 1; i++) {
385 if (temps[args[i]].state == TCG_TEMP_COPY) {
386 args[i] = find_better_copy(s, args[i]);
387 }
388 }
389 } else {
22613af4
KB
390 for (i = def->nb_oargs; i < def->nb_oargs + def->nb_iargs; i++) {
391 if (temps[args[i]].state == TCG_TEMP_COPY) {
e590d4e6 392 args[i] = find_better_copy(s, args[i]);
22613af4
KB
393 }
394 }
395 }
396
53108fb5
KB
397 /* For commutative operations make constant second argument */
398 switch (op) {
399 CASE_OP_32_64(add):
400 CASE_OP_32_64(mul):
9a81090b
KB
401 CASE_OP_32_64(and):
402 CASE_OP_32_64(or):
403 CASE_OP_32_64(xor):
cb25c80a
RH
404 CASE_OP_32_64(eqv):
405 CASE_OP_32_64(nand):
406 CASE_OP_32_64(nor):
53108fb5
KB
407 if (temps[args[1]].state == TCG_TEMP_CONST) {
408 tmp = args[1];
409 args[1] = args[2];
410 args[2] = tmp;
411 }
412 break;
65a7cce1
AJ
413 CASE_OP_32_64(brcond):
414 if (temps[args[0]].state == TCG_TEMP_CONST
415 && temps[args[1]].state != TCG_TEMP_CONST) {
416 tmp = args[0];
417 args[0] = args[1];
418 args[1] = tmp;
419 args[2] = tcg_swap_cond(args[2]);
420 }
421 break;
422 CASE_OP_32_64(setcond):
423 if (temps[args[1]].state == TCG_TEMP_CONST
424 && temps[args[2]].state != TCG_TEMP_CONST) {
425 tmp = args[1];
426 args[1] = args[2];
427 args[2] = tmp;
428 args[3] = tcg_swap_cond(args[3]);
429 }
430 break;
fa01a208 431 CASE_OP_32_64(movcond):
5d8f5363 432 cond = args[5];
fa01a208
RH
433 if (temps[args[1]].state == TCG_TEMP_CONST
434 && temps[args[2]].state != TCG_TEMP_CONST) {
435 tmp = args[1];
436 args[1] = args[2];
437 args[2] = tmp;
5d8f5363
RH
438 cond = tcg_swap_cond(cond);
439 }
440 /* For movcond, we canonicalize the "false" input reg to match
441 the destination reg so that the tcg backend can implement
442 a "move if true" operation. */
443 if (args[0] == args[3]) {
444 tmp = args[3];
445 args[3] = args[4];
446 args[4] = tmp;
447 cond = tcg_invert_cond(cond);
fa01a208 448 }
5d8f5363 449 args[5] = cond;
53108fb5
KB
450 default:
451 break;
452 }
453
01ee5282
AJ
454 /* Simplify expressions for "shift/rot r, 0, a => movi r, 0" */
455 switch (op) {
456 CASE_OP_32_64(shl):
457 CASE_OP_32_64(shr):
458 CASE_OP_32_64(sar):
459 CASE_OP_32_64(rotl):
460 CASE_OP_32_64(rotr):
461 if (temps[args[1]].state == TCG_TEMP_CONST
462 && temps[args[1]].val == 0) {
463 gen_opc_buf[op_index] = op_to_movi(op);
e590d4e6 464 tcg_opt_gen_movi(gen_args, args[0], 0);
01ee5282
AJ
465 args += 3;
466 gen_args += 2;
467 continue;
468 }
469 break;
470 default:
471 break;
472 }
473
56e49438 474 /* Simplify expression for "op r, a, 0 => mov r, a" cases */
53108fb5
KB
475 switch (op) {
476 CASE_OP_32_64(add):
477 CASE_OP_32_64(sub):
55c0975c
KB
478 CASE_OP_32_64(shl):
479 CASE_OP_32_64(shr):
480 CASE_OP_32_64(sar):
25c4d9cc
RH
481 CASE_OP_32_64(rotl):
482 CASE_OP_32_64(rotr):
38ee188b
AJ
483 CASE_OP_32_64(or):
484 CASE_OP_32_64(xor):
53108fb5
KB
485 if (temps[args[1]].state == TCG_TEMP_CONST) {
486 /* Proceed with possible constant folding. */
487 break;
488 }
489 if (temps[args[2]].state == TCG_TEMP_CONST
490 && temps[args[2]].val == 0) {
e590d4e6 491 if (temps_are_copies(args[0], args[1])) {
53108fb5
KB
492 gen_opc_buf[op_index] = INDEX_op_nop;
493 } else {
494 gen_opc_buf[op_index] = op_to_mov(op);
b80bb016 495 tcg_opt_gen_mov(s, gen_args, args[0], args[1]);
53108fb5 496 gen_args += 2;
53108fb5 497 }
fedc0da2 498 args += 3;
53108fb5
KB
499 continue;
500 }
501 break;
56e49438
AJ
502 default:
503 break;
504 }
505
506 /* Simplify expression for "op r, a, 0 => movi r, 0" cases */
507 switch (op) {
61251c0c 508 CASE_OP_32_64(and):
53108fb5
KB
509 CASE_OP_32_64(mul):
510 if ((temps[args[2]].state == TCG_TEMP_CONST
511 && temps[args[2]].val == 0)) {
512 gen_opc_buf[op_index] = op_to_movi(op);
e590d4e6 513 tcg_opt_gen_movi(gen_args, args[0], 0);
53108fb5
KB
514 args += 3;
515 gen_args += 2;
516 continue;
517 }
518 break;
56e49438
AJ
519 default:
520 break;
521 }
522
523 /* Simplify expression for "op r, a, a => mov r, a" cases */
524 switch (op) {
9a81090b
KB
525 CASE_OP_32_64(or):
526 CASE_OP_32_64(and):
0aba1c73 527 if (temps_are_copies(args[1], args[2])) {
e590d4e6 528 if (temps_are_copies(args[0], args[1])) {
9a81090b
KB
529 gen_opc_buf[op_index] = INDEX_op_nop;
530 } else {
531 gen_opc_buf[op_index] = op_to_mov(op);
b80bb016 532 tcg_opt_gen_mov(s, gen_args, args[0], args[1]);
9a81090b 533 gen_args += 2;
9a81090b 534 }
fedc0da2 535 args += 3;
9a81090b
KB
536 continue;
537 }
538 break;
fe0de7aa
BS
539 default:
540 break;
53108fb5
KB
541 }
542
3c94193e
AJ
543 /* Simplify expression for "op r, a, a => movi r, 0" cases */
544 switch (op) {
545 CASE_OP_32_64(sub):
546 CASE_OP_32_64(xor):
547 if (temps_are_copies(args[1], args[2])) {
548 gen_opc_buf[op_index] = op_to_movi(op);
549 tcg_opt_gen_movi(gen_args, args[0], 0);
550 gen_args += 2;
551 args += 3;
552 continue;
553 }
554 break;
555 default:
556 break;
557 }
558
22613af4
KB
559 /* Propagate constants through copy operations and do constant
560 folding. Constants will be substituted to arguments by register
561 allocator where needed and possible. Also detect copies. */
8f2e8c07 562 switch (op) {
22613af4 563 CASE_OP_32_64(mov):
e590d4e6 564 if (temps_are_copies(args[0], args[1])) {
22613af4
KB
565 args += 2;
566 gen_opc_buf[op_index] = INDEX_op_nop;
567 break;
568 }
569 if (temps[args[1]].state != TCG_TEMP_CONST) {
b80bb016 570 tcg_opt_gen_mov(s, gen_args, args[0], args[1]);
22613af4
KB
571 gen_args += 2;
572 args += 2;
573 break;
574 }
575 /* Source argument is constant. Rewrite the operation and
576 let movi case handle it. */
577 op = op_to_movi(op);
578 gen_opc_buf[op_index] = op;
579 args[1] = temps[args[1]].val;
580 /* fallthrough */
581 CASE_OP_32_64(movi):
e590d4e6 582 tcg_opt_gen_movi(gen_args, args[0], args[1]);
22613af4
KB
583 gen_args += 2;
584 args += 2;
585 break;
a640f031 586 CASE_OP_32_64(not):
cb25c80a 587 CASE_OP_32_64(neg):
25c4d9cc
RH
588 CASE_OP_32_64(ext8s):
589 CASE_OP_32_64(ext8u):
590 CASE_OP_32_64(ext16s):
591 CASE_OP_32_64(ext16u):
a640f031
KB
592 case INDEX_op_ext32s_i64:
593 case INDEX_op_ext32u_i64:
a640f031
KB
594 if (temps[args[1]].state == TCG_TEMP_CONST) {
595 gen_opc_buf[op_index] = op_to_movi(op);
596 tmp = do_constant_folding(op, temps[args[1]].val, 0);
e590d4e6 597 tcg_opt_gen_movi(gen_args, args[0], tmp);
a640f031 598 } else {
e590d4e6 599 reset_temp(args[0]);
a640f031
KB
600 gen_args[0] = args[0];
601 gen_args[1] = args[1];
a640f031 602 }
fedc0da2
AJ
603 gen_args += 2;
604 args += 2;
605 break;
53108fb5
KB
606 CASE_OP_32_64(add):
607 CASE_OP_32_64(sub):
608 CASE_OP_32_64(mul):
9a81090b
KB
609 CASE_OP_32_64(or):
610 CASE_OP_32_64(and):
611 CASE_OP_32_64(xor):
55c0975c
KB
612 CASE_OP_32_64(shl):
613 CASE_OP_32_64(shr):
614 CASE_OP_32_64(sar):
25c4d9cc
RH
615 CASE_OP_32_64(rotl):
616 CASE_OP_32_64(rotr):
cb25c80a
RH
617 CASE_OP_32_64(andc):
618 CASE_OP_32_64(orc):
619 CASE_OP_32_64(eqv):
620 CASE_OP_32_64(nand):
621 CASE_OP_32_64(nor):
53108fb5
KB
622 if (temps[args[1]].state == TCG_TEMP_CONST
623 && temps[args[2]].state == TCG_TEMP_CONST) {
624 gen_opc_buf[op_index] = op_to_movi(op);
625 tmp = do_constant_folding(op, temps[args[1]].val,
626 temps[args[2]].val);
e590d4e6 627 tcg_opt_gen_movi(gen_args, args[0], tmp);
53108fb5 628 gen_args += 2;
53108fb5 629 } else {
e590d4e6 630 reset_temp(args[0]);
53108fb5
KB
631 gen_args[0] = args[0];
632 gen_args[1] = args[1];
633 gen_args[2] = args[2];
634 gen_args += 3;
53108fb5 635 }
fedc0da2
AJ
636 args += 3;
637 break;
f8dd19e5
AJ
638 CASE_OP_32_64(setcond):
639 if (temps[args[1]].state == TCG_TEMP_CONST
640 && temps[args[2]].state == TCG_TEMP_CONST) {
641 gen_opc_buf[op_index] = op_to_movi(op);
642 tmp = do_constant_folding_cond(op, temps[args[1]].val,
643 temps[args[2]].val, args[3]);
e590d4e6 644 tcg_opt_gen_movi(gen_args, args[0], tmp);
f8dd19e5 645 gen_args += 2;
f8dd19e5 646 } else {
e590d4e6 647 reset_temp(args[0]);
f8dd19e5
AJ
648 gen_args[0] = args[0];
649 gen_args[1] = args[1];
650 gen_args[2] = args[2];
651 gen_args[3] = args[3];
652 gen_args += 4;
f8dd19e5 653 }
fedc0da2
AJ
654 args += 4;
655 break;
fbeaa26c
AJ
656 CASE_OP_32_64(brcond):
657 if (temps[args[0]].state == TCG_TEMP_CONST
658 && temps[args[1]].state == TCG_TEMP_CONST) {
659 if (do_constant_folding_cond(op, temps[args[0]].val,
660 temps[args[1]].val, args[2])) {
661 memset(temps, 0, nb_temps * sizeof(struct tcg_temp_info));
662 gen_opc_buf[op_index] = INDEX_op_br;
663 gen_args[0] = args[3];
664 gen_args += 1;
fbeaa26c
AJ
665 } else {
666 gen_opc_buf[op_index] = INDEX_op_nop;
fbeaa26c 667 }
fbeaa26c
AJ
668 } else {
669 memset(temps, 0, nb_temps * sizeof(struct tcg_temp_info));
e590d4e6 670 reset_temp(args[0]);
fbeaa26c
AJ
671 gen_args[0] = args[0];
672 gen_args[1] = args[1];
673 gen_args[2] = args[2];
674 gen_args[3] = args[3];
675 gen_args += 4;
fbeaa26c 676 }
fedc0da2
AJ
677 args += 4;
678 break;
fa01a208
RH
679 CASE_OP_32_64(movcond):
680 if (temps[args[1]].state == TCG_TEMP_CONST
681 && temps[args[2]].state == TCG_TEMP_CONST) {
682 tmp = do_constant_folding_cond(op, temps[args[1]].val,
683 temps[args[2]].val, args[5]);
e590d4e6 684 if (temps_are_copies(args[0], args[4-tmp])) {
fa01a208
RH
685 gen_opc_buf[op_index] = INDEX_op_nop;
686 } else if (temps[args[4-tmp]].state == TCG_TEMP_CONST) {
687 gen_opc_buf[op_index] = op_to_movi(op);
e590d4e6 688 tcg_opt_gen_movi(gen_args, args[0], temps[args[4-tmp]].val);
fa01a208
RH
689 gen_args += 2;
690 } else {
691 gen_opc_buf[op_index] = op_to_mov(op);
e590d4e6 692 tcg_opt_gen_mov(s, gen_args, args[0], args[4-tmp]);
fa01a208
RH
693 gen_args += 2;
694 }
695 } else {
e590d4e6 696 reset_temp(args[0]);
fa01a208
RH
697 gen_args[0] = args[0];
698 gen_args[1] = args[1];
699 gen_args[2] = args[2];
700 gen_args[3] = args[3];
701 gen_args[4] = args[4];
702 gen_args[5] = args[5];
703 gen_args += 6;
704 }
705 args += 6;
706 break;
8f2e8c07 707 case INDEX_op_call:
22613af4
KB
708 nb_call_args = (args[0] >> 16) + (args[0] & 0xffff);
709 if (!(args[nb_call_args + 1] & (TCG_CALL_CONST | TCG_CALL_PURE))) {
710 for (i = 0; i < nb_globals; i++) {
e590d4e6 711 reset_temp(i);
22613af4
KB
712 }
713 }
714 for (i = 0; i < (args[0] >> 16); i++) {
e590d4e6 715 reset_temp(args[i + 1]);
22613af4
KB
716 }
717 i = nb_call_args + 3;
8f2e8c07
KB
718 while (i) {
719 *gen_args = *args;
720 args++;
721 gen_args++;
722 i--;
723 }
724 break;
8f2e8c07 725 default:
22613af4 726 /* Default case: we do know nothing about operation so no
a2550660
AJ
727 propagation is done. We trash everything if the operation
728 is the end of a basic block, otherwise we only trash the
729 output args. */
730 if (def->flags & TCG_OPF_BB_END) {
731 memset(temps, 0, nb_temps * sizeof(struct tcg_temp_info));
732 } else {
733 for (i = 0; i < def->nb_oargs; i++) {
e590d4e6 734 reset_temp(args[i]);
a2550660 735 }
22613af4 736 }
8f2e8c07
KB
737 for (i = 0; i < def->nb_args; i++) {
738 gen_args[i] = args[i];
739 }
740 args += def->nb_args;
741 gen_args += def->nb_args;
742 break;
743 }
744 }
745
746 return gen_args;
747}
748
749TCGArg *tcg_optimize(TCGContext *s, uint16_t *tcg_opc_ptr,
750 TCGArg *args, TCGOpDef *tcg_op_defs)
751{
752 TCGArg *res;
753 res = tcg_constant_folding(s, tcg_opc_ptr, args, tcg_op_defs);
754 return res;
755}