2013-09-13 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / tree-flow.h
blob9c5d979872d0ac40f3ca4e23f8125f12b931d4e5
1 /* Data and Control Flow Analysis for Trees.
2 Copyright (C) 2001-2013 Free Software Foundation, Inc.
3 Contributed by Diego Novillo <dnovillo@redhat.com>
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3, or (at your option)
10 any later version.
12 GCC is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING3. If not see
19 <http://www.gnu.org/licenses/>. */
21 #ifndef _TREE_FLOW_H
22 #define _TREE_FLOW_H 1
24 #include "bitmap.h"
25 #include "sbitmap.h"
26 #include "basic-block.h"
27 #include "hashtab.h"
28 #include "gimple.h"
29 #include "tree-ssa-operands.h"
30 #include "cgraph.h"
31 #include "ipa-reference.h"
32 #include "tree-ssa-alias.h"
35 /* This structure is used to map a gimple statement to a label,
36 or list of labels to represent transaction restart. */
38 struct GTY(()) tm_restart_node {
39 gimple stmt;
40 tree label_or_list;
43 /* Gimple dataflow datastructure. All publicly available fields shall have
44 gimple_ accessor defined in tree-flow-inline.h, all publicly modifiable
45 fields should have gimple_set accessor. */
46 struct GTY(()) gimple_df {
47 /* A vector of all the noreturn calls passed to modify_stmt.
48 cleanup_control_flow uses it to detect cases where a mid-block
49 indirect call has been turned into a noreturn call. When this
50 happens, all the instructions after the call are no longer
51 reachable and must be deleted as dead. */
52 vec<gimple, va_gc> *modified_noreturn_calls;
54 /* Array of all SSA_NAMEs used in the function. */
55 vec<tree, va_gc> *ssa_names;
57 /* Artificial variable used for the virtual operand FUD chain. */
58 tree vop;
60 /* The PTA solution for the ESCAPED artificial variable. */
61 struct pt_solution escaped;
63 /* A map of decls to artificial ssa-names that point to the partition
64 of the decl. */
65 struct pointer_map_t * GTY((skip(""))) decls_to_pointers;
67 /* Free list of SSA_NAMEs. */
68 vec<tree, va_gc> *free_ssanames;
70 /* Hashtable holding definition for symbol. If this field is not NULL, it
71 means that the first reference to this variable in the function is a
72 USE or a VUSE. In those cases, the SSA renamer creates an SSA name
73 for this variable with an empty defining statement. */
74 htab_t GTY((param_is (union tree_node))) default_defs;
76 /* True if there are any symbols that need to be renamed. */
77 unsigned int ssa_renaming_needed : 1;
79 /* True if all virtual operands need to be renamed. */
80 unsigned int rename_vops : 1;
82 /* True if the code is in ssa form. */
83 unsigned int in_ssa_p : 1;
85 /* True if IPA points-to information was computed for this function. */
86 unsigned int ipa_pta : 1;
88 struct ssa_operands ssa_operands;
90 /* Map gimple stmt to tree label (or list of labels) for transaction
91 restart and abort. */
92 htab_t GTY ((param_is (struct tm_restart_node))) tm_restart;
96 typedef struct
98 htab_t htab;
99 PTR *slot;
100 PTR *limit;
101 } htab_iterator;
103 /* Iterate through the elements of hashtable HTAB, using htab_iterator ITER,
104 storing each element in RESULT, which is of type TYPE. */
105 #define FOR_EACH_HTAB_ELEMENT(HTAB, RESULT, TYPE, ITER) \
106 for (RESULT = (TYPE) first_htab_element (&(ITER), (HTAB)); \
107 !end_htab_p (&(ITER)); \
108 RESULT = (TYPE) next_htab_element (&(ITER)))
110 /* It is advantageous to avoid things like life analysis for variables which
111 do not need PHI nodes. This enum describes whether or not a particular
112 variable may need a PHI node. */
114 enum need_phi_state {
115 /* This is the default. If we are still in this state after finding
116 all the definition and use sites, then we will assume the variable
117 needs PHI nodes. This is probably an overly conservative assumption. */
118 NEED_PHI_STATE_UNKNOWN,
120 /* This state indicates that we have seen one or more sets of the
121 variable in a single basic block and that the sets dominate all
122 uses seen so far. If after finding all definition and use sites
123 we are still in this state, then the variable does not need any
124 PHI nodes. */
125 NEED_PHI_STATE_NO,
127 /* This state indicates that we have either seen multiple definitions of
128 the variable in multiple blocks, or that we encountered a use in a
129 block that was not dominated by the block containing the set(s) of
130 this variable. This variable is assumed to need PHI nodes. */
131 NEED_PHI_STATE_MAYBE
135 /* Immediate use lists are used to directly access all uses for an SSA
136 name and get pointers to the statement for each use.
138 The structure ssa_use_operand_d consists of PREV and NEXT pointers
139 to maintain the list. A USE pointer, which points to address where
140 the use is located and a LOC pointer which can point to the
141 statement where the use is located, or, in the case of the root
142 node, it points to the SSA name itself.
144 The list is anchored by an occurrence of ssa_operand_d *in* the
145 ssa_name node itself (named 'imm_uses'). This node is uniquely
146 identified by having a NULL USE pointer. and the LOC pointer
147 pointing back to the ssa_name node itself. This node forms the
148 base for a circular list, and initially this is the only node in
149 the list.
151 Fast iteration allows each use to be examined, but does not allow
152 any modifications to the uses or stmts.
154 Normal iteration allows insertion, deletion, and modification. the
155 iterator manages this by inserting a marker node into the list
156 immediately before the node currently being examined in the list.
157 this marker node is uniquely identified by having null stmt *and* a
158 null use pointer.
160 When iterating to the next use, the iteration routines check to see
161 if the node after the marker has changed. if it has, then the node
162 following the marker is now the next one to be visited. if not, the
163 marker node is moved past that node in the list (visualize it as
164 bumping the marker node through the list). this continues until
165 the marker node is moved to the original anchor position. the
166 marker node is then removed from the list.
168 If iteration is halted early, the marker node must be removed from
169 the list before continuing. */
170 typedef struct immediate_use_iterator_d
172 /* This is the current use the iterator is processing. */
173 ssa_use_operand_t *imm_use;
174 /* This marks the last use in the list (use node from SSA_NAME) */
175 ssa_use_operand_t *end_p;
176 /* This node is inserted and used to mark the end of the uses for a stmt. */
177 ssa_use_operand_t iter_node;
178 /* This is the next ssa_name to visit. IMM_USE may get removed before
179 the next one is traversed to, so it must be cached early. */
180 ssa_use_operand_t *next_imm_name;
181 } imm_use_iterator;
184 /* Use this iterator when simply looking at stmts. Adding, deleting or
185 modifying stmts will cause this iterator to malfunction. */
187 #define FOR_EACH_IMM_USE_FAST(DEST, ITER, SSAVAR) \
188 for ((DEST) = first_readonly_imm_use (&(ITER), (SSAVAR)); \
189 !end_readonly_imm_use_p (&(ITER)); \
190 (void) ((DEST) = next_readonly_imm_use (&(ITER))))
192 /* Use this iterator to visit each stmt which has a use of SSAVAR. */
194 #define FOR_EACH_IMM_USE_STMT(STMT, ITER, SSAVAR) \
195 for ((STMT) = first_imm_use_stmt (&(ITER), (SSAVAR)); \
196 !end_imm_use_stmt_p (&(ITER)); \
197 (void) ((STMT) = next_imm_use_stmt (&(ITER))))
199 /* Use this to terminate the FOR_EACH_IMM_USE_STMT loop early. Failure to
200 do so will result in leaving a iterator marker node in the immediate
201 use list, and nothing good will come from that. */
202 #define BREAK_FROM_IMM_USE_STMT(ITER) \
204 end_imm_use_stmt_traverse (&(ITER)); \
205 break; \
209 /* Use this iterator in combination with FOR_EACH_IMM_USE_STMT to
210 get access to each occurrence of ssavar on the stmt returned by
211 that iterator.. for instance:
213 FOR_EACH_IMM_USE_STMT (stmt, iter, var)
215 FOR_EACH_IMM_USE_ON_STMT (use_p, iter)
217 SET_USE (use_p, blah);
219 update_stmt (stmt);
220 } */
222 #define FOR_EACH_IMM_USE_ON_STMT(DEST, ITER) \
223 for ((DEST) = first_imm_use_on_stmt (&(ITER)); \
224 !end_imm_use_on_stmt_p (&(ITER)); \
225 (void) ((DEST) = next_imm_use_on_stmt (&(ITER))))
229 static inline void update_stmt (gimple);
230 static inline int get_lineno (const_gimple);
232 /* Accessors for basic block annotations. */
233 static inline gimple_seq phi_nodes (const_basic_block);
234 static inline void set_phi_nodes (basic_block, gimple_seq);
236 /*---------------------------------------------------------------------------
237 Global declarations
238 ---------------------------------------------------------------------------*/
239 struct int_tree_map {
240 unsigned int uid;
241 tree to;
244 /* Macros for showing usage statistics. */
245 #define SCALE(x) ((unsigned long) ((x) < 1024*10 \
246 ? (x) \
247 : ((x) < 1024*1024*10 \
248 ? (x) / 1024 \
249 : (x) / (1024*1024))))
251 #define LABEL(x) ((x) < 1024*10 ? 'b' : ((x) < 1024*1024*10 ? 'k' : 'M'))
253 #define PERCENT(x,y) ((float)(x) * 100.0 / (float)(y))
255 /*---------------------------------------------------------------------------
256 OpenMP Region Tree
257 ---------------------------------------------------------------------------*/
259 /* Parallel region information. Every parallel and workshare
260 directive is enclosed between two markers, the OMP_* directive
261 and a corresponding OMP_RETURN statement. */
263 struct omp_region
265 /* The enclosing region. */
266 struct omp_region *outer;
268 /* First child region. */
269 struct omp_region *inner;
271 /* Next peer region. */
272 struct omp_region *next;
274 /* Block containing the omp directive as its last stmt. */
275 basic_block entry;
277 /* Block containing the OMP_RETURN as its last stmt. */
278 basic_block exit;
280 /* Block containing the OMP_CONTINUE as its last stmt. */
281 basic_block cont;
283 /* If this is a combined parallel+workshare region, this is a list
284 of additional arguments needed by the combined parallel+workshare
285 library call. */
286 vec<tree, va_gc> *ws_args;
288 /* The code for the omp directive of this region. */
289 enum gimple_code type;
291 /* Schedule kind, only used for OMP_FOR type regions. */
292 enum omp_clause_schedule_kind sched_kind;
294 /* True if this is a combined parallel+workshare region. */
295 bool is_combined_parallel;
298 extern struct omp_region *root_omp_region;
299 extern struct omp_region *new_omp_region (basic_block, enum gimple_code,
300 struct omp_region *);
301 extern void free_omp_regions (void);
302 void omp_expand_local (basic_block);
303 tree copy_var_decl (tree, tree, tree);
305 /*---------------------------------------------------------------------------
306 Function prototypes
307 ---------------------------------------------------------------------------*/
308 /* In tree-cfg.c */
310 /* Location to track pending stmt for edge insertion. */
311 #define PENDING_STMT(e) ((e)->insns.g)
313 extern void delete_tree_cfg_annotations (void);
314 extern bool stmt_ends_bb_p (gimple);
315 extern bool is_ctrl_stmt (gimple);
316 extern bool is_ctrl_altering_stmt (gimple);
317 extern bool simple_goto_p (gimple);
318 extern bool stmt_can_make_abnormal_goto (gimple);
319 extern basic_block single_noncomplex_succ (basic_block bb);
320 extern void gimple_dump_bb (FILE *, basic_block, int, int);
321 extern void gimple_debug_bb (basic_block);
322 extern basic_block gimple_debug_bb_n (int);
323 extern void gimple_dump_cfg (FILE *, int);
324 extern void gimple_debug_cfg (int);
325 extern void dump_cfg_stats (FILE *);
326 extern void dot_cfg (void);
327 extern void debug_cfg_stats (void);
328 extern void debug_loops (int);
329 extern void debug_loop (struct loop *, int);
330 extern void debug (struct loop &ref);
331 extern void debug (struct loop *ptr);
332 extern void debug_verbose (struct loop &ref);
333 extern void debug_verbose (struct loop *ptr);
334 extern void debug_loop_num (unsigned, int);
335 extern void print_loops (FILE *, int);
336 extern void print_loops_bb (FILE *, basic_block, int, int);
337 extern void cleanup_dead_labels (void);
338 extern void group_case_labels_stmt (gimple);
339 extern void group_case_labels (void);
340 extern gimple first_stmt (basic_block);
341 extern gimple last_stmt (basic_block);
342 extern gimple last_and_only_stmt (basic_block);
343 extern edge find_taken_edge (basic_block, tree);
344 extern basic_block label_to_block_fn (struct function *, tree);
345 #define label_to_block(t) (label_to_block_fn (cfun, t))
346 extern void notice_special_calls (gimple);
347 extern void clear_special_calls (void);
348 extern void verify_gimple_in_seq (gimple_seq);
349 extern void verify_gimple_in_cfg (struct function *);
350 extern tree gimple_block_label (basic_block);
351 extern void extract_true_false_edges_from_block (basic_block, edge *, edge *);
352 extern bool gimple_duplicate_sese_region (edge, edge, basic_block *, unsigned,
353 basic_block *, bool);
354 extern bool gimple_duplicate_sese_tail (edge, edge, basic_block *, unsigned,
355 basic_block *);
356 extern void gather_blocks_in_sese_region (basic_block entry, basic_block exit,
357 vec<basic_block> *bbs_p);
358 extern void add_phi_args_after_copy_bb (basic_block);
359 extern void add_phi_args_after_copy (basic_block *, unsigned, edge);
360 extern bool gimple_purge_dead_eh_edges (basic_block);
361 extern bool gimple_purge_all_dead_eh_edges (const_bitmap);
362 extern bool gimple_purge_dead_abnormal_call_edges (basic_block);
363 extern bool gimple_purge_all_dead_abnormal_call_edges (const_bitmap);
364 extern tree gimplify_build1 (gimple_stmt_iterator *, enum tree_code,
365 tree, tree);
366 extern tree gimplify_build2 (gimple_stmt_iterator *, enum tree_code,
367 tree, tree, tree);
368 extern tree gimplify_build3 (gimple_stmt_iterator *, enum tree_code,
369 tree, tree, tree, tree);
370 extern void init_empty_tree_cfg (void);
371 extern void init_empty_tree_cfg_for_function (struct function *);
372 extern void fold_cond_expr_cond (void);
373 extern void make_abnormal_goto_edges (basic_block, bool);
374 extern void replace_uses_by (tree, tree);
375 extern void start_recording_case_labels (void);
376 extern void end_recording_case_labels (void);
377 extern basic_block move_sese_region_to_fn (struct function *, basic_block,
378 basic_block, tree);
379 void remove_edge_and_dominated_blocks (edge);
380 bool tree_node_can_be_shared (tree);
382 /* In tree-cfgcleanup.c */
383 extern bitmap cfgcleanup_altered_bbs;
384 extern bool cleanup_tree_cfg (void);
386 /* In tree-pretty-print.c. */
387 extern void dump_generic_bb (FILE *, basic_block, int, int);
388 extern int op_code_prio (enum tree_code);
389 extern int op_prio (const_tree);
390 extern const char *op_symbol_code (enum tree_code);
392 /* In tree-dfa.c */
393 extern void renumber_gimple_stmt_uids (void);
394 extern void renumber_gimple_stmt_uids_in_blocks (basic_block *, int);
395 extern void dump_dfa_stats (FILE *);
396 extern void debug_dfa_stats (void);
397 extern void dump_variable (FILE *, tree);
398 extern void debug_variable (tree);
399 extern void set_ssa_default_def (struct function *, tree, tree);
400 extern tree ssa_default_def (struct function *, tree);
401 extern tree get_or_create_ssa_default_def (struct function *, tree);
402 extern bool stmt_references_abnormal_ssa_name (gimple);
403 extern tree get_addr_base_and_unit_offset (tree, HOST_WIDE_INT *);
404 extern void dump_enumerated_decls (FILE *, int);
406 /* In tree-phinodes.c */
407 extern void reserve_phi_args_for_new_edge (basic_block);
408 extern void add_phi_node_to_bb (gimple phi, basic_block bb);
409 extern gimple create_phi_node (tree, basic_block);
410 extern void add_phi_arg (gimple, tree, edge, source_location);
411 extern void remove_phi_args (edge);
412 extern void remove_phi_node (gimple_stmt_iterator *, bool);
413 extern void remove_phi_nodes (basic_block);
414 extern void release_phi_node (gimple);
415 extern void phinodes_print_statistics (void);
417 /* In gimple-low.c */
418 extern void record_vars_into (tree, tree);
419 extern void record_vars (tree);
420 extern bool gimple_seq_may_fallthru (gimple_seq);
421 extern bool gimple_stmt_may_fallthru (gimple);
422 extern bool gimple_check_call_matching_types (gimple, tree, bool);
424 /* In tree-ssa-uninit.c */
425 extern bool ssa_undefined_value_p (tree);
427 /* In tree-into-ssa.c */
428 void update_ssa (unsigned);
429 void delete_update_ssa (void);
430 tree create_new_def_for (tree, gimple, def_operand_p);
431 bool need_ssa_update_p (struct function *);
432 bool name_registered_for_update_p (tree);
433 void release_ssa_name_after_update_ssa (tree);
434 void mark_virtual_operands_for_renaming (struct function *);
435 tree get_current_def (tree);
436 void set_current_def (tree, tree);
438 /* In tree-ssa-ccp.c */
439 tree fold_const_aggregate_ref (tree);
440 tree gimple_fold_stmt_to_constant (gimple, tree (*)(tree));
442 /* In tree-ssa-dom.c */
443 extern void dump_dominator_optimization_stats (FILE *);
444 extern void debug_dominator_optimization_stats (void);
445 int loop_depth_of_name (tree);
446 tree degenerate_phi_result (gimple);
447 bool simple_iv_increment_p (gimple);
449 /* In tree-ssa-copy.c */
450 extern void propagate_value (use_operand_p, tree);
451 extern void propagate_tree_value (tree *, tree);
452 extern void propagate_tree_value_into_stmt (gimple_stmt_iterator *, tree);
453 extern void replace_exp (use_operand_p, tree);
454 extern bool may_propagate_copy (tree, tree);
455 extern bool may_propagate_copy_into_stmt (gimple, tree);
456 extern bool may_propagate_copy_into_asm (tree);
458 /* In tree-ssa-loop-ch.c */
459 bool do_while_loop_p (struct loop *);
461 /* Affine iv. */
463 typedef struct
465 /* Iv = BASE + STEP * i. */
466 tree base, step;
468 /* True if this iv does not overflow. */
469 bool no_overflow;
470 } affine_iv;
472 /* Description of number of iterations of a loop. All the expressions inside
473 the structure can be evaluated at the end of the loop's preheader
474 (and due to ssa form, also anywhere inside the body of the loop). */
476 struct tree_niter_desc
478 tree assumptions; /* The boolean expression. If this expression evaluates
479 to false, then the other fields in this structure
480 should not be used; there is no guarantee that they
481 will be correct. */
482 tree may_be_zero; /* The boolean expression. If it evaluates to true,
483 the loop will exit in the first iteration (i.e.
484 its latch will not be executed), even if the niter
485 field says otherwise. */
486 tree niter; /* The expression giving the number of iterations of
487 a loop (provided that assumptions == true and
488 may_be_zero == false), more precisely the number
489 of executions of the latch of the loop. */
490 double_int max; /* The upper bound on the number of iterations of
491 the loop. */
493 /* The simplified shape of the exit condition. The loop exits if
494 CONTROL CMP BOUND is false, where CMP is one of NE_EXPR,
495 LT_EXPR, or GT_EXPR, and step of CONTROL is positive if CMP is
496 LE_EXPR and negative if CMP is GE_EXPR. This information is used
497 by loop unrolling. */
498 affine_iv control;
499 tree bound;
500 enum tree_code cmp;
503 /* In tree-ssa-phiopt.c */
504 bool empty_block_p (basic_block);
505 basic_block *blocks_in_phiopt_order (void);
506 bool nonfreeing_call_p (gimple);
508 /* In tree-ssa-loop*.c */
510 unsigned int tree_ssa_lim (void);
511 unsigned int tree_ssa_unswitch_loops (void);
512 unsigned int canonicalize_induction_variables (void);
513 unsigned int tree_unroll_loops_completely (bool, bool);
514 unsigned int tree_ssa_prefetch_arrays (void);
515 void tree_ssa_iv_optimize (void);
516 unsigned tree_predictive_commoning (void);
517 tree canonicalize_loop_ivs (struct loop *, tree *, bool);
518 bool parallelize_loops (void);
520 bool loop_only_exit_p (const struct loop *, const_edge);
521 bool number_of_iterations_exit (struct loop *, edge,
522 struct tree_niter_desc *niter, bool,
523 bool every_iteration = true);
524 tree find_loop_niter (struct loop *, edge *);
525 tree loop_niter_by_eval (struct loop *, edge);
526 tree find_loop_niter_by_eval (struct loop *, edge *);
527 void estimate_numbers_of_iterations (void);
528 bool scev_probably_wraps_p (tree, tree, gimple, struct loop *, bool);
529 bool convert_affine_scev (struct loop *, tree, tree *, tree *, gimple, bool);
531 bool nowrap_type_p (tree);
532 enum ev_direction {EV_DIR_GROWS, EV_DIR_DECREASES, EV_DIR_UNKNOWN};
533 enum ev_direction scev_direction (const_tree);
535 void free_numbers_of_iterations_estimates (void);
536 void free_numbers_of_iterations_estimates_loop (struct loop *);
537 void rewrite_into_loop_closed_ssa (bitmap, unsigned);
538 void verify_loop_closed_ssa (bool);
539 bool for_each_index (tree *, bool (*) (tree, tree *, void *), void *);
540 void create_iv (tree, tree, tree, struct loop *, gimple_stmt_iterator *, bool,
541 tree *, tree *);
542 basic_block split_loop_exit_edge (edge);
543 void standard_iv_increment_position (struct loop *, gimple_stmt_iterator *,
544 bool *);
545 basic_block ip_end_pos (struct loop *);
546 basic_block ip_normal_pos (struct loop *);
547 bool gimple_duplicate_loop_to_header_edge (struct loop *, edge,
548 unsigned int, sbitmap,
549 edge, vec<edge> *,
550 int);
551 struct loop *slpeel_tree_duplicate_loop_to_edge_cfg (struct loop *, edge);
552 tree expand_simple_operations (tree);
553 void substitute_in_loop_info (struct loop *, tree, tree);
554 edge single_dom_exit (struct loop *);
555 bool can_unroll_loop_p (struct loop *loop, unsigned factor,
556 struct tree_niter_desc *niter);
557 void tree_unroll_loop (struct loop *, unsigned,
558 edge, struct tree_niter_desc *);
559 typedef void (*transform_callback)(struct loop *, void *);
560 void tree_transform_and_unroll_loop (struct loop *, unsigned,
561 edge, struct tree_niter_desc *,
562 transform_callback, void *);
563 bool contains_abnormal_ssa_name_p (tree);
564 bool stmt_dominates_stmt_p (gimple, gimple);
566 /* In tree-ssa-dce.c */
567 void mark_virtual_operand_for_renaming (tree);
568 void mark_virtual_phi_result_for_renaming (gimple);
570 /* In tree-ssa-threadedge.c */
571 extern void threadedge_initialize_values (void);
572 extern void threadedge_finalize_values (void);
573 extern vec<tree> ssa_name_values;
574 #define SSA_NAME_VALUE(x) \
575 (SSA_NAME_VERSION(x) < ssa_name_values.length () \
576 ? ssa_name_values[SSA_NAME_VERSION(x)] \
577 : NULL_TREE)
578 extern void set_ssa_name_value (tree, tree);
579 extern bool potentially_threadable_block (basic_block);
580 extern void thread_across_edge (gimple, edge, bool,
581 vec<tree> *, tree (*) (gimple, gimple));
582 extern void propagate_threaded_block_debug_into (basic_block, basic_block);
584 /* In tree-ssa-loop-im.c */
585 /* The possibilities of statement movement. */
587 enum move_pos
589 MOVE_IMPOSSIBLE, /* No movement -- side effect expression. */
590 MOVE_PRESERVE_EXECUTION, /* Must not cause the non-executed statement
591 become executed -- memory accesses, ... */
592 MOVE_POSSIBLE /* Unlimited movement. */
594 extern enum move_pos movement_possibility (gimple);
595 char *get_lsm_tmp_name (tree, unsigned);
597 /* In tree-flow-inline.h */
598 static inline bool unmodifiable_var_p (const_tree);
599 static inline bool ref_contains_array_ref (const_tree);
601 /* In tree-eh.c */
602 extern void make_eh_edges (gimple);
603 extern bool make_eh_dispatch_edges (gimple);
604 extern edge redirect_eh_edge (edge, basic_block);
605 extern void redirect_eh_dispatch_edge (gimple, edge, basic_block);
606 extern bool stmt_could_throw_p (gimple);
607 extern bool stmt_can_throw_internal (gimple);
608 extern bool stmt_can_throw_external (gimple);
609 extern void add_stmt_to_eh_lp_fn (struct function *, gimple, int);
610 extern void add_stmt_to_eh_lp (gimple, int);
611 extern bool remove_stmt_from_eh_lp (gimple);
612 extern bool remove_stmt_from_eh_lp_fn (struct function *, gimple);
613 extern int lookup_stmt_eh_lp_fn (struct function *, gimple);
614 extern int lookup_stmt_eh_lp (gimple);
615 extern bool maybe_clean_eh_stmt_fn (struct function *, gimple);
616 extern bool maybe_clean_eh_stmt (gimple);
617 extern bool maybe_clean_or_replace_eh_stmt (gimple, gimple);
618 extern bool maybe_duplicate_eh_stmt_fn (struct function *, gimple,
619 struct function *, gimple,
620 struct pointer_map_t *, int);
621 extern bool maybe_duplicate_eh_stmt (gimple, gimple);
622 extern bool verify_eh_edges (gimple);
623 extern bool verify_eh_dispatch_edge (gimple);
624 extern void maybe_remove_unreachable_handlers (void);
626 /* In tree-ssa-pre.c */
627 void debug_value_expressions (unsigned int);
629 /* In tree-loop-linear.c */
630 extern void linear_transform_loops (void);
631 extern unsigned perfect_loop_nest_depth (struct loop *);
633 /* In graphite.c */
634 extern void graphite_transform_loops (void);
636 /* In tree-data-ref.c */
637 extern void tree_check_data_deps (void);
639 /* In tree-ssa-loop-ivopts.c */
640 bool expr_invariant_in_loop_p (struct loop *, tree);
641 bool stmt_invariant_in_loop_p (struct loop *, gimple);
642 struct loop *outermost_invariant_loop_for_expr (struct loop *, tree);
643 bool multiplier_allowed_in_address_p (HOST_WIDE_INT, enum machine_mode,
644 addr_space_t);
645 bool may_be_nonaddressable_p (tree expr);
647 /* In tree-ssa-threadupdate.c. */
648 extern bool thread_through_all_blocks (bool);
649 extern void register_jump_thread (vec<edge>, bool);
651 /* In gimplify.c */
652 tree force_gimple_operand_1 (tree, gimple_seq *, gimple_predicate, tree);
653 tree force_gimple_operand (tree, gimple_seq *, bool, tree);
654 tree force_gimple_operand_gsi_1 (gimple_stmt_iterator *, tree,
655 gimple_predicate, tree,
656 bool, enum gsi_iterator_update);
657 tree force_gimple_operand_gsi (gimple_stmt_iterator *, tree, bool, tree,
658 bool, enum gsi_iterator_update);
659 tree gimple_fold_indirect_ref (tree);
661 /* In tree-ssa-live.c */
662 extern void remove_unused_locals (void);
663 extern void dump_scope_blocks (FILE *, int);
664 extern void debug_scope_blocks (int);
665 extern void debug_scope_block (tree, int);
667 /* In tree-ssa-address.c */
669 /* Description of a memory address. */
671 struct mem_address
673 tree symbol, base, index, step, offset;
676 struct affine_tree_combination;
677 tree create_mem_ref (gimple_stmt_iterator *, tree,
678 struct affine_tree_combination *, tree, tree, tree, bool);
679 rtx addr_for_mem_ref (struct mem_address *, addr_space_t, bool);
680 void get_address_description (tree, struct mem_address *);
681 tree maybe_fold_tmr (tree);
683 unsigned int execute_fixup_cfg (void);
684 bool fixup_noreturn_call (gimple stmt);
686 /* In ipa-pure-const.c */
687 void warn_function_noreturn (tree);
689 /* In tree-ssa-ter.c */
690 bool stmt_is_replaceable_p (gimple);
692 /* In tree-parloops.c */
693 bool parallelized_function_p (tree);
695 #include "tree-flow-inline.h"
697 void swap_tree_operands (gimple, tree *, tree *);
699 #endif /* _TREE_FLOW_H */