c++: top level bind when rewriting coroutines [PR106188]
[official-gcc.git] / gcc / gimple.cc
blobcd5ad0c718ba91f7d992b57e266fd7b76b838001
1 /* Gimple IR support functions.
3 Copyright (C) 2007-2022 Free Software Foundation, Inc.
4 Contributed by Aldy Hernandez <aldyh@redhat.com>
6 This file is part of GCC.
8 GCC is free software; you can redistribute it and/or modify it under
9 the terms of the GNU General Public License as published by the Free
10 Software Foundation; either version 3, or (at your option) any later
11 version.
13 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
14 WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16 for more details.
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING3. If not see
20 <http://www.gnu.org/licenses/>. */
22 #include "config.h"
23 #include "system.h"
24 #include "coretypes.h"
25 #include "backend.h"
26 #include "tree.h"
27 #include "gimple.h"
28 #include "ssa.h"
29 #include "cgraph.h"
30 #include "diagnostic.h"
31 #include "alias.h"
32 #include "fold-const.h"
33 #include "calls.h"
34 #include "stor-layout.h"
35 #include "internal-fn.h"
36 #include "tree-eh.h"
37 #include "gimple-iterator.h"
38 #include "gimple-walk.h"
39 #include "gimplify.h"
40 #include "target.h"
41 #include "builtins.h"
42 #include "selftest.h"
43 #include "gimple-pretty-print.h"
44 #include "stringpool.h"
45 #include "attribs.h"
46 #include "asan.h"
47 #include "ubsan.h"
48 #include "langhooks.h"
49 #include "attr-fnspec.h"
50 #include "ipa-modref-tree.h"
51 #include "ipa-modref.h"
52 #include "dbgcnt.h"
54 /* All the tuples have their operand vector (if present) at the very bottom
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). */
58 #define DEFGSSTRUCT(SYM, STRUCT, HAS_TREE_OP) \
59 (HAS_TREE_OP ? sizeof (struct STRUCT) - sizeof (tree) : 0),
60 EXPORTED_CONST size_t gimple_ops_offset_[] = {
61 #include "gsstruct.def"
63 #undef DEFGSSTRUCT
65 #define DEFGSSTRUCT(SYM, STRUCT, HAS_TREE_OP) sizeof (struct STRUCT),
66 static const size_t gsstruct_code_size[] = {
67 #include "gsstruct.def"
69 #undef DEFGSSTRUCT
71 #define DEFGSCODE(SYM, NAME, GSSCODE) NAME,
72 const char *const gimple_code_name[] = {
73 #include "gimple.def"
75 #undef DEFGSCODE
77 #define DEFGSCODE(SYM, NAME, GSSCODE) GSSCODE,
78 EXPORTED_CONST enum gimple_statement_structure_enum gss_for_code_[] = {
79 #include "gimple.def"
81 #undef DEFGSCODE
83 /* Gimple stats. */
85 uint64_t gimple_alloc_counts[(int) gimple_alloc_kind_all];
86 uint64_t gimple_alloc_sizes[(int) gimple_alloc_kind_all];
88 /* Keep in sync with gimple.h:enum gimple_alloc_kind. */
89 static const char * const gimple_alloc_kind_names[] = {
90 "assignments",
91 "phi nodes",
92 "conditionals",
93 "everything else"
96 /* Static gimple tuple members. */
97 const enum gimple_code gassign::code_;
98 const enum gimple_code gcall::code_;
99 const enum gimple_code gcond::code_;
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. */
106 /* Set the code for statement G to CODE. */
108 static inline void
109 gimple_set_code (gimple *g, enum gimple_code code)
111 g->code = code;
114 /* Return the number of bytes needed to hold a GIMPLE statement with
115 code CODE. */
117 size_t
118 gimple_size (enum gimple_code code, unsigned num_ops)
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;
126 /* Initialize GIMPLE statement G with CODE and NUM_OPS. */
128 void
129 gimple_init (gimple *g, enum gimple_code code, unsigned num_ops)
131 gimple_set_code (g, code);
132 gimple_set_num_ops (g, num_ops);
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);
140 /* Allocate memory for a GIMPLE statement with code CODE and NUM_OPS
141 operands. */
143 gimple *
144 gimple_alloc (enum gimple_code code, unsigned num_ops MEM_STAT_DECL)
146 size_t size;
147 gimple *stmt;
149 size = gimple_size (code, num_ops);
150 if (GATHER_STATISTICS)
152 enum gimple_alloc_kind kind = gimple_alloc_kind (code);
153 gimple_alloc_counts[(int) kind]++;
154 gimple_alloc_sizes[(int) kind] += size;
157 stmt = ggc_alloc_cleared_gimple_statement_stat (size PASS_MEM_STAT);
158 gimple_init (stmt, code, num_ops);
159 return stmt;
162 /* Set SUBCODE to be the code of the expression computed by statement G. */
164 static inline void
165 gimple_set_subcode (gimple *g, unsigned subcode)
167 /* We only have 16 bits for the RHS code. Assert that we are not
168 overflowing it. */
169 gcc_assert (subcode < (1 << 16));
170 g->subcode = subcode;
175 /* Build a tuple with operands. CODE is the statement to build (which
176 must be one of the GIMPLE_WITH_OPS tuples). SUBCODE is the subcode
177 for the new tuple. NUM_OPS is the number of operands to allocate. */
179 #define gimple_build_with_ops(c, s, n) \
180 gimple_build_with_ops_stat (c, s, n MEM_STAT_INFO)
182 static gimple *
183 gimple_build_with_ops_stat (enum gimple_code code, unsigned subcode,
184 unsigned num_ops MEM_STAT_DECL)
186 gimple *s = gimple_alloc (code, num_ops PASS_MEM_STAT);
187 gimple_set_subcode (s, subcode);
189 return s;
193 /* Build a GIMPLE_RETURN statement returning RETVAL. */
195 greturn *
196 gimple_build_return (tree retval)
198 greturn *s
199 = as_a <greturn *> (gimple_build_with_ops (GIMPLE_RETURN, ERROR_MARK,
200 2));
201 if (retval)
202 gimple_return_set_retval (s, retval);
203 return s;
206 /* Reset alias information on call S. */
208 void
209 gimple_call_reset_alias_info (gcall *s)
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));
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. */
226 static inline gcall *
227 gimple_build_call_1 (tree fn, unsigned nargs)
229 gcall *s
230 = as_a <gcall *> (gimple_build_with_ops (GIMPLE_CALL, ERROR_MARK,
231 nargs + 3));
232 if (TREE_CODE (fn) == FUNCTION_DECL)
233 fn = build_fold_addr_expr (fn);
234 gimple_set_op (s, 1, fn);
235 gimple_call_set_fntype (s, TREE_TYPE (TREE_TYPE (fn)));
236 gimple_call_reset_alias_info (s);
237 return s;
241 /* Build a GIMPLE_CALL statement to function FN with the arguments
242 specified in vector ARGS. */
244 gcall *
245 gimple_build_call_vec (tree fn, const vec<tree> &args)
247 unsigned i;
248 unsigned nargs = args.length ();
249 gcall *call = gimple_build_call_1 (fn, nargs);
251 for (i = 0; i < nargs; i++)
252 gimple_call_set_arg (call, i, args[i]);
254 return call;
258 /* Build a GIMPLE_CALL statement to function FN. NARGS is the number of
259 arguments. The ... are the arguments. */
261 gcall *
262 gimple_build_call (tree fn, unsigned nargs, ...)
264 va_list ap;
265 gcall *call;
266 unsigned i;
268 gcc_assert (TREE_CODE (fn) == FUNCTION_DECL || is_gimple_call_addr (fn));
270 call = gimple_build_call_1 (fn, nargs);
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);
277 return call;
281 /* Build a GIMPLE_CALL statement to function FN. NARGS is the number of
282 arguments. AP contains the arguments. */
284 gcall *
285 gimple_build_call_valist (tree fn, unsigned nargs, va_list ap)
287 gcall *call;
288 unsigned i;
290 gcc_assert (TREE_CODE (fn) == FUNCTION_DECL || is_gimple_call_addr (fn));
292 call = gimple_build_call_1 (fn, nargs);
294 for (i = 0; i < nargs; i++)
295 gimple_call_set_arg (call, i, va_arg (ap, tree));
297 return call;
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. */
305 static inline gcall *
306 gimple_build_call_internal_1 (enum internal_fn fn, unsigned nargs)
308 gcall *s
309 = as_a <gcall *> (gimple_build_with_ops (GIMPLE_CALL, ERROR_MARK,
310 nargs + 3));
311 s->subcode |= GF_CALL_INTERNAL;
312 gimple_call_set_internal_fn (s, fn);
313 gimple_call_reset_alias_info (s);
314 return s;
318 /* Build a GIMPLE_CALL statement to internal function FN. NARGS is
319 the number of arguments. The ... are the arguments. */
321 gcall *
322 gimple_build_call_internal (enum internal_fn fn, unsigned nargs, ...)
324 va_list ap;
325 gcall *call;
326 unsigned i;
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);
334 return call;
338 /* Build a GIMPLE_CALL statement to internal function FN with the arguments
339 specified in vector ARGS. */
341 gcall *
342 gimple_build_call_internal_vec (enum internal_fn fn, const vec<tree> &args)
344 unsigned i, nargs;
345 gcall *call;
347 nargs = args.length ();
348 call = gimple_build_call_internal_1 (fn, nargs);
349 for (i = 0; i < nargs; i++)
350 gimple_call_set_arg (call, i, args[i]);
352 return call;
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. */
360 gcall *
361 gimple_build_call_from_tree (tree t, tree fnptrtype)
363 unsigned i, nargs;
364 gcall *call;
366 gcc_assert (TREE_CODE (t) == CALL_EXPR);
368 nargs = call_expr_nargs (t);
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
375 fndecl = get_callee_fndecl (t);
376 call = gimple_build_call_1 (fndecl ? fndecl : CALL_EXPR_FN (t), nargs);
379 for (i = 0; i < nargs; i++)
380 gimple_call_set_arg (call, i, CALL_EXPR_ARG (t, i));
382 gimple_set_block (call, TREE_BLOCK (t));
383 gimple_set_location (call, EXPR_LOCATION (t));
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));
388 gimple_call_set_must_tail (call, CALL_EXPR_MUST_TAIL_CALL (t));
389 gimple_call_set_return_slot_opt (call, CALL_EXPR_RETURN_SLOT_OPT (t));
390 if (fndecl
391 && fndecl_built_in_p (fndecl, BUILT_IN_NORMAL)
392 && ALLOCA_FUNCTION_CODE_P (DECL_FUNCTION_CODE (fndecl)))
393 gimple_call_set_alloca_for_var (call, CALL_ALLOCA_FOR_VAR_P (t));
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));
398 else
399 gimple_call_set_from_thunk (call, CALL_FROM_THUNK_P (t));
400 gimple_call_set_va_arg_pack (call, CALL_EXPR_VA_ARG_PACK (t));
401 gimple_call_set_nothrow (call, TREE_NOTHROW (t));
402 gimple_call_set_by_descriptor (call, CALL_EXPR_BY_DESCRIPTOR (t));
403 copy_warning (call, t);
405 if (fnptrtype)
407 gimple_call_set_fntype (call, TREE_TYPE (fnptrtype));
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)
414 gcc_assert (POINTER_TYPE_P (fnptrtype));
415 tree fntype = TREE_TYPE (fnptrtype);
417 if (lookup_attribute ("nocf_check", TYPE_ATTRIBUTES (fntype)))
418 gimple_call_set_nocf_check (call, TRUE);
422 return call;
425 /* Build a gcall to __builtin_unreachable as rewritten by
426 -fsanitize=unreachable. */
428 gcall *
429 gimple_build_builtin_unreachable (location_t loc)
431 tree data = NULL_TREE;
432 tree fn = sanitize_unreachable_fn (&data, loc);
433 gcall *g;
434 if (DECL_FUNCTION_CODE (fn) != BUILT_IN_TRAP)
435 g = gimple_build_call (fn, data != NULL_TREE, data);
436 else
438 /* Instead of __builtin_trap use .TRAP, so that it doesn't
439 need vops. */
440 gcc_checking_assert (data == NULL_TREE);
441 g = gimple_build_call_internal (IFN_TRAP, 0);
443 gimple_set_location (g, loc);
444 return g;
447 /* Build a GIMPLE_ASSIGN statement.
449 LHS of the assignment.
450 RHS of the assignment which can be unary or binary. */
452 gassign *
453 gimple_build_assign (tree lhs, tree rhs MEM_STAT_DECL)
455 enum tree_code subcode;
456 tree op1, op2, op3;
458 extract_ops_from_tree (rhs, &subcode, &op1, &op2, &op3);
459 return gimple_build_assign (lhs, subcode, op1, op2, op3 PASS_MEM_STAT);
463 /* Build a GIMPLE_ASSIGN statement with subcode SUBCODE and operands
464 OP1, OP2 and OP3. */
466 static inline gassign *
467 gimple_build_assign_1 (tree lhs, enum tree_code subcode, tree op1,
468 tree op2, tree op3 MEM_STAT_DECL)
470 unsigned num_ops;
471 gassign *p;
473 /* Need 1 operand for LHS and 1 or 2 for the RHS (depending on the
474 code). */
475 num_ops = get_gimple_rhs_num_ops (subcode) + 1;
477 p = as_a <gassign *> (
478 gimple_build_with_ops_stat (GIMPLE_ASSIGN, (unsigned)subcode, num_ops
479 PASS_MEM_STAT));
480 gimple_assign_set_lhs (p, lhs);
481 gimple_assign_set_rhs1 (p, op1);
482 if (op2)
484 gcc_assert (num_ops > 2);
485 gimple_assign_set_rhs2 (p, op2);
488 if (op3)
490 gcc_assert (num_ops > 3);
491 gimple_assign_set_rhs3 (p, op3);
494 return p;
497 /* Build a GIMPLE_ASSIGN statement with subcode SUBCODE and operands
498 OP1, OP2 and OP3. */
500 gassign *
501 gimple_build_assign (tree lhs, enum tree_code subcode, tree op1,
502 tree op2, tree op3 MEM_STAT_DECL)
504 return gimple_build_assign_1 (lhs, subcode, op1, op2, op3 PASS_MEM_STAT);
507 /* Build a GIMPLE_ASSIGN statement with subcode SUBCODE and operands
508 OP1 and OP2. */
510 gassign *
511 gimple_build_assign (tree lhs, enum tree_code subcode, tree op1,
512 tree op2 MEM_STAT_DECL)
514 return gimple_build_assign_1 (lhs, subcode, op1, op2, NULL_TREE
515 PASS_MEM_STAT);
518 /* Build a GIMPLE_ASSIGN statement with subcode SUBCODE and operand OP1. */
520 gassign *
521 gimple_build_assign (tree lhs, enum tree_code subcode, tree op1 MEM_STAT_DECL)
523 return gimple_build_assign_1 (lhs, subcode, op1, NULL_TREE, NULL_TREE
524 PASS_MEM_STAT);
528 /* Build a GIMPLE_COND statement.
530 PRED is the condition used to compare LHS and the RHS.
531 T_LABEL is the label to jump to if the condition is true.
532 F_LABEL is the label to jump to otherwise. */
534 gcond *
535 gimple_build_cond (enum tree_code pred_code, tree lhs, tree rhs,
536 tree t_label, tree f_label)
538 gcond *p;
540 gcc_assert (TREE_CODE_CLASS (pred_code) == tcc_comparison);
541 p = as_a <gcond *> (gimple_build_with_ops (GIMPLE_COND, pred_code, 4));
542 gimple_cond_set_lhs (p, lhs);
543 gimple_cond_set_rhs (p, rhs);
544 gimple_cond_set_true_label (p, t_label);
545 gimple_cond_set_false_label (p, f_label);
546 return p;
549 /* Build a GIMPLE_COND statement from the conditional expression tree
550 COND. T_LABEL and F_LABEL are as in gimple_build_cond. */
552 gcond *
553 gimple_build_cond_from_tree (tree cond, tree t_label, tree f_label)
555 enum tree_code code;
556 tree lhs, rhs;
558 gimple_cond_get_ops_from_tree (cond, &code, &lhs, &rhs);
559 return gimple_build_cond (code, lhs, rhs, t_label, f_label);
562 /* Set code, lhs, and rhs of a GIMPLE_COND from a suitable
563 boolean expression tree COND. */
565 void
566 gimple_cond_set_condition_from_tree (gcond *stmt, tree cond)
568 enum tree_code code;
569 tree lhs, rhs;
571 gimple_cond_get_ops_from_tree (cond, &code, &lhs, &rhs);
572 gimple_cond_set_condition (stmt, code, lhs, rhs);
575 /* Build a GIMPLE_LABEL statement for LABEL. */
577 glabel *
578 gimple_build_label (tree label)
580 glabel *p
581 = as_a <glabel *> (gimple_build_with_ops (GIMPLE_LABEL, ERROR_MARK, 1));
582 gimple_label_set_label (p, label);
583 return p;
586 /* Build a GIMPLE_GOTO statement to label DEST. */
588 ggoto *
589 gimple_build_goto (tree dest)
591 ggoto *p
592 = as_a <ggoto *> (gimple_build_with_ops (GIMPLE_GOTO, ERROR_MARK, 1));
593 gimple_goto_set_dest (p, dest);
594 return p;
598 /* Build a GIMPLE_NOP statement. */
600 gimple *
601 gimple_build_nop (void)
603 return gimple_alloc (GIMPLE_NOP, 0);
607 /* Build a GIMPLE_BIND statement.
608 VARS are the variables in BODY.
609 BLOCK is the containing block. */
611 gbind *
612 gimple_build_bind (tree vars, gimple_seq body, tree block)
614 gbind *p = as_a <gbind *> (gimple_alloc (GIMPLE_BIND, 0));
615 gimple_bind_set_vars (p, vars);
616 if (body)
617 gimple_bind_set_body (p, body);
618 if (block)
619 gimple_bind_set_block (p, block);
620 return p;
623 /* Helper function to set the simple fields of a asm stmt.
625 STRING is a pointer to a string that is the asm blocks assembly code.
626 NINPUT is the number of register inputs.
627 NOUTPUT is the number of register outputs.
628 NCLOBBERS is the number of clobbered registers.
631 static inline gasm *
632 gimple_build_asm_1 (const char *string, unsigned ninputs, unsigned noutputs,
633 unsigned nclobbers, unsigned nlabels)
635 gasm *p;
636 int size = strlen (string);
638 p = as_a <gasm *> (
639 gimple_build_with_ops (GIMPLE_ASM, ERROR_MARK,
640 ninputs + noutputs + nclobbers + nlabels));
642 p->ni = ninputs;
643 p->no = noutputs;
644 p->nc = nclobbers;
645 p->nl = nlabels;
646 p->string = ggc_alloc_string (string, size);
648 if (GATHER_STATISTICS)
649 gimple_alloc_sizes[(int) gimple_alloc_kind (GIMPLE_ASM)] += size;
651 return p;
654 /* Build a GIMPLE_ASM statement.
656 STRING is the assembly code.
657 NINPUT is the number of register inputs.
658 NOUTPUT is the number of register outputs.
659 NCLOBBERS is the number of clobbered registers.
660 INPUTS is a vector of the input register parameters.
661 OUTPUTS is a vector of the output register parameters.
662 CLOBBERS is a vector of the clobbered register parameters.
663 LABELS is a vector of destination labels. */
665 gasm *
666 gimple_build_asm_vec (const char *string, vec<tree, va_gc> *inputs,
667 vec<tree, va_gc> *outputs, vec<tree, va_gc> *clobbers,
668 vec<tree, va_gc> *labels)
670 gasm *p;
671 unsigned i;
673 p = gimple_build_asm_1 (string,
674 vec_safe_length (inputs),
675 vec_safe_length (outputs),
676 vec_safe_length (clobbers),
677 vec_safe_length (labels));
679 for (i = 0; i < vec_safe_length (inputs); i++)
680 gimple_asm_set_input_op (p, i, (*inputs)[i]);
682 for (i = 0; i < vec_safe_length (outputs); i++)
683 gimple_asm_set_output_op (p, i, (*outputs)[i]);
685 for (i = 0; i < vec_safe_length (clobbers); i++)
686 gimple_asm_set_clobber_op (p, i, (*clobbers)[i]);
688 for (i = 0; i < vec_safe_length (labels); i++)
689 gimple_asm_set_label_op (p, i, (*labels)[i]);
691 return p;
694 /* Build a GIMPLE_CATCH statement.
696 TYPES are the catch types.
697 HANDLER is the exception handler. */
699 gcatch *
700 gimple_build_catch (tree types, gimple_seq handler)
702 gcatch *p = as_a <gcatch *> (gimple_alloc (GIMPLE_CATCH, 0));
703 gimple_catch_set_types (p, types);
704 if (handler)
705 gimple_catch_set_handler (p, handler);
707 return p;
710 /* Build a GIMPLE_EH_FILTER statement.
712 TYPES are the filter's types.
713 FAILURE is the filter's failure action. */
715 geh_filter *
716 gimple_build_eh_filter (tree types, gimple_seq failure)
718 geh_filter *p = as_a <geh_filter *> (gimple_alloc (GIMPLE_EH_FILTER, 0));
719 gimple_eh_filter_set_types (p, types);
720 if (failure)
721 gimple_eh_filter_set_failure (p, failure);
723 return p;
726 /* Build a GIMPLE_EH_MUST_NOT_THROW statement. */
728 geh_mnt *
729 gimple_build_eh_must_not_throw (tree decl)
731 geh_mnt *p = as_a <geh_mnt *> (gimple_alloc (GIMPLE_EH_MUST_NOT_THROW, 0));
733 gcc_assert (TREE_CODE (decl) == FUNCTION_DECL);
734 gcc_assert (flags_from_decl_or_type (decl) & ECF_NORETURN);
735 gimple_eh_must_not_throw_set_fndecl (p, decl);
737 return p;
740 /* Build a GIMPLE_EH_ELSE statement. */
742 geh_else *
743 gimple_build_eh_else (gimple_seq n_body, gimple_seq e_body)
745 geh_else *p = as_a <geh_else *> (gimple_alloc (GIMPLE_EH_ELSE, 0));
746 gimple_eh_else_set_n_body (p, n_body);
747 gimple_eh_else_set_e_body (p, e_body);
748 return p;
751 /* Build a GIMPLE_TRY statement.
753 EVAL is the expression to evaluate.
754 CLEANUP is the cleanup expression.
755 KIND is either GIMPLE_TRY_CATCH or GIMPLE_TRY_FINALLY depending on
756 whether this is a try/catch or a try/finally respectively. */
758 gtry *
759 gimple_build_try (gimple_seq eval, gimple_seq cleanup,
760 enum gimple_try_flags kind)
762 gtry *p;
764 gcc_assert (kind == GIMPLE_TRY_CATCH || kind == GIMPLE_TRY_FINALLY);
765 p = as_a <gtry *> (gimple_alloc (GIMPLE_TRY, 0));
766 gimple_set_subcode (p, kind);
767 if (eval)
768 gimple_try_set_eval (p, eval);
769 if (cleanup)
770 gimple_try_set_cleanup (p, cleanup);
772 return p;
775 /* Construct a GIMPLE_WITH_CLEANUP_EXPR statement.
777 CLEANUP is the cleanup expression. */
779 gimple *
780 gimple_build_wce (gimple_seq cleanup)
782 gimple *p = gimple_alloc (GIMPLE_WITH_CLEANUP_EXPR, 0);
783 if (cleanup)
784 gimple_wce_set_cleanup (p, cleanup);
786 return p;
790 /* Build a GIMPLE_RESX statement. */
792 gresx *
793 gimple_build_resx (int region)
795 gresx *p
796 = as_a <gresx *> (gimple_build_with_ops (GIMPLE_RESX, ERROR_MARK, 0));
797 p->region = region;
798 return p;
802 /* The helper for constructing a gimple switch statement.
803 INDEX is the switch's index.
804 NLABELS is the number of labels in the switch excluding the default.
805 DEFAULT_LABEL is the default label for the switch statement. */
807 gswitch *
808 gimple_build_switch_nlabels (unsigned nlabels, tree index, tree default_label)
810 /* nlabels + 1 default label + 1 index. */
811 gcc_checking_assert (default_label);
812 gswitch *p = as_a <gswitch *> (gimple_build_with_ops (GIMPLE_SWITCH,
813 ERROR_MARK,
814 1 + 1 + nlabels));
815 gimple_switch_set_index (p, index);
816 gimple_switch_set_default_label (p, default_label);
817 return p;
820 /* Build a GIMPLE_SWITCH statement.
822 INDEX is the switch's index.
823 DEFAULT_LABEL is the default label
824 ARGS is a vector of labels excluding the default. */
826 gswitch *
827 gimple_build_switch (tree index, tree default_label, const vec<tree> &args)
829 unsigned i, nlabels = args.length ();
831 gswitch *p = gimple_build_switch_nlabels (nlabels, index, default_label);
833 /* Copy the labels from the vector to the switch statement. */
834 for (i = 0; i < nlabels; i++)
835 gimple_switch_set_label (p, i + 1, args[i]);
837 return p;
840 /* Build a GIMPLE_EH_DISPATCH statement. */
842 geh_dispatch *
843 gimple_build_eh_dispatch (int region)
845 geh_dispatch *p
846 = as_a <geh_dispatch *> (
847 gimple_build_with_ops (GIMPLE_EH_DISPATCH, ERROR_MARK, 0));
848 p->region = region;
849 return p;
852 /* Build a new GIMPLE_DEBUG_BIND statement.
854 VAR is bound to VALUE; block and location are taken from STMT. */
856 gdebug *
857 gimple_build_debug_bind (tree var, tree value, gimple *stmt MEM_STAT_DECL)
859 gdebug *p
860 = as_a <gdebug *> (gimple_build_with_ops_stat (GIMPLE_DEBUG,
861 (unsigned)GIMPLE_DEBUG_BIND, 2
862 PASS_MEM_STAT));
863 gimple_debug_bind_set_var (p, var);
864 gimple_debug_bind_set_value (p, value);
865 if (stmt)
866 gimple_set_location (p, gimple_location (stmt));
868 return p;
872 /* Build a new GIMPLE_DEBUG_SOURCE_BIND statement.
874 VAR is bound to VALUE; block and location are taken from STMT. */
876 gdebug *
877 gimple_build_debug_source_bind (tree var, tree value,
878 gimple *stmt MEM_STAT_DECL)
880 gdebug *p
881 = as_a <gdebug *> (
882 gimple_build_with_ops_stat (GIMPLE_DEBUG,
883 (unsigned)GIMPLE_DEBUG_SOURCE_BIND, 2
884 PASS_MEM_STAT));
886 gimple_debug_source_bind_set_var (p, var);
887 gimple_debug_source_bind_set_value (p, value);
888 if (stmt)
889 gimple_set_location (p, gimple_location (stmt));
891 return p;
895 /* Build a new GIMPLE_DEBUG_BEGIN_STMT statement in BLOCK at
896 LOCATION. */
898 gdebug *
899 gimple_build_debug_begin_stmt (tree block, location_t location
900 MEM_STAT_DECL)
902 gdebug *p
903 = as_a <gdebug *> (
904 gimple_build_with_ops_stat (GIMPLE_DEBUG,
905 (unsigned)GIMPLE_DEBUG_BEGIN_STMT, 0
906 PASS_MEM_STAT));
908 gimple_set_location (p, location);
909 gimple_set_block (p, block);
910 cfun->debug_marker_count++;
912 return p;
916 /* Build a new GIMPLE_DEBUG_INLINE_ENTRY statement in BLOCK at
917 LOCATION. The BLOCK links to the inlined function. */
919 gdebug *
920 gimple_build_debug_inline_entry (tree block, location_t location
921 MEM_STAT_DECL)
923 gdebug *p
924 = as_a <gdebug *> (
925 gimple_build_with_ops_stat (GIMPLE_DEBUG,
926 (unsigned)GIMPLE_DEBUG_INLINE_ENTRY, 0
927 PASS_MEM_STAT));
929 gimple_set_location (p, location);
930 gimple_set_block (p, block);
931 cfun->debug_marker_count++;
933 return p;
937 /* Build a GIMPLE_OMP_CRITICAL statement.
939 BODY is the sequence of statements for which only one thread can execute.
940 NAME is optional identifier for this critical block.
941 CLAUSES are clauses for this critical block. */
943 gomp_critical *
944 gimple_build_omp_critical (gimple_seq body, tree name, tree clauses)
946 gomp_critical *p
947 = as_a <gomp_critical *> (gimple_alloc (GIMPLE_OMP_CRITICAL, 0));
948 gimple_omp_critical_set_name (p, name);
949 gimple_omp_critical_set_clauses (p, clauses);
950 if (body)
951 gimple_omp_set_body (p, body);
953 return p;
956 /* Build a GIMPLE_OMP_FOR statement.
958 BODY is sequence of statements inside the for loop.
959 KIND is the `for' variant.
960 CLAUSES are any of the construct's clauses.
961 COLLAPSE is the collapse count.
962 PRE_BODY is the sequence of statements that are loop invariant. */
964 gomp_for *
965 gimple_build_omp_for (gimple_seq body, int kind, tree clauses, size_t collapse,
966 gimple_seq pre_body)
968 gomp_for *p = as_a <gomp_for *> (gimple_alloc (GIMPLE_OMP_FOR, 0));
969 if (body)
970 gimple_omp_set_body (p, body);
971 gimple_omp_for_set_clauses (p, clauses);
972 gimple_omp_for_set_kind (p, kind);
973 p->collapse = collapse;
974 p->iter = ggc_cleared_vec_alloc<gimple_omp_for_iter> (collapse);
976 if (pre_body)
977 gimple_omp_for_set_pre_body (p, pre_body);
979 return p;
983 /* Build a GIMPLE_OMP_PARALLEL statement.
985 BODY is sequence of statements which are executed in parallel.
986 CLAUSES are the OMP parallel construct's clauses.
987 CHILD_FN is the function created for the parallel threads to execute.
988 DATA_ARG are the shared data argument(s). */
990 gomp_parallel *
991 gimple_build_omp_parallel (gimple_seq body, tree clauses, tree child_fn,
992 tree data_arg)
994 gomp_parallel *p
995 = as_a <gomp_parallel *> (gimple_alloc (GIMPLE_OMP_PARALLEL, 0));
996 if (body)
997 gimple_omp_set_body (p, body);
998 gimple_omp_parallel_set_clauses (p, clauses);
999 gimple_omp_parallel_set_child_fn (p, child_fn);
1000 gimple_omp_parallel_set_data_arg (p, data_arg);
1002 return p;
1006 /* Build a GIMPLE_OMP_TASK statement.
1008 BODY is sequence of statements which are executed by the explicit task.
1009 CLAUSES are the OMP task construct's clauses.
1010 CHILD_FN is the function created for the parallel threads to execute.
1011 DATA_ARG are the shared data argument(s).
1012 COPY_FN is the optional function for firstprivate initialization.
1013 ARG_SIZE and ARG_ALIGN are size and alignment of the data block. */
1015 gomp_task *
1016 gimple_build_omp_task (gimple_seq body, tree clauses, tree child_fn,
1017 tree data_arg, tree copy_fn, tree arg_size,
1018 tree arg_align)
1020 gomp_task *p = as_a <gomp_task *> (gimple_alloc (GIMPLE_OMP_TASK, 0));
1021 if (body)
1022 gimple_omp_set_body (p, body);
1023 gimple_omp_task_set_clauses (p, clauses);
1024 gimple_omp_task_set_child_fn (p, child_fn);
1025 gimple_omp_task_set_data_arg (p, data_arg);
1026 gimple_omp_task_set_copy_fn (p, copy_fn);
1027 gimple_omp_task_set_arg_size (p, arg_size);
1028 gimple_omp_task_set_arg_align (p, arg_align);
1030 return p;
1034 /* Build a GIMPLE_OMP_SECTION statement for a sections statement.
1036 BODY is the sequence of statements in the section. */
1038 gimple *
1039 gimple_build_omp_section (gimple_seq body)
1041 gimple *p = gimple_alloc (GIMPLE_OMP_SECTION, 0);
1042 if (body)
1043 gimple_omp_set_body (p, body);
1045 return p;
1049 /* Build a GIMPLE_OMP_MASTER statement.
1051 BODY is the sequence of statements to be executed by just the master. */
1053 gimple *
1054 gimple_build_omp_master (gimple_seq body)
1056 gimple *p = gimple_alloc (GIMPLE_OMP_MASTER, 0);
1057 if (body)
1058 gimple_omp_set_body (p, body);
1060 return p;
1063 /* Build a GIMPLE_OMP_MASKED statement.
1065 BODY is the sequence of statements to be executed by the selected thread(s). */
1067 gimple *
1068 gimple_build_omp_masked (gimple_seq body, tree clauses)
1070 gimple *p = gimple_alloc (GIMPLE_OMP_MASKED, 0);
1071 gimple_omp_masked_set_clauses (p, clauses);
1072 if (body)
1073 gimple_omp_set_body (p, body);
1075 return p;
1078 /* Build a GIMPLE_OMP_TASKGROUP statement.
1080 BODY is the sequence of statements to be executed by the taskgroup
1081 construct.
1082 CLAUSES are any of the construct's clauses. */
1084 gimple *
1085 gimple_build_omp_taskgroup (gimple_seq body, tree clauses)
1087 gimple *p = gimple_alloc (GIMPLE_OMP_TASKGROUP, 0);
1088 gimple_omp_taskgroup_set_clauses (p, clauses);
1089 if (body)
1090 gimple_omp_set_body (p, body);
1092 return p;
1096 /* Build a GIMPLE_OMP_CONTINUE statement.
1098 CONTROL_DEF is the definition of the control variable.
1099 CONTROL_USE is the use of the control variable. */
1101 gomp_continue *
1102 gimple_build_omp_continue (tree control_def, tree control_use)
1104 gomp_continue *p
1105 = as_a <gomp_continue *> (gimple_alloc (GIMPLE_OMP_CONTINUE, 0));
1106 gimple_omp_continue_set_control_def (p, control_def);
1107 gimple_omp_continue_set_control_use (p, control_use);
1108 return p;
1111 /* Build a GIMPLE_OMP_ORDERED statement.
1113 BODY is the sequence of statements inside a loop that will executed in
1114 sequence.
1115 CLAUSES are clauses for this statement. */
1117 gomp_ordered *
1118 gimple_build_omp_ordered (gimple_seq body, tree clauses)
1120 gomp_ordered *p
1121 = as_a <gomp_ordered *> (gimple_alloc (GIMPLE_OMP_ORDERED, 0));
1122 gimple_omp_ordered_set_clauses (p, clauses);
1123 if (body)
1124 gimple_omp_set_body (p, body);
1126 return p;
1130 /* Build a GIMPLE_OMP_RETURN statement.
1131 WAIT_P is true if this is a non-waiting return. */
1133 gimple *
1134 gimple_build_omp_return (bool wait_p)
1136 gimple *p = gimple_alloc (GIMPLE_OMP_RETURN, 0);
1137 if (wait_p)
1138 gimple_omp_return_set_nowait (p);
1140 return p;
1144 /* Build a GIMPLE_OMP_SCAN statement.
1146 BODY is the sequence of statements to be executed by the scan
1147 construct.
1148 CLAUSES are any of the construct's clauses. */
1150 gomp_scan *
1151 gimple_build_omp_scan (gimple_seq body, tree clauses)
1153 gomp_scan *p
1154 = as_a <gomp_scan *> (gimple_alloc (GIMPLE_OMP_SCAN, 0));
1155 gimple_omp_scan_set_clauses (p, clauses);
1156 if (body)
1157 gimple_omp_set_body (p, body);
1159 return p;
1163 /* Build a GIMPLE_OMP_SECTIONS statement.
1165 BODY is a sequence of section statements.
1166 CLAUSES are any of the OMP sections contsruct's clauses: private,
1167 firstprivate, lastprivate, reduction, and nowait. */
1169 gomp_sections *
1170 gimple_build_omp_sections (gimple_seq body, tree clauses)
1172 gomp_sections *p
1173 = as_a <gomp_sections *> (gimple_alloc (GIMPLE_OMP_SECTIONS, 0));
1174 if (body)
1175 gimple_omp_set_body (p, body);
1176 gimple_omp_sections_set_clauses (p, clauses);
1178 return p;
1182 /* Build a GIMPLE_OMP_SECTIONS_SWITCH. */
1184 gimple *
1185 gimple_build_omp_sections_switch (void)
1187 return gimple_alloc (GIMPLE_OMP_SECTIONS_SWITCH, 0);
1191 /* Build a GIMPLE_OMP_SINGLE statement.
1193 BODY is the sequence of statements that will be executed once.
1194 CLAUSES are any of the OMP single construct's clauses: private, firstprivate,
1195 copyprivate, nowait. */
1197 gomp_single *
1198 gimple_build_omp_single (gimple_seq body, tree clauses)
1200 gomp_single *p
1201 = as_a <gomp_single *> (gimple_alloc (GIMPLE_OMP_SINGLE, 0));
1202 if (body)
1203 gimple_omp_set_body (p, body);
1204 gimple_omp_single_set_clauses (p, clauses);
1206 return p;
1210 /* Build a GIMPLE_OMP_SCOPE statement.
1212 BODY is the sequence of statements that will be executed once.
1213 CLAUSES are any of the OMP scope construct's clauses: private, reduction,
1214 nowait. */
1216 gimple *
1217 gimple_build_omp_scope (gimple_seq body, tree clauses)
1219 gimple *p = gimple_alloc (GIMPLE_OMP_SCOPE, 0);
1220 gimple_omp_scope_set_clauses (p, clauses);
1221 if (body)
1222 gimple_omp_set_body (p, body);
1224 return p;
1228 /* Build a GIMPLE_OMP_TARGET statement.
1230 BODY is the sequence of statements that will be executed.
1231 KIND is the kind of the region.
1232 CLAUSES are any of the construct's clauses. */
1234 gomp_target *
1235 gimple_build_omp_target (gimple_seq body, int kind, tree clauses)
1237 gomp_target *p
1238 = as_a <gomp_target *> (gimple_alloc (GIMPLE_OMP_TARGET, 0));
1239 if (body)
1240 gimple_omp_set_body (p, body);
1241 gimple_omp_target_set_clauses (p, clauses);
1242 gimple_omp_target_set_kind (p, kind);
1244 return p;
1248 /* Build a GIMPLE_OMP_TEAMS statement.
1250 BODY is the sequence of statements that will be executed.
1251 CLAUSES are any of the OMP teams construct's clauses. */
1253 gomp_teams *
1254 gimple_build_omp_teams (gimple_seq body, tree clauses)
1256 gomp_teams *p = as_a <gomp_teams *> (gimple_alloc (GIMPLE_OMP_TEAMS, 0));
1257 if (body)
1258 gimple_omp_set_body (p, body);
1259 gimple_omp_teams_set_clauses (p, clauses);
1261 return p;
1265 /* Build a GIMPLE_OMP_ATOMIC_LOAD statement. */
1267 gomp_atomic_load *
1268 gimple_build_omp_atomic_load (tree lhs, tree rhs, enum omp_memory_order mo)
1270 gomp_atomic_load *p
1271 = as_a <gomp_atomic_load *> (gimple_alloc (GIMPLE_OMP_ATOMIC_LOAD, 0));
1272 gimple_omp_atomic_load_set_lhs (p, lhs);
1273 gimple_omp_atomic_load_set_rhs (p, rhs);
1274 gimple_omp_atomic_set_memory_order (p, mo);
1275 return p;
1278 /* Build a GIMPLE_OMP_ATOMIC_STORE statement.
1280 VAL is the value we are storing. */
1282 gomp_atomic_store *
1283 gimple_build_omp_atomic_store (tree val, enum omp_memory_order mo)
1285 gomp_atomic_store *p
1286 = as_a <gomp_atomic_store *> (gimple_alloc (GIMPLE_OMP_ATOMIC_STORE, 0));
1287 gimple_omp_atomic_store_set_val (p, val);
1288 gimple_omp_atomic_set_memory_order (p, mo);
1289 return p;
1292 /* Build a GIMPLE_TRANSACTION statement. */
1294 gtransaction *
1295 gimple_build_transaction (gimple_seq body)
1297 gtransaction *p
1298 = as_a <gtransaction *> (gimple_alloc (GIMPLE_TRANSACTION, 0));
1299 gimple_transaction_set_body (p, body);
1300 gimple_transaction_set_label_norm (p, 0);
1301 gimple_transaction_set_label_uninst (p, 0);
1302 gimple_transaction_set_label_over (p, 0);
1303 return p;
1306 #if defined ENABLE_GIMPLE_CHECKING
1307 /* Complain of a gimple type mismatch and die. */
1309 void
1310 gimple_check_failed (const gimple *gs, const char *file, int line,
1311 const char *function, enum gimple_code code,
1312 enum tree_code subcode)
1314 internal_error ("gimple check: expected %s(%s), have %s(%s) in %s, at %s:%d",
1315 gimple_code_name[code],
1316 get_tree_code_name (subcode),
1317 gimple_code_name[gimple_code (gs)],
1318 gs->subcode > 0
1319 ? get_tree_code_name ((enum tree_code) gs->subcode)
1320 : "",
1321 function, trim_filename (file), line);
1323 #endif /* ENABLE_GIMPLE_CHECKING */
1326 /* Link gimple statement GS to the end of the sequence *SEQ_P. If
1327 *SEQ_P is NULL, a new sequence is allocated. */
1329 void
1330 gimple_seq_add_stmt (gimple_seq *seq_p, gimple *gs)
1332 gimple_stmt_iterator si;
1333 if (gs == NULL)
1334 return;
1336 si = gsi_last (*seq_p);
1337 gsi_insert_after (&si, gs, GSI_NEW_STMT);
1340 /* Link gimple statement GS to the end of the sequence *SEQ_P. If
1341 *SEQ_P is NULL, a new sequence is allocated. This function is
1342 similar to gimple_seq_add_stmt, but does not scan the operands.
1343 During gimplification, we need to manipulate statement sequences
1344 before the def/use vectors have been constructed. */
1346 void
1347 gimple_seq_add_stmt_without_update (gimple_seq *seq_p, gimple *gs)
1349 gimple_stmt_iterator si;
1351 if (gs == NULL)
1352 return;
1354 si = gsi_last (*seq_p);
1355 gsi_insert_after_without_update (&si, gs, GSI_NEW_STMT);
1358 /* Append sequence SRC to the end of sequence *DST_P. If *DST_P is
1359 NULL, a new sequence is allocated. */
1361 void
1362 gimple_seq_add_seq (gimple_seq *dst_p, gimple_seq src)
1364 gimple_stmt_iterator si;
1365 if (src == NULL)
1366 return;
1368 si = gsi_last (*dst_p);
1369 gsi_insert_seq_after (&si, src, GSI_NEW_STMT);
1372 /* Append sequence SRC to the end of sequence *DST_P. If *DST_P is
1373 NULL, a new sequence is allocated. This function is
1374 similar to gimple_seq_add_seq, but does not scan the operands. */
1376 void
1377 gimple_seq_add_seq_without_update (gimple_seq *dst_p, gimple_seq src)
1379 gimple_stmt_iterator si;
1380 if (src == NULL)
1381 return;
1383 si = gsi_last (*dst_p);
1384 gsi_insert_seq_after_without_update (&si, src, GSI_NEW_STMT);
1387 /* Determine whether to assign a location to the statement GS. */
1389 static bool
1390 should_carry_location_p (gimple *gs)
1392 /* Don't emit a line note for a label. We particularly don't want to
1393 emit one for the break label, since it doesn't actually correspond
1394 to the beginning of the loop/switch. */
1395 if (gimple_code (gs) == GIMPLE_LABEL)
1396 return false;
1398 return true;
1401 /* Set the location for gimple statement GS to LOCATION. */
1403 static void
1404 annotate_one_with_location (gimple *gs, location_t location)
1406 if (!gimple_has_location (gs)
1407 && !gimple_do_not_emit_location_p (gs)
1408 && should_carry_location_p (gs))
1409 gimple_set_location (gs, location);
1412 /* Set LOCATION for all the statements after iterator GSI in sequence
1413 SEQ. If GSI is pointing to the end of the sequence, start with the
1414 first statement in SEQ. */
1416 void
1417 annotate_all_with_location_after (gimple_seq seq, gimple_stmt_iterator gsi,
1418 location_t location)
1420 if (gsi_end_p (gsi))
1421 gsi = gsi_start (seq);
1422 else
1423 gsi_next (&gsi);
1425 for (; !gsi_end_p (gsi); gsi_next (&gsi))
1426 annotate_one_with_location (gsi_stmt (gsi), location);
1429 /* Set the location for all the statements in a sequence STMT_P to LOCATION. */
1431 void
1432 annotate_all_with_location (gimple_seq stmt_p, location_t location)
1434 gimple_stmt_iterator i;
1436 if (gimple_seq_empty_p (stmt_p))
1437 return;
1439 for (i = gsi_start (stmt_p); !gsi_end_p (i); gsi_next (&i))
1441 gimple *gs = gsi_stmt (i);
1442 annotate_one_with_location (gs, location);
1446 /* Helper function of empty_body_p. Return true if STMT is an empty
1447 statement. */
1449 static bool
1450 empty_stmt_p (gimple *stmt)
1452 if (gimple_code (stmt) == GIMPLE_NOP)
1453 return true;
1454 if (gbind *bind_stmt = dyn_cast <gbind *> (stmt))
1455 return empty_body_p (gimple_bind_body (bind_stmt));
1456 return false;
1460 /* Return true if BODY contains nothing but empty statements. */
1462 bool
1463 empty_body_p (gimple_seq body)
1465 gimple_stmt_iterator i;
1467 if (gimple_seq_empty_p (body))
1468 return true;
1469 for (i = gsi_start (body); !gsi_end_p (i); gsi_next (&i))
1470 if (!empty_stmt_p (gsi_stmt (i))
1471 && !is_gimple_debug (gsi_stmt (i)))
1472 return false;
1474 return true;
1478 /* Perform a deep copy of sequence SRC and return the result. */
1480 gimple_seq
1481 gimple_seq_copy (gimple_seq src)
1483 gimple_stmt_iterator gsi;
1484 gimple_seq new_seq = NULL;
1485 gimple *stmt;
1487 for (gsi = gsi_start (src); !gsi_end_p (gsi); gsi_next (&gsi))
1489 stmt = gimple_copy (gsi_stmt (gsi));
1490 gimple_seq_add_stmt (&new_seq, stmt);
1493 return new_seq;
1498 /* Return true if calls C1 and C2 are known to go to the same function. */
1500 bool
1501 gimple_call_same_target_p (const gimple *c1, const gimple *c2)
1503 if (gimple_call_internal_p (c1))
1504 return (gimple_call_internal_p (c2)
1505 && gimple_call_internal_fn (c1) == gimple_call_internal_fn (c2)
1506 && (!gimple_call_internal_unique_p (as_a <const gcall *> (c1))
1507 || c1 == c2));
1508 else
1509 return (gimple_call_fn (c1) == gimple_call_fn (c2)
1510 || (gimple_call_fndecl (c1)
1511 && gimple_call_fndecl (c1) == gimple_call_fndecl (c2)));
1514 /* Detect flags from a GIMPLE_CALL. This is just like
1515 call_expr_flags, but for gimple tuples. */
1518 gimple_call_flags (const gimple *stmt)
1520 int flags = 0;
1522 if (gimple_call_internal_p (stmt))
1523 flags = internal_fn_flags (gimple_call_internal_fn (stmt));
1524 else
1526 tree decl = gimple_call_fndecl (stmt);
1527 if (decl)
1528 flags = flags_from_decl_or_type (decl);
1529 flags |= flags_from_decl_or_type (gimple_call_fntype (stmt));
1532 if (stmt->subcode & GF_CALL_NOTHROW)
1533 flags |= ECF_NOTHROW;
1535 if (stmt->subcode & GF_CALL_BY_DESCRIPTOR)
1536 flags |= ECF_BY_DESCRIPTOR;
1538 return flags;
1541 /* Return the "fn spec" string for call STMT. */
1543 attr_fnspec
1544 gimple_call_fnspec (const gcall *stmt)
1546 tree type, attr;
1548 if (gimple_call_internal_p (stmt))
1550 const_tree spec = internal_fn_fnspec (gimple_call_internal_fn (stmt));
1551 if (spec)
1552 return spec;
1553 else
1554 return "";
1557 type = gimple_call_fntype (stmt);
1558 if (type)
1560 attr = lookup_attribute ("fn spec", TYPE_ATTRIBUTES (type));
1561 if (attr)
1562 return TREE_VALUE (TREE_VALUE (attr));
1564 if (gimple_call_builtin_p (stmt, BUILT_IN_NORMAL))
1565 return builtin_fnspec (gimple_call_fndecl (stmt));
1566 tree fndecl = gimple_call_fndecl (stmt);
1567 /* If the call is to a replaceable operator delete and results
1568 from a delete expression as opposed to a direct call to
1569 such operator, then we can treat it as free. */
1570 if (fndecl
1571 && DECL_IS_OPERATOR_DELETE_P (fndecl)
1572 && DECL_IS_REPLACEABLE_OPERATOR (fndecl)
1573 && gimple_call_from_new_or_delete (stmt))
1574 return ". o ";
1575 /* Similarly operator new can be treated as malloc. */
1576 if (fndecl
1577 && DECL_IS_REPLACEABLE_OPERATOR_NEW_P (fndecl)
1578 && gimple_call_from_new_or_delete (stmt))
1579 return "m ";
1580 return "";
1583 /* Detects argument flags for argument number ARG on call STMT. */
1586 gimple_call_arg_flags (const gcall *stmt, unsigned arg)
1588 attr_fnspec fnspec = gimple_call_fnspec (stmt);
1589 int flags = 0;
1591 if (fnspec.known_p ())
1592 flags = fnspec.arg_eaf_flags (arg);
1593 tree callee = gimple_call_fndecl (stmt);
1594 if (callee)
1596 cgraph_node *node = cgraph_node::get (callee);
1597 modref_summary *summary = node ? get_modref_function_summary (node)
1598 : NULL;
1600 if (summary && summary->arg_flags.length () > arg)
1602 int modref_flags = summary->arg_flags[arg];
1604 /* We have possibly optimized out load. Be conservative here. */
1605 if (!node->binds_to_current_def_p ())
1606 modref_flags = interposable_eaf_flags (modref_flags, flags);
1607 if (dbg_cnt (ipa_mod_ref_pta))
1608 flags |= modref_flags;
1611 return flags;
1614 /* Detects argument flags for return slot on call STMT. */
1617 gimple_call_retslot_flags (const gcall *stmt)
1619 int flags = implicit_retslot_eaf_flags;
1621 tree callee = gimple_call_fndecl (stmt);
1622 if (callee)
1624 cgraph_node *node = cgraph_node::get (callee);
1625 modref_summary *summary = node ? get_modref_function_summary (node)
1626 : NULL;
1628 if (summary)
1630 int modref_flags = summary->retslot_flags;
1632 /* We have possibly optimized out load. Be conservative here. */
1633 if (!node->binds_to_current_def_p ())
1634 modref_flags = interposable_eaf_flags (modref_flags, flags);
1635 if (dbg_cnt (ipa_mod_ref_pta))
1636 flags |= modref_flags;
1639 return flags;
1642 /* Detects argument flags for static chain on call STMT. */
1645 gimple_call_static_chain_flags (const gcall *stmt)
1647 int flags = 0;
1649 tree callee = gimple_call_fndecl (stmt);
1650 if (callee)
1652 cgraph_node *node = cgraph_node::get (callee);
1653 modref_summary *summary = node ? get_modref_function_summary (node)
1654 : NULL;
1656 /* Nested functions should always bind to current def since
1657 there is no public ABI for them. */
1658 gcc_checking_assert (node->binds_to_current_def_p ());
1659 if (summary)
1661 int modref_flags = summary->static_chain_flags;
1663 if (dbg_cnt (ipa_mod_ref_pta))
1664 flags |= modref_flags;
1667 return flags;
1670 /* Detects return flags for the call STMT. */
1673 gimple_call_return_flags (const gcall *stmt)
1675 if (gimple_call_flags (stmt) & ECF_MALLOC)
1676 return ERF_NOALIAS;
1678 attr_fnspec fnspec = gimple_call_fnspec (stmt);
1680 unsigned int arg_no;
1681 if (fnspec.returns_arg (&arg_no))
1682 return ERF_RETURNS_ARG | arg_no;
1684 if (fnspec.returns_noalias_p ())
1685 return ERF_NOALIAS;
1686 return 0;
1690 /* Return true if call STMT is known to return a non-zero result. */
1692 bool
1693 gimple_call_nonnull_result_p (gcall *call)
1695 tree fndecl = gimple_call_fndecl (call);
1696 if (!fndecl)
1697 return false;
1698 if (flag_delete_null_pointer_checks && !flag_check_new
1699 && DECL_IS_OPERATOR_NEW_P (fndecl)
1700 && !TREE_NOTHROW (fndecl))
1701 return true;
1703 /* References are always non-NULL. */
1704 if (flag_delete_null_pointer_checks
1705 && TREE_CODE (TREE_TYPE (fndecl)) == REFERENCE_TYPE)
1706 return true;
1708 if (flag_delete_null_pointer_checks
1709 && lookup_attribute ("returns_nonnull",
1710 TYPE_ATTRIBUTES (gimple_call_fntype (call))))
1711 return true;
1712 return gimple_alloca_call_p (call);
1716 /* If CALL returns a non-null result in an argument, return that arg. */
1718 tree
1719 gimple_call_nonnull_arg (gcall *call)
1721 tree fndecl = gimple_call_fndecl (call);
1722 if (!fndecl)
1723 return NULL_TREE;
1725 unsigned rf = gimple_call_return_flags (call);
1726 if (rf & ERF_RETURNS_ARG)
1728 unsigned argnum = rf & ERF_RETURN_ARG_MASK;
1729 if (argnum < gimple_call_num_args (call))
1731 tree arg = gimple_call_arg (call, argnum);
1732 if (SSA_VAR_P (arg)
1733 && infer_nonnull_range_by_attribute (call, arg))
1734 return arg;
1737 return NULL_TREE;
1741 /* Return true if GS is a copy assignment. */
1743 bool
1744 gimple_assign_copy_p (gimple *gs)
1746 return (gimple_assign_single_p (gs)
1747 && is_gimple_val (gimple_op (gs, 1)));
1751 /* Return true if GS is a SSA_NAME copy assignment. */
1753 bool
1754 gimple_assign_ssa_name_copy_p (gimple *gs)
1756 return (gimple_assign_single_p (gs)
1757 && TREE_CODE (gimple_assign_lhs (gs)) == SSA_NAME
1758 && TREE_CODE (gimple_assign_rhs1 (gs)) == SSA_NAME);
1762 /* Return true if GS is an assignment with a unary RHS, but the
1763 operator has no effect on the assigned value. The logic is adapted
1764 from STRIP_NOPS. This predicate is intended to be used in tuplifying
1765 instances in which STRIP_NOPS was previously applied to the RHS of
1766 an assignment.
1768 NOTE: In the use cases that led to the creation of this function
1769 and of gimple_assign_single_p, it is typical to test for either
1770 condition and to proceed in the same manner. In each case, the
1771 assigned value is represented by the single RHS operand of the
1772 assignment. I suspect there may be cases where gimple_assign_copy_p,
1773 gimple_assign_single_p, or equivalent logic is used where a similar
1774 treatment of unary NOPs is appropriate. */
1776 bool
1777 gimple_assign_unary_nop_p (gimple *gs)
1779 return (is_gimple_assign (gs)
1780 && (CONVERT_EXPR_CODE_P (gimple_assign_rhs_code (gs))
1781 || gimple_assign_rhs_code (gs) == NON_LVALUE_EXPR)
1782 && gimple_assign_rhs1 (gs) != error_mark_node
1783 && (TYPE_MODE (TREE_TYPE (gimple_assign_lhs (gs)))
1784 == TYPE_MODE (TREE_TYPE (gimple_assign_rhs1 (gs)))));
1787 /* Set BB to be the basic block holding G. */
1789 void
1790 gimple_set_bb (gimple *stmt, basic_block bb)
1792 stmt->bb = bb;
1794 if (gimple_code (stmt) != GIMPLE_LABEL)
1795 return;
1797 /* If the statement is a label, add the label to block-to-labels map
1798 so that we can speed up edge creation for GIMPLE_GOTOs. */
1799 if (cfun->cfg)
1801 tree t;
1802 int uid;
1804 t = gimple_label_label (as_a <glabel *> (stmt));
1805 uid = LABEL_DECL_UID (t);
1806 if (uid == -1)
1808 unsigned old_len =
1809 vec_safe_length (label_to_block_map_for_fn (cfun));
1810 LABEL_DECL_UID (t) = uid = cfun->cfg->last_label_uid++;
1811 if (old_len <= (unsigned) uid)
1812 vec_safe_grow_cleared (label_to_block_map_for_fn (cfun), uid + 1);
1815 (*label_to_block_map_for_fn (cfun))[uid] = bb;
1820 /* Modify the RHS of the assignment pointed-to by GSI using the
1821 operands in the expression tree EXPR.
1823 NOTE: The statement pointed-to by GSI may be reallocated if it
1824 did not have enough operand slots.
1826 This function is useful to convert an existing tree expression into
1827 the flat representation used for the RHS of a GIMPLE assignment.
1828 It will reallocate memory as needed to expand or shrink the number
1829 of operand slots needed to represent EXPR.
1831 NOTE: If you find yourself building a tree and then calling this
1832 function, you are most certainly doing it the slow way. It is much
1833 better to build a new assignment or to use the function
1834 gimple_assign_set_rhs_with_ops, which does not require an
1835 expression tree to be built. */
1837 void
1838 gimple_assign_set_rhs_from_tree (gimple_stmt_iterator *gsi, tree expr)
1840 enum tree_code subcode;
1841 tree op1, op2, op3;
1843 extract_ops_from_tree (expr, &subcode, &op1, &op2, &op3);
1844 gimple_assign_set_rhs_with_ops (gsi, subcode, op1, op2, op3);
1848 /* Set the RHS of assignment statement pointed-to by GSI to CODE with
1849 operands OP1, OP2 and OP3.
1851 NOTE: The statement pointed-to by GSI may be reallocated if it
1852 did not have enough operand slots. */
1854 void
1855 gimple_assign_set_rhs_with_ops (gimple_stmt_iterator *gsi, enum tree_code code,
1856 tree op1, tree op2, tree op3)
1858 unsigned new_rhs_ops = get_gimple_rhs_num_ops (code);
1859 gimple *stmt = gsi_stmt (*gsi);
1860 gimple *old_stmt = stmt;
1862 /* If the new CODE needs more operands, allocate a new statement. */
1863 if (gimple_num_ops (stmt) < new_rhs_ops + 1)
1865 tree lhs = gimple_assign_lhs (old_stmt);
1866 stmt = gimple_alloc (gimple_code (old_stmt), new_rhs_ops + 1);
1867 memcpy (stmt, old_stmt, gimple_size (gimple_code (old_stmt)));
1868 gimple_init_singleton (stmt);
1870 /* The LHS needs to be reset as this also changes the SSA name
1871 on the LHS. */
1872 gimple_assign_set_lhs (stmt, lhs);
1875 gimple_set_num_ops (stmt, new_rhs_ops + 1);
1876 gimple_set_subcode (stmt, code);
1877 gimple_assign_set_rhs1 (stmt, op1);
1878 if (new_rhs_ops > 1)
1879 gimple_assign_set_rhs2 (stmt, op2);
1880 if (new_rhs_ops > 2)
1881 gimple_assign_set_rhs3 (stmt, op3);
1882 if (stmt != old_stmt)
1883 gsi_replace (gsi, stmt, false);
1887 /* Return the LHS of a statement that performs an assignment,
1888 either a GIMPLE_ASSIGN or a GIMPLE_CALL. Returns NULL_TREE
1889 for a call to a function that returns no value, or for a
1890 statement other than an assignment or a call. */
1892 tree
1893 gimple_get_lhs (const gimple *stmt)
1895 enum gimple_code code = gimple_code (stmt);
1897 if (code == GIMPLE_ASSIGN)
1898 return gimple_assign_lhs (stmt);
1899 else if (code == GIMPLE_CALL)
1900 return gimple_call_lhs (stmt);
1901 else if (code == GIMPLE_PHI)
1902 return gimple_phi_result (stmt);
1903 else
1904 return NULL_TREE;
1908 /* Set the LHS of a statement that performs an assignment,
1909 either a GIMPLE_ASSIGN or a GIMPLE_CALL. */
1911 void
1912 gimple_set_lhs (gimple *stmt, tree lhs)
1914 enum gimple_code code = gimple_code (stmt);
1916 if (code == GIMPLE_ASSIGN)
1917 gimple_assign_set_lhs (stmt, lhs);
1918 else if (code == GIMPLE_CALL)
1919 gimple_call_set_lhs (stmt, lhs);
1920 else
1921 gcc_unreachable ();
1925 /* Return a deep copy of statement STMT. All the operands from STMT
1926 are reallocated and copied using unshare_expr. The DEF, USE, VDEF
1927 and VUSE operand arrays are set to empty in the new copy. The new
1928 copy isn't part of any sequence. */
1930 gimple *
1931 gimple_copy (gimple *stmt)
1933 enum gimple_code code = gimple_code (stmt);
1934 unsigned num_ops = gimple_num_ops (stmt);
1935 gimple *copy = gimple_alloc (code, num_ops);
1936 unsigned i;
1938 /* Shallow copy all the fields from STMT. */
1939 memcpy (copy, stmt, gimple_size (code));
1940 gimple_init_singleton (copy);
1942 /* If STMT has sub-statements, deep-copy them as well. */
1943 if (gimple_has_substatements (stmt))
1945 gimple_seq new_seq;
1946 tree t;
1948 switch (gimple_code (stmt))
1950 case GIMPLE_BIND:
1952 gbind *bind_stmt = as_a <gbind *> (stmt);
1953 gbind *bind_copy = as_a <gbind *> (copy);
1954 new_seq = gimple_seq_copy (gimple_bind_body (bind_stmt));
1955 gimple_bind_set_body (bind_copy, new_seq);
1956 gimple_bind_set_vars (bind_copy,
1957 unshare_expr (gimple_bind_vars (bind_stmt)));
1958 gimple_bind_set_block (bind_copy, gimple_bind_block (bind_stmt));
1960 break;
1962 case GIMPLE_CATCH:
1964 gcatch *catch_stmt = as_a <gcatch *> (stmt);
1965 gcatch *catch_copy = as_a <gcatch *> (copy);
1966 new_seq = gimple_seq_copy (gimple_catch_handler (catch_stmt));
1967 gimple_catch_set_handler (catch_copy, new_seq);
1968 t = unshare_expr (gimple_catch_types (catch_stmt));
1969 gimple_catch_set_types (catch_copy, t);
1971 break;
1973 case GIMPLE_EH_FILTER:
1975 geh_filter *eh_filter_stmt = as_a <geh_filter *> (stmt);
1976 geh_filter *eh_filter_copy = as_a <geh_filter *> (copy);
1977 new_seq
1978 = gimple_seq_copy (gimple_eh_filter_failure (eh_filter_stmt));
1979 gimple_eh_filter_set_failure (eh_filter_copy, new_seq);
1980 t = unshare_expr (gimple_eh_filter_types (eh_filter_stmt));
1981 gimple_eh_filter_set_types (eh_filter_copy, t);
1983 break;
1985 case GIMPLE_EH_ELSE:
1987 geh_else *eh_else_stmt = as_a <geh_else *> (stmt);
1988 geh_else *eh_else_copy = as_a <geh_else *> (copy);
1989 new_seq = gimple_seq_copy (gimple_eh_else_n_body (eh_else_stmt));
1990 gimple_eh_else_set_n_body (eh_else_copy, new_seq);
1991 new_seq = gimple_seq_copy (gimple_eh_else_e_body (eh_else_stmt));
1992 gimple_eh_else_set_e_body (eh_else_copy, new_seq);
1994 break;
1996 case GIMPLE_TRY:
1998 gtry *try_stmt = as_a <gtry *> (stmt);
1999 gtry *try_copy = as_a <gtry *> (copy);
2000 new_seq = gimple_seq_copy (gimple_try_eval (try_stmt));
2001 gimple_try_set_eval (try_copy, new_seq);
2002 new_seq = gimple_seq_copy (gimple_try_cleanup (try_stmt));
2003 gimple_try_set_cleanup (try_copy, new_seq);
2005 break;
2007 case GIMPLE_OMP_FOR:
2008 new_seq = gimple_seq_copy (gimple_omp_for_pre_body (stmt));
2009 gimple_omp_for_set_pre_body (copy, new_seq);
2010 t = unshare_expr (gimple_omp_for_clauses (stmt));
2011 gimple_omp_for_set_clauses (copy, t);
2013 gomp_for *omp_for_copy = as_a <gomp_for *> (copy);
2014 omp_for_copy->iter = ggc_vec_alloc<gimple_omp_for_iter>
2015 ( gimple_omp_for_collapse (stmt));
2017 for (i = 0; i < gimple_omp_for_collapse (stmt); i++)
2019 gimple_omp_for_set_cond (copy, i,
2020 gimple_omp_for_cond (stmt, i));
2021 gimple_omp_for_set_index (copy, i,
2022 gimple_omp_for_index (stmt, i));
2023 t = unshare_expr (gimple_omp_for_initial (stmt, i));
2024 gimple_omp_for_set_initial (copy, i, t);
2025 t = unshare_expr (gimple_omp_for_final (stmt, i));
2026 gimple_omp_for_set_final (copy, i, t);
2027 t = unshare_expr (gimple_omp_for_incr (stmt, i));
2028 gimple_omp_for_set_incr (copy, i, t);
2030 goto copy_omp_body;
2032 case GIMPLE_OMP_PARALLEL:
2034 gomp_parallel *omp_par_stmt = as_a <gomp_parallel *> (stmt);
2035 gomp_parallel *omp_par_copy = as_a <gomp_parallel *> (copy);
2036 t = unshare_expr (gimple_omp_parallel_clauses (omp_par_stmt));
2037 gimple_omp_parallel_set_clauses (omp_par_copy, t);
2038 t = unshare_expr (gimple_omp_parallel_child_fn (omp_par_stmt));
2039 gimple_omp_parallel_set_child_fn (omp_par_copy, t);
2040 t = unshare_expr (gimple_omp_parallel_data_arg (omp_par_stmt));
2041 gimple_omp_parallel_set_data_arg (omp_par_copy, t);
2043 goto copy_omp_body;
2045 case GIMPLE_OMP_TASK:
2046 t = unshare_expr (gimple_omp_task_clauses (stmt));
2047 gimple_omp_task_set_clauses (copy, t);
2048 t = unshare_expr (gimple_omp_task_child_fn (stmt));
2049 gimple_omp_task_set_child_fn (copy, t);
2050 t = unshare_expr (gimple_omp_task_data_arg (stmt));
2051 gimple_omp_task_set_data_arg (copy, t);
2052 t = unshare_expr (gimple_omp_task_copy_fn (stmt));
2053 gimple_omp_task_set_copy_fn (copy, t);
2054 t = unshare_expr (gimple_omp_task_arg_size (stmt));
2055 gimple_omp_task_set_arg_size (copy, t);
2056 t = unshare_expr (gimple_omp_task_arg_align (stmt));
2057 gimple_omp_task_set_arg_align (copy, t);
2058 goto copy_omp_body;
2060 case GIMPLE_OMP_CRITICAL:
2061 t = unshare_expr (gimple_omp_critical_name
2062 (as_a <gomp_critical *> (stmt)));
2063 gimple_omp_critical_set_name (as_a <gomp_critical *> (copy), t);
2064 t = unshare_expr (gimple_omp_critical_clauses
2065 (as_a <gomp_critical *> (stmt)));
2066 gimple_omp_critical_set_clauses (as_a <gomp_critical *> (copy), t);
2067 goto copy_omp_body;
2069 case GIMPLE_OMP_ORDERED:
2070 t = unshare_expr (gimple_omp_ordered_clauses
2071 (as_a <gomp_ordered *> (stmt)));
2072 gimple_omp_ordered_set_clauses (as_a <gomp_ordered *> (copy), t);
2073 goto copy_omp_body;
2075 case GIMPLE_OMP_SCAN:
2076 t = gimple_omp_scan_clauses (as_a <gomp_scan *> (stmt));
2077 t = unshare_expr (t);
2078 gimple_omp_scan_set_clauses (as_a <gomp_scan *> (copy), t);
2079 goto copy_omp_body;
2081 case GIMPLE_OMP_TASKGROUP:
2082 t = unshare_expr (gimple_omp_taskgroup_clauses (stmt));
2083 gimple_omp_taskgroup_set_clauses (copy, t);
2084 goto copy_omp_body;
2086 case GIMPLE_OMP_SECTIONS:
2087 t = unshare_expr (gimple_omp_sections_clauses (stmt));
2088 gimple_omp_sections_set_clauses (copy, t);
2089 t = unshare_expr (gimple_omp_sections_control (stmt));
2090 gimple_omp_sections_set_control (copy, t);
2091 goto copy_omp_body;
2093 case GIMPLE_OMP_SINGLE:
2095 gomp_single *omp_single_copy = as_a <gomp_single *> (copy);
2096 t = unshare_expr (gimple_omp_single_clauses (stmt));
2097 gimple_omp_single_set_clauses (omp_single_copy, t);
2099 goto copy_omp_body;
2101 case GIMPLE_OMP_SCOPE:
2102 t = unshare_expr (gimple_omp_scope_clauses (stmt));
2103 gimple_omp_scope_set_clauses (copy, t);
2104 goto copy_omp_body;
2106 case GIMPLE_OMP_TARGET:
2108 gomp_target *omp_target_stmt = as_a <gomp_target *> (stmt);
2109 gomp_target *omp_target_copy = as_a <gomp_target *> (copy);
2110 t = unshare_expr (gimple_omp_target_clauses (omp_target_stmt));
2111 gimple_omp_target_set_clauses (omp_target_copy, t);
2112 t = unshare_expr (gimple_omp_target_data_arg (omp_target_stmt));
2113 gimple_omp_target_set_data_arg (omp_target_copy, t);
2115 goto copy_omp_body;
2117 case GIMPLE_OMP_TEAMS:
2119 gomp_teams *omp_teams_copy = as_a <gomp_teams *> (copy);
2120 t = unshare_expr (gimple_omp_teams_clauses (stmt));
2121 gimple_omp_teams_set_clauses (omp_teams_copy, t);
2123 /* FALLTHRU */
2125 case GIMPLE_OMP_SECTION:
2126 case GIMPLE_OMP_MASTER:
2127 copy_omp_body:
2128 new_seq = gimple_seq_copy (gimple_omp_body (stmt));
2129 gimple_omp_set_body (copy, new_seq);
2130 break;
2132 case GIMPLE_OMP_MASKED:
2133 t = unshare_expr (gimple_omp_masked_clauses (stmt));
2134 gimple_omp_masked_set_clauses (copy, t);
2135 goto copy_omp_body;
2137 case GIMPLE_TRANSACTION:
2138 new_seq = gimple_seq_copy (gimple_transaction_body (
2139 as_a <gtransaction *> (stmt)));
2140 gimple_transaction_set_body (as_a <gtransaction *> (copy),
2141 new_seq);
2142 break;
2144 case GIMPLE_WITH_CLEANUP_EXPR:
2145 new_seq = gimple_seq_copy (gimple_wce_cleanup (stmt));
2146 gimple_wce_set_cleanup (copy, new_seq);
2147 break;
2149 default:
2150 gcc_unreachable ();
2154 /* Make copy of operands. */
2155 for (i = 0; i < num_ops; i++)
2156 gimple_set_op (copy, i, unshare_expr (gimple_op (stmt, i)));
2158 if (gimple_has_mem_ops (stmt))
2160 gimple_set_vdef (copy, gimple_vdef (stmt));
2161 gimple_set_vuse (copy, gimple_vuse (stmt));
2164 /* Clear out SSA operand vectors on COPY. */
2165 if (gimple_has_ops (stmt))
2167 gimple_set_use_ops (copy, NULL);
2169 /* SSA operands need to be updated. */
2170 gimple_set_modified (copy, true);
2173 if (gimple_debug_nonbind_marker_p (stmt))
2174 cfun->debug_marker_count++;
2176 return copy;
2179 /* Move OLD_STMT's vuse and vdef operands to NEW_STMT, on the assumption
2180 that OLD_STMT is about to be removed. */
2182 void
2183 gimple_move_vops (gimple *new_stmt, gimple *old_stmt)
2185 tree vdef = gimple_vdef (old_stmt);
2186 gimple_set_vuse (new_stmt, gimple_vuse (old_stmt));
2187 gimple_set_vdef (new_stmt, vdef);
2188 if (vdef && TREE_CODE (vdef) == SSA_NAME)
2189 SSA_NAME_DEF_STMT (vdef) = new_stmt;
2192 /* Return true if statement S has side-effects. We consider a
2193 statement to have side effects if:
2195 - It is a GIMPLE_CALL not marked with ECF_PURE or ECF_CONST.
2196 - Any of its operands are marked TREE_THIS_VOLATILE or TREE_SIDE_EFFECTS. */
2198 bool
2199 gimple_has_side_effects (const gimple *s)
2201 if (is_gimple_debug (s))
2202 return false;
2204 /* We don't have to scan the arguments to check for
2205 volatile arguments, though, at present, we still
2206 do a scan to check for TREE_SIDE_EFFECTS. */
2207 if (gimple_has_volatile_ops (s))
2208 return true;
2210 if (gimple_code (s) == GIMPLE_ASM
2211 && gimple_asm_volatile_p (as_a <const gasm *> (s)))
2212 return true;
2214 if (is_gimple_call (s))
2216 int flags = gimple_call_flags (s);
2218 /* An infinite loop is considered a side effect. */
2219 if (!(flags & (ECF_CONST | ECF_PURE))
2220 || (flags & ECF_LOOPING_CONST_OR_PURE))
2221 return true;
2223 return false;
2226 return false;
2229 /* Helper for gimple_could_trap_p and gimple_assign_rhs_could_trap_p.
2230 Return true if S can trap. When INCLUDE_MEM is true, check whether
2231 the memory operations could trap. When INCLUDE_STORES is true and
2232 S is a GIMPLE_ASSIGN, the LHS of the assignment is also checked. */
2234 bool
2235 gimple_could_trap_p_1 (const gimple *s, bool include_mem, bool include_stores)
2237 tree t, div = NULL_TREE;
2238 enum tree_code op;
2240 if (include_mem)
2242 unsigned i, start = (is_gimple_assign (s) && !include_stores) ? 1 : 0;
2244 for (i = start; i < gimple_num_ops (s); i++)
2245 if (tree_could_trap_p (gimple_op (s, i)))
2246 return true;
2249 switch (gimple_code (s))
2251 case GIMPLE_ASM:
2252 return gimple_asm_volatile_p (as_a <const gasm *> (s));
2254 case GIMPLE_CALL:
2255 if (gimple_call_internal_p (s))
2256 return false;
2257 t = gimple_call_fndecl (s);
2258 /* Assume that indirect and calls to weak functions may trap. */
2259 if (!t || !DECL_P (t) || DECL_WEAK (t))
2260 return true;
2261 return false;
2263 case GIMPLE_ASSIGN:
2264 op = gimple_assign_rhs_code (s);
2266 /* For COND_EXPR only the condition may trap. */
2267 if (op == COND_EXPR)
2268 return tree_could_trap_p (gimple_assign_rhs1 (s));
2270 /* For comparisons we need to check rhs operand types instead of lhs type
2271 (which is BOOLEAN_TYPE). */
2272 if (TREE_CODE_CLASS (op) == tcc_comparison)
2273 t = TREE_TYPE (gimple_assign_rhs1 (s));
2274 else
2275 t = TREE_TYPE (gimple_assign_lhs (s));
2277 if (get_gimple_rhs_class (op) == GIMPLE_BINARY_RHS)
2278 div = gimple_assign_rhs2 (s);
2280 return (operation_could_trap_p (op, FLOAT_TYPE_P (t),
2281 (INTEGRAL_TYPE_P (t)
2282 && TYPE_OVERFLOW_TRAPS (t)),
2283 div));
2285 case GIMPLE_COND:
2286 t = TREE_TYPE (gimple_cond_lhs (s));
2287 return operation_could_trap_p (gimple_cond_code (s),
2288 FLOAT_TYPE_P (t), false, NULL_TREE);
2290 default:
2291 break;
2294 return false;
2297 /* Return true if statement S can trap. */
2299 bool
2300 gimple_could_trap_p (const gimple *s)
2302 return gimple_could_trap_p_1 (s, true, true);
2305 /* Return true if RHS of a GIMPLE_ASSIGN S can trap. */
2307 bool
2308 gimple_assign_rhs_could_trap_p (gimple *s)
2310 gcc_assert (is_gimple_assign (s));
2311 return gimple_could_trap_p_1 (s, true, false);
2315 /* Print debugging information for gimple stmts generated. */
2317 void
2318 dump_gimple_statistics (void)
2320 int i;
2321 uint64_t total_tuples = 0, total_bytes = 0;
2323 if (! GATHER_STATISTICS)
2325 fprintf (stderr, "No GIMPLE statistics\n");
2326 return;
2329 fprintf (stderr, "\nGIMPLE statements\n");
2330 fprintf (stderr, "Kind Stmts Bytes\n");
2331 fprintf (stderr, "---------------------------------------\n");
2332 for (i = 0; i < (int) gimple_alloc_kind_all; ++i)
2334 fprintf (stderr, "%-20s %7" PRIu64 "%c %10" PRIu64 "%c\n",
2335 gimple_alloc_kind_names[i],
2336 SIZE_AMOUNT (gimple_alloc_counts[i]),
2337 SIZE_AMOUNT (gimple_alloc_sizes[i]));
2338 total_tuples += gimple_alloc_counts[i];
2339 total_bytes += gimple_alloc_sizes[i];
2341 fprintf (stderr, "---------------------------------------\n");
2342 fprintf (stderr, "%-20s %7" PRIu64 "%c %10" PRIu64 "%c\n", "Total",
2343 SIZE_AMOUNT (total_tuples), SIZE_AMOUNT (total_bytes));
2344 fprintf (stderr, "---------------------------------------\n");
2348 /* Return the number of operands needed on the RHS of a GIMPLE
2349 assignment for an expression with tree code CODE. */
2351 unsigned
2352 get_gimple_rhs_num_ops (enum tree_code code)
2354 switch (get_gimple_rhs_class (code))
2356 case GIMPLE_UNARY_RHS:
2357 case GIMPLE_SINGLE_RHS:
2358 return 1;
2359 case GIMPLE_BINARY_RHS:
2360 return 2;
2361 case GIMPLE_TERNARY_RHS:
2362 return 3;
2363 default:
2364 gcc_unreachable ();
2368 #define DEFTREECODE(SYM, STRING, TYPE, NARGS) \
2369 (unsigned char) \
2370 ((TYPE) == tcc_unary ? GIMPLE_UNARY_RHS \
2371 : ((TYPE) == tcc_binary \
2372 || (TYPE) == tcc_comparison) ? GIMPLE_BINARY_RHS \
2373 : ((TYPE) == tcc_constant \
2374 || (TYPE) == tcc_declaration \
2375 || (TYPE) == tcc_reference) ? GIMPLE_SINGLE_RHS \
2376 : ((SYM) == TRUTH_AND_EXPR \
2377 || (SYM) == TRUTH_OR_EXPR \
2378 || (SYM) == TRUTH_XOR_EXPR) ? GIMPLE_BINARY_RHS \
2379 : (SYM) == TRUTH_NOT_EXPR ? GIMPLE_UNARY_RHS \
2380 : ((SYM) == COND_EXPR \
2381 || (SYM) == WIDEN_MULT_PLUS_EXPR \
2382 || (SYM) == WIDEN_MULT_MINUS_EXPR \
2383 || (SYM) == DOT_PROD_EXPR \
2384 || (SYM) == SAD_EXPR \
2385 || (SYM) == REALIGN_LOAD_EXPR \
2386 || (SYM) == VEC_COND_EXPR \
2387 || (SYM) == VEC_PERM_EXPR \
2388 || (SYM) == BIT_INSERT_EXPR) ? GIMPLE_TERNARY_RHS \
2389 : ((SYM) == CONSTRUCTOR \
2390 || (SYM) == OBJ_TYPE_REF \
2391 || (SYM) == ASSERT_EXPR \
2392 || (SYM) == ADDR_EXPR \
2393 || (SYM) == WITH_SIZE_EXPR \
2394 || (SYM) == SSA_NAME) ? GIMPLE_SINGLE_RHS \
2395 : GIMPLE_INVALID_RHS),
2396 #define END_OF_BASE_TREE_CODES (unsigned char) GIMPLE_INVALID_RHS,
2398 const unsigned char gimple_rhs_class_table[] = {
2399 #include "all-tree.def"
2402 #undef DEFTREECODE
2403 #undef END_OF_BASE_TREE_CODES
2405 /* Build a GIMPLE_CALL identical to STMT but skipping the arguments in
2406 the positions marked by the set ARGS_TO_SKIP. */
2408 gcall *
2409 gimple_call_copy_skip_args (gcall *stmt, bitmap args_to_skip)
2411 int i;
2412 int nargs = gimple_call_num_args (stmt);
2413 auto_vec<tree> vargs (nargs);
2414 gcall *new_stmt;
2416 for (i = 0; i < nargs; i++)
2417 if (!bitmap_bit_p (args_to_skip, i))
2418 vargs.quick_push (gimple_call_arg (stmt, i));
2420 if (gimple_call_internal_p (stmt))
2421 new_stmt = gimple_build_call_internal_vec (gimple_call_internal_fn (stmt),
2422 vargs);
2423 else
2424 new_stmt = gimple_build_call_vec (gimple_call_fn (stmt), vargs);
2426 if (gimple_call_lhs (stmt))
2427 gimple_call_set_lhs (new_stmt, gimple_call_lhs (stmt));
2429 gimple_set_vuse (new_stmt, gimple_vuse (stmt));
2430 gimple_set_vdef (new_stmt, gimple_vdef (stmt));
2432 if (gimple_has_location (stmt))
2433 gimple_set_location (new_stmt, gimple_location (stmt));
2434 gimple_call_copy_flags (new_stmt, stmt);
2435 gimple_call_set_chain (new_stmt, gimple_call_chain (stmt));
2437 gimple_set_modified (new_stmt, true);
2439 return new_stmt;
2444 /* Return true if the field decls F1 and F2 are at the same offset.
2446 This is intended to be used on GIMPLE types only. */
2448 bool
2449 gimple_compare_field_offset (tree f1, tree f2)
2451 if (DECL_OFFSET_ALIGN (f1) == DECL_OFFSET_ALIGN (f2))
2453 tree offset1 = DECL_FIELD_OFFSET (f1);
2454 tree offset2 = DECL_FIELD_OFFSET (f2);
2455 return ((offset1 == offset2
2456 /* Once gimplification is done, self-referential offsets are
2457 instantiated as operand #2 of the COMPONENT_REF built for
2458 each access and reset. Therefore, they are not relevant
2459 anymore and fields are interchangeable provided that they
2460 represent the same access. */
2461 || (TREE_CODE (offset1) == PLACEHOLDER_EXPR
2462 && TREE_CODE (offset2) == PLACEHOLDER_EXPR
2463 && (DECL_SIZE (f1) == DECL_SIZE (f2)
2464 || (TREE_CODE (DECL_SIZE (f1)) == PLACEHOLDER_EXPR
2465 && TREE_CODE (DECL_SIZE (f2)) == PLACEHOLDER_EXPR)
2466 || operand_equal_p (DECL_SIZE (f1), DECL_SIZE (f2), 0))
2467 && DECL_ALIGN (f1) == DECL_ALIGN (f2))
2468 || operand_equal_p (offset1, offset2, 0))
2469 && tree_int_cst_equal (DECL_FIELD_BIT_OFFSET (f1),
2470 DECL_FIELD_BIT_OFFSET (f2)));
2473 /* Fortran and C do not always agree on what DECL_OFFSET_ALIGN
2474 should be, so handle differing ones specially by decomposing
2475 the offset into a byte and bit offset manually. */
2476 if (tree_fits_shwi_p (DECL_FIELD_OFFSET (f1))
2477 && tree_fits_shwi_p (DECL_FIELD_OFFSET (f2)))
2479 unsigned HOST_WIDE_INT byte_offset1, byte_offset2;
2480 unsigned HOST_WIDE_INT bit_offset1, bit_offset2;
2481 bit_offset1 = TREE_INT_CST_LOW (DECL_FIELD_BIT_OFFSET (f1));
2482 byte_offset1 = (TREE_INT_CST_LOW (DECL_FIELD_OFFSET (f1))
2483 + bit_offset1 / BITS_PER_UNIT);
2484 bit_offset2 = TREE_INT_CST_LOW (DECL_FIELD_BIT_OFFSET (f2));
2485 byte_offset2 = (TREE_INT_CST_LOW (DECL_FIELD_OFFSET (f2))
2486 + bit_offset2 / BITS_PER_UNIT);
2487 if (byte_offset1 != byte_offset2)
2488 return false;
2489 return bit_offset1 % BITS_PER_UNIT == bit_offset2 % BITS_PER_UNIT;
2492 return false;
2496 /* Return a type the same as TYPE except unsigned or
2497 signed according to UNSIGNEDP. */
2499 static tree
2500 gimple_signed_or_unsigned_type (bool unsignedp, tree type)
2502 tree type1;
2503 int i;
2505 type1 = TYPE_MAIN_VARIANT (type);
2506 if (type1 == signed_char_type_node
2507 || type1 == char_type_node
2508 || type1 == unsigned_char_type_node)
2509 return unsignedp ? unsigned_char_type_node : signed_char_type_node;
2510 if (type1 == integer_type_node || type1 == unsigned_type_node)
2511 return unsignedp ? unsigned_type_node : integer_type_node;
2512 if (type1 == short_integer_type_node || type1 == short_unsigned_type_node)
2513 return unsignedp ? short_unsigned_type_node : short_integer_type_node;
2514 if (type1 == long_integer_type_node || type1 == long_unsigned_type_node)
2515 return unsignedp ? long_unsigned_type_node : long_integer_type_node;
2516 if (type1 == long_long_integer_type_node
2517 || type1 == long_long_unsigned_type_node)
2518 return unsignedp
2519 ? long_long_unsigned_type_node
2520 : long_long_integer_type_node;
2522 for (i = 0; i < NUM_INT_N_ENTS; i ++)
2523 if (int_n_enabled_p[i]
2524 && (type1 == int_n_trees[i].unsigned_type
2525 || type1 == int_n_trees[i].signed_type))
2526 return unsignedp
2527 ? int_n_trees[i].unsigned_type
2528 : int_n_trees[i].signed_type;
2530 #if HOST_BITS_PER_WIDE_INT >= 64
2531 if (type1 == intTI_type_node || type1 == unsigned_intTI_type_node)
2532 return unsignedp ? unsigned_intTI_type_node : intTI_type_node;
2533 #endif
2534 if (type1 == intDI_type_node || type1 == unsigned_intDI_type_node)
2535 return unsignedp ? unsigned_intDI_type_node : intDI_type_node;
2536 if (type1 == intSI_type_node || type1 == unsigned_intSI_type_node)
2537 return unsignedp ? unsigned_intSI_type_node : intSI_type_node;
2538 if (type1 == intHI_type_node || type1 == unsigned_intHI_type_node)
2539 return unsignedp ? unsigned_intHI_type_node : intHI_type_node;
2540 if (type1 == intQI_type_node || type1 == unsigned_intQI_type_node)
2541 return unsignedp ? unsigned_intQI_type_node : intQI_type_node;
2543 #define GIMPLE_FIXED_TYPES(NAME) \
2544 if (type1 == short_ ## NAME ## _type_node \
2545 || type1 == unsigned_short_ ## NAME ## _type_node) \
2546 return unsignedp ? unsigned_short_ ## NAME ## _type_node \
2547 : short_ ## NAME ## _type_node; \
2548 if (type1 == NAME ## _type_node \
2549 || type1 == unsigned_ ## NAME ## _type_node) \
2550 return unsignedp ? unsigned_ ## NAME ## _type_node \
2551 : NAME ## _type_node; \
2552 if (type1 == long_ ## NAME ## _type_node \
2553 || type1 == unsigned_long_ ## NAME ## _type_node) \
2554 return unsignedp ? unsigned_long_ ## NAME ## _type_node \
2555 : long_ ## NAME ## _type_node; \
2556 if (type1 == long_long_ ## NAME ## _type_node \
2557 || type1 == unsigned_long_long_ ## NAME ## _type_node) \
2558 return unsignedp ? unsigned_long_long_ ## NAME ## _type_node \
2559 : long_long_ ## NAME ## _type_node;
2561 #define GIMPLE_FIXED_MODE_TYPES(NAME) \
2562 if (type1 == NAME ## _type_node \
2563 || type1 == u ## NAME ## _type_node) \
2564 return unsignedp ? u ## NAME ## _type_node \
2565 : NAME ## _type_node;
2567 #define GIMPLE_FIXED_TYPES_SAT(NAME) \
2568 if (type1 == sat_ ## short_ ## NAME ## _type_node \
2569 || type1 == sat_ ## unsigned_short_ ## NAME ## _type_node) \
2570 return unsignedp ? sat_ ## unsigned_short_ ## NAME ## _type_node \
2571 : sat_ ## short_ ## NAME ## _type_node; \
2572 if (type1 == sat_ ## NAME ## _type_node \
2573 || type1 == sat_ ## unsigned_ ## NAME ## _type_node) \
2574 return unsignedp ? sat_ ## unsigned_ ## NAME ## _type_node \
2575 : sat_ ## NAME ## _type_node; \
2576 if (type1 == sat_ ## long_ ## NAME ## _type_node \
2577 || type1 == sat_ ## unsigned_long_ ## NAME ## _type_node) \
2578 return unsignedp ? sat_ ## unsigned_long_ ## NAME ## _type_node \
2579 : sat_ ## long_ ## NAME ## _type_node; \
2580 if (type1 == sat_ ## long_long_ ## NAME ## _type_node \
2581 || type1 == sat_ ## unsigned_long_long_ ## NAME ## _type_node) \
2582 return unsignedp ? sat_ ## unsigned_long_long_ ## NAME ## _type_node \
2583 : sat_ ## long_long_ ## NAME ## _type_node;
2585 #define GIMPLE_FIXED_MODE_TYPES_SAT(NAME) \
2586 if (type1 == sat_ ## NAME ## _type_node \
2587 || type1 == sat_ ## u ## NAME ## _type_node) \
2588 return unsignedp ? sat_ ## u ## NAME ## _type_node \
2589 : sat_ ## NAME ## _type_node;
2591 GIMPLE_FIXED_TYPES (fract);
2592 GIMPLE_FIXED_TYPES_SAT (fract);
2593 GIMPLE_FIXED_TYPES (accum);
2594 GIMPLE_FIXED_TYPES_SAT (accum);
2596 GIMPLE_FIXED_MODE_TYPES (qq);
2597 GIMPLE_FIXED_MODE_TYPES (hq);
2598 GIMPLE_FIXED_MODE_TYPES (sq);
2599 GIMPLE_FIXED_MODE_TYPES (dq);
2600 GIMPLE_FIXED_MODE_TYPES (tq);
2601 GIMPLE_FIXED_MODE_TYPES_SAT (qq);
2602 GIMPLE_FIXED_MODE_TYPES_SAT (hq);
2603 GIMPLE_FIXED_MODE_TYPES_SAT (sq);
2604 GIMPLE_FIXED_MODE_TYPES_SAT (dq);
2605 GIMPLE_FIXED_MODE_TYPES_SAT (tq);
2606 GIMPLE_FIXED_MODE_TYPES (ha);
2607 GIMPLE_FIXED_MODE_TYPES (sa);
2608 GIMPLE_FIXED_MODE_TYPES (da);
2609 GIMPLE_FIXED_MODE_TYPES (ta);
2610 GIMPLE_FIXED_MODE_TYPES_SAT (ha);
2611 GIMPLE_FIXED_MODE_TYPES_SAT (sa);
2612 GIMPLE_FIXED_MODE_TYPES_SAT (da);
2613 GIMPLE_FIXED_MODE_TYPES_SAT (ta);
2615 /* For ENUMERAL_TYPEs in C++, must check the mode of the types, not
2616 the precision; they have precision set to match their range, but
2617 may use a wider mode to match an ABI. If we change modes, we may
2618 wind up with bad conversions. For INTEGER_TYPEs in C, must check
2619 the precision as well, so as to yield correct results for
2620 bit-field types. C++ does not have these separate bit-field
2621 types, and producing a signed or unsigned variant of an
2622 ENUMERAL_TYPE may cause other problems as well. */
2623 if (!INTEGRAL_TYPE_P (type)
2624 || TYPE_UNSIGNED (type) == unsignedp)
2625 return type;
2627 #define TYPE_OK(node) \
2628 (TYPE_MODE (type) == TYPE_MODE (node) \
2629 && TYPE_PRECISION (type) == TYPE_PRECISION (node))
2630 if (TYPE_OK (signed_char_type_node))
2631 return unsignedp ? unsigned_char_type_node : signed_char_type_node;
2632 if (TYPE_OK (integer_type_node))
2633 return unsignedp ? unsigned_type_node : integer_type_node;
2634 if (TYPE_OK (short_integer_type_node))
2635 return unsignedp ? short_unsigned_type_node : short_integer_type_node;
2636 if (TYPE_OK (long_integer_type_node))
2637 return unsignedp ? long_unsigned_type_node : long_integer_type_node;
2638 if (TYPE_OK (long_long_integer_type_node))
2639 return (unsignedp
2640 ? long_long_unsigned_type_node
2641 : long_long_integer_type_node);
2643 for (i = 0; i < NUM_INT_N_ENTS; i ++)
2644 if (int_n_enabled_p[i]
2645 && TYPE_MODE (type) == int_n_data[i].m
2646 && TYPE_PRECISION (type) == int_n_data[i].bitsize)
2647 return unsignedp
2648 ? int_n_trees[i].unsigned_type
2649 : int_n_trees[i].signed_type;
2651 #if HOST_BITS_PER_WIDE_INT >= 64
2652 if (TYPE_OK (intTI_type_node))
2653 return unsignedp ? unsigned_intTI_type_node : intTI_type_node;
2654 #endif
2655 if (TYPE_OK (intDI_type_node))
2656 return unsignedp ? unsigned_intDI_type_node : intDI_type_node;
2657 if (TYPE_OK (intSI_type_node))
2658 return unsignedp ? unsigned_intSI_type_node : intSI_type_node;
2659 if (TYPE_OK (intHI_type_node))
2660 return unsignedp ? unsigned_intHI_type_node : intHI_type_node;
2661 if (TYPE_OK (intQI_type_node))
2662 return unsignedp ? unsigned_intQI_type_node : intQI_type_node;
2664 #undef GIMPLE_FIXED_TYPES
2665 #undef GIMPLE_FIXED_MODE_TYPES
2666 #undef GIMPLE_FIXED_TYPES_SAT
2667 #undef GIMPLE_FIXED_MODE_TYPES_SAT
2668 #undef TYPE_OK
2670 return build_nonstandard_integer_type (TYPE_PRECISION (type), unsignedp);
2674 /* Return an unsigned type the same as TYPE in other respects. */
2676 tree
2677 gimple_unsigned_type (tree type)
2679 return gimple_signed_or_unsigned_type (true, type);
2683 /* Return a signed type the same as TYPE in other respects. */
2685 tree
2686 gimple_signed_type (tree type)
2688 return gimple_signed_or_unsigned_type (false, type);
2692 /* Return the typed-based alias set for T, which may be an expression
2693 or a type. Return -1 if we don't do anything special. */
2695 alias_set_type
2696 gimple_get_alias_set (tree t)
2698 /* That's all the expressions we handle specially. */
2699 if (!TYPE_P (t))
2700 return -1;
2702 /* For convenience, follow the C standard when dealing with
2703 character types. Any object may be accessed via an lvalue that
2704 has character type. */
2705 if (t == char_type_node
2706 || t == signed_char_type_node
2707 || t == unsigned_char_type_node)
2708 return 0;
2710 /* Allow aliasing between signed and unsigned variants of the same
2711 type. We treat the signed variant as canonical. */
2712 if (TREE_CODE (t) == INTEGER_TYPE && TYPE_UNSIGNED (t))
2714 tree t1 = gimple_signed_type (t);
2716 /* t1 == t can happen for boolean nodes which are always unsigned. */
2717 if (t1 != t)
2718 return get_alias_set (t1);
2721 /* Allow aliasing between enumeral types and the underlying
2722 integer type. This is required for C since those are
2723 compatible types. */
2724 else if (TREE_CODE (t) == ENUMERAL_TYPE)
2726 tree t1 = lang_hooks.types.type_for_size (tree_to_uhwi (TYPE_SIZE (t)),
2727 false /* short-cut above */);
2728 return get_alias_set (t1);
2731 return -1;
2735 /* Helper for gimple_ior_addresses_taken_1. */
2737 static bool
2738 gimple_ior_addresses_taken_1 (gimple *, tree addr, tree, void *data)
2740 bitmap addresses_taken = (bitmap)data;
2741 addr = get_base_address (addr);
2742 if (addr
2743 && DECL_P (addr))
2745 bitmap_set_bit (addresses_taken, DECL_UID (addr));
2746 return true;
2748 return false;
2751 /* Set the bit for the uid of all decls that have their address taken
2752 in STMT in the ADDRESSES_TAKEN bitmap. Returns true if there
2753 were any in this stmt. */
2755 bool
2756 gimple_ior_addresses_taken (bitmap addresses_taken, gimple *stmt)
2758 return walk_stmt_load_store_addr_ops (stmt, addresses_taken, NULL, NULL,
2759 gimple_ior_addresses_taken_1);
2763 /* Return true when STMTs arguments and return value match those of FNDECL,
2764 a decl of a builtin function. */
2766 bool
2767 gimple_builtin_call_types_compatible_p (const gimple *stmt, tree fndecl)
2769 gcc_checking_assert (DECL_BUILT_IN_CLASS (fndecl) != NOT_BUILT_IN);
2771 if (DECL_BUILT_IN_CLASS (fndecl) == BUILT_IN_NORMAL)
2772 if (tree decl = builtin_decl_explicit (DECL_FUNCTION_CODE (fndecl)))
2773 fndecl = decl;
2775 tree ret = gimple_call_lhs (stmt);
2776 if (ret
2777 && !useless_type_conversion_p (TREE_TYPE (ret),
2778 TREE_TYPE (TREE_TYPE (fndecl))))
2779 return false;
2781 tree targs = TYPE_ARG_TYPES (TREE_TYPE (fndecl));
2782 unsigned nargs = gimple_call_num_args (stmt);
2783 for (unsigned i = 0; i < nargs; ++i)
2785 /* Variadic args follow. */
2786 if (!targs)
2787 return true;
2788 tree arg = gimple_call_arg (stmt, i);
2789 tree type = TREE_VALUE (targs);
2790 if (!useless_type_conversion_p (type, TREE_TYPE (arg))
2791 /* char/short integral arguments are promoted to int
2792 by several frontends if targetm.calls.promote_prototypes
2793 is true. Allow such promotion too. */
2794 && !(INTEGRAL_TYPE_P (type)
2795 && TYPE_PRECISION (type) < TYPE_PRECISION (integer_type_node)
2796 && targetm.calls.promote_prototypes (TREE_TYPE (fndecl))
2797 && useless_type_conversion_p (integer_type_node,
2798 TREE_TYPE (arg))))
2799 return false;
2800 targs = TREE_CHAIN (targs);
2802 if (targs && !VOID_TYPE_P (TREE_VALUE (targs)))
2803 return false;
2804 return true;
2807 /* Return true when STMT is operator a replaceable delete call. */
2809 bool
2810 gimple_call_operator_delete_p (const gcall *stmt)
2812 tree fndecl;
2814 if ((fndecl = gimple_call_fndecl (stmt)) != NULL_TREE)
2815 return DECL_IS_OPERATOR_DELETE_P (fndecl);
2816 return false;
2819 /* Return true when STMT is builtins call. */
2821 bool
2822 gimple_call_builtin_p (const gimple *stmt)
2824 tree fndecl;
2825 if (is_gimple_call (stmt)
2826 && (fndecl = gimple_call_fndecl (stmt)) != NULL_TREE
2827 && DECL_BUILT_IN_CLASS (fndecl) != NOT_BUILT_IN)
2828 return gimple_builtin_call_types_compatible_p (stmt, fndecl);
2829 return false;
2832 /* Return true when STMT is builtins call to CLASS. */
2834 bool
2835 gimple_call_builtin_p (const gimple *stmt, enum built_in_class klass)
2837 tree fndecl;
2838 if (is_gimple_call (stmt)
2839 && (fndecl = gimple_call_fndecl (stmt)) != NULL_TREE
2840 && DECL_BUILT_IN_CLASS (fndecl) == klass)
2841 return gimple_builtin_call_types_compatible_p (stmt, fndecl);
2842 return false;
2845 /* Return true when STMT is builtins call to CODE of CLASS. */
2847 bool
2848 gimple_call_builtin_p (const gimple *stmt, enum built_in_function code)
2850 tree fndecl;
2851 if (is_gimple_call (stmt)
2852 && (fndecl = gimple_call_fndecl (stmt)) != NULL_TREE
2853 && fndecl_built_in_p (fndecl, code))
2854 return gimple_builtin_call_types_compatible_p (stmt, fndecl);
2855 return false;
2858 /* If CALL is a call to a combined_fn (i.e. an internal function or
2859 a normal built-in function), return its code, otherwise return
2860 CFN_LAST. */
2862 combined_fn
2863 gimple_call_combined_fn (const gimple *stmt)
2865 if (const gcall *call = dyn_cast <const gcall *> (stmt))
2867 if (gimple_call_internal_p (call))
2868 return as_combined_fn (gimple_call_internal_fn (call));
2870 tree fndecl = gimple_call_fndecl (stmt);
2871 if (fndecl
2872 && fndecl_built_in_p (fndecl, BUILT_IN_NORMAL)
2873 && gimple_builtin_call_types_compatible_p (stmt, fndecl))
2874 return as_combined_fn (DECL_FUNCTION_CODE (fndecl));
2876 return CFN_LAST;
2879 /* Return true if STMT clobbers memory. STMT is required to be a
2880 GIMPLE_ASM. */
2882 bool
2883 gimple_asm_clobbers_memory_p (const gasm *stmt)
2885 unsigned i;
2887 for (i = 0; i < gimple_asm_nclobbers (stmt); i++)
2889 tree op = gimple_asm_clobber_op (stmt, i);
2890 if (strcmp (TREE_STRING_POINTER (TREE_VALUE (op)), "memory") == 0)
2891 return true;
2894 /* Non-empty basic ASM implicitly clobbers memory. */
2895 if (gimple_asm_input_p (stmt) && strlen (gimple_asm_string (stmt)) != 0)
2896 return true;
2898 return false;
2901 /* Dump bitmap SET (assumed to contain VAR_DECLs) to FILE. */
2903 void
2904 dump_decl_set (FILE *file, bitmap set)
2906 if (set)
2908 bitmap_iterator bi;
2909 unsigned i;
2911 fprintf (file, "{ ");
2913 EXECUTE_IF_SET_IN_BITMAP (set, 0, i, bi)
2915 fprintf (file, "D.%u", i);
2916 fprintf (file, " ");
2919 fprintf (file, "}");
2921 else
2922 fprintf (file, "NIL");
2925 /* Return true when CALL is a call stmt that definitely doesn't
2926 free any memory or makes it unavailable otherwise. */
2927 bool
2928 nonfreeing_call_p (gimple *call)
2930 if (gimple_call_builtin_p (call, BUILT_IN_NORMAL)
2931 && gimple_call_flags (call) & ECF_LEAF)
2932 switch (DECL_FUNCTION_CODE (gimple_call_fndecl (call)))
2934 /* Just in case these become ECF_LEAF in the future. */
2935 case BUILT_IN_FREE:
2936 case BUILT_IN_TM_FREE:
2937 case BUILT_IN_REALLOC:
2938 case BUILT_IN_STACK_RESTORE:
2939 return false;
2940 default:
2941 return true;
2943 else if (gimple_call_internal_p (call))
2944 switch (gimple_call_internal_fn (call))
2946 case IFN_ABNORMAL_DISPATCHER:
2947 return true;
2948 case IFN_ASAN_MARK:
2949 return tree_to_uhwi (gimple_call_arg (call, 0)) == ASAN_MARK_UNPOISON;
2950 default:
2951 if (gimple_call_flags (call) & ECF_LEAF)
2952 return true;
2953 return false;
2956 tree fndecl = gimple_call_fndecl (call);
2957 if (!fndecl)
2958 return false;
2959 struct cgraph_node *n = cgraph_node::get (fndecl);
2960 if (!n)
2961 return false;
2962 enum availability availability;
2963 n = n->function_symbol (&availability);
2964 if (!n || availability <= AVAIL_INTERPOSABLE)
2965 return false;
2966 return n->nonfreeing_fn;
2969 /* Return true when CALL is a call stmt that definitely need not
2970 be considered to be a memory barrier. */
2971 bool
2972 nonbarrier_call_p (gimple *call)
2974 if (gimple_call_flags (call) & (ECF_PURE | ECF_CONST))
2975 return true;
2976 /* Should extend this to have a nonbarrier_fn flag, just as above in
2977 the nonfreeing case. */
2978 return false;
2981 /* Callback for walk_stmt_load_store_ops.
2983 Return TRUE if OP will dereference the tree stored in DATA, FALSE
2984 otherwise.
2986 This routine only makes a superficial check for a dereference. Thus
2987 it must only be used if it is safe to return a false negative. */
2988 static bool
2989 check_loadstore (gimple *, tree op, tree, void *data)
2991 if (TREE_CODE (op) == MEM_REF || TREE_CODE (op) == TARGET_MEM_REF)
2993 /* Some address spaces may legitimately dereference zero. */
2994 addr_space_t as = TYPE_ADDR_SPACE (TREE_TYPE (op));
2995 if (targetm.addr_space.zero_address_valid (as))
2996 return false;
2998 return operand_equal_p (TREE_OPERAND (op, 0), (tree)data, 0);
3000 return false;
3004 /* Return true if OP can be inferred to be non-NULL after STMT executes,
3005 either by using a pointer dereference or attributes. */
3006 bool
3007 infer_nonnull_range (gimple *stmt, tree op)
3009 return (infer_nonnull_range_by_dereference (stmt, op)
3010 || infer_nonnull_range_by_attribute (stmt, op));
3013 /* Return true if OP can be inferred to be non-NULL after STMT
3014 executes by using a pointer dereference. */
3015 bool
3016 infer_nonnull_range_by_dereference (gimple *stmt, tree op)
3018 /* We can only assume that a pointer dereference will yield
3019 non-NULL if -fdelete-null-pointer-checks is enabled. */
3020 if (!flag_delete_null_pointer_checks
3021 || !POINTER_TYPE_P (TREE_TYPE (op))
3022 || gimple_code (stmt) == GIMPLE_ASM
3023 || gimple_clobber_p (stmt))
3024 return false;
3026 if (walk_stmt_load_store_ops (stmt, (void *)op,
3027 check_loadstore, check_loadstore))
3028 return true;
3030 return false;
3033 /* Return true if OP can be inferred to be a non-NULL after STMT
3034 executes by using attributes. */
3035 bool
3036 infer_nonnull_range_by_attribute (gimple *stmt, tree op)
3038 /* We can only assume that a pointer dereference will yield
3039 non-NULL if -fdelete-null-pointer-checks is enabled. */
3040 if (!flag_delete_null_pointer_checks
3041 || !POINTER_TYPE_P (TREE_TYPE (op))
3042 || gimple_code (stmt) == GIMPLE_ASM)
3043 return false;
3045 if (is_gimple_call (stmt) && !gimple_call_internal_p (stmt))
3047 tree fntype = gimple_call_fntype (stmt);
3048 tree attrs = TYPE_ATTRIBUTES (fntype);
3049 for (; attrs; attrs = TREE_CHAIN (attrs))
3051 attrs = lookup_attribute ("nonnull", attrs);
3053 /* If "nonnull" wasn't specified, we know nothing about
3054 the argument. */
3055 if (attrs == NULL_TREE)
3056 return false;
3058 /* If "nonnull" applies to all the arguments, then ARG
3059 is non-null if it's in the argument list. */
3060 if (TREE_VALUE (attrs) == NULL_TREE)
3062 for (unsigned int i = 0; i < gimple_call_num_args (stmt); i++)
3064 if (POINTER_TYPE_P (TREE_TYPE (gimple_call_arg (stmt, i)))
3065 && operand_equal_p (op, gimple_call_arg (stmt, i), 0))
3066 return true;
3068 return false;
3071 /* Now see if op appears in the nonnull list. */
3072 for (tree t = TREE_VALUE (attrs); t; t = TREE_CHAIN (t))
3074 unsigned int idx = TREE_INT_CST_LOW (TREE_VALUE (t)) - 1;
3075 if (idx < gimple_call_num_args (stmt))
3077 tree arg = gimple_call_arg (stmt, idx);
3078 if (operand_equal_p (op, arg, 0))
3079 return true;
3085 /* If this function is marked as returning non-null, then we can
3086 infer OP is non-null if it is used in the return statement. */
3087 if (greturn *return_stmt = dyn_cast <greturn *> (stmt))
3088 if (gimple_return_retval (return_stmt)
3089 && operand_equal_p (gimple_return_retval (return_stmt), op, 0)
3090 && lookup_attribute ("returns_nonnull",
3091 TYPE_ATTRIBUTES (TREE_TYPE (current_function_decl))))
3092 return true;
3094 return false;
3097 /* Compare two case labels. Because the front end should already have
3098 made sure that case ranges do not overlap, it is enough to only compare
3099 the CASE_LOW values of each case label. */
3101 static int
3102 compare_case_labels (const void *p1, const void *p2)
3104 const_tree const case1 = *(const_tree const*)p1;
3105 const_tree const case2 = *(const_tree const*)p2;
3107 /* The 'default' case label always goes first. */
3108 if (!CASE_LOW (case1))
3109 return -1;
3110 else if (!CASE_LOW (case2))
3111 return 1;
3112 else
3113 return tree_int_cst_compare (CASE_LOW (case1), CASE_LOW (case2));
3116 /* Sort the case labels in LABEL_VEC in place in ascending order. */
3118 void
3119 sort_case_labels (vec<tree> &label_vec)
3121 label_vec.qsort (compare_case_labels);
3124 /* Prepare a vector of case labels to be used in a GIMPLE_SWITCH statement.
3126 LABELS is a vector that contains all case labels to look at.
3128 INDEX_TYPE is the type of the switch index expression. Case labels
3129 in LABELS are discarded if their values are not in the value range
3130 covered by INDEX_TYPE. The remaining case label values are folded
3131 to INDEX_TYPE.
3133 If a default case exists in LABELS, it is removed from LABELS and
3134 returned in DEFAULT_CASEP. If no default case exists, but the
3135 case labels already cover the whole range of INDEX_TYPE, a default
3136 case is returned pointing to one of the existing case labels.
3137 Otherwise DEFAULT_CASEP is set to NULL_TREE.
3139 DEFAULT_CASEP may be NULL, in which case the above comment doesn't
3140 apply and no action is taken regardless of whether a default case is
3141 found or not. */
3143 void
3144 preprocess_case_label_vec_for_gimple (vec<tree> &labels,
3145 tree index_type,
3146 tree *default_casep)
3148 tree min_value, max_value;
3149 tree default_case = NULL_TREE;
3150 size_t i, len;
3152 i = 0;
3153 min_value = TYPE_MIN_VALUE (index_type);
3154 max_value = TYPE_MAX_VALUE (index_type);
3155 while (i < labels.length ())
3157 tree elt = labels[i];
3158 tree low = CASE_LOW (elt);
3159 tree high = CASE_HIGH (elt);
3160 bool remove_element = FALSE;
3162 if (low)
3164 gcc_checking_assert (TREE_CODE (low) == INTEGER_CST);
3165 gcc_checking_assert (!high || TREE_CODE (high) == INTEGER_CST);
3167 /* This is a non-default case label, i.e. it has a value.
3169 See if the case label is reachable within the range of
3170 the index type. Remove out-of-range case values. Turn
3171 case ranges into a canonical form (high > low strictly)
3172 and convert the case label values to the index type.
3174 NB: The type of gimple_switch_index() may be the promoted
3175 type, but the case labels retain the original type. */
3177 if (high)
3179 /* This is a case range. Discard empty ranges.
3180 If the bounds or the range are equal, turn this
3181 into a simple (one-value) case. */
3182 int cmp = tree_int_cst_compare (high, low);
3183 if (cmp < 0)
3184 remove_element = TRUE;
3185 else if (cmp == 0)
3186 high = NULL_TREE;
3189 if (! high)
3191 /* If the simple case value is unreachable, ignore it. */
3192 if ((TREE_CODE (min_value) == INTEGER_CST
3193 && tree_int_cst_compare (low, min_value) < 0)
3194 || (TREE_CODE (max_value) == INTEGER_CST
3195 && tree_int_cst_compare (low, max_value) > 0))
3196 remove_element = TRUE;
3197 else
3198 low = fold_convert (index_type, low);
3200 else
3202 /* If the entire case range is unreachable, ignore it. */
3203 if ((TREE_CODE (min_value) == INTEGER_CST
3204 && tree_int_cst_compare (high, min_value) < 0)
3205 || (TREE_CODE (max_value) == INTEGER_CST
3206 && tree_int_cst_compare (low, max_value) > 0))
3207 remove_element = TRUE;
3208 else
3210 /* If the lower bound is less than the index type's
3211 minimum value, truncate the range bounds. */
3212 if (TREE_CODE (min_value) == INTEGER_CST
3213 && tree_int_cst_compare (low, min_value) < 0)
3214 low = min_value;
3215 low = fold_convert (index_type, low);
3217 /* If the upper bound is greater than the index type's
3218 maximum value, truncate the range bounds. */
3219 if (TREE_CODE (max_value) == INTEGER_CST
3220 && tree_int_cst_compare (high, max_value) > 0)
3221 high = max_value;
3222 high = fold_convert (index_type, high);
3224 /* We may have folded a case range to a one-value case. */
3225 if (tree_int_cst_equal (low, high))
3226 high = NULL_TREE;
3230 CASE_LOW (elt) = low;
3231 CASE_HIGH (elt) = high;
3233 else
3235 gcc_assert (!default_case);
3236 default_case = elt;
3237 /* The default case must be passed separately to the
3238 gimple_build_switch routine. But if DEFAULT_CASEP
3239 is NULL, we do not remove the default case (it would
3240 be completely lost). */
3241 if (default_casep)
3242 remove_element = TRUE;
3245 if (remove_element)
3246 labels.ordered_remove (i);
3247 else
3248 i++;
3250 len = i;
3252 if (!labels.is_empty ())
3253 sort_case_labels (labels);
3255 if (default_casep && !default_case)
3257 /* If the switch has no default label, add one, so that we jump
3258 around the switch body. If the labels already cover the whole
3259 range of the switch index_type, add the default label pointing
3260 to one of the existing labels. */
3261 if (len
3262 && TYPE_MIN_VALUE (index_type)
3263 && TYPE_MAX_VALUE (index_type)
3264 && tree_int_cst_equal (CASE_LOW (labels[0]),
3265 TYPE_MIN_VALUE (index_type)))
3267 tree low, high = CASE_HIGH (labels[len - 1]);
3268 if (!high)
3269 high = CASE_LOW (labels[len - 1]);
3270 if (tree_int_cst_equal (high, TYPE_MAX_VALUE (index_type)))
3272 tree widest_label = labels[0];
3273 for (i = 1; i < len; i++)
3275 high = CASE_LOW (labels[i]);
3276 low = CASE_HIGH (labels[i - 1]);
3277 if (!low)
3278 low = CASE_LOW (labels[i - 1]);
3280 if (CASE_HIGH (labels[i]) != NULL_TREE
3281 && (CASE_HIGH (widest_label) == NULL_TREE
3282 || (wi::gtu_p
3283 (wi::to_wide (CASE_HIGH (labels[i]))
3284 - wi::to_wide (CASE_LOW (labels[i])),
3285 wi::to_wide (CASE_HIGH (widest_label))
3286 - wi::to_wide (CASE_LOW (widest_label))))))
3287 widest_label = labels[i];
3289 if (wi::to_wide (low) + 1 != wi::to_wide (high))
3290 break;
3292 if (i == len)
3294 /* Designate the label with the widest range to be the
3295 default label. */
3296 tree label = CASE_LABEL (widest_label);
3297 default_case = build_case_label (NULL_TREE, NULL_TREE,
3298 label);
3304 if (default_casep)
3305 *default_casep = default_case;
3308 /* Set the location of all statements in SEQ to LOC. */
3310 void
3311 gimple_seq_set_location (gimple_seq seq, location_t loc)
3313 for (gimple_stmt_iterator i = gsi_start (seq); !gsi_end_p (i); gsi_next (&i))
3314 gimple_set_location (gsi_stmt (i), loc);
3317 /* Release SSA_NAMEs in SEQ as well as the GIMPLE statements. */
3319 void
3320 gimple_seq_discard (gimple_seq seq)
3322 gimple_stmt_iterator gsi;
3324 for (gsi = gsi_start (seq); !gsi_end_p (gsi); )
3326 gimple *stmt = gsi_stmt (gsi);
3327 gsi_remove (&gsi, true);
3328 release_defs (stmt);
3329 ggc_free (stmt);
3333 /* See if STMT now calls function that takes no parameters and if so, drop
3334 call arguments. This is used when devirtualization machinery redirects
3335 to __builtin_unreachable or __cxa_pure_virtual. */
3337 void
3338 maybe_remove_unused_call_args (struct function *fn, gimple *stmt)
3340 tree decl = gimple_call_fndecl (stmt);
3341 if (TYPE_ARG_TYPES (TREE_TYPE (decl))
3342 && TREE_VALUE (TYPE_ARG_TYPES (TREE_TYPE (decl))) == void_type_node
3343 && gimple_call_num_args (stmt))
3345 gimple_set_num_ops (stmt, 3);
3346 update_stmt_fn (fn, stmt);
3350 /* Return false if STMT will likely expand to real function call. */
3352 bool
3353 gimple_inexpensive_call_p (gcall *stmt)
3355 if (gimple_call_internal_p (stmt))
3356 return true;
3357 tree decl = gimple_call_fndecl (stmt);
3358 if (decl && is_inexpensive_builtin (decl))
3359 return true;
3360 return false;
3363 /* Return a non-artificial location for STMT. If STMT does not have
3364 location information, get the location from EXPR. */
3366 location_t
3367 gimple_or_expr_nonartificial_location (gimple *stmt, tree expr)
3369 location_t loc = gimple_nonartificial_location (stmt);
3370 if (loc == UNKNOWN_LOCATION && EXPR_HAS_LOCATION (expr))
3371 loc = tree_nonartificial_location (expr);
3372 return expansion_point_location_if_in_system_header (loc);
3376 #if CHECKING_P
3378 namespace selftest {
3380 /* Selftests for core gimple structures. */
3382 /* Verify that STMT is pretty-printed as EXPECTED.
3383 Helper function for selftests. */
3385 static void
3386 verify_gimple_pp (const char *expected, gimple *stmt)
3388 pretty_printer pp;
3389 pp_gimple_stmt_1 (&pp, stmt, 0 /* spc */, TDF_NONE /* flags */);
3390 ASSERT_STREQ (expected, pp_formatted_text (&pp));
3393 /* Build a GIMPLE_ASSIGN equivalent to
3394 tmp = 5;
3395 and verify various properties of it. */
3397 static void
3398 test_assign_single ()
3400 tree type = integer_type_node;
3401 tree lhs = build_decl (UNKNOWN_LOCATION, VAR_DECL,
3402 get_identifier ("tmp"),
3403 type);
3404 tree rhs = build_int_cst (type, 5);
3405 gassign *stmt = gimple_build_assign (lhs, rhs);
3406 verify_gimple_pp ("tmp = 5;", stmt);
3408 ASSERT_TRUE (is_gimple_assign (stmt));
3409 ASSERT_EQ (lhs, gimple_assign_lhs (stmt));
3410 ASSERT_EQ (lhs, gimple_get_lhs (stmt));
3411 ASSERT_EQ (rhs, gimple_assign_rhs1 (stmt));
3412 ASSERT_EQ (NULL, gimple_assign_rhs2 (stmt));
3413 ASSERT_EQ (NULL, gimple_assign_rhs3 (stmt));
3414 ASSERT_TRUE (gimple_assign_single_p (stmt));
3415 ASSERT_EQ (INTEGER_CST, gimple_assign_rhs_code (stmt));
3418 /* Build a GIMPLE_ASSIGN equivalent to
3419 tmp = a * b;
3420 and verify various properties of it. */
3422 static void
3423 test_assign_binop ()
3425 tree type = integer_type_node;
3426 tree lhs = build_decl (UNKNOWN_LOCATION, VAR_DECL,
3427 get_identifier ("tmp"),
3428 type);
3429 tree a = build_decl (UNKNOWN_LOCATION, VAR_DECL,
3430 get_identifier ("a"),
3431 type);
3432 tree b = build_decl (UNKNOWN_LOCATION, VAR_DECL,
3433 get_identifier ("b"),
3434 type);
3435 gassign *stmt = gimple_build_assign (lhs, MULT_EXPR, a, b);
3436 verify_gimple_pp ("tmp = a * b;", stmt);
3438 ASSERT_TRUE (is_gimple_assign (stmt));
3439 ASSERT_EQ (lhs, gimple_assign_lhs (stmt));
3440 ASSERT_EQ (lhs, gimple_get_lhs (stmt));
3441 ASSERT_EQ (a, gimple_assign_rhs1 (stmt));
3442 ASSERT_EQ (b, gimple_assign_rhs2 (stmt));
3443 ASSERT_EQ (NULL, gimple_assign_rhs3 (stmt));
3444 ASSERT_FALSE (gimple_assign_single_p (stmt));
3445 ASSERT_EQ (MULT_EXPR, gimple_assign_rhs_code (stmt));
3448 /* Build a GIMPLE_NOP and verify various properties of it. */
3450 static void
3451 test_nop_stmt ()
3453 gimple *stmt = gimple_build_nop ();
3454 verify_gimple_pp ("GIMPLE_NOP", stmt);
3455 ASSERT_EQ (GIMPLE_NOP, gimple_code (stmt));
3456 ASSERT_EQ (NULL, gimple_get_lhs (stmt));
3457 ASSERT_FALSE (gimple_assign_single_p (stmt));
3460 /* Build a GIMPLE_RETURN equivalent to
3461 return 7;
3462 and verify various properties of it. */
3464 static void
3465 test_return_stmt ()
3467 tree type = integer_type_node;
3468 tree val = build_int_cst (type, 7);
3469 greturn *stmt = gimple_build_return (val);
3470 verify_gimple_pp ("return 7;", stmt);
3472 ASSERT_EQ (GIMPLE_RETURN, gimple_code (stmt));
3473 ASSERT_EQ (NULL, gimple_get_lhs (stmt));
3474 ASSERT_EQ (val, gimple_return_retval (stmt));
3475 ASSERT_FALSE (gimple_assign_single_p (stmt));
3478 /* Build a GIMPLE_RETURN equivalent to
3479 return;
3480 and verify various properties of it. */
3482 static void
3483 test_return_without_value ()
3485 greturn *stmt = gimple_build_return (NULL);
3486 verify_gimple_pp ("return;", stmt);
3488 ASSERT_EQ (GIMPLE_RETURN, gimple_code (stmt));
3489 ASSERT_EQ (NULL, gimple_get_lhs (stmt));
3490 ASSERT_EQ (NULL, gimple_return_retval (stmt));
3491 ASSERT_FALSE (gimple_assign_single_p (stmt));
3494 /* Run all of the selftests within this file. */
3496 void
3497 gimple_cc_tests ()
3499 test_assign_single ();
3500 test_assign_binop ();
3501 test_nop_stmt ();
3502 test_return_stmt ();
3503 test_return_without_value ();
3506 } // namespace selftest
3509 #endif /* CHECKING_P */