2 * cfold.c: Constant folding support
5 * Paolo Molaro (lupus@ximian.com)
6 * Dietmar Maurer (dietmar@ximian.com)
8 * (C) 2003 Ximian, Inc. http://www.ximian.com
13 mono_is_power_of_two (guint32 val
)
17 for (i
= 0, j
= 1, k
= 0xfffffffe; i
< 32; ++i
, j
= j
<< 1, k
= k
<< 1) {
21 if (i
== 32 || val
& k
)
27 #define MYGINT32_MAX 2147483647
28 #define G_MININT32 (-MYGINT32_MAX -1)
31 #define FOLD_UNOP(name,op) \
33 dest->inst_c0 = op arg1->inst_c0; \
36 #define FOLD_BINOP(name, op) \
38 dest->inst_c0 = arg1->inst_c0 op arg2->inst_c0; \
41 #define FOLD_BINOPC(name,op,cast) \
43 dest->inst_c0 = (cast)arg1->inst_c0 op (cast)arg2->inst_c0; \
46 #define FOLD_BINOP2_IMM(name, op) \
48 dest->inst_c0 = arg1->inst_c0 op ins->inst_imm; \
51 #define FOLD_BINOPC2_IMM(name, op, cast) \
53 dest->inst_c0 = (cast)arg1->inst_c0 op (cast)ins->inst_imm; \
56 #define FOLD_BINOPCXX(name,op,cast) \
58 res = (cast)arg1->inst_c0 op (cast)arg2->inst_c0; \
62 #define MONO_INST_NEW(cfg,dest,op) do { \
63 (dest) = mono_mempool_alloc ((cfg)->mempool, sizeof (MonoInst)); \
64 (dest)->inst_p0 = (dest)->inst_p1 = (dest)->next = NULL; \
65 (dest)->opcode = (op); \
67 (dest)->dreg = (dest)->sreg1 = (dest)->sreg2 = -1; \
70 #define ALLOC_DEST(cfg, dest, ins) do { \
72 MONO_INST_NEW ((cfg), (dest), -1); \
73 (dest)->dreg = (ins)->dreg; \
78 * mono_constant_fold_ins:
80 * Perform constant folding on INS, using ARG1 and ARG2 as the arguments. If OVERWRITE is
81 * true, then store the result back into INS and return INS. Otherwise allocate a new ins,
82 * store the result into it and return it. If constant folding cannot be performed, return
86 mono_constant_fold_ins (MonoCompile
*cfg
, MonoInst
*ins
, MonoInst
*arg1
, MonoInst
*arg2
, gboolean overwrite
)
88 MonoInst
*dest
= NULL
;
93 switch (ins
->opcode
) {
99 if (arg2
->opcode
== OP_ICONST
) {
100 if (arg1
->opcode
== OP_ICONST
) {
101 ALLOC_DEST (cfg
, dest
, ins
);
102 switch (ins
->opcode
) {
103 FOLD_BINOP (OP_IMUL
, *);
104 FOLD_BINOP (OP_IADD
, +);
105 FOLD_BINOP (OP_IAND
, &);
106 FOLD_BINOP (OP_IOR
, |);
107 FOLD_BINOP (OP_IXOR
, ^);
109 dest
->opcode
= OP_ICONST
;
110 dest
->sreg1
= dest
->sreg2
= -1;
112 } else if (arg1
->opcode
== OP_ICONST
) {
114 * This is commutative so swap the arguments, allowing the _imm variant
117 if (mono_op_to_op_imm (ins
->opcode
) != -1) {
118 ALLOC_DEST (cfg
, dest
, ins
);
119 dest
->opcode
= mono_op_to_op_imm (ins
->opcode
);
120 dest
->sreg1
= ins
->sreg2
;
122 dest
->inst_imm
= arg1
->inst_c0
;
136 if (arg1
->opcode
== OP_ICONST
) {
137 ALLOC_DEST (cfg
, dest
, ins
);
138 switch (ins
->opcode
) {
139 FOLD_BINOP2_IMM (OP_IMUL_IMM
, *);
140 FOLD_BINOP2_IMM (OP_IADD_IMM
, +);
141 FOLD_BINOP2_IMM (OP_IAND_IMM
, &);
142 FOLD_BINOP2_IMM (OP_IOR_IMM
, |);
143 FOLD_BINOP2_IMM (OP_IXOR_IMM
, ^);
144 FOLD_BINOP2_IMM (OP_ISUB_IMM
, -);
145 FOLD_BINOP2_IMM (OP_ISHL_IMM
, <<);
146 FOLD_BINOP2_IMM (OP_ISHR_IMM
, >>);
147 FOLD_BINOPC2_IMM (OP_ISHR_UN_IMM
, >>, guint32
);
148 FOLD_BINOP2_IMM (OP_SHL_IMM
, <<);
150 dest
->opcode
= OP_ICONST
;
151 dest
->sreg1
= dest
->sreg2
= -1;
158 if ((arg1
->opcode
== OP_ICONST
) && (arg2
->opcode
== OP_ICONST
)) {
159 ALLOC_DEST (cfg
, dest
, ins
);
160 switch (ins
->opcode
) {
161 FOLD_BINOP (OP_ISUB
, -);
162 FOLD_BINOP (OP_ISHL
, <<);
163 FOLD_BINOP (OP_ISHR
, >>);
164 FOLD_BINOPC (OP_ISHR_UN
, >>, guint32
);
166 dest
->opcode
= OP_ICONST
;
167 dest
->sreg1
= dest
->sreg2
= -1;
174 if ((arg1
->opcode
== OP_ICONST
) && (arg2
->opcode
== OP_ICONST
)) {
175 if ((arg2
->inst_c0
== 0) || ((arg1
->inst_c0
== G_MININT32
) && (arg2
->inst_c0
== -1)))
177 ALLOC_DEST (cfg
, dest
, ins
);
178 switch (ins
->opcode
) {
179 FOLD_BINOPC (OP_IDIV
, /, gint32
);
180 FOLD_BINOPC (OP_IDIV_UN
, /, guint32
);
181 FOLD_BINOPC (OP_IREM
, %, gint32
);
182 FOLD_BINOPC (OP_IREM_UN
, %, guint32
);
184 dest
->opcode
= OP_ICONST
;
185 dest
->sreg1
= dest
->sreg2
= -1;
192 if (arg1
->opcode
== OP_ICONST
) {
193 if ((ins
->inst_imm
== 0) || ((arg1
->inst_c0
== G_MININT32
) && (ins
->inst_imm
== -1)))
195 ALLOC_DEST (cfg
, dest
, ins
);
196 switch (ins
->opcode
) {
197 FOLD_BINOPC2_IMM (OP_IDIV_IMM
, /, gint32
);
198 FOLD_BINOPC2_IMM (OP_IDIV_UN_IMM
, /, guint32
);
199 FOLD_BINOPC2_IMM (OP_IREM_IMM
, %, gint32
);
200 FOLD_BINOPC2_IMM (OP_IREM_UN_IMM
, %, guint32
);
202 g_assert_not_reached ();
204 dest
->opcode
= OP_ICONST
;
205 dest
->sreg1
= dest
->sreg2
= -1;
211 if (arg1
->opcode
== OP_ICONST
) {
212 /* INEG sets cflags on x86, and the LNEG decomposition depends on that */
213 if ((ins
->opcode
== OP_INEG
) && ins
->next
&& (ins
->next
->opcode
== OP_ADC_IMM
))
215 ALLOC_DEST (cfg
, dest
, ins
);
216 switch (ins
->opcode
) {
217 FOLD_UNOP (OP_INEG
,-);
218 FOLD_UNOP (OP_INOT
,~);
220 dest
->opcode
= OP_ICONST
;
221 dest
->sreg1
= dest
->sreg2
= -1;
225 #if SIZEOF_REGISTER == 8
226 if ((arg1
->opcode
== OP_ICONST
) || (arg1
->opcode
== OP_I8CONST
)) {
228 if (arg1
->opcode
== OP_ICONST
) {
230 ALLOC_DEST (cfg
, dest
, ins
);
231 dest
->opcode
= arg1
->opcode
;
232 dest
->sreg1
= dest
->sreg2
= -1;
233 dest
->inst_c0
= arg1
->inst_c0
;
237 if (arg1
->opcode
== OP_VZERO
) {
238 ALLOC_DEST (cfg
, dest
, ins
);
239 dest
->opcode
= OP_VZERO
;
244 if (arg1
->opcode
== OP_XZERO
) {
245 ALLOC_DEST (cfg
, dest
, ins
);
246 dest
->opcode
= OP_XZERO
;
253 case OP_ICOMPARE_IMM
: {
255 if (ins
->sreg2
== -1) {
257 arg2
->opcode
= OP_ICONST
;
258 arg2
->inst_c0
= ins
->inst_imm
;
261 if ((arg1
->opcode
== OP_ICONST
) && (arg2
->opcode
== OP_ICONST
) && ins
->next
) {
262 MonoInst
*next
= ins
->next
;
263 gboolean res
= FALSE
;
265 switch (next
->opcode
) {
276 switch (next
->opcode
) {
277 FOLD_BINOPCXX (OP_CEQ
,==,gint32
);
278 FOLD_BINOPCXX (OP_ICEQ
,==,gint32
);
279 FOLD_BINOPCXX (OP_CGT
,>,gint32
);
280 FOLD_BINOPCXX (OP_ICGT
,>,gint32
);
281 FOLD_BINOPCXX (OP_CGT_UN
,>,guint32
);
282 FOLD_BINOPCXX (OP_ICGT_UN
,>,guint32
);
283 FOLD_BINOPCXX (OP_CLT
,<,gint32
);
284 FOLD_BINOPCXX (OP_ICLT
,<,gint32
);
285 FOLD_BINOPCXX (OP_CLT_UN
,<,guint32
);
286 FOLD_BINOPCXX (OP_ICLT_UN
,<,guint32
);
291 next
->opcode
= OP_ICONST
;
293 next
->sreg1
= next
->sreg2
= -1;
295 ALLOC_DEST (cfg
, dest
, ins
);
296 dest
->opcode
= OP_ICONST
;
310 switch (next
->opcode
) {
311 FOLD_BINOPCXX (OP_IBEQ
,==,gint32
);
312 FOLD_BINOPCXX (OP_IBNE_UN
,!=,guint32
);
313 FOLD_BINOPCXX (OP_IBGT
,>,gint32
);
314 FOLD_BINOPCXX (OP_IBGT_UN
,>,guint32
);
315 FOLD_BINOPCXX (OP_IBGE
,>=,gint32
);
316 FOLD_BINOPCXX (OP_IBGE_UN
,>=,guint32
);
317 FOLD_BINOPCXX (OP_IBLT
,<,gint32
);
318 FOLD_BINOPCXX (OP_IBLT_UN
,<,guint32
);
319 FOLD_BINOPCXX (OP_IBLE
,<=,gint32
);
320 FOLD_BINOPCXX (OP_IBLE_UN
,<=,guint32
);
325 * Can't nullify OP_COMPARE here since the decompose long branch
326 * opcodes depend on it being executed. Also, the branch might not
327 * be eliminated after all if loop opts is disabled, for example.
330 next
->flags
|= MONO_INST_CFOLD_TAKEN
;
332 next
->flags
|= MONO_INST_CFOLD_NOT_TAKEN
;
334 ALLOC_DEST (cfg
, dest
, ins
);
335 dest
->opcode
= OP_ICONST
;
341 /* This happens when a conditional branch is eliminated */
342 if (next
->next
== NULL
) {
355 if (arg1
->opcode
== OP_R8CONST
) {
356 ALLOC_DEST (cfg
, dest
, ins
);
357 dest
->opcode
= OP_R8CONST
;
359 dest
->inst_p0
= arg1
->inst_p0
;
366 * *ovf* opcodes? It's slow and hard to do in C.
367 * switch can be replaced by a simple jump