]>
Commit | Line | Data |
---|---|---|
8f2e8c07 KB |
1 | /* |
2 | * Optimizations for Tiny Code Generator for QEMU | |
3 | * | |
4 | * Copyright (c) 2010 Samsung Electronics. | |
5 | * Contributed by Kirill Batuzov <[email protected]> | |
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 | 38 | struct tcg_temp_info { |
b41059dd | 39 | bool is_const; |
22613af4 KB |
40 | uint16_t prev_copy; |
41 | uint16_t next_copy; | |
42 | tcg_target_ulong val; | |
3a9d8b17 | 43 | tcg_target_ulong mask; |
22613af4 KB |
44 | }; |
45 | ||
46 | static struct tcg_temp_info temps[TCG_MAX_TEMPS]; | |
1208d7dd | 47 | static TCGTempSet temps_used; |
22613af4 | 48 | |
d9c769c6 AJ |
49 | static inline bool temp_is_const(TCGArg arg) |
50 | { | |
b41059dd | 51 | return temps[arg].is_const; |
d9c769c6 AJ |
52 | } |
53 | ||
54 | static inline bool temp_is_copy(TCGArg arg) | |
55 | { | |
b41059dd | 56 | return temps[arg].next_copy != arg; |
d9c769c6 AJ |
57 | } |
58 | ||
b41059dd | 59 | /* Reset TEMP's state, possibly removing the temp for the list of copies. */ |
e590d4e6 | 60 | static void reset_temp(TCGArg temp) |
22613af4 | 61 | { |
b41059dd AJ |
62 | temps[temps[temp].next_copy].prev_copy = temps[temp].prev_copy; |
63 | temps[temps[temp].prev_copy].next_copy = temps[temp].next_copy; | |
64 | temps[temp].next_copy = temp; | |
65 | temps[temp].prev_copy = temp; | |
66 | temps[temp].is_const = false; | |
3a9d8b17 | 67 | temps[temp].mask = -1; |
22613af4 KB |
68 | } |
69 | ||
1208d7dd AJ |
70 | /* Reset all temporaries, given that there are NB_TEMPS of them. */ |
71 | static void reset_all_temps(int nb_temps) | |
72 | { | |
73 | bitmap_zero(temps_used.l, nb_temps); | |
74 | } | |
75 | ||
76 | /* Initialize and activate a temporary. */ | |
77 | static void init_temp_info(TCGArg temp) | |
78 | { | |
79 | if (!test_bit(temp, temps_used.l)) { | |
b41059dd AJ |
80 | temps[temp].next_copy = temp; |
81 | temps[temp].prev_copy = temp; | |
82 | temps[temp].is_const = false; | |
1208d7dd AJ |
83 | temps[temp].mask = -1; |
84 | set_bit(temp, temps_used.l); | |
85 | } | |
86 | } | |
87 | ||
a4ce099a RH |
88 | static TCGOp *insert_op_before(TCGContext *s, TCGOp *old_op, |
89 | TCGOpcode opc, int nargs) | |
90 | { | |
91 | int oi = s->gen_next_op_idx; | |
92 | int pi = s->gen_next_parm_idx; | |
93 | int prev = old_op->prev; | |
94 | int next = old_op - s->gen_op_buf; | |
95 | TCGOp *new_op; | |
96 | ||
97 | tcg_debug_assert(oi < OPC_BUF_SIZE); | |
98 | tcg_debug_assert(pi + nargs <= OPPARAM_BUF_SIZE); | |
99 | s->gen_next_op_idx = oi + 1; | |
100 | s->gen_next_parm_idx = pi + nargs; | |
101 | ||
102 | new_op = &s->gen_op_buf[oi]; | |
103 | *new_op = (TCGOp){ | |
104 | .opc = opc, | |
105 | .args = pi, | |
106 | .prev = prev, | |
107 | .next = next | |
108 | }; | |
109 | if (prev >= 0) { | |
110 | s->gen_op_buf[prev].next = oi; | |
111 | } else { | |
112 | s->gen_first_op_idx = oi; | |
113 | } | |
114 | old_op->prev = oi; | |
115 | ||
116 | return new_op; | |
117 | } | |
118 | ||
fe0de7aa | 119 | static int op_bits(TCGOpcode op) |
22613af4 | 120 | { |
8399ad59 RH |
121 | const TCGOpDef *def = &tcg_op_defs[op]; |
122 | return def->flags & TCG_OPF_64BIT ? 64 : 32; | |
22613af4 KB |
123 | } |
124 | ||
a62f6f56 RH |
125 | static TCGOpcode op_to_mov(TCGOpcode op) |
126 | { | |
127 | switch (op_bits(op)) { | |
128 | case 32: | |
129 | return INDEX_op_mov_i32; | |
130 | case 64: | |
131 | return INDEX_op_mov_i64; | |
132 | default: | |
133 | fprintf(stderr, "op_to_mov: unexpected return value of " | |
134 | "function op_bits.\n"); | |
135 | tcg_abort(); | |
136 | } | |
137 | } | |
138 | ||
fe0de7aa | 139 | static TCGOpcode op_to_movi(TCGOpcode op) |
22613af4 KB |
140 | { |
141 | switch (op_bits(op)) { | |
142 | case 32: | |
143 | return INDEX_op_movi_i32; | |
22613af4 KB |
144 | case 64: |
145 | return INDEX_op_movi_i64; | |
22613af4 KB |
146 | default: |
147 | fprintf(stderr, "op_to_movi: unexpected return value of " | |
148 | "function op_bits.\n"); | |
149 | tcg_abort(); | |
150 | } | |
151 | } | |
152 | ||
e590d4e6 AJ |
153 | static TCGArg find_better_copy(TCGContext *s, TCGArg temp) |
154 | { | |
155 | TCGArg i; | |
156 | ||
157 | /* If this is already a global, we can't do better. */ | |
158 | if (temp < s->nb_globals) { | |
159 | return temp; | |
160 | } | |
161 | ||
162 | /* Search for a global first. */ | |
163 | for (i = temps[temp].next_copy ; i != temp ; i = temps[i].next_copy) { | |
164 | if (i < s->nb_globals) { | |
165 | return i; | |
166 | } | |
167 | } | |
168 | ||
169 | /* If it is a temp, search for a temp local. */ | |
170 | if (!s->temps[temp].temp_local) { | |
171 | for (i = temps[temp].next_copy ; i != temp ; i = temps[i].next_copy) { | |
172 | if (s->temps[i].temp_local) { | |
173 | return i; | |
174 | } | |
175 | } | |
176 | } | |
177 | ||
178 | /* Failure to find a better representation, return the same temp. */ | |
179 | return temp; | |
180 | } | |
181 | ||
182 | static bool temps_are_copies(TCGArg arg1, TCGArg arg2) | |
183 | { | |
184 | TCGArg i; | |
185 | ||
186 | if (arg1 == arg2) { | |
187 | return true; | |
188 | } | |
189 | ||
d9c769c6 | 190 | if (!temp_is_copy(arg1) || !temp_is_copy(arg2)) { |
e590d4e6 AJ |
191 | return false; |
192 | } | |
193 | ||
194 | for (i = temps[arg1].next_copy ; i != arg1 ; i = temps[i].next_copy) { | |
195 | if (i == arg2) { | |
196 | return true; | |
197 | } | |
198 | } | |
199 | ||
200 | return false; | |
201 | } | |
202 | ||
97a79eb7 AJ |
203 | static void tcg_opt_gen_movi(TCGContext *s, TCGOp *op, TCGArg *args, |
204 | TCGArg dst, TCGArg val) | |
205 | { | |
206 | TCGOpcode new_op = op_to_movi(op->opc); | |
207 | tcg_target_ulong mask; | |
208 | ||
209 | op->opc = new_op; | |
210 | ||
211 | reset_temp(dst); | |
b41059dd | 212 | temps[dst].is_const = true; |
97a79eb7 AJ |
213 | temps[dst].val = val; |
214 | mask = val; | |
96152126 | 215 | if (TCG_TARGET_REG_BITS > 32 && new_op == INDEX_op_movi_i32) { |
97a79eb7 AJ |
216 | /* High bits of the destination are now garbage. */ |
217 | mask |= ~0xffffffffull; | |
218 | } | |
219 | temps[dst].mask = mask; | |
220 | ||
221 | args[0] = dst; | |
222 | args[1] = val; | |
223 | } | |
224 | ||
c45cb8bb | 225 | static void tcg_opt_gen_mov(TCGContext *s, TCGOp *op, TCGArg *args, |
8d6a9160 | 226 | TCGArg dst, TCGArg src) |
22613af4 | 227 | { |
5365718a AJ |
228 | if (temps_are_copies(dst, src)) { |
229 | tcg_op_remove(s, op); | |
230 | return; | |
231 | } | |
232 | ||
8d6a9160 | 233 | TCGOpcode new_op = op_to_mov(op->opc); |
24666baf | 234 | tcg_target_ulong mask; |
a62f6f56 | 235 | |
c45cb8bb | 236 | op->opc = new_op; |
a62f6f56 | 237 | |
3a9d8b17 | 238 | reset_temp(dst); |
24666baf RH |
239 | mask = temps[src].mask; |
240 | if (TCG_TARGET_REG_BITS > 32 && new_op == INDEX_op_mov_i32) { | |
241 | /* High bits of the destination are now garbage. */ | |
242 | mask |= ~0xffffffffull; | |
243 | } | |
244 | temps[dst].mask = mask; | |
245 | ||
3a9d8b17 | 246 | if (s->temps[src].type == s->temps[dst].type) { |
3a9d8b17 PB |
247 | temps[dst].next_copy = temps[src].next_copy; |
248 | temps[dst].prev_copy = src; | |
249 | temps[temps[dst].next_copy].prev_copy = dst; | |
250 | temps[src].next_copy = dst; | |
299f8013 AJ |
251 | temps[dst].is_const = temps[src].is_const; |
252 | temps[dst].val = temps[src].val; | |
3a9d8b17 | 253 | } |
e590d4e6 | 254 | |
c45cb8bb RH |
255 | args[0] = dst; |
256 | args[1] = src; | |
22613af4 KB |
257 | } |
258 | ||
fe0de7aa | 259 | static TCGArg do_constant_folding_2(TCGOpcode op, TCGArg x, TCGArg y) |
53108fb5 | 260 | { |
03271524 RH |
261 | uint64_t l64, h64; |
262 | ||
53108fb5 KB |
263 | switch (op) { |
264 | CASE_OP_32_64(add): | |
265 | return x + y; | |
266 | ||
267 | CASE_OP_32_64(sub): | |
268 | return x - y; | |
269 | ||
270 | CASE_OP_32_64(mul): | |
271 | return x * y; | |
272 | ||
9a81090b KB |
273 | CASE_OP_32_64(and): |
274 | return x & y; | |
275 | ||
276 | CASE_OP_32_64(or): | |
277 | return x | y; | |
278 | ||
279 | CASE_OP_32_64(xor): | |
280 | return x ^ y; | |
281 | ||
55c0975c | 282 | case INDEX_op_shl_i32: |
50c5c4d1 | 283 | return (uint32_t)x << (y & 31); |
55c0975c | 284 | |
55c0975c | 285 | case INDEX_op_shl_i64: |
50c5c4d1 | 286 | return (uint64_t)x << (y & 63); |
55c0975c KB |
287 | |
288 | case INDEX_op_shr_i32: | |
50c5c4d1 | 289 | return (uint32_t)x >> (y & 31); |
55c0975c | 290 | |
55c0975c | 291 | case INDEX_op_shr_i64: |
50c5c4d1 | 292 | return (uint64_t)x >> (y & 63); |
55c0975c KB |
293 | |
294 | case INDEX_op_sar_i32: | |
50c5c4d1 | 295 | return (int32_t)x >> (y & 31); |
55c0975c | 296 | |
55c0975c | 297 | case INDEX_op_sar_i64: |
50c5c4d1 | 298 | return (int64_t)x >> (y & 63); |
55c0975c KB |
299 | |
300 | case INDEX_op_rotr_i32: | |
50c5c4d1 | 301 | return ror32(x, y & 31); |
55c0975c | 302 | |
55c0975c | 303 | case INDEX_op_rotr_i64: |
50c5c4d1 | 304 | return ror64(x, y & 63); |
55c0975c KB |
305 | |
306 | case INDEX_op_rotl_i32: | |
50c5c4d1 | 307 | return rol32(x, y & 31); |
55c0975c | 308 | |
55c0975c | 309 | case INDEX_op_rotl_i64: |
50c5c4d1 | 310 | return rol64(x, y & 63); |
25c4d9cc RH |
311 | |
312 | CASE_OP_32_64(not): | |
a640f031 | 313 | return ~x; |
25c4d9cc | 314 | |
cb25c80a RH |
315 | CASE_OP_32_64(neg): |
316 | return -x; | |
317 | ||
318 | CASE_OP_32_64(andc): | |
319 | return x & ~y; | |
320 | ||
321 | CASE_OP_32_64(orc): | |
322 | return x | ~y; | |
323 | ||
324 | CASE_OP_32_64(eqv): | |
325 | return ~(x ^ y); | |
326 | ||
327 | CASE_OP_32_64(nand): | |
328 | return ~(x & y); | |
329 | ||
330 | CASE_OP_32_64(nor): | |
331 | return ~(x | y); | |
332 | ||
25c4d9cc | 333 | CASE_OP_32_64(ext8s): |
a640f031 | 334 | return (int8_t)x; |
25c4d9cc RH |
335 | |
336 | CASE_OP_32_64(ext16s): | |
a640f031 | 337 | return (int16_t)x; |
25c4d9cc RH |
338 | |
339 | CASE_OP_32_64(ext8u): | |
a640f031 | 340 | return (uint8_t)x; |
25c4d9cc RH |
341 | |
342 | CASE_OP_32_64(ext16u): | |
a640f031 KB |
343 | return (uint16_t)x; |
344 | ||
8bcb5c8f | 345 | case INDEX_op_ext_i32_i64: |
a640f031 KB |
346 | case INDEX_op_ext32s_i64: |
347 | return (int32_t)x; | |
348 | ||
8bcb5c8f | 349 | case INDEX_op_extu_i32_i64: |
609ad705 | 350 | case INDEX_op_extrl_i64_i32: |
a640f031 KB |
351 | case INDEX_op_ext32u_i64: |
352 | return (uint32_t)x; | |
a640f031 | 353 | |
609ad705 RH |
354 | case INDEX_op_extrh_i64_i32: |
355 | return (uint64_t)x >> 32; | |
356 | ||
03271524 RH |
357 | case INDEX_op_muluh_i32: |
358 | return ((uint64_t)(uint32_t)x * (uint32_t)y) >> 32; | |
359 | case INDEX_op_mulsh_i32: | |
360 | return ((int64_t)(int32_t)x * (int32_t)y) >> 32; | |
361 | ||
362 | case INDEX_op_muluh_i64: | |
363 | mulu64(&l64, &h64, x, y); | |
364 | return h64; | |
365 | case INDEX_op_mulsh_i64: | |
366 | muls64(&l64, &h64, x, y); | |
367 | return h64; | |
368 | ||
01547f7f RH |
369 | case INDEX_op_div_i32: |
370 | /* Avoid crashing on divide by zero, otherwise undefined. */ | |
371 | return (int32_t)x / ((int32_t)y ? : 1); | |
372 | case INDEX_op_divu_i32: | |
373 | return (uint32_t)x / ((uint32_t)y ? : 1); | |
374 | case INDEX_op_div_i64: | |
375 | return (int64_t)x / ((int64_t)y ? : 1); | |
376 | case INDEX_op_divu_i64: | |
377 | return (uint64_t)x / ((uint64_t)y ? : 1); | |
378 | ||
379 | case INDEX_op_rem_i32: | |
380 | return (int32_t)x % ((int32_t)y ? : 1); | |
381 | case INDEX_op_remu_i32: | |
382 | return (uint32_t)x % ((uint32_t)y ? : 1); | |
383 | case INDEX_op_rem_i64: | |
384 | return (int64_t)x % ((int64_t)y ? : 1); | |
385 | case INDEX_op_remu_i64: | |
386 | return (uint64_t)x % ((uint64_t)y ? : 1); | |
387 | ||
53108fb5 KB |
388 | default: |
389 | fprintf(stderr, | |
390 | "Unrecognized operation %d in do_constant_folding.\n", op); | |
391 | tcg_abort(); | |
392 | } | |
393 | } | |
394 | ||
fe0de7aa | 395 | static TCGArg do_constant_folding(TCGOpcode op, TCGArg x, TCGArg y) |
53108fb5 KB |
396 | { |
397 | TCGArg res = do_constant_folding_2(op, x, y); | |
53108fb5 | 398 | if (op_bits(op) == 32) { |
29f3ff8d | 399 | res = (int32_t)res; |
53108fb5 | 400 | } |
53108fb5 KB |
401 | return res; |
402 | } | |
403 | ||
9519da7e RH |
404 | static bool do_constant_folding_cond_32(uint32_t x, uint32_t y, TCGCond c) |
405 | { | |
406 | switch (c) { | |
407 | case TCG_COND_EQ: | |
408 | return x == y; | |
409 | case TCG_COND_NE: | |
410 | return x != y; | |
411 | case TCG_COND_LT: | |
412 | return (int32_t)x < (int32_t)y; | |
413 | case TCG_COND_GE: | |
414 | return (int32_t)x >= (int32_t)y; | |
415 | case TCG_COND_LE: | |
416 | return (int32_t)x <= (int32_t)y; | |
417 | case TCG_COND_GT: | |
418 | return (int32_t)x > (int32_t)y; | |
419 | case TCG_COND_LTU: | |
420 | return x < y; | |
421 | case TCG_COND_GEU: | |
422 | return x >= y; | |
423 | case TCG_COND_LEU: | |
424 | return x <= y; | |
425 | case TCG_COND_GTU: | |
426 | return x > y; | |
427 | default: | |
428 | tcg_abort(); | |
429 | } | |
430 | } | |
431 | ||
432 | static bool do_constant_folding_cond_64(uint64_t x, uint64_t y, TCGCond c) | |
433 | { | |
434 | switch (c) { | |
435 | case TCG_COND_EQ: | |
436 | return x == y; | |
437 | case TCG_COND_NE: | |
438 | return x != y; | |
439 | case TCG_COND_LT: | |
440 | return (int64_t)x < (int64_t)y; | |
441 | case TCG_COND_GE: | |
442 | return (int64_t)x >= (int64_t)y; | |
443 | case TCG_COND_LE: | |
444 | return (int64_t)x <= (int64_t)y; | |
445 | case TCG_COND_GT: | |
446 | return (int64_t)x > (int64_t)y; | |
447 | case TCG_COND_LTU: | |
448 | return x < y; | |
449 | case TCG_COND_GEU: | |
450 | return x >= y; | |
451 | case TCG_COND_LEU: | |
452 | return x <= y; | |
453 | case TCG_COND_GTU: | |
454 | return x > y; | |
455 | default: | |
456 | tcg_abort(); | |
457 | } | |
458 | } | |
459 | ||
460 | static bool do_constant_folding_cond_eq(TCGCond c) | |
461 | { | |
462 | switch (c) { | |
463 | case TCG_COND_GT: | |
464 | case TCG_COND_LTU: | |
465 | case TCG_COND_LT: | |
466 | case TCG_COND_GTU: | |
467 | case TCG_COND_NE: | |
468 | return 0; | |
469 | case TCG_COND_GE: | |
470 | case TCG_COND_GEU: | |
471 | case TCG_COND_LE: | |
472 | case TCG_COND_LEU: | |
473 | case TCG_COND_EQ: | |
474 | return 1; | |
475 | default: | |
476 | tcg_abort(); | |
477 | } | |
478 | } | |
479 | ||
b336ceb6 AJ |
480 | /* Return 2 if the condition can't be simplified, and the result |
481 | of the condition (0 or 1) if it can */ | |
f8dd19e5 AJ |
482 | static TCGArg do_constant_folding_cond(TCGOpcode op, TCGArg x, |
483 | TCGArg y, TCGCond c) | |
484 | { | |
d9c769c6 | 485 | if (temp_is_const(x) && temp_is_const(y)) { |
b336ceb6 AJ |
486 | switch (op_bits(op)) { |
487 | case 32: | |
9519da7e | 488 | return do_constant_folding_cond_32(temps[x].val, temps[y].val, c); |
b336ceb6 | 489 | case 64: |
9519da7e | 490 | return do_constant_folding_cond_64(temps[x].val, temps[y].val, c); |
0aed257f | 491 | default: |
9519da7e | 492 | tcg_abort(); |
b336ceb6 | 493 | } |
9519da7e RH |
494 | } else if (temps_are_copies(x, y)) { |
495 | return do_constant_folding_cond_eq(c); | |
d9c769c6 | 496 | } else if (temp_is_const(y) && temps[y].val == 0) { |
b336ceb6 | 497 | switch (c) { |
f8dd19e5 | 498 | case TCG_COND_LTU: |
b336ceb6 | 499 | return 0; |
f8dd19e5 | 500 | case TCG_COND_GEU: |
b336ceb6 AJ |
501 | return 1; |
502 | default: | |
503 | return 2; | |
f8dd19e5 | 504 | } |
b336ceb6 AJ |
505 | } else { |
506 | return 2; | |
f8dd19e5 | 507 | } |
f8dd19e5 AJ |
508 | } |
509 | ||
6c4382f8 RH |
510 | /* Return 2 if the condition can't be simplified, and the result |
511 | of the condition (0 or 1) if it can */ | |
512 | static TCGArg do_constant_folding_cond2(TCGArg *p1, TCGArg *p2, TCGCond c) | |
513 | { | |
514 | TCGArg al = p1[0], ah = p1[1]; | |
515 | TCGArg bl = p2[0], bh = p2[1]; | |
516 | ||
d9c769c6 | 517 | if (temp_is_const(bl) && temp_is_const(bh)) { |
6c4382f8 RH |
518 | uint64_t b = ((uint64_t)temps[bh].val << 32) | (uint32_t)temps[bl].val; |
519 | ||
d9c769c6 | 520 | if (temp_is_const(al) && temp_is_const(ah)) { |
6c4382f8 RH |
521 | uint64_t a; |
522 | a = ((uint64_t)temps[ah].val << 32) | (uint32_t)temps[al].val; | |
523 | return do_constant_folding_cond_64(a, b, c); | |
524 | } | |
525 | if (b == 0) { | |
526 | switch (c) { | |
527 | case TCG_COND_LTU: | |
528 | return 0; | |
529 | case TCG_COND_GEU: | |
530 | return 1; | |
531 | default: | |
532 | break; | |
533 | } | |
534 | } | |
535 | } | |
536 | if (temps_are_copies(al, bl) && temps_are_copies(ah, bh)) { | |
537 | return do_constant_folding_cond_eq(c); | |
538 | } | |
539 | return 2; | |
540 | } | |
541 | ||
24c9ae4e RH |
542 | static bool swap_commutative(TCGArg dest, TCGArg *p1, TCGArg *p2) |
543 | { | |
544 | TCGArg a1 = *p1, a2 = *p2; | |
545 | int sum = 0; | |
d9c769c6 AJ |
546 | sum += temp_is_const(a1); |
547 | sum -= temp_is_const(a2); | |
24c9ae4e RH |
548 | |
549 | /* Prefer the constant in second argument, and then the form | |
550 | op a, a, b, which is better handled on non-RISC hosts. */ | |
551 | if (sum > 0 || (sum == 0 && dest == a2)) { | |
552 | *p1 = a2; | |
553 | *p2 = a1; | |
554 | return true; | |
555 | } | |
556 | return false; | |
557 | } | |
558 | ||
0bfcb865 RH |
559 | static bool swap_commutative2(TCGArg *p1, TCGArg *p2) |
560 | { | |
561 | int sum = 0; | |
d9c769c6 AJ |
562 | sum += temp_is_const(p1[0]); |
563 | sum += temp_is_const(p1[1]); | |
564 | sum -= temp_is_const(p2[0]); | |
565 | sum -= temp_is_const(p2[1]); | |
0bfcb865 RH |
566 | if (sum > 0) { |
567 | TCGArg t; | |
568 | t = p1[0], p1[0] = p2[0], p2[0] = t; | |
569 | t = p1[1], p1[1] = p2[1], p2[1] = t; | |
570 | return true; | |
571 | } | |
572 | return false; | |
573 | } | |
574 | ||
22613af4 | 575 | /* Propagate constants and copies, fold constant expressions. */ |
36e60ef6 | 576 | void tcg_optimize(TCGContext *s) |
8f2e8c07 | 577 | { |
c45cb8bb | 578 | int oi, oi_next, nb_temps, nb_globals; |
5d8f5363 | 579 | |
22613af4 KB |
580 | /* Array VALS has an element for each temp. |
581 | If this temp holds a constant then its value is kept in VALS' element. | |
e590d4e6 AJ |
582 | If this temp is a copy of other ones then the other copies are |
583 | available through the doubly linked circular list. */ | |
8f2e8c07 KB |
584 | |
585 | nb_temps = s->nb_temps; | |
586 | nb_globals = s->nb_globals; | |
d193a14a | 587 | reset_all_temps(nb_temps); |
8f2e8c07 | 588 | |
c45cb8bb | 589 | for (oi = s->gen_first_op_idx; oi >= 0; oi = oi_next) { |
24666baf | 590 | tcg_target_ulong mask, partmask, affected; |
c45cb8bb | 591 | int nb_oargs, nb_iargs, i; |
cf066674 RH |
592 | TCGArg tmp; |
593 | ||
c45cb8bb RH |
594 | TCGOp * const op = &s->gen_op_buf[oi]; |
595 | TCGArg * const args = &s->gen_opparam_buf[op->args]; | |
596 | TCGOpcode opc = op->opc; | |
597 | const TCGOpDef *def = &tcg_op_defs[opc]; | |
598 | ||
599 | oi_next = op->next; | |
1208d7dd AJ |
600 | |
601 | /* Count the arguments, and initialize the temps that are | |
602 | going to be used */ | |
c45cb8bb RH |
603 | if (opc == INDEX_op_call) { |
604 | nb_oargs = op->callo; | |
605 | nb_iargs = op->calli; | |
1208d7dd AJ |
606 | for (i = 0; i < nb_oargs + nb_iargs; i++) { |
607 | tmp = args[i]; | |
608 | if (tmp != TCG_CALL_DUMMY_ARG) { | |
609 | init_temp_info(tmp); | |
610 | } | |
611 | } | |
1ff8c541 | 612 | } else { |
cf066674 RH |
613 | nb_oargs = def->nb_oargs; |
614 | nb_iargs = def->nb_iargs; | |
1208d7dd AJ |
615 | for (i = 0; i < nb_oargs + nb_iargs; i++) { |
616 | init_temp_info(args[i]); | |
617 | } | |
cf066674 RH |
618 | } |
619 | ||
620 | /* Do copy propagation */ | |
621 | for (i = nb_oargs; i < nb_oargs + nb_iargs; i++) { | |
d9c769c6 | 622 | if (temp_is_copy(args[i])) { |
cf066674 | 623 | args[i] = find_better_copy(s, args[i]); |
22613af4 KB |
624 | } |
625 | } | |
626 | ||
53108fb5 | 627 | /* For commutative operations make constant second argument */ |
c45cb8bb | 628 | switch (opc) { |
53108fb5 KB |
629 | CASE_OP_32_64(add): |
630 | CASE_OP_32_64(mul): | |
9a81090b KB |
631 | CASE_OP_32_64(and): |
632 | CASE_OP_32_64(or): | |
633 | CASE_OP_32_64(xor): | |
cb25c80a RH |
634 | CASE_OP_32_64(eqv): |
635 | CASE_OP_32_64(nand): | |
636 | CASE_OP_32_64(nor): | |
03271524 RH |
637 | CASE_OP_32_64(muluh): |
638 | CASE_OP_32_64(mulsh): | |
24c9ae4e | 639 | swap_commutative(args[0], &args[1], &args[2]); |
53108fb5 | 640 | break; |
65a7cce1 | 641 | CASE_OP_32_64(brcond): |
24c9ae4e | 642 | if (swap_commutative(-1, &args[0], &args[1])) { |
65a7cce1 AJ |
643 | args[2] = tcg_swap_cond(args[2]); |
644 | } | |
645 | break; | |
646 | CASE_OP_32_64(setcond): | |
24c9ae4e | 647 | if (swap_commutative(args[0], &args[1], &args[2])) { |
65a7cce1 AJ |
648 | args[3] = tcg_swap_cond(args[3]); |
649 | } | |
650 | break; | |
fa01a208 | 651 | CASE_OP_32_64(movcond): |
24c9ae4e RH |
652 | if (swap_commutative(-1, &args[1], &args[2])) { |
653 | args[5] = tcg_swap_cond(args[5]); | |
5d8f5363 RH |
654 | } |
655 | /* For movcond, we canonicalize the "false" input reg to match | |
656 | the destination reg so that the tcg backend can implement | |
657 | a "move if true" operation. */ | |
24c9ae4e RH |
658 | if (swap_commutative(args[0], &args[4], &args[3])) { |
659 | args[5] = tcg_invert_cond(args[5]); | |
fa01a208 | 660 | } |
1e484e61 | 661 | break; |
d7156f7c | 662 | CASE_OP_32_64(add2): |
1e484e61 RH |
663 | swap_commutative(args[0], &args[2], &args[4]); |
664 | swap_commutative(args[1], &args[3], &args[5]); | |
665 | break; | |
d7156f7c | 666 | CASE_OP_32_64(mulu2): |
4d3203fd | 667 | CASE_OP_32_64(muls2): |
1414968a RH |
668 | swap_commutative(args[0], &args[2], &args[3]); |
669 | break; | |
0bfcb865 RH |
670 | case INDEX_op_brcond2_i32: |
671 | if (swap_commutative2(&args[0], &args[2])) { | |
672 | args[4] = tcg_swap_cond(args[4]); | |
673 | } | |
674 | break; | |
675 | case INDEX_op_setcond2_i32: | |
676 | if (swap_commutative2(&args[1], &args[3])) { | |
677 | args[5] = tcg_swap_cond(args[5]); | |
678 | } | |
679 | break; | |
53108fb5 KB |
680 | default: |
681 | break; | |
682 | } | |
683 | ||
2d497542 RH |
684 | /* Simplify expressions for "shift/rot r, 0, a => movi r, 0", |
685 | and "sub r, 0, a => neg r, a" case. */ | |
c45cb8bb | 686 | switch (opc) { |
01ee5282 AJ |
687 | CASE_OP_32_64(shl): |
688 | CASE_OP_32_64(shr): | |
689 | CASE_OP_32_64(sar): | |
690 | CASE_OP_32_64(rotl): | |
691 | CASE_OP_32_64(rotr): | |
d9c769c6 | 692 | if (temp_is_const(args[1]) && temps[args[1]].val == 0) { |
ebd27391 | 693 | tcg_opt_gen_movi(s, op, args, args[0], 0); |
01ee5282 AJ |
694 | continue; |
695 | } | |
696 | break; | |
2d497542 RH |
697 | CASE_OP_32_64(sub): |
698 | { | |
699 | TCGOpcode neg_op; | |
700 | bool have_neg; | |
701 | ||
d9c769c6 | 702 | if (temp_is_const(args[2])) { |
2d497542 RH |
703 | /* Proceed with possible constant folding. */ |
704 | break; | |
705 | } | |
c45cb8bb | 706 | if (opc == INDEX_op_sub_i32) { |
2d497542 RH |
707 | neg_op = INDEX_op_neg_i32; |
708 | have_neg = TCG_TARGET_HAS_neg_i32; | |
709 | } else { | |
710 | neg_op = INDEX_op_neg_i64; | |
711 | have_neg = TCG_TARGET_HAS_neg_i64; | |
712 | } | |
713 | if (!have_neg) { | |
714 | break; | |
715 | } | |
d9c769c6 | 716 | if (temp_is_const(args[1]) && temps[args[1]].val == 0) { |
c45cb8bb | 717 | op->opc = neg_op; |
2d497542 | 718 | reset_temp(args[0]); |
c45cb8bb | 719 | args[1] = args[2]; |
2d497542 RH |
720 | continue; |
721 | } | |
722 | } | |
723 | break; | |
e201b564 RH |
724 | CASE_OP_32_64(xor): |
725 | CASE_OP_32_64(nand): | |
d9c769c6 AJ |
726 | if (!temp_is_const(args[1]) |
727 | && temp_is_const(args[2]) && temps[args[2]].val == -1) { | |
e201b564 RH |
728 | i = 1; |
729 | goto try_not; | |
730 | } | |
731 | break; | |
732 | CASE_OP_32_64(nor): | |
d9c769c6 AJ |
733 | if (!temp_is_const(args[1]) |
734 | && temp_is_const(args[2]) && temps[args[2]].val == 0) { | |
e201b564 RH |
735 | i = 1; |
736 | goto try_not; | |
737 | } | |
738 | break; | |
739 | CASE_OP_32_64(andc): | |
d9c769c6 AJ |
740 | if (!temp_is_const(args[2]) |
741 | && temp_is_const(args[1]) && temps[args[1]].val == -1) { | |
e201b564 RH |
742 | i = 2; |
743 | goto try_not; | |
744 | } | |
745 | break; | |
746 | CASE_OP_32_64(orc): | |
747 | CASE_OP_32_64(eqv): | |
d9c769c6 AJ |
748 | if (!temp_is_const(args[2]) |
749 | && temp_is_const(args[1]) && temps[args[1]].val == 0) { | |
e201b564 RH |
750 | i = 2; |
751 | goto try_not; | |
752 | } | |
753 | break; | |
754 | try_not: | |
755 | { | |
756 | TCGOpcode not_op; | |
757 | bool have_not; | |
758 | ||
759 | if (def->flags & TCG_OPF_64BIT) { | |
760 | not_op = INDEX_op_not_i64; | |
761 | have_not = TCG_TARGET_HAS_not_i64; | |
762 | } else { | |
763 | not_op = INDEX_op_not_i32; | |
764 | have_not = TCG_TARGET_HAS_not_i32; | |
765 | } | |
766 | if (!have_not) { | |
767 | break; | |
768 | } | |
c45cb8bb | 769 | op->opc = not_op; |
e201b564 | 770 | reset_temp(args[0]); |
c45cb8bb | 771 | args[1] = args[i]; |
e201b564 RH |
772 | continue; |
773 | } | |
01ee5282 AJ |
774 | default: |
775 | break; | |
776 | } | |
777 | ||
464a1441 | 778 | /* Simplify expression for "op r, a, const => mov r, a" cases */ |
c45cb8bb | 779 | switch (opc) { |
53108fb5 KB |
780 | CASE_OP_32_64(add): |
781 | CASE_OP_32_64(sub): | |
55c0975c KB |
782 | CASE_OP_32_64(shl): |
783 | CASE_OP_32_64(shr): | |
784 | CASE_OP_32_64(sar): | |
25c4d9cc RH |
785 | CASE_OP_32_64(rotl): |
786 | CASE_OP_32_64(rotr): | |
38ee188b AJ |
787 | CASE_OP_32_64(or): |
788 | CASE_OP_32_64(xor): | |
464a1441 | 789 | CASE_OP_32_64(andc): |
d9c769c6 AJ |
790 | if (!temp_is_const(args[1]) |
791 | && temp_is_const(args[2]) && temps[args[2]].val == 0) { | |
97a79eb7 AJ |
792 | tcg_opt_gen_mov(s, op, args, args[0], args[1]); |
793 | continue; | |
53108fb5 KB |
794 | } |
795 | break; | |
464a1441 RH |
796 | CASE_OP_32_64(and): |
797 | CASE_OP_32_64(orc): | |
798 | CASE_OP_32_64(eqv): | |
d9c769c6 AJ |
799 | if (!temp_is_const(args[1]) |
800 | && temp_is_const(args[2]) && temps[args[2]].val == -1) { | |
97a79eb7 AJ |
801 | tcg_opt_gen_mov(s, op, args, args[0], args[1]); |
802 | continue; | |
464a1441 RH |
803 | } |
804 | break; | |
56e49438 AJ |
805 | default: |
806 | break; | |
807 | } | |
808 | ||
3031244b AJ |
809 | /* Simplify using known-zero bits. Currently only ops with a single |
810 | output argument is supported. */ | |
3a9d8b17 | 811 | mask = -1; |
633f6502 | 812 | affected = -1; |
c45cb8bb | 813 | switch (opc) { |
3a9d8b17 PB |
814 | CASE_OP_32_64(ext8s): |
815 | if ((temps[args[1]].mask & 0x80) != 0) { | |
816 | break; | |
817 | } | |
818 | CASE_OP_32_64(ext8u): | |
819 | mask = 0xff; | |
820 | goto and_const; | |
821 | CASE_OP_32_64(ext16s): | |
822 | if ((temps[args[1]].mask & 0x8000) != 0) { | |
823 | break; | |
824 | } | |
825 | CASE_OP_32_64(ext16u): | |
826 | mask = 0xffff; | |
827 | goto and_const; | |
828 | case INDEX_op_ext32s_i64: | |
829 | if ((temps[args[1]].mask & 0x80000000) != 0) { | |
830 | break; | |
831 | } | |
832 | case INDEX_op_ext32u_i64: | |
833 | mask = 0xffffffffU; | |
834 | goto and_const; | |
835 | ||
836 | CASE_OP_32_64(and): | |
837 | mask = temps[args[2]].mask; | |
d9c769c6 | 838 | if (temp_is_const(args[2])) { |
3a9d8b17 | 839 | and_const: |
633f6502 | 840 | affected = temps[args[1]].mask & ~mask; |
3a9d8b17 PB |
841 | } |
842 | mask = temps[args[1]].mask & mask; | |
843 | break; | |
844 | ||
8bcb5c8f AJ |
845 | case INDEX_op_ext_i32_i64: |
846 | if ((temps[args[1]].mask & 0x80000000) != 0) { | |
847 | break; | |
848 | } | |
849 | case INDEX_op_extu_i32_i64: | |
850 | /* We do not compute affected as it is a size changing op. */ | |
851 | mask = (uint32_t)temps[args[1]].mask; | |
852 | break; | |
853 | ||
23ec69ed RH |
854 | CASE_OP_32_64(andc): |
855 | /* Known-zeros does not imply known-ones. Therefore unless | |
856 | args[2] is constant, we can't infer anything from it. */ | |
d9c769c6 | 857 | if (temp_is_const(args[2])) { |
23ec69ed RH |
858 | mask = ~temps[args[2]].mask; |
859 | goto and_const; | |
860 | } | |
861 | /* But we certainly know nothing outside args[1] may be set. */ | |
862 | mask = temps[args[1]].mask; | |
863 | break; | |
864 | ||
e46b225a | 865 | case INDEX_op_sar_i32: |
d9c769c6 | 866 | if (temp_is_const(args[2])) { |
50c5c4d1 RH |
867 | tmp = temps[args[2]].val & 31; |
868 | mask = (int32_t)temps[args[1]].mask >> tmp; | |
e46b225a AJ |
869 | } |
870 | break; | |
871 | case INDEX_op_sar_i64: | |
d9c769c6 | 872 | if (temp_is_const(args[2])) { |
50c5c4d1 RH |
873 | tmp = temps[args[2]].val & 63; |
874 | mask = (int64_t)temps[args[1]].mask >> tmp; | |
3a9d8b17 PB |
875 | } |
876 | break; | |
877 | ||
e46b225a | 878 | case INDEX_op_shr_i32: |
d9c769c6 | 879 | if (temp_is_const(args[2])) { |
50c5c4d1 RH |
880 | tmp = temps[args[2]].val & 31; |
881 | mask = (uint32_t)temps[args[1]].mask >> tmp; | |
e46b225a AJ |
882 | } |
883 | break; | |
884 | case INDEX_op_shr_i64: | |
d9c769c6 | 885 | if (temp_is_const(args[2])) { |
50c5c4d1 RH |
886 | tmp = temps[args[2]].val & 63; |
887 | mask = (uint64_t)temps[args[1]].mask >> tmp; | |
3a9d8b17 PB |
888 | } |
889 | break; | |
890 | ||
609ad705 RH |
891 | case INDEX_op_extrl_i64_i32: |
892 | mask = (uint32_t)temps[args[1]].mask; | |
893 | break; | |
894 | case INDEX_op_extrh_i64_i32: | |
895 | mask = (uint64_t)temps[args[1]].mask >> 32; | |
4bb7a41e RH |
896 | break; |
897 | ||
3a9d8b17 | 898 | CASE_OP_32_64(shl): |
d9c769c6 | 899 | if (temp_is_const(args[2])) { |
50c5c4d1 RH |
900 | tmp = temps[args[2]].val & (TCG_TARGET_REG_BITS - 1); |
901 | mask = temps[args[1]].mask << tmp; | |
3a9d8b17 PB |
902 | } |
903 | break; | |
904 | ||
905 | CASE_OP_32_64(neg): | |
906 | /* Set to 1 all bits to the left of the rightmost. */ | |
907 | mask = -(temps[args[1]].mask & -temps[args[1]].mask); | |
908 | break; | |
909 | ||
910 | CASE_OP_32_64(deposit): | |
d998e555 RH |
911 | mask = deposit64(temps[args[1]].mask, args[3], args[4], |
912 | temps[args[2]].mask); | |
3a9d8b17 PB |
913 | break; |
914 | ||
915 | CASE_OP_32_64(or): | |
916 | CASE_OP_32_64(xor): | |
917 | mask = temps[args[1]].mask | temps[args[2]].mask; | |
918 | break; | |
919 | ||
920 | CASE_OP_32_64(setcond): | |
a763551a | 921 | case INDEX_op_setcond2_i32: |
3a9d8b17 PB |
922 | mask = 1; |
923 | break; | |
924 | ||
925 | CASE_OP_32_64(movcond): | |
926 | mask = temps[args[3]].mask | temps[args[4]].mask; | |
927 | break; | |
928 | ||
c8d70272 | 929 | CASE_OP_32_64(ld8u): |
c8d70272 AJ |
930 | mask = 0xff; |
931 | break; | |
932 | CASE_OP_32_64(ld16u): | |
c8d70272 AJ |
933 | mask = 0xffff; |
934 | break; | |
935 | case INDEX_op_ld32u_i64: | |
c8d70272 AJ |
936 | mask = 0xffffffffu; |
937 | break; | |
938 | ||
939 | CASE_OP_32_64(qemu_ld): | |
940 | { | |
59227d5d RH |
941 | TCGMemOpIdx oi = args[nb_oargs + nb_iargs]; |
942 | TCGMemOp mop = get_memop(oi); | |
c8d70272 AJ |
943 | if (!(mop & MO_SIGN)) { |
944 | mask = (2ULL << ((8 << (mop & MO_SIZE)) - 1)) - 1; | |
945 | } | |
946 | } | |
947 | break; | |
948 | ||
3a9d8b17 PB |
949 | default: |
950 | break; | |
951 | } | |
952 | ||
bc8d688f RH |
953 | /* 32-bit ops generate 32-bit results. For the result is zero test |
954 | below, we can ignore high bits, but for further optimizations we | |
955 | need to record that the high bits contain garbage. */ | |
24666baf | 956 | partmask = mask; |
bc8d688f | 957 | if (!(def->flags & TCG_OPF_64BIT)) { |
24666baf RH |
958 | mask |= ~(tcg_target_ulong)0xffffffffu; |
959 | partmask &= 0xffffffffu; | |
960 | affected &= 0xffffffffu; | |
f096dc96 AJ |
961 | } |
962 | ||
24666baf | 963 | if (partmask == 0) { |
cf066674 | 964 | assert(nb_oargs == 1); |
ebd27391 | 965 | tcg_opt_gen_movi(s, op, args, args[0], 0); |
633f6502 PB |
966 | continue; |
967 | } | |
968 | if (affected == 0) { | |
cf066674 | 969 | assert(nb_oargs == 1); |
97a79eb7 | 970 | tcg_opt_gen_mov(s, op, args, args[0], args[1]); |
633f6502 PB |
971 | continue; |
972 | } | |
973 | ||
56e49438 | 974 | /* Simplify expression for "op r, a, 0 => movi r, 0" cases */ |
c45cb8bb | 975 | switch (opc) { |
61251c0c | 976 | CASE_OP_32_64(and): |
53108fb5 | 977 | CASE_OP_32_64(mul): |
03271524 RH |
978 | CASE_OP_32_64(muluh): |
979 | CASE_OP_32_64(mulsh): | |
d9c769c6 | 980 | if ((temp_is_const(args[2]) && temps[args[2]].val == 0)) { |
ebd27391 | 981 | tcg_opt_gen_movi(s, op, args, args[0], 0); |
53108fb5 KB |
982 | continue; |
983 | } | |
984 | break; | |
56e49438 AJ |
985 | default: |
986 | break; | |
987 | } | |
988 | ||
989 | /* Simplify expression for "op r, a, a => mov r, a" cases */ | |
c45cb8bb | 990 | switch (opc) { |
9a81090b KB |
991 | CASE_OP_32_64(or): |
992 | CASE_OP_32_64(and): | |
0aba1c73 | 993 | if (temps_are_copies(args[1], args[2])) { |
97a79eb7 | 994 | tcg_opt_gen_mov(s, op, args, args[0], args[1]); |
9a81090b KB |
995 | continue; |
996 | } | |
997 | break; | |
fe0de7aa BS |
998 | default: |
999 | break; | |
53108fb5 KB |
1000 | } |
1001 | ||
3c94193e | 1002 | /* Simplify expression for "op r, a, a => movi r, 0" cases */ |
c45cb8bb | 1003 | switch (opc) { |
e64e958e | 1004 | CASE_OP_32_64(andc): |
3c94193e AJ |
1005 | CASE_OP_32_64(sub): |
1006 | CASE_OP_32_64(xor): | |
1007 | if (temps_are_copies(args[1], args[2])) { | |
ebd27391 | 1008 | tcg_opt_gen_movi(s, op, args, args[0], 0); |
3c94193e AJ |
1009 | continue; |
1010 | } | |
1011 | break; | |
1012 | default: | |
1013 | break; | |
1014 | } | |
1015 | ||
22613af4 KB |
1016 | /* Propagate constants through copy operations and do constant |
1017 | folding. Constants will be substituted to arguments by register | |
1018 | allocator where needed and possible. Also detect copies. */ | |
c45cb8bb | 1019 | switch (opc) { |
22613af4 | 1020 | CASE_OP_32_64(mov): |
97a79eb7 AJ |
1021 | tcg_opt_gen_mov(s, op, args, args[0], args[1]); |
1022 | break; | |
22613af4 | 1023 | CASE_OP_32_64(movi): |
ebd27391 | 1024 | tcg_opt_gen_movi(s, op, args, args[0], args[1]); |
22613af4 | 1025 | break; |
6e14e91b | 1026 | |
a640f031 | 1027 | CASE_OP_32_64(not): |
cb25c80a | 1028 | CASE_OP_32_64(neg): |
25c4d9cc RH |
1029 | CASE_OP_32_64(ext8s): |
1030 | CASE_OP_32_64(ext8u): | |
1031 | CASE_OP_32_64(ext16s): | |
1032 | CASE_OP_32_64(ext16u): | |
a640f031 KB |
1033 | case INDEX_op_ext32s_i64: |
1034 | case INDEX_op_ext32u_i64: | |
8bcb5c8f AJ |
1035 | case INDEX_op_ext_i32_i64: |
1036 | case INDEX_op_extu_i32_i64: | |
609ad705 RH |
1037 | case INDEX_op_extrl_i64_i32: |
1038 | case INDEX_op_extrh_i64_i32: | |
d9c769c6 | 1039 | if (temp_is_const(args[1])) { |
c45cb8bb | 1040 | tmp = do_constant_folding(opc, temps[args[1]].val, 0); |
ebd27391 | 1041 | tcg_opt_gen_movi(s, op, args, args[0], tmp); |
6e14e91b | 1042 | break; |
a640f031 | 1043 | } |
6e14e91b RH |
1044 | goto do_default; |
1045 | ||
53108fb5 KB |
1046 | CASE_OP_32_64(add): |
1047 | CASE_OP_32_64(sub): | |
1048 | CASE_OP_32_64(mul): | |
9a81090b KB |
1049 | CASE_OP_32_64(or): |
1050 | CASE_OP_32_64(and): | |
1051 | CASE_OP_32_64(xor): | |
55c0975c KB |
1052 | CASE_OP_32_64(shl): |
1053 | CASE_OP_32_64(shr): | |
1054 | CASE_OP_32_64(sar): | |
25c4d9cc RH |
1055 | CASE_OP_32_64(rotl): |
1056 | CASE_OP_32_64(rotr): | |
cb25c80a RH |
1057 | CASE_OP_32_64(andc): |
1058 | CASE_OP_32_64(orc): | |
1059 | CASE_OP_32_64(eqv): | |
1060 | CASE_OP_32_64(nand): | |
1061 | CASE_OP_32_64(nor): | |
03271524 RH |
1062 | CASE_OP_32_64(muluh): |
1063 | CASE_OP_32_64(mulsh): | |
01547f7f RH |
1064 | CASE_OP_32_64(div): |
1065 | CASE_OP_32_64(divu): | |
1066 | CASE_OP_32_64(rem): | |
1067 | CASE_OP_32_64(remu): | |
d9c769c6 | 1068 | if (temp_is_const(args[1]) && temp_is_const(args[2])) { |
c45cb8bb | 1069 | tmp = do_constant_folding(opc, temps[args[1]].val, |
53108fb5 | 1070 | temps[args[2]].val); |
ebd27391 | 1071 | tcg_opt_gen_movi(s, op, args, args[0], tmp); |
6e14e91b | 1072 | break; |
53108fb5 | 1073 | } |
6e14e91b RH |
1074 | goto do_default; |
1075 | ||
7ef55fc9 | 1076 | CASE_OP_32_64(deposit): |
d9c769c6 | 1077 | if (temp_is_const(args[1]) && temp_is_const(args[2])) { |
d998e555 RH |
1078 | tmp = deposit64(temps[args[1]].val, args[3], args[4], |
1079 | temps[args[2]].val); | |
ebd27391 | 1080 | tcg_opt_gen_movi(s, op, args, args[0], tmp); |
6e14e91b | 1081 | break; |
7ef55fc9 | 1082 | } |
6e14e91b RH |
1083 | goto do_default; |
1084 | ||
f8dd19e5 | 1085 | CASE_OP_32_64(setcond): |
c45cb8bb | 1086 | tmp = do_constant_folding_cond(opc, args[1], args[2], args[3]); |
b336ceb6 | 1087 | if (tmp != 2) { |
ebd27391 | 1088 | tcg_opt_gen_movi(s, op, args, args[0], tmp); |
6e14e91b | 1089 | break; |
f8dd19e5 | 1090 | } |
6e14e91b RH |
1091 | goto do_default; |
1092 | ||
fbeaa26c | 1093 | CASE_OP_32_64(brcond): |
c45cb8bb | 1094 | tmp = do_constant_folding_cond(opc, args[0], args[1], args[2]); |
b336ceb6 AJ |
1095 | if (tmp != 2) { |
1096 | if (tmp) { | |
d193a14a | 1097 | reset_all_temps(nb_temps); |
c45cb8bb RH |
1098 | op->opc = INDEX_op_br; |
1099 | args[0] = args[3]; | |
fbeaa26c | 1100 | } else { |
0c627cdc | 1101 | tcg_op_remove(s, op); |
fbeaa26c | 1102 | } |
6e14e91b | 1103 | break; |
fbeaa26c | 1104 | } |
6e14e91b RH |
1105 | goto do_default; |
1106 | ||
fa01a208 | 1107 | CASE_OP_32_64(movcond): |
c45cb8bb | 1108 | tmp = do_constant_folding_cond(opc, args[1], args[2], args[5]); |
b336ceb6 | 1109 | if (tmp != 2) { |
97a79eb7 | 1110 | tcg_opt_gen_mov(s, op, args, args[0], args[4-tmp]); |
6e14e91b | 1111 | break; |
fa01a208 | 1112 | } |
6e14e91b | 1113 | goto do_default; |
212c328d RH |
1114 | |
1115 | case INDEX_op_add2_i32: | |
1116 | case INDEX_op_sub2_i32: | |
d9c769c6 AJ |
1117 | if (temp_is_const(args[2]) && temp_is_const(args[3]) |
1118 | && temp_is_const(args[4]) && temp_is_const(args[5])) { | |
212c328d RH |
1119 | uint32_t al = temps[args[2]].val; |
1120 | uint32_t ah = temps[args[3]].val; | |
1121 | uint32_t bl = temps[args[4]].val; | |
1122 | uint32_t bh = temps[args[5]].val; | |
1123 | uint64_t a = ((uint64_t)ah << 32) | al; | |
1124 | uint64_t b = ((uint64_t)bh << 32) | bl; | |
1125 | TCGArg rl, rh; | |
a4ce099a RH |
1126 | TCGOp *op2 = insert_op_before(s, op, INDEX_op_movi_i32, 2); |
1127 | TCGArg *args2 = &s->gen_opparam_buf[op2->args]; | |
212c328d | 1128 | |
c45cb8bb | 1129 | if (opc == INDEX_op_add2_i32) { |
212c328d RH |
1130 | a += b; |
1131 | } else { | |
1132 | a -= b; | |
1133 | } | |
1134 | ||
212c328d RH |
1135 | rl = args[0]; |
1136 | rh = args[1]; | |
29f3ff8d AJ |
1137 | tcg_opt_gen_movi(s, op, args, rl, (int32_t)a); |
1138 | tcg_opt_gen_movi(s, op2, args2, rh, (int32_t)(a >> 32)); | |
c45cb8bb RH |
1139 | |
1140 | /* We've done all we need to do with the movi. Skip it. */ | |
1141 | oi_next = op2->next; | |
212c328d RH |
1142 | break; |
1143 | } | |
1144 | goto do_default; | |
1414968a RH |
1145 | |
1146 | case INDEX_op_mulu2_i32: | |
d9c769c6 | 1147 | if (temp_is_const(args[2]) && temp_is_const(args[3])) { |
1414968a RH |
1148 | uint32_t a = temps[args[2]].val; |
1149 | uint32_t b = temps[args[3]].val; | |
1150 | uint64_t r = (uint64_t)a * b; | |
1151 | TCGArg rl, rh; | |
a4ce099a RH |
1152 | TCGOp *op2 = insert_op_before(s, op, INDEX_op_movi_i32, 2); |
1153 | TCGArg *args2 = &s->gen_opparam_buf[op2->args]; | |
1414968a RH |
1154 | |
1155 | rl = args[0]; | |
1156 | rh = args[1]; | |
29f3ff8d AJ |
1157 | tcg_opt_gen_movi(s, op, args, rl, (int32_t)r); |
1158 | tcg_opt_gen_movi(s, op2, args2, rh, (int32_t)(r >> 32)); | |
c45cb8bb RH |
1159 | |
1160 | /* We've done all we need to do with the movi. Skip it. */ | |
1161 | oi_next = op2->next; | |
1414968a RH |
1162 | break; |
1163 | } | |
1164 | goto do_default; | |
6e14e91b | 1165 | |
bc1473ef | 1166 | case INDEX_op_brcond2_i32: |
6c4382f8 RH |
1167 | tmp = do_constant_folding_cond2(&args[0], &args[2], args[4]); |
1168 | if (tmp != 2) { | |
1169 | if (tmp) { | |
a763551a | 1170 | do_brcond_true: |
d193a14a | 1171 | reset_all_temps(nb_temps); |
c45cb8bb RH |
1172 | op->opc = INDEX_op_br; |
1173 | args[0] = args[5]; | |
6c4382f8 | 1174 | } else { |
a763551a | 1175 | do_brcond_false: |
0c627cdc | 1176 | tcg_op_remove(s, op); |
6c4382f8 RH |
1177 | } |
1178 | } else if ((args[4] == TCG_COND_LT || args[4] == TCG_COND_GE) | |
d9c769c6 AJ |
1179 | && temp_is_const(args[2]) && temps[args[2]].val == 0 |
1180 | && temp_is_const(args[3]) && temps[args[3]].val == 0) { | |
6c4382f8 RH |
1181 | /* Simplify LT/GE comparisons vs zero to a single compare |
1182 | vs the high word of the input. */ | |
a763551a | 1183 | do_brcond_high: |
d193a14a | 1184 | reset_all_temps(nb_temps); |
c45cb8bb RH |
1185 | op->opc = INDEX_op_brcond_i32; |
1186 | args[0] = args[1]; | |
1187 | args[1] = args[3]; | |
1188 | args[2] = args[4]; | |
1189 | args[3] = args[5]; | |
a763551a RH |
1190 | } else if (args[4] == TCG_COND_EQ) { |
1191 | /* Simplify EQ comparisons where one of the pairs | |
1192 | can be simplified. */ | |
1193 | tmp = do_constant_folding_cond(INDEX_op_brcond_i32, | |
1194 | args[0], args[2], TCG_COND_EQ); | |
1195 | if (tmp == 0) { | |
1196 | goto do_brcond_false; | |
1197 | } else if (tmp == 1) { | |
1198 | goto do_brcond_high; | |
1199 | } | |
1200 | tmp = do_constant_folding_cond(INDEX_op_brcond_i32, | |
1201 | args[1], args[3], TCG_COND_EQ); | |
1202 | if (tmp == 0) { | |
1203 | goto do_brcond_false; | |
1204 | } else if (tmp != 1) { | |
1205 | goto do_default; | |
1206 | } | |
1207 | do_brcond_low: | |
1208 | reset_all_temps(nb_temps); | |
c45cb8bb RH |
1209 | op->opc = INDEX_op_brcond_i32; |
1210 | args[1] = args[2]; | |
1211 | args[2] = args[4]; | |
1212 | args[3] = args[5]; | |
a763551a RH |
1213 | } else if (args[4] == TCG_COND_NE) { |
1214 | /* Simplify NE comparisons where one of the pairs | |
1215 | can be simplified. */ | |
1216 | tmp = do_constant_folding_cond(INDEX_op_brcond_i32, | |
1217 | args[0], args[2], TCG_COND_NE); | |
1218 | if (tmp == 0) { | |
1219 | goto do_brcond_high; | |
1220 | } else if (tmp == 1) { | |
1221 | goto do_brcond_true; | |
1222 | } | |
1223 | tmp = do_constant_folding_cond(INDEX_op_brcond_i32, | |
1224 | args[1], args[3], TCG_COND_NE); | |
1225 | if (tmp == 0) { | |
1226 | goto do_brcond_low; | |
1227 | } else if (tmp == 1) { | |
1228 | goto do_brcond_true; | |
1229 | } | |
1230 | goto do_default; | |
6c4382f8 RH |
1231 | } else { |
1232 | goto do_default; | |
bc1473ef | 1233 | } |
6c4382f8 | 1234 | break; |
bc1473ef RH |
1235 | |
1236 | case INDEX_op_setcond2_i32: | |
6c4382f8 RH |
1237 | tmp = do_constant_folding_cond2(&args[1], &args[3], args[5]); |
1238 | if (tmp != 2) { | |
a763551a | 1239 | do_setcond_const: |
ebd27391 | 1240 | tcg_opt_gen_movi(s, op, args, args[0], tmp); |
6c4382f8 | 1241 | } else if ((args[5] == TCG_COND_LT || args[5] == TCG_COND_GE) |
d9c769c6 AJ |
1242 | && temp_is_const(args[3]) && temps[args[3]].val == 0 |
1243 | && temp_is_const(args[4]) && temps[args[4]].val == 0) { | |
6c4382f8 RH |
1244 | /* Simplify LT/GE comparisons vs zero to a single compare |
1245 | vs the high word of the input. */ | |
a763551a | 1246 | do_setcond_high: |
66e61b55 | 1247 | reset_temp(args[0]); |
a763551a | 1248 | temps[args[0]].mask = 1; |
c45cb8bb RH |
1249 | op->opc = INDEX_op_setcond_i32; |
1250 | args[1] = args[2]; | |
1251 | args[2] = args[4]; | |
1252 | args[3] = args[5]; | |
a763551a RH |
1253 | } else if (args[5] == TCG_COND_EQ) { |
1254 | /* Simplify EQ comparisons where one of the pairs | |
1255 | can be simplified. */ | |
1256 | tmp = do_constant_folding_cond(INDEX_op_setcond_i32, | |
1257 | args[1], args[3], TCG_COND_EQ); | |
1258 | if (tmp == 0) { | |
1259 | goto do_setcond_const; | |
1260 | } else if (tmp == 1) { | |
1261 | goto do_setcond_high; | |
1262 | } | |
1263 | tmp = do_constant_folding_cond(INDEX_op_setcond_i32, | |
1264 | args[2], args[4], TCG_COND_EQ); | |
1265 | if (tmp == 0) { | |
1266 | goto do_setcond_high; | |
1267 | } else if (tmp != 1) { | |
1268 | goto do_default; | |
1269 | } | |
1270 | do_setcond_low: | |
1271 | reset_temp(args[0]); | |
1272 | temps[args[0]].mask = 1; | |
c45cb8bb RH |
1273 | op->opc = INDEX_op_setcond_i32; |
1274 | args[2] = args[3]; | |
1275 | args[3] = args[5]; | |
a763551a RH |
1276 | } else if (args[5] == TCG_COND_NE) { |
1277 | /* Simplify NE comparisons where one of the pairs | |
1278 | can be simplified. */ | |
1279 | tmp = do_constant_folding_cond(INDEX_op_setcond_i32, | |
1280 | args[1], args[3], TCG_COND_NE); | |
1281 | if (tmp == 0) { | |
1282 | goto do_setcond_high; | |
1283 | } else if (tmp == 1) { | |
1284 | goto do_setcond_const; | |
1285 | } | |
1286 | tmp = do_constant_folding_cond(INDEX_op_setcond_i32, | |
1287 | args[2], args[4], TCG_COND_NE); | |
1288 | if (tmp == 0) { | |
1289 | goto do_setcond_low; | |
1290 | } else if (tmp == 1) { | |
1291 | goto do_setcond_const; | |
1292 | } | |
1293 | goto do_default; | |
6c4382f8 RH |
1294 | } else { |
1295 | goto do_default; | |
bc1473ef | 1296 | } |
6c4382f8 | 1297 | break; |
bc1473ef | 1298 | |
8f2e8c07 | 1299 | case INDEX_op_call: |
cf066674 RH |
1300 | if (!(args[nb_oargs + nb_iargs + 1] |
1301 | & (TCG_CALL_NO_READ_GLOBALS | TCG_CALL_NO_WRITE_GLOBALS))) { | |
22613af4 | 1302 | for (i = 0; i < nb_globals; i++) { |
1208d7dd AJ |
1303 | if (test_bit(i, temps_used.l)) { |
1304 | reset_temp(i); | |
1305 | } | |
22613af4 KB |
1306 | } |
1307 | } | |
cf066674 | 1308 | goto do_reset_output; |
6e14e91b | 1309 | |
8f2e8c07 | 1310 | default: |
6e14e91b RH |
1311 | do_default: |
1312 | /* Default case: we know nothing about operation (or were unable | |
1313 | to compute the operation result) so no propagation is done. | |
1314 | We trash everything if the operation is the end of a basic | |
3a9d8b17 PB |
1315 | block, otherwise we only trash the output args. "mask" is |
1316 | the non-zero bits mask for the first output arg. */ | |
a2550660 | 1317 | if (def->flags & TCG_OPF_BB_END) { |
d193a14a | 1318 | reset_all_temps(nb_temps); |
a2550660 | 1319 | } else { |
cf066674 RH |
1320 | do_reset_output: |
1321 | for (i = 0; i < nb_oargs; i++) { | |
e590d4e6 | 1322 | reset_temp(args[i]); |
3031244b AJ |
1323 | /* Save the corresponding known-zero bits mask for the |
1324 | first output argument (only one supported so far). */ | |
1325 | if (i == 0) { | |
1326 | temps[args[i]].mask = mask; | |
1327 | } | |
a2550660 | 1328 | } |
22613af4 | 1329 | } |
8f2e8c07 KB |
1330 | break; |
1331 | } | |
1332 | } | |
8f2e8c07 | 1333 | } |