2 /* Perform branch target register load optimizations.
3 Copyright (C) 2001-2014 Free Software Foundation, Inc.
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 3, or (at your option) any later
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 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/>. */
23 #include "coretypes.h"
26 #include "hard-reg-set.h"
32 #include "insn-attr.h"
41 #include "diagnostic-core.h"
42 #include "tree-pass.h"
44 #include "dominance.h"
48 #include "cfgcleanup.h"
50 #include "basic-block.h"
55 /* Target register optimizations - these are performed after reload. */
57 typedef struct btr_def_group_s
59 struct btr_def_group_s
*next
;
61 struct btr_def_s
*members
;
64 typedef struct btr_user_s
66 struct btr_user_s
*next
;
70 /* If INSN has a single use of a single branch register, then
71 USE points to it within INSN. If there is more than
72 one branch register use, or the use is in some way ambiguous,
76 int first_reaching_def
;
77 char other_use_this_block
;
80 /* btr_def structs appear on three lists:
81 1. A list of all btr_def structures (head is
82 ALL_BTR_DEFS, linked by the NEXT field).
83 2. A list of branch reg definitions per basic block (head is
84 BB_BTR_DEFS[i], linked by the NEXT_THIS_BB field).
85 3. A list of all branch reg definitions belonging to the same
86 group (head is in a BTR_DEF_GROUP struct, linked by
87 NEXT_THIS_GROUP field). */
89 typedef struct btr_def_s
91 struct btr_def_s
*next_this_bb
;
92 struct btr_def_s
*next_this_group
;
98 /* For a branch register setting insn that has a constant
99 source (i.e. a label), group links together all the
100 insns with the same source. For other branch register
101 setting insns, group is NULL. */
104 /* If this def has a reaching use which is not a simple use
105 in a branch instruction, then has_ambiguous_use will be true,
106 and we will not attempt to migrate this definition. */
107 char has_ambiguous_use
;
108 /* live_range is an approximation to the true live range for this
109 def/use web, because it records the set of blocks that contain
110 the live range. There could be other live ranges for the same
111 branch register in that set of blocks, either in the block
112 containing the def (before the def), or in a block containing
113 a use (after the use). If there are such other live ranges, then
114 other_btr_uses_before_def or other_btr_uses_after_use must be set true
116 char other_btr_uses_before_def
;
117 char other_btr_uses_after_use
;
118 /* We set own_end when we have moved a definition into a dominator.
119 Thus, when a later combination removes this definition again, we know
120 to clear out trs_live_at_end again. */
125 static int issue_rate
;
127 static int basic_block_freq (const_basic_block
);
128 static int insn_sets_btr_p (const rtx_insn
*, int, int *);
129 static void find_btr_def_group (btr_def_group
*, btr_def
);
130 static btr_def
add_btr_def (fibheap_t
, basic_block
, int, rtx_insn
*,
131 unsigned int, int, btr_def_group
*);
132 static btr_user
new_btr_user (basic_block
, int, rtx_insn
*);
133 static void dump_hard_reg_set (HARD_REG_SET
);
134 static void dump_btrs_live (int);
135 static void note_other_use_this_block (unsigned int, btr_user
);
136 static void compute_defs_uses_and_gen (fibheap_t
, btr_def
*,btr_user
*,
137 sbitmap
*, sbitmap
*, HARD_REG_SET
*);
138 static void compute_kill (sbitmap
*, sbitmap
*, HARD_REG_SET
*);
139 static void compute_out (sbitmap
*bb_out
, sbitmap
*, sbitmap
*, int);
140 static void link_btr_uses (btr_def
*, btr_user
*, sbitmap
*, sbitmap
*, int);
141 static void build_btr_def_use_webs (fibheap_t
);
142 static int block_at_edge_of_live_range_p (int, btr_def
);
143 static void clear_btr_from_live_range (btr_def def
);
144 static void add_btr_to_live_range (btr_def
, int);
145 static void augment_live_range (bitmap
, HARD_REG_SET
*, basic_block
,
147 static int choose_btr (HARD_REG_SET
);
148 static void combine_btr_defs (btr_def
, HARD_REG_SET
*);
149 static void btr_def_live_range (btr_def
, HARD_REG_SET
*);
150 static void move_btr_def (basic_block
, int, btr_def
, bitmap
, HARD_REG_SET
*);
151 static int migrate_btr_def (btr_def
, int);
152 static void migrate_btr_defs (enum reg_class
, int);
153 static int can_move_up (const_basic_block
, const rtx_insn
*, int);
154 static void note_btr_set (rtx
, const_rtx
, void *);
156 /* The following code performs code motion of target load instructions
157 (instructions that set branch target registers), to move them
158 forward away from the branch instructions and out of loops (or,
159 more generally, from a more frequently executed place to a less
160 frequently executed place).
161 Moving target load instructions further in front of the branch
162 instruction that uses the target register value means that the hardware
163 has a better chance of preloading the instructions at the branch
164 target by the time the branch is reached. This avoids bubbles
165 when a taken branch needs to flush out the pipeline.
166 Moving target load instructions out of loops means they are executed
169 /* An obstack to hold the def-use web data structures built up for
170 migrating branch target load instructions. */
171 static struct obstack migrate_btrl_obstack
;
173 /* Array indexed by basic block number, giving the set of registers
174 live in that block. */
175 static HARD_REG_SET
*btrs_live
;
177 /* Array indexed by basic block number, giving the set of registers live at
178 the end of that block, including any uses by a final jump insn, if any. */
179 static HARD_REG_SET
*btrs_live_at_end
;
181 /* Set of all target registers that we are willing to allocate. */
182 static HARD_REG_SET all_btrs
;
184 /* Provide lower and upper bounds for target register numbers, so that
185 we don't need to search through all the hard registers all the time. */
186 static int first_btr
, last_btr
;
190 /* Return an estimate of the frequency of execution of block bb. */
192 basic_block_freq (const_basic_block bb
)
194 return bb
->frequency
;
197 /* If X references (sets or reads) any branch target register, return one
198 such register. If EXCLUDEP is set, disregard any references within
201 find_btr_use (rtx x
, rtx
*excludep
= 0)
203 subrtx_ptr_iterator::array_type array
;
204 FOR_EACH_SUBRTX_PTR (iter
, array
, &x
, NONCONST
)
208 iter
.skip_subrtxes ();
213 && overlaps_hard_reg_set_p (all_btrs
, GET_MODE (x
), REGNO (x
)))
220 /* Return true if insn is an instruction that sets a target register.
221 if CHECK_CONST is true, only return true if the source is constant.
222 If such a set is found and REGNO is nonzero, assign the register number
223 of the destination register to *REGNO. */
225 insn_sets_btr_p (const rtx_insn
*insn
, int check_const
, int *regno
)
229 if (NONJUMP_INSN_P (insn
)
230 && (set
= single_set (insn
)))
232 rtx dest
= SET_DEST (set
);
233 rtx src
= SET_SRC (set
);
235 if (GET_CODE (dest
) == SUBREG
)
236 dest
= XEXP (dest
, 0);
239 && TEST_HARD_REG_BIT (all_btrs
, REGNO (dest
)))
241 gcc_assert (!find_btr_use (src
));
243 if (!check_const
|| CONSTANT_P (src
))
246 *regno
= REGNO (dest
);
254 /* Find the group that the target register definition DEF belongs
255 to in the list starting with *ALL_BTR_DEF_GROUPS. If no such
256 group exists, create one. Add def to the group. */
258 find_btr_def_group (btr_def_group
*all_btr_def_groups
, btr_def def
)
260 if (insn_sets_btr_p (def
->insn
, 1, NULL
))
262 btr_def_group this_group
;
263 rtx def_src
= SET_SRC (single_set (def
->insn
));
265 /* ?? This linear search is an efficiency concern, particularly
266 as the search will almost always fail to find a match. */
267 for (this_group
= *all_btr_def_groups
;
269 this_group
= this_group
->next
)
270 if (rtx_equal_p (def_src
, this_group
->src
))
275 this_group
= XOBNEW (&migrate_btrl_obstack
, struct btr_def_group_s
);
276 this_group
->src
= def_src
;
277 this_group
->members
= NULL
;
278 this_group
->next
= *all_btr_def_groups
;
279 *all_btr_def_groups
= this_group
;
281 def
->group
= this_group
;
282 def
->next_this_group
= this_group
->members
;
283 this_group
->members
= def
;
289 /* Create a new target register definition structure, for a definition in
290 block BB, instruction INSN, and insert it into ALL_BTR_DEFS. Return
291 the new definition. */
293 add_btr_def (fibheap_t all_btr_defs
, basic_block bb
, int insn_luid
,
295 unsigned int dest_reg
, int other_btr_uses_before_def
,
296 btr_def_group
*all_btr_def_groups
)
298 btr_def this_def
= XOBNEW (&migrate_btrl_obstack
, struct btr_def_s
);
300 this_def
->luid
= insn_luid
;
301 this_def
->insn
= insn
;
302 this_def
->btr
= dest_reg
;
303 this_def
->cost
= basic_block_freq (bb
);
304 this_def
->has_ambiguous_use
= 0;
305 this_def
->other_btr_uses_before_def
= other_btr_uses_before_def
;
306 this_def
->other_btr_uses_after_use
= 0;
307 this_def
->next_this_bb
= NULL
;
308 this_def
->next_this_group
= NULL
;
309 this_def
->uses
= NULL
;
310 this_def
->live_range
= NULL
;
311 find_btr_def_group (all_btr_def_groups
, this_def
);
313 fibheap_insert (all_btr_defs
, -this_def
->cost
, this_def
);
317 "Found target reg definition: sets %u { bb %d, insn %d }%s priority %d\n",
318 dest_reg
, bb
->index
, INSN_UID (insn
),
319 (this_def
->group
? "" : ":not const"), this_def
->cost
);
324 /* Create a new target register user structure, for a use in block BB,
325 instruction INSN. Return the new user. */
327 new_btr_user (basic_block bb
, int insn_luid
, rtx_insn
*insn
)
329 /* This instruction reads target registers. We need
330 to decide whether we can replace all target register
333 rtx
*usep
= find_btr_use (PATTERN (insn
));
335 btr_user user
= NULL
;
339 int unambiguous_single_use
;
341 /* We want to ensure that USE is the only use of a target
342 register in INSN, so that we know that to rewrite INSN to use
343 a different target register, all we have to do is replace USE. */
344 unambiguous_single_use
= !find_btr_use (PATTERN (insn
), usep
);
345 if (!unambiguous_single_use
)
348 use
= usep
? *usep
: NULL_RTX
;
349 user
= XOBNEW (&migrate_btrl_obstack
, struct btr_user_s
);
351 user
->luid
= insn_luid
;
354 user
->other_use_this_block
= 0;
356 user
->n_reaching_defs
= 0;
357 user
->first_reaching_def
= -1;
361 fprintf (dump_file
, "Uses target reg: { bb %d, insn %d }",
362 bb
->index
, INSN_UID (insn
));
365 fprintf (dump_file
, ": unambiguous use of reg %d\n",
372 /* Write the contents of S to the dump file. */
374 dump_hard_reg_set (HARD_REG_SET s
)
377 for (reg
= 0; reg
< FIRST_PSEUDO_REGISTER
; reg
++)
378 if (TEST_HARD_REG_BIT (s
, reg
))
379 fprintf (dump_file
, " %d", reg
);
382 /* Write the set of target regs live in block BB to the dump file. */
384 dump_btrs_live (int bb
)
386 fprintf (dump_file
, "BB%d live:", bb
);
387 dump_hard_reg_set (btrs_live
[bb
]);
388 fprintf (dump_file
, "\n");
391 /* REGNO is the number of a branch target register that is being used or
392 set. USERS_THIS_BB is a list of preceding branch target register users;
393 If any of them use the same register, set their other_use_this_block
396 note_other_use_this_block (unsigned int regno
, btr_user users_this_bb
)
400 for (user
= users_this_bb
; user
!= NULL
; user
= user
->next
)
401 if (user
->use
&& REGNO (user
->use
) == regno
)
402 user
->other_use_this_block
= 1;
406 btr_user users_this_bb
;
407 HARD_REG_SET btrs_written_in_block
;
408 HARD_REG_SET btrs_live_in_block
;
413 /* Called via note_stores or directly to register stores into /
414 clobbers of a branch target register DEST that are not recognized as
415 straightforward definitions. DATA points to information about the
416 current basic block that needs updating. */
418 note_btr_set (rtx dest
, const_rtx set ATTRIBUTE_UNUSED
, void *data
)
420 defs_uses_info
*info
= (defs_uses_info
*) data
;
421 int regno
, end_regno
;
425 regno
= REGNO (dest
);
426 end_regno
= END_HARD_REGNO (dest
);
427 for (; regno
< end_regno
; regno
++)
428 if (TEST_HARD_REG_BIT (all_btrs
, regno
))
430 note_other_use_this_block (regno
, info
->users_this_bb
);
431 SET_HARD_REG_BIT (info
->btrs_written_in_block
, regno
);
432 SET_HARD_REG_BIT (info
->btrs_live_in_block
, regno
);
433 bitmap_and_compl (info
->bb_gen
, info
->bb_gen
,
434 info
->btr_defset
[regno
- first_btr
]);
439 compute_defs_uses_and_gen (fibheap_t all_btr_defs
, btr_def
*def_array
,
440 btr_user
*use_array
, sbitmap
*btr_defset
,
441 sbitmap
*bb_gen
, HARD_REG_SET
*btrs_written
)
443 /* Scan the code building up the set of all defs and all uses.
444 For each target register, build the set of defs of that register.
445 For each block, calculate the set of target registers
446 written in that block.
447 Also calculate the set of btrs ever live in that block.
451 btr_def_group all_btr_def_groups
= NULL
;
454 bitmap_vector_clear (bb_gen
, last_basic_block_for_fn (cfun
));
455 for (i
= NUM_FIXED_BLOCKS
; i
< last_basic_block_for_fn (cfun
); i
++)
457 basic_block bb
= BASIC_BLOCK_FOR_FN (cfun
, i
);
459 btr_def defs_this_bb
= NULL
;
464 info
.users_this_bb
= NULL
;
465 info
.bb_gen
= bb_gen
[i
];
466 info
.btr_defset
= btr_defset
;
468 CLEAR_HARD_REG_SET (info
.btrs_live_in_block
);
469 CLEAR_HARD_REG_SET (info
.btrs_written_in_block
);
470 for (reg
= first_btr
; reg
<= last_btr
; reg
++)
471 if (TEST_HARD_REG_BIT (all_btrs
, reg
)
472 && REGNO_REG_SET_P (df_get_live_in (bb
), reg
))
473 SET_HARD_REG_BIT (info
.btrs_live_in_block
, reg
);
475 for (insn
= BB_HEAD (bb
), last
= NEXT_INSN (BB_END (bb
));
477 insn
= NEXT_INSN (insn
), insn_luid
++)
482 int insn_uid
= INSN_UID (insn
);
484 if (insn_sets_btr_p (insn
, 0, ®no
))
486 btr_def def
= add_btr_def (
487 all_btr_defs
, bb
, insn_luid
, insn
, regno
,
488 TEST_HARD_REG_BIT (info
.btrs_live_in_block
, regno
),
489 &all_btr_def_groups
);
491 def_array
[insn_uid
] = def
;
492 SET_HARD_REG_BIT (info
.btrs_written_in_block
, regno
);
493 SET_HARD_REG_BIT (info
.btrs_live_in_block
, regno
);
494 bitmap_and_compl (bb_gen
[i
], bb_gen
[i
],
495 btr_defset
[regno
- first_btr
]);
496 bitmap_set_bit (bb_gen
[i
], insn_uid
);
497 def
->next_this_bb
= defs_this_bb
;
499 bitmap_set_bit (btr_defset
[regno
- first_btr
], insn_uid
);
500 note_other_use_this_block (regno
, info
.users_this_bb
);
502 /* Check for the blockage emitted by expand_nl_goto_receiver. */
503 else if (cfun
->has_nonlocal_label
504 && GET_CODE (PATTERN (insn
)) == UNSPEC_VOLATILE
)
508 /* Do the equivalent of calling note_other_use_this_block
509 for every target register. */
510 for (user
= info
.users_this_bb
; user
!= NULL
;
513 user
->other_use_this_block
= 1;
514 IOR_HARD_REG_SET (info
.btrs_written_in_block
, all_btrs
);
515 IOR_HARD_REG_SET (info
.btrs_live_in_block
, all_btrs
);
516 bitmap_clear (info
.bb_gen
);
520 if (find_btr_use (PATTERN (insn
)))
522 btr_user user
= new_btr_user (bb
, insn_luid
, insn
);
524 use_array
[insn_uid
] = user
;
526 SET_HARD_REG_BIT (info
.btrs_live_in_block
,
531 for (reg
= first_btr
; reg
<= last_btr
; reg
++)
532 if (TEST_HARD_REG_BIT (all_btrs
, reg
)
533 && refers_to_regno_p (reg
, reg
+ 1, user
->insn
,
536 note_other_use_this_block (reg
,
538 SET_HARD_REG_BIT (info
.btrs_live_in_block
, reg
);
540 note_stores (PATTERN (insn
), note_btr_set
, &info
);
542 user
->next
= info
.users_this_bb
;
543 info
.users_this_bb
= user
;
547 HARD_REG_SET
*clobbered
= &call_used_reg_set
;
548 HARD_REG_SET call_saved
;
549 rtx pat
= PATTERN (insn
);
552 /* Check for sibcall. */
553 if (GET_CODE (pat
) == PARALLEL
)
554 for (i
= XVECLEN (pat
, 0) - 1; i
>= 0; i
--)
555 if (ANY_RETURN_P (XVECEXP (pat
, 0, i
)))
557 COMPL_HARD_REG_SET (call_saved
,
559 clobbered
= &call_saved
;
562 for (regno
= first_btr
; regno
<= last_btr
; regno
++)
563 if (TEST_HARD_REG_BIT (*clobbered
, regno
))
564 note_btr_set (regno_reg_rtx
[regno
], NULL_RTX
, &info
);
570 COPY_HARD_REG_SET (btrs_live
[i
], info
.btrs_live_in_block
);
571 COPY_HARD_REG_SET (btrs_written
[i
], info
.btrs_written_in_block
);
573 REG_SET_TO_HARD_REG_SET (btrs_live_at_end
[i
], df_get_live_out (bb
));
574 /* If this block ends in a jump insn, add any uses or even clobbers
575 of branch target registers that it might have. */
576 for (insn
= BB_END (bb
); insn
!= BB_HEAD (bb
) && ! INSN_P (insn
); )
577 insn
= PREV_INSN (insn
);
578 /* ??? for the fall-through edge, it would make sense to insert the
579 btr set on the edge, but that would require to split the block
580 early on so that we can distinguish between dominance from the fall
581 through edge - which can use the call-clobbered registers - from
582 dominance by the throw edge. */
583 if (can_throw_internal (insn
))
587 COPY_HARD_REG_SET (tmp
, call_used_reg_set
);
588 AND_HARD_REG_SET (tmp
, all_btrs
);
589 IOR_HARD_REG_SET (btrs_live_at_end
[i
], tmp
);
592 if (can_throw
|| JUMP_P (insn
))
596 for (regno
= first_btr
; regno
<= last_btr
; regno
++)
597 if (refers_to_regno_p (regno
, regno
+1, insn
, NULL
))
598 SET_HARD_REG_BIT (btrs_live_at_end
[i
], regno
);
607 compute_kill (sbitmap
*bb_kill
, sbitmap
*btr_defset
,
608 HARD_REG_SET
*btrs_written
)
613 /* For each basic block, form the set BB_KILL - the set
614 of definitions that the block kills. */
615 bitmap_vector_clear (bb_kill
, last_basic_block_for_fn (cfun
));
616 for (i
= NUM_FIXED_BLOCKS
; i
< last_basic_block_for_fn (cfun
); i
++)
618 for (regno
= first_btr
; regno
<= last_btr
; regno
++)
619 if (TEST_HARD_REG_BIT (all_btrs
, regno
)
620 && TEST_HARD_REG_BIT (btrs_written
[i
], regno
))
621 bitmap_ior (bb_kill
[i
], bb_kill
[i
],
622 btr_defset
[regno
- first_btr
]);
627 compute_out (sbitmap
*bb_out
, sbitmap
*bb_gen
, sbitmap
*bb_kill
, int max_uid
)
629 /* Perform iterative dataflow:
630 Initially, for all blocks, BB_OUT = BB_GEN.
632 BB_IN = union over predecessors of BB_OUT(pred)
633 BB_OUT = (BB_IN - BB_KILL) + BB_GEN
634 Iterate until the bb_out sets stop growing. */
637 sbitmap bb_in
= sbitmap_alloc (max_uid
);
639 for (i
= NUM_FIXED_BLOCKS
; i
< last_basic_block_for_fn (cfun
); i
++)
640 bitmap_copy (bb_out
[i
], bb_gen
[i
]);
646 for (i
= NUM_FIXED_BLOCKS
; i
< last_basic_block_for_fn (cfun
); i
++)
648 bitmap_union_of_preds (bb_in
, bb_out
, BASIC_BLOCK_FOR_FN (cfun
, i
));
649 changed
|= bitmap_ior_and_compl (bb_out
[i
], bb_gen
[i
],
653 sbitmap_free (bb_in
);
657 link_btr_uses (btr_def
*def_array
, btr_user
*use_array
, sbitmap
*bb_out
,
658 sbitmap
*btr_defset
, int max_uid
)
661 sbitmap reaching_defs
= sbitmap_alloc (max_uid
);
663 /* Link uses to the uses lists of all of their reaching defs.
664 Count up the number of reaching defs of each use. */
665 for (i
= NUM_FIXED_BLOCKS
; i
< last_basic_block_for_fn (cfun
); i
++)
667 basic_block bb
= BASIC_BLOCK_FOR_FN (cfun
, i
);
671 bitmap_union_of_preds (reaching_defs
, bb_out
, BASIC_BLOCK_FOR_FN (cfun
, i
));
672 for (insn
= BB_HEAD (bb
), last
= NEXT_INSN (BB_END (bb
));
674 insn
= NEXT_INSN (insn
))
678 int insn_uid
= INSN_UID (insn
);
680 btr_def def
= def_array
[insn_uid
];
681 btr_user user
= use_array
[insn_uid
];
684 /* Remove all reaching defs of regno except
686 bitmap_and_compl (reaching_defs
, reaching_defs
,
687 btr_defset
[def
->btr
- first_btr
]);
688 bitmap_set_bit (reaching_defs
, insn_uid
);
693 /* Find all the reaching defs for this use. */
694 sbitmap reaching_defs_of_reg
= sbitmap_alloc (max_uid
);
695 unsigned int uid
= 0;
696 sbitmap_iterator sbi
;
700 reaching_defs_of_reg
,
702 btr_defset
[REGNO (user
->use
) - first_btr
]);
707 bitmap_clear (reaching_defs_of_reg
);
708 for (reg
= first_btr
; reg
<= last_btr
; reg
++)
709 if (TEST_HARD_REG_BIT (all_btrs
, reg
)
710 && refers_to_regno_p (reg
, reg
+ 1, user
->insn
,
712 bitmap_or_and (reaching_defs_of_reg
,
713 reaching_defs_of_reg
,
715 btr_defset
[reg
- first_btr
]);
717 EXECUTE_IF_SET_IN_BITMAP (reaching_defs_of_reg
, 0, uid
, sbi
)
719 btr_def def
= def_array
[uid
];
721 /* We now know that def reaches user. */
725 "Def in insn %d reaches use in insn %d\n",
728 user
->n_reaching_defs
++;
730 def
->has_ambiguous_use
= 1;
731 if (user
->first_reaching_def
!= -1)
732 { /* There is more than one reaching def. This is
733 a rare case, so just give up on this def/use
734 web when it occurs. */
735 def
->has_ambiguous_use
= 1;
736 def_array
[user
->first_reaching_def
]
737 ->has_ambiguous_use
= 1;
740 "(use %d has multiple reaching defs)\n",
744 user
->first_reaching_def
= uid
;
745 if (user
->other_use_this_block
)
746 def
->other_btr_uses_after_use
= 1;
747 user
->next
= def
->uses
;
750 sbitmap_free (reaching_defs_of_reg
);
757 for (regno
= first_btr
; regno
<= last_btr
; regno
++)
758 if (TEST_HARD_REG_BIT (all_btrs
, regno
)
759 && TEST_HARD_REG_BIT (call_used_reg_set
, regno
))
760 bitmap_and_compl (reaching_defs
, reaching_defs
,
761 btr_defset
[regno
- first_btr
]);
766 sbitmap_free (reaching_defs
);
770 build_btr_def_use_webs (fibheap_t all_btr_defs
)
772 const int max_uid
= get_max_uid ();
773 btr_def
*def_array
= XCNEWVEC (btr_def
, max_uid
);
774 btr_user
*use_array
= XCNEWVEC (btr_user
, max_uid
);
775 sbitmap
*btr_defset
= sbitmap_vector_alloc (
776 (last_btr
- first_btr
) + 1, max_uid
);
777 sbitmap
*bb_gen
= sbitmap_vector_alloc (last_basic_block_for_fn (cfun
),
779 HARD_REG_SET
*btrs_written
= XCNEWVEC (HARD_REG_SET
,
780 last_basic_block_for_fn (cfun
));
784 bitmap_vector_clear (btr_defset
, (last_btr
- first_btr
) + 1);
786 compute_defs_uses_and_gen (all_btr_defs
, def_array
, use_array
, btr_defset
,
787 bb_gen
, btrs_written
);
789 bb_kill
= sbitmap_vector_alloc (last_basic_block_for_fn (cfun
), max_uid
);
790 compute_kill (bb_kill
, btr_defset
, btrs_written
);
793 bb_out
= sbitmap_vector_alloc (last_basic_block_for_fn (cfun
), max_uid
);
794 compute_out (bb_out
, bb_gen
, bb_kill
, max_uid
);
796 sbitmap_vector_free (bb_gen
);
797 sbitmap_vector_free (bb_kill
);
799 link_btr_uses (def_array
, use_array
, bb_out
, btr_defset
, max_uid
);
801 sbitmap_vector_free (bb_out
);
802 sbitmap_vector_free (btr_defset
);
807 /* Return true if basic block BB contains the start or end of the
808 live range of the definition DEF, AND there are other live
809 ranges of the same target register that include BB. */
811 block_at_edge_of_live_range_p (int bb
, btr_def def
)
813 if (def
->other_btr_uses_before_def
814 && BASIC_BLOCK_FOR_FN (cfun
, bb
) == def
->bb
)
816 else if (def
->other_btr_uses_after_use
)
819 for (user
= def
->uses
; user
!= NULL
; user
= user
->next
)
820 if (BASIC_BLOCK_FOR_FN (cfun
, bb
) == user
->bb
)
826 /* We are removing the def/use web DEF. The target register
827 used in this web is therefore no longer live in the live range
828 of this web, so remove it from the live set of all basic blocks
829 in the live range of the web.
830 Blocks at the boundary of the live range may contain other live
831 ranges for the same target register, so we have to be careful
832 to remove the target register from the live set of these blocks
833 only if they do not contain other live ranges for the same register. */
835 clear_btr_from_live_range (btr_def def
)
840 EXECUTE_IF_SET_IN_BITMAP (def
->live_range
, 0, bb
, bi
)
842 if ((!def
->other_btr_uses_before_def
843 && !def
->other_btr_uses_after_use
)
844 || !block_at_edge_of_live_range_p (bb
, def
))
846 CLEAR_HARD_REG_BIT (btrs_live
[bb
], def
->btr
);
847 CLEAR_HARD_REG_BIT (btrs_live_at_end
[bb
], def
->btr
);
853 CLEAR_HARD_REG_BIT (btrs_live_at_end
[def
->bb
->index
], def
->btr
);
857 /* We are adding the def/use web DEF. Add the target register used
858 in this web to the live set of all of the basic blocks that contain
859 the live range of the web.
860 If OWN_END is set, also show that the register is live from our
861 definitions at the end of the basic block where it is defined. */
863 add_btr_to_live_range (btr_def def
, int own_end
)
868 EXECUTE_IF_SET_IN_BITMAP (def
->live_range
, 0, bb
, bi
)
870 SET_HARD_REG_BIT (btrs_live
[bb
], def
->btr
);
871 SET_HARD_REG_BIT (btrs_live_at_end
[bb
], def
->btr
);
877 SET_HARD_REG_BIT (btrs_live_at_end
[def
->bb
->index
], def
->btr
);
882 /* Update a live range to contain the basic block NEW_BLOCK, and all
883 blocks on paths between the existing live range and NEW_BLOCK.
884 HEAD is a block contained in the existing live range that dominates
885 all other blocks in the existing live range.
886 Also add to the set BTRS_LIVE_IN_RANGE all target registers that
887 are live in the blocks that we add to the live range.
888 If FULL_RANGE is set, include the full live range of NEW_BB;
889 otherwise, if NEW_BB dominates HEAD_BB, only add registers that
890 are life at the end of NEW_BB for NEW_BB itself.
891 It is a precondition that either NEW_BLOCK dominates HEAD,or
892 HEAD dom NEW_BLOCK. This is used to speed up the
893 implementation of this function. */
895 augment_live_range (bitmap live_range
, HARD_REG_SET
*btrs_live_in_range
,
896 basic_block head_bb
, basic_block new_bb
, int full_range
)
898 basic_block
*worklist
, *tos
;
900 tos
= worklist
= XNEWVEC (basic_block
, n_basic_blocks_for_fn (cfun
) + 1);
902 if (dominated_by_p (CDI_DOMINATORS
, new_bb
, head_bb
))
904 if (new_bb
== head_bb
)
907 IOR_HARD_REG_SET (*btrs_live_in_range
, btrs_live
[new_bb
->index
]);
917 int new_block
= new_bb
->index
;
919 gcc_assert (dominated_by_p (CDI_DOMINATORS
, head_bb
, new_bb
));
921 IOR_HARD_REG_SET (*btrs_live_in_range
, btrs_live
[head_bb
->index
]);
922 bitmap_set_bit (live_range
, new_block
);
923 /* A previous btr migration could have caused a register to be
924 live just at the end of new_block which we need in full, so
925 use trs_live_at_end even if full_range is set. */
926 IOR_HARD_REG_SET (*btrs_live_in_range
, btrs_live_at_end
[new_block
]);
928 IOR_HARD_REG_SET (*btrs_live_in_range
, btrs_live
[new_block
]);
932 "Adding end of block %d and rest of %d to live range\n",
933 new_block
, head_bb
->index
);
934 fprintf (dump_file
,"Now live btrs are ");
935 dump_hard_reg_set (*btrs_live_in_range
);
936 fprintf (dump_file
, "\n");
938 FOR_EACH_EDGE (e
, ei
, head_bb
->preds
)
942 while (tos
!= worklist
)
944 basic_block bb
= *--tos
;
945 if (!bitmap_bit_p (live_range
, bb
->index
))
950 bitmap_set_bit (live_range
, bb
->index
);
951 IOR_HARD_REG_SET (*btrs_live_in_range
,
952 btrs_live
[bb
->index
]);
953 /* A previous btr migration could have caused a register to be
954 live just at the end of a block which we need in full. */
955 IOR_HARD_REG_SET (*btrs_live_in_range
,
956 btrs_live_at_end
[bb
->index
]);
960 "Adding block %d to live range\n", bb
->index
);
961 fprintf (dump_file
,"Now live btrs are ");
962 dump_hard_reg_set (*btrs_live_in_range
);
963 fprintf (dump_file
, "\n");
966 FOR_EACH_EDGE (e
, ei
, bb
->preds
)
968 basic_block pred
= e
->src
;
969 if (!bitmap_bit_p (live_range
, pred
->index
))
978 /* Return the most desirable target register that is not in
979 the set USED_BTRS. */
981 choose_btr (HARD_REG_SET used_btrs
)
985 if (!hard_reg_set_subset_p (all_btrs
, used_btrs
))
986 for (i
= 0; i
< FIRST_PSEUDO_REGISTER
; i
++)
988 #ifdef REG_ALLOC_ORDER
989 int regno
= reg_alloc_order
[i
];
993 if (TEST_HARD_REG_BIT (all_btrs
, regno
)
994 && !TEST_HARD_REG_BIT (used_btrs
, regno
))
1000 /* Calculate the set of basic blocks that contain the live range of
1001 the def/use web DEF.
1002 Also calculate the set of target registers that are live at time
1003 in this live range, but ignore the live range represented by DEF
1004 when calculating this set. */
1006 btr_def_live_range (btr_def def
, HARD_REG_SET
*btrs_live_in_range
)
1008 if (!def
->live_range
)
1012 def
->live_range
= BITMAP_ALLOC (NULL
);
1014 bitmap_set_bit (def
->live_range
, def
->bb
->index
);
1015 COPY_HARD_REG_SET (*btrs_live_in_range
,
1016 (flag_btr_bb_exclusive
1017 ? btrs_live
: btrs_live_at_end
)[def
->bb
->index
]);
1019 for (user
= def
->uses
; user
!= NULL
; user
= user
->next
)
1020 augment_live_range (def
->live_range
, btrs_live_in_range
,
1022 (flag_btr_bb_exclusive
1023 || user
->insn
!= BB_END (def
->bb
)
1024 || !JUMP_P (user
->insn
)));
1028 /* def->live_range is accurate, but we need to recompute
1029 the set of target registers live over it, because migration
1030 of other PT instructions may have affected it.
1033 unsigned def_bb
= flag_btr_bb_exclusive
? -1 : def
->bb
->index
;
1036 CLEAR_HARD_REG_SET (*btrs_live_in_range
);
1037 EXECUTE_IF_SET_IN_BITMAP (def
->live_range
, 0, bb
, bi
)
1039 IOR_HARD_REG_SET (*btrs_live_in_range
,
1041 ? btrs_live_at_end
: btrs_live
) [bb
]);
1044 if (!def
->other_btr_uses_before_def
&&
1045 !def
->other_btr_uses_after_use
)
1046 CLEAR_HARD_REG_BIT (*btrs_live_in_range
, def
->btr
);
1049 /* Merge into the def/use web DEF any other def/use webs in the same
1050 group that are dominated by DEF, provided that there is a target
1051 register available to allocate to the merged web. */
1053 combine_btr_defs (btr_def def
, HARD_REG_SET
*btrs_live_in_range
)
1057 for (other_def
= def
->group
->members
;
1059 other_def
= other_def
->next_this_group
)
1061 if (other_def
!= def
1062 && other_def
->uses
!= NULL
1063 && ! other_def
->has_ambiguous_use
1064 && dominated_by_p (CDI_DOMINATORS
, other_def
->bb
, def
->bb
))
1066 /* def->bb dominates the other def, so def and other_def could
1068 /* Merge their live ranges, and get the set of
1069 target registers live over the merged range. */
1071 HARD_REG_SET combined_btrs_live
;
1072 bitmap combined_live_range
= BITMAP_ALLOC (NULL
);
1075 if (other_def
->live_range
== NULL
)
1077 HARD_REG_SET dummy_btrs_live_in_range
;
1078 btr_def_live_range (other_def
, &dummy_btrs_live_in_range
);
1080 COPY_HARD_REG_SET (combined_btrs_live
, *btrs_live_in_range
);
1081 bitmap_copy (combined_live_range
, def
->live_range
);
1083 for (user
= other_def
->uses
; user
!= NULL
; user
= user
->next
)
1084 augment_live_range (combined_live_range
, &combined_btrs_live
,
1086 (flag_btr_bb_exclusive
1087 || user
->insn
!= BB_END (def
->bb
)
1088 || !JUMP_P (user
->insn
)));
1090 btr
= choose_btr (combined_btrs_live
);
1093 /* We can combine them. */
1096 "Combining def in insn %d with def in insn %d\n",
1097 INSN_UID (other_def
->insn
), INSN_UID (def
->insn
));
1100 user
= other_def
->uses
;
1101 while (user
!= NULL
)
1103 btr_user next
= user
->next
;
1105 user
->next
= def
->uses
;
1109 /* Combining def/use webs can make target registers live
1110 after uses where they previously were not. This means
1111 some REG_DEAD notes may no longer be correct. We could
1112 be more precise about this if we looked at the combined
1113 live range, but here I just delete any REG_DEAD notes
1114 in case they are no longer correct. */
1115 for (user
= def
->uses
; user
!= NULL
; user
= user
->next
)
1116 remove_note (user
->insn
,
1117 find_regno_note (user
->insn
, REG_DEAD
,
1118 REGNO (user
->use
)));
1119 clear_btr_from_live_range (other_def
);
1120 other_def
->uses
= NULL
;
1121 bitmap_copy (def
->live_range
, combined_live_range
);
1122 if (other_def
->btr
== btr
&& other_def
->other_btr_uses_after_use
)
1123 def
->other_btr_uses_after_use
= 1;
1124 COPY_HARD_REG_SET (*btrs_live_in_range
, combined_btrs_live
);
1126 /* Delete the old target register initialization. */
1127 delete_insn (other_def
->insn
);
1130 BITMAP_FREE (combined_live_range
);
1135 /* Move the definition DEF from its current position to basic
1136 block NEW_DEF_BB, and modify it to use branch target register BTR.
1137 Delete the old defining insn, and insert a new one in NEW_DEF_BB.
1138 Update all reaching uses of DEF in the RTL to use BTR.
1139 If this new position means that other defs in the
1140 same group can be combined with DEF then combine them. */
1142 move_btr_def (basic_block new_def_bb
, int btr
, btr_def def
, bitmap live_range
,
1143 HARD_REG_SET
*btrs_live_in_range
)
1145 /* We can move the instruction.
1146 Set a target register in block NEW_DEF_BB to the value
1147 needed for this target register definition.
1148 Replace all uses of the old target register definition by
1149 uses of the new definition. Delete the old definition. */
1150 basic_block b
= new_def_bb
;
1151 rtx_insn
*insp
= BB_HEAD (b
);
1152 rtx_insn
*old_insn
= def
->insn
;
1156 machine_mode btr_mode
;
1161 fprintf(dump_file
, "migrating to basic block %d, using reg %d\n",
1162 new_def_bb
->index
, btr
);
1164 clear_btr_from_live_range (def
);
1166 def
->bb
= new_def_bb
;
1168 def
->cost
= basic_block_freq (new_def_bb
);
1169 bitmap_copy (def
->live_range
, live_range
);
1170 combine_btr_defs (def
, btrs_live_in_range
);
1172 def
->other_btr_uses_before_def
1173 = TEST_HARD_REG_BIT (btrs_live
[b
->index
], btr
) ? 1 : 0;
1174 add_btr_to_live_range (def
, 1);
1176 insp
= NEXT_INSN (insp
);
1177 /* N.B.: insp is expected to be NOTE_INSN_BASIC_BLOCK now. Some
1178 optimizations can result in insp being both first and last insn of
1180 /* ?? some assertions to check that insp is sensible? */
1182 if (def
->other_btr_uses_before_def
)
1185 for (insp
= BB_END (b
); ! INSN_P (insp
); insp
= PREV_INSN (insp
))
1186 gcc_assert (insp
!= BB_HEAD (b
));
1188 if (JUMP_P (insp
) || can_throw_internal (insp
))
1189 insp
= PREV_INSN (insp
);
1192 set
= single_set (old_insn
);
1193 src
= SET_SRC (set
);
1194 btr_mode
= GET_MODE (SET_DEST (set
));
1195 btr_rtx
= gen_rtx_REG (btr_mode
, btr
);
1197 new_insn
= as_a
<rtx_insn
*> (gen_move_insn (btr_rtx
, src
));
1199 /* Insert target register initialization at head of basic block. */
1200 def
->insn
= emit_insn_after (new_insn
, insp
);
1202 df_set_regs_ever_live (btr
, true);
1205 fprintf (dump_file
, "New pt is insn %d, inserted after insn %d\n",
1206 INSN_UID (def
->insn
), INSN_UID (insp
));
1208 /* Delete the old target register initialization. */
1209 delete_insn (old_insn
);
1211 /* Replace each use of the old target register by a use of the new target
1213 for (user
= def
->uses
; user
!= NULL
; user
= user
->next
)
1215 /* Some extra work here to ensure consistent modes, because
1216 it seems that a target register REG rtx can be given a different
1217 mode depending on the context (surely that should not be
1219 rtx replacement_rtx
;
1220 if (GET_MODE (user
->use
) == GET_MODE (btr_rtx
)
1221 || GET_MODE (user
->use
) == VOIDmode
)
1222 replacement_rtx
= btr_rtx
;
1224 replacement_rtx
= gen_rtx_REG (GET_MODE (user
->use
), btr
);
1225 validate_replace_rtx (user
->use
, replacement_rtx
, user
->insn
);
1226 user
->use
= replacement_rtx
;
1230 /* We anticipate intra-block scheduling to be done. See if INSN could move
1231 up within BB by N_INSNS. */
1233 can_move_up (const_basic_block bb
, const rtx_insn
*insn
, int n_insns
)
1235 while (insn
!= BB_HEAD (bb
) && n_insns
> 0)
1237 insn
= PREV_INSN (insn
);
1238 /* ??? What if we have an anti-dependency that actually prevents the
1239 scheduler from doing the move? We'd like to re-allocate the register,
1240 but not necessarily put the load into another basic block. */
1244 return n_insns
<= 0;
1247 /* Attempt to migrate the target register definition DEF to an
1248 earlier point in the flowgraph.
1250 It is a precondition of this function that DEF is migratable:
1251 i.e. it has a constant source, and all uses are unambiguous.
1253 Only migrations that reduce the cost of DEF will be made.
1254 MIN_COST is the lower bound on the cost of the DEF after migration.
1255 If we migrate DEF so that its cost falls below MIN_COST,
1256 then we do not attempt to migrate further. The idea is that
1257 we migrate definitions in a priority order based on their cost,
1258 when the cost of this definition falls below MIN_COST, then
1259 there is another definition with cost == MIN_COST which now
1260 has a higher priority than this definition.
1262 Return nonzero if there may be benefit from attempting to
1263 migrate this DEF further (i.e. we have reduced the cost below
1264 MIN_COST, but we may be able to reduce it further).
1265 Return zero if no further migration is possible. */
1267 migrate_btr_def (btr_def def
, int min_cost
)
1270 HARD_REG_SET btrs_live_in_range
;
1271 int btr_used_near_def
= 0;
1272 int def_basic_block_freq
;
1273 basic_block attempt
;
1281 "Attempting to migrate pt from insn %d (cost = %d, min_cost = %d) ... ",
1282 INSN_UID (def
->insn
), def
->cost
, min_cost
);
1284 if (!def
->group
|| def
->has_ambiguous_use
)
1285 /* These defs are not migratable. */
1288 fprintf (dump_file
, "it's not migratable\n");
1293 /* We have combined this def with another in the same group, so
1294 no need to consider it further.
1298 fprintf (dump_file
, "it's already combined with another pt\n");
1302 btr_def_live_range (def
, &btrs_live_in_range
);
1303 live_range
= BITMAP_ALLOC (NULL
);
1304 bitmap_copy (live_range
, def
->live_range
);
1306 #ifdef INSN_SCHEDULING
1307 def_latency
= insn_default_latency (def
->insn
) * issue_rate
;
1309 def_latency
= issue_rate
;
1312 for (user
= def
->uses
; user
!= NULL
; user
= user
->next
)
1314 if (user
->bb
== def
->bb
1315 && user
->luid
> def
->luid
1316 && (def
->luid
+ def_latency
) > user
->luid
1317 && ! can_move_up (def
->bb
, def
->insn
,
1318 (def
->luid
+ def_latency
) - user
->luid
))
1320 btr_used_near_def
= 1;
1325 def_basic_block_freq
= basic_block_freq (def
->bb
);
1327 for (attempt
= get_immediate_dominator (CDI_DOMINATORS
, def
->bb
);
1328 !give_up
&& attempt
&& attempt
!= ENTRY_BLOCK_PTR_FOR_FN (cfun
)
1329 && def
->cost
>= min_cost
;
1330 attempt
= get_immediate_dominator (CDI_DOMINATORS
, attempt
))
1332 /* Try to move the instruction that sets the target register into
1333 basic block ATTEMPT. */
1334 int try_freq
= basic_block_freq (attempt
);
1338 /* If ATTEMPT has abnormal edges, skip it. */
1339 FOR_EACH_EDGE (e
, ei
, attempt
->succs
)
1340 if (e
->flags
& EDGE_COMPLEX
)
1346 fprintf (dump_file
, "trying block %d ...", attempt
->index
);
1348 if (try_freq
< def_basic_block_freq
1349 || (try_freq
== def_basic_block_freq
&& btr_used_near_def
))
1352 augment_live_range (live_range
, &btrs_live_in_range
, def
->bb
, attempt
,
1353 flag_btr_bb_exclusive
);
1356 fprintf (dump_file
, "Now btrs live in range are: ");
1357 dump_hard_reg_set (btrs_live_in_range
);
1358 fprintf (dump_file
, "\n");
1360 btr
= choose_btr (btrs_live_in_range
);
1363 move_btr_def (attempt
, btr
, def
, live_range
, &btrs_live_in_range
);
1364 bitmap_copy (live_range
, def
->live_range
);
1365 btr_used_near_def
= 0;
1367 def_basic_block_freq
= basic_block_freq (def
->bb
);
1371 /* There are no free target registers available to move
1372 this far forward, so give up */
1376 "giving up because there are no free target registers\n");
1385 fprintf (dump_file
, "failed to move\n");
1387 BITMAP_FREE (live_range
);
1391 /* Attempt to move instructions that set target registers earlier
1392 in the flowgraph, away from their corresponding uses. */
1394 migrate_btr_defs (enum reg_class btr_class
, int allow_callee_save
)
1396 fibheap_t all_btr_defs
= fibheap_new ();
1399 gcc_obstack_init (&migrate_btrl_obstack
);
1404 for (i
= NUM_FIXED_BLOCKS
; i
< last_basic_block_for_fn (cfun
); i
++)
1406 basic_block bb
= BASIC_BLOCK_FOR_FN (cfun
, i
);
1408 "Basic block %d: count = %" PRId64
1409 " loop-depth = %d idom = %d\n",
1410 i
, (int64_t) bb
->count
, bb_loop_depth (bb
),
1411 get_immediate_dominator (CDI_DOMINATORS
, bb
)->index
);
1415 CLEAR_HARD_REG_SET (all_btrs
);
1416 for (first_btr
= -1, reg
= 0; reg
< FIRST_PSEUDO_REGISTER
; reg
++)
1417 if (TEST_HARD_REG_BIT (reg_class_contents
[(int) btr_class
], reg
)
1418 && (allow_callee_save
|| call_used_regs
[reg
]
1419 || df_regs_ever_live_p (reg
)))
1421 SET_HARD_REG_BIT (all_btrs
, reg
);
1427 btrs_live
= XCNEWVEC (HARD_REG_SET
, last_basic_block_for_fn (cfun
));
1428 btrs_live_at_end
= XCNEWVEC (HARD_REG_SET
, last_basic_block_for_fn (cfun
));
1430 build_btr_def_use_webs (all_btr_defs
);
1432 while (!fibheap_empty (all_btr_defs
))
1434 btr_def def
= (btr_def
) fibheap_extract_min (all_btr_defs
);
1435 int min_cost
= -fibheap_min_key (all_btr_defs
);
1436 if (migrate_btr_def (def
, min_cost
))
1438 fibheap_insert (all_btr_defs
, -def
->cost
, (void *) def
);
1442 "Putting insn %d back on queue with priority %d\n",
1443 INSN_UID (def
->insn
), def
->cost
);
1447 BITMAP_FREE (def
->live_range
);
1451 free (btrs_live_at_end
);
1452 obstack_free (&migrate_btrl_obstack
, NULL
);
1453 fibheap_delete (all_btr_defs
);
1457 branch_target_load_optimize (bool after_prologue_epilogue_gen
)
1459 enum reg_class klass
1460 = (enum reg_class
) targetm
.branch_target_register_class ();
1461 if (klass
!= NO_REGS
)
1463 /* Initialize issue_rate. */
1464 if (targetm
.sched
.issue_rate
)
1465 issue_rate
= targetm
.sched
.issue_rate ();
1469 if (!after_prologue_epilogue_gen
)
1471 /* Build the CFG for migrate_btr_defs. */
1473 /* This may or may not be needed, depending on where we
1475 cleanup_cfg (optimize
? CLEANUP_EXPENSIVE
: 0);
1481 /* Dominator info is also needed for migrate_btr_def. */
1482 calculate_dominance_info (CDI_DOMINATORS
);
1483 migrate_btr_defs (klass
,
1484 (targetm
.branch_target_register_callee_saved
1485 (after_prologue_epilogue_gen
)));
1487 free_dominance_info (CDI_DOMINATORS
);
1493 const pass_data pass_data_branch_target_load_optimize1
=
1495 RTL_PASS
, /* type */
1497 OPTGROUP_NONE
, /* optinfo_flags */
1498 TV_NONE
, /* tv_id */
1499 0, /* properties_required */
1500 0, /* properties_provided */
1501 0, /* properties_destroyed */
1502 0, /* todo_flags_start */
1503 0, /* todo_flags_finish */
1506 class pass_branch_target_load_optimize1
: public rtl_opt_pass
1509 pass_branch_target_load_optimize1 (gcc::context
*ctxt
)
1510 : rtl_opt_pass (pass_data_branch_target_load_optimize1
, ctxt
)
1513 /* opt_pass methods: */
1514 virtual bool gate (function
*) { return flag_branch_target_load_optimize
; }
1515 virtual unsigned int execute (function
*)
1517 branch_target_load_optimize (epilogue_completed
);
1521 }; // class pass_branch_target_load_optimize1
1526 make_pass_branch_target_load_optimize1 (gcc::context
*ctxt
)
1528 return new pass_branch_target_load_optimize1 (ctxt
);
1534 const pass_data pass_data_branch_target_load_optimize2
=
1536 RTL_PASS
, /* type */
1538 OPTGROUP_NONE
, /* optinfo_flags */
1539 TV_NONE
, /* tv_id */
1540 0, /* properties_required */
1541 0, /* properties_provided */
1542 0, /* properties_destroyed */
1543 0, /* todo_flags_start */
1544 0, /* todo_flags_finish */
1547 class pass_branch_target_load_optimize2
: public rtl_opt_pass
1550 pass_branch_target_load_optimize2 (gcc::context
*ctxt
)
1551 : rtl_opt_pass (pass_data_branch_target_load_optimize2
, ctxt
)
1554 /* opt_pass methods: */
1555 virtual bool gate (function
*)
1557 return (optimize
> 0 && flag_branch_target_load_optimize2
);
1560 virtual unsigned int execute (function
*);
1562 }; // class pass_branch_target_load_optimize2
1565 pass_branch_target_load_optimize2::execute (function
*)
1567 static int warned
= 0;
1569 /* Leave this a warning for now so that it is possible to experiment
1570 with running this pass twice. In 3.6, we should either make this
1571 an error, or use separate dump files. */
1572 if (flag_branch_target_load_optimize
1573 && flag_branch_target_load_optimize2
1576 warning (0, "branch target register load optimization is not intended "
1582 branch_target_load_optimize (epilogue_completed
);
1589 make_pass_branch_target_load_optimize2 (gcc::context
*ctxt
)
1591 return new pass_branch_target_load_optimize2 (ctxt
);