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