PR c++/30897
[official-gcc.git] / gcc / tree-flow.h
blob6e7b88b672bee2dcff39b9c6ecc45b74f1b59b15
1 /* Data and Control Flow Analysis for Trees.
2 Copyright (C) 2001, 2003, 2004, 2005, 2006, 2007
3 Free Software Foundation, Inc.
4 Contributed by Diego Novillo <dnovillo@redhat.com>
6 This file is part of GCC.
8 GCC is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3, or (at your option)
11 any later version.
13 GCC is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING3. If not see
20 <http://www.gnu.org/licenses/>. */
22 #ifndef _TREE_FLOW_H
23 #define _TREE_FLOW_H 1
25 #include "bitmap.h"
26 #include "hard-reg-set.h"
27 #include "basic-block.h"
28 #include "hashtab.h"
29 #include "tree-gimple.h"
30 #include "tree-ssa-operands.h"
31 #include "cgraph.h"
32 #include "ipa-reference.h"
34 /* Forward declare structures for the garbage collector GTY markers. */
35 #ifndef GCC_BASIC_BLOCK_H
36 struct edge_def;
37 typedef struct edge_def *edge;
38 struct basic_block_def;
39 typedef struct basic_block_def *basic_block;
40 #endif
41 struct static_var_ann_d;
43 /* Memory reference statistics for individual memory symbols,
44 collected during alias analysis. */
45 struct mem_sym_stats_d GTY(())
47 /* Memory symbol. */
48 tree var;
50 /* Nonzero if this entry has been assigned a partition. */
51 unsigned int partitioned_p : 1;
53 /* Nonzero if VAR is a memory partition tag that already contains
54 call-clobbered variables in its partition set. */
55 unsigned int has_call_clobbered_vars : 1;
57 /* Number of direct reference sites. A direct reference to VAR is any
58 reference of the form 'VAR = ' or ' = VAR'. For GIMPLE reg
59 pointers, this is the number of sites where the pointer is
60 dereferenced. */
61 long num_direct_writes;
62 long num_direct_reads;
64 /* Number of indirect reference sites. An indirect reference to VAR
65 is any reference via a pointer that contains VAR in its points-to
66 set or, in the case of call-clobbered symbols, a function call. */
67 long num_indirect_writes;
68 long num_indirect_reads;
70 /* Execution frequency. This is the sum of the execution
71 frequencies of all the statements that reference this object
72 weighted by the number of references in each statement. This is
73 the main key used to sort the list of symbols to partition.
74 Symbols with high execution frequencies are put at the bottom of
75 the work list (ie, they are partitioned last).
76 Execution frequencies are taken directly from each basic block,
77 so compiling with PGO enabled will increase the precision of this
78 estimate. */
79 long frequency_reads;
80 long frequency_writes;
82 /* Set of memory tags that contain VAR in their alias set. */
83 bitmap parent_tags;
86 typedef struct mem_sym_stats_d *mem_sym_stats_t;
87 DEF_VEC_P(mem_sym_stats_t);
88 DEF_VEC_ALLOC_P(mem_sym_stats_t, heap);
90 /* Memory reference statistics collected during alias analysis. */
91 struct mem_ref_stats_d GTY(())
93 /* Number of statements that make memory references. */
94 long num_mem_stmts;
96 /* Number of statements that make function calls. */
97 long num_call_sites;
99 /* Number of statements that make calls to pure/const functions. */
100 long num_pure_const_call_sites;
102 /* Number of ASM statements. */
103 long num_asm_sites;
105 /* Estimated number of virtual operands needed as computed by
106 compute_memory_partitions. */
107 long num_vuses;
108 long num_vdefs;
110 /* This maps every symbol used to make "memory" references
111 (pointers, arrays, structures, etc) to an instance of struct
112 mem_sym_stats_d describing reference statistics for the symbol. */
113 struct pointer_map_t * GTY((skip)) mem_sym_stats;
117 /* Gimple dataflow datastructure. All publicly available fields shall have
118 gimple_ accessor defined in tree-flow-inline.h, all publicly modifiable
119 fields should have gimple_set accessor. */
120 struct gimple_df GTY(())
122 /* Array of all variables referenced in the function. */
123 htab_t GTY((param_is (union tree_node))) referenced_vars;
125 /* A list of all the noreturn calls passed to modify_stmt.
126 cleanup_control_flow uses it to detect cases where a mid-block
127 indirect call has been turned into a noreturn call. When this
128 happens, all the instructions after the call are no longer
129 reachable and must be deleted as dead. */
130 VEC(tree,gc) *modified_noreturn_calls;
132 /* Array of all SSA_NAMEs used in the function. */
133 VEC(tree,gc) *ssa_names;
135 /* Artificial variable used to model the effects of function calls. */
136 tree global_var;
138 /* Artificial variable used to model the effects of nonlocal
139 variables. */
140 tree nonlocal_all;
142 /* Call clobbered variables in the function. If bit I is set, then
143 REFERENCED_VARS (I) is call-clobbered. */
144 bitmap call_clobbered_vars;
146 /* Addressable variables in the function. If bit I is set, then
147 REFERENCED_VARS (I) has had its address taken. Note that
148 CALL_CLOBBERED_VARS and ADDRESSABLE_VARS are not related. An
149 addressable variable is not necessarily call-clobbered (e.g., a
150 local addressable whose address does not escape) and not all
151 call-clobbered variables are addressable (e.g., a local static
152 variable). */
153 bitmap addressable_vars;
155 /* Free list of SSA_NAMEs. */
156 tree free_ssanames;
158 /* Hashtable holding definition for symbol. If this field is not NULL, it
159 means that the first reference to this variable in the function is a
160 USE or a VUSE. In those cases, the SSA renamer creates an SSA name
161 for this variable with an empty defining statement. */
162 htab_t GTY((param_is (union tree_node))) default_defs;
164 /* 'true' after aliases have been computed (see compute_may_aliases). */
165 unsigned int aliases_computed_p : 1;
167 /* True if the code is in ssa form. */
168 unsigned int in_ssa_p : 1;
170 struct ssa_operands ssa_operands;
172 /* Hashtable of variables annotations. Used for static variables only;
173 local variables have direct pointer in the tree node. */
174 htab_t GTY((param_is (struct static_var_ann_d))) var_anns;
176 /* Memory reference statistics collected during alias analysis.
177 This information is used to drive the memory partitioning
178 heuristics in compute_memory_partitions. */
179 struct mem_ref_stats_d mem_ref_stats;
182 /* Accessors for internal use only. Generic code should use abstraction
183 provided by tree-flow-inline.h or specific modules. */
184 #define FREE_SSANAMES(fun) (fun)->gimple_df->free_ssanames
185 #define SSANAMES(fun) (fun)->gimple_df->ssa_names
186 #define MODIFIED_NORETURN_CALLS(fun) (fun)->gimple_df->modified_noreturn_calls
187 #define DEFAULT_DEFS(fun) (fun)->gimple_df->default_defs
189 typedef struct
191 htab_t htab;
192 PTR *slot;
193 PTR *limit;
194 } htab_iterator;
196 /* Iterate through the elements of hashtable HTAB, using htab_iterator ITER,
197 storing each element in RESULT, which is of type TYPE. */
198 #define FOR_EACH_HTAB_ELEMENT(HTAB, RESULT, TYPE, ITER) \
199 for (RESULT = (TYPE) first_htab_element (&(ITER), (HTAB)); \
200 !end_htab_p (&(ITER)); \
201 RESULT = (TYPE) next_htab_element (&(ITER)))
203 /*---------------------------------------------------------------------------
204 Attributes for SSA_NAMEs.
206 NOTE: These structures are stored in struct tree_ssa_name
207 but are only used by the tree optimizers, so it makes better sense
208 to declare them here to avoid recompiling unrelated files when
209 making changes.
210 ---------------------------------------------------------------------------*/
212 /* Aliasing information for SSA_NAMEs representing pointer variables. */
213 struct ptr_info_def GTY(())
215 /* Nonzero if points-to analysis couldn't determine where this pointer
216 is pointing to. */
217 unsigned int pt_anything : 1;
219 /* Nonzero if the value of this pointer escapes the current function. */
220 unsigned int value_escapes_p : 1;
222 /* Nonzero if this pointer is dereferenced. */
223 unsigned int is_dereferenced : 1;
225 /* Nonzero if this pointer points to a global variable. */
226 unsigned int pt_global_mem : 1;
228 /* Nonzero if this pointer points to NULL. */
229 unsigned int pt_null : 1;
231 /* Set of variables that this pointer may point to. */
232 bitmap pt_vars;
234 /* If this pointer has been dereferenced, and points-to information is
235 more precise than type-based aliasing, indirect references to this
236 pointer will be represented by this memory tag, instead of the type
237 tag computed by TBAA. */
238 tree name_mem_tag;
240 /* Mask of reasons this pointer's value escapes the function */
241 unsigned int escape_mask;
245 /*---------------------------------------------------------------------------
246 Tree annotations stored in tree_base.ann
247 ---------------------------------------------------------------------------*/
248 enum tree_ann_type { TREE_ANN_COMMON, VAR_ANN, FUNCTION_ANN, STMT_ANN };
250 struct tree_ann_common_d GTY(())
252 /* Annotation type. */
253 enum tree_ann_type type;
255 /* Auxiliary info specific to a pass. At all times, this
256 should either point to valid data or be NULL. */
257 PTR GTY ((skip (""))) aux;
259 /* The value handle for this expression. Used by GVN-PRE. */
260 tree GTY((skip)) value_handle;
263 /* It is advantageous to avoid things like life analysis for variables which
264 do not need PHI nodes. This enum describes whether or not a particular
265 variable may need a PHI node. */
267 enum need_phi_state {
268 /* This is the default. If we are still in this state after finding
269 all the definition and use sites, then we will assume the variable
270 needs PHI nodes. This is probably an overly conservative assumption. */
271 NEED_PHI_STATE_UNKNOWN,
273 /* This state indicates that we have seen one or more sets of the
274 variable in a single basic block and that the sets dominate all
275 uses seen so far. If after finding all definition and use sites
276 we are still in this state, then the variable does not need any
277 PHI nodes. */
278 NEED_PHI_STATE_NO,
280 /* This state indicates that we have either seen multiple definitions of
281 the variable in multiple blocks, or that we encountered a use in a
282 block that was not dominated by the block containing the set(s) of
283 this variable. This variable is assumed to need PHI nodes. */
284 NEED_PHI_STATE_MAYBE
288 /* The "no alias" attribute allows alias analysis to make more
289 aggressive assumptions when assigning alias sets, computing
290 points-to information and memory partitions. These attributes
291 are the result of user annotations or flags (e.g.,
292 -fargument-noalias). */
293 enum noalias_state {
294 /* Default state. No special assumptions can be made about this
295 symbol. */
296 MAY_ALIAS = 0,
298 /* The symbol does not alias with other symbols that have a
299 NO_ALIAS* attribute. */
300 NO_ALIAS,
302 /* The symbol does not alias with other symbols that have a
303 NO_ALIAS*, and it may not alias with global symbols. */
304 NO_ALIAS_GLOBAL,
306 /* The symbol does not alias with any other symbols. */
307 NO_ALIAS_ANYTHING
311 typedef VEC(tree,gc) *subvar_t;
313 struct var_ann_d GTY(())
315 struct tree_ann_common_d common;
317 /* Used by the out of SSA pass to determine whether this variable has
318 been seen yet or not. */
319 unsigned out_of_ssa_tag : 1;
321 /* Used when building base variable structures in a var_map. */
322 unsigned base_var_processed : 1;
324 /* Nonzero if this variable was used after SSA optimizations were
325 applied. We set this when translating out of SSA form. */
326 unsigned used : 1;
328 /* This field indicates whether or not the variable may need PHI nodes.
329 See the enum's definition for more detailed information about the
330 states. */
331 ENUM_BITFIELD (need_phi_state) need_phi_state : 2;
333 /* Used during operand processing to determine if this variable is already
334 in the VUSE list. */
335 unsigned in_vuse_list : 1;
337 /* Used during operand processing to determine if this variable is already
338 in the VDEF list. */
339 unsigned in_vdef_list : 1;
341 /* True for HEAP artificial variables. These variables represent
342 the memory area allocated by a call to malloc. */
343 unsigned is_heapvar : 1;
345 /* True if the variable is call clobbered. */
346 unsigned int call_clobbered : 1;
348 /* This field describes several "no alias" attributes that some
349 symbols are known to have. See the enum's definition for more
350 information on each attribute. */
351 ENUM_BITFIELD (noalias_state) noalias_state : 2;
353 /* Memory partition tag assigned to this symbol. */
354 tree mpt;
356 /* If this variable is a pointer P that has been dereferenced, this
357 field is an artificial variable that represents the memory
358 location *P. Every other pointer Q that is type-compatible with
359 P will also have the same memory tag. If the variable is not a
360 pointer or if it is never dereferenced, this must be NULL.
361 FIXME, do we really need this here? How much slower would it be
362 to convert to hash table? */
363 tree symbol_mem_tag;
365 /* Used when going out of SSA form to indicate which partition this
366 variable represents storage for. */
367 unsigned partition;
369 /* Used by var_map for the base index of ssa base variables. */
370 unsigned base_index;
372 /* During into-ssa and the dominator optimizer, this field holds the
373 current version of this variable (an SSA_NAME). */
374 tree current_def;
376 /* If this variable is a structure, this fields holds an array
377 of symbols representing each of the fields of the structure. */
378 VEC(tree,gc) *subvars;
380 /* Mask of values saying the reasons why this variable has escaped
381 the function. */
382 unsigned int escape_mask;
385 /* Container for variable annotation used by hashtable for annotations for
386 static variables. */
387 struct static_var_ann_d GTY(())
389 struct var_ann_d ann;
390 unsigned int uid;
393 struct function_ann_d GTY(())
395 struct tree_ann_common_d common;
397 /* Pointer to the structure that contains the sets of global
398 variables modified by function calls. This field is only used
399 for FUNCTION_DECLs. */
400 ipa_reference_vars_info_t GTY ((skip)) reference_vars_info;
403 typedef struct immediate_use_iterator_d
405 /* This is the current use the iterator is processing. */
406 ssa_use_operand_t *imm_use;
407 /* This marks the last use in the list (use node from SSA_NAME) */
408 ssa_use_operand_t *end_p;
409 /* This node is inserted and used to mark the end of the uses for a stmt. */
410 ssa_use_operand_t iter_node;
411 /* This is the next ssa_name to visit. IMM_USE may get removed before
412 the next one is traversed to, so it must be cached early. */
413 ssa_use_operand_t *next_imm_name;
414 } imm_use_iterator;
417 /* Use this iterator when simply looking at stmts. Adding, deleting or
418 modifying stmts will cause this iterator to malfunction. */
420 #define FOR_EACH_IMM_USE_FAST(DEST, ITER, SSAVAR) \
421 for ((DEST) = first_readonly_imm_use (&(ITER), (SSAVAR)); \
422 !end_readonly_imm_use_p (&(ITER)); \
423 (DEST) = next_readonly_imm_use (&(ITER)))
425 /* Use this iterator to visit each stmt which has a use of SSAVAR. */
427 #define FOR_EACH_IMM_USE_STMT(STMT, ITER, SSAVAR) \
428 for ((STMT) = first_imm_use_stmt (&(ITER), (SSAVAR)); \
429 !end_imm_use_stmt_p (&(ITER)); \
430 (STMT) = next_imm_use_stmt (&(ITER)))
432 /* Use this to terminate the FOR_EACH_IMM_USE_STMT loop early. Failure to
433 do so will result in leaving a iterator marker node in the immediate
434 use list, and nothing good will come from that. */
435 #define BREAK_FROM_IMM_USE_STMT(ITER) \
437 end_imm_use_stmt_traverse (&(ITER)); \
438 break; \
442 /* Use this iterator in combination with FOR_EACH_IMM_USE_STMT to
443 get access to each occurrence of ssavar on the stmt returned by
444 that iterator.. for instance:
446 FOR_EACH_IMM_USE_STMT (stmt, iter, var)
448 FOR_EACH_IMM_USE_ON_STMT (use_p, iter)
450 SET_USE (use_p) = blah;
452 update_stmt (stmt);
453 } */
455 #define FOR_EACH_IMM_USE_ON_STMT(DEST, ITER) \
456 for ((DEST) = first_imm_use_on_stmt (&(ITER)); \
457 !end_imm_use_on_stmt_p (&(ITER)); \
458 (DEST) = next_imm_use_on_stmt (&(ITER)))
462 struct stmt_ann_d GTY(())
464 struct tree_ann_common_d common;
466 /* Basic block that contains this statement. */
467 basic_block bb;
469 /* Operand cache for stmt. */
470 struct stmt_operands_d GTY ((skip (""))) operands;
472 /* Set of variables that have had their address taken in the statement. */
473 bitmap addresses_taken;
475 /* Unique identifier for this statement. These ID's are to be created
476 by each pass on an as-needed basis in any order convenient for the
477 pass which needs statement UIDs. */
478 unsigned int uid;
480 /* Nonzero if the statement references memory (at least one of its
481 expressions contains a non-register operand). */
482 unsigned references_memory : 1;
484 /* Nonzero if the statement has been modified (meaning that the operands
485 need to be scanned again). */
486 unsigned modified : 1;
488 /* Nonzero if the statement makes references to volatile storage. */
489 unsigned has_volatile_ops : 1;
492 union tree_ann_d GTY((desc ("ann_type ((tree_ann_t)&%h)")))
494 struct tree_ann_common_d GTY((tag ("TREE_ANN_COMMON"))) common;
495 struct var_ann_d GTY((tag ("VAR_ANN"))) vdecl;
496 struct function_ann_d GTY((tag ("FUNCTION_ANN"))) fdecl;
497 struct stmt_ann_d GTY((tag ("STMT_ANN"))) stmt;
500 typedef union tree_ann_d *tree_ann_t;
501 typedef struct var_ann_d *var_ann_t;
502 typedef struct function_ann_d *function_ann_t;
503 typedef struct stmt_ann_d *stmt_ann_t;
504 typedef struct tree_ann_common_d *tree_ann_common_t;
506 static inline tree_ann_common_t tree_common_ann (const_tree);
507 static inline tree_ann_common_t get_tree_common_ann (tree);
508 static inline var_ann_t var_ann (const_tree);
509 static inline var_ann_t get_var_ann (tree);
510 static inline function_ann_t function_ann (const_tree);
511 static inline function_ann_t get_function_ann (tree);
512 static inline stmt_ann_t stmt_ann (tree);
513 static inline bool has_stmt_ann (tree);
514 static inline stmt_ann_t get_stmt_ann (tree);
515 static inline enum tree_ann_type ann_type (tree_ann_t);
516 static inline basic_block bb_for_stmt (tree);
517 extern void set_bb_for_stmt (tree, basic_block);
518 static inline bool noreturn_call_p (tree);
519 static inline void update_stmt (tree);
520 static inline bool stmt_modified_p (tree);
521 static inline bitmap may_aliases (const_tree);
522 static inline int get_lineno (const_tree);
523 static inline bitmap addresses_taken (tree);
525 /*---------------------------------------------------------------------------
526 Structure representing predictions in tree level.
527 ---------------------------------------------------------------------------*/
528 struct edge_prediction GTY((chain_next ("%h.ep_next")))
530 struct edge_prediction *ep_next;
531 edge ep_edge;
532 enum br_predictor ep_predictor;
533 int ep_probability;
536 /* Accessors for basic block annotations. */
537 static inline tree phi_nodes (const_basic_block);
538 static inline void set_phi_nodes (basic_block, tree);
540 /*---------------------------------------------------------------------------
541 Global declarations
542 ---------------------------------------------------------------------------*/
543 struct int_tree_map GTY(())
546 unsigned int uid;
547 tree to;
550 extern unsigned int int_tree_map_hash (const void *);
551 extern int int_tree_map_eq (const void *, const void *);
553 extern unsigned int uid_decl_map_hash (const void *);
554 extern int uid_decl_map_eq (const void *, const void *);
556 typedef struct
558 htab_iterator hti;
559 } referenced_var_iterator;
562 /* This macro loops over all the referenced vars, one at a time, putting the
563 current var in VAR. Note: You are not allowed to add referenced variables
564 to the hashtable while using this macro. Doing so may cause it to behave
565 erratically. */
567 #define FOR_EACH_REFERENCED_VAR(VAR, ITER) \
568 for ((VAR) = first_referenced_var (&(ITER)); \
569 !end_referenced_vars_p (&(ITER)); \
570 (VAR) = next_referenced_var (&(ITER)))
573 typedef struct
575 int i;
576 } safe_referenced_var_iterator;
578 /* This macro loops over all the referenced vars, one at a time, putting the
579 current var in VAR. You are allowed to add referenced variables during the
580 execution of this macro, however, the macro will not iterate over them. It
581 requires a temporary vector of trees, VEC, whose lifetime is controlled by
582 the caller. The purpose of the vector is to temporarily store the
583 referenced_variables hashtable so that adding referenced variables does not
584 affect the hashtable. */
586 #define FOR_EACH_REFERENCED_VAR_SAFE(VAR, VEC, ITER) \
587 for ((ITER).i = 0, fill_referenced_var_vec (&(VEC)); \
588 VEC_iterate (tree, (VEC), (ITER).i, (VAR)); \
589 (ITER).i++)
591 extern tree referenced_var_lookup (unsigned int);
592 extern bool referenced_var_check_and_insert (tree);
593 #define num_referenced_vars htab_elements (gimple_referenced_vars (cfun))
594 #define referenced_var(i) referenced_var_lookup (i)
596 #define num_ssa_names (VEC_length (tree, cfun->gimple_df->ssa_names))
597 #define ssa_name(i) (VEC_index (tree, cfun->gimple_df->ssa_names, (i)))
599 /* Macros for showing usage statistics. */
600 #define SCALE(x) ((unsigned long) ((x) < 1024*10 \
601 ? (x) \
602 : ((x) < 1024*1024*10 \
603 ? (x) / 1024 \
604 : (x) / (1024*1024))))
606 #define LABEL(x) ((x) < 1024*10 ? 'b' : ((x) < 1024*1024*10 ? 'k' : 'M'))
608 #define PERCENT(x,y) ((float)(x) * 100.0 / (float)(y))
610 /*---------------------------------------------------------------------------
611 Block iterators
612 ---------------------------------------------------------------------------*/
614 typedef struct {
615 tree_stmt_iterator tsi;
616 basic_block bb;
617 } block_stmt_iterator;
619 static inline block_stmt_iterator bsi_start (basic_block);
620 static inline block_stmt_iterator bsi_last (basic_block);
621 static inline block_stmt_iterator bsi_after_labels (basic_block);
622 block_stmt_iterator bsi_for_stmt (tree);
623 static inline bool bsi_end_p (block_stmt_iterator);
624 static inline void bsi_next (block_stmt_iterator *);
625 static inline void bsi_prev (block_stmt_iterator *);
626 static inline tree bsi_stmt (block_stmt_iterator);
627 static inline tree * bsi_stmt_ptr (block_stmt_iterator);
629 extern void bsi_remove (block_stmt_iterator *, bool);
630 extern void bsi_move_before (block_stmt_iterator *, block_stmt_iterator *);
631 extern void bsi_move_after (block_stmt_iterator *, block_stmt_iterator *);
632 extern void bsi_move_to_bb_end (block_stmt_iterator *, basic_block);
634 enum bsi_iterator_update
636 /* Note that these are intentionally in the same order as TSI_FOO. They
637 mean exactly the same as their TSI_* counterparts. */
638 BSI_NEW_STMT,
639 BSI_SAME_STMT,
640 BSI_CHAIN_START,
641 BSI_CHAIN_END,
642 BSI_CONTINUE_LINKING
645 extern void bsi_insert_before (block_stmt_iterator *, tree,
646 enum bsi_iterator_update);
647 extern void bsi_insert_after (block_stmt_iterator *, tree,
648 enum bsi_iterator_update);
650 extern void bsi_replace (const block_stmt_iterator *, tree, bool);
652 /*---------------------------------------------------------------------------
653 OpenMP Region Tree
654 ---------------------------------------------------------------------------*/
656 /* Parallel region information. Every parallel and workshare
657 directive is enclosed between two markers, the OMP_* directive
658 and a corresponding OMP_RETURN statement. */
660 struct omp_region
662 /* The enclosing region. */
663 struct omp_region *outer;
665 /* First child region. */
666 struct omp_region *inner;
668 /* Next peer region. */
669 struct omp_region *next;
671 /* Block containing the omp directive as its last stmt. */
672 basic_block entry;
674 /* Block containing the OMP_RETURN as its last stmt. */
675 basic_block exit;
677 /* Block containing the OMP_CONTINUE as its last stmt. */
678 basic_block cont;
680 /* If this is a combined parallel+workshare region, this is a list
681 of additional arguments needed by the combined parallel+workshare
682 library call. */
683 tree ws_args;
685 /* The code for the omp directive of this region. */
686 enum tree_code type;
688 /* Schedule kind, only used for OMP_FOR type regions. */
689 enum omp_clause_schedule_kind sched_kind;
691 /* True if this is a combined parallel+workshare region. */
692 bool is_combined_parallel;
695 extern struct omp_region *root_omp_region;
696 extern struct omp_region *new_omp_region (basic_block, enum tree_code,
697 struct omp_region *);
698 extern void free_omp_regions (void);
699 void omp_expand_local (basic_block);
700 extern tree find_omp_clause (tree, enum tree_code);
701 tree copy_var_decl (tree, tree, tree);
703 /*---------------------------------------------------------------------------
704 Function prototypes
705 ---------------------------------------------------------------------------*/
706 /* In tree-cfg.c */
708 /* Location to track pending stmt for edge insertion. */
709 #define PENDING_STMT(e) ((e)->insns.t)
711 extern void delete_tree_cfg_annotations (void);
712 extern bool stmt_ends_bb_p (const_tree);
713 extern bool is_ctrl_stmt (const_tree);
714 extern bool is_ctrl_altering_stmt (const_tree);
715 extern bool computed_goto_p (const_tree);
716 extern bool simple_goto_p (const_tree);
717 extern bool tree_can_make_abnormal_goto (const_tree);
718 extern basic_block single_noncomplex_succ (basic_block bb);
719 extern void tree_dump_bb (basic_block, FILE *, int);
720 extern void debug_tree_bb (basic_block);
721 extern basic_block debug_tree_bb_n (int);
722 extern void dump_tree_cfg (FILE *, int);
723 extern void debug_tree_cfg (int);
724 extern void dump_cfg_stats (FILE *);
725 extern void debug_cfg_stats (void);
726 extern void debug_loop_ir (void);
727 extern void print_loop_ir (FILE *);
728 extern void cleanup_dead_labels (void);
729 extern void group_case_labels (void);
730 extern tree first_stmt (basic_block);
731 extern tree last_stmt (basic_block);
732 extern tree last_and_only_stmt (basic_block);
733 extern edge find_taken_edge (basic_block, tree);
734 extern basic_block label_to_block_fn (struct function *, tree);
735 #define label_to_block(t) (label_to_block_fn (cfun, t))
736 extern void bsi_insert_on_edge (edge, tree);
737 extern basic_block bsi_insert_on_edge_immediate (edge, tree);
738 extern void bsi_commit_one_edge_insert (edge, basic_block *);
739 extern void bsi_commit_edge_inserts (void);
740 extern void notice_special_calls (tree);
741 extern void clear_special_calls (void);
742 extern void verify_stmts (void);
743 extern void verify_gimple (void);
744 extern void verify_gimple_1 (tree);
745 extern tree tree_block_label (basic_block);
746 extern void extract_true_false_edges_from_block (basic_block, edge *, edge *);
747 extern bool tree_duplicate_sese_region (edge, edge, basic_block *, unsigned,
748 basic_block *);
749 extern bool tree_duplicate_sese_tail (edge, edge, basic_block *, unsigned,
750 basic_block *);
751 extern void add_phi_args_after_copy_bb (basic_block);
752 extern void add_phi_args_after_copy (basic_block *, unsigned, edge);
753 extern bool tree_purge_dead_abnormal_call_edges (basic_block);
754 extern bool tree_purge_dead_eh_edges (basic_block);
755 extern bool tree_purge_all_dead_eh_edges (const_bitmap);
756 extern tree gimplify_val (block_stmt_iterator *, tree, tree);
757 extern tree gimplify_build1 (block_stmt_iterator *, enum tree_code,
758 tree, tree);
759 extern tree gimplify_build2 (block_stmt_iterator *, enum tree_code,
760 tree, tree, tree);
761 extern tree gimplify_build3 (block_stmt_iterator *, enum tree_code,
762 tree, tree, tree, tree);
763 extern void init_empty_tree_cfg (void);
764 extern void fold_cond_expr_cond (void);
765 extern void make_abnormal_goto_edges (basic_block, bool);
766 extern void replace_uses_by (tree, tree);
767 extern void start_recording_case_labels (void);
768 extern void end_recording_case_labels (void);
769 extern basic_block move_sese_region_to_fn (struct function *, basic_block,
770 basic_block);
771 void remove_edge_and_dominated_blocks (edge);
773 /* In tree-cfgcleanup.c */
774 extern bitmap cfgcleanup_altered_bbs;
775 extern bool cleanup_tree_cfg (void);
777 /* In tree-pretty-print.c. */
778 extern void dump_generic_bb (FILE *, basic_block, int, int);
779 extern const char *op_symbol_code (enum tree_code);
781 /* In tree-dfa.c */
782 extern var_ann_t create_var_ann (tree);
783 extern function_ann_t create_function_ann (tree);
784 extern stmt_ann_t create_stmt_ann (tree);
785 extern tree_ann_common_t create_tree_common_ann (tree);
786 extern void dump_dfa_stats (FILE *);
787 extern void debug_dfa_stats (void);
788 extern void debug_referenced_vars (void);
789 extern void dump_referenced_vars (FILE *);
790 extern void dump_variable (FILE *, tree);
791 extern void debug_variable (tree);
792 extern void dump_subvars_for (FILE *, tree);
793 extern void debug_subvars_for (tree);
794 extern tree get_virtual_var (tree);
795 extern void add_referenced_var (tree);
796 extern void remove_referenced_var (tree);
797 extern void mark_symbols_for_renaming (tree);
798 extern void find_new_referenced_vars (tree *);
799 extern tree make_rename_temp (tree, const char *);
800 extern void set_default_def (tree, tree);
801 extern tree gimple_default_def (struct function *, tree);
803 /* In tree-phinodes.c */
804 extern void reserve_phi_args_for_new_edge (basic_block);
805 extern tree create_phi_node (tree, basic_block);
806 extern void add_phi_arg (tree, tree, edge);
807 extern void remove_phi_args (edge);
808 extern void remove_phi_node (tree, tree, bool);
809 extern tree phi_reverse (tree);
811 /* In gimple-low.c */
812 extern void record_vars_into (tree, tree);
813 extern void record_vars (tree);
814 extern bool block_may_fallthru (const_tree);
816 /* In tree-ssa-alias.c */
817 extern unsigned int compute_may_aliases (void);
818 extern void dump_may_aliases_for (FILE *, tree);
819 extern void debug_may_aliases_for (tree);
820 extern void dump_alias_info (FILE *);
821 extern void debug_alias_info (void);
822 extern void dump_points_to_info (FILE *);
823 extern void debug_points_to_info (void);
824 extern void dump_points_to_info_for (FILE *, tree);
825 extern void debug_points_to_info_for (tree);
826 extern bool may_be_aliased (tree);
827 extern struct ptr_info_def *get_ptr_info (tree);
828 extern void new_type_alias (tree, tree, tree);
829 extern void count_uses_and_derefs (tree, tree, unsigned *, unsigned *,
830 unsigned *);
831 static inline subvar_t get_subvars_for_var (tree);
832 static inline tree get_subvar_at (tree, unsigned HOST_WIDE_INT);
833 static inline bool ref_contains_array_ref (const_tree);
834 static inline bool array_ref_contains_indirect_ref (const_tree);
835 extern tree get_ref_base_and_extent (tree, HOST_WIDE_INT *,
836 HOST_WIDE_INT *, HOST_WIDE_INT *);
837 static inline bool var_can_have_subvars (const_tree);
838 static inline bool overlap_subvar (unsigned HOST_WIDE_INT,
839 unsigned HOST_WIDE_INT,
840 const_tree, bool *);
841 extern tree create_tag_raw (enum tree_code, tree, const char *);
842 extern void delete_mem_ref_stats (struct function *);
843 extern void dump_mem_ref_stats (FILE *);
844 extern void debug_mem_ref_stats (void);
845 extern void debug_memory_partitions (void);
846 extern void debug_mem_sym_stats (tree var);
847 extern void dump_mem_sym_stats_for_var (FILE *, tree);
848 extern void debug_all_mem_sym_stats (void);
850 /* Call-back function for walk_use_def_chains(). At each reaching
851 definition, a function with this prototype is called. */
852 typedef bool (*walk_use_def_chains_fn) (tree, tree, void *);
854 /* In tree-ssa-alias-warnings.c */
855 extern void strict_aliasing_warning_backend (void);
857 /* In tree-ssa.c */
858 extern void init_tree_ssa (void);
859 extern edge ssa_redirect_edge (edge, basic_block);
860 extern void flush_pending_stmts (edge);
861 extern bool tree_ssa_useless_type_conversion (tree);
862 extern bool useless_type_conversion_p (tree, tree);
863 extern bool types_compatible_p (tree, tree);
864 extern void verify_ssa (bool);
865 extern void delete_tree_ssa (void);
866 extern void walk_use_def_chains (tree, walk_use_def_chains_fn, void *, bool);
867 extern bool stmt_references_memory_p (tree);
869 /* In tree-into-ssa.c */
870 void update_ssa (unsigned);
871 void delete_update_ssa (void);
872 void register_new_name_mapping (tree, tree);
873 tree create_new_def_for (tree, tree, def_operand_p);
874 bool need_ssa_update_p (void);
875 bool name_mappings_registered_p (void);
876 bool name_registered_for_update_p (tree);
877 bitmap ssa_names_to_replace (void);
878 void release_ssa_name_after_update_ssa (tree);
879 void compute_global_livein (bitmap, bitmap);
880 tree duplicate_ssa_name (tree, tree);
881 void mark_sym_for_renaming (tree);
882 void mark_set_for_renaming (bitmap);
883 tree get_current_def (tree);
884 void set_current_def (tree, tree);
886 /* In tree-ssa-ccp.c */
887 bool fold_stmt (tree *);
888 bool fold_stmt_inplace (tree);
889 tree widen_bitfield (tree, tree, tree);
891 /* In tree-vrp.c */
892 tree vrp_evaluate_conditional (tree, tree);
893 void simplify_stmt_using_ranges (tree);
895 /* In tree-ssa-dom.c */
896 extern void dump_dominator_optimization_stats (FILE *);
897 extern void debug_dominator_optimization_stats (void);
898 int loop_depth_of_name (tree);
900 /* In tree-ssa-copy.c */
901 extern void merge_alias_info (tree, tree);
902 extern void propagate_value (use_operand_p, tree);
903 extern void propagate_tree_value (tree *, tree);
904 extern void replace_exp (use_operand_p, tree);
905 extern bool may_propagate_copy (tree, tree);
906 extern bool may_propagate_copy_into_asm (tree);
908 /* Affine iv. */
910 typedef struct
912 /* Iv = BASE + STEP * i. */
913 tree base, step;
915 /* True if this iv does not overflow. */
916 bool no_overflow;
917 } affine_iv;
919 /* Description of number of iterations of a loop. All the expressions inside
920 the structure can be evaluated at the end of the loop's preheader
921 (and due to ssa form, also anywhere inside the body of the loop). */
923 struct tree_niter_desc
925 tree assumptions; /* The boolean expression. If this expression evaluates
926 to false, then the other fields in this structure
927 should not be used; there is no guarantee that they
928 will be correct. */
929 tree may_be_zero; /* The boolean expression. If it evaluates to true,
930 the loop will exit in the first iteration (i.e.
931 its latch will not be executed), even if the niter
932 field says otherwise. */
933 tree niter; /* The expression giving the number of iterations of
934 a loop (provided that assumptions == true and
935 may_be_zero == false), more precisely the number
936 of executions of the latch of the loop. */
937 double_int max; /* The upper bound on the number of iterations of
938 the loop. */
940 /* The simplified shape of the exit condition. The loop exits if
941 CONTROL CMP BOUND is false, where CMP is one of NE_EXPR,
942 LT_EXPR, or GT_EXPR, and step of CONTROL is positive if CMP is
943 LE_EXPR and negative if CMP is GE_EXPR. This information is used
944 by loop unrolling. */
945 affine_iv control;
946 tree bound;
947 enum tree_code cmp;
950 /* In tree-vectorizer.c */
951 unsigned vectorize_loops (void);
952 extern bool vect_can_force_dr_alignment_p (const_tree, unsigned int);
953 extern tree get_vectype_for_scalar_type (tree);
955 /* In tree-ssa-phiopt.c */
956 bool empty_block_p (basic_block);
957 basic_block *blocks_in_phiopt_order (void);
959 /* In tree-ssa-loop*.c */
961 void tree_ssa_lim (void);
962 unsigned int tree_ssa_unswitch_loops (void);
963 unsigned int canonicalize_induction_variables (void);
964 unsigned int tree_unroll_loops_completely (bool);
965 unsigned int tree_ssa_prefetch_arrays (void);
966 unsigned int remove_empty_loops (void);
967 void tree_ssa_iv_optimize (void);
968 unsigned tree_predictive_commoning (void);
969 bool parallelize_loops (void);
971 bool number_of_iterations_exit (struct loop *, edge,
972 struct tree_niter_desc *niter, bool);
973 tree find_loop_niter (struct loop *, edge *);
974 tree loop_niter_by_eval (struct loop *, edge);
975 tree find_loop_niter_by_eval (struct loop *, edge *);
976 void estimate_numbers_of_iterations (void);
977 bool scev_probably_wraps_p (tree, tree, tree, struct loop *, bool);
978 bool convert_affine_scev (struct loop *, tree, tree *, tree *, tree, bool);
980 bool nowrap_type_p (tree);
981 enum ev_direction {EV_DIR_GROWS, EV_DIR_DECREASES, EV_DIR_UNKNOWN};
982 enum ev_direction scev_direction (const_tree);
984 void free_numbers_of_iterations_estimates (void);
985 void free_numbers_of_iterations_estimates_loop (struct loop *);
986 void rewrite_into_loop_closed_ssa (bitmap, unsigned);
987 void verify_loop_closed_ssa (void);
988 bool for_each_index (tree *, bool (*) (tree, tree *, void *), void *);
989 void create_iv (tree, tree, tree, struct loop *, block_stmt_iterator *, bool,
990 tree *, tree *);
991 basic_block split_loop_exit_edge (edge);
992 unsigned force_expr_to_var_cost (tree);
993 void standard_iv_increment_position (struct loop *, block_stmt_iterator *,
994 bool *);
995 basic_block ip_end_pos (struct loop *);
996 basic_block ip_normal_pos (struct loop *);
997 bool tree_duplicate_loop_to_header_edge (struct loop *, edge,
998 unsigned int, sbitmap,
999 edge, VEC (edge, heap) **,
1000 int);
1001 struct loop *tree_ssa_loop_version (struct loop *, tree,
1002 basic_block *);
1003 tree expand_simple_operations (tree);
1004 void substitute_in_loop_info (struct loop *, tree, tree);
1005 edge single_dom_exit (struct loop *);
1006 bool can_unroll_loop_p (struct loop *loop, unsigned factor,
1007 struct tree_niter_desc *niter);
1008 void tree_unroll_loop (struct loop *, unsigned,
1009 edge, struct tree_niter_desc *);
1010 typedef void (*transform_callback)(struct loop *, void *);
1011 void tree_transform_and_unroll_loop (struct loop *, unsigned,
1012 edge, struct tree_niter_desc *,
1013 transform_callback, void *);
1014 bool contains_abnormal_ssa_name_p (tree);
1015 bool stmt_dominates_stmt_p (tree, tree);
1016 void mark_virtual_ops_for_renaming (tree);
1018 /* In tree-ssa-threadedge.c */
1019 extern bool potentially_threadable_block (basic_block);
1020 extern void thread_across_edge (tree, edge, bool,
1021 VEC(tree, heap) **, tree (*) (tree, tree));
1023 /* In tree-ssa-loop-im.c */
1024 /* The possibilities of statement movement. */
1026 enum move_pos
1028 MOVE_IMPOSSIBLE, /* No movement -- side effect expression. */
1029 MOVE_PRESERVE_EXECUTION, /* Must not cause the non-executed statement
1030 become executed -- memory accesses, ... */
1031 MOVE_POSSIBLE /* Unlimited movement. */
1033 extern enum move_pos movement_possibility (tree);
1034 char *get_lsm_tmp_name (tree, unsigned);
1036 /* The reasons a variable may escape a function. */
1037 enum escape_type
1039 NO_ESCAPE = 0, /* Doesn't escape. */
1040 ESCAPE_STORED_IN_GLOBAL = 1 << 1,
1041 ESCAPE_TO_ASM = 1 << 2, /* Passed by address to an assembly
1042 statement. */
1043 ESCAPE_TO_CALL = 1 << 3, /* Escapes to a function call. */
1044 ESCAPE_BAD_CAST = 1 << 4, /* Cast from pointer to integer */
1045 ESCAPE_TO_RETURN = 1 << 5, /* Returned from function. */
1046 ESCAPE_TO_PURE_CONST = 1 << 6, /* Escapes to a pure or constant
1047 function call. */
1048 ESCAPE_IS_GLOBAL = 1 << 7, /* Is a global variable. */
1049 ESCAPE_IS_PARM = 1 << 8, /* Is an incoming function argument. */
1050 ESCAPE_UNKNOWN = 1 << 9 /* We believe it escapes for
1051 some reason not enumerated
1052 above. */
1055 /* In tree-flow-inline.h */
1056 static inline bool is_call_clobbered (const_tree);
1057 static inline void mark_call_clobbered (tree, unsigned int);
1058 static inline void set_is_used (tree);
1059 static inline bool unmodifiable_var_p (const_tree);
1061 /* In tree-eh.c */
1062 extern void make_eh_edges (tree);
1063 extern bool tree_could_trap_p (tree);
1064 extern bool tree_could_throw_p (tree);
1065 extern bool tree_can_throw_internal (const_tree);
1066 extern bool tree_can_throw_external (tree);
1067 extern int lookup_stmt_eh_region (const_tree);
1068 extern void add_stmt_to_eh_region (tree, int);
1069 extern bool remove_stmt_from_eh_region (tree);
1070 extern bool maybe_clean_or_replace_eh_stmt (tree, tree);
1072 /* In tree-ssa-pre.c */
1073 void add_to_value (tree, tree);
1074 void debug_value_expressions (tree);
1075 void print_value_expressions (FILE *, tree);
1078 /* In tree-vn.c */
1079 tree make_value_handle (tree);
1080 void set_value_handle (tree, tree);
1081 bool expressions_equal_p (tree, tree);
1082 static inline tree get_value_handle (tree);
1083 void sort_vuses (VEC (tree, gc) *);
1084 void sort_vuses_heap (VEC (tree, heap) *);
1085 tree vn_lookup_or_add (tree);
1086 tree vn_lookup_or_add_with_stmt (tree, tree);
1087 tree vn_lookup_or_add_with_vuses (tree, VEC (tree, gc) *);
1088 void vn_add (tree, tree);
1089 void vn_add_with_vuses (tree, tree, VEC (tree, gc) *);
1090 tree vn_lookup_with_stmt (tree, tree);
1091 tree vn_lookup (tree);
1092 tree vn_lookup_with_vuses (tree, VEC (tree, gc) *);
1094 /* In tree-ssa-sink.c */
1095 bool is_hidden_global_store (tree);
1097 /* In tree-sra.c */
1098 void insert_edge_copies (tree, basic_block);
1099 void sra_insert_before (block_stmt_iterator *, tree);
1100 void sra_insert_after (block_stmt_iterator *, tree);
1101 void sra_init_cache (void);
1102 bool sra_type_can_be_decomposed_p (tree);
1104 /* In tree-loop-linear.c */
1105 extern void linear_transform_loops (void);
1107 /* In tree-data-ref.c */
1108 extern void tree_check_data_deps (void);
1110 /* In tree-ssa-loop-ivopts.c */
1111 bool expr_invariant_in_loop_p (struct loop *, tree);
1112 bool multiplier_allowed_in_address_p (HOST_WIDE_INT, enum machine_mode);
1113 unsigned multiply_by_cost (HOST_WIDE_INT, enum machine_mode);
1115 /* In tree-ssa-threadupdate.c. */
1116 extern bool thread_through_all_blocks (bool);
1117 extern void register_jump_thread (edge, edge);
1119 /* In gimplify.c */
1120 tree force_gimple_operand (tree, tree *, bool, tree);
1121 tree force_gimple_operand_bsi (block_stmt_iterator *, tree, bool, tree,
1122 bool, enum bsi_iterator_update);
1124 /* In tree-ssa-structalias.c */
1125 bool find_what_p_points_to (tree);
1127 /* In tree-ssa-live.c */
1128 extern void remove_unused_locals (void);
1130 /* In tree-ssa-address.c */
1132 /* Description of a memory address. */
1134 struct mem_address
1136 tree symbol, base, index, step, offset;
1139 struct affine_tree_combination;
1140 tree create_mem_ref (block_stmt_iterator *, tree,
1141 struct affine_tree_combination *);
1142 rtx addr_for_mem_ref (struct mem_address *, bool);
1143 void get_address_description (tree, struct mem_address *);
1144 tree maybe_fold_tmr (tree);
1146 /* This structure is simply used during pushing fields onto the fieldstack
1147 to track the offset of the field, since bitpos_of_field gives it relative
1148 to its immediate containing type, and we want it relative to the ultimate
1149 containing object. */
1151 struct fieldoff
1153 tree type;
1154 tree size;
1155 tree decl;
1156 HOST_WIDE_INT offset;
1157 alias_set_type alias_set;
1159 typedef struct fieldoff fieldoff_s;
1161 DEF_VEC_O(fieldoff_s);
1162 DEF_VEC_ALLOC_O(fieldoff_s,heap);
1163 int push_fields_onto_fieldstack (tree, VEC(fieldoff_s,heap) **,
1164 HOST_WIDE_INT, bool *, tree);
1165 void sort_fieldstack (VEC(fieldoff_s,heap) *);
1167 void init_alias_heapvars (void);
1168 void delete_alias_heapvars (void);
1169 unsigned int execute_fixup_cfg (void);
1171 #include "tree-flow-inline.h"
1173 void swap_tree_operands (tree, tree *, tree *);
1175 int least_common_multiple (int, int);
1177 #endif /* _TREE_FLOW_H */