Fix a bug in varpool_finalize_decl to match trunk
[official-gcc.git] / integration / gcc / gimple.c
blobe12f7d92c2e31a4d4603f14a4c29366f8abd0106
1 /* Gimple IR support functions.
3 Copyright (C) 2007-2013 Free Software Foundation, Inc.
4 Contributed by Aldy Hernandez <aldyh@redhat.com>
6 This file is part of GCC.
8 GCC is free software; you can redistribute it and/or modify it under
9 the terms of the GNU General Public License as published by the Free
10 Software Foundation; either version 3, or (at your option) any later
11 version.
13 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
14 WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16 for more details.
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING3. If not see
20 <http://www.gnu.org/licenses/>. */
22 #include "config.h"
23 #include "system.h"
24 #include "coretypes.h"
25 #include "tm.h"
26 #include "target.h"
27 #include "tree.h"
28 #include "ggc.h"
29 #include "hard-reg-set.h"
30 #include "basic-block.h"
31 #include "gimple.h"
32 #include "diagnostic.h"
33 #include "tree-flow.h"
34 #include "value-prof.h"
35 #include "flags.h"
36 #include "alias.h"
37 #include "demangle.h"
38 #include "langhooks.h"
40 /* Global canonical type table. */
41 static GTY((if_marked ("ggc_marked_p"), param_is (union tree_node)))
42 htab_t gimple_canonical_types;
43 static GTY((if_marked ("tree_int_map_marked_p"), param_is (struct tree_int_map)))
44 htab_t canonical_type_hash_cache;
46 /* All the tuples have their operand vector (if present) at the very bottom
47 of the structure. Therefore, the offset required to find the
48 operands vector the size of the structure minus the size of the 1
49 element tree array at the end (see gimple_ops). */
50 #define DEFGSSTRUCT(SYM, STRUCT, HAS_TREE_OP) \
51 (HAS_TREE_OP ? sizeof (struct STRUCT) - sizeof (tree) : 0),
52 EXPORTED_CONST size_t gimple_ops_offset_[] = {
53 #include "gsstruct.def"
55 #undef DEFGSSTRUCT
57 #define DEFGSSTRUCT(SYM, STRUCT, HAS_TREE_OP) sizeof (struct STRUCT),
58 static const size_t gsstruct_code_size[] = {
59 #include "gsstruct.def"
61 #undef DEFGSSTRUCT
63 #define DEFGSCODE(SYM, NAME, GSSCODE) NAME,
64 const char *const gimple_code_name[] = {
65 #include "gimple.def"
67 #undef DEFGSCODE
69 #define DEFGSCODE(SYM, NAME, GSSCODE) GSSCODE,
70 EXPORTED_CONST enum gimple_statement_structure_enum gss_for_code_[] = {
71 #include "gimple.def"
73 #undef DEFGSCODE
75 /* Gimple stats. */
77 int gimple_alloc_counts[(int) gimple_alloc_kind_all];
78 int gimple_alloc_sizes[(int) gimple_alloc_kind_all];
80 /* Keep in sync with gimple.h:enum gimple_alloc_kind. */
81 static const char * const gimple_alloc_kind_names[] = {
82 "assignments",
83 "phi nodes",
84 "conditionals",
85 "everything else"
88 /* Private API manipulation functions shared only with some
89 other files. */
90 extern void gimple_set_stored_syms (gimple, bitmap, bitmap_obstack *);
91 extern void gimple_set_loaded_syms (gimple, bitmap, bitmap_obstack *);
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. */
97 /* Set the code for statement G to CODE. */
99 static inline void
100 gimple_set_code (gimple g, enum gimple_code code)
102 g->gsbase.code = code;
105 /* Return the number of bytes needed to hold a GIMPLE statement with
106 code CODE. */
108 static inline size_t
109 gimple_size (enum gimple_code code)
111 return gsstruct_code_size[gss_for_code (code)];
114 /* Allocate memory for a GIMPLE statement with code CODE and NUM_OPS
115 operands. */
117 gimple
118 gimple_alloc_stat (enum gimple_code code, unsigned num_ops MEM_STAT_DECL)
120 size_t size;
121 gimple stmt;
123 size = gimple_size (code);
124 if (num_ops > 0)
125 size += sizeof (tree) * (num_ops - 1);
127 if (GATHER_STATISTICS)
129 enum gimple_alloc_kind kind = gimple_alloc_kind (code);
130 gimple_alloc_counts[(int) kind]++;
131 gimple_alloc_sizes[(int) kind] += size;
134 stmt = ggc_alloc_cleared_gimple_statement_d_stat (size PASS_MEM_STAT);
135 gimple_set_code (stmt, code);
136 gimple_set_num_ops (stmt, num_ops);
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->gsbase.modified = 1;
141 gimple_init_singleton (stmt);
143 return stmt;
146 /* Set SUBCODE to be the code of the expression computed by statement G. */
148 static inline void
149 gimple_set_subcode (gimple g, unsigned subcode)
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->gsbase.subcode = subcode;
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 sub-code
161 for the new tuple. NUM_OPS is the number of operands to allocate. */
163 #define gimple_build_with_ops(c, s, n) \
164 gimple_build_with_ops_stat (c, s, n MEM_STAT_INFO)
166 static gimple
167 gimple_build_with_ops_stat (enum gimple_code code, unsigned subcode,
168 unsigned num_ops MEM_STAT_DECL)
170 gimple s = gimple_alloc_stat (code, num_ops PASS_MEM_STAT);
171 gimple_set_subcode (s, subcode);
173 return s;
177 /* Build a GIMPLE_RETURN statement returning RETVAL. */
179 gimple
180 gimple_build_return (tree retval)
182 gimple s = gimple_build_with_ops (GIMPLE_RETURN, ERROR_MARK, 1);
183 if (retval)
184 gimple_return_set_retval (s, retval);
185 return s;
188 /* Reset alias information on call S. */
190 void
191 gimple_call_reset_alias_info (gimple s)
193 if (gimple_call_flags (s) & ECF_CONST)
194 memset (gimple_call_use_set (s), 0, sizeof (struct pt_solution));
195 else
196 pt_solution_reset (gimple_call_use_set (s));
197 if (gimple_call_flags (s) & (ECF_CONST|ECF_PURE|ECF_NOVOPS))
198 memset (gimple_call_clobber_set (s), 0, sizeof (struct pt_solution));
199 else
200 pt_solution_reset (gimple_call_clobber_set (s));
203 /* Helper for gimple_build_call, gimple_build_call_valist,
204 gimple_build_call_vec and gimple_build_call_from_tree. Build the basic
205 components of a GIMPLE_CALL statement to function FN with NARGS
206 arguments. */
208 static inline gimple
209 gimple_build_call_1 (tree fn, unsigned nargs)
211 gimple s = gimple_build_with_ops (GIMPLE_CALL, ERROR_MARK, nargs + 3);
212 if (TREE_CODE (fn) == FUNCTION_DECL)
213 fn = build_fold_addr_expr (fn);
214 gimple_set_op (s, 1, fn);
215 gimple_call_set_fntype (s, TREE_TYPE (TREE_TYPE (fn)));
216 gimple_call_reset_alias_info (s);
217 return s;
221 /* Build a GIMPLE_CALL statement to function FN with the arguments
222 specified in vector ARGS. */
224 gimple
225 gimple_build_call_vec (tree fn, vec<tree> args)
227 unsigned i;
228 unsigned nargs = args.length ();
229 gimple call = gimple_build_call_1 (fn, nargs);
231 for (i = 0; i < nargs; i++)
232 gimple_call_set_arg (call, i, args[i]);
234 return call;
238 /* Build a GIMPLE_CALL statement to function FN. NARGS is the number of
239 arguments. The ... are the arguments. */
241 gimple
242 gimple_build_call (tree fn, unsigned nargs, ...)
244 va_list ap;
245 gimple call;
246 unsigned i;
248 gcc_assert (TREE_CODE (fn) == FUNCTION_DECL || is_gimple_call_addr (fn));
250 call = gimple_build_call_1 (fn, nargs);
252 va_start (ap, nargs);
253 for (i = 0; i < nargs; i++)
254 gimple_call_set_arg (call, i, va_arg (ap, tree));
255 va_end (ap);
257 return call;
261 /* Build a GIMPLE_CALL statement to function FN. NARGS is the number of
262 arguments. AP contains the arguments. */
264 gimple
265 gimple_build_call_valist (tree fn, unsigned nargs, va_list ap)
267 gimple call;
268 unsigned i;
270 gcc_assert (TREE_CODE (fn) == FUNCTION_DECL || is_gimple_call_addr (fn));
272 call = gimple_build_call_1 (fn, nargs);
274 for (i = 0; i < nargs; i++)
275 gimple_call_set_arg (call, i, va_arg (ap, tree));
277 return call;
281 /* Helper for gimple_build_call_internal and gimple_build_call_internal_vec.
282 Build the basic components of a GIMPLE_CALL statement to internal
283 function FN with NARGS arguments. */
285 static inline gimple
286 gimple_build_call_internal_1 (enum internal_fn fn, unsigned nargs)
288 gimple s = gimple_build_with_ops (GIMPLE_CALL, ERROR_MARK, nargs + 3);
289 s->gsbase.subcode |= GF_CALL_INTERNAL;
290 gimple_call_set_internal_fn (s, fn);
291 gimple_call_reset_alias_info (s);
292 return s;
296 /* Build a GIMPLE_CALL statement to internal function FN. NARGS is
297 the number of arguments. The ... are the arguments. */
299 gimple
300 gimple_build_call_internal (enum internal_fn fn, unsigned nargs, ...)
302 va_list ap;
303 gimple call;
304 unsigned i;
306 call = gimple_build_call_internal_1 (fn, nargs);
307 va_start (ap, nargs);
308 for (i = 0; i < nargs; i++)
309 gimple_call_set_arg (call, i, va_arg (ap, tree));
310 va_end (ap);
312 return call;
316 /* Build a GIMPLE_CALL statement to internal function FN with the arguments
317 specified in vector ARGS. */
319 gimple
320 gimple_build_call_internal_vec (enum internal_fn fn, vec<tree> args)
322 unsigned i, nargs;
323 gimple call;
325 nargs = args.length ();
326 call = gimple_build_call_internal_1 (fn, nargs);
327 for (i = 0; i < nargs; i++)
328 gimple_call_set_arg (call, i, args[i]);
330 return call;
334 /* Build a GIMPLE_CALL statement from CALL_EXPR T. Note that T is
335 assumed to be in GIMPLE form already. Minimal checking is done of
336 this fact. */
338 gimple
339 gimple_build_call_from_tree (tree t)
341 unsigned i, nargs;
342 gimple call;
343 tree fndecl = get_callee_fndecl (t);
345 gcc_assert (TREE_CODE (t) == CALL_EXPR);
347 nargs = call_expr_nargs (t);
348 call = gimple_build_call_1 (fndecl ? fndecl : CALL_EXPR_FN (t), nargs);
350 for (i = 0; i < nargs; i++)
351 gimple_call_set_arg (call, i, CALL_EXPR_ARG (t, i));
353 gimple_set_block (call, TREE_BLOCK (t));
355 /* Carry all the CALL_EXPR flags to the new GIMPLE_CALL. */
356 gimple_call_set_chain (call, CALL_EXPR_STATIC_CHAIN (t));
357 gimple_call_set_tail (call, CALL_EXPR_TAILCALL (t));
358 gimple_call_set_return_slot_opt (call, CALL_EXPR_RETURN_SLOT_OPT (t));
359 if (fndecl
360 && DECL_BUILT_IN_CLASS (fndecl) == BUILT_IN_NORMAL
361 && (DECL_FUNCTION_CODE (fndecl) == BUILT_IN_ALLOCA
362 || DECL_FUNCTION_CODE (fndecl) == BUILT_IN_ALLOCA_WITH_ALIGN))
363 gimple_call_set_alloca_for_var (call, CALL_ALLOCA_FOR_VAR_P (t));
364 else
365 gimple_call_set_from_thunk (call, CALL_FROM_THUNK_P (t));
366 gimple_call_set_va_arg_pack (call, CALL_EXPR_VA_ARG_PACK (t));
367 gimple_call_set_nothrow (call, TREE_NOTHROW (t));
368 gimple_set_no_warning (call, TREE_NO_WARNING (t));
370 return call;
374 /* Extract the operands and code for expression EXPR into *SUBCODE_P,
375 *OP1_P, *OP2_P and *OP3_P respectively. */
377 void
378 extract_ops_from_tree_1 (tree expr, enum tree_code *subcode_p, tree *op1_p,
379 tree *op2_p, tree *op3_p)
381 enum gimple_rhs_class grhs_class;
383 *subcode_p = TREE_CODE (expr);
384 grhs_class = get_gimple_rhs_class (*subcode_p);
386 if (grhs_class == GIMPLE_TERNARY_RHS)
388 *op1_p = TREE_OPERAND (expr, 0);
389 *op2_p = TREE_OPERAND (expr, 1);
390 *op3_p = TREE_OPERAND (expr, 2);
392 else if (grhs_class == GIMPLE_BINARY_RHS)
394 *op1_p = TREE_OPERAND (expr, 0);
395 *op2_p = TREE_OPERAND (expr, 1);
396 *op3_p = NULL_TREE;
398 else if (grhs_class == GIMPLE_UNARY_RHS)
400 *op1_p = TREE_OPERAND (expr, 0);
401 *op2_p = NULL_TREE;
402 *op3_p = NULL_TREE;
404 else if (grhs_class == GIMPLE_SINGLE_RHS)
406 *op1_p = expr;
407 *op2_p = NULL_TREE;
408 *op3_p = NULL_TREE;
410 else
411 gcc_unreachable ();
415 /* Build a GIMPLE_ASSIGN statement.
417 LHS of the assignment.
418 RHS of the assignment which can be unary or binary. */
420 gimple
421 gimple_build_assign_stat (tree lhs, tree rhs MEM_STAT_DECL)
423 enum tree_code subcode;
424 tree op1, op2, op3;
426 extract_ops_from_tree_1 (rhs, &subcode, &op1, &op2, &op3);
427 return gimple_build_assign_with_ops (subcode, lhs, op1, op2, op3
428 PASS_MEM_STAT);
432 /* Build a GIMPLE_ASSIGN statement with sub-code SUBCODE and operands
433 OP1 and OP2. If OP2 is NULL then SUBCODE must be of class
434 GIMPLE_UNARY_RHS or GIMPLE_SINGLE_RHS. */
436 gimple
437 gimple_build_assign_with_ops (enum tree_code subcode, tree lhs, tree op1,
438 tree op2, tree op3 MEM_STAT_DECL)
440 unsigned num_ops;
441 gimple p;
443 /* Need 1 operand for LHS and 1 or 2 for the RHS (depending on the
444 code). */
445 num_ops = get_gimple_rhs_num_ops (subcode) + 1;
447 p = gimple_build_with_ops_stat (GIMPLE_ASSIGN, (unsigned)subcode, num_ops
448 PASS_MEM_STAT);
449 gimple_assign_set_lhs (p, lhs);
450 gimple_assign_set_rhs1 (p, op1);
451 if (op2)
453 gcc_assert (num_ops > 2);
454 gimple_assign_set_rhs2 (p, op2);
457 if (op3)
459 gcc_assert (num_ops > 3);
460 gimple_assign_set_rhs3 (p, op3);
463 return p;
466 gimple
467 gimple_build_assign_with_ops (enum tree_code subcode, tree lhs, tree op1,
468 tree op2 MEM_STAT_DECL)
470 return gimple_build_assign_with_ops (subcode, lhs, op1, op2, NULL_TREE
471 PASS_MEM_STAT);
475 /* Build a new GIMPLE_ASSIGN tuple and append it to the end of *SEQ_P.
477 DST/SRC are the destination and source respectively. You can pass
478 ungimplified trees in DST or SRC, in which case they will be
479 converted to a gimple operand if necessary.
481 This function returns the newly created GIMPLE_ASSIGN tuple. */
483 gimple
484 gimplify_assign (tree dst, tree src, gimple_seq *seq_p)
486 tree t = build2 (MODIFY_EXPR, TREE_TYPE (dst), dst, src);
487 gimplify_and_add (t, seq_p);
488 ggc_free (t);
489 return gimple_seq_last_stmt (*seq_p);
493 /* Build a GIMPLE_COND statement.
495 PRED is the condition used to compare LHS and the RHS.
496 T_LABEL is the label to jump to if the condition is true.
497 F_LABEL is the label to jump to otherwise. */
499 gimple
500 gimple_build_cond (enum tree_code pred_code, tree lhs, tree rhs,
501 tree t_label, tree f_label)
503 gimple p;
505 gcc_assert (TREE_CODE_CLASS (pred_code) == tcc_comparison);
506 p = gimple_build_with_ops (GIMPLE_COND, pred_code, 4);
507 gimple_cond_set_lhs (p, lhs);
508 gimple_cond_set_rhs (p, rhs);
509 gimple_cond_set_true_label (p, t_label);
510 gimple_cond_set_false_label (p, f_label);
511 return p;
515 /* Extract operands for a GIMPLE_COND statement out of COND_EXPR tree COND. */
517 void
518 gimple_cond_get_ops_from_tree (tree cond, enum tree_code *code_p,
519 tree *lhs_p, tree *rhs_p)
521 gcc_assert (TREE_CODE_CLASS (TREE_CODE (cond)) == tcc_comparison
522 || TREE_CODE (cond) == TRUTH_NOT_EXPR
523 || is_gimple_min_invariant (cond)
524 || SSA_VAR_P (cond));
526 extract_ops_from_tree (cond, code_p, lhs_p, rhs_p);
528 /* Canonicalize conditionals of the form 'if (!VAL)'. */
529 if (*code_p == TRUTH_NOT_EXPR)
531 *code_p = EQ_EXPR;
532 gcc_assert (*lhs_p && *rhs_p == NULL_TREE);
533 *rhs_p = build_zero_cst (TREE_TYPE (*lhs_p));
535 /* Canonicalize conditionals of the form 'if (VAL)' */
536 else if (TREE_CODE_CLASS (*code_p) != tcc_comparison)
538 *code_p = NE_EXPR;
539 gcc_assert (*lhs_p && *rhs_p == NULL_TREE);
540 *rhs_p = build_zero_cst (TREE_TYPE (*lhs_p));
545 /* Build a GIMPLE_COND statement from the conditional expression tree
546 COND. T_LABEL and F_LABEL are as in gimple_build_cond. */
548 gimple
549 gimple_build_cond_from_tree (tree cond, tree t_label, tree f_label)
551 enum tree_code code;
552 tree lhs, rhs;
554 gimple_cond_get_ops_from_tree (cond, &code, &lhs, &rhs);
555 return gimple_build_cond (code, lhs, rhs, t_label, f_label);
558 /* Set code, lhs, and rhs of a GIMPLE_COND from a suitable
559 boolean expression tree COND. */
561 void
562 gimple_cond_set_condition_from_tree (gimple stmt, tree cond)
564 enum tree_code code;
565 tree lhs, rhs;
567 gimple_cond_get_ops_from_tree (cond, &code, &lhs, &rhs);
568 gimple_cond_set_condition (stmt, code, lhs, rhs);
571 /* Build a GIMPLE_LABEL statement for LABEL. */
573 gimple
574 gimple_build_label (tree label)
576 gimple p = gimple_build_with_ops (GIMPLE_LABEL, ERROR_MARK, 1);
577 gimple_label_set_label (p, label);
578 return p;
581 /* Build a GIMPLE_GOTO statement to label DEST. */
583 gimple
584 gimple_build_goto (tree dest)
586 gimple p = gimple_build_with_ops (GIMPLE_GOTO, ERROR_MARK, 1);
587 gimple_goto_set_dest (p, dest);
588 return p;
592 /* Build a GIMPLE_NOP statement. */
594 gimple
595 gimple_build_nop (void)
597 return gimple_alloc (GIMPLE_NOP, 0);
601 /* Build a GIMPLE_BIND statement.
602 VARS are the variables in BODY.
603 BLOCK is the containing block. */
605 gimple
606 gimple_build_bind (tree vars, gimple_seq body, tree block)
608 gimple p = gimple_alloc (GIMPLE_BIND, 0);
609 gimple_bind_set_vars (p, vars);
610 if (body)
611 gimple_bind_set_body (p, body);
612 if (block)
613 gimple_bind_set_block (p, block);
614 return p;
617 /* Helper function to set the simple fields of a asm stmt.
619 STRING is a pointer to a string that is the asm blocks assembly code.
620 NINPUT is the number of register inputs.
621 NOUTPUT is the number of register outputs.
622 NCLOBBERS is the number of clobbered registers.
625 static inline gimple
626 gimple_build_asm_1 (const char *string, unsigned ninputs, unsigned noutputs,
627 unsigned nclobbers, unsigned nlabels)
629 gimple p;
630 int size = strlen (string);
632 /* ASMs with labels cannot have outputs. This should have been
633 enforced by the front end. */
634 gcc_assert (nlabels == 0 || noutputs == 0);
636 p = gimple_build_with_ops (GIMPLE_ASM, ERROR_MARK,
637 ninputs + noutputs + nclobbers + nlabels);
639 p->gimple_asm.ni = ninputs;
640 p->gimple_asm.no = noutputs;
641 p->gimple_asm.nc = nclobbers;
642 p->gimple_asm.nl = nlabels;
643 p->gimple_asm.string = ggc_alloc_string (string, size);
645 if (GATHER_STATISTICS)
646 gimple_alloc_sizes[(int) gimple_alloc_kind (GIMPLE_ASM)] += size;
648 return p;
651 /* Build a GIMPLE_ASM statement.
653 STRING is the assembly code.
654 NINPUT is the number of register inputs.
655 NOUTPUT is the number of register outputs.
656 NCLOBBERS is the number of clobbered registers.
657 INPUTS is a vector of the input register parameters.
658 OUTPUTS is a vector of the output register parameters.
659 CLOBBERS is a vector of the clobbered register parameters.
660 LABELS is a vector of destination labels. */
662 gimple
663 gimple_build_asm_vec (const char *string, vec<tree, va_gc> *inputs,
664 vec<tree, va_gc> *outputs, vec<tree, va_gc> *clobbers,
665 vec<tree, va_gc> *labels)
667 gimple p;
668 unsigned i;
670 p = gimple_build_asm_1 (string,
671 vec_safe_length (inputs),
672 vec_safe_length (outputs),
673 vec_safe_length (clobbers),
674 vec_safe_length (labels));
676 for (i = 0; i < vec_safe_length (inputs); i++)
677 gimple_asm_set_input_op (p, i, (*inputs)[i]);
679 for (i = 0; i < vec_safe_length (outputs); i++)
680 gimple_asm_set_output_op (p, i, (*outputs)[i]);
682 for (i = 0; i < vec_safe_length (clobbers); i++)
683 gimple_asm_set_clobber_op (p, i, (*clobbers)[i]);
685 for (i = 0; i < vec_safe_length (labels); i++)
686 gimple_asm_set_label_op (p, i, (*labels)[i]);
688 return p;
691 /* Build a GIMPLE_CATCH statement.
693 TYPES are the catch types.
694 HANDLER is the exception handler. */
696 gimple
697 gimple_build_catch (tree types, gimple_seq handler)
699 gimple p = gimple_alloc (GIMPLE_CATCH, 0);
700 gimple_catch_set_types (p, types);
701 if (handler)
702 gimple_catch_set_handler (p, handler);
704 return p;
707 /* Build a GIMPLE_EH_FILTER statement.
709 TYPES are the filter's types.
710 FAILURE is the filter's failure action. */
712 gimple
713 gimple_build_eh_filter (tree types, gimple_seq failure)
715 gimple p = gimple_alloc (GIMPLE_EH_FILTER, 0);
716 gimple_eh_filter_set_types (p, types);
717 if (failure)
718 gimple_eh_filter_set_failure (p, failure);
720 return p;
723 /* Build a GIMPLE_EH_MUST_NOT_THROW statement. */
725 gimple
726 gimple_build_eh_must_not_throw (tree decl)
728 gimple p = gimple_alloc (GIMPLE_EH_MUST_NOT_THROW, 0);
730 gcc_assert (TREE_CODE (decl) == FUNCTION_DECL);
731 gcc_assert (flags_from_decl_or_type (decl) & ECF_NORETURN);
732 gimple_eh_must_not_throw_set_fndecl (p, decl);
734 return p;
737 /* Build a GIMPLE_EH_ELSE statement. */
739 gimple
740 gimple_build_eh_else (gimple_seq n_body, gimple_seq e_body)
742 gimple p = gimple_alloc (GIMPLE_EH_ELSE, 0);
743 gimple_eh_else_set_n_body (p, n_body);
744 gimple_eh_else_set_e_body (p, e_body);
745 return p;
748 /* Build a GIMPLE_TRY statement.
750 EVAL is the expression to evaluate.
751 CLEANUP is the cleanup expression.
752 KIND is either GIMPLE_TRY_CATCH or GIMPLE_TRY_FINALLY depending on
753 whether this is a try/catch or a try/finally respectively. */
755 gimple
756 gimple_build_try (gimple_seq eval, gimple_seq cleanup,
757 enum gimple_try_flags kind)
759 gimple p;
761 gcc_assert (kind == GIMPLE_TRY_CATCH || kind == GIMPLE_TRY_FINALLY);
762 p = gimple_alloc (GIMPLE_TRY, 0);
763 gimple_set_subcode (p, kind);
764 if (eval)
765 gimple_try_set_eval (p, eval);
766 if (cleanup)
767 gimple_try_set_cleanup (p, cleanup);
769 return p;
772 /* Construct a GIMPLE_WITH_CLEANUP_EXPR statement.
774 CLEANUP is the cleanup expression. */
776 gimple
777 gimple_build_wce (gimple_seq cleanup)
779 gimple p = gimple_alloc (GIMPLE_WITH_CLEANUP_EXPR, 0);
780 if (cleanup)
781 gimple_wce_set_cleanup (p, cleanup);
783 return p;
787 /* Build a GIMPLE_RESX statement. */
789 gimple
790 gimple_build_resx (int region)
792 gimple p = gimple_build_with_ops (GIMPLE_RESX, ERROR_MARK, 0);
793 p->gimple_eh_ctrl.region = region;
794 return p;
798 /* The helper for constructing a gimple switch statement.
799 INDEX is the switch's index.
800 NLABELS is the number of labels in the switch excluding the default.
801 DEFAULT_LABEL is the default label for the switch statement. */
803 gimple
804 gimple_build_switch_nlabels (unsigned nlabels, tree index, tree default_label)
806 /* nlabels + 1 default label + 1 index. */
807 gcc_checking_assert (default_label);
808 gimple p = gimple_build_with_ops (GIMPLE_SWITCH, ERROR_MARK,
809 1 + 1 + nlabels);
810 gimple_switch_set_index (p, index);
811 gimple_switch_set_default_label (p, default_label);
812 return p;
815 /* Build a GIMPLE_SWITCH statement.
817 INDEX is the switch's index.
818 DEFAULT_LABEL is the default label
819 ARGS is a vector of labels excluding the default. */
821 gimple
822 gimple_build_switch (tree index, tree default_label, vec<tree> args)
824 unsigned i, nlabels = args.length ();
826 gimple p = gimple_build_switch_nlabels (nlabels, index, default_label);
828 /* Copy the labels from the vector to the switch statement. */
829 for (i = 0; i < nlabels; i++)
830 gimple_switch_set_label (p, i + 1, args[i]);
832 return p;
835 /* Build a GIMPLE_EH_DISPATCH statement. */
837 gimple
838 gimple_build_eh_dispatch (int region)
840 gimple p = gimple_build_with_ops (GIMPLE_EH_DISPATCH, ERROR_MARK, 0);
841 p->gimple_eh_ctrl.region = region;
842 return p;
845 /* Build a new GIMPLE_DEBUG_BIND statement.
847 VAR is bound to VALUE; block and location are taken from STMT. */
849 gimple
850 gimple_build_debug_bind_stat (tree var, tree value, gimple stmt MEM_STAT_DECL)
852 gimple p = gimple_build_with_ops_stat (GIMPLE_DEBUG,
853 (unsigned)GIMPLE_DEBUG_BIND, 2
854 PASS_MEM_STAT);
856 gimple_debug_bind_set_var (p, var);
857 gimple_debug_bind_set_value (p, value);
858 if (stmt)
859 gimple_set_location (p, gimple_location (stmt));
861 return p;
865 /* Build a new GIMPLE_DEBUG_SOURCE_BIND statement.
867 VAR is bound to VALUE; block and location are taken from STMT. */
869 gimple
870 gimple_build_debug_source_bind_stat (tree var, tree value,
871 gimple stmt MEM_STAT_DECL)
873 gimple p = gimple_build_with_ops_stat (GIMPLE_DEBUG,
874 (unsigned)GIMPLE_DEBUG_SOURCE_BIND, 2
875 PASS_MEM_STAT);
877 gimple_debug_source_bind_set_var (p, var);
878 gimple_debug_source_bind_set_value (p, value);
879 if (stmt)
880 gimple_set_location (p, gimple_location (stmt));
882 return p;
886 /* Build a GIMPLE_OMP_CRITICAL statement.
888 BODY is the sequence of statements for which only one thread can execute.
889 NAME is optional identifier for this critical block. */
891 gimple
892 gimple_build_omp_critical (gimple_seq body, tree name)
894 gimple p = gimple_alloc (GIMPLE_OMP_CRITICAL, 0);
895 gimple_omp_critical_set_name (p, name);
896 if (body)
897 gimple_omp_set_body (p, body);
899 return p;
902 /* Build a GIMPLE_OMP_FOR statement.
904 BODY is sequence of statements inside the for loop.
905 KIND is the `for' variant.
906 CLAUSES, are any of the OMP loop construct's clauses: private, firstprivate,
907 lastprivate, reductions, ordered, schedule, and nowait.
908 COLLAPSE is the collapse count.
909 PRE_BODY is the sequence of statements that are loop invariant. */
911 gimple
912 gimple_build_omp_for (gimple_seq body, int kind, tree clauses, size_t collapse,
913 gimple_seq pre_body)
915 gimple p = gimple_alloc (GIMPLE_OMP_FOR, 0);
916 if (body)
917 gimple_omp_set_body (p, body);
918 gimple_omp_for_set_clauses (p, clauses);
919 gimple_omp_for_set_kind (p, kind);
920 p->gimple_omp_for.collapse = collapse;
921 p->gimple_omp_for.iter
922 = ggc_alloc_cleared_vec_gimple_omp_for_iter (collapse);
923 if (pre_body)
924 gimple_omp_for_set_pre_body (p, pre_body);
926 return p;
930 /* Build a GIMPLE_OMP_PARALLEL statement.
932 BODY is sequence of statements which are executed in parallel.
933 CLAUSES, are the OMP parallel construct's clauses.
934 CHILD_FN is the function created for the parallel threads to execute.
935 DATA_ARG are the shared data argument(s). */
937 gimple
938 gimple_build_omp_parallel (gimple_seq body, tree clauses, tree child_fn,
939 tree data_arg)
941 gimple p = gimple_alloc (GIMPLE_OMP_PARALLEL, 0);
942 if (body)
943 gimple_omp_set_body (p, body);
944 gimple_omp_parallel_set_clauses (p, clauses);
945 gimple_omp_parallel_set_child_fn (p, child_fn);
946 gimple_omp_parallel_set_data_arg (p, data_arg);
948 return p;
952 /* Build a GIMPLE_OMP_TASK statement.
954 BODY is sequence of statements which are executed by the explicit task.
955 CLAUSES, are the OMP parallel construct's clauses.
956 CHILD_FN is the function created for the parallel threads to execute.
957 DATA_ARG are the shared data argument(s).
958 COPY_FN is the optional function for firstprivate initialization.
959 ARG_SIZE and ARG_ALIGN are size and alignment of the data block. */
961 gimple
962 gimple_build_omp_task (gimple_seq body, tree clauses, tree child_fn,
963 tree data_arg, tree copy_fn, tree arg_size,
964 tree arg_align)
966 gimple p = gimple_alloc (GIMPLE_OMP_TASK, 0);
967 if (body)
968 gimple_omp_set_body (p, body);
969 gimple_omp_task_set_clauses (p, clauses);
970 gimple_omp_task_set_child_fn (p, child_fn);
971 gimple_omp_task_set_data_arg (p, data_arg);
972 gimple_omp_task_set_copy_fn (p, copy_fn);
973 gimple_omp_task_set_arg_size (p, arg_size);
974 gimple_omp_task_set_arg_align (p, arg_align);
976 return p;
980 /* Build a GIMPLE_OMP_SECTION statement for a sections statement.
982 BODY is the sequence of statements in the section. */
984 gimple
985 gimple_build_omp_section (gimple_seq body)
987 gimple p = gimple_alloc (GIMPLE_OMP_SECTION, 0);
988 if (body)
989 gimple_omp_set_body (p, body);
991 return p;
995 /* Build a GIMPLE_OMP_MASTER statement.
997 BODY is the sequence of statements to be executed by just the master. */
999 gimple
1000 gimple_build_omp_master (gimple_seq body)
1002 gimple p = gimple_alloc (GIMPLE_OMP_MASTER, 0);
1003 if (body)
1004 gimple_omp_set_body (p, body);
1006 return p;
1010 /* Build a GIMPLE_OMP_CONTINUE statement.
1012 CONTROL_DEF is the definition of the control variable.
1013 CONTROL_USE is the use of the control variable. */
1015 gimple
1016 gimple_build_omp_continue (tree control_def, tree control_use)
1018 gimple p = gimple_alloc (GIMPLE_OMP_CONTINUE, 0);
1019 gimple_omp_continue_set_control_def (p, control_def);
1020 gimple_omp_continue_set_control_use (p, control_use);
1021 return p;
1024 /* Build a GIMPLE_OMP_ORDERED statement.
1026 BODY is the sequence of statements inside a loop that will executed in
1027 sequence. */
1029 gimple
1030 gimple_build_omp_ordered (gimple_seq body)
1032 gimple p = gimple_alloc (GIMPLE_OMP_ORDERED, 0);
1033 if (body)
1034 gimple_omp_set_body (p, body);
1036 return p;
1040 /* Build a GIMPLE_OMP_RETURN statement.
1041 WAIT_P is true if this is a non-waiting return. */
1043 gimple
1044 gimple_build_omp_return (bool wait_p)
1046 gimple p = gimple_alloc (GIMPLE_OMP_RETURN, 0);
1047 if (wait_p)
1048 gimple_omp_return_set_nowait (p);
1050 return p;
1054 /* Build a GIMPLE_OMP_SECTIONS statement.
1056 BODY is a sequence of section statements.
1057 CLAUSES are any of the OMP sections contsruct's clauses: private,
1058 firstprivate, lastprivate, reduction, and nowait. */
1060 gimple
1061 gimple_build_omp_sections (gimple_seq body, tree clauses)
1063 gimple p = gimple_alloc (GIMPLE_OMP_SECTIONS, 0);
1064 if (body)
1065 gimple_omp_set_body (p, body);
1066 gimple_omp_sections_set_clauses (p, clauses);
1068 return p;
1072 /* Build a GIMPLE_OMP_SECTIONS_SWITCH. */
1074 gimple
1075 gimple_build_omp_sections_switch (void)
1077 return gimple_alloc (GIMPLE_OMP_SECTIONS_SWITCH, 0);
1081 /* Build a GIMPLE_OMP_SINGLE statement.
1083 BODY is the sequence of statements that will be executed once.
1084 CLAUSES are any of the OMP single construct's clauses: private, firstprivate,
1085 copyprivate, nowait. */
1087 gimple
1088 gimple_build_omp_single (gimple_seq body, tree clauses)
1090 gimple p = gimple_alloc (GIMPLE_OMP_SINGLE, 0);
1091 if (body)
1092 gimple_omp_set_body (p, body);
1093 gimple_omp_single_set_clauses (p, clauses);
1095 return p;
1099 /* Build a GIMPLE_OMP_ATOMIC_LOAD statement. */
1101 gimple
1102 gimple_build_omp_atomic_load (tree lhs, tree rhs)
1104 gimple p = gimple_alloc (GIMPLE_OMP_ATOMIC_LOAD, 0);
1105 gimple_omp_atomic_load_set_lhs (p, lhs);
1106 gimple_omp_atomic_load_set_rhs (p, rhs);
1107 return p;
1110 /* Build a GIMPLE_OMP_ATOMIC_STORE statement.
1112 VAL is the value we are storing. */
1114 gimple
1115 gimple_build_omp_atomic_store (tree val)
1117 gimple p = gimple_alloc (GIMPLE_OMP_ATOMIC_STORE, 0);
1118 gimple_omp_atomic_store_set_val (p, val);
1119 return p;
1122 /* Build a GIMPLE_TRANSACTION statement. */
1124 gimple
1125 gimple_build_transaction (gimple_seq body, tree label)
1127 gimple p = gimple_alloc (GIMPLE_TRANSACTION, 0);
1128 gimple_transaction_set_body (p, body);
1129 gimple_transaction_set_label (p, label);
1130 return p;
1133 /* Build a GIMPLE_PREDICT statement. PREDICT is one of the predictors from
1134 predict.def, OUTCOME is NOT_TAKEN or TAKEN. */
1136 gimple
1137 gimple_build_predict (enum br_predictor predictor, enum prediction outcome)
1139 gimple p = gimple_alloc (GIMPLE_PREDICT, 0);
1140 /* Ensure all the predictors fit into the lower bits of the subcode. */
1141 gcc_assert ((int) END_PREDICTORS <= GF_PREDICT_TAKEN);
1142 gimple_predict_set_predictor (p, predictor);
1143 gimple_predict_set_outcome (p, outcome);
1144 return p;
1147 #if defined ENABLE_GIMPLE_CHECKING
1148 /* Complain of a gimple type mismatch and die. */
1150 void
1151 gimple_check_failed (const_gimple gs, const char *file, int line,
1152 const char *function, enum gimple_code code,
1153 enum tree_code subcode)
1155 internal_error ("gimple check: expected %s(%s), have %s(%s) in %s, at %s:%d",
1156 gimple_code_name[code],
1157 tree_code_name[subcode],
1158 gimple_code_name[gimple_code (gs)],
1159 gs->gsbase.subcode > 0
1160 ? tree_code_name[gs->gsbase.subcode]
1161 : "",
1162 function, trim_filename (file), line);
1164 #endif /* ENABLE_GIMPLE_CHECKING */
1167 /* Link gimple statement GS to the end of the sequence *SEQ_P. If
1168 *SEQ_P is NULL, a new sequence is allocated. */
1170 void
1171 gimple_seq_add_stmt (gimple_seq *seq_p, gimple gs)
1173 gimple_stmt_iterator si;
1174 if (gs == NULL)
1175 return;
1177 si = gsi_last (*seq_p);
1178 gsi_insert_after (&si, gs, GSI_NEW_STMT);
1182 /* Append sequence SRC to the end of sequence *DST_P. If *DST_P is
1183 NULL, a new sequence is allocated. */
1185 void
1186 gimple_seq_add_seq (gimple_seq *dst_p, gimple_seq src)
1188 gimple_stmt_iterator si;
1189 if (src == NULL)
1190 return;
1192 si = gsi_last (*dst_p);
1193 gsi_insert_seq_after (&si, src, GSI_NEW_STMT);
1197 /* Helper function of empty_body_p. Return true if STMT is an empty
1198 statement. */
1200 static bool
1201 empty_stmt_p (gimple stmt)
1203 if (gimple_code (stmt) == GIMPLE_NOP)
1204 return true;
1205 if (gimple_code (stmt) == GIMPLE_BIND)
1206 return empty_body_p (gimple_bind_body (stmt));
1207 return false;
1211 /* Return true if BODY contains nothing but empty statements. */
1213 bool
1214 empty_body_p (gimple_seq body)
1216 gimple_stmt_iterator i;
1218 if (gimple_seq_empty_p (body))
1219 return true;
1220 for (i = gsi_start (body); !gsi_end_p (i); gsi_next (&i))
1221 if (!empty_stmt_p (gsi_stmt (i))
1222 && !is_gimple_debug (gsi_stmt (i)))
1223 return false;
1225 return true;
1229 /* Perform a deep copy of sequence SRC and return the result. */
1231 gimple_seq
1232 gimple_seq_copy (gimple_seq src)
1234 gimple_stmt_iterator gsi;
1235 gimple_seq new_seq = NULL;
1236 gimple stmt;
1238 for (gsi = gsi_start (src); !gsi_end_p (gsi); gsi_next (&gsi))
1240 stmt = gimple_copy (gsi_stmt (gsi));
1241 gimple_seq_add_stmt (&new_seq, stmt);
1244 return new_seq;
1248 /* Walk all the statements in the sequence *PSEQ calling walk_gimple_stmt
1249 on each one. WI is as in walk_gimple_stmt.
1251 If walk_gimple_stmt returns non-NULL, the walk is stopped, and the
1252 value is stored in WI->CALLBACK_RESULT. Also, the statement that
1253 produced the value is returned if this statement has not been
1254 removed by a callback (wi->removed_stmt). If the statement has
1255 been removed, NULL is returned.
1257 Otherwise, all the statements are walked and NULL returned. */
1259 gimple
1260 walk_gimple_seq_mod (gimple_seq *pseq, walk_stmt_fn callback_stmt,
1261 walk_tree_fn callback_op, struct walk_stmt_info *wi)
1263 gimple_stmt_iterator gsi;
1265 for (gsi = gsi_start (*pseq); !gsi_end_p (gsi); )
1267 tree ret = walk_gimple_stmt (&gsi, callback_stmt, callback_op, wi);
1268 if (ret)
1270 /* If CALLBACK_STMT or CALLBACK_OP return a value, WI must exist
1271 to hold it. */
1272 gcc_assert (wi);
1273 wi->callback_result = ret;
1275 return wi->removed_stmt ? NULL : gsi_stmt (gsi);
1278 if (!wi->removed_stmt)
1279 gsi_next (&gsi);
1282 if (wi)
1283 wi->callback_result = NULL_TREE;
1285 return NULL;
1289 /* Like walk_gimple_seq_mod, but ensure that the head of SEQ isn't
1290 changed by the callbacks. */
1292 gimple
1293 walk_gimple_seq (gimple_seq seq, walk_stmt_fn callback_stmt,
1294 walk_tree_fn callback_op, struct walk_stmt_info *wi)
1296 gimple_seq seq2 = seq;
1297 gimple ret = walk_gimple_seq_mod (&seq2, callback_stmt, callback_op, wi);
1298 gcc_assert (seq2 == seq);
1299 return ret;
1303 /* Helper function for walk_gimple_stmt. Walk operands of a GIMPLE_ASM. */
1305 static tree
1306 walk_gimple_asm (gimple stmt, walk_tree_fn callback_op,
1307 struct walk_stmt_info *wi)
1309 tree ret, op;
1310 unsigned noutputs;
1311 const char **oconstraints;
1312 unsigned i, n;
1313 const char *constraint;
1314 bool allows_mem, allows_reg, is_inout;
1316 noutputs = gimple_asm_noutputs (stmt);
1317 oconstraints = (const char **) alloca ((noutputs) * sizeof (const char *));
1319 if (wi)
1320 wi->is_lhs = true;
1322 for (i = 0; i < noutputs; i++)
1324 op = gimple_asm_output_op (stmt, i);
1325 constraint = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (op)));
1326 oconstraints[i] = constraint;
1327 parse_output_constraint (&constraint, i, 0, 0, &allows_mem, &allows_reg,
1328 &is_inout);
1329 if (wi)
1330 wi->val_only = (allows_reg || !allows_mem);
1331 ret = walk_tree (&TREE_VALUE (op), callback_op, wi, NULL);
1332 if (ret)
1333 return ret;
1336 n = gimple_asm_ninputs (stmt);
1337 for (i = 0; i < n; i++)
1339 op = gimple_asm_input_op (stmt, i);
1340 constraint = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (op)));
1341 parse_input_constraint (&constraint, 0, 0, noutputs, 0,
1342 oconstraints, &allows_mem, &allows_reg);
1343 if (wi)
1345 wi->val_only = (allows_reg || !allows_mem);
1346 /* Although input "m" is not really a LHS, we need a lvalue. */
1347 wi->is_lhs = !wi->val_only;
1349 ret = walk_tree (&TREE_VALUE (op), callback_op, wi, NULL);
1350 if (ret)
1351 return ret;
1354 if (wi)
1356 wi->is_lhs = false;
1357 wi->val_only = true;
1360 n = gimple_asm_nlabels (stmt);
1361 for (i = 0; i < n; i++)
1363 op = gimple_asm_label_op (stmt, i);
1364 ret = walk_tree (&TREE_VALUE (op), callback_op, wi, NULL);
1365 if (ret)
1366 return ret;
1369 return NULL_TREE;
1373 /* Helper function of WALK_GIMPLE_STMT. Walk every tree operand in
1374 STMT. CALLBACK_OP and WI are as in WALK_GIMPLE_STMT.
1376 CALLBACK_OP is called on each operand of STMT via walk_tree.
1377 Additional parameters to walk_tree must be stored in WI. For each operand
1378 OP, walk_tree is called as:
1380 walk_tree (&OP, CALLBACK_OP, WI, WI->PSET)
1382 If CALLBACK_OP returns non-NULL for an operand, the remaining
1383 operands are not scanned.
1385 The return value is that returned by the last call to walk_tree, or
1386 NULL_TREE if no CALLBACK_OP is specified. */
1388 tree
1389 walk_gimple_op (gimple stmt, walk_tree_fn callback_op,
1390 struct walk_stmt_info *wi)
1392 struct pointer_set_t *pset = (wi) ? wi->pset : NULL;
1393 unsigned i;
1394 tree ret = NULL_TREE;
1396 switch (gimple_code (stmt))
1398 case GIMPLE_ASSIGN:
1399 /* Walk the RHS operands. If the LHS is of a non-renamable type or
1400 is a register variable, we may use a COMPONENT_REF on the RHS. */
1401 if (wi)
1403 tree lhs = gimple_assign_lhs (stmt);
1404 wi->val_only
1405 = (is_gimple_reg_type (TREE_TYPE (lhs)) && !is_gimple_reg (lhs))
1406 || gimple_assign_rhs_class (stmt) != GIMPLE_SINGLE_RHS;
1409 for (i = 1; i < gimple_num_ops (stmt); i++)
1411 ret = walk_tree (gimple_op_ptr (stmt, i), callback_op, wi,
1412 pset);
1413 if (ret)
1414 return ret;
1417 /* Walk the LHS. If the RHS is appropriate for a memory, we
1418 may use a COMPONENT_REF on the LHS. */
1419 if (wi)
1421 /* If the RHS is of a non-renamable type or is a register variable,
1422 we may use a COMPONENT_REF on the LHS. */
1423 tree rhs1 = gimple_assign_rhs1 (stmt);
1424 wi->val_only
1425 = (is_gimple_reg_type (TREE_TYPE (rhs1)) && !is_gimple_reg (rhs1))
1426 || gimple_assign_rhs_class (stmt) != GIMPLE_SINGLE_RHS;
1427 wi->is_lhs = true;
1430 ret = walk_tree (gimple_op_ptr (stmt, 0), callback_op, wi, pset);
1431 if (ret)
1432 return ret;
1434 if (wi)
1436 wi->val_only = true;
1437 wi->is_lhs = false;
1439 break;
1441 case GIMPLE_CALL:
1442 if (wi)
1444 wi->is_lhs = false;
1445 wi->val_only = true;
1448 ret = walk_tree (gimple_call_chain_ptr (stmt), callback_op, wi, pset);
1449 if (ret)
1450 return ret;
1452 ret = walk_tree (gimple_call_fn_ptr (stmt), callback_op, wi, pset);
1453 if (ret)
1454 return ret;
1456 for (i = 0; i < gimple_call_num_args (stmt); i++)
1458 if (wi)
1459 wi->val_only
1460 = is_gimple_reg_type (TREE_TYPE (gimple_call_arg (stmt, i)));
1461 ret = walk_tree (gimple_call_arg_ptr (stmt, i), callback_op, wi,
1462 pset);
1463 if (ret)
1464 return ret;
1467 if (gimple_call_lhs (stmt))
1469 if (wi)
1471 wi->is_lhs = true;
1472 wi->val_only
1473 = is_gimple_reg_type (TREE_TYPE (gimple_call_lhs (stmt)));
1476 ret = walk_tree (gimple_call_lhs_ptr (stmt), callback_op, wi, pset);
1477 if (ret)
1478 return ret;
1481 if (wi)
1483 wi->is_lhs = false;
1484 wi->val_only = true;
1486 break;
1488 case GIMPLE_CATCH:
1489 ret = walk_tree (gimple_catch_types_ptr (stmt), callback_op, wi,
1490 pset);
1491 if (ret)
1492 return ret;
1493 break;
1495 case GIMPLE_EH_FILTER:
1496 ret = walk_tree (gimple_eh_filter_types_ptr (stmt), callback_op, wi,
1497 pset);
1498 if (ret)
1499 return ret;
1500 break;
1502 case GIMPLE_ASM:
1503 ret = walk_gimple_asm (stmt, callback_op, wi);
1504 if (ret)
1505 return ret;
1506 break;
1508 case GIMPLE_OMP_CONTINUE:
1509 ret = walk_tree (gimple_omp_continue_control_def_ptr (stmt),
1510 callback_op, wi, pset);
1511 if (ret)
1512 return ret;
1514 ret = walk_tree (gimple_omp_continue_control_use_ptr (stmt),
1515 callback_op, wi, pset);
1516 if (ret)
1517 return ret;
1518 break;
1520 case GIMPLE_OMP_CRITICAL:
1521 ret = walk_tree (gimple_omp_critical_name_ptr (stmt), callback_op, wi,
1522 pset);
1523 if (ret)
1524 return ret;
1525 break;
1527 case GIMPLE_OMP_FOR:
1528 ret = walk_tree (gimple_omp_for_clauses_ptr (stmt), callback_op, wi,
1529 pset);
1530 if (ret)
1531 return ret;
1532 for (i = 0; i < gimple_omp_for_collapse (stmt); i++)
1534 ret = walk_tree (gimple_omp_for_index_ptr (stmt, i), callback_op,
1535 wi, pset);
1536 if (ret)
1537 return ret;
1538 ret = walk_tree (gimple_omp_for_initial_ptr (stmt, i), callback_op,
1539 wi, pset);
1540 if (ret)
1541 return ret;
1542 ret = walk_tree (gimple_omp_for_final_ptr (stmt, i), callback_op,
1543 wi, pset);
1544 if (ret)
1545 return ret;
1546 ret = walk_tree (gimple_omp_for_incr_ptr (stmt, i), callback_op,
1547 wi, pset);
1549 if (ret)
1550 return ret;
1551 break;
1553 case GIMPLE_OMP_PARALLEL:
1554 ret = walk_tree (gimple_omp_parallel_clauses_ptr (stmt), callback_op,
1555 wi, pset);
1556 if (ret)
1557 return ret;
1558 ret = walk_tree (gimple_omp_parallel_child_fn_ptr (stmt), callback_op,
1559 wi, pset);
1560 if (ret)
1561 return ret;
1562 ret = walk_tree (gimple_omp_parallel_data_arg_ptr (stmt), callback_op,
1563 wi, pset);
1564 if (ret)
1565 return ret;
1566 break;
1568 case GIMPLE_OMP_TASK:
1569 ret = walk_tree (gimple_omp_task_clauses_ptr (stmt), callback_op,
1570 wi, pset);
1571 if (ret)
1572 return ret;
1573 ret = walk_tree (gimple_omp_task_child_fn_ptr (stmt), callback_op,
1574 wi, pset);
1575 if (ret)
1576 return ret;
1577 ret = walk_tree (gimple_omp_task_data_arg_ptr (stmt), callback_op,
1578 wi, pset);
1579 if (ret)
1580 return ret;
1581 ret = walk_tree (gimple_omp_task_copy_fn_ptr (stmt), callback_op,
1582 wi, pset);
1583 if (ret)
1584 return ret;
1585 ret = walk_tree (gimple_omp_task_arg_size_ptr (stmt), callback_op,
1586 wi, pset);
1587 if (ret)
1588 return ret;
1589 ret = walk_tree (gimple_omp_task_arg_align_ptr (stmt), callback_op,
1590 wi, pset);
1591 if (ret)
1592 return ret;
1593 break;
1595 case GIMPLE_OMP_SECTIONS:
1596 ret = walk_tree (gimple_omp_sections_clauses_ptr (stmt), callback_op,
1597 wi, pset);
1598 if (ret)
1599 return ret;
1601 ret = walk_tree (gimple_omp_sections_control_ptr (stmt), callback_op,
1602 wi, pset);
1603 if (ret)
1604 return ret;
1606 break;
1608 case GIMPLE_OMP_SINGLE:
1609 ret = walk_tree (gimple_omp_single_clauses_ptr (stmt), callback_op, wi,
1610 pset);
1611 if (ret)
1612 return ret;
1613 break;
1615 case GIMPLE_OMP_ATOMIC_LOAD:
1616 ret = walk_tree (gimple_omp_atomic_load_lhs_ptr (stmt), callback_op, wi,
1617 pset);
1618 if (ret)
1619 return ret;
1621 ret = walk_tree (gimple_omp_atomic_load_rhs_ptr (stmt), callback_op, wi,
1622 pset);
1623 if (ret)
1624 return ret;
1625 break;
1627 case GIMPLE_OMP_ATOMIC_STORE:
1628 ret = walk_tree (gimple_omp_atomic_store_val_ptr (stmt), callback_op,
1629 wi, pset);
1630 if (ret)
1631 return ret;
1632 break;
1634 case GIMPLE_TRANSACTION:
1635 ret = walk_tree (gimple_transaction_label_ptr (stmt), callback_op,
1636 wi, pset);
1637 if (ret)
1638 return ret;
1639 break;
1641 /* Tuples that do not have operands. */
1642 case GIMPLE_NOP:
1643 case GIMPLE_RESX:
1644 case GIMPLE_OMP_RETURN:
1645 case GIMPLE_PREDICT:
1646 break;
1648 default:
1650 enum gimple_statement_structure_enum gss;
1651 gss = gimple_statement_structure (stmt);
1652 if (gss == GSS_WITH_OPS || gss == GSS_WITH_MEM_OPS)
1653 for (i = 0; i < gimple_num_ops (stmt); i++)
1655 ret = walk_tree (gimple_op_ptr (stmt, i), callback_op, wi, pset);
1656 if (ret)
1657 return ret;
1660 break;
1663 return NULL_TREE;
1667 /* Walk the current statement in GSI (optionally using traversal state
1668 stored in WI). If WI is NULL, no state is kept during traversal.
1669 The callback CALLBACK_STMT is called. If CALLBACK_STMT indicates
1670 that it has handled all the operands of the statement, its return
1671 value is returned. Otherwise, the return value from CALLBACK_STMT
1672 is discarded and its operands are scanned.
1674 If CALLBACK_STMT is NULL or it didn't handle the operands,
1675 CALLBACK_OP is called on each operand of the statement via
1676 walk_gimple_op. If walk_gimple_op returns non-NULL for any
1677 operand, the remaining operands are not scanned. In this case, the
1678 return value from CALLBACK_OP is returned.
1680 In any other case, NULL_TREE is returned. */
1682 tree
1683 walk_gimple_stmt (gimple_stmt_iterator *gsi, walk_stmt_fn callback_stmt,
1684 walk_tree_fn callback_op, struct walk_stmt_info *wi)
1686 gimple ret;
1687 tree tree_ret;
1688 gimple stmt = gsi_stmt (*gsi);
1690 if (wi)
1692 wi->gsi = *gsi;
1693 wi->removed_stmt = false;
1695 if (wi->want_locations && gimple_has_location (stmt))
1696 input_location = gimple_location (stmt);
1699 ret = NULL;
1701 /* Invoke the statement callback. Return if the callback handled
1702 all of STMT operands by itself. */
1703 if (callback_stmt)
1705 bool handled_ops = false;
1706 tree_ret = callback_stmt (gsi, &handled_ops, wi);
1707 if (handled_ops)
1708 return tree_ret;
1710 /* If CALLBACK_STMT did not handle operands, it should not have
1711 a value to return. */
1712 gcc_assert (tree_ret == NULL);
1714 if (wi && wi->removed_stmt)
1715 return NULL;
1717 /* Re-read stmt in case the callback changed it. */
1718 stmt = gsi_stmt (*gsi);
1721 /* If CALLBACK_OP is defined, invoke it on every operand of STMT. */
1722 if (callback_op)
1724 tree_ret = walk_gimple_op (stmt, callback_op, wi);
1725 if (tree_ret)
1726 return tree_ret;
1729 /* If STMT can have statements inside (e.g. GIMPLE_BIND), walk them. */
1730 switch (gimple_code (stmt))
1732 case GIMPLE_BIND:
1733 ret = walk_gimple_seq_mod (gimple_bind_body_ptr (stmt), callback_stmt,
1734 callback_op, wi);
1735 if (ret)
1736 return wi->callback_result;
1737 break;
1739 case GIMPLE_CATCH:
1740 ret = walk_gimple_seq_mod (gimple_catch_handler_ptr (stmt), callback_stmt,
1741 callback_op, wi);
1742 if (ret)
1743 return wi->callback_result;
1744 break;
1746 case GIMPLE_EH_FILTER:
1747 ret = walk_gimple_seq_mod (gimple_eh_filter_failure_ptr (stmt), callback_stmt,
1748 callback_op, wi);
1749 if (ret)
1750 return wi->callback_result;
1751 break;
1753 case GIMPLE_EH_ELSE:
1754 ret = walk_gimple_seq_mod (gimple_eh_else_n_body_ptr (stmt),
1755 callback_stmt, callback_op, wi);
1756 if (ret)
1757 return wi->callback_result;
1758 ret = walk_gimple_seq_mod (gimple_eh_else_e_body_ptr (stmt),
1759 callback_stmt, callback_op, wi);
1760 if (ret)
1761 return wi->callback_result;
1762 break;
1764 case GIMPLE_TRY:
1765 ret = walk_gimple_seq_mod (gimple_try_eval_ptr (stmt), callback_stmt, callback_op,
1766 wi);
1767 if (ret)
1768 return wi->callback_result;
1770 ret = walk_gimple_seq_mod (gimple_try_cleanup_ptr (stmt), callback_stmt,
1771 callback_op, wi);
1772 if (ret)
1773 return wi->callback_result;
1774 break;
1776 case GIMPLE_OMP_FOR:
1777 ret = walk_gimple_seq_mod (gimple_omp_for_pre_body_ptr (stmt), callback_stmt,
1778 callback_op, wi);
1779 if (ret)
1780 return wi->callback_result;
1782 /* FALL THROUGH. */
1783 case GIMPLE_OMP_CRITICAL:
1784 case GIMPLE_OMP_MASTER:
1785 case GIMPLE_OMP_ORDERED:
1786 case GIMPLE_OMP_SECTION:
1787 case GIMPLE_OMP_PARALLEL:
1788 case GIMPLE_OMP_TASK:
1789 case GIMPLE_OMP_SECTIONS:
1790 case GIMPLE_OMP_SINGLE:
1791 ret = walk_gimple_seq_mod (gimple_omp_body_ptr (stmt), callback_stmt,
1792 callback_op, wi);
1793 if (ret)
1794 return wi->callback_result;
1795 break;
1797 case GIMPLE_WITH_CLEANUP_EXPR:
1798 ret = walk_gimple_seq_mod (gimple_wce_cleanup_ptr (stmt), callback_stmt,
1799 callback_op, wi);
1800 if (ret)
1801 return wi->callback_result;
1802 break;
1804 case GIMPLE_TRANSACTION:
1805 ret = walk_gimple_seq_mod (gimple_transaction_body_ptr (stmt),
1806 callback_stmt, callback_op, wi);
1807 if (ret)
1808 return wi->callback_result;
1809 break;
1811 default:
1812 gcc_assert (!gimple_has_substatements (stmt));
1813 break;
1816 return NULL;
1820 /* Set sequence SEQ to be the GIMPLE body for function FN. */
1822 void
1823 gimple_set_body (tree fndecl, gimple_seq seq)
1825 struct function *fn = DECL_STRUCT_FUNCTION (fndecl);
1826 if (fn == NULL)
1828 /* If FNDECL still does not have a function structure associated
1829 with it, then it does not make sense for it to receive a
1830 GIMPLE body. */
1831 gcc_assert (seq == NULL);
1833 else
1834 fn->gimple_body = seq;
1838 /* Return the body of GIMPLE statements for function FN. After the
1839 CFG pass, the function body doesn't exist anymore because it has
1840 been split up into basic blocks. In this case, it returns
1841 NULL. */
1843 gimple_seq
1844 gimple_body (tree fndecl)
1846 struct function *fn = DECL_STRUCT_FUNCTION (fndecl);
1847 return fn ? fn->gimple_body : NULL;
1850 /* Return true when FNDECL has Gimple body either in unlowered
1851 or CFG form. */
1852 bool
1853 gimple_has_body_p (tree fndecl)
1855 struct function *fn = DECL_STRUCT_FUNCTION (fndecl);
1856 return (gimple_body (fndecl) || (fn && fn->cfg));
1859 /* Return true if calls C1 and C2 are known to go to the same function. */
1861 bool
1862 gimple_call_same_target_p (const_gimple c1, const_gimple c2)
1864 if (gimple_call_internal_p (c1))
1865 return (gimple_call_internal_p (c2)
1866 && gimple_call_internal_fn (c1) == gimple_call_internal_fn (c2));
1867 else
1868 return (gimple_call_fn (c1) == gimple_call_fn (c2)
1869 || (gimple_call_fndecl (c1)
1870 && gimple_call_fndecl (c1) == gimple_call_fndecl (c2)));
1873 /* Detect flags from a GIMPLE_CALL. This is just like
1874 call_expr_flags, but for gimple tuples. */
1877 gimple_call_flags (const_gimple stmt)
1879 int flags;
1880 tree decl = gimple_call_fndecl (stmt);
1882 if (decl)
1883 flags = flags_from_decl_or_type (decl);
1884 else if (gimple_call_internal_p (stmt))
1885 flags = internal_fn_flags (gimple_call_internal_fn (stmt));
1886 else
1887 flags = flags_from_decl_or_type (gimple_call_fntype (stmt));
1889 if (stmt->gsbase.subcode & GF_CALL_NOTHROW)
1890 flags |= ECF_NOTHROW;
1892 return flags;
1895 /* Return the "fn spec" string for call STMT. */
1897 static tree
1898 gimple_call_fnspec (const_gimple stmt)
1900 tree type, attr;
1902 type = gimple_call_fntype (stmt);
1903 if (!type)
1904 return NULL_TREE;
1906 attr = lookup_attribute ("fn spec", TYPE_ATTRIBUTES (type));
1907 if (!attr)
1908 return NULL_TREE;
1910 return TREE_VALUE (TREE_VALUE (attr));
1913 /* Detects argument flags for argument number ARG on call STMT. */
1916 gimple_call_arg_flags (const_gimple stmt, unsigned arg)
1918 tree attr = gimple_call_fnspec (stmt);
1920 if (!attr || 1 + arg >= (unsigned) TREE_STRING_LENGTH (attr))
1921 return 0;
1923 switch (TREE_STRING_POINTER (attr)[1 + arg])
1925 case 'x':
1926 case 'X':
1927 return EAF_UNUSED;
1929 case 'R':
1930 return EAF_DIRECT | EAF_NOCLOBBER | EAF_NOESCAPE;
1932 case 'r':
1933 return EAF_NOCLOBBER | EAF_NOESCAPE;
1935 case 'W':
1936 return EAF_DIRECT | EAF_NOESCAPE;
1938 case 'w':
1939 return EAF_NOESCAPE;
1941 case '.':
1942 default:
1943 return 0;
1947 /* Detects return flags for the call STMT. */
1950 gimple_call_return_flags (const_gimple stmt)
1952 tree attr;
1954 if (gimple_call_flags (stmt) & ECF_MALLOC)
1955 return ERF_NOALIAS;
1957 attr = gimple_call_fnspec (stmt);
1958 if (!attr || TREE_STRING_LENGTH (attr) < 1)
1959 return 0;
1961 switch (TREE_STRING_POINTER (attr)[0])
1963 case '1':
1964 case '2':
1965 case '3':
1966 case '4':
1967 return ERF_RETURNS_ARG | (TREE_STRING_POINTER (attr)[0] - '1');
1969 case 'm':
1970 return ERF_NOALIAS;
1972 case '.':
1973 default:
1974 return 0;
1979 /* Return true if GS is a copy assignment. */
1981 bool
1982 gimple_assign_copy_p (gimple gs)
1984 return (gimple_assign_single_p (gs)
1985 && is_gimple_val (gimple_op (gs, 1)));
1989 /* Return true if GS is a SSA_NAME copy assignment. */
1991 bool
1992 gimple_assign_ssa_name_copy_p (gimple gs)
1994 return (gimple_assign_single_p (gs)
1995 && TREE_CODE (gimple_assign_lhs (gs)) == SSA_NAME
1996 && TREE_CODE (gimple_assign_rhs1 (gs)) == SSA_NAME);
2000 /* Return true if GS is an assignment with a unary RHS, but the
2001 operator has no effect on the assigned value. The logic is adapted
2002 from STRIP_NOPS. This predicate is intended to be used in tuplifying
2003 instances in which STRIP_NOPS was previously applied to the RHS of
2004 an assignment.
2006 NOTE: In the use cases that led to the creation of this function
2007 and of gimple_assign_single_p, it is typical to test for either
2008 condition and to proceed in the same manner. In each case, the
2009 assigned value is represented by the single RHS operand of the
2010 assignment. I suspect there may be cases where gimple_assign_copy_p,
2011 gimple_assign_single_p, or equivalent logic is used where a similar
2012 treatment of unary NOPs is appropriate. */
2014 bool
2015 gimple_assign_unary_nop_p (gimple gs)
2017 return (is_gimple_assign (gs)
2018 && (CONVERT_EXPR_CODE_P (gimple_assign_rhs_code (gs))
2019 || gimple_assign_rhs_code (gs) == NON_LVALUE_EXPR)
2020 && gimple_assign_rhs1 (gs) != error_mark_node
2021 && (TYPE_MODE (TREE_TYPE (gimple_assign_lhs (gs)))
2022 == TYPE_MODE (TREE_TYPE (gimple_assign_rhs1 (gs)))));
2025 /* Set BB to be the basic block holding G. */
2027 void
2028 gimple_set_bb (gimple stmt, basic_block bb)
2030 stmt->gsbase.bb = bb;
2032 /* If the statement is a label, add the label to block-to-labels map
2033 so that we can speed up edge creation for GIMPLE_GOTOs. */
2034 if (cfun->cfg && gimple_code (stmt) == GIMPLE_LABEL)
2036 tree t;
2037 int uid;
2039 t = gimple_label_label (stmt);
2040 uid = LABEL_DECL_UID (t);
2041 if (uid == -1)
2043 unsigned old_len = vec_safe_length (label_to_block_map);
2044 LABEL_DECL_UID (t) = uid = cfun->cfg->last_label_uid++;
2045 if (old_len <= (unsigned) uid)
2047 unsigned new_len = 3 * uid / 2 + 1;
2049 vec_safe_grow_cleared (label_to_block_map, new_len);
2053 (*label_to_block_map)[uid] = bb;
2058 /* Modify the RHS of the assignment pointed-to by GSI using the
2059 operands in the expression tree EXPR.
2061 NOTE: The statement pointed-to by GSI may be reallocated if it
2062 did not have enough operand slots.
2064 This function is useful to convert an existing tree expression into
2065 the flat representation used for the RHS of a GIMPLE assignment.
2066 It will reallocate memory as needed to expand or shrink the number
2067 of operand slots needed to represent EXPR.
2069 NOTE: If you find yourself building a tree and then calling this
2070 function, you are most certainly doing it the slow way. It is much
2071 better to build a new assignment or to use the function
2072 gimple_assign_set_rhs_with_ops, which does not require an
2073 expression tree to be built. */
2075 void
2076 gimple_assign_set_rhs_from_tree (gimple_stmt_iterator *gsi, tree expr)
2078 enum tree_code subcode;
2079 tree op1, op2, op3;
2081 extract_ops_from_tree_1 (expr, &subcode, &op1, &op2, &op3);
2082 gimple_assign_set_rhs_with_ops_1 (gsi, subcode, op1, op2, op3);
2086 /* Set the RHS of assignment statement pointed-to by GSI to CODE with
2087 operands OP1, OP2 and OP3.
2089 NOTE: The statement pointed-to by GSI may be reallocated if it
2090 did not have enough operand slots. */
2092 void
2093 gimple_assign_set_rhs_with_ops_1 (gimple_stmt_iterator *gsi, enum tree_code code,
2094 tree op1, tree op2, tree op3)
2096 unsigned new_rhs_ops = get_gimple_rhs_num_ops (code);
2097 gimple stmt = gsi_stmt (*gsi);
2099 /* If the new CODE needs more operands, allocate a new statement. */
2100 if (gimple_num_ops (stmt) < new_rhs_ops + 1)
2102 tree lhs = gimple_assign_lhs (stmt);
2103 gimple new_stmt = gimple_alloc (gimple_code (stmt), new_rhs_ops + 1);
2104 memcpy (new_stmt, stmt, gimple_size (gimple_code (stmt)));
2105 gimple_init_singleton (new_stmt);
2106 gsi_replace (gsi, new_stmt, true);
2107 stmt = new_stmt;
2109 /* The LHS needs to be reset as this also changes the SSA name
2110 on the LHS. */
2111 gimple_assign_set_lhs (stmt, lhs);
2114 gimple_set_num_ops (stmt, new_rhs_ops + 1);
2115 gimple_set_subcode (stmt, code);
2116 gimple_assign_set_rhs1 (stmt, op1);
2117 if (new_rhs_ops > 1)
2118 gimple_assign_set_rhs2 (stmt, op2);
2119 if (new_rhs_ops > 2)
2120 gimple_assign_set_rhs3 (stmt, op3);
2124 /* Return the LHS of a statement that performs an assignment,
2125 either a GIMPLE_ASSIGN or a GIMPLE_CALL. Returns NULL_TREE
2126 for a call to a function that returns no value, or for a
2127 statement other than an assignment or a call. */
2129 tree
2130 gimple_get_lhs (const_gimple stmt)
2132 enum gimple_code code = gimple_code (stmt);
2134 if (code == GIMPLE_ASSIGN)
2135 return gimple_assign_lhs (stmt);
2136 else if (code == GIMPLE_CALL)
2137 return gimple_call_lhs (stmt);
2138 else
2139 return NULL_TREE;
2143 /* Set the LHS of a statement that performs an assignment,
2144 either a GIMPLE_ASSIGN or a GIMPLE_CALL. */
2146 void
2147 gimple_set_lhs (gimple stmt, tree lhs)
2149 enum gimple_code code = gimple_code (stmt);
2151 if (code == GIMPLE_ASSIGN)
2152 gimple_assign_set_lhs (stmt, lhs);
2153 else if (code == GIMPLE_CALL)
2154 gimple_call_set_lhs (stmt, lhs);
2155 else
2156 gcc_unreachable ();
2160 /* Return a deep copy of statement STMT. All the operands from STMT
2161 are reallocated and copied using unshare_expr. The DEF, USE, VDEF
2162 and VUSE operand arrays are set to empty in the new copy. The new
2163 copy isn't part of any sequence. */
2165 gimple
2166 gimple_copy (gimple stmt)
2168 enum gimple_code code = gimple_code (stmt);
2169 unsigned num_ops = gimple_num_ops (stmt);
2170 gimple copy = gimple_alloc (code, num_ops);
2171 unsigned i;
2173 /* Shallow copy all the fields from STMT. */
2174 memcpy (copy, stmt, gimple_size (code));
2175 gimple_init_singleton (copy);
2177 /* If STMT has sub-statements, deep-copy them as well. */
2178 if (gimple_has_substatements (stmt))
2180 gimple_seq new_seq;
2181 tree t;
2183 switch (gimple_code (stmt))
2185 case GIMPLE_BIND:
2186 new_seq = gimple_seq_copy (gimple_bind_body (stmt));
2187 gimple_bind_set_body (copy, new_seq);
2188 gimple_bind_set_vars (copy, unshare_expr (gimple_bind_vars (stmt)));
2189 gimple_bind_set_block (copy, gimple_bind_block (stmt));
2190 break;
2192 case GIMPLE_CATCH:
2193 new_seq = gimple_seq_copy (gimple_catch_handler (stmt));
2194 gimple_catch_set_handler (copy, new_seq);
2195 t = unshare_expr (gimple_catch_types (stmt));
2196 gimple_catch_set_types (copy, t);
2197 break;
2199 case GIMPLE_EH_FILTER:
2200 new_seq = gimple_seq_copy (gimple_eh_filter_failure (stmt));
2201 gimple_eh_filter_set_failure (copy, new_seq);
2202 t = unshare_expr (gimple_eh_filter_types (stmt));
2203 gimple_eh_filter_set_types (copy, t);
2204 break;
2206 case GIMPLE_EH_ELSE:
2207 new_seq = gimple_seq_copy (gimple_eh_else_n_body (stmt));
2208 gimple_eh_else_set_n_body (copy, new_seq);
2209 new_seq = gimple_seq_copy (gimple_eh_else_e_body (stmt));
2210 gimple_eh_else_set_e_body (copy, new_seq);
2211 break;
2213 case GIMPLE_TRY:
2214 new_seq = gimple_seq_copy (gimple_try_eval (stmt));
2215 gimple_try_set_eval (copy, new_seq);
2216 new_seq = gimple_seq_copy (gimple_try_cleanup (stmt));
2217 gimple_try_set_cleanup (copy, new_seq);
2218 break;
2220 case GIMPLE_OMP_FOR:
2221 new_seq = gimple_seq_copy (gimple_omp_for_pre_body (stmt));
2222 gimple_omp_for_set_pre_body (copy, new_seq);
2223 t = unshare_expr (gimple_omp_for_clauses (stmt));
2224 gimple_omp_for_set_clauses (copy, t);
2225 copy->gimple_omp_for.iter
2226 = ggc_alloc_vec_gimple_omp_for_iter
2227 (gimple_omp_for_collapse (stmt));
2228 for (i = 0; i < gimple_omp_for_collapse (stmt); i++)
2230 gimple_omp_for_set_cond (copy, i,
2231 gimple_omp_for_cond (stmt, i));
2232 gimple_omp_for_set_index (copy, i,
2233 gimple_omp_for_index (stmt, i));
2234 t = unshare_expr (gimple_omp_for_initial (stmt, i));
2235 gimple_omp_for_set_initial (copy, i, t);
2236 t = unshare_expr (gimple_omp_for_final (stmt, i));
2237 gimple_omp_for_set_final (copy, i, t);
2238 t = unshare_expr (gimple_omp_for_incr (stmt, i));
2239 gimple_omp_for_set_incr (copy, i, t);
2241 goto copy_omp_body;
2243 case GIMPLE_OMP_PARALLEL:
2244 t = unshare_expr (gimple_omp_parallel_clauses (stmt));
2245 gimple_omp_parallel_set_clauses (copy, t);
2246 t = unshare_expr (gimple_omp_parallel_child_fn (stmt));
2247 gimple_omp_parallel_set_child_fn (copy, t);
2248 t = unshare_expr (gimple_omp_parallel_data_arg (stmt));
2249 gimple_omp_parallel_set_data_arg (copy, t);
2250 goto copy_omp_body;
2252 case GIMPLE_OMP_TASK:
2253 t = unshare_expr (gimple_omp_task_clauses (stmt));
2254 gimple_omp_task_set_clauses (copy, t);
2255 t = unshare_expr (gimple_omp_task_child_fn (stmt));
2256 gimple_omp_task_set_child_fn (copy, t);
2257 t = unshare_expr (gimple_omp_task_data_arg (stmt));
2258 gimple_omp_task_set_data_arg (copy, t);
2259 t = unshare_expr (gimple_omp_task_copy_fn (stmt));
2260 gimple_omp_task_set_copy_fn (copy, t);
2261 t = unshare_expr (gimple_omp_task_arg_size (stmt));
2262 gimple_omp_task_set_arg_size (copy, t);
2263 t = unshare_expr (gimple_omp_task_arg_align (stmt));
2264 gimple_omp_task_set_arg_align (copy, t);
2265 goto copy_omp_body;
2267 case GIMPLE_OMP_CRITICAL:
2268 t = unshare_expr (gimple_omp_critical_name (stmt));
2269 gimple_omp_critical_set_name (copy, t);
2270 goto copy_omp_body;
2272 case GIMPLE_OMP_SECTIONS:
2273 t = unshare_expr (gimple_omp_sections_clauses (stmt));
2274 gimple_omp_sections_set_clauses (copy, t);
2275 t = unshare_expr (gimple_omp_sections_control (stmt));
2276 gimple_omp_sections_set_control (copy, t);
2277 /* FALLTHRU */
2279 case GIMPLE_OMP_SINGLE:
2280 case GIMPLE_OMP_SECTION:
2281 case GIMPLE_OMP_MASTER:
2282 case GIMPLE_OMP_ORDERED:
2283 copy_omp_body:
2284 new_seq = gimple_seq_copy (gimple_omp_body (stmt));
2285 gimple_omp_set_body (copy, new_seq);
2286 break;
2288 case GIMPLE_TRANSACTION:
2289 new_seq = gimple_seq_copy (gimple_transaction_body (stmt));
2290 gimple_transaction_set_body (copy, new_seq);
2291 break;
2293 case GIMPLE_WITH_CLEANUP_EXPR:
2294 new_seq = gimple_seq_copy (gimple_wce_cleanup (stmt));
2295 gimple_wce_set_cleanup (copy, new_seq);
2296 break;
2298 default:
2299 gcc_unreachable ();
2303 /* Make copy of operands. */
2304 for (i = 0; i < num_ops; i++)
2305 gimple_set_op (copy, i, unshare_expr (gimple_op (stmt, i)));
2307 if (gimple_has_mem_ops (stmt))
2309 gimple_set_vdef (copy, gimple_vdef (stmt));
2310 gimple_set_vuse (copy, gimple_vuse (stmt));
2313 /* Clear out SSA operand vectors on COPY. */
2314 if (gimple_has_ops (stmt))
2316 gimple_set_use_ops (copy, NULL);
2318 /* SSA operands need to be updated. */
2319 gimple_set_modified (copy, true);
2322 return copy;
2326 /* Return true if statement S has side-effects. We consider a
2327 statement to have side effects if:
2329 - It is a GIMPLE_CALL not marked with ECF_PURE or ECF_CONST.
2330 - Any of its operands are marked TREE_THIS_VOLATILE or TREE_SIDE_EFFECTS. */
2332 bool
2333 gimple_has_side_effects (const_gimple s)
2335 if (is_gimple_debug (s))
2336 return false;
2338 /* We don't have to scan the arguments to check for
2339 volatile arguments, though, at present, we still
2340 do a scan to check for TREE_SIDE_EFFECTS. */
2341 if (gimple_has_volatile_ops (s))
2342 return true;
2344 if (gimple_code (s) == GIMPLE_ASM
2345 && gimple_asm_volatile_p (s))
2346 return true;
2348 if (is_gimple_call (s))
2350 int flags = gimple_call_flags (s);
2352 /* An infinite loop is considered a side effect. */
2353 if (!(flags & (ECF_CONST | ECF_PURE))
2354 || (flags & ECF_LOOPING_CONST_OR_PURE))
2355 return true;
2357 return false;
2360 return false;
2363 /* Helper for gimple_could_trap_p and gimple_assign_rhs_could_trap_p.
2364 Return true if S can trap. When INCLUDE_MEM is true, check whether
2365 the memory operations could trap. When INCLUDE_STORES is true and
2366 S is a GIMPLE_ASSIGN, the LHS of the assignment is also checked. */
2368 bool
2369 gimple_could_trap_p_1 (gimple s, bool include_mem, bool include_stores)
2371 tree t, div = NULL_TREE;
2372 enum tree_code op;
2374 if (include_mem)
2376 unsigned i, start = (is_gimple_assign (s) && !include_stores) ? 1 : 0;
2378 for (i = start; i < gimple_num_ops (s); i++)
2379 if (tree_could_trap_p (gimple_op (s, i)))
2380 return true;
2383 switch (gimple_code (s))
2385 case GIMPLE_ASM:
2386 return gimple_asm_volatile_p (s);
2388 case GIMPLE_CALL:
2389 t = gimple_call_fndecl (s);
2390 /* Assume that calls to weak functions may trap. */
2391 if (!t || !DECL_P (t) || DECL_WEAK (t))
2392 return true;
2393 return false;
2395 case GIMPLE_ASSIGN:
2396 t = gimple_expr_type (s);
2397 op = gimple_assign_rhs_code (s);
2398 if (get_gimple_rhs_class (op) == GIMPLE_BINARY_RHS)
2399 div = gimple_assign_rhs2 (s);
2400 return (operation_could_trap_p (op, FLOAT_TYPE_P (t),
2401 (INTEGRAL_TYPE_P (t)
2402 && TYPE_OVERFLOW_TRAPS (t)),
2403 div));
2405 default:
2406 break;
2409 return false;
2412 /* Return true if statement S can trap. */
2414 bool
2415 gimple_could_trap_p (gimple s)
2417 return gimple_could_trap_p_1 (s, true, true);
2420 /* Return true if RHS of a GIMPLE_ASSIGN S can trap. */
2422 bool
2423 gimple_assign_rhs_could_trap_p (gimple s)
2425 gcc_assert (is_gimple_assign (s));
2426 return gimple_could_trap_p_1 (s, true, false);
2430 /* Print debugging information for gimple stmts generated. */
2432 void
2433 dump_gimple_statistics (void)
2435 int i, total_tuples = 0, total_bytes = 0;
2437 if (! GATHER_STATISTICS)
2439 fprintf (stderr, "No gimple statistics\n");
2440 return;
2443 fprintf (stderr, "\nGIMPLE statements\n");
2444 fprintf (stderr, "Kind Stmts Bytes\n");
2445 fprintf (stderr, "---------------------------------------\n");
2446 for (i = 0; i < (int) gimple_alloc_kind_all; ++i)
2448 fprintf (stderr, "%-20s %7d %10d\n", gimple_alloc_kind_names[i],
2449 gimple_alloc_counts[i], gimple_alloc_sizes[i]);
2450 total_tuples += gimple_alloc_counts[i];
2451 total_bytes += gimple_alloc_sizes[i];
2453 fprintf (stderr, "---------------------------------------\n");
2454 fprintf (stderr, "%-20s %7d %10d\n", "Total", total_tuples, total_bytes);
2455 fprintf (stderr, "---------------------------------------\n");
2459 /* Return the number of operands needed on the RHS of a GIMPLE
2460 assignment for an expression with tree code CODE. */
2462 unsigned
2463 get_gimple_rhs_num_ops (enum tree_code code)
2465 enum gimple_rhs_class rhs_class = get_gimple_rhs_class (code);
2467 if (rhs_class == GIMPLE_UNARY_RHS || rhs_class == GIMPLE_SINGLE_RHS)
2468 return 1;
2469 else if (rhs_class == GIMPLE_BINARY_RHS)
2470 return 2;
2471 else if (rhs_class == GIMPLE_TERNARY_RHS)
2472 return 3;
2473 else
2474 gcc_unreachable ();
2477 #define DEFTREECODE(SYM, STRING, TYPE, NARGS) \
2478 (unsigned char) \
2479 ((TYPE) == tcc_unary ? GIMPLE_UNARY_RHS \
2480 : ((TYPE) == tcc_binary \
2481 || (TYPE) == tcc_comparison) ? GIMPLE_BINARY_RHS \
2482 : ((TYPE) == tcc_constant \
2483 || (TYPE) == tcc_declaration \
2484 || (TYPE) == tcc_reference) ? GIMPLE_SINGLE_RHS \
2485 : ((SYM) == TRUTH_AND_EXPR \
2486 || (SYM) == TRUTH_OR_EXPR \
2487 || (SYM) == TRUTH_XOR_EXPR) ? GIMPLE_BINARY_RHS \
2488 : (SYM) == TRUTH_NOT_EXPR ? GIMPLE_UNARY_RHS \
2489 : ((SYM) == COND_EXPR \
2490 || (SYM) == WIDEN_MULT_PLUS_EXPR \
2491 || (SYM) == WIDEN_MULT_MINUS_EXPR \
2492 || (SYM) == DOT_PROD_EXPR \
2493 || (SYM) == REALIGN_LOAD_EXPR \
2494 || (SYM) == VEC_COND_EXPR \
2495 || (SYM) == VEC_PERM_EXPR \
2496 || (SYM) == FMA_EXPR) ? GIMPLE_TERNARY_RHS \
2497 : ((SYM) == CONSTRUCTOR \
2498 || (SYM) == OBJ_TYPE_REF \
2499 || (SYM) == ASSERT_EXPR \
2500 || (SYM) == ADDR_EXPR \
2501 || (SYM) == WITH_SIZE_EXPR \
2502 || (SYM) == SSA_NAME) ? GIMPLE_SINGLE_RHS \
2503 : GIMPLE_INVALID_RHS),
2504 #define END_OF_BASE_TREE_CODES (unsigned char) GIMPLE_INVALID_RHS,
2506 const unsigned char gimple_rhs_class_table[] = {
2507 #include "all-tree.def"
2510 #undef DEFTREECODE
2511 #undef END_OF_BASE_TREE_CODES
2513 /* For the definitive definition of GIMPLE, see doc/tree-ssa.texi. */
2515 /* Validation of GIMPLE expressions. */
2517 /* Return true if T is a valid LHS for a GIMPLE assignment expression. */
2519 bool
2520 is_gimple_lvalue (tree t)
2522 return (is_gimple_addressable (t)
2523 || TREE_CODE (t) == WITH_SIZE_EXPR
2524 /* These are complex lvalues, but don't have addresses, so they
2525 go here. */
2526 || TREE_CODE (t) == BIT_FIELD_REF);
2529 /* Return true if T is a GIMPLE condition. */
2531 bool
2532 is_gimple_condexpr (tree t)
2534 return (is_gimple_val (t) || (COMPARISON_CLASS_P (t)
2535 && !tree_could_throw_p (t)
2536 && is_gimple_val (TREE_OPERAND (t, 0))
2537 && is_gimple_val (TREE_OPERAND (t, 1))));
2540 /* Return true if T is something whose address can be taken. */
2542 bool
2543 is_gimple_addressable (tree t)
2545 return (is_gimple_id (t) || handled_component_p (t)
2546 || TREE_CODE (t) == MEM_REF);
2549 /* Return true if T is a valid gimple constant. */
2551 bool
2552 is_gimple_constant (const_tree t)
2554 switch (TREE_CODE (t))
2556 case INTEGER_CST:
2557 case REAL_CST:
2558 case FIXED_CST:
2559 case STRING_CST:
2560 case COMPLEX_CST:
2561 case VECTOR_CST:
2562 return true;
2564 default:
2565 return false;
2569 /* Return true if T is a gimple address. */
2571 bool
2572 is_gimple_address (const_tree t)
2574 tree op;
2576 if (TREE_CODE (t) != ADDR_EXPR)
2577 return false;
2579 op = TREE_OPERAND (t, 0);
2580 while (handled_component_p (op))
2582 if ((TREE_CODE (op) == ARRAY_REF
2583 || TREE_CODE (op) == ARRAY_RANGE_REF)
2584 && !is_gimple_val (TREE_OPERAND (op, 1)))
2585 return false;
2587 op = TREE_OPERAND (op, 0);
2590 if (CONSTANT_CLASS_P (op) || TREE_CODE (op) == MEM_REF)
2591 return true;
2593 switch (TREE_CODE (op))
2595 case PARM_DECL:
2596 case RESULT_DECL:
2597 case LABEL_DECL:
2598 case FUNCTION_DECL:
2599 case VAR_DECL:
2600 case CONST_DECL:
2601 return true;
2603 default:
2604 return false;
2608 /* Return true if T is a gimple invariant address. */
2610 bool
2611 is_gimple_invariant_address (const_tree t)
2613 const_tree op;
2615 if (TREE_CODE (t) != ADDR_EXPR)
2616 return false;
2618 op = strip_invariant_refs (TREE_OPERAND (t, 0));
2619 if (!op)
2620 return false;
2622 if (TREE_CODE (op) == MEM_REF)
2624 const_tree op0 = TREE_OPERAND (op, 0);
2625 return (TREE_CODE (op0) == ADDR_EXPR
2626 && (CONSTANT_CLASS_P (TREE_OPERAND (op0, 0))
2627 || decl_address_invariant_p (TREE_OPERAND (op0, 0))));
2630 return CONSTANT_CLASS_P (op) || decl_address_invariant_p (op);
2633 /* Return true if T is a gimple invariant address at IPA level
2634 (so addresses of variables on stack are not allowed). */
2636 bool
2637 is_gimple_ip_invariant_address (const_tree t)
2639 const_tree op;
2641 if (TREE_CODE (t) != ADDR_EXPR)
2642 return false;
2644 op = strip_invariant_refs (TREE_OPERAND (t, 0));
2645 if (!op)
2646 return false;
2648 if (TREE_CODE (op) == MEM_REF)
2650 const_tree op0 = TREE_OPERAND (op, 0);
2651 return (TREE_CODE (op0) == ADDR_EXPR
2652 && (CONSTANT_CLASS_P (TREE_OPERAND (op0, 0))
2653 || decl_address_ip_invariant_p (TREE_OPERAND (op0, 0))));
2656 return CONSTANT_CLASS_P (op) || decl_address_ip_invariant_p (op);
2659 /* Return true if T is a GIMPLE minimal invariant. It's a restricted
2660 form of function invariant. */
2662 bool
2663 is_gimple_min_invariant (const_tree t)
2665 if (TREE_CODE (t) == ADDR_EXPR)
2666 return is_gimple_invariant_address (t);
2668 return is_gimple_constant (t);
2671 /* Return true if T is a GIMPLE interprocedural invariant. It's a restricted
2672 form of gimple minimal invariant. */
2674 bool
2675 is_gimple_ip_invariant (const_tree t)
2677 if (TREE_CODE (t) == ADDR_EXPR)
2678 return is_gimple_ip_invariant_address (t);
2680 return is_gimple_constant (t);
2683 /* Return true if T is a variable. */
2685 bool
2686 is_gimple_variable (tree t)
2688 return (TREE_CODE (t) == VAR_DECL
2689 || TREE_CODE (t) == PARM_DECL
2690 || TREE_CODE (t) == RESULT_DECL
2691 || TREE_CODE (t) == SSA_NAME);
2694 /* Return true if T is a GIMPLE identifier (something with an address). */
2696 bool
2697 is_gimple_id (tree t)
2699 return (is_gimple_variable (t)
2700 || TREE_CODE (t) == FUNCTION_DECL
2701 || TREE_CODE (t) == LABEL_DECL
2702 || TREE_CODE (t) == CONST_DECL
2703 /* Allow string constants, since they are addressable. */
2704 || TREE_CODE (t) == STRING_CST);
2707 /* Return true if T is a non-aggregate register variable. */
2709 bool
2710 is_gimple_reg (tree t)
2712 if (virtual_operand_p (t))
2713 return false;
2715 if (TREE_CODE (t) == SSA_NAME)
2716 return true;
2718 if (!is_gimple_variable (t))
2719 return false;
2721 if (!is_gimple_reg_type (TREE_TYPE (t)))
2722 return false;
2724 /* A volatile decl is not acceptable because we can't reuse it as
2725 needed. We need to copy it into a temp first. */
2726 if (TREE_THIS_VOLATILE (t))
2727 return false;
2729 /* We define "registers" as things that can be renamed as needed,
2730 which with our infrastructure does not apply to memory. */
2731 if (needs_to_live_in_memory (t))
2732 return false;
2734 /* Hard register variables are an interesting case. For those that
2735 are call-clobbered, we don't know where all the calls are, since
2736 we don't (want to) take into account which operations will turn
2737 into libcalls at the rtl level. For those that are call-saved,
2738 we don't currently model the fact that calls may in fact change
2739 global hard registers, nor do we examine ASM_CLOBBERS at the tree
2740 level, and so miss variable changes that might imply. All around,
2741 it seems safest to not do too much optimization with these at the
2742 tree level at all. We'll have to rely on the rtl optimizers to
2743 clean this up, as there we've got all the appropriate bits exposed. */
2744 if (TREE_CODE (t) == VAR_DECL && DECL_HARD_REGISTER (t))
2745 return false;
2747 /* Complex and vector values must have been put into SSA-like form.
2748 That is, no assignments to the individual components. */
2749 if (TREE_CODE (TREE_TYPE (t)) == COMPLEX_TYPE
2750 || TREE_CODE (TREE_TYPE (t)) == VECTOR_TYPE)
2751 return DECL_GIMPLE_REG_P (t);
2753 return true;
2757 /* Return true if T is a GIMPLE rvalue, i.e. an identifier or a constant. */
2759 bool
2760 is_gimple_val (tree t)
2762 /* Make loads from volatiles and memory vars explicit. */
2763 if (is_gimple_variable (t)
2764 && is_gimple_reg_type (TREE_TYPE (t))
2765 && !is_gimple_reg (t))
2766 return false;
2768 return (is_gimple_variable (t) || is_gimple_min_invariant (t));
2771 /* Similarly, but accept hard registers as inputs to asm statements. */
2773 bool
2774 is_gimple_asm_val (tree t)
2776 if (TREE_CODE (t) == VAR_DECL && DECL_HARD_REGISTER (t))
2777 return true;
2779 return is_gimple_val (t);
2782 /* Return true if T is a GIMPLE minimal lvalue. */
2784 bool
2785 is_gimple_min_lval (tree t)
2787 if (!(t = CONST_CAST_TREE (strip_invariant_refs (t))))
2788 return false;
2789 return (is_gimple_id (t) || TREE_CODE (t) == MEM_REF);
2792 /* Return true if T is a valid function operand of a CALL_EXPR. */
2794 bool
2795 is_gimple_call_addr (tree t)
2797 return (TREE_CODE (t) == OBJ_TYPE_REF || is_gimple_val (t));
2800 /* Return true if T is a valid address operand of a MEM_REF. */
2802 bool
2803 is_gimple_mem_ref_addr (tree t)
2805 return (is_gimple_reg (t)
2806 || TREE_CODE (t) == INTEGER_CST
2807 || (TREE_CODE (t) == ADDR_EXPR
2808 && (CONSTANT_CLASS_P (TREE_OPERAND (t, 0))
2809 || decl_address_invariant_p (TREE_OPERAND (t, 0)))));
2813 /* Given a memory reference expression T, return its base address.
2814 The base address of a memory reference expression is the main
2815 object being referenced. For instance, the base address for
2816 'array[i].fld[j]' is 'array'. You can think of this as stripping
2817 away the offset part from a memory address.
2819 This function calls handled_component_p to strip away all the inner
2820 parts of the memory reference until it reaches the base object. */
2822 tree
2823 get_base_address (tree t)
2825 while (handled_component_p (t))
2826 t = TREE_OPERAND (t, 0);
2828 if ((TREE_CODE (t) == MEM_REF
2829 || TREE_CODE (t) == TARGET_MEM_REF)
2830 && TREE_CODE (TREE_OPERAND (t, 0)) == ADDR_EXPR)
2831 t = TREE_OPERAND (TREE_OPERAND (t, 0), 0);
2833 /* ??? Either the alias oracle or all callers need to properly deal
2834 with WITH_SIZE_EXPRs before we can look through those. */
2835 if (TREE_CODE (t) == WITH_SIZE_EXPR)
2836 return NULL_TREE;
2838 return t;
2841 void
2842 recalculate_side_effects (tree t)
2844 enum tree_code code = TREE_CODE (t);
2845 int len = TREE_OPERAND_LENGTH (t);
2846 int i;
2848 switch (TREE_CODE_CLASS (code))
2850 case tcc_expression:
2851 switch (code)
2853 case INIT_EXPR:
2854 case MODIFY_EXPR:
2855 case VA_ARG_EXPR:
2856 case PREDECREMENT_EXPR:
2857 case PREINCREMENT_EXPR:
2858 case POSTDECREMENT_EXPR:
2859 case POSTINCREMENT_EXPR:
2860 /* All of these have side-effects, no matter what their
2861 operands are. */
2862 return;
2864 default:
2865 break;
2867 /* Fall through. */
2869 case tcc_comparison: /* a comparison expression */
2870 case tcc_unary: /* a unary arithmetic expression */
2871 case tcc_binary: /* a binary arithmetic expression */
2872 case tcc_reference: /* a reference */
2873 case tcc_vl_exp: /* a function call */
2874 TREE_SIDE_EFFECTS (t) = TREE_THIS_VOLATILE (t);
2875 for (i = 0; i < len; ++i)
2877 tree op = TREE_OPERAND (t, i);
2878 if (op && TREE_SIDE_EFFECTS (op))
2879 TREE_SIDE_EFFECTS (t) = 1;
2881 break;
2883 case tcc_constant:
2884 /* No side-effects. */
2885 return;
2887 default:
2888 gcc_unreachable ();
2892 /* Canonicalize a tree T for use in a COND_EXPR as conditional. Returns
2893 a canonicalized tree that is valid for a COND_EXPR or NULL_TREE, if
2894 we failed to create one. */
2896 tree
2897 canonicalize_cond_expr_cond (tree t)
2899 /* Strip conversions around boolean operations. */
2900 if (CONVERT_EXPR_P (t)
2901 && (truth_value_p (TREE_CODE (TREE_OPERAND (t, 0)))
2902 || TREE_CODE (TREE_TYPE (TREE_OPERAND (t, 0)))
2903 == BOOLEAN_TYPE))
2904 t = TREE_OPERAND (t, 0);
2906 /* For !x use x == 0. */
2907 if (TREE_CODE (t) == TRUTH_NOT_EXPR)
2909 tree top0 = TREE_OPERAND (t, 0);
2910 t = build2 (EQ_EXPR, TREE_TYPE (t),
2911 top0, build_int_cst (TREE_TYPE (top0), 0));
2913 /* For cmp ? 1 : 0 use cmp. */
2914 else if (TREE_CODE (t) == COND_EXPR
2915 && COMPARISON_CLASS_P (TREE_OPERAND (t, 0))
2916 && integer_onep (TREE_OPERAND (t, 1))
2917 && integer_zerop (TREE_OPERAND (t, 2)))
2919 tree top0 = TREE_OPERAND (t, 0);
2920 t = build2 (TREE_CODE (top0), TREE_TYPE (t),
2921 TREE_OPERAND (top0, 0), TREE_OPERAND (top0, 1));
2923 /* For x ^ y use x != y. */
2924 else if (TREE_CODE (t) == BIT_XOR_EXPR)
2925 t = build2 (NE_EXPR, TREE_TYPE (t),
2926 TREE_OPERAND (t, 0), TREE_OPERAND (t, 1));
2928 if (is_gimple_condexpr (t))
2929 return t;
2931 return NULL_TREE;
2934 /* Build a GIMPLE_CALL identical to STMT but skipping the arguments in
2935 the positions marked by the set ARGS_TO_SKIP. */
2937 gimple
2938 gimple_call_copy_skip_args (gimple stmt, bitmap args_to_skip)
2940 int i;
2941 int nargs = gimple_call_num_args (stmt);
2942 vec<tree> vargs;
2943 vargs.create (nargs);
2944 gimple new_stmt;
2946 for (i = 0; i < nargs; i++)
2947 if (!bitmap_bit_p (args_to_skip, i))
2948 vargs.quick_push (gimple_call_arg (stmt, i));
2950 if (gimple_call_internal_p (stmt))
2951 new_stmt = gimple_build_call_internal_vec (gimple_call_internal_fn (stmt),
2952 vargs);
2953 else
2954 new_stmt = gimple_build_call_vec (gimple_call_fn (stmt), vargs);
2955 vargs.release ();
2956 if (gimple_call_lhs (stmt))
2957 gimple_call_set_lhs (new_stmt, gimple_call_lhs (stmt));
2959 gimple_set_vuse (new_stmt, gimple_vuse (stmt));
2960 gimple_set_vdef (new_stmt, gimple_vdef (stmt));
2962 if (gimple_has_location (stmt))
2963 gimple_set_location (new_stmt, gimple_location (stmt));
2964 gimple_call_copy_flags (new_stmt, stmt);
2965 gimple_call_set_chain (new_stmt, gimple_call_chain (stmt));
2967 gimple_set_modified (new_stmt, true);
2969 return new_stmt;
2974 /* Return true if the field decls F1 and F2 are at the same offset.
2976 This is intended to be used on GIMPLE types only. */
2978 bool
2979 gimple_compare_field_offset (tree f1, tree f2)
2981 if (DECL_OFFSET_ALIGN (f1) == DECL_OFFSET_ALIGN (f2))
2983 tree offset1 = DECL_FIELD_OFFSET (f1);
2984 tree offset2 = DECL_FIELD_OFFSET (f2);
2985 return ((offset1 == offset2
2986 /* Once gimplification is done, self-referential offsets are
2987 instantiated as operand #2 of the COMPONENT_REF built for
2988 each access and reset. Therefore, they are not relevant
2989 anymore and fields are interchangeable provided that they
2990 represent the same access. */
2991 || (TREE_CODE (offset1) == PLACEHOLDER_EXPR
2992 && TREE_CODE (offset2) == PLACEHOLDER_EXPR
2993 && (DECL_SIZE (f1) == DECL_SIZE (f2)
2994 || (TREE_CODE (DECL_SIZE (f1)) == PLACEHOLDER_EXPR
2995 && TREE_CODE (DECL_SIZE (f2)) == PLACEHOLDER_EXPR)
2996 || operand_equal_p (DECL_SIZE (f1), DECL_SIZE (f2), 0))
2997 && DECL_ALIGN (f1) == DECL_ALIGN (f2))
2998 || operand_equal_p (offset1, offset2, 0))
2999 && tree_int_cst_equal (DECL_FIELD_BIT_OFFSET (f1),
3000 DECL_FIELD_BIT_OFFSET (f2)));
3003 /* Fortran and C do not always agree on what DECL_OFFSET_ALIGN
3004 should be, so handle differing ones specially by decomposing
3005 the offset into a byte and bit offset manually. */
3006 if (host_integerp (DECL_FIELD_OFFSET (f1), 0)
3007 && host_integerp (DECL_FIELD_OFFSET (f2), 0))
3009 unsigned HOST_WIDE_INT byte_offset1, byte_offset2;
3010 unsigned HOST_WIDE_INT bit_offset1, bit_offset2;
3011 bit_offset1 = TREE_INT_CST_LOW (DECL_FIELD_BIT_OFFSET (f1));
3012 byte_offset1 = (TREE_INT_CST_LOW (DECL_FIELD_OFFSET (f1))
3013 + bit_offset1 / BITS_PER_UNIT);
3014 bit_offset2 = TREE_INT_CST_LOW (DECL_FIELD_BIT_OFFSET (f2));
3015 byte_offset2 = (TREE_INT_CST_LOW (DECL_FIELD_OFFSET (f2))
3016 + bit_offset2 / BITS_PER_UNIT);
3017 if (byte_offset1 != byte_offset2)
3018 return false;
3019 return bit_offset1 % BITS_PER_UNIT == bit_offset2 % BITS_PER_UNIT;
3022 return false;
3025 /* Returning a hash value for gimple type TYPE combined with VAL.
3027 The hash value returned is equal for types considered compatible
3028 by gimple_canonical_types_compatible_p. */
3030 static hashval_t
3031 iterative_hash_canonical_type (tree type, hashval_t val)
3033 hashval_t v;
3034 void **slot;
3035 struct tree_int_map *mp, m;
3037 m.base.from = type;
3038 if ((slot = htab_find_slot (canonical_type_hash_cache, &m, INSERT))
3039 && *slot)
3040 return iterative_hash_hashval_t (((struct tree_int_map *) *slot)->to, val);
3042 /* Combine a few common features of types so that types are grouped into
3043 smaller sets; when searching for existing matching types to merge,
3044 only existing types having the same features as the new type will be
3045 checked. */
3046 v = iterative_hash_hashval_t (TREE_CODE (type), 0);
3047 v = iterative_hash_hashval_t (TREE_ADDRESSABLE (type), v);
3048 v = iterative_hash_hashval_t (TYPE_ALIGN (type), v);
3049 v = iterative_hash_hashval_t (TYPE_MODE (type), v);
3051 /* Incorporate common features of numerical types. */
3052 if (INTEGRAL_TYPE_P (type)
3053 || SCALAR_FLOAT_TYPE_P (type)
3054 || FIXED_POINT_TYPE_P (type)
3055 || TREE_CODE (type) == OFFSET_TYPE
3056 || POINTER_TYPE_P (type))
3058 v = iterative_hash_hashval_t (TYPE_PRECISION (type), v);
3059 v = iterative_hash_hashval_t (TYPE_UNSIGNED (type), v);
3062 if (VECTOR_TYPE_P (type))
3064 v = iterative_hash_hashval_t (TYPE_VECTOR_SUBPARTS (type), v);
3065 v = iterative_hash_hashval_t (TYPE_UNSIGNED (type), v);
3068 if (TREE_CODE (type) == COMPLEX_TYPE)
3069 v = iterative_hash_hashval_t (TYPE_UNSIGNED (type), v);
3071 /* For pointer and reference types, fold in information about the type
3072 pointed to but do not recurse to the pointed-to type. */
3073 if (POINTER_TYPE_P (type))
3075 v = iterative_hash_hashval_t (TYPE_REF_CAN_ALIAS_ALL (type), v);
3076 v = iterative_hash_hashval_t (TYPE_ADDR_SPACE (TREE_TYPE (type)), v);
3077 v = iterative_hash_hashval_t (TYPE_RESTRICT (type), v);
3078 v = iterative_hash_hashval_t (TREE_CODE (TREE_TYPE (type)), v);
3081 /* For integer types hash only the string flag. */
3082 if (TREE_CODE (type) == INTEGER_TYPE)
3083 v = iterative_hash_hashval_t (TYPE_STRING_FLAG (type), v);
3085 /* For array types hash the domain bounds and the string flag. */
3086 if (TREE_CODE (type) == ARRAY_TYPE && TYPE_DOMAIN (type))
3088 v = iterative_hash_hashval_t (TYPE_STRING_FLAG (type), v);
3089 /* OMP lowering can introduce error_mark_node in place of
3090 random local decls in types. */
3091 if (TYPE_MIN_VALUE (TYPE_DOMAIN (type)) != error_mark_node)
3092 v = iterative_hash_expr (TYPE_MIN_VALUE (TYPE_DOMAIN (type)), v);
3093 if (TYPE_MAX_VALUE (TYPE_DOMAIN (type)) != error_mark_node)
3094 v = iterative_hash_expr (TYPE_MAX_VALUE (TYPE_DOMAIN (type)), v);
3097 /* Recurse for aggregates with a single element type. */
3098 if (TREE_CODE (type) == ARRAY_TYPE
3099 || TREE_CODE (type) == COMPLEX_TYPE
3100 || TREE_CODE (type) == VECTOR_TYPE)
3101 v = iterative_hash_canonical_type (TREE_TYPE (type), v);
3103 /* Incorporate function return and argument types. */
3104 if (TREE_CODE (type) == FUNCTION_TYPE || TREE_CODE (type) == METHOD_TYPE)
3106 unsigned na;
3107 tree p;
3109 /* For method types also incorporate their parent class. */
3110 if (TREE_CODE (type) == METHOD_TYPE)
3111 v = iterative_hash_canonical_type (TYPE_METHOD_BASETYPE (type), v);
3113 v = iterative_hash_canonical_type (TREE_TYPE (type), v);
3115 for (p = TYPE_ARG_TYPES (type), na = 0; p; p = TREE_CHAIN (p))
3117 v = iterative_hash_canonical_type (TREE_VALUE (p), v);
3118 na++;
3121 v = iterative_hash_hashval_t (na, v);
3124 if (RECORD_OR_UNION_TYPE_P (type))
3126 unsigned nf;
3127 tree f;
3129 for (f = TYPE_FIELDS (type), nf = 0; f; f = TREE_CHAIN (f))
3130 if (TREE_CODE (f) == FIELD_DECL)
3132 v = iterative_hash_canonical_type (TREE_TYPE (f), v);
3133 nf++;
3136 v = iterative_hash_hashval_t (nf, v);
3139 /* Cache the just computed hash value. */
3140 mp = ggc_alloc_cleared_tree_int_map ();
3141 mp->base.from = type;
3142 mp->to = v;
3143 *slot = (void *) mp;
3145 return iterative_hash_hashval_t (v, val);
3148 static hashval_t
3149 gimple_canonical_type_hash (const void *p)
3151 if (canonical_type_hash_cache == NULL)
3152 canonical_type_hash_cache = htab_create_ggc (512, tree_int_map_hash,
3153 tree_int_map_eq, NULL);
3155 return iterative_hash_canonical_type (CONST_CAST_TREE ((const_tree) p), 0);
3161 /* The TYPE_CANONICAL merging machinery. It should closely resemble
3162 the middle-end types_compatible_p function. It needs to avoid
3163 claiming types are different for types that should be treated
3164 the same with respect to TBAA. Canonical types are also used
3165 for IL consistency checks via the useless_type_conversion_p
3166 predicate which does not handle all type kinds itself but falls
3167 back to pointer-comparison of TYPE_CANONICAL for aggregates
3168 for example. */
3170 /* Return true iff T1 and T2 are structurally identical for what
3171 TBAA is concerned. */
3173 static bool
3174 gimple_canonical_types_compatible_p (tree t1, tree t2)
3176 /* Before starting to set up the SCC machinery handle simple cases. */
3178 /* Check first for the obvious case of pointer identity. */
3179 if (t1 == t2)
3180 return true;
3182 /* Check that we have two types to compare. */
3183 if (t1 == NULL_TREE || t2 == NULL_TREE)
3184 return false;
3186 /* If the types have been previously registered and found equal
3187 they still are. */
3188 if (TYPE_CANONICAL (t1)
3189 && TYPE_CANONICAL (t1) == TYPE_CANONICAL (t2))
3190 return true;
3192 /* Can't be the same type if the types don't have the same code. */
3193 if (TREE_CODE (t1) != TREE_CODE (t2))
3194 return false;
3196 if (TREE_ADDRESSABLE (t1) != TREE_ADDRESSABLE (t2))
3197 return false;
3199 /* Qualifiers do not matter for canonical type comparison purposes. */
3201 /* Void types and nullptr types are always the same. */
3202 if (TREE_CODE (t1) == VOID_TYPE
3203 || TREE_CODE (t1) == NULLPTR_TYPE)
3204 return true;
3206 /* Can't be the same type if they have different alignment, or mode. */
3207 if (TYPE_ALIGN (t1) != TYPE_ALIGN (t2)
3208 || TYPE_MODE (t1) != TYPE_MODE (t2))
3209 return false;
3211 /* Non-aggregate types can be handled cheaply. */
3212 if (INTEGRAL_TYPE_P (t1)
3213 || SCALAR_FLOAT_TYPE_P (t1)
3214 || FIXED_POINT_TYPE_P (t1)
3215 || TREE_CODE (t1) == VECTOR_TYPE
3216 || TREE_CODE (t1) == COMPLEX_TYPE
3217 || TREE_CODE (t1) == OFFSET_TYPE
3218 || POINTER_TYPE_P (t1))
3220 /* Can't be the same type if they have different sign or precision. */
3221 if (TYPE_PRECISION (t1) != TYPE_PRECISION (t2)
3222 || TYPE_UNSIGNED (t1) != TYPE_UNSIGNED (t2))
3223 return false;
3225 if (TREE_CODE (t1) == INTEGER_TYPE
3226 && TYPE_STRING_FLAG (t1) != TYPE_STRING_FLAG (t2))
3227 return false;
3229 /* For canonical type comparisons we do not want to build SCCs
3230 so we cannot compare pointed-to types. But we can, for now,
3231 require the same pointed-to type kind and match what
3232 useless_type_conversion_p would do. */
3233 if (POINTER_TYPE_P (t1))
3235 /* If the two pointers have different ref-all attributes,
3236 they can't be the same type. */
3237 if (TYPE_REF_CAN_ALIAS_ALL (t1) != TYPE_REF_CAN_ALIAS_ALL (t2))
3238 return false;
3240 if (TYPE_ADDR_SPACE (TREE_TYPE (t1))
3241 != TYPE_ADDR_SPACE (TREE_TYPE (t2)))
3242 return false;
3244 if (TYPE_RESTRICT (t1) != TYPE_RESTRICT (t2))
3245 return false;
3247 if (TREE_CODE (TREE_TYPE (t1)) != TREE_CODE (TREE_TYPE (t2)))
3248 return false;
3251 /* Tail-recurse to components. */
3252 if (TREE_CODE (t1) == VECTOR_TYPE
3253 || TREE_CODE (t1) == COMPLEX_TYPE)
3254 return gimple_canonical_types_compatible_p (TREE_TYPE (t1),
3255 TREE_TYPE (t2));
3257 return true;
3260 /* Do type-specific comparisons. */
3261 switch (TREE_CODE (t1))
3263 case ARRAY_TYPE:
3264 /* Array types are the same if the element types are the same and
3265 the number of elements are the same. */
3266 if (!gimple_canonical_types_compatible_p (TREE_TYPE (t1), TREE_TYPE (t2))
3267 || TYPE_STRING_FLAG (t1) != TYPE_STRING_FLAG (t2)
3268 || TYPE_NONALIASED_COMPONENT (t1) != TYPE_NONALIASED_COMPONENT (t2))
3269 return false;
3270 else
3272 tree i1 = TYPE_DOMAIN (t1);
3273 tree i2 = TYPE_DOMAIN (t2);
3275 /* For an incomplete external array, the type domain can be
3276 NULL_TREE. Check this condition also. */
3277 if (i1 == NULL_TREE && i2 == NULL_TREE)
3278 return true;
3279 else if (i1 == NULL_TREE || i2 == NULL_TREE)
3280 return false;
3281 else
3283 tree min1 = TYPE_MIN_VALUE (i1);
3284 tree min2 = TYPE_MIN_VALUE (i2);
3285 tree max1 = TYPE_MAX_VALUE (i1);
3286 tree max2 = TYPE_MAX_VALUE (i2);
3288 /* The minimum/maximum values have to be the same. */
3289 if ((min1 == min2
3290 || (min1 && min2
3291 && ((TREE_CODE (min1) == PLACEHOLDER_EXPR
3292 && TREE_CODE (min2) == PLACEHOLDER_EXPR)
3293 || operand_equal_p (min1, min2, 0))))
3294 && (max1 == max2
3295 || (max1 && max2
3296 && ((TREE_CODE (max1) == PLACEHOLDER_EXPR
3297 && TREE_CODE (max2) == PLACEHOLDER_EXPR)
3298 || operand_equal_p (max1, max2, 0)))))
3299 return true;
3300 else
3301 return false;
3305 case METHOD_TYPE:
3306 case FUNCTION_TYPE:
3307 /* Function types are the same if the return type and arguments types
3308 are the same. */
3309 if (!gimple_canonical_types_compatible_p (TREE_TYPE (t1), TREE_TYPE (t2)))
3310 return false;
3312 if (!comp_type_attributes (t1, t2))
3313 return false;
3315 if (TYPE_ARG_TYPES (t1) == TYPE_ARG_TYPES (t2))
3316 return true;
3317 else
3319 tree parms1, parms2;
3321 for (parms1 = TYPE_ARG_TYPES (t1), parms2 = TYPE_ARG_TYPES (t2);
3322 parms1 && parms2;
3323 parms1 = TREE_CHAIN (parms1), parms2 = TREE_CHAIN (parms2))
3325 if (!gimple_canonical_types_compatible_p
3326 (TREE_VALUE (parms1), TREE_VALUE (parms2)))
3327 return false;
3330 if (parms1 || parms2)
3331 return false;
3333 return true;
3336 case RECORD_TYPE:
3337 case UNION_TYPE:
3338 case QUAL_UNION_TYPE:
3340 tree f1, f2;
3342 /* For aggregate types, all the fields must be the same. */
3343 for (f1 = TYPE_FIELDS (t1), f2 = TYPE_FIELDS (t2);
3344 f1 || f2;
3345 f1 = TREE_CHAIN (f1), f2 = TREE_CHAIN (f2))
3347 /* Skip non-fields. */
3348 while (f1 && TREE_CODE (f1) != FIELD_DECL)
3349 f1 = TREE_CHAIN (f1);
3350 while (f2 && TREE_CODE (f2) != FIELD_DECL)
3351 f2 = TREE_CHAIN (f2);
3352 if (!f1 || !f2)
3353 break;
3354 /* The fields must have the same name, offset and type. */
3355 if (DECL_NONADDRESSABLE_P (f1) != DECL_NONADDRESSABLE_P (f2)
3356 || !gimple_compare_field_offset (f1, f2)
3357 || !gimple_canonical_types_compatible_p
3358 (TREE_TYPE (f1), TREE_TYPE (f2)))
3359 return false;
3362 /* If one aggregate has more fields than the other, they
3363 are not the same. */
3364 if (f1 || f2)
3365 return false;
3367 return true;
3370 default:
3371 gcc_unreachable ();
3376 /* Returns nonzero if P1 and P2 are equal. */
3378 static int
3379 gimple_canonical_type_eq (const void *p1, const void *p2)
3381 const_tree t1 = (const_tree) p1;
3382 const_tree t2 = (const_tree) p2;
3383 return gimple_canonical_types_compatible_p (CONST_CAST_TREE (t1),
3384 CONST_CAST_TREE (t2));
3387 /* Register type T in the global type table gimple_types.
3388 If another type T', compatible with T, already existed in
3389 gimple_types then return T', otherwise return T. This is used by
3390 LTO to merge identical types read from different TUs.
3392 ??? This merging does not exactly match how the tree.c middle-end
3393 functions will assign TYPE_CANONICAL when new types are created
3394 during optimization (which at least happens for pointer and array
3395 types). */
3397 tree
3398 gimple_register_canonical_type (tree t)
3400 void **slot;
3402 gcc_assert (TYPE_P (t));
3404 if (TYPE_CANONICAL (t))
3405 return TYPE_CANONICAL (t);
3407 if (gimple_canonical_types == NULL)
3408 gimple_canonical_types = htab_create_ggc (16381, gimple_canonical_type_hash,
3409 gimple_canonical_type_eq, 0);
3411 slot = htab_find_slot (gimple_canonical_types, t, INSERT);
3412 if (*slot
3413 && *(tree *)slot != t)
3415 tree new_type = (tree) *((tree *) slot);
3417 TYPE_CANONICAL (t) = new_type;
3418 t = new_type;
3420 else
3422 TYPE_CANONICAL (t) = t;
3423 *slot = (void *) t;
3426 return t;
3430 /* Show statistics on references to the global type table gimple_types. */
3432 void
3433 print_gimple_types_stats (const char *pfx)
3435 if (gimple_canonical_types)
3436 fprintf (stderr, "[%s] GIMPLE canonical type table: size %ld, "
3437 "%ld elements, %ld searches, %ld collisions (ratio: %f)\n", pfx,
3438 (long) htab_size (gimple_canonical_types),
3439 (long) htab_elements (gimple_canonical_types),
3440 (long) gimple_canonical_types->searches,
3441 (long) gimple_canonical_types->collisions,
3442 htab_collisions (gimple_canonical_types));
3443 else
3444 fprintf (stderr, "[%s] GIMPLE canonical type table is empty\n", pfx);
3445 if (canonical_type_hash_cache)
3446 fprintf (stderr, "[%s] GIMPLE canonical type hash table: size %ld, "
3447 "%ld elements, %ld searches, %ld collisions (ratio: %f)\n", pfx,
3448 (long) htab_size (canonical_type_hash_cache),
3449 (long) htab_elements (canonical_type_hash_cache),
3450 (long) canonical_type_hash_cache->searches,
3451 (long) canonical_type_hash_cache->collisions,
3452 htab_collisions (canonical_type_hash_cache));
3453 else
3454 fprintf (stderr, "[%s] GIMPLE canonical type hash table is empty\n", pfx);
3457 /* Free the gimple type hashtables used for LTO type merging. */
3459 void
3460 free_gimple_type_tables (void)
3462 if (gimple_canonical_types)
3464 htab_delete (gimple_canonical_types);
3465 gimple_canonical_types = NULL;
3467 if (canonical_type_hash_cache)
3469 htab_delete (canonical_type_hash_cache);
3470 canonical_type_hash_cache = NULL;
3475 /* Return a type the same as TYPE except unsigned or
3476 signed according to UNSIGNEDP. */
3478 static tree
3479 gimple_signed_or_unsigned_type (bool unsignedp, tree type)
3481 tree type1;
3483 type1 = TYPE_MAIN_VARIANT (type);
3484 if (type1 == signed_char_type_node
3485 || type1 == char_type_node
3486 || type1 == unsigned_char_type_node)
3487 return unsignedp ? unsigned_char_type_node : signed_char_type_node;
3488 if (type1 == integer_type_node || type1 == unsigned_type_node)
3489 return unsignedp ? unsigned_type_node : integer_type_node;
3490 if (type1 == short_integer_type_node || type1 == short_unsigned_type_node)
3491 return unsignedp ? short_unsigned_type_node : short_integer_type_node;
3492 if (type1 == long_integer_type_node || type1 == long_unsigned_type_node)
3493 return unsignedp ? long_unsigned_type_node : long_integer_type_node;
3494 if (type1 == long_long_integer_type_node
3495 || type1 == long_long_unsigned_type_node)
3496 return unsignedp
3497 ? long_long_unsigned_type_node
3498 : long_long_integer_type_node;
3499 if (int128_integer_type_node && (type1 == int128_integer_type_node || type1 == int128_unsigned_type_node))
3500 return unsignedp
3501 ? int128_unsigned_type_node
3502 : int128_integer_type_node;
3503 #if HOST_BITS_PER_WIDE_INT >= 64
3504 if (type1 == intTI_type_node || type1 == unsigned_intTI_type_node)
3505 return unsignedp ? unsigned_intTI_type_node : intTI_type_node;
3506 #endif
3507 if (type1 == intDI_type_node || type1 == unsigned_intDI_type_node)
3508 return unsignedp ? unsigned_intDI_type_node : intDI_type_node;
3509 if (type1 == intSI_type_node || type1 == unsigned_intSI_type_node)
3510 return unsignedp ? unsigned_intSI_type_node : intSI_type_node;
3511 if (type1 == intHI_type_node || type1 == unsigned_intHI_type_node)
3512 return unsignedp ? unsigned_intHI_type_node : intHI_type_node;
3513 if (type1 == intQI_type_node || type1 == unsigned_intQI_type_node)
3514 return unsignedp ? unsigned_intQI_type_node : intQI_type_node;
3516 #define GIMPLE_FIXED_TYPES(NAME) \
3517 if (type1 == short_ ## NAME ## _type_node \
3518 || type1 == unsigned_short_ ## NAME ## _type_node) \
3519 return unsignedp ? unsigned_short_ ## NAME ## _type_node \
3520 : short_ ## NAME ## _type_node; \
3521 if (type1 == NAME ## _type_node \
3522 || type1 == unsigned_ ## NAME ## _type_node) \
3523 return unsignedp ? unsigned_ ## NAME ## _type_node \
3524 : NAME ## _type_node; \
3525 if (type1 == long_ ## NAME ## _type_node \
3526 || type1 == unsigned_long_ ## NAME ## _type_node) \
3527 return unsignedp ? unsigned_long_ ## NAME ## _type_node \
3528 : long_ ## NAME ## _type_node; \
3529 if (type1 == long_long_ ## NAME ## _type_node \
3530 || type1 == unsigned_long_long_ ## NAME ## _type_node) \
3531 return unsignedp ? unsigned_long_long_ ## NAME ## _type_node \
3532 : long_long_ ## NAME ## _type_node;
3534 #define GIMPLE_FIXED_MODE_TYPES(NAME) \
3535 if (type1 == NAME ## _type_node \
3536 || type1 == u ## NAME ## _type_node) \
3537 return unsignedp ? u ## NAME ## _type_node \
3538 : NAME ## _type_node;
3540 #define GIMPLE_FIXED_TYPES_SAT(NAME) \
3541 if (type1 == sat_ ## short_ ## NAME ## _type_node \
3542 || type1 == sat_ ## unsigned_short_ ## NAME ## _type_node) \
3543 return unsignedp ? sat_ ## unsigned_short_ ## NAME ## _type_node \
3544 : sat_ ## short_ ## NAME ## _type_node; \
3545 if (type1 == sat_ ## NAME ## _type_node \
3546 || type1 == sat_ ## unsigned_ ## NAME ## _type_node) \
3547 return unsignedp ? sat_ ## unsigned_ ## NAME ## _type_node \
3548 : sat_ ## NAME ## _type_node; \
3549 if (type1 == sat_ ## long_ ## NAME ## _type_node \
3550 || type1 == sat_ ## unsigned_long_ ## NAME ## _type_node) \
3551 return unsignedp ? sat_ ## unsigned_long_ ## NAME ## _type_node \
3552 : sat_ ## long_ ## NAME ## _type_node; \
3553 if (type1 == sat_ ## long_long_ ## NAME ## _type_node \
3554 || type1 == sat_ ## unsigned_long_long_ ## NAME ## _type_node) \
3555 return unsignedp ? sat_ ## unsigned_long_long_ ## NAME ## _type_node \
3556 : sat_ ## long_long_ ## NAME ## _type_node;
3558 #define GIMPLE_FIXED_MODE_TYPES_SAT(NAME) \
3559 if (type1 == sat_ ## NAME ## _type_node \
3560 || type1 == sat_ ## u ## NAME ## _type_node) \
3561 return unsignedp ? sat_ ## u ## NAME ## _type_node \
3562 : sat_ ## NAME ## _type_node;
3564 GIMPLE_FIXED_TYPES (fract);
3565 GIMPLE_FIXED_TYPES_SAT (fract);
3566 GIMPLE_FIXED_TYPES (accum);
3567 GIMPLE_FIXED_TYPES_SAT (accum);
3569 GIMPLE_FIXED_MODE_TYPES (qq);
3570 GIMPLE_FIXED_MODE_TYPES (hq);
3571 GIMPLE_FIXED_MODE_TYPES (sq);
3572 GIMPLE_FIXED_MODE_TYPES (dq);
3573 GIMPLE_FIXED_MODE_TYPES (tq);
3574 GIMPLE_FIXED_MODE_TYPES_SAT (qq);
3575 GIMPLE_FIXED_MODE_TYPES_SAT (hq);
3576 GIMPLE_FIXED_MODE_TYPES_SAT (sq);
3577 GIMPLE_FIXED_MODE_TYPES_SAT (dq);
3578 GIMPLE_FIXED_MODE_TYPES_SAT (tq);
3579 GIMPLE_FIXED_MODE_TYPES (ha);
3580 GIMPLE_FIXED_MODE_TYPES (sa);
3581 GIMPLE_FIXED_MODE_TYPES (da);
3582 GIMPLE_FIXED_MODE_TYPES (ta);
3583 GIMPLE_FIXED_MODE_TYPES_SAT (ha);
3584 GIMPLE_FIXED_MODE_TYPES_SAT (sa);
3585 GIMPLE_FIXED_MODE_TYPES_SAT (da);
3586 GIMPLE_FIXED_MODE_TYPES_SAT (ta);
3588 /* For ENUMERAL_TYPEs in C++, must check the mode of the types, not
3589 the precision; they have precision set to match their range, but
3590 may use a wider mode to match an ABI. If we change modes, we may
3591 wind up with bad conversions. For INTEGER_TYPEs in C, must check
3592 the precision as well, so as to yield correct results for
3593 bit-field types. C++ does not have these separate bit-field
3594 types, and producing a signed or unsigned variant of an
3595 ENUMERAL_TYPE may cause other problems as well. */
3596 if (!INTEGRAL_TYPE_P (type)
3597 || TYPE_UNSIGNED (type) == unsignedp)
3598 return type;
3600 #define TYPE_OK(node) \
3601 (TYPE_MODE (type) == TYPE_MODE (node) \
3602 && TYPE_PRECISION (type) == TYPE_PRECISION (node))
3603 if (TYPE_OK (signed_char_type_node))
3604 return unsignedp ? unsigned_char_type_node : signed_char_type_node;
3605 if (TYPE_OK (integer_type_node))
3606 return unsignedp ? unsigned_type_node : integer_type_node;
3607 if (TYPE_OK (short_integer_type_node))
3608 return unsignedp ? short_unsigned_type_node : short_integer_type_node;
3609 if (TYPE_OK (long_integer_type_node))
3610 return unsignedp ? long_unsigned_type_node : long_integer_type_node;
3611 if (TYPE_OK (long_long_integer_type_node))
3612 return (unsignedp
3613 ? long_long_unsigned_type_node
3614 : long_long_integer_type_node);
3615 if (int128_integer_type_node && TYPE_OK (int128_integer_type_node))
3616 return (unsignedp
3617 ? int128_unsigned_type_node
3618 : int128_integer_type_node);
3620 #if HOST_BITS_PER_WIDE_INT >= 64
3621 if (TYPE_OK (intTI_type_node))
3622 return unsignedp ? unsigned_intTI_type_node : intTI_type_node;
3623 #endif
3624 if (TYPE_OK (intDI_type_node))
3625 return unsignedp ? unsigned_intDI_type_node : intDI_type_node;
3626 if (TYPE_OK (intSI_type_node))
3627 return unsignedp ? unsigned_intSI_type_node : intSI_type_node;
3628 if (TYPE_OK (intHI_type_node))
3629 return unsignedp ? unsigned_intHI_type_node : intHI_type_node;
3630 if (TYPE_OK (intQI_type_node))
3631 return unsignedp ? unsigned_intQI_type_node : intQI_type_node;
3633 #undef GIMPLE_FIXED_TYPES
3634 #undef GIMPLE_FIXED_MODE_TYPES
3635 #undef GIMPLE_FIXED_TYPES_SAT
3636 #undef GIMPLE_FIXED_MODE_TYPES_SAT
3637 #undef TYPE_OK
3639 return build_nonstandard_integer_type (TYPE_PRECISION (type), unsignedp);
3643 /* Return an unsigned type the same as TYPE in other respects. */
3645 tree
3646 gimple_unsigned_type (tree type)
3648 return gimple_signed_or_unsigned_type (true, type);
3652 /* Return a signed type the same as TYPE in other respects. */
3654 tree
3655 gimple_signed_type (tree type)
3657 return gimple_signed_or_unsigned_type (false, type);
3661 /* Return the typed-based alias set for T, which may be an expression
3662 or a type. Return -1 if we don't do anything special. */
3664 alias_set_type
3665 gimple_get_alias_set (tree t)
3667 tree u;
3669 /* Permit type-punning when accessing a union, provided the access
3670 is directly through the union. For example, this code does not
3671 permit taking the address of a union member and then storing
3672 through it. Even the type-punning allowed here is a GCC
3673 extension, albeit a common and useful one; the C standard says
3674 that such accesses have implementation-defined behavior. */
3675 for (u = t;
3676 TREE_CODE (u) == COMPONENT_REF || TREE_CODE (u) == ARRAY_REF;
3677 u = TREE_OPERAND (u, 0))
3678 if (TREE_CODE (u) == COMPONENT_REF
3679 && TREE_CODE (TREE_TYPE (TREE_OPERAND (u, 0))) == UNION_TYPE)
3680 return 0;
3682 /* That's all the expressions we handle specially. */
3683 if (!TYPE_P (t))
3684 return -1;
3686 /* For convenience, follow the C standard when dealing with
3687 character types. Any object may be accessed via an lvalue that
3688 has character type. */
3689 if (t == char_type_node
3690 || t == signed_char_type_node
3691 || t == unsigned_char_type_node)
3692 return 0;
3694 /* Allow aliasing between signed and unsigned variants of the same
3695 type. We treat the signed variant as canonical. */
3696 if (TREE_CODE (t) == INTEGER_TYPE && TYPE_UNSIGNED (t))
3698 tree t1 = gimple_signed_type (t);
3700 /* t1 == t can happen for boolean nodes which are always unsigned. */
3701 if (t1 != t)
3702 return get_alias_set (t1);
3705 return -1;
3709 /* From a tree operand OP return the base of a load or store operation
3710 or NULL_TREE if OP is not a load or a store. */
3712 static tree
3713 get_base_loadstore (tree op)
3715 while (handled_component_p (op))
3716 op = TREE_OPERAND (op, 0);
3717 if (DECL_P (op)
3718 || INDIRECT_REF_P (op)
3719 || TREE_CODE (op) == MEM_REF
3720 || TREE_CODE (op) == TARGET_MEM_REF)
3721 return op;
3722 return NULL_TREE;
3725 /* For the statement STMT call the callbacks VISIT_LOAD, VISIT_STORE and
3726 VISIT_ADDR if non-NULL on loads, store and address-taken operands
3727 passing the STMT, the base of the operand and DATA to it. The base
3728 will be either a decl, an indirect reference (including TARGET_MEM_REF)
3729 or the argument of an address expression.
3730 Returns the results of these callbacks or'ed. */
3732 bool
3733 walk_stmt_load_store_addr_ops (gimple stmt, void *data,
3734 bool (*visit_load)(gimple, tree, void *),
3735 bool (*visit_store)(gimple, tree, void *),
3736 bool (*visit_addr)(gimple, tree, void *))
3738 bool ret = false;
3739 unsigned i;
3740 if (gimple_assign_single_p (stmt))
3742 tree lhs, rhs;
3743 if (visit_store)
3745 lhs = get_base_loadstore (gimple_assign_lhs (stmt));
3746 if (lhs)
3747 ret |= visit_store (stmt, lhs, data);
3749 rhs = gimple_assign_rhs1 (stmt);
3750 while (handled_component_p (rhs))
3751 rhs = TREE_OPERAND (rhs, 0);
3752 if (visit_addr)
3754 if (TREE_CODE (rhs) == ADDR_EXPR)
3755 ret |= visit_addr (stmt, TREE_OPERAND (rhs, 0), data);
3756 else if (TREE_CODE (rhs) == TARGET_MEM_REF
3757 && TREE_CODE (TMR_BASE (rhs)) == ADDR_EXPR)
3758 ret |= visit_addr (stmt, TREE_OPERAND (TMR_BASE (rhs), 0), data);
3759 else if (TREE_CODE (rhs) == OBJ_TYPE_REF
3760 && TREE_CODE (OBJ_TYPE_REF_OBJECT (rhs)) == ADDR_EXPR)
3761 ret |= visit_addr (stmt, TREE_OPERAND (OBJ_TYPE_REF_OBJECT (rhs),
3762 0), data);
3763 else if (TREE_CODE (rhs) == CONSTRUCTOR)
3765 unsigned int ix;
3766 tree val;
3768 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (rhs), ix, val)
3769 if (TREE_CODE (val) == ADDR_EXPR)
3770 ret |= visit_addr (stmt, TREE_OPERAND (val, 0), data);
3771 else if (TREE_CODE (val) == OBJ_TYPE_REF
3772 && TREE_CODE (OBJ_TYPE_REF_OBJECT (val)) == ADDR_EXPR)
3773 ret |= visit_addr (stmt,
3774 TREE_OPERAND (OBJ_TYPE_REF_OBJECT (val),
3775 0), data);
3777 lhs = gimple_assign_lhs (stmt);
3778 if (TREE_CODE (lhs) == TARGET_MEM_REF
3779 && TREE_CODE (TMR_BASE (lhs)) == ADDR_EXPR)
3780 ret |= visit_addr (stmt, TREE_OPERAND (TMR_BASE (lhs), 0), data);
3782 if (visit_load)
3784 rhs = get_base_loadstore (rhs);
3785 if (rhs)
3786 ret |= visit_load (stmt, rhs, data);
3789 else if (visit_addr
3790 && (is_gimple_assign (stmt)
3791 || gimple_code (stmt) == GIMPLE_COND))
3793 for (i = 0; i < gimple_num_ops (stmt); ++i)
3795 tree op = gimple_op (stmt, i);
3796 if (op == NULL_TREE)
3798 else if (TREE_CODE (op) == ADDR_EXPR)
3799 ret |= visit_addr (stmt, TREE_OPERAND (op, 0), data);
3800 /* COND_EXPR and VCOND_EXPR rhs1 argument is a comparison
3801 tree with two operands. */
3802 else if (i == 1 && COMPARISON_CLASS_P (op))
3804 if (TREE_CODE (TREE_OPERAND (op, 0)) == ADDR_EXPR)
3805 ret |= visit_addr (stmt, TREE_OPERAND (TREE_OPERAND (op, 0),
3806 0), data);
3807 if (TREE_CODE (TREE_OPERAND (op, 1)) == ADDR_EXPR)
3808 ret |= visit_addr (stmt, TREE_OPERAND (TREE_OPERAND (op, 1),
3809 0), data);
3813 else if (is_gimple_call (stmt))
3815 if (visit_store)
3817 tree lhs = gimple_call_lhs (stmt);
3818 if (lhs)
3820 lhs = get_base_loadstore (lhs);
3821 if (lhs)
3822 ret |= visit_store (stmt, lhs, data);
3825 if (visit_load || visit_addr)
3826 for (i = 0; i < gimple_call_num_args (stmt); ++i)
3828 tree rhs = gimple_call_arg (stmt, i);
3829 if (visit_addr
3830 && TREE_CODE (rhs) == ADDR_EXPR)
3831 ret |= visit_addr (stmt, TREE_OPERAND (rhs, 0), data);
3832 else if (visit_load)
3834 rhs = get_base_loadstore (rhs);
3835 if (rhs)
3836 ret |= visit_load (stmt, rhs, data);
3839 if (visit_addr
3840 && gimple_call_chain (stmt)
3841 && TREE_CODE (gimple_call_chain (stmt)) == ADDR_EXPR)
3842 ret |= visit_addr (stmt, TREE_OPERAND (gimple_call_chain (stmt), 0),
3843 data);
3844 if (visit_addr
3845 && gimple_call_return_slot_opt_p (stmt)
3846 && gimple_call_lhs (stmt) != NULL_TREE
3847 && TREE_ADDRESSABLE (TREE_TYPE (gimple_call_lhs (stmt))))
3848 ret |= visit_addr (stmt, gimple_call_lhs (stmt), data);
3850 else if (gimple_code (stmt) == GIMPLE_ASM)
3852 unsigned noutputs;
3853 const char *constraint;
3854 const char **oconstraints;
3855 bool allows_mem, allows_reg, is_inout;
3856 noutputs = gimple_asm_noutputs (stmt);
3857 oconstraints = XALLOCAVEC (const char *, noutputs);
3858 if (visit_store || visit_addr)
3859 for (i = 0; i < gimple_asm_noutputs (stmt); ++i)
3861 tree link = gimple_asm_output_op (stmt, i);
3862 tree op = get_base_loadstore (TREE_VALUE (link));
3863 if (op && visit_store)
3864 ret |= visit_store (stmt, op, data);
3865 if (visit_addr)
3867 constraint = TREE_STRING_POINTER
3868 (TREE_VALUE (TREE_PURPOSE (link)));
3869 oconstraints[i] = constraint;
3870 parse_output_constraint (&constraint, i, 0, 0, &allows_mem,
3871 &allows_reg, &is_inout);
3872 if (op && !allows_reg && allows_mem)
3873 ret |= visit_addr (stmt, op, data);
3876 if (visit_load || visit_addr)
3877 for (i = 0; i < gimple_asm_ninputs (stmt); ++i)
3879 tree link = gimple_asm_input_op (stmt, i);
3880 tree op = TREE_VALUE (link);
3881 if (visit_addr
3882 && TREE_CODE (op) == ADDR_EXPR)
3883 ret |= visit_addr (stmt, TREE_OPERAND (op, 0), data);
3884 else if (visit_load || visit_addr)
3886 op = get_base_loadstore (op);
3887 if (op)
3889 if (visit_load)
3890 ret |= visit_load (stmt, op, data);
3891 if (visit_addr)
3893 constraint = TREE_STRING_POINTER
3894 (TREE_VALUE (TREE_PURPOSE (link)));
3895 parse_input_constraint (&constraint, 0, 0, noutputs,
3896 0, oconstraints,
3897 &allows_mem, &allows_reg);
3898 if (!allows_reg && allows_mem)
3899 ret |= visit_addr (stmt, op, data);
3905 else if (gimple_code (stmt) == GIMPLE_RETURN)
3907 tree op = gimple_return_retval (stmt);
3908 if (op)
3910 if (visit_addr
3911 && TREE_CODE (op) == ADDR_EXPR)
3912 ret |= visit_addr (stmt, TREE_OPERAND (op, 0), data);
3913 else if (visit_load)
3915 op = get_base_loadstore (op);
3916 if (op)
3917 ret |= visit_load (stmt, op, data);
3921 else if (visit_addr
3922 && gimple_code (stmt) == GIMPLE_PHI)
3924 for (i = 0; i < gimple_phi_num_args (stmt); ++i)
3926 tree op = PHI_ARG_DEF (stmt, i);
3927 if (TREE_CODE (op) == ADDR_EXPR)
3928 ret |= visit_addr (stmt, TREE_OPERAND (op, 0), data);
3931 else if (visit_addr
3932 && gimple_code (stmt) == GIMPLE_GOTO)
3934 tree op = gimple_goto_dest (stmt);
3935 if (TREE_CODE (op) == ADDR_EXPR)
3936 ret |= visit_addr (stmt, TREE_OPERAND (op, 0), data);
3939 return ret;
3942 /* Like walk_stmt_load_store_addr_ops but with NULL visit_addr. IPA-CP
3943 should make a faster clone for this case. */
3945 bool
3946 walk_stmt_load_store_ops (gimple stmt, void *data,
3947 bool (*visit_load)(gimple, tree, void *),
3948 bool (*visit_store)(gimple, tree, void *))
3950 return walk_stmt_load_store_addr_ops (stmt, data,
3951 visit_load, visit_store, NULL);
3954 /* Helper for gimple_ior_addresses_taken_1. */
3956 static bool
3957 gimple_ior_addresses_taken_1 (gimple stmt ATTRIBUTE_UNUSED,
3958 tree addr, void *data)
3960 bitmap addresses_taken = (bitmap)data;
3961 addr = get_base_address (addr);
3962 if (addr
3963 && DECL_P (addr))
3965 bitmap_set_bit (addresses_taken, DECL_UID (addr));
3966 return true;
3968 return false;
3971 /* Set the bit for the uid of all decls that have their address taken
3972 in STMT in the ADDRESSES_TAKEN bitmap. Returns true if there
3973 were any in this stmt. */
3975 bool
3976 gimple_ior_addresses_taken (bitmap addresses_taken, gimple stmt)
3978 return walk_stmt_load_store_addr_ops (stmt, addresses_taken, NULL, NULL,
3979 gimple_ior_addresses_taken_1);
3983 /* Return a printable name for symbol DECL. */
3985 const char *
3986 gimple_decl_printable_name (tree decl, int verbosity)
3988 if (!DECL_NAME (decl))
3989 return NULL;
3991 if (DECL_ASSEMBLER_NAME_SET_P (decl))
3993 const char *str, *mangled_str;
3994 int dmgl_opts = DMGL_NO_OPTS;
3996 if (verbosity >= 2)
3998 dmgl_opts = DMGL_VERBOSE
3999 | DMGL_ANSI
4000 | DMGL_GNU_V3
4001 | DMGL_RET_POSTFIX;
4002 if (TREE_CODE (decl) == FUNCTION_DECL)
4003 dmgl_opts |= DMGL_PARAMS;
4006 mangled_str = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl));
4007 str = cplus_demangle_v3 (mangled_str, dmgl_opts);
4008 return (str) ? str : mangled_str;
4011 return IDENTIFIER_POINTER (DECL_NAME (decl));
4014 /* Return TRUE iff stmt is a call to a built-in function. */
4016 bool
4017 is_gimple_builtin_call (gimple stmt)
4019 tree callee;
4021 if (is_gimple_call (stmt)
4022 && (callee = gimple_call_fndecl (stmt))
4023 && is_builtin_fn (callee)
4024 && DECL_BUILT_IN_CLASS (callee) == BUILT_IN_NORMAL)
4025 return true;
4027 return false;
4030 /* Return true when STMTs arguments match those of FNDECL. */
4032 static bool
4033 validate_call (gimple stmt, tree fndecl)
4035 tree targs = TYPE_ARG_TYPES (TREE_TYPE (fndecl));
4036 unsigned nargs = gimple_call_num_args (stmt);
4037 for (unsigned i = 0; i < nargs; ++i)
4039 /* Variadic args follow. */
4040 if (!targs)
4041 return true;
4042 tree arg = gimple_call_arg (stmt, i);
4043 if (INTEGRAL_TYPE_P (TREE_TYPE (arg))
4044 && INTEGRAL_TYPE_P (TREE_VALUE (targs)))
4046 else if (POINTER_TYPE_P (TREE_TYPE (arg))
4047 && POINTER_TYPE_P (TREE_VALUE (targs)))
4049 else if (TREE_CODE (TREE_TYPE (arg))
4050 != TREE_CODE (TREE_VALUE (targs)))
4051 return false;
4052 targs = TREE_CHAIN (targs);
4054 if (targs && !VOID_TYPE_P (TREE_VALUE (targs)))
4055 return false;
4056 return true;
4059 /* Return true when STMT is builtins call to CLASS. */
4061 bool
4062 gimple_call_builtin_p (gimple stmt, enum built_in_class klass)
4064 tree fndecl;
4065 if (is_gimple_call (stmt)
4066 && (fndecl = gimple_call_fndecl (stmt)) != NULL_TREE
4067 && DECL_BUILT_IN_CLASS (fndecl) == klass)
4068 return validate_call (stmt, fndecl);
4069 return false;
4072 /* Return true when STMT is builtins call to CODE of CLASS. */
4074 bool
4075 gimple_call_builtin_p (gimple stmt, enum built_in_function code)
4077 tree fndecl;
4078 if (is_gimple_call (stmt)
4079 && (fndecl = gimple_call_fndecl (stmt)) != NULL_TREE
4080 && DECL_BUILT_IN_CLASS (fndecl) == BUILT_IN_NORMAL
4081 && DECL_FUNCTION_CODE (fndecl) == code)
4082 return validate_call (stmt, fndecl);
4083 return false;
4086 /* Return true if STMT clobbers memory. STMT is required to be a
4087 GIMPLE_ASM. */
4089 bool
4090 gimple_asm_clobbers_memory_p (const_gimple stmt)
4092 unsigned i;
4094 for (i = 0; i < gimple_asm_nclobbers (stmt); i++)
4096 tree op = gimple_asm_clobber_op (stmt, i);
4097 if (strcmp (TREE_STRING_POINTER (TREE_VALUE (op)), "memory") == 0)
4098 return true;
4101 return false;
4105 /* Return true if the conversion from INNER_TYPE to OUTER_TYPE is a
4106 useless type conversion, otherwise return false.
4108 This function implicitly defines the middle-end type system. With
4109 the notion of 'a < b' meaning that useless_type_conversion_p (a, b)
4110 holds and 'a > b' meaning that useless_type_conversion_p (b, a) holds,
4111 the following invariants shall be fulfilled:
4113 1) useless_type_conversion_p is transitive.
4114 If a < b and b < c then a < c.
4116 2) useless_type_conversion_p is not symmetric.
4117 From a < b does not follow a > b.
4119 3) Types define the available set of operations applicable to values.
4120 A type conversion is useless if the operations for the target type
4121 is a subset of the operations for the source type. For example
4122 casts to void* are useless, casts from void* are not (void* can't
4123 be dereferenced or offsetted, but copied, hence its set of operations
4124 is a strict subset of that of all other data pointer types). Casts
4125 to const T* are useless (can't be written to), casts from const T*
4126 to T* are not. */
4128 bool
4129 useless_type_conversion_p (tree outer_type, tree inner_type)
4131 /* Do the following before stripping toplevel qualifiers. */
4132 if (POINTER_TYPE_P (inner_type)
4133 && POINTER_TYPE_P (outer_type))
4135 /* Do not lose casts between pointers to different address spaces. */
4136 if (TYPE_ADDR_SPACE (TREE_TYPE (outer_type))
4137 != TYPE_ADDR_SPACE (TREE_TYPE (inner_type)))
4138 return false;
4141 /* From now on qualifiers on value types do not matter. */
4142 inner_type = TYPE_MAIN_VARIANT (inner_type);
4143 outer_type = TYPE_MAIN_VARIANT (outer_type);
4145 if (inner_type == outer_type)
4146 return true;
4148 /* If we know the canonical types, compare them. */
4149 if (TYPE_CANONICAL (inner_type)
4150 && TYPE_CANONICAL (inner_type) == TYPE_CANONICAL (outer_type))
4151 return true;
4153 /* Changes in machine mode are never useless conversions unless we
4154 deal with aggregate types in which case we defer to later checks. */
4155 if (TYPE_MODE (inner_type) != TYPE_MODE (outer_type)
4156 && !AGGREGATE_TYPE_P (inner_type))
4157 return false;
4159 /* If both the inner and outer types are integral types, then the
4160 conversion is not necessary if they have the same mode and
4161 signedness and precision, and both or neither are boolean. */
4162 if (INTEGRAL_TYPE_P (inner_type)
4163 && INTEGRAL_TYPE_P (outer_type))
4165 /* Preserve changes in signedness or precision. */
4166 if (TYPE_UNSIGNED (inner_type) != TYPE_UNSIGNED (outer_type)
4167 || TYPE_PRECISION (inner_type) != TYPE_PRECISION (outer_type))
4168 return false;
4170 /* Preserve conversions to/from BOOLEAN_TYPE if types are not
4171 of precision one. */
4172 if (((TREE_CODE (inner_type) == BOOLEAN_TYPE)
4173 != (TREE_CODE (outer_type) == BOOLEAN_TYPE))
4174 && TYPE_PRECISION (outer_type) != 1)
4175 return false;
4177 /* We don't need to preserve changes in the types minimum or
4178 maximum value in general as these do not generate code
4179 unless the types precisions are different. */
4180 return true;
4183 /* Scalar floating point types with the same mode are compatible. */
4184 else if (SCALAR_FLOAT_TYPE_P (inner_type)
4185 && SCALAR_FLOAT_TYPE_P (outer_type))
4186 return true;
4188 /* Fixed point types with the same mode are compatible. */
4189 else if (FIXED_POINT_TYPE_P (inner_type)
4190 && FIXED_POINT_TYPE_P (outer_type))
4191 return true;
4193 /* We need to take special care recursing to pointed-to types. */
4194 else if (POINTER_TYPE_P (inner_type)
4195 && POINTER_TYPE_P (outer_type))
4197 /* Do not lose casts to function pointer types. */
4198 if ((TREE_CODE (TREE_TYPE (outer_type)) == FUNCTION_TYPE
4199 || TREE_CODE (TREE_TYPE (outer_type)) == METHOD_TYPE)
4200 && !(TREE_CODE (TREE_TYPE (inner_type)) == FUNCTION_TYPE
4201 || TREE_CODE (TREE_TYPE (inner_type)) == METHOD_TYPE))
4202 return false;
4204 /* We do not care for const qualification of the pointed-to types
4205 as const qualification has no semantic value to the middle-end. */
4207 /* Otherwise pointers/references are equivalent. */
4208 return true;
4211 /* Recurse for complex types. */
4212 else if (TREE_CODE (inner_type) == COMPLEX_TYPE
4213 && TREE_CODE (outer_type) == COMPLEX_TYPE)
4214 return useless_type_conversion_p (TREE_TYPE (outer_type),
4215 TREE_TYPE (inner_type));
4217 /* Recurse for vector types with the same number of subparts. */
4218 else if (TREE_CODE (inner_type) == VECTOR_TYPE
4219 && TREE_CODE (outer_type) == VECTOR_TYPE
4220 && TYPE_PRECISION (inner_type) == TYPE_PRECISION (outer_type))
4221 return useless_type_conversion_p (TREE_TYPE (outer_type),
4222 TREE_TYPE (inner_type));
4224 else if (TREE_CODE (inner_type) == ARRAY_TYPE
4225 && TREE_CODE (outer_type) == ARRAY_TYPE)
4227 /* Preserve string attributes. */
4228 if (TYPE_STRING_FLAG (inner_type) != TYPE_STRING_FLAG (outer_type))
4229 return false;
4231 /* Conversions from array types with unknown extent to
4232 array types with known extent are not useless. */
4233 if (!TYPE_DOMAIN (inner_type)
4234 && TYPE_DOMAIN (outer_type))
4235 return false;
4237 /* Nor are conversions from array types with non-constant size to
4238 array types with constant size or to different size. */
4239 if (TYPE_SIZE (outer_type)
4240 && TREE_CODE (TYPE_SIZE (outer_type)) == INTEGER_CST
4241 && (!TYPE_SIZE (inner_type)
4242 || TREE_CODE (TYPE_SIZE (inner_type)) != INTEGER_CST
4243 || !tree_int_cst_equal (TYPE_SIZE (outer_type),
4244 TYPE_SIZE (inner_type))))
4245 return false;
4247 /* Check conversions between arrays with partially known extents.
4248 If the array min/max values are constant they have to match.
4249 Otherwise allow conversions to unknown and variable extents.
4250 In particular this declares conversions that may change the
4251 mode to BLKmode as useless. */
4252 if (TYPE_DOMAIN (inner_type)
4253 && TYPE_DOMAIN (outer_type)
4254 && TYPE_DOMAIN (inner_type) != TYPE_DOMAIN (outer_type))
4256 tree inner_min = TYPE_MIN_VALUE (TYPE_DOMAIN (inner_type));
4257 tree outer_min = TYPE_MIN_VALUE (TYPE_DOMAIN (outer_type));
4258 tree inner_max = TYPE_MAX_VALUE (TYPE_DOMAIN (inner_type));
4259 tree outer_max = TYPE_MAX_VALUE (TYPE_DOMAIN (outer_type));
4261 /* After gimplification a variable min/max value carries no
4262 additional information compared to a NULL value. All that
4263 matters has been lowered to be part of the IL. */
4264 if (inner_min && TREE_CODE (inner_min) != INTEGER_CST)
4265 inner_min = NULL_TREE;
4266 if (outer_min && TREE_CODE (outer_min) != INTEGER_CST)
4267 outer_min = NULL_TREE;
4268 if (inner_max && TREE_CODE (inner_max) != INTEGER_CST)
4269 inner_max = NULL_TREE;
4270 if (outer_max && TREE_CODE (outer_max) != INTEGER_CST)
4271 outer_max = NULL_TREE;
4273 /* Conversions NULL / variable <- cst are useless, but not
4274 the other way around. */
4275 if (outer_min
4276 && (!inner_min
4277 || !tree_int_cst_equal (inner_min, outer_min)))
4278 return false;
4279 if (outer_max
4280 && (!inner_max
4281 || !tree_int_cst_equal (inner_max, outer_max)))
4282 return false;
4285 /* Recurse on the element check. */
4286 return useless_type_conversion_p (TREE_TYPE (outer_type),
4287 TREE_TYPE (inner_type));
4290 else if ((TREE_CODE (inner_type) == FUNCTION_TYPE
4291 || TREE_CODE (inner_type) == METHOD_TYPE)
4292 && TREE_CODE (inner_type) == TREE_CODE (outer_type))
4294 tree outer_parm, inner_parm;
4296 /* If the return types are not compatible bail out. */
4297 if (!useless_type_conversion_p (TREE_TYPE (outer_type),
4298 TREE_TYPE (inner_type)))
4299 return false;
4301 /* Method types should belong to a compatible base class. */
4302 if (TREE_CODE (inner_type) == METHOD_TYPE
4303 && !useless_type_conversion_p (TYPE_METHOD_BASETYPE (outer_type),
4304 TYPE_METHOD_BASETYPE (inner_type)))
4305 return false;
4307 /* A conversion to an unprototyped argument list is ok. */
4308 if (!prototype_p (outer_type))
4309 return true;
4311 /* If the unqualified argument types are compatible the conversion
4312 is useless. */
4313 if (TYPE_ARG_TYPES (outer_type) == TYPE_ARG_TYPES (inner_type))
4314 return true;
4316 for (outer_parm = TYPE_ARG_TYPES (outer_type),
4317 inner_parm = TYPE_ARG_TYPES (inner_type);
4318 outer_parm && inner_parm;
4319 outer_parm = TREE_CHAIN (outer_parm),
4320 inner_parm = TREE_CHAIN (inner_parm))
4321 if (!useless_type_conversion_p
4322 (TYPE_MAIN_VARIANT (TREE_VALUE (outer_parm)),
4323 TYPE_MAIN_VARIANT (TREE_VALUE (inner_parm))))
4324 return false;
4326 /* If there is a mismatch in the number of arguments the functions
4327 are not compatible. */
4328 if (outer_parm || inner_parm)
4329 return false;
4331 /* Defer to the target if necessary. */
4332 if (TYPE_ATTRIBUTES (inner_type) || TYPE_ATTRIBUTES (outer_type))
4333 return comp_type_attributes (outer_type, inner_type) != 0;
4335 return true;
4338 /* For aggregates we rely on TYPE_CANONICAL exclusively and require
4339 explicit conversions for types involving to be structurally
4340 compared types. */
4341 else if (AGGREGATE_TYPE_P (inner_type)
4342 && TREE_CODE (inner_type) == TREE_CODE (outer_type))
4343 return false;
4345 return false;
4348 /* Return true if a conversion from either type of TYPE1 and TYPE2
4349 to the other is not required. Otherwise return false. */
4351 bool
4352 types_compatible_p (tree type1, tree type2)
4354 return (type1 == type2
4355 || (useless_type_conversion_p (type1, type2)
4356 && useless_type_conversion_p (type2, type1)));
4360 #include "gt-gimple.h"