Branch data Line data Source code
1 : : /* Gimple decl, type, and expression support functions.
2 : :
3 : : Copyright (C) 2007-2025 Free Software Foundation, Inc.
4 : : Contributed by Aldy Hernandez <aldyh@redhat.com>
5 : :
6 : : This file is part of GCC.
7 : :
8 : : GCC is free software; you can redistribute it and/or modify it under
9 : : the terms of the GNU General Public License as published by the Free
10 : : Software Foundation; either version 3, or (at your option) any later
11 : : version.
12 : :
13 : : GCC is distributed in the hope that it will be useful, but WITHOUT ANY
14 : : WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 : : FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16 : : for more details.
17 : :
18 : : You should have received a copy of the GNU General Public License
19 : : along with GCC; see the file COPYING3. If not see
20 : : <http://www.gnu.org/licenses/>. */
21 : :
22 : : #include "config.h"
23 : : #include "system.h"
24 : : #include "coretypes.h"
25 : : #include "backend.h"
26 : : #include "tree.h"
27 : : #include "gimple.h"
28 : : #include "stringpool.h"
29 : : #include "gimple-ssa.h"
30 : : #include "fold-const.h"
31 : : #include "tree-eh.h"
32 : : #include "gimplify.h"
33 : : #include "stor-layout.h"
34 : : #include "demangle.h"
35 : : #include "hash-set.h"
36 : : #include "rtl.h"
37 : : #include "tree-pass.h"
38 : : #include "stringpool.h"
39 : : #include "attribs.h"
40 : : #include "target.h"
41 : :
42 : : /* ----- Type related ----- */
43 : :
44 : : /* Return true if the conversion from INNER_TYPE to OUTER_TYPE is a
45 : : useless type conversion, otherwise return false.
46 : :
47 : : This function implicitly defines the middle-end type system. With
48 : : the notion of 'a < b' meaning that useless_type_conversion_p (a, b)
49 : : holds and 'a > b' meaning that useless_type_conversion_p (b, a) holds,
50 : : the following invariants shall be fulfilled:
51 : :
52 : : 1) useless_type_conversion_p is transitive.
53 : : If a < b and b < c then a < c.
54 : :
55 : : 2) useless_type_conversion_p is not symmetric.
56 : : From a < b does not follow a > b.
57 : :
58 : : 3) Types define the available set of operations applicable to values.
59 : : A type conversion is useless if the operations for the target type
60 : : is a subset of the operations for the source type. For example
61 : : casts to void* are useless, casts from void* are not (void* can't
62 : : be dereferenced or offsetted, but copied, hence its set of operations
63 : : is a strict subset of that of all other data pointer types). Casts
64 : : to const T* are useless (can't be written to), casts from const T*
65 : : to T* are not. */
66 : :
67 : : bool
68 : 11843938117 : useless_type_conversion_p (tree outer_type, tree inner_type)
69 : : {
70 : : /* Do the following before stripping toplevel qualifiers. */
71 : 11844468128 : if (POINTER_TYPE_P (inner_type)
72 : 2957161597 : && POINTER_TYPE_P (outer_type))
73 : : {
74 : : /* Do not lose casts between pointers to different address spaces. */
75 : 2928293333 : if (TYPE_ADDR_SPACE (TREE_TYPE (outer_type))
76 : 2928293333 : != TYPE_ADDR_SPACE (TREE_TYPE (inner_type)))
77 : : return false;
78 : : /* Do not lose casts to function pointer types. */
79 : 5781066682 : if (FUNC_OR_METHOD_TYPE_P (TREE_TYPE (outer_type))
80 : 2935808309 : && !FUNC_OR_METHOD_TYPE_P (TREE_TYPE (inner_type)))
81 : : return false;
82 : : }
83 : :
84 : : /* From now on qualifiers on value types do not matter. */
85 : 11843083946 : inner_type = TYPE_MAIN_VARIANT (inner_type);
86 : 11843083946 : outer_type = TYPE_MAIN_VARIANT (outer_type);
87 : :
88 : 11843083946 : if (inner_type == outer_type)
89 : : return true;
90 : :
91 : : /* Changes in machine mode are never useless conversions because the RTL
92 : : middle-end expects explicit conversions between modes. */
93 : 1033039271 : if (TYPE_MODE (inner_type) != TYPE_MODE (outer_type))
94 : : return false;
95 : :
96 : : /* If both the inner and outer types are integral types, then the
97 : : conversion is not necessary if they have the same mode and
98 : : signedness and precision, and both or neither are boolean. */
99 : 927884437 : if (INTEGRAL_TYPE_P (inner_type)
100 : 165143068 : && INTEGRAL_TYPE_P (outer_type))
101 : : {
102 : : /* Preserve changes in signedness or precision. */
103 : 153144905 : if (TYPE_UNSIGNED (inner_type) != TYPE_UNSIGNED (outer_type)
104 : 153144905 : || TYPE_PRECISION (inner_type) != TYPE_PRECISION (outer_type))
105 : : return false;
106 : :
107 : : /* Preserve conversions to/from BOOLEAN_TYPE if types are not
108 : : of precision one. */
109 : 61885323 : if (((TREE_CODE (inner_type) == BOOLEAN_TYPE)
110 : 61885323 : != (TREE_CODE (outer_type) == BOOLEAN_TYPE))
111 : 61885323 : && TYPE_PRECISION (outer_type) != 1)
112 : : return false;
113 : :
114 : : /* Preserve conversions to/from BITINT_TYPE. While we don't
115 : : need to care that much about such conversions within a function's
116 : : body, we need to prevent changing BITINT_TYPE to INTEGER_TYPE
117 : : of the same precision or vice versa when passed to functions,
118 : : especially for varargs. */
119 : 61836946 : if ((TREE_CODE (inner_type) == BITINT_TYPE)
120 : 61836946 : != (TREE_CODE (outer_type) == BITINT_TYPE))
121 : : return false;
122 : :
123 : : /* We don't need to preserve changes in the types minimum or
124 : : maximum value in general as these do not generate code
125 : : unless the types precisions are different. */
126 : : return true;
127 : : }
128 : :
129 : : /* Scalar floating point types with the same mode are compatible. */
130 : 774739532 : else if (SCALAR_FLOAT_TYPE_P (inner_type)
131 : 550336 : && SCALAR_FLOAT_TYPE_P (outer_type))
132 : : return true;
133 : :
134 : : /* Fixed point types with the same mode are compatible. */
135 : 774193144 : else if (FIXED_POINT_TYPE_P (inner_type)
136 : 0 : && FIXED_POINT_TYPE_P (outer_type))
137 : 0 : return TYPE_SATURATING (inner_type) == TYPE_SATURATING (outer_type);
138 : :
139 : : /* We need to take special care recursing to pointed-to types. */
140 : 774193144 : else if (POINTER_TYPE_P (inner_type)
141 : 748372429 : && POINTER_TYPE_P (outer_type))
142 : : {
143 : : /* We do not care for const qualification of the pointed-to types
144 : : as const qualification has no semantic value to the middle-end. */
145 : :
146 : : /* Otherwise pointers/references are equivalent. */
147 : : return true;
148 : : }
149 : :
150 : : /* Recurse for complex types. */
151 : 45925013 : else if (TREE_CODE (inner_type) == COMPLEX_TYPE
152 : 34794 : && TREE_CODE (outer_type) == COMPLEX_TYPE)
153 : 33470 : return useless_type_conversion_p (TREE_TYPE (outer_type),
154 : 66940 : TREE_TYPE (inner_type));
155 : :
156 : : /* Recurse for vector types with the same number of subparts. */
157 : 45891543 : else if (VECTOR_TYPE_P (inner_type)
158 : 9048219 : && VECTOR_TYPE_P (outer_type))
159 : 18040400 : return (known_eq (TYPE_VECTOR_SUBPARTS (inner_type),
160 : : TYPE_VECTOR_SUBPARTS (outer_type))
161 : 9013638 : && useless_type_conversion_p (TREE_TYPE (outer_type),
162 : 9013638 : TREE_TYPE (inner_type))
163 : 17808651 : && targetm.compatible_vector_types_p (inner_type, outer_type));
164 : :
165 : 36871343 : else if (TREE_CODE (inner_type) == ARRAY_TYPE
166 : 814541 : && TREE_CODE (outer_type) == ARRAY_TYPE)
167 : : {
168 : : /* Preserve various attributes. */
169 : 663903 : if (TYPE_REVERSE_STORAGE_ORDER (inner_type)
170 : 663903 : != TYPE_REVERSE_STORAGE_ORDER (outer_type))
171 : : return false;
172 : 663903 : if (TYPE_STRING_FLAG (inner_type) != TYPE_STRING_FLAG (outer_type))
173 : : return false;
174 : :
175 : : /* Conversions from array types with unknown extent to
176 : : array types with known extent are not useless. */
177 : 629306 : if (!TYPE_DOMAIN (inner_type) && TYPE_DOMAIN (outer_type))
178 : : return false;
179 : :
180 : : /* Nor are conversions from array types with non-constant size to
181 : : array types with constant size or to different size. */
182 : 626870 : if (TYPE_SIZE (outer_type)
183 : 609134 : && TREE_CODE (TYPE_SIZE (outer_type)) == INTEGER_CST
184 : 1210850 : && (!TYPE_SIZE (inner_type)
185 : 582276 : || TREE_CODE (TYPE_SIZE (inner_type)) != INTEGER_CST
186 : 580506 : || !tree_int_cst_equal (TYPE_SIZE (outer_type),
187 : 580506 : TYPE_SIZE (inner_type))))
188 : 40910 : return false;
189 : :
190 : : /* Check conversions between arrays with partially known extents.
191 : : If the array min/max values are constant they have to match.
192 : : Otherwise allow conversions to unknown and variable extents.
193 : : In particular this declares conversions that may change the
194 : : mode to BLKmode as useless. */
195 : 585960 : if (TYPE_DOMAIN (inner_type)
196 : 585958 : && TYPE_DOMAIN (outer_type)
197 : 1171896 : && TYPE_DOMAIN (inner_type) != TYPE_DOMAIN (outer_type))
198 : : {
199 : 124214 : tree inner_min = TYPE_MIN_VALUE (TYPE_DOMAIN (inner_type));
200 : 124214 : tree outer_min = TYPE_MIN_VALUE (TYPE_DOMAIN (outer_type));
201 : 124214 : tree inner_max = TYPE_MAX_VALUE (TYPE_DOMAIN (inner_type));
202 : 124214 : tree outer_max = TYPE_MAX_VALUE (TYPE_DOMAIN (outer_type));
203 : :
204 : : /* After gimplification a variable min/max value carries no
205 : : additional information compared to a NULL value. All that
206 : : matters has been lowered to be part of the IL. */
207 : 124214 : if (inner_min && TREE_CODE (inner_min) != INTEGER_CST)
208 : 0 : inner_min = NULL_TREE;
209 : 124214 : if (outer_min && TREE_CODE (outer_min) != INTEGER_CST)
210 : 0 : outer_min = NULL_TREE;
211 : 124214 : if (inner_max && TREE_CODE (inner_max) != INTEGER_CST)
212 : 23356 : inner_max = NULL_TREE;
213 : 124214 : if (outer_max && TREE_CODE (outer_max) != INTEGER_CST)
214 : 27757 : outer_max = NULL_TREE;
215 : :
216 : : /* Conversions NULL / variable <- cst are useless, but not
217 : : the other way around. */
218 : 124214 : if (outer_min
219 : 124214 : && (!inner_min
220 : 124214 : || !tree_int_cst_equal (inner_min, outer_min)))
221 : 8243 : return false;
222 : 115971 : if (outer_max
223 : 115971 : && (!inner_max
224 : 88202 : || !tree_int_cst_equal (inner_max, outer_max)))
225 : 81176 : return false;
226 : : }
227 : :
228 : : /* Recurse on the element check. */
229 : 496541 : return useless_type_conversion_p (TREE_TYPE (outer_type),
230 : 993082 : TREE_TYPE (inner_type));
231 : : }
232 : :
233 : 36207440 : else if (FUNC_OR_METHOD_TYPE_P (inner_type)
234 : 311231 : && TREE_CODE (inner_type) == TREE_CODE (outer_type))
235 : : {
236 : 306047 : tree outer_parm, inner_parm;
237 : :
238 : : /* If the return types are not compatible bail out. */
239 : 306047 : if (!useless_type_conversion_p (TREE_TYPE (outer_type),
240 : 306047 : TREE_TYPE (inner_type)))
241 : : return false;
242 : :
243 : : /* Method types should belong to a compatible base class. */
244 : 295083 : if (TREE_CODE (inner_type) == METHOD_TYPE
245 : 303608 : && !useless_type_conversion_p (TYPE_METHOD_BASETYPE (outer_type),
246 : 8525 : TYPE_METHOD_BASETYPE (inner_type)))
247 : : return false;
248 : :
249 : : /* A conversion to an unprototyped argument list is ok. */
250 : 291619 : if (!prototype_p (outer_type))
251 : : return true;
252 : :
253 : : /* If the unqualified argument types are compatible the conversion
254 : : is useless. */
255 : 291493 : if (TYPE_ARG_TYPES (outer_type) == TYPE_ARG_TYPES (inner_type))
256 : : return true;
257 : :
258 : 287243 : for (outer_parm = TYPE_ARG_TYPES (outer_type),
259 : 287243 : inner_parm = TYPE_ARG_TYPES (inner_type);
260 : 1208622 : outer_parm && inner_parm;
261 : 921379 : outer_parm = TREE_CHAIN (outer_parm),
262 : 921379 : inner_parm = TREE_CHAIN (inner_parm))
263 : 1848190 : if (!useless_type_conversion_p
264 : 924095 : (TYPE_MAIN_VARIANT (TREE_VALUE (outer_parm)),
265 : 924095 : TYPE_MAIN_VARIANT (TREE_VALUE (inner_parm))))
266 : : return false;
267 : :
268 : : /* If there is a mismatch in the number of arguments the functions
269 : : are not compatible. */
270 : 284527 : if (outer_parm || inner_parm)
271 : : return false;
272 : :
273 : : /* Defer to the target if necessary. */
274 : 282955 : if (TYPE_ATTRIBUTES (inner_type) || TYPE_ATTRIBUTES (outer_type))
275 : 274144 : return comp_type_attributes (outer_type, inner_type) != 0;
276 : :
277 : : return true;
278 : : }
279 : :
280 : : /* For aggregates we rely on TYPE_CANONICAL exclusively and require
281 : : explicit conversions for types involving to be structurally
282 : : compared types. */
283 : 35901393 : else if (AGGREGATE_TYPE_P (inner_type)
284 : 3748282 : && TREE_CODE (inner_type) == TREE_CODE (outer_type))
285 : 2398760 : return TYPE_CANONICAL (inner_type)
286 : 2398760 : && TYPE_CANONICAL (inner_type) == TYPE_CANONICAL (outer_type);
287 : :
288 : 33502633 : else if (TREE_CODE (inner_type) == OFFSET_TYPE
289 : 12156 : && TREE_CODE (outer_type) == OFFSET_TYPE)
290 : 2490 : return useless_type_conversion_p (TREE_TYPE (outer_type),
291 : 2490 : TREE_TYPE (inner_type))
292 : 4794 : && useless_type_conversion_p
293 : 2304 : (TYPE_OFFSET_BASETYPE (outer_type),
294 : 2304 : TYPE_OFFSET_BASETYPE (inner_type));
295 : :
296 : : return false;
297 : : }
298 : :
299 : :
300 : : /* ----- Decl related ----- */
301 : :
302 : : /* Set sequence SEQ to be the GIMPLE body for function FN. */
303 : :
304 : : void
305 : 107534636 : gimple_set_body (tree fndecl, gimple_seq seq)
306 : : {
307 : 107534636 : struct function *fn = DECL_STRUCT_FUNCTION (fndecl);
308 : 107534636 : if (fn == NULL)
309 : : {
310 : : /* If FNDECL still does not have a function structure associated
311 : : with it, then it does not make sense for it to receive a
312 : : GIMPLE body. */
313 : 62 : gcc_assert (seq == NULL);
314 : : }
315 : : else
316 : 107534574 : fn->gimple_body = seq;
317 : 107534636 : }
318 : :
319 : :
320 : : /* Return the body of GIMPLE statements for function FN. After the
321 : : CFG pass, the function body doesn't exist anymore because it has
322 : : been split up into basic blocks. In this case, it returns
323 : : NULL. */
324 : :
325 : : gimple_seq
326 : 433883417 : gimple_body (tree fndecl)
327 : : {
328 : 433883417 : struct function *fn = DECL_STRUCT_FUNCTION (fndecl);
329 : 433883417 : return fn ? fn->gimple_body : NULL;
330 : : }
331 : :
332 : : /* Return true when FNDECL has Gimple body either in unlowered
333 : : or CFG form. */
334 : : bool
335 : 399467859 : gimple_has_body_p (tree fndecl)
336 : : {
337 : 399467859 : struct function *fn = DECL_STRUCT_FUNCTION (fndecl);
338 : 399467859 : return (gimple_body (fndecl) || (fn && fn->cfg && !(fn->curr_properties & PROP_rtl)));
339 : : }
340 : :
341 : : /* Return a printable name for symbol DECL. */
342 : :
343 : : const char *
344 : 30628 : gimple_decl_printable_name (tree decl, int verbosity)
345 : : {
346 : 30628 : if (!DECL_NAME (decl))
347 : : return NULL;
348 : :
349 : 30628 : if (HAS_DECL_ASSEMBLER_NAME_P (decl) && DECL_ASSEMBLER_NAME_SET_P (decl))
350 : : {
351 : 30251 : int dmgl_opts = DMGL_NO_OPTS;
352 : :
353 : 30251 : if (verbosity >= 2)
354 : : {
355 : 4487 : dmgl_opts = DMGL_VERBOSE
356 : : | DMGL_ANSI
357 : : | DMGL_GNU_V3
358 : : | DMGL_RET_POSTFIX;
359 : 4487 : if (TREE_CODE (decl) == FUNCTION_DECL)
360 : 4414 : dmgl_opts |= DMGL_PARAMS;
361 : : }
362 : :
363 : 30251 : const char *mangled_str
364 : 30251 : = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME_RAW (decl));
365 : 30251 : const char *str = cplus_demangle_v3 (mangled_str, dmgl_opts);
366 : 59158 : return str ? str : mangled_str;
367 : : }
368 : :
369 : 377 : return IDENTIFIER_POINTER (DECL_NAME (decl));
370 : : }
371 : :
372 : :
373 : : /* Create a new VAR_DECL and copy information from VAR to it. */
374 : :
375 : : tree
376 : 1493539 : copy_var_decl (tree var, tree name, tree type)
377 : : {
378 : 1493539 : tree copy = build_decl (DECL_SOURCE_LOCATION (var), VAR_DECL, name, type);
379 : :
380 : 1493539 : TREE_ADDRESSABLE (copy) = TREE_ADDRESSABLE (var);
381 : 1493539 : TREE_THIS_VOLATILE (copy) = TREE_THIS_VOLATILE (var);
382 : 1493539 : DECL_NOT_GIMPLE_REG_P (copy) = DECL_NOT_GIMPLE_REG_P (var);
383 : 1493539 : DECL_ARTIFICIAL (copy) = DECL_ARTIFICIAL (var);
384 : 1493539 : DECL_IGNORED_P (copy) = DECL_IGNORED_P (var);
385 : 1493539 : DECL_CONTEXT (copy) = DECL_CONTEXT (var);
386 : 1493539 : TREE_USED (copy) = 1;
387 : 1493539 : DECL_SEEN_IN_BIND_EXPR_P (copy) = 1;
388 : 1493539 : DECL_ATTRIBUTES (copy) = DECL_ATTRIBUTES (var);
389 : 1493539 : if (DECL_USER_ALIGN (var))
390 : : {
391 : 145 : SET_DECL_ALIGN (copy, DECL_ALIGN (var));
392 : 145 : DECL_USER_ALIGN (copy) = 1;
393 : : }
394 : :
395 : 1493539 : copy_warning (copy, var);
396 : 1493539 : return copy;
397 : : }
398 : :
399 : : /* Strip off a legitimate source ending from the input string NAME of
400 : : length LEN. Rather than having to know the names used by all of
401 : : our front ends, we strip off an ending of a period followed by
402 : : up to four characters. (like ".cpp".) */
403 : :
404 : : static inline void
405 : 23601911 : remove_suffix (char *name, int len)
406 : : {
407 : 23601911 : int i;
408 : :
409 : 89271005 : for (i = 2; i < 7 && len > i; i++)
410 : 66797913 : if (name[len - i] == '.')
411 : : {
412 : 1128819 : name[len - i] = '\0';
413 : 1128819 : break;
414 : : }
415 : 23601911 : }
416 : :
417 : : /* Create a new temporary name with PREFIX. Return an identifier. */
418 : :
419 : : static GTY(()) unsigned int tmp_var_id_num;
420 : :
421 : : tree
422 : 23601911 : create_tmp_var_name (const char *prefix)
423 : : {
424 : 23601911 : char *tmp_name;
425 : :
426 : 23601911 : if (prefix)
427 : : {
428 : 23601911 : char *preftmp = ASTRDUP (prefix);
429 : :
430 : 23601911 : remove_suffix (preftmp, strlen (preftmp));
431 : 23601911 : prefix = preftmp;
432 : : }
433 : :
434 : 23601911 : ASM_FORMAT_PRIVATE_NAME (tmp_name, prefix ? prefix : "T", tmp_var_id_num++);
435 : 23601911 : return get_identifier (tmp_name);
436 : : }
437 : :
438 : : /* Create a new temporary variable declaration of type TYPE.
439 : : Do NOT push it into the current binding. */
440 : :
441 : : tree
442 : 26895206 : create_tmp_var_raw (tree type, const char *prefix)
443 : : {
444 : 26895206 : tree tmp_var;
445 : :
446 : 46858936 : tmp_var = build_decl (input_location,
447 : 19963730 : VAR_DECL, prefix ? create_tmp_var_name (prefix) : NULL,
448 : : type);
449 : :
450 : : /* The variable was declared by the compiler. */
451 : 26895206 : DECL_ARTIFICIAL (tmp_var) = 1;
452 : : /* And we don't want debug info for it. */
453 : 26895206 : DECL_IGNORED_P (tmp_var) = 1;
454 : : /* And we don't want even the fancy names of those printed in
455 : : -fdump-final-insns= dumps. */
456 : 26895206 : DECL_NAMELESS (tmp_var) = 1;
457 : :
458 : : /* Make the variable writable. */
459 : 26895206 : TREE_READONLY (tmp_var) = 0;
460 : :
461 : 26895206 : DECL_EXTERNAL (tmp_var) = 0;
462 : 26895206 : TREE_STATIC (tmp_var) = 0;
463 : 26895206 : TREE_USED (tmp_var) = 1;
464 : :
465 : 26895206 : return tmp_var;
466 : : }
467 : :
468 : : /* Create a new temporary variable declaration of type TYPE. DO push the
469 : : variable into the current binding. Further, assume that this is called
470 : : only from gimplification or optimization, at which point the creation of
471 : : certain types are bugs. */
472 : :
473 : : tree
474 : 14889384 : create_tmp_var (tree type, const char *prefix)
475 : : {
476 : 14889384 : tree tmp_var;
477 : :
478 : : /* We don't allow types that are addressable (meaning we can't make copies),
479 : : or incomplete. We also used to reject every variable size objects here,
480 : : but now support those for which a constant upper bound can be obtained.
481 : : The processing for variable sizes is performed in gimple_add_tmp_var,
482 : : point at which it really matters and possibly reached via paths not going
483 : : through this function, e.g. after direct calls to create_tmp_var_raw. */
484 : 14889384 : gcc_assert (!TREE_ADDRESSABLE (type) && COMPLETE_TYPE_P (type));
485 : :
486 : 14889384 : tmp_var = create_tmp_var_raw (type, prefix);
487 : 14889384 : gimple_add_tmp_var (tmp_var);
488 : 14889384 : return tmp_var;
489 : : }
490 : :
491 : : /* Create a new temporary variable declaration of type TYPE by calling
492 : : create_tmp_var and if TYPE is a vector or a complex number, mark the new
493 : : temporary as gimple register. */
494 : :
495 : : tree
496 : 3475611 : create_tmp_reg (tree type, const char *prefix)
497 : : {
498 : 3475611 : return create_tmp_var (type, prefix);
499 : : }
500 : :
501 : : /* Create a new temporary variable declaration of type TYPE by calling
502 : : create_tmp_var and if TYPE is a vector or a complex number, mark the new
503 : : temporary as gimple register. */
504 : :
505 : : tree
506 : 32503 : create_tmp_reg_fn (struct function *fn, tree type, const char *prefix)
507 : : {
508 : 32503 : tree tmp;
509 : :
510 : 32503 : tmp = create_tmp_var_raw (type, prefix);
511 : 32503 : gimple_add_tmp_var_fn (fn, tmp);
512 : :
513 : 32503 : return tmp;
514 : : }
515 : :
516 : :
517 : : /* ----- Expression related ----- */
518 : :
519 : : /* Extract the operands and code for expression EXPR into *SUBCODE_P,
520 : : *OP1_P, *OP2_P and *OP3_P respectively. */
521 : :
522 : : void
523 : 173980382 : extract_ops_from_tree (tree expr, enum tree_code *subcode_p, tree *op1_p,
524 : : tree *op2_p, tree *op3_p)
525 : : {
526 : 173980382 : *subcode_p = TREE_CODE (expr);
527 : 173980382 : switch (get_gimple_rhs_class (*subcode_p))
528 : : {
529 : 98067 : case GIMPLE_TERNARY_RHS:
530 : 98067 : {
531 : 98067 : *op1_p = TREE_OPERAND (expr, 0);
532 : 98067 : *op2_p = TREE_OPERAND (expr, 1);
533 : 98067 : *op3_p = TREE_OPERAND (expr, 2);
534 : 98067 : break;
535 : : }
536 : 20774841 : case GIMPLE_BINARY_RHS:
537 : 20774841 : {
538 : 20774841 : *op1_p = TREE_OPERAND (expr, 0);
539 : 20774841 : *op2_p = TREE_OPERAND (expr, 1);
540 : 20774841 : *op3_p = NULL_TREE;
541 : 20774841 : break;
542 : : }
543 : 11335371 : case GIMPLE_UNARY_RHS:
544 : 11335371 : {
545 : 11335371 : *op1_p = TREE_OPERAND (expr, 0);
546 : 11335371 : *op2_p = NULL_TREE;
547 : 11335371 : *op3_p = NULL_TREE;
548 : 11335371 : break;
549 : : }
550 : 141772103 : case GIMPLE_SINGLE_RHS:
551 : 141772103 : {
552 : 141772103 : *op1_p = expr;
553 : 141772103 : *op2_p = NULL_TREE;
554 : 141772103 : *op3_p = NULL_TREE;
555 : 141772103 : break;
556 : : }
557 : 0 : default:
558 : 0 : gcc_unreachable ();
559 : : }
560 : 173980382 : }
561 : :
562 : : /* Extract operands for a GIMPLE_COND statement out of COND_EXPR tree COND. */
563 : :
564 : : void
565 : 5999629 : gimple_cond_get_ops_from_tree (tree cond, enum tree_code *code_p,
566 : : tree *lhs_p, tree *rhs_p)
567 : : {
568 : 5999629 : gcc_assert (COMPARISON_CLASS_P (cond)
569 : : || TREE_CODE (cond) == TRUTH_NOT_EXPR
570 : : || is_gimple_min_invariant (cond)
571 : : || SSA_VAR_P (cond));
572 : 5999629 : gcc_checking_assert (!tree_could_throw_p (cond));
573 : :
574 : 5999629 : extract_ops_from_tree (cond, code_p, lhs_p, rhs_p);
575 : :
576 : : /* Canonicalize conditionals of the form 'if (!VAL)'. */
577 : 5999629 : if (*code_p == TRUTH_NOT_EXPR)
578 : : {
579 : 0 : *code_p = EQ_EXPR;
580 : 0 : gcc_assert (*lhs_p && *rhs_p == NULL_TREE);
581 : 0 : *rhs_p = build_zero_cst (TREE_TYPE (*lhs_p));
582 : : }
583 : : /* Canonicalize conditionals of the form 'if (VAL)' */
584 : 5999629 : else if (TREE_CODE_CLASS (*code_p) != tcc_comparison)
585 : : {
586 : 1797712 : *code_p = NE_EXPR;
587 : 1797712 : gcc_assert (*lhs_p && *rhs_p == NULL_TREE);
588 : 1797712 : *rhs_p = build_zero_cst (TREE_TYPE (*lhs_p));
589 : : }
590 : 5999629 : }
591 : :
592 : : /* Return true if T is a valid LHS for a GIMPLE assignment expression. */
593 : :
594 : : bool
595 : 258406102 : is_gimple_lvalue (tree t)
596 : : {
597 : 258406102 : return (is_gimple_addressable (t)
598 : 14052582 : || TREE_CODE (t) == WITH_SIZE_EXPR
599 : : /* These are complex lvalues, but don't have addresses, so they
600 : : go here. */
601 : 272434979 : || TREE_CODE (t) == BIT_FIELD_REF);
602 : : }
603 : :
604 : : /* Helper for is_gimple_condexpr and is_gimple_condexpr_for_cond. */
605 : :
606 : : static bool
607 : 10089871 : is_gimple_condexpr_1 (tree t, bool allow_traps, bool allow_cplx)
608 : : {
609 : 10089871 : tree op0;
610 : 10089871 : return (is_gimple_val (t)
611 : 10089871 : || (COMPARISON_CLASS_P (t)
612 : 6920716 : && (allow_traps || !tree_could_throw_p (t))
613 : 6913844 : && ((op0 = TREE_OPERAND (t, 0)), true)
614 : 6913844 : && (allow_cplx || TREE_CODE (TREE_TYPE (op0)) != COMPLEX_TYPE)
615 : 6913844 : && is_gimple_val (op0)
616 : 5367854 : && is_gimple_val (TREE_OPERAND (t, 1))));
617 : : }
618 : :
619 : : /* Like is_gimple_condexpr, but does not allow T to trap. */
620 : :
621 : : bool
622 : 6505228 : is_gimple_condexpr_for_cond (tree t)
623 : : {
624 : 6505228 : return is_gimple_condexpr_1 (t, false, true);
625 : : }
626 : :
627 : : /* Canonicalize a tree T for use in a COND_EXPR as conditional. Returns
628 : : a canonicalized tree that is valid for a COND_EXPR or NULL_TREE, if
629 : : we failed to create one. */
630 : :
631 : : tree
632 : 3584643 : canonicalize_cond_expr_cond (tree t)
633 : : {
634 : : /* Strip conversions around boolean operations. */
635 : 3436820 : if (CONVERT_EXPR_P (t)
636 : 3584643 : && (truth_value_p (TREE_CODE (TREE_OPERAND (t, 0)))
637 : 146724 : || TREE_CODE (TREE_TYPE (TREE_OPERAND (t, 0)))
638 : : == BOOLEAN_TYPE))
639 : 1099 : t = TREE_OPERAND (t, 0);
640 : :
641 : : /* For !x use x == 0. */
642 : 3584643 : if (TREE_CODE (t) == TRUTH_NOT_EXPR)
643 : : {
644 : 23786 : tree top0 = TREE_OPERAND (t, 0);
645 : 23786 : t = build2 (EQ_EXPR, TREE_TYPE (t),
646 : 23786 : top0, build_int_cst (TREE_TYPE (top0), 0));
647 : : }
648 : : /* For cmp ? 1 : 0 use cmp. */
649 : 3560857 : else if (TREE_CODE (t) == COND_EXPR
650 : 97693 : && COMPARISON_CLASS_P (TREE_OPERAND (t, 0))
651 : 95981 : && integer_onep (TREE_OPERAND (t, 1))
652 : 3656838 : && integer_zerop (TREE_OPERAND (t, 2)))
653 : : {
654 : 95981 : tree top0 = TREE_OPERAND (t, 0);
655 : 95981 : t = build2 (TREE_CODE (top0), TREE_TYPE (t),
656 : 95981 : TREE_OPERAND (top0, 0), TREE_OPERAND (top0, 1));
657 : : }
658 : : /* For x ^ y use x != y. */
659 : 3464876 : else if (TREE_CODE (t) == BIT_XOR_EXPR)
660 : 0 : t = build2 (NE_EXPR, TREE_TYPE (t),
661 : 0 : TREE_OPERAND (t, 0), TREE_OPERAND (t, 1));
662 : :
663 : : /* We don't know where this will be used so allow both traps and
664 : : _Complex. The caller is responsible for more precise checking. */
665 : 3584643 : if (is_gimple_condexpr_1 (t, true, true))
666 : 1241549 : return t;
667 : :
668 : : return NULL_TREE;
669 : : }
670 : :
671 : : /* Return true if T is a gimple address. */
672 : :
673 : : bool
674 : 0 : is_gimple_address (const_tree t)
675 : : {
676 : 0 : tree op;
677 : :
678 : 0 : if (TREE_CODE (t) != ADDR_EXPR)
679 : : return false;
680 : :
681 : 0 : op = TREE_OPERAND (t, 0);
682 : 0 : while (handled_component_p (op))
683 : : {
684 : 0 : if ((TREE_CODE (op) == ARRAY_REF
685 : 0 : || TREE_CODE (op) == ARRAY_RANGE_REF)
686 : 0 : && !is_gimple_val (TREE_OPERAND (op, 1)))
687 : : return false;
688 : :
689 : 0 : op = TREE_OPERAND (op, 0);
690 : : }
691 : :
692 : 0 : if (CONSTANT_CLASS_P (op)
693 : 0 : || TREE_CODE (op) == TARGET_MEM_REF
694 : 0 : || TREE_CODE (op) == MEM_REF)
695 : : return true;
696 : :
697 : 0 : switch (TREE_CODE (op))
698 : : {
699 : : case PARM_DECL:
700 : : case RESULT_DECL:
701 : : case LABEL_DECL:
702 : : case FUNCTION_DECL:
703 : : case VAR_DECL:
704 : : case CONST_DECL:
705 : : return true;
706 : :
707 : : default:
708 : : return false;
709 : : }
710 : : }
711 : :
712 : : /* Return true if T is a gimple invariant address. */
713 : :
714 : : bool
715 : 5794770532 : is_gimple_invariant_address (const_tree t)
716 : : {
717 : 5794770532 : const_tree op;
718 : :
719 : 5794770532 : if (TREE_CODE (t) != ADDR_EXPR)
720 : : return false;
721 : :
722 : 5794770532 : op = strip_invariant_refs (TREE_OPERAND (t, 0));
723 : 5794770532 : if (!op)
724 : : return false;
725 : :
726 : 5783836859 : if (TREE_CODE (op) == MEM_REF)
727 : : {
728 : 491913807 : const_tree op0 = TREE_OPERAND (op, 0);
729 : 491913807 : return (TREE_CODE (op0) == ADDR_EXPR
730 : 491913807 : && (CONSTANT_CLASS_P (TREE_OPERAND (op0, 0))
731 : 178630926 : || decl_address_invariant_p (TREE_OPERAND (op0, 0))));
732 : : }
733 : :
734 : 5291923052 : return CONSTANT_CLASS_P (op) || decl_address_invariant_p (op);
735 : : }
736 : :
737 : : /* Return true if T is a gimple invariant address at IPA level
738 : : (so addresses of variables on stack are not allowed). */
739 : :
740 : : bool
741 : 2390519 : is_gimple_ip_invariant_address (const_tree t)
742 : : {
743 : 2390519 : const_tree op;
744 : :
745 : 2390519 : if (TREE_CODE (t) != ADDR_EXPR)
746 : : return false;
747 : :
748 : 2390519 : op = strip_invariant_refs (TREE_OPERAND (t, 0));
749 : 2390519 : if (!op)
750 : : return false;
751 : :
752 : 2389210 : if (TREE_CODE (op) == MEM_REF)
753 : : {
754 : 130502 : const_tree op0 = TREE_OPERAND (op, 0);
755 : 130502 : return (TREE_CODE (op0) == ADDR_EXPR
756 : 130502 : && (CONSTANT_CLASS_P (TREE_OPERAND (op0, 0))
757 : 102205 : || decl_address_ip_invariant_p (TREE_OPERAND (op0, 0))));
758 : : }
759 : :
760 : 2258708 : return CONSTANT_CLASS_P (op) || decl_address_ip_invariant_p (op);
761 : : }
762 : :
763 : : /* Return true if T is a GIMPLE minimal invariant. It's a restricted
764 : : form of function invariant. */
765 : :
766 : : bool
767 : 22375504208 : is_gimple_min_invariant (const_tree t)
768 : : {
769 : 22375504208 : if (TREE_CODE (t) == ADDR_EXPR)
770 : 5793510684 : return is_gimple_invariant_address (t);
771 : :
772 : 16581993524 : return is_gimple_constant (t);
773 : : }
774 : :
775 : : /* Return true if T is a GIMPLE interprocedural invariant. It's a restricted
776 : : form of gimple minimal invariant. */
777 : :
778 : : bool
779 : 25580375 : is_gimple_ip_invariant (const_tree t)
780 : : {
781 : 25580375 : if (TREE_CODE (t) == ADDR_EXPR)
782 : 2389606 : return is_gimple_ip_invariant_address (t);
783 : :
784 : 23190769 : return is_gimple_constant (t);
785 : : }
786 : :
787 : : /* Return true if T is a non-aggregate register variable. */
788 : :
789 : : bool
790 : 44148766286 : is_gimple_reg (tree t)
791 : : {
792 : 77009972083 : if (virtual_operand_p (t))
793 : : return false;
794 : :
795 : 44048388987 : if (TREE_CODE (t) == SSA_NAME)
796 : : return true;
797 : :
798 : 16346599160 : if (!is_gimple_variable (t))
799 : : return false;
800 : :
801 : 5584732021 : if (!is_gimple_reg_type (TREE_TYPE (t)))
802 : : return false;
803 : :
804 : : /* A volatile decl is not acceptable because we can't reuse it as
805 : : needed. We need to copy it into a temp first. */
806 : 2204187484 : if (TREE_THIS_VOLATILE (t))
807 : : return false;
808 : :
809 : : /* We define "registers" as things that can be renamed as needed,
810 : : which with our infrastructure does not apply to memory. */
811 : 1963633190 : if (needs_to_live_in_memory (t))
812 : : return false;
813 : :
814 : : /* Hard register variables are an interesting case. For those that
815 : : are call-clobbered, we don't know where all the calls are, since
816 : : we don't (want to) take into account which operations will turn
817 : : into libcalls at the rtl level. For those that are call-saved,
818 : : we don't currently model the fact that calls may in fact change
819 : : global hard registers, nor do we examine ASM_CLOBBERS at the tree
820 : : level, and so miss variable changes that might imply. All around,
821 : : it seems safest to not do too much optimization with these at the
822 : : tree level at all. We'll have to rely on the rtl optimizers to
823 : : clean this up, as there we've got all the appropriate bits exposed. */
824 : 1138174931 : if (VAR_P (t) && DECL_HARD_REGISTER (t))
825 : : return false;
826 : :
827 : : /* Variables can be marked as having partial definitions, avoid
828 : : putting them into SSA form. */
829 : 1136739672 : return !DECL_NOT_GIMPLE_REG_P (t);
830 : : }
831 : :
832 : :
833 : : /* Return true if T is a GIMPLE rvalue, i.e. an identifier or a constant. */
834 : :
835 : : bool
836 : 8921055630 : is_gimple_val (tree t)
837 : : {
838 : : /* Make loads from volatiles and memory vars explicit. */
839 : 8921055630 : if (is_gimple_variable (t)
840 : 4760381868 : && is_gimple_reg_type (TREE_TYPE (t))
841 : 13656514939 : && !is_gimple_reg (t))
842 : : return false;
843 : :
844 : : /* These eventually expand into constants, so treat them like that. */
845 : 8910488742 : if (TREE_CODE (t) == OMP_NEXT_VARIANT
846 : 8910488742 : || TREE_CODE (t) == OMP_TARGET_DEVICE_MATCHES)
847 : : return true;
848 : :
849 : 8910488690 : return (is_gimple_variable (t) || is_gimple_min_invariant (t));
850 : : }
851 : :
852 : : /* Similarly, but accept hard registers as inputs to asm statements. */
853 : :
854 : : bool
855 : 41688 : is_gimple_asm_val (tree t)
856 : : {
857 : 41688 : if (VAR_P (t) && DECL_HARD_REGISTER (t))
858 : : return true;
859 : :
860 : 40811 : return is_gimple_val (t);
861 : : }
862 : :
863 : : /* Return true if T is a GIMPLE minimal lvalue. */
864 : :
865 : : bool
866 : 29850693 : is_gimple_min_lval (tree t)
867 : : {
868 : 29850693 : if (!(t = CONST_CAST_TREE (strip_invariant_refs (t))))
869 : : return false;
870 : 29850678 : return (is_gimple_id (t) || TREE_CODE (t) == MEM_REF);
871 : : }
872 : :
873 : : /* Return true if T is a valid function operand of a CALL_EXPR. */
874 : :
875 : : bool
876 : 1038979039 : is_gimple_call_addr (tree t)
877 : : {
878 : 1038979039 : return (TREE_CODE (t) == OBJ_TYPE_REF || is_gimple_val (t));
879 : : }
880 : :
881 : : /* Return true if T is a valid address operand of a MEM_REF. */
882 : :
883 : : bool
884 : 1480003830 : is_gimple_mem_ref_addr (tree t)
885 : : {
886 : 1480003830 : return (is_gimple_reg (t)
887 : 428066739 : || poly_int_tree_p (t)
888 : 1907686579 : || (TREE_CODE (t) == ADDR_EXPR
889 : 425527813 : && (CONSTANT_CLASS_P (TREE_OPERAND (t, 0))
890 : 423240724 : || decl_address_invariant_p (TREE_OPERAND (t, 0)))));
891 : : }
892 : :
893 : : /* Hold trees marked addressable during expand. */
894 : :
895 : : static hash_set<tree> *mark_addressable_queue;
896 : :
897 : : /* Mark X as addressable or queue it up if called during expand. We
898 : : don't want to apply it immediately during expand because decls are
899 : : made addressable at that point due to RTL-only concerns, such as
900 : : uses of memcpy for block moves, and TREE_ADDRESSABLE changes
901 : : is_gimple_reg, which might make it seem like a variable that used
902 : : to be a gimple_reg shouldn't have been an SSA name. So we queue up
903 : : this flag setting and only apply it when we're done with GIMPLE and
904 : : only RTL issues matter. */
905 : :
906 : : static void
907 : 11217295 : mark_addressable_1 (tree x)
908 : : {
909 : 11217295 : if (!currently_expanding_to_rtl)
910 : : {
911 : 11185535 : TREE_ADDRESSABLE (x) = 1;
912 : 11185535 : return;
913 : : }
914 : :
915 : 31760 : if (!mark_addressable_queue)
916 : 8407 : mark_addressable_queue = new hash_set<tree>();
917 : 31760 : mark_addressable_queue->add (x);
918 : : }
919 : :
920 : : /* Adaptor for mark_addressable_1 for use in hash_set traversal. */
921 : :
922 : : static bool
923 : 15400 : mark_addressable_2 (tree const &x, void * ATTRIBUTE_UNUSED = NULL)
924 : : {
925 : 15400 : mark_addressable_1 (x);
926 : 15400 : return false;
927 : : }
928 : :
929 : : /* Mark all queued trees as addressable, and empty the queue. To be
930 : : called right after clearing CURRENTLY_EXPANDING_TO_RTL. */
931 : :
932 : : void
933 : 1465651 : flush_mark_addressable_queue ()
934 : : {
935 : 1465651 : gcc_assert (!currently_expanding_to_rtl);
936 : 1465651 : if (mark_addressable_queue)
937 : : {
938 : 23807 : mark_addressable_queue->traverse<void*, mark_addressable_2> (NULL);
939 : 16814 : delete mark_addressable_queue;
940 : 8407 : mark_addressable_queue = NULL;
941 : : }
942 : 1465651 : }
943 : :
944 : : /* Mark X addressable. Unlike the langhook we expect X to be in gimple
945 : : form and we don't do any syntax checking. */
946 : :
947 : : void
948 : 33788017 : mark_addressable (tree x)
949 : : {
950 : 33788017 : if (TREE_CODE (x) == WITH_SIZE_EXPR)
951 : 0 : x = TREE_OPERAND (x, 0);
952 : 39181743 : while (handled_component_p (x))
953 : 5393726 : x = TREE_OPERAND (x, 0);
954 : 33788017 : if ((TREE_CODE (x) == MEM_REF
955 : 33788017 : || TREE_CODE (x) == TARGET_MEM_REF)
956 : 33788017 : && TREE_CODE (TREE_OPERAND (x, 0)) == ADDR_EXPR)
957 : 12590 : x = TREE_OPERAND (TREE_OPERAND (x, 0), 0);
958 : 33788017 : if (!VAR_P (x)
959 : : && TREE_CODE (x) != PARM_DECL
960 : : && TREE_CODE (x) != RESULT_DECL)
961 : : return;
962 : 11201647 : mark_addressable_1 (x);
963 : :
964 : : /* Also mark the artificial SSA_NAME that points to the partition of X. */
965 : 11201647 : if (VAR_P (x)
966 : 10572189 : && !DECL_EXTERNAL (x)
967 : 9427241 : && !TREE_STATIC (x)
968 : 6075472 : && cfun->gimple_df != NULL
969 : 17277119 : && cfun->gimple_df->decls_to_pointers != NULL)
970 : : {
971 : 1348 : tree *namep = cfun->gimple_df->decls_to_pointers->get (x);
972 : 1348 : if (namep)
973 : 248 : mark_addressable_1 (*namep);
974 : : }
975 : : }
976 : :
977 : : /* Returns true iff T is a valid RHS for an assignment to a renamed
978 : : user -- or front-end generated artificial -- variable. */
979 : :
980 : : bool
981 : 791192 : is_gimple_reg_rhs (tree t)
982 : : {
983 : 791192 : return get_gimple_rhs_class (TREE_CODE (t)) != GIMPLE_INVALID_RHS;
984 : : }
985 : :
986 : : #include "gt-gimple-expr.h"
|