Add C++11 header <cuchar>.
[official-gcc.git] / gcc / gimple-expr.h
blob3d1c89ff371356e88007e315271a541e04455b51
1 /* Header file for gimple decl, type and expressions.
2 Copyright (C) 2013-2015 Free Software Foundation, Inc.
4 This file is part of GCC.
6 GCC is free software; you can redistribute it and/or modify it under
7 the terms of the GNU General Public License as published by the Free
8 Software Foundation; either version 3, or (at your option) any later
9 version.
11 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
12 WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14 for more details.
16 You should have received a copy of the GNU General Public License
17 along with GCC; see the file COPYING3. If not see
18 <http://www.gnu.org/licenses/>. */
20 #ifndef GCC_GIMPLE_EXPR_H
21 #define GCC_GIMPLE_EXPR_H
23 extern bool useless_type_conversion_p (tree, tree);
26 extern void gimple_set_body (tree, gimple_seq);
27 extern gimple_seq gimple_body (tree);
28 extern bool gimple_has_body_p (tree);
29 extern const char *gimple_decl_printable_name (tree, int);
30 extern tree copy_var_decl (tree, tree, tree);
31 extern tree create_tmp_var_name (const char *);
32 extern tree create_tmp_var_raw (tree, const char * = NULL);
33 extern tree create_tmp_var (tree, const char * = NULL);
34 extern tree create_tmp_reg (tree, const char * = NULL);
35 extern tree create_tmp_reg_fn (struct function *, tree, const char *);
38 extern void extract_ops_from_tree_1 (tree, enum tree_code *, tree *, tree *,
39 tree *);
40 extern void gimple_cond_get_ops_from_tree (tree, enum tree_code *, tree *,
41 tree *);
42 extern bool is_gimple_lvalue (tree);
43 extern bool is_gimple_condexpr (tree);
44 extern bool is_gimple_address (const_tree);
45 extern bool is_gimple_invariant_address (const_tree);
46 extern bool is_gimple_ip_invariant_address (const_tree);
47 extern bool is_gimple_min_invariant (const_tree);
48 extern bool is_gimple_ip_invariant (const_tree);
49 extern bool is_gimple_reg (tree);
50 extern bool is_gimple_val (tree);
51 extern bool is_gimple_asm_val (tree);
52 extern bool is_gimple_min_lval (tree);
53 extern bool is_gimple_call_addr (tree);
54 extern bool is_gimple_mem_ref_addr (tree);
55 extern void mark_addressable (tree);
56 extern bool is_gimple_reg_rhs (tree);
58 /* Return true if a conversion from either type of TYPE1 and TYPE2
59 to the other is not required. Otherwise return false. */
61 static inline bool
62 types_compatible_p (tree type1, tree type2)
64 return (type1 == type2
65 || (useless_type_conversion_p (type1, type2)
66 && useless_type_conversion_p (type2, type1)));
69 /* Return true if TYPE is a suitable type for a scalar register variable. */
71 static inline bool
72 is_gimple_reg_type (tree type)
74 return !AGGREGATE_TYPE_P (type);
77 /* Return true if T is a variable. */
79 static inline bool
80 is_gimple_variable (tree t)
82 return (TREE_CODE (t) == VAR_DECL
83 || TREE_CODE (t) == PARM_DECL
84 || TREE_CODE (t) == RESULT_DECL
85 || TREE_CODE (t) == SSA_NAME);
88 /* Return true if T is a GIMPLE identifier (something with an address). */
90 static inline bool
91 is_gimple_id (tree t)
93 return (is_gimple_variable (t)
94 || TREE_CODE (t) == FUNCTION_DECL
95 || TREE_CODE (t) == LABEL_DECL
96 || TREE_CODE (t) == CONST_DECL
97 /* Allow string constants, since they are addressable. */
98 || TREE_CODE (t) == STRING_CST);
101 /* Return true if OP, an SSA name or a DECL is a virtual operand. */
103 static inline bool
104 virtual_operand_p (tree op)
106 if (TREE_CODE (op) == SSA_NAME)
108 op = SSA_NAME_VAR (op);
109 if (!op)
110 return false;
113 if (TREE_CODE (op) == VAR_DECL)
114 return VAR_DECL_IS_VIRTUAL_OPERAND (op);
116 return false;
119 /* Return true if T is something whose address can be taken. */
121 static inline bool
122 is_gimple_addressable (tree t)
124 return (is_gimple_id (t) || handled_component_p (t)
125 || TREE_CODE (t) == MEM_REF);
128 /* Return true if T is a valid gimple constant. */
130 static inline bool
131 is_gimple_constant (const_tree t)
133 switch (TREE_CODE (t))
135 case INTEGER_CST:
136 case REAL_CST:
137 case FIXED_CST:
138 case COMPLEX_CST:
139 case VECTOR_CST:
140 case STRING_CST:
141 return true;
143 default:
144 return false;
148 /* A wrapper around extract_ops_from_tree_1, for callers which expect
149 to see only a maximum of two operands. */
151 static inline void
152 extract_ops_from_tree (tree expr, enum tree_code *code, tree *op0,
153 tree *op1)
155 tree op2;
156 extract_ops_from_tree_1 (expr, code, op0, op1, &op2);
157 gcc_assert (op2 == NULL_TREE);
160 /* Given a valid GIMPLE_CALL function address return the FUNCTION_DECL
161 associated with the callee if known. Otherwise return NULL_TREE. */
163 static inline tree
164 gimple_call_addr_fndecl (const_tree fn)
166 if (fn && TREE_CODE (fn) == ADDR_EXPR)
168 tree fndecl = TREE_OPERAND (fn, 0);
169 if (TREE_CODE (fndecl) == MEM_REF
170 && TREE_CODE (TREE_OPERAND (fndecl, 0)) == ADDR_EXPR
171 && integer_zerop (TREE_OPERAND (fndecl, 1)))
172 fndecl = TREE_OPERAND (TREE_OPERAND (fndecl, 0), 0);
173 if (TREE_CODE (fndecl) == FUNCTION_DECL)
174 return fndecl;
176 return NULL_TREE;
179 #endif /* GCC_GIMPLE_EXPR_H */