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