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