df.h 11.3 KB
Newer Older
Jeff Law committed
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 Free Software Foundation, Inc.
Jeff Law committed
4 5
   Contributed by Michael P. Hayes (m.hayes@elec.canterbury.ac.nz)

6
This file is part of GCC.
Jeff Law committed
7

8 9 10 11
GCC is free software; you can redistribute it and/or modify it under
the terms of the GNU General Public License as published by the Free
Software Foundation; either version 2, or (at your option) any later
version.
Jeff Law committed
12

13 14 15 16
GCC is distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
for more details.
Jeff Law committed
17 18

You should have received a copy of the GNU General Public License
19 20 21
along with GCC; see the file COPYING.  If not, write to the Free
Software Foundation, 59 Temple Place - Suite 330, Boston, MA
02111-1307, USA.  */
Jeff Law committed
22 23 24 25 26 27 28 29 30 31

#define DF_RD		 1	/* Reaching definitions.  */
#define DF_RU		 2	/* Reaching uses.  */
#define DF_LR		 4	/* Live registers.  */
#define DF_DU_CHAIN	 8	/* Def-use chain.  */
#define DF_UD_CHAIN     16	/* Use-def chain.  */
#define DF_REG_INFO	32	/* Register info.  */
#define DF_RD_CHAIN	64	/* Reg-def chain.  */
#define DF_RU_CHAIN    128	/* Reg-use chain.  */
#define DF_ALL	       255
32
#define DF_HARD_REGS  1024	/* Mark hard registers.  */
33
#define DF_EQUIV_NOTES 2048	/* Mark uses present in EQUIV/EQUAL notes.  */
34
#define DF_FOR_REGALLOC 4096    /* If called for the register allocator.  */
Jeff Law committed
35 36 37 38 39 40 41 42 43 44 45 46 47

enum df_ref_type {DF_REF_REG_DEF, DF_REF_REG_USE, DF_REF_REG_MEM_LOAD,
		  DF_REF_REG_MEM_STORE};

#define DF_REF_TYPE_NAMES {"def", "use", "mem load", "mem store"}

/* Link on a def-use or use-def chain.  */
struct df_link
{
  struct df_link *next;
  struct ref *ref;
};

48 49
enum df_ref_flags
  {
50 51 52
    /* Read-modify-write refs generate both a use and a def and
       these are marked with this flag to show that they are not
       independent.  */
Michael Matz committed
53
    DF_REF_READ_WRITE = 1,
54

55
    /* This flag is set on register references inside a subreg on
56
       machines which have CANNOT_CHANGE_MODE_CLASS.
57 58 59 60
       Note, that this flag can also be set on df_refs representing
       the REG itself (i.e., one might not see the subreg anyore).
       Also note, that this flag is set also for hardreg refs, i.e.,
       you must check yourself if it's a pseudo.  */
61 62 63 64 65
    DF_REF_MODE_CHANGE = 2,

    /* This flag is set, if we stripped the subreg from the reference.
       In this case we must make conservative guesses, at what the
       outer mode was.  */
66 67 68 69 70 71
    DF_REF_STRIPPED = 4,

    /* This flag is set during register allocation if it's okay for
    the reference's INSN to have one of its operands replaced with a
    memory reference.  */
    DF_REF_MEM_OK = 8
72
  };
Jeff Law committed
73

74 75 76 77

/* Define a register reference structure.  One of these is allocated
   for every register reference (use or def).  Note some register
   references (e.g., post_inc, subreg) generate both a def and a use.  */
Jeff Law committed
78 79 80 81
struct ref
{
  rtx reg;			/* The register referenced.  */
  rtx insn;			/* Insn containing ref.  */
82
  rtx *loc;			/* The location of the reg.  */
Jeff Law committed
83
  struct df_link *chain;	/* Head of def-use or use-def chain.  */
Michael Matz committed
84
  unsigned int id;		/* Ref index.  */
85
  enum df_ref_type type;	/* Type of ref.  */
86
  enum df_ref_flags flags;	/* Various flags.  */
Jeff Law committed
87 88 89 90 91 92 93 94
};


/* One of these structures is allocated for every insn.  */
struct insn_info
{
  struct df_link *defs;		/* Head of insn-def chain.  */
  struct df_link *uses;		/* Head of insn-use chain.  */
95
  /* ???? The following luid field should be considered private so that
96
     we can change it on the fly to accommodate new insns?  */
Jeff Law committed
97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159
  int luid;			/* Logical UID.  */
};


/* One of these structures is allocated for every reg.  */
struct reg_info
{
  struct df_link *defs;		/* Head of reg-def chain.  */
  struct df_link *uses;		/* Head of reg-use chain.  */
  int lifetime;
  int n_defs;
  int n_uses;
};


/* One of these structures is allocated for every basic block.  */
struct bb_info
{
  /* Reaching def bitmaps have def_id elements.  */
  bitmap rd_kill;
  bitmap rd_gen;
  bitmap rd_in;
  bitmap rd_out;
  /* Reaching use bitmaps have use_id elements.  */
  bitmap ru_kill;
  bitmap ru_gen;
  bitmap ru_in;
  bitmap ru_out;
  /* Live variable bitmaps have n_regs elements.  */
  bitmap lr_def;
  bitmap lr_use;
  bitmap lr_in;
  bitmap lr_out;
  int rd_valid;
  int ru_valid;
  int lr_valid;
};


struct df
{
  int flags;			/* Indicates what's recorded.  */
  struct bb_info *bbs;		/* Basic block table.  */
  struct ref **defs;		/* Def table, indexed by def_id.  */
  struct ref **uses;		/* Use table, indexed by use_id.  */
  struct ref **reg_def_last;	/* Indexed by regno.  */
  struct reg_info *regs;	/* Regs table, index by regno.  */
  unsigned int reg_size;	/* Size of regs table.  */
  struct insn_info *insns;	/* Insn table, indexed by insn UID.  */
  unsigned int insn_size;	/* Size of insn table.  */
  unsigned int def_id;		/* Next def ID.  */
  unsigned int def_size;	/* Size of def table.  */
  unsigned int n_defs;		/* Size of def bitmaps.  */
  unsigned int use_id;		/* Next use ID.  */
  unsigned int use_size;	/* Size of use table.  */
  unsigned int n_uses;		/* Size of use bitmaps.  */
  unsigned int n_bbs;		/* Number of basic blocks.  */
  unsigned int n_regs;		/* Number of regs.  */
  unsigned int def_id_save;	/* Saved next def ID.  */
  unsigned int use_id_save;	/* Saved next use ID.  */
  bitmap insns_modified;	/* Insns that (may) have changed.  */
  bitmap bbs_modified;		/* Blocks that (may) have changed.  */
  bitmap all_blocks;		/* All blocks in CFG.  */
160
  /* The sbitmap vector of dominators or NULL if not computed.
Jeff Law committed
161
     Ideally, this should be a pointer to a CFG object.  */
162
  sbitmap *dom;
163 164 165 166 167 168
  int *dfs_order;		/* DFS order -> block number.  */
  int *rc_order;		/* Reverse completion order -> block number.  */
  int *rts_order;		/* Reverse top sort order -> block number.  */
  int *inverse_rc_map;		/* Block number -> reverse completion order.  */
  int *inverse_dfs_map;		/* Block number -> DFS order.  */
  int *inverse_rts_map;		/* Block number -> reverse top-sort order.  */
Jeff Law committed
169 170 171 172 173 174 175 176 177 178
};


struct df_map
{
  rtx old;
  rtx new;
};


179
#define DF_BB_INFO(REFS, BB) (&REFS->bbs[(BB)->index])
Jeff Law committed
180 181 182


/* Macros to access the elements within the ref structure.  */
183

Jeff Law committed
184 185 186 187 188 189 190
#define DF_REF_REAL_REG(REF) (GET_CODE ((REF)->reg) == SUBREG \
				? SUBREG_REG ((REF)->reg) : ((REF)->reg))
#define DF_REF_REGNO(REF) REGNO (DF_REF_REAL_REG (REF))
#define DF_REF_REAL_LOC(REF) (GET_CODE ((REF)->reg) == SUBREG \
			        ? &SUBREG_REG ((REF)->reg) : ((REF)->loc))
#define DF_REF_REG(REF) ((REF)->reg)
#define DF_REF_LOC(REF) ((REF)->loc)
191
#define DF_REF_BB(REF) (BLOCK_FOR_INSN ((REF)->insn))
192
#define DF_REF_BBNO(REF) (BLOCK_FOR_INSN ((REF)->insn)->index)
Jeff Law committed
193 194 195 196 197
#define DF_REF_INSN(REF) ((REF)->insn)
#define DF_REF_INSN_UID(REF) (INSN_UID ((REF)->insn))
#define DF_REF_TYPE(REF) ((REF)->type)
#define DF_REF_CHAIN(REF) ((REF)->chain)
#define DF_REF_ID(REF) ((REF)->id)
198
#define DF_REF_FLAGS(REF) ((REF)->flags)
Jeff Law committed
199 200 201 202 203 204 205 206

/* Macros to determine the reference type.  */

#define DF_REF_REG_DEF_P(REF) (DF_REF_TYPE (REF) == DF_REF_REG_DEF)
#define DF_REF_REG_USE_P(REF) ((REF) && ! DF_REF_REG_DEF_P (REF))
#define DF_REF_REG_MEM_STORE_P(REF) (DF_REF_TYPE (REF) == DF_REF_REG_MEM_STORE)
#define DF_REF_REG_MEM_LOAD_P(REF) (DF_REF_TYPE (REF) == DF_REF_REG_MEM_LOAD)
#define DF_REF_REG_MEM_P(REF) (DF_REF_REG_MEM_STORE_P (REF) \
207
                               || DF_REF_REG_MEM_LOAD_P (REF))
Jeff Law committed
208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233


/* Macros to access the elements within the reg_info structure table.  */

#define DF_REGNO_FIRST_DEF(DF, REGNUM) \
((DF)->regs[REGNUM].defs ? (DF)->regs[REGNUM].defs->ref : 0)
#define DF_REGNO_LAST_USE(DF, REGNUM) \
((DF)->regs[REGNUM].uses ? (DF)->regs[REGNUM].uses->ref : 0)

#define DF_REGNO_FIRST_BB(DF, REGNUM) \
(DF_REGNO_FIRST_DEF (DF, REGNUM) \
? DF_REF_BB (DF_REGNO_FIRST_DEF (DF, REGNUM)) : 0)
#define DF_REGNO_LAST_BB(DF, REGNUM) \
(DF_REGNO_LAST_USE (DF, REGNUM) \
? DF_REF_BB (DF_REGNO_LAST_USE (DF, REGNUM)) : 0)


/* Macros to access the elements within the insn_info structure table.  */

#define DF_INSN_LUID(DF, INSN) ((DF)->insns[INSN_UID (INSN)].luid)
#define DF_INSN_DEFS(DF, INSN) ((DF)->insns[INSN_UID (INSN)].defs)
#define DF_INSN_USES(DF, INSN) ((DF)->insns[INSN_UID (INSN)].uses)


/* Functions to build and analyse dataflow information.  */

234
extern struct df *df_init (void);
Jeff Law committed
235

236
extern int df_analyse (struct df *, bitmap, int);
Jeff Law committed
237

238
extern void df_finish (struct df *);
Jeff Law committed
239

240
extern void df_dump (struct df *, int, FILE *);
Jeff Law committed
241

242

Jeff Law committed
243 244
/* Functions to modify insns.  */

245
extern void df_insn_modify (struct df *, basic_block, rtx);
Jeff Law committed
246

247
extern rtx df_insn_delete (struct df *, basic_block, rtx);
Jeff Law committed
248

249
extern rtx df_pattern_emit_before (struct df *, rtx, basic_block, rtx);
Jeff Law committed
250

251
extern rtx df_jump_pattern_emit_after (struct df *, rtx, basic_block, rtx);
Jeff Law committed
252

253
extern rtx df_pattern_emit_after (struct df *, rtx, basic_block, rtx);
Jeff Law committed
254

255 256
extern rtx df_insn_move_before (struct df *, basic_block, rtx, basic_block,
				rtx);
Jeff Law committed
257

258
extern int df_reg_replace (struct df *, bitmap, rtx, rtx);
Jeff Law committed
259

260
extern int df_ref_reg_replace (struct df *, struct ref *, rtx, rtx);
Jeff Law committed
261

262
extern int df_ref_remove (struct df *, struct ref *);
Jeff Law committed
263

264
extern int df_insn_reg_replace (struct df *, basic_block, rtx, rtx, rtx);
Jeff Law committed
265

266
extern int df_insn_mem_replace (struct df *, basic_block, rtx, rtx, rtx);
Jeff Law committed
267

268 269
extern struct ref *df_bb_def_use_swap (struct df *, basic_block, rtx, rtx,
				       unsigned int);
Jeff Law committed
270 271 272 273


/* Functions to query dataflow information.  */

274
extern basic_block df_regno_bb (struct df *, unsigned int);
Jeff Law committed
275

276
extern int df_reg_lifetime (struct df *, rtx);
Jeff Law committed
277

278
extern int df_reg_global_p (struct df *, rtx);
Jeff Law committed
279

280
extern int df_insn_regno_def_p (struct df *, basic_block, rtx, unsigned int);
Jeff Law committed
281

282
extern int df_insn_dominates_all_uses_p (struct df *, basic_block, rtx);
Jeff Law committed
283

284
extern int df_insn_dominates_uses_p (struct df *, basic_block, rtx, bitmap);
Jeff Law committed
285

286
extern int df_bb_reg_live_start_p (struct df *, basic_block, rtx);
Jeff Law committed
287

288
extern int df_bb_reg_live_end_p (struct df *, basic_block, rtx);
Jeff Law committed
289

290
extern int df_bb_regs_lives_compare (struct df *, basic_block, rtx, rtx);
Jeff Law committed
291

292 293
extern rtx df_bb_single_def_use_insn_find (struct df *, basic_block, rtx,
					   rtx);
Jeff Law committed
294 295 296 297


/* Functions for debugging from GDB.  */

298
extern void debug_df_insn (rtx);
Jeff Law committed
299

300
extern void debug_df_regno (unsigned int);
Jeff Law committed
301

302
extern void debug_df_reg (rtx);
Jeff Law committed
303

304
extern void debug_df_defno (unsigned int);
Jeff Law committed
305

306
extern void debug_df_useno (unsigned int);
Jeff Law committed
307

308
extern void debug_df_ref (struct ref *);
Jeff Law committed
309

310
extern void debug_df_chain (struct df_link *);
311

312
extern void df_insn_debug (struct df *, rtx, FILE *);
313

314
extern void df_insn_debug_regno (struct df *, rtx, FILE *);
315 316 317


/* Meet over any path (UNION) or meet over all paths (INTERSECTION).  */
318 319
enum df_confluence_op
  {
320 321
    DF_UNION,
    DF_INTERSECTION
322
  };
323 324 325


/* Dataflow direction.  */
326 327
enum df_flow_dir
  {
328 329
    DF_FORWARD,
    DF_BACKWARD
330 331
  };

332

333 334
typedef void (*transfer_function_sbitmap) (int, int *, sbitmap, sbitmap,
					   sbitmap, sbitmap, void *);
335

336 337
typedef void (*transfer_function_bitmap) (int, int *, bitmap, bitmap,
					  bitmap, bitmap, void *);
338

339 340 341 342 343
extern void iterative_dataflow_sbitmap (sbitmap *, sbitmap *, sbitmap *,
					sbitmap *, bitmap, enum df_flow_dir,
					enum df_confluence_op,
					transfer_function_sbitmap,
					int *, void *);
344

345 346 347 348 349 350 351
extern void iterative_dataflow_bitmap (bitmap *, bitmap *, bitmap *,
				       bitmap *, bitmap,
				       enum df_flow_dir,
				       enum df_confluence_op,
				       transfer_function_bitmap,
				       int *, void *);
extern bool read_modify_subreg_p (rtx);