1 /* Scanning of rtl for dataflow analysis.
2 Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007
3 Free Software Foundation, Inc.
4 Originally contributed by Michael P. Hayes
5 (m.hayes@elec.canterbury.ac.nz, mhayes@redhat.com)
6 Major rewrite contributed by Danny Berlin (dberlin@dberlin.org)
7 and Kenneth Zadeck (zadeck@naturalbridge.com).
9 This file is part of GCC.
11 GCC is free software; you can redistribute it and/or modify it under
12 the terms of the GNU General Public License as published by the Free
13 Software Foundation; either version 3, or (at your option) any later
16 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
17 WARRANTY; without even the implied warranty of MERCHANTABILITY or
18 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
21 You should have received a copy of the GNU General Public License
22 along with GCC; see the file COPYING3. If not see
23 <http://www.gnu.org/licenses/>. */
27 #include "coretypes.h"
31 #include "insn-config.h"
36 #include "alloc-pool.h"
38 #include "hard-reg-set.h"
39 #include "basic-block.h"
45 #include "target-def.h"
47 #include "tree-pass.h"
50 #define HAVE_epilogue 0
53 #define HAVE_prologue 0
55 #ifndef HAVE_sibcall_epilogue
56 #define HAVE_sibcall_epilogue 0
60 #define EPILOGUE_USES(REGNO) 0
63 /* The bitmap_obstack is used to hold some static variables that
64 should not be reset after each function is compiled. */
66 static bitmap_obstack persistent_obstack
;
68 /* The set of hard registers in eliminables[i].from. */
70 static HARD_REG_SET elim_reg_set
;
72 /* This is a bitmap copy of regs_invalidated_by_call so that we can
73 easily add it into bitmaps, etc. */
75 bitmap df_invalidated_by_call
= NULL
;
77 /* Initialize ur_in and ur_out as if all hard registers were partially
80 struct df_collection_rec
82 struct df_ref
** def_vec
;
83 unsigned int next_def
;
84 struct df_ref
** use_vec
;
85 unsigned int next_use
;
86 struct df_ref
** eq_use_vec
;
87 unsigned int next_eq_use
;
88 struct df_mw_hardreg
**mw_vec
;
92 static struct df_ref
* df_null_ref_rec
[1];
93 static struct df_mw_hardreg
* df_null_mw_rec
[1];
95 static void df_ref_record (struct df_collection_rec
*,
97 basic_block
, rtx
, enum df_ref_type
,
99 static void df_def_record_1 (struct df_collection_rec
*,
100 rtx
, basic_block
, rtx
,
102 static void df_defs_record (struct df_collection_rec
*,
103 rtx
, basic_block
, rtx
,
105 static void df_uses_record (struct df_collection_rec
*,
106 rtx
*, enum df_ref_type
,
107 basic_block
, rtx
, enum df_ref_flags
);
109 static struct df_ref
*df_ref_create_structure (struct df_collection_rec
*, rtx
, rtx
*,
110 basic_block
, rtx
, enum df_ref_type
,
113 static void df_insn_refs_collect (struct df_collection_rec
*,
115 static void df_canonize_collection_rec (struct df_collection_rec
*);
117 static void df_get_regular_block_artificial_uses (bitmap
);
118 static void df_get_eh_block_artificial_uses (bitmap
);
120 static void df_record_entry_block_defs (bitmap
);
121 static void df_record_exit_block_uses (bitmap
);
122 static void df_get_exit_block_use_set (bitmap
);
123 static void df_get_entry_block_def_set (bitmap
);
124 static void df_grow_ref_info (struct df_ref_info
*, unsigned int);
125 static void df_ref_chain_delete_du_chain (struct df_ref
**);
126 static void df_ref_chain_delete (struct df_ref
**);
128 static void df_refs_add_to_chains (struct df_collection_rec
*,
131 static bool df_insn_refs_verify (struct df_collection_rec
*, basic_block
, rtx
, bool);
132 static void df_entry_block_defs_collect (struct df_collection_rec
*, bitmap
);
133 static void df_exit_block_uses_collect (struct df_collection_rec
*, bitmap
);
134 static void df_install_ref (struct df_ref
*, struct df_reg_info
*,
135 struct df_ref_info
*, bool);
137 static int df_ref_compare (const void *, const void *);
138 static int df_mw_compare (const void *, const void *);
140 /* Indexed by hardware reg number, is true if that register is ever
141 used in the current function.
143 In df-scan.c, this is set up to record the hard regs used
144 explicitly. Reload adds in the hard regs used for holding pseudo
145 regs. Final uses it to generate the code in the function prologue
146 and epilogue to save and restore registers as needed. */
148 static bool regs_ever_live
[FIRST_PSEUDO_REGISTER
];
150 /*----------------------------------------------------------------------------
151 SCANNING DATAFLOW PROBLEM
153 There are several ways in which scanning looks just like the other
154 dataflow problems. It shares the all the mechanisms for local info
155 as well as basic block info. Where it differs is when and how often
156 it gets run. It also has no need for the iterative solver.
157 ----------------------------------------------------------------------------*/
159 /* Problem data for the scanning dataflow function. */
160 struct df_scan_problem_data
163 alloc_pool insn_pool
;
165 alloc_pool mw_reg_pool
;
166 alloc_pool mw_link_pool
;
167 bitmap_obstack reg_bitmaps
;
168 bitmap_obstack insn_bitmaps
;
171 typedef struct df_scan_bb_info
*df_scan_bb_info_t
;
174 df_scan_free_internal (void)
176 struct df_scan_problem_data
*problem_data
177 = (struct df_scan_problem_data
*) df_scan
->problem_data
;
179 free (df
->def_info
.refs
);
180 free (df
->def_info
.begin
);
181 free (df
->def_info
.count
);
182 memset (&df
->def_info
, 0, (sizeof (struct df_ref_info
)));
184 free (df
->use_info
.refs
);
185 free (df
->use_info
.begin
);
186 free (df
->use_info
.count
);
187 memset (&df
->use_info
, 0, (sizeof (struct df_ref_info
)));
193 free (df
->eq_use_regs
);
194 df
->eq_use_regs
= NULL
;
202 free (df_scan
->block_info
);
203 df_scan
->block_info
= NULL
;
204 df_scan
->block_info_size
= 0;
206 BITMAP_FREE (df
->hardware_regs_used
);
207 BITMAP_FREE (df
->regular_block_artificial_uses
);
208 BITMAP_FREE (df
->eh_block_artificial_uses
);
209 BITMAP_FREE (df
->entry_block_defs
);
210 BITMAP_FREE (df
->exit_block_uses
);
211 BITMAP_FREE (df
->insns_to_delete
);
212 BITMAP_FREE (df
->insns_to_rescan
);
213 BITMAP_FREE (df
->insns_to_notes_rescan
);
215 free_alloc_pool (df_scan
->block_pool
);
216 free_alloc_pool (problem_data
->ref_pool
);
217 free_alloc_pool (problem_data
->insn_pool
);
218 free_alloc_pool (problem_data
->reg_pool
);
219 free_alloc_pool (problem_data
->mw_reg_pool
);
220 free_alloc_pool (problem_data
->mw_link_pool
);
221 bitmap_obstack_release (&problem_data
->reg_bitmaps
);
222 bitmap_obstack_release (&problem_data
->insn_bitmaps
);
223 free (df_scan
->problem_data
);
227 /* Set basic block info. */
230 df_scan_set_bb_info (unsigned int index
,
231 struct df_scan_bb_info
*bb_info
)
233 gcc_assert (df_scan
);
234 df_grow_bb_info (df_scan
);
235 df_scan
->block_info
[index
] = (void *) bb_info
;
239 /* Free basic block info. */
242 df_scan_free_bb_info (basic_block bb
, void *vbb_info
)
244 struct df_scan_bb_info
*bb_info
= (struct df_scan_bb_info
*) vbb_info
;
245 unsigned int bb_index
= bb
->index
;
249 FOR_BB_INSNS (bb
, insn
)
252 /* Record defs within INSN. */
253 df_insn_delete (bb
, INSN_UID (insn
));
256 if (bb_index
< df_scan
->block_info_size
)
257 bb_info
= df_scan_get_bb_info (bb_index
);
259 /* Get rid of any artificial uses or defs. */
260 df_ref_chain_delete_du_chain (bb_info
->artificial_defs
);
261 df_ref_chain_delete_du_chain (bb_info
->artificial_uses
);
262 df_ref_chain_delete (bb_info
->artificial_defs
);
263 df_ref_chain_delete (bb_info
->artificial_uses
);
264 bb_info
->artificial_defs
= NULL
;
265 bb_info
->artificial_uses
= NULL
;
266 pool_free (df_scan
->block_pool
, bb_info
);
271 /* Allocate the problem data for the scanning problem. This should be
272 called when the problem is created or when the entire function is to
275 df_scan_alloc (bitmap all_blocks ATTRIBUTE_UNUSED
)
277 struct df_scan_problem_data
*problem_data
;
278 unsigned int insn_num
= get_max_uid () + 1;
279 unsigned int block_size
= 400;
282 /* Given the number of pools, this is really faster than tearing
284 if (df_scan
->problem_data
)
285 df_scan_free_internal ();
288 = create_alloc_pool ("df_scan_block pool",
289 sizeof (struct df_scan_bb_info
),
292 problem_data
= XNEW (struct df_scan_problem_data
);
293 df_scan
->problem_data
= problem_data
;
294 df_scan
->computed
= true;
296 problem_data
->ref_pool
297 = create_alloc_pool ("df_scan_ref pool",
298 sizeof (struct df_ref
), block_size
);
299 problem_data
->insn_pool
300 = create_alloc_pool ("df_scan_insn pool",
301 sizeof (struct df_insn_info
), block_size
);
302 problem_data
->reg_pool
303 = create_alloc_pool ("df_scan_reg pool",
304 sizeof (struct df_reg_info
), block_size
);
305 problem_data
->mw_reg_pool
306 = create_alloc_pool ("df_scan_mw_reg pool",
307 sizeof (struct df_mw_hardreg
), block_size
);
308 problem_data
->mw_link_pool
309 = create_alloc_pool ("df_scan_mw_link pool",
310 sizeof (struct df_link
), block_size
);
312 bitmap_obstack_initialize (&problem_data
->reg_bitmaps
);
313 bitmap_obstack_initialize (&problem_data
->insn_bitmaps
);
315 insn_num
+= insn_num
/ 4;
318 df_grow_insn_info ();
319 df_grow_bb_info (df_scan
);
323 unsigned int bb_index
= bb
->index
;
324 struct df_scan_bb_info
*bb_info
= df_scan_get_bb_info (bb_index
);
327 bb_info
= (struct df_scan_bb_info
*) pool_alloc (df_scan
->block_pool
);
328 df_scan_set_bb_info (bb_index
, bb_info
);
330 bb_info
->artificial_defs
= NULL
;
331 bb_info
->artificial_uses
= NULL
;
334 df
->hardware_regs_used
= BITMAP_ALLOC (&problem_data
->reg_bitmaps
);
335 df
->regular_block_artificial_uses
= BITMAP_ALLOC (&problem_data
->reg_bitmaps
);
336 df
->eh_block_artificial_uses
= BITMAP_ALLOC (&problem_data
->reg_bitmaps
);
337 df
->entry_block_defs
= BITMAP_ALLOC (&problem_data
->reg_bitmaps
);
338 df
->exit_block_uses
= BITMAP_ALLOC (&problem_data
->reg_bitmaps
);
339 df
->insns_to_delete
= BITMAP_ALLOC (&problem_data
->insn_bitmaps
);
340 df
->insns_to_rescan
= BITMAP_ALLOC (&problem_data
->insn_bitmaps
);
341 df
->insns_to_notes_rescan
= BITMAP_ALLOC (&problem_data
->insn_bitmaps
);
342 df_scan
->optional_p
= false;
346 /* Free all of the data associated with the scan problem. */
351 if (df_scan
->problem_data
)
352 df_scan_free_internal ();
354 if (df
->blocks_to_analyze
)
356 BITMAP_FREE (df
->blocks_to_analyze
);
357 df
->blocks_to_analyze
= NULL
;
363 /* Dump the preamble for DF_SCAN dump. */
365 df_scan_start_dump (FILE *file ATTRIBUTE_UNUSED
)
369 fprintf (file
, ";; invalidated by call \t");
370 df_print_regset (file
, df_invalidated_by_call
);
371 fprintf (file
, ";; hardware regs used \t");
372 df_print_regset (file
, df
->hardware_regs_used
);
373 fprintf (file
, ";; regular block artificial uses \t");
374 df_print_regset (file
, df
->regular_block_artificial_uses
);
375 fprintf (file
, ";; eh block artificial uses \t");
376 df_print_regset (file
, df
->eh_block_artificial_uses
);
377 fprintf (file
, ";; entry block defs \t");
378 df_print_regset (file
, df
->entry_block_defs
);
379 fprintf (file
, ";; exit block uses \t");
380 df_print_regset (file
, df
->exit_block_uses
);
381 fprintf (file
, ";; regs ever live \t");
382 for (i
= 0; i
< FIRST_PSEUDO_REGISTER
; i
++)
383 if (df_regs_ever_live_p (i
))
384 fprintf (file
, " %d[%s]", i
, reg_names
[i
]);
386 fprintf (file
, "\n");
389 /* Dump the bb_info for a given basic block. */
391 df_scan_start_block (basic_block bb
, FILE *file
)
393 struct df_scan_bb_info
*bb_info
394 = df_scan_get_bb_info (bb
->index
);
398 fprintf (file
, ";; bb %d artificial_defs: ", bb
->index
);
399 df_refs_chain_dump (bb_info
->artificial_defs
, true, file
);
400 fprintf (file
, "\n;; bb %d artificial_uses: ", bb
->index
);
401 df_refs_chain_dump (bb_info
->artificial_uses
, true, file
);
402 fprintf (file
, "\n");
407 FOR_BB_INSNS (bb
, insn
)
409 df_insn_debug (insn
, false, file
);
414 static struct df_problem problem_SCAN
=
416 DF_SCAN
, /* Problem id. */
417 DF_NONE
, /* Direction. */
418 df_scan_alloc
, /* Allocate the problem specific data. */
419 NULL
, /* Reset global information. */
420 df_scan_free_bb_info
, /* Free basic block info. */
421 NULL
, /* Local compute function. */
422 NULL
, /* Init the solution specific data. */
423 NULL
, /* Iterative solver. */
424 NULL
, /* Confluence operator 0. */
425 NULL
, /* Confluence operator n. */
426 NULL
, /* Transfer function. */
427 NULL
, /* Finalize function. */
428 df_scan_free
, /* Free all of the problem information. */
429 NULL
, /* Remove this problem from the stack of dataflow problems. */
430 df_scan_start_dump
, /* Debugging. */
431 df_scan_start_block
, /* Debugging start block. */
432 NULL
, /* Debugging end block. */
433 NULL
, /* Incremental solution verify start. */
434 NULL
, /* Incremental solution verify end. */
435 NULL
, /* Dependent problem. */
436 TV_DF_SCAN
, /* Timing variable. */
437 false /* Reset blocks on dropping out of blocks_to_analyze. */
441 /* Create a new DATAFLOW instance and add it to an existing instance
442 of DF. The returned structure is what is used to get at the
446 df_scan_add_problem (void)
448 df_add_problem (&problem_SCAN
);
452 /*----------------------------------------------------------------------------
453 Storage Allocation Utilities
454 ----------------------------------------------------------------------------*/
457 /* First, grow the reg_info information. If the current size is less than
458 the number of psuedos, grow to 25% more than the number of
461 Second, assure that all of the slots up to max_reg_num have been
462 filled with reg_info structures. */
465 df_grow_reg_info (void)
467 unsigned int max_reg
= max_reg_num ();
468 unsigned int new_size
= max_reg
;
469 struct df_scan_problem_data
*problem_data
470 = (struct df_scan_problem_data
*) df_scan
->problem_data
;
473 if (df
->regs_size
< new_size
)
475 new_size
+= new_size
/ 4;
476 df
->def_regs
= xrealloc (df
->def_regs
,
477 new_size
*sizeof (struct df_reg_info
*));
478 df
->use_regs
= xrealloc (df
->use_regs
,
479 new_size
*sizeof (struct df_reg_info
*));
480 df
->eq_use_regs
= xrealloc (df
->eq_use_regs
,
481 new_size
*sizeof (struct df_reg_info
*));
482 df
->def_info
.begin
= xrealloc (df
->def_info
.begin
,
483 new_size
*sizeof (int));
484 df
->def_info
.count
= xrealloc (df
->def_info
.count
,
485 new_size
*sizeof (int));
486 df
->use_info
.begin
= xrealloc (df
->use_info
.begin
,
487 new_size
*sizeof (int));
488 df
->use_info
.count
= xrealloc (df
->use_info
.count
,
489 new_size
*sizeof (int));
490 df
->regs_size
= new_size
;
493 for (i
= df
->regs_inited
; i
< max_reg
; i
++)
495 struct df_reg_info
*reg_info
;
497 reg_info
= pool_alloc (problem_data
->reg_pool
);
498 memset (reg_info
, 0, sizeof (struct df_reg_info
));
499 df
->def_regs
[i
] = reg_info
;
500 reg_info
= pool_alloc (problem_data
->reg_pool
);
501 memset (reg_info
, 0, sizeof (struct df_reg_info
));
502 df
->use_regs
[i
] = reg_info
;
503 reg_info
= pool_alloc (problem_data
->reg_pool
);
504 memset (reg_info
, 0, sizeof (struct df_reg_info
));
505 df
->eq_use_regs
[i
] = reg_info
;
506 df
->def_info
.begin
[i
] = 0;
507 df
->def_info
.count
[i
] = 0;
508 df
->use_info
.begin
[i
] = 0;
509 df
->use_info
.count
[i
] = 0;
512 df
->regs_inited
= max_reg
;
516 /* Grow the ref information. */
519 df_grow_ref_info (struct df_ref_info
*ref_info
, unsigned int new_size
)
521 if (ref_info
->refs_size
< new_size
)
523 ref_info
->refs
= xrealloc (ref_info
->refs
,
524 new_size
*sizeof (struct df_ref
*));
525 memset (ref_info
->refs
+ ref_info
->refs_size
, 0,
526 (new_size
- ref_info
->refs_size
) *sizeof (struct df_ref
*));
527 ref_info
->refs_size
= new_size
;
532 /* Check and grow the ref information if necessary. This routine
533 guarantees total_size + BITMAP_ADDEND amount of entries in refs
534 array. It updates ref_info->refs_size only and does not change
535 ref_info->total_size. */
538 df_check_and_grow_ref_info (struct df_ref_info
*ref_info
,
539 unsigned bitmap_addend
)
541 if (ref_info
->refs_size
< ref_info
->total_size
+ bitmap_addend
)
543 int new_size
= ref_info
->total_size
+ bitmap_addend
;
544 new_size
+= ref_info
->total_size
/ 4;
545 df_grow_ref_info (ref_info
, new_size
);
550 /* Grow the ref information. If the current size is less than the
551 number of instructions, grow to 25% more than the number of
555 df_grow_insn_info (void)
557 unsigned int new_size
= get_max_uid () + 1;
558 if (DF_INSN_SIZE () < new_size
)
560 new_size
+= new_size
/ 4;
561 df
->insns
= xrealloc (df
->insns
,
562 new_size
*sizeof (struct df_insn_info
*));
563 memset (df
->insns
+ df
->insns_size
, 0,
564 (new_size
- DF_INSN_SIZE ()) *sizeof (struct df_insn_info
*));
565 DF_INSN_SIZE () = new_size
;
572 /*----------------------------------------------------------------------------
573 PUBLIC INTERFACES FOR SMALL GRAIN CHANGES TO SCANNING.
574 ----------------------------------------------------------------------------*/
576 /* Rescan all of the block_to_analyze or all of the blocks in the
577 function if df_set_blocks if blocks_to_analyze is NULL; */
580 df_scan_blocks (void)
584 df
->def_info
.ref_order
= DF_REF_ORDER_NO_TABLE
;
585 df
->use_info
.ref_order
= DF_REF_ORDER_NO_TABLE
;
587 df_get_regular_block_artificial_uses (df
->regular_block_artificial_uses
);
588 df_get_eh_block_artificial_uses (df
->eh_block_artificial_uses
);
590 bitmap_ior_into (df
->eh_block_artificial_uses
,
591 df
->regular_block_artificial_uses
);
593 /* ENTRY and EXIT blocks have special defs/uses. */
594 df_get_entry_block_def_set (df
->entry_block_defs
);
595 df_record_entry_block_defs (df
->entry_block_defs
);
596 df_get_exit_block_use_set (df
->exit_block_uses
);
597 df_record_exit_block_uses (df
->exit_block_uses
);
598 df_set_bb_dirty (BASIC_BLOCK (ENTRY_BLOCK
));
599 df_set_bb_dirty (BASIC_BLOCK (EXIT_BLOCK
));
604 unsigned int bb_index
= bb
->index
;
605 df_bb_refs_record (bb_index
, true);
610 /* Create a new ref of type DF_REF_TYPE for register REG at address
611 LOC within INSN of BB. */
614 df_ref_create (rtx reg
, rtx
*loc
, rtx insn
,
616 enum df_ref_type ref_type
,
617 enum df_ref_flags ref_flags
)
620 struct df_reg_info
**reg_info
;
621 struct df_ref_info
*ref_info
;
622 struct df_ref
**ref_rec
;
623 struct df_ref
***ref_rec_ptr
;
624 unsigned int count
= 0;
629 /* You cannot hack artificial refs. */
631 ref
= df_ref_create_structure (NULL
, reg
, loc
, bb
, insn
,
632 ref_type
, ref_flags
);
634 if (DF_REF_TYPE (ref
) == DF_REF_REG_DEF
)
636 reg_info
= df
->def_regs
;
637 ref_info
= &df
->def_info
;
638 ref_rec_ptr
= &DF_INSN_DEFS (insn
);
639 add_to_table
= ref_info
->ref_order
!= DF_REF_ORDER_NO_TABLE
;
641 else if (DF_REF_FLAGS (ref
) & DF_REF_IN_NOTE
)
643 reg_info
= df
->eq_use_regs
;
644 ref_info
= &df
->use_info
;
645 ref_rec_ptr
= &DF_INSN_EQ_USES (insn
);
646 switch (ref_info
->ref_order
)
648 case DF_REF_ORDER_UNORDERED_WITH_NOTES
:
649 case DF_REF_ORDER_BY_REG_WITH_NOTES
:
650 case DF_REF_ORDER_BY_INSN_WITH_NOTES
:
654 add_to_table
= false;
660 reg_info
= df
->use_regs
;
661 ref_info
= &df
->use_info
;
662 ref_rec_ptr
= &DF_INSN_USES (insn
);
663 add_to_table
= ref_info
->ref_order
!= DF_REF_ORDER_NO_TABLE
;
666 /* Do not add if ref is not in the right blocks. */
667 if (add_to_table
&& df
->analyze_subset
)
668 add_to_table
= bitmap_bit_p (df
->blocks_to_analyze
, bb
->index
);
670 df_install_ref (ref
, reg_info
[DF_REF_REGNO (ref
)], ref_info
, add_to_table
);
673 switch (ref_info
->ref_order
)
675 case DF_REF_ORDER_UNORDERED_WITH_NOTES
:
676 case DF_REF_ORDER_BY_REG_WITH_NOTES
:
677 case DF_REF_ORDER_BY_INSN_WITH_NOTES
:
678 ref_info
->ref_order
= DF_REF_ORDER_UNORDERED_WITH_NOTES
;
681 ref_info
->ref_order
= DF_REF_ORDER_UNORDERED
;
685 ref_rec
= *ref_rec_ptr
;
692 ref_rec
= *ref_rec_ptr
;
695 ref_rec
= xrealloc (ref_rec
, (count
+2) * sizeof (struct df_ref
*));
696 *ref_rec_ptr
= ref_rec
;
697 ref_rec
[count
] = ref
;
698 ref_rec
[count
+1] = NULL
;
699 qsort (ref_rec
, count
+ 1, sizeof (struct df_ref
*), df_ref_compare
);
703 struct df_ref
**ref_rec
= XNEWVEC (struct df_ref
*, 2);
706 *ref_rec_ptr
= ref_rec
;
712 fprintf (dump_file
, "adding ref ");
713 df_ref_debug (ref
, dump_file
);
716 /* By adding the ref directly, df_insn_rescan my not find any
717 differences even though the block will have changed. So we need
718 to mark the block dirty ourselves. */
719 df_set_bb_dirty (bb
);
726 /*----------------------------------------------------------------------------
727 UTILITIES TO CREATE AND DESTROY REFS AND CHAINS.
728 ----------------------------------------------------------------------------*/
731 /* Unlink and delete REF at the reg_use, reg_eq_use or reg_def chain.
732 Also delete the def-use or use-def chain if it exists. */
735 df_reg_chain_unlink (struct df_ref
*ref
)
737 struct df_ref
*next
= DF_REF_NEXT_REG (ref
);
738 struct df_ref
*prev
= DF_REF_PREV_REG (ref
);
739 struct df_scan_problem_data
*problem_data
740 = (struct df_scan_problem_data
*) df_scan
->problem_data
;
741 int id
= DF_REF_ID (ref
);
742 struct df_reg_info
*reg_info
;
743 struct df_ref
**refs
= NULL
;
745 if (DF_REF_TYPE (ref
) == DF_REF_REG_DEF
)
747 reg_info
= DF_REG_DEF_GET (DF_REF_REGNO (ref
));
748 refs
= df
->def_info
.refs
;
752 if (DF_REF_FLAGS (ref
) & DF_REF_IN_NOTE
)
754 reg_info
= DF_REG_EQ_USE_GET (DF_REF_REGNO (ref
));
755 switch (df
->use_info
.ref_order
)
757 case DF_REF_ORDER_UNORDERED_WITH_NOTES
:
758 case DF_REF_ORDER_BY_REG_WITH_NOTES
:
759 case DF_REF_ORDER_BY_INSN_WITH_NOTES
:
760 refs
= df
->use_info
.refs
;
768 reg_info
= DF_REG_USE_GET (DF_REF_REGNO (ref
));
769 refs
= df
->use_info
.refs
;
775 if (df
->analyze_subset
)
777 if (bitmap_bit_p (df
->blocks_to_analyze
, DF_REF_BB (ref
)->index
))
784 /* Delete any def-use or use-def chains that start here. It is
785 possible that there is trash in this field. This happens for
786 insns that have been deleted when rescanning has been deferred
787 and the chain problem has also been deleted. The chain tear down
788 code skips deleted insns. */
789 if (df_chain
&& DF_REF_CHAIN (ref
))
790 df_chain_unlink (ref
);
793 if (DF_REF_FLAGS_IS_SET (ref
, DF_HARD_REG_LIVE
))
795 gcc_assert (DF_REF_REGNO (ref
) < FIRST_PSEUDO_REGISTER
);
796 df
->hard_regs_live_count
[DF_REF_REGNO (ref
)]--;
799 /* Unlink from the reg chain. If there is no prev, this is the
800 first of the list. If not, just join the next and prev. */
802 DF_REF_NEXT_REG (prev
) = next
;
805 gcc_assert (reg_info
->reg_chain
== ref
);
806 reg_info
->reg_chain
= next
;
809 DF_REF_PREV_REG (next
) = prev
;
811 pool_free (problem_data
->ref_pool
, ref
);
815 /* Remove REF from VEC. */
818 df_ref_compress_rec (struct df_ref
***vec_ptr
, struct df_ref
*ref
)
820 struct df_ref
**vec
= *vec_ptr
;
824 while (*vec
&& *vec
!= ref
)
836 *vec_ptr
= df_null_ref_rec
;
841 /* Unlink REF from all def-use/use-def chains, etc. */
844 df_ref_remove (struct df_ref
*ref
)
849 fprintf (dump_file
, "removing ref ");
850 df_ref_debug (ref
, dump_file
);
854 if (DF_REF_REG_DEF_P (ref
))
856 if (DF_REF_IS_ARTIFICIAL (ref
))
858 struct df_scan_bb_info
*bb_info
859 = df_scan_get_bb_info (DF_REF_BB (ref
)->index
);
860 df_ref_compress_rec (&bb_info
->artificial_defs
, ref
);
864 unsigned int uid
= DF_REF_INSN_UID (ref
);
865 struct df_insn_info
*insn_rec
= DF_INSN_UID_GET (uid
);
866 df_ref_compress_rec (&insn_rec
->defs
, ref
);
871 if (DF_REF_IS_ARTIFICIAL (ref
))
873 struct df_scan_bb_info
*bb_info
874 = df_scan_get_bb_info (DF_REF_BB (ref
)->index
);
875 df_ref_compress_rec (&bb_info
->artificial_uses
, ref
);
879 unsigned int uid
= DF_REF_INSN_UID (ref
);
880 struct df_insn_info
*insn_rec
= DF_INSN_UID_GET (uid
);
882 if (DF_REF_FLAGS (ref
) & DF_REF_IN_NOTE
)
883 df_ref_compress_rec (&insn_rec
->eq_uses
, ref
);
885 df_ref_compress_rec (&insn_rec
->uses
, ref
);
889 /* By deleting the ref directly, df_insn_rescan my not find any
890 differences even though the block will have changed. So we need
891 to mark the block dirty ourselves. */
892 df_set_bb_dirty (DF_REF_BB (ref
));
893 df_reg_chain_unlink (ref
);
897 /* Create the insn record for INSN. If there was one there, zero it
900 struct df_insn_info
*
901 df_insn_create_insn_record (rtx insn
)
903 struct df_scan_problem_data
*problem_data
904 = (struct df_scan_problem_data
*) df_scan
->problem_data
;
905 struct df_insn_info
*insn_rec
;
907 df_grow_insn_info ();
908 insn_rec
= DF_INSN_GET (insn
);
911 insn_rec
= pool_alloc (problem_data
->insn_pool
);
912 DF_INSN_SET (insn
, insn_rec
);
914 memset (insn_rec
, 0, sizeof (struct df_insn_info
));
915 insn_rec
->insn
= insn
;
920 /* Delete all du chain (DF_REF_CHAIN()) of all refs in the ref chain. */
923 df_ref_chain_delete_du_chain (struct df_ref
**ref_rec
)
927 struct df_ref
*ref
= *ref_rec
;
928 /* CHAIN is allocated by DF_CHAIN. So make sure to
929 pass df_scan instance for the problem. */
930 if (DF_REF_CHAIN (ref
))
931 df_chain_unlink (ref
);
937 /* Delete all refs in the ref chain. */
940 df_ref_chain_delete (struct df_ref
**ref_rec
)
942 struct df_ref
**start
= ref_rec
;
945 df_reg_chain_unlink (*ref_rec
);
949 /* If the list is empty, it has a special shared element that is not
956 /* Delete the hardreg chain. */
959 df_mw_hardreg_chain_delete (struct df_mw_hardreg
**hardregs
)
961 struct df_scan_problem_data
*problem_data
;
966 problem_data
= (struct df_scan_problem_data
*) df_scan
->problem_data
;
970 pool_free (problem_data
->mw_reg_pool
, *hardregs
);
976 /* Delete all of the refs information from INSN. BB must be passed in
977 except when called from df_process_deferred_rescans to mark the block
981 df_insn_delete (basic_block bb
, unsigned int uid
)
983 struct df_insn_info
*insn_info
= NULL
;
987 df_grow_bb_info (df_scan
);
990 /* The block must be marked as dirty now, rather than later as in
991 df_insn_rescan and df_notes_rescan because it may not be there at
992 rescanning time and the mark would blow up. */
994 df_set_bb_dirty (bb
);
996 insn_info
= DF_INSN_UID_SAFE_GET (uid
);
998 /* The client has deferred rescanning. */
999 if (df
->changeable_flags
& DF_DEFER_INSN_RESCAN
)
1003 bitmap_clear_bit (df
->insns_to_rescan
, uid
);
1004 bitmap_clear_bit (df
->insns_to_notes_rescan
, uid
);
1005 bitmap_set_bit (df
->insns_to_delete
, uid
);
1008 fprintf (dump_file
, "deferring deletion of insn with uid = %d.\n", uid
);
1013 fprintf (dump_file
, "deleting insn with uid = %d.\n", uid
);
1015 bitmap_clear_bit (df
->insns_to_delete
, uid
);
1016 bitmap_clear_bit (df
->insns_to_rescan
, uid
);
1017 bitmap_clear_bit (df
->insns_to_notes_rescan
, uid
);
1020 struct df_scan_problem_data
*problem_data
1021 = (struct df_scan_problem_data
*) df_scan
->problem_data
;
1023 /* In general, notes do not have the insn_info fields
1024 initialized. However, combine deletes insns by changing them
1025 to notes. How clever. So we cannot just check if it is a
1026 valid insn before short circuiting this code, we need to see
1027 if we actually initialized it. */
1028 if (insn_info
->defs
)
1030 df_mw_hardreg_chain_delete (insn_info
->mw_hardregs
);
1034 df_ref_chain_delete_du_chain (insn_info
->defs
);
1035 df_ref_chain_delete_du_chain (insn_info
->uses
);
1036 df_ref_chain_delete_du_chain (insn_info
->eq_uses
);
1039 df_ref_chain_delete (insn_info
->defs
);
1040 df_ref_chain_delete (insn_info
->uses
);
1041 df_ref_chain_delete (insn_info
->eq_uses
);
1043 pool_free (problem_data
->insn_pool
, insn_info
);
1044 DF_INSN_UID_SET (uid
, NULL
);
1049 /* Free all of the refs and the mw_hardregs in COLLECTION_REC. */
1052 df_free_collection_rec (struct df_collection_rec
*collection_rec
)
1054 struct df_scan_problem_data
*problem_data
1055 = (struct df_scan_problem_data
*) df_scan
->problem_data
;
1056 struct df_ref
**ref
;
1057 struct df_mw_hardreg
**mw
;
1059 if (collection_rec
->def_vec
)
1060 for (ref
= collection_rec
->def_vec
; *ref
; ref
++)
1061 pool_free (problem_data
->ref_pool
, *ref
);
1062 if (collection_rec
->use_vec
)
1063 for (ref
= collection_rec
->use_vec
; *ref
; ref
++)
1064 pool_free (problem_data
->ref_pool
, *ref
);
1065 if (collection_rec
->eq_use_vec
)
1066 for (ref
= collection_rec
->eq_use_vec
; *ref
; ref
++)
1067 pool_free (problem_data
->ref_pool
, *ref
);
1068 if (collection_rec
->mw_vec
)
1069 for (mw
= collection_rec
->mw_vec
; *mw
; mw
++)
1070 pool_free (problem_data
->mw_reg_pool
, *mw
);
1074 /* Rescan INSN. Return TRUE if the rescanning produced any changes. */
1077 df_insn_rescan (rtx insn
)
1079 unsigned int uid
= INSN_UID (insn
);
1080 struct df_insn_info
*insn_info
= NULL
;
1081 basic_block bb
= BLOCK_FOR_INSN (insn
);
1082 struct df_collection_rec collection_rec
;
1083 collection_rec
.def_vec
= alloca (sizeof (struct df_ref
*) * 1000);
1084 collection_rec
.use_vec
= alloca (sizeof (struct df_ref
*) * 1000);
1085 collection_rec
.eq_use_vec
= alloca (sizeof (struct df_ref
*) * 1000);
1086 collection_rec
.mw_vec
= alloca (sizeof (struct df_mw_hardreg
*) * 100);
1088 if ((!df
) || (!INSN_P (insn
)))
1094 fprintf (dump_file
, "no bb for insn with uid = %d.\n", uid
);
1098 /* The client has disabled rescanning and plans to do it itself. */
1099 if (df
->changeable_flags
& DF_NO_INSN_RESCAN
)
1102 df_grow_bb_info (df_scan
);
1103 df_grow_reg_info ();
1105 insn_info
= DF_INSN_UID_SAFE_GET (uid
);
1107 /* The client has deferred rescanning. */
1108 if (df
->changeable_flags
& DF_DEFER_INSN_RESCAN
)
1112 insn_info
= df_insn_create_insn_record (insn
);
1113 insn_info
->defs
= df_null_ref_rec
;
1114 insn_info
->uses
= df_null_ref_rec
;
1115 insn_info
->eq_uses
= df_null_ref_rec
;
1116 insn_info
->mw_hardregs
= df_null_mw_rec
;
1119 fprintf (dump_file
, "deferring rescan insn with uid = %d.\n", uid
);
1121 bitmap_clear_bit (df
->insns_to_delete
, uid
);
1122 bitmap_clear_bit (df
->insns_to_notes_rescan
, uid
);
1123 bitmap_set_bit (df
->insns_to_rescan
, INSN_UID (insn
));
1127 bitmap_clear_bit (df
->insns_to_delete
, uid
);
1128 bitmap_clear_bit (df
->insns_to_rescan
, uid
);
1129 bitmap_clear_bit (df
->insns_to_notes_rescan
, uid
);
1132 bool the_same
= df_insn_refs_verify (&collection_rec
, bb
, insn
, false);
1133 /* If there's no change, return false. */
1136 df_free_collection_rec (&collection_rec
);
1138 fprintf (dump_file
, "verify found no changes in insn with uid = %d.\n", uid
);
1142 fprintf (dump_file
, "rescanning insn with uid = %d.\n", uid
);
1144 /* There's change - we need to delete the existing info. */
1145 df_insn_delete (NULL
, uid
);
1146 df_insn_create_insn_record (insn
);
1150 df_insn_create_insn_record (insn
);
1151 df_insn_refs_collect (&collection_rec
, bb
, insn
);
1153 fprintf (dump_file
, "scanning new insn with uid = %d.\n", uid
);
1156 df_refs_add_to_chains (&collection_rec
, bb
, insn
);
1157 df_set_bb_dirty (bb
);
1162 /* Rescan all of the insns in the function. Note that the artificial
1163 uses and defs are not touched. This function will destroy def-se
1164 or use-def chains. */
1167 df_insn_rescan_all (void)
1169 bool no_insn_rescan
= false;
1170 bool defer_insn_rescan
= false;
1174 bitmap tmp
= BITMAP_ALLOC (&df_bitmap_obstack
);
1176 if (df
->changeable_flags
& DF_NO_INSN_RESCAN
)
1178 df_clear_flags (DF_NO_INSN_RESCAN
);
1179 no_insn_rescan
= true;
1182 if (df
->changeable_flags
& DF_DEFER_INSN_RESCAN
)
1184 df_clear_flags (DF_DEFER_INSN_RESCAN
);
1185 defer_insn_rescan
= true;
1188 bitmap_copy (tmp
, df
->insns_to_delete
);
1189 EXECUTE_IF_SET_IN_BITMAP (tmp
, 0, uid
, bi
)
1191 struct df_insn_info
*insn_info
= DF_INSN_UID_SAFE_GET (uid
);
1193 df_insn_delete (NULL
, uid
);
1197 bitmap_clear (df
->insns_to_delete
);
1198 bitmap_clear (df
->insns_to_rescan
);
1199 bitmap_clear (df
->insns_to_notes_rescan
);
1204 FOR_BB_INSNS (bb
, insn
)
1206 df_insn_rescan (insn
);
1211 df_set_flags (DF_NO_INSN_RESCAN
);
1212 if (defer_insn_rescan
)
1213 df_set_flags (DF_DEFER_INSN_RESCAN
);
1217 /* Process all of the deferred rescans or deletions. */
1220 df_process_deferred_rescans (void)
1222 bool no_insn_rescan
= false;
1223 bool defer_insn_rescan
= false;
1226 bitmap tmp
= BITMAP_ALLOC (&df_bitmap_obstack
);
1228 if (df
->changeable_flags
& DF_NO_INSN_RESCAN
)
1230 df_clear_flags (DF_NO_INSN_RESCAN
);
1231 no_insn_rescan
= true;
1234 if (df
->changeable_flags
& DF_DEFER_INSN_RESCAN
)
1236 df_clear_flags (DF_DEFER_INSN_RESCAN
);
1237 defer_insn_rescan
= true;
1241 fprintf (dump_file
, "starting the processing of deferred insns\n");
1243 bitmap_copy (tmp
, df
->insns_to_delete
);
1244 EXECUTE_IF_SET_IN_BITMAP (tmp
, 0, uid
, bi
)
1246 struct df_insn_info
*insn_info
= DF_INSN_UID_SAFE_GET (uid
);
1248 df_insn_delete (NULL
, uid
);
1251 bitmap_copy (tmp
, df
->insns_to_rescan
);
1252 EXECUTE_IF_SET_IN_BITMAP (tmp
, 0, uid
, bi
)
1254 struct df_insn_info
*insn_info
= DF_INSN_UID_SAFE_GET (uid
);
1256 df_insn_rescan (insn_info
->insn
);
1259 bitmap_copy (tmp
, df
->insns_to_notes_rescan
);
1260 EXECUTE_IF_SET_IN_BITMAP (tmp
, 0, uid
, bi
)
1262 struct df_insn_info
*insn_info
= DF_INSN_UID_SAFE_GET (uid
);
1264 df_notes_rescan (insn_info
->insn
);
1268 fprintf (dump_file
, "ending the processing of deferred insns\n");
1271 bitmap_clear (df
->insns_to_delete
);
1272 bitmap_clear (df
->insns_to_rescan
);
1273 bitmap_clear (df
->insns_to_notes_rescan
);
1276 df_set_flags (DF_NO_INSN_RESCAN
);
1277 if (defer_insn_rescan
)
1278 df_set_flags (DF_DEFER_INSN_RESCAN
);
1280 /* If someone changed regs_ever_live during this pass, fix up the
1281 entry and exit blocks. */
1282 if (df
->redo_entry_and_exit
)
1284 df_update_entry_exit_and_calls ();
1285 df
->redo_entry_and_exit
= false;
1290 /* Count the number of refs. Include the defs if INCLUDE_DEFS. Include
1291 the uses if INCLUDE_USES. Include the eq_uses if
1295 df_count_refs (bool include_defs
, bool include_uses
,
1296 bool include_eq_uses
)
1300 unsigned int m
= df
->regs_inited
;
1302 for (regno
= 0; regno
< m
; regno
++)
1305 size
+= DF_REG_DEF_COUNT (regno
);
1307 size
+= DF_REG_USE_COUNT (regno
);
1308 if (include_eq_uses
)
1309 size
+= DF_REG_EQ_USE_COUNT (regno
);
1315 /* Take build ref table for either the uses or defs from the reg-use
1316 or reg-def chains. This version processes the refs in reg order
1317 which is likely to be best if processing the whole function. */
1320 df_reorganize_refs_by_reg_by_reg (struct df_ref_info
*ref_info
,
1323 bool include_eq_uses
)
1325 unsigned int m
= df
->regs_inited
;
1327 unsigned int offset
= 0;
1330 if (df
->changeable_flags
& DF_NO_HARD_REGS
)
1332 start
= FIRST_PSEUDO_REGISTER
;
1333 memset (ref_info
->begin
, 0, sizeof (int) * FIRST_PSEUDO_REGISTER
);
1334 memset (ref_info
->count
, 0, sizeof (int) * FIRST_PSEUDO_REGISTER
);
1339 ref_info
->total_size
1340 = df_count_refs (include_defs
, include_uses
, include_eq_uses
);
1342 df_check_and_grow_ref_info (ref_info
, 1);
1344 for (regno
= start
; regno
< m
; regno
++)
1347 ref_info
->begin
[regno
] = offset
;
1350 struct df_ref
*ref
= DF_REG_DEF_CHAIN (regno
);
1353 ref_info
->refs
[offset
] = ref
;
1354 DF_REF_ID (ref
) = offset
++;
1356 ref
= DF_REF_NEXT_REG (ref
);
1357 gcc_assert (offset
< ref_info
->refs_size
);
1362 struct df_ref
*ref
= DF_REG_USE_CHAIN (regno
);
1365 ref_info
->refs
[offset
] = ref
;
1366 DF_REF_ID (ref
) = offset
++;
1368 ref
= DF_REF_NEXT_REG (ref
);
1369 gcc_assert (offset
< ref_info
->refs_size
);
1372 if (include_eq_uses
)
1374 struct df_ref
*ref
= DF_REG_EQ_USE_CHAIN (regno
);
1377 ref_info
->refs
[offset
] = ref
;
1378 DF_REF_ID (ref
) = offset
++;
1380 ref
= DF_REF_NEXT_REG (ref
);
1381 gcc_assert (offset
< ref_info
->refs_size
);
1384 ref_info
->count
[regno
] = count
;
1387 /* The bitmap size is not decremented when refs are deleted. So
1388 reset it now that we have squished out all of the empty
1390 ref_info
->table_size
= offset
;
1394 /* Take build ref table for either the uses or defs from the reg-use
1395 or reg-def chains. This version processes the refs in insn order
1396 which is likely to be best if processing some segment of the
1400 df_reorganize_refs_by_reg_by_insn (struct df_ref_info
*ref_info
,
1403 bool include_eq_uses
)
1406 unsigned int bb_index
;
1407 unsigned int m
= df
->regs_inited
;
1408 unsigned int offset
= 0;
1411 = (df
->changeable_flags
& DF_NO_HARD_REGS
) ? FIRST_PSEUDO_REGISTER
: 0;
1413 memset (ref_info
->begin
, 0, sizeof (int) * df
->regs_inited
);
1414 memset (ref_info
->count
, 0, sizeof (int) * df
->regs_inited
);
1416 ref_info
->total_size
= df_count_refs (include_defs
, include_uses
, include_eq_uses
);
1417 df_check_and_grow_ref_info (ref_info
, 1);
1419 EXECUTE_IF_SET_IN_BITMAP (df
->blocks_to_analyze
, 0, bb_index
, bi
)
1421 basic_block bb
= BASIC_BLOCK (bb_index
);
1423 struct df_ref
**ref_rec
;
1426 for (ref_rec
= df_get_artificial_defs (bb_index
); *ref_rec
; ref_rec
++)
1428 unsigned int regno
= DF_REF_REGNO (*ref_rec
);
1429 ref_info
->count
[regno
]++;
1432 for (ref_rec
= df_get_artificial_uses (bb_index
); *ref_rec
; ref_rec
++)
1434 unsigned int regno
= DF_REF_REGNO (*ref_rec
);
1435 ref_info
->count
[regno
]++;
1438 FOR_BB_INSNS (bb
, insn
)
1442 unsigned int uid
= INSN_UID (insn
);
1445 for (ref_rec
= DF_INSN_UID_DEFS (uid
); *ref_rec
; ref_rec
++)
1447 unsigned int regno
= DF_REF_REGNO (*ref_rec
);
1448 ref_info
->count
[regno
]++;
1451 for (ref_rec
= DF_INSN_UID_USES (uid
); *ref_rec
; ref_rec
++)
1453 unsigned int regno
= DF_REF_REGNO (*ref_rec
);
1454 ref_info
->count
[regno
]++;
1456 if (include_eq_uses
)
1457 for (ref_rec
= DF_INSN_UID_EQ_USES (uid
); *ref_rec
; ref_rec
++)
1459 unsigned int regno
= DF_REF_REGNO (*ref_rec
);
1460 ref_info
->count
[regno
]++;
1466 for (r
= start
; r
< m
; r
++)
1468 ref_info
->begin
[r
] = offset
;
1469 offset
+= ref_info
->count
[r
];
1470 ref_info
->count
[r
] = 0;
1473 EXECUTE_IF_SET_IN_BITMAP (df
->blocks_to_analyze
, 0, bb_index
, bi
)
1475 basic_block bb
= BASIC_BLOCK (bb_index
);
1477 struct df_ref
**ref_rec
;
1480 for (ref_rec
= df_get_artificial_defs (bb_index
); *ref_rec
; ref_rec
++)
1482 struct df_ref
*ref
= *ref_rec
;
1483 unsigned int regno
= DF_REF_REGNO (ref
);
1487 = ref_info
->begin
[regno
] + ref_info
->count
[regno
]++;
1488 DF_REF_ID (ref
) = id
;
1489 ref_info
->refs
[id
] = ref
;
1493 for (ref_rec
= df_get_artificial_uses (bb_index
); *ref_rec
; ref_rec
++)
1495 struct df_ref
*ref
= *ref_rec
;
1496 unsigned int regno
= DF_REF_REGNO (ref
);
1500 = ref_info
->begin
[regno
] + ref_info
->count
[regno
]++;
1501 DF_REF_ID (ref
) = id
;
1502 ref_info
->refs
[id
] = ref
;
1506 FOR_BB_INSNS (bb
, insn
)
1510 unsigned int uid
= INSN_UID (insn
);
1513 for (ref_rec
= DF_INSN_UID_DEFS (uid
); *ref_rec
; ref_rec
++)
1515 struct df_ref
*ref
= *ref_rec
;
1516 unsigned int regno
= DF_REF_REGNO (ref
);
1520 = ref_info
->begin
[regno
] + ref_info
->count
[regno
]++;
1521 DF_REF_ID (ref
) = id
;
1522 ref_info
->refs
[id
] = ref
;
1526 for (ref_rec
= DF_INSN_UID_USES (uid
); *ref_rec
; ref_rec
++)
1528 struct df_ref
*ref
= *ref_rec
;
1529 unsigned int regno
= DF_REF_REGNO (ref
);
1533 = ref_info
->begin
[regno
] + ref_info
->count
[regno
]++;
1534 DF_REF_ID (ref
) = id
;
1535 ref_info
->refs
[id
] = ref
;
1538 if (include_eq_uses
)
1539 for (ref_rec
= DF_INSN_UID_EQ_USES (uid
); *ref_rec
; ref_rec
++)
1541 struct df_ref
*ref
= *ref_rec
;
1542 unsigned int regno
= DF_REF_REGNO (ref
);
1546 = ref_info
->begin
[regno
] + ref_info
->count
[regno
]++;
1547 DF_REF_ID (ref
) = id
;
1548 ref_info
->refs
[id
] = ref
;
1555 /* The bitmap size is not decremented when refs are deleted. So
1556 reset it now that we have squished out all of the empty
1559 ref_info
->table_size
= offset
;
1562 /* Take build ref table for either the uses or defs from the reg-use
1563 or reg-def chains. */
1566 df_reorganize_refs_by_reg (struct df_ref_info
*ref_info
,
1569 bool include_eq_uses
)
1571 if (df
->analyze_subset
)
1572 df_reorganize_refs_by_reg_by_insn (ref_info
, include_defs
,
1573 include_uses
, include_eq_uses
);
1575 df_reorganize_refs_by_reg_by_reg (ref_info
, include_defs
,
1576 include_uses
, include_eq_uses
);
1580 /* Add the refs in REF_VEC to the table in REF_INFO starting at OFFSET. */
1582 df_add_refs_to_table (unsigned int offset
,
1583 struct df_ref_info
*ref_info
,
1584 struct df_ref
**ref_vec
)
1588 struct df_ref
*ref
= *ref_vec
;
1589 if ((!(df
->changeable_flags
& DF_NO_HARD_REGS
))
1590 || (DF_REF_REGNO (ref
) >= FIRST_PSEUDO_REGISTER
))
1592 ref_info
->refs
[offset
] = ref
;
1593 DF_REF_ID (*ref_vec
) = offset
++;
1601 /* Count the number of refs in all of the insns of BB. Include the
1602 defs if INCLUDE_DEFS. Include the uses if INCLUDE_USES. Include the
1603 eq_uses if INCLUDE_EQ_USES. */
1606 df_reorganize_refs_by_insn_bb (basic_block bb
, unsigned int offset
,
1607 struct df_ref_info
*ref_info
,
1608 bool include_defs
, bool include_uses
,
1609 bool include_eq_uses
)
1614 offset
= df_add_refs_to_table (offset
, ref_info
,
1615 df_get_artificial_defs (bb
->index
));
1617 offset
= df_add_refs_to_table (offset
, ref_info
,
1618 df_get_artificial_uses (bb
->index
));
1620 FOR_BB_INSNS (bb
, insn
)
1623 unsigned int uid
= INSN_UID (insn
);
1625 offset
= df_add_refs_to_table (offset
, ref_info
,
1626 DF_INSN_UID_DEFS (uid
));
1628 offset
= df_add_refs_to_table (offset
, ref_info
,
1629 DF_INSN_UID_USES (uid
));
1630 if (include_eq_uses
)
1631 offset
= df_add_refs_to_table (offset
, ref_info
,
1632 DF_INSN_UID_EQ_USES (uid
));
1638 /* Organize the refs by insn into the table in REF_INFO. If
1639 blocks_to_analyze is defined, use that set, otherwise the entire
1640 program. Include the defs if INCLUDE_DEFS. Include the uses if
1641 INCLUDE_USES. Include the eq_uses if INCLUDE_EQ_USES. */
1644 df_reorganize_refs_by_insn (struct df_ref_info
*ref_info
,
1645 bool include_defs
, bool include_uses
,
1646 bool include_eq_uses
)
1649 unsigned int offset
= 0;
1651 ref_info
->total_size
= df_count_refs (include_defs
, include_uses
, include_eq_uses
);
1652 df_check_and_grow_ref_info (ref_info
, 1);
1653 if (df
->blocks_to_analyze
)
1658 EXECUTE_IF_SET_IN_BITMAP (df
->blocks_to_analyze
, 0, index
, bi
)
1660 offset
= df_reorganize_refs_by_insn_bb (BASIC_BLOCK (index
), offset
, ref_info
,
1661 include_defs
, include_uses
,
1665 ref_info
->table_size
= offset
;
1670 offset
= df_reorganize_refs_by_insn_bb (bb
, offset
, ref_info
,
1671 include_defs
, include_uses
,
1673 ref_info
->table_size
= offset
;
1678 /* If the use refs in DF are not organized, reorganize them. */
1681 df_maybe_reorganize_use_refs (enum df_ref_order order
)
1683 if (order
== df
->use_info
.ref_order
)
1688 case DF_REF_ORDER_BY_REG
:
1689 df_reorganize_refs_by_reg (&df
->use_info
, false, true, false);
1692 case DF_REF_ORDER_BY_REG_WITH_NOTES
:
1693 df_reorganize_refs_by_reg (&df
->use_info
, false, true, true);
1696 case DF_REF_ORDER_BY_INSN
:
1697 df_reorganize_refs_by_insn (&df
->use_info
, false, true, false);
1700 case DF_REF_ORDER_BY_INSN_WITH_NOTES
:
1701 df_reorganize_refs_by_insn (&df
->use_info
, false, true, true);
1704 case DF_REF_ORDER_NO_TABLE
:
1705 free (df
->use_info
.refs
);
1706 df
->use_info
.refs
= NULL
;
1707 df
->use_info
.refs_size
= 0;
1710 case DF_REF_ORDER_UNORDERED
:
1711 case DF_REF_ORDER_UNORDERED_WITH_NOTES
:
1716 df
->use_info
.ref_order
= order
;
1720 /* If the def refs in DF are not organized, reorganize them. */
1723 df_maybe_reorganize_def_refs (enum df_ref_order order
)
1725 if (order
== df
->def_info
.ref_order
)
1730 case DF_REF_ORDER_BY_REG
:
1731 df_reorganize_refs_by_reg (&df
->def_info
, true, false, false);
1734 case DF_REF_ORDER_BY_INSN
:
1735 df_reorganize_refs_by_insn (&df
->def_info
, true, false, false);
1738 case DF_REF_ORDER_NO_TABLE
:
1739 free (df
->def_info
.refs
);
1740 df
->def_info
.refs
= NULL
;
1741 df
->def_info
.refs_size
= 0;
1744 case DF_REF_ORDER_BY_INSN_WITH_NOTES
:
1745 case DF_REF_ORDER_BY_REG_WITH_NOTES
:
1746 case DF_REF_ORDER_UNORDERED
:
1747 case DF_REF_ORDER_UNORDERED_WITH_NOTES
:
1752 df
->def_info
.ref_order
= order
;
1756 /* Change the BB of all refs in the ref chain to NEW_BB.
1757 Assumes that all refs in the chain have the same BB.
1758 If changed, return the original bb the chain belonged to
1760 If no change, return NEW_BB.
1761 If something's wrong, it will return NULL. */
1764 df_ref_chain_change_bb (struct df_ref
**ref_rec
,
1770 struct df_ref
*ref
= *ref_rec
;
1772 if (DF_REF_BB (ref
) == new_bb
)
1776 gcc_assert (old_bb
== NULL
|| DF_REF_BB (ref
) == old_bb
);
1777 old_bb
= DF_REF_BB (ref
);
1778 DF_REF_BB (ref
) = new_bb
;
1787 /* Change all of the basic block references in INSN to use the insn's
1788 current basic block. This function is called from routines that move
1789 instructions from one block to another. */
1792 df_insn_change_bb (rtx insn
)
1794 basic_block new_bb
= BLOCK_FOR_INSN (insn
);
1795 basic_block old_bb
= NULL
;
1796 struct df_insn_info
*insn_info
;
1797 unsigned int uid
= INSN_UID (insn
);
1803 fprintf (dump_file
, "changing bb of uid %d\n", uid
);
1805 insn_info
= DF_INSN_UID_SAFE_GET (uid
);
1806 if (insn_info
== NULL
)
1809 fprintf (dump_file
, " unscanned insn\n");
1810 df_insn_rescan (insn
);
1817 old_bb
= df_ref_chain_change_bb (insn_info
->defs
, old_bb
, new_bb
);
1818 if (old_bb
== new_bb
)
1821 old_bb
= df_ref_chain_change_bb (insn_info
->uses
, old_bb
, new_bb
);
1822 if (old_bb
== new_bb
)
1825 old_bb
= df_ref_chain_change_bb (insn_info
->eq_uses
, old_bb
, new_bb
);
1826 if (old_bb
== new_bb
)
1829 df_set_bb_dirty (new_bb
);
1833 fprintf (dump_file
, " from %d to %d\n",
1834 old_bb
->index
, new_bb
->index
);
1835 df_set_bb_dirty (old_bb
);
1839 fprintf (dump_file
, " to %d\n", new_bb
->index
);
1843 /* Helper function for df_ref_change_reg_with_loc. */
1846 df_ref_change_reg_with_loc_1 (struct df_reg_info
*old
, struct df_reg_info
*new,
1847 int new_regno
, rtx loc
)
1849 struct df_ref
*the_ref
= old
->reg_chain
;
1853 if (DF_REF_LOC(the_ref
) && (*DF_REF_LOC(the_ref
) == loc
))
1855 struct df_ref
*next_ref
= the_ref
->next_reg
;
1856 struct df_ref
*prev_ref
= the_ref
->prev_reg
;
1857 struct df_ref
**ref_vec
, **ref_vec_t
;
1858 unsigned int count
= 0;
1860 DF_REF_REGNO (the_ref
) = new_regno
;
1861 DF_REF_REG (the_ref
) = regno_reg_rtx
[new_regno
];
1863 /* Pull the_ref out of the old regno chain. */
1865 prev_ref
->next_reg
= next_ref
;
1867 old
->reg_chain
= next_ref
;
1869 next_ref
->prev_reg
= prev_ref
;
1872 /* Put the ref into the new regno chain. */
1873 the_ref
->prev_reg
= NULL
;
1874 the_ref
->next_reg
= new->reg_chain
;
1876 new->reg_chain
->prev_reg
= the_ref
;
1877 new->reg_chain
= the_ref
;
1879 df_set_bb_dirty (DF_REF_BB (the_ref
));
1881 /* Need to resort the record that the ref was in because the
1882 regno is a sorting key. First, find the right record. */
1883 if (DF_REF_IS_ARTIFICIAL (the_ref
))
1885 unsigned int bb_index
= DF_REF_BB (the_ref
)->index
;
1886 if (DF_REF_REG_DEF_P (the_ref
))
1887 ref_vec
= df_get_artificial_defs (bb_index
);
1889 ref_vec
= df_get_artificial_uses (bb_index
);
1893 struct df_insn_info
*insn_info
1894 = DF_INSN_GET (DF_REF_INSN (the_ref
));
1895 if (DF_REF_FLAGS (the_ref
) & DF_REF_IN_NOTE
)
1896 ref_vec
= insn_info
->eq_uses
;
1898 ref_vec
= insn_info
->uses
;
1900 fprintf (dump_file
, "changing reg in insn %d\n",
1901 INSN_UID (DF_REF_INSN (the_ref
)));
1903 ref_vec_t
= ref_vec
;
1905 /* Find the length. */
1911 qsort (ref_vec
, count
, sizeof (struct df_ref
*), df_ref_compare
);
1916 the_ref
= the_ref
->next_reg
;
1921 /* Change the regno of all refs that contained LOC from OLD_REGNO to
1922 NEW_REGNO. Refs that do not match LOC are not changed. This call
1923 is to support the SET_REGNO macro. */
1926 df_ref_change_reg_with_loc (int old_regno
, int new_regno
, rtx loc
)
1928 if ((!df
) || (old_regno
== -1) || (old_regno
== new_regno
))
1931 df_grow_reg_info ();
1933 df_ref_change_reg_with_loc_1 (DF_REG_DEF_GET (old_regno
),
1934 DF_REG_DEF_GET (new_regno
), new_regno
, loc
);
1935 df_ref_change_reg_with_loc_1 (DF_REG_USE_GET (old_regno
),
1936 DF_REG_USE_GET (new_regno
), new_regno
, loc
);
1937 df_ref_change_reg_with_loc_1 (DF_REG_EQ_USE_GET (old_regno
),
1938 DF_REG_EQ_USE_GET (new_regno
), new_regno
, loc
);
1942 /* Delete the mw_hardregs that point into the eq_notes. */
1945 df_mw_hardreg_chain_delete_eq_uses (struct df_insn_info
*insn_info
)
1947 struct df_mw_hardreg
**mw_vec
= insn_info
->mw_hardregs
;
1948 unsigned int deleted
= 0;
1949 unsigned int count
= 0;
1950 struct df_scan_problem_data
*problem_data
1951 = (struct df_scan_problem_data
*) df_scan
->problem_data
;
1958 if ((*mw_vec
)->flags
& DF_REF_IN_NOTE
)
1960 struct df_mw_hardreg
**temp_vec
= mw_vec
;
1962 pool_free (problem_data
->mw_reg_pool
, *mw_vec
);
1964 /* Shove the remaining ones down one to fill the gap. While
1965 this looks n**2, it is highly unusual to have any mw regs
1966 in eq_notes and the chances of more than one are almost
1970 *temp_vec
= *(temp_vec
+ 1);
1984 free (insn_info
->mw_hardregs
);
1985 insn_info
->mw_hardregs
= df_null_mw_rec
;
1992 /* Rescan only the REG_EQUIV/REG_EQUAL notes part of INSN. */
1995 df_notes_rescan (rtx insn
)
1997 struct df_insn_info
*insn_info
;
1998 unsigned int uid
= INSN_UID (insn
);
2003 /* The client has disabled rescanning and plans to do it itself. */
2004 if (df
->changeable_flags
& DF_NO_INSN_RESCAN
)
2007 /* Do nothing if the insn hasn't been emitted yet. */
2008 if (!BLOCK_FOR_INSN (insn
))
2011 df_grow_bb_info (df_scan
);
2012 df_grow_reg_info ();
2014 insn_info
= DF_INSN_UID_SAFE_GET (INSN_UID(insn
));
2016 /* The client has deferred rescanning. */
2017 if (df
->changeable_flags
& DF_DEFER_INSN_RESCAN
)
2021 insn_info
= df_insn_create_insn_record (insn
);
2022 insn_info
->defs
= df_null_ref_rec
;
2023 insn_info
->uses
= df_null_ref_rec
;
2024 insn_info
->eq_uses
= df_null_ref_rec
;
2025 insn_info
->mw_hardregs
= df_null_mw_rec
;
2028 bitmap_clear_bit (df
->insns_to_delete
, uid
);
2029 /* If the insn is set to be rescanned, it does not need to also
2030 be notes rescanned. */
2031 if (!bitmap_bit_p (df
->insns_to_rescan
, uid
))
2032 bitmap_set_bit (df
->insns_to_notes_rescan
, INSN_UID (insn
));
2036 bitmap_clear_bit (df
->insns_to_delete
, uid
);
2037 bitmap_clear_bit (df
->insns_to_notes_rescan
, uid
);
2041 basic_block bb
= BLOCK_FOR_INSN (insn
);
2043 struct df_collection_rec collection_rec
;
2044 unsigned int num_deleted
;
2046 memset (&collection_rec
, 0, sizeof (struct df_collection_rec
));
2047 collection_rec
.eq_use_vec
= alloca (sizeof (struct df_ref
*) * 1000);
2048 collection_rec
.mw_vec
= alloca (sizeof (struct df_mw_hardreg
*) * 1000);
2050 num_deleted
= df_mw_hardreg_chain_delete_eq_uses (insn_info
);
2051 df_ref_chain_delete (insn_info
->eq_uses
);
2052 insn_info
->eq_uses
= NULL
;
2054 /* Process REG_EQUIV/REG_EQUAL notes */
2055 for (note
= REG_NOTES (insn
); note
;
2056 note
= XEXP (note
, 1))
2058 switch (REG_NOTE_KIND (note
))
2062 df_uses_record (&collection_rec
,
2063 &XEXP (note
, 0), DF_REF_REG_USE
,
2064 bb
, insn
, DF_REF_IN_NOTE
);
2070 /* Find some place to put any new mw_hardregs. */
2071 df_canonize_collection_rec (&collection_rec
);
2072 if (collection_rec
.next_mw
)
2074 unsigned int count
= 0;
2075 struct df_mw_hardreg
**mw_rec
= insn_info
->mw_hardregs
;
2084 /* Append to the end of the existing record after
2085 expanding it if necessary. */
2086 if (collection_rec
.next_mw
> num_deleted
)
2088 insn_info
->mw_hardregs
=
2089 xrealloc (insn_info
->mw_hardregs
,
2090 (count
+ 1 + collection_rec
.next_mw
)
2091 * sizeof (struct df_ref
*));
2093 memcpy (&insn_info
->mw_hardregs
[count
], collection_rec
.mw_vec
,
2094 (collection_rec
.next_mw
+ 1) * sizeof (struct df_mw_hardreg
*));
2095 qsort (insn_info
->mw_hardregs
, count
+ collection_rec
.next_mw
,
2096 sizeof (struct df_mw_hardreg
*), df_mw_compare
);
2100 /* No vector there. */
2101 insn_info
->mw_hardregs
2102 = XNEWVEC (struct df_mw_hardreg
*,
2103 count
+ 1 + collection_rec
.next_mw
);
2104 memcpy (insn_info
->mw_hardregs
, collection_rec
.mw_vec
,
2105 (collection_rec
.next_mw
+ 1) * sizeof (struct df_mw_hardreg
*));
2108 /* Get rid of the mw_rec so that df_refs_add_to_chains will
2110 collection_rec
.mw_vec
= NULL
;
2111 collection_rec
.next_mw
= 0;
2112 df_refs_add_to_chains (&collection_rec
, bb
, insn
);
2115 df_insn_rescan (insn
);
2120 /*----------------------------------------------------------------------------
2121 Hard core instruction scanning code. No external interfaces here,
2122 just a lot of routines that look inside insns.
2123 ----------------------------------------------------------------------------*/
2126 /* Return true if the contents of two df_ref's are identical.
2127 It ignores DF_REF_MARKER. */
2130 df_ref_equal_p (struct df_ref
*ref1
, struct df_ref
*ref2
)
2134 return (ref1
== ref2
) ||
2135 (DF_REF_REG (ref1
) == DF_REF_REG (ref2
)
2136 && DF_REF_REGNO (ref1
) == DF_REF_REGNO (ref2
)
2137 && DF_REF_LOC (ref1
) == DF_REF_LOC (ref2
)
2138 && DF_REF_INSN (ref1
) == DF_REF_INSN (ref2
)
2139 && DF_REF_TYPE (ref1
) == DF_REF_TYPE (ref2
)
2140 && ((DF_REF_FLAGS (ref1
) & ~(DF_REF_REG_MARKER
+ DF_REF_MW_HARDREG
))
2141 == (DF_REF_FLAGS (ref2
) & ~(DF_REF_REG_MARKER
+ DF_REF_MW_HARDREG
)))
2142 && DF_REF_BB (ref1
) == DF_REF_BB (ref2
));
2146 /* Compare REF1 and REF2 for sorting. This is only called from places
2147 where all of the refs are of the same type, in the same insn, and
2148 have the same bb. So these fields are not checked. */
2151 df_ref_compare (const void *r1
, const void *r2
)
2153 const struct df_ref
*const ref1
= *(const struct df_ref
*const*)r1
;
2154 const struct df_ref
*const ref2
= *(const struct df_ref
*const*)r2
;
2159 if (DF_REF_REGNO (ref1
) != DF_REF_REGNO (ref2
))
2160 return (int)DF_REF_REGNO (ref1
) - (int)DF_REF_REGNO (ref2
);
2162 if (DF_REF_TYPE (ref1
) != DF_REF_TYPE (ref2
))
2163 return (int)DF_REF_TYPE (ref1
) - (int)DF_REF_TYPE (ref2
);
2165 if ((DF_REF_REG (ref1
) != DF_REF_REG (ref2
))
2166 || (DF_REF_LOC (ref1
) != DF_REF_LOC (ref2
)))
2167 return (int)DF_REF_ORDER (ref1
) - (int)DF_REF_ORDER (ref2
);
2169 if (DF_REF_FLAGS (ref1
) != DF_REF_FLAGS (ref2
))
2171 /* If two refs are identical except that one of them has is from
2172 a mw and one is not, we need to have the one with the mw
2174 if (DF_REF_FLAGS_IS_SET (ref1
, DF_REF_MW_HARDREG
) ==
2175 DF_REF_FLAGS_IS_SET (ref2
, DF_REF_MW_HARDREG
))
2176 return DF_REF_FLAGS (ref1
) - DF_REF_FLAGS (ref2
);
2177 else if (DF_REF_FLAGS_IS_SET (ref1
, DF_REF_MW_HARDREG
))
2186 df_swap_refs (struct df_ref
**ref_vec
, int i
, int j
)
2188 struct df_ref
*tmp
= ref_vec
[i
];
2189 ref_vec
[i
] = ref_vec
[j
];
2193 /* Sort and compress a set of refs. */
2196 df_sort_and_compress_refs (struct df_ref
**ref_vec
, unsigned int count
)
2198 struct df_scan_problem_data
*problem_data
2199 = (struct df_scan_problem_data
*) df_scan
->problem_data
;
2201 unsigned int dist
= 0;
2203 ref_vec
[count
] = NULL
;
2204 /* If there are 1 or 0 elements, there is nothing to do. */
2207 else if (count
== 2)
2209 if (df_ref_compare (&ref_vec
[0], &ref_vec
[1]) > 0)
2210 df_swap_refs (ref_vec
, 0, 1);
2214 for (i
= 0; i
< count
- 1; i
++)
2215 if (df_ref_compare (&ref_vec
[i
], &ref_vec
[i
+1]) >= 0)
2217 /* If the array is already strictly ordered,
2218 which is the most common case for large COUNT case
2219 (which happens for CALL INSNs),
2220 no need to sort and filter out duplicate.
2221 Simply return the count.
2222 Make sure DF_GET_ADD_REFS adds refs in the increasing order
2223 of DF_REF_COMPARE. */
2226 qsort (ref_vec
, count
, sizeof (struct df_ref
*), df_ref_compare
);
2229 for (i
=0; i
<count
-dist
; i
++)
2231 /* Find the next ref that is not equal to the current ref. */
2232 while (df_ref_equal_p (ref_vec
[i
], ref_vec
[i
+ dist
+ 1]))
2234 pool_free (problem_data
->ref_pool
, ref_vec
[i
+ dist
+ 1]);
2237 /* Copy it down to the next position. */
2239 ref_vec
[i
+1] = ref_vec
[i
+ dist
+ 1];
2243 ref_vec
[count
] = NULL
;
2248 /* Return true if the contents of two df_ref's are identical.
2249 It ignores DF_REF_MARKER. */
2252 df_mw_equal_p (struct df_mw_hardreg
*mw1
, struct df_mw_hardreg
*mw2
)
2256 return (mw1
== mw2
) ||
2257 (mw1
->mw_reg
== mw2
->mw_reg
2258 && mw1
->type
== mw2
->type
2259 && mw1
->flags
== mw2
->flags
2260 && mw1
->start_regno
== mw2
->start_regno
2261 && mw1
->end_regno
== mw2
->end_regno
);
2265 /* Compare MW1 and MW2 for sorting. */
2268 df_mw_compare (const void *m1
, const void *m2
)
2270 const struct df_mw_hardreg
*const mw1
= *(const struct df_mw_hardreg
*const*)m1
;
2271 const struct df_mw_hardreg
*const mw2
= *(const struct df_mw_hardreg
*const*)m2
;
2276 if (mw1
->type
!= mw2
->type
)
2277 return mw1
->type
- mw2
->type
;
2279 if (mw1
->flags
!= mw2
->flags
)
2280 return mw1
->flags
- mw2
->flags
;
2282 if (mw1
->start_regno
!= mw2
->start_regno
)
2283 return mw1
->start_regno
- mw2
->start_regno
;
2285 if (mw1
->end_regno
!= mw2
->end_regno
)
2286 return mw1
->end_regno
- mw2
->end_regno
;
2288 if (mw1
->mw_reg
!= mw2
->mw_reg
)
2289 return mw1
->mw_order
- mw2
->mw_order
;
2295 /* Sort and compress a set of refs. */
2298 df_sort_and_compress_mws (struct df_mw_hardreg
**mw_vec
, unsigned int count
)
2300 struct df_scan_problem_data
*problem_data
2301 = (struct df_scan_problem_data
*) df_scan
->problem_data
;
2303 unsigned int dist
= 0;
2304 mw_vec
[count
] = NULL
;
2308 else if (count
== 2)
2310 if (df_mw_compare (&mw_vec
[0], &mw_vec
[1]) > 0)
2312 struct df_mw_hardreg
*tmp
= mw_vec
[0];
2313 mw_vec
[0] = mw_vec
[1];
2318 qsort (mw_vec
, count
, sizeof (struct df_mw_hardreg
*), df_mw_compare
);
2320 for (i
=0; i
<count
-dist
; i
++)
2322 /* Find the next ref that is not equal to the current ref. */
2323 while (df_mw_equal_p (mw_vec
[i
], mw_vec
[i
+ dist
+ 1]))
2325 pool_free (problem_data
->mw_reg_pool
, mw_vec
[i
+ dist
+ 1]);
2328 /* Copy it down to the next position. */
2330 mw_vec
[i
+1] = mw_vec
[i
+ dist
+ 1];
2334 mw_vec
[count
] = NULL
;
2339 /* Sort and remove duplicates from the COLLECTION_REC. */
2342 df_canonize_collection_rec (struct df_collection_rec
*collection_rec
)
2344 if (collection_rec
->def_vec
)
2345 collection_rec
->next_def
2346 = df_sort_and_compress_refs (collection_rec
->def_vec
,
2347 collection_rec
->next_def
);
2348 if (collection_rec
->use_vec
)
2349 collection_rec
->next_use
2350 = df_sort_and_compress_refs (collection_rec
->use_vec
,
2351 collection_rec
->next_use
);
2352 if (collection_rec
->eq_use_vec
)
2353 collection_rec
->next_eq_use
2354 = df_sort_and_compress_refs (collection_rec
->eq_use_vec
,
2355 collection_rec
->next_eq_use
);
2356 if (collection_rec
->mw_vec
)
2357 collection_rec
->next_mw
2358 = df_sort_and_compress_mws (collection_rec
->mw_vec
,
2359 collection_rec
->next_mw
);
2363 /* Add the new df_ref to appropriate reg_info/ref_info chains. */
2366 df_install_ref (struct df_ref
*this_ref
,
2367 struct df_reg_info
*reg_info
,
2368 struct df_ref_info
*ref_info
,
2371 unsigned int regno
= DF_REF_REGNO (this_ref
);
2372 /* Add the ref to the reg_{def,use,eq_use} chain. */
2373 struct df_ref
*head
= reg_info
->reg_chain
;
2375 reg_info
->reg_chain
= this_ref
;
2378 if (DF_REF_FLAGS_IS_SET (this_ref
, DF_HARD_REG_LIVE
))
2380 gcc_assert (regno
< FIRST_PSEUDO_REGISTER
);
2381 df
->hard_regs_live_count
[regno
]++;
2384 gcc_assert (DF_REF_NEXT_REG (this_ref
) == NULL
);
2385 gcc_assert (DF_REF_PREV_REG (this_ref
) == NULL
);
2387 DF_REF_NEXT_REG (this_ref
) = head
;
2389 /* We cannot actually link to the head of the chain. */
2390 DF_REF_PREV_REG (this_ref
) = NULL
;
2393 DF_REF_PREV_REG (head
) = this_ref
;
2397 gcc_assert (ref_info
->ref_order
!= DF_REF_ORDER_NO_TABLE
);
2398 df_check_and_grow_ref_info (ref_info
, 1);
2399 DF_REF_ID (this_ref
) = ref_info
->table_size
;
2400 /* Add the ref to the big array of defs. */
2401 ref_info
->refs
[ref_info
->table_size
] = this_ref
;
2402 ref_info
->table_size
++;
2405 DF_REF_ID (this_ref
) = -1;
2407 ref_info
->total_size
++;
2411 /* This function takes one of the groups of refs (defs, uses or
2412 eq_uses) and installs the entire group into the insn. It also adds
2413 each of these refs into the appropriate chains. */
2415 static struct df_ref
**
2416 df_install_refs (basic_block bb
,
2417 struct df_ref
**old_vec
, unsigned int count
,
2418 struct df_reg_info
**reg_info
,
2419 struct df_ref_info
*ref_info
,
2425 struct df_ref
**new_vec
= XNEWVEC (struct df_ref
*, count
+ 1);
2428 switch (ref_info
->ref_order
)
2430 case DF_REF_ORDER_UNORDERED_WITH_NOTES
:
2431 case DF_REF_ORDER_BY_REG_WITH_NOTES
:
2432 case DF_REF_ORDER_BY_INSN_WITH_NOTES
:
2433 ref_info
->ref_order
= DF_REF_ORDER_UNORDERED_WITH_NOTES
;
2434 add_to_table
= true;
2436 case DF_REF_ORDER_UNORDERED
:
2437 case DF_REF_ORDER_BY_REG
:
2438 case DF_REF_ORDER_BY_INSN
:
2439 ref_info
->ref_order
= DF_REF_ORDER_UNORDERED
;
2440 add_to_table
= !is_notes
;
2443 add_to_table
= false;
2447 /* Do not add if ref is not in the right blocks. */
2448 if (add_to_table
&& df
->analyze_subset
)
2449 add_to_table
= bitmap_bit_p (df
->blocks_to_analyze
, bb
->index
);
2451 for (i
= 0; i
< count
; i
++)
2453 struct df_ref
*this_ref
= old_vec
[i
];
2454 new_vec
[i
] = this_ref
;
2455 df_install_ref (this_ref
, reg_info
[DF_REF_REGNO (this_ref
)],
2456 ref_info
, add_to_table
);
2459 new_vec
[count
] = NULL
;
2463 return df_null_ref_rec
;
2467 /* This function takes the mws installs the entire group into the
2470 static struct df_mw_hardreg
**
2471 df_install_mws (struct df_mw_hardreg
**old_vec
, unsigned int count
)
2475 struct df_mw_hardreg
**new_vec
2476 = XNEWVEC (struct df_mw_hardreg
*, count
+ 1);
2477 memcpy (new_vec
, old_vec
,
2478 sizeof (struct df_mw_hardreg
*) * (count
+ 1));
2482 return df_null_mw_rec
;
2486 /* Add a chain of df_refs to appropriate ref chain/reg_info/ref_info
2487 chains and update other necessary information. */
2490 df_refs_add_to_chains (struct df_collection_rec
*collection_rec
,
2491 basic_block bb
, rtx insn
)
2495 struct df_insn_info
*insn_rec
= DF_INSN_GET (insn
);
2496 /* If there is a vector in the collection rec, add it to the
2497 insn. A null rec is a signal that the caller will handle the
2499 if (collection_rec
->def_vec
)
2501 if (insn_rec
->defs
&& *insn_rec
->defs
)
2502 free (insn_rec
->defs
);
2504 = df_install_refs (bb
, collection_rec
->def_vec
,
2505 collection_rec
->next_def
,
2507 &df
->def_info
, false);
2509 if (collection_rec
->use_vec
)
2511 if (insn_rec
->uses
&& *insn_rec
->uses
)
2512 free (insn_rec
->uses
);
2514 = df_install_refs (bb
, collection_rec
->use_vec
,
2515 collection_rec
->next_use
,
2517 &df
->use_info
, false);
2519 if (collection_rec
->eq_use_vec
)
2521 if (insn_rec
->eq_uses
&& *insn_rec
->eq_uses
)
2522 free (insn_rec
->eq_uses
);
2524 = df_install_refs (bb
, collection_rec
->eq_use_vec
,
2525 collection_rec
->next_eq_use
,
2527 &df
->use_info
, true);
2529 if (collection_rec
->mw_vec
)
2531 if (insn_rec
->mw_hardregs
&& *insn_rec
->mw_hardregs
)
2532 free (insn_rec
->mw_hardregs
);
2533 insn_rec
->mw_hardregs
2534 = df_install_mws (collection_rec
->mw_vec
,
2535 collection_rec
->next_mw
);
2540 struct df_scan_bb_info
*bb_info
= df_scan_get_bb_info (bb
->index
);
2542 if (bb_info
->artificial_defs
&& *bb_info
->artificial_defs
)
2543 free (bb_info
->artificial_defs
);
2544 bb_info
->artificial_defs
2545 = df_install_refs (bb
, collection_rec
->def_vec
,
2546 collection_rec
->next_def
,
2548 &df
->def_info
, false);
2549 if (bb_info
->artificial_uses
&& *bb_info
->artificial_uses
)
2550 free (bb_info
->artificial_uses
);
2551 bb_info
->artificial_uses
2552 = df_install_refs (bb
, collection_rec
->use_vec
,
2553 collection_rec
->next_use
,
2555 &df
->use_info
, false);
2560 /* Allocate a ref and initialize its fields. */
2562 static struct df_ref
*
2563 df_ref_create_structure (struct df_collection_rec
*collection_rec
,
2565 basic_block bb
, rtx insn
,
2566 enum df_ref_type ref_type
,
2567 enum df_ref_flags ref_flags
)
2569 struct df_ref
*this_ref
;
2570 int regno
= REGNO (GET_CODE (reg
) == SUBREG
? SUBREG_REG (reg
) : reg
);
2571 struct df_scan_problem_data
*problem_data
2572 = (struct df_scan_problem_data
*) df_scan
->problem_data
;
2574 this_ref
= pool_alloc (problem_data
->ref_pool
);
2575 DF_REF_ID (this_ref
) = -1;
2576 DF_REF_REG (this_ref
) = reg
;
2577 DF_REF_REGNO (this_ref
) = regno
;
2578 DF_REF_LOC (this_ref
) = loc
;
2579 DF_REF_INSN (this_ref
) = insn
;
2580 DF_REF_CHAIN (this_ref
) = NULL
;
2581 DF_REF_TYPE (this_ref
) = ref_type
;
2582 DF_REF_FLAGS (this_ref
) = ref_flags
;
2583 DF_REF_BB (this_ref
) = bb
;
2584 DF_REF_NEXT_REG (this_ref
) = NULL
;
2585 DF_REF_PREV_REG (this_ref
) = NULL
;
2586 DF_REF_ORDER (this_ref
) = df
->ref_order
++;
2588 /* We need to clear this bit because fwprop, and in the future
2589 possibly other optimizations sometimes create new refs using ond
2590 refs as the model. */
2591 DF_REF_FLAGS_CLEAR (this_ref
, DF_HARD_REG_LIVE
);
2593 /* See if this ref needs to have DF_HARD_REG_LIVE bit set. */
2594 if ((regno
< FIRST_PSEUDO_REGISTER
)
2595 && (!DF_REF_IS_ARTIFICIAL (this_ref
)))
2597 if (DF_REF_TYPE (this_ref
) == DF_REF_REG_DEF
)
2599 if (!DF_REF_FLAGS_IS_SET (this_ref
, DF_REF_MAY_CLOBBER
))
2600 DF_REF_FLAGS_SET (this_ref
, DF_HARD_REG_LIVE
);
2602 else if (!(TEST_HARD_REG_BIT (elim_reg_set
, regno
)
2603 && (regno
== FRAME_POINTER_REGNUM
2604 || regno
== ARG_POINTER_REGNUM
)))
2605 DF_REF_FLAGS_SET (this_ref
, DF_HARD_REG_LIVE
);
2610 if (DF_REF_TYPE (this_ref
) == DF_REF_REG_DEF
)
2611 collection_rec
->def_vec
[collection_rec
->next_def
++] = this_ref
;
2612 else if (DF_REF_FLAGS (this_ref
) & DF_REF_IN_NOTE
)
2613 collection_rec
->eq_use_vec
[collection_rec
->next_eq_use
++] = this_ref
;
2615 collection_rec
->use_vec
[collection_rec
->next_use
++] = this_ref
;
2622 /* Create new references of type DF_REF_TYPE for each part of register REG
2623 at address LOC within INSN of BB. */
2626 df_ref_record (struct df_collection_rec
*collection_rec
,
2628 basic_block bb
, rtx insn
,
2629 enum df_ref_type ref_type
,
2630 enum df_ref_flags ref_flags
)
2634 gcc_assert (REG_P (reg
) || GET_CODE (reg
) == SUBREG
);
2636 regno
= REGNO (GET_CODE (reg
) == SUBREG
? SUBREG_REG (reg
) : reg
);
2637 if (regno
< FIRST_PSEUDO_REGISTER
)
2639 struct df_mw_hardreg
*hardreg
= NULL
;
2640 struct df_scan_problem_data
*problem_data
2641 = (struct df_scan_problem_data
*) df_scan
->problem_data
;
2643 unsigned int endregno
;
2646 if (GET_CODE (reg
) == SUBREG
)
2648 regno
+= subreg_regno_offset (regno
, GET_MODE (SUBREG_REG (reg
)),
2649 SUBREG_BYTE (reg
), GET_MODE (reg
));
2650 endregno
= regno
+ subreg_nregs (reg
);
2653 endregno
= END_HARD_REGNO (reg
);
2655 /* If this is a multiword hardreg, we create some extra
2656 datastructures that will enable us to easily build REG_DEAD
2657 and REG_UNUSED notes. */
2658 if ((endregno
!= regno
+ 1) && insn
)
2660 /* Sets to a subreg of a multiword register are partial.
2661 Sets to a non-subreg of a multiword register are not. */
2662 if (GET_CODE (reg
) == SUBREG
)
2663 ref_flags
|= DF_REF_PARTIAL
;
2664 ref_flags
|= DF_REF_MW_HARDREG
;
2666 hardreg
= pool_alloc (problem_data
->mw_reg_pool
);
2667 hardreg
->type
= ref_type
;
2668 hardreg
->flags
= ref_flags
;
2669 hardreg
->mw_reg
= reg
;
2670 hardreg
->start_regno
= regno
;
2671 hardreg
->end_regno
= endregno
- 1;
2672 hardreg
->mw_order
= df
->ref_order
++;
2673 collection_rec
->mw_vec
[collection_rec
->next_mw
++] = hardreg
;
2676 for (i
= regno
; i
< endregno
; i
++)
2678 ref
= df_ref_create_structure (collection_rec
, regno_reg_rtx
[i
], loc
,
2679 bb
, insn
, ref_type
, ref_flags
);
2681 gcc_assert (ORIGINAL_REGNO (DF_REF_REG (ref
)) == i
);
2687 ref
= df_ref_create_structure (collection_rec
, reg
, loc
, bb
, insn
,
2688 ref_type
, ref_flags
);
2693 /* A set to a non-paradoxical SUBREG for which the number of word_mode units
2694 covered by the outer mode is smaller than that covered by the inner mode,
2695 is a read-modify-write operation.
2696 This function returns true iff the SUBREG X is such a SUBREG. */
2699 df_read_modify_subreg_p (rtx x
)
2701 unsigned int isize
, osize
;
2702 if (GET_CODE (x
) != SUBREG
)
2704 isize
= GET_MODE_SIZE (GET_MODE (SUBREG_REG (x
)));
2705 osize
= GET_MODE_SIZE (GET_MODE (x
));
2706 return isize
> osize
2707 && isize
> REGMODE_NATURAL_SIZE (GET_MODE (SUBREG_REG (x
)));
2711 /* Process all the registers defined in the rtx, X.
2712 Autoincrement/decrement definitions will be picked up by
2716 df_def_record_1 (struct df_collection_rec
*collection_rec
,
2717 rtx x
, basic_block bb
, rtx insn
,
2718 enum df_ref_flags flags
)
2723 /* We may recursively call ourselves on EXPR_LIST when dealing with PARALLEL
2725 if (GET_CODE (x
) == EXPR_LIST
|| GET_CODE (x
) == CLOBBER
)
2728 loc
= &SET_DEST (x
);
2731 /* It is legal to have a set destination be a parallel. */
2732 if (GET_CODE (dst
) == PARALLEL
)
2736 for (i
= XVECLEN (dst
, 0) - 1; i
>= 0; i
--)
2738 rtx temp
= XVECEXP (dst
, 0, i
);
2739 if (GET_CODE (temp
) == EXPR_LIST
|| GET_CODE (temp
) == CLOBBER
2740 || GET_CODE (temp
) == SET
)
2741 df_def_record_1 (collection_rec
,
2743 GET_CODE (temp
) == CLOBBER
2744 ? flags
| DF_REF_MUST_CLOBBER
: flags
);
2749 /* Maybe, we should flag the use of STRICT_LOW_PART somehow. It might
2750 be handy for the reg allocator. */
2751 while (GET_CODE (dst
) == STRICT_LOW_PART
2752 || GET_CODE (dst
) == ZERO_EXTRACT
)
2754 flags
|= DF_REF_READ_WRITE
| DF_REF_PARTIAL
;
2755 if (GET_CODE (dst
) == ZERO_EXTRACT
)
2756 flags
|= DF_REF_EXTRACT
;
2758 flags
|= DF_REF_STRICT_LOWER_PART
;
2760 loc
= &XEXP (dst
, 0);
2764 /* At this point if we do not have a reg or a subreg, just return. */
2767 df_ref_record (collection_rec
,
2768 dst
, loc
, bb
, insn
, DF_REF_REG_DEF
, flags
);
2770 /* We want to keep sp alive everywhere - by making all
2771 writes to sp also use of sp. */
2772 if (REGNO (dst
) == STACK_POINTER_REGNUM
)
2773 df_ref_record (collection_rec
,
2774 dst
, NULL
, bb
, insn
, DF_REF_REG_USE
, flags
);
2776 else if (GET_CODE (dst
) == SUBREG
&& REG_P (SUBREG_REG (dst
)))
2778 if (df_read_modify_subreg_p (dst
))
2779 flags
|= DF_REF_READ_WRITE
| DF_REF_PARTIAL
;
2781 flags
|= DF_REF_SUBREG
;
2783 df_ref_record (collection_rec
,
2784 dst
, loc
, bb
, insn
, DF_REF_REG_DEF
, flags
);
2789 /* Process all the registers defined in the pattern rtx, X. */
2792 df_defs_record (struct df_collection_rec
*collection_rec
,
2793 rtx x
, basic_block bb
, rtx insn
, enum df_ref_flags flags
)
2795 RTX_CODE code
= GET_CODE (x
);
2797 if (code
== SET
|| code
== CLOBBER
)
2799 /* Mark the single def within the pattern. */
2800 enum df_ref_flags clobber_flags
= flags
;
2801 clobber_flags
|= (code
== CLOBBER
) ? DF_REF_MUST_CLOBBER
: 0;
2802 df_def_record_1 (collection_rec
, x
, bb
, insn
, clobber_flags
);
2804 else if (code
== COND_EXEC
)
2806 df_defs_record (collection_rec
, COND_EXEC_CODE (x
),
2807 bb
, insn
, DF_REF_CONDITIONAL
);
2809 else if (code
== PARALLEL
)
2813 /* Mark the multiple defs within the pattern. */
2814 for (i
= XVECLEN (x
, 0) - 1; i
>= 0; i
--)
2815 df_defs_record (collection_rec
, XVECEXP (x
, 0, i
), bb
, insn
, flags
);
2820 /* Process all the registers used in the rtx at address LOC. */
2823 df_uses_record (struct df_collection_rec
*collection_rec
,
2824 rtx
*loc
, enum df_ref_type ref_type
,
2825 basic_block bb
, rtx insn
, enum df_ref_flags flags
)
2834 code
= GET_CODE (x
);
2851 /* If we are clobbering a MEM, mark any registers inside the address
2853 if (MEM_P (XEXP (x
, 0)))
2854 df_uses_record (collection_rec
,
2855 &XEXP (XEXP (x
, 0), 0),
2856 DF_REF_REG_MEM_STORE
, bb
, insn
, flags
);
2858 /* If we're clobbering a REG then we have a def so ignore. */
2862 df_uses_record (collection_rec
,
2863 &XEXP (x
, 0), DF_REF_REG_MEM_LOAD
,
2864 bb
, insn
, flags
& DF_REF_IN_NOTE
);
2868 /* While we're here, optimize this case. */
2869 flags
|= DF_REF_PARTIAL
;
2870 /* In case the SUBREG is not of a REG, do not optimize. */
2871 if (!REG_P (SUBREG_REG (x
)))
2873 loc
= &SUBREG_REG (x
);
2874 df_uses_record (collection_rec
, loc
, ref_type
, bb
, insn
, flags
);
2877 /* ... Fall through ... */
2880 df_ref_record (collection_rec
,
2881 x
, loc
, bb
, insn
, ref_type
, flags
);
2886 rtx dst
= SET_DEST (x
);
2887 gcc_assert (!(flags
& DF_REF_IN_NOTE
));
2888 df_uses_record (collection_rec
,
2889 &SET_SRC (x
), DF_REF_REG_USE
, bb
, insn
, flags
);
2891 switch (GET_CODE (dst
))
2894 if (df_read_modify_subreg_p (dst
))
2896 df_uses_record (collection_rec
, &SUBREG_REG (dst
),
2897 DF_REF_REG_USE
, bb
, insn
,
2898 flags
| DF_REF_READ_WRITE
| DF_REF_SUBREG
);
2909 df_uses_record (collection_rec
, &XEXP (dst
, 0),
2910 DF_REF_REG_MEM_STORE
, bb
, insn
, flags
);
2912 case STRICT_LOW_PART
:
2914 rtx
*temp
= &XEXP (dst
, 0);
2915 /* A strict_low_part uses the whole REG and not just the
2917 dst
= XEXP (dst
, 0);
2918 df_uses_record (collection_rec
,
2919 (GET_CODE (dst
) == SUBREG
) ? &SUBREG_REG (dst
) : temp
,
2920 DF_REF_REG_USE
, bb
, insn
,
2921 DF_REF_READ_WRITE
| DF_REF_STRICT_LOWER_PART
);
2926 df_uses_record (collection_rec
, &XEXP (dst
, 0),
2927 DF_REF_REG_USE
, bb
, insn
,
2928 DF_REF_READ_WRITE
| DF_REF_EXTRACT
);
2929 df_uses_record (collection_rec
, &XEXP (dst
, 1),
2930 DF_REF_REG_USE
, bb
, insn
, flags
);
2931 df_uses_record (collection_rec
, &XEXP (dst
, 2),
2932 DF_REF_REG_USE
, bb
, insn
, flags
);
2933 dst
= XEXP (dst
, 0);
2945 case UNSPEC_VOLATILE
:
2949 /* Traditional and volatile asm instructions must be
2950 considered to use and clobber all hard registers, all
2951 pseudo-registers and all of memory. So must TRAP_IF and
2952 UNSPEC_VOLATILE operations.
2954 Consider for instance a volatile asm that changes the fpu
2955 rounding mode. An insn should not be moved across this
2956 even if it only uses pseudo-regs because it might give an
2957 incorrectly rounded result.
2959 However, flow.c's liveness computation did *not* do this,
2960 giving the reasoning as " ?!? Unfortunately, marking all
2961 hard registers as live causes massive problems for the
2962 register allocator and marking all pseudos as live creates
2963 mountains of uninitialized variable warnings."
2965 In order to maintain the status quo with regard to liveness
2966 and uses, we do what flow.c did and just mark any regs we
2967 can find in ASM_OPERANDS as used. In global asm insns are
2968 scanned and regs_asm_clobbered is filled out.
2970 For all ASM_OPERANDS, we must traverse the vector of input
2971 operands. We can not just fall through here since then we
2972 would be confused by the ASM_INPUT rtx inside ASM_OPERANDS,
2973 which do not indicate traditional asms unlike their normal
2975 if (code
== ASM_OPERANDS
)
2979 for (j
= 0; j
< ASM_OPERANDS_INPUT_LENGTH (x
); j
++)
2980 df_uses_record (collection_rec
, &ASM_OPERANDS_INPUT (x
, j
),
2981 DF_REF_REG_USE
, bb
, insn
, flags
);
2993 /* Catch the def of the register being modified. */
2994 df_ref_record (collection_rec
, XEXP (x
, 0), &XEXP (x
, 0), bb
, insn
,
2996 flags
| DF_REF_READ_WRITE
| DF_REF_PRE_POST_MODIFY
);
2998 /* ... Fall through to handle uses ... */
3004 /* Recursively scan the operands of this expression. */
3006 const char *fmt
= GET_RTX_FORMAT (code
);
3009 for (i
= GET_RTX_LENGTH (code
) - 1; i
>= 0; i
--)
3013 /* Tail recursive case: save a function call level. */
3019 df_uses_record (collection_rec
, &XEXP (x
, i
), ref_type
, bb
, insn
, flags
);
3021 else if (fmt
[i
] == 'E')
3024 for (j
= 0; j
< XVECLEN (x
, i
); j
++)
3025 df_uses_record (collection_rec
,
3026 &XVECEXP (x
, i
, j
), ref_type
, bb
, insn
, flags
);
3035 /* For all DF_REF_CONDITIONAL defs, add a corresponding uses. */
3038 df_get_conditional_uses (struct df_collection_rec
*collection_rec
)
3041 for (i
= 0; i
< collection_rec
->next_def
; i
++)
3043 struct df_ref
*ref
= collection_rec
->def_vec
[i
];
3044 if (DF_REF_FLAGS_IS_SET (ref
, DF_REF_CONDITIONAL
))
3047 = df_ref_create_structure (collection_rec
, DF_REF_REG (ref
),
3048 DF_REF_LOC (ref
), DF_REF_BB (ref
),
3049 DF_REF_INSN (ref
), DF_REF_REG_USE
,
3050 DF_REF_FLAGS (ref
) & ~DF_REF_CONDITIONAL
);
3051 DF_REF_REGNO (use
) = DF_REF_REGNO (ref
);
3057 /* Get call's extra defs and uses. */
3060 df_get_call_refs (struct df_collection_rec
* collection_rec
,
3063 enum df_ref_flags flags
)
3068 bool is_sibling_call
;
3070 bitmap defs_generated
= BITMAP_ALLOC (&df_bitmap_obstack
);
3072 /* Do not generate clobbers for registers that are the result of the
3073 call. This causes ordering problems in the chain building code
3074 depending on which def is seen first. */
3075 for (i
=0; i
<collection_rec
->next_def
; i
++)
3077 struct df_ref
*def
= collection_rec
->def_vec
[i
];
3078 bitmap_set_bit (defs_generated
, DF_REF_REGNO (def
));
3081 /* Record the registers used to pass arguments, and explicitly
3082 noted as clobbered. */
3083 for (note
= CALL_INSN_FUNCTION_USAGE (insn
); note
;
3084 note
= XEXP (note
, 1))
3086 if (GET_CODE (XEXP (note
, 0)) == USE
)
3087 df_uses_record (collection_rec
, &XEXP (XEXP (note
, 0), 0),
3088 DF_REF_REG_USE
, bb
, insn
, flags
);
3089 else if (GET_CODE (XEXP (note
, 0)) == CLOBBER
)
3091 if (REG_P (XEXP (XEXP (note
, 0), 0)))
3093 unsigned int regno
= REGNO (XEXP (XEXP (note
, 0), 0));
3094 if (!bitmap_bit_p (defs_generated
, regno
))
3095 df_defs_record (collection_rec
, XEXP (note
, 0), bb
,
3099 df_uses_record (collection_rec
, &XEXP (note
, 0),
3100 DF_REF_REG_USE
, bb
, insn
, flags
);
3104 /* The stack ptr is used (honorarily) by a CALL insn. */
3105 df_ref_record (collection_rec
, regno_reg_rtx
[STACK_POINTER_REGNUM
],
3106 NULL
, bb
, insn
, DF_REF_REG_USE
, DF_REF_CALL_STACK_USAGE
| flags
);
3108 /* Calls may also reference any of the global registers,
3109 so they are recorded as used. */
3110 for (i
= 0; i
< FIRST_PSEUDO_REGISTER
; i
++)
3113 df_ref_record (collection_rec
, regno_reg_rtx
[i
],
3114 NULL
, bb
, insn
, DF_REF_REG_USE
, flags
);
3115 df_ref_record (collection_rec
, regno_reg_rtx
[i
],
3116 NULL
, bb
, insn
, DF_REF_REG_DEF
, flags
);
3119 is_sibling_call
= SIBLING_CALL_P (insn
);
3120 EXECUTE_IF_SET_IN_BITMAP (df_invalidated_by_call
, 0, ui
, bi
)
3122 if (!global_regs
[ui
]
3123 && (!bitmap_bit_p (defs_generated
, ui
))
3124 && (!is_sibling_call
3125 || !bitmap_bit_p (df
->exit_block_uses
, ui
)
3126 || refers_to_regno_p (ui
, ui
+1,
3127 current_function_return_rtx
, NULL
)))
3128 df_ref_record (collection_rec
, regno_reg_rtx
[ui
],
3129 NULL
, bb
, insn
, DF_REF_REG_DEF
, DF_REF_MAY_CLOBBER
| flags
);
3132 BITMAP_FREE (defs_generated
);
3136 /* Collect all refs in the INSN. This function is free of any
3137 side-effect - it will create and return a lists of df_ref's in the
3138 COLLECTION_REC without putting those refs into existing ref chains
3142 df_insn_refs_collect (struct df_collection_rec
* collection_rec
,
3143 basic_block bb
, rtx insn
)
3146 bool is_cond_exec
= (GET_CODE (PATTERN (insn
)) == COND_EXEC
);
3148 /* Clear out the collection record. */
3149 collection_rec
->next_def
= 0;
3150 collection_rec
->next_use
= 0;
3151 collection_rec
->next_eq_use
= 0;
3152 collection_rec
->next_mw
= 0;
3154 /* Record register defs. */
3155 df_defs_record (collection_rec
, PATTERN (insn
), bb
, insn
, 0);
3157 /* Process REG_EQUIV/REG_EQUAL notes */
3158 for (note
= REG_NOTES (insn
); note
;
3159 note
= XEXP (note
, 1))
3161 switch (REG_NOTE_KIND (note
))
3165 df_uses_record (collection_rec
,
3166 &XEXP (note
, 0), DF_REF_REG_USE
,
3167 bb
, insn
, DF_REF_IN_NOTE
);
3169 case REG_NON_LOCAL_GOTO
:
3170 /* The frame ptr is used by a non-local goto. */
3171 df_ref_record (collection_rec
,
3172 regno_reg_rtx
[FRAME_POINTER_REGNUM
],
3176 #if FRAME_POINTER_REGNUM != HARD_FRAME_POINTER_REGNUM
3177 df_ref_record (collection_rec
,
3178 regno_reg_rtx
[HARD_FRAME_POINTER_REGNUM
],
3190 df_get_call_refs (collection_rec
, bb
, insn
,
3191 (is_cond_exec
) ? DF_REF_CONDITIONAL
: 0);
3193 /* Record the register uses. */
3194 df_uses_record (collection_rec
,
3195 &PATTERN (insn
), DF_REF_REG_USE
, bb
, insn
, 0);
3197 /* DF_REF_CONDITIONAL needs corresponding USES. */
3199 df_get_conditional_uses (collection_rec
);
3201 df_canonize_collection_rec (collection_rec
);
3204 /* Recompute the luids for the insns in BB. */
3207 df_recompute_luids (basic_block bb
)
3212 df_grow_insn_info ();
3214 /* Scan the block an insn at a time from beginning to end. */
3215 FOR_BB_INSNS (bb
, insn
)
3217 struct df_insn_info
*insn_info
= DF_INSN_GET (insn
);
3218 /* Inserting labels does not always trigger the incremental
3222 gcc_assert (!INSN_P (insn
));
3223 df_insn_create_insn_record (insn
);
3226 DF_INSN_LUID (insn
) = luid
;
3233 /* Returns true if the function entry needs to
3234 define the static chain register. */
3237 df_need_static_chain_reg (struct function
*fun
)
3239 tree fun_context
= decl_function_context (fun
->decl
);
3241 && DECL_NO_STATIC_CHAIN (fun_context
) == false;
3245 /* Collect all artificial refs at the block level for BB and add them
3246 to COLLECTION_REC. */
3249 df_bb_refs_collect (struct df_collection_rec
*collection_rec
, basic_block bb
)
3251 collection_rec
->next_def
= 0;
3252 collection_rec
->next_use
= 0;
3253 collection_rec
->next_eq_use
= 0;
3254 collection_rec
->next_mw
= 0;
3256 if (bb
->index
== ENTRY_BLOCK
)
3258 df_entry_block_defs_collect (collection_rec
, df
->entry_block_defs
);
3261 else if (bb
->index
== EXIT_BLOCK
)
3263 df_exit_block_uses_collect (collection_rec
, df
->exit_block_uses
);
3267 #ifdef EH_RETURN_DATA_REGNO
3268 if (bb_has_eh_pred (bb
))
3271 /* Mark the registers that will contain data for the handler. */
3274 unsigned regno
= EH_RETURN_DATA_REGNO (i
);
3275 if (regno
== INVALID_REGNUM
)
3277 df_ref_record (collection_rec
, regno_reg_rtx
[regno
], NULL
,
3278 bb
, NULL
, DF_REF_REG_DEF
, DF_REF_AT_TOP
);
3285 if (bb_has_eh_pred (bb
))
3288 /* This code is putting in an artificial ref for the use at the
3289 TOP of the block that receives the exception. It is too
3290 cumbersome to actually put the ref on the edge. We could
3291 either model this at the top of the receiver block or the
3292 bottom of the sender block.
3294 The bottom of the sender block is problematic because not all
3295 out-edges of the a block are eh-edges. However, it is true
3296 that all edges into a block are either eh-edges or none of
3297 them are eh-edges. Thus, we can model this at the top of the
3298 eh-receiver for all of the edges at once. */
3299 for (i
= 0; i
< FIRST_PSEUDO_REGISTER
; i
++)
3301 df_ref_record (collection_rec
, regno_reg_rtx
[i
], NULL
,
3302 bb
, NULL
, DF_REF_REG_USE
, DF_REF_AT_TOP
);
3306 /* Add the hard_frame_pointer if this block is the target of a
3308 if (bb
->flags
& BB_NON_LOCAL_GOTO_TARGET
)
3309 df_ref_record (collection_rec
, hard_frame_pointer_rtx
, NULL
,
3310 bb
, NULL
, DF_REF_REG_DEF
, DF_REF_AT_TOP
);
3312 /* Add the artificial uses. */
3313 if (bb
->index
>= NUM_FIXED_BLOCKS
)
3317 bitmap au
= bb_has_eh_pred (bb
)
3318 ? df
->eh_block_artificial_uses
3319 : df
->regular_block_artificial_uses
;
3321 EXECUTE_IF_SET_IN_BITMAP (au
, 0, regno
, bi
)
3323 df_ref_record (collection_rec
, regno_reg_rtx
[regno
], NULL
,
3324 bb
, NULL
, DF_REF_REG_USE
, 0);
3328 df_canonize_collection_rec (collection_rec
);
3332 /* Record all the refs within the basic block BB_INDEX and scan the instructions if SCAN_INSNS. */
3335 df_bb_refs_record (int bb_index
, bool scan_insns
)
3337 basic_block bb
= BASIC_BLOCK (bb_index
);
3340 struct df_scan_bb_info
*bb_info
;
3341 struct df_collection_rec collection_rec
;
3342 collection_rec
.def_vec
= alloca (sizeof (struct df_ref
*) * 1000);
3343 collection_rec
.use_vec
= alloca (sizeof (struct df_ref
*) * 1000);
3344 collection_rec
.eq_use_vec
= alloca (sizeof (struct df_ref
*) * 1000);
3345 collection_rec
.mw_vec
= alloca (sizeof (struct df_mw_hardreg
*) * 100);
3350 bb_info
= df_scan_get_bb_info (bb_index
);
3352 /* Need to make sure that there is a record in the basic block info. */
3355 bb_info
= (struct df_scan_bb_info
*) pool_alloc (df_scan
->block_pool
);
3356 df_scan_set_bb_info (bb_index
, bb_info
);
3357 bb_info
->artificial_defs
= NULL
;
3358 bb_info
->artificial_uses
= NULL
;
3362 /* Scan the block an insn at a time from beginning to end. */
3363 FOR_BB_INSNS (bb
, insn
)
3365 struct df_insn_info
*insn_info
= DF_INSN_GET (insn
);
3366 gcc_assert (!insn_info
);
3368 df_insn_create_insn_record (insn
);
3371 /* Record refs within INSN. */
3372 DF_INSN_LUID (insn
) = luid
++;
3373 df_insn_refs_collect (&collection_rec
, bb
, insn
);
3374 df_refs_add_to_chains (&collection_rec
, bb
, insn
);
3376 DF_INSN_LUID (insn
) = luid
;
3379 /* Other block level artificial refs */
3380 df_bb_refs_collect (&collection_rec
, bb
);
3381 df_refs_add_to_chains (&collection_rec
, bb
, NULL
);
3383 /* Now that the block has been processed, set the block as dirty so
3384 lr and ur will get it processed. */
3385 df_set_bb_dirty (bb
);
3389 /* Get the artificial use set for a regular (i.e. non-exit/non-entry)
3393 df_get_regular_block_artificial_uses (bitmap regular_block_artificial_uses
)
3395 bitmap_clear (regular_block_artificial_uses
);
3397 if (reload_completed
)
3399 if (frame_pointer_needed
)
3400 bitmap_set_bit (regular_block_artificial_uses
, HARD_FRAME_POINTER_REGNUM
);
3403 /* Before reload, there are a few registers that must be forced
3404 live everywhere -- which might not already be the case for
3405 blocks within infinite loops. */
3407 /* Any reference to any pseudo before reload is a potential
3408 reference of the frame pointer. */
3409 bitmap_set_bit (regular_block_artificial_uses
, FRAME_POINTER_REGNUM
);
3411 #if FRAME_POINTER_REGNUM != HARD_FRAME_POINTER_REGNUM
3412 bitmap_set_bit (regular_block_artificial_uses
, HARD_FRAME_POINTER_REGNUM
);
3415 #if FRAME_POINTER_REGNUM != ARG_POINTER_REGNUM
3416 /* Pseudos with argument area equivalences may require
3417 reloading via the argument pointer. */
3418 if (fixed_regs
[ARG_POINTER_REGNUM
])
3419 bitmap_set_bit (regular_block_artificial_uses
, ARG_POINTER_REGNUM
);
3422 /* Any constant, or pseudo with constant equivalences, may
3423 require reloading from memory using the pic register. */
3424 if ((unsigned) PIC_OFFSET_TABLE_REGNUM
!= INVALID_REGNUM
3425 && fixed_regs
[PIC_OFFSET_TABLE_REGNUM
])
3426 bitmap_set_bit (regular_block_artificial_uses
, PIC_OFFSET_TABLE_REGNUM
);
3428 /* The all-important stack pointer must always be live. */
3429 bitmap_set_bit (regular_block_artificial_uses
, STACK_POINTER_REGNUM
);
3433 /* Get the artificial use set for an eh block. */
3436 df_get_eh_block_artificial_uses (bitmap eh_block_artificial_uses
)
3438 bitmap_clear (eh_block_artificial_uses
);
3440 /* The following code (down thru the arg_pointer setting APPEARS
3441 to be necessary because there is nothing that actually
3442 describes what the exception handling code may actually need
3444 if (reload_completed
)
3446 if (frame_pointer_needed
)
3448 bitmap_set_bit (eh_block_artificial_uses
, FRAME_POINTER_REGNUM
);
3449 #if FRAME_POINTER_REGNUM != HARD_FRAME_POINTER_REGNUM
3450 bitmap_set_bit (eh_block_artificial_uses
, HARD_FRAME_POINTER_REGNUM
);
3453 #if FRAME_POINTER_REGNUM != ARG_POINTER_REGNUM
3454 if (fixed_regs
[ARG_POINTER_REGNUM
])
3455 bitmap_set_bit (eh_block_artificial_uses
, ARG_POINTER_REGNUM
);
3462 /*----------------------------------------------------------------------------
3463 Specialized hard register scanning functions.
3464 ----------------------------------------------------------------------------*/
3467 /* Mark a register in SET. Hard registers in large modes get all
3468 of their component registers set as well. */
3471 df_mark_reg (rtx reg
, void *vset
)
3473 bitmap set
= (bitmap
) vset
;
3474 int regno
= REGNO (reg
);
3476 gcc_assert (GET_MODE (reg
) != BLKmode
);
3478 bitmap_set_bit (set
, regno
);
3479 if (regno
< FIRST_PSEUDO_REGISTER
)
3481 int n
= hard_regno_nregs
[regno
][GET_MODE (reg
)];
3483 bitmap_set_bit (set
, regno
+ n
);
3488 /* Set the bit for regs that are considered being defined at the entry. */
3491 df_get_entry_block_def_set (bitmap entry_block_defs
)
3496 bitmap_clear (entry_block_defs
);
3498 for (i
= 0; i
< FIRST_PSEUDO_REGISTER
; i
++)
3500 if (FUNCTION_ARG_REGNO_P (i
))
3501 #ifdef INCOMING_REGNO
3502 bitmap_set_bit (entry_block_defs
, INCOMING_REGNO (i
));
3504 bitmap_set_bit (entry_block_defs
, i
);
3508 /* Once the prologue has been generated, all of these registers
3509 should just show up in the first regular block. */
3510 if (HAVE_prologue
&& epilogue_completed
)
3512 /* Defs for the callee saved registers are inserted so that the
3513 pushes have some defining location. */
3514 for (i
= 0; i
< FIRST_PSEUDO_REGISTER
; i
++)
3515 if ((call_used_regs
[i
] == 0) && (df_regs_ever_live_p (i
)))
3516 bitmap_set_bit (entry_block_defs
, i
);
3520 /* The always important stack pointer. */
3521 bitmap_set_bit (entry_block_defs
, STACK_POINTER_REGNUM
);
3523 /* If STATIC_CHAIN_INCOMING_REGNUM == STATIC_CHAIN_REGNUM
3524 only STATIC_CHAIN_REGNUM is defined. If they are different,
3525 we only care about the STATIC_CHAIN_INCOMING_REGNUM. */
3526 #ifdef STATIC_CHAIN_INCOMING_REGNUM
3527 bitmap_set_bit (entry_block_defs
, STATIC_CHAIN_INCOMING_REGNUM
);
3529 #ifdef STATIC_CHAIN_REGNUM
3530 bitmap_set_bit (entry_block_defs
, STATIC_CHAIN_REGNUM
);
3534 r
= targetm
.calls
.struct_value_rtx (current_function_decl
, true);
3536 bitmap_set_bit (entry_block_defs
, REGNO (r
));
3539 if ((!reload_completed
) || frame_pointer_needed
)
3541 /* Any reference to any pseudo before reload is a potential
3542 reference of the frame pointer. */
3543 bitmap_set_bit (entry_block_defs
, FRAME_POINTER_REGNUM
);
3544 #if FRAME_POINTER_REGNUM != HARD_FRAME_POINTER_REGNUM
3545 /* If they are different, also mark the hard frame pointer as live. */
3546 if (!LOCAL_REGNO (HARD_FRAME_POINTER_REGNUM
))
3547 bitmap_set_bit (entry_block_defs
, HARD_FRAME_POINTER_REGNUM
);
3551 /* These registers are live everywhere. */
3552 if (!reload_completed
)
3555 /* The ia-64, the only machine that uses this, does not define these
3556 until after reload. */
3557 for (i
= 0; i
< FIRST_PSEUDO_REGISTER
; i
++)
3560 bitmap_set_bit (entry_block_defs
, i
);
3564 #if FRAME_POINTER_REGNUM != ARG_POINTER_REGNUM
3565 /* Pseudos with argument area equivalences may require
3566 reloading via the argument pointer. */
3567 if (fixed_regs
[ARG_POINTER_REGNUM
])
3568 bitmap_set_bit (entry_block_defs
, ARG_POINTER_REGNUM
);
3571 #ifdef PIC_OFFSET_TABLE_REGNUM
3572 /* Any constant, or pseudo with constant equivalences, may
3573 require reloading from memory using the pic register. */
3574 if ((unsigned) PIC_OFFSET_TABLE_REGNUM
!= INVALID_REGNUM
3575 && fixed_regs
[PIC_OFFSET_TABLE_REGNUM
])
3576 bitmap_set_bit (entry_block_defs
, PIC_OFFSET_TABLE_REGNUM
);
3580 #ifdef INCOMING_RETURN_ADDR_RTX
3581 if (REG_P (INCOMING_RETURN_ADDR_RTX
))
3582 bitmap_set_bit (entry_block_defs
, REGNO (INCOMING_RETURN_ADDR_RTX
));
3585 targetm
.live_on_entry (entry_block_defs
);
3587 /* If the function has an incoming STATIC_CHAIN,
3588 it has to show up in the entry def set. */
3589 if (df_need_static_chain_reg (cfun
))
3591 #ifdef STATIC_CHAIN_INCOMING_REGNUM
3592 bitmap_set_bit (entry_block_defs
, STATIC_CHAIN_INCOMING_REGNUM
);
3594 #ifdef STATIC_CHAIN_REGNUM
3595 bitmap_set_bit (entry_block_defs
, STATIC_CHAIN_REGNUM
);
3602 /* Return the (conservative) set of hard registers that are defined on
3603 entry to the function.
3604 It uses df->entry_block_defs to determine which register
3605 reference to include. */
3608 df_entry_block_defs_collect (struct df_collection_rec
*collection_rec
,
3609 bitmap entry_block_defs
)
3614 EXECUTE_IF_SET_IN_BITMAP (entry_block_defs
, 0, i
, bi
)
3616 df_ref_record (collection_rec
, regno_reg_rtx
[i
], NULL
,
3617 ENTRY_BLOCK_PTR
, NULL
, DF_REF_REG_DEF
, 0);
3620 df_canonize_collection_rec (collection_rec
);
3624 /* Record the (conservative) set of hard registers that are defined on
3625 entry to the function. */
3628 df_record_entry_block_defs (bitmap entry_block_defs
)
3630 struct df_collection_rec collection_rec
;
3631 memset (&collection_rec
, 0, sizeof (struct df_collection_rec
));
3632 collection_rec
.def_vec
= alloca (sizeof (struct df_ref
*) * FIRST_PSEUDO_REGISTER
);
3634 df_entry_block_defs_collect (&collection_rec
, entry_block_defs
);
3636 /* Process bb_refs chain */
3637 df_refs_add_to_chains (&collection_rec
, BASIC_BLOCK (ENTRY_BLOCK
), NULL
);
3641 /* Update the defs in the entry block. */
3644 df_update_entry_block_defs (void)
3646 bitmap refs
= BITMAP_ALLOC (&df_bitmap_obstack
);
3647 bool changed
= false;
3649 df_get_entry_block_def_set (refs
);
3650 if (df
->entry_block_defs
)
3652 if (!bitmap_equal_p (df
->entry_block_defs
, refs
))
3654 struct df_scan_bb_info
*bb_info
= df_scan_get_bb_info (ENTRY_BLOCK
);
3655 df_ref_chain_delete_du_chain (bb_info
->artificial_defs
);
3656 df_ref_chain_delete (bb_info
->artificial_defs
);
3657 bb_info
->artificial_defs
= NULL
;
3663 struct df_scan_problem_data
*problem_data
3664 = (struct df_scan_problem_data
*) df_scan
->problem_data
;
3665 df
->entry_block_defs
= BITMAP_ALLOC (&problem_data
->reg_bitmaps
);
3671 df_record_entry_block_defs (refs
);
3672 bitmap_copy (df
->entry_block_defs
, refs
);
3673 df_set_bb_dirty (BASIC_BLOCK (ENTRY_BLOCK
));
3679 /* Set the bit for regs that are considered being used at the exit. */
3682 df_get_exit_block_use_set (bitmap exit_block_uses
)
3686 bitmap_clear (exit_block_uses
);
3688 /* Stack pointer is always live at the exit. */
3689 bitmap_set_bit (exit_block_uses
, STACK_POINTER_REGNUM
);
3691 /* Mark the frame pointer if needed at the end of the function.
3692 If we end up eliminating it, it will be removed from the live
3693 list of each basic block by reload. */
3695 if ((!reload_completed
) || frame_pointer_needed
)
3697 bitmap_set_bit (exit_block_uses
, FRAME_POINTER_REGNUM
);
3698 #if FRAME_POINTER_REGNUM != HARD_FRAME_POINTER_REGNUM
3699 /* If they are different, also mark the hard frame pointer as live. */
3700 if (!LOCAL_REGNO (HARD_FRAME_POINTER_REGNUM
))
3701 bitmap_set_bit (exit_block_uses
, HARD_FRAME_POINTER_REGNUM
);
3705 #ifndef PIC_OFFSET_TABLE_REG_CALL_CLOBBERED
3706 /* Many architectures have a GP register even without flag_pic.
3707 Assume the pic register is not in use, or will be handled by
3708 other means, if it is not fixed. */
3709 if ((unsigned) PIC_OFFSET_TABLE_REGNUM
!= INVALID_REGNUM
3710 && fixed_regs
[PIC_OFFSET_TABLE_REGNUM
])
3711 bitmap_set_bit (exit_block_uses
, PIC_OFFSET_TABLE_REGNUM
);
3714 /* Mark all global registers, and all registers used by the
3715 epilogue as being live at the end of the function since they
3716 may be referenced by our caller. */
3717 for (i
= 0; i
< FIRST_PSEUDO_REGISTER
; i
++)
3718 if (global_regs
[i
] || EPILOGUE_USES (i
))
3719 bitmap_set_bit (exit_block_uses
, i
);
3721 if (HAVE_epilogue
&& epilogue_completed
)
3723 /* Mark all call-saved registers that we actually used. */
3724 for (i
= 0; i
< FIRST_PSEUDO_REGISTER
; i
++)
3725 if (df_regs_ever_live_p (i
) && !LOCAL_REGNO (i
)
3726 && !TEST_HARD_REG_BIT (regs_invalidated_by_call
, i
))
3727 bitmap_set_bit (exit_block_uses
, i
);
3730 #ifdef EH_RETURN_DATA_REGNO
3731 /* Mark the registers that will contain data for the handler. */
3732 if (reload_completed
&& current_function_calls_eh_return
)
3735 unsigned regno
= EH_RETURN_DATA_REGNO (i
);
3736 if (regno
== INVALID_REGNUM
)
3738 bitmap_set_bit (exit_block_uses
, regno
);
3742 #ifdef EH_RETURN_STACKADJ_RTX
3743 if ((!HAVE_epilogue
|| ! epilogue_completed
)
3744 && current_function_calls_eh_return
)
3746 rtx tmp
= EH_RETURN_STACKADJ_RTX
;
3747 if (tmp
&& REG_P (tmp
))
3748 df_mark_reg (tmp
, exit_block_uses
);
3752 #ifdef EH_RETURN_HANDLER_RTX
3753 if ((!HAVE_epilogue
|| ! epilogue_completed
)
3754 && current_function_calls_eh_return
)
3756 rtx tmp
= EH_RETURN_HANDLER_RTX
;
3757 if (tmp
&& REG_P (tmp
))
3758 df_mark_reg (tmp
, exit_block_uses
);
3762 /* Mark function return value. */
3763 diddle_return_value (df_mark_reg
, (void*) exit_block_uses
);
3767 /* Return the refs of hard registers that are used in the exit block.
3768 It uses df->exit_block_uses to determine register to include. */
3771 df_exit_block_uses_collect (struct df_collection_rec
*collection_rec
, bitmap exit_block_uses
)
3776 EXECUTE_IF_SET_IN_BITMAP (exit_block_uses
, 0, i
, bi
)
3777 df_ref_record (collection_rec
, regno_reg_rtx
[i
], NULL
,
3778 EXIT_BLOCK_PTR
, NULL
, DF_REF_REG_USE
, 0);
3780 #if FRAME_POINTER_REGNUM != ARG_POINTER_REGNUM
3781 /* It is deliberate that this is not put in the exit block uses but
3782 I do not know why. */
3783 if (reload_completed
3784 && !bitmap_bit_p (exit_block_uses
, ARG_POINTER_REGNUM
)
3785 && bb_has_eh_pred (EXIT_BLOCK_PTR
)
3786 && fixed_regs
[ARG_POINTER_REGNUM
])
3787 df_ref_record (collection_rec
, regno_reg_rtx
[ARG_POINTER_REGNUM
], NULL
,
3788 EXIT_BLOCK_PTR
, NULL
, DF_REF_REG_USE
, 0);
3791 df_canonize_collection_rec (collection_rec
);
3795 /* Record the set of hard registers that are used in the exit block.
3796 It uses df->exit_block_uses to determine which bit to include. */
3799 df_record_exit_block_uses (bitmap exit_block_uses
)
3801 struct df_collection_rec collection_rec
;
3802 memset (&collection_rec
, 0, sizeof (struct df_collection_rec
));
3803 collection_rec
.use_vec
= alloca (sizeof (struct df_ref
*) * FIRST_PSEUDO_REGISTER
);
3805 df_exit_block_uses_collect (&collection_rec
, exit_block_uses
);
3807 /* Process bb_refs chain */
3808 df_refs_add_to_chains (&collection_rec
, BASIC_BLOCK (EXIT_BLOCK
), NULL
);
3812 /* Update the uses in the exit block. */
3815 df_update_exit_block_uses (void)
3817 bitmap refs
= BITMAP_ALLOC (&df_bitmap_obstack
);
3818 bool changed
= false;
3820 df_get_exit_block_use_set (refs
);
3821 if (df
->exit_block_uses
)
3823 if (!bitmap_equal_p (df
->exit_block_uses
, refs
))
3825 struct df_scan_bb_info
*bb_info
= df_scan_get_bb_info (EXIT_BLOCK
);
3826 df_ref_chain_delete_du_chain (bb_info
->artificial_uses
);
3827 df_ref_chain_delete (bb_info
->artificial_uses
);
3828 bb_info
->artificial_uses
= NULL
;
3834 struct df_scan_problem_data
*problem_data
3835 = (struct df_scan_problem_data
*) df_scan
->problem_data
;
3836 df
->exit_block_uses
= BITMAP_ALLOC (&problem_data
->reg_bitmaps
);
3842 df_record_exit_block_uses (refs
);
3843 bitmap_copy (df
->exit_block_uses
, refs
);
3844 df_set_bb_dirty (BASIC_BLOCK (EXIT_BLOCK
));
3849 static bool initialized
= false;
3852 /* Initialize some platform specific structures. */
3855 df_hard_reg_init (void)
3858 #ifdef ELIMINABLE_REGS
3859 static const struct {const int from
, to
; } eliminables
[] = ELIMINABLE_REGS
;
3864 bitmap_obstack_initialize (&persistent_obstack
);
3866 /* Record which registers will be eliminated. We use this in
3868 CLEAR_HARD_REG_SET (elim_reg_set
);
3870 #ifdef ELIMINABLE_REGS
3871 for (i
= 0; i
< (int) ARRAY_SIZE (eliminables
); i
++)
3872 SET_HARD_REG_BIT (elim_reg_set
, eliminables
[i
].from
);
3874 SET_HARD_REG_BIT (elim_reg_set
, FRAME_POINTER_REGNUM
);
3877 df_invalidated_by_call
= BITMAP_ALLOC (&persistent_obstack
);
3879 /* Inconveniently, this is only readily available in hard reg set
3881 for (i
= 0; i
< FIRST_PSEUDO_REGISTER
; ++i
)
3882 if (TEST_HARD_REG_BIT (regs_invalidated_by_call
, i
))
3883 bitmap_set_bit (df_invalidated_by_call
, i
);
3889 /* Recompute the parts of scanning that are based on regs_ever_live
3890 because something changed in that array. */
3893 df_update_entry_exit_and_calls (void)
3897 df_update_entry_block_defs ();
3898 df_update_exit_block_uses ();
3900 /* The call insns need to be rescanned because there may be changes
3901 in the set of registers clobbered across the call. */
3905 FOR_BB_INSNS (bb
, insn
)
3907 if (INSN_P (insn
) && CALL_P (insn
))
3908 df_insn_rescan (insn
);
3914 /* Return true if hard REG is actually used in the some instruction.
3915 There are a fair number of conditions that affect the setting of
3916 this array. See the comment in df.h for df->hard_regs_live_count
3917 for the conditions that this array is set. */
3920 df_hard_reg_used_p (unsigned int reg
)
3923 return df
->hard_regs_live_count
[reg
] != 0;
3927 /* A count of the number of times REG is actually used in the some
3928 instruction. There are a fair number of conditions that affect the
3929 setting of this array. See the comment in df.h for
3930 df->hard_regs_live_count for the conditions that this array is
3935 df_hard_reg_used_count (unsigned int reg
)
3938 return df
->hard_regs_live_count
[reg
];
3942 /* Get the value of regs_ever_live[REGNO]. */
3945 df_regs_ever_live_p (unsigned int regno
)
3947 return regs_ever_live
[regno
];
3951 /* Set regs_ever_live[REGNO] to VALUE. If this cause regs_ever_live
3952 to change, schedule that change for the next update. */
3955 df_set_regs_ever_live (unsigned int regno
, bool value
)
3957 if (regs_ever_live
[regno
] == value
)
3960 regs_ever_live
[regno
] = value
;
3962 df
->redo_entry_and_exit
= true;
3966 /* Compute "regs_ever_live" information from the underlying df
3967 information. Set the vector to all false if RESET. */
3970 df_compute_regs_ever_live (bool reset
)
3973 bool changed
= df
->redo_entry_and_exit
;
3976 memset (regs_ever_live
, 0, sizeof (regs_ever_live
));
3978 for (i
= 0; i
< FIRST_PSEUDO_REGISTER
; i
++)
3979 if ((!regs_ever_live
[i
]) && df_hard_reg_used_p (i
))
3981 regs_ever_live
[i
] = true;
3985 df_update_entry_exit_and_calls ();
3986 df
->redo_entry_and_exit
= false;
3990 /*----------------------------------------------------------------------------
3991 Dataflow ref information verification functions.
3993 df_reg_chain_mark (refs, regno, is_def, is_eq_use)
3994 df_reg_chain_verify_unmarked (refs)
3995 df_refs_verify (ref*, ref*, bool)
3996 df_mws_verify (mw*, mw*, bool)
3997 df_insn_refs_verify (collection_rec, bb, insn, bool)
3998 df_bb_refs_verify (bb, refs, bool)
4000 df_exit_block_bitmap_verify (bool)
4001 df_entry_block_bitmap_verify (bool)
4003 ----------------------------------------------------------------------------*/
4006 /* Mark all refs in the reg chain. Verify that all of the registers
4007 are in the correct chain. */
4010 df_reg_chain_mark (struct df_ref
*refs
, unsigned int regno
,
4011 bool is_def
, bool is_eq_use
)
4013 unsigned int count
= 0;
4015 for (ref
= refs
; ref
; ref
= DF_REF_NEXT_REG (ref
))
4017 gcc_assert (!DF_REF_IS_REG_MARKED (ref
));
4019 /* If there are no def-use or use-def chains, make sure that all
4020 of the chains are clear. */
4022 gcc_assert (!DF_REF_CHAIN (ref
));
4024 /* Check to make sure the ref is in the correct chain. */
4025 gcc_assert (DF_REF_REGNO (ref
) == regno
);
4027 gcc_assert (DF_REF_TYPE(ref
) == DF_REF_REG_DEF
);
4029 gcc_assert (DF_REF_TYPE(ref
) != DF_REF_REG_DEF
);
4032 gcc_assert ((DF_REF_FLAGS (ref
) & DF_REF_IN_NOTE
));
4034 gcc_assert ((DF_REF_FLAGS (ref
) & DF_REF_IN_NOTE
) == 0);
4037 gcc_assert (ref
->next_reg
->prev_reg
== ref
);
4039 DF_REF_REG_MARK (ref
);
4045 /* Verify that all of the registers in the chain are unmarked. */
4048 df_reg_chain_verify_unmarked (struct df_ref
*refs
)
4051 for (ref
= refs
; ref
; ref
= DF_REF_NEXT_REG (ref
))
4052 gcc_assert (!DF_REF_IS_REG_MARKED (ref
));
4056 /* Verify that NEW_REC and OLD_REC have exactly the same members. */
4059 df_refs_verify (struct df_ref
**new_rec
, struct df_ref
**old_rec
,
4062 while ((*new_rec
) && (*old_rec
))
4064 if (!df_ref_equal_p (*new_rec
, *old_rec
))
4072 /* Abort if fail is called from the function level verifier. If
4073 that is the context, mark this reg as being seem. */
4076 gcc_assert (DF_REF_IS_REG_MARKED (*old_rec
));
4077 DF_REF_REG_UNMARK (*old_rec
);
4085 gcc_assert ((*new_rec
== NULL
) && (*old_rec
== NULL
));
4087 return ((*new_rec
== NULL
) && (*old_rec
== NULL
));
4092 /* Verify that NEW_REC and OLD_REC have exactly the same members. */
4095 df_mws_verify (struct df_mw_hardreg
**new_rec
, struct df_mw_hardreg
**old_rec
,
4098 while ((*new_rec
) && (*old_rec
))
4100 if (!df_mw_equal_p (*new_rec
, *old_rec
))
4112 gcc_assert ((*new_rec
== NULL
) && (*old_rec
== NULL
));
4114 return ((*new_rec
== NULL
) && (*old_rec
== NULL
));
4119 /* Return true if the existing insn refs information is complete and
4120 correct. Otherwise (i.e. if there's any missing or extra refs),
4121 return the correct df_ref chain in REFS_RETURN.
4123 If ABORT_IF_FAIL, leave the refs that are verified (already in the
4124 ref chain) as DF_REF_MARKED(). If it's false, then it's a per-insn
4125 verification mode instead of the whole function, so unmark
4128 If ABORT_IF_FAIL is set, this function never returns false. */
4131 df_insn_refs_verify (struct df_collection_rec
*collection_rec
,
4136 bool ret1
, ret2
, ret3
, ret4
;
4137 unsigned int uid
= INSN_UID (insn
);
4139 df_insn_refs_collect (collection_rec
, bb
, insn
);
4141 if (!DF_INSN_UID_DEFS (uid
))
4143 /* The insn_rec was created but it was never filled out. */
4150 /* Unfortunately we cannot opt out early if one of these is not
4151 right because the marks will not get cleared. */
4152 ret1
= df_refs_verify (collection_rec
->def_vec
, DF_INSN_UID_DEFS (uid
),
4154 ret2
= df_refs_verify (collection_rec
->use_vec
, DF_INSN_UID_USES (uid
),
4156 ret3
= df_refs_verify (collection_rec
->eq_use_vec
, DF_INSN_UID_EQ_USES (uid
),
4158 ret4
= df_mws_verify (collection_rec
->mw_vec
, DF_INSN_UID_MWS (uid
),
4160 return (ret1
&& ret2
&& ret3
&& ret4
);
4164 /* Return true if all refs in the basic block are correct and complete.
4165 Due to df_ref_chain_verify, it will cause all refs
4166 that are verified to have DF_REF_MARK bit set. */
4169 df_bb_verify (basic_block bb
)
4172 struct df_scan_bb_info
*bb_info
= df_scan_get_bb_info (bb
->index
);
4173 struct df_collection_rec collection_rec
;
4175 memset (&collection_rec
, 0, sizeof (struct df_collection_rec
));
4176 collection_rec
.def_vec
= alloca (sizeof (struct df_ref
*) * 1000);
4177 collection_rec
.use_vec
= alloca (sizeof (struct df_ref
*) * 1000);
4178 collection_rec
.eq_use_vec
= alloca (sizeof (struct df_ref
*) * 1000);
4179 collection_rec
.mw_vec
= alloca (sizeof (struct df_mw_hardreg
*) * 100);
4181 gcc_assert (bb_info
);
4183 /* Scan the block an insn at a time from beginning to end. */
4184 FOR_BB_INSNS_REVERSE (bb
, insn
)
4188 df_insn_refs_verify (&collection_rec
, bb
, insn
, true);
4189 df_free_collection_rec (&collection_rec
);
4192 /* Do the artificial defs and uses. */
4193 df_bb_refs_collect (&collection_rec
, bb
);
4194 df_refs_verify (collection_rec
.def_vec
, df_get_artificial_defs (bb
->index
), true);
4195 df_refs_verify (collection_rec
.use_vec
, df_get_artificial_uses (bb
->index
), true);
4196 df_free_collection_rec (&collection_rec
);
4202 /* Returns true if the entry block has correct and complete df_ref set.
4203 If not it either aborts if ABORT_IF_FAIL is true or returns false. */
4206 df_entry_block_bitmap_verify (bool abort_if_fail
)
4208 bitmap entry_block_defs
= BITMAP_ALLOC (&df_bitmap_obstack
);
4211 df_get_entry_block_def_set (entry_block_defs
);
4213 is_eq
= bitmap_equal_p (entry_block_defs
, df
->entry_block_defs
);
4215 if (!is_eq
&& abort_if_fail
)
4217 print_current_pass (stderr
);
4218 fprintf (stderr
, "entry_block_defs = ");
4219 df_print_regset (stderr
, entry_block_defs
);
4220 fprintf (stderr
, "df->entry_block_defs = ");
4221 df_print_regset (stderr
, df
->entry_block_defs
);
4225 BITMAP_FREE (entry_block_defs
);
4231 /* Returns true if the exit block has correct and complete df_ref set.
4232 If not it either aborts if ABORT_IF_FAIL is true or returns false. */
4235 df_exit_block_bitmap_verify (bool abort_if_fail
)
4237 bitmap exit_block_uses
= BITMAP_ALLOC (&df_bitmap_obstack
);
4240 df_get_exit_block_use_set (exit_block_uses
);
4242 is_eq
= bitmap_equal_p (exit_block_uses
, df
->exit_block_uses
);
4244 if (!is_eq
&& abort_if_fail
)
4246 print_current_pass (stderr
);
4247 fprintf (stderr
, "exit_block_uses = ");
4248 df_print_regset (stderr
, exit_block_uses
);
4249 fprintf (stderr
, "df->exit_block_uses = ");
4250 df_print_regset (stderr
, df
->exit_block_uses
);
4254 BITMAP_FREE (exit_block_uses
);
4260 /* Return true if df_ref information for all insns in all BLOCKS are
4261 correct and complete. If BLOCKS is null, all blocks are
4265 df_scan_verify (void)
4269 bitmap regular_block_artificial_uses
;
4270 bitmap eh_block_artificial_uses
;
4275 /* Verification is a 4 step process. */
4277 /* (1) All of the refs are marked by going thru the reg chains. */
4278 for (i
= 0; i
< DF_REG_SIZE (df
); i
++)
4280 gcc_assert (df_reg_chain_mark (DF_REG_DEF_CHAIN (i
), i
, true, false)
4281 == DF_REG_DEF_COUNT(i
));
4282 gcc_assert (df_reg_chain_mark (DF_REG_USE_CHAIN (i
), i
, false, false)
4283 == DF_REG_USE_COUNT(i
));
4284 gcc_assert (df_reg_chain_mark (DF_REG_EQ_USE_CHAIN (i
), i
, false, true)
4285 == DF_REG_EQ_USE_COUNT(i
));
4288 /* (2) There are various bitmaps whose value may change over the
4289 course of the compilation. This step recomputes them to make
4290 sure that they have not slipped out of date. */
4291 regular_block_artificial_uses
= BITMAP_ALLOC (&df_bitmap_obstack
);
4292 eh_block_artificial_uses
= BITMAP_ALLOC (&df_bitmap_obstack
);
4294 df_get_regular_block_artificial_uses (regular_block_artificial_uses
);
4295 df_get_eh_block_artificial_uses (eh_block_artificial_uses
);
4297 bitmap_ior_into (eh_block_artificial_uses
,
4298 regular_block_artificial_uses
);
4300 /* Check artificial_uses bitmaps didn't change. */
4301 gcc_assert (bitmap_equal_p (regular_block_artificial_uses
,
4302 df
->regular_block_artificial_uses
));
4303 gcc_assert (bitmap_equal_p (eh_block_artificial_uses
,
4304 df
->eh_block_artificial_uses
));
4306 BITMAP_FREE (regular_block_artificial_uses
);
4307 BITMAP_FREE (eh_block_artificial_uses
);
4309 /* Verify entry block and exit block. These only verify the bitmaps,
4310 the refs are verified in df_bb_verify. */
4311 df_entry_block_bitmap_verify (true);
4312 df_exit_block_bitmap_verify (true);
4314 /* (3) All of the insns in all of the blocks are traversed and the
4315 marks are cleared both in the artificial refs attached to the
4316 blocks and the real refs inside the insns. It is a failure to
4317 clear a mark that has not been set as this means that the ref in
4318 the block or insn was not in the reg chain. */
4323 /* (4) See if all reg chains are traversed a second time. This time
4324 a check is made that the marks are clear. A set mark would be a
4325 from a reg that is not in any insn or basic block. */
4327 for (i
= 0; i
< DF_REG_SIZE (df
); i
++)
4329 df_reg_chain_verify_unmarked (DF_REG_DEF_CHAIN (i
));
4330 df_reg_chain_verify_unmarked (DF_REG_USE_CHAIN (i
));
4331 df_reg_chain_verify_unmarked (DF_REG_EQ_USE_CHAIN (i
));