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