blob: ae081ab29c08f0641d5cec7bf514cb78f6d4e3b5 [file] [log] [blame]
Kirill Batuzov8f2e8c02011-07-07 16:37:12 +04001/*
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
Peter Maydell757e7252016-01-26 18:17:08 +000026#include "qemu/osdep.h"
Richard Henderson9531c072021-08-26 06:51:39 -070027#include "qemu/int128.h"
Philippe Mathieu-Daudédcb32f12020-01-01 12:23:00 +010028#include "tcg/tcg-op.h"
Richard Henderson90163902021-03-18 10:21:45 -060029#include "tcg-internal.h"
Kirill Batuzov8f2e8c02011-07-07 16:37:12 +040030
Kirill Batuzov8f2e8c02011-07-07 16:37:12 +040031#define CASE_OP_32_64(x) \
32 glue(glue(case INDEX_op_, x), _i32): \
33 glue(glue(case INDEX_op_, x), _i64)
Kirill Batuzov8f2e8c02011-07-07 16:37:12 +040034
Richard Henderson170ba882017-11-22 09:07:11 +010035#define CASE_OP_32_64_VEC(x) \
36 glue(glue(case INDEX_op_, x), _i32): \
37 glue(glue(case INDEX_op_, x), _i64): \
38 glue(glue(case INDEX_op_, x), _vec)
39
Richard Henderson6fcb98e2020-03-30 17:44:30 -070040typedef struct TempOptInfo {
Aurelien Jarnob41059d2015-07-27 12:41:44 +020041 bool is_const;
Richard Henderson63490392017-06-20 13:43:15 -070042 TCGTemp *prev_copy;
43 TCGTemp *next_copy;
Richard Henderson54795542020-09-06 16:21:32 -070044 uint64_t val;
Richard Hendersonb1fde412021-08-23 13:07:49 -070045 uint64_t z_mask; /* mask bit is 0 if and only if value bit is 0 */
Richard Henderson57fe5c62021-08-26 12:04:46 -070046 uint64_t s_mask; /* a left-aligned mask of clrsb(value) bits. */
Richard Henderson6fcb98e2020-03-30 17:44:30 -070047} TempOptInfo;
Kirill Batuzov22613af2011-07-07 16:37:13 +040048
Richard Henderson3b3f8472021-08-23 22:06:31 -070049typedef struct OptContext {
Richard Hendersondc849882021-08-24 07:13:45 -070050 TCGContext *tcg;
Richard Hendersond0ed5152021-08-24 07:38:39 -070051 TCGOp *prev_mb;
Richard Henderson3b3f8472021-08-23 22:06:31 -070052 TCGTempSet temps_used;
Richard Henderson137f1f42021-08-24 08:49:25 -070053
54 /* In flight values from optimization. */
Richard Hendersonfae450b2021-08-25 22:42:19 -070055 uint64_t a_mask; /* mask bit is 0 iff value identical to first input */
56 uint64_t z_mask; /* mask bit is 0 iff value bit is 0 */
Richard Henderson57fe5c62021-08-26 12:04:46 -070057 uint64_t s_mask; /* mask of clrsb(value) bits */
Richard Henderson67f84c92021-08-25 08:00:20 -070058 TCGType type;
Richard Henderson3b3f8472021-08-23 22:06:31 -070059} OptContext;
60
Richard Henderson57fe5c62021-08-26 12:04:46 -070061/* Calculate the smask for a specific value. */
62static uint64_t smask_from_value(uint64_t value)
63{
64 int rep = clrsb64(value);
65 return ~(~0ull >> rep);
66}
67
68/*
69 * Calculate the smask for a given set of known-zeros.
70 * If there are lots of zeros on the left, we can consider the remainder
71 * an unsigned field, and thus the corresponding signed field is one bit
72 * larger.
73 */
74static uint64_t smask_from_zmask(uint64_t zmask)
75{
76 /*
77 * Only the 0 bits are significant for zmask, thus the msb itself
78 * must be zero, else we have no sign information.
79 */
80 int rep = clz64(zmask);
81 if (rep == 0) {
82 return 0;
83 }
84 rep -= 1;
85 return ~(~0ull >> rep);
86}
87
Richard Henderson93a967f2021-08-26 13:24:59 -070088/*
89 * Recreate a properly left-aligned smask after manipulation.
90 * Some bit-shuffling, particularly shifts and rotates, may
91 * retain sign bits on the left, but may scatter disconnected
92 * sign bits on the right. Retain only what remains to the left.
93 */
94static uint64_t smask_from_smask(int64_t smask)
95{
96 /* Only the 1 bits are significant for smask */
97 return smask_from_zmask(~smask);
98}
99
Richard Henderson6fcb98e2020-03-30 17:44:30 -0700100static inline TempOptInfo *ts_info(TCGTemp *ts)
Aurelien Jarnod9c769c2015-07-27 12:41:44 +0200101{
Richard Henderson63490392017-06-20 13:43:15 -0700102 return ts->state_ptr;
Aurelien Jarnod9c769c2015-07-27 12:41:44 +0200103}
104
Richard Henderson6fcb98e2020-03-30 17:44:30 -0700105static inline TempOptInfo *arg_info(TCGArg arg)
Aurelien Jarnod9c769c2015-07-27 12:41:44 +0200106{
Richard Henderson63490392017-06-20 13:43:15 -0700107 return ts_info(arg_temp(arg));
108}
109
110static inline bool ts_is_const(TCGTemp *ts)
111{
112 return ts_info(ts)->is_const;
113}
114
115static inline bool arg_is_const(TCGArg arg)
116{
117 return ts_is_const(arg_temp(arg));
118}
119
120static inline bool ts_is_copy(TCGTemp *ts)
121{
122 return ts_info(ts)->next_copy != ts;
Aurelien Jarnod9c769c2015-07-27 12:41:44 +0200123}
124
Aurelien Jarnob41059d2015-07-27 12:41:44 +0200125/* Reset TEMP's state, possibly removing the temp for the list of copies. */
Richard Henderson63490392017-06-20 13:43:15 -0700126static void reset_ts(TCGTemp *ts)
Kirill Batuzov22613af2011-07-07 16:37:13 +0400127{
Richard Henderson6fcb98e2020-03-30 17:44:30 -0700128 TempOptInfo *ti = ts_info(ts);
129 TempOptInfo *pi = ts_info(ti->prev_copy);
130 TempOptInfo *ni = ts_info(ti->next_copy);
Richard Henderson63490392017-06-20 13:43:15 -0700131
132 ni->prev_copy = ti->prev_copy;
133 pi->next_copy = ti->next_copy;
134 ti->next_copy = ts;
135 ti->prev_copy = ts;
136 ti->is_const = false;
Richard Hendersonb1fde412021-08-23 13:07:49 -0700137 ti->z_mask = -1;
Richard Henderson57fe5c62021-08-26 12:04:46 -0700138 ti->s_mask = 0;
Richard Henderson63490392017-06-20 13:43:15 -0700139}
140
141static void reset_temp(TCGArg arg)
142{
143 reset_ts(arg_temp(arg));
Kirill Batuzov22613af2011-07-07 16:37:13 +0400144}
145
Aurelien Jarno1208d7d2015-07-27 12:41:44 +0200146/* Initialize and activate a temporary. */
Richard Henderson3b3f8472021-08-23 22:06:31 -0700147static void init_ts_info(OptContext *ctx, TCGTemp *ts)
Aurelien Jarno1208d7d2015-07-27 12:41:44 +0200148{
Richard Henderson63490392017-06-20 13:43:15 -0700149 size_t idx = temp_idx(ts);
Richard Henderson8f17a972020-03-30 19:52:02 -0700150 TempOptInfo *ti;
Richard Henderson63490392017-06-20 13:43:15 -0700151
Richard Henderson3b3f8472021-08-23 22:06:31 -0700152 if (test_bit(idx, ctx->temps_used.l)) {
Richard Henderson8f17a972020-03-30 19:52:02 -0700153 return;
154 }
Richard Henderson3b3f8472021-08-23 22:06:31 -0700155 set_bit(idx, ctx->temps_used.l);
Richard Henderson8f17a972020-03-30 19:52:02 -0700156
157 ti = ts->state_ptr;
158 if (ti == NULL) {
159 ti = tcg_malloc(sizeof(TempOptInfo));
Richard Henderson63490392017-06-20 13:43:15 -0700160 ts->state_ptr = ti;
Richard Henderson8f17a972020-03-30 19:52:02 -0700161 }
162
163 ti->next_copy = ts;
164 ti->prev_copy = ts;
165 if (ts->kind == TEMP_CONST) {
166 ti->is_const = true;
167 ti->val = ts->val;
Richard Hendersonb1fde412021-08-23 13:07:49 -0700168 ti->z_mask = ts->val;
Richard Henderson57fe5c62021-08-26 12:04:46 -0700169 ti->s_mask = smask_from_value(ts->val);
Richard Henderson8f17a972020-03-30 19:52:02 -0700170 } else {
171 ti->is_const = false;
Richard Hendersonb1fde412021-08-23 13:07:49 -0700172 ti->z_mask = -1;
Richard Henderson57fe5c62021-08-26 12:04:46 -0700173 ti->s_mask = 0;
Aurelien Jarno1208d7d2015-07-27 12:41:44 +0200174 }
175}
176
Richard Henderson63490392017-06-20 13:43:15 -0700177static TCGTemp *find_better_copy(TCGContext *s, TCGTemp *ts)
Aurelien Jarnoe590d4e2012-09-11 12:31:21 +0200178{
Richard Henderson4c868ce2020-04-23 09:02:23 -0700179 TCGTemp *i, *g, *l;
Aurelien Jarnoe590d4e2012-09-11 12:31:21 +0200180
Richard Henderson4c868ce2020-04-23 09:02:23 -0700181 /* If this is already readonly, we can't do better. */
182 if (temp_readonly(ts)) {
Richard Henderson63490392017-06-20 13:43:15 -0700183 return ts;
Aurelien Jarnoe590d4e2012-09-11 12:31:21 +0200184 }
185
Richard Henderson4c868ce2020-04-23 09:02:23 -0700186 g = l = NULL;
Richard Henderson63490392017-06-20 13:43:15 -0700187 for (i = ts_info(ts)->next_copy; i != ts; i = ts_info(i)->next_copy) {
Richard Henderson4c868ce2020-04-23 09:02:23 -0700188 if (temp_readonly(i)) {
Aurelien Jarnoe590d4e2012-09-11 12:31:21 +0200189 return i;
Richard Henderson4c868ce2020-04-23 09:02:23 -0700190 } else if (i->kind > ts->kind) {
191 if (i->kind == TEMP_GLOBAL) {
192 g = i;
193 } else if (i->kind == TEMP_LOCAL) {
194 l = i;
Aurelien Jarnoe590d4e2012-09-11 12:31:21 +0200195 }
196 }
197 }
198
Richard Henderson4c868ce2020-04-23 09:02:23 -0700199 /* If we didn't find a better representation, return the same temp. */
200 return g ? g : l ? l : ts;
Aurelien Jarnoe590d4e2012-09-11 12:31:21 +0200201}
202
Richard Henderson63490392017-06-20 13:43:15 -0700203static bool ts_are_copies(TCGTemp *ts1, TCGTemp *ts2)
Aurelien Jarnoe590d4e2012-09-11 12:31:21 +0200204{
Richard Henderson63490392017-06-20 13:43:15 -0700205 TCGTemp *i;
Aurelien Jarnoe590d4e2012-09-11 12:31:21 +0200206
Richard Henderson63490392017-06-20 13:43:15 -0700207 if (ts1 == ts2) {
Aurelien Jarnoe590d4e2012-09-11 12:31:21 +0200208 return true;
209 }
210
Richard Henderson63490392017-06-20 13:43:15 -0700211 if (!ts_is_copy(ts1) || !ts_is_copy(ts2)) {
Aurelien Jarnoe590d4e2012-09-11 12:31:21 +0200212 return false;
213 }
214
Richard Henderson63490392017-06-20 13:43:15 -0700215 for (i = ts_info(ts1)->next_copy; i != ts1; i = ts_info(i)->next_copy) {
216 if (i == ts2) {
Aurelien Jarnoe590d4e2012-09-11 12:31:21 +0200217 return true;
218 }
219 }
220
221 return false;
222}
223
Richard Henderson63490392017-06-20 13:43:15 -0700224static bool args_are_copies(TCGArg arg1, TCGArg arg2)
225{
226 return ts_are_copies(arg_temp(arg1), arg_temp(arg2));
227}
228
Richard Henderson6b99d5b2021-08-24 10:57:56 -0700229static bool tcg_opt_gen_mov(OptContext *ctx, TCGOp *op, TCGArg dst, TCGArg src)
Kirill Batuzov22613af2011-07-07 16:37:13 +0400230{
Richard Henderson63490392017-06-20 13:43:15 -0700231 TCGTemp *dst_ts = arg_temp(dst);
232 TCGTemp *src_ts = arg_temp(src);
Richard Henderson6fcb98e2020-03-30 17:44:30 -0700233 TempOptInfo *di;
234 TempOptInfo *si;
Richard Henderson63490392017-06-20 13:43:15 -0700235 TCGOpcode new_op;
236
237 if (ts_are_copies(dst_ts, src_ts)) {
Richard Hendersondc849882021-08-24 07:13:45 -0700238 tcg_op_remove(ctx->tcg, op);
Richard Henderson6b99d5b2021-08-24 10:57:56 -0700239 return true;
Aurelien Jarno53657182015-06-04 21:53:25 +0200240 }
241
Richard Henderson63490392017-06-20 13:43:15 -0700242 reset_ts(dst_ts);
243 di = ts_info(dst_ts);
244 si = ts_info(src_ts);
Richard Henderson67f84c92021-08-25 08:00:20 -0700245
246 switch (ctx->type) {
247 case TCG_TYPE_I32:
Richard Henderson170ba882017-11-22 09:07:11 +0100248 new_op = INDEX_op_mov_i32;
Richard Henderson67f84c92021-08-25 08:00:20 -0700249 break;
250 case TCG_TYPE_I64:
251 new_op = INDEX_op_mov_i64;
252 break;
253 case TCG_TYPE_V64:
254 case TCG_TYPE_V128:
255 case TCG_TYPE_V256:
256 /* TCGOP_VECL and TCGOP_VECE remain unchanged. */
257 new_op = INDEX_op_mov_vec;
258 break;
259 default:
260 g_assert_not_reached();
Richard Henderson170ba882017-11-22 09:07:11 +0100261 }
Richard Hendersonc45cb8b2014-09-19 13:49:15 -0700262 op->opc = new_op;
Richard Henderson63490392017-06-20 13:43:15 -0700263 op->args[0] = dst;
264 op->args[1] = src;
Richard Hendersona62f6f52014-05-22 10:59:12 -0700265
Richard Hendersonfaa2e102021-08-26 09:03:59 -0700266 di->z_mask = si->z_mask;
Richard Henderson57fe5c62021-08-26 12:04:46 -0700267 di->s_mask = si->s_mask;
Richard Henderson24666ba2014-05-22 11:14:10 -0700268
Richard Henderson63490392017-06-20 13:43:15 -0700269 if (src_ts->type == dst_ts->type) {
Richard Henderson6fcb98e2020-03-30 17:44:30 -0700270 TempOptInfo *ni = ts_info(si->next_copy);
Richard Henderson63490392017-06-20 13:43:15 -0700271
272 di->next_copy = si->next_copy;
273 di->prev_copy = src_ts;
274 ni->prev_copy = dst_ts;
275 si->next_copy = dst_ts;
276 di->is_const = si->is_const;
277 di->val = si->val;
Paolo Bonzini3a9d8b12013-01-11 15:42:52 -0800278 }
Richard Henderson6b99d5b2021-08-24 10:57:56 -0700279 return true;
Kirill Batuzov22613af2011-07-07 16:37:13 +0400280}
281
Richard Henderson6b99d5b2021-08-24 10:57:56 -0700282static bool tcg_opt_gen_movi(OptContext *ctx, TCGOp *op,
Richard Hendersondc849882021-08-24 07:13:45 -0700283 TCGArg dst, uint64_t val)
Richard Henderson8fe35e02020-03-30 20:42:43 -0700284{
Richard Hendersonfaa2e102021-08-26 09:03:59 -0700285 TCGTemp *tv;
Richard Henderson67f84c92021-08-25 08:00:20 -0700286
Richard Hendersonfaa2e102021-08-26 09:03:59 -0700287 if (ctx->type == TCG_TYPE_I32) {
288 val = (int32_t)val;
289 }
290
291 /* Convert movi to mov with constant temp. */
292 tv = tcg_constant_internal(ctx->type, val);
Richard Henderson3b3f8472021-08-23 22:06:31 -0700293 init_ts_info(ctx, tv);
Richard Henderson6b99d5b2021-08-24 10:57:56 -0700294 return tcg_opt_gen_mov(ctx, op, dst, temp_arg(tv));
Richard Henderson8fe35e02020-03-30 20:42:43 -0700295}
296
Richard Henderson54795542020-09-06 16:21:32 -0700297static uint64_t do_constant_folding_2(TCGOpcode op, uint64_t x, uint64_t y)
Kirill Batuzov53108fb2011-07-07 16:37:14 +0400298{
Richard Henderson03271522013-08-14 14:35:56 -0700299 uint64_t l64, h64;
300
Kirill Batuzov53108fb2011-07-07 16:37:14 +0400301 switch (op) {
302 CASE_OP_32_64(add):
303 return x + y;
304
305 CASE_OP_32_64(sub):
306 return x - y;
307
308 CASE_OP_32_64(mul):
309 return x * y;
310
Richard Hendersonc578ff12021-12-16 06:07:25 -0800311 CASE_OP_32_64_VEC(and):
Kirill Batuzov9a810902011-07-07 16:37:15 +0400312 return x & y;
313
Richard Hendersonc578ff12021-12-16 06:07:25 -0800314 CASE_OP_32_64_VEC(or):
Kirill Batuzov9a810902011-07-07 16:37:15 +0400315 return x | y;
316
Richard Hendersonc578ff12021-12-16 06:07:25 -0800317 CASE_OP_32_64_VEC(xor):
Kirill Batuzov9a810902011-07-07 16:37:15 +0400318 return x ^ y;
319
Kirill Batuzov55c09752011-07-07 16:37:16 +0400320 case INDEX_op_shl_i32:
Richard Henderson50c5c4d2014-03-18 07:45:39 -0700321 return (uint32_t)x << (y & 31);
Kirill Batuzov55c09752011-07-07 16:37:16 +0400322
Kirill Batuzov55c09752011-07-07 16:37:16 +0400323 case INDEX_op_shl_i64:
Richard Henderson50c5c4d2014-03-18 07:45:39 -0700324 return (uint64_t)x << (y & 63);
Kirill Batuzov55c09752011-07-07 16:37:16 +0400325
326 case INDEX_op_shr_i32:
Richard Henderson50c5c4d2014-03-18 07:45:39 -0700327 return (uint32_t)x >> (y & 31);
Kirill Batuzov55c09752011-07-07 16:37:16 +0400328
Kirill Batuzov55c09752011-07-07 16:37:16 +0400329 case INDEX_op_shr_i64:
Richard Henderson50c5c4d2014-03-18 07:45:39 -0700330 return (uint64_t)x >> (y & 63);
Kirill Batuzov55c09752011-07-07 16:37:16 +0400331
332 case INDEX_op_sar_i32:
Richard Henderson50c5c4d2014-03-18 07:45:39 -0700333 return (int32_t)x >> (y & 31);
Kirill Batuzov55c09752011-07-07 16:37:16 +0400334
Kirill Batuzov55c09752011-07-07 16:37:16 +0400335 case INDEX_op_sar_i64:
Richard Henderson50c5c4d2014-03-18 07:45:39 -0700336 return (int64_t)x >> (y & 63);
Kirill Batuzov55c09752011-07-07 16:37:16 +0400337
338 case INDEX_op_rotr_i32:
Richard Henderson50c5c4d2014-03-18 07:45:39 -0700339 return ror32(x, y & 31);
Kirill Batuzov55c09752011-07-07 16:37:16 +0400340
Kirill Batuzov55c09752011-07-07 16:37:16 +0400341 case INDEX_op_rotr_i64:
Richard Henderson50c5c4d2014-03-18 07:45:39 -0700342 return ror64(x, y & 63);
Kirill Batuzov55c09752011-07-07 16:37:16 +0400343
344 case INDEX_op_rotl_i32:
Richard Henderson50c5c4d2014-03-18 07:45:39 -0700345 return rol32(x, y & 31);
Kirill Batuzov55c09752011-07-07 16:37:16 +0400346
Kirill Batuzov55c09752011-07-07 16:37:16 +0400347 case INDEX_op_rotl_i64:
Richard Henderson50c5c4d2014-03-18 07:45:39 -0700348 return rol64(x, y & 63);
Kirill Batuzov55c09752011-07-07 16:37:16 +0400349
Richard Hendersonc578ff12021-12-16 06:07:25 -0800350 CASE_OP_32_64_VEC(not):
Kirill Batuzova640f032011-07-07 16:37:17 +0400351 return ~x;
352
Richard Hendersoncb25c802011-08-17 14:11:47 -0700353 CASE_OP_32_64(neg):
354 return -x;
355
Richard Hendersonc578ff12021-12-16 06:07:25 -0800356 CASE_OP_32_64_VEC(andc):
Richard Hendersoncb25c802011-08-17 14:11:47 -0700357 return x & ~y;
358
Richard Hendersonc578ff12021-12-16 06:07:25 -0800359 CASE_OP_32_64_VEC(orc):
Richard Hendersoncb25c802011-08-17 14:11:47 -0700360 return x | ~y;
361
Richard Hendersoned523472021-12-16 11:17:46 -0800362 CASE_OP_32_64_VEC(eqv):
Richard Hendersoncb25c802011-08-17 14:11:47 -0700363 return ~(x ^ y);
364
Richard Hendersoned523472021-12-16 11:17:46 -0800365 CASE_OP_32_64_VEC(nand):
Richard Hendersoncb25c802011-08-17 14:11:47 -0700366 return ~(x & y);
367
Richard Hendersoned523472021-12-16 11:17:46 -0800368 CASE_OP_32_64_VEC(nor):
Richard Hendersoncb25c802011-08-17 14:11:47 -0700369 return ~(x | y);
370
Richard Henderson0e28d002016-11-16 09:23:28 +0100371 case INDEX_op_clz_i32:
372 return (uint32_t)x ? clz32(x) : y;
373
374 case INDEX_op_clz_i64:
375 return x ? clz64(x) : y;
376
377 case INDEX_op_ctz_i32:
378 return (uint32_t)x ? ctz32(x) : y;
379
380 case INDEX_op_ctz_i64:
381 return x ? ctz64(x) : y;
382
Richard Hendersona768e4e2016-11-21 11:13:39 +0100383 case INDEX_op_ctpop_i32:
384 return ctpop32(x);
385
386 case INDEX_op_ctpop_i64:
387 return ctpop64(x);
388
Richard Henderson25c4d9c2011-08-17 14:11:46 -0700389 CASE_OP_32_64(ext8s):
Kirill Batuzova640f032011-07-07 16:37:17 +0400390 return (int8_t)x;
391
Richard Henderson25c4d9c2011-08-17 14:11:46 -0700392 CASE_OP_32_64(ext16s):
Kirill Batuzova640f032011-07-07 16:37:17 +0400393 return (int16_t)x;
394
Richard Henderson25c4d9c2011-08-17 14:11:46 -0700395 CASE_OP_32_64(ext8u):
Kirill Batuzova640f032011-07-07 16:37:17 +0400396 return (uint8_t)x;
397
Richard Henderson25c4d9c2011-08-17 14:11:46 -0700398 CASE_OP_32_64(ext16u):
Kirill Batuzova640f032011-07-07 16:37:17 +0400399 return (uint16_t)x;
400
Richard Henderson64985942018-11-20 08:53:34 +0100401 CASE_OP_32_64(bswap16):
Richard Henderson0b76ff82021-06-13 13:04:00 -0700402 x = bswap16(x);
403 return y & TCG_BSWAP_OS ? (int16_t)x : x;
Richard Henderson64985942018-11-20 08:53:34 +0100404
405 CASE_OP_32_64(bswap32):
Richard Henderson0b76ff82021-06-13 13:04:00 -0700406 x = bswap32(x);
407 return y & TCG_BSWAP_OS ? (int32_t)x : x;
Richard Henderson64985942018-11-20 08:53:34 +0100408
409 case INDEX_op_bswap64_i64:
410 return bswap64(x);
411
Aurelien Jarno8bcb5c82015-07-27 12:41:45 +0200412 case INDEX_op_ext_i32_i64:
Kirill Batuzova640f032011-07-07 16:37:17 +0400413 case INDEX_op_ext32s_i64:
414 return (int32_t)x;
415
Aurelien Jarno8bcb5c82015-07-27 12:41:45 +0200416 case INDEX_op_extu_i32_i64:
Richard Henderson609ad702015-07-24 07:16:00 -0700417 case INDEX_op_extrl_i64_i32:
Kirill Batuzova640f032011-07-07 16:37:17 +0400418 case INDEX_op_ext32u_i64:
419 return (uint32_t)x;
Kirill Batuzova640f032011-07-07 16:37:17 +0400420
Richard Henderson609ad702015-07-24 07:16:00 -0700421 case INDEX_op_extrh_i64_i32:
422 return (uint64_t)x >> 32;
423
Richard Henderson03271522013-08-14 14:35:56 -0700424 case INDEX_op_muluh_i32:
425 return ((uint64_t)(uint32_t)x * (uint32_t)y) >> 32;
426 case INDEX_op_mulsh_i32:
427 return ((int64_t)(int32_t)x * (int32_t)y) >> 32;
428
429 case INDEX_op_muluh_i64:
430 mulu64(&l64, &h64, x, y);
431 return h64;
432 case INDEX_op_mulsh_i64:
433 muls64(&l64, &h64, x, y);
434 return h64;
435
Richard Henderson01547f72013-08-14 15:22:46 -0700436 case INDEX_op_div_i32:
437 /* Avoid crashing on divide by zero, otherwise undefined. */
438 return (int32_t)x / ((int32_t)y ? : 1);
439 case INDEX_op_divu_i32:
440 return (uint32_t)x / ((uint32_t)y ? : 1);
441 case INDEX_op_div_i64:
442 return (int64_t)x / ((int64_t)y ? : 1);
443 case INDEX_op_divu_i64:
444 return (uint64_t)x / ((uint64_t)y ? : 1);
445
446 case INDEX_op_rem_i32:
447 return (int32_t)x % ((int32_t)y ? : 1);
448 case INDEX_op_remu_i32:
449 return (uint32_t)x % ((uint32_t)y ? : 1);
450 case INDEX_op_rem_i64:
451 return (int64_t)x % ((int64_t)y ? : 1);
452 case INDEX_op_remu_i64:
453 return (uint64_t)x % ((uint64_t)y ? : 1);
454
Kirill Batuzov53108fb2011-07-07 16:37:14 +0400455 default:
456 fprintf(stderr,
457 "Unrecognized operation %d in do_constant_folding.\n", op);
458 tcg_abort();
459 }
460}
461
Richard Henderson67f84c92021-08-25 08:00:20 -0700462static uint64_t do_constant_folding(TCGOpcode op, TCGType type,
463 uint64_t x, uint64_t y)
Kirill Batuzov53108fb2011-07-07 16:37:14 +0400464{
Richard Henderson54795542020-09-06 16:21:32 -0700465 uint64_t res = do_constant_folding_2(op, x, y);
Richard Henderson67f84c92021-08-25 08:00:20 -0700466 if (type == TCG_TYPE_I32) {
Aurelien Jarno29f3ff82015-07-10 18:03:31 +0200467 res = (int32_t)res;
Kirill Batuzov53108fb2011-07-07 16:37:14 +0400468 }
Kirill Batuzov53108fb2011-07-07 16:37:14 +0400469 return res;
470}
471
Richard Henderson9519da72012-10-02 11:32:26 -0700472static bool do_constant_folding_cond_32(uint32_t x, uint32_t y, TCGCond c)
473{
474 switch (c) {
475 case TCG_COND_EQ:
476 return x == y;
477 case TCG_COND_NE:
478 return x != y;
479 case TCG_COND_LT:
480 return (int32_t)x < (int32_t)y;
481 case TCG_COND_GE:
482 return (int32_t)x >= (int32_t)y;
483 case TCG_COND_LE:
484 return (int32_t)x <= (int32_t)y;
485 case TCG_COND_GT:
486 return (int32_t)x > (int32_t)y;
487 case TCG_COND_LTU:
488 return x < y;
489 case TCG_COND_GEU:
490 return x >= y;
491 case TCG_COND_LEU:
492 return x <= y;
493 case TCG_COND_GTU:
494 return x > y;
495 default:
496 tcg_abort();
497 }
498}
499
500static bool do_constant_folding_cond_64(uint64_t x, uint64_t y, TCGCond c)
501{
502 switch (c) {
503 case TCG_COND_EQ:
504 return x == y;
505 case TCG_COND_NE:
506 return x != y;
507 case TCG_COND_LT:
508 return (int64_t)x < (int64_t)y;
509 case TCG_COND_GE:
510 return (int64_t)x >= (int64_t)y;
511 case TCG_COND_LE:
512 return (int64_t)x <= (int64_t)y;
513 case TCG_COND_GT:
514 return (int64_t)x > (int64_t)y;
515 case TCG_COND_LTU:
516 return x < y;
517 case TCG_COND_GEU:
518 return x >= y;
519 case TCG_COND_LEU:
520 return x <= y;
521 case TCG_COND_GTU:
522 return x > y;
523 default:
524 tcg_abort();
525 }
526}
527
528static bool do_constant_folding_cond_eq(TCGCond c)
529{
530 switch (c) {
531 case TCG_COND_GT:
532 case TCG_COND_LTU:
533 case TCG_COND_LT:
534 case TCG_COND_GTU:
535 case TCG_COND_NE:
536 return 0;
537 case TCG_COND_GE:
538 case TCG_COND_GEU:
539 case TCG_COND_LE:
540 case TCG_COND_LEU:
541 case TCG_COND_EQ:
542 return 1;
543 default:
544 tcg_abort();
545 }
546}
547
Richard Henderson8d57bf12021-08-24 08:34:27 -0700548/*
549 * Return -1 if the condition can't be simplified,
550 * and the result of the condition (0 or 1) if it can.
551 */
Richard Henderson67f84c92021-08-25 08:00:20 -0700552static int do_constant_folding_cond(TCGType type, TCGArg x,
Richard Henderson8d57bf12021-08-24 08:34:27 -0700553 TCGArg y, TCGCond c)
Aurelien Jarnof8dd19e2012-09-06 16:47:14 +0200554{
Richard Henderson63490392017-06-20 13:43:15 -0700555 if (arg_is_const(x) && arg_is_const(y)) {
Alex Bennée9becc362022-02-09 11:21:42 +0000556 uint64_t xv = arg_info(x)->val;
557 uint64_t yv = arg_info(y)->val;
558
Richard Henderson67f84c92021-08-25 08:00:20 -0700559 switch (type) {
560 case TCG_TYPE_I32:
Richard Henderson170ba882017-11-22 09:07:11 +0100561 return do_constant_folding_cond_32(xv, yv, c);
Richard Henderson67f84c92021-08-25 08:00:20 -0700562 case TCG_TYPE_I64:
563 return do_constant_folding_cond_64(xv, yv, c);
564 default:
565 /* Only scalar comparisons are optimizable */
566 return -1;
Aurelien Jarnof8dd19e2012-09-06 16:47:14 +0200567 }
Richard Henderson63490392017-06-20 13:43:15 -0700568 } else if (args_are_copies(x, y)) {
Richard Henderson9519da72012-10-02 11:32:26 -0700569 return do_constant_folding_cond_eq(c);
Alex Bennée9becc362022-02-09 11:21:42 +0000570 } else if (arg_is_const(y) && arg_info(y)->val == 0) {
Aurelien Jarnob336ceb2012-09-18 19:37:00 +0200571 switch (c) {
572 case TCG_COND_LTU:
573 return 0;
574 case TCG_COND_GEU:
575 return 1;
576 default:
Richard Henderson8d57bf12021-08-24 08:34:27 -0700577 return -1;
Aurelien Jarnob336ceb2012-09-18 19:37:00 +0200578 }
Aurelien Jarnof8dd19e2012-09-06 16:47:14 +0200579 }
Richard Henderson8d57bf12021-08-24 08:34:27 -0700580 return -1;
Aurelien Jarnof8dd19e2012-09-06 16:47:14 +0200581}
582
Richard Henderson8d57bf12021-08-24 08:34:27 -0700583/*
584 * Return -1 if the condition can't be simplified,
585 * and the result of the condition (0 or 1) if it can.
586 */
587static int do_constant_folding_cond2(TCGArg *p1, TCGArg *p2, TCGCond c)
Richard Henderson6c4382f2012-10-02 11:32:27 -0700588{
589 TCGArg al = p1[0], ah = p1[1];
590 TCGArg bl = p2[0], bh = p2[1];
591
Richard Henderson63490392017-06-20 13:43:15 -0700592 if (arg_is_const(bl) && arg_is_const(bh)) {
593 tcg_target_ulong blv = arg_info(bl)->val;
594 tcg_target_ulong bhv = arg_info(bh)->val;
595 uint64_t b = deposit64(blv, 32, 32, bhv);
Richard Henderson6c4382f2012-10-02 11:32:27 -0700596
Richard Henderson63490392017-06-20 13:43:15 -0700597 if (arg_is_const(al) && arg_is_const(ah)) {
598 tcg_target_ulong alv = arg_info(al)->val;
599 tcg_target_ulong ahv = arg_info(ah)->val;
600 uint64_t a = deposit64(alv, 32, 32, ahv);
Richard Henderson6c4382f2012-10-02 11:32:27 -0700601 return do_constant_folding_cond_64(a, b, c);
602 }
603 if (b == 0) {
604 switch (c) {
605 case TCG_COND_LTU:
606 return 0;
607 case TCG_COND_GEU:
608 return 1;
609 default:
610 break;
611 }
612 }
613 }
Richard Henderson63490392017-06-20 13:43:15 -0700614 if (args_are_copies(al, bl) && args_are_copies(ah, bh)) {
Richard Henderson6c4382f2012-10-02 11:32:27 -0700615 return do_constant_folding_cond_eq(c);
616 }
Richard Henderson8d57bf12021-08-24 08:34:27 -0700617 return -1;
Richard Henderson6c4382f2012-10-02 11:32:27 -0700618}
619
Richard Henderson7a2f7082021-08-26 07:06:39 -0700620/**
621 * swap_commutative:
622 * @dest: TCGArg of the destination argument, or NO_DEST.
623 * @p1: first paired argument
624 * @p2: second paired argument
625 *
626 * If *@p1 is a constant and *@p2 is not, swap.
627 * If *@p2 matches @dest, swap.
628 * Return true if a swap was performed.
629 */
630
631#define NO_DEST temp_arg(NULL)
632
Richard Henderson24c9ae42012-10-02 11:32:21 -0700633static bool swap_commutative(TCGArg dest, TCGArg *p1, TCGArg *p2)
634{
635 TCGArg a1 = *p1, a2 = *p2;
636 int sum = 0;
Richard Henderson63490392017-06-20 13:43:15 -0700637 sum += arg_is_const(a1);
638 sum -= arg_is_const(a2);
Richard Henderson24c9ae42012-10-02 11:32:21 -0700639
640 /* Prefer the constant in second argument, and then the form
641 op a, a, b, which is better handled on non-RISC hosts. */
642 if (sum > 0 || (sum == 0 && dest == a2)) {
643 *p1 = a2;
644 *p2 = a1;
645 return true;
646 }
647 return false;
648}
649
Richard Henderson0bfcb862012-10-02 11:32:23 -0700650static bool swap_commutative2(TCGArg *p1, TCGArg *p2)
651{
652 int sum = 0;
Richard Henderson63490392017-06-20 13:43:15 -0700653 sum += arg_is_const(p1[0]);
654 sum += arg_is_const(p1[1]);
655 sum -= arg_is_const(p2[0]);
656 sum -= arg_is_const(p2[1]);
Richard Henderson0bfcb862012-10-02 11:32:23 -0700657 if (sum > 0) {
658 TCGArg t;
659 t = p1[0], p1[0] = p2[0], p2[0] = t;
660 t = p1[1], p1[1] = p2[1], p2[1] = t;
661 return true;
662 }
663 return false;
664}
665
Richard Hendersone2577ea2021-08-24 08:00:48 -0700666static void init_arguments(OptContext *ctx, TCGOp *op, int nb_args)
667{
668 for (int i = 0; i < nb_args; i++) {
669 TCGTemp *ts = arg_temp(op->args[i]);
670 if (ts) {
671 init_ts_info(ctx, ts);
672 }
673 }
674}
675
Richard Henderson8774dde2021-08-24 08:04:47 -0700676static void copy_propagate(OptContext *ctx, TCGOp *op,
677 int nb_oargs, int nb_iargs)
678{
679 TCGContext *s = ctx->tcg;
680
681 for (int i = nb_oargs; i < nb_oargs + nb_iargs; i++) {
682 TCGTemp *ts = arg_temp(op->args[i]);
683 if (ts && ts_is_copy(ts)) {
684 op->args[i] = temp_arg(find_better_copy(s, ts));
685 }
686 }
687}
688
Richard Henderson137f1f42021-08-24 08:49:25 -0700689static void finish_folding(OptContext *ctx, TCGOp *op)
690{
691 const TCGOpDef *def = &tcg_op_defs[op->opc];
692 int i, nb_oargs;
693
694 /*
695 * For an opcode that ends a BB, reset all temp data.
696 * We do no cross-BB optimization.
697 */
698 if (def->flags & TCG_OPF_BB_END) {
699 memset(&ctx->temps_used, 0, sizeof(ctx->temps_used));
700 ctx->prev_mb = NULL;
701 return;
702 }
703
704 nb_oargs = def->nb_oargs;
705 for (i = 0; i < nb_oargs; i++) {
Richard Henderson57fe5c62021-08-26 12:04:46 -0700706 TCGTemp *ts = arg_temp(op->args[i]);
707 reset_ts(ts);
Richard Henderson137f1f42021-08-24 08:49:25 -0700708 /*
Richard Henderson57fe5c62021-08-26 12:04:46 -0700709 * Save the corresponding known-zero/sign bits mask for the
Richard Henderson137f1f42021-08-24 08:49:25 -0700710 * first output argument (only one supported so far).
711 */
712 if (i == 0) {
Richard Henderson57fe5c62021-08-26 12:04:46 -0700713 ts_info(ts)->z_mask = ctx->z_mask;
714 ts_info(ts)->s_mask = ctx->s_mask;
Richard Henderson137f1f42021-08-24 08:49:25 -0700715 }
716 }
717}
718
Richard Henderson2f9f08b2021-08-25 12:03:48 -0700719/*
720 * The fold_* functions return true when processing is complete,
721 * usually by folding the operation to a constant or to a copy,
722 * and calling tcg_opt_gen_{mov,movi}. They may do other things,
723 * like collect information about the value produced, for use in
724 * optimizing a subsequent operation.
725 *
726 * These first fold_* functions are all helpers, used by other
727 * folders for more specific operations.
728 */
729
730static bool fold_const1(OptContext *ctx, TCGOp *op)
731{
732 if (arg_is_const(op->args[1])) {
733 uint64_t t;
734
735 t = arg_info(op->args[1])->val;
Richard Henderson67f84c92021-08-25 08:00:20 -0700736 t = do_constant_folding(op->opc, ctx->type, t, 0);
Richard Henderson2f9f08b2021-08-25 12:03:48 -0700737 return tcg_opt_gen_movi(ctx, op, op->args[0], t);
738 }
739 return false;
740}
741
742static bool fold_const2(OptContext *ctx, TCGOp *op)
743{
744 if (arg_is_const(op->args[1]) && arg_is_const(op->args[2])) {
745 uint64_t t1 = arg_info(op->args[1])->val;
746 uint64_t t2 = arg_info(op->args[2])->val;
747
Richard Henderson67f84c92021-08-25 08:00:20 -0700748 t1 = do_constant_folding(op->opc, ctx->type, t1, t2);
Richard Henderson2f9f08b2021-08-25 12:03:48 -0700749 return tcg_opt_gen_movi(ctx, op, op->args[0], t1);
750 }
751 return false;
752}
753
Richard Hendersonc578ff12021-12-16 06:07:25 -0800754static bool fold_commutative(OptContext *ctx, TCGOp *op)
755{
756 swap_commutative(op->args[0], &op->args[1], &op->args[2]);
757 return false;
758}
759
Richard Henderson7a2f7082021-08-26 07:06:39 -0700760static bool fold_const2_commutative(OptContext *ctx, TCGOp *op)
761{
762 swap_commutative(op->args[0], &op->args[1], &op->args[2]);
763 return fold_const2(ctx, op);
764}
765
Richard Hendersonfae450b2021-08-25 22:42:19 -0700766static bool fold_masks(OptContext *ctx, TCGOp *op)
767{
768 uint64_t a_mask = ctx->a_mask;
769 uint64_t z_mask = ctx->z_mask;
Richard Henderson57fe5c62021-08-26 12:04:46 -0700770 uint64_t s_mask = ctx->s_mask;
Richard Hendersonfae450b2021-08-25 22:42:19 -0700771
772 /*
Richard Hendersonfaa2e102021-08-26 09:03:59 -0700773 * 32-bit ops generate 32-bit results, which for the purpose of
774 * simplifying tcg are sign-extended. Certainly that's how we
775 * represent our constants elsewhere. Note that the bits will
776 * be reset properly for a 64-bit value when encountering the
777 * type changing opcodes.
Richard Hendersonfae450b2021-08-25 22:42:19 -0700778 */
779 if (ctx->type == TCG_TYPE_I32) {
Richard Hendersonfaa2e102021-08-26 09:03:59 -0700780 a_mask = (int32_t)a_mask;
781 z_mask = (int32_t)z_mask;
Richard Henderson57fe5c62021-08-26 12:04:46 -0700782 s_mask |= MAKE_64BIT_MASK(32, 32);
Richard Hendersonfaa2e102021-08-26 09:03:59 -0700783 ctx->z_mask = z_mask;
Richard Henderson57fe5c62021-08-26 12:04:46 -0700784 ctx->s_mask = s_mask;
Richard Hendersonfae450b2021-08-25 22:42:19 -0700785 }
786
787 if (z_mask == 0) {
788 return tcg_opt_gen_movi(ctx, op, op->args[0], 0);
789 }
790 if (a_mask == 0) {
791 return tcg_opt_gen_mov(ctx, op, op->args[0], op->args[1]);
792 }
793 return false;
794}
795
Richard Henderson0e0a32b2021-08-24 13:18:01 -0700796/*
797 * Convert @op to NOT, if NOT is supported by the host.
798 * Return true f the conversion is successful, which will still
799 * indicate that the processing is complete.
800 */
801static bool fold_not(OptContext *ctx, TCGOp *op);
802static bool fold_to_not(OptContext *ctx, TCGOp *op, int idx)
803{
804 TCGOpcode not_op;
805 bool have_not;
806
807 switch (ctx->type) {
808 case TCG_TYPE_I32:
809 not_op = INDEX_op_not_i32;
810 have_not = TCG_TARGET_HAS_not_i32;
811 break;
812 case TCG_TYPE_I64:
813 not_op = INDEX_op_not_i64;
814 have_not = TCG_TARGET_HAS_not_i64;
815 break;
816 case TCG_TYPE_V64:
817 case TCG_TYPE_V128:
818 case TCG_TYPE_V256:
819 not_op = INDEX_op_not_vec;
820 have_not = TCG_TARGET_HAS_not_vec;
821 break;
822 default:
823 g_assert_not_reached();
824 }
825 if (have_not) {
826 op->opc = not_op;
827 op->args[1] = op->args[idx];
828 return fold_not(ctx, op);
829 }
830 return false;
831}
832
Richard Hendersonda48e272021-08-25 20:42:04 -0700833/* If the binary operation has first argument @i, fold to @i. */
834static bool fold_ix_to_i(OptContext *ctx, TCGOp *op, uint64_t i)
835{
836 if (arg_is_const(op->args[1]) && arg_info(op->args[1])->val == i) {
837 return tcg_opt_gen_movi(ctx, op, op->args[0], i);
838 }
839 return false;
840}
841
Richard Henderson0e0a32b2021-08-24 13:18:01 -0700842/* If the binary operation has first argument @i, fold to NOT. */
843static bool fold_ix_to_not(OptContext *ctx, TCGOp *op, uint64_t i)
844{
845 if (arg_is_const(op->args[1]) && arg_info(op->args[1])->val == i) {
846 return fold_to_not(ctx, op, 2);
847 }
848 return false;
849}
850
Richard Hendersone8679952021-08-25 13:19:52 -0700851/* If the binary operation has second argument @i, fold to @i. */
852static bool fold_xi_to_i(OptContext *ctx, TCGOp *op, uint64_t i)
853{
854 if (arg_is_const(op->args[2]) && arg_info(op->args[2])->val == i) {
855 return tcg_opt_gen_movi(ctx, op, op->args[0], i);
856 }
857 return false;
858}
859
Richard Hendersona63ce0e2021-08-25 20:28:53 -0700860/* If the binary operation has second argument @i, fold to identity. */
861static bool fold_xi_to_x(OptContext *ctx, TCGOp *op, uint64_t i)
862{
863 if (arg_is_const(op->args[2]) && arg_info(op->args[2])->val == i) {
864 return tcg_opt_gen_mov(ctx, op, op->args[0], op->args[1]);
865 }
866 return false;
867}
868
Richard Henderson0e0a32b2021-08-24 13:18:01 -0700869/* If the binary operation has second argument @i, fold to NOT. */
870static bool fold_xi_to_not(OptContext *ctx, TCGOp *op, uint64_t i)
871{
872 if (arg_is_const(op->args[2]) && arg_info(op->args[2])->val == i) {
873 return fold_to_not(ctx, op, 1);
874 }
875 return false;
876}
877
Richard Hendersoncbe42fb2021-08-25 13:02:00 -0700878/* If the binary operation has both arguments equal, fold to @i. */
879static bool fold_xx_to_i(OptContext *ctx, TCGOp *op, uint64_t i)
880{
881 if (args_are_copies(op->args[1], op->args[2])) {
882 return tcg_opt_gen_movi(ctx, op, op->args[0], i);
883 }
884 return false;
885}
886
Richard Hendersonca7bb042021-08-25 13:14:21 -0700887/* If the binary operation has both arguments equal, fold to identity. */
888static bool fold_xx_to_x(OptContext *ctx, TCGOp *op)
889{
890 if (args_are_copies(op->args[1], op->args[2])) {
891 return tcg_opt_gen_mov(ctx, op, op->args[0], op->args[1]);
892 }
893 return false;
894}
895
Richard Henderson2f9f08b2021-08-25 12:03:48 -0700896/*
897 * These outermost fold_<op> functions are sorted alphabetically.
Richard Hendersonca7bb042021-08-25 13:14:21 -0700898 *
899 * The ordering of the transformations should be:
900 * 1) those that produce a constant
901 * 2) those that produce a copy
902 * 3) those that produce information about the result value.
Richard Henderson2f9f08b2021-08-25 12:03:48 -0700903 */
904
905static bool fold_add(OptContext *ctx, TCGOp *op)
906{
Richard Henderson7a2f7082021-08-26 07:06:39 -0700907 if (fold_const2_commutative(ctx, op) ||
Richard Hendersona63ce0e2021-08-25 20:28:53 -0700908 fold_xi_to_x(ctx, op, 0)) {
909 return true;
910 }
911 return false;
Richard Henderson2f9f08b2021-08-25 12:03:48 -0700912}
913
Richard Hendersonc578ff12021-12-16 06:07:25 -0800914/* We cannot as yet do_constant_folding with vectors. */
915static bool fold_add_vec(OptContext *ctx, TCGOp *op)
916{
917 if (fold_commutative(ctx, op) ||
918 fold_xi_to_x(ctx, op, 0)) {
919 return true;
920 }
921 return false;
922}
923
Richard Henderson9531c072021-08-26 06:51:39 -0700924static bool fold_addsub2(OptContext *ctx, TCGOp *op, bool add)
Richard Hendersone3f7dc22021-08-24 10:30:38 -0700925{
926 if (arg_is_const(op->args[2]) && arg_is_const(op->args[3]) &&
927 arg_is_const(op->args[4]) && arg_is_const(op->args[5])) {
Richard Henderson9531c072021-08-26 06:51:39 -0700928 uint64_t al = arg_info(op->args[2])->val;
929 uint64_t ah = arg_info(op->args[3])->val;
930 uint64_t bl = arg_info(op->args[4])->val;
931 uint64_t bh = arg_info(op->args[5])->val;
Richard Hendersone3f7dc22021-08-24 10:30:38 -0700932 TCGArg rl, rh;
Richard Henderson9531c072021-08-26 06:51:39 -0700933 TCGOp *op2;
Richard Hendersone3f7dc22021-08-24 10:30:38 -0700934
Richard Henderson9531c072021-08-26 06:51:39 -0700935 if (ctx->type == TCG_TYPE_I32) {
936 uint64_t a = deposit64(al, 32, 32, ah);
937 uint64_t b = deposit64(bl, 32, 32, bh);
938
939 if (add) {
940 a += b;
941 } else {
942 a -= b;
943 }
944
945 al = sextract64(a, 0, 32);
946 ah = sextract64(a, 32, 32);
Richard Hendersone3f7dc22021-08-24 10:30:38 -0700947 } else {
Richard Henderson9531c072021-08-26 06:51:39 -0700948 Int128 a = int128_make128(al, ah);
949 Int128 b = int128_make128(bl, bh);
950
951 if (add) {
952 a = int128_add(a, b);
953 } else {
954 a = int128_sub(a, b);
955 }
956
957 al = int128_getlo(a);
958 ah = int128_gethi(a);
Richard Hendersone3f7dc22021-08-24 10:30:38 -0700959 }
960
961 rl = op->args[0];
962 rh = op->args[1];
Richard Henderson9531c072021-08-26 06:51:39 -0700963
964 /* The proper opcode is supplied by tcg_opt_gen_mov. */
965 op2 = tcg_op_insert_before(ctx->tcg, op, 0);
966
967 tcg_opt_gen_movi(ctx, op, rl, al);
968 tcg_opt_gen_movi(ctx, op2, rh, ah);
Richard Hendersone3f7dc22021-08-24 10:30:38 -0700969 return true;
970 }
971 return false;
972}
973
Richard Henderson9531c072021-08-26 06:51:39 -0700974static bool fold_add2(OptContext *ctx, TCGOp *op)
Richard Hendersone3f7dc22021-08-24 10:30:38 -0700975{
Richard Henderson7a2f7082021-08-26 07:06:39 -0700976 /* Note that the high and low parts may be independently swapped. */
977 swap_commutative(op->args[0], &op->args[2], &op->args[4]);
978 swap_commutative(op->args[1], &op->args[3], &op->args[5]);
979
Richard Henderson9531c072021-08-26 06:51:39 -0700980 return fold_addsub2(ctx, op, true);
Richard Hendersone3f7dc22021-08-24 10:30:38 -0700981}
982
Richard Henderson2f9f08b2021-08-25 12:03:48 -0700983static bool fold_and(OptContext *ctx, TCGOp *op)
984{
Richard Hendersonfae450b2021-08-25 22:42:19 -0700985 uint64_t z1, z2;
986
Richard Henderson7a2f7082021-08-26 07:06:39 -0700987 if (fold_const2_commutative(ctx, op) ||
Richard Hendersone8679952021-08-25 13:19:52 -0700988 fold_xi_to_i(ctx, op, 0) ||
Richard Hendersona63ce0e2021-08-25 20:28:53 -0700989 fold_xi_to_x(ctx, op, -1) ||
Richard Hendersonca7bb042021-08-25 13:14:21 -0700990 fold_xx_to_x(ctx, op)) {
991 return true;
992 }
Richard Hendersonfae450b2021-08-25 22:42:19 -0700993
994 z1 = arg_info(op->args[1])->z_mask;
995 z2 = arg_info(op->args[2])->z_mask;
996 ctx->z_mask = z1 & z2;
997
998 /*
Richard Henderson3f2b1f82021-08-26 13:08:54 -0700999 * Sign repetitions are perforce all identical, whether they are 1 or 0.
1000 * Bitwise operations preserve the relative quantity of the repetitions.
1001 */
1002 ctx->s_mask = arg_info(op->args[1])->s_mask
1003 & arg_info(op->args[2])->s_mask;
1004
1005 /*
Richard Hendersonfae450b2021-08-25 22:42:19 -07001006 * Known-zeros does not imply known-ones. Therefore unless
1007 * arg2 is constant, we can't infer affected bits from it.
1008 */
1009 if (arg_is_const(op->args[2])) {
1010 ctx->a_mask = z1 & ~z2;
1011 }
1012
1013 return fold_masks(ctx, op);
Richard Henderson2f9f08b2021-08-25 12:03:48 -07001014}
1015
1016static bool fold_andc(OptContext *ctx, TCGOp *op)
1017{
Richard Hendersonfae450b2021-08-25 22:42:19 -07001018 uint64_t z1;
1019
Richard Hendersoncbe42fb2021-08-25 13:02:00 -07001020 if (fold_const2(ctx, op) ||
Richard Henderson0e0a32b2021-08-24 13:18:01 -07001021 fold_xx_to_i(ctx, op, 0) ||
Richard Hendersona63ce0e2021-08-25 20:28:53 -07001022 fold_xi_to_x(ctx, op, 0) ||
Richard Henderson0e0a32b2021-08-24 13:18:01 -07001023 fold_ix_to_not(ctx, op, -1)) {
Richard Hendersoncbe42fb2021-08-25 13:02:00 -07001024 return true;
1025 }
Richard Hendersonfae450b2021-08-25 22:42:19 -07001026
1027 z1 = arg_info(op->args[1])->z_mask;
1028
1029 /*
1030 * Known-zeros does not imply known-ones. Therefore unless
1031 * arg2 is constant, we can't infer anything from it.
1032 */
1033 if (arg_is_const(op->args[2])) {
1034 uint64_t z2 = ~arg_info(op->args[2])->z_mask;
1035 ctx->a_mask = z1 & ~z2;
1036 z1 &= z2;
1037 }
1038 ctx->z_mask = z1;
1039
Richard Henderson3f2b1f82021-08-26 13:08:54 -07001040 ctx->s_mask = arg_info(op->args[1])->s_mask
1041 & arg_info(op->args[2])->s_mask;
Richard Hendersonfae450b2021-08-25 22:42:19 -07001042 return fold_masks(ctx, op);
Richard Henderson2f9f08b2021-08-25 12:03:48 -07001043}
1044
Richard Henderson079b0802021-08-24 09:30:59 -07001045static bool fold_brcond(OptContext *ctx, TCGOp *op)
1046{
1047 TCGCond cond = op->args[2];
Richard Henderson7a2f7082021-08-26 07:06:39 -07001048 int i;
Richard Henderson079b0802021-08-24 09:30:59 -07001049
Richard Henderson7a2f7082021-08-26 07:06:39 -07001050 if (swap_commutative(NO_DEST, &op->args[0], &op->args[1])) {
1051 op->args[2] = cond = tcg_swap_cond(cond);
1052 }
1053
1054 i = do_constant_folding_cond(ctx->type, op->args[0], op->args[1], cond);
Richard Henderson079b0802021-08-24 09:30:59 -07001055 if (i == 0) {
1056 tcg_op_remove(ctx->tcg, op);
1057 return true;
1058 }
1059 if (i > 0) {
1060 op->opc = INDEX_op_br;
1061 op->args[0] = op->args[3];
1062 }
1063 return false;
1064}
1065
Richard Henderson764d2ab2021-08-24 09:22:11 -07001066static bool fold_brcond2(OptContext *ctx, TCGOp *op)
1067{
1068 TCGCond cond = op->args[4];
Richard Henderson764d2ab2021-08-24 09:22:11 -07001069 TCGArg label = op->args[5];
Richard Henderson7a2f7082021-08-26 07:06:39 -07001070 int i, inv = 0;
Richard Henderson764d2ab2021-08-24 09:22:11 -07001071
Richard Henderson7a2f7082021-08-26 07:06:39 -07001072 if (swap_commutative2(&op->args[0], &op->args[2])) {
1073 op->args[4] = cond = tcg_swap_cond(cond);
1074 }
1075
1076 i = do_constant_folding_cond2(&op->args[0], &op->args[2], cond);
Richard Henderson764d2ab2021-08-24 09:22:11 -07001077 if (i >= 0) {
1078 goto do_brcond_const;
1079 }
1080
1081 switch (cond) {
1082 case TCG_COND_LT:
1083 case TCG_COND_GE:
1084 /*
1085 * Simplify LT/GE comparisons vs zero to a single compare
1086 * vs the high word of the input.
1087 */
1088 if (arg_is_const(op->args[2]) && arg_info(op->args[2])->val == 0 &&
1089 arg_is_const(op->args[3]) && arg_info(op->args[3])->val == 0) {
1090 goto do_brcond_high;
1091 }
1092 break;
1093
1094 case TCG_COND_NE:
1095 inv = 1;
1096 QEMU_FALLTHROUGH;
1097 case TCG_COND_EQ:
1098 /*
1099 * Simplify EQ/NE comparisons where one of the pairs
1100 * can be simplified.
1101 */
Richard Henderson67f84c92021-08-25 08:00:20 -07001102 i = do_constant_folding_cond(TCG_TYPE_I32, op->args[0],
Richard Henderson764d2ab2021-08-24 09:22:11 -07001103 op->args[2], cond);
1104 switch (i ^ inv) {
1105 case 0:
1106 goto do_brcond_const;
1107 case 1:
1108 goto do_brcond_high;
1109 }
1110
Richard Henderson67f84c92021-08-25 08:00:20 -07001111 i = do_constant_folding_cond(TCG_TYPE_I32, op->args[1],
Richard Henderson764d2ab2021-08-24 09:22:11 -07001112 op->args[3], cond);
1113 switch (i ^ inv) {
1114 case 0:
1115 goto do_brcond_const;
1116 case 1:
1117 op->opc = INDEX_op_brcond_i32;
1118 op->args[1] = op->args[2];
1119 op->args[2] = cond;
1120 op->args[3] = label;
1121 break;
1122 }
1123 break;
1124
1125 default:
1126 break;
1127
1128 do_brcond_high:
1129 op->opc = INDEX_op_brcond_i32;
1130 op->args[0] = op->args[1];
1131 op->args[1] = op->args[3];
1132 op->args[2] = cond;
1133 op->args[3] = label;
1134 break;
1135
1136 do_brcond_const:
1137 if (i == 0) {
1138 tcg_op_remove(ctx->tcg, op);
1139 return true;
1140 }
1141 op->opc = INDEX_op_br;
1142 op->args[0] = label;
1143 break;
1144 }
1145 return false;
1146}
1147
Richard Henderson09bacdc2021-08-24 11:58:12 -07001148static bool fold_bswap(OptContext *ctx, TCGOp *op)
1149{
Richard Henderson57fe5c62021-08-26 12:04:46 -07001150 uint64_t z_mask, s_mask, sign;
Richard Hendersonfae450b2021-08-25 22:42:19 -07001151
Richard Henderson09bacdc2021-08-24 11:58:12 -07001152 if (arg_is_const(op->args[1])) {
1153 uint64_t t = arg_info(op->args[1])->val;
1154
Richard Henderson67f84c92021-08-25 08:00:20 -07001155 t = do_constant_folding(op->opc, ctx->type, t, op->args[2]);
Richard Henderson09bacdc2021-08-24 11:58:12 -07001156 return tcg_opt_gen_movi(ctx, op, op->args[0], t);
1157 }
Richard Hendersonfae450b2021-08-25 22:42:19 -07001158
1159 z_mask = arg_info(op->args[1])->z_mask;
Richard Henderson57fe5c62021-08-26 12:04:46 -07001160
Richard Hendersonfae450b2021-08-25 22:42:19 -07001161 switch (op->opc) {
1162 case INDEX_op_bswap16_i32:
1163 case INDEX_op_bswap16_i64:
1164 z_mask = bswap16(z_mask);
1165 sign = INT16_MIN;
1166 break;
1167 case INDEX_op_bswap32_i32:
1168 case INDEX_op_bswap32_i64:
1169 z_mask = bswap32(z_mask);
1170 sign = INT32_MIN;
1171 break;
1172 case INDEX_op_bswap64_i64:
1173 z_mask = bswap64(z_mask);
1174 sign = INT64_MIN;
1175 break;
1176 default:
1177 g_assert_not_reached();
1178 }
Richard Henderson57fe5c62021-08-26 12:04:46 -07001179 s_mask = smask_from_zmask(z_mask);
Richard Hendersonfae450b2021-08-25 22:42:19 -07001180
1181 switch (op->args[2] & (TCG_BSWAP_OZ | TCG_BSWAP_OS)) {
1182 case TCG_BSWAP_OZ:
1183 break;
1184 case TCG_BSWAP_OS:
1185 /* If the sign bit may be 1, force all the bits above to 1. */
1186 if (z_mask & sign) {
1187 z_mask |= sign;
Richard Henderson57fe5c62021-08-26 12:04:46 -07001188 s_mask = sign << 1;
Richard Hendersonfae450b2021-08-25 22:42:19 -07001189 }
1190 break;
1191 default:
1192 /* The high bits are undefined: force all bits above the sign to 1. */
1193 z_mask |= sign << 1;
Richard Henderson57fe5c62021-08-26 12:04:46 -07001194 s_mask = 0;
Richard Hendersonfae450b2021-08-25 22:42:19 -07001195 break;
1196 }
1197 ctx->z_mask = z_mask;
Richard Henderson57fe5c62021-08-26 12:04:46 -07001198 ctx->s_mask = s_mask;
Richard Hendersonfae450b2021-08-25 22:42:19 -07001199
1200 return fold_masks(ctx, op);
Richard Henderson09bacdc2021-08-24 11:58:12 -07001201}
1202
Richard Henderson5cf32be2021-08-24 08:17:08 -07001203static bool fold_call(OptContext *ctx, TCGOp *op)
1204{
1205 TCGContext *s = ctx->tcg;
1206 int nb_oargs = TCGOP_CALLO(op);
1207 int nb_iargs = TCGOP_CALLI(op);
1208 int flags, i;
1209
1210 init_arguments(ctx, op, nb_oargs + nb_iargs);
1211 copy_propagate(ctx, op, nb_oargs, nb_iargs);
1212
1213 /* If the function reads or writes globals, reset temp data. */
1214 flags = tcg_call_flags(op);
1215 if (!(flags & (TCG_CALL_NO_READ_GLOBALS | TCG_CALL_NO_WRITE_GLOBALS))) {
1216 int nb_globals = s->nb_globals;
1217
1218 for (i = 0; i < nb_globals; i++) {
1219 if (test_bit(i, ctx->temps_used.l)) {
1220 reset_ts(&ctx->tcg->temps[i]);
1221 }
1222 }
1223 }
1224
1225 /* Reset temp data for outputs. */
1226 for (i = 0; i < nb_oargs; i++) {
1227 reset_temp(op->args[i]);
1228 }
1229
1230 /* Stop optimizing MB across calls. */
1231 ctx->prev_mb = NULL;
1232 return true;
1233}
1234
Richard Henderson30dd0bf2021-08-24 10:51:34 -07001235static bool fold_count_zeros(OptContext *ctx, TCGOp *op)
1236{
Richard Hendersonfae450b2021-08-25 22:42:19 -07001237 uint64_t z_mask;
1238
Richard Henderson30dd0bf2021-08-24 10:51:34 -07001239 if (arg_is_const(op->args[1])) {
1240 uint64_t t = arg_info(op->args[1])->val;
1241
1242 if (t != 0) {
Richard Henderson67f84c92021-08-25 08:00:20 -07001243 t = do_constant_folding(op->opc, ctx->type, t, 0);
Richard Henderson30dd0bf2021-08-24 10:51:34 -07001244 return tcg_opt_gen_movi(ctx, op, op->args[0], t);
1245 }
1246 return tcg_opt_gen_mov(ctx, op, op->args[0], op->args[2]);
1247 }
Richard Hendersonfae450b2021-08-25 22:42:19 -07001248
1249 switch (ctx->type) {
1250 case TCG_TYPE_I32:
1251 z_mask = 31;
1252 break;
1253 case TCG_TYPE_I64:
1254 z_mask = 63;
1255 break;
1256 default:
1257 g_assert_not_reached();
1258 }
1259 ctx->z_mask = arg_info(op->args[2])->z_mask | z_mask;
Richard Henderson2b9d0c52021-08-26 13:24:17 -07001260 ctx->s_mask = smask_from_zmask(ctx->z_mask);
Richard Henderson30dd0bf2021-08-24 10:51:34 -07001261 return false;
1262}
1263
Richard Henderson2f9f08b2021-08-25 12:03:48 -07001264static bool fold_ctpop(OptContext *ctx, TCGOp *op)
1265{
Richard Hendersonfae450b2021-08-25 22:42:19 -07001266 if (fold_const1(ctx, op)) {
1267 return true;
1268 }
1269
1270 switch (ctx->type) {
1271 case TCG_TYPE_I32:
1272 ctx->z_mask = 32 | 31;
1273 break;
1274 case TCG_TYPE_I64:
1275 ctx->z_mask = 64 | 63;
1276 break;
1277 default:
1278 g_assert_not_reached();
1279 }
Richard Henderson2b9d0c52021-08-26 13:24:17 -07001280 ctx->s_mask = smask_from_zmask(ctx->z_mask);
Richard Hendersonfae450b2021-08-25 22:42:19 -07001281 return false;
Richard Henderson2f9f08b2021-08-25 12:03:48 -07001282}
1283
Richard Henderson1b1907b2021-08-24 10:47:04 -07001284static bool fold_deposit(OptContext *ctx, TCGOp *op)
1285{
1286 if (arg_is_const(op->args[1]) && arg_is_const(op->args[2])) {
1287 uint64_t t1 = arg_info(op->args[1])->val;
1288 uint64_t t2 = arg_info(op->args[2])->val;
1289
1290 t1 = deposit64(t1, op->args[3], op->args[4], t2);
1291 return tcg_opt_gen_movi(ctx, op, op->args[0], t1);
1292 }
Richard Hendersonfae450b2021-08-25 22:42:19 -07001293
1294 ctx->z_mask = deposit64(arg_info(op->args[1])->z_mask,
1295 op->args[3], op->args[4],
1296 arg_info(op->args[2])->z_mask);
Richard Henderson1b1907b2021-08-24 10:47:04 -07001297 return false;
1298}
1299
Richard Henderson2f9f08b2021-08-25 12:03:48 -07001300static bool fold_divide(OptContext *ctx, TCGOp *op)
1301{
Richard Henderson2f9d9a32021-10-25 11:30:14 -07001302 if (fold_const2(ctx, op) ||
1303 fold_xi_to_x(ctx, op, 1)) {
1304 return true;
1305 }
1306 return false;
Richard Henderson2f9f08b2021-08-25 12:03:48 -07001307}
1308
Richard Henderson8cdb3fc2021-08-24 12:06:33 -07001309static bool fold_dup(OptContext *ctx, TCGOp *op)
1310{
1311 if (arg_is_const(op->args[1])) {
1312 uint64_t t = arg_info(op->args[1])->val;
1313 t = dup_const(TCGOP_VECE(op), t);
1314 return tcg_opt_gen_movi(ctx, op, op->args[0], t);
1315 }
1316 return false;
1317}
1318
1319static bool fold_dup2(OptContext *ctx, TCGOp *op)
1320{
1321 if (arg_is_const(op->args[1]) && arg_is_const(op->args[2])) {
1322 uint64_t t = deposit64(arg_info(op->args[1])->val, 32, 32,
1323 arg_info(op->args[2])->val);
1324 return tcg_opt_gen_movi(ctx, op, op->args[0], t);
1325 }
1326
1327 if (args_are_copies(op->args[1], op->args[2])) {
1328 op->opc = INDEX_op_dup_vec;
1329 TCGOP_VECE(op) = MO_32;
1330 }
1331 return false;
1332}
1333
Richard Henderson2f9f08b2021-08-25 12:03:48 -07001334static bool fold_eqv(OptContext *ctx, TCGOp *op)
1335{
Richard Henderson7a2f7082021-08-26 07:06:39 -07001336 if (fold_const2_commutative(ctx, op) ||
Richard Hendersona63ce0e2021-08-25 20:28:53 -07001337 fold_xi_to_x(ctx, op, -1) ||
Richard Henderson0e0a32b2021-08-24 13:18:01 -07001338 fold_xi_to_not(ctx, op, 0)) {
1339 return true;
1340 }
Richard Henderson3f2b1f82021-08-26 13:08:54 -07001341
1342 ctx->s_mask = arg_info(op->args[1])->s_mask
1343 & arg_info(op->args[2])->s_mask;
Richard Henderson0e0a32b2021-08-24 13:18:01 -07001344 return false;
Richard Henderson2f9f08b2021-08-25 12:03:48 -07001345}
1346
Richard Hendersonb6617c82021-08-24 10:44:53 -07001347static bool fold_extract(OptContext *ctx, TCGOp *op)
1348{
Richard Hendersonfae450b2021-08-25 22:42:19 -07001349 uint64_t z_mask_old, z_mask;
Richard Henderson57fe5c62021-08-26 12:04:46 -07001350 int pos = op->args[2];
1351 int len = op->args[3];
Richard Hendersonfae450b2021-08-25 22:42:19 -07001352
Richard Hendersonb6617c82021-08-24 10:44:53 -07001353 if (arg_is_const(op->args[1])) {
1354 uint64_t t;
1355
1356 t = arg_info(op->args[1])->val;
Richard Henderson57fe5c62021-08-26 12:04:46 -07001357 t = extract64(t, pos, len);
Richard Hendersonb6617c82021-08-24 10:44:53 -07001358 return tcg_opt_gen_movi(ctx, op, op->args[0], t);
1359 }
Richard Hendersonfae450b2021-08-25 22:42:19 -07001360
1361 z_mask_old = arg_info(op->args[1])->z_mask;
Richard Henderson57fe5c62021-08-26 12:04:46 -07001362 z_mask = extract64(z_mask_old, pos, len);
1363 if (pos == 0) {
Richard Hendersonfae450b2021-08-25 22:42:19 -07001364 ctx->a_mask = z_mask_old ^ z_mask;
1365 }
1366 ctx->z_mask = z_mask;
Richard Henderson57fe5c62021-08-26 12:04:46 -07001367 ctx->s_mask = smask_from_zmask(z_mask);
Richard Hendersonfae450b2021-08-25 22:42:19 -07001368
1369 return fold_masks(ctx, op);
Richard Hendersonb6617c82021-08-24 10:44:53 -07001370}
1371
Richard Hendersondcd08992021-08-24 10:41:39 -07001372static bool fold_extract2(OptContext *ctx, TCGOp *op)
1373{
1374 if (arg_is_const(op->args[1]) && arg_is_const(op->args[2])) {
1375 uint64_t v1 = arg_info(op->args[1])->val;
1376 uint64_t v2 = arg_info(op->args[2])->val;
1377 int shr = op->args[3];
1378
1379 if (op->opc == INDEX_op_extract2_i64) {
1380 v1 >>= shr;
1381 v2 <<= 64 - shr;
1382 } else {
1383 v1 = (uint32_t)v1 >> shr;
Richard Henderson225bec02021-11-09 23:17:59 +01001384 v2 = (uint64_t)((int32_t)v2 << (32 - shr));
Richard Hendersondcd08992021-08-24 10:41:39 -07001385 }
1386 return tcg_opt_gen_movi(ctx, op, op->args[0], v1 | v2);
1387 }
1388 return false;
1389}
1390
Richard Henderson2f9f08b2021-08-25 12:03:48 -07001391static bool fold_exts(OptContext *ctx, TCGOp *op)
1392{
Richard Henderson57fe5c62021-08-26 12:04:46 -07001393 uint64_t s_mask_old, s_mask, z_mask, sign;
Richard Hendersonfae450b2021-08-25 22:42:19 -07001394 bool type_change = false;
1395
1396 if (fold_const1(ctx, op)) {
1397 return true;
1398 }
1399
Richard Henderson57fe5c62021-08-26 12:04:46 -07001400 z_mask = arg_info(op->args[1])->z_mask;
1401 s_mask = arg_info(op->args[1])->s_mask;
1402 s_mask_old = s_mask;
Richard Hendersonfae450b2021-08-25 22:42:19 -07001403
1404 switch (op->opc) {
1405 CASE_OP_32_64(ext8s):
1406 sign = INT8_MIN;
1407 z_mask = (uint8_t)z_mask;
1408 break;
1409 CASE_OP_32_64(ext16s):
1410 sign = INT16_MIN;
1411 z_mask = (uint16_t)z_mask;
1412 break;
1413 case INDEX_op_ext_i32_i64:
1414 type_change = true;
1415 QEMU_FALLTHROUGH;
1416 case INDEX_op_ext32s_i64:
1417 sign = INT32_MIN;
1418 z_mask = (uint32_t)z_mask;
1419 break;
1420 default:
1421 g_assert_not_reached();
1422 }
1423
1424 if (z_mask & sign) {
1425 z_mask |= sign;
Richard Hendersonfae450b2021-08-25 22:42:19 -07001426 }
Richard Henderson57fe5c62021-08-26 12:04:46 -07001427 s_mask |= sign << 1;
1428
Richard Hendersonfae450b2021-08-25 22:42:19 -07001429 ctx->z_mask = z_mask;
Richard Henderson57fe5c62021-08-26 12:04:46 -07001430 ctx->s_mask = s_mask;
1431 if (!type_change) {
1432 ctx->a_mask = s_mask & ~s_mask_old;
1433 }
Richard Hendersonfae450b2021-08-25 22:42:19 -07001434
1435 return fold_masks(ctx, op);
Richard Henderson2f9f08b2021-08-25 12:03:48 -07001436}
1437
1438static bool fold_extu(OptContext *ctx, TCGOp *op)
1439{
Richard Hendersonfae450b2021-08-25 22:42:19 -07001440 uint64_t z_mask_old, z_mask;
1441 bool type_change = false;
1442
1443 if (fold_const1(ctx, op)) {
1444 return true;
1445 }
1446
1447 z_mask_old = z_mask = arg_info(op->args[1])->z_mask;
1448
1449 switch (op->opc) {
1450 CASE_OP_32_64(ext8u):
1451 z_mask = (uint8_t)z_mask;
1452 break;
1453 CASE_OP_32_64(ext16u):
1454 z_mask = (uint16_t)z_mask;
1455 break;
1456 case INDEX_op_extrl_i64_i32:
1457 case INDEX_op_extu_i32_i64:
1458 type_change = true;
1459 QEMU_FALLTHROUGH;
1460 case INDEX_op_ext32u_i64:
1461 z_mask = (uint32_t)z_mask;
1462 break;
1463 case INDEX_op_extrh_i64_i32:
1464 type_change = true;
1465 z_mask >>= 32;
1466 break;
1467 default:
1468 g_assert_not_reached();
1469 }
1470
1471 ctx->z_mask = z_mask;
Richard Henderson57fe5c62021-08-26 12:04:46 -07001472 ctx->s_mask = smask_from_zmask(z_mask);
Richard Hendersonfae450b2021-08-25 22:42:19 -07001473 if (!type_change) {
1474 ctx->a_mask = z_mask_old ^ z_mask;
1475 }
1476 return fold_masks(ctx, op);
Richard Henderson2f9f08b2021-08-25 12:03:48 -07001477}
1478
Richard Henderson3eefdf22021-08-25 11:06:43 -07001479static bool fold_mb(OptContext *ctx, TCGOp *op)
1480{
1481 /* Eliminate duplicate and redundant fence instructions. */
1482 if (ctx->prev_mb) {
1483 /*
1484 * Merge two barriers of the same type into one,
1485 * or a weaker barrier into a stronger one,
1486 * or two weaker barriers into a stronger one.
1487 * mb X; mb Y => mb X|Y
1488 * mb; strl => mb; st
1489 * ldaq; mb => ld; mb
1490 * ldaq; strl => ld; mb; st
1491 * Other combinations are also merged into a strong
1492 * barrier. This is stricter than specified but for
1493 * the purposes of TCG is better than not optimizing.
1494 */
1495 ctx->prev_mb->args[0] |= op->args[0];
1496 tcg_op_remove(ctx->tcg, op);
1497 } else {
1498 ctx->prev_mb = op;
1499 }
1500 return true;
1501}
1502
Richard Henderson2cfac7f2021-08-25 13:05:43 -07001503static bool fold_mov(OptContext *ctx, TCGOp *op)
1504{
1505 return tcg_opt_gen_mov(ctx, op, op->args[0], op->args[1]);
1506}
1507
Richard Henderson0c310a32021-08-24 10:37:24 -07001508static bool fold_movcond(OptContext *ctx, TCGOp *op)
1509{
Richard Henderson0c310a32021-08-24 10:37:24 -07001510 TCGCond cond = op->args[5];
Richard Henderson7a2f7082021-08-26 07:06:39 -07001511 int i;
Richard Henderson0c310a32021-08-24 10:37:24 -07001512
Richard Henderson7a2f7082021-08-26 07:06:39 -07001513 if (swap_commutative(NO_DEST, &op->args[1], &op->args[2])) {
1514 op->args[5] = cond = tcg_swap_cond(cond);
1515 }
1516 /*
1517 * Canonicalize the "false" input reg to match the destination reg so
1518 * that the tcg backend can implement a "move if true" operation.
1519 */
1520 if (swap_commutative(op->args[0], &op->args[4], &op->args[3])) {
1521 op->args[5] = cond = tcg_invert_cond(cond);
1522 }
1523
1524 i = do_constant_folding_cond(ctx->type, op->args[1], op->args[2], cond);
Richard Henderson0c310a32021-08-24 10:37:24 -07001525 if (i >= 0) {
1526 return tcg_opt_gen_mov(ctx, op, op->args[0], op->args[4 - i]);
1527 }
1528
Richard Hendersonfae450b2021-08-25 22:42:19 -07001529 ctx->z_mask = arg_info(op->args[3])->z_mask
1530 | arg_info(op->args[4])->z_mask;
Richard Henderson3f2b1f82021-08-26 13:08:54 -07001531 ctx->s_mask = arg_info(op->args[3])->s_mask
1532 & arg_info(op->args[4])->s_mask;
Richard Hendersonfae450b2021-08-25 22:42:19 -07001533
Richard Henderson0c310a32021-08-24 10:37:24 -07001534 if (arg_is_const(op->args[3]) && arg_is_const(op->args[4])) {
1535 uint64_t tv = arg_info(op->args[3])->val;
1536 uint64_t fv = arg_info(op->args[4])->val;
Richard Henderson67f84c92021-08-25 08:00:20 -07001537 TCGOpcode opc;
Richard Henderson0c310a32021-08-24 10:37:24 -07001538
Richard Henderson67f84c92021-08-25 08:00:20 -07001539 switch (ctx->type) {
1540 case TCG_TYPE_I32:
1541 opc = INDEX_op_setcond_i32;
1542 break;
1543 case TCG_TYPE_I64:
1544 opc = INDEX_op_setcond_i64;
1545 break;
1546 default:
1547 g_assert_not_reached();
1548 }
Richard Henderson0c310a32021-08-24 10:37:24 -07001549
1550 if (tv == 1 && fv == 0) {
1551 op->opc = opc;
1552 op->args[3] = cond;
1553 } else if (fv == 1 && tv == 0) {
1554 op->opc = opc;
1555 op->args[3] = tcg_invert_cond(cond);
1556 }
1557 }
1558 return false;
1559}
1560
Richard Henderson2f9f08b2021-08-25 12:03:48 -07001561static bool fold_mul(OptContext *ctx, TCGOp *op)
1562{
Richard Hendersone8679952021-08-25 13:19:52 -07001563 if (fold_const2(ctx, op) ||
Richard Henderson5b5cf472021-10-25 11:19:14 -07001564 fold_xi_to_i(ctx, op, 0) ||
1565 fold_xi_to_x(ctx, op, 1)) {
Richard Hendersone8679952021-08-25 13:19:52 -07001566 return true;
1567 }
1568 return false;
Richard Henderson2f9f08b2021-08-25 12:03:48 -07001569}
1570
1571static bool fold_mul_highpart(OptContext *ctx, TCGOp *op)
1572{
Richard Henderson7a2f7082021-08-26 07:06:39 -07001573 if (fold_const2_commutative(ctx, op) ||
Richard Hendersone8679952021-08-25 13:19:52 -07001574 fold_xi_to_i(ctx, op, 0)) {
1575 return true;
1576 }
1577 return false;
Richard Henderson2f9f08b2021-08-25 12:03:48 -07001578}
1579
Richard Henderson407112b2021-08-26 06:33:04 -07001580static bool fold_multiply2(OptContext *ctx, TCGOp *op)
Richard Henderson6b8ac0d2021-08-24 10:24:12 -07001581{
Richard Henderson7a2f7082021-08-26 07:06:39 -07001582 swap_commutative(op->args[0], &op->args[2], &op->args[3]);
1583
Richard Henderson6b8ac0d2021-08-24 10:24:12 -07001584 if (arg_is_const(op->args[2]) && arg_is_const(op->args[3])) {
Richard Henderson407112b2021-08-26 06:33:04 -07001585 uint64_t a = arg_info(op->args[2])->val;
1586 uint64_t b = arg_info(op->args[3])->val;
1587 uint64_t h, l;
Richard Henderson6b8ac0d2021-08-24 10:24:12 -07001588 TCGArg rl, rh;
Richard Henderson407112b2021-08-26 06:33:04 -07001589 TCGOp *op2;
1590
1591 switch (op->opc) {
1592 case INDEX_op_mulu2_i32:
1593 l = (uint64_t)(uint32_t)a * (uint32_t)b;
1594 h = (int32_t)(l >> 32);
1595 l = (int32_t)l;
1596 break;
1597 case INDEX_op_muls2_i32:
1598 l = (int64_t)(int32_t)a * (int32_t)b;
1599 h = l >> 32;
1600 l = (int32_t)l;
1601 break;
1602 case INDEX_op_mulu2_i64:
1603 mulu64(&l, &h, a, b);
1604 break;
1605 case INDEX_op_muls2_i64:
1606 muls64(&l, &h, a, b);
1607 break;
1608 default:
1609 g_assert_not_reached();
1610 }
Richard Henderson6b8ac0d2021-08-24 10:24:12 -07001611
1612 rl = op->args[0];
1613 rh = op->args[1];
Richard Henderson407112b2021-08-26 06:33:04 -07001614
1615 /* The proper opcode is supplied by tcg_opt_gen_mov. */
1616 op2 = tcg_op_insert_before(ctx->tcg, op, 0);
1617
1618 tcg_opt_gen_movi(ctx, op, rl, l);
1619 tcg_opt_gen_movi(ctx, op2, rh, h);
Richard Henderson6b8ac0d2021-08-24 10:24:12 -07001620 return true;
1621 }
1622 return false;
1623}
1624
Richard Henderson2f9f08b2021-08-25 12:03:48 -07001625static bool fold_nand(OptContext *ctx, TCGOp *op)
1626{
Richard Henderson7a2f7082021-08-26 07:06:39 -07001627 if (fold_const2_commutative(ctx, op) ||
Richard Henderson0e0a32b2021-08-24 13:18:01 -07001628 fold_xi_to_not(ctx, op, -1)) {
1629 return true;
1630 }
Richard Henderson3f2b1f82021-08-26 13:08:54 -07001631
1632 ctx->s_mask = arg_info(op->args[1])->s_mask
1633 & arg_info(op->args[2])->s_mask;
Richard Henderson0e0a32b2021-08-24 13:18:01 -07001634 return false;
Richard Henderson2f9f08b2021-08-25 12:03:48 -07001635}
1636
1637static bool fold_neg(OptContext *ctx, TCGOp *op)
1638{
Richard Hendersonfae450b2021-08-25 22:42:19 -07001639 uint64_t z_mask;
1640
Richard Henderson9caca882021-08-24 13:30:32 -07001641 if (fold_const1(ctx, op)) {
1642 return true;
1643 }
Richard Hendersonfae450b2021-08-25 22:42:19 -07001644
1645 /* Set to 1 all bits to the left of the rightmost. */
1646 z_mask = arg_info(op->args[1])->z_mask;
1647 ctx->z_mask = -(z_mask & -z_mask);
1648
Richard Henderson9caca882021-08-24 13:30:32 -07001649 /*
1650 * Because of fold_sub_to_neg, we want to always return true,
1651 * via finish_folding.
1652 */
1653 finish_folding(ctx, op);
1654 return true;
Richard Henderson2f9f08b2021-08-25 12:03:48 -07001655}
1656
1657static bool fold_nor(OptContext *ctx, TCGOp *op)
1658{
Richard Henderson7a2f7082021-08-26 07:06:39 -07001659 if (fold_const2_commutative(ctx, op) ||
Richard Henderson0e0a32b2021-08-24 13:18:01 -07001660 fold_xi_to_not(ctx, op, 0)) {
1661 return true;
1662 }
Richard Henderson3f2b1f82021-08-26 13:08:54 -07001663
1664 ctx->s_mask = arg_info(op->args[1])->s_mask
1665 & arg_info(op->args[2])->s_mask;
Richard Henderson0e0a32b2021-08-24 13:18:01 -07001666 return false;
Richard Henderson2f9f08b2021-08-25 12:03:48 -07001667}
1668
1669static bool fold_not(OptContext *ctx, TCGOp *op)
1670{
Richard Henderson0e0a32b2021-08-24 13:18:01 -07001671 if (fold_const1(ctx, op)) {
1672 return true;
1673 }
1674
Richard Henderson3f2b1f82021-08-26 13:08:54 -07001675 ctx->s_mask = arg_info(op->args[1])->s_mask;
1676
Richard Henderson0e0a32b2021-08-24 13:18:01 -07001677 /* Because of fold_to_not, we want to always return true, via finish. */
1678 finish_folding(ctx, op);
1679 return true;
Richard Henderson2f9f08b2021-08-25 12:03:48 -07001680}
1681
1682static bool fold_or(OptContext *ctx, TCGOp *op)
1683{
Richard Henderson7a2f7082021-08-26 07:06:39 -07001684 if (fold_const2_commutative(ctx, op) ||
Richard Hendersona63ce0e2021-08-25 20:28:53 -07001685 fold_xi_to_x(ctx, op, 0) ||
Richard Hendersonca7bb042021-08-25 13:14:21 -07001686 fold_xx_to_x(ctx, op)) {
1687 return true;
1688 }
Richard Hendersonfae450b2021-08-25 22:42:19 -07001689
1690 ctx->z_mask = arg_info(op->args[1])->z_mask
1691 | arg_info(op->args[2])->z_mask;
Richard Henderson3f2b1f82021-08-26 13:08:54 -07001692 ctx->s_mask = arg_info(op->args[1])->s_mask
1693 & arg_info(op->args[2])->s_mask;
Richard Hendersonfae450b2021-08-25 22:42:19 -07001694 return fold_masks(ctx, op);
Richard Henderson2f9f08b2021-08-25 12:03:48 -07001695}
1696
1697static bool fold_orc(OptContext *ctx, TCGOp *op)
1698{
Richard Henderson0e0a32b2021-08-24 13:18:01 -07001699 if (fold_const2(ctx, op) ||
Richard Henderson4e858d92021-08-26 07:31:13 -07001700 fold_xx_to_i(ctx, op, -1) ||
Richard Hendersona63ce0e2021-08-25 20:28:53 -07001701 fold_xi_to_x(ctx, op, -1) ||
Richard Henderson0e0a32b2021-08-24 13:18:01 -07001702 fold_ix_to_not(ctx, op, 0)) {
1703 return true;
1704 }
Richard Henderson3f2b1f82021-08-26 13:08:54 -07001705
1706 ctx->s_mask = arg_info(op->args[1])->s_mask
1707 & arg_info(op->args[2])->s_mask;
Richard Henderson0e0a32b2021-08-24 13:18:01 -07001708 return false;
Richard Henderson2f9f08b2021-08-25 12:03:48 -07001709}
1710
Richard Henderson3eefdf22021-08-25 11:06:43 -07001711static bool fold_qemu_ld(OptContext *ctx, TCGOp *op)
1712{
Richard Hendersonfae450b2021-08-25 22:42:19 -07001713 const TCGOpDef *def = &tcg_op_defs[op->opc];
1714 MemOpIdx oi = op->args[def->nb_oargs + def->nb_iargs];
1715 MemOp mop = get_memop(oi);
1716 int width = 8 * memop_size(mop);
1717
Richard Henderson57fe5c62021-08-26 12:04:46 -07001718 if (width < 64) {
1719 ctx->s_mask = MAKE_64BIT_MASK(width, 64 - width);
1720 if (!(mop & MO_SIGN)) {
1721 ctx->z_mask = MAKE_64BIT_MASK(0, width);
1722 ctx->s_mask <<= 1;
1723 }
Richard Hendersonfae450b2021-08-25 22:42:19 -07001724 }
1725
Richard Henderson3eefdf22021-08-25 11:06:43 -07001726 /* Opcodes that touch guest memory stop the mb optimization. */
1727 ctx->prev_mb = NULL;
1728 return false;
1729}
1730
1731static bool fold_qemu_st(OptContext *ctx, TCGOp *op)
1732{
1733 /* Opcodes that touch guest memory stop the mb optimization. */
1734 ctx->prev_mb = NULL;
1735 return false;
1736}
1737
Richard Henderson2f9f08b2021-08-25 12:03:48 -07001738static bool fold_remainder(OptContext *ctx, TCGOp *op)
1739{
Richard Henderson267c17e2021-10-25 11:30:33 -07001740 if (fold_const2(ctx, op) ||
1741 fold_xx_to_i(ctx, op, 0)) {
1742 return true;
1743 }
1744 return false;
Richard Henderson2f9f08b2021-08-25 12:03:48 -07001745}
1746
Richard Hendersonc63ff552021-08-24 09:35:30 -07001747static bool fold_setcond(OptContext *ctx, TCGOp *op)
1748{
1749 TCGCond cond = op->args[3];
Richard Henderson7a2f7082021-08-26 07:06:39 -07001750 int i;
Richard Hendersonc63ff552021-08-24 09:35:30 -07001751
Richard Henderson7a2f7082021-08-26 07:06:39 -07001752 if (swap_commutative(op->args[0], &op->args[1], &op->args[2])) {
1753 op->args[3] = cond = tcg_swap_cond(cond);
1754 }
1755
1756 i = do_constant_folding_cond(ctx->type, op->args[1], op->args[2], cond);
Richard Hendersonc63ff552021-08-24 09:35:30 -07001757 if (i >= 0) {
1758 return tcg_opt_gen_movi(ctx, op, op->args[0], i);
1759 }
Richard Hendersonfae450b2021-08-25 22:42:19 -07001760
1761 ctx->z_mask = 1;
Richard Henderson275d7d82021-08-26 13:20:39 -07001762 ctx->s_mask = smask_from_zmask(1);
Richard Hendersonc63ff552021-08-24 09:35:30 -07001763 return false;
1764}
1765
Richard Hendersonbc47b1a2021-08-24 09:09:35 -07001766static bool fold_setcond2(OptContext *ctx, TCGOp *op)
1767{
1768 TCGCond cond = op->args[5];
Richard Henderson7a2f7082021-08-26 07:06:39 -07001769 int i, inv = 0;
Richard Hendersonbc47b1a2021-08-24 09:09:35 -07001770
Richard Henderson7a2f7082021-08-26 07:06:39 -07001771 if (swap_commutative2(&op->args[1], &op->args[3])) {
1772 op->args[5] = cond = tcg_swap_cond(cond);
1773 }
1774
1775 i = do_constant_folding_cond2(&op->args[1], &op->args[3], cond);
Richard Hendersonbc47b1a2021-08-24 09:09:35 -07001776 if (i >= 0) {
1777 goto do_setcond_const;
1778 }
1779
1780 switch (cond) {
1781 case TCG_COND_LT:
1782 case TCG_COND_GE:
1783 /*
1784 * Simplify LT/GE comparisons vs zero to a single compare
1785 * vs the high word of the input.
1786 */
1787 if (arg_is_const(op->args[3]) && arg_info(op->args[3])->val == 0 &&
1788 arg_is_const(op->args[4]) && arg_info(op->args[4])->val == 0) {
1789 goto do_setcond_high;
1790 }
1791 break;
1792
1793 case TCG_COND_NE:
1794 inv = 1;
1795 QEMU_FALLTHROUGH;
1796 case TCG_COND_EQ:
1797 /*
1798 * Simplify EQ/NE comparisons where one of the pairs
1799 * can be simplified.
1800 */
Richard Henderson67f84c92021-08-25 08:00:20 -07001801 i = do_constant_folding_cond(TCG_TYPE_I32, op->args[1],
Richard Hendersonbc47b1a2021-08-24 09:09:35 -07001802 op->args[3], cond);
1803 switch (i ^ inv) {
1804 case 0:
1805 goto do_setcond_const;
1806 case 1:
1807 goto do_setcond_high;
1808 }
1809
Richard Henderson67f84c92021-08-25 08:00:20 -07001810 i = do_constant_folding_cond(TCG_TYPE_I32, op->args[2],
Richard Hendersonbc47b1a2021-08-24 09:09:35 -07001811 op->args[4], cond);
1812 switch (i ^ inv) {
1813 case 0:
1814 goto do_setcond_const;
1815 case 1:
1816 op->args[2] = op->args[3];
1817 op->args[3] = cond;
1818 op->opc = INDEX_op_setcond_i32;
1819 break;
1820 }
1821 break;
1822
1823 default:
1824 break;
1825
1826 do_setcond_high:
1827 op->args[1] = op->args[2];
1828 op->args[2] = op->args[4];
1829 op->args[3] = cond;
1830 op->opc = INDEX_op_setcond_i32;
1831 break;
1832 }
Richard Hendersonfae450b2021-08-25 22:42:19 -07001833
1834 ctx->z_mask = 1;
Richard Henderson275d7d82021-08-26 13:20:39 -07001835 ctx->s_mask = smask_from_zmask(1);
Richard Hendersonbc47b1a2021-08-24 09:09:35 -07001836 return false;
1837
1838 do_setcond_const:
1839 return tcg_opt_gen_movi(ctx, op, op->args[0], i);
1840}
1841
Richard Hendersonb6617c82021-08-24 10:44:53 -07001842static bool fold_sextract(OptContext *ctx, TCGOp *op)
1843{
Richard Henderson57fe5c62021-08-26 12:04:46 -07001844 uint64_t z_mask, s_mask, s_mask_old;
1845 int pos = op->args[2];
1846 int len = op->args[3];
Richard Hendersonfae450b2021-08-25 22:42:19 -07001847
Richard Hendersonb6617c82021-08-24 10:44:53 -07001848 if (arg_is_const(op->args[1])) {
1849 uint64_t t;
1850
1851 t = arg_info(op->args[1])->val;
Richard Henderson57fe5c62021-08-26 12:04:46 -07001852 t = sextract64(t, pos, len);
Richard Hendersonb6617c82021-08-24 10:44:53 -07001853 return tcg_opt_gen_movi(ctx, op, op->args[0], t);
1854 }
Richard Hendersonfae450b2021-08-25 22:42:19 -07001855
Richard Henderson57fe5c62021-08-26 12:04:46 -07001856 z_mask = arg_info(op->args[1])->z_mask;
1857 z_mask = sextract64(z_mask, pos, len);
Richard Hendersonfae450b2021-08-25 22:42:19 -07001858 ctx->z_mask = z_mask;
1859
Richard Henderson57fe5c62021-08-26 12:04:46 -07001860 s_mask_old = arg_info(op->args[1])->s_mask;
1861 s_mask = sextract64(s_mask_old, pos, len);
1862 s_mask |= MAKE_64BIT_MASK(len, 64 - len);
1863 ctx->s_mask = s_mask;
1864
1865 if (pos == 0) {
1866 ctx->a_mask = s_mask & ~s_mask_old;
1867 }
1868
Richard Hendersonfae450b2021-08-25 22:42:19 -07001869 return fold_masks(ctx, op);
Richard Hendersonb6617c82021-08-24 10:44:53 -07001870}
1871
Richard Henderson2f9f08b2021-08-25 12:03:48 -07001872static bool fold_shift(OptContext *ctx, TCGOp *op)
1873{
Richard Henderson93a967f2021-08-26 13:24:59 -07001874 uint64_t s_mask, z_mask, sign;
1875
Richard Hendersona63ce0e2021-08-25 20:28:53 -07001876 if (fold_const2(ctx, op) ||
Richard Hendersonda48e272021-08-25 20:42:04 -07001877 fold_ix_to_i(ctx, op, 0) ||
Richard Hendersona63ce0e2021-08-25 20:28:53 -07001878 fold_xi_to_x(ctx, op, 0)) {
1879 return true;
1880 }
Richard Hendersonfae450b2021-08-25 22:42:19 -07001881
Richard Henderson93a967f2021-08-26 13:24:59 -07001882 s_mask = arg_info(op->args[1])->s_mask;
1883 z_mask = arg_info(op->args[1])->z_mask;
1884
Richard Hendersonfae450b2021-08-25 22:42:19 -07001885 if (arg_is_const(op->args[2])) {
Richard Henderson93a967f2021-08-26 13:24:59 -07001886 int sh = arg_info(op->args[2])->val;
1887
1888 ctx->z_mask = do_constant_folding(op->opc, ctx->type, z_mask, sh);
1889
1890 s_mask = do_constant_folding(op->opc, ctx->type, s_mask, sh);
1891 ctx->s_mask = smask_from_smask(s_mask);
1892
Richard Hendersonfae450b2021-08-25 22:42:19 -07001893 return fold_masks(ctx, op);
1894 }
Richard Henderson93a967f2021-08-26 13:24:59 -07001895
1896 switch (op->opc) {
1897 CASE_OP_32_64(sar):
1898 /*
1899 * Arithmetic right shift will not reduce the number of
1900 * input sign repetitions.
1901 */
1902 ctx->s_mask = s_mask;
1903 break;
1904 CASE_OP_32_64(shr):
1905 /*
1906 * If the sign bit is known zero, then logical right shift
1907 * will not reduced the number of input sign repetitions.
1908 */
1909 sign = (s_mask & -s_mask) >> 1;
1910 if (!(z_mask & sign)) {
1911 ctx->s_mask = s_mask;
1912 }
1913 break;
1914 default:
1915 break;
1916 }
1917
Richard Hendersona63ce0e2021-08-25 20:28:53 -07001918 return false;
Richard Henderson2f9f08b2021-08-25 12:03:48 -07001919}
1920
Richard Henderson9caca882021-08-24 13:30:32 -07001921static bool fold_sub_to_neg(OptContext *ctx, TCGOp *op)
1922{
1923 TCGOpcode neg_op;
1924 bool have_neg;
1925
1926 if (!arg_is_const(op->args[1]) || arg_info(op->args[1])->val != 0) {
1927 return false;
1928 }
1929
1930 switch (ctx->type) {
1931 case TCG_TYPE_I32:
1932 neg_op = INDEX_op_neg_i32;
1933 have_neg = TCG_TARGET_HAS_neg_i32;
1934 break;
1935 case TCG_TYPE_I64:
1936 neg_op = INDEX_op_neg_i64;
1937 have_neg = TCG_TARGET_HAS_neg_i64;
1938 break;
1939 case TCG_TYPE_V64:
1940 case TCG_TYPE_V128:
1941 case TCG_TYPE_V256:
1942 neg_op = INDEX_op_neg_vec;
1943 have_neg = (TCG_TARGET_HAS_neg_vec &&
1944 tcg_can_emit_vec_op(neg_op, ctx->type, TCGOP_VECE(op)) > 0);
1945 break;
1946 default:
1947 g_assert_not_reached();
1948 }
1949 if (have_neg) {
1950 op->opc = neg_op;
1951 op->args[1] = op->args[2];
1952 return fold_neg(ctx, op);
1953 }
1954 return false;
1955}
1956
Richard Hendersonc578ff12021-12-16 06:07:25 -08001957/* We cannot as yet do_constant_folding with vectors. */
1958static bool fold_sub_vec(OptContext *ctx, TCGOp *op)
Richard Henderson2f9f08b2021-08-25 12:03:48 -07001959{
Richard Hendersonc578ff12021-12-16 06:07:25 -08001960 if (fold_xx_to_i(ctx, op, 0) ||
Richard Hendersona63ce0e2021-08-25 20:28:53 -07001961 fold_xi_to_x(ctx, op, 0) ||
Richard Henderson9caca882021-08-24 13:30:32 -07001962 fold_sub_to_neg(ctx, op)) {
Richard Hendersoncbe42fb2021-08-25 13:02:00 -07001963 return true;
1964 }
1965 return false;
Richard Henderson2f9f08b2021-08-25 12:03:48 -07001966}
1967
Richard Hendersonc578ff12021-12-16 06:07:25 -08001968static bool fold_sub(OptContext *ctx, TCGOp *op)
1969{
1970 return fold_const2(ctx, op) || fold_sub_vec(ctx, op);
1971}
1972
Richard Henderson9531c072021-08-26 06:51:39 -07001973static bool fold_sub2(OptContext *ctx, TCGOp *op)
Richard Hendersone3f7dc22021-08-24 10:30:38 -07001974{
Richard Henderson9531c072021-08-26 06:51:39 -07001975 return fold_addsub2(ctx, op, false);
Richard Hendersone3f7dc22021-08-24 10:30:38 -07001976}
1977
Richard Hendersonfae450b2021-08-25 22:42:19 -07001978static bool fold_tcg_ld(OptContext *ctx, TCGOp *op)
1979{
1980 /* We can't do any folding with a load, but we can record bits. */
1981 switch (op->opc) {
Richard Henderson57fe5c62021-08-26 12:04:46 -07001982 CASE_OP_32_64(ld8s):
1983 ctx->s_mask = MAKE_64BIT_MASK(8, 56);
1984 break;
Richard Hendersonfae450b2021-08-25 22:42:19 -07001985 CASE_OP_32_64(ld8u):
1986 ctx->z_mask = MAKE_64BIT_MASK(0, 8);
Richard Henderson57fe5c62021-08-26 12:04:46 -07001987 ctx->s_mask = MAKE_64BIT_MASK(9, 55);
1988 break;
1989 CASE_OP_32_64(ld16s):
1990 ctx->s_mask = MAKE_64BIT_MASK(16, 48);
Richard Hendersonfae450b2021-08-25 22:42:19 -07001991 break;
1992 CASE_OP_32_64(ld16u):
1993 ctx->z_mask = MAKE_64BIT_MASK(0, 16);
Richard Henderson57fe5c62021-08-26 12:04:46 -07001994 ctx->s_mask = MAKE_64BIT_MASK(17, 47);
1995 break;
1996 case INDEX_op_ld32s_i64:
1997 ctx->s_mask = MAKE_64BIT_MASK(32, 32);
Richard Hendersonfae450b2021-08-25 22:42:19 -07001998 break;
1999 case INDEX_op_ld32u_i64:
2000 ctx->z_mask = MAKE_64BIT_MASK(0, 32);
Richard Henderson57fe5c62021-08-26 12:04:46 -07002001 ctx->s_mask = MAKE_64BIT_MASK(33, 31);
Richard Hendersonfae450b2021-08-25 22:42:19 -07002002 break;
2003 default:
2004 g_assert_not_reached();
2005 }
2006 return false;
2007}
2008
Richard Henderson2f9f08b2021-08-25 12:03:48 -07002009static bool fold_xor(OptContext *ctx, TCGOp *op)
2010{
Richard Henderson7a2f7082021-08-26 07:06:39 -07002011 if (fold_const2_commutative(ctx, op) ||
Richard Henderson0e0a32b2021-08-24 13:18:01 -07002012 fold_xx_to_i(ctx, op, 0) ||
Richard Hendersona63ce0e2021-08-25 20:28:53 -07002013 fold_xi_to_x(ctx, op, 0) ||
Richard Henderson0e0a32b2021-08-24 13:18:01 -07002014 fold_xi_to_not(ctx, op, -1)) {
Richard Hendersoncbe42fb2021-08-25 13:02:00 -07002015 return true;
2016 }
Richard Hendersonfae450b2021-08-25 22:42:19 -07002017
2018 ctx->z_mask = arg_info(op->args[1])->z_mask
2019 | arg_info(op->args[2])->z_mask;
Richard Henderson3f2b1f82021-08-26 13:08:54 -07002020 ctx->s_mask = arg_info(op->args[1])->s_mask
2021 & arg_info(op->args[2])->s_mask;
Richard Hendersonfae450b2021-08-25 22:42:19 -07002022 return fold_masks(ctx, op);
Richard Henderson2f9f08b2021-08-25 12:03:48 -07002023}
2024
Kirill Batuzov22613af2011-07-07 16:37:13 +04002025/* Propagate constants and copies, fold constant expressions. */
Aurelien Jarno36e60ef2015-06-04 21:53:27 +02002026void tcg_optimize(TCGContext *s)
Kirill Batuzov8f2e8c02011-07-07 16:37:12 +04002027{
Richard Henderson5cf32be2021-08-24 08:17:08 -07002028 int nb_temps, i;
Richard Hendersond0ed5152021-08-24 07:38:39 -07002029 TCGOp *op, *op_next;
Richard Hendersondc849882021-08-24 07:13:45 -07002030 OptContext ctx = { .tcg = s };
Richard Henderson5d8f5362012-09-21 10:13:38 -07002031
Kirill Batuzov22613af2011-07-07 16:37:13 +04002032 /* Array VALS has an element for each temp.
2033 If this temp holds a constant then its value is kept in VALS' element.
Aurelien Jarnoe590d4e2012-09-11 12:31:21 +02002034 If this temp is a copy of other ones then the other copies are
2035 available through the doubly linked circular list. */
Kirill Batuzov8f2e8c02011-07-07 16:37:12 +04002036
2037 nb_temps = s->nb_temps;
Richard Henderson8f17a972020-03-30 19:52:02 -07002038 for (i = 0; i < nb_temps; ++i) {
2039 s->temps[i].state_ptr = NULL;
2040 }
Kirill Batuzov8f2e8c02011-07-07 16:37:12 +04002041
Richard Henderson15fa08f2017-11-02 15:19:14 +01002042 QTAILQ_FOREACH_SAFE(op, &s->ops, link, op_next) {
Richard Hendersonc45cb8b2014-09-19 13:49:15 -07002043 TCGOpcode opc = op->opc;
Richard Henderson5cf32be2021-08-24 08:17:08 -07002044 const TCGOpDef *def;
Richard Henderson404a1482021-08-24 11:08:21 -07002045 bool done = false;
Richard Hendersonc45cb8b2014-09-19 13:49:15 -07002046
Richard Henderson5cf32be2021-08-24 08:17:08 -07002047 /* Calls are special. */
Richard Hendersonc45cb8b2014-09-19 13:49:15 -07002048 if (opc == INDEX_op_call) {
Richard Henderson5cf32be2021-08-24 08:17:08 -07002049 fold_call(&ctx, op);
2050 continue;
Richard Hendersoncf066672014-03-22 20:06:52 -07002051 }
Richard Henderson5cf32be2021-08-24 08:17:08 -07002052
2053 def = &tcg_op_defs[opc];
Richard Hendersonec5d4cb2021-08-24 08:20:27 -07002054 init_arguments(&ctx, op, def->nb_oargs + def->nb_iargs);
2055 copy_propagate(&ctx, op, def->nb_oargs, def->nb_iargs);
Kirill Batuzov22613af2011-07-07 16:37:13 +04002056
Richard Henderson67f84c92021-08-25 08:00:20 -07002057 /* Pre-compute the type of the operation. */
2058 if (def->flags & TCG_OPF_VECTOR) {
2059 ctx.type = TCG_TYPE_V64 + TCGOP_VECL(op);
2060 } else if (def->flags & TCG_OPF_64BIT) {
2061 ctx.type = TCG_TYPE_I64;
2062 } else {
2063 ctx.type = TCG_TYPE_I32;
2064 }
2065
Richard Henderson57fe5c62021-08-26 12:04:46 -07002066 /* Assume all bits affected, no bits known zero, no sign reps. */
Richard Hendersonfae450b2021-08-25 22:42:19 -07002067 ctx.a_mask = -1;
2068 ctx.z_mask = -1;
Richard Henderson57fe5c62021-08-26 12:04:46 -07002069 ctx.s_mask = 0;
Paolo Bonzini633f6502013-01-11 15:42:53 -08002070
Richard Henderson2cfac7f2021-08-25 13:05:43 -07002071 /*
2072 * Process each opcode.
2073 * Sorted alphabetically by opcode as much as possible.
2074 */
Richard Hendersonc45cb8b2014-09-19 13:49:15 -07002075 switch (opc) {
Richard Hendersonc578ff12021-12-16 06:07:25 -08002076 CASE_OP_32_64(add):
Richard Henderson2f9f08b2021-08-25 12:03:48 -07002077 done = fold_add(&ctx, op);
2078 break;
Richard Hendersonc578ff12021-12-16 06:07:25 -08002079 case INDEX_op_add_vec:
2080 done = fold_add_vec(&ctx, op);
2081 break;
Richard Henderson9531c072021-08-26 06:51:39 -07002082 CASE_OP_32_64(add2):
2083 done = fold_add2(&ctx, op);
Richard Hendersone3f7dc22021-08-24 10:30:38 -07002084 break;
Richard Henderson2f9f08b2021-08-25 12:03:48 -07002085 CASE_OP_32_64_VEC(and):
2086 done = fold_and(&ctx, op);
2087 break;
2088 CASE_OP_32_64_VEC(andc):
2089 done = fold_andc(&ctx, op);
2090 break;
Richard Henderson079b0802021-08-24 09:30:59 -07002091 CASE_OP_32_64(brcond):
2092 done = fold_brcond(&ctx, op);
2093 break;
Richard Henderson764d2ab2021-08-24 09:22:11 -07002094 case INDEX_op_brcond2_i32:
2095 done = fold_brcond2(&ctx, op);
2096 break;
Richard Henderson09bacdc2021-08-24 11:58:12 -07002097 CASE_OP_32_64(bswap16):
2098 CASE_OP_32_64(bswap32):
2099 case INDEX_op_bswap64_i64:
2100 done = fold_bswap(&ctx, op);
2101 break;
Richard Henderson30dd0bf2021-08-24 10:51:34 -07002102 CASE_OP_32_64(clz):
2103 CASE_OP_32_64(ctz):
2104 done = fold_count_zeros(&ctx, op);
2105 break;
Richard Henderson2f9f08b2021-08-25 12:03:48 -07002106 CASE_OP_32_64(ctpop):
2107 done = fold_ctpop(&ctx, op);
2108 break;
Richard Henderson1b1907b2021-08-24 10:47:04 -07002109 CASE_OP_32_64(deposit):
2110 done = fold_deposit(&ctx, op);
2111 break;
Richard Henderson2f9f08b2021-08-25 12:03:48 -07002112 CASE_OP_32_64(div):
2113 CASE_OP_32_64(divu):
2114 done = fold_divide(&ctx, op);
2115 break;
Richard Henderson8cdb3fc2021-08-24 12:06:33 -07002116 case INDEX_op_dup_vec:
2117 done = fold_dup(&ctx, op);
2118 break;
2119 case INDEX_op_dup2_vec:
2120 done = fold_dup2(&ctx, op);
2121 break;
Richard Hendersoned523472021-12-16 11:17:46 -08002122 CASE_OP_32_64_VEC(eqv):
Richard Henderson2f9f08b2021-08-25 12:03:48 -07002123 done = fold_eqv(&ctx, op);
2124 break;
Richard Hendersonb6617c82021-08-24 10:44:53 -07002125 CASE_OP_32_64(extract):
2126 done = fold_extract(&ctx, op);
2127 break;
Richard Hendersondcd08992021-08-24 10:41:39 -07002128 CASE_OP_32_64(extract2):
2129 done = fold_extract2(&ctx, op);
2130 break;
Richard Henderson2f9f08b2021-08-25 12:03:48 -07002131 CASE_OP_32_64(ext8s):
2132 CASE_OP_32_64(ext16s):
2133 case INDEX_op_ext32s_i64:
2134 case INDEX_op_ext_i32_i64:
2135 done = fold_exts(&ctx, op);
2136 break;
2137 CASE_OP_32_64(ext8u):
2138 CASE_OP_32_64(ext16u):
2139 case INDEX_op_ext32u_i64:
2140 case INDEX_op_extu_i32_i64:
2141 case INDEX_op_extrl_i64_i32:
2142 case INDEX_op_extrh_i64_i32:
2143 done = fold_extu(&ctx, op);
2144 break;
Richard Henderson57fe5c62021-08-26 12:04:46 -07002145 CASE_OP_32_64(ld8s):
Richard Hendersonfae450b2021-08-25 22:42:19 -07002146 CASE_OP_32_64(ld8u):
Richard Henderson57fe5c62021-08-26 12:04:46 -07002147 CASE_OP_32_64(ld16s):
Richard Hendersonfae450b2021-08-25 22:42:19 -07002148 CASE_OP_32_64(ld16u):
Richard Henderson57fe5c62021-08-26 12:04:46 -07002149 case INDEX_op_ld32s_i64:
Richard Hendersonfae450b2021-08-25 22:42:19 -07002150 case INDEX_op_ld32u_i64:
2151 done = fold_tcg_ld(&ctx, op);
2152 break;
Richard Henderson3eefdf22021-08-25 11:06:43 -07002153 case INDEX_op_mb:
2154 done = fold_mb(&ctx, op);
2155 break;
Richard Henderson2cfac7f2021-08-25 13:05:43 -07002156 CASE_OP_32_64_VEC(mov):
2157 done = fold_mov(&ctx, op);
2158 break;
Richard Henderson0c310a32021-08-24 10:37:24 -07002159 CASE_OP_32_64(movcond):
2160 done = fold_movcond(&ctx, op);
2161 break;
Richard Henderson2f9f08b2021-08-25 12:03:48 -07002162 CASE_OP_32_64(mul):
2163 done = fold_mul(&ctx, op);
2164 break;
2165 CASE_OP_32_64(mulsh):
2166 CASE_OP_32_64(muluh):
2167 done = fold_mul_highpart(&ctx, op);
2168 break;
Richard Henderson407112b2021-08-26 06:33:04 -07002169 CASE_OP_32_64(muls2):
2170 CASE_OP_32_64(mulu2):
2171 done = fold_multiply2(&ctx, op);
Richard Henderson6b8ac0d2021-08-24 10:24:12 -07002172 break;
Richard Hendersoned523472021-12-16 11:17:46 -08002173 CASE_OP_32_64_VEC(nand):
Richard Henderson2f9f08b2021-08-25 12:03:48 -07002174 done = fold_nand(&ctx, op);
2175 break;
2176 CASE_OP_32_64(neg):
2177 done = fold_neg(&ctx, op);
2178 break;
Richard Hendersoned523472021-12-16 11:17:46 -08002179 CASE_OP_32_64_VEC(nor):
Richard Henderson2f9f08b2021-08-25 12:03:48 -07002180 done = fold_nor(&ctx, op);
2181 break;
2182 CASE_OP_32_64_VEC(not):
2183 done = fold_not(&ctx, op);
2184 break;
2185 CASE_OP_32_64_VEC(or):
2186 done = fold_or(&ctx, op);
2187 break;
2188 CASE_OP_32_64_VEC(orc):
2189 done = fold_orc(&ctx, op);
2190 break;
Richard Henderson3eefdf22021-08-25 11:06:43 -07002191 case INDEX_op_qemu_ld_i32:
2192 case INDEX_op_qemu_ld_i64:
2193 done = fold_qemu_ld(&ctx, op);
2194 break;
2195 case INDEX_op_qemu_st_i32:
2196 case INDEX_op_qemu_st8_i32:
2197 case INDEX_op_qemu_st_i64:
2198 done = fold_qemu_st(&ctx, op);
2199 break;
Richard Henderson2f9f08b2021-08-25 12:03:48 -07002200 CASE_OP_32_64(rem):
2201 CASE_OP_32_64(remu):
2202 done = fold_remainder(&ctx, op);
2203 break;
2204 CASE_OP_32_64(rotl):
2205 CASE_OP_32_64(rotr):
2206 CASE_OP_32_64(sar):
2207 CASE_OP_32_64(shl):
2208 CASE_OP_32_64(shr):
2209 done = fold_shift(&ctx, op);
2210 break;
Richard Hendersonc63ff552021-08-24 09:35:30 -07002211 CASE_OP_32_64(setcond):
2212 done = fold_setcond(&ctx, op);
2213 break;
Richard Hendersonbc47b1a2021-08-24 09:09:35 -07002214 case INDEX_op_setcond2_i32:
2215 done = fold_setcond2(&ctx, op);
2216 break;
Richard Hendersonb6617c82021-08-24 10:44:53 -07002217 CASE_OP_32_64(sextract):
2218 done = fold_sextract(&ctx, op);
2219 break;
Richard Hendersonc578ff12021-12-16 06:07:25 -08002220 CASE_OP_32_64(sub):
Richard Henderson2f9f08b2021-08-25 12:03:48 -07002221 done = fold_sub(&ctx, op);
2222 break;
Richard Hendersonc578ff12021-12-16 06:07:25 -08002223 case INDEX_op_sub_vec:
2224 done = fold_sub_vec(&ctx, op);
2225 break;
Richard Henderson9531c072021-08-26 06:51:39 -07002226 CASE_OP_32_64(sub2):
2227 done = fold_sub2(&ctx, op);
Richard Hendersone3f7dc22021-08-24 10:30:38 -07002228 break;
Richard Henderson2f9f08b2021-08-25 12:03:48 -07002229 CASE_OP_32_64_VEC(xor):
2230 done = fold_xor(&ctx, op);
Richard Hendersonb10f3832021-08-23 22:30:17 -07002231 break;
Richard Henderson2cfac7f2021-08-25 13:05:43 -07002232 default:
2233 break;
Richard Hendersonb10f3832021-08-23 22:30:17 -07002234 }
2235
Richard Henderson404a1482021-08-24 11:08:21 -07002236 if (!done) {
2237 finish_folding(&ctx, op);
2238 }
Kirill Batuzov8f2e8c02011-07-07 16:37:12 +04002239 }
Kirill Batuzov8f2e8c02011-07-07 16:37:12 +04002240}