Branch data Line data Source code
1 : : /* Gimple IR 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 "ssa.h"
29 : : #include "cgraph.h"
30 : : #include "diagnostic.h"
31 : : #include "alias.h"
32 : : #include "fold-const.h"
33 : : #include "calls.h"
34 : : #include "stor-layout.h"
35 : : #include "internal-fn.h"
36 : : #include "tree-eh.h"
37 : : #include "gimple-iterator.h"
38 : : #include "gimple-walk.h"
39 : : #include "gimplify.h"
40 : : #include "target.h"
41 : : #include "builtins.h"
42 : : #include "selftest.h"
43 : : #include "gimple-pretty-print.h"
44 : : #include "stringpool.h"
45 : : #include "attribs.h"
46 : : #include "asan.h"
47 : : #include "ubsan.h"
48 : : #include "langhooks.h"
49 : : #include "attr-fnspec.h"
50 : : #include "ipa-modref-tree.h"
51 : : #include "ipa-modref.h"
52 : : #include "dbgcnt.h"
53 : :
54 : : /* All the tuples have their operand vector (if present) at the very bottom of
55 : : the structure. Therefore, the offset required to find the operands vector is
56 : : the size of the structure minus the size of the 1-element tree array at the
57 : : end (see gimple_ops). An adjustment may be required if there is tail
58 : : padding, as may happen on a host (e.g. sparc) where a pointer has 4-byte
59 : : alignment while a uint64_t has 8-byte alignment.
60 : :
61 : : Unfortunately, we can't use offsetof to do this computation 100%
62 : : straightforwardly, because these structs use inheritance and so are not
63 : : standard layout types. However, the fact that they are not standard layout
64 : : types also means that tail padding will be reused in inheritance, which makes
65 : : it possible to check for the problematic case with the following logic
66 : : instead. If tail padding is detected, the offset should be decreased
67 : : accordingly. */
68 : :
69 : : template<typename G>
70 : : static constexpr size_t
71 : : get_tail_padding_adjustment ()
72 : : {
73 : : struct padding_check : G
74 : : {
75 : : tree t;
76 : : };
77 : : return sizeof (padding_check) == sizeof (G) ? sizeof (tree) : 0;
78 : : }
79 : :
80 : : #define DEFGSSTRUCT(SYM, STRUCT, HAS_TREE_OP) \
81 : : (HAS_TREE_OP \
82 : : ? sizeof (STRUCT) - sizeof (tree) - get_tail_padding_adjustment<STRUCT> () \
83 : : : 0),
84 : : EXPORTED_CONST size_t gimple_ops_offset_[] = {
85 : : #include "gsstruct.def"
86 : : };
87 : : #undef DEFGSSTRUCT
88 : :
89 : : #define DEFGSSTRUCT(SYM, STRUCT, HAS_TREE_OP) sizeof (struct STRUCT),
90 : : static const size_t gsstruct_code_size[] = {
91 : : #include "gsstruct.def"
92 : : };
93 : : #undef DEFGSSTRUCT
94 : :
95 : : #define DEFGSCODE(SYM, NAME, GSSCODE) NAME,
96 : : const char *const gimple_code_name[] = {
97 : : #include "gimple.def"
98 : : };
99 : : #undef DEFGSCODE
100 : :
101 : : #define DEFGSCODE(SYM, NAME, GSSCODE) GSSCODE,
102 : : EXPORTED_CONST enum gimple_statement_structure_enum gss_for_code_[] = {
103 : : #include "gimple.def"
104 : : };
105 : : #undef DEFGSCODE
106 : :
107 : : /* Gimple stats. */
108 : :
109 : : uint64_t gimple_alloc_counts[(int) gimple_alloc_kind_all];
110 : : uint64_t gimple_alloc_sizes[(int) gimple_alloc_kind_all];
111 : :
112 : : /* Keep in sync with gimple.h:enum gimple_alloc_kind. */
113 : : static const char * const gimple_alloc_kind_names[] = {
114 : : "assignments",
115 : : "phi nodes",
116 : : "conditionals",
117 : : "everything else"
118 : : };
119 : :
120 : : /* Static gimple tuple members. */
121 : : const enum gimple_code gassign::code_;
122 : : const enum gimple_code gcall::code_;
123 : : const enum gimple_code gcond::code_;
124 : :
125 : :
126 : : /* Gimple tuple constructors.
127 : : Note: Any constructor taking a ``gimple_seq'' as a parameter, can
128 : : be passed a NULL to start with an empty sequence. */
129 : :
130 : : /* Set the code for statement G to CODE. */
131 : :
132 : : static inline void
133 : 309495035 : gimple_set_code (gimple *g, enum gimple_code code)
134 : : {
135 : 309495035 : g->code = code;
136 : : }
137 : :
138 : : /* Return the number of bytes needed to hold a GIMPLE statement with
139 : : code CODE. */
140 : :
141 : : size_t
142 : 375389953 : gimple_size (enum gimple_code code, unsigned num_ops)
143 : : {
144 : 375389953 : size_t size = gsstruct_code_size[gss_for_code (code)];
145 : 375389953 : if (num_ops > 0)
146 : 258106316 : size += (sizeof (tree) * (num_ops - 1));
147 : 375389953 : return size;
148 : : }
149 : :
150 : : /* Initialize GIMPLE statement G with CODE and NUM_OPS. */
151 : :
152 : : void
153 : 309495035 : gimple_init (gimple *g, enum gimple_code code, unsigned num_ops)
154 : : {
155 : 309495035 : gimple_set_code (g, code);
156 : 309495035 : gimple_set_num_ops (g, num_ops);
157 : :
158 : : /* Do not call gimple_set_modified here as it has other side
159 : : effects and this tuple is still not completely built. */
160 : 309495035 : g->modified = 1;
161 : 309495035 : gimple_init_singleton (g);
162 : 309495035 : }
163 : :
164 : : /* Allocate memory for a GIMPLE statement with code CODE and NUM_OPS
165 : : operands. */
166 : :
167 : : gimple *
168 : 307607983 : gimple_alloc (enum gimple_code code, unsigned num_ops MEM_STAT_DECL)
169 : : {
170 : 307607983 : size_t size;
171 : 307607983 : gimple *stmt;
172 : :
173 : 307607983 : size = gimple_size (code, num_ops);
174 : 307607983 : if (GATHER_STATISTICS)
175 : : {
176 : : enum gimple_alloc_kind kind = gimple_alloc_kind (code);
177 : : gimple_alloc_counts[(int) kind]++;
178 : : gimple_alloc_sizes[(int) kind] += size;
179 : : }
180 : :
181 : 307607983 : stmt = ggc_alloc_cleared_gimple_statement_stat (size PASS_MEM_STAT);
182 : 307607983 : gimple_init (stmt, code, num_ops);
183 : 307607983 : return stmt;
184 : : }
185 : :
186 : : /* Set SUBCODE to be the code of the expression computed by statement G. */
187 : :
188 : : static inline void
189 : 221920195 : gimple_set_subcode (gimple *g, unsigned subcode)
190 : : {
191 : : /* We only have 16 bits for the RHS code. Assert that we are not
192 : : overflowing it. */
193 : 221920195 : gcc_assert (subcode < (1 << 16));
194 : 221920195 : g->subcode = subcode;
195 : 221920195 : }
196 : :
197 : :
198 : :
199 : : /* Build a tuple with operands. CODE is the statement to build (which
200 : : must be one of the GIMPLE_WITH_OPS tuples). SUBCODE is the subcode
201 : : for the new tuple. NUM_OPS is the number of operands to allocate. */
202 : :
203 : : #define gimple_build_with_ops(c, s, n) \
204 : : gimple_build_with_ops_stat (c, s, n MEM_STAT_INFO)
205 : :
206 : : static gimple *
207 : 211561181 : gimple_build_with_ops_stat (enum gimple_code code, unsigned subcode,
208 : : unsigned num_ops MEM_STAT_DECL)
209 : : {
210 : 0 : gimple *s = gimple_alloc (code, num_ops PASS_MEM_STAT);
211 : 211561181 : gimple_set_subcode (s, subcode);
212 : :
213 : 211561181 : return s;
214 : : }
215 : :
216 : :
217 : : /* Build a GIMPLE_RETURN statement returning RETVAL. */
218 : :
219 : : greturn *
220 : 3542816 : gimple_build_return (tree retval)
221 : : {
222 : 3542816 : greturn *s
223 : 3542816 : = as_a <greturn *> (gimple_build_with_ops (GIMPLE_RETURN, ERROR_MARK,
224 : : 2));
225 : 3542816 : if (retval)
226 : 2155490 : gimple_return_set_retval (s, retval);
227 : 3542816 : return s;
228 : : }
229 : :
230 : : /* Reset alias information on call S. */
231 : :
232 : : void
233 : 17249308 : gimple_call_reset_alias_info (gcall *s)
234 : : {
235 : 17249308 : if (gimple_call_flags (s) & ECF_CONST)
236 : 1865282 : memset (gimple_call_use_set (s), 0, sizeof (struct pt_solution));
237 : : else
238 : 15384026 : pt_solution_reset (gimple_call_use_set (s));
239 : 17249308 : if (gimple_call_flags (s) & (ECF_CONST|ECF_PURE|ECF_NOVOPS))
240 : 3065305 : memset (gimple_call_clobber_set (s), 0, sizeof (struct pt_solution));
241 : : else
242 : 14184003 : pt_solution_reset (gimple_call_clobber_set (s));
243 : 17249308 : }
244 : :
245 : : /* Helper for gimple_build_call, gimple_build_call_valist,
246 : : gimple_build_call_vec and gimple_build_call_from_tree. Build the basic
247 : : components of a GIMPLE_CALL statement to function FN with NARGS
248 : : arguments. */
249 : :
250 : : static inline gcall *
251 : 11780943 : gimple_build_call_1 (tree fn, unsigned nargs)
252 : : {
253 : 11780943 : gcall *s
254 : 23561886 : = as_a <gcall *> (gimple_build_with_ops (GIMPLE_CALL, ERROR_MARK,
255 : : nargs + 3));
256 : 11780943 : if (TREE_CODE (fn) == FUNCTION_DECL)
257 : 11571152 : fn = build_fold_addr_expr (fn);
258 : 11780943 : gimple_set_op (s, 1, fn);
259 : 11780943 : gimple_call_set_fntype (s, TREE_TYPE (TREE_TYPE (fn)));
260 : 11780943 : gimple_call_reset_alias_info (s);
261 : 11780943 : return s;
262 : : }
263 : :
264 : :
265 : : /* Build a GIMPLE_CALL statement to function FN with the arguments
266 : : specified in vector ARGS. */
267 : :
268 : : gcall *
269 : 570120 : gimple_build_call_vec (tree fn, const vec<tree> &args)
270 : : {
271 : 570120 : unsigned i;
272 : 570120 : unsigned nargs = args.length ();
273 : 570120 : gcall *call = gimple_build_call_1 (fn, nargs);
274 : :
275 : 2581819 : for (i = 0; i < nargs; i++)
276 : 1441579 : gimple_call_set_arg (call, i, args[i]);
277 : :
278 : 570120 : return call;
279 : : }
280 : :
281 : :
282 : : /* Build a GIMPLE_CALL statement to function FN. NARGS is the number of
283 : : arguments. The ... are the arguments. */
284 : :
285 : : gcall *
286 : 597749 : gimple_build_call (tree fn, unsigned nargs, ...)
287 : : {
288 : 597749 : va_list ap;
289 : 597749 : gcall *call;
290 : 597749 : unsigned i;
291 : :
292 : 597749 : gcc_assert (TREE_CODE (fn) == FUNCTION_DECL || is_gimple_call_addr (fn));
293 : :
294 : 597749 : call = gimple_build_call_1 (fn, nargs);
295 : :
296 : 597749 : va_start (ap, nargs);
297 : 1249841 : for (i = 0; i < nargs; i++)
298 : 652092 : gimple_call_set_arg (call, i, va_arg (ap, tree));
299 : 597749 : va_end (ap);
300 : :
301 : 597749 : return call;
302 : : }
303 : :
304 : :
305 : : /* Build a GIMPLE_CALL statement to function FN. NARGS is the number of
306 : : arguments. AP contains the arguments. */
307 : :
308 : : gcall *
309 : 2457 : gimple_build_call_valist (tree fn, unsigned nargs, va_list ap)
310 : : {
311 : 2457 : gcall *call;
312 : 2457 : unsigned i;
313 : :
314 : 2457 : gcc_assert (TREE_CODE (fn) == FUNCTION_DECL || is_gimple_call_addr (fn));
315 : :
316 : 2457 : call = gimple_build_call_1 (fn, nargs);
317 : :
318 : 11908 : for (i = 0; i < nargs; i++)
319 : 6994 : gimple_call_set_arg (call, i, va_arg (ap, tree));
320 : :
321 : 2457 : return call;
322 : : }
323 : :
324 : :
325 : : /* Helper for gimple_build_call_internal and gimple_build_call_internal_vec.
326 : : Build the basic components of a GIMPLE_CALL statement to internal
327 : : function FN with NARGS arguments. */
328 : :
329 : : static inline gcall *
330 : 613296 : gimple_build_call_internal_1 (enum internal_fn fn, unsigned nargs)
331 : : {
332 : 613296 : gcall *s
333 : 1226592 : = as_a <gcall *> (gimple_build_with_ops (GIMPLE_CALL, ERROR_MARK,
334 : : nargs + 3));
335 : 613296 : s->subcode |= GF_CALL_INTERNAL;
336 : 613296 : gimple_call_set_internal_fn (s, fn);
337 : 613296 : gimple_call_reset_alias_info (s);
338 : 613296 : return s;
339 : : }
340 : :
341 : :
342 : : /* Build a GIMPLE_CALL statement to internal function FN. NARGS is
343 : : the number of arguments. The ... are the arguments. */
344 : :
345 : : gcall *
346 : 396236 : gimple_build_call_internal (enum internal_fn fn, unsigned nargs, ...)
347 : : {
348 : 396236 : va_list ap;
349 : 396236 : gcall *call;
350 : 396236 : unsigned i;
351 : :
352 : 396236 : call = gimple_build_call_internal_1 (fn, nargs);
353 : 396236 : va_start (ap, nargs);
354 : 1594672 : for (i = 0; i < nargs; i++)
355 : 1198436 : gimple_call_set_arg (call, i, va_arg (ap, tree));
356 : 396236 : va_end (ap);
357 : :
358 : 396236 : return call;
359 : : }
360 : :
361 : :
362 : : /* Build a GIMPLE_CALL statement to internal function FN with the arguments
363 : : specified in vector ARGS. */
364 : :
365 : : gcall *
366 : 217057 : gimple_build_call_internal_vec (enum internal_fn fn, const vec<tree> &args)
367 : : {
368 : 217057 : unsigned i, nargs;
369 : 217057 : gcall *call;
370 : :
371 : 217057 : nargs = args.length ();
372 : 217057 : call = gimple_build_call_internal_1 (fn, nargs);
373 : 1076585 : for (i = 0; i < nargs; i++)
374 : 642471 : gimple_call_set_arg (call, i, args[i]);
375 : :
376 : 217057 : return call;
377 : : }
378 : :
379 : :
380 : : /* Build a GIMPLE_CALL statement from CALL_EXPR T. Note that T is
381 : : assumed to be in GIMPLE form already. Minimal checking is done of
382 : : this fact. */
383 : :
384 : : gcall *
385 : 10610620 : gimple_build_call_from_tree (tree t, tree fnptrtype)
386 : : {
387 : 10610620 : unsigned i, nargs;
388 : 10610620 : gcall *call;
389 : :
390 : 10610620 : gcc_assert (TREE_CODE (t) == CALL_EXPR);
391 : :
392 : 10610620 : nargs = call_expr_nargs (t);
393 : :
394 : 10610620 : tree fndecl = NULL_TREE;
395 : 10610620 : if (CALL_EXPR_FN (t) == NULL_TREE)
396 : 3 : call = gimple_build_call_internal_1 (CALL_EXPR_IFN (t), nargs);
397 : : else
398 : : {
399 : 10610617 : fndecl = get_callee_fndecl (t);
400 : 10771393 : call = gimple_build_call_1 (fndecl ? fndecl : CALL_EXPR_FN (t), nargs);
401 : : }
402 : :
403 : 29582566 : for (i = 0; i < nargs; i++)
404 : 18971946 : gimple_call_set_arg (call, i, CALL_EXPR_ARG (t, i));
405 : :
406 : 10610620 : gimple_set_block (call, TREE_BLOCK (t));
407 : 10610620 : gimple_set_location (call, EXPR_LOCATION (t));
408 : :
409 : : /* Carry all the CALL_EXPR flags to the new GIMPLE_CALL. */
410 : 10610620 : gimple_call_set_chain (call, CALL_EXPR_STATIC_CHAIN (t));
411 : 10610620 : gimple_call_set_tail (call, CALL_EXPR_TAILCALL (t));
412 : 10610620 : gimple_call_set_must_tail (call, CALL_EXPR_MUST_TAIL_CALL (t));
413 : 10610620 : gimple_call_set_return_slot_opt (call, CALL_EXPR_RETURN_SLOT_OPT (t));
414 : 10610620 : if (fndecl
415 : 10449841 : && fndecl_built_in_p (fndecl, BUILT_IN_NORMAL)
416 : 12845060 : && ALLOCA_FUNCTION_CODE_P (DECL_FUNCTION_CODE (fndecl)))
417 : 37456 : gimple_call_set_alloca_for_var (call, CALL_ALLOCA_FOR_VAR_P (t));
418 : 10573164 : else if (fndecl
419 : 20985549 : && (DECL_IS_OPERATOR_NEW_P (fndecl)
420 : 10361464 : || DECL_IS_OPERATOR_DELETE_P (fndecl)))
421 : 125709 : gimple_call_set_from_new_or_delete (call, CALL_FROM_NEW_OR_DELETE_P (t));
422 : : else
423 : 10447455 : gimple_call_set_from_thunk (call, CALL_FROM_THUNK_P (t));
424 : 10610620 : gimple_call_set_va_arg_pack (call, CALL_EXPR_VA_ARG_PACK (t));
425 : 10610620 : gimple_call_set_nothrow (call, TREE_NOTHROW (t));
426 : 10610620 : if (fndecl)
427 : 31510302 : gimple_call_set_expected_throw (call,
428 : 10449841 : flags_from_decl_or_type (fndecl)
429 : 10449841 : & ECF_XTHROW);
430 : 10610620 : gimple_call_set_by_descriptor (call, CALL_EXPR_BY_DESCRIPTOR (t));
431 : 10610620 : copy_warning (call, t);
432 : :
433 : 10610620 : if (fnptrtype)
434 : : {
435 : 10610515 : gimple_call_set_fntype (call, TREE_TYPE (fnptrtype));
436 : :
437 : : /* Check if it's an indirect CALL and the type has the
438 : : nocf_check attribute. In that case propagate the information
439 : : to the gimple CALL insn. */
440 : 10610515 : if (!fndecl)
441 : : {
442 : 160674 : gcc_assert (POINTER_TYPE_P (fnptrtype));
443 : 160674 : tree fntype = TREE_TYPE (fnptrtype);
444 : :
445 : 160674 : if (lookup_attribute ("nocf_check", TYPE_ATTRIBUTES (fntype)))
446 : 21 : gimple_call_set_nocf_check (call, true);
447 : : }
448 : : }
449 : :
450 : 10610620 : return call;
451 : : }
452 : :
453 : : /* Build a gcall to __builtin_unreachable as rewritten by
454 : : -fsanitize=unreachable. */
455 : :
456 : : gcall *
457 : 165436 : gimple_build_builtin_unreachable (location_t loc)
458 : : {
459 : 165436 : tree data = NULL_TREE;
460 : 165436 : tree fn = sanitize_unreachable_fn (&data, loc);
461 : 165436 : gcall *g = gimple_build_call (fn, data != NULL_TREE, data);
462 : 165436 : gimple_call_set_ctrl_altering (g, true);
463 : 165436 : gimple_set_location (g, loc);
464 : 165436 : return g;
465 : : }
466 : :
467 : : /* Build a GIMPLE_ASSIGN statement.
468 : :
469 : : LHS of the assignment.
470 : : RHS of the assignment which can be unary or binary. */
471 : :
472 : : gassign *
473 : 86255538 : gimple_build_assign (tree lhs, tree rhs MEM_STAT_DECL)
474 : : {
475 : 86255538 : enum tree_code subcode;
476 : 86255538 : tree op1, op2, op3;
477 : :
478 : 86255538 : extract_ops_from_tree (rhs, &subcode, &op1, &op2, &op3);
479 : 86255538 : return gimple_build_assign (lhs, subcode, op1, op2, op3 PASS_MEM_STAT);
480 : : }
481 : :
482 : :
483 : : /* Build a GIMPLE_ASSIGN statement with subcode SUBCODE and operands
484 : : OP1, OP2 and OP3. */
485 : :
486 : : static inline gassign *
487 : 91895280 : gimple_build_assign_1 (tree lhs, enum tree_code subcode, tree op1,
488 : : tree op2, tree op3 MEM_STAT_DECL)
489 : : {
490 : 91895280 : unsigned num_ops;
491 : 91895280 : gassign *p;
492 : :
493 : : /* Need 1 operand for LHS and 1 or 2 for the RHS (depending on the
494 : : code). */
495 : 91895280 : num_ops = get_gimple_rhs_num_ops (subcode) + 1;
496 : :
497 : 183790560 : p = as_a <gassign *> (
498 : : gimple_build_with_ops_stat (GIMPLE_ASSIGN, (unsigned)subcode, num_ops
499 : : PASS_MEM_STAT));
500 : 91895280 : gimple_assign_set_lhs (p, lhs);
501 : : /* For COND_EXPR, op1 should not be a comparison. */
502 : 91895280 : if (op1 && subcode == COND_EXPR)
503 : 246472 : gcc_assert (!COMPARISON_CLASS_P (op1));
504 : 91895280 : gimple_assign_set_rhs1 (p, op1);
505 : 91895280 : if (op2)
506 : : {
507 : 14236307 : gcc_assert (num_ops > 2);
508 : 14236307 : gimple_assign_set_rhs2 (p, op2);
509 : : }
510 : :
511 : 91895280 : if (op3)
512 : : {
513 : 349468 : gcc_assert (num_ops > 3);
514 : 349468 : gimple_assign_set_rhs3 (p, op3);
515 : : }
516 : :
517 : 91895280 : return p;
518 : : }
519 : :
520 : : /* Build a GIMPLE_ASSIGN statement with subcode SUBCODE and operands
521 : : OP1, OP2 and OP3. */
522 : :
523 : : gassign *
524 : 87571775 : gimple_build_assign (tree lhs, enum tree_code subcode, tree op1,
525 : : tree op2, tree op3 MEM_STAT_DECL)
526 : : {
527 : 87571775 : return gimple_build_assign_1 (lhs, subcode, op1, op2, op3 PASS_MEM_STAT);
528 : : }
529 : :
530 : : /* Build a GIMPLE_ASSIGN statement with subcode SUBCODE and operands
531 : : OP1 and OP2. */
532 : :
533 : : gassign *
534 : 3075277 : gimple_build_assign (tree lhs, enum tree_code subcode, tree op1,
535 : : tree op2 MEM_STAT_DECL)
536 : : {
537 : 3075277 : return gimple_build_assign_1 (lhs, subcode, op1, op2, NULL_TREE
538 : 3075277 : PASS_MEM_STAT);
539 : : }
540 : :
541 : : /* Build a GIMPLE_ASSIGN statement with subcode SUBCODE and operand OP1. */
542 : :
543 : : gassign *
544 : 1248228 : gimple_build_assign (tree lhs, enum tree_code subcode, tree op1 MEM_STAT_DECL)
545 : : {
546 : 1248228 : return gimple_build_assign_1 (lhs, subcode, op1, NULL_TREE, NULL_TREE
547 : 1248228 : PASS_MEM_STAT);
548 : : }
549 : :
550 : :
551 : : /* Build a GIMPLE_COND statement.
552 : :
553 : : PRED is the condition used to compare LHS and the RHS.
554 : : T_LABEL is the label to jump to if the condition is true.
555 : : F_LABEL is the label to jump to otherwise. */
556 : :
557 : : gcond *
558 : 10412372 : gimple_build_cond (enum tree_code pred_code, tree lhs, tree rhs,
559 : : tree t_label, tree f_label)
560 : : {
561 : 10412372 : gcond *p;
562 : :
563 : 10412372 : gcc_assert (TREE_CODE_CLASS (pred_code) == tcc_comparison);
564 : 20824744 : p = as_a <gcond *> (gimple_build_with_ops (GIMPLE_COND, pred_code, 4));
565 : 10412372 : gimple_cond_set_lhs (p, lhs);
566 : 10412372 : gimple_cond_set_rhs (p, rhs);
567 : 10412372 : gimple_cond_set_true_label (p, t_label);
568 : 10412372 : gimple_cond_set_false_label (p, f_label);
569 : 10412372 : return p;
570 : : }
571 : :
572 : : /* Build a GIMPLE_COND statement from the conditional expression tree
573 : : COND. T_LABEL and F_LABEL are as in gimple_build_cond. */
574 : :
575 : : gcond *
576 : 98449 : gimple_build_cond_from_tree (tree cond, tree t_label, tree f_label)
577 : : {
578 : 98449 : enum tree_code code;
579 : 98449 : tree lhs, rhs;
580 : :
581 : 98449 : gimple_cond_get_ops_from_tree (cond, &code, &lhs, &rhs);
582 : 98449 : return gimple_build_cond (code, lhs, rhs, t_label, f_label);
583 : : }
584 : :
585 : : /* Set code, lhs, and rhs of a GIMPLE_COND from a suitable
586 : : boolean expression tree COND. */
587 : :
588 : : void
589 : 408041 : gimple_cond_set_condition_from_tree (gcond *stmt, tree cond)
590 : : {
591 : 408041 : enum tree_code code;
592 : 408041 : tree lhs, rhs;
593 : :
594 : 408041 : gimple_cond_get_ops_from_tree (cond, &code, &lhs, &rhs);
595 : 408041 : gimple_cond_set_condition (stmt, code, lhs, rhs);
596 : 408041 : }
597 : :
598 : : /* Build a GIMPLE_LABEL statement for LABEL. */
599 : :
600 : : glabel *
601 : 19212269 : gimple_build_label (tree label)
602 : : {
603 : 19212269 : glabel *p
604 : 19212269 : = as_a <glabel *> (gimple_build_with_ops (GIMPLE_LABEL, ERROR_MARK, 1));
605 : 19212269 : gimple_label_set_label (p, label);
606 : 19212269 : return p;
607 : : }
608 : :
609 : : /* Build a GIMPLE_GOTO statement to label DEST. */
610 : :
611 : : ggoto *
612 : 6974720 : gimple_build_goto (tree dest)
613 : : {
614 : 6974720 : ggoto *p
615 : 6974720 : = as_a <ggoto *> (gimple_build_with_ops (GIMPLE_GOTO, ERROR_MARK, 1));
616 : 6974720 : gimple_goto_set_dest (p, dest);
617 : 6974720 : return p;
618 : : }
619 : :
620 : :
621 : : /* Build a GIMPLE_NOP statement. */
622 : :
623 : : gimple *
624 : 15181984 : gimple_build_nop (void)
625 : : {
626 : 15181984 : return gimple_alloc (GIMPLE_NOP, 0);
627 : : }
628 : :
629 : :
630 : : /* Build a GIMPLE_BIND statement.
631 : : VARS are the variables in BODY.
632 : : BLOCK is the containing block. */
633 : :
634 : : gbind *
635 : 7508223 : gimple_build_bind (tree vars, gimple_seq body, tree block)
636 : : {
637 : 7508223 : gbind *p = as_a <gbind *> (gimple_alloc (GIMPLE_BIND, 0));
638 : 7508223 : gimple_bind_set_vars (p, vars);
639 : 7508223 : if (body)
640 : 1427972 : gimple_bind_set_body (p, body);
641 : 7508223 : if (block)
642 : 5936845 : gimple_bind_set_block (p, block);
643 : 7508223 : return p;
644 : : }
645 : :
646 : : /* Helper function to set the simple fields of a asm stmt.
647 : :
648 : : STRING is a pointer to a string that is the asm blocks assembly code.
649 : : NINPUT is the number of register inputs.
650 : : NOUTPUT is the number of register outputs.
651 : : NCLOBBERS is the number of clobbered registers.
652 : : */
653 : :
654 : : static inline gasm *
655 : 99800 : gimple_build_asm_1 (const char *string, unsigned ninputs, unsigned noutputs,
656 : : unsigned nclobbers, unsigned nlabels)
657 : : {
658 : 99800 : gasm *p;
659 : 99800 : int size = strlen (string);
660 : :
661 : 99800 : p = as_a <gasm *> (
662 : 99800 : gimple_build_with_ops (GIMPLE_ASM, ERROR_MARK,
663 : : ninputs + noutputs + nclobbers + nlabels));
664 : :
665 : 99800 : p->ni = ninputs;
666 : 99800 : p->no = noutputs;
667 : 99800 : p->nc = nclobbers;
668 : 99800 : p->nl = nlabels;
669 : 99800 : p->string = ggc_alloc_string (string, size);
670 : :
671 : 99800 : if (GATHER_STATISTICS)
672 : : gimple_alloc_sizes[(int) gimple_alloc_kind (GIMPLE_ASM)] += size;
673 : :
674 : 99800 : return p;
675 : : }
676 : :
677 : : /* Build a GIMPLE_ASM statement.
678 : :
679 : : STRING is the assembly code.
680 : : NINPUT is the number of register inputs.
681 : : NOUTPUT is the number of register outputs.
682 : : NCLOBBERS is the number of clobbered registers.
683 : : INPUTS is a vector of the input register parameters.
684 : : OUTPUTS is a vector of the output register parameters.
685 : : CLOBBERS is a vector of the clobbered register parameters.
686 : : LABELS is a vector of destination labels. */
687 : :
688 : : gasm *
689 : 99800 : gimple_build_asm_vec (const char *string, vec<tree, va_gc> *inputs,
690 : : vec<tree, va_gc> *outputs, vec<tree, va_gc> *clobbers,
691 : : vec<tree, va_gc> *labels)
692 : : {
693 : 99800 : gasm *p;
694 : 99800 : unsigned i;
695 : :
696 : 196340 : p = gimple_build_asm_1 (string,
697 : : vec_safe_length (inputs),
698 : : vec_safe_length (outputs),
699 : : vec_safe_length (clobbers),
700 : : vec_safe_length (labels));
701 : :
702 : 319708 : for (i = 0; i < vec_safe_length (inputs); i++)
703 : 44159 : gimple_asm_set_input_op (p, i, (*inputs)[i]);
704 : :
705 : 252887 : for (i = 0; i < vec_safe_length (outputs); i++)
706 : 62099 : gimple_asm_set_output_op (p, i, (*outputs)[i]);
707 : :
708 : 355761 : for (i = 0; i < vec_safe_length (clobbers); i++)
709 : 94380 : gimple_asm_set_clobber_op (p, i, (*clobbers)[i]);
710 : :
711 : 100563 : for (i = 0; i < vec_safe_length (labels); i++)
712 : 763 : gimple_asm_set_label_op (p, i, (*labels)[i]);
713 : :
714 : 99800 : return p;
715 : : }
716 : :
717 : : /* Build a GIMPLE_CATCH statement.
718 : :
719 : : TYPES are the catch types.
720 : : HANDLER is the exception handler. */
721 : :
722 : : gcatch *
723 : 38812 : gimple_build_catch (tree types, gimple_seq handler)
724 : : {
725 : 38812 : gcatch *p = as_a <gcatch *> (gimple_alloc (GIMPLE_CATCH, 0));
726 : 38812 : gimple_catch_set_types (p, types);
727 : 38812 : if (handler)
728 : 38800 : gimple_catch_set_handler (p, handler);
729 : :
730 : 38812 : return p;
731 : : }
732 : :
733 : : /* Build a GIMPLE_EH_FILTER statement.
734 : :
735 : : TYPES are the filter's types.
736 : : FAILURE is the filter's failure action. */
737 : :
738 : : geh_filter *
739 : 4269 : gimple_build_eh_filter (tree types, gimple_seq failure)
740 : : {
741 : 4269 : geh_filter *p = as_a <geh_filter *> (gimple_alloc (GIMPLE_EH_FILTER, 0));
742 : 4269 : gimple_eh_filter_set_types (p, types);
743 : 4269 : if (failure)
744 : 4269 : gimple_eh_filter_set_failure (p, failure);
745 : :
746 : 4269 : return p;
747 : : }
748 : :
749 : : /* Build a GIMPLE_EH_MUST_NOT_THROW statement. */
750 : :
751 : : geh_mnt *
752 : 1308116 : gimple_build_eh_must_not_throw (tree decl)
753 : : {
754 : 1308116 : geh_mnt *p = as_a <geh_mnt *> (gimple_alloc (GIMPLE_EH_MUST_NOT_THROW, 0));
755 : :
756 : 1308116 : gcc_assert (TREE_CODE (decl) == FUNCTION_DECL);
757 : 1308116 : gcc_assert (flags_from_decl_or_type (decl) & ECF_NORETURN);
758 : 1308116 : gimple_eh_must_not_throw_set_fndecl (p, decl);
759 : :
760 : 1308116 : return p;
761 : : }
762 : :
763 : : /* Build a GIMPLE_EH_ELSE statement. */
764 : :
765 : : geh_else *
766 : 363 : gimple_build_eh_else (gimple_seq n_body, gimple_seq e_body)
767 : : {
768 : 363 : geh_else *p = as_a <geh_else *> (gimple_alloc (GIMPLE_EH_ELSE, 0));
769 : 363 : gimple_eh_else_set_n_body (p, n_body);
770 : 363 : gimple_eh_else_set_e_body (p, e_body);
771 : 363 : return p;
772 : : }
773 : :
774 : : /* Build a GIMPLE_TRY statement.
775 : :
776 : : EVAL is the expression to evaluate.
777 : : CLEANUP is the cleanup expression.
778 : : KIND is either GIMPLE_TRY_CATCH or GIMPLE_TRY_FINALLY depending on
779 : : whether this is a try/catch or a try/finally respectively. */
780 : :
781 : : gtry *
782 : 3210986 : gimple_build_try (gimple_seq eval, gimple_seq cleanup,
783 : : enum gimple_try_flags kind)
784 : : {
785 : 3210986 : gtry *p;
786 : :
787 : 3210986 : gcc_assert (kind == GIMPLE_TRY_CATCH || kind == GIMPLE_TRY_FINALLY);
788 : 3210986 : p = as_a <gtry *> (gimple_alloc (GIMPLE_TRY, 0));
789 : 3210986 : gimple_set_subcode (p, kind);
790 : 3210986 : if (eval)
791 : 3095402 : gimple_try_set_eval (p, eval);
792 : 3210986 : if (cleanup)
793 : 3210986 : gimple_try_set_cleanup (p, cleanup);
794 : :
795 : 3210986 : return p;
796 : : }
797 : :
798 : : /* Construct a GIMPLE_WITH_CLEANUP_EXPR statement.
799 : :
800 : : CLEANUP is the cleanup expression. */
801 : :
802 : : gimple *
803 : 636767 : gimple_build_wce (gimple_seq cleanup)
804 : : {
805 : 636767 : gimple *p = gimple_alloc (GIMPLE_WITH_CLEANUP_EXPR, 0);
806 : 636767 : if (cleanup)
807 : 636767 : gimple_wce_set_cleanup (p, cleanup);
808 : :
809 : 636767 : return p;
810 : : }
811 : :
812 : :
813 : : /* Build a GIMPLE_RESX statement. */
814 : :
815 : : gresx *
816 : 899204 : gimple_build_resx (int region)
817 : : {
818 : 899204 : gresx *p
819 : 899204 : = as_a <gresx *> (gimple_build_with_ops (GIMPLE_RESX, ERROR_MARK, 0));
820 : 899204 : p->region = region;
821 : 899204 : return p;
822 : : }
823 : :
824 : :
825 : : /* The helper for constructing a gimple switch statement.
826 : : INDEX is the switch's index.
827 : : NLABELS is the number of labels in the switch excluding the default.
828 : : DEFAULT_LABEL is the default label for the switch statement. */
829 : :
830 : : gswitch *
831 : 70547 : gimple_build_switch_nlabels (unsigned nlabels, tree index, tree default_label)
832 : : {
833 : : /* nlabels + 1 default label + 1 index. */
834 : 70547 : gcc_checking_assert (default_label);
835 : 141094 : gswitch *p = as_a <gswitch *> (gimple_build_with_ops (GIMPLE_SWITCH,
836 : : ERROR_MARK,
837 : : 1 + 1 + nlabels));
838 : 70547 : gimple_switch_set_index (p, index);
839 : 70547 : gimple_switch_set_default_label (p, default_label);
840 : 70547 : return p;
841 : : }
842 : :
843 : : /* Build a GIMPLE_SWITCH statement.
844 : :
845 : : INDEX is the switch's index.
846 : : DEFAULT_LABEL is the default label
847 : : ARGS is a vector of labels excluding the default. */
848 : :
849 : : gswitch *
850 : 70547 : gimple_build_switch (tree index, tree default_label, const vec<tree> &args)
851 : : {
852 : 70547 : unsigned i, nlabels = args.length ();
853 : :
854 : 70547 : gswitch *p = gimple_build_switch_nlabels (nlabels, index, default_label);
855 : :
856 : : /* Copy the labels from the vector to the switch statement. */
857 : 1292718 : for (i = 0; i < nlabels; i++)
858 : 1151624 : gimple_switch_set_label (p, i + 1, args[i]);
859 : :
860 : 70547 : return p;
861 : : }
862 : :
863 : : /* Build a GIMPLE_EH_DISPATCH statement. */
864 : :
865 : : geh_dispatch *
866 : 40911 : gimple_build_eh_dispatch (int region)
867 : : {
868 : 40911 : geh_dispatch *p
869 : 40911 : = as_a <geh_dispatch *> (
870 : : gimple_build_with_ops (GIMPLE_EH_DISPATCH, ERROR_MARK, 0));
871 : 40911 : p->region = region;
872 : 40911 : return p;
873 : : }
874 : :
875 : : /* Build a new GIMPLE_DEBUG_BIND statement.
876 : :
877 : : VAR is bound to VALUE; block and location are taken from STMT. */
878 : :
879 : : gdebug *
880 : 58898980 : gimple_build_debug_bind (tree var, tree value, gimple *stmt MEM_STAT_DECL)
881 : : {
882 : 58898980 : gdebug *p
883 : 58898980 : = as_a <gdebug *> (gimple_build_with_ops_stat (GIMPLE_DEBUG,
884 : : (unsigned)GIMPLE_DEBUG_BIND, 2
885 : : PASS_MEM_STAT));
886 : 58898980 : gimple_debug_bind_set_var (p, var);
887 : 58898980 : gimple_debug_bind_set_value (p, value);
888 : 58898980 : if (stmt)
889 : 57853050 : gimple_set_location (p, gimple_location (stmt));
890 : :
891 : 58898980 : return p;
892 : : }
893 : :
894 : :
895 : : /* Build a new GIMPLE_DEBUG_SOURCE_BIND statement.
896 : :
897 : : VAR is bound to VALUE; block and location are taken from STMT. */
898 : :
899 : : gdebug *
900 : 609330 : gimple_build_debug_source_bind (tree var, tree value,
901 : : gimple *stmt MEM_STAT_DECL)
902 : : {
903 : 609330 : gdebug *p
904 : 609330 : = as_a <gdebug *> (
905 : : gimple_build_with_ops_stat (GIMPLE_DEBUG,
906 : : (unsigned)GIMPLE_DEBUG_SOURCE_BIND, 2
907 : : PASS_MEM_STAT));
908 : :
909 : 609330 : gimple_debug_source_bind_set_var (p, var);
910 : 609330 : gimple_debug_source_bind_set_value (p, value);
911 : 609330 : if (stmt)
912 : 468245 : gimple_set_location (p, gimple_location (stmt));
913 : :
914 : 609330 : return p;
915 : : }
916 : :
917 : :
918 : : /* Build a new GIMPLE_DEBUG_BEGIN_STMT statement in BLOCK at
919 : : LOCATION. */
920 : :
921 : : gdebug *
922 : 2652913 : gimple_build_debug_begin_stmt (tree block, location_t location
923 : : MEM_STAT_DECL)
924 : : {
925 : 2652913 : gdebug *p
926 : 2652913 : = as_a <gdebug *> (
927 : : gimple_build_with_ops_stat (GIMPLE_DEBUG,
928 : : (unsigned)GIMPLE_DEBUG_BEGIN_STMT, 0
929 : : PASS_MEM_STAT));
930 : :
931 : 2652913 : gimple_set_location (p, location);
932 : 2652913 : gimple_set_block (p, block);
933 : 2652913 : cfun->debug_marker_count++;
934 : :
935 : 2652913 : return p;
936 : : }
937 : :
938 : :
939 : : /* Build a new GIMPLE_DEBUG_INLINE_ENTRY statement in BLOCK at
940 : : LOCATION. The BLOCK links to the inlined function. */
941 : :
942 : : gdebug *
943 : 3857800 : gimple_build_debug_inline_entry (tree block, location_t location
944 : : MEM_STAT_DECL)
945 : : {
946 : 3857800 : gdebug *p
947 : 3857800 : = as_a <gdebug *> (
948 : : gimple_build_with_ops_stat (GIMPLE_DEBUG,
949 : : (unsigned)GIMPLE_DEBUG_INLINE_ENTRY, 0
950 : : PASS_MEM_STAT));
951 : :
952 : 3857800 : gimple_set_location (p, location);
953 : 3857800 : gimple_set_block (p, block);
954 : 3857800 : cfun->debug_marker_count++;
955 : :
956 : 3857800 : return p;
957 : : }
958 : :
959 : :
960 : : /* Build a GIMPLE_OMP_CRITICAL statement.
961 : :
962 : : BODY is the sequence of statements for which only one thread can execute.
963 : : NAME is optional identifier for this critical block.
964 : : CLAUSES are clauses for this critical block. */
965 : :
966 : : gomp_critical *
967 : 546 : gimple_build_omp_critical (gimple_seq body, tree name, tree clauses)
968 : : {
969 : 546 : gomp_critical *p
970 : 546 : = as_a <gomp_critical *> (gimple_alloc (GIMPLE_OMP_CRITICAL, 0));
971 : 546 : gimple_omp_critical_set_name (p, name);
972 : 546 : gimple_omp_critical_set_clauses (p, clauses);
973 : 546 : if (body)
974 : 456 : gimple_omp_set_body (p, body);
975 : :
976 : 546 : return p;
977 : : }
978 : :
979 : : /* Build a GIMPLE_OMP_FOR statement.
980 : :
981 : : BODY is sequence of statements inside the for loop.
982 : : KIND is the `for' variant.
983 : : CLAUSES are any of the construct's clauses.
984 : : COLLAPSE is the collapse count.
985 : : PRE_BODY is the sequence of statements that are loop invariant. */
986 : :
987 : : gomp_for *
988 : 53374 : gimple_build_omp_for (gimple_seq body, int kind, tree clauses, size_t collapse,
989 : : gimple_seq pre_body)
990 : : {
991 : 53374 : gomp_for *p = as_a <gomp_for *> (gimple_alloc (GIMPLE_OMP_FOR, 0));
992 : 53374 : if (body)
993 : 49524 : gimple_omp_set_body (p, body);
994 : 53374 : gimple_omp_for_set_clauses (p, clauses);
995 : 53374 : gimple_omp_for_set_kind (p, kind);
996 : 53374 : p->collapse = collapse;
997 : 53374 : p->iter = ggc_cleared_vec_alloc<gimple_omp_for_iter> (collapse);
998 : :
999 : 53374 : if (pre_body)
1000 : 2448 : gimple_omp_for_set_pre_body (p, pre_body);
1001 : :
1002 : 53374 : return p;
1003 : : }
1004 : :
1005 : :
1006 : : /* Build a GIMPLE_OMP_PARALLEL statement.
1007 : :
1008 : : BODY is sequence of statements which are executed in parallel.
1009 : : CLAUSES are the OMP parallel construct's clauses.
1010 : : CHILD_FN is the function created for the parallel threads to execute.
1011 : : DATA_ARG are the shared data argument(s). */
1012 : :
1013 : : gomp_parallel *
1014 : 18406 : gimple_build_omp_parallel (gimple_seq body, tree clauses, tree child_fn,
1015 : : tree data_arg)
1016 : : {
1017 : 18406 : gomp_parallel *p
1018 : 18406 : = as_a <gomp_parallel *> (gimple_alloc (GIMPLE_OMP_PARALLEL, 0));
1019 : 18406 : if (body)
1020 : 18213 : gimple_omp_set_body (p, body);
1021 : 18406 : gimple_omp_parallel_set_clauses (p, clauses);
1022 : 18406 : gimple_omp_parallel_set_child_fn (p, child_fn);
1023 : 18406 : gimple_omp_parallel_set_data_arg (p, data_arg);
1024 : :
1025 : 18406 : return p;
1026 : : }
1027 : :
1028 : :
1029 : : /* Build a GIMPLE_OMP_TASK statement.
1030 : :
1031 : : BODY is sequence of statements which are executed by the explicit task.
1032 : : CLAUSES are the OMP task construct's clauses.
1033 : : CHILD_FN is the function created for the parallel threads to execute.
1034 : : DATA_ARG are the shared data argument(s).
1035 : : COPY_FN is the optional function for firstprivate initialization.
1036 : : ARG_SIZE and ARG_ALIGN are size and alignment of the data block. */
1037 : :
1038 : : gomp_task *
1039 : 5588 : gimple_build_omp_task (gimple_seq body, tree clauses, tree child_fn,
1040 : : tree data_arg, tree copy_fn, tree arg_size,
1041 : : tree arg_align)
1042 : : {
1043 : 5588 : gomp_task *p = as_a <gomp_task *> (gimple_alloc (GIMPLE_OMP_TASK, 0));
1044 : 5588 : if (body)
1045 : 5498 : gimple_omp_set_body (p, body);
1046 : 5588 : gimple_omp_task_set_clauses (p, clauses);
1047 : 5588 : gimple_omp_task_set_child_fn (p, child_fn);
1048 : 5588 : gimple_omp_task_set_data_arg (p, data_arg);
1049 : 5588 : gimple_omp_task_set_copy_fn (p, copy_fn);
1050 : 5588 : gimple_omp_task_set_arg_size (p, arg_size);
1051 : 5588 : gimple_omp_task_set_arg_align (p, arg_align);
1052 : :
1053 : 5588 : return p;
1054 : : }
1055 : :
1056 : :
1057 : : /* Build a GIMPLE_OMP_SECTION statement for a sections statement.
1058 : :
1059 : : BODY is the sequence of statements in the section. */
1060 : :
1061 : : gimple *
1062 : 1271 : gimple_build_omp_section (gimple_seq body)
1063 : : {
1064 : 1271 : gimple *p = gimple_alloc (GIMPLE_OMP_SECTION, 0);
1065 : 1271 : if (body)
1066 : 1079 : gimple_omp_set_body (p, body);
1067 : :
1068 : 1271 : return p;
1069 : : }
1070 : :
1071 : :
1072 : : /* Build a GIMPLE_OMP_STRUCTURED_BLOCK statement.
1073 : :
1074 : : BODY is the structured block sequence. */
1075 : :
1076 : : gimple *
1077 : 774 : gimple_build_omp_structured_block (gimple_seq body)
1078 : : {
1079 : 774 : gimple *p = gimple_alloc (GIMPLE_OMP_STRUCTURED_BLOCK, 0);
1080 : 774 : if (body)
1081 : 774 : gimple_omp_set_body (p, body);
1082 : :
1083 : 774 : return p;
1084 : : }
1085 : :
1086 : :
1087 : : /* Build a GIMPLE_OMP_MASTER statement.
1088 : :
1089 : : BODY is the sequence of statements to be executed by just the master. */
1090 : :
1091 : : gimple *
1092 : 886 : gimple_build_omp_master (gimple_seq body)
1093 : : {
1094 : 886 : gimple *p = gimple_alloc (GIMPLE_OMP_MASTER, 0);
1095 : 886 : if (body)
1096 : 793 : gimple_omp_set_body (p, body);
1097 : :
1098 : 886 : return p;
1099 : : }
1100 : :
1101 : : /* Build a GIMPLE_OMP_MASKED statement.
1102 : :
1103 : : BODY is the sequence of statements to be executed by the selected thread(s). */
1104 : :
1105 : : gimple *
1106 : 446 : gimple_build_omp_masked (gimple_seq body, tree clauses)
1107 : : {
1108 : 446 : gimple *p = gimple_alloc (GIMPLE_OMP_MASKED, 0);
1109 : 446 : gimple_omp_masked_set_clauses (p, clauses);
1110 : 446 : if (body)
1111 : 386 : gimple_omp_set_body (p, body);
1112 : :
1113 : 446 : return p;
1114 : : }
1115 : :
1116 : : /* Build a GIMPLE_OMP_TASKGROUP statement.
1117 : :
1118 : : BODY is the sequence of statements to be executed by the taskgroup
1119 : : construct.
1120 : : CLAUSES are any of the construct's clauses. */
1121 : :
1122 : : gimple *
1123 : 611 : gimple_build_omp_taskgroup (gimple_seq body, tree clauses)
1124 : : {
1125 : 611 : gimple *p = gimple_alloc (GIMPLE_OMP_TASKGROUP, 0);
1126 : 611 : gimple_omp_taskgroup_set_clauses (p, clauses);
1127 : 611 : if (body)
1128 : 611 : gimple_omp_set_body (p, body);
1129 : :
1130 : 611 : return p;
1131 : : }
1132 : :
1133 : :
1134 : : /* Build a GIMPLE_OMP_CONTINUE statement.
1135 : :
1136 : : CONTROL_DEF is the definition of the control variable.
1137 : : CONTROL_USE is the use of the control variable. */
1138 : :
1139 : : gomp_continue *
1140 : 51841 : gimple_build_omp_continue (tree control_def, tree control_use)
1141 : : {
1142 : 51841 : gomp_continue *p
1143 : 51841 : = as_a <gomp_continue *> (gimple_alloc (GIMPLE_OMP_CONTINUE, 0));
1144 : 51841 : gimple_omp_continue_set_control_def (p, control_def);
1145 : 51841 : gimple_omp_continue_set_control_use (p, control_use);
1146 : 51841 : return p;
1147 : : }
1148 : :
1149 : : /* Build a GIMPLE_OMP_ORDERED statement.
1150 : :
1151 : : BODY is the sequence of statements inside a loop that will executed in
1152 : : sequence.
1153 : : CLAUSES are clauses for this statement. */
1154 : :
1155 : : gomp_ordered *
1156 : 1838 : gimple_build_omp_ordered (gimple_seq body, tree clauses)
1157 : : {
1158 : 1838 : gomp_ordered *p
1159 : 1838 : = as_a <gomp_ordered *> (gimple_alloc (GIMPLE_OMP_ORDERED, 0));
1160 : 1838 : gimple_omp_ordered_set_clauses (p, clauses);
1161 : 1838 : if (body)
1162 : 501 : gimple_omp_set_body (p, body);
1163 : :
1164 : 1838 : return p;
1165 : : }
1166 : :
1167 : :
1168 : : /* Build a GIMPLE_OMP_RETURN statement.
1169 : : WAIT_P is true if this is a non-waiting return. */
1170 : :
1171 : : gimple *
1172 : 100929 : gimple_build_omp_return (bool wait_p)
1173 : : {
1174 : 100929 : gimple *p = gimple_alloc (GIMPLE_OMP_RETURN, 0);
1175 : 100929 : if (wait_p)
1176 : 37695 : gimple_omp_return_set_nowait (p);
1177 : :
1178 : 100929 : return p;
1179 : : }
1180 : :
1181 : :
1182 : : /* Build a GIMPLE_OMP_SCAN statement.
1183 : :
1184 : : BODY is the sequence of statements to be executed by the scan
1185 : : construct.
1186 : : CLAUSES are any of the construct's clauses. */
1187 : :
1188 : : gomp_scan *
1189 : 1284 : gimple_build_omp_scan (gimple_seq body, tree clauses)
1190 : : {
1191 : 1284 : gomp_scan *p
1192 : 1284 : = as_a <gomp_scan *> (gimple_alloc (GIMPLE_OMP_SCAN, 0));
1193 : 1284 : gimple_omp_scan_set_clauses (p, clauses);
1194 : 1284 : if (body)
1195 : 1070 : gimple_omp_set_body (p, body);
1196 : :
1197 : 1284 : return p;
1198 : : }
1199 : :
1200 : :
1201 : : /* Build a GIMPLE_OMP_SECTIONS statement.
1202 : :
1203 : : BODY is a sequence of section statements.
1204 : : CLAUSES are any of the OMP sections contsruct's clauses: private,
1205 : : firstprivate, lastprivate, reduction, and nowait. */
1206 : :
1207 : : gomp_sections *
1208 : 626 : gimple_build_omp_sections (gimple_seq body, tree clauses)
1209 : : {
1210 : 626 : gomp_sections *p
1211 : 626 : = as_a <gomp_sections *> (gimple_alloc (GIMPLE_OMP_SECTIONS, 0));
1212 : 626 : if (body)
1213 : 626 : gimple_omp_set_body (p, body);
1214 : 626 : gimple_omp_sections_set_clauses (p, clauses);
1215 : :
1216 : 626 : return p;
1217 : : }
1218 : :
1219 : :
1220 : : /* Build a GIMPLE_OMP_SECTIONS_SWITCH. */
1221 : :
1222 : : gimple *
1223 : 378 : gimple_build_omp_sections_switch (void)
1224 : : {
1225 : 378 : return gimple_alloc (GIMPLE_OMP_SECTIONS_SWITCH, 0);
1226 : : }
1227 : :
1228 : :
1229 : : /* Build a GIMPLE_OMP_SINGLE statement.
1230 : :
1231 : : BODY is the sequence of statements that will be executed once.
1232 : : CLAUSES are any of the OMP single construct's clauses: private, firstprivate,
1233 : : copyprivate, nowait. */
1234 : :
1235 : : gomp_single *
1236 : 1274 : gimple_build_omp_single (gimple_seq body, tree clauses)
1237 : : {
1238 : 1274 : gomp_single *p
1239 : 1274 : = as_a <gomp_single *> (gimple_alloc (GIMPLE_OMP_SINGLE, 0));
1240 : 1274 : if (body)
1241 : 1165 : gimple_omp_set_body (p, body);
1242 : 1274 : gimple_omp_single_set_clauses (p, clauses);
1243 : :
1244 : 1274 : return p;
1245 : : }
1246 : :
1247 : :
1248 : : /* Build a GIMPLE_OMP_SCOPE statement.
1249 : :
1250 : : BODY is the sequence of statements that will be executed once.
1251 : : CLAUSES are any of the OMP scope construct's clauses: private, reduction,
1252 : : nowait. */
1253 : :
1254 : : gimple *
1255 : 214 : gimple_build_omp_scope (gimple_seq body, tree clauses)
1256 : : {
1257 : 214 : gimple *p = gimple_alloc (GIMPLE_OMP_SCOPE, 0);
1258 : 214 : gimple_omp_scope_set_clauses (p, clauses);
1259 : 214 : if (body)
1260 : 156 : gimple_omp_set_body (p, body);
1261 : :
1262 : 214 : return p;
1263 : : }
1264 : :
1265 : : /* Build a GIMPLE_OMP_DISPATCH statement.
1266 : :
1267 : : BODY is the target function call to be dispatched.
1268 : : CLAUSES are any of the OMP dispatch construct's clauses. */
1269 : :
1270 : : gimple *
1271 : 845 : gimple_build_omp_dispatch (gimple_seq body, tree clauses)
1272 : : {
1273 : 845 : gimple *p = gimple_alloc (GIMPLE_OMP_DISPATCH, 0);
1274 : 845 : gimple_omp_dispatch_set_clauses (p, clauses);
1275 : 845 : if (body)
1276 : 845 : gimple_omp_set_body (p, body);
1277 : :
1278 : 845 : return p;
1279 : : }
1280 : :
1281 : : /* Build a GIMPLE_OMP_INTEROP statement.
1282 : :
1283 : : CLAUSES are any of the OMP interop construct's clauses. */
1284 : :
1285 : : gimple *
1286 : 612 : gimple_build_omp_interop (tree clauses)
1287 : : {
1288 : 612 : gimple *p = gimple_alloc (GIMPLE_OMP_INTEROP, 0);
1289 : 612 : gimple_omp_interop_set_clauses (p, clauses);
1290 : :
1291 : 612 : return p;
1292 : : }
1293 : :
1294 : : /* Build a GIMPLE_OMP_TARGET statement.
1295 : :
1296 : : BODY is the sequence of statements that will be executed.
1297 : : KIND is the kind of the region.
1298 : : CLAUSES are any of the construct's clauses. */
1299 : :
1300 : : gomp_target *
1301 : 41720 : gimple_build_omp_target (gimple_seq body, int kind, tree clauses)
1302 : : {
1303 : 41720 : gomp_target *p
1304 : 41720 : = as_a <gomp_target *> (gimple_alloc (GIMPLE_OMP_TARGET, 0));
1305 : 41720 : if (body)
1306 : 28371 : gimple_omp_set_body (p, body);
1307 : 41720 : gimple_omp_target_set_clauses (p, clauses);
1308 : 41720 : gimple_omp_target_set_kind (p, kind);
1309 : :
1310 : 41720 : return p;
1311 : : }
1312 : :
1313 : :
1314 : : /* Build a GIMPLE_OMP_TEAMS statement.
1315 : :
1316 : : BODY is the sequence of statements that will be executed.
1317 : : CLAUSES are any of the OMP teams construct's clauses. */
1318 : :
1319 : : gomp_teams *
1320 : 8813 : gimple_build_omp_teams (gimple_seq body, tree clauses)
1321 : : {
1322 : 8813 : gomp_teams *p = as_a <gomp_teams *> (gimple_alloc (GIMPLE_OMP_TEAMS, 0));
1323 : 8813 : if (body)
1324 : 8813 : gimple_omp_set_body (p, body);
1325 : 8813 : gimple_omp_teams_set_clauses (p, clauses);
1326 : :
1327 : 8813 : return p;
1328 : : }
1329 : :
1330 : :
1331 : : /* Build a GIMPLE_OMP_ATOMIC_LOAD statement. */
1332 : :
1333 : : gomp_atomic_load *
1334 : 10317 : gimple_build_omp_atomic_load (tree lhs, tree rhs, enum omp_memory_order mo)
1335 : : {
1336 : 10317 : gomp_atomic_load *p
1337 : 10317 : = as_a <gomp_atomic_load *> (gimple_alloc (GIMPLE_OMP_ATOMIC_LOAD, 0));
1338 : 10317 : gimple_omp_atomic_load_set_lhs (p, lhs);
1339 : 10317 : gimple_omp_atomic_load_set_rhs (p, rhs);
1340 : 10317 : gimple_omp_atomic_set_memory_order (p, mo);
1341 : 10317 : return p;
1342 : : }
1343 : :
1344 : : /* Build a GIMPLE_OMP_ATOMIC_STORE statement.
1345 : :
1346 : : VAL is the value we are storing. */
1347 : :
1348 : : gomp_atomic_store *
1349 : 10317 : gimple_build_omp_atomic_store (tree val, enum omp_memory_order mo)
1350 : : {
1351 : 10317 : gomp_atomic_store *p
1352 : 10317 : = as_a <gomp_atomic_store *> (gimple_alloc (GIMPLE_OMP_ATOMIC_STORE, 0));
1353 : 10317 : gimple_omp_atomic_store_set_val (p, val);
1354 : 10317 : gimple_omp_atomic_set_memory_order (p, mo);
1355 : 10317 : return p;
1356 : : }
1357 : :
1358 : : /* Build a GIMPLE_ASSUME statement. */
1359 : :
1360 : : gimple *
1361 : 124 : gimple_build_assume (tree guard, gimple_seq body)
1362 : : {
1363 : 124 : gimple_statement_assume *p
1364 : 124 : = as_a <gimple_statement_assume *> (gimple_alloc (GIMPLE_ASSUME, 0));
1365 : 124 : gimple_assume_set_guard (p, guard);
1366 : 124 : *gimple_assume_body_ptr (p) = body;
1367 : 124 : return p;
1368 : : }
1369 : :
1370 : : /* Build a GIMPLE_TRANSACTION statement. */
1371 : :
1372 : : gtransaction *
1373 : 545 : gimple_build_transaction (gimple_seq body)
1374 : : {
1375 : 545 : gtransaction *p
1376 : 545 : = as_a <gtransaction *> (gimple_alloc (GIMPLE_TRANSACTION, 0));
1377 : 545 : gimple_transaction_set_body (p, body);
1378 : 545 : gimple_transaction_set_label_norm (p, 0);
1379 : 545 : gimple_transaction_set_label_uninst (p, 0);
1380 : 545 : gimple_transaction_set_label_over (p, 0);
1381 : 545 : return p;
1382 : : }
1383 : :
1384 : : #if defined ENABLE_GIMPLE_CHECKING
1385 : : /* Complain of a gimple type mismatch and die. */
1386 : :
1387 : : void
1388 : 0 : gimple_check_failed (const gimple *gs, const char *file, int line,
1389 : : const char *function, enum gimple_code code,
1390 : : enum tree_code subcode)
1391 : : {
1392 : 0 : internal_error ("gimple check: expected %s(%s), have %s(%s) in %s, at %s:%d",
1393 : 0 : gimple_code_name[code],
1394 : : get_tree_code_name (subcode),
1395 : 0 : gimple_code_name[gimple_code (gs)],
1396 : 0 : gs->subcode > 0
1397 : 0 : ? get_tree_code_name ((enum tree_code) gs->subcode)
1398 : : : "",
1399 : : function, trim_filename (file), line);
1400 : : }
1401 : : #endif /* ENABLE_GIMPLE_CHECKING */
1402 : :
1403 : :
1404 : : /* Link gimple statement GS to the end of the sequence *SEQ_P. If
1405 : : *SEQ_P is NULL, a new sequence is allocated. */
1406 : :
1407 : : void
1408 : 46032162 : gimple_seq_add_stmt (gimple_seq *seq_p, gimple *gs)
1409 : : {
1410 : 46032162 : gimple_stmt_iterator si;
1411 : 46032162 : if (gs == NULL)
1412 : 0 : return;
1413 : :
1414 : 46032162 : si = gsi_last (*seq_p);
1415 : 46032162 : gsi_insert_after (&si, gs, GSI_NEW_STMT);
1416 : : }
1417 : :
1418 : : /* Link gimple statement GS to the end of the sequence *SEQ_P. If
1419 : : *SEQ_P is NULL, a new sequence is allocated. This function is
1420 : : similar to gimple_seq_add_stmt, but does not scan the operands.
1421 : : During gimplification, we need to manipulate statement sequences
1422 : : before the def/use vectors have been constructed. */
1423 : :
1424 : : void
1425 : 180101987 : gimple_seq_add_stmt_without_update (gimple_seq *seq_p, gimple *gs)
1426 : : {
1427 : 180101987 : gimple_stmt_iterator si;
1428 : :
1429 : 180101987 : if (gs == NULL)
1430 : 0 : return;
1431 : :
1432 : 180101987 : si = gsi_last (*seq_p);
1433 : 180101987 : gsi_insert_after_without_update (&si, gs, GSI_NEW_STMT);
1434 : : }
1435 : :
1436 : : /* Append sequence SRC to the end of sequence *DST_P. If *DST_P is
1437 : : NULL, a new sequence is allocated. */
1438 : :
1439 : : void
1440 : 15924794 : gimple_seq_add_seq (gimple_seq *dst_p, gimple_seq src)
1441 : : {
1442 : 15924794 : gimple_stmt_iterator si;
1443 : 15924794 : if (src == NULL)
1444 : 4473992 : return;
1445 : :
1446 : 11450802 : si = gsi_last (*dst_p);
1447 : 11450802 : gsi_insert_seq_after (&si, src, GSI_NEW_STMT);
1448 : : }
1449 : :
1450 : : /* Append sequence SRC to the end of sequence *DST_P. If *DST_P is
1451 : : NULL, a new sequence is allocated. This function is
1452 : : similar to gimple_seq_add_seq, but does not scan the operands. */
1453 : :
1454 : : void
1455 : 264711 : gimple_seq_add_seq_without_update (gimple_seq *dst_p, gimple_seq src)
1456 : : {
1457 : 264711 : gimple_stmt_iterator si;
1458 : 264711 : if (src == NULL)
1459 : 97070 : return;
1460 : :
1461 : 167641 : si = gsi_last (*dst_p);
1462 : 167641 : gsi_insert_seq_after_without_update (&si, src, GSI_NEW_STMT);
1463 : : }
1464 : :
1465 : : /* Determine whether to assign a location to the statement GS. */
1466 : :
1467 : : static bool
1468 : 266316862 : should_carry_location_p (gimple *gs)
1469 : : {
1470 : : /* Don't emit a line note for a label. We particularly don't want to
1471 : : emit one for the break label, since it doesn't actually correspond
1472 : : to the beginning of the loop/switch. */
1473 : 266316862 : if (gimple_code (gs) == GIMPLE_LABEL)
1474 : 0 : return false;
1475 : :
1476 : : return true;
1477 : : }
1478 : :
1479 : : /* Set the location for gimple statement GS to LOCATION. */
1480 : :
1481 : : static void
1482 : 673049609 : annotate_one_with_location (gimple *gs, location_t location)
1483 : : {
1484 : 673049609 : if (!gimple_has_location (gs)
1485 : 335609401 : && !gimple_do_not_emit_location_p (gs)
1486 : 673049609 : && should_carry_location_p (gs))
1487 : 25554281 : gimple_set_location (gs, location);
1488 : 673049609 : }
1489 : :
1490 : : /* Set LOCATION for all the statements after iterator GSI in sequence
1491 : : SEQ. If GSI is pointing to the end of the sequence, start with the
1492 : : first statement in SEQ. */
1493 : :
1494 : : void
1495 : 98693145 : annotate_all_with_location_after (gimple_seq seq, gimple_stmt_iterator gsi,
1496 : : location_t location)
1497 : : {
1498 : 98693145 : if (gsi_end_p (gsi))
1499 : 34700580 : gsi = gsi_start (seq);
1500 : : else
1501 : 63992565 : gsi_next (&gsi);
1502 : :
1503 : 771470808 : for (; !gsi_end_p (gsi); gsi_next (&gsi))
1504 : 672777663 : annotate_one_with_location (gsi_stmt (gsi), location);
1505 : 98693145 : }
1506 : :
1507 : : /* Set the location for all the statements in a sequence STMT_P to LOCATION. */
1508 : :
1509 : : void
1510 : 180058 : annotate_all_with_location (gimple_seq stmt_p, location_t location)
1511 : : {
1512 : 180058 : gimple_stmt_iterator i;
1513 : :
1514 : 180058 : if (gimple_seq_empty_p (stmt_p))
1515 : 180058 : return;
1516 : :
1517 : 444562 : for (i = gsi_start (stmt_p); !gsi_end_p (i); gsi_next (&i))
1518 : : {
1519 : 271946 : gimple *gs = gsi_stmt (i);
1520 : 271946 : annotate_one_with_location (gs, location);
1521 : : }
1522 : : }
1523 : :
1524 : : /* Helper function of empty_body_p. Return true if STMT is an empty
1525 : : statement. */
1526 : :
1527 : : static bool
1528 : 36412 : empty_stmt_p (gimple *stmt)
1529 : : {
1530 : 36412 : if (gimple_code (stmt) == GIMPLE_NOP)
1531 : : return true;
1532 : 36410 : if (gbind *bind_stmt = dyn_cast <gbind *> (stmt))
1533 : 21508 : return empty_body_p (gimple_bind_body (bind_stmt));
1534 : : return false;
1535 : : }
1536 : :
1537 : :
1538 : : /* Return true if BODY contains nothing but empty statements. */
1539 : :
1540 : : bool
1541 : 36485 : empty_body_p (gimple_seq body)
1542 : : {
1543 : 36485 : gimple_stmt_iterator i;
1544 : :
1545 : 36485 : if (gimple_seq_empty_p (body))
1546 : : return true;
1547 : 36589 : for (i = gsi_start (body); !gsi_end_p (i); gsi_next (&i))
1548 : 36412 : if (!empty_stmt_p (gsi_stmt (i))
1549 : 36412 : && !is_gimple_debug (gsi_stmt (i)))
1550 : : return false;
1551 : :
1552 : : return true;
1553 : : }
1554 : :
1555 : :
1556 : : /* Perform a deep copy of sequence SRC and return the result. */
1557 : :
1558 : : gimple_seq
1559 : 1868774 : gimple_seq_copy (gimple_seq src)
1560 : : {
1561 : 1868774 : gimple_stmt_iterator gsi;
1562 : 1868774 : gimple_seq new_seq = NULL;
1563 : 1868774 : gimple *stmt;
1564 : :
1565 : 4196230 : for (gsi = gsi_start (src); !gsi_end_p (gsi); gsi_next (&gsi))
1566 : : {
1567 : 2327456 : stmt = gimple_copy (gsi_stmt (gsi));
1568 : 2327456 : gimple_seq_add_stmt (&new_seq, stmt);
1569 : : }
1570 : :
1571 : 1868774 : return new_seq;
1572 : : }
1573 : :
1574 : :
1575 : :
1576 : : /* Return true if calls C1 and C2 are known to go to the same function. */
1577 : :
1578 : : bool
1579 : 1005731 : gimple_call_same_target_p (const gimple *c1, const gimple *c2)
1580 : : {
1581 : 1005731 : if (gimple_call_internal_p (c1))
1582 : 371 : return (gimple_call_internal_p (c2)
1583 : 371 : && gimple_call_internal_fn (c1) == gimple_call_internal_fn (c2)
1584 : 742 : && (!gimple_call_internal_unique_p (as_a <const gcall *> (c1))
1585 : 0 : || c1 == c2));
1586 : : else
1587 : 1005360 : return (gimple_call_fn (c1) == gimple_call_fn (c2)
1588 : 1005360 : || (gimple_call_fndecl (c1)
1589 : 1004889 : && gimple_call_fndecl (c1) == gimple_call_fndecl (c2)));
1590 : : }
1591 : :
1592 : : /* Detect flags from a GIMPLE_CALL. This is just like
1593 : : call_expr_flags, but for gimple tuples. */
1594 : :
1595 : : int
1596 : 4160001390 : gimple_call_flags (const gimple *stmt)
1597 : : {
1598 : 4160001390 : int flags = 0;
1599 : :
1600 : 4160001390 : if (gimple_call_internal_p (stmt))
1601 : 80946664 : flags = internal_fn_flags (gimple_call_internal_fn (stmt));
1602 : : else
1603 : : {
1604 : 4079054726 : tree decl = gimple_call_fndecl (stmt);
1605 : 4079054726 : if (decl)
1606 : 3951310950 : flags = flags_from_decl_or_type (decl);
1607 : 4079054726 : flags |= flags_from_decl_or_type (gimple_call_fntype (stmt));
1608 : : }
1609 : :
1610 : 4160001390 : if (stmt->subcode & GF_CALL_NOTHROW)
1611 : 728597119 : flags |= ECF_NOTHROW;
1612 : 4160001390 : if (stmt->subcode & GF_CALL_XTHROW)
1613 : 10895583 : flags |= ECF_XTHROW;
1614 : :
1615 : 4160001390 : if (stmt->subcode & GF_CALL_BY_DESCRIPTOR)
1616 : 0 : flags |= ECF_BY_DESCRIPTOR;
1617 : :
1618 : 4160001390 : return flags;
1619 : : }
1620 : :
1621 : : /* Return the "fn spec" string for call STMT. */
1622 : :
1623 : : attr_fnspec
1624 : 422614985 : gimple_call_fnspec (const gcall *stmt)
1625 : : {
1626 : 422614985 : tree type, attr;
1627 : :
1628 : 422614985 : if (gimple_call_internal_p (stmt))
1629 : : {
1630 : 7430999 : const_tree spec = internal_fn_fnspec (gimple_call_internal_fn (stmt));
1631 : 7430999 : if (spec)
1632 : 301651 : return spec;
1633 : : else
1634 : 7129348 : return "";
1635 : : }
1636 : :
1637 : 415183986 : type = gimple_call_fntype (stmt);
1638 : 415183986 : if (type)
1639 : : {
1640 : 415183986 : attr = lookup_attribute ("fn spec", TYPE_ATTRIBUTES (type));
1641 : 415183986 : if (attr)
1642 : 56889708 : return TREE_VALUE (TREE_VALUE (attr));
1643 : : }
1644 : 358294278 : if (gimple_call_builtin_p (stmt, BUILT_IN_NORMAL))
1645 : 106886218 : return builtin_fnspec (gimple_call_fndecl (stmt));
1646 : 251408060 : tree fndecl = gimple_call_fndecl (stmt);
1647 : : /* If the call is to a replaceable operator delete and results
1648 : : from a delete expression as opposed to a direct call to
1649 : : such operator, then we can treat it as free. */
1650 : 251408060 : if (fndecl
1651 : 237631744 : && DECL_IS_OPERATOR_DELETE_P (fndecl)
1652 : 5670012 : && DECL_IS_REPLACEABLE_OPERATOR (fndecl)
1653 : 257073662 : && gimple_call_from_new_or_delete (stmt))
1654 : : {
1655 : 5584540 : if (flag_assume_sane_operators_new_delete)
1656 : 5583235 : return ".co ";
1657 : : else
1658 : 1305 : return ". o ";
1659 : : }
1660 : : /* Similarly operator new can be treated as malloc. */
1661 : 245823520 : if (fndecl
1662 : 232047204 : && DECL_IS_REPLACEABLE_OPERATOR_NEW_P (fndecl)
1663 : 247739958 : && gimple_call_from_new_or_delete (stmt))
1664 : : {
1665 : 1864634 : if (flag_assume_sane_operators_new_delete)
1666 : 1863666 : return "mC";
1667 : : else
1668 : 968 : return "m ";
1669 : : }
1670 : 243958886 : return "";
1671 : : }
1672 : :
1673 : : /* Detects argument flags for argument number ARG on call STMT. */
1674 : :
1675 : : int
1676 : 117949397 : gimple_call_arg_flags (const gcall *stmt, unsigned arg)
1677 : : {
1678 : 117949397 : attr_fnspec fnspec = gimple_call_fnspec (stmt);
1679 : 117949397 : int flags = 0;
1680 : :
1681 : 117949397 : if (fnspec.known_p ())
1682 : 21831262 : flags = fnspec.arg_eaf_flags (arg);
1683 : 117949397 : tree callee = gimple_call_fndecl (stmt);
1684 : 117949397 : if (callee)
1685 : : {
1686 : 111505191 : cgraph_node *node = cgraph_node::get (callee);
1687 : 111505191 : modref_summary *summary = node ? get_modref_function_summary (node)
1688 : : : NULL;
1689 : :
1690 : 111314194 : if (summary && summary->arg_flags.length () > arg)
1691 : : {
1692 : 20639192 : int modref_flags = summary->arg_flags[arg];
1693 : :
1694 : : /* We have possibly optimized out load. Be conservative here. */
1695 : 20639192 : if (!node->binds_to_current_def_p ())
1696 : 10064629 : modref_flags = interposable_eaf_flags (modref_flags, flags);
1697 : 20639192 : if (dbg_cnt (ipa_mod_ref_pta))
1698 : 20639192 : flags |= modref_flags;
1699 : : }
1700 : : }
1701 : 117949397 : return flags;
1702 : : }
1703 : :
1704 : : /* Detects argument flags for return slot on call STMT. */
1705 : :
1706 : : int
1707 : 113063 : gimple_call_retslot_flags (const gcall *stmt)
1708 : : {
1709 : 113063 : int flags = implicit_retslot_eaf_flags;
1710 : :
1711 : 113063 : tree callee = gimple_call_fndecl (stmt);
1712 : 113063 : if (callee)
1713 : : {
1714 : 101192 : cgraph_node *node = cgraph_node::get (callee);
1715 : 101192 : modref_summary *summary = node ? get_modref_function_summary (node)
1716 : : : NULL;
1717 : :
1718 : 101192 : if (summary)
1719 : : {
1720 : 61204 : int modref_flags = summary->retslot_flags;
1721 : :
1722 : : /* We have possibly optimized out load. Be conservative here. */
1723 : 61204 : if (!node->binds_to_current_def_p ())
1724 : 53086 : modref_flags = interposable_eaf_flags (modref_flags, flags);
1725 : 61204 : if (dbg_cnt (ipa_mod_ref_pta))
1726 : 61204 : flags |= modref_flags;
1727 : : }
1728 : : }
1729 : 113063 : return flags;
1730 : : }
1731 : :
1732 : : /* Detects argument flags for static chain on call STMT. */
1733 : :
1734 : : int
1735 : 179200 : gimple_call_static_chain_flags (const gcall *stmt)
1736 : : {
1737 : 179200 : int flags = 0;
1738 : :
1739 : 179200 : tree callee = gimple_call_fndecl (stmt);
1740 : 179200 : if (callee)
1741 : : {
1742 : 27549 : cgraph_node *node = cgraph_node::get (callee);
1743 : 27549 : modref_summary *summary = node ? get_modref_function_summary (node)
1744 : : : NULL;
1745 : :
1746 : : /* Nested functions should always bind to current def since
1747 : : there is no public ABI for them. */
1748 : 27549 : gcc_checking_assert (node->binds_to_current_def_p ());
1749 : 27549 : if (summary)
1750 : : {
1751 : 25791 : int modref_flags = summary->static_chain_flags;
1752 : :
1753 : 25791 : if (dbg_cnt (ipa_mod_ref_pta))
1754 : 179200 : flags |= modref_flags;
1755 : : }
1756 : : }
1757 : 179200 : return flags;
1758 : : }
1759 : :
1760 : : /* Detects return flags for the call STMT. */
1761 : :
1762 : : int
1763 : 47695704 : gimple_call_return_flags (const gcall *stmt)
1764 : : {
1765 : 47695704 : if (gimple_call_flags (stmt) & ECF_MALLOC)
1766 : : return ERF_NOALIAS;
1767 : :
1768 : 46131376 : attr_fnspec fnspec = gimple_call_fnspec (stmt);
1769 : :
1770 : 46131376 : unsigned int arg_no;
1771 : 46131376 : if (fnspec.returns_arg (&arg_no))
1772 : 964084 : return ERF_RETURNS_ARG | arg_no;
1773 : :
1774 : 45167292 : if (fnspec.returns_noalias_p ())
1775 : : return ERF_NOALIAS;
1776 : : return 0;
1777 : : }
1778 : :
1779 : :
1780 : : /* Return true if call STMT is known to return a non-zero result. */
1781 : :
1782 : : bool
1783 : 12483105 : gimple_call_nonnull_result_p (gcall *call)
1784 : : {
1785 : 12483105 : tree fndecl = gimple_call_fndecl (call);
1786 : 12483105 : if (!fndecl)
1787 : : return false;
1788 : 11547360 : if (flag_delete_null_pointer_checks && !flag_check_new
1789 : 11547311 : && DECL_IS_OPERATOR_NEW_P (fndecl)
1790 : 11880311 : && !TREE_NOTHROW (fndecl))
1791 : : return true;
1792 : :
1793 : : /* References are always non-NULL. */
1794 : 11229452 : if (flag_delete_null_pointer_checks
1795 : 11229452 : && TREE_CODE (TREE_TYPE (fndecl)) == REFERENCE_TYPE)
1796 : : return true;
1797 : :
1798 : 11229452 : if (flag_delete_null_pointer_checks
1799 : 22452620 : && lookup_attribute ("returns_nonnull",
1800 : 11223168 : TYPE_ATTRIBUTES (gimple_call_fntype (call))))
1801 : : return true;
1802 : 11164516 : return gimple_alloca_call_p (call);
1803 : : }
1804 : :
1805 : :
1806 : : /* If CALL returns a non-null result in an argument, return that arg. */
1807 : :
1808 : : tree
1809 : 12031675 : gimple_call_nonnull_arg (gcall *call)
1810 : : {
1811 : 12031675 : tree fndecl = gimple_call_fndecl (call);
1812 : 12031675 : if (!fndecl)
1813 : : return NULL_TREE;
1814 : :
1815 : 11102214 : unsigned rf = gimple_call_return_flags (call);
1816 : 11102214 : if (rf & ERF_RETURNS_ARG)
1817 : : {
1818 : 0 : unsigned argnum = rf & ERF_RETURN_ARG_MASK;
1819 : 0 : if (argnum < gimple_call_num_args (call))
1820 : : {
1821 : 0 : tree arg = gimple_call_arg (call, argnum);
1822 : 0 : if (SSA_VAR_P (arg)
1823 : 0 : && infer_nonnull_range_by_attribute (call, arg))
1824 : : return arg;
1825 : : }
1826 : : }
1827 : : return NULL_TREE;
1828 : : }
1829 : :
1830 : :
1831 : : /* Return true if GS is a copy assignment. */
1832 : :
1833 : : bool
1834 : 195781742 : gimple_assign_copy_p (gimple *gs)
1835 : : {
1836 : 195781742 : return (gimple_assign_single_p (gs)
1837 : 195781742 : && is_gimple_val (gimple_op (gs, 1)));
1838 : : }
1839 : :
1840 : :
1841 : : /* Return true if GS is a SSA_NAME copy assignment. */
1842 : :
1843 : : bool
1844 : 39797148 : gimple_assign_ssa_name_copy_p (gimple *gs)
1845 : : {
1846 : 39797148 : return (gimple_assign_single_p (gs)
1847 : 22658377 : && TREE_CODE (gimple_assign_lhs (gs)) == SSA_NAME
1848 : 52832146 : && TREE_CODE (gimple_assign_rhs1 (gs)) == SSA_NAME);
1849 : : }
1850 : :
1851 : :
1852 : : /* Return true if GS is an assignment with a unary RHS, but the
1853 : : operator has no effect on the assigned value. The logic is adapted
1854 : : from STRIP_NOPS. This predicate is intended to be used in tuplifying
1855 : : instances in which STRIP_NOPS was previously applied to the RHS of
1856 : : an assignment.
1857 : :
1858 : : NOTE: In the use cases that led to the creation of this function
1859 : : and of gimple_assign_single_p, it is typical to test for either
1860 : : condition and to proceed in the same manner. In each case, the
1861 : : assigned value is represented by the single RHS operand of the
1862 : : assignment. I suspect there may be cases where gimple_assign_copy_p,
1863 : : gimple_assign_single_p, or equivalent logic is used where a similar
1864 : : treatment of unary NOPs is appropriate. */
1865 : :
1866 : : bool
1867 : 60550 : gimple_assign_unary_nop_p (gimple *gs)
1868 : : {
1869 : 60550 : return (is_gimple_assign (gs)
1870 : 60550 : && (CONVERT_EXPR_CODE_P (gimple_assign_rhs_code (gs))
1871 : 51727 : || gimple_assign_rhs_code (gs) == NON_LVALUE_EXPR)
1872 : 8823 : && gimple_assign_rhs1 (gs) != error_mark_node
1873 : 78196 : && (TYPE_MODE (TREE_TYPE (gimple_assign_lhs (gs)))
1874 : 8823 : == TYPE_MODE (TREE_TYPE (gimple_assign_rhs1 (gs)))));
1875 : : }
1876 : :
1877 : : /* Return true if GS is an assignment that loads from its rhs1. */
1878 : :
1879 : : bool
1880 : 617192006 : gimple_assign_load_p (const gimple *gs)
1881 : : {
1882 : 617192006 : tree rhs;
1883 : 617192006 : if (!gimple_assign_single_p (gs))
1884 : : return false;
1885 : 354424855 : rhs = gimple_assign_rhs1 (gs);
1886 : 354424855 : if (TREE_CODE (rhs) == WITH_SIZE_EXPR)
1887 : : return true;
1888 : 354424851 : if (handled_component_p (rhs))
1889 : 106205851 : rhs = TREE_OPERAND (rhs, 0);
1890 : 354424851 : return (handled_component_p (rhs)
1891 : 323812289 : || DECL_P (rhs)
1892 : 259255705 : || TREE_CODE (rhs) == MEM_REF
1893 : 181766600 : || TREE_CODE (rhs) == TARGET_MEM_REF);
1894 : : }
1895 : :
1896 : :
1897 : : /* Set BB to be the basic block holding G. */
1898 : :
1899 : : void
1900 : 696112003 : gimple_set_bb (gimple *stmt, basic_block bb)
1901 : : {
1902 : 696112003 : stmt->bb = bb;
1903 : :
1904 : 696112003 : if (gimple_code (stmt) != GIMPLE_LABEL)
1905 : : return;
1906 : :
1907 : : /* If the statement is a label, add the label to block-to-labels map
1908 : : so that we can speed up edge creation for GIMPLE_GOTOs. */
1909 : 38321266 : if (cfun->cfg)
1910 : : {
1911 : 38321046 : tree t;
1912 : 38321046 : int uid;
1913 : :
1914 : 38321046 : t = gimple_label_label (as_a <glabel *> (stmt));
1915 : 38321046 : uid = LABEL_DECL_UID (t);
1916 : 38321046 : if (uid == -1)
1917 : : {
1918 : 19546357 : unsigned old_len =
1919 : 19546357 : vec_safe_length (label_to_block_map_for_fn (cfun));
1920 : 19546357 : LABEL_DECL_UID (t) = uid = cfun->cfg->last_label_uid++;
1921 : 19546357 : if (old_len <= (unsigned) uid)
1922 : 9414396 : vec_safe_grow_cleared (label_to_block_map_for_fn (cfun), uid + 1);
1923 : : }
1924 : :
1925 : 38321046 : (*label_to_block_map_for_fn (cfun))[uid] = bb;
1926 : : }
1927 : : }
1928 : :
1929 : :
1930 : : /* Modify the RHS of the assignment pointed-to by GSI using the
1931 : : operands in the expression tree EXPR.
1932 : :
1933 : : NOTE: The statement pointed-to by GSI may be reallocated if it
1934 : : did not have enough operand slots.
1935 : :
1936 : : This function is useful to convert an existing tree expression into
1937 : : the flat representation used for the RHS of a GIMPLE assignment.
1938 : : It will reallocate memory as needed to expand or shrink the number
1939 : : of operand slots needed to represent EXPR.
1940 : :
1941 : : NOTE: If you find yourself building a tree and then calling this
1942 : : function, you are most certainly doing it the slow way. It is much
1943 : : better to build a new assignment or to use the function
1944 : : gimple_assign_set_rhs_with_ops, which does not require an
1945 : : expression tree to be built. */
1946 : :
1947 : : void
1948 : 4730985 : gimple_assign_set_rhs_from_tree (gimple_stmt_iterator *gsi, tree expr)
1949 : : {
1950 : 4730985 : enum tree_code subcode;
1951 : 4730985 : tree op1, op2, op3;
1952 : :
1953 : 4730985 : extract_ops_from_tree (expr, &subcode, &op1, &op2, &op3);
1954 : 4730985 : gimple_assign_set_rhs_with_ops (gsi, subcode, op1, op2, op3);
1955 : 4730985 : }
1956 : :
1957 : :
1958 : : /* Set the RHS of assignment statement pointed-to by GSI to CODE with
1959 : : operands OP1, OP2 and OP3.
1960 : :
1961 : : NOTE: The statement pointed-to by GSI may be reallocated if it
1962 : : did not have enough operand slots. */
1963 : :
1964 : : void
1965 : 7148028 : gimple_assign_set_rhs_with_ops (gimple_stmt_iterator *gsi, enum tree_code code,
1966 : : tree op1, tree op2, tree op3)
1967 : : {
1968 : 7148028 : unsigned new_rhs_ops = get_gimple_rhs_num_ops (code);
1969 : 7148028 : gimple *stmt = gsi_stmt (*gsi);
1970 : 7148028 : gimple *old_stmt = stmt;
1971 : :
1972 : : /* If the new CODE needs more operands, allocate a new statement. */
1973 : 7148028 : if (gimple_num_ops (stmt) < new_rhs_ops + 1)
1974 : : {
1975 : 194579 : tree lhs = gimple_assign_lhs (old_stmt);
1976 : 194579 : stmt = gimple_alloc (gimple_code (old_stmt), new_rhs_ops + 1);
1977 : 194579 : memcpy (stmt, old_stmt, gimple_size (gimple_code (old_stmt)));
1978 : 194579 : gimple_init_singleton (stmt);
1979 : :
1980 : : /* The LHS needs to be reset as this also changes the SSA name
1981 : : on the LHS. */
1982 : 194579 : gimple_assign_set_lhs (stmt, lhs);
1983 : : }
1984 : :
1985 : 7148028 : gimple_set_num_ops (stmt, new_rhs_ops + 1);
1986 : 7148028 : gimple_set_subcode (stmt, code);
1987 : 7148028 : gimple_assign_set_rhs1 (stmt, op1);
1988 : 7148028 : if (new_rhs_ops > 1)
1989 : 1070008 : gimple_assign_set_rhs2 (stmt, op2);
1990 : 1070008 : if (new_rhs_ops > 2)
1991 : 33033 : gimple_assign_set_rhs3 (stmt, op3);
1992 : 7148028 : if (stmt != old_stmt)
1993 : 194579 : gsi_replace (gsi, stmt, false);
1994 : 7148028 : }
1995 : :
1996 : :
1997 : : /* Return the LHS of a statement that performs an assignment,
1998 : : either a GIMPLE_ASSIGN or a GIMPLE_CALL. Returns NULL_TREE
1999 : : for a call to a function that returns no value, or for a
2000 : : statement other than an assignment or a call. */
2001 : :
2002 : : tree
2003 : 6367856558 : gimple_get_lhs (const gimple *stmt)
2004 : : {
2005 : 6367856558 : enum gimple_code code = gimple_code (stmt);
2006 : :
2007 : 6367856558 : if (code == GIMPLE_ASSIGN)
2008 : 4047872536 : return gimple_assign_lhs (stmt);
2009 : 2319984022 : else if (code == GIMPLE_CALL)
2010 : 465826163 : return gimple_call_lhs (stmt);
2011 : 1854157859 : else if (code == GIMPLE_PHI)
2012 : 144463910 : return gimple_phi_result (stmt);
2013 : : else
2014 : : return NULL_TREE;
2015 : : }
2016 : :
2017 : :
2018 : : /* Set the LHS of a statement that performs an assignment,
2019 : : either a GIMPLE_ASSIGN or a GIMPLE_CALL. */
2020 : :
2021 : : void
2022 : 2122567 : gimple_set_lhs (gimple *stmt, tree lhs)
2023 : : {
2024 : 2122567 : enum gimple_code code = gimple_code (stmt);
2025 : :
2026 : 2122567 : if (code == GIMPLE_ASSIGN)
2027 : 998696 : gimple_assign_set_lhs (stmt, lhs);
2028 : 1123871 : else if (code == GIMPLE_CALL)
2029 : 1123871 : gimple_call_set_lhs (stmt, lhs);
2030 : : else
2031 : 0 : gcc_unreachable ();
2032 : 2122567 : }
2033 : :
2034 : :
2035 : : /* Return a deep copy of statement STMT. All the operands from STMT
2036 : : are reallocated and copied using unshare_expr. The DEF, USE, VDEF
2037 : : and VUSE operand arrays are set to empty in the new copy. The new
2038 : : copy isn't part of any sequence. */
2039 : :
2040 : : gimple *
2041 : 65700339 : gimple_copy (gimple *stmt)
2042 : : {
2043 : 65700339 : enum gimple_code code = gimple_code (stmt);
2044 : 65700339 : unsigned num_ops = gimple_num_ops (stmt);
2045 : 65700339 : gimple *copy = gimple_alloc (code, num_ops);
2046 : 65700339 : unsigned i;
2047 : :
2048 : : /* Shallow copy all the fields from STMT. */
2049 : 65700339 : memcpy (copy, stmt, gimple_size (code));
2050 : 65700339 : gimple_init_singleton (copy);
2051 : :
2052 : : /* If STMT has sub-statements, deep-copy them as well. */
2053 : 65700339 : if (gimple_has_substatements (stmt))
2054 : : {
2055 : 42320 : gimple_seq new_seq;
2056 : 42320 : tree t;
2057 : :
2058 : 42320 : switch (gimple_code (stmt))
2059 : : {
2060 : 349 : case GIMPLE_BIND:
2061 : 349 : {
2062 : 349 : gbind *bind_stmt = as_a <gbind *> (stmt);
2063 : 349 : gbind *bind_copy = as_a <gbind *> (copy);
2064 : 349 : new_seq = gimple_seq_copy (gimple_bind_body (bind_stmt));
2065 : 349 : gimple_bind_set_body (bind_copy, new_seq);
2066 : 349 : gimple_bind_set_vars (bind_copy,
2067 : : unshare_expr (gimple_bind_vars (bind_stmt)));
2068 : 349 : gimple_bind_set_block (bind_copy, gimple_bind_block (bind_stmt));
2069 : : }
2070 : 349 : break;
2071 : :
2072 : 17498 : case GIMPLE_CATCH:
2073 : 17498 : {
2074 : 17498 : gcatch *catch_stmt = as_a <gcatch *> (stmt);
2075 : 17498 : gcatch *catch_copy = as_a <gcatch *> (copy);
2076 : 17498 : new_seq = gimple_seq_copy (gimple_catch_handler (catch_stmt));
2077 : 17498 : gimple_catch_set_handler (catch_copy, new_seq);
2078 : 17498 : t = unshare_expr (gimple_catch_types (catch_stmt));
2079 : 17498 : gimple_catch_set_types (catch_copy, t);
2080 : : }
2081 : 17498 : break;
2082 : :
2083 : 0 : case GIMPLE_EH_FILTER:
2084 : 0 : {
2085 : 0 : geh_filter *eh_filter_stmt = as_a <geh_filter *> (stmt);
2086 : 0 : geh_filter *eh_filter_copy = as_a <geh_filter *> (copy);
2087 : 0 : new_seq
2088 : 0 : = gimple_seq_copy (gimple_eh_filter_failure (eh_filter_stmt));
2089 : 0 : gimple_eh_filter_set_failure (eh_filter_copy, new_seq);
2090 : 0 : t = unshare_expr (gimple_eh_filter_types (eh_filter_stmt));
2091 : 0 : gimple_eh_filter_set_types (eh_filter_copy, t);
2092 : : }
2093 : 0 : break;
2094 : :
2095 : 273 : case GIMPLE_EH_ELSE:
2096 : 273 : {
2097 : 273 : geh_else *eh_else_stmt = as_a <geh_else *> (stmt);
2098 : 273 : geh_else *eh_else_copy = as_a <geh_else *> (copy);
2099 : 273 : new_seq = gimple_seq_copy (gimple_eh_else_n_body (eh_else_stmt));
2100 : 273 : gimple_eh_else_set_n_body (eh_else_copy, new_seq);
2101 : 273 : new_seq = gimple_seq_copy (gimple_eh_else_e_body (eh_else_stmt));
2102 : 273 : gimple_eh_else_set_e_body (eh_else_copy, new_seq);
2103 : : }
2104 : 273 : break;
2105 : :
2106 : 23938 : case GIMPLE_TRY:
2107 : 23938 : {
2108 : 23938 : gtry *try_stmt = as_a <gtry *> (stmt);
2109 : 23938 : gtry *try_copy = as_a <gtry *> (copy);
2110 : 23938 : new_seq = gimple_seq_copy (gimple_try_eval (try_stmt));
2111 : 23938 : gimple_try_set_eval (try_copy, new_seq);
2112 : 23938 : new_seq = gimple_seq_copy (gimple_try_cleanup (try_stmt));
2113 : 23938 : gimple_try_set_cleanup (try_copy, new_seq);
2114 : : }
2115 : 23938 : break;
2116 : :
2117 : 256 : case GIMPLE_OMP_FOR:
2118 : 256 : new_seq = gimple_seq_copy (gimple_omp_for_pre_body (stmt));
2119 : 256 : gimple_omp_for_set_pre_body (copy, new_seq);
2120 : 256 : t = unshare_expr (gimple_omp_for_clauses (stmt));
2121 : 256 : gimple_omp_for_set_clauses (copy, t);
2122 : 256 : {
2123 : 256 : gomp_for *omp_for_copy = as_a <gomp_for *> (copy);
2124 : 256 : omp_for_copy->iter = ggc_vec_alloc<gimple_omp_for_iter>
2125 : 256 : ( gimple_omp_for_collapse (stmt));
2126 : : }
2127 : 524 : for (i = 0; i < gimple_omp_for_collapse (stmt); i++)
2128 : : {
2129 : 268 : gimple_omp_for_set_cond (copy, i,
2130 : : gimple_omp_for_cond (stmt, i));
2131 : 268 : gimple_omp_for_set_index (copy, i,
2132 : : gimple_omp_for_index (stmt, i));
2133 : 268 : t = unshare_expr (gimple_omp_for_initial (stmt, i));
2134 : 268 : gimple_omp_for_set_initial (copy, i, t);
2135 : 268 : t = unshare_expr (gimple_omp_for_final (stmt, i));
2136 : 268 : gimple_omp_for_set_final (copy, i, t);
2137 : 268 : t = unshare_expr (gimple_omp_for_incr (stmt, i));
2138 : 268 : gimple_omp_for_set_incr (copy, i, t);
2139 : : }
2140 : 256 : goto copy_omp_body;
2141 : :
2142 : 0 : case GIMPLE_OMP_PARALLEL:
2143 : 0 : {
2144 : 0 : gomp_parallel *omp_par_stmt = as_a <gomp_parallel *> (stmt);
2145 : 0 : gomp_parallel *omp_par_copy = as_a <gomp_parallel *> (copy);
2146 : 0 : t = unshare_expr (gimple_omp_parallel_clauses (omp_par_stmt));
2147 : 0 : gimple_omp_parallel_set_clauses (omp_par_copy, t);
2148 : 0 : t = unshare_expr (gimple_omp_parallel_child_fn (omp_par_stmt));
2149 : 0 : gimple_omp_parallel_set_child_fn (omp_par_copy, t);
2150 : 0 : t = unshare_expr (gimple_omp_parallel_data_arg (omp_par_stmt));
2151 : 0 : gimple_omp_parallel_set_data_arg (omp_par_copy, t);
2152 : : }
2153 : 0 : goto copy_omp_body;
2154 : :
2155 : 0 : case GIMPLE_OMP_TASK:
2156 : 0 : t = unshare_expr (gimple_omp_task_clauses (stmt));
2157 : 0 : gimple_omp_task_set_clauses (copy, t);
2158 : 0 : t = unshare_expr (gimple_omp_task_child_fn (stmt));
2159 : 0 : gimple_omp_task_set_child_fn (copy, t);
2160 : 0 : t = unshare_expr (gimple_omp_task_data_arg (stmt));
2161 : 0 : gimple_omp_task_set_data_arg (copy, t);
2162 : 0 : t = unshare_expr (gimple_omp_task_copy_fn (stmt));
2163 : 0 : gimple_omp_task_set_copy_fn (copy, t);
2164 : 0 : t = unshare_expr (gimple_omp_task_arg_size (stmt));
2165 : 0 : gimple_omp_task_set_arg_size (copy, t);
2166 : 0 : t = unshare_expr (gimple_omp_task_arg_align (stmt));
2167 : 0 : gimple_omp_task_set_arg_align (copy, t);
2168 : 0 : goto copy_omp_body;
2169 : :
2170 : 0 : case GIMPLE_OMP_CRITICAL:
2171 : 0 : t = unshare_expr (gimple_omp_critical_name
2172 : 0 : (as_a <gomp_critical *> (stmt)));
2173 : 0 : gimple_omp_critical_set_name (as_a <gomp_critical *> (copy), t);
2174 : 0 : t = unshare_expr (gimple_omp_critical_clauses
2175 : 0 : (as_a <gomp_critical *> (stmt)));
2176 : 0 : gimple_omp_critical_set_clauses (as_a <gomp_critical *> (copy), t);
2177 : 0 : goto copy_omp_body;
2178 : :
2179 : 0 : case GIMPLE_OMP_ORDERED:
2180 : 0 : t = unshare_expr (gimple_omp_ordered_clauses
2181 : 0 : (as_a <gomp_ordered *> (stmt)));
2182 : 0 : gimple_omp_ordered_set_clauses (as_a <gomp_ordered *> (copy), t);
2183 : 0 : goto copy_omp_body;
2184 : :
2185 : 0 : case GIMPLE_OMP_SCAN:
2186 : 0 : t = gimple_omp_scan_clauses (as_a <gomp_scan *> (stmt));
2187 : 0 : t = unshare_expr (t);
2188 : 0 : gimple_omp_scan_set_clauses (as_a <gomp_scan *> (copy), t);
2189 : 0 : goto copy_omp_body;
2190 : :
2191 : 0 : case GIMPLE_OMP_TASKGROUP:
2192 : 0 : t = unshare_expr (gimple_omp_taskgroup_clauses (stmt));
2193 : 0 : gimple_omp_taskgroup_set_clauses (copy, t);
2194 : 0 : goto copy_omp_body;
2195 : :
2196 : 0 : case GIMPLE_OMP_SECTIONS:
2197 : 0 : t = unshare_expr (gimple_omp_sections_clauses (stmt));
2198 : 0 : gimple_omp_sections_set_clauses (copy, t);
2199 : 0 : t = unshare_expr (gimple_omp_sections_control (stmt));
2200 : 0 : gimple_omp_sections_set_control (copy, t);
2201 : 0 : goto copy_omp_body;
2202 : :
2203 : 0 : case GIMPLE_OMP_SINGLE:
2204 : 0 : {
2205 : 0 : gomp_single *omp_single_copy = as_a <gomp_single *> (copy);
2206 : 0 : t = unshare_expr (gimple_omp_single_clauses (stmt));
2207 : 0 : gimple_omp_single_set_clauses (omp_single_copy, t);
2208 : : }
2209 : 0 : goto copy_omp_body;
2210 : :
2211 : 0 : case GIMPLE_OMP_SCOPE:
2212 : 0 : t = unshare_expr (gimple_omp_scope_clauses (stmt));
2213 : 0 : gimple_omp_scope_set_clauses (copy, t);
2214 : 0 : goto copy_omp_body;
2215 : :
2216 : 0 : case GIMPLE_OMP_DISPATCH:
2217 : 0 : t = unshare_expr (gimple_omp_dispatch_clauses (stmt));
2218 : 0 : gimple_omp_dispatch_set_clauses (copy, t);
2219 : 0 : goto copy_omp_body;
2220 : :
2221 : 0 : case GIMPLE_OMP_INTEROP:
2222 : 0 : t = unshare_expr (gimple_omp_interop_clauses (stmt));
2223 : 0 : gimple_omp_interop_set_clauses (copy, t);
2224 : 0 : break;
2225 : :
2226 : 0 : case GIMPLE_OMP_TARGET:
2227 : 0 : {
2228 : 0 : gomp_target *omp_target_stmt = as_a <gomp_target *> (stmt);
2229 : 0 : gomp_target *omp_target_copy = as_a <gomp_target *> (copy);
2230 : 0 : t = unshare_expr (gimple_omp_target_clauses (omp_target_stmt));
2231 : 0 : gimple_omp_target_set_clauses (omp_target_copy, t);
2232 : 0 : t = unshare_expr (gimple_omp_target_data_arg (omp_target_stmt));
2233 : 0 : gimple_omp_target_set_data_arg (omp_target_copy, t);
2234 : : }
2235 : 0 : goto copy_omp_body;
2236 : :
2237 : 0 : case GIMPLE_OMP_TEAMS:
2238 : 0 : {
2239 : 0 : gomp_teams *omp_teams_copy = as_a <gomp_teams *> (copy);
2240 : 0 : t = unshare_expr (gimple_omp_teams_clauses (stmt));
2241 : 0 : gimple_omp_teams_set_clauses (omp_teams_copy, t);
2242 : : }
2243 : : /* FALLTHRU */
2244 : :
2245 : 256 : case GIMPLE_OMP_SECTION:
2246 : 256 : case GIMPLE_OMP_MASTER:
2247 : 256 : case GIMPLE_OMP_STRUCTURED_BLOCK:
2248 : 256 : copy_omp_body:
2249 : 256 : new_seq = gimple_seq_copy (gimple_omp_body (stmt));
2250 : 256 : gimple_omp_set_body (copy, new_seq);
2251 : 256 : break;
2252 : :
2253 : 0 : case GIMPLE_OMP_MASKED:
2254 : 0 : t = unshare_expr (gimple_omp_masked_clauses (stmt));
2255 : 0 : gimple_omp_masked_set_clauses (copy, t);
2256 : 0 : goto copy_omp_body;
2257 : :
2258 : 0 : case GIMPLE_ASSUME:
2259 : 0 : new_seq = gimple_seq_copy (gimple_assume_body (stmt));
2260 : 0 : *gimple_assume_body_ptr (copy) = new_seq;
2261 : 0 : gimple_assume_set_guard (copy,
2262 : : unshare_expr (gimple_assume_guard (stmt)));
2263 : 0 : break;
2264 : :
2265 : 6 : case GIMPLE_TRANSACTION:
2266 : 6 : new_seq = gimple_seq_copy (gimple_transaction_body (
2267 : 6 : as_a <gtransaction *> (stmt)));
2268 : 6 : gimple_transaction_set_body (as_a <gtransaction *> (copy),
2269 : : new_seq);
2270 : 6 : break;
2271 : :
2272 : 0 : case GIMPLE_WITH_CLEANUP_EXPR:
2273 : 0 : new_seq = gimple_seq_copy (gimple_wce_cleanup (stmt));
2274 : 0 : gimple_wce_set_cleanup (copy, new_seq);
2275 : 0 : break;
2276 : :
2277 : 0 : default:
2278 : 0 : gcc_unreachable ();
2279 : : }
2280 : : }
2281 : :
2282 : : /* Make copy of operands. */
2283 : 200424675 : for (i = 0; i < num_ops; i++)
2284 : 134724336 : gimple_set_op (copy, i, unshare_expr (gimple_op (stmt, i)));
2285 : :
2286 : 65700339 : if (gimple_has_mem_ops (stmt))
2287 : : {
2288 : 32020032 : gimple_set_vdef (copy, gimple_vdef (stmt));
2289 : 32020032 : gimple_set_vuse (copy, gimple_vuse (stmt));
2290 : : }
2291 : :
2292 : : /* Clear out SSA operand vectors on COPY. */
2293 : 65700339 : if (gimple_has_ops (stmt))
2294 : : {
2295 : 65236390 : gimple_set_use_ops (copy, NULL);
2296 : :
2297 : : /* SSA operands need to be updated. */
2298 : 65236390 : gimple_set_modified (copy, true);
2299 : : }
2300 : :
2301 : 65700339 : if (gimple_debug_nonbind_marker_p (stmt))
2302 : 14658913 : cfun->debug_marker_count++;
2303 : :
2304 : 65700339 : return copy;
2305 : : }
2306 : :
2307 : : /* Move OLD_STMT's vuse and vdef operands to NEW_STMT, on the assumption
2308 : : that OLD_STMT is about to be removed. */
2309 : :
2310 : : void
2311 : 543032 : gimple_move_vops (gimple *new_stmt, gimple *old_stmt)
2312 : : {
2313 : 543032 : tree vdef = gimple_vdef (old_stmt);
2314 : 1086064 : gimple_set_vuse (new_stmt, gimple_vuse (old_stmt));
2315 : 543032 : gimple_set_vdef (new_stmt, vdef);
2316 : 543032 : if (vdef && TREE_CODE (vdef) == SSA_NAME)
2317 : 182333 : SSA_NAME_DEF_STMT (vdef) = new_stmt;
2318 : 543032 : }
2319 : :
2320 : : /* Return true if statement S has side-effects. We consider a
2321 : : statement to have side effects if:
2322 : :
2323 : : - It is a GIMPLE_CALL not marked with ECF_PURE or ECF_CONST.
2324 : : - Any of its operands are marked TREE_THIS_VOLATILE or TREE_SIDE_EFFECTS. */
2325 : :
2326 : : bool
2327 : 1288296013 : gimple_has_side_effects (const gimple *s)
2328 : : {
2329 : 1288296013 : if (is_gimple_debug (s))
2330 : : return false;
2331 : :
2332 : : /* We don't have to scan the arguments to check for
2333 : : volatile arguments, though, at present, we still
2334 : : do a scan to check for TREE_SIDE_EFFECTS. */
2335 : 2173917045 : if (gimple_has_volatile_ops (s))
2336 : : return true;
2337 : :
2338 : 1086715658 : if (gimple_code (s) == GIMPLE_ASM
2339 : 1086715658 : && gimple_asm_volatile_p (as_a <const gasm *> (s)))
2340 : : return true;
2341 : :
2342 : 1086155616 : if (is_gimple_call (s))
2343 : : {
2344 : 96401412 : int flags = gimple_call_flags (s);
2345 : :
2346 : : /* An infinite loop is considered a side effect. */
2347 : 96401412 : if (!(flags & (ECF_CONST | ECF_PURE))
2348 : 19258620 : || (flags & ECF_LOOPING_CONST_OR_PURE))
2349 : : return true;
2350 : :
2351 : : return false;
2352 : : }
2353 : :
2354 : : return false;
2355 : : }
2356 : :
2357 : : /* Helper for gimple_could_trap_p and gimple_assign_rhs_could_trap_p.
2358 : : Return true if S can trap. When INCLUDE_MEM is true, check whether
2359 : : the memory operations could trap. When INCLUDE_STORES is true and
2360 : : S is a GIMPLE_ASSIGN, the LHS of the assignment is also checked. */
2361 : :
2362 : : bool
2363 : 56631691 : gimple_could_trap_p_1 (const gimple *s, bool include_mem, bool include_stores)
2364 : : {
2365 : 56631691 : tree t, div = NULL_TREE;
2366 : 56631691 : enum tree_code op;
2367 : :
2368 : 56631691 : if (include_mem)
2369 : : {
2370 : 31918816 : unsigned i, start = (is_gimple_assign (s) && !include_stores) ? 1 : 0;
2371 : :
2372 : 109947778 : for (i = start; i < gimple_num_ops (s); i++)
2373 : 82569207 : if (tree_could_trap_p (gimple_op (s, i)))
2374 : : return true;
2375 : : }
2376 : :
2377 : 52091446 : switch (gimple_code (s))
2378 : : {
2379 : 8604 : case GIMPLE_ASM:
2380 : 8604 : return gimple_asm_volatile_p (as_a <const gasm *> (s));
2381 : :
2382 : 1357551 : case GIMPLE_CALL:
2383 : 1357551 : if (gimple_call_internal_p (s))
2384 : : return false;
2385 : 1216484 : t = gimple_call_fndecl (s);
2386 : : /* Assume that indirect and calls to weak functions may trap. */
2387 : 1216484 : if (!t || !DECL_P (t) || DECL_WEAK (t))
2388 : : return true;
2389 : : return false;
2390 : :
2391 : 39771532 : case GIMPLE_ASSIGN:
2392 : 39771532 : op = gimple_assign_rhs_code (s);
2393 : :
2394 : : /* For COND_EXPR only the condition may trap. */
2395 : 39771532 : if (op == COND_EXPR)
2396 : 20109 : return tree_could_trap_p (gimple_assign_rhs1 (s));
2397 : :
2398 : : /* For comparisons we need to check rhs operand types instead of lhs type
2399 : : (which is BOOLEAN_TYPE). */
2400 : 39751423 : if (TREE_CODE_CLASS (op) == tcc_comparison)
2401 : 1423519 : t = TREE_TYPE (gimple_assign_rhs1 (s));
2402 : : else
2403 : 38327904 : t = TREE_TYPE (gimple_assign_lhs (s));
2404 : :
2405 : 39751423 : if (get_gimple_rhs_class (op) == GIMPLE_BINARY_RHS)
2406 : 22458821 : div = gimple_assign_rhs2 (s);
2407 : :
2408 : 42066548 : return (operation_could_trap_p (op, FLOAT_TYPE_P (t),
2409 : 39751423 : (INTEGRAL_TYPE_P (t)
2410 : 39751423 : && TYPE_OVERFLOW_TRAPS (t)),
2411 : 39751423 : div));
2412 : :
2413 : 7009037 : case GIMPLE_COND:
2414 : 7009037 : t = TREE_TYPE (gimple_cond_lhs (s));
2415 : 7009037 : return operation_could_trap_p (gimple_cond_code (s),
2416 : 14018074 : FLOAT_TYPE_P (t), false, NULL_TREE);
2417 : :
2418 : : default:
2419 : : break;
2420 : : }
2421 : :
2422 : : return false;
2423 : : }
2424 : :
2425 : : /* Return true if statement S can trap. */
2426 : :
2427 : : bool
2428 : 29068714 : gimple_could_trap_p (const gimple *s)
2429 : : {
2430 : 29068714 : return gimple_could_trap_p_1 (s, true, true);
2431 : : }
2432 : :
2433 : : /* Return true if RHS of a GIMPLE_ASSIGN S can trap. */
2434 : :
2435 : : bool
2436 : 2850102 : gimple_assign_rhs_could_trap_p (gimple *s)
2437 : : {
2438 : 2850102 : gcc_assert (is_gimple_assign (s));
2439 : 2850102 : return gimple_could_trap_p_1 (s, true, false);
2440 : : }
2441 : :
2442 : :
2443 : : /* Print debugging information for gimple stmts generated. */
2444 : :
2445 : : void
2446 : 0 : dump_gimple_statistics (void)
2447 : : {
2448 : 0 : int i;
2449 : 0 : uint64_t total_tuples = 0, total_bytes = 0;
2450 : :
2451 : 0 : if (! GATHER_STATISTICS)
2452 : : {
2453 : 0 : fprintf (stderr, "No GIMPLE statistics\n");
2454 : 0 : return;
2455 : : }
2456 : :
2457 : : fprintf (stderr, "\nGIMPLE statements\n");
2458 : : fprintf (stderr, "Kind Stmts Bytes\n");
2459 : : fprintf (stderr, "---------------------------------------\n");
2460 : : for (i = 0; i < (int) gimple_alloc_kind_all; ++i)
2461 : : {
2462 : : fprintf (stderr, "%-20s %7" PRIu64 "%c %10" PRIu64 "%c\n",
2463 : : gimple_alloc_kind_names[i],
2464 : : SIZE_AMOUNT (gimple_alloc_counts[i]),
2465 : : SIZE_AMOUNT (gimple_alloc_sizes[i]));
2466 : : total_tuples += gimple_alloc_counts[i];
2467 : : total_bytes += gimple_alloc_sizes[i];
2468 : : }
2469 : : fprintf (stderr, "---------------------------------------\n");
2470 : : fprintf (stderr, "%-20s %7" PRIu64 "%c %10" PRIu64 "%c\n", "Total",
2471 : : SIZE_AMOUNT (total_tuples), SIZE_AMOUNT (total_bytes));
2472 : : fprintf (stderr, "---------------------------------------\n");
2473 : : }
2474 : :
2475 : :
2476 : : /* Return the number of operands needed on the RHS of a GIMPLE
2477 : : assignment for an expression with tree code CODE. */
2478 : :
2479 : : unsigned
2480 : 99338913 : get_gimple_rhs_num_ops (enum tree_code code)
2481 : : {
2482 : 99338913 : switch (get_gimple_rhs_class (code))
2483 : : {
2484 : : case GIMPLE_UNARY_RHS:
2485 : : case GIMPLE_SINGLE_RHS:
2486 : : return 1;
2487 : : case GIMPLE_BINARY_RHS:
2488 : : return 2;
2489 : : case GIMPLE_TERNARY_RHS:
2490 : : return 3;
2491 : 0 : default:
2492 : 0 : gcc_unreachable ();
2493 : : }
2494 : : }
2495 : :
2496 : : #define DEFTREECODE(SYM, STRING, TYPE, NARGS) \
2497 : : (unsigned char) \
2498 : : ((TYPE) == tcc_unary ? GIMPLE_UNARY_RHS \
2499 : : : ((TYPE) == tcc_binary \
2500 : : || (TYPE) == tcc_comparison) ? GIMPLE_BINARY_RHS \
2501 : : : ((TYPE) == tcc_constant \
2502 : : || (TYPE) == tcc_declaration \
2503 : : || (TYPE) == tcc_reference) ? GIMPLE_SINGLE_RHS \
2504 : : : ((SYM) == TRUTH_AND_EXPR \
2505 : : || (SYM) == TRUTH_OR_EXPR \
2506 : : || (SYM) == TRUTH_XOR_EXPR) ? GIMPLE_BINARY_RHS \
2507 : : : (SYM) == TRUTH_NOT_EXPR ? GIMPLE_UNARY_RHS \
2508 : : : ((SYM) == COND_EXPR \
2509 : : || (SYM) == WIDEN_MULT_PLUS_EXPR \
2510 : : || (SYM) == WIDEN_MULT_MINUS_EXPR \
2511 : : || (SYM) == DOT_PROD_EXPR \
2512 : : || (SYM) == SAD_EXPR \
2513 : : || (SYM) == REALIGN_LOAD_EXPR \
2514 : : || (SYM) == VEC_COND_EXPR \
2515 : : || (SYM) == VEC_PERM_EXPR \
2516 : : || (SYM) == BIT_INSERT_EXPR) ? GIMPLE_TERNARY_RHS \
2517 : : : ((SYM) == CONSTRUCTOR \
2518 : : || (SYM) == OBJ_TYPE_REF \
2519 : : || (SYM) == ADDR_EXPR \
2520 : : || (SYM) == WITH_SIZE_EXPR \
2521 : : || (SYM) == SSA_NAME \
2522 : : || (SYM) == OMP_NEXT_VARIANT \
2523 : : || (SYM) == OMP_TARGET_DEVICE_MATCHES) ? GIMPLE_SINGLE_RHS \
2524 : : : GIMPLE_INVALID_RHS),
2525 : : #define END_OF_BASE_TREE_CODES (unsigned char) GIMPLE_INVALID_RHS,
2526 : :
2527 : : const unsigned char gimple_rhs_class_table[] = {
2528 : : #include "all-tree.def"
2529 : : };
2530 : :
2531 : : #undef DEFTREECODE
2532 : : #undef END_OF_BASE_TREE_CODES
2533 : :
2534 : : /* Build a GIMPLE_CALL identical to STMT but skipping the arguments in
2535 : : the positions marked by the set ARGS_TO_SKIP. */
2536 : :
2537 : : gcall *
2538 : 0 : gimple_call_copy_skip_args (gcall *stmt, bitmap args_to_skip)
2539 : : {
2540 : 0 : int i;
2541 : 0 : int nargs = gimple_call_num_args (stmt);
2542 : 0 : auto_vec<tree> vargs (nargs);
2543 : 0 : gcall *new_stmt;
2544 : :
2545 : 0 : for (i = 0; i < nargs; i++)
2546 : 0 : if (!bitmap_bit_p (args_to_skip, i))
2547 : 0 : vargs.quick_push (gimple_call_arg (stmt, i));
2548 : :
2549 : 0 : if (gimple_call_internal_p (stmt))
2550 : 0 : new_stmt = gimple_build_call_internal_vec (gimple_call_internal_fn (stmt),
2551 : : vargs);
2552 : : else
2553 : 0 : new_stmt = gimple_build_call_vec (gimple_call_fn (stmt), vargs);
2554 : :
2555 : 0 : if (gimple_call_lhs (stmt))
2556 : 0 : gimple_call_set_lhs (new_stmt, gimple_call_lhs (stmt));
2557 : :
2558 : 0 : gimple_set_vuse (new_stmt, gimple_vuse (stmt));
2559 : 0 : gimple_set_vdef (new_stmt, gimple_vdef (stmt));
2560 : :
2561 : 0 : if (gimple_has_location (stmt))
2562 : 0 : gimple_set_location (new_stmt, gimple_location (stmt));
2563 : 0 : gimple_call_copy_flags (new_stmt, stmt);
2564 : 0 : gimple_call_set_chain (new_stmt, gimple_call_chain (stmt));
2565 : :
2566 : 0 : gimple_set_modified (new_stmt, true);
2567 : :
2568 : 0 : return new_stmt;
2569 : 0 : }
2570 : :
2571 : :
2572 : :
2573 : : /* Return true if the field decls F1 and F2 are at the same offset.
2574 : :
2575 : : This is intended to be used on GIMPLE types only. */
2576 : :
2577 : : bool
2578 : 51203503 : gimple_compare_field_offset (tree f1, tree f2)
2579 : : {
2580 : 51203503 : if (DECL_OFFSET_ALIGN (f1) == DECL_OFFSET_ALIGN (f2))
2581 : : {
2582 : 51203440 : tree offset1 = DECL_FIELD_OFFSET (f1);
2583 : 51203440 : tree offset2 = DECL_FIELD_OFFSET (f2);
2584 : 51203440 : return ((offset1 == offset2
2585 : : /* Once gimplification is done, self-referential offsets are
2586 : : instantiated as operand #2 of the COMPONENT_REF built for
2587 : : each access and reset. Therefore, they are not relevant
2588 : : anymore and fields are interchangeable provided that they
2589 : : represent the same access. */
2590 : 0 : || (TREE_CODE (offset1) == PLACEHOLDER_EXPR
2591 : 0 : && TREE_CODE (offset2) == PLACEHOLDER_EXPR
2592 : 0 : && (DECL_SIZE (f1) == DECL_SIZE (f2)
2593 : 0 : || (TREE_CODE (DECL_SIZE (f1)) == PLACEHOLDER_EXPR
2594 : 0 : && TREE_CODE (DECL_SIZE (f2)) == PLACEHOLDER_EXPR)
2595 : 0 : || operand_equal_p (DECL_SIZE (f1), DECL_SIZE (f2), 0))
2596 : 0 : && DECL_ALIGN (f1) == DECL_ALIGN (f2))
2597 : 0 : || operand_equal_p (offset1, offset2, 0))
2598 : 102406880 : && tree_int_cst_equal (DECL_FIELD_BIT_OFFSET (f1),
2599 : 51203440 : DECL_FIELD_BIT_OFFSET (f2)));
2600 : : }
2601 : :
2602 : : /* Fortran and C do not always agree on what DECL_OFFSET_ALIGN
2603 : : should be, so handle differing ones specially by decomposing
2604 : : the offset into a byte and bit offset manually. */
2605 : 63 : if (tree_fits_shwi_p (DECL_FIELD_OFFSET (f1))
2606 : 63 : && tree_fits_shwi_p (DECL_FIELD_OFFSET (f2)))
2607 : : {
2608 : 63 : unsigned HOST_WIDE_INT byte_offset1, byte_offset2;
2609 : 63 : unsigned HOST_WIDE_INT bit_offset1, bit_offset2;
2610 : 63 : bit_offset1 = TREE_INT_CST_LOW (DECL_FIELD_BIT_OFFSET (f1));
2611 : 63 : byte_offset1 = (TREE_INT_CST_LOW (DECL_FIELD_OFFSET (f1))
2612 : 63 : + bit_offset1 / BITS_PER_UNIT);
2613 : 63 : bit_offset2 = TREE_INT_CST_LOW (DECL_FIELD_BIT_OFFSET (f2));
2614 : 63 : byte_offset2 = (TREE_INT_CST_LOW (DECL_FIELD_OFFSET (f2))
2615 : 63 : + bit_offset2 / BITS_PER_UNIT);
2616 : 63 : if (byte_offset1 != byte_offset2)
2617 : : return false;
2618 : 63 : return bit_offset1 % BITS_PER_UNIT == bit_offset2 % BITS_PER_UNIT;
2619 : : }
2620 : :
2621 : : return false;
2622 : : }
2623 : :
2624 : :
2625 : : /* Return a type the same as TYPE except unsigned or
2626 : : signed according to UNSIGNEDP. */
2627 : :
2628 : : static tree
2629 : 539742 : gimple_signed_or_unsigned_type (bool unsignedp, tree type)
2630 : : {
2631 : 539742 : tree type1;
2632 : 539742 : int i;
2633 : :
2634 : 539742 : type1 = TYPE_MAIN_VARIANT (type);
2635 : 539742 : if (type1 == signed_char_type_node
2636 : 539742 : || type1 == char_type_node
2637 : 539742 : || type1 == unsigned_char_type_node)
2638 : 4 : return unsignedp ? unsigned_char_type_node : signed_char_type_node;
2639 : 539738 : if (type1 == integer_type_node || type1 == unsigned_type_node)
2640 : 314210 : return unsignedp ? unsigned_type_node : integer_type_node;
2641 : 225528 : if (type1 == short_integer_type_node || type1 == short_unsigned_type_node)
2642 : 204641 : return unsignedp ? short_unsigned_type_node : short_integer_type_node;
2643 : 20887 : if (type1 == long_integer_type_node || type1 == long_unsigned_type_node)
2644 : 39 : return unsignedp ? long_unsigned_type_node : long_integer_type_node;
2645 : 20848 : if (type1 == long_long_integer_type_node
2646 : 20760 : || type1 == long_long_unsigned_type_node)
2647 : 88 : return unsignedp
2648 : 88 : ? long_long_unsigned_type_node
2649 : 0 : : long_long_integer_type_node;
2650 : :
2651 : 34667 : for (i = 0; i < NUM_INT_N_ENTS; i ++)
2652 : 20760 : if (int_n_enabled_p[i]
2653 : 20760 : && (type1 == int_n_trees[i].unsigned_type
2654 : 14249 : || type1 == int_n_trees[i].signed_type))
2655 : 6853 : return unsignedp
2656 : 6853 : ? int_n_trees[i].unsigned_type
2657 : 6853 : : int_n_trees[i].signed_type;
2658 : :
2659 : : #if HOST_BITS_PER_WIDE_INT >= 64
2660 : 13907 : if (type1 == intTI_type_node || type1 == unsigned_intTI_type_node)
2661 : 0 : return unsignedp ? unsigned_intTI_type_node : intTI_type_node;
2662 : : #endif
2663 : 13907 : if (type1 == intDI_type_node || type1 == unsigned_intDI_type_node)
2664 : 0 : return unsignedp ? unsigned_intDI_type_node : intDI_type_node;
2665 : 13907 : if (type1 == intSI_type_node || type1 == unsigned_intSI_type_node)
2666 : 0 : return unsignedp ? unsigned_intSI_type_node : intSI_type_node;
2667 : 13907 : if (type1 == intHI_type_node || type1 == unsigned_intHI_type_node)
2668 : 0 : return unsignedp ? unsigned_intHI_type_node : intHI_type_node;
2669 : 13907 : if (type1 == intQI_type_node || type1 == unsigned_intQI_type_node)
2670 : 0 : return unsignedp ? unsigned_intQI_type_node : intQI_type_node;
2671 : :
2672 : : #define GIMPLE_FIXED_TYPES(NAME) \
2673 : : if (type1 == short_ ## NAME ## _type_node \
2674 : : || type1 == unsigned_short_ ## NAME ## _type_node) \
2675 : : return unsignedp ? unsigned_short_ ## NAME ## _type_node \
2676 : : : short_ ## NAME ## _type_node; \
2677 : : if (type1 == NAME ## _type_node \
2678 : : || type1 == unsigned_ ## NAME ## _type_node) \
2679 : : return unsignedp ? unsigned_ ## NAME ## _type_node \
2680 : : : NAME ## _type_node; \
2681 : : if (type1 == long_ ## NAME ## _type_node \
2682 : : || type1 == unsigned_long_ ## NAME ## _type_node) \
2683 : : return unsignedp ? unsigned_long_ ## NAME ## _type_node \
2684 : : : long_ ## NAME ## _type_node; \
2685 : : if (type1 == long_long_ ## NAME ## _type_node \
2686 : : || type1 == unsigned_long_long_ ## NAME ## _type_node) \
2687 : : return unsignedp ? unsigned_long_long_ ## NAME ## _type_node \
2688 : : : long_long_ ## NAME ## _type_node;
2689 : :
2690 : : #define GIMPLE_FIXED_MODE_TYPES(NAME) \
2691 : : if (type1 == NAME ## _type_node \
2692 : : || type1 == u ## NAME ## _type_node) \
2693 : : return unsignedp ? u ## NAME ## _type_node \
2694 : : : NAME ## _type_node;
2695 : :
2696 : : #define GIMPLE_FIXED_TYPES_SAT(NAME) \
2697 : : if (type1 == sat_ ## short_ ## NAME ## _type_node \
2698 : : || type1 == sat_ ## unsigned_short_ ## NAME ## _type_node) \
2699 : : return unsignedp ? sat_ ## unsigned_short_ ## NAME ## _type_node \
2700 : : : sat_ ## short_ ## NAME ## _type_node; \
2701 : : if (type1 == sat_ ## NAME ## _type_node \
2702 : : || type1 == sat_ ## unsigned_ ## NAME ## _type_node) \
2703 : : return unsignedp ? sat_ ## unsigned_ ## NAME ## _type_node \
2704 : : : sat_ ## NAME ## _type_node; \
2705 : : if (type1 == sat_ ## long_ ## NAME ## _type_node \
2706 : : || type1 == sat_ ## unsigned_long_ ## NAME ## _type_node) \
2707 : : return unsignedp ? sat_ ## unsigned_long_ ## NAME ## _type_node \
2708 : : : sat_ ## long_ ## NAME ## _type_node; \
2709 : : if (type1 == sat_ ## long_long_ ## NAME ## _type_node \
2710 : : || type1 == sat_ ## unsigned_long_long_ ## NAME ## _type_node) \
2711 : : return unsignedp ? sat_ ## unsigned_long_long_ ## NAME ## _type_node \
2712 : : : sat_ ## long_long_ ## NAME ## _type_node;
2713 : :
2714 : : #define GIMPLE_FIXED_MODE_TYPES_SAT(NAME) \
2715 : : if (type1 == sat_ ## NAME ## _type_node \
2716 : : || type1 == sat_ ## u ## NAME ## _type_node) \
2717 : : return unsignedp ? sat_ ## u ## NAME ## _type_node \
2718 : : : sat_ ## NAME ## _type_node;
2719 : :
2720 : 13907 : GIMPLE_FIXED_TYPES (fract);
2721 : 13907 : GIMPLE_FIXED_TYPES_SAT (fract);
2722 : 13907 : GIMPLE_FIXED_TYPES (accum);
2723 : 13907 : GIMPLE_FIXED_TYPES_SAT (accum);
2724 : :
2725 : 13907 : GIMPLE_FIXED_MODE_TYPES (qq);
2726 : 13907 : GIMPLE_FIXED_MODE_TYPES (hq);
2727 : 13907 : GIMPLE_FIXED_MODE_TYPES (sq);
2728 : 13907 : GIMPLE_FIXED_MODE_TYPES (dq);
2729 : 13907 : GIMPLE_FIXED_MODE_TYPES (tq);
2730 : 13907 : GIMPLE_FIXED_MODE_TYPES_SAT (qq);
2731 : 13907 : GIMPLE_FIXED_MODE_TYPES_SAT (hq);
2732 : 13907 : GIMPLE_FIXED_MODE_TYPES_SAT (sq);
2733 : 13907 : GIMPLE_FIXED_MODE_TYPES_SAT (dq);
2734 : 13907 : GIMPLE_FIXED_MODE_TYPES_SAT (tq);
2735 : 13907 : GIMPLE_FIXED_MODE_TYPES (ha);
2736 : 13907 : GIMPLE_FIXED_MODE_TYPES (sa);
2737 : 13907 : GIMPLE_FIXED_MODE_TYPES (da);
2738 : 13907 : GIMPLE_FIXED_MODE_TYPES (ta);
2739 : 13907 : GIMPLE_FIXED_MODE_TYPES_SAT (ha);
2740 : 13907 : GIMPLE_FIXED_MODE_TYPES_SAT (sa);
2741 : 13907 : GIMPLE_FIXED_MODE_TYPES_SAT (da);
2742 : 13907 : GIMPLE_FIXED_MODE_TYPES_SAT (ta);
2743 : :
2744 : : /* For ENUMERAL_TYPEs in C++, must check the mode of the types, not
2745 : : the precision; they have precision set to match their range, but
2746 : : may use a wider mode to match an ABI. If we change modes, we may
2747 : : wind up with bad conversions. For INTEGER_TYPEs in C, must check
2748 : : the precision as well, so as to yield correct results for
2749 : : bit-field types. C++ does not have these separate bit-field
2750 : : types, and producing a signed or unsigned variant of an
2751 : : ENUMERAL_TYPE may cause other problems as well. */
2752 : 13907 : if (!INTEGRAL_TYPE_P (type)
2753 : 13907 : || TYPE_UNSIGNED (type) == unsignedp)
2754 : : return type;
2755 : :
2756 : : #define TYPE_OK(node) \
2757 : : (TYPE_MODE (type) == TYPE_MODE (node) \
2758 : : && TYPE_PRECISION (type) == TYPE_PRECISION (node))
2759 : 13907 : if (TYPE_OK (signed_char_type_node))
2760 : 482 : return unsignedp ? unsigned_char_type_node : signed_char_type_node;
2761 : 13425 : if (TYPE_OK (integer_type_node))
2762 : 3504 : return unsignedp ? unsigned_type_node : integer_type_node;
2763 : 9921 : if (TYPE_OK (short_integer_type_node))
2764 : 4741 : return unsignedp ? short_unsigned_type_node : short_integer_type_node;
2765 : 5180 : if (TYPE_OK (long_integer_type_node))
2766 : 0 : return unsignedp ? long_unsigned_type_node : long_integer_type_node;
2767 : 5180 : if (TYPE_OK (long_long_integer_type_node))
2768 : 0 : return (unsignedp
2769 : 0 : ? long_long_unsigned_type_node
2770 : 0 : : long_long_integer_type_node);
2771 : :
2772 : 10332 : for (i = 0; i < NUM_INT_N_ENTS; i ++)
2773 : 5180 : if (int_n_enabled_p[i]
2774 : 5180 : && TYPE_MODE (type) == int_n_data[i].m
2775 : 5208 : && TYPE_PRECISION (type) == int_n_data[i].bitsize)
2776 : 28 : return unsignedp
2777 : 28 : ? int_n_trees[i].unsigned_type
2778 : 28 : : int_n_trees[i].signed_type;
2779 : :
2780 : : #if HOST_BITS_PER_WIDE_INT >= 64
2781 : 5152 : if (TYPE_OK (intTI_type_node))
2782 : 0 : return unsignedp ? unsigned_intTI_type_node : intTI_type_node;
2783 : : #endif
2784 : 5152 : if (TYPE_OK (intDI_type_node))
2785 : 0 : return unsignedp ? unsigned_intDI_type_node : intDI_type_node;
2786 : 5152 : if (TYPE_OK (intSI_type_node))
2787 : 0 : return unsignedp ? unsigned_intSI_type_node : intSI_type_node;
2788 : 5152 : if (TYPE_OK (intHI_type_node))
2789 : 0 : return unsignedp ? unsigned_intHI_type_node : intHI_type_node;
2790 : 5152 : if (TYPE_OK (intQI_type_node))
2791 : 0 : return unsignedp ? unsigned_intQI_type_node : intQI_type_node;
2792 : :
2793 : : #undef GIMPLE_FIXED_TYPES
2794 : : #undef GIMPLE_FIXED_MODE_TYPES
2795 : : #undef GIMPLE_FIXED_TYPES_SAT
2796 : : #undef GIMPLE_FIXED_MODE_TYPES_SAT
2797 : : #undef TYPE_OK
2798 : :
2799 : 5152 : return build_nonstandard_integer_type (TYPE_PRECISION (type), unsignedp);
2800 : : }
2801 : :
2802 : :
2803 : : /* Return an unsigned type the same as TYPE in other respects. */
2804 : :
2805 : : tree
2806 : 0 : gimple_unsigned_type (tree type)
2807 : : {
2808 : 0 : return gimple_signed_or_unsigned_type (true, type);
2809 : : }
2810 : :
2811 : :
2812 : : /* Return a signed type the same as TYPE in other respects. */
2813 : :
2814 : : tree
2815 : 539742 : gimple_signed_type (tree type)
2816 : : {
2817 : 539742 : return gimple_signed_or_unsigned_type (false, type);
2818 : : }
2819 : :
2820 : :
2821 : : /* Return the typed-based alias set for T, which may be an expression
2822 : : or a type. Return -1 if we don't do anything special. */
2823 : :
2824 : : alias_set_type
2825 : 7690529 : gimple_get_alias_set (tree t)
2826 : : {
2827 : : /* That's all the expressions we handle specially. */
2828 : 7690529 : if (!TYPE_P (t))
2829 : : return -1;
2830 : :
2831 : : /* For convenience, follow the C standard when dealing with
2832 : : character types. Any object may be accessed via an lvalue that
2833 : : has character type. */
2834 : 2229459 : if (t == char_type_node
2835 : 1733215 : || t == signed_char_type_node
2836 : 1733215 : || t == unsigned_char_type_node)
2837 : : return 0;
2838 : :
2839 : : /* Allow aliasing between signed and unsigned variants of the same
2840 : : type. We treat the signed variant as canonical. */
2841 : 1733215 : if (TREE_CODE (t) == INTEGER_TYPE && TYPE_UNSIGNED (t))
2842 : : {
2843 : 538851 : tree t1 = gimple_signed_type (t);
2844 : :
2845 : : /* t1 == t can happen for boolean nodes which are always unsigned. */
2846 : 538851 : if (t1 != t)
2847 : 538851 : return get_alias_set (t1);
2848 : : }
2849 : :
2850 : : /* Allow aliasing between enumeral types and the underlying
2851 : : integer type. This is required for C since those are
2852 : : compatible types. */
2853 : 1194364 : else if (TREE_CODE (t) == ENUMERAL_TYPE)
2854 : : {
2855 : 0 : tree t1 = lang_hooks.types.type_for_size (tree_to_uhwi (TYPE_SIZE (t)),
2856 : : false /* short-cut above */);
2857 : 0 : return get_alias_set (t1);
2858 : : }
2859 : :
2860 : : return -1;
2861 : : }
2862 : :
2863 : :
2864 : : /* Helper for gimple_ior_addresses_taken_1. */
2865 : :
2866 : : static bool
2867 : 52733190 : gimple_ior_addresses_taken_1 (gimple *, tree addr, tree, void *data)
2868 : : {
2869 : 52733190 : bitmap addresses_taken = (bitmap)data;
2870 : 52733190 : addr = get_base_address (addr);
2871 : 52733190 : if (addr
2872 : 52733190 : && DECL_P (addr))
2873 : : {
2874 : 34065132 : bitmap_set_bit (addresses_taken, DECL_UID (addr));
2875 : 34065132 : return true;
2876 : : }
2877 : : return false;
2878 : : }
2879 : :
2880 : : /* Set the bit for the uid of all decls that have their address taken
2881 : : in STMT in the ADDRESSES_TAKEN bitmap. Returns true if there
2882 : : were any in this stmt. */
2883 : :
2884 : : bool
2885 : 824941479 : gimple_ior_addresses_taken (bitmap addresses_taken, gimple *stmt)
2886 : : {
2887 : 824941479 : return walk_stmt_load_store_addr_ops (stmt, addresses_taken, NULL, NULL,
2888 : 824941479 : gimple_ior_addresses_taken_1);
2889 : : }
2890 : :
2891 : :
2892 : : /* Return true when STMTs arguments and return value match those of FNDECL,
2893 : : a decl of a builtin function. */
2894 : :
2895 : : bool
2896 : 277013808 : gimple_builtin_call_types_compatible_p (const gimple *stmt, tree fndecl)
2897 : : {
2898 : 277013808 : gcc_checking_assert (DECL_BUILT_IN_CLASS (fndecl) != NOT_BUILT_IN);
2899 : :
2900 : 277013808 : if (DECL_BUILT_IN_CLASS (fndecl) == BUILT_IN_NORMAL)
2901 : 274898826 : if (tree decl = builtin_decl_explicit (DECL_FUNCTION_CODE (fndecl)))
2902 : 277013808 : fndecl = decl;
2903 : :
2904 : 277013808 : tree ret = gimple_call_lhs (stmt);
2905 : 277013808 : if (ret
2906 : 448259368 : && !useless_type_conversion_p (TREE_TYPE (ret),
2907 : 171245560 : TREE_TYPE (TREE_TYPE (fndecl))))
2908 : : return false;
2909 : :
2910 : 276991941 : tree targs = TYPE_ARG_TYPES (TREE_TYPE (fndecl));
2911 : 276991941 : unsigned nargs = gimple_call_num_args (stmt);
2912 : 842735068 : for (unsigned i = 0; i < nargs; ++i)
2913 : : {
2914 : : /* Variadic args follow. */
2915 : 592917064 : if (!targs)
2916 : : return true;
2917 : 570151686 : tree arg = gimple_call_arg (stmt, i);
2918 : 570151686 : tree type = TREE_VALUE (targs);
2919 : 570151686 : if (!useless_type_conversion_p (type, TREE_TYPE (arg)))
2920 : : return false;
2921 : 565743127 : targs = TREE_CHAIN (targs);
2922 : : }
2923 : 498906345 : if (targs && !VOID_TYPE_P (TREE_VALUE (targs)))
2924 : : return false;
2925 : : return true;
2926 : : }
2927 : :
2928 : : /* Return true when STMT is operator a replaceable delete call. */
2929 : :
2930 : : bool
2931 : 2068910 : gimple_call_operator_delete_p (const gcall *stmt)
2932 : : {
2933 : 2068910 : tree fndecl;
2934 : :
2935 : 2068910 : if ((fndecl = gimple_call_fndecl (stmt)) != NULL_TREE)
2936 : 2068910 : return DECL_IS_OPERATOR_DELETE_P (fndecl);
2937 : : return false;
2938 : : }
2939 : :
2940 : : /* Return true when STMT is builtins call. */
2941 : :
2942 : : bool
2943 : 67027954 : gimple_call_builtin_p (const gimple *stmt)
2944 : : {
2945 : 67027954 : tree fndecl;
2946 : 67027954 : if (is_gimple_call (stmt)
2947 : 20088040 : && (fndecl = gimple_call_fndecl (stmt)) != NULL_TREE
2948 : 86199228 : && DECL_BUILT_IN_CLASS (fndecl) != NOT_BUILT_IN)
2949 : 3835631 : return gimple_builtin_call_types_compatible_p (stmt, fndecl);
2950 : : return false;
2951 : : }
2952 : :
2953 : : /* Return true when STMT is builtins call to CLASS. */
2954 : :
2955 : : bool
2956 : 980761613 : gimple_call_builtin_p (const gimple *stmt, enum built_in_class klass)
2957 : : {
2958 : 980761613 : tree fndecl;
2959 : 980761613 : if (is_gimple_call (stmt)
2960 : 733330284 : && (fndecl = gimple_call_fndecl (stmt)) != NULL_TREE
2961 : 1681563560 : && DECL_BUILT_IN_CLASS (fndecl) == klass)
2962 : 183986771 : return gimple_builtin_call_types_compatible_p (stmt, fndecl);
2963 : : return false;
2964 : : }
2965 : :
2966 : : /* Return true when STMT is builtins call to CODE of CLASS. */
2967 : :
2968 : : bool
2969 : 2860395519 : gimple_call_builtin_p (const gimple *stmt, enum built_in_function code)
2970 : : {
2971 : 2860395519 : tree fndecl;
2972 : 2860395519 : if (is_gimple_call (stmt)
2973 : 823434373 : && (fndecl = gimple_call_fndecl (stmt)) != NULL_TREE
2974 : 3647003628 : && fndecl_built_in_p (fndecl, code))
2975 : 2130159 : return gimple_builtin_call_types_compatible_p (stmt, fndecl);
2976 : : return false;
2977 : : }
2978 : :
2979 : : /* If CALL is a call to a combined_fn (i.e. an internal function or
2980 : : a normal built-in function), return its code, otherwise return
2981 : : CFN_LAST. */
2982 : :
2983 : : combined_fn
2984 : 183537114 : gimple_call_combined_fn (const gimple *stmt)
2985 : : {
2986 : 183537114 : if (const gcall *call = dyn_cast <const gcall *> (stmt))
2987 : : {
2988 : 181719364 : if (gimple_call_internal_p (call))
2989 : 7224340 : return as_combined_fn (gimple_call_internal_fn (call));
2990 : :
2991 : 174495024 : tree fndecl = gimple_call_fndecl (stmt);
2992 : 174495024 : if (fndecl
2993 : 167772811 : && fndecl_built_in_p (fndecl, BUILT_IN_NORMAL)
2994 : 244752636 : && gimple_builtin_call_types_compatible_p (stmt, fndecl))
2995 : 69735278 : return as_combined_fn (DECL_FUNCTION_CODE (fndecl));
2996 : : }
2997 : : return CFN_LAST;
2998 : : }
2999 : :
3000 : : /* Return true if STMT clobbers memory. STMT is required to be a
3001 : : GIMPLE_ASM. */
3002 : :
3003 : : bool
3004 : 11289751 : gimple_asm_clobbers_memory_p (const gasm *stmt)
3005 : : {
3006 : 11289751 : unsigned i;
3007 : :
3008 : 16583998 : for (i = 0; i < gimple_asm_nclobbers (stmt); i++)
3009 : : {
3010 : 9526924 : tree op = gimple_asm_clobber_op (stmt, i);
3011 : 9526924 : if (strcmp (TREE_STRING_POINTER (TREE_VALUE (op)), "memory") == 0)
3012 : : return true;
3013 : : }
3014 : :
3015 : : /* Non-empty basic ASM implicitly clobbers memory. */
3016 : 7057074 : if (gimple_asm_basic_p (stmt) && strlen (gimple_asm_string (stmt)) != 0)
3017 : 97731 : return true;
3018 : :
3019 : : return false;
3020 : : }
3021 : :
3022 : : /* Dump bitmap SET (assumed to contain VAR_DECLs) to FILE. */
3023 : :
3024 : : void
3025 : 5245 : dump_decl_set (FILE *file, bitmap set)
3026 : : {
3027 : 5245 : if (set)
3028 : : {
3029 : 5245 : bitmap_iterator bi;
3030 : 5245 : unsigned i;
3031 : :
3032 : 5245 : fprintf (file, "{ ");
3033 : :
3034 : 21981 : EXECUTE_IF_SET_IN_BITMAP (set, 0, i, bi)
3035 : : {
3036 : 16736 : fprintf (file, "D.%u", i);
3037 : 16736 : fprintf (file, " ");
3038 : : }
3039 : :
3040 : 5245 : fprintf (file, "}");
3041 : : }
3042 : : else
3043 : 0 : fprintf (file, "NIL");
3044 : 5245 : }
3045 : :
3046 : : /* Return true when CALL is a call stmt that definitely doesn't
3047 : : free any memory or makes it unavailable otherwise. */
3048 : : bool
3049 : 9662005 : nonfreeing_call_p (gimple *call)
3050 : : {
3051 : 9662005 : if (gimple_call_builtin_p (call, BUILT_IN_NORMAL)
3052 : 9662005 : && gimple_call_flags (call) & ECF_LEAF)
3053 : 4249616 : switch (DECL_FUNCTION_CODE (gimple_call_fndecl (call)))
3054 : : {
3055 : : /* Just in case these become ECF_LEAF in the future. */
3056 : : case BUILT_IN_FREE:
3057 : : case BUILT_IN_TM_FREE:
3058 : : case BUILT_IN_REALLOC:
3059 : : case BUILT_IN_STACK_RESTORE:
3060 : : case BUILT_IN_GOMP_FREE:
3061 : : case BUILT_IN_GOMP_REALLOC:
3062 : : return false;
3063 : : default:
3064 : : return true;
3065 : : }
3066 : 5412389 : else if (gimple_call_internal_p (call))
3067 : 641341 : switch (gimple_call_internal_fn (call))
3068 : : {
3069 : : case IFN_ABNORMAL_DISPATCHER:
3070 : : return true;
3071 : 27209 : case IFN_ASAN_MARK:
3072 : 27209 : return tree_to_uhwi (gimple_call_arg (call, 0)) == ASAN_MARK_UNPOISON;
3073 : 608327 : default:
3074 : 608327 : if (gimple_call_flags (call) & ECF_LEAF)
3075 : : return true;
3076 : : return false;
3077 : : }
3078 : :
3079 : 4771048 : tree fndecl = gimple_call_fndecl (call);
3080 : 4771048 : if (!fndecl)
3081 : : return false;
3082 : 4607877 : struct cgraph_node *n = cgraph_node::get (fndecl);
3083 : 4607877 : if (!n)
3084 : : return false;
3085 : 4606500 : enum availability availability;
3086 : 4606500 : n = n->function_symbol (&availability);
3087 : 4606500 : if (!n || availability <= AVAIL_INTERPOSABLE)
3088 : : return false;
3089 : 1143215 : return n->nonfreeing_fn;
3090 : : }
3091 : :
3092 : : /* Return true when CALL is a call stmt that definitely need not
3093 : : be considered to be a memory barrier. */
3094 : : bool
3095 : 1599874 : nonbarrier_call_p (gimple *call)
3096 : : {
3097 : 1599874 : if (gimple_call_flags (call) & (ECF_PURE | ECF_CONST))
3098 : 621820 : return true;
3099 : : /* Should extend this to have a nonbarrier_fn flag, just as above in
3100 : : the nonfreeing case. */
3101 : : return false;
3102 : : }
3103 : :
3104 : : /* Callback for walk_stmt_load_store_ops.
3105 : :
3106 : : Return TRUE if OP will dereference the tree stored in DATA, FALSE
3107 : : otherwise.
3108 : :
3109 : : This routine only makes a superficial check for a dereference. Thus
3110 : : it must only be used if it is safe to return a false negative. */
3111 : : static bool
3112 : 76497116 : check_loadstore (gimple *, tree op, tree, void *data)
3113 : : {
3114 : 76497116 : if (TREE_CODE (op) == MEM_REF || TREE_CODE (op) == TARGET_MEM_REF)
3115 : : {
3116 : : /* Some address spaces may legitimately dereference zero. */
3117 : 39189085 : addr_space_t as = TYPE_ADDR_SPACE (TREE_TYPE (op));
3118 : 39189085 : if (targetm.addr_space.zero_address_valid (as))
3119 : : return false;
3120 : :
3121 : 39187972 : return operand_equal_p (TREE_OPERAND (op, 0), (tree)data, 0);
3122 : : }
3123 : : return false;
3124 : : }
3125 : :
3126 : :
3127 : : /* Return true if OP can be inferred to be non-NULL after STMT executes,
3128 : : either by using a pointer dereference or attributes. */
3129 : : bool
3130 : 0 : infer_nonnull_range (gimple *stmt, tree op)
3131 : : {
3132 : 0 : return (infer_nonnull_range_by_dereference (stmt, op)
3133 : 0 : || infer_nonnull_range_by_attribute (stmt, op));
3134 : : }
3135 : :
3136 : : /* Return true if OP can be inferred to be non-NULL after STMT
3137 : : executes by using a pointer dereference. */
3138 : : bool
3139 : 328030434 : infer_nonnull_range_by_dereference (gimple *stmt, tree op)
3140 : : {
3141 : : /* We can only assume that a pointer dereference will yield
3142 : : non-NULL if -fdelete-null-pointer-checks is enabled. */
3143 : 328030434 : if (!flag_delete_null_pointer_checks
3144 : 327819972 : || !POINTER_TYPE_P (TREE_TYPE (op))
3145 : 327819972 : || gimple_code (stmt) == GIMPLE_ASM
3146 : 655409026 : || gimple_clobber_p (stmt))
3147 : : return false;
3148 : :
3149 : 318940241 : if (walk_stmt_load_store_ops (stmt, (void *)op,
3150 : : check_loadstore, check_loadstore))
3151 : : return true;
3152 : :
3153 : : return false;
3154 : : }
3155 : :
3156 : : /* Return true if OP can be inferred to be a non-NULL after STMT
3157 : : executes by using attributes. If OP2 is non-NULL and nonnull_if_nonzero
3158 : : is the only attribute implying OP being non-NULL and the corresponding
3159 : : argument isn't non-zero INTEGER_CST, set *OP2 to the corresponding
3160 : : argument and return true (in that case returning true doesn't mean
3161 : : OP can be unconditionally inferred to be non-NULL, but conditionally). */
3162 : : bool
3163 : 73165935 : infer_nonnull_range_by_attribute (gimple *stmt, tree op, tree *op2)
3164 : : {
3165 : 73165935 : if (op2)
3166 : 3422 : *op2 = NULL_TREE;
3167 : :
3168 : : /* We can only assume that a pointer dereference will yield
3169 : : non-NULL if -fdelete-null-pointer-checks is enabled. */
3170 : 73165935 : if (!flag_delete_null_pointer_checks
3171 : 73139636 : || !POINTER_TYPE_P (TREE_TYPE (op))
3172 : 146305571 : || gimple_code (stmt) == GIMPLE_ASM)
3173 : : return false;
3174 : :
3175 : 73086399 : if (is_gimple_call (stmt) && !gimple_call_internal_p (stmt))
3176 : : {
3177 : 4359333 : tree fntype = gimple_call_fntype (stmt);
3178 : 4359333 : tree attrs = TYPE_ATTRIBUTES (fntype);
3179 : 4450805 : for (; attrs; attrs = TREE_CHAIN (attrs))
3180 : : {
3181 : 1105969 : attrs = lookup_attribute ("nonnull", attrs);
3182 : :
3183 : : /* If "nonnull" wasn't specified, we know nothing about
3184 : : the argument, unless "nonnull_if_nonzero" attribute is
3185 : : present. */
3186 : 1105969 : if (attrs == NULL_TREE)
3187 : : break;
3188 : :
3189 : : /* If "nonnull" applies to all the arguments, then ARG
3190 : : is non-null if it's in the argument list. */
3191 : 253313 : if (TREE_VALUE (attrs) == NULL_TREE)
3192 : : {
3193 : 479289 : for (unsigned int i = 0; i < gimple_call_num_args (stmt); i++)
3194 : : {
3195 : 334096 : if (POINTER_TYPE_P (TREE_TYPE (gimple_call_arg (stmt, i)))
3196 : 318539 : && operand_equal_p (op, gimple_call_arg (stmt, i), 0))
3197 : : return true;
3198 : : }
3199 : : return false;
3200 : : }
3201 : :
3202 : : /* Now see if op appears in the nonnull list. */
3203 : 235151 : for (tree t = TREE_VALUE (attrs); t; t = TREE_CHAIN (t))
3204 : : {
3205 : 143679 : unsigned int idx = TREE_INT_CST_LOW (TREE_VALUE (t)) - 1;
3206 : 143679 : if (idx < gimple_call_num_args (stmt))
3207 : : {
3208 : 143678 : tree arg = gimple_call_arg (stmt, idx);
3209 : 143678 : if (operand_equal_p (op, arg, 0))
3210 : : return true;
3211 : : }
3212 : : }
3213 : : }
3214 : :
3215 : 4197492 : for (attrs = TYPE_ATTRIBUTES (fntype);
3216 : 4372749 : (attrs = lookup_attribute ("nonnull_if_nonzero", attrs));
3217 : 175257 : attrs = TREE_CHAIN (attrs))
3218 : : {
3219 : 175627 : tree args = TREE_VALUE (attrs);
3220 : 175627 : unsigned int idx = TREE_INT_CST_LOW (TREE_VALUE (args)) - 1;
3221 : 175627 : unsigned int idx2
3222 : 175627 : = TREE_INT_CST_LOW (TREE_VALUE (TREE_CHAIN (args))) - 1;
3223 : 175627 : if (idx < gimple_call_num_args (stmt)
3224 : 175615 : && idx2 < gimple_call_num_args (stmt)
3225 : 351231 : && operand_equal_p (op, gimple_call_arg (stmt, idx), 0))
3226 : : {
3227 : 370 : tree arg2 = gimple_call_arg (stmt, idx2);
3228 : 370 : if (!INTEGRAL_TYPE_P (TREE_TYPE (arg2)))
3229 : : return false;
3230 : 370 : if (integer_nonzerop (arg2))
3231 : : return true;
3232 : 270 : if (integer_zerop (arg2))
3233 : : return false;
3234 : 245 : if (op2)
3235 : : {
3236 : : /* This case is meant for ubsan instrumentation.
3237 : : The caller can check at runtime if *OP2 is
3238 : : non-zero and OP is null. */
3239 : 92 : *op2 = arg2;
3240 : 92 : return true;
3241 : : }
3242 : 153 : return tree_expr_nonzero_p (arg2);
3243 : : }
3244 : : }
3245 : : }
3246 : :
3247 : : /* If this function is marked as returning non-null, then we can
3248 : : infer OP is non-null if it is used in the return statement. */
3249 : 72924188 : if (greturn *return_stmt = dyn_cast <greturn *> (stmt))
3250 : 930519 : if (gimple_return_retval (return_stmt)
3251 : 539352 : && operand_equal_p (gimple_return_retval (return_stmt), op, 0)
3252 : 1018492 : && lookup_attribute ("returns_nonnull",
3253 : 87973 : TYPE_ATTRIBUTES (TREE_TYPE (current_function_decl))))
3254 : : return true;
3255 : :
3256 : : return false;
3257 : : }
3258 : :
3259 : : /* Compare two case labels. Because the front end should already have
3260 : : made sure that case ranges do not overlap, it is enough to only compare
3261 : : the CASE_LOW values of each case label. */
3262 : :
3263 : : static int
3264 : 45130438 : compare_case_labels (const void *p1, const void *p2)
3265 : : {
3266 : 45130438 : const_tree const case1 = *(const_tree const*)p1;
3267 : 45130438 : const_tree const case2 = *(const_tree const*)p2;
3268 : :
3269 : : /* The 'default' case label always goes first. */
3270 : 45130438 : if (!CASE_LOW (case1))
3271 : : return -1;
3272 : 45130438 : else if (!CASE_LOW (case2))
3273 : : return 1;
3274 : : else
3275 : 45130438 : return tree_int_cst_compare (CASE_LOW (case1), CASE_LOW (case2));
3276 : : }
3277 : :
3278 : : /* Sort the case labels in LABEL_VEC in place in ascending order. */
3279 : :
3280 : : void
3281 : 70314 : sort_case_labels (vec<tree> &label_vec)
3282 : : {
3283 : 70314 : label_vec.qsort (compare_case_labels);
3284 : 70314 : }
3285 : :
3286 : : /* Prepare a vector of case labels to be used in a GIMPLE_SWITCH statement.
3287 : :
3288 : : LABELS is a vector that contains all case labels to look at.
3289 : :
3290 : : INDEX_TYPE is the type of the switch index expression. Case labels
3291 : : in LABELS are discarded if their values are not in the value range
3292 : : covered by INDEX_TYPE. The remaining case label values are folded
3293 : : to INDEX_TYPE.
3294 : :
3295 : : If a default case exists in LABELS, it is removed from LABELS and
3296 : : returned in DEFAULT_CASEP. If no default case exists, but the
3297 : : case labels already cover the whole range of INDEX_TYPE, a default
3298 : : case is returned pointing to one of the existing case labels.
3299 : : Otherwise DEFAULT_CASEP is set to NULL_TREE.
3300 : :
3301 : : DEFAULT_CASEP may be NULL, in which case the above comment doesn't
3302 : : apply and no action is taken regardless of whether a default case is
3303 : : found or not. */
3304 : :
3305 : : void
3306 : 63313 : preprocess_case_label_vec_for_gimple (vec<tree> &labels,
3307 : : tree index_type,
3308 : : tree *default_casep)
3309 : : {
3310 : 63313 : tree min_value, max_value;
3311 : 63313 : tree default_case = NULL_TREE;
3312 : 63313 : size_t i, len;
3313 : :
3314 : 63313 : i = 0;
3315 : 63313 : min_value = TYPE_MIN_VALUE (index_type);
3316 : 63313 : max_value = TYPE_MAX_VALUE (index_type);
3317 : 1204332 : while (i < labels.length ())
3318 : : {
3319 : 1141019 : tree elt = labels[i];
3320 : 1141019 : tree low = CASE_LOW (elt);
3321 : 1141019 : tree high = CASE_HIGH (elt);
3322 : 1141019 : bool remove_element = false;
3323 : :
3324 : 1141019 : if (low)
3325 : : {
3326 : 1104465 : gcc_checking_assert (TREE_CODE (low) == INTEGER_CST);
3327 : 1104465 : gcc_checking_assert (!high || TREE_CODE (high) == INTEGER_CST);
3328 : :
3329 : : /* This is a non-default case label, i.e. it has a value.
3330 : :
3331 : : See if the case label is reachable within the range of
3332 : : the index type. Remove out-of-range case values. Turn
3333 : : case ranges into a canonical form (high > low strictly)
3334 : : and convert the case label values to the index type.
3335 : :
3336 : : NB: The type of gimple_switch_index() may be the promoted
3337 : : type, but the case labels retain the original type. */
3338 : :
3339 : 13986 : if (high)
3340 : : {
3341 : : /* This is a case range. Discard empty ranges.
3342 : : If the bounds or the range are equal, turn this
3343 : : into a simple (one-value) case. */
3344 : 13986 : int cmp = tree_int_cst_compare (high, low);
3345 : 13986 : if (cmp < 0)
3346 : : remove_element = true;
3347 : 13986 : else if (cmp == 0)
3348 : : high = NULL_TREE;
3349 : : }
3350 : :
3351 : 1093321 : if (! high)
3352 : : {
3353 : : /* If the simple case value is unreachable, ignore it. */
3354 : 1101623 : if ((TREE_CODE (min_value) == INTEGER_CST
3355 : 1101623 : && tree_int_cst_compare (low, min_value) < 0)
3356 : 2203203 : || (TREE_CODE (max_value) == INTEGER_CST
3357 : 1101580 : && tree_int_cst_compare (low, max_value) > 0))
3358 : : remove_element = true;
3359 : : else
3360 : 1101462 : low = fold_convert (index_type, low);
3361 : : }
3362 : : else
3363 : : {
3364 : : /* If the entire case range is unreachable, ignore it. */
3365 : 2842 : if ((TREE_CODE (min_value) == INTEGER_CST
3366 : 2842 : && tree_int_cst_compare (high, min_value) < 0)
3367 : 5672 : || (TREE_CODE (max_value) == INTEGER_CST
3368 : 2830 : && tree_int_cst_compare (low, max_value) > 0))
3369 : : remove_element = true;
3370 : : else
3371 : : {
3372 : : /* If the lower bound is less than the index type's
3373 : : minimum value, truncate the range bounds. */
3374 : 2830 : if (TREE_CODE (min_value) == INTEGER_CST
3375 : 2830 : && tree_int_cst_compare (low, min_value) < 0)
3376 : : low = min_value;
3377 : 2830 : low = fold_convert (index_type, low);
3378 : :
3379 : : /* If the upper bound is greater than the index type's
3380 : : maximum value, truncate the range bounds. */
3381 : 2830 : if (TREE_CODE (max_value) == INTEGER_CST
3382 : 2830 : && tree_int_cst_compare (high, max_value) > 0)
3383 : : high = max_value;
3384 : 2830 : high = fold_convert (index_type, high);
3385 : :
3386 : : /* We may have folded a case range to a one-value case. */
3387 : 2830 : if (tree_int_cst_equal (low, high))
3388 : 0 : high = NULL_TREE;
3389 : : }
3390 : : }
3391 : :
3392 : 1104465 : CASE_LOW (elt) = low;
3393 : 1104465 : CASE_HIGH (elt) = high;
3394 : : }
3395 : : else
3396 : : {
3397 : 36554 : gcc_assert (!default_case);
3398 : 36554 : default_case = elt;
3399 : : /* The default case must be passed separately to the
3400 : : gimple_build_switch routine. But if DEFAULT_CASEP
3401 : : is NULL, we do not remove the default case (it would
3402 : : be completely lost). */
3403 : 36554 : if (default_casep)
3404 : : remove_element = true;
3405 : : }
3406 : :
3407 : 1104465 : if (remove_element)
3408 : 36727 : labels.ordered_remove (i);
3409 : : else
3410 : 1104292 : i++;
3411 : : }
3412 : 63313 : len = i;
3413 : :
3414 : 63313 : if (!labels.is_empty ())
3415 : 62486 : sort_case_labels (labels);
3416 : :
3417 : 63313 : if (default_casep && !default_case)
3418 : : {
3419 : : /* If the switch has no default label, add one, so that we jump
3420 : : around the switch body. If the labels already cover the whole
3421 : : range of the switch index_type, add the default label pointing
3422 : : to one of the existing labels. */
3423 : 15144 : if (len
3424 : 14680 : && TYPE_MIN_VALUE (index_type)
3425 : 14680 : && TYPE_MAX_VALUE (index_type)
3426 : 29824 : && tree_int_cst_equal (CASE_LOW (labels[0]),
3427 : 14680 : TYPE_MIN_VALUE (index_type)))
3428 : : {
3429 : 4368 : tree low, high = CASE_HIGH (labels[len - 1]);
3430 : 4368 : if (!high)
3431 : 4325 : high = CASE_LOW (labels[len - 1]);
3432 : 4368 : if (tree_int_cst_equal (high, TYPE_MAX_VALUE (index_type)))
3433 : : {
3434 : 64 : tree widest_label = labels[0];
3435 : 132 : for (i = 1; i < len; i++)
3436 : : {
3437 : 85 : high = CASE_LOW (labels[i]);
3438 : 85 : low = CASE_HIGH (labels[i - 1]);
3439 : 85 : if (!low)
3440 : 55 : low = CASE_LOW (labels[i - 1]);
3441 : :
3442 : 85 : if (CASE_HIGH (labels[i]) != NULL_TREE
3443 : 116 : && (CASE_HIGH (widest_label) == NULL_TREE
3444 : 26 : || (wi::gtu_p
3445 : 52 : (wi::to_wide (CASE_HIGH (labels[i]))
3446 : 78 : - wi::to_wide (CASE_LOW (labels[i])),
3447 : 26 : wi::to_wide (CASE_HIGH (widest_label))
3448 : 163 : - wi::to_wide (CASE_LOW (widest_label))))))
3449 : 17 : widest_label = labels[i];
3450 : :
3451 : 85 : if (wi::to_wide (low) + 1 != wi::to_wide (high))
3452 : : break;
3453 : : }
3454 : 64 : if (i == len)
3455 : : {
3456 : : /* Designate the label with the widest range to be the
3457 : : default label. */
3458 : 47 : tree label = CASE_LABEL (widest_label);
3459 : 47 : default_case = build_case_label (NULL_TREE, NULL_TREE,
3460 : : label);
3461 : : }
3462 : : }
3463 : : }
3464 : : }
3465 : :
3466 : 63313 : if (default_casep)
3467 : 51698 : *default_casep = default_case;
3468 : 63313 : }
3469 : :
3470 : : /* Set the location of all statements in SEQ to LOC. */
3471 : :
3472 : : void
3473 : 982946 : gimple_seq_set_location (gimple_seq seq, location_t loc)
3474 : : {
3475 : 1982526 : for (gimple_stmt_iterator i = gsi_start (seq); !gsi_end_p (i); gsi_next (&i))
3476 : 999580 : gimple_set_location (gsi_stmt (i), loc);
3477 : 982946 : }
3478 : :
3479 : : /* Release SSA_NAMEs in SEQ as well as the GIMPLE statements. */
3480 : :
3481 : : void
3482 : 5378687 : gimple_seq_discard (gimple_seq seq)
3483 : : {
3484 : 5378687 : gimple_stmt_iterator gsi;
3485 : :
3486 : 5898369 : for (gsi = gsi_start (seq); !gsi_end_p (gsi); )
3487 : : {
3488 : 350524 : gimple *stmt = gsi_stmt (gsi);
3489 : 350524 : gsi_remove (&gsi, true);
3490 : 350524 : release_defs (stmt);
3491 : 350524 : ggc_free (stmt);
3492 : : }
3493 : 5378687 : }
3494 : :
3495 : : /* See if STMT now calls function that takes no parameters and if so, drop
3496 : : call arguments. This is used when devirtualization machinery redirects
3497 : : to __builtin_unreachable or __cxa_pure_virtual. */
3498 : :
3499 : : void
3500 : 909164 : maybe_remove_unused_call_args (struct function *fn, gimple *stmt)
3501 : : {
3502 : 909164 : tree decl = gimple_call_fndecl (stmt);
3503 : 909164 : if (TYPE_ARG_TYPES (TREE_TYPE (decl))
3504 : 908318 : && TREE_VALUE (TYPE_ARG_TYPES (TREE_TYPE (decl))) == void_type_node
3505 : 1086665 : && gimple_call_num_args (stmt))
3506 : : {
3507 : 102535 : gimple_set_num_ops (stmt, 3);
3508 : 102535 : update_stmt_fn (fn, stmt);
3509 : : }
3510 : 909164 : }
3511 : :
3512 : : /* Return false if STMT will likely expand to real function call. */
3513 : :
3514 : : bool
3515 : 3267655 : gimple_inexpensive_call_p (gcall *stmt)
3516 : : {
3517 : 3267655 : if (gimple_call_internal_p (stmt))
3518 : : return true;
3519 : 3225915 : tree decl = gimple_call_fndecl (stmt);
3520 : 3225915 : if (decl && is_inexpensive_builtin (decl))
3521 : : return true;
3522 : : return false;
3523 : : }
3524 : :
3525 : : /* Return a non-artificial location for STMT. If STMT does not have
3526 : : location information, get the location from EXPR. */
3527 : :
3528 : : location_t
3529 : 120838 : gimple_or_expr_nonartificial_location (gimple *stmt, tree expr)
3530 : : {
3531 : 120838 : location_t loc = gimple_nonartificial_location (stmt);
3532 : 120838 : if (loc == UNKNOWN_LOCATION && EXPR_HAS_LOCATION (expr))
3533 : 104 : loc = tree_nonartificial_location (expr);
3534 : 120838 : return expansion_point_location_if_in_system_header (loc);
3535 : : }
3536 : :
3537 : :
3538 : : #if CHECKING_P
3539 : :
3540 : : namespace selftest {
3541 : :
3542 : : /* Selftests for core gimple structures. */
3543 : :
3544 : : /* Verify that STMT is pretty-printed as EXPECTED.
3545 : : Helper function for selftests. */
3546 : :
3547 : : static void
3548 : 20 : verify_gimple_pp (const char *expected, gimple *stmt)
3549 : : {
3550 : 20 : pretty_printer pp;
3551 : 20 : pp_gimple_stmt_1 (&pp, stmt, 0 /* spc */, TDF_NONE /* flags */);
3552 : 20 : ASSERT_STREQ (expected, pp_formatted_text (&pp));
3553 : 20 : }
3554 : :
3555 : : /* Build a GIMPLE_ASSIGN equivalent to
3556 : : tmp = 5;
3557 : : and verify various properties of it. */
3558 : :
3559 : : static void
3560 : 4 : test_assign_single ()
3561 : : {
3562 : 4 : tree type = integer_type_node;
3563 : 4 : tree lhs = build_decl (UNKNOWN_LOCATION, VAR_DECL,
3564 : : get_identifier ("tmp"),
3565 : : type);
3566 : 4 : tree rhs = build_int_cst (type, 5);
3567 : 4 : gassign *stmt = gimple_build_assign (lhs, rhs);
3568 : 4 : verify_gimple_pp ("tmp = 5;", stmt);
3569 : :
3570 : 4 : ASSERT_TRUE (is_gimple_assign (stmt));
3571 : 4 : ASSERT_EQ (lhs, gimple_assign_lhs (stmt));
3572 : 4 : ASSERT_EQ (lhs, gimple_get_lhs (stmt));
3573 : 4 : ASSERT_EQ (rhs, gimple_assign_rhs1 (stmt));
3574 : 4 : ASSERT_EQ (NULL, gimple_assign_rhs2 (stmt));
3575 : 4 : ASSERT_EQ (NULL, gimple_assign_rhs3 (stmt));
3576 : 4 : ASSERT_TRUE (gimple_assign_single_p (stmt));
3577 : 8 : ASSERT_EQ (INTEGER_CST, gimple_assign_rhs_code (stmt));
3578 : 4 : }
3579 : :
3580 : : /* Build a GIMPLE_ASSIGN equivalent to
3581 : : tmp = a * b;
3582 : : and verify various properties of it. */
3583 : :
3584 : : static void
3585 : 4 : test_assign_binop ()
3586 : : {
3587 : 4 : tree type = integer_type_node;
3588 : 4 : tree lhs = build_decl (UNKNOWN_LOCATION, VAR_DECL,
3589 : : get_identifier ("tmp"),
3590 : : type);
3591 : 4 : tree a = build_decl (UNKNOWN_LOCATION, VAR_DECL,
3592 : : get_identifier ("a"),
3593 : : type);
3594 : 4 : tree b = build_decl (UNKNOWN_LOCATION, VAR_DECL,
3595 : : get_identifier ("b"),
3596 : : type);
3597 : 4 : gassign *stmt = gimple_build_assign (lhs, MULT_EXPR, a, b);
3598 : 4 : verify_gimple_pp ("tmp = a * b;", stmt);
3599 : :
3600 : 4 : ASSERT_TRUE (is_gimple_assign (stmt));
3601 : 4 : ASSERT_EQ (lhs, gimple_assign_lhs (stmt));
3602 : 4 : ASSERT_EQ (lhs, gimple_get_lhs (stmt));
3603 : 4 : ASSERT_EQ (a, gimple_assign_rhs1 (stmt));
3604 : 8 : ASSERT_EQ (b, gimple_assign_rhs2 (stmt));
3605 : 4 : ASSERT_EQ (NULL, gimple_assign_rhs3 (stmt));
3606 : 4 : ASSERT_FALSE (gimple_assign_single_p (stmt));
3607 : 4 : ASSERT_EQ (MULT_EXPR, gimple_assign_rhs_code (stmt));
3608 : 4 : }
3609 : :
3610 : : /* Build a GIMPLE_NOP and verify various properties of it. */
3611 : :
3612 : : static void
3613 : 4 : test_nop_stmt ()
3614 : : {
3615 : 4 : gimple *stmt = gimple_build_nop ();
3616 : 4 : verify_gimple_pp ("GIMPLE_NOP", stmt);
3617 : 4 : ASSERT_EQ (GIMPLE_NOP, gimple_code (stmt));
3618 : 4 : ASSERT_EQ (NULL, gimple_get_lhs (stmt));
3619 : 4 : ASSERT_FALSE (gimple_assign_single_p (stmt));
3620 : 4 : }
3621 : :
3622 : : /* Build a GIMPLE_RETURN equivalent to
3623 : : return 7;
3624 : : and verify various properties of it. */
3625 : :
3626 : : static void
3627 : 4 : test_return_stmt ()
3628 : : {
3629 : 4 : tree type = integer_type_node;
3630 : 4 : tree val = build_int_cst (type, 7);
3631 : 4 : greturn *stmt = gimple_build_return (val);
3632 : 4 : verify_gimple_pp ("return 7;", stmt);
3633 : :
3634 : 4 : ASSERT_EQ (GIMPLE_RETURN, gimple_code (stmt));
3635 : 4 : ASSERT_EQ (NULL, gimple_get_lhs (stmt));
3636 : 4 : ASSERT_EQ (val, gimple_return_retval (stmt));
3637 : 4 : ASSERT_FALSE (gimple_assign_single_p (stmt));
3638 : 4 : }
3639 : :
3640 : : /* Build a GIMPLE_RETURN equivalent to
3641 : : return;
3642 : : and verify various properties of it. */
3643 : :
3644 : : static void
3645 : 4 : test_return_without_value ()
3646 : : {
3647 : 4 : greturn *stmt = gimple_build_return (NULL);
3648 : 4 : verify_gimple_pp ("return;", stmt);
3649 : :
3650 : 4 : ASSERT_EQ (GIMPLE_RETURN, gimple_code (stmt));
3651 : 4 : ASSERT_EQ (NULL, gimple_get_lhs (stmt));
3652 : 4 : ASSERT_EQ (NULL, gimple_return_retval (stmt));
3653 : 4 : ASSERT_FALSE (gimple_assign_single_p (stmt));
3654 : 4 : }
3655 : :
3656 : : /* Run all of the selftests within this file. */
3657 : :
3658 : : void
3659 : 4 : gimple_cc_tests ()
3660 : : {
3661 : 4 : test_assign_single ();
3662 : 4 : test_assign_binop ();
3663 : 4 : test_nop_stmt ();
3664 : 4 : test_return_stmt ();
3665 : 4 : test_return_without_value ();
3666 : 4 : }
3667 : :
3668 : : } // namespace selftest
3669 : :
3670 : :
3671 : : #endif /* CHECKING_P */
|