[RS6000] biarch test fail
[official-gcc.git] / gcc / gimple.c
blob469e6f369f3c32ae4b335b7402e08c3645c34978
1 /* Gimple IR support functions.
3 Copyright (C) 2007-2020 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 "langhooks.h"
48 #include "attr-fnspec.h"
51 /* All the tuples have their operand vector (if present) at the very bottom
52 of the structure. Therefore, the offset required to find the
53 operands vector the size of the structure minus the size of the 1
54 element tree array at the end (see gimple_ops). */
55 #define DEFGSSTRUCT(SYM, STRUCT, HAS_TREE_OP) \
56 (HAS_TREE_OP ? sizeof (struct STRUCT) - sizeof (tree) : 0),
57 EXPORTED_CONST size_t gimple_ops_offset_[] = {
58 #include "gsstruct.def"
60 #undef DEFGSSTRUCT
62 #define DEFGSSTRUCT(SYM, STRUCT, HAS_TREE_OP) sizeof (struct STRUCT),
63 static const size_t gsstruct_code_size[] = {
64 #include "gsstruct.def"
66 #undef DEFGSSTRUCT
68 #define DEFGSCODE(SYM, NAME, GSSCODE) NAME,
69 const char *const gimple_code_name[] = {
70 #include "gimple.def"
72 #undef DEFGSCODE
74 #define DEFGSCODE(SYM, NAME, GSSCODE) GSSCODE,
75 EXPORTED_CONST enum gimple_statement_structure_enum gss_for_code_[] = {
76 #include "gimple.def"
78 #undef DEFGSCODE
80 /* Gimple stats. */
82 uint64_t gimple_alloc_counts[(int) gimple_alloc_kind_all];
83 uint64_t gimple_alloc_sizes[(int) gimple_alloc_kind_all];
85 /* Keep in sync with gimple.h:enum gimple_alloc_kind. */
86 static const char * const gimple_alloc_kind_names[] = {
87 "assignments",
88 "phi nodes",
89 "conditionals",
90 "everything else"
93 /* Static gimple tuple members. */
94 const enum gimple_code gassign::code_;
95 const enum gimple_code gcall::code_;
96 const enum gimple_code gcond::code_;
99 /* Gimple tuple constructors.
100 Note: Any constructor taking a ``gimple_seq'' as a parameter, can
101 be passed a NULL to start with an empty sequence. */
103 /* Set the code for statement G to CODE. */
105 static inline void
106 gimple_set_code (gimple *g, enum gimple_code code)
108 g->code = code;
111 /* Return the number of bytes needed to hold a GIMPLE statement with
112 code CODE. */
114 size_t
115 gimple_size (enum gimple_code code, unsigned num_ops)
117 size_t size = gsstruct_code_size[gss_for_code (code)];
118 if (num_ops > 0)
119 size += (sizeof (tree) * (num_ops - 1));
120 return size;
123 /* Initialize GIMPLE statement G with CODE and NUM_OPS. */
125 void
126 gimple_init (gimple *g, enum gimple_code code, unsigned num_ops)
128 gimple_set_code (g, code);
129 gimple_set_num_ops (g, num_ops);
131 /* Do not call gimple_set_modified here as it has other side
132 effects and this tuple is still not completely built. */
133 g->modified = 1;
134 gimple_init_singleton (g);
137 /* Allocate memory for a GIMPLE statement with code CODE and NUM_OPS
138 operands. */
140 gimple *
141 gimple_alloc (enum gimple_code code, unsigned num_ops MEM_STAT_DECL)
143 size_t size;
144 gimple *stmt;
146 size = gimple_size (code, num_ops);
147 if (GATHER_STATISTICS)
149 enum gimple_alloc_kind kind = gimple_alloc_kind (code);
150 gimple_alloc_counts[(int) kind]++;
151 gimple_alloc_sizes[(int) kind] += size;
154 stmt = ggc_alloc_cleared_gimple_statement_stat (size PASS_MEM_STAT);
155 gimple_init (stmt, code, num_ops);
156 return stmt;
159 /* Set SUBCODE to be the code of the expression computed by statement G. */
161 static inline void
162 gimple_set_subcode (gimple *g, unsigned subcode)
164 /* We only have 16 bits for the RHS code. Assert that we are not
165 overflowing it. */
166 gcc_assert (subcode < (1 << 16));
167 g->subcode = subcode;
172 /* Build a tuple with operands. CODE is the statement to build (which
173 must be one of the GIMPLE_WITH_OPS tuples). SUBCODE is the subcode
174 for the new tuple. NUM_OPS is the number of operands to allocate. */
176 #define gimple_build_with_ops(c, s, n) \
177 gimple_build_with_ops_stat (c, s, n MEM_STAT_INFO)
179 static gimple *
180 gimple_build_with_ops_stat (enum gimple_code code, unsigned subcode,
181 unsigned num_ops MEM_STAT_DECL)
183 gimple *s = gimple_alloc (code, num_ops PASS_MEM_STAT);
184 gimple_set_subcode (s, subcode);
186 return s;
190 /* Build a GIMPLE_RETURN statement returning RETVAL. */
192 greturn *
193 gimple_build_return (tree retval)
195 greturn *s
196 = as_a <greturn *> (gimple_build_with_ops (GIMPLE_RETURN, ERROR_MARK,
197 2));
198 if (retval)
199 gimple_return_set_retval (s, retval);
200 return s;
203 /* Reset alias information on call S. */
205 void
206 gimple_call_reset_alias_info (gcall *s)
208 if (gimple_call_flags (s) & ECF_CONST)
209 memset (gimple_call_use_set (s), 0, sizeof (struct pt_solution));
210 else
211 pt_solution_reset (gimple_call_use_set (s));
212 if (gimple_call_flags (s) & (ECF_CONST|ECF_PURE|ECF_NOVOPS))
213 memset (gimple_call_clobber_set (s), 0, sizeof (struct pt_solution));
214 else
215 pt_solution_reset (gimple_call_clobber_set (s));
218 /* Helper for gimple_build_call, gimple_build_call_valist,
219 gimple_build_call_vec and gimple_build_call_from_tree. Build the basic
220 components of a GIMPLE_CALL statement to function FN with NARGS
221 arguments. */
223 static inline gcall *
224 gimple_build_call_1 (tree fn, unsigned nargs)
226 gcall *s
227 = as_a <gcall *> (gimple_build_with_ops (GIMPLE_CALL, ERROR_MARK,
228 nargs + 3));
229 if (TREE_CODE (fn) == FUNCTION_DECL)
230 fn = build_fold_addr_expr (fn);
231 gimple_set_op (s, 1, fn);
232 gimple_call_set_fntype (s, TREE_TYPE (TREE_TYPE (fn)));
233 gimple_call_reset_alias_info (s);
234 return s;
238 /* Build a GIMPLE_CALL statement to function FN with the arguments
239 specified in vector ARGS. */
241 gcall *
242 gimple_build_call_vec (tree fn, vec<tree> args)
244 unsigned i;
245 unsigned nargs = args.length ();
246 gcall *call = gimple_build_call_1 (fn, nargs);
248 for (i = 0; i < nargs; i++)
249 gimple_call_set_arg (call, i, args[i]);
251 return call;
255 /* Build a GIMPLE_CALL statement to function FN. NARGS is the number of
256 arguments. The ... are the arguments. */
258 gcall *
259 gimple_build_call (tree fn, unsigned nargs, ...)
261 va_list ap;
262 gcall *call;
263 unsigned i;
265 gcc_assert (TREE_CODE (fn) == FUNCTION_DECL || is_gimple_call_addr (fn));
267 call = gimple_build_call_1 (fn, nargs);
269 va_start (ap, nargs);
270 for (i = 0; i < nargs; i++)
271 gimple_call_set_arg (call, i, va_arg (ap, tree));
272 va_end (ap);
274 return call;
278 /* Build a GIMPLE_CALL statement to function FN. NARGS is the number of
279 arguments. AP contains the arguments. */
281 gcall *
282 gimple_build_call_valist (tree fn, unsigned nargs, va_list ap)
284 gcall *call;
285 unsigned i;
287 gcc_assert (TREE_CODE (fn) == FUNCTION_DECL || is_gimple_call_addr (fn));
289 call = gimple_build_call_1 (fn, nargs);
291 for (i = 0; i < nargs; i++)
292 gimple_call_set_arg (call, i, va_arg (ap, tree));
294 return call;
298 /* Helper for gimple_build_call_internal and gimple_build_call_internal_vec.
299 Build the basic components of a GIMPLE_CALL statement to internal
300 function FN with NARGS arguments. */
302 static inline gcall *
303 gimple_build_call_internal_1 (enum internal_fn fn, unsigned nargs)
305 gcall *s
306 = as_a <gcall *> (gimple_build_with_ops (GIMPLE_CALL, ERROR_MARK,
307 nargs + 3));
308 s->subcode |= GF_CALL_INTERNAL;
309 gimple_call_set_internal_fn (s, fn);
310 gimple_call_reset_alias_info (s);
311 return s;
315 /* Build a GIMPLE_CALL statement to internal function FN. NARGS is
316 the number of arguments. The ... are the arguments. */
318 gcall *
319 gimple_build_call_internal (enum internal_fn fn, unsigned nargs, ...)
321 va_list ap;
322 gcall *call;
323 unsigned i;
325 call = gimple_build_call_internal_1 (fn, nargs);
326 va_start (ap, nargs);
327 for (i = 0; i < nargs; i++)
328 gimple_call_set_arg (call, i, va_arg (ap, tree));
329 va_end (ap);
331 return call;
335 /* Build a GIMPLE_CALL statement to internal function FN with the arguments
336 specified in vector ARGS. */
338 gcall *
339 gimple_build_call_internal_vec (enum internal_fn fn, vec<tree> args)
341 unsigned i, nargs;
342 gcall *call;
344 nargs = args.length ();
345 call = gimple_build_call_internal_1 (fn, nargs);
346 for (i = 0; i < nargs; i++)
347 gimple_call_set_arg (call, i, args[i]);
349 return call;
353 /* Build a GIMPLE_CALL statement from CALL_EXPR T. Note that T is
354 assumed to be in GIMPLE form already. Minimal checking is done of
355 this fact. */
357 gcall *
358 gimple_build_call_from_tree (tree t, tree fnptrtype)
360 unsigned i, nargs;
361 gcall *call;
363 gcc_assert (TREE_CODE (t) == CALL_EXPR);
365 nargs = call_expr_nargs (t);
367 tree fndecl = NULL_TREE;
368 if (CALL_EXPR_FN (t) == NULL_TREE)
369 call = gimple_build_call_internal_1 (CALL_EXPR_IFN (t), nargs);
370 else
372 fndecl = get_callee_fndecl (t);
373 call = gimple_build_call_1 (fndecl ? fndecl : CALL_EXPR_FN (t), nargs);
376 for (i = 0; i < nargs; i++)
377 gimple_call_set_arg (call, i, CALL_EXPR_ARG (t, i));
379 gimple_set_block (call, TREE_BLOCK (t));
380 gimple_set_location (call, EXPR_LOCATION (t));
382 /* Carry all the CALL_EXPR flags to the new GIMPLE_CALL. */
383 gimple_call_set_chain (call, CALL_EXPR_STATIC_CHAIN (t));
384 gimple_call_set_tail (call, CALL_EXPR_TAILCALL (t));
385 gimple_call_set_must_tail (call, CALL_EXPR_MUST_TAIL_CALL (t));
386 gimple_call_set_return_slot_opt (call, CALL_EXPR_RETURN_SLOT_OPT (t));
387 if (fndecl
388 && fndecl_built_in_p (fndecl, BUILT_IN_NORMAL)
389 && ALLOCA_FUNCTION_CODE_P (DECL_FUNCTION_CODE (fndecl)))
390 gimple_call_set_alloca_for_var (call, CALL_ALLOCA_FOR_VAR_P (t));
391 else if (fndecl
392 && (DECL_IS_OPERATOR_NEW_P (fndecl)
393 || DECL_IS_OPERATOR_DELETE_P (fndecl)))
394 gimple_call_set_from_new_or_delete (call, CALL_FROM_NEW_OR_DELETE_P (t));
395 else
396 gimple_call_set_from_thunk (call, CALL_FROM_THUNK_P (t));
397 gimple_call_set_va_arg_pack (call, CALL_EXPR_VA_ARG_PACK (t));
398 gimple_call_set_nothrow (call, TREE_NOTHROW (t));
399 gimple_call_set_by_descriptor (call, CALL_EXPR_BY_DESCRIPTOR (t));
400 gimple_set_no_warning (call, TREE_NO_WARNING (t));
402 if (fnptrtype)
404 gimple_call_set_fntype (call, TREE_TYPE (fnptrtype));
406 /* Check if it's an indirect CALL and the type has the
407 nocf_check attribute. In that case propagate the information
408 to the gimple CALL insn. */
409 if (!fndecl)
411 gcc_assert (POINTER_TYPE_P (fnptrtype));
412 tree fntype = TREE_TYPE (fnptrtype);
414 if (lookup_attribute ("nocf_check", TYPE_ATTRIBUTES (fntype)))
415 gimple_call_set_nocf_check (call, TRUE);
419 return call;
423 /* Build a GIMPLE_ASSIGN statement.
425 LHS of the assignment.
426 RHS of the assignment which can be unary or binary. */
428 gassign *
429 gimple_build_assign (tree lhs, tree rhs MEM_STAT_DECL)
431 enum tree_code subcode;
432 tree op1, op2, op3;
434 extract_ops_from_tree (rhs, &subcode, &op1, &op2, &op3);
435 return gimple_build_assign (lhs, subcode, op1, op2, op3 PASS_MEM_STAT);
439 /* Build a GIMPLE_ASSIGN statement with subcode SUBCODE and operands
440 OP1, OP2 and OP3. */
442 static inline gassign *
443 gimple_build_assign_1 (tree lhs, enum tree_code subcode, tree op1,
444 tree op2, tree op3 MEM_STAT_DECL)
446 unsigned num_ops;
447 gassign *p;
449 /* Need 1 operand for LHS and 1 or 2 for the RHS (depending on the
450 code). */
451 num_ops = get_gimple_rhs_num_ops (subcode) + 1;
453 p = as_a <gassign *> (
454 gimple_build_with_ops_stat (GIMPLE_ASSIGN, (unsigned)subcode, num_ops
455 PASS_MEM_STAT));
456 gimple_assign_set_lhs (p, lhs);
457 gimple_assign_set_rhs1 (p, op1);
458 if (op2)
460 gcc_assert (num_ops > 2);
461 gimple_assign_set_rhs2 (p, op2);
464 if (op3)
466 gcc_assert (num_ops > 3);
467 gimple_assign_set_rhs3 (p, op3);
470 return p;
473 /* Build a GIMPLE_ASSIGN statement with subcode SUBCODE and operands
474 OP1, OP2 and OP3. */
476 gassign *
477 gimple_build_assign (tree lhs, enum tree_code subcode, tree op1,
478 tree op2, tree op3 MEM_STAT_DECL)
480 return gimple_build_assign_1 (lhs, subcode, op1, op2, op3 PASS_MEM_STAT);
483 /* Build a GIMPLE_ASSIGN statement with subcode SUBCODE and operands
484 OP1 and OP2. */
486 gassign *
487 gimple_build_assign (tree lhs, enum tree_code subcode, tree op1,
488 tree op2 MEM_STAT_DECL)
490 return gimple_build_assign_1 (lhs, subcode, op1, op2, NULL_TREE
491 PASS_MEM_STAT);
494 /* Build a GIMPLE_ASSIGN statement with subcode SUBCODE and operand OP1. */
496 gassign *
497 gimple_build_assign (tree lhs, enum tree_code subcode, tree op1 MEM_STAT_DECL)
499 return gimple_build_assign_1 (lhs, subcode, op1, NULL_TREE, NULL_TREE
500 PASS_MEM_STAT);
504 /* Build a GIMPLE_COND statement.
506 PRED is the condition used to compare LHS and the RHS.
507 T_LABEL is the label to jump to if the condition is true.
508 F_LABEL is the label to jump to otherwise. */
510 gcond *
511 gimple_build_cond (enum tree_code pred_code, tree lhs, tree rhs,
512 tree t_label, tree f_label)
514 gcond *p;
516 gcc_assert (TREE_CODE_CLASS (pred_code) == tcc_comparison);
517 p = as_a <gcond *> (gimple_build_with_ops (GIMPLE_COND, pred_code, 4));
518 gimple_cond_set_lhs (p, lhs);
519 gimple_cond_set_rhs (p, rhs);
520 gimple_cond_set_true_label (p, t_label);
521 gimple_cond_set_false_label (p, f_label);
522 return p;
525 /* Build a GIMPLE_COND statement from the conditional expression tree
526 COND. T_LABEL and F_LABEL are as in gimple_build_cond. */
528 gcond *
529 gimple_build_cond_from_tree (tree cond, tree t_label, tree f_label)
531 enum tree_code code;
532 tree lhs, rhs;
534 gimple_cond_get_ops_from_tree (cond, &code, &lhs, &rhs);
535 return gimple_build_cond (code, lhs, rhs, t_label, f_label);
538 /* Set code, lhs, and rhs of a GIMPLE_COND from a suitable
539 boolean expression tree COND. */
541 void
542 gimple_cond_set_condition_from_tree (gcond *stmt, tree cond)
544 enum tree_code code;
545 tree lhs, rhs;
547 gimple_cond_get_ops_from_tree (cond, &code, &lhs, &rhs);
548 gimple_cond_set_condition (stmt, code, lhs, rhs);
551 /* Build a GIMPLE_LABEL statement for LABEL. */
553 glabel *
554 gimple_build_label (tree label)
556 glabel *p
557 = as_a <glabel *> (gimple_build_with_ops (GIMPLE_LABEL, ERROR_MARK, 1));
558 gimple_label_set_label (p, label);
559 return p;
562 /* Build a GIMPLE_GOTO statement to label DEST. */
564 ggoto *
565 gimple_build_goto (tree dest)
567 ggoto *p
568 = as_a <ggoto *> (gimple_build_with_ops (GIMPLE_GOTO, ERROR_MARK, 1));
569 gimple_goto_set_dest (p, dest);
570 return p;
574 /* Build a GIMPLE_NOP statement. */
576 gimple *
577 gimple_build_nop (void)
579 return gimple_alloc (GIMPLE_NOP, 0);
583 /* Build a GIMPLE_BIND statement.
584 VARS are the variables in BODY.
585 BLOCK is the containing block. */
587 gbind *
588 gimple_build_bind (tree vars, gimple_seq body, tree block)
590 gbind *p = as_a <gbind *> (gimple_alloc (GIMPLE_BIND, 0));
591 gimple_bind_set_vars (p, vars);
592 if (body)
593 gimple_bind_set_body (p, body);
594 if (block)
595 gimple_bind_set_block (p, block);
596 return p;
599 /* Helper function to set the simple fields of a asm stmt.
601 STRING is a pointer to a string that is the asm blocks assembly code.
602 NINPUT is the number of register inputs.
603 NOUTPUT is the number of register outputs.
604 NCLOBBERS is the number of clobbered registers.
607 static inline gasm *
608 gimple_build_asm_1 (const char *string, unsigned ninputs, unsigned noutputs,
609 unsigned nclobbers, unsigned nlabels)
611 gasm *p;
612 int size = strlen (string);
614 /* ASMs with labels cannot have outputs. This should have been
615 enforced by the front end. */
616 gcc_assert (nlabels == 0 || noutputs == 0);
618 p = as_a <gasm *> (
619 gimple_build_with_ops (GIMPLE_ASM, ERROR_MARK,
620 ninputs + noutputs + nclobbers + nlabels));
622 p->ni = ninputs;
623 p->no = noutputs;
624 p->nc = nclobbers;
625 p->nl = nlabels;
626 p->string = ggc_alloc_string (string, size);
628 if (GATHER_STATISTICS)
629 gimple_alloc_sizes[(int) gimple_alloc_kind (GIMPLE_ASM)] += size;
631 return p;
634 /* Build a GIMPLE_ASM statement.
636 STRING is the assembly code.
637 NINPUT is the number of register inputs.
638 NOUTPUT is the number of register outputs.
639 NCLOBBERS is the number of clobbered registers.
640 INPUTS is a vector of the input register parameters.
641 OUTPUTS is a vector of the output register parameters.
642 CLOBBERS is a vector of the clobbered register parameters.
643 LABELS is a vector of destination labels. */
645 gasm *
646 gimple_build_asm_vec (const char *string, vec<tree, va_gc> *inputs,
647 vec<tree, va_gc> *outputs, vec<tree, va_gc> *clobbers,
648 vec<tree, va_gc> *labels)
650 gasm *p;
651 unsigned i;
653 p = gimple_build_asm_1 (string,
654 vec_safe_length (inputs),
655 vec_safe_length (outputs),
656 vec_safe_length (clobbers),
657 vec_safe_length (labels));
659 for (i = 0; i < vec_safe_length (inputs); i++)
660 gimple_asm_set_input_op (p, i, (*inputs)[i]);
662 for (i = 0; i < vec_safe_length (outputs); i++)
663 gimple_asm_set_output_op (p, i, (*outputs)[i]);
665 for (i = 0; i < vec_safe_length (clobbers); i++)
666 gimple_asm_set_clobber_op (p, i, (*clobbers)[i]);
668 for (i = 0; i < vec_safe_length (labels); i++)
669 gimple_asm_set_label_op (p, i, (*labels)[i]);
671 return p;
674 /* Build a GIMPLE_CATCH statement.
676 TYPES are the catch types.
677 HANDLER is the exception handler. */
679 gcatch *
680 gimple_build_catch (tree types, gimple_seq handler)
682 gcatch *p = as_a <gcatch *> (gimple_alloc (GIMPLE_CATCH, 0));
683 gimple_catch_set_types (p, types);
684 if (handler)
685 gimple_catch_set_handler (p, handler);
687 return p;
690 /* Build a GIMPLE_EH_FILTER statement.
692 TYPES are the filter's types.
693 FAILURE is the filter's failure action. */
695 geh_filter *
696 gimple_build_eh_filter (tree types, gimple_seq failure)
698 geh_filter *p = as_a <geh_filter *> (gimple_alloc (GIMPLE_EH_FILTER, 0));
699 gimple_eh_filter_set_types (p, types);
700 if (failure)
701 gimple_eh_filter_set_failure (p, failure);
703 return p;
706 /* Build a GIMPLE_EH_MUST_NOT_THROW statement. */
708 geh_mnt *
709 gimple_build_eh_must_not_throw (tree decl)
711 geh_mnt *p = as_a <geh_mnt *> (gimple_alloc (GIMPLE_EH_MUST_NOT_THROW, 0));
713 gcc_assert (TREE_CODE (decl) == FUNCTION_DECL);
714 gcc_assert (flags_from_decl_or_type (decl) & ECF_NORETURN);
715 gimple_eh_must_not_throw_set_fndecl (p, decl);
717 return p;
720 /* Build a GIMPLE_EH_ELSE statement. */
722 geh_else *
723 gimple_build_eh_else (gimple_seq n_body, gimple_seq e_body)
725 geh_else *p = as_a <geh_else *> (gimple_alloc (GIMPLE_EH_ELSE, 0));
726 gimple_eh_else_set_n_body (p, n_body);
727 gimple_eh_else_set_e_body (p, e_body);
728 return p;
731 /* Build a GIMPLE_TRY statement.
733 EVAL is the expression to evaluate.
734 CLEANUP is the cleanup expression.
735 KIND is either GIMPLE_TRY_CATCH or GIMPLE_TRY_FINALLY depending on
736 whether this is a try/catch or a try/finally respectively. */
738 gtry *
739 gimple_build_try (gimple_seq eval, gimple_seq cleanup,
740 enum gimple_try_flags kind)
742 gtry *p;
744 gcc_assert (kind == GIMPLE_TRY_CATCH || kind == GIMPLE_TRY_FINALLY);
745 p = as_a <gtry *> (gimple_alloc (GIMPLE_TRY, 0));
746 gimple_set_subcode (p, kind);
747 if (eval)
748 gimple_try_set_eval (p, eval);
749 if (cleanup)
750 gimple_try_set_cleanup (p, cleanup);
752 return p;
755 /* Construct a GIMPLE_WITH_CLEANUP_EXPR statement.
757 CLEANUP is the cleanup expression. */
759 gimple *
760 gimple_build_wce (gimple_seq cleanup)
762 gimple *p = gimple_alloc (GIMPLE_WITH_CLEANUP_EXPR, 0);
763 if (cleanup)
764 gimple_wce_set_cleanup (p, cleanup);
766 return p;
770 /* Build a GIMPLE_RESX statement. */
772 gresx *
773 gimple_build_resx (int region)
775 gresx *p
776 = as_a <gresx *> (gimple_build_with_ops (GIMPLE_RESX, ERROR_MARK, 0));
777 p->region = region;
778 return p;
782 /* The helper for constructing a gimple switch statement.
783 INDEX is the switch's index.
784 NLABELS is the number of labels in the switch excluding the default.
785 DEFAULT_LABEL is the default label for the switch statement. */
787 gswitch *
788 gimple_build_switch_nlabels (unsigned nlabels, tree index, tree default_label)
790 /* nlabels + 1 default label + 1 index. */
791 gcc_checking_assert (default_label);
792 gswitch *p = as_a <gswitch *> (gimple_build_with_ops (GIMPLE_SWITCH,
793 ERROR_MARK,
794 1 + 1 + nlabels));
795 gimple_switch_set_index (p, index);
796 gimple_switch_set_default_label (p, default_label);
797 return p;
800 /* Build a GIMPLE_SWITCH statement.
802 INDEX is the switch's index.
803 DEFAULT_LABEL is the default label
804 ARGS is a vector of labels excluding the default. */
806 gswitch *
807 gimple_build_switch (tree index, tree default_label, vec<tree> args)
809 unsigned i, nlabels = args.length ();
811 gswitch *p = gimple_build_switch_nlabels (nlabels, index, default_label);
813 /* Copy the labels from the vector to the switch statement. */
814 for (i = 0; i < nlabels; i++)
815 gimple_switch_set_label (p, i + 1, args[i]);
817 return p;
820 /* Build a GIMPLE_EH_DISPATCH statement. */
822 geh_dispatch *
823 gimple_build_eh_dispatch (int region)
825 geh_dispatch *p
826 = as_a <geh_dispatch *> (
827 gimple_build_with_ops (GIMPLE_EH_DISPATCH, ERROR_MARK, 0));
828 p->region = region;
829 return p;
832 /* Build a new GIMPLE_DEBUG_BIND statement.
834 VAR is bound to VALUE; block and location are taken from STMT. */
836 gdebug *
837 gimple_build_debug_bind (tree var, tree value, gimple *stmt MEM_STAT_DECL)
839 gdebug *p
840 = as_a <gdebug *> (gimple_build_with_ops_stat (GIMPLE_DEBUG,
841 (unsigned)GIMPLE_DEBUG_BIND, 2
842 PASS_MEM_STAT));
843 gimple_debug_bind_set_var (p, var);
844 gimple_debug_bind_set_value (p, value);
845 if (stmt)
846 gimple_set_location (p, gimple_location (stmt));
848 return p;
852 /* Build a new GIMPLE_DEBUG_SOURCE_BIND statement.
854 VAR is bound to VALUE; block and location are taken from STMT. */
856 gdebug *
857 gimple_build_debug_source_bind (tree var, tree value,
858 gimple *stmt MEM_STAT_DECL)
860 gdebug *p
861 = as_a <gdebug *> (
862 gimple_build_with_ops_stat (GIMPLE_DEBUG,
863 (unsigned)GIMPLE_DEBUG_SOURCE_BIND, 2
864 PASS_MEM_STAT));
866 gimple_debug_source_bind_set_var (p, var);
867 gimple_debug_source_bind_set_value (p, value);
868 if (stmt)
869 gimple_set_location (p, gimple_location (stmt));
871 return p;
875 /* Build a new GIMPLE_DEBUG_BEGIN_STMT statement in BLOCK at
876 LOCATION. */
878 gdebug *
879 gimple_build_debug_begin_stmt (tree block, location_t location
880 MEM_STAT_DECL)
882 gdebug *p
883 = as_a <gdebug *> (
884 gimple_build_with_ops_stat (GIMPLE_DEBUG,
885 (unsigned)GIMPLE_DEBUG_BEGIN_STMT, 0
886 PASS_MEM_STAT));
888 gimple_set_location (p, location);
889 gimple_set_block (p, block);
890 cfun->debug_marker_count++;
892 return p;
896 /* Build a new GIMPLE_DEBUG_INLINE_ENTRY statement in BLOCK at
897 LOCATION. The BLOCK links to the inlined function. */
899 gdebug *
900 gimple_build_debug_inline_entry (tree block, location_t location
901 MEM_STAT_DECL)
903 gdebug *p
904 = as_a <gdebug *> (
905 gimple_build_with_ops_stat (GIMPLE_DEBUG,
906 (unsigned)GIMPLE_DEBUG_INLINE_ENTRY, 0
907 PASS_MEM_STAT));
909 gimple_set_location (p, location);
910 gimple_set_block (p, block);
911 cfun->debug_marker_count++;
913 return p;
917 /* Build a GIMPLE_OMP_CRITICAL statement.
919 BODY is the sequence of statements for which only one thread can execute.
920 NAME is optional identifier for this critical block.
921 CLAUSES are clauses for this critical block. */
923 gomp_critical *
924 gimple_build_omp_critical (gimple_seq body, tree name, tree clauses)
926 gomp_critical *p
927 = as_a <gomp_critical *> (gimple_alloc (GIMPLE_OMP_CRITICAL, 0));
928 gimple_omp_critical_set_name (p, name);
929 gimple_omp_critical_set_clauses (p, clauses);
930 if (body)
931 gimple_omp_set_body (p, body);
933 return p;
936 /* Build a GIMPLE_OMP_FOR statement.
938 BODY is sequence of statements inside the for loop.
939 KIND is the `for' variant.
940 CLAUSES are any of the construct's clauses.
941 COLLAPSE is the collapse count.
942 PRE_BODY is the sequence of statements that are loop invariant. */
944 gomp_for *
945 gimple_build_omp_for (gimple_seq body, int kind, tree clauses, size_t collapse,
946 gimple_seq pre_body)
948 gomp_for *p = as_a <gomp_for *> (gimple_alloc (GIMPLE_OMP_FOR, 0));
949 if (body)
950 gimple_omp_set_body (p, body);
951 gimple_omp_for_set_clauses (p, clauses);
952 gimple_omp_for_set_kind (p, kind);
953 p->collapse = collapse;
954 p->iter = ggc_cleared_vec_alloc<gimple_omp_for_iter> (collapse);
956 if (pre_body)
957 gimple_omp_for_set_pre_body (p, pre_body);
959 return p;
963 /* Build a GIMPLE_OMP_PARALLEL statement.
965 BODY is sequence of statements which are executed in parallel.
966 CLAUSES are the OMP parallel construct's clauses.
967 CHILD_FN is the function created for the parallel threads to execute.
968 DATA_ARG are the shared data argument(s). */
970 gomp_parallel *
971 gimple_build_omp_parallel (gimple_seq body, tree clauses, tree child_fn,
972 tree data_arg)
974 gomp_parallel *p
975 = as_a <gomp_parallel *> (gimple_alloc (GIMPLE_OMP_PARALLEL, 0));
976 if (body)
977 gimple_omp_set_body (p, body);
978 gimple_omp_parallel_set_clauses (p, clauses);
979 gimple_omp_parallel_set_child_fn (p, child_fn);
980 gimple_omp_parallel_set_data_arg (p, data_arg);
982 return p;
986 /* Build a GIMPLE_OMP_TASK statement.
988 BODY is sequence of statements which are executed by the explicit task.
989 CLAUSES are the OMP task construct's clauses.
990 CHILD_FN is the function created for the parallel threads to execute.
991 DATA_ARG are the shared data argument(s).
992 COPY_FN is the optional function for firstprivate initialization.
993 ARG_SIZE and ARG_ALIGN are size and alignment of the data block. */
995 gomp_task *
996 gimple_build_omp_task (gimple_seq body, tree clauses, tree child_fn,
997 tree data_arg, tree copy_fn, tree arg_size,
998 tree arg_align)
1000 gomp_task *p = as_a <gomp_task *> (gimple_alloc (GIMPLE_OMP_TASK, 0));
1001 if (body)
1002 gimple_omp_set_body (p, body);
1003 gimple_omp_task_set_clauses (p, clauses);
1004 gimple_omp_task_set_child_fn (p, child_fn);
1005 gimple_omp_task_set_data_arg (p, data_arg);
1006 gimple_omp_task_set_copy_fn (p, copy_fn);
1007 gimple_omp_task_set_arg_size (p, arg_size);
1008 gimple_omp_task_set_arg_align (p, arg_align);
1010 return p;
1014 /* Build a GIMPLE_OMP_SECTION statement for a sections statement.
1016 BODY is the sequence of statements in the section. */
1018 gimple *
1019 gimple_build_omp_section (gimple_seq body)
1021 gimple *p = gimple_alloc (GIMPLE_OMP_SECTION, 0);
1022 if (body)
1023 gimple_omp_set_body (p, body);
1025 return p;
1029 /* Build a GIMPLE_OMP_MASTER statement.
1031 BODY is the sequence of statements to be executed by just the master. */
1033 gimple *
1034 gimple_build_omp_master (gimple_seq body)
1036 gimple *p = gimple_alloc (GIMPLE_OMP_MASTER, 0);
1037 if (body)
1038 gimple_omp_set_body (p, body);
1040 return p;
1043 /* Build a GIMPLE_OMP_TASKGROUP statement.
1045 BODY is the sequence of statements to be executed by the taskgroup
1046 construct.
1047 CLAUSES are any of the construct's clauses. */
1049 gimple *
1050 gimple_build_omp_taskgroup (gimple_seq body, tree clauses)
1052 gimple *p = gimple_alloc (GIMPLE_OMP_TASKGROUP, 0);
1053 gimple_omp_taskgroup_set_clauses (p, clauses);
1054 if (body)
1055 gimple_omp_set_body (p, body);
1057 return p;
1061 /* Build a GIMPLE_OMP_CONTINUE statement.
1063 CONTROL_DEF is the definition of the control variable.
1064 CONTROL_USE is the use of the control variable. */
1066 gomp_continue *
1067 gimple_build_omp_continue (tree control_def, tree control_use)
1069 gomp_continue *p
1070 = as_a <gomp_continue *> (gimple_alloc (GIMPLE_OMP_CONTINUE, 0));
1071 gimple_omp_continue_set_control_def (p, control_def);
1072 gimple_omp_continue_set_control_use (p, control_use);
1073 return p;
1076 /* Build a GIMPLE_OMP_ORDERED statement.
1078 BODY is the sequence of statements inside a loop that will executed in
1079 sequence.
1080 CLAUSES are clauses for this statement. */
1082 gomp_ordered *
1083 gimple_build_omp_ordered (gimple_seq body, tree clauses)
1085 gomp_ordered *p
1086 = as_a <gomp_ordered *> (gimple_alloc (GIMPLE_OMP_ORDERED, 0));
1087 gimple_omp_ordered_set_clauses (p, clauses);
1088 if (body)
1089 gimple_omp_set_body (p, body);
1091 return p;
1095 /* Build a GIMPLE_OMP_RETURN statement.
1096 WAIT_P is true if this is a non-waiting return. */
1098 gimple *
1099 gimple_build_omp_return (bool wait_p)
1101 gimple *p = gimple_alloc (GIMPLE_OMP_RETURN, 0);
1102 if (wait_p)
1103 gimple_omp_return_set_nowait (p);
1105 return p;
1109 /* Build a GIMPLE_OMP_SCAN statement.
1111 BODY is the sequence of statements to be executed by the scan
1112 construct.
1113 CLAUSES are any of the construct's clauses. */
1115 gomp_scan *
1116 gimple_build_omp_scan (gimple_seq body, tree clauses)
1118 gomp_scan *p
1119 = as_a <gomp_scan *> (gimple_alloc (GIMPLE_OMP_SCAN, 0));
1120 gimple_omp_scan_set_clauses (p, clauses);
1121 if (body)
1122 gimple_omp_set_body (p, body);
1124 return p;
1128 /* Build a GIMPLE_OMP_SECTIONS statement.
1130 BODY is a sequence of section statements.
1131 CLAUSES are any of the OMP sections contsruct's clauses: private,
1132 firstprivate, lastprivate, reduction, and nowait. */
1134 gomp_sections *
1135 gimple_build_omp_sections (gimple_seq body, tree clauses)
1137 gomp_sections *p
1138 = as_a <gomp_sections *> (gimple_alloc (GIMPLE_OMP_SECTIONS, 0));
1139 if (body)
1140 gimple_omp_set_body (p, body);
1141 gimple_omp_sections_set_clauses (p, clauses);
1143 return p;
1147 /* Build a GIMPLE_OMP_SECTIONS_SWITCH. */
1149 gimple *
1150 gimple_build_omp_sections_switch (void)
1152 return gimple_alloc (GIMPLE_OMP_SECTIONS_SWITCH, 0);
1156 /* Build a GIMPLE_OMP_SINGLE statement.
1158 BODY is the sequence of statements that will be executed once.
1159 CLAUSES are any of the OMP single construct's clauses: private, firstprivate,
1160 copyprivate, nowait. */
1162 gomp_single *
1163 gimple_build_omp_single (gimple_seq body, tree clauses)
1165 gomp_single *p
1166 = as_a <gomp_single *> (gimple_alloc (GIMPLE_OMP_SINGLE, 0));
1167 if (body)
1168 gimple_omp_set_body (p, body);
1169 gimple_omp_single_set_clauses (p, clauses);
1171 return p;
1175 /* Build a GIMPLE_OMP_TARGET statement.
1177 BODY is the sequence of statements that will be executed.
1178 KIND is the kind of the region.
1179 CLAUSES are any of the construct's clauses. */
1181 gomp_target *
1182 gimple_build_omp_target (gimple_seq body, int kind, tree clauses)
1184 gomp_target *p
1185 = as_a <gomp_target *> (gimple_alloc (GIMPLE_OMP_TARGET, 0));
1186 if (body)
1187 gimple_omp_set_body (p, body);
1188 gimple_omp_target_set_clauses (p, clauses);
1189 gimple_omp_target_set_kind (p, kind);
1191 return p;
1195 /* Build a GIMPLE_OMP_TEAMS statement.
1197 BODY is the sequence of statements that will be executed.
1198 CLAUSES are any of the OMP teams construct's clauses. */
1200 gomp_teams *
1201 gimple_build_omp_teams (gimple_seq body, tree clauses)
1203 gomp_teams *p = as_a <gomp_teams *> (gimple_alloc (GIMPLE_OMP_TEAMS, 0));
1204 if (body)
1205 gimple_omp_set_body (p, body);
1206 gimple_omp_teams_set_clauses (p, clauses);
1208 return p;
1212 /* Build a GIMPLE_OMP_ATOMIC_LOAD statement. */
1214 gomp_atomic_load *
1215 gimple_build_omp_atomic_load (tree lhs, tree rhs, enum omp_memory_order mo)
1217 gomp_atomic_load *p
1218 = as_a <gomp_atomic_load *> (gimple_alloc (GIMPLE_OMP_ATOMIC_LOAD, 0));
1219 gimple_omp_atomic_load_set_lhs (p, lhs);
1220 gimple_omp_atomic_load_set_rhs (p, rhs);
1221 gimple_omp_atomic_set_memory_order (p, mo);
1222 return p;
1225 /* Build a GIMPLE_OMP_ATOMIC_STORE statement.
1227 VAL is the value we are storing. */
1229 gomp_atomic_store *
1230 gimple_build_omp_atomic_store (tree val, enum omp_memory_order mo)
1232 gomp_atomic_store *p
1233 = as_a <gomp_atomic_store *> (gimple_alloc (GIMPLE_OMP_ATOMIC_STORE, 0));
1234 gimple_omp_atomic_store_set_val (p, val);
1235 gimple_omp_atomic_set_memory_order (p, mo);
1236 return p;
1239 /* Build a GIMPLE_TRANSACTION statement. */
1241 gtransaction *
1242 gimple_build_transaction (gimple_seq body)
1244 gtransaction *p
1245 = as_a <gtransaction *> (gimple_alloc (GIMPLE_TRANSACTION, 0));
1246 gimple_transaction_set_body (p, body);
1247 gimple_transaction_set_label_norm (p, 0);
1248 gimple_transaction_set_label_uninst (p, 0);
1249 gimple_transaction_set_label_over (p, 0);
1250 return p;
1253 #if defined ENABLE_GIMPLE_CHECKING
1254 /* Complain of a gimple type mismatch and die. */
1256 void
1257 gimple_check_failed (const gimple *gs, const char *file, int line,
1258 const char *function, enum gimple_code code,
1259 enum tree_code subcode)
1261 internal_error ("gimple check: expected %s(%s), have %s(%s) in %s, at %s:%d",
1262 gimple_code_name[code],
1263 get_tree_code_name (subcode),
1264 gimple_code_name[gimple_code (gs)],
1265 gs->subcode > 0
1266 ? get_tree_code_name ((enum tree_code) gs->subcode)
1267 : "",
1268 function, trim_filename (file), line);
1270 #endif /* ENABLE_GIMPLE_CHECKING */
1273 /* Link gimple statement GS to the end of the sequence *SEQ_P. If
1274 *SEQ_P is NULL, a new sequence is allocated. */
1276 void
1277 gimple_seq_add_stmt (gimple_seq *seq_p, gimple *gs)
1279 gimple_stmt_iterator si;
1280 if (gs == NULL)
1281 return;
1283 si = gsi_last (*seq_p);
1284 gsi_insert_after (&si, gs, GSI_NEW_STMT);
1287 /* Link gimple statement GS to the end of the sequence *SEQ_P. If
1288 *SEQ_P is NULL, a new sequence is allocated. This function is
1289 similar to gimple_seq_add_stmt, but does not scan the operands.
1290 During gimplification, we need to manipulate statement sequences
1291 before the def/use vectors have been constructed. */
1293 void
1294 gimple_seq_add_stmt_without_update (gimple_seq *seq_p, gimple *gs)
1296 gimple_stmt_iterator si;
1298 if (gs == NULL)
1299 return;
1301 si = gsi_last (*seq_p);
1302 gsi_insert_after_without_update (&si, gs, GSI_NEW_STMT);
1305 /* Append sequence SRC to the end of sequence *DST_P. If *DST_P is
1306 NULL, a new sequence is allocated. */
1308 void
1309 gimple_seq_add_seq (gimple_seq *dst_p, gimple_seq src)
1311 gimple_stmt_iterator si;
1312 if (src == NULL)
1313 return;
1315 si = gsi_last (*dst_p);
1316 gsi_insert_seq_after (&si, src, GSI_NEW_STMT);
1319 /* Append sequence SRC to the end of sequence *DST_P. If *DST_P is
1320 NULL, a new sequence is allocated. This function is
1321 similar to gimple_seq_add_seq, but does not scan the operands. */
1323 void
1324 gimple_seq_add_seq_without_update (gimple_seq *dst_p, gimple_seq src)
1326 gimple_stmt_iterator si;
1327 if (src == NULL)
1328 return;
1330 si = gsi_last (*dst_p);
1331 gsi_insert_seq_after_without_update (&si, src, GSI_NEW_STMT);
1334 /* Determine whether to assign a location to the statement GS. */
1336 static bool
1337 should_carry_location_p (gimple *gs)
1339 /* Don't emit a line note for a label. We particularly don't want to
1340 emit one for the break label, since it doesn't actually correspond
1341 to the beginning of the loop/switch. */
1342 if (gimple_code (gs) == GIMPLE_LABEL)
1343 return false;
1345 return true;
1348 /* Set the location for gimple statement GS to LOCATION. */
1350 static void
1351 annotate_one_with_location (gimple *gs, location_t location)
1353 if (!gimple_has_location (gs)
1354 && !gimple_do_not_emit_location_p (gs)
1355 && should_carry_location_p (gs))
1356 gimple_set_location (gs, location);
1359 /* Set LOCATION for all the statements after iterator GSI in sequence
1360 SEQ. If GSI is pointing to the end of the sequence, start with the
1361 first statement in SEQ. */
1363 void
1364 annotate_all_with_location_after (gimple_seq seq, gimple_stmt_iterator gsi,
1365 location_t location)
1367 if (gsi_end_p (gsi))
1368 gsi = gsi_start (seq);
1369 else
1370 gsi_next (&gsi);
1372 for (; !gsi_end_p (gsi); gsi_next (&gsi))
1373 annotate_one_with_location (gsi_stmt (gsi), location);
1376 /* Set the location for all the statements in a sequence STMT_P to LOCATION. */
1378 void
1379 annotate_all_with_location (gimple_seq stmt_p, location_t location)
1381 gimple_stmt_iterator i;
1383 if (gimple_seq_empty_p (stmt_p))
1384 return;
1386 for (i = gsi_start (stmt_p); !gsi_end_p (i); gsi_next (&i))
1388 gimple *gs = gsi_stmt (i);
1389 annotate_one_with_location (gs, location);
1393 /* Helper function of empty_body_p. Return true if STMT is an empty
1394 statement. */
1396 static bool
1397 empty_stmt_p (gimple *stmt)
1399 if (gimple_code (stmt) == GIMPLE_NOP)
1400 return true;
1401 if (gbind *bind_stmt = dyn_cast <gbind *> (stmt))
1402 return empty_body_p (gimple_bind_body (bind_stmt));
1403 return false;
1407 /* Return true if BODY contains nothing but empty statements. */
1409 bool
1410 empty_body_p (gimple_seq body)
1412 gimple_stmt_iterator i;
1414 if (gimple_seq_empty_p (body))
1415 return true;
1416 for (i = gsi_start (body); !gsi_end_p (i); gsi_next (&i))
1417 if (!empty_stmt_p (gsi_stmt (i))
1418 && !is_gimple_debug (gsi_stmt (i)))
1419 return false;
1421 return true;
1425 /* Perform a deep copy of sequence SRC and return the result. */
1427 gimple_seq
1428 gimple_seq_copy (gimple_seq src)
1430 gimple_stmt_iterator gsi;
1431 gimple_seq new_seq = NULL;
1432 gimple *stmt;
1434 for (gsi = gsi_start (src); !gsi_end_p (gsi); gsi_next (&gsi))
1436 stmt = gimple_copy (gsi_stmt (gsi));
1437 gimple_seq_add_stmt (&new_seq, stmt);
1440 return new_seq;
1445 /* Return true if calls C1 and C2 are known to go to the same function. */
1447 bool
1448 gimple_call_same_target_p (const gimple *c1, const gimple *c2)
1450 if (gimple_call_internal_p (c1))
1451 return (gimple_call_internal_p (c2)
1452 && gimple_call_internal_fn (c1) == gimple_call_internal_fn (c2)
1453 && (!gimple_call_internal_unique_p (as_a <const gcall *> (c1))
1454 || c1 == c2));
1455 else
1456 return (gimple_call_fn (c1) == gimple_call_fn (c2)
1457 || (gimple_call_fndecl (c1)
1458 && gimple_call_fndecl (c1) == gimple_call_fndecl (c2)));
1461 /* Detect flags from a GIMPLE_CALL. This is just like
1462 call_expr_flags, but for gimple tuples. */
1465 gimple_call_flags (const gimple *stmt)
1467 int flags = 0;
1469 if (gimple_call_internal_p (stmt))
1470 flags = internal_fn_flags (gimple_call_internal_fn (stmt));
1471 else
1473 tree decl = gimple_call_fndecl (stmt);
1474 if (decl)
1475 flags = flags_from_decl_or_type (decl);
1476 flags |= flags_from_decl_or_type (gimple_call_fntype (stmt));
1479 if (stmt->subcode & GF_CALL_NOTHROW)
1480 flags |= ECF_NOTHROW;
1482 if (stmt->subcode & GF_CALL_BY_DESCRIPTOR)
1483 flags |= ECF_BY_DESCRIPTOR;
1485 return flags;
1488 /* Return the "fn spec" string for call STMT. */
1490 attr_fnspec
1491 gimple_call_fnspec (const gcall *stmt)
1493 tree type, attr;
1495 if (gimple_call_internal_p (stmt))
1497 const_tree spec = internal_fn_fnspec (gimple_call_internal_fn (stmt));
1498 if (spec)
1499 return spec;
1500 else
1501 return "";
1504 type = gimple_call_fntype (stmt);
1505 if (type)
1507 attr = lookup_attribute ("fn spec", TYPE_ATTRIBUTES (type));
1508 if (attr)
1509 return TREE_VALUE (TREE_VALUE (attr));
1511 if (gimple_call_builtin_p (stmt, BUILT_IN_NORMAL))
1512 return builtin_fnspec (gimple_call_fndecl (stmt));
1513 return "";
1516 /* Detects argument flags for argument number ARG on call STMT. */
1519 gimple_call_arg_flags (const gcall *stmt, unsigned arg)
1521 attr_fnspec fnspec = gimple_call_fnspec (stmt);
1523 if (!fnspec.known_p ())
1524 return 0;
1526 int flags = 0;
1528 if (!fnspec.arg_specified_p (arg))
1530 else if (!fnspec.arg_used_p (arg))
1531 flags = EAF_UNUSED;
1532 else
1534 if (fnspec.arg_direct_p (arg))
1535 flags |= EAF_DIRECT;
1536 if (fnspec.arg_noescape_p (arg))
1537 flags |= EAF_NOESCAPE;
1538 if (fnspec.arg_readonly_p (arg))
1539 flags |= EAF_NOCLOBBER;
1541 return flags;
1544 /* Detects return flags for the call STMT. */
1547 gimple_call_return_flags (const gcall *stmt)
1549 if (gimple_call_flags (stmt) & ECF_MALLOC)
1550 return ERF_NOALIAS;
1552 attr_fnspec fnspec = gimple_call_fnspec (stmt);
1554 unsigned int arg_no;
1555 if (fnspec.returns_arg (&arg_no))
1556 return ERF_RETURNS_ARG | arg_no;
1558 if (fnspec.returns_noalias_p ())
1559 return ERF_NOALIAS;
1560 return 0;
1564 /* Return true if call STMT is known to return a non-zero result. */
1566 bool
1567 gimple_call_nonnull_result_p (gcall *call)
1569 tree fndecl = gimple_call_fndecl (call);
1570 if (!fndecl)
1571 return false;
1572 if (flag_delete_null_pointer_checks && !flag_check_new
1573 && DECL_IS_OPERATOR_NEW_P (fndecl)
1574 && !TREE_NOTHROW (fndecl))
1575 return true;
1577 /* References are always non-NULL. */
1578 if (flag_delete_null_pointer_checks
1579 && TREE_CODE (TREE_TYPE (fndecl)) == REFERENCE_TYPE)
1580 return true;
1582 if (flag_delete_null_pointer_checks
1583 && lookup_attribute ("returns_nonnull",
1584 TYPE_ATTRIBUTES (gimple_call_fntype (call))))
1585 return true;
1586 return gimple_alloca_call_p (call);
1590 /* If CALL returns a non-null result in an argument, return that arg. */
1592 tree
1593 gimple_call_nonnull_arg (gcall *call)
1595 tree fndecl = gimple_call_fndecl (call);
1596 if (!fndecl)
1597 return NULL_TREE;
1599 unsigned rf = gimple_call_return_flags (call);
1600 if (rf & ERF_RETURNS_ARG)
1602 unsigned argnum = rf & ERF_RETURN_ARG_MASK;
1603 if (argnum < gimple_call_num_args (call))
1605 tree arg = gimple_call_arg (call, argnum);
1606 if (SSA_VAR_P (arg)
1607 && infer_nonnull_range_by_attribute (call, arg))
1608 return arg;
1611 return NULL_TREE;
1615 /* Return true if GS is a copy assignment. */
1617 bool
1618 gimple_assign_copy_p (gimple *gs)
1620 return (gimple_assign_single_p (gs)
1621 && is_gimple_val (gimple_op (gs, 1)));
1625 /* Return true if GS is a SSA_NAME copy assignment. */
1627 bool
1628 gimple_assign_ssa_name_copy_p (gimple *gs)
1630 return (gimple_assign_single_p (gs)
1631 && TREE_CODE (gimple_assign_lhs (gs)) == SSA_NAME
1632 && TREE_CODE (gimple_assign_rhs1 (gs)) == SSA_NAME);
1636 /* Return true if GS is an assignment with a unary RHS, but the
1637 operator has no effect on the assigned value. The logic is adapted
1638 from STRIP_NOPS. This predicate is intended to be used in tuplifying
1639 instances in which STRIP_NOPS was previously applied to the RHS of
1640 an assignment.
1642 NOTE: In the use cases that led to the creation of this function
1643 and of gimple_assign_single_p, it is typical to test for either
1644 condition and to proceed in the same manner. In each case, the
1645 assigned value is represented by the single RHS operand of the
1646 assignment. I suspect there may be cases where gimple_assign_copy_p,
1647 gimple_assign_single_p, or equivalent logic is used where a similar
1648 treatment of unary NOPs is appropriate. */
1650 bool
1651 gimple_assign_unary_nop_p (gimple *gs)
1653 return (is_gimple_assign (gs)
1654 && (CONVERT_EXPR_CODE_P (gimple_assign_rhs_code (gs))
1655 || gimple_assign_rhs_code (gs) == NON_LVALUE_EXPR)
1656 && gimple_assign_rhs1 (gs) != error_mark_node
1657 && (TYPE_MODE (TREE_TYPE (gimple_assign_lhs (gs)))
1658 == TYPE_MODE (TREE_TYPE (gimple_assign_rhs1 (gs)))));
1661 /* Set BB to be the basic block holding G. */
1663 void
1664 gimple_set_bb (gimple *stmt, basic_block bb)
1666 stmt->bb = bb;
1668 if (gimple_code (stmt) != GIMPLE_LABEL)
1669 return;
1671 /* If the statement is a label, add the label to block-to-labels map
1672 so that we can speed up edge creation for GIMPLE_GOTOs. */
1673 if (cfun->cfg)
1675 tree t;
1676 int uid;
1678 t = gimple_label_label (as_a <glabel *> (stmt));
1679 uid = LABEL_DECL_UID (t);
1680 if (uid == -1)
1682 unsigned old_len =
1683 vec_safe_length (label_to_block_map_for_fn (cfun));
1684 LABEL_DECL_UID (t) = uid = cfun->cfg->last_label_uid++;
1685 if (old_len <= (unsigned) uid)
1686 vec_safe_grow_cleared (label_to_block_map_for_fn (cfun), uid + 1);
1689 (*label_to_block_map_for_fn (cfun))[uid] = bb;
1694 /* Modify the RHS of the assignment pointed-to by GSI using the
1695 operands in the expression tree EXPR.
1697 NOTE: The statement pointed-to by GSI may be reallocated if it
1698 did not have enough operand slots.
1700 This function is useful to convert an existing tree expression into
1701 the flat representation used for the RHS of a GIMPLE assignment.
1702 It will reallocate memory as needed to expand or shrink the number
1703 of operand slots needed to represent EXPR.
1705 NOTE: If you find yourself building a tree and then calling this
1706 function, you are most certainly doing it the slow way. It is much
1707 better to build a new assignment or to use the function
1708 gimple_assign_set_rhs_with_ops, which does not require an
1709 expression tree to be built. */
1711 void
1712 gimple_assign_set_rhs_from_tree (gimple_stmt_iterator *gsi, tree expr)
1714 enum tree_code subcode;
1715 tree op1, op2, op3;
1717 extract_ops_from_tree (expr, &subcode, &op1, &op2, &op3);
1718 gimple_assign_set_rhs_with_ops (gsi, subcode, op1, op2, op3);
1722 /* Set the RHS of assignment statement pointed-to by GSI to CODE with
1723 operands OP1, OP2 and OP3.
1725 NOTE: The statement pointed-to by GSI may be reallocated if it
1726 did not have enough operand slots. */
1728 void
1729 gimple_assign_set_rhs_with_ops (gimple_stmt_iterator *gsi, enum tree_code code,
1730 tree op1, tree op2, tree op3)
1732 unsigned new_rhs_ops = get_gimple_rhs_num_ops (code);
1733 gimple *stmt = gsi_stmt (*gsi);
1734 gimple *old_stmt = stmt;
1736 /* If the new CODE needs more operands, allocate a new statement. */
1737 if (gimple_num_ops (stmt) < new_rhs_ops + 1)
1739 tree lhs = gimple_assign_lhs (old_stmt);
1740 stmt = gimple_alloc (gimple_code (old_stmt), new_rhs_ops + 1);
1741 memcpy (stmt, old_stmt, gimple_size (gimple_code (old_stmt)));
1742 gimple_init_singleton (stmt);
1744 /* The LHS needs to be reset as this also changes the SSA name
1745 on the LHS. */
1746 gimple_assign_set_lhs (stmt, lhs);
1749 gimple_set_num_ops (stmt, new_rhs_ops + 1);
1750 gimple_set_subcode (stmt, code);
1751 gimple_assign_set_rhs1 (stmt, op1);
1752 if (new_rhs_ops > 1)
1753 gimple_assign_set_rhs2 (stmt, op2);
1754 if (new_rhs_ops > 2)
1755 gimple_assign_set_rhs3 (stmt, op3);
1756 if (stmt != old_stmt)
1757 gsi_replace (gsi, stmt, false);
1761 /* Return the LHS of a statement that performs an assignment,
1762 either a GIMPLE_ASSIGN or a GIMPLE_CALL. Returns NULL_TREE
1763 for a call to a function that returns no value, or for a
1764 statement other than an assignment or a call. */
1766 tree
1767 gimple_get_lhs (const gimple *stmt)
1769 enum gimple_code code = gimple_code (stmt);
1771 if (code == GIMPLE_ASSIGN)
1772 return gimple_assign_lhs (stmt);
1773 else if (code == GIMPLE_CALL)
1774 return gimple_call_lhs (stmt);
1775 else if (code == GIMPLE_PHI)
1776 return gimple_phi_result (stmt);
1777 else
1778 return NULL_TREE;
1782 /* Set the LHS of a statement that performs an assignment,
1783 either a GIMPLE_ASSIGN or a GIMPLE_CALL. */
1785 void
1786 gimple_set_lhs (gimple *stmt, tree lhs)
1788 enum gimple_code code = gimple_code (stmt);
1790 if (code == GIMPLE_ASSIGN)
1791 gimple_assign_set_lhs (stmt, lhs);
1792 else if (code == GIMPLE_CALL)
1793 gimple_call_set_lhs (stmt, lhs);
1794 else
1795 gcc_unreachable ();
1799 /* Return a deep copy of statement STMT. All the operands from STMT
1800 are reallocated and copied using unshare_expr. The DEF, USE, VDEF
1801 and VUSE operand arrays are set to empty in the new copy. The new
1802 copy isn't part of any sequence. */
1804 gimple *
1805 gimple_copy (gimple *stmt)
1807 enum gimple_code code = gimple_code (stmt);
1808 unsigned num_ops = gimple_num_ops (stmt);
1809 gimple *copy = gimple_alloc (code, num_ops);
1810 unsigned i;
1812 /* Shallow copy all the fields from STMT. */
1813 memcpy (copy, stmt, gimple_size (code));
1814 gimple_init_singleton (copy);
1816 /* If STMT has sub-statements, deep-copy them as well. */
1817 if (gimple_has_substatements (stmt))
1819 gimple_seq new_seq;
1820 tree t;
1822 switch (gimple_code (stmt))
1824 case GIMPLE_BIND:
1826 gbind *bind_stmt = as_a <gbind *> (stmt);
1827 gbind *bind_copy = as_a <gbind *> (copy);
1828 new_seq = gimple_seq_copy (gimple_bind_body (bind_stmt));
1829 gimple_bind_set_body (bind_copy, new_seq);
1830 gimple_bind_set_vars (bind_copy,
1831 unshare_expr (gimple_bind_vars (bind_stmt)));
1832 gimple_bind_set_block (bind_copy, gimple_bind_block (bind_stmt));
1834 break;
1836 case GIMPLE_CATCH:
1838 gcatch *catch_stmt = as_a <gcatch *> (stmt);
1839 gcatch *catch_copy = as_a <gcatch *> (copy);
1840 new_seq = gimple_seq_copy (gimple_catch_handler (catch_stmt));
1841 gimple_catch_set_handler (catch_copy, new_seq);
1842 t = unshare_expr (gimple_catch_types (catch_stmt));
1843 gimple_catch_set_types (catch_copy, t);
1845 break;
1847 case GIMPLE_EH_FILTER:
1849 geh_filter *eh_filter_stmt = as_a <geh_filter *> (stmt);
1850 geh_filter *eh_filter_copy = as_a <geh_filter *> (copy);
1851 new_seq
1852 = gimple_seq_copy (gimple_eh_filter_failure (eh_filter_stmt));
1853 gimple_eh_filter_set_failure (eh_filter_copy, new_seq);
1854 t = unshare_expr (gimple_eh_filter_types (eh_filter_stmt));
1855 gimple_eh_filter_set_types (eh_filter_copy, t);
1857 break;
1859 case GIMPLE_EH_ELSE:
1861 geh_else *eh_else_stmt = as_a <geh_else *> (stmt);
1862 geh_else *eh_else_copy = as_a <geh_else *> (copy);
1863 new_seq = gimple_seq_copy (gimple_eh_else_n_body (eh_else_stmt));
1864 gimple_eh_else_set_n_body (eh_else_copy, new_seq);
1865 new_seq = gimple_seq_copy (gimple_eh_else_e_body (eh_else_stmt));
1866 gimple_eh_else_set_e_body (eh_else_copy, new_seq);
1868 break;
1870 case GIMPLE_TRY:
1872 gtry *try_stmt = as_a <gtry *> (stmt);
1873 gtry *try_copy = as_a <gtry *> (copy);
1874 new_seq = gimple_seq_copy (gimple_try_eval (try_stmt));
1875 gimple_try_set_eval (try_copy, new_seq);
1876 new_seq = gimple_seq_copy (gimple_try_cleanup (try_stmt));
1877 gimple_try_set_cleanup (try_copy, new_seq);
1879 break;
1881 case GIMPLE_OMP_FOR:
1882 new_seq = gimple_seq_copy (gimple_omp_for_pre_body (stmt));
1883 gimple_omp_for_set_pre_body (copy, new_seq);
1884 t = unshare_expr (gimple_omp_for_clauses (stmt));
1885 gimple_omp_for_set_clauses (copy, t);
1887 gomp_for *omp_for_copy = as_a <gomp_for *> (copy);
1888 omp_for_copy->iter = ggc_vec_alloc<gimple_omp_for_iter>
1889 ( gimple_omp_for_collapse (stmt));
1891 for (i = 0; i < gimple_omp_for_collapse (stmt); i++)
1893 gimple_omp_for_set_cond (copy, i,
1894 gimple_omp_for_cond (stmt, i));
1895 gimple_omp_for_set_index (copy, i,
1896 gimple_omp_for_index (stmt, i));
1897 t = unshare_expr (gimple_omp_for_initial (stmt, i));
1898 gimple_omp_for_set_initial (copy, i, t);
1899 t = unshare_expr (gimple_omp_for_final (stmt, i));
1900 gimple_omp_for_set_final (copy, i, t);
1901 t = unshare_expr (gimple_omp_for_incr (stmt, i));
1902 gimple_omp_for_set_incr (copy, i, t);
1904 goto copy_omp_body;
1906 case GIMPLE_OMP_PARALLEL:
1908 gomp_parallel *omp_par_stmt = as_a <gomp_parallel *> (stmt);
1909 gomp_parallel *omp_par_copy = as_a <gomp_parallel *> (copy);
1910 t = unshare_expr (gimple_omp_parallel_clauses (omp_par_stmt));
1911 gimple_omp_parallel_set_clauses (omp_par_copy, t);
1912 t = unshare_expr (gimple_omp_parallel_child_fn (omp_par_stmt));
1913 gimple_omp_parallel_set_child_fn (omp_par_copy, t);
1914 t = unshare_expr (gimple_omp_parallel_data_arg (omp_par_stmt));
1915 gimple_omp_parallel_set_data_arg (omp_par_copy, t);
1917 goto copy_omp_body;
1919 case GIMPLE_OMP_TASK:
1920 t = unshare_expr (gimple_omp_task_clauses (stmt));
1921 gimple_omp_task_set_clauses (copy, t);
1922 t = unshare_expr (gimple_omp_task_child_fn (stmt));
1923 gimple_omp_task_set_child_fn (copy, t);
1924 t = unshare_expr (gimple_omp_task_data_arg (stmt));
1925 gimple_omp_task_set_data_arg (copy, t);
1926 t = unshare_expr (gimple_omp_task_copy_fn (stmt));
1927 gimple_omp_task_set_copy_fn (copy, t);
1928 t = unshare_expr (gimple_omp_task_arg_size (stmt));
1929 gimple_omp_task_set_arg_size (copy, t);
1930 t = unshare_expr (gimple_omp_task_arg_align (stmt));
1931 gimple_omp_task_set_arg_align (copy, t);
1932 goto copy_omp_body;
1934 case GIMPLE_OMP_CRITICAL:
1935 t = unshare_expr (gimple_omp_critical_name
1936 (as_a <gomp_critical *> (stmt)));
1937 gimple_omp_critical_set_name (as_a <gomp_critical *> (copy), t);
1938 t = unshare_expr (gimple_omp_critical_clauses
1939 (as_a <gomp_critical *> (stmt)));
1940 gimple_omp_critical_set_clauses (as_a <gomp_critical *> (copy), t);
1941 goto copy_omp_body;
1943 case GIMPLE_OMP_ORDERED:
1944 t = unshare_expr (gimple_omp_ordered_clauses
1945 (as_a <gomp_ordered *> (stmt)));
1946 gimple_omp_ordered_set_clauses (as_a <gomp_ordered *> (copy), t);
1947 goto copy_omp_body;
1949 case GIMPLE_OMP_SCAN:
1950 t = gimple_omp_scan_clauses (as_a <gomp_scan *> (stmt));
1951 t = unshare_expr (t);
1952 gimple_omp_scan_set_clauses (as_a <gomp_scan *> (copy), t);
1953 goto copy_omp_body;
1955 case GIMPLE_OMP_TASKGROUP:
1956 t = unshare_expr (gimple_omp_taskgroup_clauses (stmt));
1957 gimple_omp_taskgroup_set_clauses (copy, t);
1958 goto copy_omp_body;
1960 case GIMPLE_OMP_SECTIONS:
1961 t = unshare_expr (gimple_omp_sections_clauses (stmt));
1962 gimple_omp_sections_set_clauses (copy, t);
1963 t = unshare_expr (gimple_omp_sections_control (stmt));
1964 gimple_omp_sections_set_control (copy, t);
1965 goto copy_omp_body;
1967 case GIMPLE_OMP_SINGLE:
1969 gomp_single *omp_single_copy = as_a <gomp_single *> (copy);
1970 t = unshare_expr (gimple_omp_single_clauses (stmt));
1971 gimple_omp_single_set_clauses (omp_single_copy, t);
1973 goto copy_omp_body;
1975 case GIMPLE_OMP_TARGET:
1977 gomp_target *omp_target_stmt = as_a <gomp_target *> (stmt);
1978 gomp_target *omp_target_copy = as_a <gomp_target *> (copy);
1979 t = unshare_expr (gimple_omp_target_clauses (omp_target_stmt));
1980 gimple_omp_target_set_clauses (omp_target_copy, t);
1981 t = unshare_expr (gimple_omp_target_data_arg (omp_target_stmt));
1982 gimple_omp_target_set_data_arg (omp_target_copy, t);
1984 goto copy_omp_body;
1986 case GIMPLE_OMP_TEAMS:
1988 gomp_teams *omp_teams_copy = as_a <gomp_teams *> (copy);
1989 t = unshare_expr (gimple_omp_teams_clauses (stmt));
1990 gimple_omp_teams_set_clauses (omp_teams_copy, t);
1992 /* FALLTHRU */
1994 case GIMPLE_OMP_SECTION:
1995 case GIMPLE_OMP_MASTER:
1996 copy_omp_body:
1997 new_seq = gimple_seq_copy (gimple_omp_body (stmt));
1998 gimple_omp_set_body (copy, new_seq);
1999 break;
2001 case GIMPLE_TRANSACTION:
2002 new_seq = gimple_seq_copy (gimple_transaction_body (
2003 as_a <gtransaction *> (stmt)));
2004 gimple_transaction_set_body (as_a <gtransaction *> (copy),
2005 new_seq);
2006 break;
2008 case GIMPLE_WITH_CLEANUP_EXPR:
2009 new_seq = gimple_seq_copy (gimple_wce_cleanup (stmt));
2010 gimple_wce_set_cleanup (copy, new_seq);
2011 break;
2013 default:
2014 gcc_unreachable ();
2018 /* Make copy of operands. */
2019 for (i = 0; i < num_ops; i++)
2020 gimple_set_op (copy, i, unshare_expr (gimple_op (stmt, i)));
2022 if (gimple_has_mem_ops (stmt))
2024 gimple_set_vdef (copy, gimple_vdef (stmt));
2025 gimple_set_vuse (copy, gimple_vuse (stmt));
2028 /* Clear out SSA operand vectors on COPY. */
2029 if (gimple_has_ops (stmt))
2031 gimple_set_use_ops (copy, NULL);
2033 /* SSA operands need to be updated. */
2034 gimple_set_modified (copy, true);
2037 if (gimple_debug_nonbind_marker_p (stmt))
2038 cfun->debug_marker_count++;
2040 return copy;
2043 /* Move OLD_STMT's vuse and vdef operands to NEW_STMT, on the assumption
2044 that OLD_STMT is about to be removed. */
2046 void
2047 gimple_move_vops (gimple *new_stmt, gimple *old_stmt)
2049 tree vdef = gimple_vdef (old_stmt);
2050 gimple_set_vuse (new_stmt, gimple_vuse (old_stmt));
2051 gimple_set_vdef (new_stmt, vdef);
2052 if (vdef && TREE_CODE (vdef) == SSA_NAME)
2053 SSA_NAME_DEF_STMT (vdef) = new_stmt;
2056 /* Return true if statement S has side-effects. We consider a
2057 statement to have side effects if:
2059 - It is a GIMPLE_CALL not marked with ECF_PURE or ECF_CONST.
2060 - Any of its operands are marked TREE_THIS_VOLATILE or TREE_SIDE_EFFECTS. */
2062 bool
2063 gimple_has_side_effects (const gimple *s)
2065 if (is_gimple_debug (s))
2066 return false;
2068 /* We don't have to scan the arguments to check for
2069 volatile arguments, though, at present, we still
2070 do a scan to check for TREE_SIDE_EFFECTS. */
2071 if (gimple_has_volatile_ops (s))
2072 return true;
2074 if (gimple_code (s) == GIMPLE_ASM
2075 && gimple_asm_volatile_p (as_a <const gasm *> (s)))
2076 return true;
2078 if (is_gimple_call (s))
2080 int flags = gimple_call_flags (s);
2082 /* An infinite loop is considered a side effect. */
2083 if (!(flags & (ECF_CONST | ECF_PURE))
2084 || (flags & ECF_LOOPING_CONST_OR_PURE))
2085 return true;
2087 return false;
2090 return false;
2093 /* Helper for gimple_could_trap_p and gimple_assign_rhs_could_trap_p.
2094 Return true if S can trap. When INCLUDE_MEM is true, check whether
2095 the memory operations could trap. When INCLUDE_STORES is true and
2096 S is a GIMPLE_ASSIGN, the LHS of the assignment is also checked. */
2098 bool
2099 gimple_could_trap_p_1 (gimple *s, bool include_mem, bool include_stores)
2101 tree t, div = NULL_TREE;
2102 enum tree_code op;
2104 if (include_mem)
2106 unsigned i, start = (is_gimple_assign (s) && !include_stores) ? 1 : 0;
2108 for (i = start; i < gimple_num_ops (s); i++)
2109 if (tree_could_trap_p (gimple_op (s, i)))
2110 return true;
2113 switch (gimple_code (s))
2115 case GIMPLE_ASM:
2116 return gimple_asm_volatile_p (as_a <gasm *> (s));
2118 case GIMPLE_CALL:
2119 t = gimple_call_fndecl (s);
2120 /* Assume that calls to weak functions may trap. */
2121 if (!t || !DECL_P (t) || DECL_WEAK (t))
2122 return true;
2123 return false;
2125 case GIMPLE_ASSIGN:
2126 op = gimple_assign_rhs_code (s);
2128 /* For COND_EXPR and VEC_COND_EXPR only the condition may trap. */
2129 if (op == COND_EXPR || op == VEC_COND_EXPR)
2130 return tree_could_trap_p (gimple_assign_rhs1 (s));
2132 /* For comparisons we need to check rhs operand types instead of rhs type
2133 (which is BOOLEAN_TYPE). */
2134 if (TREE_CODE_CLASS (op) == tcc_comparison)
2135 t = TREE_TYPE (gimple_assign_rhs1 (s));
2136 else
2137 t = gimple_expr_type (s);
2139 if (get_gimple_rhs_class (op) == GIMPLE_BINARY_RHS)
2140 div = gimple_assign_rhs2 (s);
2142 return (operation_could_trap_p (op, FLOAT_TYPE_P (t),
2143 (INTEGRAL_TYPE_P (t)
2144 && TYPE_OVERFLOW_TRAPS (t)),
2145 div));
2147 case GIMPLE_COND:
2148 t = TREE_TYPE (gimple_cond_lhs (s));
2149 return operation_could_trap_p (gimple_cond_code (s),
2150 FLOAT_TYPE_P (t), false, NULL_TREE);
2152 default:
2153 break;
2156 return false;
2159 /* Return true if statement S can trap. */
2161 bool
2162 gimple_could_trap_p (gimple *s)
2164 return gimple_could_trap_p_1 (s, true, true);
2167 /* Return true if RHS of a GIMPLE_ASSIGN S can trap. */
2169 bool
2170 gimple_assign_rhs_could_trap_p (gimple *s)
2172 gcc_assert (is_gimple_assign (s));
2173 return gimple_could_trap_p_1 (s, true, false);
2177 /* Print debugging information for gimple stmts generated. */
2179 void
2180 dump_gimple_statistics (void)
2182 int i;
2183 uint64_t total_tuples = 0, total_bytes = 0;
2185 if (! GATHER_STATISTICS)
2187 fprintf (stderr, "No GIMPLE statistics\n");
2188 return;
2191 fprintf (stderr, "\nGIMPLE statements\n");
2192 fprintf (stderr, "Kind Stmts Bytes\n");
2193 fprintf (stderr, "---------------------------------------\n");
2194 for (i = 0; i < (int) gimple_alloc_kind_all; ++i)
2196 fprintf (stderr, "%-20s %7" PRIu64 "%c %10" PRIu64 "%c\n",
2197 gimple_alloc_kind_names[i],
2198 SIZE_AMOUNT (gimple_alloc_counts[i]),
2199 SIZE_AMOUNT (gimple_alloc_sizes[i]));
2200 total_tuples += gimple_alloc_counts[i];
2201 total_bytes += gimple_alloc_sizes[i];
2203 fprintf (stderr, "---------------------------------------\n");
2204 fprintf (stderr, "%-20s %7" PRIu64 "%c %10" PRIu64 "%c\n", "Total",
2205 SIZE_AMOUNT (total_tuples), SIZE_AMOUNT (total_bytes));
2206 fprintf (stderr, "---------------------------------------\n");
2210 /* Return the number of operands needed on the RHS of a GIMPLE
2211 assignment for an expression with tree code CODE. */
2213 unsigned
2214 get_gimple_rhs_num_ops (enum tree_code code)
2216 switch (get_gimple_rhs_class (code))
2218 case GIMPLE_UNARY_RHS:
2219 case GIMPLE_SINGLE_RHS:
2220 return 1;
2221 case GIMPLE_BINARY_RHS:
2222 return 2;
2223 case GIMPLE_TERNARY_RHS:
2224 return 3;
2225 default:
2226 gcc_unreachable ();
2230 #define DEFTREECODE(SYM, STRING, TYPE, NARGS) \
2231 (unsigned char) \
2232 ((TYPE) == tcc_unary ? GIMPLE_UNARY_RHS \
2233 : ((TYPE) == tcc_binary \
2234 || (TYPE) == tcc_comparison) ? GIMPLE_BINARY_RHS \
2235 : ((TYPE) == tcc_constant \
2236 || (TYPE) == tcc_declaration \
2237 || (TYPE) == tcc_reference) ? GIMPLE_SINGLE_RHS \
2238 : ((SYM) == TRUTH_AND_EXPR \
2239 || (SYM) == TRUTH_OR_EXPR \
2240 || (SYM) == TRUTH_XOR_EXPR) ? GIMPLE_BINARY_RHS \
2241 : (SYM) == TRUTH_NOT_EXPR ? GIMPLE_UNARY_RHS \
2242 : ((SYM) == COND_EXPR \
2243 || (SYM) == WIDEN_MULT_PLUS_EXPR \
2244 || (SYM) == WIDEN_MULT_MINUS_EXPR \
2245 || (SYM) == DOT_PROD_EXPR \
2246 || (SYM) == SAD_EXPR \
2247 || (SYM) == REALIGN_LOAD_EXPR \
2248 || (SYM) == VEC_COND_EXPR \
2249 || (SYM) == VEC_PERM_EXPR \
2250 || (SYM) == BIT_INSERT_EXPR) ? GIMPLE_TERNARY_RHS \
2251 : ((SYM) == CONSTRUCTOR \
2252 || (SYM) == OBJ_TYPE_REF \
2253 || (SYM) == ASSERT_EXPR \
2254 || (SYM) == ADDR_EXPR \
2255 || (SYM) == WITH_SIZE_EXPR \
2256 || (SYM) == SSA_NAME) ? GIMPLE_SINGLE_RHS \
2257 : GIMPLE_INVALID_RHS),
2258 #define END_OF_BASE_TREE_CODES (unsigned char) GIMPLE_INVALID_RHS,
2260 const unsigned char gimple_rhs_class_table[] = {
2261 #include "all-tree.def"
2264 #undef DEFTREECODE
2265 #undef END_OF_BASE_TREE_CODES
2267 /* Canonicalize a tree T for use in a COND_EXPR as conditional. Returns
2268 a canonicalized tree that is valid for a COND_EXPR or NULL_TREE, if
2269 we failed to create one. */
2271 tree
2272 canonicalize_cond_expr_cond (tree t)
2274 /* Strip conversions around boolean operations. */
2275 if (CONVERT_EXPR_P (t)
2276 && (truth_value_p (TREE_CODE (TREE_OPERAND (t, 0)))
2277 || TREE_CODE (TREE_TYPE (TREE_OPERAND (t, 0)))
2278 == BOOLEAN_TYPE))
2279 t = TREE_OPERAND (t, 0);
2281 /* For !x use x == 0. */
2282 if (TREE_CODE (t) == TRUTH_NOT_EXPR)
2284 tree top0 = TREE_OPERAND (t, 0);
2285 t = build2 (EQ_EXPR, TREE_TYPE (t),
2286 top0, build_int_cst (TREE_TYPE (top0), 0));
2288 /* For cmp ? 1 : 0 use cmp. */
2289 else if (TREE_CODE (t) == COND_EXPR
2290 && COMPARISON_CLASS_P (TREE_OPERAND (t, 0))
2291 && integer_onep (TREE_OPERAND (t, 1))
2292 && integer_zerop (TREE_OPERAND (t, 2)))
2294 tree top0 = TREE_OPERAND (t, 0);
2295 t = build2 (TREE_CODE (top0), TREE_TYPE (t),
2296 TREE_OPERAND (top0, 0), TREE_OPERAND (top0, 1));
2298 /* For x ^ y use x != y. */
2299 else if (TREE_CODE (t) == BIT_XOR_EXPR)
2300 t = build2 (NE_EXPR, TREE_TYPE (t),
2301 TREE_OPERAND (t, 0), TREE_OPERAND (t, 1));
2303 if (is_gimple_condexpr (t))
2304 return t;
2306 return NULL_TREE;
2309 /* Build a GIMPLE_CALL identical to STMT but skipping the arguments in
2310 the positions marked by the set ARGS_TO_SKIP. */
2312 gcall *
2313 gimple_call_copy_skip_args (gcall *stmt, bitmap args_to_skip)
2315 int i;
2316 int nargs = gimple_call_num_args (stmt);
2317 auto_vec<tree> vargs (nargs);
2318 gcall *new_stmt;
2320 for (i = 0; i < nargs; i++)
2321 if (!bitmap_bit_p (args_to_skip, i))
2322 vargs.quick_push (gimple_call_arg (stmt, i));
2324 if (gimple_call_internal_p (stmt))
2325 new_stmt = gimple_build_call_internal_vec (gimple_call_internal_fn (stmt),
2326 vargs);
2327 else
2328 new_stmt = gimple_build_call_vec (gimple_call_fn (stmt), vargs);
2330 if (gimple_call_lhs (stmt))
2331 gimple_call_set_lhs (new_stmt, gimple_call_lhs (stmt));
2333 gimple_set_vuse (new_stmt, gimple_vuse (stmt));
2334 gimple_set_vdef (new_stmt, gimple_vdef (stmt));
2336 if (gimple_has_location (stmt))
2337 gimple_set_location (new_stmt, gimple_location (stmt));
2338 gimple_call_copy_flags (new_stmt, stmt);
2339 gimple_call_set_chain (new_stmt, gimple_call_chain (stmt));
2341 gimple_set_modified (new_stmt, true);
2343 return new_stmt;
2348 /* Return true if the field decls F1 and F2 are at the same offset.
2350 This is intended to be used on GIMPLE types only. */
2352 bool
2353 gimple_compare_field_offset (tree f1, tree f2)
2355 if (DECL_OFFSET_ALIGN (f1) == DECL_OFFSET_ALIGN (f2))
2357 tree offset1 = DECL_FIELD_OFFSET (f1);
2358 tree offset2 = DECL_FIELD_OFFSET (f2);
2359 return ((offset1 == offset2
2360 /* Once gimplification is done, self-referential offsets are
2361 instantiated as operand #2 of the COMPONENT_REF built for
2362 each access and reset. Therefore, they are not relevant
2363 anymore and fields are interchangeable provided that they
2364 represent the same access. */
2365 || (TREE_CODE (offset1) == PLACEHOLDER_EXPR
2366 && TREE_CODE (offset2) == PLACEHOLDER_EXPR
2367 && (DECL_SIZE (f1) == DECL_SIZE (f2)
2368 || (TREE_CODE (DECL_SIZE (f1)) == PLACEHOLDER_EXPR
2369 && TREE_CODE (DECL_SIZE (f2)) == PLACEHOLDER_EXPR)
2370 || operand_equal_p (DECL_SIZE (f1), DECL_SIZE (f2), 0))
2371 && DECL_ALIGN (f1) == DECL_ALIGN (f2))
2372 || operand_equal_p (offset1, offset2, 0))
2373 && tree_int_cst_equal (DECL_FIELD_BIT_OFFSET (f1),
2374 DECL_FIELD_BIT_OFFSET (f2)));
2377 /* Fortran and C do not always agree on what DECL_OFFSET_ALIGN
2378 should be, so handle differing ones specially by decomposing
2379 the offset into a byte and bit offset manually. */
2380 if (tree_fits_shwi_p (DECL_FIELD_OFFSET (f1))
2381 && tree_fits_shwi_p (DECL_FIELD_OFFSET (f2)))
2383 unsigned HOST_WIDE_INT byte_offset1, byte_offset2;
2384 unsigned HOST_WIDE_INT bit_offset1, bit_offset2;
2385 bit_offset1 = TREE_INT_CST_LOW (DECL_FIELD_BIT_OFFSET (f1));
2386 byte_offset1 = (TREE_INT_CST_LOW (DECL_FIELD_OFFSET (f1))
2387 + bit_offset1 / BITS_PER_UNIT);
2388 bit_offset2 = TREE_INT_CST_LOW (DECL_FIELD_BIT_OFFSET (f2));
2389 byte_offset2 = (TREE_INT_CST_LOW (DECL_FIELD_OFFSET (f2))
2390 + bit_offset2 / BITS_PER_UNIT);
2391 if (byte_offset1 != byte_offset2)
2392 return false;
2393 return bit_offset1 % BITS_PER_UNIT == bit_offset2 % BITS_PER_UNIT;
2396 return false;
2400 /* Return a type the same as TYPE except unsigned or
2401 signed according to UNSIGNEDP. */
2403 static tree
2404 gimple_signed_or_unsigned_type (bool unsignedp, tree type)
2406 tree type1;
2407 int i;
2409 type1 = TYPE_MAIN_VARIANT (type);
2410 if (type1 == signed_char_type_node
2411 || type1 == char_type_node
2412 || type1 == unsigned_char_type_node)
2413 return unsignedp ? unsigned_char_type_node : signed_char_type_node;
2414 if (type1 == integer_type_node || type1 == unsigned_type_node)
2415 return unsignedp ? unsigned_type_node : integer_type_node;
2416 if (type1 == short_integer_type_node || type1 == short_unsigned_type_node)
2417 return unsignedp ? short_unsigned_type_node : short_integer_type_node;
2418 if (type1 == long_integer_type_node || type1 == long_unsigned_type_node)
2419 return unsignedp ? long_unsigned_type_node : long_integer_type_node;
2420 if (type1 == long_long_integer_type_node
2421 || type1 == long_long_unsigned_type_node)
2422 return unsignedp
2423 ? long_long_unsigned_type_node
2424 : long_long_integer_type_node;
2426 for (i = 0; i < NUM_INT_N_ENTS; i ++)
2427 if (int_n_enabled_p[i]
2428 && (type1 == int_n_trees[i].unsigned_type
2429 || type1 == int_n_trees[i].signed_type))
2430 return unsignedp
2431 ? int_n_trees[i].unsigned_type
2432 : int_n_trees[i].signed_type;
2434 #if HOST_BITS_PER_WIDE_INT >= 64
2435 if (type1 == intTI_type_node || type1 == unsigned_intTI_type_node)
2436 return unsignedp ? unsigned_intTI_type_node : intTI_type_node;
2437 #endif
2438 if (type1 == intDI_type_node || type1 == unsigned_intDI_type_node)
2439 return unsignedp ? unsigned_intDI_type_node : intDI_type_node;
2440 if (type1 == intSI_type_node || type1 == unsigned_intSI_type_node)
2441 return unsignedp ? unsigned_intSI_type_node : intSI_type_node;
2442 if (type1 == intHI_type_node || type1 == unsigned_intHI_type_node)
2443 return unsignedp ? unsigned_intHI_type_node : intHI_type_node;
2444 if (type1 == intQI_type_node || type1 == unsigned_intQI_type_node)
2445 return unsignedp ? unsigned_intQI_type_node : intQI_type_node;
2447 #define GIMPLE_FIXED_TYPES(NAME) \
2448 if (type1 == short_ ## NAME ## _type_node \
2449 || type1 == unsigned_short_ ## NAME ## _type_node) \
2450 return unsignedp ? unsigned_short_ ## NAME ## _type_node \
2451 : short_ ## NAME ## _type_node; \
2452 if (type1 == NAME ## _type_node \
2453 || type1 == unsigned_ ## NAME ## _type_node) \
2454 return unsignedp ? unsigned_ ## NAME ## _type_node \
2455 : NAME ## _type_node; \
2456 if (type1 == long_ ## NAME ## _type_node \
2457 || type1 == unsigned_long_ ## NAME ## _type_node) \
2458 return unsignedp ? unsigned_long_ ## NAME ## _type_node \
2459 : long_ ## NAME ## _type_node; \
2460 if (type1 == long_long_ ## NAME ## _type_node \
2461 || type1 == unsigned_long_long_ ## NAME ## _type_node) \
2462 return unsignedp ? unsigned_long_long_ ## NAME ## _type_node \
2463 : long_long_ ## NAME ## _type_node;
2465 #define GIMPLE_FIXED_MODE_TYPES(NAME) \
2466 if (type1 == NAME ## _type_node \
2467 || type1 == u ## NAME ## _type_node) \
2468 return unsignedp ? u ## NAME ## _type_node \
2469 : NAME ## _type_node;
2471 #define GIMPLE_FIXED_TYPES_SAT(NAME) \
2472 if (type1 == sat_ ## short_ ## NAME ## _type_node \
2473 || type1 == sat_ ## unsigned_short_ ## NAME ## _type_node) \
2474 return unsignedp ? sat_ ## unsigned_short_ ## NAME ## _type_node \
2475 : sat_ ## short_ ## NAME ## _type_node; \
2476 if (type1 == sat_ ## NAME ## _type_node \
2477 || type1 == sat_ ## unsigned_ ## NAME ## _type_node) \
2478 return unsignedp ? sat_ ## unsigned_ ## NAME ## _type_node \
2479 : sat_ ## NAME ## _type_node; \
2480 if (type1 == sat_ ## long_ ## NAME ## _type_node \
2481 || type1 == sat_ ## unsigned_long_ ## NAME ## _type_node) \
2482 return unsignedp ? sat_ ## unsigned_long_ ## NAME ## _type_node \
2483 : sat_ ## long_ ## NAME ## _type_node; \
2484 if (type1 == sat_ ## long_long_ ## NAME ## _type_node \
2485 || type1 == sat_ ## unsigned_long_long_ ## NAME ## _type_node) \
2486 return unsignedp ? sat_ ## unsigned_long_long_ ## NAME ## _type_node \
2487 : sat_ ## long_long_ ## NAME ## _type_node;
2489 #define GIMPLE_FIXED_MODE_TYPES_SAT(NAME) \
2490 if (type1 == sat_ ## NAME ## _type_node \
2491 || type1 == sat_ ## u ## NAME ## _type_node) \
2492 return unsignedp ? sat_ ## u ## NAME ## _type_node \
2493 : sat_ ## NAME ## _type_node;
2495 GIMPLE_FIXED_TYPES (fract);
2496 GIMPLE_FIXED_TYPES_SAT (fract);
2497 GIMPLE_FIXED_TYPES (accum);
2498 GIMPLE_FIXED_TYPES_SAT (accum);
2500 GIMPLE_FIXED_MODE_TYPES (qq);
2501 GIMPLE_FIXED_MODE_TYPES (hq);
2502 GIMPLE_FIXED_MODE_TYPES (sq);
2503 GIMPLE_FIXED_MODE_TYPES (dq);
2504 GIMPLE_FIXED_MODE_TYPES (tq);
2505 GIMPLE_FIXED_MODE_TYPES_SAT (qq);
2506 GIMPLE_FIXED_MODE_TYPES_SAT (hq);
2507 GIMPLE_FIXED_MODE_TYPES_SAT (sq);
2508 GIMPLE_FIXED_MODE_TYPES_SAT (dq);
2509 GIMPLE_FIXED_MODE_TYPES_SAT (tq);
2510 GIMPLE_FIXED_MODE_TYPES (ha);
2511 GIMPLE_FIXED_MODE_TYPES (sa);
2512 GIMPLE_FIXED_MODE_TYPES (da);
2513 GIMPLE_FIXED_MODE_TYPES (ta);
2514 GIMPLE_FIXED_MODE_TYPES_SAT (ha);
2515 GIMPLE_FIXED_MODE_TYPES_SAT (sa);
2516 GIMPLE_FIXED_MODE_TYPES_SAT (da);
2517 GIMPLE_FIXED_MODE_TYPES_SAT (ta);
2519 /* For ENUMERAL_TYPEs in C++, must check the mode of the types, not
2520 the precision; they have precision set to match their range, but
2521 may use a wider mode to match an ABI. If we change modes, we may
2522 wind up with bad conversions. For INTEGER_TYPEs in C, must check
2523 the precision as well, so as to yield correct results for
2524 bit-field types. C++ does not have these separate bit-field
2525 types, and producing a signed or unsigned variant of an
2526 ENUMERAL_TYPE may cause other problems as well. */
2527 if (!INTEGRAL_TYPE_P (type)
2528 || TYPE_UNSIGNED (type) == unsignedp)
2529 return type;
2531 #define TYPE_OK(node) \
2532 (TYPE_MODE (type) == TYPE_MODE (node) \
2533 && TYPE_PRECISION (type) == TYPE_PRECISION (node))
2534 if (TYPE_OK (signed_char_type_node))
2535 return unsignedp ? unsigned_char_type_node : signed_char_type_node;
2536 if (TYPE_OK (integer_type_node))
2537 return unsignedp ? unsigned_type_node : integer_type_node;
2538 if (TYPE_OK (short_integer_type_node))
2539 return unsignedp ? short_unsigned_type_node : short_integer_type_node;
2540 if (TYPE_OK (long_integer_type_node))
2541 return unsignedp ? long_unsigned_type_node : long_integer_type_node;
2542 if (TYPE_OK (long_long_integer_type_node))
2543 return (unsignedp
2544 ? long_long_unsigned_type_node
2545 : long_long_integer_type_node);
2547 for (i = 0; i < NUM_INT_N_ENTS; i ++)
2548 if (int_n_enabled_p[i]
2549 && TYPE_MODE (type) == int_n_data[i].m
2550 && TYPE_PRECISION (type) == int_n_data[i].bitsize)
2551 return unsignedp
2552 ? int_n_trees[i].unsigned_type
2553 : int_n_trees[i].signed_type;
2555 #if HOST_BITS_PER_WIDE_INT >= 64
2556 if (TYPE_OK (intTI_type_node))
2557 return unsignedp ? unsigned_intTI_type_node : intTI_type_node;
2558 #endif
2559 if (TYPE_OK (intDI_type_node))
2560 return unsignedp ? unsigned_intDI_type_node : intDI_type_node;
2561 if (TYPE_OK (intSI_type_node))
2562 return unsignedp ? unsigned_intSI_type_node : intSI_type_node;
2563 if (TYPE_OK (intHI_type_node))
2564 return unsignedp ? unsigned_intHI_type_node : intHI_type_node;
2565 if (TYPE_OK (intQI_type_node))
2566 return unsignedp ? unsigned_intQI_type_node : intQI_type_node;
2568 #undef GIMPLE_FIXED_TYPES
2569 #undef GIMPLE_FIXED_MODE_TYPES
2570 #undef GIMPLE_FIXED_TYPES_SAT
2571 #undef GIMPLE_FIXED_MODE_TYPES_SAT
2572 #undef TYPE_OK
2574 return build_nonstandard_integer_type (TYPE_PRECISION (type), unsignedp);
2578 /* Return an unsigned type the same as TYPE in other respects. */
2580 tree
2581 gimple_unsigned_type (tree type)
2583 return gimple_signed_or_unsigned_type (true, type);
2587 /* Return a signed type the same as TYPE in other respects. */
2589 tree
2590 gimple_signed_type (tree type)
2592 return gimple_signed_or_unsigned_type (false, type);
2596 /* Return the typed-based alias set for T, which may be an expression
2597 or a type. Return -1 if we don't do anything special. */
2599 alias_set_type
2600 gimple_get_alias_set (tree t)
2602 /* That's all the expressions we handle specially. */
2603 if (!TYPE_P (t))
2604 return -1;
2606 /* For convenience, follow the C standard when dealing with
2607 character types. Any object may be accessed via an lvalue that
2608 has character type. */
2609 if (t == char_type_node
2610 || t == signed_char_type_node
2611 || t == unsigned_char_type_node)
2612 return 0;
2614 /* Allow aliasing between signed and unsigned variants of the same
2615 type. We treat the signed variant as canonical. */
2616 if (TREE_CODE (t) == INTEGER_TYPE && TYPE_UNSIGNED (t))
2618 tree t1 = gimple_signed_type (t);
2620 /* t1 == t can happen for boolean nodes which are always unsigned. */
2621 if (t1 != t)
2622 return get_alias_set (t1);
2625 /* Allow aliasing between enumeral types and the underlying
2626 integer type. This is required for C since those are
2627 compatible types. */
2628 else if (TREE_CODE (t) == ENUMERAL_TYPE)
2630 tree t1 = lang_hooks.types.type_for_size (tree_to_uhwi (TYPE_SIZE (t)),
2631 false /* short-cut above */);
2632 return get_alias_set (t1);
2635 return -1;
2639 /* Helper for gimple_ior_addresses_taken_1. */
2641 static bool
2642 gimple_ior_addresses_taken_1 (gimple *, tree addr, tree, void *data)
2644 bitmap addresses_taken = (bitmap)data;
2645 addr = get_base_address (addr);
2646 if (addr
2647 && DECL_P (addr))
2649 bitmap_set_bit (addresses_taken, DECL_UID (addr));
2650 return true;
2652 return false;
2655 /* Set the bit for the uid of all decls that have their address taken
2656 in STMT in the ADDRESSES_TAKEN bitmap. Returns true if there
2657 were any in this stmt. */
2659 bool
2660 gimple_ior_addresses_taken (bitmap addresses_taken, gimple *stmt)
2662 return walk_stmt_load_store_addr_ops (stmt, addresses_taken, NULL, NULL,
2663 gimple_ior_addresses_taken_1);
2667 /* Return true when STMTs arguments and return value match those of FNDECL,
2668 a decl of a builtin function. */
2670 bool
2671 gimple_builtin_call_types_compatible_p (const gimple *stmt, tree fndecl)
2673 gcc_checking_assert (DECL_BUILT_IN_CLASS (fndecl) != NOT_BUILT_IN);
2675 tree ret = gimple_call_lhs (stmt);
2676 if (ret
2677 && !useless_type_conversion_p (TREE_TYPE (ret),
2678 TREE_TYPE (TREE_TYPE (fndecl))))
2679 return false;
2681 tree targs = TYPE_ARG_TYPES (TREE_TYPE (fndecl));
2682 unsigned nargs = gimple_call_num_args (stmt);
2683 for (unsigned i = 0; i < nargs; ++i)
2685 /* Variadic args follow. */
2686 if (!targs)
2687 return true;
2688 tree arg = gimple_call_arg (stmt, i);
2689 tree type = TREE_VALUE (targs);
2690 if (!useless_type_conversion_p (type, TREE_TYPE (arg))
2691 /* char/short integral arguments are promoted to int
2692 by several frontends if targetm.calls.promote_prototypes
2693 is true. Allow such promotion too. */
2694 && !(INTEGRAL_TYPE_P (type)
2695 && TYPE_PRECISION (type) < TYPE_PRECISION (integer_type_node)
2696 && targetm.calls.promote_prototypes (TREE_TYPE (fndecl))
2697 && useless_type_conversion_p (integer_type_node,
2698 TREE_TYPE (arg))))
2699 return false;
2700 targs = TREE_CHAIN (targs);
2702 if (targs && !VOID_TYPE_P (TREE_VALUE (targs)))
2703 return false;
2704 return true;
2707 /* Return true when STMT is operator a replaceable delete call. */
2709 bool
2710 gimple_call_operator_delete_p (const gcall *stmt)
2712 tree fndecl;
2714 if ((fndecl = gimple_call_fndecl (stmt)) != NULL_TREE)
2715 return DECL_IS_OPERATOR_DELETE_P (fndecl);
2716 return false;
2719 /* Return true when STMT is builtins call. */
2721 bool
2722 gimple_call_builtin_p (const gimple *stmt)
2724 tree fndecl;
2725 if (is_gimple_call (stmt)
2726 && (fndecl = gimple_call_fndecl (stmt)) != NULL_TREE
2727 && DECL_BUILT_IN_CLASS (fndecl) != NOT_BUILT_IN)
2728 return gimple_builtin_call_types_compatible_p (stmt, fndecl);
2729 return false;
2732 /* Return true when STMT is builtins call to CLASS. */
2734 bool
2735 gimple_call_builtin_p (const gimple *stmt, enum built_in_class klass)
2737 tree fndecl;
2738 if (is_gimple_call (stmt)
2739 && (fndecl = gimple_call_fndecl (stmt)) != NULL_TREE
2740 && DECL_BUILT_IN_CLASS (fndecl) == klass)
2741 return gimple_builtin_call_types_compatible_p (stmt, fndecl);
2742 return false;
2745 /* Return true when STMT is builtins call to CODE of CLASS. */
2747 bool
2748 gimple_call_builtin_p (const gimple *stmt, enum built_in_function code)
2750 tree fndecl;
2751 if (is_gimple_call (stmt)
2752 && (fndecl = gimple_call_fndecl (stmt)) != NULL_TREE
2753 && fndecl_built_in_p (fndecl, code))
2754 return gimple_builtin_call_types_compatible_p (stmt, fndecl);
2755 return false;
2758 /* If CALL is a call to a combined_fn (i.e. an internal function or
2759 a normal built-in function), return its code, otherwise return
2760 CFN_LAST. */
2762 combined_fn
2763 gimple_call_combined_fn (const gimple *stmt)
2765 if (const gcall *call = dyn_cast <const gcall *> (stmt))
2767 if (gimple_call_internal_p (call))
2768 return as_combined_fn (gimple_call_internal_fn (call));
2770 tree fndecl = gimple_call_fndecl (stmt);
2771 if (fndecl
2772 && fndecl_built_in_p (fndecl, BUILT_IN_NORMAL)
2773 && gimple_builtin_call_types_compatible_p (stmt, fndecl))
2774 return as_combined_fn (DECL_FUNCTION_CODE (fndecl));
2776 return CFN_LAST;
2779 /* Return true if STMT clobbers memory. STMT is required to be a
2780 GIMPLE_ASM. */
2782 bool
2783 gimple_asm_clobbers_memory_p (const gasm *stmt)
2785 unsigned i;
2787 for (i = 0; i < gimple_asm_nclobbers (stmt); i++)
2789 tree op = gimple_asm_clobber_op (stmt, i);
2790 if (strcmp (TREE_STRING_POINTER (TREE_VALUE (op)), "memory") == 0)
2791 return true;
2794 /* Non-empty basic ASM implicitly clobbers memory. */
2795 if (gimple_asm_input_p (stmt) && strlen (gimple_asm_string (stmt)) != 0)
2796 return true;
2798 return false;
2801 /* Dump bitmap SET (assumed to contain VAR_DECLs) to FILE. */
2803 void
2804 dump_decl_set (FILE *file, bitmap set)
2806 if (set)
2808 bitmap_iterator bi;
2809 unsigned i;
2811 fprintf (file, "{ ");
2813 EXECUTE_IF_SET_IN_BITMAP (set, 0, i, bi)
2815 fprintf (file, "D.%u", i);
2816 fprintf (file, " ");
2819 fprintf (file, "}");
2821 else
2822 fprintf (file, "NIL");
2825 /* Return true when CALL is a call stmt that definitely doesn't
2826 free any memory or makes it unavailable otherwise. */
2827 bool
2828 nonfreeing_call_p (gimple *call)
2830 if (gimple_call_builtin_p (call, BUILT_IN_NORMAL)
2831 && gimple_call_flags (call) & ECF_LEAF)
2832 switch (DECL_FUNCTION_CODE (gimple_call_fndecl (call)))
2834 /* Just in case these become ECF_LEAF in the future. */
2835 case BUILT_IN_FREE:
2836 case BUILT_IN_TM_FREE:
2837 case BUILT_IN_REALLOC:
2838 case BUILT_IN_STACK_RESTORE:
2839 return false;
2840 default:
2841 return true;
2843 else if (gimple_call_internal_p (call))
2844 switch (gimple_call_internal_fn (call))
2846 case IFN_ABNORMAL_DISPATCHER:
2847 return true;
2848 case IFN_ASAN_MARK:
2849 return tree_to_uhwi (gimple_call_arg (call, 0)) == ASAN_MARK_UNPOISON;
2850 default:
2851 if (gimple_call_flags (call) & ECF_LEAF)
2852 return true;
2853 return false;
2856 tree fndecl = gimple_call_fndecl (call);
2857 if (!fndecl)
2858 return false;
2859 struct cgraph_node *n = cgraph_node::get (fndecl);
2860 if (!n)
2861 return false;
2862 enum availability availability;
2863 n = n->function_symbol (&availability);
2864 if (!n || availability <= AVAIL_INTERPOSABLE)
2865 return false;
2866 return n->nonfreeing_fn;
2869 /* Return true when CALL is a call stmt that definitely need not
2870 be considered to be a memory barrier. */
2871 bool
2872 nonbarrier_call_p (gimple *call)
2874 if (gimple_call_flags (call) & (ECF_PURE | ECF_CONST))
2875 return true;
2876 /* Should extend this to have a nonbarrier_fn flag, just as above in
2877 the nonfreeing case. */
2878 return false;
2881 /* Callback for walk_stmt_load_store_ops.
2883 Return TRUE if OP will dereference the tree stored in DATA, FALSE
2884 otherwise.
2886 This routine only makes a superficial check for a dereference. Thus
2887 it must only be used if it is safe to return a false negative. */
2888 static bool
2889 check_loadstore (gimple *, tree op, tree, void *data)
2891 if (TREE_CODE (op) == MEM_REF || TREE_CODE (op) == TARGET_MEM_REF)
2893 /* Some address spaces may legitimately dereference zero. */
2894 addr_space_t as = TYPE_ADDR_SPACE (TREE_TYPE (op));
2895 if (targetm.addr_space.zero_address_valid (as))
2896 return false;
2898 return operand_equal_p (TREE_OPERAND (op, 0), (tree)data, 0);
2900 return false;
2904 /* Return true if OP can be inferred to be non-NULL after STMT executes,
2905 either by using a pointer dereference or attributes. */
2906 bool
2907 infer_nonnull_range (gimple *stmt, tree op)
2909 return (infer_nonnull_range_by_dereference (stmt, op)
2910 || infer_nonnull_range_by_attribute (stmt, op));
2913 /* Return true if OP can be inferred to be non-NULL after STMT
2914 executes by using a pointer dereference. */
2915 bool
2916 infer_nonnull_range_by_dereference (gimple *stmt, tree op)
2918 /* We can only assume that a pointer dereference will yield
2919 non-NULL if -fdelete-null-pointer-checks is enabled. */
2920 if (!flag_delete_null_pointer_checks
2921 || !POINTER_TYPE_P (TREE_TYPE (op))
2922 || gimple_code (stmt) == GIMPLE_ASM
2923 || gimple_clobber_p (stmt))
2924 return false;
2926 if (walk_stmt_load_store_ops (stmt, (void *)op,
2927 check_loadstore, check_loadstore))
2928 return true;
2930 return false;
2933 /* Return true if OP can be inferred to be a non-NULL after STMT
2934 executes by using attributes. */
2935 bool
2936 infer_nonnull_range_by_attribute (gimple *stmt, tree op)
2938 /* We can only assume that a pointer dereference will yield
2939 non-NULL if -fdelete-null-pointer-checks is enabled. */
2940 if (!flag_delete_null_pointer_checks
2941 || !POINTER_TYPE_P (TREE_TYPE (op))
2942 || gimple_code (stmt) == GIMPLE_ASM)
2943 return false;
2945 if (is_gimple_call (stmt) && !gimple_call_internal_p (stmt))
2947 tree fntype = gimple_call_fntype (stmt);
2948 tree attrs = TYPE_ATTRIBUTES (fntype);
2949 for (; attrs; attrs = TREE_CHAIN (attrs))
2951 attrs = lookup_attribute ("nonnull", attrs);
2953 /* If "nonnull" wasn't specified, we know nothing about
2954 the argument. */
2955 if (attrs == NULL_TREE)
2956 return false;
2958 /* If "nonnull" applies to all the arguments, then ARG
2959 is non-null if it's in the argument list. */
2960 if (TREE_VALUE (attrs) == NULL_TREE)
2962 for (unsigned int i = 0; i < gimple_call_num_args (stmt); i++)
2964 if (POINTER_TYPE_P (TREE_TYPE (gimple_call_arg (stmt, i)))
2965 && operand_equal_p (op, gimple_call_arg (stmt, i), 0))
2966 return true;
2968 return false;
2971 /* Now see if op appears in the nonnull list. */
2972 for (tree t = TREE_VALUE (attrs); t; t = TREE_CHAIN (t))
2974 unsigned int idx = TREE_INT_CST_LOW (TREE_VALUE (t)) - 1;
2975 if (idx < gimple_call_num_args (stmt))
2977 tree arg = gimple_call_arg (stmt, idx);
2978 if (operand_equal_p (op, arg, 0))
2979 return true;
2985 /* If this function is marked as returning non-null, then we can
2986 infer OP is non-null if it is used in the return statement. */
2987 if (greturn *return_stmt = dyn_cast <greturn *> (stmt))
2988 if (gimple_return_retval (return_stmt)
2989 && operand_equal_p (gimple_return_retval (return_stmt), op, 0)
2990 && lookup_attribute ("returns_nonnull",
2991 TYPE_ATTRIBUTES (TREE_TYPE (current_function_decl))))
2992 return true;
2994 return false;
2997 /* Compare two case labels. Because the front end should already have
2998 made sure that case ranges do not overlap, it is enough to only compare
2999 the CASE_LOW values of each case label. */
3001 static int
3002 compare_case_labels (const void *p1, const void *p2)
3004 const_tree const case1 = *(const_tree const*)p1;
3005 const_tree const case2 = *(const_tree const*)p2;
3007 /* The 'default' case label always goes first. */
3008 if (!CASE_LOW (case1))
3009 return -1;
3010 else if (!CASE_LOW (case2))
3011 return 1;
3012 else
3013 return tree_int_cst_compare (CASE_LOW (case1), CASE_LOW (case2));
3016 /* Sort the case labels in LABEL_VEC in place in ascending order. */
3018 void
3019 sort_case_labels (vec<tree> label_vec)
3021 label_vec.qsort (compare_case_labels);
3024 /* Prepare a vector of case labels to be used in a GIMPLE_SWITCH statement.
3026 LABELS is a vector that contains all case labels to look at.
3028 INDEX_TYPE is the type of the switch index expression. Case labels
3029 in LABELS are discarded if their values are not in the value range
3030 covered by INDEX_TYPE. The remaining case label values are folded
3031 to INDEX_TYPE.
3033 If a default case exists in LABELS, it is removed from LABELS and
3034 returned in DEFAULT_CASEP. If no default case exists, but the
3035 case labels already cover the whole range of INDEX_TYPE, a default
3036 case is returned pointing to one of the existing case labels.
3037 Otherwise DEFAULT_CASEP is set to NULL_TREE.
3039 DEFAULT_CASEP may be NULL, in which case the above comment doesn't
3040 apply and no action is taken regardless of whether a default case is
3041 found or not. */
3043 void
3044 preprocess_case_label_vec_for_gimple (vec<tree> labels,
3045 tree index_type,
3046 tree *default_casep)
3048 tree min_value, max_value;
3049 tree default_case = NULL_TREE;
3050 size_t i, len;
3052 i = 0;
3053 min_value = TYPE_MIN_VALUE (index_type);
3054 max_value = TYPE_MAX_VALUE (index_type);
3055 while (i < labels.length ())
3057 tree elt = labels[i];
3058 tree low = CASE_LOW (elt);
3059 tree high = CASE_HIGH (elt);
3060 bool remove_element = FALSE;
3062 if (low)
3064 gcc_checking_assert (TREE_CODE (low) == INTEGER_CST);
3065 gcc_checking_assert (!high || TREE_CODE (high) == INTEGER_CST);
3067 /* This is a non-default case label, i.e. it has a value.
3069 See if the case label is reachable within the range of
3070 the index type. Remove out-of-range case values. Turn
3071 case ranges into a canonical form (high > low strictly)
3072 and convert the case label values to the index type.
3074 NB: The type of gimple_switch_index() may be the promoted
3075 type, but the case labels retain the original type. */
3077 if (high)
3079 /* This is a case range. Discard empty ranges.
3080 If the bounds or the range are equal, turn this
3081 into a simple (one-value) case. */
3082 int cmp = tree_int_cst_compare (high, low);
3083 if (cmp < 0)
3084 remove_element = TRUE;
3085 else if (cmp == 0)
3086 high = NULL_TREE;
3089 if (! high)
3091 /* If the simple case value is unreachable, ignore it. */
3092 if ((TREE_CODE (min_value) == INTEGER_CST
3093 && tree_int_cst_compare (low, min_value) < 0)
3094 || (TREE_CODE (max_value) == INTEGER_CST
3095 && tree_int_cst_compare (low, max_value) > 0))
3096 remove_element = TRUE;
3097 else
3098 low = fold_convert (index_type, low);
3100 else
3102 /* If the entire case range is unreachable, ignore it. */
3103 if ((TREE_CODE (min_value) == INTEGER_CST
3104 && tree_int_cst_compare (high, min_value) < 0)
3105 || (TREE_CODE (max_value) == INTEGER_CST
3106 && tree_int_cst_compare (low, max_value) > 0))
3107 remove_element = TRUE;
3108 else
3110 /* If the lower bound is less than the index type's
3111 minimum value, truncate the range bounds. */
3112 if (TREE_CODE (min_value) == INTEGER_CST
3113 && tree_int_cst_compare (low, min_value) < 0)
3114 low = min_value;
3115 low = fold_convert (index_type, low);
3117 /* If the upper bound is greater than the index type's
3118 maximum value, truncate the range bounds. */
3119 if (TREE_CODE (max_value) == INTEGER_CST
3120 && tree_int_cst_compare (high, max_value) > 0)
3121 high = max_value;
3122 high = fold_convert (index_type, high);
3124 /* We may have folded a case range to a one-value case. */
3125 if (tree_int_cst_equal (low, high))
3126 high = NULL_TREE;
3130 CASE_LOW (elt) = low;
3131 CASE_HIGH (elt) = high;
3133 else
3135 gcc_assert (!default_case);
3136 default_case = elt;
3137 /* The default case must be passed separately to the
3138 gimple_build_switch routine. But if DEFAULT_CASEP
3139 is NULL, we do not remove the default case (it would
3140 be completely lost). */
3141 if (default_casep)
3142 remove_element = TRUE;
3145 if (remove_element)
3146 labels.ordered_remove (i);
3147 else
3148 i++;
3150 len = i;
3152 if (!labels.is_empty ())
3153 sort_case_labels (labels);
3155 if (default_casep && !default_case)
3157 /* If the switch has no default label, add one, so that we jump
3158 around the switch body. If the labels already cover the whole
3159 range of the switch index_type, add the default label pointing
3160 to one of the existing labels. */
3161 if (len
3162 && TYPE_MIN_VALUE (index_type)
3163 && TYPE_MAX_VALUE (index_type)
3164 && tree_int_cst_equal (CASE_LOW (labels[0]),
3165 TYPE_MIN_VALUE (index_type)))
3167 tree low, high = CASE_HIGH (labels[len - 1]);
3168 if (!high)
3169 high = CASE_LOW (labels[len - 1]);
3170 if (tree_int_cst_equal (high, TYPE_MAX_VALUE (index_type)))
3172 tree widest_label = labels[0];
3173 for (i = 1; i < len; i++)
3175 high = CASE_LOW (labels[i]);
3176 low = CASE_HIGH (labels[i - 1]);
3177 if (!low)
3178 low = CASE_LOW (labels[i - 1]);
3180 if (CASE_HIGH (labels[i]) != NULL_TREE
3181 && (CASE_HIGH (widest_label) == NULL_TREE
3182 || (wi::gtu_p
3183 (wi::to_wide (CASE_HIGH (labels[i]))
3184 - wi::to_wide (CASE_LOW (labels[i])),
3185 wi::to_wide (CASE_HIGH (widest_label))
3186 - wi::to_wide (CASE_LOW (widest_label))))))
3187 widest_label = labels[i];
3189 if (wi::to_wide (low) + 1 != wi::to_wide (high))
3190 break;
3192 if (i == len)
3194 /* Designate the label with the widest range to be the
3195 default label. */
3196 tree label = CASE_LABEL (widest_label);
3197 default_case = build_case_label (NULL_TREE, NULL_TREE,
3198 label);
3204 if (default_casep)
3205 *default_casep = default_case;
3208 /* Set the location of all statements in SEQ to LOC. */
3210 void
3211 gimple_seq_set_location (gimple_seq seq, location_t loc)
3213 for (gimple_stmt_iterator i = gsi_start (seq); !gsi_end_p (i); gsi_next (&i))
3214 gimple_set_location (gsi_stmt (i), loc);
3217 /* Release SSA_NAMEs in SEQ as well as the GIMPLE statements. */
3219 void
3220 gimple_seq_discard (gimple_seq seq)
3222 gimple_stmt_iterator gsi;
3224 for (gsi = gsi_start (seq); !gsi_end_p (gsi); )
3226 gimple *stmt = gsi_stmt (gsi);
3227 gsi_remove (&gsi, true);
3228 release_defs (stmt);
3229 ggc_free (stmt);
3233 /* See if STMT now calls function that takes no parameters and if so, drop
3234 call arguments. This is used when devirtualization machinery redirects
3235 to __builtin_unreachable or __cxa_pure_virtual. */
3237 void
3238 maybe_remove_unused_call_args (struct function *fn, gimple *stmt)
3240 tree decl = gimple_call_fndecl (stmt);
3241 if (TYPE_ARG_TYPES (TREE_TYPE (decl))
3242 && TREE_VALUE (TYPE_ARG_TYPES (TREE_TYPE (decl))) == void_type_node
3243 && gimple_call_num_args (stmt))
3245 gimple_set_num_ops (stmt, 3);
3246 update_stmt_fn (fn, stmt);
3250 /* Return false if STMT will likely expand to real function call. */
3252 bool
3253 gimple_inexpensive_call_p (gcall *stmt)
3255 if (gimple_call_internal_p (stmt))
3256 return true;
3257 tree decl = gimple_call_fndecl (stmt);
3258 if (decl && is_inexpensive_builtin (decl))
3259 return true;
3260 return false;
3263 /* Return a non-artificial location for STMT. If STMT does not have
3264 location information, get the location from EXPR. */
3266 location_t
3267 gimple_or_expr_nonartificial_location (gimple *stmt, tree expr)
3269 location_t loc = gimple_nonartificial_location (stmt);
3270 if (loc == UNKNOWN_LOCATION && EXPR_HAS_LOCATION (expr))
3271 loc = tree_nonartificial_location (expr);
3272 return expansion_point_location_if_in_system_header (loc);
3276 #if CHECKING_P
3278 namespace selftest {
3280 /* Selftests for core gimple structures. */
3282 /* Verify that STMT is pretty-printed as EXPECTED.
3283 Helper function for selftests. */
3285 static void
3286 verify_gimple_pp (const char *expected, gimple *stmt)
3288 pretty_printer pp;
3289 pp_gimple_stmt_1 (&pp, stmt, 0 /* spc */, TDF_NONE /* flags */);
3290 ASSERT_STREQ (expected, pp_formatted_text (&pp));
3293 /* Build a GIMPLE_ASSIGN equivalent to
3294 tmp = 5;
3295 and verify various properties of it. */
3297 static void
3298 test_assign_single ()
3300 tree type = integer_type_node;
3301 tree lhs = build_decl (UNKNOWN_LOCATION, VAR_DECL,
3302 get_identifier ("tmp"),
3303 type);
3304 tree rhs = build_int_cst (type, 5);
3305 gassign *stmt = gimple_build_assign (lhs, rhs);
3306 verify_gimple_pp ("tmp = 5;", stmt);
3308 ASSERT_TRUE (is_gimple_assign (stmt));
3309 ASSERT_EQ (lhs, gimple_assign_lhs (stmt));
3310 ASSERT_EQ (lhs, gimple_get_lhs (stmt));
3311 ASSERT_EQ (rhs, gimple_assign_rhs1 (stmt));
3312 ASSERT_EQ (NULL, gimple_assign_rhs2 (stmt));
3313 ASSERT_EQ (NULL, gimple_assign_rhs3 (stmt));
3314 ASSERT_TRUE (gimple_assign_single_p (stmt));
3315 ASSERT_EQ (INTEGER_CST, gimple_assign_rhs_code (stmt));
3318 /* Build a GIMPLE_ASSIGN equivalent to
3319 tmp = a * b;
3320 and verify various properties of it. */
3322 static void
3323 test_assign_binop ()
3325 tree type = integer_type_node;
3326 tree lhs = build_decl (UNKNOWN_LOCATION, VAR_DECL,
3327 get_identifier ("tmp"),
3328 type);
3329 tree a = build_decl (UNKNOWN_LOCATION, VAR_DECL,
3330 get_identifier ("a"),
3331 type);
3332 tree b = build_decl (UNKNOWN_LOCATION, VAR_DECL,
3333 get_identifier ("b"),
3334 type);
3335 gassign *stmt = gimple_build_assign (lhs, MULT_EXPR, a, b);
3336 verify_gimple_pp ("tmp = a * b;", stmt);
3338 ASSERT_TRUE (is_gimple_assign (stmt));
3339 ASSERT_EQ (lhs, gimple_assign_lhs (stmt));
3340 ASSERT_EQ (lhs, gimple_get_lhs (stmt));
3341 ASSERT_EQ (a, gimple_assign_rhs1 (stmt));
3342 ASSERT_EQ (b, gimple_assign_rhs2 (stmt));
3343 ASSERT_EQ (NULL, gimple_assign_rhs3 (stmt));
3344 ASSERT_FALSE (gimple_assign_single_p (stmt));
3345 ASSERT_EQ (MULT_EXPR, gimple_assign_rhs_code (stmt));
3348 /* Build a GIMPLE_NOP and verify various properties of it. */
3350 static void
3351 test_nop_stmt ()
3353 gimple *stmt = gimple_build_nop ();
3354 verify_gimple_pp ("GIMPLE_NOP", stmt);
3355 ASSERT_EQ (GIMPLE_NOP, gimple_code (stmt));
3356 ASSERT_EQ (NULL, gimple_get_lhs (stmt));
3357 ASSERT_FALSE (gimple_assign_single_p (stmt));
3360 /* Build a GIMPLE_RETURN equivalent to
3361 return 7;
3362 and verify various properties of it. */
3364 static void
3365 test_return_stmt ()
3367 tree type = integer_type_node;
3368 tree val = build_int_cst (type, 7);
3369 greturn *stmt = gimple_build_return (val);
3370 verify_gimple_pp ("return 7;", stmt);
3372 ASSERT_EQ (GIMPLE_RETURN, gimple_code (stmt));
3373 ASSERT_EQ (NULL, gimple_get_lhs (stmt));
3374 ASSERT_EQ (val, gimple_return_retval (stmt));
3375 ASSERT_FALSE (gimple_assign_single_p (stmt));
3378 /* Build a GIMPLE_RETURN equivalent to
3379 return;
3380 and verify various properties of it. */
3382 static void
3383 test_return_without_value ()
3385 greturn *stmt = gimple_build_return (NULL);
3386 verify_gimple_pp ("return;", stmt);
3388 ASSERT_EQ (GIMPLE_RETURN, gimple_code (stmt));
3389 ASSERT_EQ (NULL, gimple_get_lhs (stmt));
3390 ASSERT_EQ (NULL, gimple_return_retval (stmt));
3391 ASSERT_FALSE (gimple_assign_single_p (stmt));
3394 /* Run all of the selftests within this file. */
3396 void
3397 gimple_c_tests ()
3399 test_assign_single ();
3400 test_assign_binop ();
3401 test_nop_stmt ();
3402 test_return_stmt ();
3403 test_return_without_value ();
3406 } // namespace selftest
3409 #endif /* CHECKING_P */