x86: Add a test for PR rtl-optimization/111673
[official-gcc.git] / gcc / gimple.cc
blob9a58a3a62d01c76bdba6229be7ac5eb616da3e9d
1 /* Gimple IR support functions.
3 Copyright (C) 2007-2025 Free Software Foundation, Inc.
4 Contributed by Aldy Hernandez <aldyh@redhat.com>
6 This file is part of GCC.
8 GCC is free software; you can redistribute it and/or modify it under
9 the terms of the GNU General Public License as published by the Free
10 Software Foundation; either version 3, or (at your option) any later
11 version.
13 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
14 WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16 for more details.
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING3. If not see
20 <http://www.gnu.org/licenses/>. */
22 #include "config.h"
23 #include "system.h"
24 #include "coretypes.h"
25 #include "backend.h"
26 #include "tree.h"
27 #include "gimple.h"
28 #include "ssa.h"
29 #include "cgraph.h"
30 #include "diagnostic.h"
31 #include "alias.h"
32 #include "fold-const.h"
33 #include "calls.h"
34 #include "stor-layout.h"
35 #include "internal-fn.h"
36 #include "tree-eh.h"
37 #include "gimple-iterator.h"
38 #include "gimple-walk.h"
39 #include "gimplify.h"
40 #include "target.h"
41 #include "builtins.h"
42 #include "selftest.h"
43 #include "gimple-pretty-print.h"
44 #include "stringpool.h"
45 #include "attribs.h"
46 #include "asan.h"
47 #include "ubsan.h"
48 #include "langhooks.h"
49 #include "attr-fnspec.h"
50 #include "ipa-modref-tree.h"
51 #include "ipa-modref.h"
52 #include "dbgcnt.h"
54 /* All the tuples have their operand vector (if present) at the very bottom of
55 the structure. Therefore, the offset required to find the operands vector is
56 the size of the structure minus the size of the 1-element tree array at the
57 end (see gimple_ops). An adjustment may be required if there is tail
58 padding, as may happen on a host (e.g. sparc) where a pointer has 4-byte
59 alignment while a uint64_t has 8-byte alignment.
61 Unfortunately, we can't use offsetof to do this computation 100%
62 straightforwardly, because these structs use inheritance and so are not
63 standard layout types. However, the fact that they are not standard layout
64 types also means that tail padding will be reused in inheritance, which makes
65 it possible to check for the problematic case with the following logic
66 instead. If tail padding is detected, the offset should be decreased
67 accordingly. */
69 template<typename G>
70 static constexpr size_t
71 get_tail_padding_adjustment ()
73 struct padding_check : G
75 tree t;
77 return sizeof (padding_check) == sizeof (G) ? sizeof (tree) : 0;
80 #define DEFGSSTRUCT(SYM, STRUCT, HAS_TREE_OP) \
81 (HAS_TREE_OP \
82 ? sizeof (STRUCT) - sizeof (tree) - get_tail_padding_adjustment<STRUCT> () \
83 : 0),
84 EXPORTED_CONST size_t gimple_ops_offset_[] = {
85 #include "gsstruct.def"
87 #undef DEFGSSTRUCT
89 #define DEFGSSTRUCT(SYM, STRUCT, HAS_TREE_OP) sizeof (struct STRUCT),
90 static const size_t gsstruct_code_size[] = {
91 #include "gsstruct.def"
93 #undef DEFGSSTRUCT
95 #define DEFGSCODE(SYM, NAME, GSSCODE) NAME,
96 const char *const gimple_code_name[] = {
97 #include "gimple.def"
99 #undef DEFGSCODE
101 #define DEFGSCODE(SYM, NAME, GSSCODE) GSSCODE,
102 EXPORTED_CONST enum gimple_statement_structure_enum gss_for_code_[] = {
103 #include "gimple.def"
105 #undef DEFGSCODE
107 /* Gimple stats. */
109 uint64_t gimple_alloc_counts[(int) gimple_alloc_kind_all];
110 uint64_t gimple_alloc_sizes[(int) gimple_alloc_kind_all];
112 /* Keep in sync with gimple.h:enum gimple_alloc_kind. */
113 static const char * const gimple_alloc_kind_names[] = {
114 "assignments",
115 "phi nodes",
116 "conditionals",
117 "everything else"
120 /* Static gimple tuple members. */
121 const enum gimple_code gassign::code_;
122 const enum gimple_code gcall::code_;
123 const enum gimple_code gcond::code_;
126 /* Gimple tuple constructors.
127 Note: Any constructor taking a ``gimple_seq'' as a parameter, can
128 be passed a NULL to start with an empty sequence. */
130 /* Set the code for statement G to CODE. */
132 static inline void
133 gimple_set_code (gimple *g, enum gimple_code code)
135 g->code = code;
138 /* Return the number of bytes needed to hold a GIMPLE statement with
139 code CODE. */
141 size_t
142 gimple_size (enum gimple_code code, unsigned num_ops)
144 size_t size = gsstruct_code_size[gss_for_code (code)];
145 if (num_ops > 0)
146 size += (sizeof (tree) * (num_ops - 1));
147 return size;
150 /* Initialize GIMPLE statement G with CODE and NUM_OPS. */
152 void
153 gimple_init (gimple *g, enum gimple_code code, unsigned num_ops)
155 gimple_set_code (g, code);
156 gimple_set_num_ops (g, num_ops);
158 /* Do not call gimple_set_modified here as it has other side
159 effects and this tuple is still not completely built. */
160 g->modified = 1;
161 gimple_init_singleton (g);
164 /* Allocate memory for a GIMPLE statement with code CODE and NUM_OPS
165 operands. */
167 gimple *
168 gimple_alloc (enum gimple_code code, unsigned num_ops MEM_STAT_DECL)
170 size_t size;
171 gimple *stmt;
173 size = gimple_size (code, num_ops);
174 if (GATHER_STATISTICS)
176 enum gimple_alloc_kind kind = gimple_alloc_kind (code);
177 gimple_alloc_counts[(int) kind]++;
178 gimple_alloc_sizes[(int) kind] += size;
181 stmt = ggc_alloc_cleared_gimple_statement_stat (size PASS_MEM_STAT);
182 gimple_init (stmt, code, num_ops);
183 return stmt;
186 /* Set SUBCODE to be the code of the expression computed by statement G. */
188 static inline void
189 gimple_set_subcode (gimple *g, unsigned subcode)
191 /* We only have 16 bits for the RHS code. Assert that we are not
192 overflowing it. */
193 gcc_assert (subcode < (1 << 16));
194 g->subcode = subcode;
199 /* Build a tuple with operands. CODE is the statement to build (which
200 must be one of the GIMPLE_WITH_OPS tuples). SUBCODE is the subcode
201 for the new tuple. NUM_OPS is the number of operands to allocate. */
203 #define gimple_build_with_ops(c, s, n) \
204 gimple_build_with_ops_stat (c, s, n MEM_STAT_INFO)
206 static gimple *
207 gimple_build_with_ops_stat (enum gimple_code code, unsigned subcode,
208 unsigned num_ops MEM_STAT_DECL)
210 gimple *s = gimple_alloc (code, num_ops PASS_MEM_STAT);
211 gimple_set_subcode (s, subcode);
213 return s;
217 /* Build a GIMPLE_RETURN statement returning RETVAL. */
219 greturn *
220 gimple_build_return (tree retval)
222 greturn *s
223 = as_a <greturn *> (gimple_build_with_ops (GIMPLE_RETURN, ERROR_MARK,
224 2));
225 if (retval)
226 gimple_return_set_retval (s, retval);
227 return s;
230 /* Reset alias information on call S. */
232 void
233 gimple_call_reset_alias_info (gcall *s)
235 if (gimple_call_flags (s) & ECF_CONST)
236 memset (gimple_call_use_set (s), 0, sizeof (struct pt_solution));
237 else
238 pt_solution_reset (gimple_call_use_set (s));
239 if (gimple_call_flags (s) & (ECF_CONST|ECF_PURE|ECF_NOVOPS))
240 memset (gimple_call_clobber_set (s), 0, sizeof (struct pt_solution));
241 else
242 pt_solution_reset (gimple_call_clobber_set (s));
245 /* Helper for gimple_build_call, gimple_build_call_valist,
246 gimple_build_call_vec and gimple_build_call_from_tree. Build the basic
247 components of a GIMPLE_CALL statement to function FN with NARGS
248 arguments. */
250 static inline gcall *
251 gimple_build_call_1 (tree fn, unsigned nargs)
253 gcall *s
254 = as_a <gcall *> (gimple_build_with_ops (GIMPLE_CALL, ERROR_MARK,
255 nargs + 3));
256 if (TREE_CODE (fn) == FUNCTION_DECL)
257 fn = build_fold_addr_expr (fn);
258 gimple_set_op (s, 1, fn);
259 gimple_call_set_fntype (s, TREE_TYPE (TREE_TYPE (fn)));
260 gimple_call_reset_alias_info (s);
261 return s;
265 /* Build a GIMPLE_CALL statement to function FN with the arguments
266 specified in vector ARGS. */
268 gcall *
269 gimple_build_call_vec (tree fn, const vec<tree> &args)
271 unsigned i;
272 unsigned nargs = args.length ();
273 gcall *call = gimple_build_call_1 (fn, nargs);
275 for (i = 0; i < nargs; i++)
276 gimple_call_set_arg (call, i, args[i]);
278 return call;
282 /* Build a GIMPLE_CALL statement to function FN. NARGS is the number of
283 arguments. The ... are the arguments. */
285 gcall *
286 gimple_build_call (tree fn, unsigned nargs, ...)
288 va_list ap;
289 gcall *call;
290 unsigned i;
292 gcc_assert (TREE_CODE (fn) == FUNCTION_DECL || is_gimple_call_addr (fn));
294 call = gimple_build_call_1 (fn, nargs);
296 va_start (ap, nargs);
297 for (i = 0; i < nargs; i++)
298 gimple_call_set_arg (call, i, va_arg (ap, tree));
299 va_end (ap);
301 return call;
305 /* Build a GIMPLE_CALL statement to function FN. NARGS is the number of
306 arguments. AP contains the arguments. */
308 gcall *
309 gimple_build_call_valist (tree fn, unsigned nargs, va_list ap)
311 gcall *call;
312 unsigned i;
314 gcc_assert (TREE_CODE (fn) == FUNCTION_DECL || is_gimple_call_addr (fn));
316 call = gimple_build_call_1 (fn, nargs);
318 for (i = 0; i < nargs; i++)
319 gimple_call_set_arg (call, i, va_arg (ap, tree));
321 return call;
325 /* Helper for gimple_build_call_internal and gimple_build_call_internal_vec.
326 Build the basic components of a GIMPLE_CALL statement to internal
327 function FN with NARGS arguments. */
329 static inline gcall *
330 gimple_build_call_internal_1 (enum internal_fn fn, unsigned nargs)
332 gcall *s
333 = as_a <gcall *> (gimple_build_with_ops (GIMPLE_CALL, ERROR_MARK,
334 nargs + 3));
335 s->subcode |= GF_CALL_INTERNAL;
336 gimple_call_set_internal_fn (s, fn);
337 gimple_call_reset_alias_info (s);
338 return s;
342 /* Build a GIMPLE_CALL statement to internal function FN. NARGS is
343 the number of arguments. The ... are the arguments. */
345 gcall *
346 gimple_build_call_internal (enum internal_fn fn, unsigned nargs, ...)
348 va_list ap;
349 gcall *call;
350 unsigned i;
352 call = gimple_build_call_internal_1 (fn, nargs);
353 va_start (ap, nargs);
354 for (i = 0; i < nargs; i++)
355 gimple_call_set_arg (call, i, va_arg (ap, tree));
356 va_end (ap);
358 return call;
362 /* Build a GIMPLE_CALL statement to internal function FN with the arguments
363 specified in vector ARGS. */
365 gcall *
366 gimple_build_call_internal_vec (enum internal_fn fn, const vec<tree> &args)
368 unsigned i, nargs;
369 gcall *call;
371 nargs = args.length ();
372 call = gimple_build_call_internal_1 (fn, nargs);
373 for (i = 0; i < nargs; i++)
374 gimple_call_set_arg (call, i, args[i]);
376 return call;
380 /* Build a GIMPLE_CALL statement from CALL_EXPR T. Note that T is
381 assumed to be in GIMPLE form already. Minimal checking is done of
382 this fact. */
384 gcall *
385 gimple_build_call_from_tree (tree t, tree fnptrtype)
387 unsigned i, nargs;
388 gcall *call;
390 gcc_assert (TREE_CODE (t) == CALL_EXPR);
392 nargs = call_expr_nargs (t);
394 tree fndecl = NULL_TREE;
395 if (CALL_EXPR_FN (t) == NULL_TREE)
396 call = gimple_build_call_internal_1 (CALL_EXPR_IFN (t), nargs);
397 else
399 fndecl = get_callee_fndecl (t);
400 call = gimple_build_call_1 (fndecl ? fndecl : CALL_EXPR_FN (t), nargs);
403 for (i = 0; i < nargs; i++)
404 gimple_call_set_arg (call, i, CALL_EXPR_ARG (t, i));
406 gimple_set_block (call, TREE_BLOCK (t));
407 gimple_set_location (call, EXPR_LOCATION (t));
409 /* Carry all the CALL_EXPR flags to the new GIMPLE_CALL. */
410 gimple_call_set_chain (call, CALL_EXPR_STATIC_CHAIN (t));
411 gimple_call_set_tail (call, CALL_EXPR_TAILCALL (t));
412 gimple_call_set_must_tail (call, CALL_EXPR_MUST_TAIL_CALL (t));
413 gimple_call_set_return_slot_opt (call, CALL_EXPR_RETURN_SLOT_OPT (t));
414 if (fndecl
415 && fndecl_built_in_p (fndecl, BUILT_IN_NORMAL)
416 && ALLOCA_FUNCTION_CODE_P (DECL_FUNCTION_CODE (fndecl)))
417 gimple_call_set_alloca_for_var (call, CALL_ALLOCA_FOR_VAR_P (t));
418 else if (fndecl
419 && (DECL_IS_OPERATOR_NEW_P (fndecl)
420 || DECL_IS_OPERATOR_DELETE_P (fndecl)))
421 gimple_call_set_from_new_or_delete (call, CALL_FROM_NEW_OR_DELETE_P (t));
422 else
423 gimple_call_set_from_thunk (call, CALL_FROM_THUNK_P (t));
424 gimple_call_set_va_arg_pack (call, CALL_EXPR_VA_ARG_PACK (t));
425 gimple_call_set_nothrow (call, TREE_NOTHROW (t));
426 if (fndecl)
427 gimple_call_set_expected_throw (call,
428 flags_from_decl_or_type (fndecl)
429 & ECF_XTHROW);
430 gimple_call_set_by_descriptor (call, CALL_EXPR_BY_DESCRIPTOR (t));
431 copy_warning (call, t);
433 if (fnptrtype)
435 gimple_call_set_fntype (call, TREE_TYPE (fnptrtype));
437 /* Check if it's an indirect CALL and the type has the
438 nocf_check attribute. In that case propagate the information
439 to the gimple CALL insn. */
440 if (!fndecl)
442 gcc_assert (POINTER_TYPE_P (fnptrtype));
443 tree fntype = TREE_TYPE (fnptrtype);
445 if (lookup_attribute ("nocf_check", TYPE_ATTRIBUTES (fntype)))
446 gimple_call_set_nocf_check (call, true);
450 return call;
453 /* Build a gcall to __builtin_unreachable as rewritten by
454 -fsanitize=unreachable. */
456 gcall *
457 gimple_build_builtin_unreachable (location_t loc)
459 tree data = NULL_TREE;
460 tree fn = sanitize_unreachable_fn (&data, loc);
461 gcall *g = gimple_build_call (fn, data != NULL_TREE, data);
462 gimple_call_set_ctrl_altering (g, true);
463 gimple_set_location (g, loc);
464 return g;
467 /* Build a GIMPLE_ASSIGN statement.
469 LHS of the assignment.
470 RHS of the assignment which can be unary or binary. */
472 gassign *
473 gimple_build_assign (tree lhs, tree rhs MEM_STAT_DECL)
475 enum tree_code subcode;
476 tree op1, op2, op3;
478 extract_ops_from_tree (rhs, &subcode, &op1, &op2, &op3);
479 return gimple_build_assign (lhs, subcode, op1, op2, op3 PASS_MEM_STAT);
483 /* Build a GIMPLE_ASSIGN statement with subcode SUBCODE and operands
484 OP1, OP2 and OP3. */
486 static inline gassign *
487 gimple_build_assign_1 (tree lhs, enum tree_code subcode, tree op1,
488 tree op2, tree op3 MEM_STAT_DECL)
490 unsigned num_ops;
491 gassign *p;
493 /* Need 1 operand for LHS and 1 or 2 for the RHS (depending on the
494 code). */
495 num_ops = get_gimple_rhs_num_ops (subcode) + 1;
497 p = as_a <gassign *> (
498 gimple_build_with_ops_stat (GIMPLE_ASSIGN, (unsigned)subcode, num_ops
499 PASS_MEM_STAT));
500 gimple_assign_set_lhs (p, lhs);
501 /* For COND_EXPR, op1 should not be a comparison. */
502 if (op1 && subcode == COND_EXPR)
503 gcc_assert (!COMPARISON_CLASS_P (op1));
504 gimple_assign_set_rhs1 (p, op1);
505 if (op2)
507 gcc_assert (num_ops > 2);
508 gimple_assign_set_rhs2 (p, op2);
511 if (op3)
513 gcc_assert (num_ops > 3);
514 gimple_assign_set_rhs3 (p, op3);
517 return p;
520 /* Build a GIMPLE_ASSIGN statement with subcode SUBCODE and operands
521 OP1, OP2 and OP3. */
523 gassign *
524 gimple_build_assign (tree lhs, enum tree_code subcode, tree op1,
525 tree op2, tree op3 MEM_STAT_DECL)
527 return gimple_build_assign_1 (lhs, subcode, op1, op2, op3 PASS_MEM_STAT);
530 /* Build a GIMPLE_ASSIGN statement with subcode SUBCODE and operands
531 OP1 and OP2. */
533 gassign *
534 gimple_build_assign (tree lhs, enum tree_code subcode, tree op1,
535 tree op2 MEM_STAT_DECL)
537 return gimple_build_assign_1 (lhs, subcode, op1, op2, NULL_TREE
538 PASS_MEM_STAT);
541 /* Build a GIMPLE_ASSIGN statement with subcode SUBCODE and operand OP1. */
543 gassign *
544 gimple_build_assign (tree lhs, enum tree_code subcode, tree op1 MEM_STAT_DECL)
546 return gimple_build_assign_1 (lhs, subcode, op1, NULL_TREE, NULL_TREE
547 PASS_MEM_STAT);
551 /* Build a GIMPLE_COND statement.
553 PRED is the condition used to compare LHS and the RHS.
554 T_LABEL is the label to jump to if the condition is true.
555 F_LABEL is the label to jump to otherwise. */
557 gcond *
558 gimple_build_cond (enum tree_code pred_code, tree lhs, tree rhs,
559 tree t_label, tree f_label)
561 gcond *p;
563 gcc_assert (TREE_CODE_CLASS (pred_code) == tcc_comparison);
564 p = as_a <gcond *> (gimple_build_with_ops (GIMPLE_COND, pred_code, 4));
565 gimple_cond_set_lhs (p, lhs);
566 gimple_cond_set_rhs (p, rhs);
567 gimple_cond_set_true_label (p, t_label);
568 gimple_cond_set_false_label (p, f_label);
569 return p;
572 /* Build a GIMPLE_COND statement from the conditional expression tree
573 COND. T_LABEL and F_LABEL are as in gimple_build_cond. */
575 gcond *
576 gimple_build_cond_from_tree (tree cond, tree t_label, tree f_label)
578 enum tree_code code;
579 tree lhs, rhs;
581 gimple_cond_get_ops_from_tree (cond, &code, &lhs, &rhs);
582 return gimple_build_cond (code, lhs, rhs, t_label, f_label);
585 /* Set code, lhs, and rhs of a GIMPLE_COND from a suitable
586 boolean expression tree COND. */
588 void
589 gimple_cond_set_condition_from_tree (gcond *stmt, tree cond)
591 enum tree_code code;
592 tree lhs, rhs;
594 gimple_cond_get_ops_from_tree (cond, &code, &lhs, &rhs);
595 gimple_cond_set_condition (stmt, code, lhs, rhs);
598 /* Build a GIMPLE_LABEL statement for LABEL. */
600 glabel *
601 gimple_build_label (tree label)
603 glabel *p
604 = as_a <glabel *> (gimple_build_with_ops (GIMPLE_LABEL, ERROR_MARK, 1));
605 gimple_label_set_label (p, label);
606 return p;
609 /* Build a GIMPLE_GOTO statement to label DEST. */
611 ggoto *
612 gimple_build_goto (tree dest)
614 ggoto *p
615 = as_a <ggoto *> (gimple_build_with_ops (GIMPLE_GOTO, ERROR_MARK, 1));
616 gimple_goto_set_dest (p, dest);
617 return p;
621 /* Build a GIMPLE_NOP statement. */
623 gimple *
624 gimple_build_nop (void)
626 return gimple_alloc (GIMPLE_NOP, 0);
630 /* Build a GIMPLE_BIND statement.
631 VARS are the variables in BODY.
632 BLOCK is the containing block. */
634 gbind *
635 gimple_build_bind (tree vars, gimple_seq body, tree block)
637 gbind *p = as_a <gbind *> (gimple_alloc (GIMPLE_BIND, 0));
638 gimple_bind_set_vars (p, vars);
639 if (body)
640 gimple_bind_set_body (p, body);
641 if (block)
642 gimple_bind_set_block (p, block);
643 return p;
646 /* Helper function to set the simple fields of a asm stmt.
648 STRING is a pointer to a string that is the asm blocks assembly code.
649 NINPUT is the number of register inputs.
650 NOUTPUT is the number of register outputs.
651 NCLOBBERS is the number of clobbered registers.
654 static inline gasm *
655 gimple_build_asm_1 (const char *string, unsigned ninputs, unsigned noutputs,
656 unsigned nclobbers, unsigned nlabels)
658 gasm *p;
659 int size = strlen (string);
661 p = as_a <gasm *> (
662 gimple_build_with_ops (GIMPLE_ASM, ERROR_MARK,
663 ninputs + noutputs + nclobbers + nlabels));
665 p->ni = ninputs;
666 p->no = noutputs;
667 p->nc = nclobbers;
668 p->nl = nlabels;
669 p->string = ggc_alloc_string (string, size);
671 if (GATHER_STATISTICS)
672 gimple_alloc_sizes[(int) gimple_alloc_kind (GIMPLE_ASM)] += size;
674 return p;
677 /* Build a GIMPLE_ASM statement.
679 STRING is the assembly code.
680 NINPUT is the number of register inputs.
681 NOUTPUT is the number of register outputs.
682 NCLOBBERS is the number of clobbered registers.
683 INPUTS is a vector of the input register parameters.
684 OUTPUTS is a vector of the output register parameters.
685 CLOBBERS is a vector of the clobbered register parameters.
686 LABELS is a vector of destination labels. */
688 gasm *
689 gimple_build_asm_vec (const char *string, vec<tree, va_gc> *inputs,
690 vec<tree, va_gc> *outputs, vec<tree, va_gc> *clobbers,
691 vec<tree, va_gc> *labels)
693 gasm *p;
694 unsigned i;
696 p = gimple_build_asm_1 (string,
697 vec_safe_length (inputs),
698 vec_safe_length (outputs),
699 vec_safe_length (clobbers),
700 vec_safe_length (labels));
702 for (i = 0; i < vec_safe_length (inputs); i++)
703 gimple_asm_set_input_op (p, i, (*inputs)[i]);
705 for (i = 0; i < vec_safe_length (outputs); i++)
706 gimple_asm_set_output_op (p, i, (*outputs)[i]);
708 for (i = 0; i < vec_safe_length (clobbers); i++)
709 gimple_asm_set_clobber_op (p, i, (*clobbers)[i]);
711 for (i = 0; i < vec_safe_length (labels); i++)
712 gimple_asm_set_label_op (p, i, (*labels)[i]);
714 return p;
717 /* Build a GIMPLE_CATCH statement.
719 TYPES are the catch types.
720 HANDLER is the exception handler. */
722 gcatch *
723 gimple_build_catch (tree types, gimple_seq handler)
725 gcatch *p = as_a <gcatch *> (gimple_alloc (GIMPLE_CATCH, 0));
726 gimple_catch_set_types (p, types);
727 if (handler)
728 gimple_catch_set_handler (p, handler);
730 return p;
733 /* Build a GIMPLE_EH_FILTER statement.
735 TYPES are the filter's types.
736 FAILURE is the filter's failure action. */
738 geh_filter *
739 gimple_build_eh_filter (tree types, gimple_seq failure)
741 geh_filter *p = as_a <geh_filter *> (gimple_alloc (GIMPLE_EH_FILTER, 0));
742 gimple_eh_filter_set_types (p, types);
743 if (failure)
744 gimple_eh_filter_set_failure (p, failure);
746 return p;
749 /* Build a GIMPLE_EH_MUST_NOT_THROW statement. */
751 geh_mnt *
752 gimple_build_eh_must_not_throw (tree decl)
754 geh_mnt *p = as_a <geh_mnt *> (gimple_alloc (GIMPLE_EH_MUST_NOT_THROW, 0));
756 gcc_assert (TREE_CODE (decl) == FUNCTION_DECL);
757 gcc_assert (flags_from_decl_or_type (decl) & ECF_NORETURN);
758 gimple_eh_must_not_throw_set_fndecl (p, decl);
760 return p;
763 /* Build a GIMPLE_EH_ELSE statement. */
765 geh_else *
766 gimple_build_eh_else (gimple_seq n_body, gimple_seq e_body)
768 geh_else *p = as_a <geh_else *> (gimple_alloc (GIMPLE_EH_ELSE, 0));
769 gimple_eh_else_set_n_body (p, n_body);
770 gimple_eh_else_set_e_body (p, e_body);
771 return p;
774 /* Build a GIMPLE_TRY statement.
776 EVAL is the expression to evaluate.
777 CLEANUP is the cleanup expression.
778 KIND is either GIMPLE_TRY_CATCH or GIMPLE_TRY_FINALLY depending on
779 whether this is a try/catch or a try/finally respectively. */
781 gtry *
782 gimple_build_try (gimple_seq eval, gimple_seq cleanup,
783 enum gimple_try_flags kind)
785 gtry *p;
787 gcc_assert (kind == GIMPLE_TRY_CATCH || kind == GIMPLE_TRY_FINALLY);
788 p = as_a <gtry *> (gimple_alloc (GIMPLE_TRY, 0));
789 gimple_set_subcode (p, kind);
790 if (eval)
791 gimple_try_set_eval (p, eval);
792 if (cleanup)
793 gimple_try_set_cleanup (p, cleanup);
795 return p;
798 /* Construct a GIMPLE_WITH_CLEANUP_EXPR statement.
800 CLEANUP is the cleanup expression. */
802 gimple *
803 gimple_build_wce (gimple_seq cleanup)
805 gimple *p = gimple_alloc (GIMPLE_WITH_CLEANUP_EXPR, 0);
806 if (cleanup)
807 gimple_wce_set_cleanup (p, cleanup);
809 return p;
813 /* Build a GIMPLE_RESX statement. */
815 gresx *
816 gimple_build_resx (int region)
818 gresx *p
819 = as_a <gresx *> (gimple_build_with_ops (GIMPLE_RESX, ERROR_MARK, 0));
820 p->region = region;
821 return p;
825 /* The helper for constructing a gimple switch statement.
826 INDEX is the switch's index.
827 NLABELS is the number of labels in the switch excluding the default.
828 DEFAULT_LABEL is the default label for the switch statement. */
830 gswitch *
831 gimple_build_switch_nlabels (unsigned nlabels, tree index, tree default_label)
833 /* nlabels + 1 default label + 1 index. */
834 gcc_checking_assert (default_label);
835 gswitch *p = as_a <gswitch *> (gimple_build_with_ops (GIMPLE_SWITCH,
836 ERROR_MARK,
837 1 + 1 + nlabels));
838 gimple_switch_set_index (p, index);
839 gimple_switch_set_default_label (p, default_label);
840 return p;
843 /* Build a GIMPLE_SWITCH statement.
845 INDEX is the switch's index.
846 DEFAULT_LABEL is the default label
847 ARGS is a vector of labels excluding the default. */
849 gswitch *
850 gimple_build_switch (tree index, tree default_label, const vec<tree> &args)
852 unsigned i, nlabels = args.length ();
854 gswitch *p = gimple_build_switch_nlabels (nlabels, index, default_label);
856 /* Copy the labels from the vector to the switch statement. */
857 for (i = 0; i < nlabels; i++)
858 gimple_switch_set_label (p, i + 1, args[i]);
860 return p;
863 /* Build a GIMPLE_EH_DISPATCH statement. */
865 geh_dispatch *
866 gimple_build_eh_dispatch (int region)
868 geh_dispatch *p
869 = as_a <geh_dispatch *> (
870 gimple_build_with_ops (GIMPLE_EH_DISPATCH, ERROR_MARK, 0));
871 p->region = region;
872 return p;
875 /* Build a new GIMPLE_DEBUG_BIND statement.
877 VAR is bound to VALUE; block and location are taken from STMT. */
879 gdebug *
880 gimple_build_debug_bind (tree var, tree value, gimple *stmt MEM_STAT_DECL)
882 gdebug *p
883 = as_a <gdebug *> (gimple_build_with_ops_stat (GIMPLE_DEBUG,
884 (unsigned)GIMPLE_DEBUG_BIND, 2
885 PASS_MEM_STAT));
886 gimple_debug_bind_set_var (p, var);
887 gimple_debug_bind_set_value (p, value);
888 if (stmt)
889 gimple_set_location (p, gimple_location (stmt));
891 return p;
895 /* Build a new GIMPLE_DEBUG_SOURCE_BIND statement.
897 VAR is bound to VALUE; block and location are taken from STMT. */
899 gdebug *
900 gimple_build_debug_source_bind (tree var, tree value,
901 gimple *stmt MEM_STAT_DECL)
903 gdebug *p
904 = as_a <gdebug *> (
905 gimple_build_with_ops_stat (GIMPLE_DEBUG,
906 (unsigned)GIMPLE_DEBUG_SOURCE_BIND, 2
907 PASS_MEM_STAT));
909 gimple_debug_source_bind_set_var (p, var);
910 gimple_debug_source_bind_set_value (p, value);
911 if (stmt)
912 gimple_set_location (p, gimple_location (stmt));
914 return p;
918 /* Build a new GIMPLE_DEBUG_BEGIN_STMT statement in BLOCK at
919 LOCATION. */
921 gdebug *
922 gimple_build_debug_begin_stmt (tree block, location_t location
923 MEM_STAT_DECL)
925 gdebug *p
926 = as_a <gdebug *> (
927 gimple_build_with_ops_stat (GIMPLE_DEBUG,
928 (unsigned)GIMPLE_DEBUG_BEGIN_STMT, 0
929 PASS_MEM_STAT));
931 gimple_set_location (p, location);
932 gimple_set_block (p, block);
933 cfun->debug_marker_count++;
935 return p;
939 /* Build a new GIMPLE_DEBUG_INLINE_ENTRY statement in BLOCK at
940 LOCATION. The BLOCK links to the inlined function. */
942 gdebug *
943 gimple_build_debug_inline_entry (tree block, location_t location
944 MEM_STAT_DECL)
946 gdebug *p
947 = as_a <gdebug *> (
948 gimple_build_with_ops_stat (GIMPLE_DEBUG,
949 (unsigned)GIMPLE_DEBUG_INLINE_ENTRY, 0
950 PASS_MEM_STAT));
952 gimple_set_location (p, location);
953 gimple_set_block (p, block);
954 cfun->debug_marker_count++;
956 return p;
960 /* Build a GIMPLE_OMP_CRITICAL statement.
962 BODY is the sequence of statements for which only one thread can execute.
963 NAME is optional identifier for this critical block.
964 CLAUSES are clauses for this critical block. */
966 gomp_critical *
967 gimple_build_omp_critical (gimple_seq body, tree name, tree clauses)
969 gomp_critical *p
970 = as_a <gomp_critical *> (gimple_alloc (GIMPLE_OMP_CRITICAL, 0));
971 gimple_omp_critical_set_name (p, name);
972 gimple_omp_critical_set_clauses (p, clauses);
973 if (body)
974 gimple_omp_set_body (p, body);
976 return p;
979 /* Build a GIMPLE_OMP_FOR statement.
981 BODY is sequence of statements inside the for loop.
982 KIND is the `for' variant.
983 CLAUSES are any of the construct's clauses.
984 COLLAPSE is the collapse count.
985 PRE_BODY is the sequence of statements that are loop invariant. */
987 gomp_for *
988 gimple_build_omp_for (gimple_seq body, int kind, tree clauses, size_t collapse,
989 gimple_seq pre_body)
991 gomp_for *p = as_a <gomp_for *> (gimple_alloc (GIMPLE_OMP_FOR, 0));
992 if (body)
993 gimple_omp_set_body (p, body);
994 gimple_omp_for_set_clauses (p, clauses);
995 gimple_omp_for_set_kind (p, kind);
996 p->collapse = collapse;
997 p->iter = ggc_cleared_vec_alloc<gimple_omp_for_iter> (collapse);
999 if (pre_body)
1000 gimple_omp_for_set_pre_body (p, pre_body);
1002 return p;
1006 /* Build a GIMPLE_OMP_PARALLEL statement.
1008 BODY is sequence of statements which are executed in parallel.
1009 CLAUSES are the OMP parallel construct's clauses.
1010 CHILD_FN is the function created for the parallel threads to execute.
1011 DATA_ARG are the shared data argument(s). */
1013 gomp_parallel *
1014 gimple_build_omp_parallel (gimple_seq body, tree clauses, tree child_fn,
1015 tree data_arg)
1017 gomp_parallel *p
1018 = as_a <gomp_parallel *> (gimple_alloc (GIMPLE_OMP_PARALLEL, 0));
1019 if (body)
1020 gimple_omp_set_body (p, body);
1021 gimple_omp_parallel_set_clauses (p, clauses);
1022 gimple_omp_parallel_set_child_fn (p, child_fn);
1023 gimple_omp_parallel_set_data_arg (p, data_arg);
1025 return p;
1029 /* Build a GIMPLE_OMP_TASK statement.
1031 BODY is sequence of statements which are executed by the explicit task.
1032 CLAUSES are the OMP task construct's clauses.
1033 CHILD_FN is the function created for the parallel threads to execute.
1034 DATA_ARG are the shared data argument(s).
1035 COPY_FN is the optional function for firstprivate initialization.
1036 ARG_SIZE and ARG_ALIGN are size and alignment of the data block. */
1038 gomp_task *
1039 gimple_build_omp_task (gimple_seq body, tree clauses, tree child_fn,
1040 tree data_arg, tree copy_fn, tree arg_size,
1041 tree arg_align)
1043 gomp_task *p = as_a <gomp_task *> (gimple_alloc (GIMPLE_OMP_TASK, 0));
1044 if (body)
1045 gimple_omp_set_body (p, body);
1046 gimple_omp_task_set_clauses (p, clauses);
1047 gimple_omp_task_set_child_fn (p, child_fn);
1048 gimple_omp_task_set_data_arg (p, data_arg);
1049 gimple_omp_task_set_copy_fn (p, copy_fn);
1050 gimple_omp_task_set_arg_size (p, arg_size);
1051 gimple_omp_task_set_arg_align (p, arg_align);
1053 return p;
1057 /* Build a GIMPLE_OMP_SECTION statement for a sections statement.
1059 BODY is the sequence of statements in the section. */
1061 gimple *
1062 gimple_build_omp_section (gimple_seq body)
1064 gimple *p = gimple_alloc (GIMPLE_OMP_SECTION, 0);
1065 if (body)
1066 gimple_omp_set_body (p, body);
1068 return p;
1072 /* Build a GIMPLE_OMP_STRUCTURED_BLOCK statement.
1074 BODY is the structured block sequence. */
1076 gimple *
1077 gimple_build_omp_structured_block (gimple_seq body)
1079 gimple *p = gimple_alloc (GIMPLE_OMP_STRUCTURED_BLOCK, 0);
1080 if (body)
1081 gimple_omp_set_body (p, body);
1083 return p;
1087 /* Build a GIMPLE_OMP_MASTER statement.
1089 BODY is the sequence of statements to be executed by just the master. */
1091 gimple *
1092 gimple_build_omp_master (gimple_seq body)
1094 gimple *p = gimple_alloc (GIMPLE_OMP_MASTER, 0);
1095 if (body)
1096 gimple_omp_set_body (p, body);
1098 return p;
1101 /* Build a GIMPLE_OMP_MASKED statement.
1103 BODY is the sequence of statements to be executed by the selected thread(s). */
1105 gimple *
1106 gimple_build_omp_masked (gimple_seq body, tree clauses)
1108 gimple *p = gimple_alloc (GIMPLE_OMP_MASKED, 0);
1109 gimple_omp_masked_set_clauses (p, clauses);
1110 if (body)
1111 gimple_omp_set_body (p, body);
1113 return p;
1116 /* Build a GIMPLE_OMP_TASKGROUP statement.
1118 BODY is the sequence of statements to be executed by the taskgroup
1119 construct.
1120 CLAUSES are any of the construct's clauses. */
1122 gimple *
1123 gimple_build_omp_taskgroup (gimple_seq body, tree clauses)
1125 gimple *p = gimple_alloc (GIMPLE_OMP_TASKGROUP, 0);
1126 gimple_omp_taskgroup_set_clauses (p, clauses);
1127 if (body)
1128 gimple_omp_set_body (p, body);
1130 return p;
1134 /* Build a GIMPLE_OMP_CONTINUE statement.
1136 CONTROL_DEF is the definition of the control variable.
1137 CONTROL_USE is the use of the control variable. */
1139 gomp_continue *
1140 gimple_build_omp_continue (tree control_def, tree control_use)
1142 gomp_continue *p
1143 = as_a <gomp_continue *> (gimple_alloc (GIMPLE_OMP_CONTINUE, 0));
1144 gimple_omp_continue_set_control_def (p, control_def);
1145 gimple_omp_continue_set_control_use (p, control_use);
1146 return p;
1149 /* Build a GIMPLE_OMP_ORDERED statement.
1151 BODY is the sequence of statements inside a loop that will executed in
1152 sequence.
1153 CLAUSES are clauses for this statement. */
1155 gomp_ordered *
1156 gimple_build_omp_ordered (gimple_seq body, tree clauses)
1158 gomp_ordered *p
1159 = as_a <gomp_ordered *> (gimple_alloc (GIMPLE_OMP_ORDERED, 0));
1160 gimple_omp_ordered_set_clauses (p, clauses);
1161 if (body)
1162 gimple_omp_set_body (p, body);
1164 return p;
1168 /* Build a GIMPLE_OMP_RETURN statement.
1169 WAIT_P is true if this is a non-waiting return. */
1171 gimple *
1172 gimple_build_omp_return (bool wait_p)
1174 gimple *p = gimple_alloc (GIMPLE_OMP_RETURN, 0);
1175 if (wait_p)
1176 gimple_omp_return_set_nowait (p);
1178 return p;
1182 /* Build a GIMPLE_OMP_SCAN statement.
1184 BODY is the sequence of statements to be executed by the scan
1185 construct.
1186 CLAUSES are any of the construct's clauses. */
1188 gomp_scan *
1189 gimple_build_omp_scan (gimple_seq body, tree clauses)
1191 gomp_scan *p
1192 = as_a <gomp_scan *> (gimple_alloc (GIMPLE_OMP_SCAN, 0));
1193 gimple_omp_scan_set_clauses (p, clauses);
1194 if (body)
1195 gimple_omp_set_body (p, body);
1197 return p;
1201 /* Build a GIMPLE_OMP_SECTIONS statement.
1203 BODY is a sequence of section statements.
1204 CLAUSES are any of the OMP sections contsruct's clauses: private,
1205 firstprivate, lastprivate, reduction, and nowait. */
1207 gomp_sections *
1208 gimple_build_omp_sections (gimple_seq body, tree clauses)
1210 gomp_sections *p
1211 = as_a <gomp_sections *> (gimple_alloc (GIMPLE_OMP_SECTIONS, 0));
1212 if (body)
1213 gimple_omp_set_body (p, body);
1214 gimple_omp_sections_set_clauses (p, clauses);
1216 return p;
1220 /* Build a GIMPLE_OMP_SECTIONS_SWITCH. */
1222 gimple *
1223 gimple_build_omp_sections_switch (void)
1225 return gimple_alloc (GIMPLE_OMP_SECTIONS_SWITCH, 0);
1229 /* Build a GIMPLE_OMP_SINGLE statement.
1231 BODY is the sequence of statements that will be executed once.
1232 CLAUSES are any of the OMP single construct's clauses: private, firstprivate,
1233 copyprivate, nowait. */
1235 gomp_single *
1236 gimple_build_omp_single (gimple_seq body, tree clauses)
1238 gomp_single *p
1239 = as_a <gomp_single *> (gimple_alloc (GIMPLE_OMP_SINGLE, 0));
1240 if (body)
1241 gimple_omp_set_body (p, body);
1242 gimple_omp_single_set_clauses (p, clauses);
1244 return p;
1248 /* Build a GIMPLE_OMP_SCOPE statement.
1250 BODY is the sequence of statements that will be executed once.
1251 CLAUSES are any of the OMP scope construct's clauses: private, reduction,
1252 nowait. */
1254 gimple *
1255 gimple_build_omp_scope (gimple_seq body, tree clauses)
1257 gimple *p = gimple_alloc (GIMPLE_OMP_SCOPE, 0);
1258 gimple_omp_scope_set_clauses (p, clauses);
1259 if (body)
1260 gimple_omp_set_body (p, body);
1262 return p;
1265 /* Build a GIMPLE_OMP_DISPATCH statement.
1267 BODY is the target function call to be dispatched.
1268 CLAUSES are any of the OMP dispatch construct's clauses. */
1270 gimple *
1271 gimple_build_omp_dispatch (gimple_seq body, tree clauses)
1273 gimple *p = gimple_alloc (GIMPLE_OMP_DISPATCH, 0);
1274 gimple_omp_dispatch_set_clauses (p, clauses);
1275 if (body)
1276 gimple_omp_set_body (p, body);
1278 return p;
1281 /* Build a GIMPLE_OMP_TARGET statement.
1283 BODY is the sequence of statements that will be executed.
1284 KIND is the kind of the region.
1285 CLAUSES are any of the construct's clauses. */
1287 gomp_target *
1288 gimple_build_omp_target (gimple_seq body, int kind, tree clauses)
1290 gomp_target *p
1291 = as_a <gomp_target *> (gimple_alloc (GIMPLE_OMP_TARGET, 0));
1292 if (body)
1293 gimple_omp_set_body (p, body);
1294 gimple_omp_target_set_clauses (p, clauses);
1295 gimple_omp_target_set_kind (p, kind);
1297 return p;
1301 /* Build a GIMPLE_OMP_TEAMS statement.
1303 BODY is the sequence of statements that will be executed.
1304 CLAUSES are any of the OMP teams construct's clauses. */
1306 gomp_teams *
1307 gimple_build_omp_teams (gimple_seq body, tree clauses)
1309 gomp_teams *p = as_a <gomp_teams *> (gimple_alloc (GIMPLE_OMP_TEAMS, 0));
1310 if (body)
1311 gimple_omp_set_body (p, body);
1312 gimple_omp_teams_set_clauses (p, clauses);
1314 return p;
1318 /* Build a GIMPLE_OMP_ATOMIC_LOAD statement. */
1320 gomp_atomic_load *
1321 gimple_build_omp_atomic_load (tree lhs, tree rhs, enum omp_memory_order mo)
1323 gomp_atomic_load *p
1324 = as_a <gomp_atomic_load *> (gimple_alloc (GIMPLE_OMP_ATOMIC_LOAD, 0));
1325 gimple_omp_atomic_load_set_lhs (p, lhs);
1326 gimple_omp_atomic_load_set_rhs (p, rhs);
1327 gimple_omp_atomic_set_memory_order (p, mo);
1328 return p;
1331 /* Build a GIMPLE_OMP_ATOMIC_STORE statement.
1333 VAL is the value we are storing. */
1335 gomp_atomic_store *
1336 gimple_build_omp_atomic_store (tree val, enum omp_memory_order mo)
1338 gomp_atomic_store *p
1339 = as_a <gomp_atomic_store *> (gimple_alloc (GIMPLE_OMP_ATOMIC_STORE, 0));
1340 gimple_omp_atomic_store_set_val (p, val);
1341 gimple_omp_atomic_set_memory_order (p, mo);
1342 return p;
1345 /* Build a GIMPLE_ASSUME statement. */
1347 gimple *
1348 gimple_build_assume (tree guard, gimple_seq body)
1350 gimple_statement_assume *p
1351 = as_a <gimple_statement_assume *> (gimple_alloc (GIMPLE_ASSUME, 0));
1352 gimple_assume_set_guard (p, guard);
1353 *gimple_assume_body_ptr (p) = body;
1354 return p;
1357 /* Build a GIMPLE_TRANSACTION statement. */
1359 gtransaction *
1360 gimple_build_transaction (gimple_seq body)
1362 gtransaction *p
1363 = as_a <gtransaction *> (gimple_alloc (GIMPLE_TRANSACTION, 0));
1364 gimple_transaction_set_body (p, body);
1365 gimple_transaction_set_label_norm (p, 0);
1366 gimple_transaction_set_label_uninst (p, 0);
1367 gimple_transaction_set_label_over (p, 0);
1368 return p;
1371 #if defined ENABLE_GIMPLE_CHECKING
1372 /* Complain of a gimple type mismatch and die. */
1374 void
1375 gimple_check_failed (const gimple *gs, const char *file, int line,
1376 const char *function, enum gimple_code code,
1377 enum tree_code subcode)
1379 internal_error ("gimple check: expected %s(%s), have %s(%s) in %s, at %s:%d",
1380 gimple_code_name[code],
1381 get_tree_code_name (subcode),
1382 gimple_code_name[gimple_code (gs)],
1383 gs->subcode > 0
1384 ? get_tree_code_name ((enum tree_code) gs->subcode)
1385 : "",
1386 function, trim_filename (file), line);
1388 #endif /* ENABLE_GIMPLE_CHECKING */
1391 /* Link gimple statement GS to the end of the sequence *SEQ_P. If
1392 *SEQ_P is NULL, a new sequence is allocated. */
1394 void
1395 gimple_seq_add_stmt (gimple_seq *seq_p, gimple *gs)
1397 gimple_stmt_iterator si;
1398 if (gs == NULL)
1399 return;
1401 si = gsi_last (*seq_p);
1402 gsi_insert_after (&si, gs, GSI_NEW_STMT);
1405 /* Link gimple statement GS to the end of the sequence *SEQ_P. If
1406 *SEQ_P is NULL, a new sequence is allocated. This function is
1407 similar to gimple_seq_add_stmt, but does not scan the operands.
1408 During gimplification, we need to manipulate statement sequences
1409 before the def/use vectors have been constructed. */
1411 void
1412 gimple_seq_add_stmt_without_update (gimple_seq *seq_p, gimple *gs)
1414 gimple_stmt_iterator si;
1416 if (gs == NULL)
1417 return;
1419 si = gsi_last (*seq_p);
1420 gsi_insert_after_without_update (&si, gs, GSI_NEW_STMT);
1423 /* Append sequence SRC to the end of sequence *DST_P. If *DST_P is
1424 NULL, a new sequence is allocated. */
1426 void
1427 gimple_seq_add_seq (gimple_seq *dst_p, gimple_seq src)
1429 gimple_stmt_iterator si;
1430 if (src == NULL)
1431 return;
1433 si = gsi_last (*dst_p);
1434 gsi_insert_seq_after (&si, src, GSI_NEW_STMT);
1437 /* Append sequence SRC to the end of sequence *DST_P. If *DST_P is
1438 NULL, a new sequence is allocated. This function is
1439 similar to gimple_seq_add_seq, but does not scan the operands. */
1441 void
1442 gimple_seq_add_seq_without_update (gimple_seq *dst_p, gimple_seq src)
1444 gimple_stmt_iterator si;
1445 if (src == NULL)
1446 return;
1448 si = gsi_last (*dst_p);
1449 gsi_insert_seq_after_without_update (&si, src, GSI_NEW_STMT);
1452 /* Determine whether to assign a location to the statement GS. */
1454 static bool
1455 should_carry_location_p (gimple *gs)
1457 /* Don't emit a line note for a label. We particularly don't want to
1458 emit one for the break label, since it doesn't actually correspond
1459 to the beginning of the loop/switch. */
1460 if (gimple_code (gs) == GIMPLE_LABEL)
1461 return false;
1463 return true;
1466 /* Set the location for gimple statement GS to LOCATION. */
1468 static void
1469 annotate_one_with_location (gimple *gs, location_t location)
1471 if (!gimple_has_location (gs)
1472 && !gimple_do_not_emit_location_p (gs)
1473 && should_carry_location_p (gs))
1474 gimple_set_location (gs, location);
1477 /* Set LOCATION for all the statements after iterator GSI in sequence
1478 SEQ. If GSI is pointing to the end of the sequence, start with the
1479 first statement in SEQ. */
1481 void
1482 annotate_all_with_location_after (gimple_seq seq, gimple_stmt_iterator gsi,
1483 location_t location)
1485 if (gsi_end_p (gsi))
1486 gsi = gsi_start (seq);
1487 else
1488 gsi_next (&gsi);
1490 for (; !gsi_end_p (gsi); gsi_next (&gsi))
1491 annotate_one_with_location (gsi_stmt (gsi), location);
1494 /* Set the location for all the statements in a sequence STMT_P to LOCATION. */
1496 void
1497 annotate_all_with_location (gimple_seq stmt_p, location_t location)
1499 gimple_stmt_iterator i;
1501 if (gimple_seq_empty_p (stmt_p))
1502 return;
1504 for (i = gsi_start (stmt_p); !gsi_end_p (i); gsi_next (&i))
1506 gimple *gs = gsi_stmt (i);
1507 annotate_one_with_location (gs, location);
1511 /* Helper function of empty_body_p. Return true if STMT is an empty
1512 statement. */
1514 static bool
1515 empty_stmt_p (gimple *stmt)
1517 if (gimple_code (stmt) == GIMPLE_NOP)
1518 return true;
1519 if (gbind *bind_stmt = dyn_cast <gbind *> (stmt))
1520 return empty_body_p (gimple_bind_body (bind_stmt));
1521 return false;
1525 /* Return true if BODY contains nothing but empty statements. */
1527 bool
1528 empty_body_p (gimple_seq body)
1530 gimple_stmt_iterator i;
1532 if (gimple_seq_empty_p (body))
1533 return true;
1534 for (i = gsi_start (body); !gsi_end_p (i); gsi_next (&i))
1535 if (!empty_stmt_p (gsi_stmt (i))
1536 && !is_gimple_debug (gsi_stmt (i)))
1537 return false;
1539 return true;
1543 /* Perform a deep copy of sequence SRC and return the result. */
1545 gimple_seq
1546 gimple_seq_copy (gimple_seq src)
1548 gimple_stmt_iterator gsi;
1549 gimple_seq new_seq = NULL;
1550 gimple *stmt;
1552 for (gsi = gsi_start (src); !gsi_end_p (gsi); gsi_next (&gsi))
1554 stmt = gimple_copy (gsi_stmt (gsi));
1555 gimple_seq_add_stmt (&new_seq, stmt);
1558 return new_seq;
1563 /* Return true if calls C1 and C2 are known to go to the same function. */
1565 bool
1566 gimple_call_same_target_p (const gimple *c1, const gimple *c2)
1568 if (gimple_call_internal_p (c1))
1569 return (gimple_call_internal_p (c2)
1570 && gimple_call_internal_fn (c1) == gimple_call_internal_fn (c2)
1571 && (!gimple_call_internal_unique_p (as_a <const gcall *> (c1))
1572 || c1 == c2));
1573 else
1574 return (gimple_call_fn (c1) == gimple_call_fn (c2)
1575 || (gimple_call_fndecl (c1)
1576 && gimple_call_fndecl (c1) == gimple_call_fndecl (c2)));
1579 /* Detect flags from a GIMPLE_CALL. This is just like
1580 call_expr_flags, but for gimple tuples. */
1583 gimple_call_flags (const gimple *stmt)
1585 int flags = 0;
1587 if (gimple_call_internal_p (stmt))
1588 flags = internal_fn_flags (gimple_call_internal_fn (stmt));
1589 else
1591 tree decl = gimple_call_fndecl (stmt);
1592 if (decl)
1593 flags = flags_from_decl_or_type (decl);
1594 flags |= flags_from_decl_or_type (gimple_call_fntype (stmt));
1597 if (stmt->subcode & GF_CALL_NOTHROW)
1598 flags |= ECF_NOTHROW;
1599 if (stmt->subcode & GF_CALL_XTHROW)
1600 flags |= ECF_XTHROW;
1602 if (stmt->subcode & GF_CALL_BY_DESCRIPTOR)
1603 flags |= ECF_BY_DESCRIPTOR;
1605 return flags;
1608 /* Return the "fn spec" string for call STMT. */
1610 attr_fnspec
1611 gimple_call_fnspec (const gcall *stmt)
1613 tree type, attr;
1615 if (gimple_call_internal_p (stmt))
1617 const_tree spec = internal_fn_fnspec (gimple_call_internal_fn (stmt));
1618 if (spec)
1619 return spec;
1620 else
1621 return "";
1624 type = gimple_call_fntype (stmt);
1625 if (type)
1627 attr = lookup_attribute ("fn spec", TYPE_ATTRIBUTES (type));
1628 if (attr)
1629 return TREE_VALUE (TREE_VALUE (attr));
1631 if (gimple_call_builtin_p (stmt, BUILT_IN_NORMAL))
1632 return builtin_fnspec (gimple_call_fndecl (stmt));
1633 tree fndecl = gimple_call_fndecl (stmt);
1634 /* If the call is to a replaceable operator delete and results
1635 from a delete expression as opposed to a direct call to
1636 such operator, then we can treat it as free. */
1637 if (fndecl
1638 && DECL_IS_OPERATOR_DELETE_P (fndecl)
1639 && DECL_IS_REPLACEABLE_OPERATOR (fndecl)
1640 && gimple_call_from_new_or_delete (stmt))
1642 if (flag_assume_sane_operators_new_delete)
1643 return ".co ";
1644 else
1645 return ". o ";
1647 /* Similarly operator new can be treated as malloc. */
1648 if (fndecl
1649 && DECL_IS_REPLACEABLE_OPERATOR_NEW_P (fndecl)
1650 && gimple_call_from_new_or_delete (stmt))
1652 if (flag_assume_sane_operators_new_delete)
1653 return "mC";
1654 else
1655 return "m ";
1657 return "";
1660 /* Detects argument flags for argument number ARG on call STMT. */
1663 gimple_call_arg_flags (const gcall *stmt, unsigned arg)
1665 attr_fnspec fnspec = gimple_call_fnspec (stmt);
1666 int flags = 0;
1668 if (fnspec.known_p ())
1669 flags = fnspec.arg_eaf_flags (arg);
1670 tree callee = gimple_call_fndecl (stmt);
1671 if (callee)
1673 cgraph_node *node = cgraph_node::get (callee);
1674 modref_summary *summary = node ? get_modref_function_summary (node)
1675 : NULL;
1677 if (summary && summary->arg_flags.length () > arg)
1679 int modref_flags = summary->arg_flags[arg];
1681 /* We have possibly optimized out load. Be conservative here. */
1682 if (!node->binds_to_current_def_p ())
1683 modref_flags = interposable_eaf_flags (modref_flags, flags);
1684 if (dbg_cnt (ipa_mod_ref_pta))
1685 flags |= modref_flags;
1688 return flags;
1691 /* Detects argument flags for return slot on call STMT. */
1694 gimple_call_retslot_flags (const gcall *stmt)
1696 int flags = implicit_retslot_eaf_flags;
1698 tree callee = gimple_call_fndecl (stmt);
1699 if (callee)
1701 cgraph_node *node = cgraph_node::get (callee);
1702 modref_summary *summary = node ? get_modref_function_summary (node)
1703 : NULL;
1705 if (summary)
1707 int modref_flags = summary->retslot_flags;
1709 /* We have possibly optimized out load. Be conservative here. */
1710 if (!node->binds_to_current_def_p ())
1711 modref_flags = interposable_eaf_flags (modref_flags, flags);
1712 if (dbg_cnt (ipa_mod_ref_pta))
1713 flags |= modref_flags;
1716 return flags;
1719 /* Detects argument flags for static chain on call STMT. */
1722 gimple_call_static_chain_flags (const gcall *stmt)
1724 int flags = 0;
1726 tree callee = gimple_call_fndecl (stmt);
1727 if (callee)
1729 cgraph_node *node = cgraph_node::get (callee);
1730 modref_summary *summary = node ? get_modref_function_summary (node)
1731 : NULL;
1733 /* Nested functions should always bind to current def since
1734 there is no public ABI for them. */
1735 gcc_checking_assert (node->binds_to_current_def_p ());
1736 if (summary)
1738 int modref_flags = summary->static_chain_flags;
1740 if (dbg_cnt (ipa_mod_ref_pta))
1741 flags |= modref_flags;
1744 return flags;
1747 /* Detects return flags for the call STMT. */
1750 gimple_call_return_flags (const gcall *stmt)
1752 if (gimple_call_flags (stmt) & ECF_MALLOC)
1753 return ERF_NOALIAS;
1755 attr_fnspec fnspec = gimple_call_fnspec (stmt);
1757 unsigned int arg_no;
1758 if (fnspec.returns_arg (&arg_no))
1759 return ERF_RETURNS_ARG | arg_no;
1761 if (fnspec.returns_noalias_p ())
1762 return ERF_NOALIAS;
1763 return 0;
1767 /* Return true if call STMT is known to return a non-zero result. */
1769 bool
1770 gimple_call_nonnull_result_p (gcall *call)
1772 tree fndecl = gimple_call_fndecl (call);
1773 if (!fndecl)
1774 return false;
1775 if (flag_delete_null_pointer_checks && !flag_check_new
1776 && DECL_IS_OPERATOR_NEW_P (fndecl)
1777 && !TREE_NOTHROW (fndecl))
1778 return true;
1780 /* References are always non-NULL. */
1781 if (flag_delete_null_pointer_checks
1782 && TREE_CODE (TREE_TYPE (fndecl)) == REFERENCE_TYPE)
1783 return true;
1785 if (flag_delete_null_pointer_checks
1786 && lookup_attribute ("returns_nonnull",
1787 TYPE_ATTRIBUTES (gimple_call_fntype (call))))
1788 return true;
1789 return gimple_alloca_call_p (call);
1793 /* If CALL returns a non-null result in an argument, return that arg. */
1795 tree
1796 gimple_call_nonnull_arg (gcall *call)
1798 tree fndecl = gimple_call_fndecl (call);
1799 if (!fndecl)
1800 return NULL_TREE;
1802 unsigned rf = gimple_call_return_flags (call);
1803 if (rf & ERF_RETURNS_ARG)
1805 unsigned argnum = rf & ERF_RETURN_ARG_MASK;
1806 if (argnum < gimple_call_num_args (call))
1808 tree arg = gimple_call_arg (call, argnum);
1809 if (SSA_VAR_P (arg)
1810 && infer_nonnull_range_by_attribute (call, arg))
1811 return arg;
1814 return NULL_TREE;
1818 /* Return true if GS is a copy assignment. */
1820 bool
1821 gimple_assign_copy_p (gimple *gs)
1823 return (gimple_assign_single_p (gs)
1824 && is_gimple_val (gimple_op (gs, 1)));
1828 /* Return true if GS is a SSA_NAME copy assignment. */
1830 bool
1831 gimple_assign_ssa_name_copy_p (gimple *gs)
1833 return (gimple_assign_single_p (gs)
1834 && TREE_CODE (gimple_assign_lhs (gs)) == SSA_NAME
1835 && TREE_CODE (gimple_assign_rhs1 (gs)) == SSA_NAME);
1839 /* Return true if GS is an assignment with a unary RHS, but the
1840 operator has no effect on the assigned value. The logic is adapted
1841 from STRIP_NOPS. This predicate is intended to be used in tuplifying
1842 instances in which STRIP_NOPS was previously applied to the RHS of
1843 an assignment.
1845 NOTE: In the use cases that led to the creation of this function
1846 and of gimple_assign_single_p, it is typical to test for either
1847 condition and to proceed in the same manner. In each case, the
1848 assigned value is represented by the single RHS operand of the
1849 assignment. I suspect there may be cases where gimple_assign_copy_p,
1850 gimple_assign_single_p, or equivalent logic is used where a similar
1851 treatment of unary NOPs is appropriate. */
1853 bool
1854 gimple_assign_unary_nop_p (gimple *gs)
1856 return (is_gimple_assign (gs)
1857 && (CONVERT_EXPR_CODE_P (gimple_assign_rhs_code (gs))
1858 || gimple_assign_rhs_code (gs) == NON_LVALUE_EXPR)
1859 && gimple_assign_rhs1 (gs) != error_mark_node
1860 && (TYPE_MODE (TREE_TYPE (gimple_assign_lhs (gs)))
1861 == TYPE_MODE (TREE_TYPE (gimple_assign_rhs1 (gs)))));
1864 /* Return true if GS is an assignment that loads from its rhs1. */
1866 bool
1867 gimple_assign_load_p (const gimple *gs)
1869 tree rhs;
1870 if (!gimple_assign_single_p (gs))
1871 return false;
1872 rhs = gimple_assign_rhs1 (gs);
1873 if (TREE_CODE (rhs) == WITH_SIZE_EXPR)
1874 return true;
1875 if (handled_component_p (rhs))
1876 rhs = TREE_OPERAND (rhs, 0);
1877 return (handled_component_p (rhs)
1878 || DECL_P (rhs)
1879 || TREE_CODE (rhs) == MEM_REF
1880 || TREE_CODE (rhs) == TARGET_MEM_REF);
1884 /* Set BB to be the basic block holding G. */
1886 void
1887 gimple_set_bb (gimple *stmt, basic_block bb)
1889 stmt->bb = bb;
1891 if (gimple_code (stmt) != GIMPLE_LABEL)
1892 return;
1894 /* If the statement is a label, add the label to block-to-labels map
1895 so that we can speed up edge creation for GIMPLE_GOTOs. */
1896 if (cfun->cfg)
1898 tree t;
1899 int uid;
1901 t = gimple_label_label (as_a <glabel *> (stmt));
1902 uid = LABEL_DECL_UID (t);
1903 if (uid == -1)
1905 unsigned old_len =
1906 vec_safe_length (label_to_block_map_for_fn (cfun));
1907 LABEL_DECL_UID (t) = uid = cfun->cfg->last_label_uid++;
1908 if (old_len <= (unsigned) uid)
1909 vec_safe_grow_cleared (label_to_block_map_for_fn (cfun), uid + 1);
1912 (*label_to_block_map_for_fn (cfun))[uid] = bb;
1917 /* Modify the RHS of the assignment pointed-to by GSI using the
1918 operands in the expression tree EXPR.
1920 NOTE: The statement pointed-to by GSI may be reallocated if it
1921 did not have enough operand slots.
1923 This function is useful to convert an existing tree expression into
1924 the flat representation used for the RHS of a GIMPLE assignment.
1925 It will reallocate memory as needed to expand or shrink the number
1926 of operand slots needed to represent EXPR.
1928 NOTE: If you find yourself building a tree and then calling this
1929 function, you are most certainly doing it the slow way. It is much
1930 better to build a new assignment or to use the function
1931 gimple_assign_set_rhs_with_ops, which does not require an
1932 expression tree to be built. */
1934 void
1935 gimple_assign_set_rhs_from_tree (gimple_stmt_iterator *gsi, tree expr)
1937 enum tree_code subcode;
1938 tree op1, op2, op3;
1940 extract_ops_from_tree (expr, &subcode, &op1, &op2, &op3);
1941 gimple_assign_set_rhs_with_ops (gsi, subcode, op1, op2, op3);
1945 /* Set the RHS of assignment statement pointed-to by GSI to CODE with
1946 operands OP1, OP2 and OP3.
1948 NOTE: The statement pointed-to by GSI may be reallocated if it
1949 did not have enough operand slots. */
1951 void
1952 gimple_assign_set_rhs_with_ops (gimple_stmt_iterator *gsi, enum tree_code code,
1953 tree op1, tree op2, tree op3)
1955 unsigned new_rhs_ops = get_gimple_rhs_num_ops (code);
1956 gimple *stmt = gsi_stmt (*gsi);
1957 gimple *old_stmt = stmt;
1959 /* If the new CODE needs more operands, allocate a new statement. */
1960 if (gimple_num_ops (stmt) < new_rhs_ops + 1)
1962 tree lhs = gimple_assign_lhs (old_stmt);
1963 stmt = gimple_alloc (gimple_code (old_stmt), new_rhs_ops + 1);
1964 memcpy (stmt, old_stmt, gimple_size (gimple_code (old_stmt)));
1965 gimple_init_singleton (stmt);
1967 /* The LHS needs to be reset as this also changes the SSA name
1968 on the LHS. */
1969 gimple_assign_set_lhs (stmt, lhs);
1972 gimple_set_num_ops (stmt, new_rhs_ops + 1);
1973 gimple_set_subcode (stmt, code);
1974 gimple_assign_set_rhs1 (stmt, op1);
1975 if (new_rhs_ops > 1)
1976 gimple_assign_set_rhs2 (stmt, op2);
1977 if (new_rhs_ops > 2)
1978 gimple_assign_set_rhs3 (stmt, op3);
1979 if (stmt != old_stmt)
1980 gsi_replace (gsi, stmt, false);
1984 /* Return the LHS of a statement that performs an assignment,
1985 either a GIMPLE_ASSIGN or a GIMPLE_CALL. Returns NULL_TREE
1986 for a call to a function that returns no value, or for a
1987 statement other than an assignment or a call. */
1989 tree
1990 gimple_get_lhs (const gimple *stmt)
1992 enum gimple_code code = gimple_code (stmt);
1994 if (code == GIMPLE_ASSIGN)
1995 return gimple_assign_lhs (stmt);
1996 else if (code == GIMPLE_CALL)
1997 return gimple_call_lhs (stmt);
1998 else if (code == GIMPLE_PHI)
1999 return gimple_phi_result (stmt);
2000 else
2001 return NULL_TREE;
2005 /* Set the LHS of a statement that performs an assignment,
2006 either a GIMPLE_ASSIGN or a GIMPLE_CALL. */
2008 void
2009 gimple_set_lhs (gimple *stmt, tree lhs)
2011 enum gimple_code code = gimple_code (stmt);
2013 if (code == GIMPLE_ASSIGN)
2014 gimple_assign_set_lhs (stmt, lhs);
2015 else if (code == GIMPLE_CALL)
2016 gimple_call_set_lhs (stmt, lhs);
2017 else
2018 gcc_unreachable ();
2022 /* Return a deep copy of statement STMT. All the operands from STMT
2023 are reallocated and copied using unshare_expr. The DEF, USE, VDEF
2024 and VUSE operand arrays are set to empty in the new copy. The new
2025 copy isn't part of any sequence. */
2027 gimple *
2028 gimple_copy (gimple *stmt)
2030 enum gimple_code code = gimple_code (stmt);
2031 unsigned num_ops = gimple_num_ops (stmt);
2032 gimple *copy = gimple_alloc (code, num_ops);
2033 unsigned i;
2035 /* Shallow copy all the fields from STMT. */
2036 memcpy (copy, stmt, gimple_size (code));
2037 gimple_init_singleton (copy);
2039 /* If STMT has sub-statements, deep-copy them as well. */
2040 if (gimple_has_substatements (stmt))
2042 gimple_seq new_seq;
2043 tree t;
2045 switch (gimple_code (stmt))
2047 case GIMPLE_BIND:
2049 gbind *bind_stmt = as_a <gbind *> (stmt);
2050 gbind *bind_copy = as_a <gbind *> (copy);
2051 new_seq = gimple_seq_copy (gimple_bind_body (bind_stmt));
2052 gimple_bind_set_body (bind_copy, new_seq);
2053 gimple_bind_set_vars (bind_copy,
2054 unshare_expr (gimple_bind_vars (bind_stmt)));
2055 gimple_bind_set_block (bind_copy, gimple_bind_block (bind_stmt));
2057 break;
2059 case GIMPLE_CATCH:
2061 gcatch *catch_stmt = as_a <gcatch *> (stmt);
2062 gcatch *catch_copy = as_a <gcatch *> (copy);
2063 new_seq = gimple_seq_copy (gimple_catch_handler (catch_stmt));
2064 gimple_catch_set_handler (catch_copy, new_seq);
2065 t = unshare_expr (gimple_catch_types (catch_stmt));
2066 gimple_catch_set_types (catch_copy, t);
2068 break;
2070 case GIMPLE_EH_FILTER:
2072 geh_filter *eh_filter_stmt = as_a <geh_filter *> (stmt);
2073 geh_filter *eh_filter_copy = as_a <geh_filter *> (copy);
2074 new_seq
2075 = gimple_seq_copy (gimple_eh_filter_failure (eh_filter_stmt));
2076 gimple_eh_filter_set_failure (eh_filter_copy, new_seq);
2077 t = unshare_expr (gimple_eh_filter_types (eh_filter_stmt));
2078 gimple_eh_filter_set_types (eh_filter_copy, t);
2080 break;
2082 case GIMPLE_EH_ELSE:
2084 geh_else *eh_else_stmt = as_a <geh_else *> (stmt);
2085 geh_else *eh_else_copy = as_a <geh_else *> (copy);
2086 new_seq = gimple_seq_copy (gimple_eh_else_n_body (eh_else_stmt));
2087 gimple_eh_else_set_n_body (eh_else_copy, new_seq);
2088 new_seq = gimple_seq_copy (gimple_eh_else_e_body (eh_else_stmt));
2089 gimple_eh_else_set_e_body (eh_else_copy, new_seq);
2091 break;
2093 case GIMPLE_TRY:
2095 gtry *try_stmt = as_a <gtry *> (stmt);
2096 gtry *try_copy = as_a <gtry *> (copy);
2097 new_seq = gimple_seq_copy (gimple_try_eval (try_stmt));
2098 gimple_try_set_eval (try_copy, new_seq);
2099 new_seq = gimple_seq_copy (gimple_try_cleanup (try_stmt));
2100 gimple_try_set_cleanup (try_copy, new_seq);
2102 break;
2104 case GIMPLE_OMP_FOR:
2105 new_seq = gimple_seq_copy (gimple_omp_for_pre_body (stmt));
2106 gimple_omp_for_set_pre_body (copy, new_seq);
2107 t = unshare_expr (gimple_omp_for_clauses (stmt));
2108 gimple_omp_for_set_clauses (copy, t);
2110 gomp_for *omp_for_copy = as_a <gomp_for *> (copy);
2111 omp_for_copy->iter = ggc_vec_alloc<gimple_omp_for_iter>
2112 ( gimple_omp_for_collapse (stmt));
2114 for (i = 0; i < gimple_omp_for_collapse (stmt); i++)
2116 gimple_omp_for_set_cond (copy, i,
2117 gimple_omp_for_cond (stmt, i));
2118 gimple_omp_for_set_index (copy, i,
2119 gimple_omp_for_index (stmt, i));
2120 t = unshare_expr (gimple_omp_for_initial (stmt, i));
2121 gimple_omp_for_set_initial (copy, i, t);
2122 t = unshare_expr (gimple_omp_for_final (stmt, i));
2123 gimple_omp_for_set_final (copy, i, t);
2124 t = unshare_expr (gimple_omp_for_incr (stmt, i));
2125 gimple_omp_for_set_incr (copy, i, t);
2127 goto copy_omp_body;
2129 case GIMPLE_OMP_PARALLEL:
2131 gomp_parallel *omp_par_stmt = as_a <gomp_parallel *> (stmt);
2132 gomp_parallel *omp_par_copy = as_a <gomp_parallel *> (copy);
2133 t = unshare_expr (gimple_omp_parallel_clauses (omp_par_stmt));
2134 gimple_omp_parallel_set_clauses (omp_par_copy, t);
2135 t = unshare_expr (gimple_omp_parallel_child_fn (omp_par_stmt));
2136 gimple_omp_parallel_set_child_fn (omp_par_copy, t);
2137 t = unshare_expr (gimple_omp_parallel_data_arg (omp_par_stmt));
2138 gimple_omp_parallel_set_data_arg (omp_par_copy, t);
2140 goto copy_omp_body;
2142 case GIMPLE_OMP_TASK:
2143 t = unshare_expr (gimple_omp_task_clauses (stmt));
2144 gimple_omp_task_set_clauses (copy, t);
2145 t = unshare_expr (gimple_omp_task_child_fn (stmt));
2146 gimple_omp_task_set_child_fn (copy, t);
2147 t = unshare_expr (gimple_omp_task_data_arg (stmt));
2148 gimple_omp_task_set_data_arg (copy, t);
2149 t = unshare_expr (gimple_omp_task_copy_fn (stmt));
2150 gimple_omp_task_set_copy_fn (copy, t);
2151 t = unshare_expr (gimple_omp_task_arg_size (stmt));
2152 gimple_omp_task_set_arg_size (copy, t);
2153 t = unshare_expr (gimple_omp_task_arg_align (stmt));
2154 gimple_omp_task_set_arg_align (copy, t);
2155 goto copy_omp_body;
2157 case GIMPLE_OMP_CRITICAL:
2158 t = unshare_expr (gimple_omp_critical_name
2159 (as_a <gomp_critical *> (stmt)));
2160 gimple_omp_critical_set_name (as_a <gomp_critical *> (copy), t);
2161 t = unshare_expr (gimple_omp_critical_clauses
2162 (as_a <gomp_critical *> (stmt)));
2163 gimple_omp_critical_set_clauses (as_a <gomp_critical *> (copy), t);
2164 goto copy_omp_body;
2166 case GIMPLE_OMP_ORDERED:
2167 t = unshare_expr (gimple_omp_ordered_clauses
2168 (as_a <gomp_ordered *> (stmt)));
2169 gimple_omp_ordered_set_clauses (as_a <gomp_ordered *> (copy), t);
2170 goto copy_omp_body;
2172 case GIMPLE_OMP_SCAN:
2173 t = gimple_omp_scan_clauses (as_a <gomp_scan *> (stmt));
2174 t = unshare_expr (t);
2175 gimple_omp_scan_set_clauses (as_a <gomp_scan *> (copy), t);
2176 goto copy_omp_body;
2178 case GIMPLE_OMP_TASKGROUP:
2179 t = unshare_expr (gimple_omp_taskgroup_clauses (stmt));
2180 gimple_omp_taskgroup_set_clauses (copy, t);
2181 goto copy_omp_body;
2183 case GIMPLE_OMP_SECTIONS:
2184 t = unshare_expr (gimple_omp_sections_clauses (stmt));
2185 gimple_omp_sections_set_clauses (copy, t);
2186 t = unshare_expr (gimple_omp_sections_control (stmt));
2187 gimple_omp_sections_set_control (copy, t);
2188 goto copy_omp_body;
2190 case GIMPLE_OMP_SINGLE:
2192 gomp_single *omp_single_copy = as_a <gomp_single *> (copy);
2193 t = unshare_expr (gimple_omp_single_clauses (stmt));
2194 gimple_omp_single_set_clauses (omp_single_copy, t);
2196 goto copy_omp_body;
2198 case GIMPLE_OMP_SCOPE:
2199 t = unshare_expr (gimple_omp_scope_clauses (stmt));
2200 gimple_omp_scope_set_clauses (copy, t);
2201 goto copy_omp_body;
2203 case GIMPLE_OMP_DISPATCH:
2204 t = unshare_expr (gimple_omp_dispatch_clauses (stmt));
2205 gimple_omp_dispatch_set_clauses (copy, t);
2206 goto copy_omp_body;
2208 case GIMPLE_OMP_TARGET:
2210 gomp_target *omp_target_stmt = as_a <gomp_target *> (stmt);
2211 gomp_target *omp_target_copy = as_a <gomp_target *> (copy);
2212 t = unshare_expr (gimple_omp_target_clauses (omp_target_stmt));
2213 gimple_omp_target_set_clauses (omp_target_copy, t);
2214 t = unshare_expr (gimple_omp_target_data_arg (omp_target_stmt));
2215 gimple_omp_target_set_data_arg (omp_target_copy, t);
2217 goto copy_omp_body;
2219 case GIMPLE_OMP_TEAMS:
2221 gomp_teams *omp_teams_copy = as_a <gomp_teams *> (copy);
2222 t = unshare_expr (gimple_omp_teams_clauses (stmt));
2223 gimple_omp_teams_set_clauses (omp_teams_copy, t);
2225 /* FALLTHRU */
2227 case GIMPLE_OMP_SECTION:
2228 case GIMPLE_OMP_MASTER:
2229 case GIMPLE_OMP_STRUCTURED_BLOCK:
2230 copy_omp_body:
2231 new_seq = gimple_seq_copy (gimple_omp_body (stmt));
2232 gimple_omp_set_body (copy, new_seq);
2233 break;
2235 case GIMPLE_OMP_MASKED:
2236 t = unshare_expr (gimple_omp_masked_clauses (stmt));
2237 gimple_omp_masked_set_clauses (copy, t);
2238 goto copy_omp_body;
2240 case GIMPLE_ASSUME:
2241 new_seq = gimple_seq_copy (gimple_assume_body (stmt));
2242 *gimple_assume_body_ptr (copy) = new_seq;
2243 gimple_assume_set_guard (copy,
2244 unshare_expr (gimple_assume_guard (stmt)));
2245 break;
2247 case GIMPLE_TRANSACTION:
2248 new_seq = gimple_seq_copy (gimple_transaction_body (
2249 as_a <gtransaction *> (stmt)));
2250 gimple_transaction_set_body (as_a <gtransaction *> (copy),
2251 new_seq);
2252 break;
2254 case GIMPLE_WITH_CLEANUP_EXPR:
2255 new_seq = gimple_seq_copy (gimple_wce_cleanup (stmt));
2256 gimple_wce_set_cleanup (copy, new_seq);
2257 break;
2259 default:
2260 gcc_unreachable ();
2264 /* Make copy of operands. */
2265 for (i = 0; i < num_ops; i++)
2266 gimple_set_op (copy, i, unshare_expr (gimple_op (stmt, i)));
2268 if (gimple_has_mem_ops (stmt))
2270 gimple_set_vdef (copy, gimple_vdef (stmt));
2271 gimple_set_vuse (copy, gimple_vuse (stmt));
2274 /* Clear out SSA operand vectors on COPY. */
2275 if (gimple_has_ops (stmt))
2277 gimple_set_use_ops (copy, NULL);
2279 /* SSA operands need to be updated. */
2280 gimple_set_modified (copy, true);
2283 if (gimple_debug_nonbind_marker_p (stmt))
2284 cfun->debug_marker_count++;
2286 return copy;
2289 /* Move OLD_STMT's vuse and vdef operands to NEW_STMT, on the assumption
2290 that OLD_STMT is about to be removed. */
2292 void
2293 gimple_move_vops (gimple *new_stmt, gimple *old_stmt)
2295 tree vdef = gimple_vdef (old_stmt);
2296 gimple_set_vuse (new_stmt, gimple_vuse (old_stmt));
2297 gimple_set_vdef (new_stmt, vdef);
2298 if (vdef && TREE_CODE (vdef) == SSA_NAME)
2299 SSA_NAME_DEF_STMT (vdef) = new_stmt;
2302 /* Return true if statement S has side-effects. We consider a
2303 statement to have side effects if:
2305 - It is a GIMPLE_CALL not marked with ECF_PURE or ECF_CONST.
2306 - Any of its operands are marked TREE_THIS_VOLATILE or TREE_SIDE_EFFECTS. */
2308 bool
2309 gimple_has_side_effects (const gimple *s)
2311 if (is_gimple_debug (s))
2312 return false;
2314 /* We don't have to scan the arguments to check for
2315 volatile arguments, though, at present, we still
2316 do a scan to check for TREE_SIDE_EFFECTS. */
2317 if (gimple_has_volatile_ops (s))
2318 return true;
2320 if (gimple_code (s) == GIMPLE_ASM
2321 && gimple_asm_volatile_p (as_a <const gasm *> (s)))
2322 return true;
2324 if (is_gimple_call (s))
2326 int flags = gimple_call_flags (s);
2328 /* An infinite loop is considered a side effect. */
2329 if (!(flags & (ECF_CONST | ECF_PURE))
2330 || (flags & ECF_LOOPING_CONST_OR_PURE))
2331 return true;
2333 return false;
2336 return false;
2339 /* Helper for gimple_could_trap_p and gimple_assign_rhs_could_trap_p.
2340 Return true if S can trap. When INCLUDE_MEM is true, check whether
2341 the memory operations could trap. When INCLUDE_STORES is true and
2342 S is a GIMPLE_ASSIGN, the LHS of the assignment is also checked. */
2344 bool
2345 gimple_could_trap_p_1 (const gimple *s, bool include_mem, bool include_stores)
2347 tree t, div = NULL_TREE;
2348 enum tree_code op;
2350 if (include_mem)
2352 unsigned i, start = (is_gimple_assign (s) && !include_stores) ? 1 : 0;
2354 for (i = start; i < gimple_num_ops (s); i++)
2355 if (tree_could_trap_p (gimple_op (s, i)))
2356 return true;
2359 switch (gimple_code (s))
2361 case GIMPLE_ASM:
2362 return gimple_asm_volatile_p (as_a <const gasm *> (s));
2364 case GIMPLE_CALL:
2365 if (gimple_call_internal_p (s))
2366 return false;
2367 t = gimple_call_fndecl (s);
2368 /* Assume that indirect and calls to weak functions may trap. */
2369 if (!t || !DECL_P (t) || DECL_WEAK (t))
2370 return true;
2371 return false;
2373 case GIMPLE_ASSIGN:
2374 op = gimple_assign_rhs_code (s);
2376 /* For COND_EXPR only the condition may trap. */
2377 if (op == COND_EXPR)
2378 return tree_could_trap_p (gimple_assign_rhs1 (s));
2380 /* For comparisons we need to check rhs operand types instead of lhs type
2381 (which is BOOLEAN_TYPE). */
2382 if (TREE_CODE_CLASS (op) == tcc_comparison)
2383 t = TREE_TYPE (gimple_assign_rhs1 (s));
2384 else
2385 t = TREE_TYPE (gimple_assign_lhs (s));
2387 if (get_gimple_rhs_class (op) == GIMPLE_BINARY_RHS)
2388 div = gimple_assign_rhs2 (s);
2390 return (operation_could_trap_p (op, FLOAT_TYPE_P (t),
2391 (INTEGRAL_TYPE_P (t)
2392 && TYPE_OVERFLOW_TRAPS (t)),
2393 div));
2395 case GIMPLE_COND:
2396 t = TREE_TYPE (gimple_cond_lhs (s));
2397 return operation_could_trap_p (gimple_cond_code (s),
2398 FLOAT_TYPE_P (t), false, NULL_TREE);
2400 default:
2401 break;
2404 return false;
2407 /* Return true if statement S can trap. */
2409 bool
2410 gimple_could_trap_p (const gimple *s)
2412 return gimple_could_trap_p_1 (s, true, true);
2415 /* Return true if RHS of a GIMPLE_ASSIGN S can trap. */
2417 bool
2418 gimple_assign_rhs_could_trap_p (gimple *s)
2420 gcc_assert (is_gimple_assign (s));
2421 return gimple_could_trap_p_1 (s, true, false);
2425 /* Print debugging information for gimple stmts generated. */
2427 void
2428 dump_gimple_statistics (void)
2430 int i;
2431 uint64_t total_tuples = 0, total_bytes = 0;
2433 if (! GATHER_STATISTICS)
2435 fprintf (stderr, "No GIMPLE statistics\n");
2436 return;
2439 fprintf (stderr, "\nGIMPLE statements\n");
2440 fprintf (stderr, "Kind Stmts Bytes\n");
2441 fprintf (stderr, "---------------------------------------\n");
2442 for (i = 0; i < (int) gimple_alloc_kind_all; ++i)
2444 fprintf (stderr, "%-20s %7" PRIu64 "%c %10" PRIu64 "%c\n",
2445 gimple_alloc_kind_names[i],
2446 SIZE_AMOUNT (gimple_alloc_counts[i]),
2447 SIZE_AMOUNT (gimple_alloc_sizes[i]));
2448 total_tuples += gimple_alloc_counts[i];
2449 total_bytes += gimple_alloc_sizes[i];
2451 fprintf (stderr, "---------------------------------------\n");
2452 fprintf (stderr, "%-20s %7" PRIu64 "%c %10" PRIu64 "%c\n", "Total",
2453 SIZE_AMOUNT (total_tuples), SIZE_AMOUNT (total_bytes));
2454 fprintf (stderr, "---------------------------------------\n");
2458 /* Return the number of operands needed on the RHS of a GIMPLE
2459 assignment for an expression with tree code CODE. */
2461 unsigned
2462 get_gimple_rhs_num_ops (enum tree_code code)
2464 switch (get_gimple_rhs_class (code))
2466 case GIMPLE_UNARY_RHS:
2467 case GIMPLE_SINGLE_RHS:
2468 return 1;
2469 case GIMPLE_BINARY_RHS:
2470 return 2;
2471 case GIMPLE_TERNARY_RHS:
2472 return 3;
2473 default:
2474 gcc_unreachable ();
2478 #define DEFTREECODE(SYM, STRING, TYPE, NARGS) \
2479 (unsigned char) \
2480 ((TYPE) == tcc_unary ? GIMPLE_UNARY_RHS \
2481 : ((TYPE) == tcc_binary \
2482 || (TYPE) == tcc_comparison) ? GIMPLE_BINARY_RHS \
2483 : ((TYPE) == tcc_constant \
2484 || (TYPE) == tcc_declaration \
2485 || (TYPE) == tcc_reference) ? GIMPLE_SINGLE_RHS \
2486 : ((SYM) == TRUTH_AND_EXPR \
2487 || (SYM) == TRUTH_OR_EXPR \
2488 || (SYM) == TRUTH_XOR_EXPR) ? GIMPLE_BINARY_RHS \
2489 : (SYM) == TRUTH_NOT_EXPR ? GIMPLE_UNARY_RHS \
2490 : ((SYM) == COND_EXPR \
2491 || (SYM) == WIDEN_MULT_PLUS_EXPR \
2492 || (SYM) == WIDEN_MULT_MINUS_EXPR \
2493 || (SYM) == DOT_PROD_EXPR \
2494 || (SYM) == SAD_EXPR \
2495 || (SYM) == REALIGN_LOAD_EXPR \
2496 || (SYM) == VEC_COND_EXPR \
2497 || (SYM) == VEC_PERM_EXPR \
2498 || (SYM) == BIT_INSERT_EXPR) ? GIMPLE_TERNARY_RHS \
2499 : ((SYM) == CONSTRUCTOR \
2500 || (SYM) == OBJ_TYPE_REF \
2501 || (SYM) == ADDR_EXPR \
2502 || (SYM) == WITH_SIZE_EXPR \
2503 || (SYM) == SSA_NAME \
2504 || (SYM) == OMP_NEXT_VARIANT \
2505 || (SYM) == OMP_TARGET_DEVICE_MATCHES) ? GIMPLE_SINGLE_RHS \
2506 : GIMPLE_INVALID_RHS),
2507 #define END_OF_BASE_TREE_CODES (unsigned char) GIMPLE_INVALID_RHS,
2509 const unsigned char gimple_rhs_class_table[] = {
2510 #include "all-tree.def"
2513 #undef DEFTREECODE
2514 #undef END_OF_BASE_TREE_CODES
2516 /* Build a GIMPLE_CALL identical to STMT but skipping the arguments in
2517 the positions marked by the set ARGS_TO_SKIP. */
2519 gcall *
2520 gimple_call_copy_skip_args (gcall *stmt, bitmap args_to_skip)
2522 int i;
2523 int nargs = gimple_call_num_args (stmt);
2524 auto_vec<tree> vargs (nargs);
2525 gcall *new_stmt;
2527 for (i = 0; i < nargs; i++)
2528 if (!bitmap_bit_p (args_to_skip, i))
2529 vargs.quick_push (gimple_call_arg (stmt, i));
2531 if (gimple_call_internal_p (stmt))
2532 new_stmt = gimple_build_call_internal_vec (gimple_call_internal_fn (stmt),
2533 vargs);
2534 else
2535 new_stmt = gimple_build_call_vec (gimple_call_fn (stmt), vargs);
2537 if (gimple_call_lhs (stmt))
2538 gimple_call_set_lhs (new_stmt, gimple_call_lhs (stmt));
2540 gimple_set_vuse (new_stmt, gimple_vuse (stmt));
2541 gimple_set_vdef (new_stmt, gimple_vdef (stmt));
2543 if (gimple_has_location (stmt))
2544 gimple_set_location (new_stmt, gimple_location (stmt));
2545 gimple_call_copy_flags (new_stmt, stmt);
2546 gimple_call_set_chain (new_stmt, gimple_call_chain (stmt));
2548 gimple_set_modified (new_stmt, true);
2550 return new_stmt;
2555 /* Return true if the field decls F1 and F2 are at the same offset.
2557 This is intended to be used on GIMPLE types only. */
2559 bool
2560 gimple_compare_field_offset (tree f1, tree f2)
2562 if (DECL_OFFSET_ALIGN (f1) == DECL_OFFSET_ALIGN (f2))
2564 tree offset1 = DECL_FIELD_OFFSET (f1);
2565 tree offset2 = DECL_FIELD_OFFSET (f2);
2566 return ((offset1 == offset2
2567 /* Once gimplification is done, self-referential offsets are
2568 instantiated as operand #2 of the COMPONENT_REF built for
2569 each access and reset. Therefore, they are not relevant
2570 anymore and fields are interchangeable provided that they
2571 represent the same access. */
2572 || (TREE_CODE (offset1) == PLACEHOLDER_EXPR
2573 && TREE_CODE (offset2) == PLACEHOLDER_EXPR
2574 && (DECL_SIZE (f1) == DECL_SIZE (f2)
2575 || (TREE_CODE (DECL_SIZE (f1)) == PLACEHOLDER_EXPR
2576 && TREE_CODE (DECL_SIZE (f2)) == PLACEHOLDER_EXPR)
2577 || operand_equal_p (DECL_SIZE (f1), DECL_SIZE (f2), 0))
2578 && DECL_ALIGN (f1) == DECL_ALIGN (f2))
2579 || operand_equal_p (offset1, offset2, 0))
2580 && tree_int_cst_equal (DECL_FIELD_BIT_OFFSET (f1),
2581 DECL_FIELD_BIT_OFFSET (f2)));
2584 /* Fortran and C do not always agree on what DECL_OFFSET_ALIGN
2585 should be, so handle differing ones specially by decomposing
2586 the offset into a byte and bit offset manually. */
2587 if (tree_fits_shwi_p (DECL_FIELD_OFFSET (f1))
2588 && tree_fits_shwi_p (DECL_FIELD_OFFSET (f2)))
2590 unsigned HOST_WIDE_INT byte_offset1, byte_offset2;
2591 unsigned HOST_WIDE_INT bit_offset1, bit_offset2;
2592 bit_offset1 = TREE_INT_CST_LOW (DECL_FIELD_BIT_OFFSET (f1));
2593 byte_offset1 = (TREE_INT_CST_LOW (DECL_FIELD_OFFSET (f1))
2594 + bit_offset1 / BITS_PER_UNIT);
2595 bit_offset2 = TREE_INT_CST_LOW (DECL_FIELD_BIT_OFFSET (f2));
2596 byte_offset2 = (TREE_INT_CST_LOW (DECL_FIELD_OFFSET (f2))
2597 + bit_offset2 / BITS_PER_UNIT);
2598 if (byte_offset1 != byte_offset2)
2599 return false;
2600 return bit_offset1 % BITS_PER_UNIT == bit_offset2 % BITS_PER_UNIT;
2603 return false;
2607 /* Return a type the same as TYPE except unsigned or
2608 signed according to UNSIGNEDP. */
2610 static tree
2611 gimple_signed_or_unsigned_type (bool unsignedp, tree type)
2613 tree type1;
2614 int i;
2616 type1 = TYPE_MAIN_VARIANT (type);
2617 if (type1 == signed_char_type_node
2618 || type1 == char_type_node
2619 || type1 == unsigned_char_type_node)
2620 return unsignedp ? unsigned_char_type_node : signed_char_type_node;
2621 if (type1 == integer_type_node || type1 == unsigned_type_node)
2622 return unsignedp ? unsigned_type_node : integer_type_node;
2623 if (type1 == short_integer_type_node || type1 == short_unsigned_type_node)
2624 return unsignedp ? short_unsigned_type_node : short_integer_type_node;
2625 if (type1 == long_integer_type_node || type1 == long_unsigned_type_node)
2626 return unsignedp ? long_unsigned_type_node : long_integer_type_node;
2627 if (type1 == long_long_integer_type_node
2628 || type1 == long_long_unsigned_type_node)
2629 return unsignedp
2630 ? long_long_unsigned_type_node
2631 : long_long_integer_type_node;
2633 for (i = 0; i < NUM_INT_N_ENTS; i ++)
2634 if (int_n_enabled_p[i]
2635 && (type1 == int_n_trees[i].unsigned_type
2636 || type1 == int_n_trees[i].signed_type))
2637 return unsignedp
2638 ? int_n_trees[i].unsigned_type
2639 : int_n_trees[i].signed_type;
2641 #if HOST_BITS_PER_WIDE_INT >= 64
2642 if (type1 == intTI_type_node || type1 == unsigned_intTI_type_node)
2643 return unsignedp ? unsigned_intTI_type_node : intTI_type_node;
2644 #endif
2645 if (type1 == intDI_type_node || type1 == unsigned_intDI_type_node)
2646 return unsignedp ? unsigned_intDI_type_node : intDI_type_node;
2647 if (type1 == intSI_type_node || type1 == unsigned_intSI_type_node)
2648 return unsignedp ? unsigned_intSI_type_node : intSI_type_node;
2649 if (type1 == intHI_type_node || type1 == unsigned_intHI_type_node)
2650 return unsignedp ? unsigned_intHI_type_node : intHI_type_node;
2651 if (type1 == intQI_type_node || type1 == unsigned_intQI_type_node)
2652 return unsignedp ? unsigned_intQI_type_node : intQI_type_node;
2654 #define GIMPLE_FIXED_TYPES(NAME) \
2655 if (type1 == short_ ## NAME ## _type_node \
2656 || type1 == unsigned_short_ ## NAME ## _type_node) \
2657 return unsignedp ? unsigned_short_ ## NAME ## _type_node \
2658 : short_ ## NAME ## _type_node; \
2659 if (type1 == NAME ## _type_node \
2660 || type1 == unsigned_ ## NAME ## _type_node) \
2661 return unsignedp ? unsigned_ ## NAME ## _type_node \
2662 : NAME ## _type_node; \
2663 if (type1 == long_ ## NAME ## _type_node \
2664 || type1 == unsigned_long_ ## NAME ## _type_node) \
2665 return unsignedp ? unsigned_long_ ## NAME ## _type_node \
2666 : long_ ## NAME ## _type_node; \
2667 if (type1 == long_long_ ## NAME ## _type_node \
2668 || type1 == unsigned_long_long_ ## NAME ## _type_node) \
2669 return unsignedp ? unsigned_long_long_ ## NAME ## _type_node \
2670 : long_long_ ## NAME ## _type_node;
2672 #define GIMPLE_FIXED_MODE_TYPES(NAME) \
2673 if (type1 == NAME ## _type_node \
2674 || type1 == u ## NAME ## _type_node) \
2675 return unsignedp ? u ## NAME ## _type_node \
2676 : NAME ## _type_node;
2678 #define GIMPLE_FIXED_TYPES_SAT(NAME) \
2679 if (type1 == sat_ ## short_ ## NAME ## _type_node \
2680 || type1 == sat_ ## unsigned_short_ ## NAME ## _type_node) \
2681 return unsignedp ? sat_ ## unsigned_short_ ## NAME ## _type_node \
2682 : sat_ ## short_ ## NAME ## _type_node; \
2683 if (type1 == sat_ ## NAME ## _type_node \
2684 || type1 == sat_ ## unsigned_ ## NAME ## _type_node) \
2685 return unsignedp ? sat_ ## unsigned_ ## NAME ## _type_node \
2686 : sat_ ## NAME ## _type_node; \
2687 if (type1 == sat_ ## long_ ## NAME ## _type_node \
2688 || type1 == sat_ ## unsigned_long_ ## NAME ## _type_node) \
2689 return unsignedp ? sat_ ## unsigned_long_ ## NAME ## _type_node \
2690 : sat_ ## long_ ## NAME ## _type_node; \
2691 if (type1 == sat_ ## long_long_ ## NAME ## _type_node \
2692 || type1 == sat_ ## unsigned_long_long_ ## NAME ## _type_node) \
2693 return unsignedp ? sat_ ## unsigned_long_long_ ## NAME ## _type_node \
2694 : sat_ ## long_long_ ## NAME ## _type_node;
2696 #define GIMPLE_FIXED_MODE_TYPES_SAT(NAME) \
2697 if (type1 == sat_ ## NAME ## _type_node \
2698 || type1 == sat_ ## u ## NAME ## _type_node) \
2699 return unsignedp ? sat_ ## u ## NAME ## _type_node \
2700 : sat_ ## NAME ## _type_node;
2702 GIMPLE_FIXED_TYPES (fract);
2703 GIMPLE_FIXED_TYPES_SAT (fract);
2704 GIMPLE_FIXED_TYPES (accum);
2705 GIMPLE_FIXED_TYPES_SAT (accum);
2707 GIMPLE_FIXED_MODE_TYPES (qq);
2708 GIMPLE_FIXED_MODE_TYPES (hq);
2709 GIMPLE_FIXED_MODE_TYPES (sq);
2710 GIMPLE_FIXED_MODE_TYPES (dq);
2711 GIMPLE_FIXED_MODE_TYPES (tq);
2712 GIMPLE_FIXED_MODE_TYPES_SAT (qq);
2713 GIMPLE_FIXED_MODE_TYPES_SAT (hq);
2714 GIMPLE_FIXED_MODE_TYPES_SAT (sq);
2715 GIMPLE_FIXED_MODE_TYPES_SAT (dq);
2716 GIMPLE_FIXED_MODE_TYPES_SAT (tq);
2717 GIMPLE_FIXED_MODE_TYPES (ha);
2718 GIMPLE_FIXED_MODE_TYPES (sa);
2719 GIMPLE_FIXED_MODE_TYPES (da);
2720 GIMPLE_FIXED_MODE_TYPES (ta);
2721 GIMPLE_FIXED_MODE_TYPES_SAT (ha);
2722 GIMPLE_FIXED_MODE_TYPES_SAT (sa);
2723 GIMPLE_FIXED_MODE_TYPES_SAT (da);
2724 GIMPLE_FIXED_MODE_TYPES_SAT (ta);
2726 /* For ENUMERAL_TYPEs in C++, must check the mode of the types, not
2727 the precision; they have precision set to match their range, but
2728 may use a wider mode to match an ABI. If we change modes, we may
2729 wind up with bad conversions. For INTEGER_TYPEs in C, must check
2730 the precision as well, so as to yield correct results for
2731 bit-field types. C++ does not have these separate bit-field
2732 types, and producing a signed or unsigned variant of an
2733 ENUMERAL_TYPE may cause other problems as well. */
2734 if (!INTEGRAL_TYPE_P (type)
2735 || TYPE_UNSIGNED (type) == unsignedp)
2736 return type;
2738 #define TYPE_OK(node) \
2739 (TYPE_MODE (type) == TYPE_MODE (node) \
2740 && TYPE_PRECISION (type) == TYPE_PRECISION (node))
2741 if (TYPE_OK (signed_char_type_node))
2742 return unsignedp ? unsigned_char_type_node : signed_char_type_node;
2743 if (TYPE_OK (integer_type_node))
2744 return unsignedp ? unsigned_type_node : integer_type_node;
2745 if (TYPE_OK (short_integer_type_node))
2746 return unsignedp ? short_unsigned_type_node : short_integer_type_node;
2747 if (TYPE_OK (long_integer_type_node))
2748 return unsignedp ? long_unsigned_type_node : long_integer_type_node;
2749 if (TYPE_OK (long_long_integer_type_node))
2750 return (unsignedp
2751 ? long_long_unsigned_type_node
2752 : long_long_integer_type_node);
2754 for (i = 0; i < NUM_INT_N_ENTS; i ++)
2755 if (int_n_enabled_p[i]
2756 && TYPE_MODE (type) == int_n_data[i].m
2757 && TYPE_PRECISION (type) == int_n_data[i].bitsize)
2758 return unsignedp
2759 ? int_n_trees[i].unsigned_type
2760 : int_n_trees[i].signed_type;
2762 #if HOST_BITS_PER_WIDE_INT >= 64
2763 if (TYPE_OK (intTI_type_node))
2764 return unsignedp ? unsigned_intTI_type_node : intTI_type_node;
2765 #endif
2766 if (TYPE_OK (intDI_type_node))
2767 return unsignedp ? unsigned_intDI_type_node : intDI_type_node;
2768 if (TYPE_OK (intSI_type_node))
2769 return unsignedp ? unsigned_intSI_type_node : intSI_type_node;
2770 if (TYPE_OK (intHI_type_node))
2771 return unsignedp ? unsigned_intHI_type_node : intHI_type_node;
2772 if (TYPE_OK (intQI_type_node))
2773 return unsignedp ? unsigned_intQI_type_node : intQI_type_node;
2775 #undef GIMPLE_FIXED_TYPES
2776 #undef GIMPLE_FIXED_MODE_TYPES
2777 #undef GIMPLE_FIXED_TYPES_SAT
2778 #undef GIMPLE_FIXED_MODE_TYPES_SAT
2779 #undef TYPE_OK
2781 return build_nonstandard_integer_type (TYPE_PRECISION (type), unsignedp);
2785 /* Return an unsigned type the same as TYPE in other respects. */
2787 tree
2788 gimple_unsigned_type (tree type)
2790 return gimple_signed_or_unsigned_type (true, type);
2794 /* Return a signed type the same as TYPE in other respects. */
2796 tree
2797 gimple_signed_type (tree type)
2799 return gimple_signed_or_unsigned_type (false, type);
2803 /* Return the typed-based alias set for T, which may be an expression
2804 or a type. Return -1 if we don't do anything special. */
2806 alias_set_type
2807 gimple_get_alias_set (tree t)
2809 /* That's all the expressions we handle specially. */
2810 if (!TYPE_P (t))
2811 return -1;
2813 /* For convenience, follow the C standard when dealing with
2814 character types. Any object may be accessed via an lvalue that
2815 has character type. */
2816 if (t == char_type_node
2817 || t == signed_char_type_node
2818 || t == unsigned_char_type_node)
2819 return 0;
2821 /* Allow aliasing between signed and unsigned variants of the same
2822 type. We treat the signed variant as canonical. */
2823 if (TREE_CODE (t) == INTEGER_TYPE && TYPE_UNSIGNED (t))
2825 tree t1 = gimple_signed_type (t);
2827 /* t1 == t can happen for boolean nodes which are always unsigned. */
2828 if (t1 != t)
2829 return get_alias_set (t1);
2832 /* Allow aliasing between enumeral types and the underlying
2833 integer type. This is required for C since those are
2834 compatible types. */
2835 else if (TREE_CODE (t) == ENUMERAL_TYPE)
2837 tree t1 = lang_hooks.types.type_for_size (tree_to_uhwi (TYPE_SIZE (t)),
2838 false /* short-cut above */);
2839 return get_alias_set (t1);
2842 return -1;
2846 /* Helper for gimple_ior_addresses_taken_1. */
2848 static bool
2849 gimple_ior_addresses_taken_1 (gimple *, tree addr, tree, void *data)
2851 bitmap addresses_taken = (bitmap)data;
2852 addr = get_base_address (addr);
2853 if (addr
2854 && DECL_P (addr))
2856 bitmap_set_bit (addresses_taken, DECL_UID (addr));
2857 return true;
2859 return false;
2862 /* Set the bit for the uid of all decls that have their address taken
2863 in STMT in the ADDRESSES_TAKEN bitmap. Returns true if there
2864 were any in this stmt. */
2866 bool
2867 gimple_ior_addresses_taken (bitmap addresses_taken, gimple *stmt)
2869 return walk_stmt_load_store_addr_ops (stmt, addresses_taken, NULL, NULL,
2870 gimple_ior_addresses_taken_1);
2874 /* Return true when STMTs arguments and return value match those of FNDECL,
2875 a decl of a builtin function. */
2877 bool
2878 gimple_builtin_call_types_compatible_p (const gimple *stmt, tree fndecl)
2880 gcc_checking_assert (DECL_BUILT_IN_CLASS (fndecl) != NOT_BUILT_IN);
2882 if (DECL_BUILT_IN_CLASS (fndecl) == BUILT_IN_NORMAL)
2883 if (tree decl = builtin_decl_explicit (DECL_FUNCTION_CODE (fndecl)))
2884 fndecl = decl;
2886 tree ret = gimple_call_lhs (stmt);
2887 if (ret
2888 && !useless_type_conversion_p (TREE_TYPE (ret),
2889 TREE_TYPE (TREE_TYPE (fndecl))))
2890 return false;
2892 tree targs = TYPE_ARG_TYPES (TREE_TYPE (fndecl));
2893 unsigned nargs = gimple_call_num_args (stmt);
2894 for (unsigned i = 0; i < nargs; ++i)
2896 /* Variadic args follow. */
2897 if (!targs)
2898 return true;
2899 tree arg = gimple_call_arg (stmt, i);
2900 tree type = TREE_VALUE (targs);
2901 if (!useless_type_conversion_p (type, TREE_TYPE (arg))
2902 /* char/short integral arguments are promoted to int
2903 by several frontends if targetm.calls.promote_prototypes
2904 is true. Allow such promotion too. */
2905 && !(INTEGRAL_TYPE_P (type)
2906 && TYPE_PRECISION (type) < TYPE_PRECISION (integer_type_node)
2907 && targetm.calls.promote_prototypes (TREE_TYPE (fndecl))
2908 && useless_type_conversion_p (integer_type_node,
2909 TREE_TYPE (arg))))
2910 return false;
2911 targs = TREE_CHAIN (targs);
2913 if (targs && !VOID_TYPE_P (TREE_VALUE (targs)))
2914 return false;
2915 return true;
2918 /* Return true when STMT is operator a replaceable delete call. */
2920 bool
2921 gimple_call_operator_delete_p (const gcall *stmt)
2923 tree fndecl;
2925 if ((fndecl = gimple_call_fndecl (stmt)) != NULL_TREE)
2926 return DECL_IS_OPERATOR_DELETE_P (fndecl);
2927 return false;
2930 /* Return true when STMT is builtins call. */
2932 bool
2933 gimple_call_builtin_p (const gimple *stmt)
2935 tree fndecl;
2936 if (is_gimple_call (stmt)
2937 && (fndecl = gimple_call_fndecl (stmt)) != NULL_TREE
2938 && DECL_BUILT_IN_CLASS (fndecl) != NOT_BUILT_IN)
2939 return gimple_builtin_call_types_compatible_p (stmt, fndecl);
2940 return false;
2943 /* Return true when STMT is builtins call to CLASS. */
2945 bool
2946 gimple_call_builtin_p (const gimple *stmt, enum built_in_class klass)
2948 tree fndecl;
2949 if (is_gimple_call (stmt)
2950 && (fndecl = gimple_call_fndecl (stmt)) != NULL_TREE
2951 && DECL_BUILT_IN_CLASS (fndecl) == klass)
2952 return gimple_builtin_call_types_compatible_p (stmt, fndecl);
2953 return false;
2956 /* Return true when STMT is builtins call to CODE of CLASS. */
2958 bool
2959 gimple_call_builtin_p (const gimple *stmt, enum built_in_function code)
2961 tree fndecl;
2962 if (is_gimple_call (stmt)
2963 && (fndecl = gimple_call_fndecl (stmt)) != NULL_TREE
2964 && fndecl_built_in_p (fndecl, code))
2965 return gimple_builtin_call_types_compatible_p (stmt, fndecl);
2966 return false;
2969 /* If CALL is a call to a combined_fn (i.e. an internal function or
2970 a normal built-in function), return its code, otherwise return
2971 CFN_LAST. */
2973 combined_fn
2974 gimple_call_combined_fn (const gimple *stmt)
2976 if (const gcall *call = dyn_cast <const gcall *> (stmt))
2978 if (gimple_call_internal_p (call))
2979 return as_combined_fn (gimple_call_internal_fn (call));
2981 tree fndecl = gimple_call_fndecl (stmt);
2982 if (fndecl
2983 && fndecl_built_in_p (fndecl, BUILT_IN_NORMAL)
2984 && gimple_builtin_call_types_compatible_p (stmt, fndecl))
2985 return as_combined_fn (DECL_FUNCTION_CODE (fndecl));
2987 return CFN_LAST;
2990 /* Return true if STMT clobbers memory. STMT is required to be a
2991 GIMPLE_ASM. */
2993 bool
2994 gimple_asm_clobbers_memory_p (const gasm *stmt)
2996 unsigned i;
2998 for (i = 0; i < gimple_asm_nclobbers (stmt); i++)
3000 tree op = gimple_asm_clobber_op (stmt, i);
3001 if (strcmp (TREE_STRING_POINTER (TREE_VALUE (op)), "memory") == 0)
3002 return true;
3005 /* Non-empty basic ASM implicitly clobbers memory. */
3006 if (gimple_asm_basic_p (stmt) && strlen (gimple_asm_string (stmt)) != 0)
3007 return true;
3009 return false;
3012 /* Dump bitmap SET (assumed to contain VAR_DECLs) to FILE. */
3014 void
3015 dump_decl_set (FILE *file, bitmap set)
3017 if (set)
3019 bitmap_iterator bi;
3020 unsigned i;
3022 fprintf (file, "{ ");
3024 EXECUTE_IF_SET_IN_BITMAP (set, 0, i, bi)
3026 fprintf (file, "D.%u", i);
3027 fprintf (file, " ");
3030 fprintf (file, "}");
3032 else
3033 fprintf (file, "NIL");
3036 /* Return true when CALL is a call stmt that definitely doesn't
3037 free any memory or makes it unavailable otherwise. */
3038 bool
3039 nonfreeing_call_p (gimple *call)
3041 if (gimple_call_builtin_p (call, BUILT_IN_NORMAL)
3042 && gimple_call_flags (call) & ECF_LEAF)
3043 switch (DECL_FUNCTION_CODE (gimple_call_fndecl (call)))
3045 /* Just in case these become ECF_LEAF in the future. */
3046 case BUILT_IN_FREE:
3047 case BUILT_IN_TM_FREE:
3048 case BUILT_IN_REALLOC:
3049 case BUILT_IN_STACK_RESTORE:
3050 case BUILT_IN_GOMP_FREE:
3051 case BUILT_IN_GOMP_REALLOC:
3052 return false;
3053 default:
3054 return true;
3056 else if (gimple_call_internal_p (call))
3057 switch (gimple_call_internal_fn (call))
3059 case IFN_ABNORMAL_DISPATCHER:
3060 return true;
3061 case IFN_ASAN_MARK:
3062 return tree_to_uhwi (gimple_call_arg (call, 0)) == ASAN_MARK_UNPOISON;
3063 default:
3064 if (gimple_call_flags (call) & ECF_LEAF)
3065 return true;
3066 return false;
3069 tree fndecl = gimple_call_fndecl (call);
3070 if (!fndecl)
3071 return false;
3072 struct cgraph_node *n = cgraph_node::get (fndecl);
3073 if (!n)
3074 return false;
3075 enum availability availability;
3076 n = n->function_symbol (&availability);
3077 if (!n || availability <= AVAIL_INTERPOSABLE)
3078 return false;
3079 return n->nonfreeing_fn;
3082 /* Return true when CALL is a call stmt that definitely need not
3083 be considered to be a memory barrier. */
3084 bool
3085 nonbarrier_call_p (gimple *call)
3087 if (gimple_call_flags (call) & (ECF_PURE | ECF_CONST))
3088 return true;
3089 /* Should extend this to have a nonbarrier_fn flag, just as above in
3090 the nonfreeing case. */
3091 return false;
3094 /* Callback for walk_stmt_load_store_ops.
3096 Return TRUE if OP will dereference the tree stored in DATA, FALSE
3097 otherwise.
3099 This routine only makes a superficial check for a dereference. Thus
3100 it must only be used if it is safe to return a false negative. */
3101 static bool
3102 check_loadstore (gimple *, tree op, tree, void *data)
3104 if (TREE_CODE (op) == MEM_REF || TREE_CODE (op) == TARGET_MEM_REF)
3106 /* Some address spaces may legitimately dereference zero. */
3107 addr_space_t as = TYPE_ADDR_SPACE (TREE_TYPE (op));
3108 if (targetm.addr_space.zero_address_valid (as))
3109 return false;
3111 return operand_equal_p (TREE_OPERAND (op, 0), (tree)data, 0);
3113 return false;
3117 /* Return true if OP can be inferred to be non-NULL after STMT executes,
3118 either by using a pointer dereference or attributes. */
3119 bool
3120 infer_nonnull_range (gimple *stmt, tree op)
3122 return (infer_nonnull_range_by_dereference (stmt, op)
3123 || infer_nonnull_range_by_attribute (stmt, op));
3126 /* Return true if OP can be inferred to be non-NULL after STMT
3127 executes by using a pointer dereference. */
3128 bool
3129 infer_nonnull_range_by_dereference (gimple *stmt, tree op)
3131 /* We can only assume that a pointer dereference will yield
3132 non-NULL if -fdelete-null-pointer-checks is enabled. */
3133 if (!flag_delete_null_pointer_checks
3134 || !POINTER_TYPE_P (TREE_TYPE (op))
3135 || gimple_code (stmt) == GIMPLE_ASM
3136 || gimple_clobber_p (stmt))
3137 return false;
3139 if (walk_stmt_load_store_ops (stmt, (void *)op,
3140 check_loadstore, check_loadstore))
3141 return true;
3143 return false;
3146 /* Return true if OP can be inferred to be a non-NULL after STMT
3147 executes by using attributes. If OP2 is non-NULL and nonnull_if_nonzero
3148 is the only attribute implying OP being non-NULL and the corresponding
3149 argument isn't non-zero INTEGER_CST, set *OP2 to the corresponding
3150 argument and return true (in that case returning true doesn't mean
3151 OP can be unconditionally inferred to be non-NULL, but conditionally). */
3152 bool
3153 infer_nonnull_range_by_attribute (gimple *stmt, tree op, tree *op2)
3155 if (op2)
3156 *op2 = NULL_TREE;
3158 /* We can only assume that a pointer dereference will yield
3159 non-NULL if -fdelete-null-pointer-checks is enabled. */
3160 if (!flag_delete_null_pointer_checks
3161 || !POINTER_TYPE_P (TREE_TYPE (op))
3162 || gimple_code (stmt) == GIMPLE_ASM)
3163 return false;
3165 if (is_gimple_call (stmt) && !gimple_call_internal_p (stmt))
3167 tree fntype = gimple_call_fntype (stmt);
3168 tree attrs = TYPE_ATTRIBUTES (fntype);
3169 for (; attrs; attrs = TREE_CHAIN (attrs))
3171 attrs = lookup_attribute ("nonnull", attrs);
3173 /* If "nonnull" wasn't specified, we know nothing about
3174 the argument, unless "nonnull_if_nonzero" attribute is
3175 present. */
3176 if (attrs == NULL_TREE)
3177 break;
3179 /* If "nonnull" applies to all the arguments, then ARG
3180 is non-null if it's in the argument list. */
3181 if (TREE_VALUE (attrs) == NULL_TREE)
3183 for (unsigned int i = 0; i < gimple_call_num_args (stmt); i++)
3185 if (POINTER_TYPE_P (TREE_TYPE (gimple_call_arg (stmt, i)))
3186 && operand_equal_p (op, gimple_call_arg (stmt, i), 0))
3187 return true;
3189 return false;
3192 /* Now see if op appears in the nonnull list. */
3193 for (tree t = TREE_VALUE (attrs); t; t = TREE_CHAIN (t))
3195 unsigned int idx = TREE_INT_CST_LOW (TREE_VALUE (t)) - 1;
3196 if (idx < gimple_call_num_args (stmt))
3198 tree arg = gimple_call_arg (stmt, idx);
3199 if (operand_equal_p (op, arg, 0))
3200 return true;
3205 for (attrs = TYPE_ATTRIBUTES (fntype);
3206 (attrs = lookup_attribute ("nonnull_if_nonzero", attrs));
3207 attrs = TREE_CHAIN (attrs))
3209 tree args = TREE_VALUE (attrs);
3210 unsigned int idx = TREE_INT_CST_LOW (TREE_VALUE (args)) - 1;
3211 unsigned int idx2
3212 = TREE_INT_CST_LOW (TREE_VALUE (TREE_CHAIN (args))) - 1;
3213 if (idx < gimple_call_num_args (stmt)
3214 && idx2 < gimple_call_num_args (stmt)
3215 && operand_equal_p (op, gimple_call_arg (stmt, idx), 0))
3217 tree arg2 = gimple_call_arg (stmt, idx2);
3218 if (!INTEGRAL_TYPE_P (TREE_TYPE (arg2)))
3219 return false;
3220 if (integer_nonzerop (arg2))
3221 return true;
3222 if (integer_zerop (arg2))
3223 return false;
3224 if (op2)
3226 /* This case is meant for ubsan instrumentation.
3227 The caller can check at runtime if *OP2 is
3228 non-zero and OP is null. */
3229 *op2 = arg2;
3230 return true;
3232 return tree_expr_nonzero_p (arg2);
3237 /* If this function is marked as returning non-null, then we can
3238 infer OP is non-null if it is used in the return statement. */
3239 if (greturn *return_stmt = dyn_cast <greturn *> (stmt))
3240 if (gimple_return_retval (return_stmt)
3241 && operand_equal_p (gimple_return_retval (return_stmt), op, 0)
3242 && lookup_attribute ("returns_nonnull",
3243 TYPE_ATTRIBUTES (TREE_TYPE (current_function_decl))))
3244 return true;
3246 return false;
3249 /* Compare two case labels. Because the front end should already have
3250 made sure that case ranges do not overlap, it is enough to only compare
3251 the CASE_LOW values of each case label. */
3253 static int
3254 compare_case_labels (const void *p1, const void *p2)
3256 const_tree const case1 = *(const_tree const*)p1;
3257 const_tree const case2 = *(const_tree const*)p2;
3259 /* The 'default' case label always goes first. */
3260 if (!CASE_LOW (case1))
3261 return -1;
3262 else if (!CASE_LOW (case2))
3263 return 1;
3264 else
3265 return tree_int_cst_compare (CASE_LOW (case1), CASE_LOW (case2));
3268 /* Sort the case labels in LABEL_VEC in place in ascending order. */
3270 void
3271 sort_case_labels (vec<tree> &label_vec)
3273 label_vec.qsort (compare_case_labels);
3276 /* Prepare a vector of case labels to be used in a GIMPLE_SWITCH statement.
3278 LABELS is a vector that contains all case labels to look at.
3280 INDEX_TYPE is the type of the switch index expression. Case labels
3281 in LABELS are discarded if their values are not in the value range
3282 covered by INDEX_TYPE. The remaining case label values are folded
3283 to INDEX_TYPE.
3285 If a default case exists in LABELS, it is removed from LABELS and
3286 returned in DEFAULT_CASEP. If no default case exists, but the
3287 case labels already cover the whole range of INDEX_TYPE, a default
3288 case is returned pointing to one of the existing case labels.
3289 Otherwise DEFAULT_CASEP is set to NULL_TREE.
3291 DEFAULT_CASEP may be NULL, in which case the above comment doesn't
3292 apply and no action is taken regardless of whether a default case is
3293 found or not. */
3295 void
3296 preprocess_case_label_vec_for_gimple (vec<tree> &labels,
3297 tree index_type,
3298 tree *default_casep)
3300 tree min_value, max_value;
3301 tree default_case = NULL_TREE;
3302 size_t i, len;
3304 i = 0;
3305 min_value = TYPE_MIN_VALUE (index_type);
3306 max_value = TYPE_MAX_VALUE (index_type);
3307 while (i < labels.length ())
3309 tree elt = labels[i];
3310 tree low = CASE_LOW (elt);
3311 tree high = CASE_HIGH (elt);
3312 bool remove_element = false;
3314 if (low)
3316 gcc_checking_assert (TREE_CODE (low) == INTEGER_CST);
3317 gcc_checking_assert (!high || TREE_CODE (high) == INTEGER_CST);
3319 /* This is a non-default case label, i.e. it has a value.
3321 See if the case label is reachable within the range of
3322 the index type. Remove out-of-range case values. Turn
3323 case ranges into a canonical form (high > low strictly)
3324 and convert the case label values to the index type.
3326 NB: The type of gimple_switch_index() may be the promoted
3327 type, but the case labels retain the original type. */
3329 if (high)
3331 /* This is a case range. Discard empty ranges.
3332 If the bounds or the range are equal, turn this
3333 into a simple (one-value) case. */
3334 int cmp = tree_int_cst_compare (high, low);
3335 if (cmp < 0)
3336 remove_element = true;
3337 else if (cmp == 0)
3338 high = NULL_TREE;
3341 if (! high)
3343 /* If the simple case value is unreachable, ignore it. */
3344 if ((TREE_CODE (min_value) == INTEGER_CST
3345 && tree_int_cst_compare (low, min_value) < 0)
3346 || (TREE_CODE (max_value) == INTEGER_CST
3347 && tree_int_cst_compare (low, max_value) > 0))
3348 remove_element = true;
3349 else
3350 low = fold_convert (index_type, low);
3352 else
3354 /* If the entire case range is unreachable, ignore it. */
3355 if ((TREE_CODE (min_value) == INTEGER_CST
3356 && tree_int_cst_compare (high, min_value) < 0)
3357 || (TREE_CODE (max_value) == INTEGER_CST
3358 && tree_int_cst_compare (low, max_value) > 0))
3359 remove_element = true;
3360 else
3362 /* If the lower bound is less than the index type's
3363 minimum value, truncate the range bounds. */
3364 if (TREE_CODE (min_value) == INTEGER_CST
3365 && tree_int_cst_compare (low, min_value) < 0)
3366 low = min_value;
3367 low = fold_convert (index_type, low);
3369 /* If the upper bound is greater than the index type's
3370 maximum value, truncate the range bounds. */
3371 if (TREE_CODE (max_value) == INTEGER_CST
3372 && tree_int_cst_compare (high, max_value) > 0)
3373 high = max_value;
3374 high = fold_convert (index_type, high);
3376 /* We may have folded a case range to a one-value case. */
3377 if (tree_int_cst_equal (low, high))
3378 high = NULL_TREE;
3382 CASE_LOW (elt) = low;
3383 CASE_HIGH (elt) = high;
3385 else
3387 gcc_assert (!default_case);
3388 default_case = elt;
3389 /* The default case must be passed separately to the
3390 gimple_build_switch routine. But if DEFAULT_CASEP
3391 is NULL, we do not remove the default case (it would
3392 be completely lost). */
3393 if (default_casep)
3394 remove_element = true;
3397 if (remove_element)
3398 labels.ordered_remove (i);
3399 else
3400 i++;
3402 len = i;
3404 if (!labels.is_empty ())
3405 sort_case_labels (labels);
3407 if (default_casep && !default_case)
3409 /* If the switch has no default label, add one, so that we jump
3410 around the switch body. If the labels already cover the whole
3411 range of the switch index_type, add the default label pointing
3412 to one of the existing labels. */
3413 if (len
3414 && TYPE_MIN_VALUE (index_type)
3415 && TYPE_MAX_VALUE (index_type)
3416 && tree_int_cst_equal (CASE_LOW (labels[0]),
3417 TYPE_MIN_VALUE (index_type)))
3419 tree low, high = CASE_HIGH (labels[len - 1]);
3420 if (!high)
3421 high = CASE_LOW (labels[len - 1]);
3422 if (tree_int_cst_equal (high, TYPE_MAX_VALUE (index_type)))
3424 tree widest_label = labels[0];
3425 for (i = 1; i < len; i++)
3427 high = CASE_LOW (labels[i]);
3428 low = CASE_HIGH (labels[i - 1]);
3429 if (!low)
3430 low = CASE_LOW (labels[i - 1]);
3432 if (CASE_HIGH (labels[i]) != NULL_TREE
3433 && (CASE_HIGH (widest_label) == NULL_TREE
3434 || (wi::gtu_p
3435 (wi::to_wide (CASE_HIGH (labels[i]))
3436 - wi::to_wide (CASE_LOW (labels[i])),
3437 wi::to_wide (CASE_HIGH (widest_label))
3438 - wi::to_wide (CASE_LOW (widest_label))))))
3439 widest_label = labels[i];
3441 if (wi::to_wide (low) + 1 != wi::to_wide (high))
3442 break;
3444 if (i == len)
3446 /* Designate the label with the widest range to be the
3447 default label. */
3448 tree label = CASE_LABEL (widest_label);
3449 default_case = build_case_label (NULL_TREE, NULL_TREE,
3450 label);
3456 if (default_casep)
3457 *default_casep = default_case;
3460 /* Set the location of all statements in SEQ to LOC. */
3462 void
3463 gimple_seq_set_location (gimple_seq seq, location_t loc)
3465 for (gimple_stmt_iterator i = gsi_start (seq); !gsi_end_p (i); gsi_next (&i))
3466 gimple_set_location (gsi_stmt (i), loc);
3469 /* Release SSA_NAMEs in SEQ as well as the GIMPLE statements. */
3471 void
3472 gimple_seq_discard (gimple_seq seq)
3474 gimple_stmt_iterator gsi;
3476 for (gsi = gsi_start (seq); !gsi_end_p (gsi); )
3478 gimple *stmt = gsi_stmt (gsi);
3479 gsi_remove (&gsi, true);
3480 release_defs (stmt);
3481 ggc_free (stmt);
3485 /* See if STMT now calls function that takes no parameters and if so, drop
3486 call arguments. This is used when devirtualization machinery redirects
3487 to __builtin_unreachable or __cxa_pure_virtual. */
3489 void
3490 maybe_remove_unused_call_args (struct function *fn, gimple *stmt)
3492 tree decl = gimple_call_fndecl (stmt);
3493 if (TYPE_ARG_TYPES (TREE_TYPE (decl))
3494 && TREE_VALUE (TYPE_ARG_TYPES (TREE_TYPE (decl))) == void_type_node
3495 && gimple_call_num_args (stmt))
3497 gimple_set_num_ops (stmt, 3);
3498 update_stmt_fn (fn, stmt);
3502 /* Return false if STMT will likely expand to real function call. */
3504 bool
3505 gimple_inexpensive_call_p (gcall *stmt)
3507 if (gimple_call_internal_p (stmt))
3508 return true;
3509 tree decl = gimple_call_fndecl (stmt);
3510 if (decl && is_inexpensive_builtin (decl))
3511 return true;
3512 return false;
3515 /* Return a non-artificial location for STMT. If STMT does not have
3516 location information, get the location from EXPR. */
3518 location_t
3519 gimple_or_expr_nonartificial_location (gimple *stmt, tree expr)
3521 location_t loc = gimple_nonartificial_location (stmt);
3522 if (loc == UNKNOWN_LOCATION && EXPR_HAS_LOCATION (expr))
3523 loc = tree_nonartificial_location (expr);
3524 return expansion_point_location_if_in_system_header (loc);
3528 #if CHECKING_P
3530 namespace selftest {
3532 /* Selftests for core gimple structures. */
3534 /* Verify that STMT is pretty-printed as EXPECTED.
3535 Helper function for selftests. */
3537 static void
3538 verify_gimple_pp (const char *expected, gimple *stmt)
3540 pretty_printer pp;
3541 pp_gimple_stmt_1 (&pp, stmt, 0 /* spc */, TDF_NONE /* flags */);
3542 ASSERT_STREQ (expected, pp_formatted_text (&pp));
3545 /* Build a GIMPLE_ASSIGN equivalent to
3546 tmp = 5;
3547 and verify various properties of it. */
3549 static void
3550 test_assign_single ()
3552 tree type = integer_type_node;
3553 tree lhs = build_decl (UNKNOWN_LOCATION, VAR_DECL,
3554 get_identifier ("tmp"),
3555 type);
3556 tree rhs = build_int_cst (type, 5);
3557 gassign *stmt = gimple_build_assign (lhs, rhs);
3558 verify_gimple_pp ("tmp = 5;", stmt);
3560 ASSERT_TRUE (is_gimple_assign (stmt));
3561 ASSERT_EQ (lhs, gimple_assign_lhs (stmt));
3562 ASSERT_EQ (lhs, gimple_get_lhs (stmt));
3563 ASSERT_EQ (rhs, gimple_assign_rhs1 (stmt));
3564 ASSERT_EQ (NULL, gimple_assign_rhs2 (stmt));
3565 ASSERT_EQ (NULL, gimple_assign_rhs3 (stmt));
3566 ASSERT_TRUE (gimple_assign_single_p (stmt));
3567 ASSERT_EQ (INTEGER_CST, gimple_assign_rhs_code (stmt));
3570 /* Build a GIMPLE_ASSIGN equivalent to
3571 tmp = a * b;
3572 and verify various properties of it. */
3574 static void
3575 test_assign_binop ()
3577 tree type = integer_type_node;
3578 tree lhs = build_decl (UNKNOWN_LOCATION, VAR_DECL,
3579 get_identifier ("tmp"),
3580 type);
3581 tree a = build_decl (UNKNOWN_LOCATION, VAR_DECL,
3582 get_identifier ("a"),
3583 type);
3584 tree b = build_decl (UNKNOWN_LOCATION, VAR_DECL,
3585 get_identifier ("b"),
3586 type);
3587 gassign *stmt = gimple_build_assign (lhs, MULT_EXPR, a, b);
3588 verify_gimple_pp ("tmp = a * b;", stmt);
3590 ASSERT_TRUE (is_gimple_assign (stmt));
3591 ASSERT_EQ (lhs, gimple_assign_lhs (stmt));
3592 ASSERT_EQ (lhs, gimple_get_lhs (stmt));
3593 ASSERT_EQ (a, gimple_assign_rhs1 (stmt));
3594 ASSERT_EQ (b, gimple_assign_rhs2 (stmt));
3595 ASSERT_EQ (NULL, gimple_assign_rhs3 (stmt));
3596 ASSERT_FALSE (gimple_assign_single_p (stmt));
3597 ASSERT_EQ (MULT_EXPR, gimple_assign_rhs_code (stmt));
3600 /* Build a GIMPLE_NOP and verify various properties of it. */
3602 static void
3603 test_nop_stmt ()
3605 gimple *stmt = gimple_build_nop ();
3606 verify_gimple_pp ("GIMPLE_NOP", stmt);
3607 ASSERT_EQ (GIMPLE_NOP, gimple_code (stmt));
3608 ASSERT_EQ (NULL, gimple_get_lhs (stmt));
3609 ASSERT_FALSE (gimple_assign_single_p (stmt));
3612 /* Build a GIMPLE_RETURN equivalent to
3613 return 7;
3614 and verify various properties of it. */
3616 static void
3617 test_return_stmt ()
3619 tree type = integer_type_node;
3620 tree val = build_int_cst (type, 7);
3621 greturn *stmt = gimple_build_return (val);
3622 verify_gimple_pp ("return 7;", stmt);
3624 ASSERT_EQ (GIMPLE_RETURN, gimple_code (stmt));
3625 ASSERT_EQ (NULL, gimple_get_lhs (stmt));
3626 ASSERT_EQ (val, gimple_return_retval (stmt));
3627 ASSERT_FALSE (gimple_assign_single_p (stmt));
3630 /* Build a GIMPLE_RETURN equivalent to
3631 return;
3632 and verify various properties of it. */
3634 static void
3635 test_return_without_value ()
3637 greturn *stmt = gimple_build_return (NULL);
3638 verify_gimple_pp ("return;", stmt);
3640 ASSERT_EQ (GIMPLE_RETURN, gimple_code (stmt));
3641 ASSERT_EQ (NULL, gimple_get_lhs (stmt));
3642 ASSERT_EQ (NULL, gimple_return_retval (stmt));
3643 ASSERT_FALSE (gimple_assign_single_p (stmt));
3646 /* Run all of the selftests within this file. */
3648 void
3649 gimple_cc_tests ()
3651 test_assign_single ();
3652 test_assign_binop ();
3653 test_nop_stmt ();
3654 test_return_stmt ();
3655 test_return_without_value ();
3658 } // namespace selftest
3661 #endif /* CHECKING_P */