poly_int: emit_group_load/store
[official-gcc.git] / gcc / c-family / c-semantics.c
blobcd872d8ac740592f1201096c3acd7a3bef36e9a6
1 /* This file contains subroutine used by the C front-end to construct GENERIC.
2 Copyright (C) 2000-2017 Free Software Foundation, Inc.
3 Written by Benjamin Chelf (chelf@codesourcery.com).
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 3, or (at your option) any later
10 version.
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15 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 #include "config.h"
22 #include "system.h"
23 #include "coretypes.h"
24 #include "c-common.h"
25 #include "tree-iterator.h"
27 /* Create an empty statement tree rooted at T. */
29 tree
30 push_stmt_list (void)
32 tree t;
33 t = alloc_stmt_list ();
34 vec_safe_push (stmt_list_stack, t);
35 return t;
38 /* Finish the statement tree rooted at T. */
40 tree
41 pop_stmt_list (tree t)
43 tree u = NULL_TREE;
45 /* Pop statement lists until we reach the target level. The extra
46 nestings will be due to outstanding cleanups. */
47 while (1)
49 u = stmt_list_stack->pop ();
50 if (!stmt_list_stack->is_empty ())
52 tree x = stmt_list_stack->last ();
53 STATEMENT_LIST_HAS_LABEL (x) |= STATEMENT_LIST_HAS_LABEL (u);
55 if (t == u)
56 break;
59 gcc_assert (u != NULL_TREE);
61 /* If the statement list is completely empty, just return it. This is
62 just as good small as build_empty_stmt, with the advantage that
63 statement lists are merged when they appended to one another. So
64 using the STATEMENT_LIST avoids pathological buildup of EMPTY_STMT_P
65 statements. */
66 if (TREE_SIDE_EFFECTS (t))
68 tree_stmt_iterator i = tsi_start (t);
70 /* If the statement list contained exactly one statement, then
71 extract it immediately. */
72 if (tsi_one_before_end_p (i))
74 u = tsi_stmt (i);
75 tsi_delink (&i);
76 free_stmt_list (t);
77 t = u;
79 /* If the statement list contained a debug begin stmt and a
80 statement list, move the debug begin stmt into the statement
81 list and return it. */
82 else if (!tsi_end_p (i)
83 && TREE_CODE (tsi_stmt (i)) == DEBUG_BEGIN_STMT)
85 u = tsi_stmt (i);
86 tsi_next (&i);
87 if (tsi_one_before_end_p (i)
88 && TREE_CODE (tsi_stmt (i)) == STATEMENT_LIST)
90 tree l = tsi_stmt (i);
91 tsi_prev (&i);
92 tsi_delink (&i);
93 tsi_delink (&i);
94 i = tsi_start (l);
95 free_stmt_list (t);
96 t = l;
97 tsi_link_before (&i, u, TSI_SAME_STMT);
102 return t;
105 /* Build a generic statement based on the given type of node and
106 arguments. Similar to `build_nt', except that we set
107 EXPR_LOCATION to LOC. */
108 /* ??? This should be obsolete with the lineno_stmt productions
109 in the grammar. */
111 tree
112 build_stmt (location_t loc, enum tree_code code, ...)
114 tree ret;
115 int length, i;
116 va_list p;
117 bool side_effects;
119 /* This function cannot be used to construct variably-sized nodes. */
120 gcc_assert (TREE_CODE_CLASS (code) != tcc_vl_exp);
122 va_start (p, code);
124 ret = make_node (code);
125 TREE_TYPE (ret) = void_type_node;
126 length = TREE_CODE_LENGTH (code);
127 SET_EXPR_LOCATION (ret, loc);
129 /* TREE_SIDE_EFFECTS will already be set for statements with
130 implicit side effects. Here we make sure it is set for other
131 expressions by checking whether the parameters have side
132 effects. */
134 side_effects = false;
135 for (i = 0; i < length; i++)
137 tree t = va_arg (p, tree);
138 if (t && !TYPE_P (t))
139 side_effects |= TREE_SIDE_EFFECTS (t);
140 TREE_OPERAND (ret, i) = t;
143 TREE_SIDE_EFFECTS (ret) |= side_effects;
145 va_end (p);
146 return ret;
149 /* Build a REALPART_EXPR or IMAGPART_EXPR, according to CODE, from ARG. */
151 tree
152 build_real_imag_expr (location_t location, enum tree_code code, tree arg)
154 tree ret;
155 tree arg_type = TREE_TYPE (arg);
157 gcc_assert (code == REALPART_EXPR || code == IMAGPART_EXPR);
159 if (TREE_CODE (arg_type) == COMPLEX_TYPE)
161 ret = build1 (code, TREE_TYPE (TREE_TYPE (arg)), arg);
162 SET_EXPR_LOCATION (ret, location);
164 else if (INTEGRAL_TYPE_P (arg_type) || SCALAR_FLOAT_TYPE_P (arg_type))
166 ret = (code == REALPART_EXPR
167 ? arg
168 : omit_one_operand_loc (location, arg_type,
169 integer_zero_node, arg));
171 else
173 error_at (location, "wrong type argument to %s",
174 code == REALPART_EXPR ? "__real" : "__imag");
175 ret = error_mark_node;
178 return ret;