]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/gimplify.h
Fix shell scripting.
[thirdparty/gcc.git] / gcc / gimplify.h
CommitLineData
45b0be94 1/* Header file for gimplification.
23a5b65a 2 Copyright (C) 2013-2014 Free Software Foundation, Inc.
45b0be94
AM
3
4This file is part of GCC.
5
6GCC is free software; you can redistribute it and/or modify it under
7the terms of the GNU General Public License as published by the Free
8Software Foundation; either version 3, or (at your option) any later
9version.
10
11GCC is distributed in the hope that it will be useful, but WITHOUT ANY
12WARRANTY; without even the implied warranty of MERCHANTABILITY or
13FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14 for more details.
15
16You should have received a copy of the GNU General Public License
17along with GCC; see the file COPYING3. If not see
18<http://www.gnu.org/licenses/>. */
19
20#ifndef GCC_GIMPLIFY_H
21#define GCC_GIMPLIFY_H
22
45b0be94
AM
23/* Validation of GIMPLE expressions. Note that these predicates only check
24 the basic form of the expression, they don't recurse to make sure that
25 underlying nodes are also of the right form. */
26typedef bool (*gimple_predicate)(tree);
27
28/* FIXME we should deduce this from the predicate. */
29enum fallback {
30 fb_none = 0, /* Do not generate a temporary. */
31
32 fb_rvalue = 1, /* Generate an rvalue to hold the result of a
33 gimplified expression. */
34
35 fb_lvalue = 2, /* Generate an lvalue to hold the result of a
36 gimplified expression. */
37
38 fb_mayfail = 4, /* Gimplification may fail. Error issued
39 afterwards. */
40 fb_either= fb_rvalue | fb_lvalue
41};
42
43typedef int fallback_t;
44
45enum gimplify_status {
46 GS_ERROR = -2, /* Something Bad Seen. */
47 GS_UNHANDLED = -1, /* A langhook result for "I dunno". */
48 GS_OK = 0, /* We did something, maybe more to do. */
49 GS_ALL_DONE = 1 /* The expression is fully gimplified. */
50};
18f429e2 51
45852dcc
AM
52extern void free_gimplify_stack (void);
53extern void push_gimplify_context (bool in_ssa = false,
54 bool rhs_cond_ok = false);
45b0be94
AM
55extern void pop_gimplify_context (gimple);
56extern gimple gimple_current_bind_expr (void);
57extern vec<gimple> gimple_bind_expr_stack (void);
58extern void gimplify_and_add (tree, gimple_seq *);
59extern tree get_formal_tmp_var (tree, gimple_seq *);
60extern tree get_initialized_tmp_var (tree, gimple_seq *, gimple_seq *);
61extern void declare_vars (tree, gimple, bool);
62extern void gimple_add_tmp_var (tree);
63extern tree unshare_expr (tree);
64extern tree unshare_expr_without_location (tree);
65extern tree voidify_wrapper_expr (tree, tree);
66extern tree build_and_jump (tree *);
67extern enum gimplify_status gimplify_self_mod_expr (tree *, gimple_seq *,
68 gimple_seq *, bool, tree);
69extern tree gimple_boolify (tree);
18f429e2 70extern gimple_predicate rhs_predicate_for (tree);
45b0be94
AM
71extern bool gimplify_stmt (tree *, gimple_seq *);
72extern void omp_firstprivatize_variable (struct gimplify_omp_ctx *, tree);
73extern enum gimplify_status gimplify_expr (tree *, gimple_seq *, gimple_seq *,
74 bool (*) (tree), fallback_t);
75
76extern void gimplify_type_sizes (tree, gimple_seq *);
77extern void gimplify_one_sizepos (tree *, gimple_seq *);
78extern gimple gimplify_body (tree, bool);
79extern void gimplify_function_tree (tree);
45b0be94
AM
80extern enum gimplify_status gimplify_va_arg_expr (tree *, gimple_seq *,
81 gimple_seq *);
82gimple gimplify_assign (tree, tree, gimple_seq *);
83
18f429e2
AM
84/* Return true if gimplify_one_sizepos doesn't need to gimplify
85 expr (when in TYPE_SIZE{,_UNIT} and similar type/decl size/bitsize
86 fields). */
87
88static inline bool
89is_gimple_sizepos (tree expr)
90{
91 /* gimplify_one_sizepos doesn't need to do anything if the value isn't there,
92 is constant, or contains A PLACEHOLDER_EXPR. We also don't want to do
93 anything if it's already a VAR_DECL. If it's a VAR_DECL from another
94 function, the gimplifier will want to replace it with a new variable,
95 but that will cause problems if this type is from outside the function.
96 It's OK to have that here. */
97 return (expr == NULL_TREE
98 || TREE_CONSTANT (expr)
99 || TREE_CODE (expr) == VAR_DECL
100 || CONTAINS_PLACEHOLDER_P (expr));
101}
102
45b0be94 103#endif /* GCC_GIMPLIFY_H */