2 * CSE - walk the linearized instruction flow, and
3 * see if we can simplify it and apply CSE on it.
5 * Copyright (C) 2004 Linus Torvalds
16 #include "expression.h"
17 #include "flowgraph.h"
18 #include "linearize.h"
22 #define INSN_HASH_SIZE 256
23 static struct instruction_list
*insn_hash_table
[INSN_HASH_SIZE
];
25 static int phi_compare(pseudo_t phi1
, pseudo_t phi2
)
27 const struct instruction
*def1
= phi1
->def
;
28 const struct instruction
*def2
= phi2
->def
;
30 if (def1
->src1
!= def2
->src1
)
31 return def1
->src1
< def2
->src1
? -1 : 1;
32 if (def1
->bb
!= def2
->bb
)
33 return def1
->bb
< def2
->bb
? -1 : 1;
38 void cse_collect(struct instruction
*insn
)
42 hash
= (insn
->opcode
<< 3) + (insn
->size
>> 3);
43 switch (insn
->opcode
) {
45 hash
+= hashval(insn
->src3
);
48 /* Binary arithmetic */
49 case OP_ADD
: case OP_SUB
:
51 case OP_DIVU
: case OP_DIVS
:
52 case OP_MODU
: case OP_MODS
:
54 case OP_LSR
: case OP_ASR
:
55 case OP_AND
: case OP_OR
:
60 /* Binary comparison */
61 case OP_SET_EQ
: case OP_SET_NE
:
62 case OP_SET_LE
: case OP_SET_GE
:
63 case OP_SET_LT
: case OP_SET_GT
:
64 case OP_SET_B
: case OP_SET_A
:
65 case OP_SET_BE
: case OP_SET_AE
:
67 /* floating-point arithmetic & comparison */
68 case OP_FPCMP
... OP_FPCMP_END
:
73 hash
+= hashval(insn
->src2
);
77 case OP_NOT
: case OP_NEG
:
80 hash
+= hashval(insn
->src1
);
84 hash
+= hashval(insn
->val
);
88 hash
+= hashval(insn
->fvalue
);
91 case OP_SEXT
: case OP_ZEXT
:
94 case OP_UTPTR
: case OP_PTRTU
:
95 if (!insn
->orig_type
|| insn
->orig_type
->bit_size
< 0)
97 hash
+= hashval(insn
->src
);
99 // Note: see corresponding line in insn_compare()
100 hash
+= hashval(insn
->orig_type
->bit_size
);
106 FOR_EACH_PTR(insn
->phi_list
, phi
) {
107 struct instruction
*def
;
108 if (phi
== VOID
|| !phi
->def
)
111 hash
+= hashval(def
->src1
);
112 hash
+= hashval(def
->bb
);
113 } END_FOR_EACH_PTR(phi
);
119 * Nothing to do, don't even bother hashing them,
120 * we're not going to try to CSE them
125 hash
&= INSN_HASH_SIZE
-1;
126 add_instruction(insn_hash_table
+ hash
, insn
);
129 /* Compare two (sorted) phi-lists */
130 static int phi_list_compare(struct pseudo_list
*l1
, struct pseudo_list
*l2
)
134 PREPARE_PTR_LIST(l1
, phi1
);
135 PREPARE_PTR_LIST(l2
, phi2
);
139 while (phi1
&& (phi1
== VOID
|| !phi1
->def
))
141 while (phi2
&& (phi2
== VOID
|| !phi2
->def
))
145 return phi2
? -1 : 0;
148 cmp
= phi_compare(phi1
, phi2
);
154 /* Not reached, but we need to make the nesting come out right */
155 FINISH_PTR_LIST(phi2
);
156 FINISH_PTR_LIST(phi1
);
159 static int insn_compare(const void *_i1
, const void *_i2
)
161 const struct instruction
*i1
= _i1
;
162 const struct instruction
*i2
= _i2
;
166 if (i1
->opcode
!= i2
->opcode
)
167 return i1
->opcode
< i2
->opcode
? -1 : 1;
169 switch (i1
->opcode
) {
171 /* commutative binop */
174 case OP_AND
: case OP_OR
:
176 case OP_SET_EQ
: case OP_SET_NE
:
177 if (i1
->src1
== i2
->src2
&& i1
->src2
== i2
->src1
)
182 if (i1
->src3
!= i2
->src3
)
183 return i1
->src3
< i2
->src3
? -1 : 1;
184 /* Fall-through to binops */
186 /* Binary arithmetic */
188 case OP_DIVU
: case OP_DIVS
:
189 case OP_MODU
: case OP_MODS
:
191 case OP_LSR
: case OP_ASR
:
193 /* Binary comparison */
194 case OP_SET_LE
: case OP_SET_GE
:
195 case OP_SET_LT
: case OP_SET_GT
:
196 case OP_SET_B
: case OP_SET_A
:
197 case OP_SET_BE
: case OP_SET_AE
:
199 /* floating-point arithmetic */
200 case OP_FPCMP
... OP_FPCMP_END
:
206 if (i1
->src2
!= i2
->src2
)
207 return i1
->src2
< i2
->src2
? -1 : 1;
208 /* Fall through to unops */
211 case OP_NOT
: case OP_NEG
:
214 if (i1
->src1
!= i2
->src1
)
215 return i1
->src1
< i2
->src1
? -1 : 1;
219 if (i1
->val
!= i2
->val
)
220 return i1
->val
< i2
->val
? -1 : 1;
224 diff
= memcmp(&i1
->fvalue
, &i2
->fvalue
, sizeof(i1
->fvalue
));
231 return phi_list_compare(i1
->phi_list
, i2
->phi_list
);
233 case OP_SEXT
: case OP_ZEXT
:
236 case OP_UTPTR
: case OP_PTRTU
:
237 if (i1
->src
!= i2
->src
)
238 return i1
->src
< i2
->src
? -1 : 1;
240 // Note: if it can be guaranted that identical ->src
241 // implies identical orig_type->bit_size, then this
242 // test and the hashing of the original size in
243 // cse_collect() are not needed.
244 // It must be generaly true but it isn't guaranted (yet).
245 size1
= i1
->orig_type
->bit_size
;
246 size2
= i2
->orig_type
->bit_size
;
248 return size1
< size2
? -1 : 1;
252 warning(i1
->pos
, "bad instruction on hash chain");
254 if (i1
->size
!= i2
->size
)
255 return i1
->size
< i2
->size
? -1 : 1;
259 static void sort_instruction_list(struct instruction_list
**list
)
261 sort_list((struct ptr_list
**)list
, insn_compare
);
264 static struct instruction
* cse_one_instruction(struct instruction
*insn
, struct instruction
*def
)
266 convert_instruction_target(insn
, def
->target
);
268 kill_instruction(insn
);
269 repeat_phase
|= REPEAT_CSE
;
273 static struct basic_block
*trivial_common_parent(struct basic_block
*bb1
, struct basic_block
*bb2
)
275 struct basic_block
*parent
;
277 if (bb_list_size(bb1
->parents
) != 1)
279 parent
= first_basic_block(bb1
->parents
);
280 if (bb_list_size(bb2
->parents
) != 1)
282 if (first_basic_block(bb2
->parents
) != parent
)
287 static inline void remove_instruction(struct instruction_list
**list
, struct instruction
*insn
, int count
)
289 delete_ptr_list_entry((struct ptr_list
**)list
, insn
, count
);
292 static void add_instruction_to_end(struct instruction
*insn
, struct basic_block
*bb
)
294 struct instruction
*br
= delete_last_instruction(&bb
->insns
);
296 add_instruction(&bb
->insns
, insn
);
297 add_instruction(&bb
->insns
, br
);
300 static struct instruction
* try_to_cse(struct entrypoint
*ep
, struct instruction
*i1
, struct instruction
*i2
)
302 struct basic_block
*b1
, *b2
, *common
;
305 * OK, i1 and i2 are the same instruction, modulo "target".
306 * We should now see if we can combine them.
312 * Currently we only handle the uninteresting degenerate case where
313 * the CSE is inside one basic-block.
316 struct instruction
*insn
;
317 FOR_EACH_PTR(b1
->insns
, insn
) {
319 return cse_one_instruction(i2
, i1
);
321 return cse_one_instruction(i1
, i2
);
322 } END_FOR_EACH_PTR(insn
);
323 warning(b1
->pos
, "Whaa? unable to find CSE instructions");
326 if (domtree_dominates(b1
, b2
))
327 return cse_one_instruction(i2
, i1
);
329 if (domtree_dominates(b2
, b1
))
330 return cse_one_instruction(i1
, i2
);
332 /* No direct dominance - but we could try to find a common ancestor.. */
333 common
= trivial_common_parent(b1
, b2
);
335 i1
= cse_one_instruction(i2
, i1
);
336 remove_instruction(&b1
->insns
, i1
, 1);
337 add_instruction_to_end(i1
, common
);
345 void cse_eliminate(struct entrypoint
*ep
)
349 for (i
= 0; i
< INSN_HASH_SIZE
; i
++) {
350 struct instruction_list
**list
= insn_hash_table
+ i
;
352 if (instruction_list_size(*list
) > 1) {
353 struct instruction
*insn
, *last
;
355 sort_instruction_list(list
);
358 FOR_EACH_PTR(*list
, insn
) {
362 if (!insn_compare(last
, insn
))
363 insn
= try_to_cse(ep
, last
, insn
);
366 } END_FOR_EACH_PTR(insn
);