]> gcc.gnu.org Git - gcc.git/blame - gcc/df-scan.cc
docs: fix: WARNING: Parsing of expression failed. Using fallback parser.
[gcc.git] / gcc / df-scan.cc
CommitLineData
4d779342 1/* Scanning of rtl for dataflow analysis.
7adcbafe 2 Copyright (C) 1999-2022 Free Software Foundation, Inc.
b8698a0f 3 Originally contributed by Michael P. Hayes
4d779342
DB
4 (m.hayes@elec.canterbury.ac.nz, mhayes@redhat.com)
5 Major rewrite contributed by Danny Berlin (dberlin@dberlin.org)
6 and Kenneth Zadeck (zadeck@naturalbridge.com).
7
8This file is part of GCC.
9
10GCC is free software; you can redistribute it and/or modify it under
11the terms of the GNU General Public License as published by the Free
9dcd6f09 12Software Foundation; either version 3, or (at your option) any later
4d779342
DB
13version.
14
15GCC is distributed in the hope that it will be useful, but WITHOUT ANY
16WARRANTY; without even the implied warranty of MERCHANTABILITY or
17FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
18for more details.
19
20You should have received a copy of the GNU General Public License
9dcd6f09
NC
21along with GCC; see the file COPYING3. If not see
22<http://www.gnu.org/licenses/>. */
4d779342
DB
23
24#include "config.h"
25#include "system.h"
26#include "coretypes.h"
c7131fb2 27#include "backend.h"
957060b5 28#include "target.h"
4d779342 29#include "rtl.h"
957060b5 30#include "tree.h"
c7131fb2 31#include "df.h"
4d0cdd0c 32#include "memmodel.h"
4d779342 33#include "tm_p.h"
957060b5
AM
34#include "regs.h"
35#include "emit-rtl.h" /* FIXME: Can go away once crtl is moved to rtl.h. */
7ee2468b 36#include "dumpfile.h"
4b522b8f 37#include "calls.h"
5a5a3bc5 38#include "function-abi.h"
c2569604 39
4d779342
DB
40/* The set of hard registers in eliminables[i].from. */
41
42static HARD_REG_SET elim_reg_set;
43
4d779342
DB
44/* Initialize ur_in and ur_out as if all hard registers were partially
45 available. */
46
6c1dae73 47class df_collection_rec
6fb5fa3c 48{
6c1dae73 49public:
00f96dc9
TS
50 auto_vec<df_ref, 128> def_vec;
51 auto_vec<df_ref, 32> use_vec;
52 auto_vec<df_ref, 32> eq_use_vec;
526ceb68 53 auto_vec<df_mw_hardreg *, 32> mw_vec;
6fb5fa3c
DB
54};
55
99b1c316 56static void df_ref_record (enum df_ref_class, class df_collection_rec *,
b8698a0f 57 rtx, rtx *,
50e94c7e 58 basic_block, struct df_insn_info *,
502ef838 59 enum df_ref_type, int ref_flags);
99b1c316 60static void df_def_record_1 (class df_collection_rec *, rtx *,
50e94c7e 61 basic_block, struct df_insn_info *,
bbbbb16a 62 int ref_flags);
99b1c316 63static void df_defs_record (class df_collection_rec *, rtx,
50e94c7e 64 basic_block, struct df_insn_info *,
bbbbb16a 65 int ref_flags);
99b1c316 66static void df_uses_record (class df_collection_rec *,
6fb5fa3c 67 rtx *, enum df_ref_type,
50e94c7e 68 basic_block, struct df_insn_info *,
502ef838 69 int ref_flags);
4d779342 70
dc007c1f 71static void df_install_ref_incremental (df_ref);
99b1c316 72static void df_insn_refs_collect (class df_collection_rec*,
b8698a0f 73 basic_block, struct df_insn_info *);
99b1c316 74static void df_canonize_collection_rec (class df_collection_rec *);
6fb5fa3c
DB
75
76static void df_get_regular_block_artificial_uses (bitmap);
77static void df_get_eh_block_artificial_uses (bitmap);
78
79static void df_record_entry_block_defs (bitmap);
80static void df_record_exit_block_uses (bitmap);
81static void df_get_exit_block_use_set (bitmap);
82static void df_get_entry_block_def_set (bitmap);
4d779342 83static void df_grow_ref_info (struct df_ref_info *, unsigned int);
b512946c
RS
84static void df_ref_chain_delete_du_chain (df_ref);
85static void df_ref_chain_delete (df_ref);
4d779342 86
99b1c316 87static void df_refs_add_to_chains (class df_collection_rec *,
b2908ba6 88 basic_block, rtx_insn *, unsigned int);
6fb5fa3c 89
99b1c316 90static bool df_insn_refs_verify (class df_collection_rec *, basic_block,
b2908ba6 91 rtx_insn *, bool);
99b1c316
MS
92static void df_entry_block_defs_collect (class df_collection_rec *, bitmap);
93static void df_exit_block_uses_collect (class df_collection_rec *, bitmap);
b8698a0f 94static void df_install_ref (df_ref, struct df_reg_info *,
6fb5fa3c
DB
95 struct df_ref_info *, bool);
96
b512946c
RS
97static int df_ref_compare (df_ref, df_ref);
98static int df_ref_ptr_compare (const void *, const void *);
99static int df_mw_compare (const df_mw_hardreg *, const df_mw_hardreg *);
100static int df_mw_ptr_compare (const void *, const void *);
6fb5fa3c 101
80eb8028
SB
102static void df_insn_info_delete (unsigned int);
103
6fb5fa3c
DB
104/* Indexed by hardware reg number, is true if that register is ever
105 used in the current function.
106
e53b6e56 107 In df-scan.cc, this is set up to record the hard regs used
6fb5fa3c
DB
108 explicitly. Reload adds in the hard regs used for holding pseudo
109 regs. Final uses it to generate the code in the function prologue
110 and epilogue to save and restore registers as needed. */
111
112static bool regs_ever_live[FIRST_PSEUDO_REGISTER];
ff4c81cc
TS
113
114/* Flags used to tell df_refs_add_to_chains() which vectors it should copy. */
115static const unsigned int copy_defs = 0x1;
116static const unsigned int copy_uses = 0x2;
117static const unsigned int copy_eq_uses = 0x4;
118static const unsigned int copy_mw = 0x8;
119static const unsigned int copy_all = copy_defs | copy_uses | copy_eq_uses
120| copy_mw;
4d779342
DB
121\f
122/*----------------------------------------------------------------------------
123 SCANNING DATAFLOW PROBLEM
124
125 There are several ways in which scanning looks just like the other
126 dataflow problems. It shares the all the mechanisms for local info
127 as well as basic block info. Where it differs is when and how often
128 it gets run. It also has no need for the iterative solver.
129----------------------------------------------------------------------------*/
130
131/* Problem data for the scanning dataflow function. */
132struct df_scan_problem_data
133{
fb0b2914
ML
134 object_allocator<df_base_ref> *ref_base_pool;
135 object_allocator<df_artificial_ref> *ref_artificial_pool;
136 object_allocator<df_regular_ref> *ref_regular_pool;
137 object_allocator<df_insn_info> *insn_pool;
138 object_allocator<df_reg_info> *reg_pool;
139 object_allocator<df_mw_hardreg> *mw_reg_pool;
e956943e 140
6fb5fa3c
DB
141 bitmap_obstack reg_bitmaps;
142 bitmap_obstack insn_bitmaps;
4d779342
DB
143};
144
370f38e8 145/* Internal function to shut down the scanning problem. */
b8698a0f 146static void
6fb5fa3c 147df_scan_free_internal (void)
4d779342 148{
23249ac4 149 struct df_scan_problem_data *problem_data
6fb5fa3c 150 = (struct df_scan_problem_data *) df_scan->problem_data;
4d779342 151
4d779342 152 free (df->def_info.refs);
6fb5fa3c
DB
153 free (df->def_info.begin);
154 free (df->def_info.count);
4d779342
DB
155 memset (&df->def_info, 0, (sizeof (struct df_ref_info)));
156
4d779342 157 free (df->use_info.refs);
6fb5fa3c
DB
158 free (df->use_info.begin);
159 free (df->use_info.count);
4d779342
DB
160 memset (&df->use_info, 0, (sizeof (struct df_ref_info)));
161
6fb5fa3c
DB
162 free (df->def_regs);
163 df->def_regs = NULL;
164 free (df->use_regs);
165 df->use_regs = NULL;
166 free (df->eq_use_regs);
167 df->eq_use_regs = NULL;
168 df->regs_size = 0;
c3284718 169 DF_REG_SIZE (df) = 0;
6fb5fa3c 170
4d779342
DB
171 free (df->insns);
172 df->insns = NULL;
6fb5fa3c 173 DF_INSN_SIZE () = 0;
4d779342 174
6fb5fa3c
DB
175 free (df_scan->block_info);
176 df_scan->block_info = NULL;
177 df_scan->block_info_size = 0;
4d779342 178
a7e3698d
JH
179 bitmap_clear (&df->hardware_regs_used);
180 bitmap_clear (&df->regular_block_artificial_uses);
181 bitmap_clear (&df->eh_block_artificial_uses);
912f2dac 182 BITMAP_FREE (df->entry_block_defs);
4d779342 183 BITMAP_FREE (df->exit_block_uses);
a7e3698d
JH
184 bitmap_clear (&df->insns_to_delete);
185 bitmap_clear (&df->insns_to_rescan);
186 bitmap_clear (&df->insns_to_notes_rescan);
4d779342 187
e956943e
ML
188 delete problem_data->ref_base_pool;
189 delete problem_data->ref_artificial_pool;
190 delete problem_data->ref_regular_pool;
191 delete problem_data->insn_pool;
192 delete problem_data->reg_pool;
193 delete problem_data->mw_reg_pool;
6fb5fa3c
DB
194 bitmap_obstack_release (&problem_data->reg_bitmaps);
195 bitmap_obstack_release (&problem_data->insn_bitmaps);
196 free (df_scan->problem_data);
4d779342
DB
197}
198
199
4d779342
DB
200/* Free basic block info. */
201
202static void
6fb5fa3c 203df_scan_free_bb_info (basic_block bb, void *vbb_info)
4d779342
DB
204{
205 struct df_scan_bb_info *bb_info = (struct df_scan_bb_info *) vbb_info;
6fb5fa3c 206 unsigned int bb_index = bb->index;
dd3eed93 207 rtx_insn *insn;
e285df08 208
b512946c
RS
209 FOR_BB_INSNS (bb, insn)
210 if (INSN_P (insn))
211 df_insn_info_delete (INSN_UID (insn));
212
213 if (bb_index < df_scan->block_info_size)
214 bb_info = df_scan_get_bb_info (bb_index);
215
216 /* Get rid of any artificial uses or defs. */
217 df_ref_chain_delete_du_chain (bb_info->artificial_defs);
218 df_ref_chain_delete_du_chain (bb_info->artificial_uses);
219 df_ref_chain_delete (bb_info->artificial_defs);
220 df_ref_chain_delete (bb_info->artificial_uses);
221 bb_info->artificial_defs = NULL;
222 bb_info->artificial_uses = NULL;
4d779342
DB
223}
224
225
226/* Allocate the problem data for the scanning problem. This should be
227 called when the problem is created or when the entire function is to
228 be rescanned. */
b8698a0f 229void
6fb5fa3c 230df_scan_alloc (bitmap all_blocks ATTRIBUTE_UNUSED)
4d779342 231{
4d779342 232 struct df_scan_problem_data *problem_data;
6fb5fa3c 233 basic_block bb;
4d779342
DB
234
235 /* Given the number of pools, this is really faster than tearing
236 everything apart. */
6fb5fa3c
DB
237 if (df_scan->problem_data)
238 df_scan_free_internal ();
4d779342 239
5ed6ace5 240 problem_data = XNEW (struct df_scan_problem_data);
6fb5fa3c
DB
241 df_scan->problem_data = problem_data;
242 df_scan->computed = true;
4d779342 243
fb0b2914 244 problem_data->ref_base_pool = new object_allocator<df_base_ref>
fcb87c50 245 ("df_scan ref base");
fb0b2914 246 problem_data->ref_artificial_pool = new object_allocator<df_artificial_ref>
fcb87c50 247 ("df_scan ref artificial");
fb0b2914 248 problem_data->ref_regular_pool = new object_allocator<df_regular_ref>
fcb87c50 249 ("df_scan ref regular");
fb0b2914 250 problem_data->insn_pool = new object_allocator<df_insn_info>
fcb87c50 251 ("df_scan insn");
fb0b2914 252 problem_data->reg_pool = new object_allocator<df_reg_info>
fcb87c50 253 ("df_scan reg");
fb0b2914 254 problem_data->mw_reg_pool = new object_allocator<df_mw_hardreg>
fcb87c50 255 ("df_scan mw_reg");
4d779342 256
6fb5fa3c
DB
257 bitmap_obstack_initialize (&problem_data->reg_bitmaps);
258 bitmap_obstack_initialize (&problem_data->insn_bitmaps);
4d779342 259
6fb5fa3c 260 df_grow_reg_info ();
4d779342 261
6fb5fa3c
DB
262 df_grow_insn_info ();
263 df_grow_bb_info (df_scan);
4d779342 264
04a90bec 265 FOR_ALL_BB_FN (bb, cfun)
4d779342 266 {
6fb5fa3c
DB
267 unsigned int bb_index = bb->index;
268 struct df_scan_bb_info *bb_info = df_scan_get_bb_info (bb_index);
4d779342
DB
269 bb_info->artificial_defs = NULL;
270 bb_info->artificial_uses = NULL;
271 }
272
a7e3698d
JH
273 bitmap_initialize (&df->hardware_regs_used, &problem_data->reg_bitmaps);
274 bitmap_initialize (&df->regular_block_artificial_uses, &problem_data->reg_bitmaps);
275 bitmap_initialize (&df->eh_block_artificial_uses, &problem_data->reg_bitmaps);
6fb5fa3c
DB
276 df->entry_block_defs = BITMAP_ALLOC (&problem_data->reg_bitmaps);
277 df->exit_block_uses = BITMAP_ALLOC (&problem_data->reg_bitmaps);
a7e3698d
JH
278 bitmap_initialize (&df->insns_to_delete, &problem_data->insn_bitmaps);
279 bitmap_initialize (&df->insns_to_rescan, &problem_data->insn_bitmaps);
280 bitmap_initialize (&df->insns_to_notes_rescan, &problem_data->insn_bitmaps);
89a95777 281 df_scan->optional_p = false;
4d779342
DB
282}
283
284
285/* Free all of the data associated with the scan problem. */
286
b8698a0f 287static void
6fb5fa3c 288df_scan_free (void)
4d779342 289{
6fb5fa3c
DB
290 if (df_scan->problem_data)
291 df_scan_free_internal ();
3b8266e2 292
4d779342 293 if (df->blocks_to_analyze)
6fb5fa3c
DB
294 {
295 BITMAP_FREE (df->blocks_to_analyze);
296 df->blocks_to_analyze = NULL;
297 }
4d779342 298
6fb5fa3c 299 free (df_scan);
4d779342
DB
300}
301
6fb5fa3c 302/* Dump the preamble for DF_SCAN dump. */
b8698a0f 303static void
6fb5fa3c 304df_scan_start_dump (FILE *file ATTRIBUTE_UNUSED)
4d779342 305{
4d779342 306 int i;
57512f53
KZ
307 int dcount = 0;
308 int ucount = 0;
309 int ecount = 0;
310 int icount = 0;
311 int ccount = 0;
312 basic_block bb;
dd3eed93 313 rtx_insn *insn;
4d779342 314
c9250371
RS
315 fprintf (file, ";; fully invalidated by EH \t");
316 df_print_regset
317 (file, bitmap_view<HARD_REG_SET> (eh_edge_abi.full_reg_clobbers ()));
6fb5fa3c 318 fprintf (file, ";; hardware regs used \t");
a7e3698d 319 df_print_regset (file, &df->hardware_regs_used);
6fb5fa3c 320 fprintf (file, ";; regular block artificial uses \t");
a7e3698d 321 df_print_regset (file, &df->regular_block_artificial_uses);
6fb5fa3c 322 fprintf (file, ";; eh block artificial uses \t");
a7e3698d 323 df_print_regset (file, &df->eh_block_artificial_uses);
6fb5fa3c
DB
324 fprintf (file, ";; entry block defs \t");
325 df_print_regset (file, df->entry_block_defs);
326 fprintf (file, ";; exit block uses \t");
327 df_print_regset (file, df->exit_block_uses);
328 fprintf (file, ";; regs ever live \t");
4d779342 329 for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
6fb5fa3c 330 if (df_regs_ever_live_p (i))
b4147b63 331 fprintf (file, " %d [%s]", i, reg_names[i]);
57512f53 332 fprintf (file, "\n;; ref usage \t");
b8698a0f 333
57512f53
KZ
334 for (i = 0; i < (int)df->regs_inited; i++)
335 if (DF_REG_DEF_COUNT (i) || DF_REG_USE_COUNT (i) || DF_REG_EQ_USE_COUNT (i))
336 {
337 const char * sep = "";
338
339 fprintf (file, "r%d={", i);
340 if (DF_REG_DEF_COUNT (i))
341 {
342 fprintf (file, "%dd", DF_REG_DEF_COUNT (i));
343 sep = ",";
344 dcount += DF_REG_DEF_COUNT (i);
345 }
346 if (DF_REG_USE_COUNT (i))
347 {
348 fprintf (file, "%s%du", sep, DF_REG_USE_COUNT (i));
349 sep = ",";
350 ucount += DF_REG_USE_COUNT (i);
351 }
352 if (DF_REG_EQ_USE_COUNT (i))
353 {
885c9b5d 354 fprintf (file, "%s%de", sep, DF_REG_EQ_USE_COUNT (i));
57512f53
KZ
355 ecount += DF_REG_EQ_USE_COUNT (i);
356 }
357 fprintf (file, "} ");
358 }
6fb5fa3c 359
11cd3bed 360 FOR_EACH_BB_FN (bb, cfun)
57512f53
KZ
361 FOR_BB_INSNS (bb, insn)
362 if (INSN_P (insn))
363 {
364 if (CALL_P (insn))
365 ccount++;
366 else
367 icount++;
368 }
369
885c9b5d
EB
370 fprintf (file, "\n;; total ref usage %d{%dd,%du,%de}"
371 " in %d{%d regular + %d call} insns.\n",
372 dcount + ucount + ecount, dcount, ucount, ecount,
373 icount + ccount, icount, ccount);
4d779342
DB
374}
375
6fb5fa3c 376/* Dump the bb_info for a given basic block. */
b8698a0f 377static void
6fb5fa3c
DB
378df_scan_start_block (basic_block bb, FILE *file)
379{
380 struct df_scan_bb_info *bb_info
381 = df_scan_get_bb_info (bb->index);
382
383 if (bb_info)
384 {
385 fprintf (file, ";; bb %d artificial_defs: ", bb->index);
386 df_refs_chain_dump (bb_info->artificial_defs, true, file);
387 fprintf (file, "\n;; bb %d artificial_uses: ", bb->index);
388 df_refs_chain_dump (bb_info->artificial_uses, true, file);
389 fprintf (file, "\n");
390 }
391#if 0
392 {
dd3eed93 393 rtx_insn *insn;
6fb5fa3c
DB
394 FOR_BB_INSNS (bb, insn)
395 if (INSN_P (insn))
396 df_insn_debug (insn, false, file);
397 }
398#endif
399}
400
fdd5680c 401static const struct df_problem problem_SCAN =
4d779342
DB
402{
403 DF_SCAN, /* Problem id. */
404 DF_NONE, /* Direction. */
405 df_scan_alloc, /* Allocate the problem specific data. */
30cb87a0 406 NULL, /* Reset global information. */
4d779342
DB
407 df_scan_free_bb_info, /* Free basic block info. */
408 NULL, /* Local compute function. */
409 NULL, /* Init the solution specific data. */
410 NULL, /* Iterative solver. */
b8698a0f
L
411 NULL, /* Confluence operator 0. */
412 NULL, /* Confluence operator n. */
4d779342
DB
413 NULL, /* Transfer function. */
414 NULL, /* Finalize function. */
415 df_scan_free, /* Free all of the problem information. */
6fb5fa3c
DB
416 NULL, /* Remove this problem from the stack of dataflow problems. */
417 df_scan_start_dump, /* Debugging. */
418 df_scan_start_block, /* Debugging start block. */
419 NULL, /* Debugging end block. */
7b19209f
SB
420 NULL, /* Debugging start insn. */
421 NULL, /* Debugging end insn. */
6fb5fa3c 422 NULL, /* Incremental solution verify start. */
6ed3da00 423 NULL, /* Incremental solution verify end. */
23249ac4 424 NULL, /* Dependent problem. */
e285df08 425 sizeof (struct df_scan_bb_info),/* Size of entry of block_info array. */
89a95777
KZ
426 TV_DF_SCAN, /* Timing variable. */
427 false /* Reset blocks on dropping out of blocks_to_analyze. */
4d779342
DB
428};
429
430
431/* Create a new DATAFLOW instance and add it to an existing instance
432 of DF. The returned structure is what is used to get at the
433 solution. */
434
6fb5fa3c
DB
435void
436df_scan_add_problem (void)
4d779342 437{
6fb5fa3c 438 df_add_problem (&problem_SCAN);
4d779342
DB
439}
440
6fb5fa3c 441\f
4d779342
DB
442/*----------------------------------------------------------------------------
443 Storage Allocation Utilities
444----------------------------------------------------------------------------*/
445
446
447/* First, grow the reg_info information. If the current size is less than
fa10beec 448 the number of pseudos, grow to 25% more than the number of
b8698a0f 449 pseudos.
4d779342
DB
450
451 Second, assure that all of the slots up to max_reg_num have been
452 filled with reg_info structures. */
453
b8698a0f 454void
6fb5fa3c 455df_grow_reg_info (void)
4d779342
DB
456{
457 unsigned int max_reg = max_reg_num ();
458 unsigned int new_size = max_reg;
23249ac4 459 struct df_scan_problem_data *problem_data
6fb5fa3c 460 = (struct df_scan_problem_data *) df_scan->problem_data;
4d779342
DB
461 unsigned int i;
462
6fb5fa3c 463 if (df->regs_size < new_size)
4d779342
DB
464 {
465 new_size += new_size / 4;
f883e0a7
KG
466 df->def_regs = XRESIZEVEC (struct df_reg_info *, df->def_regs, new_size);
467 df->use_regs = XRESIZEVEC (struct df_reg_info *, df->use_regs, new_size);
468 df->eq_use_regs = XRESIZEVEC (struct df_reg_info *, df->eq_use_regs,
469 new_size);
470 df->def_info.begin = XRESIZEVEC (unsigned, df->def_info.begin, new_size);
471 df->def_info.count = XRESIZEVEC (unsigned, df->def_info.count, new_size);
472 df->use_info.begin = XRESIZEVEC (unsigned, df->use_info.begin, new_size);
473 df->use_info.count = XRESIZEVEC (unsigned, df->use_info.count, new_size);
6fb5fa3c 474 df->regs_size = new_size;
4d779342
DB
475 }
476
6fb5fa3c 477 for (i = df->regs_inited; i < max_reg; i++)
4d779342 478 {
6fb5fa3c
DB
479 struct df_reg_info *reg_info;
480
e956943e
ML
481 // TODO
482 reg_info = problem_data->reg_pool->allocate ();
6fb5fa3c
DB
483 memset (reg_info, 0, sizeof (struct df_reg_info));
484 df->def_regs[i] = reg_info;
e956943e 485 reg_info = problem_data->reg_pool->allocate ();
6fb5fa3c
DB
486 memset (reg_info, 0, sizeof (struct df_reg_info));
487 df->use_regs[i] = reg_info;
e956943e 488 reg_info = problem_data->reg_pool->allocate ();
4d779342 489 memset (reg_info, 0, sizeof (struct df_reg_info));
6fb5fa3c
DB
490 df->eq_use_regs[i] = reg_info;
491 df->def_info.begin[i] = 0;
492 df->def_info.count[i] = 0;
493 df->use_info.begin[i] = 0;
494 df->use_info.count[i] = 0;
4d779342 495 }
b8698a0f 496
6fb5fa3c 497 df->regs_inited = max_reg;
4d779342
DB
498}
499
500
501/* Grow the ref information. */
502
b8698a0f 503static void
4d779342
DB
504df_grow_ref_info (struct df_ref_info *ref_info, unsigned int new_size)
505{
506 if (ref_info->refs_size < new_size)
507 {
57512f53 508 ref_info->refs = XRESIZEVEC (df_ref, ref_info->refs, new_size);
4d779342 509 memset (ref_info->refs + ref_info->refs_size, 0,
57512f53 510 (new_size - ref_info->refs_size) *sizeof (df_ref));
4d779342
DB
511 ref_info->refs_size = new_size;
512 }
513}
514
515
6fb5fa3c
DB
516/* Check and grow the ref information if necessary. This routine
517 guarantees total_size + BITMAP_ADDEND amount of entries in refs
518 array. It updates ref_info->refs_size only and does not change
519 ref_info->total_size. */
520
521static void
b8698a0f 522df_check_and_grow_ref_info (struct df_ref_info *ref_info,
6fb5fa3c
DB
523 unsigned bitmap_addend)
524{
525 if (ref_info->refs_size < ref_info->total_size + bitmap_addend)
526 {
527 int new_size = ref_info->total_size + bitmap_addend;
528 new_size += ref_info->total_size / 4;
529 df_grow_ref_info (ref_info, new_size);
530 }
531}
532
533
4d779342
DB
534/* Grow the ref information. If the current size is less than the
535 number of instructions, grow to 25% more than the number of
536 instructions. */
537
b8698a0f 538void
6fb5fa3c 539df_grow_insn_info (void)
4d779342
DB
540{
541 unsigned int new_size = get_max_uid () + 1;
6fb5fa3c 542 if (DF_INSN_SIZE () < new_size)
4d779342
DB
543 {
544 new_size += new_size / 4;
f883e0a7 545 df->insns = XRESIZEVEC (struct df_insn_info *, df->insns, new_size);
4d779342 546 memset (df->insns + df->insns_size, 0,
6fb5fa3c
DB
547 (new_size - DF_INSN_SIZE ()) *sizeof (struct df_insn_info *));
548 DF_INSN_SIZE () = new_size;
4d779342
DB
549 }
550}
551
552
553
554\f
555/*----------------------------------------------------------------------------
556 PUBLIC INTERFACES FOR SMALL GRAIN CHANGES TO SCANNING.
557----------------------------------------------------------------------------*/
558
6fb5fa3c
DB
559/* Rescan all of the block_to_analyze or all of the blocks in the
560 function if df_set_blocks if blocks_to_analyze is NULL; */
4d779342
DB
561
562void
6fb5fa3c 563df_scan_blocks (void)
4d779342 564{
4d779342
DB
565 basic_block bb;
566
6fb5fa3c
DB
567 df->def_info.ref_order = DF_REF_ORDER_NO_TABLE;
568 df->use_info.ref_order = DF_REF_ORDER_NO_TABLE;
23249ac4 569
a7e3698d
JH
570 df_get_regular_block_artificial_uses (&df->regular_block_artificial_uses);
571 df_get_eh_block_artificial_uses (&df->eh_block_artificial_uses);
4d779342 572
a7e3698d
JH
573 bitmap_ior_into (&df->eh_block_artificial_uses,
574 &df->regular_block_artificial_uses);
30cb87a0 575
6fb5fa3c
DB
576 /* ENTRY and EXIT blocks have special defs/uses. */
577 df_get_entry_block_def_set (df->entry_block_defs);
578 df_record_entry_block_defs (df->entry_block_defs);
579 df_get_exit_block_use_set (df->exit_block_uses);
580 df_record_exit_block_uses (df->exit_block_uses);
06e28de2
DM
581 df_set_bb_dirty (BASIC_BLOCK_FOR_FN (cfun, ENTRY_BLOCK));
582 df_set_bb_dirty (BASIC_BLOCK_FOR_FN (cfun, EXIT_BLOCK));
4d779342 583
6fb5fa3c 584 /* Regular blocks */
11cd3bed 585 FOR_EACH_BB_FN (bb, cfun)
4d779342 586 {
6fb5fa3c
DB
587 unsigned int bb_index = bb->index;
588 df_bb_refs_record (bb_index, true);
4d779342 589 }
4d779342
DB
590}
591
dc007c1f
PB
592/* Create new refs under address LOC within INSN. This function is
593 only used externally. REF_FLAGS must be either 0 or DF_REF_IN_NOTE,
594 depending on whether LOC is inside PATTERN (INSN) or a note. */
595
596void
b2908ba6 597df_uses_create (rtx *loc, rtx_insn *insn, int ref_flags)
dc007c1f
PB
598{
599 gcc_assert (!(ref_flags & ~DF_REF_IN_NOTE));
600 df_uses_record (NULL, loc, DF_REF_REG_USE,
601 BLOCK_FOR_INSN (insn),
602 DF_INSN_INFO_GET (insn),
603 ref_flags);
604}
23249ac4 605
dc007c1f
PB
606static void
607df_install_ref_incremental (df_ref ref)
608{
609 struct df_reg_info **reg_info;
610 struct df_ref_info *ref_info;
b512946c 611 df_ref *ref_ptr;
dc007c1f
PB
612 bool add_to_table;
613
dd3eed93 614 rtx_insn *insn = DF_REF_INSN (ref);
dc007c1f 615 basic_block bb = BLOCK_FOR_INSN (insn);
4d779342 616
57512f53 617 if (DF_REF_REG_DEF_P (ref))
6fb5fa3c
DB
618 {
619 reg_info = df->def_regs;
620 ref_info = &df->def_info;
b512946c 621 ref_ptr = &DF_INSN_DEFS (insn);
6fb5fa3c
DB
622 add_to_table = ref_info->ref_order != DF_REF_ORDER_NO_TABLE;
623 }
624 else if (DF_REF_FLAGS (ref) & DF_REF_IN_NOTE)
625 {
626 reg_info = df->eq_use_regs;
627 ref_info = &df->use_info;
b512946c 628 ref_ptr = &DF_INSN_EQ_USES (insn);
6fb5fa3c
DB
629 switch (ref_info->ref_order)
630 {
631 case DF_REF_ORDER_UNORDERED_WITH_NOTES:
632 case DF_REF_ORDER_BY_REG_WITH_NOTES:
633 case DF_REF_ORDER_BY_INSN_WITH_NOTES:
634 add_to_table = true;
635 break;
636 default:
637 add_to_table = false;
638 break;
639 }
640 }
641 else
642 {
643 reg_info = df->use_regs;
644 ref_info = &df->use_info;
b512946c 645 ref_ptr = &DF_INSN_USES (insn);
6fb5fa3c
DB
646 add_to_table = ref_info->ref_order != DF_REF_ORDER_NO_TABLE;
647 }
4d779342 648
6fb5fa3c
DB
649 /* Do not add if ref is not in the right blocks. */
650 if (add_to_table && df->analyze_subset)
651 add_to_table = bitmap_bit_p (df->blocks_to_analyze, bb->index);
4d779342 652
6fb5fa3c 653 df_install_ref (ref, reg_info[DF_REF_REGNO (ref)], ref_info, add_to_table);
b8698a0f 654
6fb5fa3c
DB
655 if (add_to_table)
656 switch (ref_info->ref_order)
657 {
658 case DF_REF_ORDER_UNORDERED_WITH_NOTES:
659 case DF_REF_ORDER_BY_REG_WITH_NOTES:
660 case DF_REF_ORDER_BY_INSN_WITH_NOTES:
661 ref_info->ref_order = DF_REF_ORDER_UNORDERED_WITH_NOTES;
662 break;
663 default:
664 ref_info->ref_order = DF_REF_ORDER_UNORDERED;
665 break;
666 }
4d779342 667
b512946c
RS
668 while (*ref_ptr && df_ref_compare (*ref_ptr, ref) < 0)
669 ref_ptr = &DF_REF_NEXT_LOC (*ref_ptr);
4d779342 670
b512946c
RS
671 DF_REF_NEXT_LOC (ref) = *ref_ptr;
672 *ref_ptr = ref;
4d779342 673
6fb5fa3c
DB
674#if 0
675 if (dump_file)
676 {
677 fprintf (dump_file, "adding ref ");
678 df_ref_debug (ref, dump_file);
4d779342 679 }
6fb5fa3c
DB
680#endif
681 /* By adding the ref directly, df_insn_rescan my not find any
682 differences even though the block will have changed. So we need
b8698a0f 683 to mark the block dirty ourselves. */
d785e46f
AO
684 if (!DEBUG_INSN_P (DF_REF_INSN (ref)))
685 df_set_bb_dirty (bb);
4d779342
DB
686}
687
688
6fb5fa3c
DB
689\f
690/*----------------------------------------------------------------------------
691 UTILITIES TO CREATE AND DESTROY REFS AND CHAINS.
692----------------------------------------------------------------------------*/
693
ca9052ce 694static void
57512f53 695df_free_ref (df_ref ref)
ca9052ce
KZ
696{
697 struct df_scan_problem_data *problem_data
698 = (struct df_scan_problem_data *) df_scan->problem_data;
699
57512f53
KZ
700 switch (DF_REF_CLASS (ref))
701 {
702 case DF_REF_BASE:
e956943e 703 problem_data->ref_base_pool->remove ((df_base_ref *) (ref));
57512f53
KZ
704 break;
705
706 case DF_REF_ARTIFICIAL:
e956943e
ML
707 problem_data->ref_artificial_pool->remove
708 ((df_artificial_ref *) (ref));
57512f53
KZ
709 break;
710
711 case DF_REF_REGULAR:
e956943e
ML
712 problem_data->ref_regular_pool->remove
713 ((df_regular_ref *) (ref));
57512f53 714 break;
57512f53 715 }
ca9052ce
KZ
716}
717
4d779342 718
6fb5fa3c
DB
719/* Unlink and delete REF at the reg_use, reg_eq_use or reg_def chain.
720 Also delete the def-use or use-def chain if it exists. */
721
722static void
b8698a0f 723df_reg_chain_unlink (df_ref ref)
4d779342 724{
b8698a0f 725 df_ref next = DF_REF_NEXT_REG (ref);
57512f53 726 df_ref prev = DF_REF_PREV_REG (ref);
6fb5fa3c 727 int id = DF_REF_ID (ref);
4d779342 728 struct df_reg_info *reg_info;
57512f53 729 df_ref *refs = NULL;
4d779342 730
57512f53 731 if (DF_REF_REG_DEF_P (ref))
4d779342 732 {
57512f53
KZ
733 int regno = DF_REF_REGNO (ref);
734 reg_info = DF_REG_DEF_GET (regno);
6fb5fa3c 735 refs = df->def_info.refs;
4d779342 736 }
b8698a0f 737 else
4d779342 738 {
6fb5fa3c
DB
739 if (DF_REF_FLAGS (ref) & DF_REF_IN_NOTE)
740 {
741 reg_info = DF_REG_EQ_USE_GET (DF_REF_REGNO (ref));
742 switch (df->use_info.ref_order)
743 {
744 case DF_REF_ORDER_UNORDERED_WITH_NOTES:
745 case DF_REF_ORDER_BY_REG_WITH_NOTES:
746 case DF_REF_ORDER_BY_INSN_WITH_NOTES:
747 refs = df->use_info.refs;
748 break;
749 default:
750 break;
751 }
752 }
753 else
754 {
755 reg_info = DF_REG_USE_GET (DF_REF_REGNO (ref));
756 refs = df->use_info.refs;
757 }
758 }
759
760 if (refs)
761 {
762 if (df->analyze_subset)
763 {
57512f53 764 if (bitmap_bit_p (df->blocks_to_analyze, DF_REF_BBNO (ref)))
6fb5fa3c
DB
765 refs[id] = NULL;
766 }
767 else
768 refs[id] = NULL;
4d779342 769 }
b8698a0f 770
6fb5fa3c
DB
771 /* Delete any def-use or use-def chains that start here. It is
772 possible that there is trash in this field. This happens for
773 insns that have been deleted when rescanning has been deferred
774 and the chain problem has also been deleted. The chain tear down
775 code skips deleted insns. */
776 if (df_chain && DF_REF_CHAIN (ref))
777 df_chain_unlink (ref);
b8698a0f 778
4d779342 779 reg_info->n_refs--;
6fb5fa3c
DB
780 if (DF_REF_FLAGS_IS_SET (ref, DF_HARD_REG_LIVE))
781 {
782 gcc_assert (DF_REF_REGNO (ref) < FIRST_PSEUDO_REGISTER);
783 df->hard_regs_live_count[DF_REF_REGNO (ref)]--;
784 }
4d779342
DB
785
786 /* Unlink from the reg chain. If there is no prev, this is the
787 first of the list. If not, just join the next and prev. */
788 if (prev)
6fb5fa3c 789 DF_REF_NEXT_REG (prev) = next;
4d779342
DB
790 else
791 {
6fb5fa3c 792 gcc_assert (reg_info->reg_chain == ref);
4d779342 793 reg_info->reg_chain = next;
4d779342 794 }
6fb5fa3c
DB
795 if (next)
796 DF_REF_PREV_REG (next) = prev;
4d779342 797
ca9052ce 798 df_free_ref (ref);
6fb5fa3c
DB
799}
800
762613be
RS
801/* Initialize INSN_INFO to describe INSN. */
802
803static void
804df_insn_info_init_fields (df_insn_info *insn_info, rtx_insn *insn)
805{
806 memset (insn_info, 0, sizeof (struct df_insn_info));
807 insn_info->insn = insn;
808}
6fb5fa3c 809
6fb5fa3c
DB
810/* Create the insn record for INSN. If there was one there, zero it
811 out. */
4d779342 812
6fb5fa3c 813struct df_insn_info *
b2908ba6 814df_insn_create_insn_record (rtx_insn *insn)
4d779342 815{
23249ac4 816 struct df_scan_problem_data *problem_data
6fb5fa3c
DB
817 = (struct df_scan_problem_data *) df_scan->problem_data;
818 struct df_insn_info *insn_rec;
4d779342 819
6fb5fa3c 820 df_grow_insn_info ();
50e94c7e 821 insn_rec = DF_INSN_INFO_GET (insn);
4d779342
DB
822 if (!insn_rec)
823 {
e956943e 824 insn_rec = problem_data->insn_pool->allocate ();
50e94c7e 825 DF_INSN_INFO_SET (insn, insn_rec);
4d779342 826 }
762613be 827 df_insn_info_init_fields (insn_rec, insn);
4d779342
DB
828 return insn_rec;
829}
830
3b8266e2 831
6fb5fa3c 832/* Delete all du chain (DF_REF_CHAIN()) of all refs in the ref chain. */
4d779342 833
6fb5fa3c 834static void
b512946c 835df_ref_chain_delete_du_chain (df_ref ref)
4d779342 836{
b512946c
RS
837 for (; ref; ref = DF_REF_NEXT_LOC (ref))
838 /* CHAIN is allocated by DF_CHAIN. So make sure to
839 pass df_scan instance for the problem. */
840 if (DF_REF_CHAIN (ref))
841 df_chain_unlink (ref);
6fb5fa3c 842}
23249ac4 843
4d779342 844
6fb5fa3c
DB
845/* Delete all refs in the ref chain. */
846
847static void
b512946c 848df_ref_chain_delete (df_ref ref)
6fb5fa3c 849{
b512946c
RS
850 df_ref next;
851 for (; ref; ref = next)
6fb5fa3c 852 {
b512946c
RS
853 next = DF_REF_NEXT_LOC (ref);
854 df_reg_chain_unlink (ref);
6fb5fa3c 855 }
6fb5fa3c
DB
856}
857
858
859/* Delete the hardreg chain. */
860
861static void
b512946c 862df_mw_hardreg_chain_delete (struct df_mw_hardreg *hardregs)
6fb5fa3c 863{
b512946c
RS
864 struct df_scan_problem_data *problem_data
865 = (struct df_scan_problem_data *) df_scan->problem_data;
866 df_mw_hardreg *next;
6fb5fa3c 867
b512946c 868 for (; hardregs; hardregs = next)
6fb5fa3c 869 {
b512946c 870 next = DF_MWS_NEXT (hardregs);
e956943e 871 problem_data->mw_reg_pool->remove (hardregs);
6fb5fa3c
DB
872 }
873}
874
762613be
RS
875/* Remove the contents of INSN_INFO (but don't free INSN_INFO itself). */
876
877static void
878df_insn_info_free_fields (df_insn_info *insn_info)
879{
880 /* In general, notes do not have the insn_info fields
881 initialized. However, combine deletes insns by changing them
882 to notes. How clever. So we cannot just check if it is a
883 valid insn before short circuiting this code, we need to see
884 if we actually initialized it. */
885 df_mw_hardreg_chain_delete (insn_info->mw_hardregs);
886
887 if (df_chain)
888 {
889 df_ref_chain_delete_du_chain (insn_info->defs);
890 df_ref_chain_delete_du_chain (insn_info->uses);
891 df_ref_chain_delete_du_chain (insn_info->eq_uses);
892 }
893
894 df_ref_chain_delete (insn_info->defs);
895 df_ref_chain_delete (insn_info->uses);
896 df_ref_chain_delete (insn_info->eq_uses);
897}
6fb5fa3c 898
80eb8028
SB
899/* Delete all of the refs information from the insn with UID.
900 Internal helper for df_insn_delete, df_insn_rescan, and other
901 df-scan routines that don't have to work in deferred mode
902 and do not have to mark basic blocks for re-processing. */
6fb5fa3c 903
80eb8028
SB
904static void
905df_insn_info_delete (unsigned int uid)
6fb5fa3c 906{
80eb8028 907 struct df_insn_info *insn_info = DF_INSN_UID_SAFE_GET (uid);
6fb5fa3c 908
a7e3698d
JH
909 bitmap_clear_bit (&df->insns_to_delete, uid);
910 bitmap_clear_bit (&df->insns_to_rescan, uid);
911 bitmap_clear_bit (&df->insns_to_notes_rescan, uid);
6fb5fa3c
DB
912 if (insn_info)
913 {
b8698a0f 914 struct df_scan_problem_data *problem_data
6fb5fa3c
DB
915 = (struct df_scan_problem_data *) df_scan->problem_data;
916
762613be 917 df_insn_info_free_fields (insn_info);
e956943e 918 problem_data->insn_pool->remove (insn_info);
6fb5fa3c 919 DF_INSN_UID_SET (uid, NULL);
4d779342
DB
920 }
921}
922
80eb8028
SB
923/* Delete all of the refs information from INSN, either right now
924 or marked for later in deferred mode. */
925
926void
b2908ba6 927df_insn_delete (rtx_insn *insn)
80eb8028
SB
928{
929 unsigned int uid;
930 basic_block bb;
931
932 gcc_checking_assert (INSN_P (insn));
933
934 if (!df)
935 return;
936
937 uid = INSN_UID (insn);
938 bb = BLOCK_FOR_INSN (insn);
939
940 /* ??? bb can be NULL after pass_free_cfg. At that point, DF should
e53b6e56 941 not exist anymore (as mentioned in df-core.cc: "The only requirement
80eb8028
SB
942 [for DF] is that there be a correct control flow graph." Clearly
943 that isn't the case after pass_free_cfg. But DF is freed much later
944 because some back-ends want to use DF info even though the CFG is
945 already gone. It's not clear to me whether that is safe, actually.
946 In any case, we expect BB to be non-NULL at least up to register
947 allocation, so disallow a non-NULL BB up to there. Not perfect
948 but better than nothing... */
67a8d719 949 gcc_checking_assert (bb != NULL || reload_completed);
80eb8028
SB
950
951 df_grow_bb_info (df_scan);
952 df_grow_reg_info ();
953
954 /* The block must be marked as dirty now, rather than later as in
955 df_insn_rescan and df_notes_rescan because it may not be there at
956 rescanning time and the mark would blow up.
957 DEBUG_INSNs do not make a block's data flow solution dirty (at
958 worst the LUIDs are no longer contiguous). */
959 if (bb != NULL && NONDEBUG_INSN_P (insn))
960 df_set_bb_dirty (bb);
961
962 /* The client has deferred rescanning. */
963 if (df->changeable_flags & DF_DEFER_INSN_RESCAN)
964 {
965 struct df_insn_info *insn_info = DF_INSN_UID_SAFE_GET (uid);
966 if (insn_info)
967 {
968 bitmap_clear_bit (&df->insns_to_rescan, uid);
969 bitmap_clear_bit (&df->insns_to_notes_rescan, uid);
970 bitmap_set_bit (&df->insns_to_delete, uid);
971 }
972 if (dump_file)
973 fprintf (dump_file, "deferring deletion of insn with uid = %d.\n", uid);
974 return;
975 }
976
977 if (dump_file)
978 fprintf (dump_file, "deleting insn with uid = %d.\n", uid);
979
980 df_insn_info_delete (uid);
981}
982
4d779342 983
6fb5fa3c 984/* Free all of the refs and the mw_hardregs in COLLECTION_REC. */
3b8266e2 985
6fb5fa3c 986static void
99b1c316 987df_free_collection_rec (class df_collection_rec *collection_rec)
3b8266e2 988{
c2569604 989 unsigned int ix;
b8698a0f 990 struct df_scan_problem_data *problem_data
6fb5fa3c 991 = (struct df_scan_problem_data *) df_scan->problem_data;
c2569604
ILT
992 df_ref ref;
993 struct df_mw_hardreg *mw;
994
9771b263 995 FOR_EACH_VEC_ELT (collection_rec->def_vec, ix, ref)
c2569604 996 df_free_ref (ref);
9771b263 997 FOR_EACH_VEC_ELT (collection_rec->use_vec, ix, ref)
c2569604 998 df_free_ref (ref);
9771b263 999 FOR_EACH_VEC_ELT (collection_rec->eq_use_vec, ix, ref)
c2569604 1000 df_free_ref (ref);
9771b263 1001 FOR_EACH_VEC_ELT (collection_rec->mw_vec, ix, mw)
e956943e 1002 problem_data->mw_reg_pool->remove (mw);
c2569604 1003
9771b263
DN
1004 collection_rec->def_vec.release ();
1005 collection_rec->use_vec.release ();
1006 collection_rec->eq_use_vec.release ();
1007 collection_rec->mw_vec.release ();
6fb5fa3c 1008}
3b8266e2 1009
6fb5fa3c
DB
1010/* Rescan INSN. Return TRUE if the rescanning produced any changes. */
1011
b8698a0f 1012bool
b2908ba6 1013df_insn_rescan (rtx_insn *insn)
6fb5fa3c
DB
1014{
1015 unsigned int uid = INSN_UID (insn);
1016 struct df_insn_info *insn_info = NULL;
1017 basic_block bb = BLOCK_FOR_INSN (insn);
99b1c316 1018 class df_collection_rec collection_rec;
6fb5fa3c
DB
1019
1020 if ((!df) || (!INSN_P (insn)))
1021 return false;
1022
1023 if (!bb)
3b8266e2 1024 {
6fb5fa3c
DB
1025 if (dump_file)
1026 fprintf (dump_file, "no bb for insn with uid = %d.\n", uid);
1027 return false;
1028 }
1029
1030 /* The client has disabled rescanning and plans to do it itself. */
1031 if (df->changeable_flags & DF_NO_INSN_RESCAN)
1032 return false;
1033
1034 df_grow_bb_info (df_scan);
1035 df_grow_reg_info ();
1036
1037 insn_info = DF_INSN_UID_SAFE_GET (uid);
1038
0a41f3b2 1039 /* The client has deferred rescanning. */
6fb5fa3c
DB
1040 if (df->changeable_flags & DF_DEFER_INSN_RESCAN)
1041 {
1042 if (!insn_info)
1043 {
1044 insn_info = df_insn_create_insn_record (insn);
b512946c
RS
1045 insn_info->defs = 0;
1046 insn_info->uses = 0;
1047 insn_info->eq_uses = 0;
1048 insn_info->mw_hardregs = 0;
6fb5fa3c
DB
1049 }
1050 if (dump_file)
b718216c 1051 fprintf (dump_file, "deferring rescan insn with uid = %d.\n", uid);
b8698a0f 1052
a7e3698d
JH
1053 bitmap_clear_bit (&df->insns_to_delete, uid);
1054 bitmap_clear_bit (&df->insns_to_notes_rescan, uid);
1055 bitmap_set_bit (&df->insns_to_rescan, INSN_UID (insn));
6fb5fa3c
DB
1056 return false;
1057 }
1058
a7e3698d
JH
1059 bitmap_clear_bit (&df->insns_to_delete, uid);
1060 bitmap_clear_bit (&df->insns_to_rescan, uid);
1061 bitmap_clear_bit (&df->insns_to_notes_rescan, uid);
6fb5fa3c
DB
1062 if (insn_info)
1063 {
4a81774c 1064 int luid;
6fb5fa3c
DB
1065 bool the_same = df_insn_refs_verify (&collection_rec, bb, insn, false);
1066 /* If there's no change, return false. */
1067 if (the_same)
3b8266e2 1068 {
6fb5fa3c
DB
1069 df_free_collection_rec (&collection_rec);
1070 if (dump_file)
1071 fprintf (dump_file, "verify found no changes in insn with uid = %d.\n", uid);
1072 return false;
3b8266e2 1073 }
6fb5fa3c
DB
1074 if (dump_file)
1075 fprintf (dump_file, "rescanning insn with uid = %d.\n", uid);
1076
4a81774c
SB
1077 /* There's change - we need to delete the existing info.
1078 Since the insn isn't moved, we can salvage its LUID. */
1079 luid = DF_INSN_LUID (insn);
762613be
RS
1080 df_insn_info_free_fields (insn_info);
1081 df_insn_info_init_fields (insn_info, insn);
4a81774c 1082 DF_INSN_LUID (insn) = luid;
6fb5fa3c
DB
1083 }
1084 else
1085 {
50e94c7e
SB
1086 struct df_insn_info *insn_info = df_insn_create_insn_record (insn);
1087 df_insn_refs_collect (&collection_rec, bb, insn_info);
6fb5fa3c
DB
1088 if (dump_file)
1089 fprintf (dump_file, "scanning new insn with uid = %d.\n", uid);
1090 }
1091
ff4c81cc 1092 df_refs_add_to_chains (&collection_rec, bb, insn, copy_all);
f9aeaebf 1093 if (!DEBUG_INSN_P (insn))
c23cd1d6 1094 df_set_bb_dirty (bb);
c2569604 1095
6fb5fa3c
DB
1096 return true;
1097}
1098
b5b8b0ac
AO
1099/* Same as df_insn_rescan, but don't mark the basic block as
1100 dirty. */
1101
1102bool
b2908ba6 1103df_insn_rescan_debug_internal (rtx_insn *insn)
b5b8b0ac
AO
1104{
1105 unsigned int uid = INSN_UID (insn);
1106 struct df_insn_info *insn_info;
1107
a099f7d4
RG
1108 gcc_assert (DEBUG_INSN_P (insn)
1109 && VAR_LOC_UNKNOWN_P (INSN_VAR_LOCATION_LOC (insn)));
b5b8b0ac
AO
1110
1111 if (!df)
1112 return false;
1113
1114 insn_info = DF_INSN_UID_SAFE_GET (INSN_UID (insn));
1115 if (!insn_info)
1116 return false;
1117
1118 if (dump_file)
1119 fprintf (dump_file, "deleting debug_insn with uid = %d.\n", uid);
1120
a7e3698d
JH
1121 bitmap_clear_bit (&df->insns_to_delete, uid);
1122 bitmap_clear_bit (&df->insns_to_rescan, uid);
1123 bitmap_clear_bit (&df->insns_to_notes_rescan, uid);
b5b8b0ac 1124
b512946c
RS
1125 if (insn_info->defs == 0
1126 && insn_info->uses == 0
1127 && insn_info->eq_uses == 0
1128 && insn_info->mw_hardregs == 0)
b5b8b0ac
AO
1129 return false;
1130
1131 df_mw_hardreg_chain_delete (insn_info->mw_hardregs);
1132
1133 if (df_chain)
1134 {
1135 df_ref_chain_delete_du_chain (insn_info->defs);
1136 df_ref_chain_delete_du_chain (insn_info->uses);
1137 df_ref_chain_delete_du_chain (insn_info->eq_uses);
1138 }
1139
1140 df_ref_chain_delete (insn_info->defs);
1141 df_ref_chain_delete (insn_info->uses);
1142 df_ref_chain_delete (insn_info->eq_uses);
1143
b512946c
RS
1144 insn_info->defs = 0;
1145 insn_info->uses = 0;
1146 insn_info->eq_uses = 0;
1147 insn_info->mw_hardregs = 0;
b5b8b0ac
AO
1148
1149 return true;
1150}
1151
6fb5fa3c
DB
1152
1153/* Rescan all of the insns in the function. Note that the artificial
80eb8028 1154 uses and defs are not touched. This function will destroy def-use
6fb5fa3c
DB
1155 or use-def chains. */
1156
1157void
1158df_insn_rescan_all (void)
1159{
1160 bool no_insn_rescan = false;
1161 bool defer_insn_rescan = false;
1162 basic_block bb;
1163 bitmap_iterator bi;
1164 unsigned int uid;
b8698a0f 1165
6fb5fa3c
DB
1166 if (df->changeable_flags & DF_NO_INSN_RESCAN)
1167 {
1168 df_clear_flags (DF_NO_INSN_RESCAN);
1169 no_insn_rescan = true;
3b8266e2 1170 }
b8698a0f 1171
6fb5fa3c 1172 if (df->changeable_flags & DF_DEFER_INSN_RESCAN)
3b8266e2 1173 {
6fb5fa3c
DB
1174 df_clear_flags (DF_DEFER_INSN_RESCAN);
1175 defer_insn_rescan = true;
1176 }
1177
d648b5ff
TS
1178 auto_bitmap tmp (&df_bitmap_obstack);
1179 bitmap_copy (tmp, &df->insns_to_delete);
1180 EXECUTE_IF_SET_IN_BITMAP (tmp, 0, uid, bi)
6fb5fa3c
DB
1181 {
1182 struct df_insn_info *insn_info = DF_INSN_UID_SAFE_GET (uid);
1183 if (insn_info)
80eb8028 1184 df_insn_info_delete (uid);
3b8266e2 1185 }
6fb5fa3c 1186
a7e3698d
JH
1187 bitmap_clear (&df->insns_to_delete);
1188 bitmap_clear (&df->insns_to_rescan);
1189 bitmap_clear (&df->insns_to_notes_rescan);
6fb5fa3c 1190
11cd3bed 1191 FOR_EACH_BB_FN (bb, cfun)
6fb5fa3c 1192 {
dd3eed93 1193 rtx_insn *insn;
6fb5fa3c
DB
1194 FOR_BB_INSNS (bb, insn)
1195 {
1196 df_insn_rescan (insn);
1197 }
1198 }
1199
1200 if (no_insn_rescan)
1201 df_set_flags (DF_NO_INSN_RESCAN);
1202 if (defer_insn_rescan)
1203 df_set_flags (DF_DEFER_INSN_RESCAN);
3b8266e2
KZ
1204}
1205
1206
0a41f3b2 1207/* Process all of the deferred rescans or deletions. */
4d779342 1208
6fb5fa3c
DB
1209void
1210df_process_deferred_rescans (void)
4d779342 1211{
6fb5fa3c
DB
1212 bool no_insn_rescan = false;
1213 bool defer_insn_rescan = false;
4d779342 1214 bitmap_iterator bi;
6fb5fa3c 1215 unsigned int uid;
b8698a0f 1216
6fb5fa3c
DB
1217 if (df->changeable_flags & DF_NO_INSN_RESCAN)
1218 {
1219 df_clear_flags (DF_NO_INSN_RESCAN);
1220 no_insn_rescan = true;
1221 }
b8698a0f 1222
6fb5fa3c
DB
1223 if (df->changeable_flags & DF_DEFER_INSN_RESCAN)
1224 {
1225 df_clear_flags (DF_DEFER_INSN_RESCAN);
1226 defer_insn_rescan = true;
1227 }
1228
1229 if (dump_file)
0a41f3b2 1230 fprintf (dump_file, "starting the processing of deferred insns\n");
6fb5fa3c 1231
d648b5ff
TS
1232 auto_bitmap tmp (&df_bitmap_obstack);
1233 bitmap_copy (tmp, &df->insns_to_delete);
1234 EXECUTE_IF_SET_IN_BITMAP (tmp, 0, uid, bi)
6fb5fa3c
DB
1235 {
1236 struct df_insn_info *insn_info = DF_INSN_UID_SAFE_GET (uid);
1237 if (insn_info)
80eb8028 1238 df_insn_info_delete (uid);
6fb5fa3c
DB
1239 }
1240
d648b5ff
TS
1241 bitmap_copy (tmp, &df->insns_to_rescan);
1242 EXECUTE_IF_SET_IN_BITMAP (tmp, 0, uid, bi)
6fb5fa3c
DB
1243 {
1244 struct df_insn_info *insn_info = DF_INSN_UID_SAFE_GET (uid);
1245 if (insn_info)
1246 df_insn_rescan (insn_info->insn);
1247 }
1248
d648b5ff
TS
1249 bitmap_copy (tmp, &df->insns_to_notes_rescan);
1250 EXECUTE_IF_SET_IN_BITMAP (tmp, 0, uid, bi)
6fb5fa3c
DB
1251 {
1252 struct df_insn_info *insn_info = DF_INSN_UID_SAFE_GET (uid);
1253 if (insn_info)
1254 df_notes_rescan (insn_info->insn);
1255 }
1256
1257 if (dump_file)
0a41f3b2 1258 fprintf (dump_file, "ending the processing of deferred insns\n");
6fb5fa3c 1259
a7e3698d
JH
1260 bitmap_clear (&df->insns_to_delete);
1261 bitmap_clear (&df->insns_to_rescan);
1262 bitmap_clear (&df->insns_to_notes_rescan);
6fb5fa3c
DB
1263
1264 if (no_insn_rescan)
1265 df_set_flags (DF_NO_INSN_RESCAN);
1266 if (defer_insn_rescan)
1267 df_set_flags (DF_DEFER_INSN_RESCAN);
1268
1269 /* If someone changed regs_ever_live during this pass, fix up the
1270 entry and exit blocks. */
1271 if (df->redo_entry_and_exit)
1272 {
1273 df_update_entry_exit_and_calls ();
1274 df->redo_entry_and_exit = false;
1275 }
1276}
1277
4d779342 1278
6fb5fa3c
DB
1279/* Count the number of refs. Include the defs if INCLUDE_DEFS. Include
1280 the uses if INCLUDE_USES. Include the eq_uses if
1281 INCLUDE_EQ_USES. */
1282
1283static unsigned int
b8698a0f 1284df_count_refs (bool include_defs, bool include_uses,
6fb5fa3c
DB
1285 bool include_eq_uses)
1286{
1287 unsigned int regno;
1288 int size = 0;
1289 unsigned int m = df->regs_inited;
b8698a0f 1290
6fb5fa3c 1291 for (regno = 0; regno < m; regno++)
4d779342 1292 {
6fb5fa3c
DB
1293 if (include_defs)
1294 size += DF_REG_DEF_COUNT (regno);
1295 if (include_uses)
1296 size += DF_REG_USE_COUNT (regno);
1297 if (include_eq_uses)
1298 size += DF_REG_EQ_USE_COUNT (regno);
4d779342 1299 }
6fb5fa3c 1300 return size;
4d779342
DB
1301}
1302
1303
1304/* Take build ref table for either the uses or defs from the reg-use
6fb5fa3c
DB
1305 or reg-def chains. This version processes the refs in reg order
1306 which is likely to be best if processing the whole function. */
4d779342 1307
b8698a0f 1308static void
6fb5fa3c 1309df_reorganize_refs_by_reg_by_reg (struct df_ref_info *ref_info,
b8698a0f
L
1310 bool include_defs,
1311 bool include_uses,
6fb5fa3c 1312 bool include_eq_uses)
4d779342 1313{
6fb5fa3c 1314 unsigned int m = df->regs_inited;
4d779342
DB
1315 unsigned int regno;
1316 unsigned int offset = 0;
6fb5fa3c 1317 unsigned int start;
4d779342 1318
6fb5fa3c
DB
1319 if (df->changeable_flags & DF_NO_HARD_REGS)
1320 {
1321 start = FIRST_PSEUDO_REGISTER;
1322 memset (ref_info->begin, 0, sizeof (int) * FIRST_PSEUDO_REGISTER);
1323 memset (ref_info->count, 0, sizeof (int) * FIRST_PSEUDO_REGISTER);
4d779342 1324 }
6fb5fa3c
DB
1325 else
1326 start = 0;
4d779342 1327
b8698a0f 1328 ref_info->total_size
6fb5fa3c
DB
1329 = df_count_refs (include_defs, include_uses, include_eq_uses);
1330
1331 df_check_and_grow_ref_info (ref_info, 1);
1332
1333 for (regno = start; regno < m; regno++)
4d779342 1334 {
4d779342 1335 int count = 0;
6fb5fa3c
DB
1336 ref_info->begin[regno] = offset;
1337 if (include_defs)
1338 {
57512f53 1339 df_ref ref = DF_REG_DEF_CHAIN (regno);
b8698a0f 1340 while (ref)
6fb5fa3c
DB
1341 {
1342 ref_info->refs[offset] = ref;
1343 DF_REF_ID (ref) = offset++;
1344 count++;
1345 ref = DF_REF_NEXT_REG (ref);
7a40b8b1 1346 gcc_checking_assert (offset < ref_info->refs_size);
6fb5fa3c
DB
1347 }
1348 }
1349 if (include_uses)
4d779342 1350 {
57512f53 1351 df_ref ref = DF_REG_USE_CHAIN (regno);
b8698a0f 1352 while (ref)
4d779342
DB
1353 {
1354 ref_info->refs[offset] = ref;
1355 DF_REF_ID (ref) = offset++;
6fb5fa3c 1356 count++;
4d779342 1357 ref = DF_REF_NEXT_REG (ref);
7a40b8b1 1358 gcc_checking_assert (offset < ref_info->refs_size);
6fb5fa3c
DB
1359 }
1360 }
1361 if (include_eq_uses)
1362 {
57512f53 1363 df_ref ref = DF_REG_EQ_USE_CHAIN (regno);
b8698a0f 1364 while (ref)
6fb5fa3c
DB
1365 {
1366 ref_info->refs[offset] = ref;
1367 DF_REF_ID (ref) = offset++;
4d779342 1368 count++;
6fb5fa3c 1369 ref = DF_REF_NEXT_REG (ref);
7a40b8b1 1370 gcc_checking_assert (offset < ref_info->refs_size);
4d779342 1371 }
4d779342 1372 }
6fb5fa3c 1373 ref_info->count[regno] = count;
4d779342 1374 }
b8698a0f 1375
4d779342
DB
1376 /* The bitmap size is not decremented when refs are deleted. So
1377 reset it now that we have squished out all of the empty
1378 slots. */
6fb5fa3c 1379 ref_info->table_size = offset;
4d779342
DB
1380}
1381
4d779342 1382
6fb5fa3c
DB
1383/* Take build ref table for either the uses or defs from the reg-use
1384 or reg-def chains. This version processes the refs in insn order
1385 which is likely to be best if processing some segment of the
1386 function. */
4d779342 1387
b8698a0f 1388static void
6fb5fa3c 1389df_reorganize_refs_by_reg_by_insn (struct df_ref_info *ref_info,
b8698a0f
L
1390 bool include_defs,
1391 bool include_uses,
6fb5fa3c 1392 bool include_eq_uses)
4d779342 1393{
6fb5fa3c
DB
1394 bitmap_iterator bi;
1395 unsigned int bb_index;
1396 unsigned int m = df->regs_inited;
1397 unsigned int offset = 0;
1398 unsigned int r;
b8698a0f 1399 unsigned int start
6fb5fa3c 1400 = (df->changeable_flags & DF_NO_HARD_REGS) ? FIRST_PSEUDO_REGISTER : 0;
4d779342 1401
6fb5fa3c
DB
1402 memset (ref_info->begin, 0, sizeof (int) * df->regs_inited);
1403 memset (ref_info->count, 0, sizeof (int) * df->regs_inited);
1404
1405 ref_info->total_size = df_count_refs (include_defs, include_uses, include_eq_uses);
1406 df_check_and_grow_ref_info (ref_info, 1);
4d779342 1407
6fb5fa3c 1408 EXECUTE_IF_SET_IN_BITMAP (df->blocks_to_analyze, 0, bb_index, bi)
4d779342 1409 {
06e28de2 1410 basic_block bb = BASIC_BLOCK_FOR_FN (cfun, bb_index);
dd3eed93 1411 rtx_insn *insn;
bfac633a 1412 df_ref def, use;
6fb5fa3c
DB
1413
1414 if (include_defs)
292321a5 1415 FOR_EACH_ARTIFICIAL_DEF (def, bb_index)
23249ac4 1416 {
292321a5 1417 unsigned int regno = DF_REF_REGNO (def);
6fb5fa3c 1418 ref_info->count[regno]++;
23249ac4 1419 }
6fb5fa3c 1420 if (include_uses)
292321a5 1421 FOR_EACH_ARTIFICIAL_USE (use, bb_index)
23249ac4 1422 {
292321a5 1423 unsigned int regno = DF_REF_REGNO (use);
6fb5fa3c 1424 ref_info->count[regno]++;
23249ac4 1425 }
4d779342 1426
6fb5fa3c
DB
1427 FOR_BB_INSNS (bb, insn)
1428 {
1429 if (INSN_P (insn))
1430 {
bfac633a 1431 struct df_insn_info *insn_info = DF_INSN_INFO_GET (insn);
b8698a0f 1432
6fb5fa3c 1433 if (include_defs)
bfac633a 1434 FOR_EACH_INSN_INFO_DEF (def, insn_info)
6fb5fa3c 1435 {
bfac633a 1436 unsigned int regno = DF_REF_REGNO (def);
6fb5fa3c
DB
1437 ref_info->count[regno]++;
1438 }
1439 if (include_uses)
bfac633a 1440 FOR_EACH_INSN_INFO_USE (use, insn_info)
6fb5fa3c 1441 {
bfac633a 1442 unsigned int regno = DF_REF_REGNO (use);
6fb5fa3c
DB
1443 ref_info->count[regno]++;
1444 }
1445 if (include_eq_uses)
bfac633a 1446 FOR_EACH_INSN_INFO_EQ_USE (use, insn_info)
6fb5fa3c 1447 {
bfac633a 1448 unsigned int regno = DF_REF_REGNO (use);
6fb5fa3c
DB
1449 ref_info->count[regno]++;
1450 }
1451 }
1452 }
1453 }
1454
1455 for (r = start; r < m; r++)
1456 {
1457 ref_info->begin[r] = offset;
1458 offset += ref_info->count[r];
1459 ref_info->count[r] = 0;
1460 }
b8698a0f 1461
6fb5fa3c
DB
1462 EXECUTE_IF_SET_IN_BITMAP (df->blocks_to_analyze, 0, bb_index, bi)
1463 {
06e28de2 1464 basic_block bb = BASIC_BLOCK_FOR_FN (cfun, bb_index);
dd3eed93 1465 rtx_insn *insn;
bfac633a 1466 df_ref def, use;
6fb5fa3c
DB
1467
1468 if (include_defs)
292321a5 1469 FOR_EACH_ARTIFICIAL_DEF (def, bb_index)
23249ac4 1470 {
292321a5 1471 unsigned int regno = DF_REF_REGNO (def);
6fb5fa3c 1472 if (regno >= start)
23249ac4 1473 {
6fb5fa3c
DB
1474 unsigned int id
1475 = ref_info->begin[regno] + ref_info->count[regno]++;
292321a5
RS
1476 DF_REF_ID (def) = id;
1477 ref_info->refs[id] = def;
23249ac4 1478 }
23249ac4 1479 }
6fb5fa3c 1480 if (include_uses)
292321a5 1481 FOR_EACH_ARTIFICIAL_USE (use, bb_index)
23249ac4 1482 {
292321a5 1483 unsigned int regno = DF_REF_REGNO (def);
6fb5fa3c
DB
1484 if (regno >= start)
1485 {
1486 unsigned int id
1487 = ref_info->begin[regno] + ref_info->count[regno]++;
292321a5
RS
1488 DF_REF_ID (use) = id;
1489 ref_info->refs[id] = use;
6fb5fa3c 1490 }
23249ac4 1491 }
6fb5fa3c
DB
1492
1493 FOR_BB_INSNS (bb, insn)
1494 {
1495 if (INSN_P (insn))
1496 {
bfac633a 1497 struct df_insn_info *insn_info = DF_INSN_INFO_GET (insn);
b8698a0f 1498
6fb5fa3c 1499 if (include_defs)
bfac633a 1500 FOR_EACH_INSN_INFO_DEF (def, insn_info)
6fb5fa3c 1501 {
bfac633a 1502 unsigned int regno = DF_REF_REGNO (def);
6fb5fa3c
DB
1503 if (regno >= start)
1504 {
1505 unsigned int id
1506 = ref_info->begin[regno] + ref_info->count[regno]++;
bfac633a
RS
1507 DF_REF_ID (def) = id;
1508 ref_info->refs[id] = def;
6fb5fa3c
DB
1509 }
1510 }
1511 if (include_uses)
bfac633a 1512 FOR_EACH_INSN_INFO_USE (use, insn_info)
6fb5fa3c 1513 {
bfac633a 1514 unsigned int regno = DF_REF_REGNO (use);
6fb5fa3c
DB
1515 if (regno >= start)
1516 {
1517 unsigned int id
1518 = ref_info->begin[regno] + ref_info->count[regno]++;
bfac633a
RS
1519 DF_REF_ID (use) = id;
1520 ref_info->refs[id] = use;
6fb5fa3c
DB
1521 }
1522 }
1523 if (include_eq_uses)
bfac633a 1524 FOR_EACH_INSN_INFO_EQ_USE (use, insn_info)
6fb5fa3c 1525 {
bfac633a 1526 unsigned int regno = DF_REF_REGNO (use);
6fb5fa3c
DB
1527 if (regno >= start)
1528 {
1529 unsigned int id
1530 = ref_info->begin[regno] + ref_info->count[regno]++;
bfac633a
RS
1531 DF_REF_ID (use) = id;
1532 ref_info->refs[id] = use;
6fb5fa3c
DB
1533 }
1534 }
1535 }
1536 }
1537 }
1538
1539 /* The bitmap size is not decremented when refs are deleted. So
1540 reset it now that we have squished out all of the empty
1541 slots. */
1542
1543 ref_info->table_size = offset;
1544}
1545
1546/* Take build ref table for either the uses or defs from the reg-use
1547 or reg-def chains. */
1548
b8698a0f 1549static void
6fb5fa3c 1550df_reorganize_refs_by_reg (struct df_ref_info *ref_info,
b8698a0f
L
1551 bool include_defs,
1552 bool include_uses,
6fb5fa3c
DB
1553 bool include_eq_uses)
1554{
1555 if (df->analyze_subset)
b8698a0f 1556 df_reorganize_refs_by_reg_by_insn (ref_info, include_defs,
6fb5fa3c
DB
1557 include_uses, include_eq_uses);
1558 else
b8698a0f 1559 df_reorganize_refs_by_reg_by_reg (ref_info, include_defs,
6fb5fa3c
DB
1560 include_uses, include_eq_uses);
1561}
1562
1563
1564/* Add the refs in REF_VEC to the table in REF_INFO starting at OFFSET. */
b8698a0f
L
1565static unsigned int
1566df_add_refs_to_table (unsigned int offset,
1567 struct df_ref_info *ref_info,
b512946c 1568 df_ref ref)
6fb5fa3c 1569{
b512946c
RS
1570 for (; ref; ref = DF_REF_NEXT_LOC (ref))
1571 if (!(df->changeable_flags & DF_NO_HARD_REGS)
1572 || (DF_REF_REGNO (ref) >= FIRST_PSEUDO_REGISTER))
1573 {
1574 ref_info->refs[offset] = ref;
1575 DF_REF_ID (ref) = offset++;
1576 }
6fb5fa3c
DB
1577 return offset;
1578}
1579
1580
1581/* Count the number of refs in all of the insns of BB. Include the
1582 defs if INCLUDE_DEFS. Include the uses if INCLUDE_USES. Include the
1583 eq_uses if INCLUDE_EQ_USES. */
1584
1585static unsigned int
b8698a0f 1586df_reorganize_refs_by_insn_bb (basic_block bb, unsigned int offset,
6fb5fa3c 1587 struct df_ref_info *ref_info,
b8698a0f 1588 bool include_defs, bool include_uses,
6fb5fa3c
DB
1589 bool include_eq_uses)
1590{
dd3eed93 1591 rtx_insn *insn;
6fb5fa3c
DB
1592
1593 if (include_defs)
b8698a0f 1594 offset = df_add_refs_to_table (offset, ref_info,
6fb5fa3c
DB
1595 df_get_artificial_defs (bb->index));
1596 if (include_uses)
b8698a0f 1597 offset = df_add_refs_to_table (offset, ref_info,
6fb5fa3c
DB
1598 df_get_artificial_uses (bb->index));
1599
1600 FOR_BB_INSNS (bb, insn)
1601 if (INSN_P (insn))
1602 {
1603 unsigned int uid = INSN_UID (insn);
1604 if (include_defs)
b8698a0f 1605 offset = df_add_refs_to_table (offset, ref_info,
6fb5fa3c
DB
1606 DF_INSN_UID_DEFS (uid));
1607 if (include_uses)
b8698a0f 1608 offset = df_add_refs_to_table (offset, ref_info,
6fb5fa3c
DB
1609 DF_INSN_UID_USES (uid));
1610 if (include_eq_uses)
b8698a0f 1611 offset = df_add_refs_to_table (offset, ref_info,
6fb5fa3c 1612 DF_INSN_UID_EQ_USES (uid));
23249ac4 1613 }
6fb5fa3c
DB
1614 return offset;
1615}
1616
1617
0d52bcc1 1618/* Organize the refs by insn into the table in REF_INFO. If
6fb5fa3c
DB
1619 blocks_to_analyze is defined, use that set, otherwise the entire
1620 program. Include the defs if INCLUDE_DEFS. Include the uses if
1621 INCLUDE_USES. Include the eq_uses if INCLUDE_EQ_USES. */
1622
1623static void
1624df_reorganize_refs_by_insn (struct df_ref_info *ref_info,
b8698a0f 1625 bool include_defs, bool include_uses,
6fb5fa3c
DB
1626 bool include_eq_uses)
1627{
1628 basic_block bb;
1629 unsigned int offset = 0;
1630
1631 ref_info->total_size = df_count_refs (include_defs, include_uses, include_eq_uses);
1632 df_check_and_grow_ref_info (ref_info, 1);
1633 if (df->blocks_to_analyze)
1634 {
1635 bitmap_iterator bi;
1636 unsigned int index;
1637
1638 EXECUTE_IF_SET_IN_BITMAP (df->blocks_to_analyze, 0, index, bi)
1639 {
06e28de2
DM
1640 offset = df_reorganize_refs_by_insn_bb (BASIC_BLOCK_FOR_FN (cfun,
1641 index),
1642 offset, ref_info,
b8698a0f 1643 include_defs, include_uses,
6fb5fa3c
DB
1644 include_eq_uses);
1645 }
1646
1647 ref_info->table_size = offset;
1648 }
1649 else
1650 {
04a90bec 1651 FOR_ALL_BB_FN (bb, cfun)
b8698a0f
L
1652 offset = df_reorganize_refs_by_insn_bb (bb, offset, ref_info,
1653 include_defs, include_uses,
6fb5fa3c
DB
1654 include_eq_uses);
1655 ref_info->table_size = offset;
1656 }
1657}
1658
1659
1660/* If the use refs in DF are not organized, reorganize them. */
1661
b8698a0f 1662void
6fb5fa3c
DB
1663df_maybe_reorganize_use_refs (enum df_ref_order order)
1664{
1665 if (order == df->use_info.ref_order)
1666 return;
1667
1668 switch (order)
1669 {
1670 case DF_REF_ORDER_BY_REG:
1671 df_reorganize_refs_by_reg (&df->use_info, false, true, false);
1672 break;
1673
1674 case DF_REF_ORDER_BY_REG_WITH_NOTES:
1675 df_reorganize_refs_by_reg (&df->use_info, false, true, true);
1676 break;
1677
1678 case DF_REF_ORDER_BY_INSN:
1679 df_reorganize_refs_by_insn (&df->use_info, false, true, false);
1680 break;
1681
1682 case DF_REF_ORDER_BY_INSN_WITH_NOTES:
1683 df_reorganize_refs_by_insn (&df->use_info, false, true, true);
1684 break;
1685
1686 case DF_REF_ORDER_NO_TABLE:
1687 free (df->use_info.refs);
1688 df->use_info.refs = NULL;
1689 df->use_info.refs_size = 0;
1690 break;
1691
1692 case DF_REF_ORDER_UNORDERED:
1693 case DF_REF_ORDER_UNORDERED_WITH_NOTES:
1694 gcc_unreachable ();
1695 break;
1696 }
b8698a0f 1697
6fb5fa3c
DB
1698 df->use_info.ref_order = order;
1699}
1700
1701
1702/* If the def refs in DF are not organized, reorganize them. */
1703
b8698a0f 1704void
6fb5fa3c
DB
1705df_maybe_reorganize_def_refs (enum df_ref_order order)
1706{
1707 if (order == df->def_info.ref_order)
1708 return;
1709
1710 switch (order)
1711 {
1712 case DF_REF_ORDER_BY_REG:
1713 df_reorganize_refs_by_reg (&df->def_info, true, false, false);
1714 break;
1715
1716 case DF_REF_ORDER_BY_INSN:
1717 df_reorganize_refs_by_insn (&df->def_info, true, false, false);
1718 break;
1719
1720 case DF_REF_ORDER_NO_TABLE:
1721 free (df->def_info.refs);
1722 df->def_info.refs = NULL;
1723 df->def_info.refs_size = 0;
1724 break;
1725
1726 case DF_REF_ORDER_BY_INSN_WITH_NOTES:
1727 case DF_REF_ORDER_BY_REG_WITH_NOTES:
1728 case DF_REF_ORDER_UNORDERED:
1729 case DF_REF_ORDER_UNORDERED_WITH_NOTES:
1730 gcc_unreachable ();
1731 break;
1732 }
b8698a0f 1733
6fb5fa3c
DB
1734 df->def_info.ref_order = order;
1735}
1736
1737
6fb5fa3c 1738/* Change all of the basic block references in INSN to use the insn's
b8698a0f
L
1739 current basic block. This function is called from routines that move
1740 instructions from one block to another. */
6fb5fa3c
DB
1741
1742void
b2908ba6 1743df_insn_change_bb (rtx_insn *insn, basic_block new_bb)
6fb5fa3c 1744{
63642d5a 1745 basic_block old_bb = BLOCK_FOR_INSN (insn);
6fb5fa3c
DB
1746 struct df_insn_info *insn_info;
1747 unsigned int uid = INSN_UID (insn);
1748
63642d5a
AO
1749 if (old_bb == new_bb)
1750 return;
1751
1752 set_block_for_insn (insn, new_bb);
1753
6fb5fa3c
DB
1754 if (!df)
1755 return;
1756
1757 if (dump_file)
1758 fprintf (dump_file, "changing bb of uid %d\n", uid);
1759
1760 insn_info = DF_INSN_UID_SAFE_GET (uid);
1761 if (insn_info == NULL)
1762 {
1763 if (dump_file)
1764 fprintf (dump_file, " unscanned insn\n");
1765 df_insn_rescan (insn);
1766 return;
1767 }
1768
1769 if (!INSN_P (insn))
1770 return;
1771
18c8086d
JJ
1772 if (!DEBUG_INSN_P (insn))
1773 df_set_bb_dirty (new_bb);
6fb5fa3c
DB
1774 if (old_bb)
1775 {
1776 if (dump_file)
b8698a0f 1777 fprintf (dump_file, " from %d to %d\n",
6fb5fa3c 1778 old_bb->index, new_bb->index);
18c8086d
JJ
1779 if (!DEBUG_INSN_P (insn))
1780 df_set_bb_dirty (old_bb);
6fb5fa3c
DB
1781 }
1782 else
1783 if (dump_file)
1784 fprintf (dump_file, " to %d\n", new_bb->index);
1785}
1786
1787
1788/* Helper function for df_ref_change_reg_with_loc. */
1789
1790static void
b8698a0f 1791df_ref_change_reg_with_loc_1 (struct df_reg_info *old_df,
57512f53 1792 struct df_reg_info *new_df,
e1a2b021 1793 unsigned int new_regno, rtx loc)
6fb5fa3c 1794{
57512f53 1795 df_ref the_ref = old_df->reg_chain;
6fb5fa3c
DB
1796
1797 while (the_ref)
1798 {
57512f53 1799 if ((!DF_REF_IS_ARTIFICIAL (the_ref))
502ef838 1800 && DF_REF_LOC (the_ref)
57512f53 1801 && (*DF_REF_LOC (the_ref) == loc))
6fb5fa3c 1802 {
57512f53
KZ
1803 df_ref next_ref = DF_REF_NEXT_REG (the_ref);
1804 df_ref prev_ref = DF_REF_PREV_REG (the_ref);
b512946c 1805 df_ref *ref_ptr;
57512f53 1806 struct df_insn_info *insn_info = DF_REF_INSN_INFO (the_ref);
6fb5fa3c
DB
1807
1808 DF_REF_REGNO (the_ref) = new_regno;
1809 DF_REF_REG (the_ref) = regno_reg_rtx[new_regno];
1810
1811 /* Pull the_ref out of the old regno chain. */
1812 if (prev_ref)
57512f53 1813 DF_REF_NEXT_REG (prev_ref) = next_ref;
6fb5fa3c 1814 else
60564289 1815 old_df->reg_chain = next_ref;
6fb5fa3c 1816 if (next_ref)
57512f53 1817 DF_REF_PREV_REG (next_ref) = prev_ref;
60564289 1818 old_df->n_refs--;
6fb5fa3c
DB
1819
1820 /* Put the ref into the new regno chain. */
57512f53
KZ
1821 DF_REF_PREV_REG (the_ref) = NULL;
1822 DF_REF_NEXT_REG (the_ref) = new_df->reg_chain;
60564289 1823 if (new_df->reg_chain)
57512f53 1824 DF_REF_PREV_REG (new_df->reg_chain) = the_ref;
60564289
KG
1825 new_df->reg_chain = the_ref;
1826 new_df->n_refs++;
5288f999
KZ
1827 if (DF_REF_BB (the_ref))
1828 df_set_bb_dirty (DF_REF_BB (the_ref));
6fb5fa3c 1829
57512f53
KZ
1830 /* Need to sort the record again that the ref was in because
1831 the regno is a sorting key. First, find the right
1832 record. */
b512946c
RS
1833 if (DF_REF_REG_DEF_P (the_ref))
1834 ref_ptr = &insn_info->defs;
1835 else if (DF_REF_FLAGS (the_ref) & DF_REF_IN_NOTE)
1836 ref_ptr = &insn_info->eq_uses;
6fb5fa3c 1837 else
b512946c 1838 ref_ptr = &insn_info->uses;
57512f53 1839 if (dump_file)
b8698a0f
L
1840 fprintf (dump_file, "changing reg in insn %d\n",
1841 DF_REF_INSN_UID (the_ref));
1842
b512946c
RS
1843 /* Stop if we find the current reference or where the reference
1844 needs to be. */
1845 while (*ref_ptr != the_ref && df_ref_compare (*ref_ptr, the_ref) < 0)
1846 ref_ptr = &DF_REF_NEXT_LOC (*ref_ptr);
1847 if (*ref_ptr != the_ref)
6fb5fa3c 1848 {
b512946c
RS
1849 /* The reference needs to be promoted up the list. */
1850 df_ref next = DF_REF_NEXT_LOC (the_ref);
1851 DF_REF_NEXT_LOC (the_ref) = *ref_ptr;
1852 *ref_ptr = the_ref;
1853 do
1854 ref_ptr = &DF_REF_NEXT_LOC (*ref_ptr);
1855 while (*ref_ptr != the_ref);
1856 *ref_ptr = next;
1857 }
1858 else if (DF_REF_NEXT_LOC (the_ref)
1859 && df_ref_compare (the_ref, DF_REF_NEXT_LOC (the_ref)) > 0)
1860 {
1861 /* The reference needs to be demoted down the list. */
1862 *ref_ptr = DF_REF_NEXT_LOC (the_ref);
1863 do
1864 ref_ptr = &DF_REF_NEXT_LOC (*ref_ptr);
1865 while (*ref_ptr && df_ref_compare (the_ref, *ref_ptr) > 0);
1866 DF_REF_NEXT_LOC (the_ref) = *ref_ptr;
1867 *ref_ptr = the_ref;
6fb5fa3c 1868 }
6fb5fa3c
DB
1869
1870 the_ref = next_ref;
1871 }
1872 else
57512f53 1873 the_ref = DF_REF_NEXT_REG (the_ref);
6fb5fa3c
DB
1874 }
1875}
1876
1877
e1a2b021
RS
1878/* Change the regno of register LOC to NEW_REGNO and update the df
1879 information accordingly. Refs that do not match LOC are not changed
1880 which means that artificial refs are not changed since they have no loc.
1881 This call is to support the SET_REGNO macro. */
6fb5fa3c
DB
1882
1883void
e1a2b021 1884df_ref_change_reg_with_loc (rtx loc, unsigned int new_regno)
6fb5fa3c 1885{
e1a2b021
RS
1886 unsigned int old_regno = REGNO (loc);
1887 if (old_regno == new_regno)
6fb5fa3c
DB
1888 return;
1889
e1a2b021
RS
1890 if (df)
1891 {
1892 df_grow_reg_info ();
1893
1894 df_ref_change_reg_with_loc_1 (DF_REG_DEF_GET (old_regno),
1895 DF_REG_DEF_GET (new_regno),
1896 new_regno, loc);
1897 df_ref_change_reg_with_loc_1 (DF_REG_USE_GET (old_regno),
1898 DF_REG_USE_GET (new_regno),
1899 new_regno, loc);
1900 df_ref_change_reg_with_loc_1 (DF_REG_EQ_USE_GET (old_regno),
1901 DF_REG_EQ_USE_GET (new_regno),
1902 new_regno, loc);
1903 }
9188b286 1904 set_mode_and_regno (loc, GET_MODE (loc), new_regno);
6fb5fa3c
DB
1905}
1906
1907
1908/* Delete the mw_hardregs that point into the eq_notes. */
1909
b512946c 1910static void
6fb5fa3c
DB
1911df_mw_hardreg_chain_delete_eq_uses (struct df_insn_info *insn_info)
1912{
b512946c 1913 struct df_mw_hardreg **mw_ptr = &insn_info->mw_hardregs;
b8698a0f 1914 struct df_scan_problem_data *problem_data
6fb5fa3c
DB
1915 = (struct df_scan_problem_data *) df_scan->problem_data;
1916
b512946c 1917 while (*mw_ptr)
6fb5fa3c 1918 {
b512946c
RS
1919 df_mw_hardreg *mw = *mw_ptr;
1920 if (mw->flags & DF_REF_IN_NOTE)
6fb5fa3c 1921 {
b512946c 1922 *mw_ptr = DF_MWS_NEXT (mw);
e956943e 1923 problem_data->mw_reg_pool->remove (mw);
6fb5fa3c
DB
1924 }
1925 else
b512946c 1926 mw_ptr = &DF_MWS_NEXT (mw);
6fb5fa3c 1927 }
6fb5fa3c
DB
1928}
1929
1930
1931/* Rescan only the REG_EQUIV/REG_EQUAL notes part of INSN. */
1932
1933void
b2908ba6 1934df_notes_rescan (rtx_insn *insn)
6fb5fa3c
DB
1935{
1936 struct df_insn_info *insn_info;
1937 unsigned int uid = INSN_UID (insn);
1938
1939 if (!df)
1940 return;
1941
1942 /* The client has disabled rescanning and plans to do it itself. */
1943 if (df->changeable_flags & DF_NO_INSN_RESCAN)
1944 return;
1945
c9b69ba2
RS
1946 /* Do nothing if the insn hasn't been emitted yet. */
1947 if (!BLOCK_FOR_INSN (insn))
1948 return;
1949
6fb5fa3c
DB
1950 df_grow_bb_info (df_scan);
1951 df_grow_reg_info ();
1952
c3284718 1953 insn_info = DF_INSN_UID_SAFE_GET (INSN_UID (insn));
6fb5fa3c 1954
0a41f3b2 1955 /* The client has deferred rescanning. */
6fb5fa3c
DB
1956 if (df->changeable_flags & DF_DEFER_INSN_RESCAN)
1957 {
1958 if (!insn_info)
1959 {
1960 insn_info = df_insn_create_insn_record (insn);
b512946c
RS
1961 insn_info->defs = 0;
1962 insn_info->uses = 0;
1963 insn_info->eq_uses = 0;
1964 insn_info->mw_hardregs = 0;
6fb5fa3c 1965 }
b8698a0f 1966
a7e3698d 1967 bitmap_clear_bit (&df->insns_to_delete, uid);
6fb5fa3c
DB
1968 /* If the insn is set to be rescanned, it does not need to also
1969 be notes rescanned. */
a7e3698d
JH
1970 if (!bitmap_bit_p (&df->insns_to_rescan, uid))
1971 bitmap_set_bit (&df->insns_to_notes_rescan, INSN_UID (insn));
6fb5fa3c
DB
1972 return;
1973 }
1974
a7e3698d
JH
1975 bitmap_clear_bit (&df->insns_to_delete, uid);
1976 bitmap_clear_bit (&df->insns_to_notes_rescan, uid);
6fb5fa3c
DB
1977
1978 if (insn_info)
1979 {
1980 basic_block bb = BLOCK_FOR_INSN (insn);
1981 rtx note;
99b1c316 1982 class df_collection_rec collection_rec;
b512946c 1983 unsigned int i;
6fb5fa3c 1984
b512946c 1985 df_mw_hardreg_chain_delete_eq_uses (insn_info);
6fb5fa3c
DB
1986 df_ref_chain_delete (insn_info->eq_uses);
1987 insn_info->eq_uses = NULL;
1988
1989 /* Process REG_EQUIV/REG_EQUAL notes */
1990 for (note = REG_NOTES (insn); note;
1991 note = XEXP (note, 1))
1992 {
1993 switch (REG_NOTE_KIND (note))
1994 {
1995 case REG_EQUIV:
1996 case REG_EQUAL:
502ef838 1997 df_uses_record (&collection_rec,
6fb5fa3c 1998 &XEXP (note, 0), DF_REF_REG_USE,
502ef838 1999 bb, insn_info, DF_REF_IN_NOTE);
6fb5fa3c
DB
2000 default:
2001 break;
2002 }
2003 }
2004
2005 /* Find some place to put any new mw_hardregs. */
2006 df_canonize_collection_rec (&collection_rec);
b512946c
RS
2007 struct df_mw_hardreg **mw_ptr = &insn_info->mw_hardregs, *mw;
2008 FOR_EACH_VEC_ELT (collection_rec.mw_vec, i, mw)
6fb5fa3c 2009 {
b512946c
RS
2010 while (*mw_ptr && df_mw_compare (*mw_ptr, mw) < 0)
2011 mw_ptr = &DF_MWS_NEXT (*mw_ptr);
2012 DF_MWS_NEXT (mw) = *mw_ptr;
2013 *mw_ptr = mw;
2014 mw_ptr = &DF_MWS_NEXT (mw);
6fb5fa3c 2015 }
ff4c81cc 2016 df_refs_add_to_chains (&collection_rec, bb, insn, copy_eq_uses);
6fb5fa3c
DB
2017 }
2018 else
2019 df_insn_rescan (insn);
2020
2021}
2022
2023\f
2024/*----------------------------------------------------------------------------
2025 Hard core instruction scanning code. No external interfaces here,
2026 just a lot of routines that look inside insns.
2027----------------------------------------------------------------------------*/
2028
2029
b8698a0f 2030/* Return true if the contents of two df_ref's are identical.
6fb5fa3c
DB
2031 It ignores DF_REF_MARKER. */
2032
2033static bool
57512f53 2034df_ref_equal_p (df_ref ref1, df_ref ref2)
6fb5fa3c
DB
2035{
2036 if (!ref2)
2037 return false;
b8698a0f 2038
57512f53
KZ
2039 if (ref1 == ref2)
2040 return true;
2041
2042 if (DF_REF_CLASS (ref1) != DF_REF_CLASS (ref2)
2043 || DF_REF_REGNO (ref1) != DF_REF_REGNO (ref2)
2044 || DF_REF_REG (ref1) != DF_REF_REG (ref2)
2045 || DF_REF_TYPE (ref1) != DF_REF_TYPE (ref2)
b8698a0f 2046 || ((DF_REF_FLAGS (ref1) & ~(DF_REF_REG_MARKER + DF_REF_MW_HARDREG))
57512f53
KZ
2047 != (DF_REF_FLAGS (ref2) & ~(DF_REF_REG_MARKER + DF_REF_MW_HARDREG)))
2048 || DF_REF_BB (ref1) != DF_REF_BB (ref2)
2049 || DF_REF_INSN_INFO (ref1) != DF_REF_INSN_INFO (ref2))
2050 return false;
b8698a0f 2051
57512f53
KZ
2052 switch (DF_REF_CLASS (ref1))
2053 {
2054 case DF_REF_ARTIFICIAL:
2055 case DF_REF_BASE:
2056 return true;
ca9052ce 2057
57512f53
KZ
2058 case DF_REF_REGULAR:
2059 return DF_REF_LOC (ref1) == DF_REF_LOC (ref2);
ca9052ce 2060
57512f53
KZ
2061 default:
2062 gcc_unreachable ();
2063 }
6fb5fa3c
DB
2064}
2065
2066
2067/* Compare REF1 and REF2 for sorting. This is only called from places
2068 where all of the refs are of the same type, in the same insn, and
2069 have the same bb. So these fields are not checked. */
2070
2071static int
b512946c 2072df_ref_compare (df_ref ref1, df_ref ref2)
6fb5fa3c 2073{
57512f53
KZ
2074 if (DF_REF_CLASS (ref1) != DF_REF_CLASS (ref2))
2075 return (int)DF_REF_CLASS (ref1) - (int)DF_REF_CLASS (ref2);
2076
6fb5fa3c
DB
2077 if (DF_REF_REGNO (ref1) != DF_REF_REGNO (ref2))
2078 return (int)DF_REF_REGNO (ref1) - (int)DF_REF_REGNO (ref2);
b8698a0f 2079
6fb5fa3c
DB
2080 if (DF_REF_TYPE (ref1) != DF_REF_TYPE (ref2))
2081 return (int)DF_REF_TYPE (ref1) - (int)DF_REF_TYPE (ref2);
2082
57512f53
KZ
2083 if (DF_REF_REG (ref1) != DF_REF_REG (ref2))
2084 return (int)DF_REF_ORDER (ref1) - (int)DF_REF_ORDER (ref2);
2085
2086 /* Cannot look at the LOC field on artificial refs. */
2087 if (DF_REF_CLASS (ref1) != DF_REF_ARTIFICIAL
2088 && DF_REF_LOC (ref1) != DF_REF_LOC (ref2))
6fb5fa3c
DB
2089 return (int)DF_REF_ORDER (ref1) - (int)DF_REF_ORDER (ref2);
2090
2091 if (DF_REF_FLAGS (ref1) != DF_REF_FLAGS (ref2))
2092 {
2093 /* If two refs are identical except that one of them has is from
2094 a mw and one is not, we need to have the one with the mw
2095 first. */
2096 if (DF_REF_FLAGS_IS_SET (ref1, DF_REF_MW_HARDREG) ==
2097 DF_REF_FLAGS_IS_SET (ref2, DF_REF_MW_HARDREG))
2098 return DF_REF_FLAGS (ref1) - DF_REF_FLAGS (ref2);
2099 else if (DF_REF_FLAGS_IS_SET (ref1, DF_REF_MW_HARDREG))
2100 return -1;
2101 else
2102 return 1;
2103 }
ca9052ce 2104
5797be12 2105 return (int)DF_REF_ORDER (ref1) - (int)DF_REF_ORDER (ref2);
6fb5fa3c
DB
2106}
2107
b512946c
RS
2108/* Like df_ref_compare, but compare two df_ref* pointers R1 and R2. */
2109
2110static int
2111df_ref_ptr_compare (const void *r1, const void *r2)
2112{
2113 return df_ref_compare (*(const df_ref *) r1, *(const df_ref *) r2);
2114}
2115
6fb5fa3c
DB
2116/* Sort and compress a set of refs. */
2117
c2569604 2118static void
ff4c81cc 2119df_sort_and_compress_refs (vec<df_ref, va_heap> *ref_vec)
6fb5fa3c 2120{
c2569604 2121 unsigned int count;
6fb5fa3c
DB
2122 unsigned int i;
2123 unsigned int dist = 0;
2124
9771b263 2125 count = ref_vec->length ();
c2569604 2126
6fb5fa3c
DB
2127 /* If there are 1 or 0 elements, there is nothing to do. */
2128 if (count < 2)
c2569604 2129 return;
6fb5fa3c
DB
2130 else if (count == 2)
2131 {
9771b263
DN
2132 df_ref r0 = (*ref_vec)[0];
2133 df_ref r1 = (*ref_vec)[1];
b512946c 2134 if (df_ref_compare (r0, r1) > 0)
6b4db501 2135 std::swap ((*ref_vec)[0], (*ref_vec)[1]);
6fb5fa3c
DB
2136 }
2137 else
2138 {
2139 for (i = 0; i < count - 1; i++)
c2569604 2140 {
9771b263
DN
2141 df_ref r0 = (*ref_vec)[i];
2142 df_ref r1 = (*ref_vec)[i + 1];
b512946c 2143 if (df_ref_compare (r0, r1) >= 0)
c2569604
ILT
2144 break;
2145 }
6fb5fa3c
DB
2146 /* If the array is already strictly ordered,
2147 which is the most common case for large COUNT case
2148 (which happens for CALL INSNs),
2149 no need to sort and filter out duplicate.
b8698a0f 2150 Simply return the count.
6fb5fa3c
DB
2151 Make sure DF_GET_ADD_REFS adds refs in the increasing order
2152 of DF_REF_COMPARE. */
2153 if (i == count - 1)
c2569604 2154 return;
b512946c 2155 ref_vec->qsort (df_ref_ptr_compare);
6fb5fa3c
DB
2156 }
2157
2158 for (i=0; i<count-dist; i++)
2159 {
2160 /* Find the next ref that is not equal to the current ref. */
c2569604 2161 while (i + dist + 1 < count
9771b263
DN
2162 && df_ref_equal_p ((*ref_vec)[i],
2163 (*ref_vec)[i + dist + 1]))
6fb5fa3c 2164 {
9771b263 2165 df_free_ref ((*ref_vec)[i + dist + 1]);
6fb5fa3c
DB
2166 dist++;
2167 }
2168 /* Copy it down to the next position. */
c2569604 2169 if (dist && i + dist + 1 < count)
9771b263 2170 (*ref_vec)[i + 1] = (*ref_vec)[i + dist + 1];
6fb5fa3c
DB
2171 }
2172
2173 count -= dist;
9771b263 2174 ref_vec->truncate (count);
6fb5fa3c
DB
2175}
2176
2177
b8698a0f 2178/* Return true if the contents of two df_ref's are identical.
6fb5fa3c
DB
2179 It ignores DF_REF_MARKER. */
2180
2181static bool
2182df_mw_equal_p (struct df_mw_hardreg *mw1, struct df_mw_hardreg *mw2)
2183{
2184 if (!mw2)
2185 return false;
2186 return (mw1 == mw2) ||
2187 (mw1->mw_reg == mw2->mw_reg
2188 && mw1->type == mw2->type
2189 && mw1->flags == mw2->flags
2190 && mw1->start_regno == mw2->start_regno
2191 && mw1->end_regno == mw2->end_regno);
2192}
2193
2194
2195/* Compare MW1 and MW2 for sorting. */
2196
2197static int
b512946c 2198df_mw_compare (const df_mw_hardreg *mw1, const df_mw_hardreg *mw2)
6fb5fa3c 2199{
6fb5fa3c
DB
2200 if (mw1->type != mw2->type)
2201 return mw1->type - mw2->type;
2202
2203 if (mw1->flags != mw2->flags)
2204 return mw1->flags - mw2->flags;
2205
2206 if (mw1->start_regno != mw2->start_regno)
2207 return mw1->start_regno - mw2->start_regno;
2208
2209 if (mw1->end_regno != mw2->end_regno)
2210 return mw1->end_regno - mw2->end_regno;
2211
74a4de68 2212 return mw1->mw_order - mw2->mw_order;
6fb5fa3c
DB
2213}
2214
b512946c
RS
2215/* Like df_mw_compare, but compare two df_mw_hardreg** pointers R1 and R2. */
2216
2217static int
2218df_mw_ptr_compare (const void *m1, const void *m2)
2219{
2220 return df_mw_compare (*(const df_mw_hardreg *const *) m1,
2221 *(const df_mw_hardreg *const *) m2);
2222}
6fb5fa3c
DB
2223
2224/* Sort and compress a set of refs. */
2225
c2569604 2226static void
526ceb68 2227df_sort_and_compress_mws (vec<df_mw_hardreg *, va_heap> *mw_vec)
6fb5fa3c 2228{
c2569604 2229 unsigned int count;
b8698a0f 2230 struct df_scan_problem_data *problem_data
6fb5fa3c
DB
2231 = (struct df_scan_problem_data *) df_scan->problem_data;
2232 unsigned int i;
2233 unsigned int dist = 0;
6fb5fa3c 2234
9771b263 2235 count = mw_vec->length ();
6fb5fa3c 2236 if (count < 2)
c2569604 2237 return;
6fb5fa3c
DB
2238 else if (count == 2)
2239 {
9771b263
DN
2240 struct df_mw_hardreg *m0 = (*mw_vec)[0];
2241 struct df_mw_hardreg *m1 = (*mw_vec)[1];
b512946c 2242 if (df_mw_compare (m0, m1) > 0)
6fb5fa3c 2243 {
9771b263
DN
2244 struct df_mw_hardreg *tmp = (*mw_vec)[0];
2245 (*mw_vec)[0] = (*mw_vec)[1];
2246 (*mw_vec)[1] = tmp;
6fb5fa3c
DB
2247 }
2248 }
2249 else
b512946c 2250 mw_vec->qsort (df_mw_ptr_compare);
6fb5fa3c
DB
2251
2252 for (i=0; i<count-dist; i++)
2253 {
2254 /* Find the next ref that is not equal to the current ref. */
c2569604 2255 while (i + dist + 1 < count
9771b263 2256 && df_mw_equal_p ((*mw_vec)[i], (*mw_vec)[i + dist + 1]))
6fb5fa3c 2257 {
e956943e 2258 problem_data->mw_reg_pool->remove ((*mw_vec)[i + dist + 1]);
6fb5fa3c
DB
2259 dist++;
2260 }
2261 /* Copy it down to the next position. */
c2569604 2262 if (dist && i + dist + 1 < count)
9771b263 2263 (*mw_vec)[i + 1] = (*mw_vec)[i + dist + 1];
6fb5fa3c
DB
2264 }
2265
2266 count -= dist;
9771b263 2267 mw_vec->truncate (count);
6fb5fa3c
DB
2268}
2269
2270
2271/* Sort and remove duplicates from the COLLECTION_REC. */
2272
2273static void
99b1c316 2274df_canonize_collection_rec (class df_collection_rec *collection_rec)
6fb5fa3c 2275{
c2569604
ILT
2276 df_sort_and_compress_refs (&collection_rec->def_vec);
2277 df_sort_and_compress_refs (&collection_rec->use_vec);
2278 df_sort_and_compress_refs (&collection_rec->eq_use_vec);
2279 df_sort_and_compress_mws (&collection_rec->mw_vec);
6fb5fa3c
DB
2280}
2281
2282
2283/* Add the new df_ref to appropriate reg_info/ref_info chains. */
2284
2285static void
b8698a0f
L
2286df_install_ref (df_ref this_ref,
2287 struct df_reg_info *reg_info,
6fb5fa3c
DB
2288 struct df_ref_info *ref_info,
2289 bool add_to_table)
2290{
2291 unsigned int regno = DF_REF_REGNO (this_ref);
2292 /* Add the ref to the reg_{def,use,eq_use} chain. */
57512f53 2293 df_ref head = reg_info->reg_chain;
6fb5fa3c
DB
2294
2295 reg_info->reg_chain = this_ref;
2296 reg_info->n_refs++;
2297
2298 if (DF_REF_FLAGS_IS_SET (this_ref, DF_HARD_REG_LIVE))
2299 {
2300 gcc_assert (regno < FIRST_PSEUDO_REGISTER);
2301 df->hard_regs_live_count[regno]++;
2302 }
2303
7a40b8b1
JH
2304 gcc_checking_assert (DF_REF_NEXT_REG (this_ref) == NULL
2305 && DF_REF_PREV_REG (this_ref) == NULL);
6fb5fa3c
DB
2306
2307 DF_REF_NEXT_REG (this_ref) = head;
2308
2309 /* We cannot actually link to the head of the chain. */
2310 DF_REF_PREV_REG (this_ref) = NULL;
2311
2312 if (head)
2313 DF_REF_PREV_REG (head) = this_ref;
b8698a0f 2314
6fb5fa3c
DB
2315 if (add_to_table)
2316 {
2317 gcc_assert (ref_info->ref_order != DF_REF_ORDER_NO_TABLE);
2318 df_check_and_grow_ref_info (ref_info, 1);
2319 DF_REF_ID (this_ref) = ref_info->table_size;
2320 /* Add the ref to the big array of defs. */
2321 ref_info->refs[ref_info->table_size] = this_ref;
2322 ref_info->table_size++;
b8698a0f 2323 }
6fb5fa3c
DB
2324 else
2325 DF_REF_ID (this_ref) = -1;
b8698a0f 2326
6fb5fa3c
DB
2327 ref_info->total_size++;
2328}
2329
2330
2331/* This function takes one of the groups of refs (defs, uses or
2332 eq_uses) and installs the entire group into the insn. It also adds
2333 each of these refs into the appropriate chains. */
2334
b512946c 2335static df_ref
6fb5fa3c 2336df_install_refs (basic_block bb,
ff4c81cc 2337 const vec<df_ref, va_heap> *old_vec,
b8698a0f 2338 struct df_reg_info **reg_info,
6fb5fa3c
DB
2339 struct df_ref_info *ref_info,
2340 bool is_notes)
2341{
ff4c81cc 2342 unsigned int count = old_vec->length ();
6fb5fa3c
DB
2343 if (count)
2344 {
6fb5fa3c 2345 bool add_to_table;
c2569604
ILT
2346 df_ref this_ref;
2347 unsigned int ix;
6fb5fa3c
DB
2348
2349 switch (ref_info->ref_order)
2350 {
2351 case DF_REF_ORDER_UNORDERED_WITH_NOTES:
2352 case DF_REF_ORDER_BY_REG_WITH_NOTES:
2353 case DF_REF_ORDER_BY_INSN_WITH_NOTES:
2354 ref_info->ref_order = DF_REF_ORDER_UNORDERED_WITH_NOTES;
2355 add_to_table = true;
2356 break;
2357 case DF_REF_ORDER_UNORDERED:
2358 case DF_REF_ORDER_BY_REG:
2359 case DF_REF_ORDER_BY_INSN:
2360 ref_info->ref_order = DF_REF_ORDER_UNORDERED;
2361 add_to_table = !is_notes;
2362 break;
2363 default:
2364 add_to_table = false;
2365 break;
2366 }
2367
2368 /* Do not add if ref is not in the right blocks. */
2369 if (add_to_table && df->analyze_subset)
2370 add_to_table = bitmap_bit_p (df->blocks_to_analyze, bb->index);
2371
ff4c81cc 2372 FOR_EACH_VEC_ELT (*old_vec, ix, this_ref)
6fb5fa3c 2373 {
b512946c
RS
2374 DF_REF_NEXT_LOC (this_ref) = (ix + 1 < old_vec->length ()
2375 ? (*old_vec)[ix + 1]
2376 : NULL);
b8698a0f 2377 df_install_ref (this_ref, reg_info[DF_REF_REGNO (this_ref)],
6fb5fa3c
DB
2378 ref_info, add_to_table);
2379 }
b512946c 2380 return (*old_vec)[0];
6fb5fa3c
DB
2381 }
2382 else
b512946c 2383 return 0;
6fb5fa3c
DB
2384}
2385
2386
2387/* This function takes the mws installs the entire group into the
2388 insn. */
2389
b512946c 2390static struct df_mw_hardreg *
526ceb68 2391df_install_mws (const vec<df_mw_hardreg *, va_heap> *old_vec)
6fb5fa3c 2392{
ff4c81cc 2393 unsigned int count = old_vec->length ();
6fb5fa3c
DB
2394 if (count)
2395 {
b512946c
RS
2396 for (unsigned int i = 0; i < count - 1; i++)
2397 DF_MWS_NEXT ((*old_vec)[i]) = (*old_vec)[i + 1];
2398 DF_MWS_NEXT ((*old_vec)[count - 1]) = 0;
2399 return (*old_vec)[0];
6fb5fa3c
DB
2400 }
2401 else
b512946c 2402 return 0;
6fb5fa3c
DB
2403}
2404
2405
2406/* Add a chain of df_refs to appropriate ref chain/reg_info/ref_info
2407 chains and update other necessary information. */
2408
2409static void
99b1c316 2410df_refs_add_to_chains (class df_collection_rec *collection_rec,
b2908ba6 2411 basic_block bb, rtx_insn *insn, unsigned int flags)
6fb5fa3c
DB
2412{
2413 if (insn)
2414 {
50e94c7e 2415 struct df_insn_info *insn_rec = DF_INSN_INFO_GET (insn);
6fb5fa3c
DB
2416 /* If there is a vector in the collection rec, add it to the
2417 insn. A null rec is a signal that the caller will handle the
2418 chain specially. */
ff4c81cc 2419 if (flags & copy_defs)
6fb5fa3c 2420 {
b512946c 2421 gcc_checking_assert (!insn_rec->defs);
b8698a0f 2422 insn_rec->defs
ff4c81cc 2423 = df_install_refs (bb, &collection_rec->def_vec,
6fb5fa3c
DB
2424 df->def_regs,
2425 &df->def_info, false);
2426 }
ff4c81cc 2427 if (flags & copy_uses)
6fb5fa3c 2428 {
b512946c 2429 gcc_checking_assert (!insn_rec->uses);
b8698a0f 2430 insn_rec->uses
ff4c81cc 2431 = df_install_refs (bb, &collection_rec->use_vec,
6fb5fa3c
DB
2432 df->use_regs,
2433 &df->use_info, false);
2434 }
ff4c81cc 2435 if (flags & copy_eq_uses)
6fb5fa3c 2436 {
b512946c 2437 gcc_checking_assert (!insn_rec->eq_uses);
b8698a0f 2438 insn_rec->eq_uses
ff4c81cc 2439 = df_install_refs (bb, &collection_rec->eq_use_vec,
6fb5fa3c
DB
2440 df->eq_use_regs,
2441 &df->use_info, true);
2442 }
ff4c81cc 2443 if (flags & copy_mw)
6fb5fa3c 2444 {
b512946c 2445 gcc_checking_assert (!insn_rec->mw_hardregs);
b8698a0f 2446 insn_rec->mw_hardregs
ff4c81cc 2447 = df_install_mws (&collection_rec->mw_vec);
6fb5fa3c
DB
2448 }
2449 }
2450 else
2451 {
2452 struct df_scan_bb_info *bb_info = df_scan_get_bb_info (bb->index);
2453
b512946c 2454 gcc_checking_assert (!bb_info->artificial_defs);
b8698a0f 2455 bb_info->artificial_defs
ff4c81cc 2456 = df_install_refs (bb, &collection_rec->def_vec,
6fb5fa3c
DB
2457 df->def_regs,
2458 &df->def_info, false);
b512946c 2459 gcc_checking_assert (!bb_info->artificial_uses);
b8698a0f 2460 bb_info->artificial_uses
ff4c81cc 2461 = df_install_refs (bb, &collection_rec->use_vec,
6fb5fa3c
DB
2462 df->use_regs,
2463 &df->use_info, false);
2464 }
2465}
4d779342 2466
4d779342 2467
502ef838 2468/* Allocate a ref and initialize its fields. */
6fb5fa3c 2469
b8698a0f
L
2470static df_ref
2471df_ref_create_structure (enum df_ref_class cl,
99b1c316 2472 class df_collection_rec *collection_rec,
b8698a0f 2473 rtx reg, rtx *loc,
50e94c7e 2474 basic_block bb, struct df_insn_info *info,
b8698a0f 2475 enum df_ref_type ref_type,
502ef838 2476 int ref_flags)
6fb5fa3c 2477{
b9d04e91
EB
2478 const unsigned int regno
2479 = REGNO (GET_CODE (reg) == SUBREG ? SUBREG_REG (reg) : reg);
6fb5fa3c
DB
2480 struct df_scan_problem_data *problem_data
2481 = (struct df_scan_problem_data *) df_scan->problem_data;
b9d04e91 2482 df_ref this_ref;
6fb5fa3c 2483
57512f53 2484 switch (cl)
ca9052ce 2485 {
57512f53 2486 case DF_REF_BASE:
e956943e 2487 this_ref = (df_ref) (problem_data->ref_base_pool->allocate ());
7a40b8b1 2488 gcc_checking_assert (loc == NULL);
57512f53
KZ
2489 break;
2490
2491 case DF_REF_ARTIFICIAL:
e956943e 2492 this_ref = (df_ref) (problem_data->ref_artificial_pool->allocate ());
57512f53 2493 this_ref->artificial_ref.bb = bb;
7a40b8b1 2494 gcc_checking_assert (loc == NULL);
57512f53
KZ
2495 break;
2496
2497 case DF_REF_REGULAR:
e956943e 2498 this_ref = (df_ref) (problem_data->ref_regular_pool->allocate ());
57512f53 2499 this_ref->regular_ref.loc = loc;
7a40b8b1 2500 gcc_checking_assert (loc);
57512f53 2501 break;
b9d04e91
EB
2502
2503 default:
2504 gcc_unreachable ();
ca9052ce 2505 }
57512f53
KZ
2506
2507 DF_REF_CLASS (this_ref) = cl;
6fb5fa3c
DB
2508 DF_REF_ID (this_ref) = -1;
2509 DF_REF_REG (this_ref) = reg;
b9d04e91 2510 DF_REF_REGNO (this_ref) = regno;
57512f53 2511 DF_REF_TYPE (this_ref) = ref_type;
50e94c7e 2512 DF_REF_INSN_INFO (this_ref) = info;
6fb5fa3c 2513 DF_REF_CHAIN (this_ref) = NULL;
6fb5fa3c 2514 DF_REF_FLAGS (this_ref) = ref_flags;
6fb5fa3c
DB
2515 DF_REF_NEXT_REG (this_ref) = NULL;
2516 DF_REF_PREV_REG (this_ref) = NULL;
2517 DF_REF_ORDER (this_ref) = df->ref_order++;
2518
b9d04e91
EB
2519 /* We need to clear the DF_HARD_REG_LIVE bit because fwprop, and in the
2520 future possibly other optimizations, sometimes create new refs using
2521 live refs as the model. */
6fb5fa3c
DB
2522 DF_REF_FLAGS_CLEAR (this_ref, DF_HARD_REG_LIVE);
2523
b9d04e91 2524 /* Now see if this ref really needs to have the bit set. */
bf743fc4 2525 if (regno < FIRST_PSEUDO_REGISTER
b9d04e91
EB
2526 && cl != DF_REF_ARTIFICIAL
2527 && !DEBUG_INSN_P (info->insn))
6fb5fa3c 2528 {
b9d04e91 2529 if (ref_type == DF_REF_REG_DEF)
6fb5fa3c
DB
2530 {
2531 if (!DF_REF_FLAGS_IS_SET (this_ref, DF_REF_MAY_CLOBBER))
2532 DF_REF_FLAGS_SET (this_ref, DF_HARD_REG_LIVE);
2533 }
2534 else if (!(TEST_HARD_REG_BIT (elim_reg_set, regno)
2535 && (regno == FRAME_POINTER_REGNUM
2536 || regno == ARG_POINTER_REGNUM)))
2537 DF_REF_FLAGS_SET (this_ref, DF_HARD_REG_LIVE);
2538 }
2539
2540 if (collection_rec)
2541 {
57512f53 2542 if (DF_REF_REG_DEF_P (this_ref))
9771b263 2543 collection_rec->def_vec.safe_push (this_ref);
6fb5fa3c 2544 else if (DF_REF_FLAGS (this_ref) & DF_REF_IN_NOTE)
9771b263 2545 collection_rec->eq_use_vec.safe_push (this_ref);
6fb5fa3c 2546 else
9771b263 2547 collection_rec->use_vec.safe_push (this_ref);
4d779342 2548 }
dc007c1f
PB
2549 else
2550 df_install_ref_incremental (this_ref);
6fb5fa3c 2551
4d779342
DB
2552 return this_ref;
2553}
2554
2555
2556/* Create new references of type DF_REF_TYPE for each part of register REG
502ef838 2557 at address LOC within INSN of BB. */
ca9052ce 2558
4d779342
DB
2559
2560static void
b8698a0f 2561df_ref_record (enum df_ref_class cl,
99b1c316 2562 class df_collection_rec *collection_rec,
b8698a0f 2563 rtx reg, rtx *loc,
50e94c7e 2564 basic_block bb, struct df_insn_info *insn_info,
b8698a0f 2565 enum df_ref_type ref_type,
502ef838 2566 int ref_flags)
4d779342 2567{
23249ac4 2568 unsigned int regno;
4d779342 2569
7a40b8b1 2570 gcc_checking_assert (REG_P (reg) || GET_CODE (reg) == SUBREG);
4d779342 2571
4d779342
DB
2572 regno = REGNO (GET_CODE (reg) == SUBREG ? SUBREG_REG (reg) : reg);
2573 if (regno < FIRST_PSEUDO_REGISTER)
2574 {
23249ac4
DB
2575 struct df_mw_hardreg *hardreg = NULL;
2576 struct df_scan_problem_data *problem_data
6fb5fa3c
DB
2577 = (struct df_scan_problem_data *) df_scan->problem_data;
2578 unsigned int i;
2579 unsigned int endregno;
57512f53 2580 df_ref ref;
4d779342 2581
4d779342 2582 if (GET_CODE (reg) == SUBREG)
f1f4e530 2583 {
9872bd8c
JJ
2584 int off = subreg_regno_offset (regno, GET_MODE (SUBREG_REG (reg)),
2585 SUBREG_BYTE (reg), GET_MODE (reg));
2586 unsigned int nregno = regno + off;
2587 endregno = nregno + subreg_nregs (reg);
2588 if (off < 0 && regno < (unsigned) -off)
2589 /* Deal with paradoxical SUBREGs on big endian where
2590 in debug insns the hard reg number might be smaller
2591 than -off, such as (subreg:DI (reg:SI 0 [+4 ]) 0));
2592 RA decisions shouldn't be affected by debug insns
2593 and so RA can decide to put pseudo into a hard reg
2594 with small REGNO, even when it is referenced in
2595 a paradoxical SUBREG in a debug insn. */
2596 regno = 0;
2597 else
2598 regno = nregno;
f1f4e530
JM
2599 }
2600 else
72d19505 2601 endregno = END_REGNO (reg);
4d779342 2602
6fb5fa3c
DB
2603 /* If this is a multiword hardreg, we create some extra
2604 datastructures that will enable us to easily build REG_DEAD
2605 and REG_UNUSED notes. */
dc007c1f
PB
2606 if (collection_rec
2607 && (endregno != regno + 1) && insn_info)
23249ac4 2608 {
b8698a0f 2609 /* Sets to a subreg of a multiword register are partial.
23249ac4 2610 Sets to a non-subreg of a multiword register are not. */
6f5c1520 2611 if (GET_CODE (reg) == SUBREG)
23249ac4
DB
2612 ref_flags |= DF_REF_PARTIAL;
2613 ref_flags |= DF_REF_MW_HARDREG;
6fb5fa3c 2614
7232f7c4
JM
2615 gcc_assert (regno < endregno);
2616
e956943e 2617 hardreg = problem_data->mw_reg_pool->allocate ();
23249ac4
DB
2618 hardreg->type = ref_type;
2619 hardreg->flags = ref_flags;
2620 hardreg->mw_reg = reg;
6fb5fa3c
DB
2621 hardreg->start_regno = regno;
2622 hardreg->end_regno = endregno - 1;
2623 hardreg->mw_order = df->ref_order++;
9771b263 2624 collection_rec->mw_vec.safe_push (hardreg);
23249ac4
DB
2625 }
2626
4d779342
DB
2627 for (i = regno; i < endregno; i++)
2628 {
b8698a0f 2629 ref = df_ref_create_structure (cl, collection_rec, regno_reg_rtx[i], loc,
502ef838 2630 bb, insn_info, ref_type, ref_flags);
23249ac4 2631
6fb5fa3c 2632 gcc_assert (ORIGINAL_REGNO (DF_REF_REG (ref)) == i);
4d779342
DB
2633 }
2634 }
2635 else
2636 {
b8698a0f 2637 df_ref_create_structure (cl, collection_rec, reg, loc, bb, insn_info,
502ef838 2638 ref_type, ref_flags);
4d779342
DB
2639 }
2640}
2641
2642
c5ebdc25
DA
2643/* Process all the registers defined in the rtx pointed by LOC.
2644 Autoincrement/decrement definitions will be picked up by df_uses_record.
2645 Any change here has to be matched in df_find_hard_reg_defs_1. */
4d779342
DB
2646
2647static void
99b1c316 2648df_def_record_1 (class df_collection_rec *collection_rec,
c5ebdc25 2649 rtx *loc, basic_block bb, struct df_insn_info *insn_info,
bbbbb16a 2650 int flags)
4d779342 2651{
c5ebdc25 2652 rtx dst = *loc;
4d779342 2653
b5642e20
DB
2654 /* It is legal to have a set destination be a parallel. */
2655 if (GET_CODE (dst) == PARALLEL)
4d779342
DB
2656 {
2657 int i;
4d779342
DB
2658 for (i = XVECLEN (dst, 0) - 1; i >= 0; i--)
2659 {
2660 rtx temp = XVECEXP (dst, 0, i);
c5ebdc25
DA
2661 gcc_assert (GET_CODE (temp) == EXPR_LIST);
2662 df_def_record_1 (collection_rec, &XEXP (temp, 0),
2663 bb, insn_info, flags);
4d779342
DB
2664 }
2665 return;
2666 }
2667
ca9052ce 2668 if (GET_CODE (dst) == STRICT_LOW_PART)
4d779342 2669 {
ca9052ce
KZ
2670 flags |= DF_REF_READ_WRITE | DF_REF_PARTIAL | DF_REF_STRICT_LOW_PART;
2671
2672 loc = &XEXP (dst, 0);
2673 dst = *loc;
2674 }
2675
2676 if (GET_CODE (dst) == ZERO_EXTRACT)
2677 {
2678 flags |= DF_REF_READ_WRITE | DF_REF_PARTIAL | DF_REF_ZERO_EXTRACT;
b8698a0f 2679
4d779342
DB
2680 loc = &XEXP (dst, 0);
2681 dst = *loc;
4d779342
DB
2682 }
2683
ba49cb7b
KZ
2684 /* At this point if we do not have a reg or a subreg, just return. */
2685 if (REG_P (dst))
2686 {
502ef838
PB
2687 df_ref_record (DF_REF_REGULAR, collection_rec,
2688 dst, loc, bb, insn_info, DF_REF_REG_DEF, flags);
ba49cb7b
KZ
2689
2690 /* We want to keep sp alive everywhere - by making all
2691 writes to sp also use of sp. */
2692 if (REGNO (dst) == STACK_POINTER_REGNUM)
57512f53 2693 df_ref_record (DF_REF_BASE, collection_rec,
502ef838 2694 dst, NULL, bb, insn_info, DF_REF_REG_USE, flags);
ba49cb7b
KZ
2695 }
2696 else if (GET_CODE (dst) == SUBREG && REG_P (SUBREG_REG (dst)))
2697 {
33845ca9 2698 if (read_modify_subreg_p (dst))
ba49cb7b 2699 flags |= DF_REF_READ_WRITE | DF_REF_PARTIAL;
7bb3ae2f 2700
ba49cb7b 2701 flags |= DF_REF_SUBREG;
47220f03 2702
502ef838
PB
2703 df_ref_record (DF_REF_REGULAR, collection_rec,
2704 dst, loc, bb, insn_info, DF_REF_REG_DEF, flags);
ba49cb7b 2705 }
4d779342
DB
2706}
2707
2708
c5ebdc25
DA
2709/* Process all the registers defined in the pattern rtx, X. Any change
2710 here has to be matched in df_find_hard_reg_defs. */
4d779342
DB
2711
2712static void
99b1c316 2713df_defs_record (class df_collection_rec *collection_rec,
50e94c7e 2714 rtx x, basic_block bb, struct df_insn_info *insn_info,
bbbbb16a 2715 int flags)
4d779342
DB
2716{
2717 RTX_CODE code = GET_CODE (x);
c5ebdc25 2718 int i;
4d779342 2719
c5ebdc25 2720 switch (code)
4d779342 2721 {
c5ebdc25
DA
2722 case SET:
2723 df_def_record_1 (collection_rec, &SET_DEST (x), bb, insn_info, flags);
2724 break;
2725
2726 case CLOBBER:
2727 flags |= DF_REF_MUST_CLOBBER;
2728 df_def_record_1 (collection_rec, &XEXP (x, 0), bb, insn_info, flags);
2729 break;
2730
2731 case COND_EXEC:
b8698a0f 2732 df_defs_record (collection_rec, COND_EXEC_CODE (x),
50e94c7e 2733 bb, insn_info, DF_REF_CONDITIONAL);
c5ebdc25
DA
2734 break;
2735
2736 case PARALLEL:
2737 for (i = 0; i < XVECLEN (x, 0); i++)
2738 df_defs_record (collection_rec, XVECEXP (x, 0, i),
2739 bb, insn_info, flags);
2740 break;
2741 default:
2742 /* No DEFs to record in other cases */
2743 break;
4d779342 2744 }
c5ebdc25
DA
2745}
2746
2747/* Set bits in *DEFS for hard registers found in the rtx DST, which is the
2748 destination of a set or clobber. This has to match the logic in
2749 df_defs_record_1. */
2750
2751static void
2752df_find_hard_reg_defs_1 (rtx dst, HARD_REG_SET *defs)
2753{
2754 /* It is legal to have a set destination be a parallel. */
2755 if (GET_CODE (dst) == PARALLEL)
4d779342
DB
2756 {
2757 int i;
c5ebdc25
DA
2758 for (i = XVECLEN (dst, 0) - 1; i >= 0; i--)
2759 {
2760 rtx temp = XVECEXP (dst, 0, i);
2761 gcc_assert (GET_CODE (temp) == EXPR_LIST);
2762 df_find_hard_reg_defs_1 (XEXP (temp, 0), defs);
2763 }
2764 return;
2765 }
2766
2767 if (GET_CODE (dst) == STRICT_LOW_PART)
2768 dst = XEXP (dst, 0);
2769
2770 if (GET_CODE (dst) == ZERO_EXTRACT)
2771 dst = XEXP (dst, 0);
2772
2773 /* At this point if we do not have a reg or a subreg, just return. */
2774 if (REG_P (dst) && HARD_REGISTER_P (dst))
2775 SET_HARD_REG_BIT (*defs, REGNO (dst));
2776 else if (GET_CODE (dst) == SUBREG
2777 && REG_P (SUBREG_REG (dst)) && HARD_REGISTER_P (dst))
2778 SET_HARD_REG_BIT (*defs, REGNO (SUBREG_REG (dst)));
2779}
2780
2781/* Set bits in *DEFS for hard registers defined in the pattern X. This
2782 has to match the logic in df_defs_record. */
4d779342 2783
c5ebdc25
DA
2784static void
2785df_find_hard_reg_defs (rtx x, HARD_REG_SET *defs)
2786{
2787 RTX_CODE code = GET_CODE (x);
2788 int i;
2789
2790 switch (code)
2791 {
2792 case SET:
2793 df_find_hard_reg_defs_1 (SET_DEST (x), defs);
2794 break;
2795
2796 case CLOBBER:
2797 df_find_hard_reg_defs_1 (XEXP (x, 0), defs);
2798 break;
2799
2800 case COND_EXEC:
2801 df_find_hard_reg_defs (COND_EXEC_CODE (x), defs);
2802 break;
2803
2804 case PARALLEL:
2805 for (i = 0; i < XVECLEN (x, 0); i++)
2806 df_find_hard_reg_defs (XVECEXP (x, 0, i), defs);
2807 break;
2808 default:
2809 /* No DEFs to record in other cases */
2810 break;
4d779342
DB
2811 }
2812}
2813
2814
502ef838 2815/* Process all the registers used in the rtx at address LOC. */
4d779342
DB
2816
2817static void
99b1c316 2818df_uses_record (class df_collection_rec *collection_rec,
6fb5fa3c 2819 rtx *loc, enum df_ref_type ref_type,
50e94c7e 2820 basic_block bb, struct df_insn_info *insn_info,
502ef838 2821 int flags)
4d779342
DB
2822{
2823 RTX_CODE code;
2824 rtx x;
6fb5fa3c 2825
4d779342
DB
2826 retry:
2827 x = *loc;
2828 if (!x)
2829 return;
2830 code = GET_CODE (x);
2831 switch (code)
2832 {
2833 case LABEL_REF:
2834 case SYMBOL_REF:
4d779342 2835 case CONST:
d8116890 2836 CASE_CONST_ANY:
4d779342 2837 case PC:
4d779342
DB
2838 case ADDR_VEC:
2839 case ADDR_DIFF_VEC:
2840 return;
2841
2842 case CLOBBER:
2843 /* If we are clobbering a MEM, mark any registers inside the address
2844 as being used. */
2845 if (MEM_P (XEXP (x, 0)))
502ef838 2846 df_uses_record (collection_rec,
6fb5fa3c 2847 &XEXP (XEXP (x, 0), 0),
50e94c7e
SB
2848 DF_REF_REG_MEM_STORE,
2849 bb, insn_info,
502ef838 2850 flags);
4d779342
DB
2851
2852 /* If we're clobbering a REG then we have a def so ignore. */
2853 return;
2854
2855 case MEM:
502ef838 2856 df_uses_record (collection_rec,
b8698a0f 2857 &XEXP (x, 0), DF_REF_REG_MEM_LOAD,
502ef838 2858 bb, insn_info, flags & DF_REF_IN_NOTE);
4d779342
DB
2859 return;
2860
2861 case SUBREG:
2862 /* While we're here, optimize this case. */
23249ac4 2863 flags |= DF_REF_PARTIAL;
4d779342
DB
2864 /* In case the SUBREG is not of a REG, do not optimize. */
2865 if (!REG_P (SUBREG_REG (x)))
2866 {
2867 loc = &SUBREG_REG (x);
502ef838 2868 df_uses_record (collection_rec, loc, ref_type, bb, insn_info, flags);
4d779342
DB
2869 return;
2870 }
191816a3 2871 /* Fall through */
4d779342
DB
2872
2873 case REG:
502ef838 2874 df_ref_record (DF_REF_REGULAR, collection_rec,
50e94c7e 2875 x, loc, bb, insn_info,
502ef838 2876 ref_type, flags);
4d779342
DB
2877 return;
2878
ca9052ce
KZ
2879 case SIGN_EXTRACT:
2880 case ZERO_EXTRACT:
2881 {
502ef838
PB
2882 df_uses_record (collection_rec,
2883 &XEXP (x, 1), ref_type, bb, insn_info, flags);
2884 df_uses_record (collection_rec,
2885 &XEXP (x, 2), ref_type, bb, insn_info, flags);
2886
2887 /* If the parameters to the zero or sign extract are
2888 constants, strip them off and recurse, otherwise there is
2889 no information that we can gain from this operation. */
2890 if (code == ZERO_EXTRACT)
2891 flags |= DF_REF_ZERO_EXTRACT;
2892 else
2893 flags |= DF_REF_SIGN_EXTRACT;
2894
2895 df_uses_record (collection_rec,
2896 &XEXP (x, 0), ref_type, bb, insn_info, flags);
2897 return;
ca9052ce
KZ
2898 }
2899 break;
2900
4d779342
DB
2901 case SET:
2902 {
2903 rtx dst = SET_DEST (x);
2904 gcc_assert (!(flags & DF_REF_IN_NOTE));
502ef838
PB
2905 df_uses_record (collection_rec,
2906 &SET_SRC (x), DF_REF_REG_USE, bb, insn_info, flags);
4d779342
DB
2907
2908 switch (GET_CODE (dst))
2909 {
2910 case SUBREG:
33845ca9 2911 if (read_modify_subreg_p (dst))
4d779342 2912 {
502ef838 2913 df_uses_record (collection_rec, &SUBREG_REG (dst),
b8698a0f 2914 DF_REF_REG_USE, bb, insn_info,
502ef838 2915 flags | DF_REF_READ_WRITE | DF_REF_SUBREG);
4d779342
DB
2916 break;
2917 }
2918 /* Fall through. */
2919 case REG:
2920 case PARALLEL:
2921 case SCRATCH:
2922 case PC:
4d779342
DB
2923 break;
2924 case MEM:
502ef838
PB
2925 df_uses_record (collection_rec, &XEXP (dst, 0),
2926 DF_REF_REG_MEM_STORE, bb, insn_info, flags);
4d779342
DB
2927 break;
2928 case STRICT_LOW_PART:
2929 {
2930 rtx *temp = &XEXP (dst, 0);
2931 /* A strict_low_part uses the whole REG and not just the
2932 SUBREG. */
2933 dst = XEXP (dst, 0);
502ef838 2934 df_uses_record (collection_rec,
b8698a0f 2935 (GET_CODE (dst) == SUBREG) ? &SUBREG_REG (dst) : temp,
50e94c7e 2936 DF_REF_REG_USE, bb, insn_info,
502ef838 2937 DF_REF_READ_WRITE | DF_REF_STRICT_LOW_PART);
4d779342
DB
2938 }
2939 break;
2940 case ZERO_EXTRACT:
ca9052ce 2941 {
502ef838
PB
2942 df_uses_record (collection_rec, &XEXP (dst, 1),
2943 DF_REF_REG_USE, bb, insn_info, flags);
2944 df_uses_record (collection_rec, &XEXP (dst, 2),
2945 DF_REF_REG_USE, bb, insn_info, flags);
2946 if (GET_CODE (XEXP (dst,0)) == MEM)
2947 df_uses_record (collection_rec, &XEXP (dst, 0),
2948 DF_REF_REG_USE, bb, insn_info,
2949 flags);
2950 else
2951 df_uses_record (collection_rec, &XEXP (dst, 0),
2952 DF_REF_REG_USE, bb, insn_info,
2953 DF_REF_READ_WRITE | DF_REF_ZERO_EXTRACT);
ca9052ce 2954 }
4d779342 2955 break;
ca9052ce 2956
4d779342
DB
2957 default:
2958 gcc_unreachable ();
2959 }
2960 return;
2961 }
2962
2963 case RETURN:
26898771 2964 case SIMPLE_RETURN:
4d779342
DB
2965 break;
2966
2967 case ASM_OPERANDS:
2968 case UNSPEC_VOLATILE:
2969 case TRAP_IF:
2970 case ASM_INPUT:
2971 {
2972 /* Traditional and volatile asm instructions must be
2973 considered to use and clobber all hard registers, all
2974 pseudo-registers and all of memory. So must TRAP_IF and
2975 UNSPEC_VOLATILE operations.
2976
2977 Consider for instance a volatile asm that changes the fpu
2978 rounding mode. An insn should not be moved across this
2979 even if it only uses pseudo-regs because it might give an
2980 incorrectly rounded result.
2981
2982 However, flow.c's liveness computation did *not* do this,
2983 giving the reasoning as " ?!? Unfortunately, marking all
2984 hard registers as live causes massive problems for the
2985 register allocator and marking all pseudos as live creates
2986 mountains of uninitialized variable warnings."
2987
2988 In order to maintain the status quo with regard to liveness
2989 and uses, we do what flow.c did and just mark any regs we
6fb5fa3c
DB
2990 can find in ASM_OPERANDS as used. In global asm insns are
2991 scanned and regs_asm_clobbered is filled out.
4d779342
DB
2992
2993 For all ASM_OPERANDS, we must traverse the vector of input
67914693 2994 operands. We cannot just fall through here since then we
4d779342
DB
2995 would be confused by the ASM_INPUT rtx inside ASM_OPERANDS,
2996 which do not indicate traditional asms unlike their normal
2997 usage. */
2998 if (code == ASM_OPERANDS)
2999 {
3000 int j;
3001
3002 for (j = 0; j < ASM_OPERANDS_INPUT_LENGTH (x); j++)
502ef838
PB
3003 df_uses_record (collection_rec, &ASM_OPERANDS_INPUT (x, j),
3004 DF_REF_REG_USE, bb, insn_info, flags);
4d779342
DB
3005 return;
3006 }
3007 break;
3008 }
3009
b5b8b0ac 3010 case VAR_LOCATION:
502ef838 3011 df_uses_record (collection_rec,
b5b8b0ac 3012 &PAT_VAR_LOCATION_LOC (x),
502ef838 3013 DF_REF_REG_USE, bb, insn_info, flags);
b5b8b0ac
AO
3014 return;
3015
4d779342
DB
3016 case PRE_DEC:
3017 case POST_DEC:
3018 case PRE_INC:
3019 case POST_INC:
3020 case PRE_MODIFY:
3021 case POST_MODIFY:
b5b8b0ac 3022 gcc_assert (!DEBUG_INSN_P (insn_info->insn));
4d779342 3023 /* Catch the def of the register being modified. */
502ef838 3024 df_ref_record (DF_REF_REGULAR, collection_rec, XEXP (x, 0), &XEXP (x, 0),
b8698a0f 3025 bb, insn_info,
203927fc 3026 DF_REF_REG_DEF,
502ef838 3027 flags | DF_REF_READ_WRITE | DF_REF_PRE_POST_MODIFY);
4d779342
DB
3028
3029 /* ... Fall through to handle uses ... */
3030
3031 default:
3032 break;
3033 }
3034
3035 /* Recursively scan the operands of this expression. */
3036 {
3037 const char *fmt = GET_RTX_FORMAT (code);
3038 int i;
3039
3040 for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
3041 {
3042 if (fmt[i] == 'e')
3043 {
3044 /* Tail recursive case: save a function call level. */
3045 if (i == 0)
3046 {
3047 loc = &XEXP (x, 0);
3048 goto retry;
3049 }
502ef838
PB
3050 df_uses_record (collection_rec, &XEXP (x, i), ref_type,
3051 bb, insn_info, flags);
4d779342
DB
3052 }
3053 else if (fmt[i] == 'E')
3054 {
3055 int j;
3056 for (j = 0; j < XVECLEN (x, i); j++)
502ef838 3057 df_uses_record (collection_rec,
b8698a0f 3058 &XVECEXP (x, i, j), ref_type,
502ef838 3059 bb, insn_info, flags);
4d779342
DB
3060 }
3061 }
3062 }
4d779342 3063
6fb5fa3c 3064 return;
4d779342
DB
3065}
3066
3067
6fb5fa3c 3068/* For all DF_REF_CONDITIONAL defs, add a corresponding uses. */
4d779342 3069
6fb5fa3c 3070static void
99b1c316 3071df_get_conditional_uses (class df_collection_rec *collection_rec)
4d779342 3072{
c2569604
ILT
3073 unsigned int ix;
3074 df_ref ref;
3075
9771b263 3076 FOR_EACH_VEC_ELT (collection_rec->def_vec, ix, ref)
6fb5fa3c 3077 {
6fb5fa3c
DB
3078 if (DF_REF_FLAGS_IS_SET (ref, DF_REF_CONDITIONAL))
3079 {
57512f53 3080 df_ref use;
ca9052ce 3081
57512f53 3082 use = df_ref_create_structure (DF_REF_CLASS (ref), collection_rec, DF_REF_REG (ref),
ca9052ce 3083 DF_REF_LOC (ref), DF_REF_BB (ref),
50e94c7e 3084 DF_REF_INSN_INFO (ref), DF_REF_REG_USE,
502ef838 3085 DF_REF_FLAGS (ref) & ~DF_REF_CONDITIONAL);
6fb5fa3c
DB
3086 DF_REF_REGNO (use) = DF_REF_REGNO (ref);
3087 }
3088 }
4d779342
DB
3089}
3090
3091
c5ebdc25 3092/* Get call's extra defs and uses (track caller-saved registers). */
4d779342
DB
3093
3094static void
99b1c316 3095df_get_call_refs (class df_collection_rec *collection_rec,
b8698a0f 3096 basic_block bb,
50e94c7e 3097 struct df_insn_info *insn_info,
bbbbb16a 3098 int flags)
4d779342 3099{
6fb5fa3c 3100 rtx note;
6fb5fa3c
DB
3101 bool is_sibling_call;
3102 unsigned int i;
c5ebdc25 3103 HARD_REG_SET defs_generated;
a7e3698d 3104
c5ebdc25
DA
3105 CLEAR_HARD_REG_SET (defs_generated);
3106 df_find_hard_reg_defs (PATTERN (insn_info->insn), &defs_generated);
3107 is_sibling_call = SIBLING_CALL_P (insn_info->insn);
5a5a3bc5 3108 function_abi callee_abi = insn_callee_abi (insn_info->insn);
4d779342 3109
c5ebdc25
DA
3110 for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
3111 {
16465ceb 3112 if (i == STACK_POINTER_REGNUM
3113 && !FAKE_CALL_P (insn_info->insn))
c5ebdc25
DA
3114 /* The stack ptr is used (honorarily) by a CALL insn. */
3115 df_ref_record (DF_REF_BASE, collection_rec, regno_reg_rtx[i],
3116 NULL, bb, insn_info, DF_REF_REG_USE,
3117 DF_REF_CALL_STACK_USAGE | flags);
3118 else if (global_regs[i])
3119 {
3120 /* Calls to const functions cannot access any global registers and
3121 calls to pure functions cannot set them. All other calls may
3122 reference any of the global registers, so they are recorded as
3123 used. */
3124 if (!RTL_CONST_CALL_P (insn_info->insn))
3125 {
3126 df_ref_record (DF_REF_BASE, collection_rec, regno_reg_rtx[i],
3127 NULL, bb, insn_info, DF_REF_REG_USE, flags);
3128 if (!RTL_PURE_CALL_P (insn_info->insn))
3129 df_ref_record (DF_REF_BASE, collection_rec, regno_reg_rtx[i],
3130 NULL, bb, insn_info, DF_REF_REG_DEF, flags);
3131 }
3132 }
5a5a3bc5 3133 else if (callee_abi.clobbers_full_reg_p (i)
c5ebdc25
DA
3134 /* no clobbers for regs that are the result of the call */
3135 && !TEST_HARD_REG_BIT (defs_generated, i)
3136 && (!is_sibling_call
3137 || !bitmap_bit_p (df->exit_block_uses, i)
c9bd6bcd 3138 || refers_to_regno_p (i, crtl->return_rtx)))
c5ebdc25
DA
3139 df_ref_record (DF_REF_BASE, collection_rec, regno_reg_rtx[i],
3140 NULL, bb, insn_info, DF_REF_REG_DEF,
3141 DF_REF_MAY_CLOBBER | flags);
3142 }
4d779342 3143
6fb5fa3c
DB
3144 /* Record the registers used to pass arguments, and explicitly
3145 noted as clobbered. */
50e94c7e 3146 for (note = CALL_INSN_FUNCTION_USAGE (insn_info->insn); note;
6fb5fa3c
DB
3147 note = XEXP (note, 1))
3148 {
3149 if (GET_CODE (XEXP (note, 0)) == USE)
502ef838
PB
3150 df_uses_record (collection_rec, &XEXP (XEXP (note, 0), 0),
3151 DF_REF_REG_USE, bb, insn_info, flags);
6fb5fa3c
DB
3152 else if (GET_CODE (XEXP (note, 0)) == CLOBBER)
3153 {
7e657ec2
EB
3154 if (REG_P (XEXP (XEXP (note, 0), 0)))
3155 {
3156 unsigned int regno = REGNO (XEXP (XEXP (note, 0), 0));
c5ebdc25 3157 if (!TEST_HARD_REG_BIT (defs_generated, regno))
7e657ec2 3158 df_defs_record (collection_rec, XEXP (note, 0), bb,
50e94c7e 3159 insn_info, flags);
7e657ec2
EB
3160 }
3161 else
502ef838
PB
3162 df_uses_record (collection_rec, &XEXP (note, 0),
3163 DF_REF_REG_USE, bb, insn_info, flags);
6fb5fa3c
DB
3164 }
3165 }
4d779342 3166
6fb5fa3c
DB
3167 return;
3168}
4d779342 3169
6fb5fa3c
DB
3170/* Collect all refs in the INSN. This function is free of any
3171 side-effect - it will create and return a lists of df_ref's in the
3172 COLLECTION_REC without putting those refs into existing ref chains
3173 and reg chains. */
4d779342 3174
6fb5fa3c 3175static void
99b1c316 3176df_insn_refs_collect (class df_collection_rec *collection_rec,
b8698a0f 3177 basic_block bb, struct df_insn_info *insn_info)
6fb5fa3c
DB
3178{
3179 rtx note;
50e94c7e 3180 bool is_cond_exec = (GET_CODE (PATTERN (insn_info->insn)) == COND_EXEC);
4d779342 3181
6fb5fa3c 3182 /* Clear out the collection record. */
9771b263
DN
3183 collection_rec->def_vec.truncate (0);
3184 collection_rec->use_vec.truncate (0);
3185 collection_rec->eq_use_vec.truncate (0);
3186 collection_rec->mw_vec.truncate (0);
4d779342 3187
50e94c7e
SB
3188 /* Process REG_EQUIV/REG_EQUAL notes. */
3189 for (note = REG_NOTES (insn_info->insn); note;
6fb5fa3c
DB
3190 note = XEXP (note, 1))
3191 {
3192 switch (REG_NOTE_KIND (note))
3193 {
3194 case REG_EQUIV:
3195 case REG_EQUAL:
502ef838 3196 df_uses_record (collection_rec,
6fb5fa3c 3197 &XEXP (note, 0), DF_REF_REG_USE,
502ef838 3198 bb, insn_info, DF_REF_IN_NOTE);
6fb5fa3c
DB
3199 break;
3200 case REG_NON_LOCAL_GOTO:
3201 /* The frame ptr is used by a non-local goto. */
57512f53 3202 df_ref_record (DF_REF_BASE, collection_rec,
6fb5fa3c 3203 regno_reg_rtx[FRAME_POINTER_REGNUM],
50e94c7e 3204 NULL, bb, insn_info,
502ef838 3205 DF_REF_REG_USE, 0);
c3e08036
TS
3206 if (!HARD_FRAME_POINTER_IS_FRAME_POINTER)
3207 df_ref_record (DF_REF_BASE, collection_rec,
3208 regno_reg_rtx[HARD_FRAME_POINTER_REGNUM],
3209 NULL, bb, insn_info,
3210 DF_REF_REG_USE, 0);
6fb5fa3c
DB
3211 break;
3212 default:
3213 break;
3214 }
4d779342 3215 }
6fb5fa3c 3216
f80041ef 3217 int flags = (is_cond_exec) ? DF_REF_CONDITIONAL : 0;
c5ebdc25
DA
3218 /* For CALL_INSNs, first record DF_REF_BASE register defs, as well as
3219 uses from CALL_INSN_FUNCTION_USAGE. */
50e94c7e 3220 if (CALL_P (insn_info->insn))
f80041ef
BS
3221 df_get_call_refs (collection_rec, bb, insn_info, flags);
3222
c5ebdc25
DA
3223 /* Record other defs. These should be mostly for DF_REF_REGULAR, so
3224 that a qsort on the defs is unnecessary in most cases. */
3225 df_defs_record (collection_rec,
3226 PATTERN (insn_info->insn), bb, insn_info, 0);
3227
6fb5fa3c 3228 /* Record the register uses. */
502ef838
PB
3229 df_uses_record (collection_rec,
3230 &PATTERN (insn_info->insn), DF_REF_REG_USE, bb, insn_info, 0);
6fb5fa3c
DB
3231
3232 /* DF_REF_CONDITIONAL needs corresponding USES. */
3233 if (is_cond_exec)
3234 df_get_conditional_uses (collection_rec);
3235
3236 df_canonize_collection_rec (collection_rec);
4d779342
DB
3237}
3238
6fb5fa3c
DB
3239/* Recompute the luids for the insns in BB. */
3240
3241void
3242df_recompute_luids (basic_block bb)
4d779342 3243{
dd3eed93 3244 rtx_insn *insn;
4d779342 3245 int luid = 0;
23249ac4 3246
6fb5fa3c 3247 df_grow_insn_info ();
4d779342
DB
3248
3249 /* Scan the block an insn at a time from beginning to end. */
3250 FOR_BB_INSNS (bb, insn)
3251 {
50e94c7e 3252 struct df_insn_info *insn_info = DF_INSN_INFO_GET (insn);
6fb5fa3c
DB
3253 /* Inserting labels does not always trigger the incremental
3254 rescanning. */
3255 if (!insn_info)
4d779342 3256 {
6fb5fa3c 3257 gcc_assert (!INSN_P (insn));
50e94c7e 3258 insn_info = df_insn_create_insn_record (insn);
4d779342 3259 }
6fb5fa3c 3260
50e94c7e 3261 DF_INSN_INFO_LUID (insn_info) = luid;
6fb5fa3c
DB
3262 if (INSN_P (insn))
3263 luid++;
3264 }
3265}
3266
3267
6fb5fa3c
DB
3268/* Collect all artificial refs at the block level for BB and add them
3269 to COLLECTION_REC. */
3270
3271static void
99b1c316 3272df_bb_refs_collect (class df_collection_rec *collection_rec, basic_block bb)
6fb5fa3c 3273{
9771b263
DN
3274 collection_rec->def_vec.truncate (0);
3275 collection_rec->use_vec.truncate (0);
3276 collection_rec->eq_use_vec.truncate (0);
3277 collection_rec->mw_vec.truncate (0);
6fb5fa3c
DB
3278
3279 if (bb->index == ENTRY_BLOCK)
3280 {
3281 df_entry_block_defs_collect (collection_rec, df->entry_block_defs);
3282 return;
3283 }
3284 else if (bb->index == EXIT_BLOCK)
3285 {
3286 df_exit_block_uses_collect (collection_rec, df->exit_block_uses);
3287 return;
4d779342
DB
3288 }
3289
ba49cb7b 3290 if (bb_has_eh_pred (bb))
4d779342
DB
3291 {
3292 unsigned int i;
3293 /* Mark the registers that will contain data for the handler. */
912f2dac
DB
3294 for (i = 0; ; ++i)
3295 {
3296 unsigned regno = EH_RETURN_DATA_REGNO (i);
3297 if (regno == INVALID_REGNUM)
3298 break;
57512f53 3299 df_ref_record (DF_REF_ARTIFICIAL, collection_rec, regno_reg_rtx[regno], NULL,
502ef838 3300 bb, NULL, DF_REF_REG_DEF, DF_REF_AT_TOP);
912f2dac 3301 }
4d779342 3302 }
4d779342 3303
6fb5fa3c
DB
3304 /* Add the hard_frame_pointer if this block is the target of a
3305 non-local goto. */
3306 if (bb->flags & BB_NON_LOCAL_GOTO_TARGET)
57512f53 3307 df_ref_record (DF_REF_ARTIFICIAL, collection_rec, hard_frame_pointer_rtx, NULL,
502ef838 3308 bb, NULL, DF_REF_REG_DEF, DF_REF_AT_TOP);
b8698a0f 3309
6fb5fa3c
DB
3310 /* Add the artificial uses. */
3311 if (bb->index >= NUM_FIXED_BLOCKS)
23249ac4
DB
3312 {
3313 bitmap_iterator bi;
3314 unsigned int regno;
b8698a0f 3315 bitmap au = bb_has_eh_pred (bb)
a7e3698d
JH
3316 ? &df->eh_block_artificial_uses
3317 : &df->regular_block_artificial_uses;
23249ac4 3318
6fb5fa3c 3319 EXECUTE_IF_SET_IN_BITMAP (au, 0, regno, bi)
23249ac4 3320 {
57512f53 3321 df_ref_record (DF_REF_ARTIFICIAL, collection_rec, regno_reg_rtx[regno], NULL,
502ef838 3322 bb, NULL, DF_REF_REG_USE, 0);
23249ac4 3323 }
4d779342 3324 }
6fb5fa3c
DB
3325
3326 df_canonize_collection_rec (collection_rec);
4d779342
DB
3327}
3328
268886f3 3329
6fb5fa3c
DB
3330/* Record all the refs within the basic block BB_INDEX and scan the instructions if SCAN_INSNS. */
3331
3332void
3333df_bb_refs_record (int bb_index, bool scan_insns)
268886f3 3334{
06e28de2 3335 basic_block bb = BASIC_BLOCK_FOR_FN (cfun, bb_index);
dd3eed93 3336 rtx_insn *insn;
6fb5fa3c 3337 int luid = 0;
268886f3 3338
6fb5fa3c 3339 if (!df)
268886f3
ZD
3340 return;
3341
ff4c81cc 3342 df_collection_rec collection_rec;
e285df08 3343 df_grow_bb_info (df_scan);
6fb5fa3c
DB
3344 if (scan_insns)
3345 /* Scan the block an insn at a time from beginning to end. */
3346 FOR_BB_INSNS (bb, insn)
3347 {
50e94c7e 3348 struct df_insn_info *insn_info = DF_INSN_INFO_GET (insn);
6fb5fa3c
DB
3349 gcc_assert (!insn_info);
3350
50e94c7e 3351 insn_info = df_insn_create_insn_record (insn);
6fb5fa3c
DB
3352 if (INSN_P (insn))
3353 {
3354 /* Record refs within INSN. */
50e94c7e
SB
3355 DF_INSN_INFO_LUID (insn_info) = luid++;
3356 df_insn_refs_collect (&collection_rec, bb, DF_INSN_INFO_GET (insn));
ff4c81cc 3357 df_refs_add_to_chains (&collection_rec, bb, insn, copy_all);
6fb5fa3c 3358 }
50e94c7e 3359 DF_INSN_INFO_LUID (insn_info) = luid;
6fb5fa3c
DB
3360 }
3361
3362 /* Other block level artificial refs */
3363 df_bb_refs_collect (&collection_rec, bb);
ff4c81cc 3364 df_refs_add_to_chains (&collection_rec, bb, NULL, copy_all);
c2569604 3365
6fb5fa3c 3366 /* Now that the block has been processed, set the block as dirty so
05c219bb 3367 LR and LIVE will get it processed. */
6fb5fa3c 3368 df_set_bb_dirty (bb);
268886f3 3369}
4d779342 3370
6fb5fa3c
DB
3371
3372/* Get the artificial use set for a regular (i.e. non-exit/non-entry)
3373 block. */
4d779342
DB
3374
3375static void
6fb5fa3c 3376df_get_regular_block_artificial_uses (bitmap regular_block_artificial_uses)
4d779342 3377{
60d52d0d
JJ
3378#ifdef EH_USES
3379 unsigned int i;
3380#endif
3381
6fb5fa3c 3382 bitmap_clear (regular_block_artificial_uses);
4d779342 3383
6fb5fa3c 3384 if (reload_completed)
4d779342 3385 {
6fb5fa3c
DB
3386 if (frame_pointer_needed)
3387 bitmap_set_bit (regular_block_artificial_uses, HARD_FRAME_POINTER_REGNUM);
3388 }
3389 else
3390 /* Before reload, there are a few registers that must be forced
3391 live everywhere -- which might not already be the case for
3392 blocks within infinite loops. */
3393 {
2098e438
JL
3394 unsigned int picreg = PIC_OFFSET_TABLE_REGNUM;
3395
6fb5fa3c
DB
3396 /* Any reference to any pseudo before reload is a potential
3397 reference of the frame pointer. */
3398 bitmap_set_bit (regular_block_artificial_uses, FRAME_POINTER_REGNUM);
b8698a0f 3399
c3e08036
TS
3400 if (!HARD_FRAME_POINTER_IS_FRAME_POINTER)
3401 bitmap_set_bit (regular_block_artificial_uses,
3402 HARD_FRAME_POINTER_REGNUM);
6fb5fa3c 3403
6fb5fa3c
DB
3404 /* Pseudos with argument area equivalences may require
3405 reloading via the argument pointer. */
3f393fc6
TS
3406 if (FRAME_POINTER_REGNUM != ARG_POINTER_REGNUM
3407 && fixed_regs[ARG_POINTER_REGNUM])
6fb5fa3c 3408 bitmap_set_bit (regular_block_artificial_uses, ARG_POINTER_REGNUM);
b8698a0f 3409
6fb5fa3c
DB
3410 /* Any constant, or pseudo with constant equivalences, may
3411 require reloading from memory using the pic register. */
2098e438
JL
3412 if (picreg != INVALID_REGNUM
3413 && fixed_regs[picreg])
3414 bitmap_set_bit (regular_block_artificial_uses, picreg);
4d779342 3415 }
6fb5fa3c
DB
3416 /* The all-important stack pointer must always be live. */
3417 bitmap_set_bit (regular_block_artificial_uses, STACK_POINTER_REGNUM);
60d52d0d
JJ
3418
3419#ifdef EH_USES
3420 /* EH_USES registers are used:
3421 1) at all insns that might throw (calls or with -fnon-call-exceptions
3422 trapping insns)
3423 2) in all EH edges
3424 3) to support backtraces and/or debugging, anywhere between their
3425 initialization and where they the saved registers are restored
3426 from them, including the cases where we don't reach the epilogue
3427 (noreturn call or infinite loop). */
3428 for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
3429 if (EH_USES (i))
3430 bitmap_set_bit (regular_block_artificial_uses, i);
3431#endif
6fb5fa3c
DB
3432}
3433
4d779342 3434
6fb5fa3c 3435/* Get the artificial use set for an eh block. */
912f2dac 3436
6fb5fa3c
DB
3437static void
3438df_get_eh_block_artificial_uses (bitmap eh_block_artificial_uses)
3439{
3440 bitmap_clear (eh_block_artificial_uses);
268886f3 3441
073a8998 3442 /* The following code (down through the arg_pointer setting APPEARS
6fb5fa3c
DB
3443 to be necessary because there is nothing that actually
3444 describes what the exception handling code may actually need
3445 to keep alive. */
3446 if (reload_completed)
3447 {
3448 if (frame_pointer_needed)
3449 {
3450 bitmap_set_bit (eh_block_artificial_uses, FRAME_POINTER_REGNUM);
c3e08036
TS
3451 if (!HARD_FRAME_POINTER_IS_FRAME_POINTER)
3452 bitmap_set_bit (eh_block_artificial_uses,
3453 HARD_FRAME_POINTER_REGNUM);
6fb5fa3c 3454 }
3f393fc6
TS
3455 if (FRAME_POINTER_REGNUM != ARG_POINTER_REGNUM
3456 && fixed_regs[ARG_POINTER_REGNUM])
6fb5fa3c 3457 bitmap_set_bit (eh_block_artificial_uses, ARG_POINTER_REGNUM);
6fb5fa3c 3458 }
4d779342
DB
3459}
3460
3461
6fb5fa3c 3462\f
4d779342
DB
3463/*----------------------------------------------------------------------------
3464 Specialized hard register scanning functions.
3465----------------------------------------------------------------------------*/
3466
6fb5fa3c 3467
4d779342
DB
3468/* Mark a register in SET. Hard registers in large modes get all
3469 of their component registers set as well. */
3470
3471static void
3472df_mark_reg (rtx reg, void *vset)
3473{
07a737f3 3474 bitmap_set_range ((bitmap) vset, REGNO (reg), REG_NREGS (reg));
4d779342
DB
3475}
3476
912f2dac 3477
6fb5fa3c 3478/* Set the bit for regs that are considered being defined at the entry. */
912f2dac
DB
3479
3480static void
6fb5fa3c 3481df_get_entry_block_def_set (bitmap entry_block_defs)
912f2dac 3482{
912f2dac 3483 rtx r;
6fb5fa3c 3484 int i;
912f2dac 3485
6fb5fa3c 3486 bitmap_clear (entry_block_defs);
912f2dac 3487
7157aa85
SB
3488 /* For separate shrink-wrapping we use LIVE to analyze which basic blocks
3489 need a prologue for some component to be executed before that block,
3490 and we do not care about any other registers. Hence, we do not want
3491 any register for any component defined in the entry block, and we can
3492 just leave all registers undefined. */
3493 if (df_scan->local_flags & DF_SCAN_EMPTY_ENTRY_EXIT)
3494 return;
3495
912f2dac 3496 for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
211d71a7
SB
3497 {
3498 if (global_regs[i])
3499 bitmap_set_bit (entry_block_defs, i);
3500 if (FUNCTION_ARG_REGNO_P (i))
3501 bitmap_set_bit (entry_block_defs, INCOMING_REGNO (i));
3502 }
b8698a0f 3503
1d489435
RS
3504 /* The always important stack pointer. */
3505 bitmap_set_bit (entry_block_defs, STACK_POINTER_REGNUM);
3506
912f2dac
DB
3507 /* Once the prologue has been generated, all of these registers
3508 should just show up in the first regular block. */
e86a9946 3509 if (targetm.have_prologue () && epilogue_completed)
912f2dac
DB
3510 {
3511 /* Defs for the callee saved registers are inserted so that the
3512 pushes have some defining location. */
3513 for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
559c1ae1
RS
3514 if (!crtl->abi->clobbers_full_reg_p (i)
3515 && !fixed_regs[i]
3516 && df_regs_ever_live_p (i))
6fb5fa3c 3517 bitmap_set_bit (entry_block_defs, i);
912f2dac 3518 }
912f2dac 3519
bff98546
JJ
3520 r = targetm.calls.struct_value_rtx (current_function_decl, true);
3521 if (r && REG_P (r))
3522 bitmap_set_bit (entry_block_defs, REGNO (r));
3523
531ca746
RH
3524 /* If the function has an incoming STATIC_CHAIN, it has to show up
3525 in the entry def set. */
4b522b8f 3526 r = rtx_for_static_chain (current_function_decl, true);
531ca746
RH
3527 if (r && REG_P (r))
3528 bitmap_set_bit (entry_block_defs, REGNO (r));
3529
23249ac4 3530 if ((!reload_completed) || frame_pointer_needed)
912f2dac
DB
3531 {
3532 /* Any reference to any pseudo before reload is a potential
3533 reference of the frame pointer. */
6fb5fa3c 3534 bitmap_set_bit (entry_block_defs, FRAME_POINTER_REGNUM);
c3e08036 3535
23249ac4 3536 /* If they are different, also mark the hard frame pointer as live. */
c3e08036
TS
3537 if (!HARD_FRAME_POINTER_IS_FRAME_POINTER
3538 && !LOCAL_REGNO (HARD_FRAME_POINTER_REGNUM))
6fb5fa3c 3539 bitmap_set_bit (entry_block_defs, HARD_FRAME_POINTER_REGNUM);
23249ac4 3540 }
912f2dac 3541
23249ac4
DB
3542 /* These registers are live everywhere. */
3543 if (!reload_completed)
3544 {
912f2dac
DB
3545 /* Pseudos with argument area equivalences may require
3546 reloading via the argument pointer. */
3f393fc6
TS
3547 if (FRAME_POINTER_REGNUM != ARG_POINTER_REGNUM
3548 && fixed_regs[ARG_POINTER_REGNUM])
6fb5fa3c 3549 bitmap_set_bit (entry_block_defs, ARG_POINTER_REGNUM);
b8698a0f 3550
912f2dac
DB
3551 /* Any constant, or pseudo with constant equivalences, may
3552 require reloading from memory using the pic register. */
faa7b0de 3553 unsigned int picreg = PIC_OFFSET_TABLE_REGNUM;
2098e438
JL
3554 if (picreg != INVALID_REGNUM
3555 && fixed_regs[picreg])
3556 bitmap_set_bit (entry_block_defs, picreg);
6fb5fa3c
DB
3557 }
3558
3559#ifdef INCOMING_RETURN_ADDR_RTX
3560 if (REG_P (INCOMING_RETURN_ADDR_RTX))
3561 bitmap_set_bit (entry_block_defs, REGNO (INCOMING_RETURN_ADDR_RTX));
3562#endif
b8698a0f 3563
38f8b050 3564 targetm.extra_live_on_entry (entry_block_defs);
6fb5fa3c
DB
3565}
3566
3567
3568/* Return the (conservative) set of hard registers that are defined on
b8698a0f
L
3569 entry to the function.
3570 It uses df->entry_block_defs to determine which register
6fb5fa3c
DB
3571 reference to include. */
3572
3573static void
99b1c316 3574df_entry_block_defs_collect (class df_collection_rec *collection_rec,
6fb5fa3c
DB
3575 bitmap entry_block_defs)
3576{
b8698a0f 3577 unsigned int i;
6fb5fa3c
DB
3578 bitmap_iterator bi;
3579
3580 EXECUTE_IF_SET_IN_BITMAP (entry_block_defs, 0, i, bi)
3581 {
b8698a0f 3582 df_ref_record (DF_REF_ARTIFICIAL, collection_rec, regno_reg_rtx[i], NULL,
fefa31b5 3583 ENTRY_BLOCK_PTR_FOR_FN (cfun), NULL, DF_REF_REG_DEF, 0);
6fb5fa3c
DB
3584 }
3585
3586 df_canonize_collection_rec (collection_rec);
3587}
3588
3589
3590/* Record the (conservative) set of hard registers that are defined on
3591 entry to the function. */
3592
3593static void
3594df_record_entry_block_defs (bitmap entry_block_defs)
3595{
99b1c316 3596 class df_collection_rec collection_rec;
6fb5fa3c
DB
3597 df_entry_block_defs_collect (&collection_rec, entry_block_defs);
3598
3599 /* Process bb_refs chain */
06e28de2
DM
3600 df_refs_add_to_chains (&collection_rec,
3601 BASIC_BLOCK_FOR_FN (cfun, ENTRY_BLOCK),
3602 NULL,
ff4c81cc 3603 copy_defs);
6fb5fa3c
DB
3604}
3605
3606
15dc95cb 3607/* Update the defs in the entry block. */
6fb5fa3c
DB
3608
3609void
3610df_update_entry_block_defs (void)
3611{
6fb5fa3c 3612 bool changed = false;
912f2dac 3613
d648b5ff
TS
3614 auto_bitmap refs (&df_bitmap_obstack);
3615 df_get_entry_block_def_set (refs);
adef5d4f
ML
3616 gcc_assert (df->entry_block_defs);
3617 if (!bitmap_equal_p (df->entry_block_defs, refs))
6fb5fa3c 3618 {
adef5d4f
ML
3619 struct df_scan_bb_info *bb_info = df_scan_get_bb_info (ENTRY_BLOCK);
3620 df_ref_chain_delete_du_chain (bb_info->artificial_defs);
3621 df_ref_chain_delete (bb_info->artificial_defs);
3622 bb_info->artificial_defs = NULL;
6fb5fa3c
DB
3623 changed = true;
3624 }
912f2dac 3625
6fb5fa3c 3626 if (changed)
912f2dac 3627 {
d648b5ff
TS
3628 df_record_entry_block_defs (refs);
3629 bitmap_copy (df->entry_block_defs, refs);
06e28de2 3630 df_set_bb_dirty (BASIC_BLOCK_FOR_FN (cfun, ENTRY_BLOCK));
912f2dac
DB
3631 }
3632}
3633
3634
d10f3e90 3635/* Return true if REGNO is used by the epilogue. */
3636bool
3637df_epilogue_uses_p (unsigned int regno)
3638{
3639 return (EPILOGUE_USES (regno)
3640 || TEST_HARD_REG_BIT (crtl->must_be_zero_on_return, regno));
3641}
3642
6fb5fa3c 3643/* Set the bit for regs that are considered being used at the exit. */
4d779342
DB
3644
3645static void
6fb5fa3c 3646df_get_exit_block_use_set (bitmap exit_block_uses)
4d779342 3647{
b8698a0f 3648 unsigned int i;
2098e438 3649 unsigned int picreg = PIC_OFFSET_TABLE_REGNUM;
4d779342 3650
6fb5fa3c 3651 bitmap_clear (exit_block_uses);
b718216c 3652
7157aa85
SB
3653 /* For separate shrink-wrapping we use LIVE to analyze which basic blocks
3654 need an epilogue for some component to be executed after that block,
3655 and we do not care about any other registers. Hence, we do not want
3656 any register for any component seen as used in the exit block, and we
3657 can just say no registers at all are used. */
3658 if (df_scan->local_flags & DF_SCAN_EMPTY_ENTRY_EXIT)
3659 return;
3660
b718216c
SP
3661 /* Stack pointer is always live at the exit. */
3662 bitmap_set_bit (exit_block_uses, STACK_POINTER_REGNUM);
b8698a0f 3663
4d779342
DB
3664 /* Mark the frame pointer if needed at the end of the function.
3665 If we end up eliminating it, it will be removed from the live
3666 list of each basic block by reload. */
b8698a0f 3667
23249ac4 3668 if ((!reload_completed) || frame_pointer_needed)
4d779342 3669 {
6fb5fa3c 3670 bitmap_set_bit (exit_block_uses, FRAME_POINTER_REGNUM);
c3e08036 3671
4d779342 3672 /* If they are different, also mark the hard frame pointer as live. */
c3e08036
TS
3673 if (!HARD_FRAME_POINTER_IS_FRAME_POINTER
3674 && !LOCAL_REGNO (HARD_FRAME_POINTER_REGNUM))
6fb5fa3c 3675 bitmap_set_bit (exit_block_uses, HARD_FRAME_POINTER_REGNUM);
4d779342
DB
3676 }
3677
4d779342
DB
3678 /* Many architectures have a GP register even without flag_pic.
3679 Assume the pic register is not in use, or will be handled by
3680 other means, if it is not fixed. */
f8fe0a4a 3681 if (!PIC_OFFSET_TABLE_REG_CALL_CLOBBERED
2098e438
JL
3682 && picreg != INVALID_REGNUM
3683 && fixed_regs[picreg])
3684 bitmap_set_bit (exit_block_uses, picreg);
b8698a0f 3685
4d779342
DB
3686 /* Mark all global registers, and all registers used by the
3687 epilogue as being live at the end of the function since they
3688 may be referenced by our caller. */
3689 for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
d10f3e90 3690 if (global_regs[i] || df_epilogue_uses_p (i))
6fb5fa3c 3691 bitmap_set_bit (exit_block_uses, i);
b8698a0f 3692
e86a9946 3693 if (targetm.have_epilogue () && epilogue_completed)
4d779342
DB
3694 {
3695 /* Mark all call-saved registers that we actually used. */
3696 for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
559c1ae1
RS
3697 if (df_regs_ever_live_p (i)
3698 && !LOCAL_REGNO (i)
3699 && !crtl->abi->clobbers_full_reg_p (i))
6fb5fa3c 3700 bitmap_set_bit (exit_block_uses, i);
4d779342 3701 }
b8698a0f 3702
4d779342 3703 /* Mark the registers that will contain data for the handler. */
e3b5732b 3704 if (reload_completed && crtl->calls_eh_return)
4d779342
DB
3705 for (i = 0; ; ++i)
3706 {
3707 unsigned regno = EH_RETURN_DATA_REGNO (i);
3708 if (regno == INVALID_REGNUM)
3709 break;
6fb5fa3c 3710 bitmap_set_bit (exit_block_uses, regno);
4d779342 3711 }
4d779342
DB
3712
3713#ifdef EH_RETURN_STACKADJ_RTX
e86a9946 3714 if ((!targetm.have_epilogue () || ! epilogue_completed)
e3b5732b 3715 && crtl->calls_eh_return)
4d779342
DB
3716 {
3717 rtx tmp = EH_RETURN_STACKADJ_RTX;
3718 if (tmp && REG_P (tmp))
6fb5fa3c 3719 df_mark_reg (tmp, exit_block_uses);
4d779342
DB
3720 }
3721#endif
3722
e86a9946 3723 if ((!targetm.have_epilogue () || ! epilogue_completed)
e3b5732b 3724 && crtl->calls_eh_return)
4d779342
DB
3725 {
3726 rtx tmp = EH_RETURN_HANDLER_RTX;
3727 if (tmp && REG_P (tmp))
6fb5fa3c 3728 df_mark_reg (tmp, exit_block_uses);
4d779342 3729 }
6fb5fa3c 3730
4d779342 3731 /* Mark function return value. */
6fb5fa3c
DB
3732 diddle_return_value (df_mark_reg, (void*) exit_block_uses);
3733}
3734
3735
b8698a0f 3736/* Return the refs of hard registers that are used in the exit block.
6fb5fa3c
DB
3737 It uses df->exit_block_uses to determine register to include. */
3738
3739static void
99b1c316 3740df_exit_block_uses_collect (class df_collection_rec *collection_rec, bitmap exit_block_uses)
6fb5fa3c 3741{
b8698a0f 3742 unsigned int i;
6fb5fa3c
DB
3743 bitmap_iterator bi;
3744
3745 EXECUTE_IF_SET_IN_BITMAP (exit_block_uses, 0, i, bi)
57512f53 3746 df_ref_record (DF_REF_ARTIFICIAL, collection_rec, regno_reg_rtx[i], NULL,
fefa31b5 3747 EXIT_BLOCK_PTR_FOR_FN (cfun), NULL, DF_REF_REG_USE, 0);
4d779342 3748
6fb5fa3c
DB
3749 /* It is deliberate that this is not put in the exit block uses but
3750 I do not know why. */
3f393fc6
TS
3751 if (FRAME_POINTER_REGNUM != ARG_POINTER_REGNUM
3752 && reload_completed
6fb5fa3c 3753 && !bitmap_bit_p (exit_block_uses, ARG_POINTER_REGNUM)
fefa31b5 3754 && bb_has_eh_pred (EXIT_BLOCK_PTR_FOR_FN (cfun))
6fb5fa3c 3755 && fixed_regs[ARG_POINTER_REGNUM])
57512f53 3756 df_ref_record (DF_REF_ARTIFICIAL, collection_rec, regno_reg_rtx[ARG_POINTER_REGNUM], NULL,
fefa31b5 3757 EXIT_BLOCK_PTR_FOR_FN (cfun), NULL, DF_REF_REG_USE, 0);
6fb5fa3c
DB
3758
3759 df_canonize_collection_rec (collection_rec);
3760}
3761
3762
b8698a0f 3763/* Record the set of hard registers that are used in the exit block.
6fb5fa3c
DB
3764 It uses df->exit_block_uses to determine which bit to include. */
3765
3766static void
3767df_record_exit_block_uses (bitmap exit_block_uses)
3768{
99b1c316 3769 class df_collection_rec collection_rec;
6fb5fa3c
DB
3770 df_exit_block_uses_collect (&collection_rec, exit_block_uses);
3771
3772 /* Process bb_refs chain */
06e28de2
DM
3773 df_refs_add_to_chains (&collection_rec,
3774 BASIC_BLOCK_FOR_FN (cfun, EXIT_BLOCK),
3775 NULL,
ff4c81cc 3776 copy_uses);
6fb5fa3c
DB
3777}
3778
3779
3780/* Update the uses in the exit block. */
3781
3782void
3783df_update_exit_block_uses (void)
3784{
6fb5fa3c
DB
3785 bool changed = false;
3786
d648b5ff
TS
3787 auto_bitmap refs (&df_bitmap_obstack);
3788 df_get_exit_block_use_set (refs);
adef5d4f
ML
3789 gcc_assert (df->exit_block_uses);
3790 if (!bitmap_equal_p (df->exit_block_uses, refs))
6fb5fa3c 3791 {
adef5d4f
ML
3792 struct df_scan_bb_info *bb_info = df_scan_get_bb_info (EXIT_BLOCK);
3793 df_ref_chain_delete_du_chain (bb_info->artificial_uses);
3794 df_ref_chain_delete (bb_info->artificial_uses);
3795 bb_info->artificial_uses = NULL;
6fb5fa3c
DB
3796 changed = true;
3797 }
3798
3799 if (changed)
3800 {
d648b5ff
TS
3801 df_record_exit_block_uses (refs);
3802 bitmap_copy (df->exit_block_uses, refs);
06e28de2 3803 df_set_bb_dirty (BASIC_BLOCK_FOR_FN (cfun, EXIT_BLOCK));
6fb5fa3c 3804 }
4d779342
DB
3805}
3806
3807static bool initialized = false;
3808
6fb5fa3c 3809
4d779342
DB
3810/* Initialize some platform specific structures. */
3811
b8698a0f 3812void
4d779342
DB
3813df_hard_reg_init (void)
3814{
7bda4a1d 3815 int i;
4d779342 3816 static const struct {const int from, to; } eliminables[] = ELIMINABLE_REGS;
53680238 3817
4d779342
DB
3818 if (initialized)
3819 return;
3820
4d779342
DB
3821 /* Record which registers will be eliminated. We use this in
3822 mark_used_regs. */
3823 CLEAR_HARD_REG_SET (elim_reg_set);
b8698a0f 3824
4d779342
DB
3825 for (i = 0; i < (int) ARRAY_SIZE (eliminables); i++)
3826 SET_HARD_REG_BIT (elim_reg_set, eliminables[i].from);
b8698a0f 3827
4d779342
DB
3828 initialized = true;
3829}
6fb5fa3c 3830
6fb5fa3c 3831/* Recompute the parts of scanning that are based on regs_ever_live
b8698a0f 3832 because something changed in that array. */
6fb5fa3c 3833
b8698a0f 3834void
6fb5fa3c
DB
3835df_update_entry_exit_and_calls (void)
3836{
3837 basic_block bb;
3838
3839 df_update_entry_block_defs ();
3840 df_update_exit_block_uses ();
3841
3842 /* The call insns need to be rescanned because there may be changes
3843 in the set of registers clobbered across the call. */
11cd3bed 3844 FOR_EACH_BB_FN (bb, cfun)
6fb5fa3c 3845 {
dd3eed93 3846 rtx_insn *insn;
6fb5fa3c
DB
3847 FOR_BB_INSNS (bb, insn)
3848 {
3849 if (INSN_P (insn) && CALL_P (insn))
3850 df_insn_rescan (insn);
3851 }
3852 }
3853}
3854
3855
3856/* Return true if hard REG is actually used in the some instruction.
3857 There are a fair number of conditions that affect the setting of
3858 this array. See the comment in df.h for df->hard_regs_live_count
3859 for the conditions that this array is set. */
3860
b8698a0f 3861bool
6fb5fa3c
DB
3862df_hard_reg_used_p (unsigned int reg)
3863{
6fb5fa3c
DB
3864 return df->hard_regs_live_count[reg] != 0;
3865}
3866
3867
3868/* A count of the number of times REG is actually used in the some
3869 instruction. There are a fair number of conditions that affect the
3870 setting of this array. See the comment in df.h for
3871 df->hard_regs_live_count for the conditions that this array is
3872 set. */
3873
3874
3875unsigned int
3876df_hard_reg_used_count (unsigned int reg)
3877{
6fb5fa3c
DB
3878 return df->hard_regs_live_count[reg];
3879}
3880
3881
3882/* Get the value of regs_ever_live[REGNO]. */
3883
b8698a0f 3884bool
6fb5fa3c
DB
3885df_regs_ever_live_p (unsigned int regno)
3886{
3887 return regs_ever_live[regno];
3888}
3889
6fb5fa3c
DB
3890/* Set regs_ever_live[REGNO] to VALUE. If this cause regs_ever_live
3891 to change, schedule that change for the next update. */
3892
b8698a0f 3893void
6fb5fa3c
DB
3894df_set_regs_ever_live (unsigned int regno, bool value)
3895{
3896 if (regs_ever_live[regno] == value)
3897 return;
3898
3899 regs_ever_live[regno] = value;
3900 if (df)
3901 df->redo_entry_and_exit = true;
3902}
3903
3904
3905/* Compute "regs_ever_live" information from the underlying df
3906 information. Set the vector to all false if RESET. */
3907
3908void
3909df_compute_regs_ever_live (bool reset)
3910{
3911 unsigned int i;
3912 bool changed = df->redo_entry_and_exit;
b8698a0f 3913
6fb5fa3c
DB
3914 if (reset)
3915 memset (regs_ever_live, 0, sizeof (regs_ever_live));
3916
3917 for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
3918 if ((!regs_ever_live[i]) && df_hard_reg_used_p (i))
3919 {
3920 regs_ever_live[i] = true;
3921 changed = true;
3922 }
3923 if (changed)
3924 df_update_entry_exit_and_calls ();
3925 df->redo_entry_and_exit = false;
3926}
3927
3928\f
3929/*----------------------------------------------------------------------------
3930 Dataflow ref information verification functions.
3931
3932 df_reg_chain_mark (refs, regno, is_def, is_eq_use)
3933 df_reg_chain_verify_unmarked (refs)
9771b263 3934 df_refs_verify (vec<stack, va_df_ref>, ref*, bool)
6fb5fa3c
DB
3935 df_mws_verify (mw*, mw*, bool)
3936 df_insn_refs_verify (collection_rec, bb, insn, bool)
3937 df_bb_refs_verify (bb, refs, bool)
3938 df_bb_verify (bb)
3939 df_exit_block_bitmap_verify (bool)
3940 df_entry_block_bitmap_verify (bool)
3941 df_scan_verify ()
3942----------------------------------------------------------------------------*/
3943
3944
3945/* Mark all refs in the reg chain. Verify that all of the registers
b8698a0f 3946are in the correct chain. */
6fb5fa3c
DB
3947
3948static unsigned int
b8698a0f 3949df_reg_chain_mark (df_ref refs, unsigned int regno,
6fb5fa3c
DB
3950 bool is_def, bool is_eq_use)
3951{
3952 unsigned int count = 0;
57512f53 3953 df_ref ref;
6fb5fa3c
DB
3954 for (ref = refs; ref; ref = DF_REF_NEXT_REG (ref))
3955 {
3956 gcc_assert (!DF_REF_IS_REG_MARKED (ref));
3957
3958 /* If there are no def-use or use-def chains, make sure that all
3959 of the chains are clear. */
3960 if (!df_chain)
3961 gcc_assert (!DF_REF_CHAIN (ref));
3962
3963 /* Check to make sure the ref is in the correct chain. */
3964 gcc_assert (DF_REF_REGNO (ref) == regno);
3965 if (is_def)
57512f53 3966 gcc_assert (DF_REF_REG_DEF_P (ref));
6fb5fa3c 3967 else
57512f53 3968 gcc_assert (!DF_REF_REG_DEF_P (ref));
6fb5fa3c
DB
3969
3970 if (is_eq_use)
3971 gcc_assert ((DF_REF_FLAGS (ref) & DF_REF_IN_NOTE));
3972 else
3973 gcc_assert ((DF_REF_FLAGS (ref) & DF_REF_IN_NOTE) == 0);
3974
57512f53
KZ
3975 if (DF_REF_NEXT_REG (ref))
3976 gcc_assert (DF_REF_PREV_REG (DF_REF_NEXT_REG (ref)) == ref);
6fb5fa3c
DB
3977 count++;
3978 DF_REF_REG_MARK (ref);
3979 }
3980 return count;
3981}
3982
3983
b8698a0f 3984/* Verify that all of the registers in the chain are unmarked. */
6fb5fa3c
DB
3985
3986static void
57512f53 3987df_reg_chain_verify_unmarked (df_ref refs)
6fb5fa3c 3988{
57512f53 3989 df_ref ref;
6fb5fa3c
DB
3990 for (ref = refs; ref; ref = DF_REF_NEXT_REG (ref))
3991 gcc_assert (!DF_REF_IS_REG_MARKED (ref));
3992}
3993
3994
3995/* Verify that NEW_REC and OLD_REC have exactly the same members. */
3996
3997static bool
b512946c 3998df_refs_verify (const vec<df_ref, va_heap> *new_rec, df_ref old_rec,
6fb5fa3c
DB
3999 bool abort_if_fail)
4000{
c2569604
ILT
4001 unsigned int ix;
4002 df_ref new_ref;
4003
ff4c81cc 4004 FOR_EACH_VEC_ELT (*new_rec, ix, new_ref)
6fb5fa3c 4005 {
b512946c 4006 if (old_rec == NULL || !df_ref_equal_p (new_ref, old_rec))
6fb5fa3c
DB
4007 {
4008 if (abort_if_fail)
4009 gcc_assert (0);
4010 else
4011 return false;
4012 }
4013
4014 /* Abort if fail is called from the function level verifier. If
4015 that is the context, mark this reg as being seem. */
4016 if (abort_if_fail)
4017 {
b512946c
RS
4018 gcc_assert (DF_REF_IS_REG_MARKED (old_rec));
4019 DF_REF_REG_UNMARK (old_rec);
6fb5fa3c
DB
4020 }
4021
b512946c 4022 old_rec = DF_REF_NEXT_LOC (old_rec);
6fb5fa3c
DB
4023 }
4024
4025 if (abort_if_fail)
b512946c 4026 gcc_assert (old_rec == NULL);
6fb5fa3c 4027 else
b512946c 4028 return old_rec == NULL;
6fb5fa3c
DB
4029 return false;
4030}
4031
4032
4033/* Verify that NEW_REC and OLD_REC have exactly the same members. */
4034
4035static bool
526ceb68 4036df_mws_verify (const vec<df_mw_hardreg *, va_heap> *new_rec,
b512946c 4037 struct df_mw_hardreg *old_rec,
6fb5fa3c
DB
4038 bool abort_if_fail)
4039{
c2569604
ILT
4040 unsigned int ix;
4041 struct df_mw_hardreg *new_reg;
4042
ff4c81cc 4043 FOR_EACH_VEC_ELT (*new_rec, ix, new_reg)
6fb5fa3c 4044 {
b512946c 4045 if (old_rec == NULL || !df_mw_equal_p (new_reg, old_rec))
6fb5fa3c
DB
4046 {
4047 if (abort_if_fail)
4048 gcc_assert (0);
4049 else
4050 return false;
4051 }
b512946c 4052 old_rec = DF_MWS_NEXT (old_rec);
6fb5fa3c
DB
4053 }
4054
4055 if (abort_if_fail)
b512946c 4056 gcc_assert (old_rec == NULL);
6fb5fa3c 4057 else
b512946c 4058 return old_rec == NULL;
6fb5fa3c
DB
4059 return false;
4060}
4061
4062
4063/* Return true if the existing insn refs information is complete and
4064 correct. Otherwise (i.e. if there's any missing or extra refs),
b8698a0f 4065 return the correct df_ref chain in REFS_RETURN.
6fb5fa3c
DB
4066
4067 If ABORT_IF_FAIL, leave the refs that are verified (already in the
4068 ref chain) as DF_REF_MARKED(). If it's false, then it's a per-insn
4069 verification mode instead of the whole function, so unmark
4070 everything.
4071
4072 If ABORT_IF_FAIL is set, this function never returns false. */
4073
4074static bool
99b1c316 4075df_insn_refs_verify (class df_collection_rec *collection_rec,
b8698a0f 4076 basic_block bb,
b2908ba6 4077 rtx_insn *insn,
6fb5fa3c
DB
4078 bool abort_if_fail)
4079{
6173a9e3 4080 bool ret1, ret2, ret3;
6fb5fa3c 4081 unsigned int uid = INSN_UID (insn);
50e94c7e 4082 struct df_insn_info *insn_info = DF_INSN_INFO_GET (insn);
6fb5fa3c 4083
50e94c7e 4084 df_insn_refs_collect (collection_rec, bb, insn_info);
6fb5fa3c 4085
6fb5fa3c 4086 /* Unfortunately we cannot opt out early if one of these is not
6173a9e3 4087 right and abort_if_fail is set because the marks will not get cleared. */
ff4c81cc 4088 ret1 = df_refs_verify (&collection_rec->def_vec, DF_INSN_UID_DEFS (uid),
6fb5fa3c 4089 abort_if_fail);
6173a9e3
RB
4090 if (!ret1 && !abort_if_fail)
4091 return false;
ff4c81cc 4092 ret2 = df_refs_verify (&collection_rec->use_vec, DF_INSN_UID_USES (uid),
6fb5fa3c 4093 abort_if_fail);
6173a9e3
RB
4094 if (!ret2 && !abort_if_fail)
4095 return false;
ff4c81cc 4096 ret3 = df_refs_verify (&collection_rec->eq_use_vec, DF_INSN_UID_EQ_USES (uid),
6fb5fa3c 4097 abort_if_fail);
6173a9e3
RB
4098 if (!ret3 && !abort_if_fail)
4099 return false;
4100 if (! df_mws_verify (&collection_rec->mw_vec, DF_INSN_UID_MWS (uid),
4101 abort_if_fail))
4102 return false;
4103 return (ret1 && ret2 && ret3);
6fb5fa3c
DB
4104}
4105
4106
4107/* Return true if all refs in the basic block are correct and complete.
4108 Due to df_ref_chain_verify, it will cause all refs
4109 that are verified to have DF_REF_MARK bit set. */
4110
4111static bool
4112df_bb_verify (basic_block bb)
4113{
dd3eed93 4114 rtx_insn *insn;
6fb5fa3c 4115 struct df_scan_bb_info *bb_info = df_scan_get_bb_info (bb->index);
99b1c316 4116 class df_collection_rec collection_rec;
b8698a0f 4117
6fb5fa3c
DB
4118 gcc_assert (bb_info);
4119
57512f53 4120 /* Scan the block, one insn at a time, from beginning to end. */
6fb5fa3c
DB
4121 FOR_BB_INSNS_REVERSE (bb, insn)
4122 {
4123 if (!INSN_P (insn))
4124 continue;
4125 df_insn_refs_verify (&collection_rec, bb, insn, true);
1aee8991 4126 df_free_collection_rec (&collection_rec);
6fb5fa3c
DB
4127 }
4128
4129 /* Do the artificial defs and uses. */
4130 df_bb_refs_collect (&collection_rec, bb);
ff4c81cc
TS
4131 df_refs_verify (&collection_rec.def_vec, df_get_artificial_defs (bb->index), true);
4132 df_refs_verify (&collection_rec.use_vec, df_get_artificial_uses (bb->index), true);
6fb5fa3c 4133 df_free_collection_rec (&collection_rec);
b8698a0f 4134
6fb5fa3c
DB
4135 return true;
4136}
4137
4138
b8698a0f 4139/* Returns true if the entry block has correct and complete df_ref set.
6fb5fa3c
DB
4140 If not it either aborts if ABORT_IF_FAIL is true or returns false. */
4141
4142static bool
4143df_entry_block_bitmap_verify (bool abort_if_fail)
4144{
6fb5fa3c
DB
4145 bool is_eq;
4146
d648b5ff
TS
4147 auto_bitmap entry_block_defs (&df_bitmap_obstack);
4148 df_get_entry_block_def_set (entry_block_defs);
6fb5fa3c 4149
d648b5ff 4150 is_eq = bitmap_equal_p (entry_block_defs, df->entry_block_defs);
6fb5fa3c
DB
4151
4152 if (!is_eq && abort_if_fail)
4153 {
6fb5fa3c 4154 fprintf (stderr, "entry_block_defs = ");
d648b5ff 4155 df_print_regset (stderr, entry_block_defs);
6fb5fa3c
DB
4156 fprintf (stderr, "df->entry_block_defs = ");
4157 df_print_regset (stderr, df->entry_block_defs);
4158 gcc_assert (0);
4159 }
4160
6fb5fa3c
DB
4161 return is_eq;
4162}
4163
4164
b8698a0f 4165/* Returns true if the exit block has correct and complete df_ref set.
6fb5fa3c
DB
4166 If not it either aborts if ABORT_IF_FAIL is true or returns false. */
4167
4168static bool
4169df_exit_block_bitmap_verify (bool abort_if_fail)
4170{
6fb5fa3c
DB
4171 bool is_eq;
4172
d648b5ff
TS
4173 auto_bitmap exit_block_uses (&df_bitmap_obstack);
4174 df_get_exit_block_use_set (exit_block_uses);
6fb5fa3c 4175
d648b5ff 4176 is_eq = bitmap_equal_p (exit_block_uses, df->exit_block_uses);
6fb5fa3c
DB
4177
4178 if (!is_eq && abort_if_fail)
4179 {
6fb5fa3c 4180 fprintf (stderr, "exit_block_uses = ");
d648b5ff 4181 df_print_regset (stderr, exit_block_uses);
6fb5fa3c
DB
4182 fprintf (stderr, "df->exit_block_uses = ");
4183 df_print_regset (stderr, df->exit_block_uses);
4184 gcc_assert (0);
4185 }
4186
6fb5fa3c
DB
4187 return is_eq;
4188}
4189
4190
cc806ac1
RS
4191/* Return true if df_ref information for all insns in all blocks are
4192 correct and complete. */
6fb5fa3c
DB
4193
4194void
4195df_scan_verify (void)
4196{
4197 unsigned int i;
4198 basic_block bb;
6fb5fa3c
DB
4199
4200 if (!df)
4201 return;
4202
6fb5fa3c
DB
4203 /* Verification is a 4 step process. */
4204
073a8998 4205 /* (1) All of the refs are marked by going through the reg chains. */
6fb5fa3c
DB
4206 for (i = 0; i < DF_REG_SIZE (df); i++)
4207 {
b8698a0f 4208 gcc_assert (df_reg_chain_mark (DF_REG_DEF_CHAIN (i), i, true, false)
c3284718 4209 == DF_REG_DEF_COUNT (i));
b8698a0f 4210 gcc_assert (df_reg_chain_mark (DF_REG_USE_CHAIN (i), i, false, false)
c3284718 4211 == DF_REG_USE_COUNT (i));
b8698a0f 4212 gcc_assert (df_reg_chain_mark (DF_REG_EQ_USE_CHAIN (i), i, false, true)
c3284718 4213 == DF_REG_EQ_USE_COUNT (i));
6fb5fa3c
DB
4214 }
4215
4216 /* (2) There are various bitmaps whose value may change over the
4217 course of the compilation. This step recomputes them to make
4218 sure that they have not slipped out of date. */
d648b5ff
TS
4219 auto_bitmap regular_block_artificial_uses (&df_bitmap_obstack);
4220 auto_bitmap eh_block_artificial_uses (&df_bitmap_obstack);
6fb5fa3c 4221
d648b5ff
TS
4222 df_get_regular_block_artificial_uses (regular_block_artificial_uses);
4223 df_get_eh_block_artificial_uses (eh_block_artificial_uses);
6fb5fa3c 4224
d648b5ff
TS
4225 bitmap_ior_into (eh_block_artificial_uses,
4226 regular_block_artificial_uses);
6fb5fa3c
DB
4227
4228 /* Check artificial_uses bitmaps didn't change. */
d648b5ff 4229 gcc_assert (bitmap_equal_p (regular_block_artificial_uses,
a7e3698d 4230 &df->regular_block_artificial_uses));
d648b5ff 4231 gcc_assert (bitmap_equal_p (eh_block_artificial_uses,
a7e3698d 4232 &df->eh_block_artificial_uses));
6fb5fa3c 4233
6fb5fa3c
DB
4234 /* Verify entry block and exit block. These only verify the bitmaps,
4235 the refs are verified in df_bb_verify. */
4236 df_entry_block_bitmap_verify (true);
4237 df_exit_block_bitmap_verify (true);
b8698a0f 4238
6fb5fa3c
DB
4239 /* (3) All of the insns in all of the blocks are traversed and the
4240 marks are cleared both in the artificial refs attached to the
4241 blocks and the real refs inside the insns. It is a failure to
4242 clear a mark that has not been set as this means that the ref in
4243 the block or insn was not in the reg chain. */
4244
04a90bec 4245 FOR_ALL_BB_FN (bb, cfun)
6fb5fa3c
DB
4246 df_bb_verify (bb);
4247
4248 /* (4) See if all reg chains are traversed a second time. This time
4249 a check is made that the marks are clear. A set mark would be a
4250 from a reg that is not in any insn or basic block. */
4251
4252 for (i = 0; i < DF_REG_SIZE (df); i++)
4253 {
4254 df_reg_chain_verify_unmarked (DF_REG_DEF_CHAIN (i));
4255 df_reg_chain_verify_unmarked (DF_REG_USE_CHAIN (i));
4256 df_reg_chain_verify_unmarked (DF_REG_EQ_USE_CHAIN (i));
4257 }
4258}
This page took 5.736063 seconds and 5 git commands to generate.