2 * Flow - walk the linearized flowgraph, simplifying it as we
5 * Copyright (C) 2004 Linus Torvalds
16 #include "expression.h"
17 #include "linearize.h"
21 unsigned long bb_generation
;
24 * Dammit, if we have a phi-node followed by a conditional
25 * branch on that phi-node, we should damn well be able to
26 * do something about the source. Maybe.
28 static int rewrite_branch(struct basic_block
*bb
,
29 struct basic_block
**ptr
,
30 struct basic_block
*old
,
31 struct basic_block
*new)
33 if (*ptr
!= old
|| new == old
)
36 /* We might find new if-conversions or non-dominating CSEs */
37 repeat_phase
|= REPEAT_CSE
;
39 replace_bb_in_list(&bb
->children
, old
, new, 1);
40 remove_bb_from_list(&old
->parents
, bb
, 1);
41 add_bb(&new->parents
, bb
);
46 * Return the known truth value of a pseudo, or -1 if
49 static int pseudo_truth_value(pseudo_t pseudo
)
51 switch (pseudo
->type
) {
53 return !!pseudo
->value
;
56 struct instruction
*insn
= pseudo
->def
;
58 /* A symbol address is always considered true.. */
59 if (insn
->opcode
== OP_SYMADDR
&& insn
->target
== pseudo
)
69 * Does a basic block depend on the pseudos that "src" defines?
71 static int bb_depends_on(struct basic_block
*target
, struct basic_block
*src
)
75 FOR_EACH_PTR(src
->defines
, pseudo
) {
76 if (pseudo_in_list(target
->needs
, pseudo
))
78 } END_FOR_EACH_PTR(pseudo
);
83 * This is only to be used by try_to_simplify_bb().
84 * It really should be handled by bb_depends_on(), only
85 * that there is no liveness done on OP_PHI/OP_PHISRC.
86 * So we consider for now that if there is an OP_PHI
87 * then some block in fact depends on this one.
88 * The OP_PHI controling the conditional branch of this bb
89 * is excluded since the branch will be removed.
91 static int bb_defines_phi(struct basic_block
*bb
, struct instruction
*def
)
93 struct instruction
*insn
;
94 FOR_EACH_PTR(bb
->insns
, insn
) {
95 switch (insn
->opcode
) {
97 if (def
&& insn
!= def
)
103 } END_FOR_EACH_PTR(insn
);
108 * When we reach here, we have:
109 * - a basic block that ends in a conditional branch and
110 * that has no side effects apart from the pseudos it
112 * - the phi-node that the conditional branch depends on
113 * - full pseudo liveness information
115 * We need to check if any of the _sources_ of the phi-node
116 * may be constant, and not actually need this block at all.
118 static int try_to_simplify_bb(struct basic_block
*bb
, struct instruction
*first
, struct instruction
*second
)
125 * This a due to improper dominance tracking during
126 * simplify_symbol_usage()/conversion to SSA form.
127 * No sane simplification can be done when we have this.
129 bogus
= bb_list_size(bb
->parents
) != pseudo_list_size(first
->phi_list
);
131 FOR_EACH_PTR(first
->phi_list
, phi
) {
132 struct instruction
*def
= phi
->def
;
133 struct basic_block
*source
, *target
;
135 struct instruction
*br
;
142 if (!pseudo
|| !source
)
144 br
= last_instruction(source
->insns
);
147 if (br
->opcode
!= OP_CBR
&& br
->opcode
!= OP_BR
)
149 true = pseudo_truth_value(pseudo
);
152 target
= true ? second
->bb_true
: second
->bb_false
;
153 if (bb_depends_on(target
, bb
))
155 if (bb_defines_phi(bb
, first
))
157 changed
|= rewrite_branch(source
, &br
->bb_true
, bb
, target
);
158 changed
|= rewrite_branch(source
, &br
->bb_false
, bb
, target
);
159 if (changed
&& !bogus
)
160 kill_use(THIS_ADDRESS(phi
));
161 } END_FOR_EACH_PTR(phi
);
165 static int bb_has_side_effects(struct basic_block
*bb
)
167 struct instruction
*insn
;
168 FOR_EACH_PTR(bb
->insns
, insn
) {
169 switch (insn
->opcode
) {
171 /* FIXME! This should take "const" etc into account */
179 /* FIXME! This should take "volatile" etc into account */
185 } END_FOR_EACH_PTR(insn
);
189 static int simplify_phi_branch(struct basic_block
*bb
, struct instruction
*br
)
191 pseudo_t cond
= br
->cond
;
192 struct instruction
*def
;
194 if (cond
->type
!= PSEUDO_REG
)
197 if (def
->bb
!= bb
|| def
->opcode
!= OP_PHI
)
199 if (bb_has_side_effects(bb
))
201 return try_to_simplify_bb(bb
, def
, br
);
204 static int simplify_branch_branch(struct basic_block
*bb
, struct instruction
*br
,
205 struct basic_block
**target_p
, int true)
207 struct basic_block
*target
= *target_p
, *final
;
208 struct instruction
*insn
;
213 insn
= last_instruction(target
->insns
);
214 if (!insn
|| insn
->opcode
!= OP_CBR
|| insn
->cond
!= br
->cond
)
217 * Ahhah! We've found a branch to a branch on the same conditional!
218 * Now we just need to see if we can rewrite the branch..
221 final
= true ? insn
->bb_true
: insn
->bb_false
;
222 if (bb_has_side_effects(target
))
223 goto try_to_rewrite_target
;
224 if (bb_depends_on(final
, target
))
225 goto try_to_rewrite_target
;
226 return rewrite_branch(bb
, target_p
, target
, final
);
228 try_to_rewrite_target
:
230 * If we're the only parent, at least we can rewrite the
231 * now-known second branch.
233 if (bb_list_size(target
->parents
) != 1)
235 insert_branch(target
, insn
, final
);
239 static int simplify_one_branch(struct basic_block
*bb
, struct instruction
*br
)
241 if (simplify_phi_branch(bb
, br
))
243 return simplify_branch_branch(bb
, br
, &br
->bb_true
, 1) |
244 simplify_branch_branch(bb
, br
, &br
->bb_false
, 0);
247 static int simplify_branch_nodes(struct entrypoint
*ep
)
250 struct basic_block
*bb
;
252 FOR_EACH_PTR(ep
->bbs
, bb
) {
253 struct instruction
*br
= last_instruction(bb
->insns
);
255 if (!br
|| br
->opcode
!= OP_CBR
)
257 changed
|= simplify_one_branch(bb
, br
);
258 } END_FOR_EACH_PTR(bb
);
263 * This is called late - when we have intra-bb liveness information..
265 int simplify_flow(struct entrypoint
*ep
)
267 return simplify_branch_nodes(ep
);
270 static inline void concat_user_list(struct pseudo_user_list
*src
, struct pseudo_user_list
**dst
)
272 concat_ptr_list((struct ptr_list
*)src
, (struct ptr_list
**)dst
);
275 void convert_instruction_target(struct instruction
*insn
, pseudo_t src
)
278 struct pseudo_user
*pu
;
280 * Go through the "insn->users" list and replace them all..
282 target
= insn
->target
;
285 FOR_EACH_PTR(target
->users
, pu
) {
286 if (*pu
->userp
!= VOID
) {
287 assert(*pu
->userp
== target
);
290 } END_FOR_EACH_PTR(pu
);
291 if (has_use_list(src
))
292 concat_user_list(target
->users
, &src
->users
);
293 target
->users
= NULL
;
296 void convert_load_instruction(struct instruction
*insn
, pseudo_t src
)
298 convert_instruction_target(insn
, src
);
299 /* Turn the load into a no-op */
300 insn
->opcode
= OP_LNOP
;
304 static int overlapping_memop(struct instruction
*a
, struct instruction
*b
)
306 unsigned int a_start
= bytes_to_bits(a
->offset
);
307 unsigned int b_start
= bytes_to_bits(b
->offset
);
308 unsigned int a_size
= a
->size
;
309 unsigned int b_size
= b
->size
;
311 if (a_size
+ a_start
<= b_start
)
313 if (b_size
+ b_start
<= a_start
)
318 static inline int same_memop(struct instruction
*a
, struct instruction
*b
)
320 return a
->offset
== b
->offset
&& a
->size
== b
->size
;
323 static inline int distinct_symbols(pseudo_t a
, pseudo_t b
)
325 if (a
->type
!= PSEUDO_SYM
)
327 if (b
->type
!= PSEUDO_SYM
)
329 return a
->sym
!= b
->sym
;
333 * Return 1 if "dom" dominates the access to "pseudo"
336 * Return 0 if it doesn't, and -1 if you don't know.
338 int dominates(pseudo_t pseudo
, struct instruction
*insn
, struct instruction
*dom
, int local
)
340 int opcode
= dom
->opcode
;
342 if (opcode
== OP_CALL
|| opcode
== OP_ENTRY
)
343 return local
? 0 : -1;
344 if (opcode
!= OP_LOAD
&& opcode
!= OP_STORE
)
346 if (dom
->src
!= pseudo
) {
349 /* We don't think two explicitly different symbols ever alias */
350 if (distinct_symbols(insn
->src
, dom
->src
))
352 /* We could try to do some alias analysis here */
355 if (!same_memop(insn
, dom
)) {
356 if (dom
->opcode
== OP_LOAD
)
358 if (!overlapping_memop(insn
, dom
))
365 static int phisrc_in_bb(struct pseudo_list
*list
, struct basic_block
*bb
)
368 FOR_EACH_PTR(list
, p
) {
369 if (p
->def
->bb
== bb
)
371 } END_FOR_EACH_PTR(p
);
376 static int find_dominating_parents(pseudo_t pseudo
, struct instruction
*insn
,
377 struct basic_block
*bb
, unsigned long generation
, struct pseudo_list
**dominators
,
380 struct basic_block
*parent
;
385 FOR_EACH_PTR(bb
->parents
, parent
) {
386 struct instruction
*one
;
387 struct instruction
*br
;
390 FOR_EACH_PTR_REVERSE(parent
->insns
, one
) {
394 dominance
= dominates(pseudo
, insn
, one
, local
);
396 if (one
->opcode
== OP_LOAD
)
402 goto found_dominator
;
403 } END_FOR_EACH_PTR_REVERSE(one
);
405 if (parent
->generation
== generation
)
407 parent
->generation
= generation
;
409 if (!find_dominating_parents(pseudo
, insn
, parent
, generation
, dominators
, local
))
414 if (dominators
&& phisrc_in_bb(*dominators
, parent
))
416 br
= delete_last_instruction(&parent
->insns
);
417 phi
= alloc_phi(parent
, one
->target
, one
->size
);
418 phi
->ident
= phi
->ident
? : pseudo
->ident
;
419 add_instruction(&parent
->insns
, br
);
420 use_pseudo(insn
, phi
, add_pseudo(dominators
, phi
));
421 } END_FOR_EACH_PTR(parent
);
426 * We should probably sort the phi list just to make it easier to compare
427 * later for equality.
429 void rewrite_load_instruction(struct instruction
*insn
, struct pseudo_list
*dominators
)
434 * Check for somewhat common case of duplicate
437 new = first_pseudo(dominators
)->def
->src1
;
438 FOR_EACH_PTR(dominators
, phi
) {
439 if (new != phi
->def
->src1
)
441 new->ident
= new->ident
? : phi
->ident
;
442 } END_FOR_EACH_PTR(phi
);
445 * All the same pseudo - mark the phi-nodes unused
446 * and convert the load into a LNOP and replace the
449 FOR_EACH_PTR(dominators
, phi
) {
450 kill_instruction(phi
->def
);
451 } END_FOR_EACH_PTR(phi
);
452 convert_load_instruction(insn
, new);
456 /* We leave symbol pseudos with a bogus usage list here */
457 if (insn
->src
->type
!= PSEUDO_SYM
)
458 kill_use(&insn
->src
);
459 insn
->opcode
= OP_PHI
;
460 insn
->phi_list
= dominators
;
463 static int find_dominating_stores(pseudo_t pseudo
, struct instruction
*insn
,
464 unsigned long generation
, int local
)
466 struct basic_block
*bb
= insn
->bb
;
467 struct instruction
*one
, *dom
= NULL
;
468 struct pseudo_list
*dominators
;
471 /* Unreachable load? Undo it */
473 insn
->opcode
= OP_LNOP
;
478 FOR_EACH_PTR(bb
->insns
, one
) {
482 dominance
= dominates(pseudo
, insn
, one
, local
);
484 /* Ignore partial load dominators */
485 if (one
->opcode
== OP_LOAD
)
495 } END_FOR_EACH_PTR(one
);
497 warning(pseudo
->sym
->pos
, "unable to find symbol read");
504 convert_load_instruction(insn
, dom
->target
);
508 /* OK, go find the parents */
509 bb
->generation
= generation
;
512 if (!find_dominating_parents(pseudo
, insn
, bb
, generation
, &dominators
, local
))
515 /* This happens with initial assignments to structures etc.. */
520 convert_load_instruction(insn
, value_pseudo(0));
525 * If we find just one dominating instruction, we
526 * can turn it into a direct thing. Otherwise we'll
527 * have to turn the load into a phi-node of the
530 rewrite_load_instruction(insn
, dominators
);
534 static void kill_store(struct instruction
*insn
)
538 insn
->opcode
= OP_SNOP
;
539 kill_use(&insn
->target
);
543 /* Kill a pseudo that is dead on exit from the bb */
544 static void kill_dead_stores(pseudo_t pseudo
, unsigned long generation
, struct basic_block
*bb
, int local
)
546 struct instruction
*insn
;
547 struct basic_block
*parent
;
549 if (bb
->generation
== generation
)
551 bb
->generation
= generation
;
552 FOR_EACH_PTR_REVERSE(bb
->insns
, insn
) {
553 int opcode
= insn
->opcode
;
555 if (opcode
!= OP_LOAD
&& opcode
!= OP_STORE
) {
558 if (opcode
== OP_CALL
)
562 if (insn
->src
== pseudo
) {
563 if (opcode
== OP_LOAD
)
570 if (insn
->src
->type
!= PSEUDO_SYM
)
572 } END_FOR_EACH_PTR_REVERSE(insn
);
574 FOR_EACH_PTR(bb
->parents
, parent
) {
575 struct basic_block
*child
;
576 FOR_EACH_PTR(parent
->children
, child
) {
577 if (child
&& child
!= bb
)
579 } END_FOR_EACH_PTR(child
);
580 kill_dead_stores(pseudo
, generation
, parent
, local
);
581 } END_FOR_EACH_PTR(parent
);
585 * This should see if the "insn" trivially dominates some previous store, and kill the
586 * store if unnecessary.
588 static void kill_dominated_stores(pseudo_t pseudo
, struct instruction
*insn
,
589 unsigned long generation
, struct basic_block
*bb
, int local
, int found
)
591 struct instruction
*one
;
592 struct basic_block
*parent
;
594 /* Unreachable store? Undo it */
599 if (bb
->generation
== generation
)
601 bb
->generation
= generation
;
602 FOR_EACH_PTR_REVERSE(bb
->insns
, one
) {
610 dominance
= dominates(pseudo
, insn
, one
, local
);
615 if (one
->opcode
== OP_LOAD
)
618 } END_FOR_EACH_PTR_REVERSE(one
);
621 warning(bb
->pos
, "Unable to find instruction");
625 FOR_EACH_PTR(bb
->parents
, parent
) {
626 struct basic_block
*child
;
627 FOR_EACH_PTR(parent
->children
, child
) {
628 if (child
&& child
!= bb
)
630 } END_FOR_EACH_PTR(child
);
631 kill_dominated_stores(pseudo
, insn
, generation
, parent
, local
, found
);
632 } END_FOR_EACH_PTR(parent
);
635 void check_access(struct instruction
*insn
)
637 pseudo_t pseudo
= insn
->src
;
639 if (insn
->bb
&& pseudo
->type
== PSEUDO_SYM
) {
640 int offset
= insn
->offset
, bit
= bytes_to_bits(offset
) + insn
->size
;
641 struct symbol
*sym
= pseudo
->sym
;
643 if (sym
->bit_size
> 0 && (offset
< 0 || bit
> sym
->bit_size
))
644 warning(insn
->pos
, "invalid access %s '%s' (%d %d)",
645 offset
< 0 ? "below" : "past the end of",
646 show_ident(sym
->ident
), offset
,
647 bits_to_bytes(sym
->bit_size
));
651 static void simplify_one_symbol(struct entrypoint
*ep
, struct symbol
*sym
)
653 pseudo_t pseudo
, src
;
654 struct pseudo_user
*pu
;
655 struct instruction
*def
;
657 int all
, stores
, complex;
659 /* Never used as a symbol? */
660 pseudo
= sym
->pseudo
;
664 /* We don't do coverage analysis of volatiles.. */
665 if (sym
->ctype
.modifiers
& MOD_VOLATILE
)
668 /* ..and symbols with external visibility need more care */
669 mod
= sym
->ctype
.modifiers
& (MOD_NONLOCAL
| MOD_STATIC
| MOD_ADDRESSABLE
);
671 goto external_visibility
;
676 FOR_EACH_PTR(pseudo
->users
, pu
) {
677 /* We know that the symbol-pseudo use is the "src" in the instruction */
678 struct instruction
*insn
= pu
->insn
;
680 switch (insn
->opcode
) {
690 mod
|= MOD_ADDRESSABLE
;
691 goto external_visibility
;
698 warning(sym
->pos
, "symbol '%s' pseudo used in unexpected way", show_ident(sym
->ident
));
700 complex |= insn
->offset
;
701 } END_FOR_EACH_PTR(pu
);
709 * Goodie, we have a single store (if even that) in the whole
710 * thing. Replace all loads with moves from the pseudo,
711 * replace the store with a def.
717 FOR_EACH_PTR(pseudo
->users
, pu
) {
718 struct instruction
*insn
= pu
->insn
;
719 if (insn
->opcode
== OP_LOAD
) {
721 convert_load_instruction(insn
, src
);
723 } END_FOR_EACH_PTR(pu
);
725 /* Turn the store into a no-op */
733 FOR_EACH_PTR_REVERSE(pseudo
->users
, pu
) {
734 struct instruction
*insn
= pu
->insn
;
735 if (insn
->opcode
== OP_LOAD
)
736 all
&= find_dominating_stores(pseudo
, insn
, ++bb_generation
, !mod
);
737 } END_FOR_EACH_PTR_REVERSE(pu
);
739 /* If we converted all the loads, remove the stores. They are dead */
741 FOR_EACH_PTR(pseudo
->users
, pu
) {
742 struct instruction
*insn
= pu
->insn
;
743 if (insn
->opcode
== OP_STORE
)
745 } END_FOR_EACH_PTR(pu
);
748 * If we couldn't take the shortcut, see if we can at least kill some
751 FOR_EACH_PTR(pseudo
->users
, pu
) {
752 struct instruction
*insn
= pu
->insn
;
753 if (insn
->opcode
== OP_STORE
)
754 kill_dominated_stores(pseudo
, insn
, ++bb_generation
, insn
->bb
, !mod
, 0);
755 } END_FOR_EACH_PTR(pu
);
757 if (!(mod
& (MOD_NONLOCAL
| MOD_STATIC
))) {
758 struct basic_block
*bb
;
759 FOR_EACH_PTR(ep
->bbs
, bb
) {
761 kill_dead_stores(pseudo
, ++bb_generation
, bb
, !mod
);
762 } END_FOR_EACH_PTR(bb
);
769 void simplify_symbol_usage(struct entrypoint
*ep
)
773 FOR_EACH_PTR(ep
->accesses
, pseudo
) {
774 simplify_one_symbol(ep
, pseudo
->sym
);
775 } END_FOR_EACH_PTR(pseudo
);
778 static void mark_bb_reachable(struct basic_block
*bb
, unsigned long generation
)
780 struct basic_block
*child
;
782 if (bb
->generation
== generation
)
784 bb
->generation
= generation
;
785 FOR_EACH_PTR(bb
->children
, child
) {
786 mark_bb_reachable(child
, generation
);
787 } END_FOR_EACH_PTR(child
);
790 static void kill_defs(struct instruction
*insn
)
792 pseudo_t target
= insn
->target
;
794 if (!has_use_list(target
))
796 if (target
->def
!= insn
)
799 convert_instruction_target(insn
, VOID
);
802 void kill_bb(struct basic_block
*bb
)
804 struct instruction
*insn
;
805 struct basic_block
*child
, *parent
;
807 FOR_EACH_PTR(bb
->insns
, insn
) {
808 kill_instruction_force(insn
);
811 * We kill unreachable instructions even if they
812 * otherwise aren't "killable" (e.g. volatile loads)
814 } END_FOR_EACH_PTR(insn
);
817 FOR_EACH_PTR(bb
->children
, child
) {
818 remove_bb_from_list(&child
->parents
, bb
, 0);
819 } END_FOR_EACH_PTR(child
);
822 FOR_EACH_PTR(bb
->parents
, parent
) {
823 remove_bb_from_list(&parent
->children
, bb
, 0);
824 } END_FOR_EACH_PTR(parent
);
828 void kill_unreachable_bbs(struct entrypoint
*ep
)
830 struct basic_block
*bb
;
831 unsigned long generation
= ++bb_generation
;
833 mark_bb_reachable(ep
->entry
->bb
, generation
);
834 FOR_EACH_PTR(ep
->bbs
, bb
) {
835 if (bb
->generation
== generation
)
837 /* Mark it as being dead */
840 DELETE_CURRENT_PTR(bb
);
841 } END_FOR_EACH_PTR(bb
);
842 PACK_PTR_LIST(&ep
->bbs
);
844 repeat_phase
&= ~REPEAT_CFG_CLEANUP
;
847 static int rewrite_parent_branch(struct basic_block
*bb
, struct basic_block
*old
, struct basic_block
*new)
850 struct instruction
*insn
= last_instruction(bb
->insns
);
855 /* Infinite loops: let's not "optimize" them.. */
859 switch (insn
->opcode
) {
861 changed
|= rewrite_branch(bb
, &insn
->bb_false
, old
, new);
864 changed
|= rewrite_branch(bb
, &insn
->bb_true
, old
, new);
868 struct multijmp
*jmp
;
869 FOR_EACH_PTR(insn
->multijmp_list
, jmp
) {
870 changed
|= rewrite_branch(bb
, &jmp
->target
, old
, new);
871 } END_FOR_EACH_PTR(jmp
);
880 static struct basic_block
* rewrite_branch_bb(struct basic_block
*bb
, struct instruction
*br
)
882 struct basic_block
*parent
;
883 struct basic_block
*target
= br
->bb_true
;
884 struct basic_block
*false = br
->bb_false
;
886 if (br
->opcode
== OP_CBR
) {
887 pseudo_t cond
= br
->cond
;
888 if (cond
->type
!= PSEUDO_VAL
)
890 target
= cond
->value
? target
: false;
894 * We can't do FOR_EACH_PTR() here, because the parent list
895 * may change when we rewrite the parent.
897 while ((parent
= first_basic_block(bb
->parents
)) != NULL
) {
898 if (!rewrite_parent_branch(parent
, bb
, target
))
904 static void vrfy_bb_in_list(struct basic_block
*bb
, struct basic_block_list
*list
)
907 struct basic_block
*tmp
;
908 int no_bb_in_list
= 0;
910 FOR_EACH_PTR(list
, tmp
) {
913 } END_FOR_EACH_PTR(tmp
);
914 assert(no_bb_in_list
);
918 static void vrfy_parents(struct basic_block
*bb
)
920 struct basic_block
*tmp
;
921 FOR_EACH_PTR(bb
->parents
, tmp
) {
922 vrfy_bb_in_list(bb
, tmp
->children
);
923 } END_FOR_EACH_PTR(tmp
);
926 static void vrfy_children(struct basic_block
*bb
)
928 struct basic_block
*tmp
;
929 struct instruction
*br
= last_instruction(bb
->insns
);
932 assert(!bb
->children
);
935 switch (br
->opcode
) {
936 struct multijmp
*jmp
;
938 vrfy_bb_in_list(br
->bb_false
, bb
->children
);
941 vrfy_bb_in_list(br
->bb_true
, bb
->children
);
944 case OP_COMPUTEDGOTO
:
945 FOR_EACH_PTR(br
->multijmp_list
, jmp
) {
946 vrfy_bb_in_list(jmp
->target
, bb
->children
);
947 } END_FOR_EACH_PTR(jmp
);
953 FOR_EACH_PTR(bb
->children
, tmp
) {
954 vrfy_bb_in_list(bb
, tmp
->parents
);
955 } END_FOR_EACH_PTR(tmp
);
958 static void vrfy_bb_flow(struct basic_block
*bb
)
964 void vrfy_flow(struct entrypoint
*ep
)
966 struct basic_block
*bb
;
967 struct basic_block
*entry
= ep
->entry
->bb
;
969 FOR_EACH_PTR(ep
->bbs
, bb
) {
973 } END_FOR_EACH_PTR(bb
);
977 void pack_basic_blocks(struct entrypoint
*ep
)
979 struct basic_block
*bb
;
981 /* See if we can merge a bb into another one.. */
982 FOR_EACH_PTR(ep
->bbs
, bb
) {
983 struct instruction
*first
, *insn
;
984 struct basic_block
*parent
, *child
, *last
;
986 if (!bb_reachable(bb
))
992 FOR_EACH_PTR(bb
->insns
, first
) {
995 switch (first
->opcode
) {
996 case OP_NOP
: case OP_LNOP
: case OP_SNOP
:
1000 struct basic_block
*replace
;
1001 replace
= rewrite_branch_bb(bb
, first
);
1011 } END_FOR_EACH_PTR(first
);
1015 * See if we only have one parent..
1018 FOR_EACH_PTR(bb
->parents
, parent
) {
1025 } END_FOR_EACH_PTR(parent
);
1028 if (!parent
|| parent
== bb
)
1032 * Goodie. See if the parent can merge..
1034 FOR_EACH_PTR(parent
->children
, child
) {
1037 } END_FOR_EACH_PTR(child
);
1042 repeat_phase
|= REPEAT_CSE
;
1044 parent
->children
= bb
->children
;
1045 bb
->children
= NULL
;
1048 FOR_EACH_PTR(parent
->children
, child
) {
1049 replace_bb_in_list(&child
->parents
, bb
, parent
, 0);
1050 } END_FOR_EACH_PTR(child
);
1052 kill_instruction(delete_last_instruction(&parent
->insns
));
1053 FOR_EACH_PTR(bb
->insns
, insn
) {
1055 assert(insn
->bb
== bb
);
1058 add_instruction(&parent
->insns
, insn
);
1059 } END_FOR_EACH_PTR(insn
);
1063 /* nothing to do */;
1064 } END_FOR_EACH_PTR(bb
);