OSDN Git Service

2005-01-21 Kenneth Zadeck <zadeck@naturalbridge.com>
[pf3gnuchains/gcc-fork.git] / gcc / df.h
1 /* Form lists of pseudo register references for autoinc optimization
2    for GNU compiler.  This is part of flow optimization.
3    Copyright (C) 1999, 2000, 2001, 2003, 2004, 2005, 2006
4    Free Software Foundation, Inc.
5    Originally contributed by Michael P. Hayes 
6              (m.hayes@elec.canterbury.ac.nz, mhayes@redhat.com)
7    Major rewrite contributed by Danny Berlin (dberlin@dberlin.org)
8              and Kenneth Zadeck (zadeck@naturalbridge.com).
9
10 This file is part of GCC.
11
12 GCC is free software; you can redistribute it and/or modify it under
13 the terms of the GNU General Public License as published by the Free
14 Software Foundation; either version 2, or (at your option) any later
15 version.
16
17 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
18 WARRANTY; without even the implied warranty of MERCHANTABILITY or
19 FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
20 for more details.
21
22 You should have received a copy of the GNU General Public License
23 along with GCC; see the file COPYING.  If not, write to the Free
24 Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
25 02110-1301, USA.  */
26
27 #ifndef GCC_DF_H
28 #define GCC_DF_H
29
30 #include "bitmap.h"
31 #include "basic-block.h"
32 #include "alloc-pool.h"
33
34 struct dataflow;
35 struct df;
36 struct df_problem;
37
38 /* Data flow problems.  All problems must have a unique here.  */ 
39 /* Scanning is not really a dataflow problem, but it is useful to have
40    the basic block functions in the vector so that things get done in
41    a uniform manner.  */
42 #define DF_SCAN  0 
43 #define DF_RU    1      /* Reaching Uses. */
44 #define DF_RD    2      /* Reaching Defs. */
45 #define DF_LR    3      /* Live Registers. */
46 #define DF_UR    4      /* Uninitialized Registers. */
47 #define DF_UREC  5      /* Uninitialized Registers with Early Clobber. */
48 #define DF_CHAIN 6      /* Def-Use and/or Use-Def Chains. */
49 #define DF_RI    7      /* Register Info. */
50 #define DF_LAST_PROBLEM_PLUS1 (DF_RI + 1)
51
52 /* Flags that control the building of chains.  */
53 #define DF_DU_CHAIN   1    /* Build DU chains.  */  
54 #define DF_UD_CHAIN   2    /* Build UD chains.  */
55
56
57 /* Dataflow direction.  */
58 enum df_flow_dir
59   {
60     DF_NONE,
61     DF_FORWARD,
62     DF_BACKWARD
63   };
64
65 /* Function prototypes added to df_problem instance.  */
66
67 /* Allocate the problem specific data.  */
68 typedef void (*df_alloc_function) (struct dataflow *, bitmap);
69
70 /* This function is called if the problem has global data that needs
71    to be cleared when ever the set of blocks changes.  The bitmap
72    contains the set of blocks that may require special attention.
73    This call is only made if some of the blocks are going to change.
74    If everything is to be deleted, the wholesale deletion mechanisms
75    apply. */
76 typedef void (*df_reset_function) (struct dataflow *, bitmap);
77
78 /* Free the basic block info.  Called from the block reordering code
79    to get rid of the blocks that have been squished down.   */
80 typedef void (*df_free_bb_function) (struct dataflow *, basic_block, void *);
81
82 /* Local compute function.  */
83 typedef void (*df_local_compute_function) (struct dataflow *, bitmap, bitmap);
84
85 /* Init the solution specific data.  */
86 typedef void (*df_init_function) (struct dataflow *, bitmap);
87
88 /* Iterative dataflow function.  */
89 typedef void (*df_dataflow_function) (struct dataflow *, bitmap, bitmap, 
90                                    int *, int, bool);
91
92 /* Confluence operator for blocks with 0 out (or in) edges.  */
93 typedef void (*df_confluence_function_0) (struct dataflow *, basic_block);
94
95 /* Confluence operator for blocks with 1 or more out (or in) edges.  */
96 typedef void (*df_confluence_function_n) (struct dataflow *, edge);
97
98 /* Transfer function for blocks.  */
99 typedef bool (*df_transfer_function) (struct dataflow *, int);
100
101 /* Function to massage the information after the problem solving.  */
102 typedef void (*df_finalizer_function) (struct dataflow*, bitmap);
103
104 /* Function to free all of the problem specific datastructures.  */
105 typedef void (*df_free_function) (struct dataflow *);
106
107 /* Function to dump results to FILE.  */
108 typedef void (*df_dump_problem_function) (struct dataflow *, FILE *);
109
110 /* The static description of a dataflow problem to solve.  See above
111    typedefs for doc for the function fields.  */
112
113 struct df_problem {
114   /* The unique id of the problem.  This is used it index into
115      df->defined_problems to make accessing the problem data easy.  */
116   unsigned int id;                        
117   enum df_flow_dir dir;                 /* Dataflow direction.  */
118   df_alloc_function alloc_fun;
119   df_reset_function reset_fun;
120   df_free_bb_function free_bb_fun;
121   df_local_compute_function local_compute_fun;
122   df_init_function init_fun;
123   df_dataflow_function dataflow_fun;
124   df_confluence_function_0 con_fun_0;
125   df_confluence_function_n con_fun_n;
126   df_transfer_function trans_fun;
127   df_finalizer_function finalize_fun;
128   df_free_function free_fun;
129   df_dump_problem_function dump_fun;
130
131   /* A dataflow problem that must be solved before this problem can be
132      solved.  */
133   struct df_problem *dependent_problem;
134 };
135
136
137 /* The specific instance of the problem to solve.  */
138 struct dataflow
139 {
140   struct df *df;                        /* Instance of df we are working in.  */
141   struct df_problem *problem;           /* The problem to be solved.  */
142
143   /* Communication between iterative_dataflow and hybrid_search. */
144   sbitmap visited, pending, considered; 
145
146   /* Array indexed by bb->index, that contains basic block problem and
147      solution specific information.  */
148   void **block_info;
149   unsigned int block_info_size;
150
151   /* The pool to allocate the block_info from. */
152   alloc_pool block_pool;                
153
154   /* Other problem specific data that is not on a per basic block
155      basis.  The structure is generally defined privately for the
156      problem.  The exception being the scanning problem where it is
157      fully public.  */
158   void *problem_data;                  
159 };
160
161 /* One of these structures is allocated for every insn.  */
162 struct df_insn_info
163 {
164   struct df_ref *defs;          /* Head of insn-def chain.  */
165   struct df_ref *uses;          /* Head of insn-use chain.  */
166   /* ???? The following luid field should be considered private so that
167      we can change it on the fly to accommodate new insns?  */
168   int luid;                     /* Logical UID.  */
169   bool contains_asm;            /* Contains an asm instruction.  */
170 };
171
172 /* Two of these structures are allocated for every pseudo reg, one for
173    the uses and one for the defs.  */
174 struct df_reg_info
175 {
176   struct df_ref *reg_chain;     /* Head of reg-use or def chain.  */
177   unsigned int begin;           /* First def_index for this pseudo.  */
178   unsigned int n_refs;          /* Number of refs or defs for this pseudo.  */
179 };
180
181
182 enum df_ref_type {DF_REF_REG_DEF, DF_REF_REG_USE, DF_REF_REG_MEM_LOAD,
183                   DF_REF_REG_MEM_STORE};
184
185 #define DF_REF_TYPE_NAMES {"def", "use", "mem load", "mem store"}
186
187 enum df_ref_flags
188   {
189     /* Read-modify-write refs generate both a use and a def and
190        these are marked with this flag to show that they are not
191        independent.  */
192     DF_REF_READ_WRITE = 1,
193
194     /* This flag is set, if we stripped the subreg from the reference.
195        In this case we must make conservative guesses, at what the
196        outer mode was.  */
197     DF_REF_STRIPPED = 2,
198     
199     /* If this flag is set, this is not a real definition/use, but an
200        artificial one created to model always live registers, eh uses, etc.  */
201     DF_REF_ARTIFICIAL = 4,
202
203
204     /* If this flag is set for an artificial use or def, that ref
205        logically happens at the top of the block.  If it is not set
206        for an artificial use or def, that ref logically happens at the
207        bottom of the block.  This is never set for regular refs.  */
208     DF_REF_AT_TOP = 8,
209
210     /* This flag is set if the use is inside a REG_EQUAL note.  */
211     DF_REF_IN_NOTE = 16,
212
213     /* This flag is set if this ref is really a clobber, and not a def.  */
214     DF_REF_CLOBBER = 32
215   };
216
217
218 /* Define a register reference structure.  One of these is allocated
219    for every register reference (use or def).  Note some register
220    references (e.g., post_inc, subreg) generate both a def and a use.  */
221 struct df_ref
222 {
223   rtx reg;                      /* The register referenced.  */
224   unsigned int regno;           /* The register number referenced.  */
225   basic_block bb;               /* Basic block containing the instruction. */
226   rtx insn;                     /* Insn containing ref.  NB: THIS MAY BE NULL.  */
227   rtx *loc;                     /* The location of the reg.  */
228   struct df_link *chain;        /* Head of def-use, use-def.  */
229   unsigned int id;              /* Location in table.  */
230   enum df_ref_type type;        /* Type of ref.  */
231   enum df_ref_flags flags;      /* Various flags.  */
232
233   /* For each regno, there are two chains of refs, one for the uses
234      and one for the defs.  These chains go thru the refs themselves
235      rather than using an external structure.  */
236   struct df_ref *next_reg;     /* Next ref with same regno and type.  */
237   struct df_ref *prev_reg;     /* Prev ref with same regno and type.  */
238
239   /* Each insn has two lists, one for the uses and one for the
240      defs. This is the next field in either of these chains. */
241   struct df_ref *next_ref; 
242   void *data;                   /* The data assigned to it by user.  */
243 };
244
245 /* There are two kinds of links: */
246
247 /* This is used for def-use or use-def chains.  */
248 struct df_link
249 {
250   struct df_ref *ref;
251   struct df_link *next;
252 };
253
254 /* Two of these structures are allocated, one for the uses and one for
255    the defs.  */
256 struct df_ref_info
257 {
258   struct df_reg_info **regs;    /* Array indexed by pseudo regno. */
259   unsigned int regs_size;       /* Size of currently allocated regs table.  */
260   unsigned int regs_inited;     /* Number of regs with reg_infos allocated.  */
261   struct df_ref **refs;         /* Ref table, indexed by id.  */
262   unsigned int refs_size;       /* Size of currently allocated refs table.  */
263   unsigned int bitmap_size;     /* Number of refs seen.  */
264
265   /* True if refs table is organized so that every reference for a
266      pseudo is contigious.  */
267   bool refs_organized;
268   /* True if the next refs should be added immediately or false to
269      defer to later to reorganize the table.  */
270   bool add_refs_inline; 
271 };
272
273 \f
274 /*----------------------------------------------------------------------------
275    Problem data for the scanning dataflow problem.  Unlike the other
276    dataflow problems, the problem data for scanning is fully exposed and
277    used by owners of the problem.
278 ----------------------------------------------------------------------------*/
279
280 struct df
281 {
282
283 #define DF_HARD_REGS         1  /* Mark hard registers.  */
284 #define DF_EQUIV_NOTES       2  /* Mark uses present in EQUIV/EQUAL notes.  */
285 #define DF_SUBREGS           4  /* Return subregs rather than the inner reg.  */
286
287   int flags;                    /* Indicates what's recorded.  */
288
289   /* The set of problems to be solved is stored in two arrays.  In
290      PROBLEMS_IN_ORDER, the problems are stored in the order that they
291      are solved.  This is an internally dense array that may have
292      nulls at the end of it.  In PROBLEMS_BY_INDEX, the problem is
293      stored by the value in df_problem.id.  These are used to access
294      the problem local data without having to search the first
295      array.  */
296
297   struct dataflow *problems_in_order [DF_LAST_PROBLEM_PLUS1]; 
298   struct dataflow *problems_by_index [DF_LAST_PROBLEM_PLUS1]; 
299   int num_problems_defined;
300
301   /* Set after calls to df_scan_blocks, this contains all of the
302      blocks that higher level problems must rescan before solving the
303      dataflow equations.  If this is NULL, the blocks_to_analyze is
304      used. */
305   bitmap blocks_to_scan;
306
307   /* If not NULL, the subset of blocks of the program to be considered
308      for analysis.  */ 
309   bitmap blocks_to_analyze;
310
311   /* The following information is really the problem data for the
312      scanning instance but it is used too often by the other problems
313      to keep getting it from there.  */
314   struct df_ref_info def_info;   /* Def info.  */
315   struct df_ref_info use_info;   /* Use info.  */
316   struct df_insn_info **insns;   /* Insn table, indexed by insn UID.  */
317   unsigned int insns_size;       /* Size of insn table.  */
318   bitmap hardware_regs_used;     /* The set of hardware registers used.  */
319   bitmap exit_block_uses;        /* The set of hardware registers used in exit block.  */
320 };
321
322 #define DF_SCAN_BB_INFO(DF, BB) (df_scan_get_bb_info((DF)->problems_by_index[DF_SCAN],(BB)->index))
323 #define DF_RU_BB_INFO(DF, BB) (df_ru_get_bb_info((DF)->problems_by_index[DF_RU],(BB)->index))
324 #define DF_RD_BB_INFO(DF, BB) (df_rd_get_bb_info((DF)->problems_by_index[DF_RD],(BB)->index))
325 #define DF_LR_BB_INFO(DF, BB) (df_lr_get_bb_info((DF)->problems_by_index[DF_LR],(BB)->index))
326 #define DF_UR_BB_INFO(DF, BB) (df_ur_get_bb_info((DF)->problems_by_index[DF_UR],(BB)->index))
327 #define DF_UREC_BB_INFO(DF, BB) (df_urec_get_bb_info((DF)->problems_by_index[DF_UREC],(BB)->index))
328
329 /* Most transformations that wish to use live register analysis will
330    use these macros.  The DF_UPWARD_LIVE* macros are only half of the
331    solution.  */
332 #define DF_LIVE_IN(DF, BB) (DF_UR_BB_INFO(DF, BB)->in) 
333 #define DF_LIVE_OUT(DF, BB) (DF_UR_BB_INFO(DF, BB)->out) 
334
335
336 /* Live in for register allocation also takes into account several other factors.  */
337 #define DF_RA_LIVE_IN(DF, BB) (DF_UREC_BB_INFO(DF, BB)->in) 
338 #define DF_RA_LIVE_OUT(DF, BB) (DF_UREC_BB_INFO(DF, BB)->out) 
339
340 /* These macros are currently used by only reg-stack since it is not
341    tolerant of uninitialized variables.  This intolerance should be
342    fixed because it causes other problems.  */ 
343 #define DF_UPWARD_LIVE_IN(DF, BB) (DF_LR_BB_INFO(DF, BB)->in) 
344 #define DF_UPWARD_LIVE_OUT(DF, BB) (DF_LR_BB_INFO(DF, BB)->out) 
345
346
347 /* Macros to access the elements within the ref structure.  */
348
349
350 #define DF_REF_REAL_REG(REF) (GET_CODE ((REF)->reg) == SUBREG \
351                                 ? SUBREG_REG ((REF)->reg) : ((REF)->reg))
352 #define DF_REF_REGNO(REF) ((REF)->regno)
353 #define DF_REF_REAL_LOC(REF) (GET_CODE ((REF)->reg) == SUBREG \
354                                 ? &SUBREG_REG ((REF)->reg) : ((REF)->loc))
355 #define DF_REF_REG(REF) ((REF)->reg)
356 #define DF_REF_LOC(REF) ((REF)->loc)
357 #define DF_REF_BB(REF) ((REF)->bb)
358 #define DF_REF_BBNO(REF) (DF_REF_BB (REF)->index)
359 #define DF_REF_INSN(REF) ((REF)->insn)
360 #define DF_REF_INSN_UID(REF) (INSN_UID ((REF)->insn))
361 #define DF_REF_TYPE(REF) ((REF)->type)
362 #define DF_REF_CHAIN(REF) ((REF)->chain)
363 #define DF_REF_ID(REF) ((REF)->id)
364 #define DF_REF_FLAGS(REF) ((REF)->flags)
365 #define DF_REF_NEXT_REG(REF) ((REF)->next_reg)
366 #define DF_REF_PREV_REG(REF) ((REF)->prev_reg)
367 #define DF_REF_NEXT_REF(REF) ((REF)->next_ref)
368 #define DF_REF_DATA(REF) ((REF)->data)
369
370 /* Macros to determine the reference type.  */
371
372 #define DF_REF_REG_DEF_P(REF) (DF_REF_TYPE (REF) == DF_REF_REG_DEF)
373 #define DF_REF_REG_USE_P(REF) ((REF) && ! DF_REF_REG_DEF_P (REF))
374 #define DF_REF_REG_MEM_STORE_P(REF) (DF_REF_TYPE (REF) == DF_REF_REG_MEM_STORE)
375 #define DF_REF_REG_MEM_LOAD_P(REF) (DF_REF_TYPE (REF) == DF_REF_REG_MEM_LOAD)
376 #define DF_REF_REG_MEM_P(REF) (DF_REF_REG_MEM_STORE_P (REF) \
377                                || DF_REF_REG_MEM_LOAD_P (REF))
378
379 /* Macros to get the refs out of def_info or use_info refs table.  */
380 #define DF_DEFS_SIZE(DF) ((DF)->def_info.bitmap_size)
381 #define DF_DEFS_GET(DF,ID) ((DF)->def_info.refs[(ID)])
382 #define DF_DEFS_SET(DF,ID,VAL) ((DF)->def_info.refs[(ID)]=(VAL))
383 #define DF_USES_SIZE(DF) ((DF)->use_info.bitmap_size)
384 #define DF_USES_GET(DF,ID) ((DF)->use_info.refs[(ID)])
385 #define DF_USES_SET(DF,ID,VAL) ((DF)->use_info.refs[(ID)]=(VAL))
386
387 /* Macros to access the register information from scan dataflow record.  */
388
389 #define DF_REG_SIZE(DF) ((DF)->def_info.regs_size)
390 #define DF_REG_DEF_GET(DF, REG) ((DF)->def_info.regs[(REG)])
391 #define DF_REG_DEF_SET(DF, REG, VAL) ((DF)->def_info.regs[(REG)]=(VAL))
392 #define DF_REG_USE_GET(DF, REG) ((DF)->use_info.regs[(REG)])
393 #define DF_REG_USE_SET(DF, REG, VAL) ((DF)->use_info.regs[(REG)]=(VAL))
394
395 /* Macros to access the elements within the reg_info structure table.  */
396
397 #define DF_REGNO_FIRST_DEF(DF, REGNUM) \
398 (DF_REG_DEF_GET(DF, REGNUM) ? DF_REG_DEF_GET(DF, REGNUM) : 0)
399 #define DF_REGNO_LAST_USE(DF, REGNUM) \
400 (DF_REG_USE_GET(DF, REGNUM) ? DF_REG_USE_GET(DF, REGNUM) : 0)
401
402 /* Macros to access the elements within the insn_info structure table.  */
403
404 #define DF_INSN_SIZE(DF) ((DF)->insns_size)
405 #define DF_INSN_GET(DF,INSN) ((DF)->insns[(INSN_UID(INSN))])
406 #define DF_INSN_SET(DF,INSN,VAL) ((DF)->insns[(INSN_UID (INSN))]=(VAL))
407 #define DF_INSN_CONTAINS_ASM(DF, INSN) (DF_INSN_GET(DF,INSN)->contains_asm)
408 #define DF_INSN_LUID(DF, INSN) (DF_INSN_GET(DF,INSN)->luid)
409 #define DF_INSN_DEFS(DF, INSN) (DF_INSN_GET(DF,INSN)->defs)
410 #define DF_INSN_USES(DF, INSN) (DF_INSN_GET(DF,INSN)->uses)
411
412 #define DF_INSN_UID_GET(DF,UID) ((DF)->insns[(UID)])
413 #define DF_INSN_UID_LUID(DF, INSN) (DF_INSN_UID_GET(DF,INSN)->luid)
414 #define DF_INSN_UID_DEFS(DF, INSN) (DF_INSN_UID_GET(DF,INSN)->defs)
415 #define DF_INSN_UID_USES(DF, INSN) (DF_INSN_UID_GET(DF,INSN)->uses)
416
417 /* This is a bitmap copy of regs_invalidated_by_call so that we can
418    easily add it into bitmaps, etc. */ 
419
420 extern bitmap df_invalidated_by_call;
421
422 /* Initialize ur_in and ur_out as if all hard registers were partially
423 available.  */
424
425 extern bitmap df_all_hard_regs;
426
427 /* The way that registers are processed, especially hard registers,
428    changes as the compilation proceeds. These states are passed to
429    df_set_state to control this processing.  */
430
431 #define DF_SCAN_INITIAL    1    /* Processing from beginning of rtl to
432                                    global-alloc.  */
433 #define DF_SCAN_GLOBAL     2    /* Processing before global
434                                    allocation.  */
435 #define DF_SCAN_POST_ALLOC 4    /* Processing after register
436                                    allocation.  */
437 extern int df_state;            /* Indicates where we are in the compilation.  */
438
439
440 /* One of these structures is allocated for every basic block.  */
441 struct df_scan_bb_info
442 {
443   /* Defs at the start of a basic block that is the target of an
444      exception edge.  */
445   struct df_ref *artificial_defs;
446
447   /* Uses of hard registers that are live at every block.  */
448   struct df_ref *artificial_uses;
449 };
450
451
452 /* Reaching uses.  */
453 struct df_ru_bb_info 
454 {
455   bitmap kill;
456   bitmap sparse_kill;
457   bitmap gen;
458   bitmap in;
459   bitmap out;
460 };
461
462
463 /* Reaching definitions.  */
464 struct df_rd_bb_info 
465 {
466   bitmap kill;
467   bitmap sparse_kill;
468   bitmap gen;
469   bitmap in;
470   bitmap out;
471 };
472
473
474 /* Live registers.  */
475 struct df_lr_bb_info 
476 {
477   bitmap def;
478   bitmap use;
479   bitmap in;
480   bitmap out;
481 };
482
483
484 /* Uninitialized registers.  */
485 struct df_ur_bb_info 
486 {
487   bitmap kill;
488   bitmap gen;
489   bitmap in;
490   bitmap out;
491 };
492
493 /* Uninitialized registers.  */
494 struct df_urec_bb_info 
495 {
496   bitmap earlyclobber;
497   bitmap kill;
498   bitmap gen;
499   bitmap in;
500   bitmap out;
501 };
502
503
504 #define df_finish(df) {df_finish1(df); df=NULL;}
505
506 /* Functions defined in df-core.c.  */
507
508 extern struct df *df_init (int);
509 extern struct dataflow *df_add_problem (struct df *, struct df_problem *);
510 extern void df_set_blocks (struct df*, bitmap);
511 extern void df_finish1 (struct df *);
512 extern void df_analyze (struct df *);
513 extern void df_compact_blocks (struct df *);
514 extern void df_bb_replace (struct df *, int, basic_block);
515 extern struct df_ref *df_bb_regno_last_use_find (struct df *, basic_block, unsigned int);
516 extern struct df_ref *df_bb_regno_first_def_find (struct df *, basic_block, unsigned int);
517 extern struct df_ref *df_bb_regno_last_def_find (struct df *, basic_block, unsigned int);
518 extern bool df_insn_regno_def_p (struct df *, rtx, unsigned int);
519 extern struct df_ref *df_find_def (struct df *, rtx, rtx);
520 extern bool df_reg_defined (struct df *, rtx, rtx);
521 extern struct df_ref *df_find_use (struct df *, rtx, rtx);
522 extern bool df_reg_used (struct df *, rtx, rtx);
523 extern void df_iterative_dataflow (struct dataflow *, bitmap, bitmap, int *, int, bool);
524 extern void df_dump (struct df *, FILE *);
525 extern void df_chain_dump (struct df *, struct df_link *, FILE *);
526 extern void df_refs_chain_dump (struct df *, struct df_ref *, bool, FILE *);
527 extern void df_regs_chain_dump (struct df *, struct df_ref *,  FILE *);
528 extern void df_insn_debug (struct df *, rtx, bool, FILE *);
529 extern void df_insn_debug_regno (struct df *, rtx, FILE *);
530 extern void df_regno_debug (struct df *, unsigned int, FILE *);
531 extern void df_ref_debug (struct df *, struct df_ref *, FILE *);
532 extern void debug_df_insn (rtx);
533 extern void debug_df_regno (unsigned int);
534 extern void debug_df_reg (rtx);
535 extern void debug_df_defno (unsigned int);
536 extern void debug_df_useno (unsigned int);
537 extern void debug_df_ref (struct df_ref *);
538 extern void debug_df_chain (struct df_link *);
539 /* An instance of df that can be shared between passes.  */
540 extern struct df *shared_df; 
541
542
543 /* Functions defined in df-problems.c. */
544
545 extern struct dataflow *df_get_dependent_problem (struct dataflow *);
546 extern struct df_link *df_chain_create (struct dataflow *, struct df_ref *, struct df_ref *);
547 extern void df_chain_unlink (struct dataflow *, struct df_ref *, struct df_link *);
548 extern void df_chain_copy (struct dataflow *, struct df_ref *, struct df_link *);
549 extern bitmap df_get_live_in (struct df *, basic_block);
550 extern bitmap df_get_live_out (struct df *, basic_block);
551 extern void df_grow_bb_info (struct dataflow *);
552 extern void df_chain_dump (struct df *, struct df_link *, FILE *);
553 extern void df_print_bb_index (basic_block bb, FILE *file);
554 extern struct dataflow *df_ru_add_problem (struct df *);
555 extern struct df_ru_bb_info *df_ru_get_bb_info (struct dataflow *, unsigned int);
556 extern struct dataflow *df_rd_add_problem (struct df *);
557 extern struct df_rd_bb_info *df_rd_get_bb_info (struct dataflow *, unsigned int);
558 extern struct dataflow *df_lr_add_problem (struct df *);
559 extern struct df_lr_bb_info *df_lr_get_bb_info (struct dataflow *, unsigned int);
560 extern struct dataflow *df_ur_add_problem (struct df *);
561 extern struct df_ur_bb_info *df_ur_get_bb_info (struct dataflow *, unsigned int);
562 extern struct dataflow *df_urec_add_problem (struct df *);
563 extern struct df_urec_bb_info *df_urec_get_bb_info (struct dataflow *, unsigned int);
564 extern struct dataflow *df_chain_add_problem (struct df *, int flags);
565 extern struct dataflow *df_ri_add_problem (struct df *);
566 extern int df_reg_lifetime (struct df *, rtx reg);
567
568
569 /* Functions defined in df-scan.c.  */
570
571 extern struct df_scan_bb_info *df_scan_get_bb_info (struct dataflow *, unsigned int);
572 extern struct dataflow *df_scan_add_problem (struct df *);
573 extern void df_rescan_blocks (struct df *, bitmap);
574 extern struct df_ref *df_ref_create (struct df *, rtx, rtx *, rtx,basic_block,enum df_ref_type, enum df_ref_flags);
575 extern struct df_ref *df_get_artificial_defs (struct df *, unsigned int);
576 extern struct df_ref *df_get_artificial_uses (struct df *, unsigned int);
577 extern void df_reg_chain_create (struct df_reg_info *, struct df_ref *);
578 extern struct df_ref *df_reg_chain_unlink (struct dataflow *, struct df_ref *);
579 extern void df_ref_remove (struct df *, struct df_ref *);
580 extern void df_insn_refs_delete (struct dataflow *, rtx);
581 extern void df_bb_refs_delete (struct dataflow *, int);
582 extern void df_refs_delete (struct dataflow *, bitmap);
583 extern void df_reorganize_refs (struct df_ref_info *);
584 extern void df_set_state (int);
585 extern void df_hard_reg_init (void);
586 extern bool df_read_modify_subreg_p (rtx);
587
588
589 #endif /* GCC_DF_H */