1 /* Scanning of rtl for dataflow analysis.
3 Free Software Foundation, Inc.
4 Contributed by Kenneth Zadeck (zadeck@naturalbridge.com).
6 This file is part of GCC.
8 GCC is free software; you can redistribute it and/or modify it under
9 the terms of the GNU General Public License as published by the Free
10 Software Foundation; either version 3, or (at your option) any later
13 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
14 WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING3. If not see
20 <http://www.gnu.org/licenses/>. */
25 #include "coretypes.h"
33 #include "hard-reg-set.h"
34 #include "basic-block.h"
39 struct regstat_n_sets_and_refs_t
*regstat_n_sets_and_refs
;
40 struct regstat_n_sets_and_refs_t
*regstat_n_sets_and_refs
;
42 /*----------------------------------------------------------------------------
43 REG_N_SETS and REG_N_REFS.
44 ----------------------------------------------------------------------------*/
46 /* If a pass need to change these values in some magical way or or the
47 pass needs to have accurate values for these and is not using
48 incremental df scanning, then it should use REG_N_SETS and
49 REG_N_USES. If the pass is doing incremental scanning then it
50 should be getting the info from DF_REG_DEF_COUNT and
54 regstat_init_n_sets_and_refs (void)
57 unsigned int max_regno
= max_reg_num ();
59 timevar_push (TV_REG_STATS
);
61 gcc_assert (!regstat_n_sets_and_refs
);
63 regstat_n_sets_and_refs
= XNEWVEC (struct regstat_n_sets_and_refs_t
, max_regno
);
65 for (i
= 0; i
< max_regno
; i
++)
67 SET_REG_N_SETS (i
, DF_REG_DEF_COUNT (i
));
68 SET_REG_N_REFS (i
, DF_REG_USE_COUNT (i
) + REG_N_SETS (i
));
70 timevar_pop (TV_REG_STATS
);
75 /* Free the array that holds the REG_N_SETS and REG_N_REFS. */
78 regstat_free_n_sets_and_refs (void)
80 gcc_assert (regstat_n_sets_and_refs
);
81 free (regstat_n_sets_and_refs
);
82 regstat_n_sets_and_refs
= NULL
;
86 /*----------------------------------------------------------------------------
89 Process REG_N_DEATHS, REG_LIVE_LENGTH, REG_N_CALLS_CROSSED,
90 REG_N_THROWING_CALLS_CROSSED and REG_BASIC_BLOCK.
92 ----------------------------------------------------------------------------*/
94 static bitmap setjmp_crosses
;
95 struct reg_info_t
*reg_info_p
;
97 /* The number allocated elements of reg_info_p. */
98 size_t reg_info_p_size
;
100 /* Compute register info: lifetime, bb, and number of defs and uses
101 for basic block BB. The three bitvectors are scratch regs used
105 regstat_bb_compute_ri (unsigned int bb_index
,
106 bitmap live
, bitmap do_not_gen
, bitmap artificial_uses
,
107 bitmap local_live
, bitmap local_processed
)
109 basic_block bb
= BASIC_BLOCK (bb_index
);
117 bitmap_copy (live
, df_get_live_out (bb
));
118 bitmap_clear (artificial_uses
);
120 /* Process the regs live at the end of the block. Mark them as
121 not local to any one basic block. */
122 EXECUTE_IF_SET_IN_BITMAP (live
, 0, regno
, bi
)
123 REG_BASIC_BLOCK (regno
) = REG_BLOCK_GLOBAL
;
125 /* Process the artificial defs and uses at the bottom of the block
126 to begin processing. */
127 for (def_rec
= df_get_artificial_defs (bb_index
); *def_rec
; def_rec
++)
129 df_ref def
= *def_rec
;
130 if ((DF_REF_FLAGS (def
) & DF_REF_AT_TOP
) == 0)
131 bitmap_clear_bit (live
, DF_REF_REGNO (def
));
134 for (use_rec
= df_get_artificial_uses (bb_index
); *use_rec
; use_rec
++)
136 df_ref use
= *use_rec
;
137 if ((DF_REF_FLAGS (use
) & DF_REF_AT_TOP
) == 0)
139 regno
= DF_REF_REGNO (use
);
140 bitmap_set_bit (live
, regno
);
141 bitmap_set_bit (artificial_uses
, regno
);
145 FOR_BB_INSNS_REVERSE (bb
, insn
)
147 unsigned int uid
= INSN_UID (insn
);
150 struct df_mw_hardreg
**mws_rec
;
156 /* Increment the live_length for all of the registers that
157 are are referenced in this block and live at this
159 EXECUTE_IF_SET_IN_BITMAP (local_live
, 0, regno
, bi
)
161 REG_LIVE_LENGTH (regno
)++;
165 bitmap_clear (do_not_gen
);
167 link
= REG_NOTES (insn
);
170 if (REG_NOTE_KIND (link
) == REG_DEAD
)
171 REG_N_DEATHS(REGNO (XEXP (link
, 0)))++;
172 link
= XEXP (link
, 1);
175 /* Process the defs. */
178 bool can_throw
= can_throw_internal (insn
);
179 bool set_jump
= (find_reg_note (insn
, REG_SETJMP
, NULL
) != NULL
);
180 EXECUTE_IF_SET_IN_BITMAP (live
, 0, regno
, bi
)
182 REG_N_CALLS_CROSSED (regno
)++;
183 REG_FREQ_CALLS_CROSSED (regno
) += REG_FREQ_FROM_BB (bb
);
185 REG_N_THROWING_CALLS_CROSSED (regno
)++;
187 /* We have a problem with any pseudoreg that lives
188 across the setjmp. ANSI says that if a user variable
189 does not change in value between the setjmp and the
190 longjmp, then the longjmp preserves it. This
191 includes longjmp from a place where the pseudo
192 appears dead. (In principle, the value still exists
193 if it is in scope.) If the pseudo goes in a hard
194 reg, some other value may occupy that hard reg where
195 this pseudo is dead, thus clobbering the pseudo.
196 Conclusion: such a pseudo must not go in a hard
199 bitmap_set_bit (setjmp_crosses
, regno
);
203 /* We only care about real sets for calls. Clobbers only
204 may clobbers cannot be depended on. */
205 for (mws_rec
= DF_INSN_UID_MWS (uid
); *mws_rec
; mws_rec
++)
207 struct df_mw_hardreg
*mws
= *mws_rec
;
208 if (DF_MWS_REG_DEF_P (mws
))
210 bool all_dead
= true;
213 for (r
=mws
->start_regno
; r
<= mws
->end_regno
; r
++)
214 if ((bitmap_bit_p (live
, r
))
215 || bitmap_bit_p (artificial_uses
, r
))
223 unsigned int regno
= mws
->start_regno
;
224 bitmap_set_bit (do_not_gen
, regno
);
225 /* Only do this if the value is totally dead. */
226 REG_LIVE_LENGTH (regno
)++;
231 /* All of the defs except the return value are some sort of
232 clobber. This code is for the return. */
233 for (def_rec
= DF_INSN_UID_DEFS (uid
); *def_rec
; def_rec
++)
235 df_ref def
= *def_rec
;
237 || (!(DF_REF_FLAGS (def
) & (DF_REF_MUST_CLOBBER
| DF_REF_MAY_CLOBBER
))))
239 unsigned int dregno
= DF_REF_REGNO (def
);
241 if (bitmap_bit_p (live
, dregno
))
243 /* If we have seen this regno, then it has already been
244 processed correctly with the per insn increment. If we
245 have not seen it we need to add the length from here to
246 the end of the block to the live length. */
247 if (bitmap_bit_p (local_processed
, dregno
))
249 if (!(DF_REF_FLAGS (def
) & (DF_REF_PARTIAL
| DF_REF_CONDITIONAL
)))
250 bitmap_clear_bit (local_live
, dregno
);
254 bitmap_set_bit (local_processed
, dregno
);
255 REG_LIVE_LENGTH (dregno
) += luid
;
258 else if ((!(DF_REF_FLAGS (def
) & DF_REF_MW_HARDREG
))
259 && (!bitmap_bit_p (artificial_uses
, dregno
)))
261 REG_LIVE_LENGTH (dregno
)++;
264 if (dregno
>= FIRST_PSEUDO_REGISTER
)
266 REG_FREQ (dregno
) += REG_FREQ_FROM_BB (bb
);
267 if (REG_BASIC_BLOCK (dregno
) == REG_BLOCK_UNKNOWN
)
268 REG_BASIC_BLOCK (dregno
) = bb
->index
;
269 else if (REG_BASIC_BLOCK (dregno
) != bb
->index
)
270 REG_BASIC_BLOCK (dregno
) = REG_BLOCK_GLOBAL
;
273 if (!(DF_REF_FLAGS (def
) & (DF_REF_MUST_CLOBBER
+ DF_REF_MAY_CLOBBER
)))
274 bitmap_set_bit (do_not_gen
, dregno
);
276 /* Kill this register if it is not a subreg store or conditional store. */
277 if (!(DF_REF_FLAGS (def
) & (DF_REF_PARTIAL
| DF_REF_CONDITIONAL
)))
278 bitmap_clear_bit (live
, dregno
);
282 for (use_rec
= DF_INSN_UID_USES (uid
); *use_rec
; use_rec
++)
284 df_ref use
= *use_rec
;
285 unsigned int uregno
= DF_REF_REGNO (use
);
287 if (uregno
>= FIRST_PSEUDO_REGISTER
)
289 REG_FREQ (uregno
) += REG_FREQ_FROM_BB (bb
);
290 if (REG_BASIC_BLOCK (uregno
) == REG_BLOCK_UNKNOWN
)
291 REG_BASIC_BLOCK (uregno
) = bb
->index
;
292 else if (REG_BASIC_BLOCK (uregno
) != bb
->index
)
293 REG_BASIC_BLOCK (uregno
) = REG_BLOCK_GLOBAL
;
296 if (!bitmap_bit_p (live
, uregno
))
298 /* This register is now live. */
299 bitmap_set_bit (live
, uregno
);
301 /* If we have seen this regno, then it has already been
302 processed correctly with the per insn increment. If
303 we have not seen it we set the bit so that begins to
304 get processed locally. Note that we don't even get
305 here if the variable was live at the end of the block
306 since just a ref inside the block does not effect the
308 REG_LIVE_LENGTH (uregno
) ++;
309 bitmap_set_bit (local_live
, uregno
);
310 bitmap_set_bit (local_processed
, uregno
);
315 /* Add the length of the block to all of the registers that were not
316 referenced, but still live in this block. */
317 bitmap_and_compl_into (live
, local_processed
);
318 EXECUTE_IF_SET_IN_BITMAP (live
, 0, regno
, bi
)
319 REG_LIVE_LENGTH (regno
) += luid
;
321 bitmap_clear (local_processed
);
322 bitmap_clear (local_live
);
326 /* Compute register info: lifetime, bb, and number of defs and uses. */
328 regstat_compute_ri (void)
331 bitmap live
= BITMAP_ALLOC (&df_bitmap_obstack
);
332 bitmap do_not_gen
= BITMAP_ALLOC (&df_bitmap_obstack
);
333 bitmap artificial_uses
= BITMAP_ALLOC (&df_bitmap_obstack
);
334 bitmap local_live
= BITMAP_ALLOC (&df_bitmap_obstack
);
335 bitmap local_processed
= BITMAP_ALLOC (&df_bitmap_obstack
);
339 /* Initialize everything. */
341 gcc_assert (!reg_info_p
);
343 timevar_push (TV_REG_STATS
);
344 setjmp_crosses
= BITMAP_ALLOC (&df_bitmap_obstack
);
345 max_regno
= max_reg_num ();
346 reg_info_p_size
= max_regno
;
347 reg_info_p
= XCNEWVEC (struct reg_info_t
, max_regno
);
351 regstat_bb_compute_ri (bb
->index
, live
, do_not_gen
, artificial_uses
,
352 local_live
, local_processed
);
356 BITMAP_FREE (do_not_gen
);
357 BITMAP_FREE (artificial_uses
);
359 /* See the setjmp comment in regstat_ri_bb_compute. */
360 EXECUTE_IF_SET_IN_BITMAP (setjmp_crosses
, FIRST_PSEUDO_REGISTER
, regno
, bi
)
362 REG_BASIC_BLOCK (regno
) = REG_BLOCK_UNKNOWN
;
363 REG_LIVE_LENGTH (regno
) = -1;
366 BITMAP_FREE (local_live
);
367 BITMAP_FREE (local_processed
);
368 timevar_pop (TV_REG_STATS
);
372 /* Free all storage associated with the problem. */
375 regstat_free_ri (void)
377 gcc_assert (reg_info_p
);
382 BITMAP_FREE (setjmp_crosses
);
386 /* Return a bitmap containing the set of registers that cross a setjmp.
387 The client should not change or delete this bitmap. */
390 regstat_get_setjmp_crosses (void)
392 return setjmp_crosses
;
395 /*----------------------------------------------------------------------------
396 Process REG_N_CALLS_CROSSED.
398 This is used by sched_deps. A good implementation of sched-deps
399 would really process the blocks directly rather than going through
400 lists of insns. If it did this, it could use the exact regs that
401 cross an individual call rather than using this info that merges
402 the info for all calls.
404 ----------------------------------------------------------------------------*/
408 /* Compute calls crossed for BB. Live is a scratch bitvector. */
411 regstat_bb_compute_calls_crossed (unsigned int bb_index
, bitmap live
)
413 basic_block bb
= BASIC_BLOCK (bb_index
);
418 bitmap_copy (live
, df_get_live_out (bb
));
420 /* Process the artificial defs and uses at the bottom of the block
421 to begin processing. */
422 for (def_rec
= df_get_artificial_defs (bb_index
); *def_rec
; def_rec
++)
424 df_ref def
= *def_rec
;
425 if ((DF_REF_FLAGS (def
) & DF_REF_AT_TOP
) == 0)
426 bitmap_clear_bit (live
, DF_REF_REGNO (def
));
429 for (use_rec
= df_get_artificial_uses (bb_index
); *use_rec
; use_rec
++)
431 df_ref use
= *use_rec
;
432 if ((DF_REF_FLAGS (use
) & DF_REF_AT_TOP
) == 0)
433 bitmap_set_bit (live
, DF_REF_REGNO (use
));
436 FOR_BB_INSNS_REVERSE (bb
, insn
)
438 unsigned int uid
= INSN_UID (insn
);
444 /* Process the defs. */
448 EXECUTE_IF_SET_IN_BITMAP (live
, 0, regno
, bi
)
450 REG_N_CALLS_CROSSED (regno
)++;
451 REG_FREQ_CALLS_CROSSED (regno
) += REG_FREQ_FROM_BB (bb
);
455 /* All of the defs except the return value are some sort of
456 clobber. This code is for the return. */
457 for (def_rec
= DF_INSN_UID_DEFS (uid
); *def_rec
; def_rec
++)
459 df_ref def
= *def_rec
;
461 || (!(DF_REF_FLAGS (def
) & (DF_REF_MUST_CLOBBER
| DF_REF_MAY_CLOBBER
))))
463 /* Kill this register if it is not a subreg store or conditional store. */
464 if (!(DF_REF_FLAGS (def
) & (DF_REF_PARTIAL
| DF_REF_CONDITIONAL
)))
465 bitmap_clear_bit (live
, DF_REF_REGNO (def
));
469 for (use_rec
= DF_INSN_UID_USES (uid
); *use_rec
; use_rec
++)
471 df_ref use
= *use_rec
;
472 bitmap_set_bit (live
, DF_REF_REGNO (use
));
478 /* Compute register info: lifetime, bb, and number of defs and uses. */
480 regstat_compute_calls_crossed (void)
483 bitmap live
= BITMAP_ALLOC (&df_bitmap_obstack
);
485 /* Initialize everything. */
486 gcc_assert (!reg_info_p
);
488 timevar_push (TV_REG_STATS
);
489 max_regno
= max_reg_num ();
490 reg_info_p_size
= max_regno
;
491 reg_info_p
= XCNEWVEC (struct reg_info_t
, max_regno
);
495 regstat_bb_compute_calls_crossed (bb
->index
, live
);
499 timevar_pop (TV_REG_STATS
);
503 /* Free all storage associated with the problem. */
506 regstat_free_calls_crossed (void)
508 gcc_assert (reg_info_p
);