1 /* RTL-level loop invariant motion.
2 Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010
3 Free Software Foundation, Inc.
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify it
8 under the terms of the GNU General Public License as published by the
9 Free Software Foundation; either version 3, or (at your option) any
12 GCC is distributed in the hope that it will be useful, but WITHOUT
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING3. If not see
19 <http://www.gnu.org/licenses/>. */
21 /* This implements the loop invariant motion pass. It is very simple
22 (no calls, no loads/stores, etc.). This should be sufficient to cleanup
23 things like address arithmetics -- other more complicated invariants should
24 be eliminated on GIMPLE either in tree-ssa-loop-im.c or in tree-ssa-pre.c.
26 We proceed loop by loop -- it is simpler than trying to handle things
27 globally and should not lose much. First we inspect all sets inside loop
28 and create a dependency graph on insns (saying "to move this insn, you must
29 also move the following insns").
31 We then need to determine what to move. We estimate the number of registers
32 used and move as many invariants as possible while we still have enough free
33 registers. We prefer the expensive invariants.
35 Then we move the selected invariants out of the loop, creating a new
36 temporaries for them if necessary. */
40 #include "coretypes.h"
42 #include "hard-reg-set.h"
46 #include "basic-block.h"
60 /* The data stored for the loop. */
64 struct loop
*outermost_exit
; /* The outermost exit of the loop. */
65 bool has_call
; /* True if the loop contains a call. */
66 /* Maximal register pressure inside loop for given register class
67 (defined only for the cover classes). */
68 int max_reg_pressure
[N_REG_CLASSES
];
69 /* Loop regs referenced and live pseudo-registers. */
71 bitmap_head regs_live
;
74 #define LOOP_DATA(LOOP) ((struct loop_data *) (LOOP)->aux)
76 /* The description of an use. */
80 rtx
*pos
; /* Position of the use. */
81 rtx insn
; /* The insn in that the use occurs. */
82 unsigned addr_use_p
; /* Whether the use occurs in an address. */
83 struct use
*next
; /* Next use in the list. */
86 /* The description of a def. */
90 struct use
*uses
; /* The list of uses that are uniquely reached
92 unsigned n_uses
; /* Number of such uses. */
93 unsigned n_addr_uses
; /* Number of uses in addresses. */
94 unsigned invno
; /* The corresponding invariant. */
97 /* The data stored for each invariant. */
101 /* The number of the invariant. */
104 /* The number of the invariant with the same value. */
107 /* If we moved the invariant out of the loop, the register that contains its
111 /* If we moved the invariant out of the loop, the original regno
112 that contained its value. */
115 /* The definition of the invariant. */
118 /* The insn in that it is defined. */
121 /* Whether it is always executed. */
122 bool always_executed
;
124 /* Whether to move the invariant. */
127 /* Whether the invariant is cheap when used as an address. */
130 /* Cost of the invariant. */
133 /* The invariants it depends on. */
136 /* Used for detecting already visited invariants during determining
137 costs of movements. */
141 /* Currently processed loop. */
142 static struct loop
*curr_loop
;
144 /* Table of invariants indexed by the df_ref uid field. */
146 static unsigned int invariant_table_size
= 0;
147 static struct invariant
** invariant_table
;
149 /* Entry for hash table of invariant expressions. */
151 struct invariant_expr_entry
154 struct invariant
*inv
;
160 enum machine_mode mode
;
166 /* The actual stamp for marking already visited invariants during determining
167 costs of movements. */
169 static unsigned actual_stamp
;
171 typedef struct invariant
*invariant_p
;
173 DEF_VEC_P(invariant_p
);
174 DEF_VEC_ALLOC_P(invariant_p
, heap
);
176 /* The invariants. */
178 static VEC(invariant_p
,heap
) *invariants
;
180 /* Check the size of the invariant table and realloc if necessary. */
183 check_invariant_table_size (void)
185 if (invariant_table_size
< DF_DEFS_TABLE_SIZE())
187 unsigned int new_size
= DF_DEFS_TABLE_SIZE () + (DF_DEFS_TABLE_SIZE () / 4);
188 invariant_table
= XRESIZEVEC (struct invariant
*, invariant_table
, new_size
);
189 memset (&invariant_table
[invariant_table_size
], 0,
190 (new_size
- invariant_table_size
) * sizeof (struct rtx_iv
*));
191 invariant_table_size
= new_size
;
195 /* Test for possibility of invariantness of X. */
198 check_maybe_invariant (rtx x
)
200 enum rtx_code code
= GET_CODE (x
);
216 case UNSPEC_VOLATILE
:
224 /* Load/store motion is done elsewhere. ??? Perhaps also add it here?
225 It should not be hard, and might be faster than "elsewhere". */
227 /* Just handle the most trivial case where we load from an unchanging
228 location (most importantly, pic tables). */
229 if (MEM_READONLY_P (x
) && !MEM_VOLATILE_P (x
))
235 /* Don't mess with insns declared volatile. */
236 if (MEM_VOLATILE_P (x
))
244 fmt
= GET_RTX_FORMAT (code
);
245 for (i
= GET_RTX_LENGTH (code
) - 1; i
>= 0; i
--)
249 if (!check_maybe_invariant (XEXP (x
, i
)))
252 else if (fmt
[i
] == 'E')
254 for (j
= 0; j
< XVECLEN (x
, i
); j
++)
255 if (!check_maybe_invariant (XVECEXP (x
, i
, j
)))
263 /* Returns the invariant definition for USE, or NULL if USE is not
266 static struct invariant
*
267 invariant_for_use (df_ref use
)
269 struct df_link
*defs
;
271 basic_block bb
= DF_REF_BB (use
), def_bb
;
273 if (DF_REF_FLAGS (use
) & DF_REF_READ_WRITE
)
276 defs
= DF_REF_CHAIN (use
);
277 if (!defs
|| defs
->next
)
280 check_invariant_table_size ();
281 if (!invariant_table
[DF_REF_ID(def
)])
284 def_bb
= DF_REF_BB (def
);
285 if (!dominated_by_p (CDI_DOMINATORS
, bb
, def_bb
))
287 return invariant_table
[DF_REF_ID(def
)];
290 /* Computes hash value for invariant expression X in INSN. */
293 hash_invariant_expr_1 (rtx insn
, rtx x
)
295 enum rtx_code code
= GET_CODE (x
);
298 hashval_t val
= code
;
301 struct invariant
*inv
;
311 return hash_rtx (x
, GET_MODE (x
), &do_not_record_p
, NULL
, false);
314 use
= df_find_use (insn
, x
);
316 return hash_rtx (x
, GET_MODE (x
), &do_not_record_p
, NULL
, false);
317 inv
= invariant_for_use (use
);
319 return hash_rtx (x
, GET_MODE (x
), &do_not_record_p
, NULL
, false);
321 gcc_assert (inv
->eqto
!= ~0u);
328 fmt
= GET_RTX_FORMAT (code
);
329 for (i
= GET_RTX_LENGTH (code
) - 1; i
>= 0; i
--)
332 val
^= hash_invariant_expr_1 (insn
, XEXP (x
, i
));
333 else if (fmt
[i
] == 'E')
335 for (j
= 0; j
< XVECLEN (x
, i
); j
++)
336 val
^= hash_invariant_expr_1 (insn
, XVECEXP (x
, i
, j
));
338 else if (fmt
[i
] == 'i' || fmt
[i
] == 'n')
345 /* Returns true if the invariant expressions E1 and E2 used in insns INSN1
346 and INSN2 have always the same value. */
349 invariant_expr_equal_p (rtx insn1
, rtx e1
, rtx insn2
, rtx e2
)
351 enum rtx_code code
= GET_CODE (e1
);
355 struct invariant
*inv1
= NULL
, *inv2
= NULL
;
358 /* If mode of only one of the operands is VOIDmode, it is not equivalent to
359 the other one. If both are VOIDmode, we rely on the caller of this
360 function to verify that their modes are the same. */
361 if (code
!= GET_CODE (e2
) || GET_MODE (e1
) != GET_MODE (e2
))
372 return rtx_equal_p (e1
, e2
);
375 use1
= df_find_use (insn1
, e1
);
376 use2
= df_find_use (insn2
, e2
);
378 inv1
= invariant_for_use (use1
);
380 inv2
= invariant_for_use (use2
);
383 return rtx_equal_p (e1
, e2
);
388 gcc_assert (inv1
->eqto
!= ~0u);
389 gcc_assert (inv2
->eqto
!= ~0u);
390 return inv1
->eqto
== inv2
->eqto
;
396 fmt
= GET_RTX_FORMAT (code
);
397 for (i
= GET_RTX_LENGTH (code
) - 1; i
>= 0; i
--)
404 if (!invariant_expr_equal_p (insn1
, sub1
, insn2
, sub2
))
408 else if (fmt
[i
] == 'E')
410 if (XVECLEN (e1
, i
) != XVECLEN (e2
, i
))
413 for (j
= 0; j
< XVECLEN (e1
, i
); j
++)
415 sub1
= XVECEXP (e1
, i
, j
);
416 sub2
= XVECEXP (e2
, i
, j
);
418 if (!invariant_expr_equal_p (insn1
, sub1
, insn2
, sub2
))
422 else if (fmt
[i
] == 'i' || fmt
[i
] == 'n')
424 if (XINT (e1
, i
) != XINT (e2
, i
))
427 /* Unhandled type of subexpression, we fail conservatively. */
435 /* Returns hash value for invariant expression entry E. */
438 hash_invariant_expr (const void *e
)
440 const struct invariant_expr_entry
*const entry
=
441 (const struct invariant_expr_entry
*) e
;
446 /* Compares invariant expression entries E1 and E2. */
449 eq_invariant_expr (const void *e1
, const void *e2
)
451 const struct invariant_expr_entry
*const entry1
=
452 (const struct invariant_expr_entry
*) e1
;
453 const struct invariant_expr_entry
*const entry2
=
454 (const struct invariant_expr_entry
*) e2
;
456 if (entry1
->mode
!= entry2
->mode
)
459 return invariant_expr_equal_p (entry1
->inv
->insn
, entry1
->expr
,
460 entry2
->inv
->insn
, entry2
->expr
);
463 /* Checks whether invariant with value EXPR in machine mode MODE is
464 recorded in EQ. If this is the case, return the invariant. Otherwise
465 insert INV to the table for this expression and return INV. */
467 static struct invariant
*
468 find_or_insert_inv (htab_t eq
, rtx expr
, enum machine_mode mode
,
469 struct invariant
*inv
)
471 hashval_t hash
= hash_invariant_expr_1 (inv
->insn
, expr
);
472 struct invariant_expr_entry
*entry
;
473 struct invariant_expr_entry pentry
;
479 slot
= htab_find_slot_with_hash (eq
, &pentry
, hash
, INSERT
);
480 entry
= (struct invariant_expr_entry
*) *slot
;
485 entry
= XNEW (struct invariant_expr_entry
);
495 /* Finds invariants identical to INV and records the equivalence. EQ is the
496 hash table of the invariants. */
499 find_identical_invariants (htab_t eq
, struct invariant
*inv
)
503 struct invariant
*dep
;
505 enum machine_mode mode
;
507 if (inv
->eqto
!= ~0u)
510 EXECUTE_IF_SET_IN_BITMAP (inv
->depends_on
, 0, depno
, bi
)
512 dep
= VEC_index (invariant_p
, invariants
, depno
);
513 find_identical_invariants (eq
, dep
);
516 set
= single_set (inv
->insn
);
517 expr
= SET_SRC (set
);
518 mode
= GET_MODE (expr
);
519 if (mode
== VOIDmode
)
520 mode
= GET_MODE (SET_DEST (set
));
521 inv
->eqto
= find_or_insert_inv (eq
, expr
, mode
, inv
)->invno
;
523 if (dump_file
&& inv
->eqto
!= inv
->invno
)
525 "Invariant %d is equivalent to invariant %d.\n",
526 inv
->invno
, inv
->eqto
);
529 /* Find invariants with the same value and record the equivalences. */
532 merge_identical_invariants (void)
535 struct invariant
*inv
;
536 htab_t eq
= htab_create (VEC_length (invariant_p
, invariants
),
537 hash_invariant_expr
, eq_invariant_expr
, free
);
539 FOR_EACH_VEC_ELT (invariant_p
, invariants
, i
, inv
)
540 find_identical_invariants (eq
, inv
);
545 /* Determines the basic blocks inside LOOP that are always executed and
546 stores their bitmap to ALWAYS_REACHED. MAY_EXIT is a bitmap of
547 basic blocks that may either exit the loop, or contain the call that
548 does not have to return. BODY is body of the loop obtained by
549 get_loop_body_in_dom_order. */
552 compute_always_reached (struct loop
*loop
, basic_block
*body
,
553 bitmap may_exit
, bitmap always_reached
)
557 for (i
= 0; i
< loop
->num_nodes
; i
++)
559 if (dominated_by_p (CDI_DOMINATORS
, loop
->latch
, body
[i
]))
560 bitmap_set_bit (always_reached
, i
);
562 if (bitmap_bit_p (may_exit
, i
))
567 /* Finds exits out of the LOOP with body BODY. Marks blocks in that we may
568 exit the loop by cfg edge to HAS_EXIT and MAY_EXIT. In MAY_EXIT
569 additionally mark blocks that may exit due to a call. */
572 find_exits (struct loop
*loop
, basic_block
*body
,
573 bitmap may_exit
, bitmap has_exit
)
578 struct loop
*outermost_exit
= loop
, *aexit
;
579 bool has_call
= false;
582 for (i
= 0; i
< loop
->num_nodes
; i
++)
584 if (body
[i
]->loop_father
== loop
)
586 FOR_BB_INSNS (body
[i
], insn
)
589 && (RTL_LOOPING_CONST_OR_PURE_CALL_P (insn
)
590 || !RTL_CONST_OR_PURE_CALL_P (insn
)))
593 bitmap_set_bit (may_exit
, i
);
598 FOR_EACH_EDGE (e
, ei
, body
[i
]->succs
)
600 if (flow_bb_inside_loop_p (loop
, e
->dest
))
603 bitmap_set_bit (may_exit
, i
);
604 bitmap_set_bit (has_exit
, i
);
605 outermost_exit
= find_common_loop (outermost_exit
,
606 e
->dest
->loop_father
);
611 /* Use the data stored for the subloop to decide whether we may exit
612 through it. It is sufficient to do this for header of the loop,
613 as other basic blocks inside it must be dominated by it. */
614 if (body
[i
]->loop_father
->header
!= body
[i
])
617 if (LOOP_DATA (body
[i
]->loop_father
)->has_call
)
620 bitmap_set_bit (may_exit
, i
);
622 aexit
= LOOP_DATA (body
[i
]->loop_father
)->outermost_exit
;
625 bitmap_set_bit (may_exit
, i
);
626 bitmap_set_bit (has_exit
, i
);
628 if (flow_loop_nested_p (aexit
, outermost_exit
))
629 outermost_exit
= aexit
;
633 if (loop
->aux
== NULL
)
635 loop
->aux
= xcalloc (1, sizeof (struct loop_data
));
636 bitmap_initialize (&LOOP_DATA (loop
)->regs_ref
, ®_obstack
);
637 bitmap_initialize (&LOOP_DATA (loop
)->regs_live
, ®_obstack
);
639 LOOP_DATA (loop
)->outermost_exit
= outermost_exit
;
640 LOOP_DATA (loop
)->has_call
= has_call
;
643 /* Check whether we may assign a value to X from a register. */
646 may_assign_reg_p (rtx x
)
648 return (GET_MODE (x
) != VOIDmode
649 && GET_MODE (x
) != BLKmode
650 && can_copy_p (GET_MODE (x
))
652 || !HARD_REGISTER_P (x
)
653 || REGNO_REG_CLASS (REGNO (x
)) != NO_REGS
));
656 /* Finds definitions that may correspond to invariants in LOOP with body
660 find_defs (struct loop
*loop
, basic_block
*body
)
663 bitmap blocks
= BITMAP_ALLOC (NULL
);
665 for (i
= 0; i
< loop
->num_nodes
; i
++)
666 bitmap_set_bit (blocks
, body
[i
]->index
);
668 df_remove_problem (df_chain
);
669 df_process_deferred_rescans ();
670 df_chain_add_problem (DF_UD_CHAIN
);
671 df_set_blocks (blocks
);
676 df_dump_region (dump_file
);
677 fprintf (dump_file
, "*****starting processing of loop ******\n");
678 print_rtl_with_bb (dump_file
, get_insns ());
679 fprintf (dump_file
, "*****ending processing of loop ******\n");
681 check_invariant_table_size ();
683 BITMAP_FREE (blocks
);
686 /* Creates a new invariant for definition DEF in INSN, depending on invariants
687 in DEPENDS_ON. ALWAYS_EXECUTED is true if the insn is always executed,
688 unless the program ends due to a function call. The newly created invariant
691 static struct invariant
*
692 create_new_invariant (struct def
*def
, rtx insn
, bitmap depends_on
,
693 bool always_executed
)
695 struct invariant
*inv
= XNEW (struct invariant
);
696 rtx set
= single_set (insn
);
697 bool speed
= optimize_bb_for_speed_p (BLOCK_FOR_INSN (insn
));
700 inv
->always_executed
= always_executed
;
701 inv
->depends_on
= depends_on
;
703 /* If the set is simple, usually by moving it we move the whole store out of
704 the loop. Otherwise we save only cost of the computation. */
707 inv
->cost
= rtx_cost (set
, SET
, speed
);
708 /* ??? Try to determine cheapness of address computation. Unfortunately
709 the address cost is only a relative measure, we can't really compare
710 it with any absolute number, but only with other address costs.
711 But here we don't have any other addresses, so compare with a magic
712 number anyway. It has to be large enough to not regress PR33928
713 (by avoiding to move reg+8,reg+16,reg+24 invariants), but small
714 enough to not regress 410.bwaves either (by still moving reg+reg
716 See http://gcc.gnu.org/ml/gcc-patches/2009-10/msg01210.html . */
717 inv
->cheap_address
= address_cost (SET_SRC (set
), word_mode
,
718 ADDR_SPACE_GENERIC
, speed
) < 3;
722 inv
->cost
= rtx_cost (SET_SRC (set
), SET
, speed
);
723 inv
->cheap_address
= false;
728 inv
->orig_regno
= -1;
732 inv
->invno
= VEC_length (invariant_p
, invariants
);
735 def
->invno
= inv
->invno
;
736 VEC_safe_push (invariant_p
, heap
, invariants
, inv
);
741 "Set in insn %d is invariant (%d), cost %d, depends on ",
742 INSN_UID (insn
), inv
->invno
, inv
->cost
);
743 dump_bitmap (dump_file
, inv
->depends_on
);
749 /* Record USE at DEF. */
752 record_use (struct def
*def
, df_ref use
)
754 struct use
*u
= XNEW (struct use
);
756 u
->pos
= DF_REF_REAL_LOC (use
);
757 u
->insn
= DF_REF_INSN (use
);
758 u
->addr_use_p
= (DF_REF_TYPE (use
) == DF_REF_REG_MEM_LOAD
759 || DF_REF_TYPE (use
) == DF_REF_REG_MEM_STORE
);
767 /* Finds the invariants USE depends on and store them to the DEPENDS_ON
768 bitmap. Returns true if all dependencies of USE are known to be
769 loop invariants, false otherwise. */
772 check_dependency (basic_block bb
, df_ref use
, bitmap depends_on
)
776 struct df_link
*defs
;
777 struct def
*def_data
;
778 struct invariant
*inv
;
780 if (DF_REF_FLAGS (use
) & DF_REF_READ_WRITE
)
783 defs
= DF_REF_CHAIN (use
);
791 check_invariant_table_size ();
792 inv
= invariant_table
[DF_REF_ID(def
)];
797 gcc_assert (def_data
!= NULL
);
799 def_bb
= DF_REF_BB (def
);
800 /* Note that in case bb == def_bb, we know that the definition
801 dominates insn, because def has invariant_table[DF_REF_ID(def)]
802 defined and we process the insns in the basic block bb
804 if (!dominated_by_p (CDI_DOMINATORS
, bb
, def_bb
))
807 bitmap_set_bit (depends_on
, def_data
->invno
);
812 /* Finds the invariants INSN depends on and store them to the DEPENDS_ON
813 bitmap. Returns true if all dependencies of INSN are known to be
814 loop invariants, false otherwise. */
817 check_dependencies (rtx insn
, bitmap depends_on
)
819 struct df_insn_info
*insn_info
= DF_INSN_INFO_GET (insn
);
821 basic_block bb
= BLOCK_FOR_INSN (insn
);
823 for (use_rec
= DF_INSN_INFO_USES (insn_info
); *use_rec
; use_rec
++)
824 if (!check_dependency (bb
, *use_rec
, depends_on
))
826 for (use_rec
= DF_INSN_INFO_EQ_USES (insn_info
); *use_rec
; use_rec
++)
827 if (!check_dependency (bb
, *use_rec
, depends_on
))
833 /* Finds invariant in INSN. ALWAYS_REACHED is true if the insn is always
834 executed. ALWAYS_EXECUTED is true if the insn is always executed,
835 unless the program ends due to a function call. */
838 find_invariant_insn (rtx insn
, bool always_reached
, bool always_executed
)
845 struct invariant
*inv
;
848 /* We can't move a CC0 setter without the user. */
849 if (sets_cc0_p (insn
))
853 set
= single_set (insn
);
856 dest
= SET_DEST (set
);
859 || HARD_REGISTER_P (dest
))
862 if (!may_assign_reg_p (SET_DEST (set
))
863 || !check_maybe_invariant (SET_SRC (set
)))
866 /* If the insn can throw exception, we cannot move it at all without changing
868 if (can_throw_internal (insn
))
871 /* We cannot make trapping insn executed, unless it was executed before. */
872 if (may_trap_or_fault_p (PATTERN (insn
)) && !always_reached
)
875 depends_on
= BITMAP_ALLOC (NULL
);
876 if (!check_dependencies (insn
, depends_on
))
878 BITMAP_FREE (depends_on
);
883 def
= XCNEW (struct def
);
887 inv
= create_new_invariant (def
, insn
, depends_on
, always_executed
);
891 ref
= df_find_def (insn
, dest
);
892 check_invariant_table_size ();
893 invariant_table
[DF_REF_ID(ref
)] = inv
;
897 /* Record registers used in INSN that have a unique invariant definition. */
900 record_uses (rtx insn
)
902 struct df_insn_info
*insn_info
= DF_INSN_INFO_GET (insn
);
904 struct invariant
*inv
;
906 for (use_rec
= DF_INSN_INFO_USES (insn_info
); *use_rec
; use_rec
++)
908 df_ref use
= *use_rec
;
909 inv
= invariant_for_use (use
);
911 record_use (inv
->def
, use
);
913 for (use_rec
= DF_INSN_INFO_EQ_USES (insn_info
); *use_rec
; use_rec
++)
915 df_ref use
= *use_rec
;
916 inv
= invariant_for_use (use
);
918 record_use (inv
->def
, use
);
922 /* Finds invariants in INSN. ALWAYS_REACHED is true if the insn is always
923 executed. ALWAYS_EXECUTED is true if the insn is always executed,
924 unless the program ends due to a function call. */
927 find_invariants_insn (rtx insn
, bool always_reached
, bool always_executed
)
929 find_invariant_insn (insn
, always_reached
, always_executed
);
933 /* Finds invariants in basic block BB. ALWAYS_REACHED is true if the
934 basic block is always executed. ALWAYS_EXECUTED is true if the basic
935 block is always executed, unless the program ends due to a function
939 find_invariants_bb (basic_block bb
, bool always_reached
, bool always_executed
)
943 FOR_BB_INSNS (bb
, insn
)
945 if (!NONDEBUG_INSN_P (insn
))
948 find_invariants_insn (insn
, always_reached
, always_executed
);
952 && (RTL_LOOPING_CONST_OR_PURE_CALL_P (insn
)
953 || ! RTL_CONST_OR_PURE_CALL_P (insn
)))
954 always_reached
= false;
958 /* Finds invariants in LOOP with body BODY. ALWAYS_REACHED is the bitmap of
959 basic blocks in BODY that are always executed. ALWAYS_EXECUTED is the
960 bitmap of basic blocks in BODY that are always executed unless the program
961 ends due to a function call. */
964 find_invariants_body (struct loop
*loop
, basic_block
*body
,
965 bitmap always_reached
, bitmap always_executed
)
969 for (i
= 0; i
< loop
->num_nodes
; i
++)
970 find_invariants_bb (body
[i
],
971 bitmap_bit_p (always_reached
, i
),
972 bitmap_bit_p (always_executed
, i
));
975 /* Finds invariants in LOOP. */
978 find_invariants (struct loop
*loop
)
980 bitmap may_exit
= BITMAP_ALLOC (NULL
);
981 bitmap always_reached
= BITMAP_ALLOC (NULL
);
982 bitmap has_exit
= BITMAP_ALLOC (NULL
);
983 bitmap always_executed
= BITMAP_ALLOC (NULL
);
984 basic_block
*body
= get_loop_body_in_dom_order (loop
);
986 find_exits (loop
, body
, may_exit
, has_exit
);
987 compute_always_reached (loop
, body
, may_exit
, always_reached
);
988 compute_always_reached (loop
, body
, has_exit
, always_executed
);
990 find_defs (loop
, body
);
991 find_invariants_body (loop
, body
, always_reached
, always_executed
);
992 merge_identical_invariants ();
994 BITMAP_FREE (always_reached
);
995 BITMAP_FREE (always_executed
);
996 BITMAP_FREE (may_exit
);
997 BITMAP_FREE (has_exit
);
1001 /* Frees a list of uses USE. */
1004 free_use_list (struct use
*use
)
1008 for (; use
; use
= next
)
1015 /* Return cover class and number of hard registers (through *NREGS)
1016 for destination of INSN. */
1017 static enum reg_class
1018 get_cover_class_and_nregs (rtx insn
, int *nregs
)
1021 enum reg_class cover_class
;
1022 rtx set
= single_set (insn
);
1024 /* Considered invariant insns have only one set. */
1025 gcc_assert (set
!= NULL_RTX
);
1026 reg
= SET_DEST (set
);
1027 if (GET_CODE (reg
) == SUBREG
)
1028 reg
= SUBREG_REG (reg
);
1032 cover_class
= NO_REGS
;
1038 if (reg
== NULL_RTX
)
1039 cover_class
= GENERAL_REGS
;
1041 cover_class
= reg_cover_class (REGNO (reg
));
1042 *nregs
= ira_reg_class_nregs
[cover_class
][GET_MODE (SET_SRC (set
))];
1047 /* Calculates cost and number of registers needed for moving invariant INV
1048 out of the loop and stores them to *COST and *REGS_NEEDED. */
1051 get_inv_cost (struct invariant
*inv
, int *comp_cost
, unsigned *regs_needed
)
1054 unsigned aregs_needed
[N_REG_CLASSES
];
1056 struct invariant
*dep
;
1059 /* Find the representative of the class of the equivalent invariants. */
1060 inv
= VEC_index (invariant_p
, invariants
, inv
->eqto
);
1063 if (! flag_ira_loop_pressure
)
1067 for (i
= 0; i
< ira_reg_class_cover_size
; i
++)
1068 regs_needed
[ira_reg_class_cover
[i
]] = 0;
1072 || inv
->stamp
== actual_stamp
)
1074 inv
->stamp
= actual_stamp
;
1076 if (! flag_ira_loop_pressure
)
1081 enum reg_class cover_class
;
1083 cover_class
= get_cover_class_and_nregs (inv
->insn
, &nregs
);
1084 regs_needed
[cover_class
] += nregs
;
1087 if (!inv
->cheap_address
1088 || inv
->def
->n_addr_uses
< inv
->def
->n_uses
)
1089 (*comp_cost
) += inv
->cost
;
1093 /* Hoisting constant pool constants into stack regs may cost more than
1094 just single register. On x87, the balance is affected both by the
1095 small number of FP registers, and by its register stack organization,
1096 that forces us to add compensation code in and around the loop to
1097 shuffle the operands to the top of stack before use, and pop them
1098 from the stack after the loop finishes.
1100 To model this effect, we increase the number of registers needed for
1101 stack registers by two: one register push, and one register pop.
1102 This usually has the effect that FP constant loads from the constant
1103 pool are not moved out of the loop.
1105 Note that this also means that dependent invariants can not be moved.
1106 However, the primary purpose of this pass is to move loop invariant
1107 address arithmetic out of loops, and address arithmetic that depends
1108 on floating point constants is unlikely to ever occur. */
1109 rtx set
= single_set (inv
->insn
);
1111 && IS_STACK_MODE (GET_MODE (SET_SRC (set
)))
1112 && constant_pool_constant_p (SET_SRC (set
)))
1114 if (flag_ira_loop_pressure
)
1115 regs_needed
[STACK_REG_COVER_CLASS
] += 2;
1117 regs_needed
[0] += 2;
1122 EXECUTE_IF_SET_IN_BITMAP (inv
->depends_on
, 0, depno
, bi
)
1126 dep
= VEC_index (invariant_p
, invariants
, depno
);
1128 get_inv_cost (dep
, &acomp_cost
, aregs_needed
);
1130 if (! flag_ira_loop_pressure
)
1131 check_p
= aregs_needed
[0] != 0;
1134 for (i
= 0; i
< ira_reg_class_cover_size
; i
++)
1135 if (aregs_needed
[ira_reg_class_cover
[i
]] != 0)
1137 check_p
= i
< ira_reg_class_cover_size
;
1140 /* We need to check always_executed, since if the original value of
1141 the invariant may be preserved, we may need to keep it in a
1142 separate register. TODO check whether the register has an
1143 use outside of the loop. */
1144 && dep
->always_executed
1145 && !dep
->def
->uses
->next
)
1147 /* If this is a single use, after moving the dependency we will not
1148 need a new register. */
1149 if (! flag_ira_loop_pressure
)
1154 enum reg_class cover_class
;
1156 cover_class
= get_cover_class_and_nregs (inv
->insn
, &nregs
);
1157 aregs_needed
[cover_class
] -= nregs
;
1161 if (! flag_ira_loop_pressure
)
1162 regs_needed
[0] += aregs_needed
[0];
1165 for (i
= 0; i
< ira_reg_class_cover_size
; i
++)
1166 regs_needed
[ira_reg_class_cover
[i
]]
1167 += aregs_needed
[ira_reg_class_cover
[i
]];
1169 (*comp_cost
) += acomp_cost
;
1173 /* Calculates gain for eliminating invariant INV. REGS_USED is the number
1174 of registers used in the loop, NEW_REGS is the number of new variables
1175 already added due to the invariant motion. The number of registers needed
1176 for it is stored in *REGS_NEEDED. SPEED and CALL_P are flags passed
1177 through to estimate_reg_pressure_cost. */
1180 gain_for_invariant (struct invariant
*inv
, unsigned *regs_needed
,
1181 unsigned *new_regs
, unsigned regs_used
,
1182 bool speed
, bool call_p
)
1184 int comp_cost
, size_cost
;
1188 get_inv_cost (inv
, &comp_cost
, regs_needed
);
1190 if (! flag_ira_loop_pressure
)
1192 size_cost
= (estimate_reg_pressure_cost (new_regs
[0] + regs_needed
[0],
1193 regs_used
, speed
, call_p
)
1194 - estimate_reg_pressure_cost (new_regs
[0],
1195 regs_used
, speed
, call_p
));
1200 enum reg_class cover_class
;
1202 for (i
= 0; i
< ira_reg_class_cover_size
; i
++)
1204 cover_class
= ira_reg_class_cover
[i
];
1205 if ((int) new_regs
[cover_class
]
1206 + (int) regs_needed
[cover_class
]
1207 + LOOP_DATA (curr_loop
)->max_reg_pressure
[cover_class
]
1208 + IRA_LOOP_RESERVED_REGS
1209 > ira_available_class_regs
[cover_class
])
1212 if (i
< ira_reg_class_cover_size
)
1213 /* There will be register pressure excess and we want not to
1214 make this loop invariant motion. All loop invariants with
1215 non-positive gains will be rejected in function
1216 find_invariants_to_move. Therefore we return the negative
1219 One could think that this rejects also expensive loop
1220 invariant motions and this will hurt code performance.
1221 However numerous experiments with different heuristics
1222 taking invariant cost into account did not confirm this
1223 assumption. There are possible explanations for this
1225 o probably all expensive invariants were already moved out
1226 of the loop by PRE and gimple invariant motion pass.
1227 o expensive invariant execution will be hidden by insn
1228 scheduling or OOO processor hardware because usually such
1229 invariants have a lot of freedom to be executed
1231 Another reason for ignoring invariant cost vs spilling cost
1232 heuristics is also in difficulties to evaluate accurately
1233 spill cost at this stage. */
1239 return comp_cost
- size_cost
;
1242 /* Finds invariant with best gain for moving. Returns the gain, stores
1243 the invariant in *BEST and number of registers needed for it to
1244 *REGS_NEEDED. REGS_USED is the number of registers used in the loop.
1245 NEW_REGS is the number of new variables already added due to invariant
1249 best_gain_for_invariant (struct invariant
**best
, unsigned *regs_needed
,
1250 unsigned *new_regs
, unsigned regs_used
,
1251 bool speed
, bool call_p
)
1253 struct invariant
*inv
;
1254 int i
, gain
= 0, again
;
1255 unsigned aregs_needed
[N_REG_CLASSES
], invno
;
1257 FOR_EACH_VEC_ELT (invariant_p
, invariants
, invno
, inv
)
1262 /* Only consider the "representatives" of equivalent invariants. */
1263 if (inv
->eqto
!= inv
->invno
)
1266 again
= gain_for_invariant (inv
, aregs_needed
, new_regs
, regs_used
,
1272 if (! flag_ira_loop_pressure
)
1273 regs_needed
[0] = aregs_needed
[0];
1276 for (i
= 0; i
< ira_reg_class_cover_size
; i
++)
1277 regs_needed
[ira_reg_class_cover
[i
]]
1278 = aregs_needed
[ira_reg_class_cover
[i
]];
1286 /* Marks invariant INVNO and all its dependencies for moving. */
1289 set_move_mark (unsigned invno
, int gain
)
1291 struct invariant
*inv
= VEC_index (invariant_p
, invariants
, invno
);
1294 /* Find the representative of the class of the equivalent invariants. */
1295 inv
= VEC_index (invariant_p
, invariants
, inv
->eqto
);
1304 fprintf (dump_file
, "Decided to move invariant %d -- gain %d\n",
1307 fprintf (dump_file
, "Decided to move dependent invariant %d\n",
1311 EXECUTE_IF_SET_IN_BITMAP (inv
->depends_on
, 0, invno
, bi
)
1313 set_move_mark (invno
, -1);
1317 /* Determines which invariants to move. */
1320 find_invariants_to_move (bool speed
, bool call_p
)
1323 unsigned i
, regs_used
, regs_needed
[N_REG_CLASSES
], new_regs
[N_REG_CLASSES
];
1324 struct invariant
*inv
= NULL
;
1326 if (!VEC_length (invariant_p
, invariants
))
1329 if (flag_ira_loop_pressure
)
1330 /* REGS_USED is actually never used when the flag is on. */
1333 /* We do not really do a good job in estimating number of
1334 registers used; we put some initial bound here to stand for
1335 induction variables etc. that we do not detect. */
1337 unsigned int n_regs
= DF_REG_SIZE (df
);
1341 for (i
= 0; i
< n_regs
; i
++)
1343 if (!DF_REGNO_FIRST_DEF (i
) && DF_REGNO_LAST_USE (i
))
1345 /* This is a value that is used but not changed inside loop. */
1351 if (! flag_ira_loop_pressure
)
1352 new_regs
[0] = regs_needed
[0] = 0;
1355 for (i
= 0; (int) i
< ira_reg_class_cover_size
; i
++)
1356 new_regs
[ira_reg_class_cover
[i
]] = 0;
1358 while ((gain
= best_gain_for_invariant (&inv
, regs_needed
,
1359 new_regs
, regs_used
,
1360 speed
, call_p
)) > 0)
1362 set_move_mark (inv
->invno
, gain
);
1363 if (! flag_ira_loop_pressure
)
1364 new_regs
[0] += regs_needed
[0];
1367 for (i
= 0; (int) i
< ira_reg_class_cover_size
; i
++)
1368 new_regs
[ira_reg_class_cover
[i
]]
1369 += regs_needed
[ira_reg_class_cover
[i
]];
1374 /* Replace the uses, reached by the definition of invariant INV, by REG.
1376 IN_GROUP is nonzero if this is part of a group of changes that must be
1377 performed as a group. In that case, the changes will be stored. The
1378 function `apply_change_group' will validate and apply the changes. */
1381 replace_uses (struct invariant
*inv
, rtx reg
, bool in_group
)
1383 /* Replace the uses we know to be dominated. It saves work for copy
1384 propagation, and also it is necessary so that dependent invariants
1385 are computed right. */
1389 for (use
= inv
->def
->uses
; use
; use
= use
->next
)
1390 validate_change (use
->insn
, use
->pos
, reg
, true);
1392 /* If we aren't part of a larger group, apply the changes now. */
1394 return apply_change_group ();
1400 /* Move invariant INVNO out of the LOOP. Returns true if this succeeds, false
1404 move_invariant_reg (struct loop
*loop
, unsigned invno
)
1406 struct invariant
*inv
= VEC_index (invariant_p
, invariants
, invno
);
1407 struct invariant
*repr
= VEC_index (invariant_p
, invariants
, inv
->eqto
);
1409 basic_block preheader
= loop_preheader_edge (loop
)->src
;
1410 rtx reg
, set
, dest
, note
;
1419 /* If this is a representative of the class of equivalent invariants,
1420 really move the invariant. Otherwise just replace its use with
1421 the register used for the representative. */
1424 if (inv
->depends_on
)
1426 EXECUTE_IF_SET_IN_BITMAP (inv
->depends_on
, 0, i
, bi
)
1428 if (!move_invariant_reg (loop
, i
))
1433 /* Move the set out of the loop. If the set is always executed (we could
1434 omit this condition if we know that the register is unused outside of
1435 the loop, but it does not seem worth finding out) and it has no uses
1436 that would not be dominated by it, we may just move it (TODO).
1437 Otherwise we need to create a temporary register. */
1438 set
= single_set (inv
->insn
);
1439 reg
= dest
= SET_DEST (set
);
1440 if (GET_CODE (reg
) == SUBREG
)
1441 reg
= SUBREG_REG (reg
);
1443 regno
= REGNO (reg
);
1445 reg
= gen_reg_rtx_and_attrs (dest
);
1447 /* Try replacing the destination by a new pseudoregister. */
1448 validate_change (inv
->insn
, &SET_DEST (set
), reg
, true);
1450 /* As well as all the dominated uses. */
1451 replace_uses (inv
, reg
, true);
1453 /* And validate all the changes. */
1454 if (!apply_change_group ())
1457 emit_insn_after (gen_move_insn (dest
, reg
), inv
->insn
);
1458 reorder_insns (inv
->insn
, inv
->insn
, BB_END (preheader
));
1460 /* If there is a REG_EQUAL note on the insn we just moved, and the
1461 insn is in a basic block that is not always executed or the note
1462 contains something for which we don't know the invariant status,
1463 the note may no longer be valid after we move the insn. Note that
1464 uses in REG_EQUAL notes are taken into account in the computation
1465 of invariants, so it is safe to retain the note even if it contains
1466 register references for which we know the invariant status. */
1467 if ((note
= find_reg_note (inv
->insn
, REG_EQUAL
, NULL_RTX
))
1468 && (!inv
->always_executed
1469 || !check_maybe_invariant (XEXP (note
, 0))))
1470 remove_note (inv
->insn
, note
);
1474 if (!move_invariant_reg (loop
, repr
->invno
))
1477 regno
= repr
->orig_regno
;
1478 if (!replace_uses (inv
, reg
, false))
1480 set
= single_set (inv
->insn
);
1481 emit_insn_after (gen_move_insn (SET_DEST (set
), reg
), inv
->insn
);
1482 delete_insn (inv
->insn
);
1486 inv
->orig_regno
= regno
;
1491 /* If we failed, clear move flag, so that we do not try to move inv
1494 fprintf (dump_file
, "Failed to move invariant %d\n", invno
);
1496 inv
->reg
= NULL_RTX
;
1497 inv
->orig_regno
= -1;
1502 /* Move selected invariant out of the LOOP. Newly created regs are marked
1503 in TEMPORARY_REGS. */
1506 move_invariants (struct loop
*loop
)
1508 struct invariant
*inv
;
1511 FOR_EACH_VEC_ELT (invariant_p
, invariants
, i
, inv
)
1512 move_invariant_reg (loop
, i
);
1513 if (flag_ira_loop_pressure
&& resize_reg_info ())
1515 FOR_EACH_VEC_ELT (invariant_p
, invariants
, i
, inv
)
1516 if (inv
->reg
!= NULL_RTX
)
1518 if (inv
->orig_regno
>= 0)
1519 setup_reg_classes (REGNO (inv
->reg
),
1520 reg_preferred_class (inv
->orig_regno
),
1521 reg_alternate_class (inv
->orig_regno
),
1522 reg_cover_class (inv
->orig_regno
));
1524 setup_reg_classes (REGNO (inv
->reg
),
1525 GENERAL_REGS
, NO_REGS
, GENERAL_REGS
);
1530 /* Initializes invariant motion data. */
1533 init_inv_motion_data (void)
1537 invariants
= VEC_alloc (invariant_p
, heap
, 100);
1540 /* Frees the data allocated by invariant motion. */
1543 free_inv_motion_data (void)
1547 struct invariant
*inv
;
1549 check_invariant_table_size ();
1550 for (i
= 0; i
< DF_DEFS_TABLE_SIZE (); i
++)
1552 inv
= invariant_table
[i
];
1556 gcc_assert (def
!= NULL
);
1558 free_use_list (def
->uses
);
1560 invariant_table
[i
] = NULL
;
1564 FOR_EACH_VEC_ELT (invariant_p
, invariants
, i
, inv
)
1566 BITMAP_FREE (inv
->depends_on
);
1569 VEC_free (invariant_p
, heap
, invariants
);
1572 /* Move the invariants out of the LOOP. */
1575 move_single_loop_invariants (struct loop
*loop
)
1577 init_inv_motion_data ();
1579 find_invariants (loop
);
1580 find_invariants_to_move (optimize_loop_for_speed_p (loop
),
1581 LOOP_DATA (loop
)->has_call
);
1582 move_invariants (loop
);
1584 free_inv_motion_data ();
1587 /* Releases the auxiliary data for LOOP. */
1590 free_loop_data (struct loop
*loop
)
1592 struct loop_data
*data
= LOOP_DATA (loop
);
1596 bitmap_clear (&LOOP_DATA (loop
)->regs_ref
);
1597 bitmap_clear (&LOOP_DATA (loop
)->regs_live
);
1604 /* Registers currently living. */
1605 static bitmap_head curr_regs_live
;
1607 /* Current reg pressure for each cover class. */
1608 static int curr_reg_pressure
[N_REG_CLASSES
];
1610 /* Record all regs that are set in any one insn. Communication from
1611 mark_reg_{store,clobber} and global_conflicts. Asm can refer to
1612 all hard-registers. */
1613 static rtx regs_set
[(FIRST_PSEUDO_REGISTER
> MAX_RECOG_OPERANDS
1614 ? FIRST_PSEUDO_REGISTER
: MAX_RECOG_OPERANDS
) * 2];
1615 /* Number of regs stored in the previous array. */
1616 static int n_regs_set
;
1618 /* Return cover class and number of needed hard registers (through
1619 *NREGS) of register REGNO. */
1620 static enum reg_class
1621 get_regno_cover_class (int regno
, int *nregs
)
1623 if (regno
>= FIRST_PSEUDO_REGISTER
)
1625 enum reg_class cover_class
= reg_cover_class (regno
);
1627 *nregs
= ira_reg_class_nregs
[cover_class
][PSEUDO_REGNO_MODE (regno
)];
1630 else if (! TEST_HARD_REG_BIT (ira_no_alloc_regs
, regno
)
1631 && ! TEST_HARD_REG_BIT (eliminable_regset
, regno
))
1634 return ira_class_translate
[REGNO_REG_CLASS (regno
)];
1643 /* Increase (if INCR_P) or decrease current register pressure for
1646 change_pressure (int regno
, bool incr_p
)
1649 enum reg_class cover_class
;
1651 cover_class
= get_regno_cover_class (regno
, &nregs
);
1653 curr_reg_pressure
[cover_class
] -= nregs
;
1656 curr_reg_pressure
[cover_class
] += nregs
;
1657 if (LOOP_DATA (curr_loop
)->max_reg_pressure
[cover_class
]
1658 < curr_reg_pressure
[cover_class
])
1659 LOOP_DATA (curr_loop
)->max_reg_pressure
[cover_class
]
1660 = curr_reg_pressure
[cover_class
];
1664 /* Mark REGNO birth. */
1666 mark_regno_live (int regno
)
1670 for (loop
= curr_loop
;
1671 loop
!= current_loops
->tree_root
;
1672 loop
= loop_outer (loop
))
1673 bitmap_set_bit (&LOOP_DATA (loop
)->regs_live
, regno
);
1674 if (!bitmap_set_bit (&curr_regs_live
, regno
))
1676 change_pressure (regno
, true);
1679 /* Mark REGNO death. */
1681 mark_regno_death (int regno
)
1683 if (! bitmap_clear_bit (&curr_regs_live
, regno
))
1685 change_pressure (regno
, false);
1688 /* Mark setting register REG. */
1690 mark_reg_store (rtx reg
, const_rtx setter ATTRIBUTE_UNUSED
,
1691 void *data ATTRIBUTE_UNUSED
)
1695 if (GET_CODE (reg
) == SUBREG
)
1696 reg
= SUBREG_REG (reg
);
1701 regs_set
[n_regs_set
++] = reg
;
1703 regno
= REGNO (reg
);
1705 if (regno
>= FIRST_PSEUDO_REGISTER
)
1706 mark_regno_live (regno
);
1709 int last
= regno
+ hard_regno_nregs
[regno
][GET_MODE (reg
)];
1711 while (regno
< last
)
1713 mark_regno_live (regno
);
1719 /* Mark clobbering register REG. */
1721 mark_reg_clobber (rtx reg
, const_rtx setter
, void *data
)
1723 if (GET_CODE (setter
) == CLOBBER
)
1724 mark_reg_store (reg
, setter
, data
);
1727 /* Mark register REG death. */
1729 mark_reg_death (rtx reg
)
1731 int regno
= REGNO (reg
);
1733 if (regno
>= FIRST_PSEUDO_REGISTER
)
1734 mark_regno_death (regno
);
1737 int last
= regno
+ hard_regno_nregs
[regno
][GET_MODE (reg
)];
1739 while (regno
< last
)
1741 mark_regno_death (regno
);
1747 /* Mark occurrence of registers in X for the current loop. */
1749 mark_ref_regs (rtx x
)
1758 code
= GET_CODE (x
);
1763 for (loop
= curr_loop
;
1764 loop
!= current_loops
->tree_root
;
1765 loop
= loop_outer (loop
))
1766 bitmap_set_bit (&LOOP_DATA (loop
)->regs_ref
, REGNO (x
));
1770 fmt
= GET_RTX_FORMAT (code
);
1771 for (i
= GET_RTX_LENGTH (code
) - 1; i
>= 0; i
--)
1773 mark_ref_regs (XEXP (x
, i
));
1774 else if (fmt
[i
] == 'E')
1778 for (j
= 0; j
< XVECLEN (x
, i
); j
++)
1779 mark_ref_regs (XVECEXP (x
, i
, j
));
1783 /* Calculate register pressure in the loops. */
1785 calculate_loop_reg_pressure (void)
1792 struct loop
*loop
, *parent
;
1795 FOR_EACH_LOOP (li
, loop
, 0)
1796 if (loop
->aux
== NULL
)
1798 loop
->aux
= xcalloc (1, sizeof (struct loop_data
));
1799 bitmap_initialize (&LOOP_DATA (loop
)->regs_ref
, ®_obstack
);
1800 bitmap_initialize (&LOOP_DATA (loop
)->regs_live
, ®_obstack
);
1802 ira_setup_eliminable_regset ();
1803 bitmap_initialize (&curr_regs_live
, ®_obstack
);
1806 curr_loop
= bb
->loop_father
;
1807 if (curr_loop
== current_loops
->tree_root
)
1810 for (loop
= curr_loop
;
1811 loop
!= current_loops
->tree_root
;
1812 loop
= loop_outer (loop
))
1813 bitmap_ior_into (&LOOP_DATA (loop
)->regs_live
, DF_LR_IN (bb
));
1815 bitmap_copy (&curr_regs_live
, DF_LR_IN (bb
));
1816 for (i
= 0; i
< ira_reg_class_cover_size
; i
++)
1817 curr_reg_pressure
[ira_reg_class_cover
[i
]] = 0;
1818 EXECUTE_IF_SET_IN_BITMAP (&curr_regs_live
, 0, j
, bi
)
1819 change_pressure (j
, true);
1821 FOR_BB_INSNS (bb
, insn
)
1823 if (! NONDEBUG_INSN_P (insn
))
1826 mark_ref_regs (PATTERN (insn
));
1828 note_stores (PATTERN (insn
), mark_reg_clobber
, NULL
);
1830 /* Mark any registers dead after INSN as dead now. */
1832 for (link
= REG_NOTES (insn
); link
; link
= XEXP (link
, 1))
1833 if (REG_NOTE_KIND (link
) == REG_DEAD
)
1834 mark_reg_death (XEXP (link
, 0));
1836 /* Mark any registers set in INSN as live,
1837 and mark them as conflicting with all other live regs.
1838 Clobbers are processed again, so they conflict with
1839 the registers that are set. */
1841 note_stores (PATTERN (insn
), mark_reg_store
, NULL
);
1844 for (link
= REG_NOTES (insn
); link
; link
= XEXP (link
, 1))
1845 if (REG_NOTE_KIND (link
) == REG_INC
)
1846 mark_reg_store (XEXP (link
, 0), NULL_RTX
, NULL
);
1848 while (n_regs_set
-- > 0)
1850 rtx note
= find_regno_note (insn
, REG_UNUSED
,
1851 REGNO (regs_set
[n_regs_set
]));
1855 mark_reg_death (XEXP (note
, 0));
1859 bitmap_clear (&curr_regs_live
);
1860 if (flag_ira_region
== IRA_REGION_MIXED
1861 || flag_ira_region
== IRA_REGION_ALL
)
1862 FOR_EACH_LOOP (li
, loop
, 0)
1864 EXECUTE_IF_SET_IN_BITMAP (&LOOP_DATA (loop
)->regs_live
, 0, j
, bi
)
1865 if (! bitmap_bit_p (&LOOP_DATA (loop
)->regs_ref
, j
))
1867 enum reg_class cover_class
;
1870 cover_class
= get_regno_cover_class (j
, &nregs
);
1871 LOOP_DATA (loop
)->max_reg_pressure
[cover_class
] -= nregs
;
1874 if (dump_file
== NULL
)
1876 FOR_EACH_LOOP (li
, loop
, 0)
1878 parent
= loop_outer (loop
);
1879 fprintf (dump_file
, "\n Loop %d (parent %d, header bb%d, depth %d)\n",
1880 loop
->num
, (parent
== NULL
? -1 : parent
->num
),
1881 loop
->header
->index
, loop_depth (loop
));
1882 fprintf (dump_file
, "\n ref. regnos:");
1883 EXECUTE_IF_SET_IN_BITMAP (&LOOP_DATA (loop
)->regs_ref
, 0, j
, bi
)
1884 fprintf (dump_file
, " %d", j
);
1885 fprintf (dump_file
, "\n live regnos:");
1886 EXECUTE_IF_SET_IN_BITMAP (&LOOP_DATA (loop
)->regs_live
, 0, j
, bi
)
1887 fprintf (dump_file
, " %d", j
);
1888 fprintf (dump_file
, "\n Pressure:");
1889 for (i
= 0; (int) i
< ira_reg_class_cover_size
; i
++)
1891 enum reg_class cover_class
;
1893 cover_class
= ira_reg_class_cover
[i
];
1894 if (LOOP_DATA (loop
)->max_reg_pressure
[cover_class
] == 0)
1896 fprintf (dump_file
, " %s=%d", reg_class_names
[cover_class
],
1897 LOOP_DATA (loop
)->max_reg_pressure
[cover_class
]);
1899 fprintf (dump_file
, "\n");
1905 /* Move the invariants out of the loops. */
1908 move_loop_invariants (void)
1913 if (flag_ira_loop_pressure
)
1916 ira_set_pseudo_classes (dump_file
);
1917 calculate_loop_reg_pressure ();
1919 df_set_flags (DF_EQ_NOTES
+ DF_DEFER_INSN_RESCAN
);
1920 /* Process the loops, innermost first. */
1921 FOR_EACH_LOOP (li
, loop
, LI_FROM_INNERMOST
)
1924 /* move_single_loop_invariants for very large loops
1925 is time consuming and might need a lot of memory. */
1926 if (loop
->num_nodes
<= (unsigned) LOOP_INVARIANT_MAX_BBS_IN_LOOP
)
1927 move_single_loop_invariants (loop
);
1930 FOR_EACH_LOOP (li
, loop
, 0)
1932 free_loop_data (loop
);
1935 if (flag_ira_loop_pressure
)
1936 /* There is no sense to keep this info because it was most
1937 probably outdated by subsequent passes. */
1939 free (invariant_table
);
1940 invariant_table
= NULL
;
1941 invariant_table_size
= 0;
1943 #ifdef ENABLE_CHECKING
1944 verify_flow_info ();