OpenCores
URL https://opencores.org/ocsvn/altor32/altor32/trunk

Subversion Repositories altor32

[/] [altor32/] [trunk/] [gcc-x64/] [or1knd-elf/] [lib/] [gcc/] [or1knd-elf/] [4.8.0/] [plugin/] [include/] [basic-block.h] - Blame information for rev 35

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 35 ultra_embe
/* Define control flow data structures for the CFG.
2
   Copyright (C) 1987, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
3
   2005, 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
4
 
5
This file is part of GCC.
6
 
7
GCC is free software; you can redistribute it and/or modify it under
8
the terms of the GNU General Public License as published by the Free
9
Software Foundation; either version 3, or (at your option) any later
10
version.
11
 
12
GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13
WARRANTY; without even the implied warranty of MERCHANTABILITY or
14
FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
15
for more details.
16
 
17
You should have received a copy of the GNU General Public License
18
along with GCC; see the file COPYING3.  If not see
19
<http://www.gnu.org/licenses/>.  */
20
 
21
#ifndef GCC_BASIC_BLOCK_H
22
#define GCC_BASIC_BLOCK_H
23
 
24
#include "predict.h"
25
#include "vec.h"
26
#include "function.h"
27
 
28
/* Type we use to hold basic block counters.  Should be at least
29
   64bit.  Although a counter cannot be negative, we use a signed
30
   type, because erroneous negative counts can be generated when the
31
   flow graph is manipulated by various optimizations.  A signed type
32
   makes those easy to detect.  */
33
typedef HOST_WIDEST_INT gcov_type;
34
typedef unsigned HOST_WIDEST_INT gcov_type_unsigned;
35
 
36
/* Control flow edge information.  */
37
struct GTY((user)) edge_def {
38
  /* The two blocks at the ends of the edge.  */
39
  basic_block src;
40
  basic_block dest;
41
 
42
  /* Instructions queued on the edge.  */
43
  union edge_def_insns {
44
    gimple_seq g;
45
    rtx r;
46
  } insns;
47
 
48
  /* Auxiliary info specific to a pass.  */
49
  PTR aux;
50
 
51
  /* Location of any goto implicit in the edge.  */
52
  location_t goto_locus;
53
 
54
  /* The index number corresponding to this edge in the edge vector
55
     dest->preds.  */
56
  unsigned int dest_idx;
57
 
58
  int flags;                    /* see cfg-flags.def */
59
  int probability;              /* biased by REG_BR_PROB_BASE */
60
  gcov_type count;              /* Expected number of executions calculated
61
                                   in profile.c  */
62
};
63
 
64
 
65
/* Garbage collection and PCH support for edge_def.  */
66
extern void gt_ggc_mx (edge_def *e);
67
extern void gt_pch_nx (edge_def *e);
68
extern void gt_pch_nx (edge_def *e, gt_pointer_operator, void *);
69
 
70
/* Masks for edge.flags.  */
71
#define DEF_EDGE_FLAG(NAME,IDX) EDGE_##NAME = 1 << IDX ,
72
enum cfg_edge_flags {
73
#include "cfg-flags.def"
74
  LAST_CFG_EDGE_FLAG            /* this is only used for EDGE_ALL_FLAGS */
75
};
76
#undef DEF_EDGE_FLAG
77
 
78
/* Bit mask for all edge flags.  */
79
#define EDGE_ALL_FLAGS          ((LAST_CFG_EDGE_FLAG - 1) * 2 - 1)
80
 
81
/* The following four flags all indicate something special about an edge.
82
   Test the edge flags on EDGE_COMPLEX to detect all forms of "strange"
83
   control flow transfers.  */
84
#define EDGE_COMPLEX \
85
  (EDGE_ABNORMAL | EDGE_ABNORMAL_CALL | EDGE_EH | EDGE_PRESERVE)
86
 
87
/* Counter summary from the last set of coverage counts read by
88
   profile.c.  */
89
extern const struct gcov_ctr_summary *profile_info;
90
 
91
/* Working set size statistics for a given percentage of the entire
92
   profile (sum_all from the counter summary).  */
93
typedef struct gcov_working_set_info
94
{
95
  /* Number of hot counters included in this working set.  */
96
  unsigned num_counters;
97
  /* Smallest counter included in this working set.  */
98
  gcov_type min_counter;
99
} gcov_working_set_t;
100
 
101
/* Structure to gather statistic about profile consistency, per pass.
102
   An array of this structure, indexed by pass static number, is allocated
103
   in passes.c.  The structure is defined here so that different CFG modes
104
   can do their book-keeping via CFG hooks.
105
 
106
   For every field[2], field[0] is the count before the pass runs, and
107
   field[1] is the post-pass count.  This allows us to monitor the effect
108
   of each individual pass on the profile consistency.
109
 
110
   This structure is not supposed to be used by anything other than passes.c
111
   and one CFG hook per CFG mode.  */
112
struct profile_record
113
{
114
  /* The number of basic blocks where sum(freq) of the block's predecessors
115
     doesn't match reasonably well with the incoming frequency.  */
116
  int num_mismatched_freq_in[2];
117
  /* Likewise for a basic block's successors.  */
118
  int num_mismatched_freq_out[2];
119
  /* The number of basic blocks where sum(count) of the block's predecessors
120
     doesn't match reasonably well with the incoming frequency.  */
121
  int num_mismatched_count_in[2];
122
  /* Likewise for a basic block's successors.  */
123
  int num_mismatched_count_out[2];
124
  /* A weighted cost of the run-time of the function body.  */
125
  gcov_type time[2];
126
  /* A weighted cost of the size of the function body.  */
127
  int size[2];
128
  /* True iff this pass actually was run.  */
129
  bool run;
130
};
131
 
132
/* Declared in cfgloop.h.  */
133
struct loop;
134
 
135
struct GTY(()) rtl_bb_info {
136
  /* The first insn of the block is embedded into bb->il.x.  */
137
  /* The last insn of the block.  */
138
  rtx end_;
139
 
140
  /* In CFGlayout mode points to insn notes/jumptables to be placed just before
141
     and after the block.   */
142
  rtx header_;
143
  rtx footer_;
144
};
145
 
146
struct GTY(()) gimple_bb_info {
147
  /* Sequence of statements in this block.  */
148
  gimple_seq seq;
149
 
150
  /* PHI nodes for this block.  */
151
  gimple_seq phi_nodes;
152
};
153
 
154
/* A basic block is a sequence of instructions with only one entry and
155
   only one exit.  If any one of the instructions are executed, they
156
   will all be executed, and in sequence from first to last.
157
 
158
   There may be COND_EXEC instructions in the basic block.  The
159
   COND_EXEC *instructions* will be executed -- but if the condition
160
   is false the conditionally executed *expressions* will of course
161
   not be executed.  We don't consider the conditionally executed
162
   expression (which might have side-effects) to be in a separate
163
   basic block because the program counter will always be at the same
164
   location after the COND_EXEC instruction, regardless of whether the
165
   condition is true or not.
166
 
167
   Basic blocks need not start with a label nor end with a jump insn.
168
   For example, a previous basic block may just "conditionally fall"
169
   into the succeeding basic block, and the last basic block need not
170
   end with a jump insn.  Block 0 is a descendant of the entry block.
171
 
172
   A basic block beginning with two labels cannot have notes between
173
   the labels.
174
 
175
   Data for jump tables are stored in jump_insns that occur in no
176
   basic block even though these insns can follow or precede insns in
177
   basic blocks.  */
178
 
179
/* Basic block information indexed by block number.  */
180
struct GTY((chain_next ("%h.next_bb"), chain_prev ("%h.prev_bb"))) basic_block_def {
181
  /* The edges into and out of the block.  */
182
  vec<edge, va_gc> *preds;
183
  vec<edge, va_gc> *succs;
184
 
185
  /* Auxiliary info specific to a pass.  */
186
  PTR GTY ((skip (""))) aux;
187
 
188
  /* Innermost loop containing the block.  */
189
  struct loop *loop_father;
190
 
191
  /* The dominance and postdominance information node.  */
192
  struct et_node * GTY ((skip (""))) dom[2];
193
 
194
  /* Previous and next blocks in the chain.  */
195
  basic_block prev_bb;
196
  basic_block next_bb;
197
 
198
  union basic_block_il_dependent {
199
      struct gimple_bb_info GTY ((tag ("0"))) gimple;
200
      struct {
201
        rtx head_;
202
        struct rtl_bb_info * rtl;
203
      } GTY ((tag ("1"))) x;
204
    } GTY ((desc ("((%1.flags & BB_RTL) != 0)"))) il;
205
 
206
  /* Various flags.  See cfg-flags.def.  */
207
  int flags;
208
 
209
  /* The index of this block.  */
210
  int index;
211
 
212
  /* Expected number of executions: calculated in profile.c.  */
213
  gcov_type count;
214
 
215
  /* Expected frequency.  Normalized to be in range 0 to BB_FREQ_MAX.  */
216
  int frequency;
217
 
218
  /* The discriminator for this block.  The discriminator distinguishes
219
     among several basic blocks that share a common locus, allowing for
220
     more accurate sample-based profiling.  */
221
  int discriminator;
222
};
223
 
224
/* This ensures that struct gimple_bb_info is smaller than
225
   struct rtl_bb_info, so that inlining the former into basic_block_def
226
   is the better choice.  */
227
typedef int __assert_gimple_bb_smaller_rtl_bb
228
              [(int)sizeof(struct rtl_bb_info)
229
               - (int)sizeof (struct gimple_bb_info)];
230
 
231
 
232
#define BB_FREQ_MAX 10000
233
 
234
/* Masks for basic_block.flags.  */
235
#define DEF_BASIC_BLOCK_FLAG(NAME,IDX) BB_##NAME = 1 << IDX ,
236
enum cfg_bb_flags
237
{
238
#include "cfg-flags.def"
239
  LAST_CFG_BB_FLAG              /* this is only used for BB_ALL_FLAGS */
240
};
241
#undef DEF_BASIC_BLOCK_FLAG
242
 
243
/* Bit mask for all basic block flags.  */
244
#define BB_ALL_FLAGS            ((LAST_CFG_BB_FLAG - 1) * 2 - 1)
245
 
246
/* Bit mask for all basic block flags that must be preserved.  These are
247
   the bit masks that are *not* cleared by clear_bb_flags.  */
248
#define BB_FLAGS_TO_PRESERVE                                    \
249
  (BB_DISABLE_SCHEDULE | BB_RTL | BB_NON_LOCAL_GOTO_TARGET      \
250
   | BB_HOT_PARTITION | BB_COLD_PARTITION)
251
 
252
/* Dummy bitmask for convenience in the hot/cold partitioning code.  */
253
#define BB_UNPARTITIONED        0
254
 
255
/* Partitions, to be used when partitioning hot and cold basic blocks into
256
   separate sections.  */
257
#define BB_PARTITION(bb) ((bb)->flags & (BB_HOT_PARTITION|BB_COLD_PARTITION))
258
#define BB_SET_PARTITION(bb, part) do {                                 \
259
  basic_block bb_ = (bb);                                               \
260
  bb_->flags = ((bb_->flags & ~(BB_HOT_PARTITION|BB_COLD_PARTITION))    \
261
                | (part));                                              \
262
} while (0)
263
 
264
#define BB_COPY_PARTITION(dstbb, srcbb) \
265
  BB_SET_PARTITION (dstbb, BB_PARTITION (srcbb))
266
 
267
/* State of dominance information.  */
268
 
269
enum dom_state
270
{
271
  DOM_NONE,             /* Not computed at all.  */
272
  DOM_NO_FAST_QUERY,    /* The data is OK, but the fast query data are not usable.  */
273
  DOM_OK                /* Everything is ok.  */
274
};
275
 
276
/* What sort of profiling information we have.  */
277
enum profile_status_d
278
{
279
  PROFILE_ABSENT,
280
  PROFILE_GUESSED,
281
  PROFILE_READ,
282
  PROFILE_LAST  /* Last value, used by profile streaming.  */
283
};
284
 
285
/* A structure to group all the per-function control flow graph data.
286
   The x_* prefixing is necessary because otherwise references to the
287
   fields of this struct are interpreted as the defines for backward
288
   source compatibility following the definition of this struct.  */
289
struct GTY(()) control_flow_graph {
290
  /* Block pointers for the exit and entry of a function.
291
     These are always the head and tail of the basic block list.  */
292
  basic_block x_entry_block_ptr;
293
  basic_block x_exit_block_ptr;
294
 
295
  /* Index by basic block number, get basic block struct info.  */
296
  vec<basic_block, va_gc> *x_basic_block_info;
297
 
298
  /* Number of basic blocks in this flow graph.  */
299
  int x_n_basic_blocks;
300
 
301
  /* Number of edges in this flow graph.  */
302
  int x_n_edges;
303
 
304
  /* The first free basic block number.  */
305
  int x_last_basic_block;
306
 
307
  /* UIDs for LABEL_DECLs.  */
308
  int last_label_uid;
309
 
310
  /* Mapping of labels to their associated blocks.  At present
311
     only used for the gimple CFG.  */
312
  vec<basic_block, va_gc> *x_label_to_block_map;
313
 
314
  enum profile_status_d x_profile_status;
315
 
316
  /* Whether the dominators and the postdominators are available.  */
317
  enum dom_state x_dom_computed[2];
318
 
319
  /* Number of basic blocks in the dominance tree.  */
320
  unsigned x_n_bbs_in_dom_tree[2];
321
 
322
  /* Maximal number of entities in the single jumptable.  Used to estimate
323
     final flowgraph size.  */
324
  int max_jumptable_ents;
325
};
326
 
327
/* Defines for accessing the fields of the CFG structure for function FN.  */
328
#define ENTRY_BLOCK_PTR_FOR_FUNCTION(FN)     ((FN)->cfg->x_entry_block_ptr)
329
#define EXIT_BLOCK_PTR_FOR_FUNCTION(FN)      ((FN)->cfg->x_exit_block_ptr)
330
#define basic_block_info_for_function(FN)    ((FN)->cfg->x_basic_block_info)
331
#define n_basic_blocks_for_function(FN)      ((FN)->cfg->x_n_basic_blocks)
332
#define n_edges_for_function(FN)             ((FN)->cfg->x_n_edges)
333
#define last_basic_block_for_function(FN)    ((FN)->cfg->x_last_basic_block)
334
#define label_to_block_map_for_function(FN)  ((FN)->cfg->x_label_to_block_map)
335
#define profile_status_for_function(FN)      ((FN)->cfg->x_profile_status)
336
 
337
#define BASIC_BLOCK_FOR_FUNCTION(FN,N) \
338
  ((*basic_block_info_for_function(FN))[(N)])
339
#define SET_BASIC_BLOCK_FOR_FUNCTION(FN,N,BB) \
340
  ((*basic_block_info_for_function(FN))[(N)] = (BB))
341
 
342
/* Defines for textual backward source compatibility.  */
343
#define ENTRY_BLOCK_PTR         (cfun->cfg->x_entry_block_ptr)
344
#define EXIT_BLOCK_PTR          (cfun->cfg->x_exit_block_ptr)
345
#define basic_block_info        (cfun->cfg->x_basic_block_info)
346
#define n_basic_blocks          (cfun->cfg->x_n_basic_blocks)
347
#define n_edges                 (cfun->cfg->x_n_edges)
348
#define last_basic_block        (cfun->cfg->x_last_basic_block)
349
#define label_to_block_map      (cfun->cfg->x_label_to_block_map)
350
#define profile_status          (cfun->cfg->x_profile_status)
351
 
352
#define BASIC_BLOCK(N)          ((*basic_block_info)[(N)])
353
#define SET_BASIC_BLOCK(N,BB)   ((*basic_block_info)[(N)] = (BB))
354
 
355
/* For iterating over basic blocks.  */
356
#define FOR_BB_BETWEEN(BB, FROM, TO, DIR) \
357
  for (BB = FROM; BB != TO; BB = BB->DIR)
358
 
359
#define FOR_EACH_BB_FN(BB, FN) \
360
  FOR_BB_BETWEEN (BB, (FN)->cfg->x_entry_block_ptr->next_bb, (FN)->cfg->x_exit_block_ptr, next_bb)
361
 
362
#define FOR_EACH_BB(BB) FOR_EACH_BB_FN (BB, cfun)
363
 
364
#define FOR_EACH_BB_REVERSE_FN(BB, FN) \
365
  FOR_BB_BETWEEN (BB, (FN)->cfg->x_exit_block_ptr->prev_bb, (FN)->cfg->x_entry_block_ptr, prev_bb)
366
 
367
#define FOR_EACH_BB_REVERSE(BB) FOR_EACH_BB_REVERSE_FN(BB, cfun)
368
 
369
/* For iterating over insns in basic block.  */
370
#define FOR_BB_INSNS(BB, INSN)                  \
371
  for ((INSN) = BB_HEAD (BB);                   \
372
       (INSN) && (INSN) != NEXT_INSN (BB_END (BB));     \
373
       (INSN) = NEXT_INSN (INSN))
374
 
375
/* For iterating over insns in basic block when we might remove the
376
   current insn.  */
377
#define FOR_BB_INSNS_SAFE(BB, INSN, CURR)                       \
378
  for ((INSN) = BB_HEAD (BB), (CURR) = (INSN) ? NEXT_INSN ((INSN)): NULL;       \
379
       (INSN) && (INSN) != NEXT_INSN (BB_END (BB));     \
380
       (INSN) = (CURR), (CURR) = (INSN) ? NEXT_INSN ((INSN)) : NULL)
381
 
382
#define FOR_BB_INSNS_REVERSE(BB, INSN)          \
383
  for ((INSN) = BB_END (BB);                    \
384
       (INSN) && (INSN) != PREV_INSN (BB_HEAD (BB));    \
385
       (INSN) = PREV_INSN (INSN))
386
 
387
#define FOR_BB_INSNS_REVERSE_SAFE(BB, INSN, CURR)       \
388
  for ((INSN) = BB_END (BB),(CURR) = (INSN) ? PREV_INSN ((INSN)) : NULL;        \
389
       (INSN) && (INSN) != PREV_INSN (BB_HEAD (BB));    \
390
       (INSN) = (CURR), (CURR) = (INSN) ? PREV_INSN ((INSN)) : NULL)
391
 
392
/* Cycles through _all_ basic blocks, even the fake ones (entry and
393
   exit block).  */
394
 
395
#define FOR_ALL_BB(BB) \
396
  for (BB = ENTRY_BLOCK_PTR; BB; BB = BB->next_bb)
397
 
398
#define FOR_ALL_BB_FN(BB, FN) \
399
  for (BB = ENTRY_BLOCK_PTR_FOR_FUNCTION (FN); BB; BB = BB->next_bb)
400
 
401
 
402
/* Stuff for recording basic block info.  */
403
 
404
#define BB_HEAD(B)      (B)->il.x.head_
405
#define BB_END(B)       (B)->il.x.rtl->end_
406
#define BB_HEADER(B)    (B)->il.x.rtl->header_
407
#define BB_FOOTER(B)    (B)->il.x.rtl->footer_
408
 
409
/* Special block numbers [markers] for entry and exit.
410
   Neither of them is supposed to hold actual statements.  */
411
#define ENTRY_BLOCK (0)
412
#define EXIT_BLOCK (1)
413
 
414
/* The two blocks that are always in the cfg.  */
415
#define NUM_FIXED_BLOCKS (2)
416
 
417
#define set_block_for_insn(INSN, BB)  (BLOCK_FOR_INSN (INSN) = BB)
418
 
419
extern void compute_bb_for_insn (void);
420
extern unsigned int free_bb_for_insn (void);
421
extern void update_bb_for_insn (basic_block);
422
 
423
extern void insert_insn_on_edge (rtx, edge);
424
basic_block split_edge_and_insert (edge, rtx);
425
 
426
extern void commit_one_edge_insertion (edge e);
427
extern void commit_edge_insertions (void);
428
 
429
extern edge unchecked_make_edge (basic_block, basic_block, int);
430
extern edge cached_make_edge (sbitmap, basic_block, basic_block, int);
431
extern edge make_edge (basic_block, basic_block, int);
432
extern edge make_single_succ_edge (basic_block, basic_block, int);
433
extern void remove_edge_raw (edge);
434
extern void redirect_edge_succ (edge, basic_block);
435
extern edge redirect_edge_succ_nodup (edge, basic_block);
436
extern void redirect_edge_pred (edge, basic_block);
437
extern basic_block create_basic_block_structure (rtx, rtx, rtx, basic_block);
438
extern void clear_bb_flags (void);
439
extern void dump_bb_info (FILE *, basic_block, int, int, bool, bool);
440
extern void dump_edge_info (FILE *, edge, int, int);
441
extern void brief_dump_cfg (FILE *, int);
442
extern void clear_edges (void);
443
extern void scale_bbs_frequencies_int (basic_block *, int, int, int);
444
extern void scale_bbs_frequencies_gcov_type (basic_block *, int, gcov_type,
445
                                             gcov_type);
446
 
447
/* Structure to group all of the information to process IF-THEN and
448
   IF-THEN-ELSE blocks for the conditional execution support.  This
449
   needs to be in a public file in case the IFCVT macros call
450
   functions passing the ce_if_block data structure.  */
451
 
452
typedef struct ce_if_block
453
{
454
  basic_block test_bb;                  /* First test block.  */
455
  basic_block then_bb;                  /* THEN block.  */
456
  basic_block else_bb;                  /* ELSE block or NULL.  */
457
  basic_block join_bb;                  /* Join THEN/ELSE blocks.  */
458
  basic_block last_test_bb;             /* Last bb to hold && or || tests.  */
459
  int num_multiple_test_blocks;         /* # of && and || basic blocks.  */
460
  int num_and_and_blocks;               /* # of && blocks.  */
461
  int num_or_or_blocks;                 /* # of || blocks.  */
462
  int num_multiple_test_insns;          /* # of insns in && and || blocks.  */
463
  int and_and_p;                        /* Complex test is &&.  */
464
  int num_then_insns;                   /* # of insns in THEN block.  */
465
  int num_else_insns;                   /* # of insns in ELSE block.  */
466
  int pass;                             /* Pass number.  */
467
} ce_if_block_t;
468
 
469
/* This structure maintains an edge list vector.  */
470
/* FIXME: Make this a vec<edge>.  */
471
struct edge_list
472
{
473
  int num_edges;
474
  edge *index_to_edge;
475
};
476
 
477
/* The base value for branch probability notes and edge probabilities.  */
478
#define REG_BR_PROB_BASE  10000
479
 
480
/* This is the value which indicates no edge is present.  */
481
#define EDGE_INDEX_NO_EDGE      -1
482
 
483
/* EDGE_INDEX returns an integer index for an edge, or EDGE_INDEX_NO_EDGE
484
   if there is no edge between the 2 basic blocks.  */
485
#define EDGE_INDEX(el, pred, succ) (find_edge_index ((el), (pred), (succ)))
486
 
487
/* INDEX_EDGE_PRED_BB and INDEX_EDGE_SUCC_BB return a pointer to the basic
488
   block which is either the pred or succ end of the indexed edge.  */
489
#define INDEX_EDGE_PRED_BB(el, index)   ((el)->index_to_edge[(index)]->src)
490
#define INDEX_EDGE_SUCC_BB(el, index)   ((el)->index_to_edge[(index)]->dest)
491
 
492
/* INDEX_EDGE returns a pointer to the edge.  */
493
#define INDEX_EDGE(el, index)           ((el)->index_to_edge[(index)])
494
 
495
/* Number of edges in the compressed edge list.  */
496
#define NUM_EDGES(el)                   ((el)->num_edges)
497
 
498
/* BB is assumed to contain conditional jump.  Return the fallthru edge.  */
499
#define FALLTHRU_EDGE(bb)               (EDGE_SUCC ((bb), 0)->flags & EDGE_FALLTHRU \
500
                                         ? EDGE_SUCC ((bb), 0) : EDGE_SUCC ((bb), 1))
501
 
502
/* BB is assumed to contain conditional jump.  Return the branch edge.  */
503
#define BRANCH_EDGE(bb)                 (EDGE_SUCC ((bb), 0)->flags & EDGE_FALLTHRU \
504
                                         ? EDGE_SUCC ((bb), 1) : EDGE_SUCC ((bb), 0))
505
 
506
#define RDIV(X,Y) (((X) + (Y) / 2) / (Y))
507
/* Return expected execution frequency of the edge E.  */
508
#define EDGE_FREQUENCY(e)               RDIV ((e)->src->frequency * (e)->probability, \
509
                                              REG_BR_PROB_BASE)
510
 
511
/* Return nonzero if edge is critical.  */
512
#define EDGE_CRITICAL_P(e)              (EDGE_COUNT ((e)->src->succs) >= 2 \
513
                                         && EDGE_COUNT ((e)->dest->preds) >= 2)
514
 
515
#define EDGE_COUNT(ev)                  vec_safe_length (ev)
516
#define EDGE_I(ev,i)                    (*ev)[(i)]
517
#define EDGE_PRED(bb,i)                 (*(bb)->preds)[(i)]
518
#define EDGE_SUCC(bb,i)                 (*(bb)->succs)[(i)]
519
 
520
/* Returns true if BB has precisely one successor.  */
521
 
522
static inline bool
523
single_succ_p (const_basic_block bb)
524
{
525
  return EDGE_COUNT (bb->succs) == 1;
526
}
527
 
528
/* Returns true if BB has precisely one predecessor.  */
529
 
530
static inline bool
531
single_pred_p (const_basic_block bb)
532
{
533
  return EDGE_COUNT (bb->preds) == 1;
534
}
535
 
536
/* Returns the single successor edge of basic block BB.  Aborts if
537
   BB does not have exactly one successor.  */
538
 
539
static inline edge
540
single_succ_edge (const_basic_block bb)
541
{
542
  gcc_checking_assert (single_succ_p (bb));
543
  return EDGE_SUCC (bb, 0);
544
}
545
 
546
/* Returns the single predecessor edge of basic block BB.  Aborts
547
   if BB does not have exactly one predecessor.  */
548
 
549
static inline edge
550
single_pred_edge (const_basic_block bb)
551
{
552
  gcc_checking_assert (single_pred_p (bb));
553
  return EDGE_PRED (bb, 0);
554
}
555
 
556
/* Returns the single successor block of basic block BB.  Aborts
557
   if BB does not have exactly one successor.  */
558
 
559
static inline basic_block
560
single_succ (const_basic_block bb)
561
{
562
  return single_succ_edge (bb)->dest;
563
}
564
 
565
/* Returns the single predecessor block of basic block BB.  Aborts
566
   if BB does not have exactly one predecessor.*/
567
 
568
static inline basic_block
569
single_pred (const_basic_block bb)
570
{
571
  return single_pred_edge (bb)->src;
572
}
573
 
574
/* Iterator object for edges.  */
575
 
576
typedef struct {
577
  unsigned index;
578
  vec<edge, va_gc> **container;
579
} edge_iterator;
580
 
581
static inline vec<edge, va_gc> *
582
ei_container (edge_iterator i)
583
{
584
  gcc_checking_assert (i.container);
585
  return *i.container;
586
}
587
 
588
#define ei_start(iter) ei_start_1 (&(iter))
589
#define ei_last(iter) ei_last_1 (&(iter))
590
 
591
/* Return an iterator pointing to the start of an edge vector.  */
592
static inline edge_iterator
593
ei_start_1 (vec<edge, va_gc> **ev)
594
{
595
  edge_iterator i;
596
 
597
  i.index = 0;
598
  i.container = ev;
599
 
600
  return i;
601
}
602
 
603
/* Return an iterator pointing to the last element of an edge
604
   vector.  */
605
static inline edge_iterator
606
ei_last_1 (vec<edge, va_gc> **ev)
607
{
608
  edge_iterator i;
609
 
610
  i.index = EDGE_COUNT (*ev) - 1;
611
  i.container = ev;
612
 
613
  return i;
614
}
615
 
616
/* Is the iterator `i' at the end of the sequence?  */
617
static inline bool
618
ei_end_p (edge_iterator i)
619
{
620
  return (i.index == EDGE_COUNT (ei_container (i)));
621
}
622
 
623
/* Is the iterator `i' at one position before the end of the
624
   sequence?  */
625
static inline bool
626
ei_one_before_end_p (edge_iterator i)
627
{
628
  return (i.index + 1 == EDGE_COUNT (ei_container (i)));
629
}
630
 
631
/* Advance the iterator to the next element.  */
632
static inline void
633
ei_next (edge_iterator *i)
634
{
635
  gcc_checking_assert (i->index < EDGE_COUNT (ei_container (*i)));
636
  i->index++;
637
}
638
 
639
/* Move the iterator to the previous element.  */
640
static inline void
641
ei_prev (edge_iterator *i)
642
{
643
  gcc_checking_assert (i->index > 0);
644
  i->index--;
645
}
646
 
647
/* Return the edge pointed to by the iterator `i'.  */
648
static inline edge
649
ei_edge (edge_iterator i)
650
{
651
  return EDGE_I (ei_container (i), i.index);
652
}
653
 
654
/* Return an edge pointed to by the iterator.  Do it safely so that
655
   NULL is returned when the iterator is pointing at the end of the
656
   sequence.  */
657
static inline edge
658
ei_safe_edge (edge_iterator i)
659
{
660
  return !ei_end_p (i) ? ei_edge (i) : NULL;
661
}
662
 
663
/* Return 1 if we should continue to iterate.  Return 0 otherwise.
664
   *Edge P is set to the next edge if we are to continue to iterate
665
   and NULL otherwise.  */
666
 
667
static inline bool
668
ei_cond (edge_iterator ei, edge *p)
669
{
670
  if (!ei_end_p (ei))
671
    {
672
      *p = ei_edge (ei);
673
      return 1;
674
    }
675
  else
676
    {
677
      *p = NULL;
678
      return 0;
679
    }
680
}
681
 
682
/* This macro serves as a convenient way to iterate each edge in a
683
   vector of predecessor or successor edges.  It must not be used when
684
   an element might be removed during the traversal, otherwise
685
   elements will be missed.  Instead, use a for-loop like that shown
686
   in the following pseudo-code:
687
 
688
   FOR (ei = ei_start (bb->succs); (e = ei_safe_edge (ei)); )
689
     {
690
        IF (e != taken_edge)
691
          remove_edge (e);
692
        ELSE
693
          ei_next (&ei);
694
     }
695
*/
696
 
697
#define FOR_EACH_EDGE(EDGE,ITER,EDGE_VEC)       \
698
  for ((ITER) = ei_start ((EDGE_VEC));          \
699
       ei_cond ((ITER), &(EDGE));               \
700
       ei_next (&(ITER)))
701
 
702
#define CLEANUP_EXPENSIVE       1       /* Do relatively expensive optimizations
703
                                           except for edge forwarding */
704
#define CLEANUP_CROSSJUMP       2       /* Do crossjumping.  */
705
#define CLEANUP_POST_REGSTACK   4       /* We run after reg-stack and need
706
                                           to care REG_DEAD notes.  */
707
#define CLEANUP_THREADING       8       /* Do jump threading.  */
708
#define CLEANUP_NO_INSN_DEL     16      /* Do not try to delete trivially dead
709
                                           insns.  */
710
#define CLEANUP_CFGLAYOUT       32      /* Do cleanup in cfglayout mode.  */
711
#define CLEANUP_CFG_CHANGED     64      /* The caller changed the CFG.  */
712
 
713
/* In cfganal.c */
714
extern void bitmap_intersection_of_succs (sbitmap, sbitmap *, basic_block);
715
extern void bitmap_intersection_of_preds (sbitmap, sbitmap *, basic_block);
716
extern void bitmap_union_of_succs (sbitmap, sbitmap *, basic_block);
717
extern void bitmap_union_of_preds (sbitmap, sbitmap *, basic_block);
718
 
719
/* In lcm.c */
720
extern struct edge_list *pre_edge_lcm (int, sbitmap *, sbitmap *,
721
                                       sbitmap *, sbitmap *, sbitmap **,
722
                                       sbitmap **);
723
extern struct edge_list *pre_edge_rev_lcm (int, sbitmap *,
724
                                           sbitmap *, sbitmap *,
725
                                           sbitmap *, sbitmap **,
726
                                           sbitmap **);
727
extern void compute_available (sbitmap *, sbitmap *, sbitmap *, sbitmap *);
728
 
729
/* In predict.c */
730
extern bool maybe_hot_bb_p (struct function *, const_basic_block);
731
extern bool maybe_hot_edge_p (edge);
732
extern bool probably_never_executed_bb_p (struct function *, const_basic_block);
733
extern bool optimize_bb_for_size_p (const_basic_block);
734
extern bool optimize_bb_for_speed_p (const_basic_block);
735
extern bool optimize_edge_for_size_p (edge);
736
extern bool optimize_edge_for_speed_p (edge);
737
extern bool optimize_loop_for_size_p (struct loop *);
738
extern bool optimize_loop_for_speed_p (struct loop *);
739
extern bool optimize_loop_nest_for_size_p (struct loop *);
740
extern bool optimize_loop_nest_for_speed_p (struct loop *);
741
extern bool gimple_predicted_by_p (const_basic_block, enum br_predictor);
742
extern bool rtl_predicted_by_p (const_basic_block, enum br_predictor);
743
extern void gimple_predict_edge (edge, enum br_predictor, int);
744
extern void rtl_predict_edge (edge, enum br_predictor, int);
745
extern void predict_edge_def (edge, enum br_predictor, enum prediction);
746
extern void guess_outgoing_edge_probabilities (basic_block);
747
extern void remove_predictions_associated_with_edge (edge);
748
extern bool edge_probability_reliable_p (const_edge);
749
extern bool br_prob_note_reliable_p (const_rtx);
750
extern bool predictable_edge_p (edge);
751
 
752
/* In cfg.c  */
753
extern void init_flow (struct function *);
754
extern void debug_bb (basic_block);
755
extern basic_block debug_bb_n (int);
756
extern void dump_flow_info (FILE *, int);
757
extern void expunge_block (basic_block);
758
extern void link_block (basic_block, basic_block);
759
extern void unlink_block (basic_block);
760
extern void compact_blocks (void);
761
extern basic_block alloc_block (void);
762
extern void alloc_aux_for_blocks (int);
763
extern void clear_aux_for_blocks (void);
764
extern void free_aux_for_blocks (void);
765
extern void alloc_aux_for_edge (edge, int);
766
extern void alloc_aux_for_edges (int);
767
extern void clear_aux_for_edges (void);
768
extern void free_aux_for_edges (void);
769
 
770
/* In cfganal.c  */
771
extern void find_unreachable_blocks (void);
772
extern bool mark_dfs_back_edges (void);
773
struct edge_list * create_edge_list (void);
774
void free_edge_list (struct edge_list *);
775
void print_edge_list (FILE *, struct edge_list *);
776
void verify_edge_list (FILE *, struct edge_list *);
777
int find_edge_index (struct edge_list *, basic_block, basic_block);
778
edge find_edge (basic_block, basic_block);
779
extern void remove_fake_edges (void);
780
extern void remove_fake_exit_edges (void);
781
extern void add_noreturn_fake_exit_edges (void);
782
extern void connect_infinite_loops_to_exit (void);
783
extern int post_order_compute (int *, bool, bool);
784
extern basic_block dfs_find_deadend (basic_block);
785
extern int inverted_post_order_compute (int *);
786
extern int pre_and_rev_post_order_compute (int *, int *, bool);
787
extern int dfs_enumerate_from (basic_block, int,
788
                               bool (*)(const_basic_block, const void *),
789
                               basic_block *, int, const void *);
790
extern void compute_dominance_frontiers (struct bitmap_head_def *);
791
extern bitmap compute_idf (bitmap, struct bitmap_head_def *);
792
 
793
/* In cfgrtl.c  */
794
extern rtx block_label (basic_block);
795
extern rtx bb_note (basic_block);
796
extern bool purge_all_dead_edges (void);
797
extern bool purge_dead_edges (basic_block);
798
extern bool fixup_abnormal_edges (void);
799
extern basic_block force_nonfallthru_and_redirect (edge, basic_block, rtx);
800
extern bool contains_no_active_insn_p (const_basic_block);
801
extern bool forwarder_block_p (const_basic_block);
802
extern bool can_fallthru (basic_block, basic_block);
803
 
804
/* In cfgbuild.c.  */
805
extern void find_many_sub_basic_blocks (sbitmap);
806
extern void rtl_make_eh_edge (sbitmap, basic_block, rtx);
807
 
808
enum replace_direction { dir_none, dir_forward, dir_backward, dir_both };
809
 
810
/* In cfgcleanup.c.  */
811
extern bool cleanup_cfg (int);
812
extern int flow_find_cross_jump (basic_block, basic_block, rtx *, rtx *,
813
                                 enum replace_direction*);
814
extern int flow_find_head_matching_sequence (basic_block, basic_block,
815
                                             rtx *, rtx *, int);
816
 
817
extern bool delete_unreachable_blocks (void);
818
 
819
extern void update_br_prob_note (basic_block);
820
extern bool inside_basic_block_p (const_rtx);
821
extern bool control_flow_insn_p (const_rtx);
822
extern rtx get_last_bb_insn (basic_block);
823
 
824
/* In dominance.c */
825
 
826
enum cdi_direction
827
{
828
  CDI_DOMINATORS = 1,
829
  CDI_POST_DOMINATORS = 2
830
};
831
 
832
extern enum dom_state dom_info_state (enum cdi_direction);
833
extern void set_dom_info_availability (enum cdi_direction, enum dom_state);
834
extern bool dom_info_available_p (enum cdi_direction);
835
extern void calculate_dominance_info (enum cdi_direction);
836
extern void free_dominance_info (enum cdi_direction);
837
extern basic_block nearest_common_dominator (enum cdi_direction,
838
                                             basic_block, basic_block);
839
extern basic_block nearest_common_dominator_for_set (enum cdi_direction,
840
                                                     bitmap);
841
extern void set_immediate_dominator (enum cdi_direction, basic_block,
842
                                     basic_block);
843
extern basic_block get_immediate_dominator (enum cdi_direction, basic_block);
844
extern bool dominated_by_p (enum cdi_direction, const_basic_block, const_basic_block);
845
extern vec<basic_block> get_dominated_by (enum cdi_direction, basic_block);
846
extern vec<basic_block> get_dominated_by_region (enum cdi_direction,
847
                                                         basic_block *,
848
                                                         unsigned);
849
extern vec<basic_block> get_dominated_to_depth (enum cdi_direction,
850
                                                        basic_block, int);
851
extern vec<basic_block> get_all_dominated_blocks (enum cdi_direction,
852
                                                          basic_block);
853
extern void add_to_dominance_info (enum cdi_direction, basic_block);
854
extern void delete_from_dominance_info (enum cdi_direction, basic_block);
855
basic_block recompute_dominator (enum cdi_direction, basic_block);
856
extern void redirect_immediate_dominators (enum cdi_direction, basic_block,
857
                                           basic_block);
858
extern void iterate_fix_dominators (enum cdi_direction,
859
                                    vec<basic_block> , bool);
860
extern void verify_dominators (enum cdi_direction);
861
extern basic_block first_dom_son (enum cdi_direction, basic_block);
862
extern basic_block next_dom_son (enum cdi_direction, basic_block);
863
unsigned bb_dom_dfs_in (enum cdi_direction, basic_block);
864
unsigned bb_dom_dfs_out (enum cdi_direction, basic_block);
865
 
866
extern edge try_redirect_by_replacing_jump (edge, basic_block, bool);
867
extern void break_superblocks (void);
868
extern void relink_block_chain (bool);
869
extern void update_bb_profile_for_threading (basic_block, int, gcov_type, edge);
870
extern void init_rtl_bb_info (basic_block);
871
 
872
extern void initialize_original_copy_tables (void);
873
extern void free_original_copy_tables (void);
874
extern void set_bb_original (basic_block, basic_block);
875
extern basic_block get_bb_original (basic_block);
876
extern void set_bb_copy (basic_block, basic_block);
877
extern basic_block get_bb_copy (basic_block);
878
void set_loop_copy (struct loop *, struct loop *);
879
struct loop *get_loop_copy (struct loop *);
880
 
881
#include "cfghooks.h"
882
 
883
/* Return true when one of the predecessor edges of BB is marked with EDGE_EH.  */
884
static inline bool
885
bb_has_eh_pred (basic_block bb)
886
{
887
  edge e;
888
  edge_iterator ei;
889
 
890
  FOR_EACH_EDGE (e, ei, bb->preds)
891
    {
892
      if (e->flags & EDGE_EH)
893
        return true;
894
    }
895
  return false;
896
}
897
 
898
/* Return true when one of the predecessor edges of BB is marked with EDGE_ABNORMAL.  */
899
static inline bool
900
bb_has_abnormal_pred (basic_block bb)
901
{
902
  edge e;
903
  edge_iterator ei;
904
 
905
  FOR_EACH_EDGE (e, ei, bb->preds)
906
    {
907
      if (e->flags & EDGE_ABNORMAL)
908
        return true;
909
    }
910
  return false;
911
}
912
 
913
/* Return the fallthru edge in EDGES if it exists, NULL otherwise.  */
914
static inline edge
915
find_fallthru_edge (vec<edge, va_gc> *edges)
916
{
917
  edge e;
918
  edge_iterator ei;
919
 
920
  FOR_EACH_EDGE (e, ei, edges)
921
    if (e->flags & EDGE_FALLTHRU)
922
      break;
923
 
924
  return e;
925
}
926
 
927
/* In cfgloopmanip.c.  */
928
extern edge mfb_kj_edge;
929
extern bool mfb_keep_just (edge);
930
 
931
/* In cfgexpand.c.  */
932
extern void rtl_profile_for_bb (basic_block);
933
extern void rtl_profile_for_edge (edge);
934
extern void default_rtl_profile (void);
935
 
936
/* In profile.c.  */
937
extern gcov_working_set_t *find_working_set(unsigned pct_times_10);
938
 
939
/* Check tha probability is sane.  */
940
 
941
static inline void
942
check_probability (int prob)
943
{
944
  gcc_checking_assert (prob >= 0 && prob <= REG_BR_PROB_BASE);
945
}
946
 
947
/* Given PROB1 and PROB2, return PROB1*PROB2/REG_BR_PROB_BASE.
948
   Used to combine BB probabilities.  */
949
 
950
static inline int
951
combine_probabilities (int prob1, int prob2)
952
{
953
  check_probability (prob1);
954
  check_probability (prob2);
955
  return RDIV (prob1 * prob2, REG_BR_PROB_BASE);
956
}
957
 
958
/* Apply probability PROB on frequency or count FREQ.  */
959
 
960
static inline gcov_type
961
apply_probability (gcov_type freq, int prob)
962
{
963
  check_probability (prob);
964
  return RDIV (freq * prob, REG_BR_PROB_BASE);
965
}
966
 
967
/* Return inverse probability for PROB.  */
968
 
969
static inline int
970
inverse_probability (int prob1)
971
{
972
  check_probability (prob1);
973
  return REG_BR_PROB_BASE - prob1;
974
}
975
#endif /* GCC_BASIC_BLOCK_H */

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.