1 /* Gimple IR support functions.
3 Copyright 2007, 2008 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
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
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/>. */
24 #include "coretypes.h"
29 #include "hard-reg-set.h"
30 #include "basic-block.h"
32 #include "diagnostic.h"
33 #include "tree-flow.h"
34 #include "value-prof.h"
37 #define DEFGSCODE(SYM, NAME, STRUCT) NAME,
38 const char *const gimple_code_name
[] = {
43 /* All the tuples have their operand vector at the very bottom
44 of the structure. Therefore, the offset required to find the
45 operands vector the size of the structure minus the size of the 1
46 element tree array at the end (see gimple_ops). */
47 #define DEFGSCODE(SYM, NAME, STRUCT) (sizeof (STRUCT) - sizeof (tree)),
48 const size_t gimple_ops_offset_
[] = {
53 #ifdef GATHER_STATISTICS
56 int gimple_alloc_counts
[(int) gimple_alloc_kind_all
];
57 int gimple_alloc_sizes
[(int) gimple_alloc_kind_all
];
59 /* Keep in sync with gimple.h:enum gimple_alloc_kind. */
60 static const char * const gimple_alloc_kind_names
[] = {
68 #endif /* GATHER_STATISTICS */
70 /* A cache of gimple_seq objects. Sequences are created and destroyed
71 fairly often during gimplification. */
72 static GTY ((deletable
)) struct gimple_seq_d
*gimple_seq_cache
;
74 /* Private API manipulation functions shared only with some
76 extern void gimple_set_stored_syms (gimple
, bitmap
, bitmap_obstack
*);
77 extern void gimple_set_loaded_syms (gimple
, bitmap
, bitmap_obstack
*);
79 /* Gimple tuple constructors.
80 Note: Any constructor taking a ``gimple_seq'' as a parameter, can
81 be passed a NULL to start with an empty sequence. */
83 /* Set the code for statement G to CODE. */
86 gimple_set_code (gimple g
, enum gimple_code code
)
88 g
->gsbase
.code
= code
;
92 /* Return the GSS_* identifier for the given GIMPLE statement CODE. */
94 static enum gimple_statement_structure_enum
95 gss_for_code (enum gimple_code code
)
101 case GIMPLE_RETURN
: return GSS_WITH_MEM_OPS
;
105 case GIMPLE_CHANGE_DYNAMIC_TYPE
:
106 case GIMPLE_SWITCH
: return GSS_WITH_OPS
;
107 case GIMPLE_ASM
: return GSS_ASM
;
108 case GIMPLE_BIND
: return GSS_BIND
;
109 case GIMPLE_CATCH
: return GSS_CATCH
;
110 case GIMPLE_EH_FILTER
: return GSS_EH_FILTER
;
111 case GIMPLE_NOP
: return GSS_BASE
;
112 case GIMPLE_PHI
: return GSS_PHI
;
113 case GIMPLE_RESX
: return GSS_RESX
;
114 case GIMPLE_TRY
: return GSS_TRY
;
115 case GIMPLE_WITH_CLEANUP_EXPR
: return GSS_WCE
;
116 case GIMPLE_OMP_CRITICAL
: return GSS_OMP_CRITICAL
;
117 case GIMPLE_OMP_FOR
: return GSS_OMP_FOR
;
118 case GIMPLE_OMP_MASTER
:
119 case GIMPLE_OMP_ORDERED
:
120 case GIMPLE_OMP_SECTION
: return GSS_OMP
;
121 case GIMPLE_OMP_RETURN
:
122 case GIMPLE_OMP_SECTIONS_SWITCH
: return GSS_BASE
;
123 case GIMPLE_OMP_CONTINUE
: return GSS_OMP_CONTINUE
;
124 case GIMPLE_OMP_PARALLEL
: return GSS_OMP_PARALLEL
;
125 case GIMPLE_OMP_TASK
: return GSS_OMP_TASK
;
126 case GIMPLE_OMP_SECTIONS
: return GSS_OMP_SECTIONS
;
127 case GIMPLE_OMP_SINGLE
: return GSS_OMP_SINGLE
;
128 case GIMPLE_OMP_ATOMIC_LOAD
: return GSS_OMP_ATOMIC_LOAD
;
129 case GIMPLE_OMP_ATOMIC_STORE
: return GSS_OMP_ATOMIC_STORE
;
130 case GIMPLE_PREDICT
: return GSS_BASE
;
131 default: gcc_unreachable ();
136 /* Return the number of bytes needed to hold a GIMPLE statement with
140 gimple_size (enum gimple_code code
)
142 enum gimple_statement_structure_enum gss
= gss_for_code (code
);
144 if (gss
== GSS_WITH_OPS
)
145 return sizeof (struct gimple_statement_with_ops
);
146 else if (gss
== GSS_WITH_MEM_OPS
)
147 return sizeof (struct gimple_statement_with_memory_ops
);
152 return sizeof (struct gimple_statement_asm
);
154 return sizeof (struct gimple_statement_base
);
156 return sizeof (struct gimple_statement_bind
);
158 return sizeof (struct gimple_statement_catch
);
159 case GIMPLE_EH_FILTER
:
160 return sizeof (struct gimple_statement_eh_filter
);
162 return sizeof (struct gimple_statement_try
);
164 return sizeof (struct gimple_statement_resx
);
165 case GIMPLE_OMP_CRITICAL
:
166 return sizeof (struct gimple_statement_omp_critical
);
168 return sizeof (struct gimple_statement_omp_for
);
169 case GIMPLE_OMP_PARALLEL
:
170 return sizeof (struct gimple_statement_omp_parallel
);
171 case GIMPLE_OMP_TASK
:
172 return sizeof (struct gimple_statement_omp_task
);
173 case GIMPLE_OMP_SECTION
:
174 case GIMPLE_OMP_MASTER
:
175 case GIMPLE_OMP_ORDERED
:
176 return sizeof (struct gimple_statement_omp
);
177 case GIMPLE_OMP_RETURN
:
178 return sizeof (struct gimple_statement_base
);
179 case GIMPLE_OMP_CONTINUE
:
180 return sizeof (struct gimple_statement_omp_continue
);
181 case GIMPLE_OMP_SECTIONS
:
182 return sizeof (struct gimple_statement_omp_sections
);
183 case GIMPLE_OMP_SECTIONS_SWITCH
:
184 return sizeof (struct gimple_statement_base
);
185 case GIMPLE_OMP_SINGLE
:
186 return sizeof (struct gimple_statement_omp_single
);
187 case GIMPLE_OMP_ATOMIC_LOAD
:
188 return sizeof (struct gimple_statement_omp_atomic_load
);
189 case GIMPLE_OMP_ATOMIC_STORE
:
190 return sizeof (struct gimple_statement_omp_atomic_store
);
191 case GIMPLE_WITH_CLEANUP_EXPR
:
192 return sizeof (struct gimple_statement_wce
);
193 case GIMPLE_CHANGE_DYNAMIC_TYPE
:
194 return sizeof (struct gimple_statement_with_ops
);
196 return sizeof (struct gimple_statement_base
);
205 /* Allocate memory for a GIMPLE statement with code CODE and NUM_OPS
208 #define gimple_alloc(c, n) gimple_alloc_stat (c, n MEM_STAT_INFO)
210 gimple_alloc_stat (enum gimple_code code
, unsigned num_ops MEM_STAT_DECL
)
215 size
= gimple_size (code
);
217 size
+= sizeof (tree
) * (num_ops
- 1);
219 #ifdef GATHER_STATISTICS
221 enum gimple_alloc_kind kind
= gimple_alloc_kind (code
);
222 gimple_alloc_counts
[(int) kind
]++;
223 gimple_alloc_sizes
[(int) kind
] += size
;
227 stmt
= (gimple
) ggc_alloc_cleared_stat (size PASS_MEM_STAT
);
228 gimple_set_code (stmt
, code
);
229 gimple_set_num_ops (stmt
, num_ops
);
231 /* Do not call gimple_set_modified here as it has other side
232 effects and this tuple is still not completely built. */
233 stmt
->gsbase
.modified
= 1;
238 /* Set SUBCODE to be the code of the expression computed by statement G. */
241 gimple_set_subcode (gimple g
, unsigned subcode
)
243 /* We only have 16 bits for the RHS code. Assert that we are not
245 gcc_assert (subcode
< (1 << 16));
246 g
->gsbase
.subcode
= subcode
;
251 /* Build a tuple with operands. CODE is the statement to build (which
252 must be one of the GIMPLE_WITH_OPS tuples). SUBCODE is the sub-code
253 for the new tuple. NUM_OPS is the number of operands to allocate. */
255 #define gimple_build_with_ops(c, s, n) \
256 gimple_build_with_ops_stat (c, s, n MEM_STAT_INFO)
259 gimple_build_with_ops_stat (enum gimple_code code
, enum tree_code subcode
,
260 unsigned num_ops MEM_STAT_DECL
)
262 gimple s
= gimple_alloc_stat (code
, num_ops PASS_MEM_STAT
);
263 gimple_set_subcode (s
, subcode
);
269 /* Build a GIMPLE_RETURN statement returning RETVAL. */
272 gimple_build_return (tree retval
)
274 gimple s
= gimple_build_with_ops (GIMPLE_RETURN
, 0, 1);
276 gimple_return_set_retval (s
, retval
);
280 /* Helper for gimple_build_call, gimple_build_call_vec and
281 gimple_build_call_from_tree. Build the basic components of a
282 GIMPLE_CALL statement to function FN with NARGS arguments. */
285 gimple_build_call_1 (tree fn
, unsigned nargs
)
287 gimple s
= gimple_build_with_ops (GIMPLE_CALL
, 0, nargs
+ 3);
288 if (TREE_CODE (fn
) == FUNCTION_DECL
)
289 fn
= build_fold_addr_expr (fn
);
290 gimple_set_op (s
, 1, fn
);
295 /* Build a GIMPLE_CALL statement to function FN with the arguments
296 specified in vector ARGS. */
299 gimple_build_call_vec (tree fn
, VEC(tree
, heap
) *args
)
302 unsigned nargs
= VEC_length (tree
, args
);
303 gimple call
= gimple_build_call_1 (fn
, nargs
);
305 for (i
= 0; i
< nargs
; i
++)
306 gimple_call_set_arg (call
, i
, VEC_index (tree
, args
, i
));
312 /* Build a GIMPLE_CALL statement to function FN. NARGS is the number of
313 arguments. The ... are the arguments. */
316 gimple_build_call (tree fn
, unsigned nargs
, ...)
322 gcc_assert (TREE_CODE (fn
) == FUNCTION_DECL
|| is_gimple_call_addr (fn
));
324 call
= gimple_build_call_1 (fn
, nargs
);
326 va_start (ap
, nargs
);
327 for (i
= 0; i
< nargs
; i
++)
328 gimple_call_set_arg (call
, i
, va_arg (ap
, tree
));
335 /* Build a GIMPLE_CALL statement from CALL_EXPR T. Note that T is
336 assumed to be in GIMPLE form already. Minimal checking is done of
340 gimple_build_call_from_tree (tree t
)
344 tree fndecl
= get_callee_fndecl (t
);
346 gcc_assert (TREE_CODE (t
) == CALL_EXPR
);
348 nargs
= call_expr_nargs (t
);
349 call
= gimple_build_call_1 (fndecl
? fndecl
: CALL_EXPR_FN (t
), nargs
);
351 for (i
= 0; i
< nargs
; i
++)
352 gimple_call_set_arg (call
, i
, CALL_EXPR_ARG (t
, i
));
354 gimple_set_block (call
, TREE_BLOCK (t
));
356 /* Carry all the CALL_EXPR flags to the new GIMPLE_CALL. */
357 gimple_call_set_chain (call
, CALL_EXPR_STATIC_CHAIN (t
));
358 gimple_call_set_tail (call
, CALL_EXPR_TAILCALL (t
));
359 gimple_call_set_cannot_inline (call
, CALL_CANNOT_INLINE_P (t
));
360 gimple_call_set_return_slot_opt (call
, CALL_EXPR_RETURN_SLOT_OPT (t
));
361 gimple_call_set_from_thunk (call
, CALL_FROM_THUNK_P (t
));
362 gimple_call_set_va_arg_pack (call
, CALL_EXPR_VA_ARG_PACK (t
));
368 /* Extract the operands and code for expression EXPR into *SUBCODE_P,
369 *OP1_P and *OP2_P respectively. */
372 extract_ops_from_tree (tree expr
, enum tree_code
*subcode_p
, tree
*op1_p
,
375 enum gimple_rhs_class grhs_class
;
377 *subcode_p
= TREE_CODE (expr
);
378 grhs_class
= get_gimple_rhs_class (*subcode_p
);
380 if (grhs_class
== GIMPLE_BINARY_RHS
)
382 *op1_p
= TREE_OPERAND (expr
, 0);
383 *op2_p
= TREE_OPERAND (expr
, 1);
385 else if (grhs_class
== GIMPLE_UNARY_RHS
)
387 *op1_p
= TREE_OPERAND (expr
, 0);
390 else if (grhs_class
== GIMPLE_SINGLE_RHS
)
400 /* Build a GIMPLE_ASSIGN statement.
402 LHS of the assignment.
403 RHS of the assignment which can be unary or binary. */
406 gimple_build_assign_stat (tree lhs
, tree rhs MEM_STAT_DECL
)
408 enum tree_code subcode
;
411 extract_ops_from_tree (rhs
, &subcode
, &op1
, &op2
);
412 return gimple_build_assign_with_ops_stat (subcode
, lhs
, op1
, op2
417 /* Build a GIMPLE_ASSIGN statement with sub-code SUBCODE and operands
418 OP1 and OP2. If OP2 is NULL then SUBCODE must be of class
419 GIMPLE_UNARY_RHS or GIMPLE_SINGLE_RHS. */
422 gimple_build_assign_with_ops_stat (enum tree_code subcode
, tree lhs
, tree op1
,
423 tree op2 MEM_STAT_DECL
)
428 /* Need 1 operand for LHS and 1 or 2 for the RHS (depending on the
430 num_ops
= get_gimple_rhs_num_ops (subcode
) + 1;
432 p
= gimple_build_with_ops_stat (GIMPLE_ASSIGN
, subcode
, num_ops
434 gimple_assign_set_lhs (p
, lhs
);
435 gimple_assign_set_rhs1 (p
, op1
);
438 gcc_assert (num_ops
> 2);
439 gimple_assign_set_rhs2 (p
, op2
);
446 /* Build a new GIMPLE_ASSIGN tuple and append it to the end of *SEQ_P.
448 DST/SRC are the destination and source respectively. You can pass
449 ungimplified trees in DST or SRC, in which case they will be
450 converted to a gimple operand if necessary.
452 This function returns the newly created GIMPLE_ASSIGN tuple. */
455 gimplify_assign (tree dst
, tree src
, gimple_seq
*seq_p
)
457 tree t
= build2 (MODIFY_EXPR
, TREE_TYPE (dst
), dst
, src
);
458 gimplify_and_add (t
, seq_p
);
460 return gimple_seq_last_stmt (*seq_p
);
464 /* Build a GIMPLE_COND statement.
466 PRED is the condition used to compare LHS and the RHS.
467 T_LABEL is the label to jump to if the condition is true.
468 F_LABEL is the label to jump to otherwise. */
471 gimple_build_cond (enum tree_code pred_code
, tree lhs
, tree rhs
,
472 tree t_label
, tree f_label
)
476 gcc_assert (TREE_CODE_CLASS (pred_code
) == tcc_comparison
);
477 p
= gimple_build_with_ops (GIMPLE_COND
, pred_code
, 4);
478 gimple_cond_set_lhs (p
, lhs
);
479 gimple_cond_set_rhs (p
, rhs
);
480 gimple_cond_set_true_label (p
, t_label
);
481 gimple_cond_set_false_label (p
, f_label
);
486 /* Extract operands for a GIMPLE_COND statement out of COND_EXPR tree COND. */
489 gimple_cond_get_ops_from_tree (tree cond
, enum tree_code
*code_p
,
490 tree
*lhs_p
, tree
*rhs_p
)
492 gcc_assert (TREE_CODE_CLASS (TREE_CODE (cond
)) == tcc_comparison
493 || TREE_CODE (cond
) == TRUTH_NOT_EXPR
494 || is_gimple_min_invariant (cond
)
495 || SSA_VAR_P (cond
));
497 extract_ops_from_tree (cond
, code_p
, lhs_p
, rhs_p
);
499 /* Canonicalize conditionals of the form 'if (!VAL)'. */
500 if (*code_p
== TRUTH_NOT_EXPR
)
503 gcc_assert (*lhs_p
&& *rhs_p
== NULL_TREE
);
504 *rhs_p
= fold_convert (TREE_TYPE (*lhs_p
), integer_zero_node
);
506 /* Canonicalize conditionals of the form 'if (VAL)' */
507 else if (TREE_CODE_CLASS (*code_p
) != tcc_comparison
)
510 gcc_assert (*lhs_p
&& *rhs_p
== NULL_TREE
);
511 *rhs_p
= fold_convert (TREE_TYPE (*lhs_p
), integer_zero_node
);
516 /* Build a GIMPLE_COND statement from the conditional expression tree
517 COND. T_LABEL and F_LABEL are as in gimple_build_cond. */
520 gimple_build_cond_from_tree (tree cond
, tree t_label
, tree f_label
)
525 gimple_cond_get_ops_from_tree (cond
, &code
, &lhs
, &rhs
);
526 return gimple_build_cond (code
, lhs
, rhs
, t_label
, f_label
);
529 /* Set code, lhs, and rhs of a GIMPLE_COND from a suitable
530 boolean expression tree COND. */
533 gimple_cond_set_condition_from_tree (gimple stmt
, tree cond
)
538 gimple_cond_get_ops_from_tree (cond
, &code
, &lhs
, &rhs
);
539 gimple_cond_set_condition (stmt
, code
, lhs
, rhs
);
542 /* Build a GIMPLE_LABEL statement for LABEL. */
545 gimple_build_label (tree label
)
547 gimple p
= gimple_build_with_ops (GIMPLE_LABEL
, 0, 1);
548 gimple_label_set_label (p
, label
);
552 /* Build a GIMPLE_GOTO statement to label DEST. */
555 gimple_build_goto (tree dest
)
557 gimple p
= gimple_build_with_ops (GIMPLE_GOTO
, 0, 1);
558 gimple_goto_set_dest (p
, dest
);
563 /* Build a GIMPLE_NOP statement. */
566 gimple_build_nop (void)
568 return gimple_alloc (GIMPLE_NOP
, 0);
572 /* Build a GIMPLE_BIND statement.
573 VARS are the variables in BODY.
574 BLOCK is the containing block. */
577 gimple_build_bind (tree vars
, gimple_seq body
, tree block
)
579 gimple p
= gimple_alloc (GIMPLE_BIND
, 0);
580 gimple_bind_set_vars (p
, vars
);
582 gimple_bind_set_body (p
, body
);
584 gimple_bind_set_block (p
, block
);
588 /* Helper function to set the simple fields of a asm stmt.
590 STRING is a pointer to a string that is the asm blocks assembly code.
591 NINPUT is the number of register inputs.
592 NOUTPUT is the number of register outputs.
593 NCLOBBERS is the number of clobbered registers.
597 gimple_build_asm_1 (const char *string
, unsigned ninputs
, unsigned noutputs
,
601 int size
= strlen (string
);
603 p
= gimple_build_with_ops (GIMPLE_ASM
, 0, ninputs
+ noutputs
+ nclobbers
);
605 p
->gimple_asm
.ni
= ninputs
;
606 p
->gimple_asm
.no
= noutputs
;
607 p
->gimple_asm
.nc
= nclobbers
;
608 p
->gimple_asm
.string
= ggc_alloc_string (string
, size
);
610 #ifdef GATHER_STATISTICS
611 gimple_alloc_sizes
[(int) gimple_alloc_kind (GIMPLE_ASM
)] += size
;
617 /* Build a GIMPLE_ASM statement.
619 STRING is the 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.
623 INPUTS is a vector of the input register parameters.
624 OUTPUTS is a vector of the output register parameters.
625 CLOBBERS is a vector of the clobbered register parameters. */
628 gimple_build_asm_vec (const char *string
, VEC(tree
,gc
)* inputs
,
629 VEC(tree
,gc
)* outputs
, VEC(tree
,gc
)* clobbers
)
634 p
= gimple_build_asm_1 (string
,
635 VEC_length (tree
, inputs
),
636 VEC_length (tree
, outputs
),
637 VEC_length (tree
, clobbers
));
639 for (i
= 0; i
< VEC_length (tree
, inputs
); i
++)
640 gimple_asm_set_input_op (p
, i
, VEC_index (tree
, inputs
, i
));
642 for (i
= 0; i
< VEC_length (tree
, outputs
); i
++)
643 gimple_asm_set_output_op (p
, i
, VEC_index (tree
, outputs
, i
));
645 for (i
= 0; i
< VEC_length (tree
, clobbers
); i
++)
646 gimple_asm_set_clobber_op (p
, i
, VEC_index (tree
, clobbers
, i
));
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 ... are trees for each input, output and clobbered register. */
660 gimple_build_asm (const char *string
, unsigned ninputs
, unsigned noutputs
,
661 unsigned nclobbers
, ...)
667 p
= gimple_build_asm_1 (string
, ninputs
, noutputs
, nclobbers
);
669 va_start (ap
, nclobbers
);
671 for (i
= 0; i
< ninputs
; i
++)
672 gimple_asm_set_input_op (p
, i
, va_arg (ap
, tree
));
674 for (i
= 0; i
< noutputs
; i
++)
675 gimple_asm_set_output_op (p
, i
, va_arg (ap
, tree
));
677 for (i
= 0; i
< nclobbers
; i
++)
678 gimple_asm_set_clobber_op (p
, i
, va_arg (ap
, tree
));
685 /* Build a GIMPLE_CATCH statement.
687 TYPES are the catch types.
688 HANDLER is the exception handler. */
691 gimple_build_catch (tree types
, gimple_seq handler
)
693 gimple p
= gimple_alloc (GIMPLE_CATCH
, 0);
694 gimple_catch_set_types (p
, types
);
696 gimple_catch_set_handler (p
, handler
);
701 /* Build a GIMPLE_EH_FILTER statement.
703 TYPES are the filter's types.
704 FAILURE is the filter's failure action. */
707 gimple_build_eh_filter (tree types
, gimple_seq failure
)
709 gimple p
= gimple_alloc (GIMPLE_EH_FILTER
, 0);
710 gimple_eh_filter_set_types (p
, types
);
712 gimple_eh_filter_set_failure (p
, failure
);
717 /* Build a GIMPLE_TRY statement.
719 EVAL is the expression to evaluate.
720 CLEANUP is the cleanup expression.
721 KIND is either GIMPLE_TRY_CATCH or GIMPLE_TRY_FINALLY depending on
722 whether this is a try/catch or a try/finally respectively. */
725 gimple_build_try (gimple_seq eval
, gimple_seq cleanup
,
726 enum gimple_try_flags kind
)
730 gcc_assert (kind
== GIMPLE_TRY_CATCH
|| kind
== GIMPLE_TRY_FINALLY
);
731 p
= gimple_alloc (GIMPLE_TRY
, 0);
732 gimple_set_subcode (p
, kind
);
734 gimple_try_set_eval (p
, eval
);
736 gimple_try_set_cleanup (p
, cleanup
);
741 /* Construct a GIMPLE_WITH_CLEANUP_EXPR statement.
743 CLEANUP is the cleanup expression. */
746 gimple_build_wce (gimple_seq cleanup
)
748 gimple p
= gimple_alloc (GIMPLE_WITH_CLEANUP_EXPR
, 0);
750 gimple_wce_set_cleanup (p
, cleanup
);
756 /* Build a GIMPLE_RESX statement.
758 REGION is the region number from which this resx causes control flow to
762 gimple_build_resx (int region
)
764 gimple p
= gimple_alloc (GIMPLE_RESX
, 0);
765 gimple_resx_set_region (p
, region
);
770 /* The helper for constructing a gimple switch statement.
771 INDEX is the switch's index.
772 NLABELS is the number of labels in the switch excluding the default.
773 DEFAULT_LABEL is the default label for the switch statement. */
776 gimple_build_switch_1 (unsigned nlabels
, tree index
, tree default_label
)
778 /* nlabels + 1 default label + 1 index. */
779 gimple p
= gimple_build_with_ops (GIMPLE_SWITCH
, 0, nlabels
+ 1 + 1);
780 gimple_switch_set_index (p
, index
);
781 gimple_switch_set_default_label (p
, default_label
);
786 /* Build a GIMPLE_SWITCH statement.
788 INDEX is the switch's index.
789 NLABELS is the number of labels in the switch excluding the DEFAULT_LABEL.
790 ... are the labels excluding the default. */
793 gimple_build_switch (unsigned nlabels
, tree index
, tree default_label
, ...)
799 p
= gimple_build_switch_1 (nlabels
, index
, default_label
);
801 /* Store the rest of the labels. */
802 va_start (al
, default_label
);
803 for (i
= 1; i
<= nlabels
; i
++)
804 gimple_switch_set_label (p
, i
, va_arg (al
, tree
));
811 /* Build a GIMPLE_SWITCH statement.
813 INDEX is the switch's index.
814 DEFAULT_LABEL is the default label
815 ARGS is a vector of labels excluding the default. */
818 gimple_build_switch_vec (tree index
, tree default_label
, VEC(tree
, heap
) *args
)
821 unsigned nlabels
= VEC_length (tree
, args
);
822 gimple p
= gimple_build_switch_1 (nlabels
, index
, default_label
);
824 /* Put labels in labels[1 - (nlabels + 1)].
825 Default label is in labels[0]. */
826 for (i
= 1; i
<= nlabels
; i
++)
827 gimple_switch_set_label (p
, i
, VEC_index (tree
, args
, i
- 1));
833 /* Build a GIMPLE_OMP_CRITICAL statement.
835 BODY is the sequence of statements for which only one thread can execute.
836 NAME is optional identifier for this critical block. */
839 gimple_build_omp_critical (gimple_seq body
, tree name
)
841 gimple p
= gimple_alloc (GIMPLE_OMP_CRITICAL
, 0);
842 gimple_omp_critical_set_name (p
, name
);
844 gimple_omp_set_body (p
, body
);
849 /* Build a GIMPLE_OMP_FOR statement.
851 BODY is sequence of statements inside the for loop.
852 CLAUSES, are any of the OMP loop construct's clauses: private, firstprivate,
853 lastprivate, reductions, ordered, schedule, and nowait.
854 COLLAPSE is the collapse count.
855 PRE_BODY is the sequence of statements that are loop invariant. */
858 gimple_build_omp_for (gimple_seq body
, tree clauses
, size_t collapse
,
861 gimple p
= gimple_alloc (GIMPLE_OMP_FOR
, 0);
863 gimple_omp_set_body (p
, body
);
864 gimple_omp_for_set_clauses (p
, clauses
);
865 p
->gimple_omp_for
.collapse
= collapse
;
866 p
->gimple_omp_for
.iter
= GGC_CNEWVEC (struct gimple_omp_for_iter
, collapse
);
868 gimple_omp_for_set_pre_body (p
, pre_body
);
874 /* Build a GIMPLE_OMP_PARALLEL statement.
876 BODY is sequence of statements which are executed in parallel.
877 CLAUSES, are the OMP parallel construct's clauses.
878 CHILD_FN is the function created for the parallel threads to execute.
879 DATA_ARG are the shared data argument(s). */
882 gimple_build_omp_parallel (gimple_seq body
, tree clauses
, tree child_fn
,
885 gimple p
= gimple_alloc (GIMPLE_OMP_PARALLEL
, 0);
887 gimple_omp_set_body (p
, body
);
888 gimple_omp_parallel_set_clauses (p
, clauses
);
889 gimple_omp_parallel_set_child_fn (p
, child_fn
);
890 gimple_omp_parallel_set_data_arg (p
, data_arg
);
896 /* Build a GIMPLE_OMP_TASK statement.
898 BODY is sequence of statements which are executed by the explicit task.
899 CLAUSES, are the OMP parallel construct's clauses.
900 CHILD_FN is the function created for the parallel threads to execute.
901 DATA_ARG are the shared data argument(s).
902 COPY_FN is the optional function for firstprivate initialization.
903 ARG_SIZE and ARG_ALIGN are size and alignment of the data block. */
906 gimple_build_omp_task (gimple_seq body
, tree clauses
, tree child_fn
,
907 tree data_arg
, tree copy_fn
, tree arg_size
,
910 gimple p
= gimple_alloc (GIMPLE_OMP_TASK
, 0);
912 gimple_omp_set_body (p
, body
);
913 gimple_omp_task_set_clauses (p
, clauses
);
914 gimple_omp_task_set_child_fn (p
, child_fn
);
915 gimple_omp_task_set_data_arg (p
, data_arg
);
916 gimple_omp_task_set_copy_fn (p
, copy_fn
);
917 gimple_omp_task_set_arg_size (p
, arg_size
);
918 gimple_omp_task_set_arg_align (p
, arg_align
);
924 /* Build a GIMPLE_OMP_SECTION statement for a sections statement.
926 BODY is the sequence of statements in the section. */
929 gimple_build_omp_section (gimple_seq body
)
931 gimple p
= gimple_alloc (GIMPLE_OMP_SECTION
, 0);
933 gimple_omp_set_body (p
, body
);
939 /* Build a GIMPLE_OMP_MASTER statement.
941 BODY is the sequence of statements to be executed by just the master. */
944 gimple_build_omp_master (gimple_seq body
)
946 gimple p
= gimple_alloc (GIMPLE_OMP_MASTER
, 0);
948 gimple_omp_set_body (p
, body
);
954 /* Build a GIMPLE_OMP_CONTINUE statement.
956 CONTROL_DEF is the definition of the control variable.
957 CONTROL_USE is the use of the control variable. */
960 gimple_build_omp_continue (tree control_def
, tree control_use
)
962 gimple p
= gimple_alloc (GIMPLE_OMP_CONTINUE
, 0);
963 gimple_omp_continue_set_control_def (p
, control_def
);
964 gimple_omp_continue_set_control_use (p
, control_use
);
968 /* Build a GIMPLE_OMP_ORDERED statement.
970 BODY is the sequence of statements inside a loop that will executed in
974 gimple_build_omp_ordered (gimple_seq body
)
976 gimple p
= gimple_alloc (GIMPLE_OMP_ORDERED
, 0);
978 gimple_omp_set_body (p
, body
);
984 /* Build a GIMPLE_OMP_RETURN statement.
985 WAIT_P is true if this is a non-waiting return. */
988 gimple_build_omp_return (bool wait_p
)
990 gimple p
= gimple_alloc (GIMPLE_OMP_RETURN
, 0);
992 gimple_omp_return_set_nowait (p
);
998 /* Build a GIMPLE_OMP_SECTIONS statement.
1000 BODY is a sequence of section statements.
1001 CLAUSES are any of the OMP sections contsruct's clauses: private,
1002 firstprivate, lastprivate, reduction, and nowait. */
1005 gimple_build_omp_sections (gimple_seq body
, tree clauses
)
1007 gimple p
= gimple_alloc (GIMPLE_OMP_SECTIONS
, 0);
1009 gimple_omp_set_body (p
, body
);
1010 gimple_omp_sections_set_clauses (p
, clauses
);
1016 /* Build a GIMPLE_OMP_SECTIONS_SWITCH. */
1019 gimple_build_omp_sections_switch (void)
1021 return gimple_alloc (GIMPLE_OMP_SECTIONS_SWITCH
, 0);
1025 /* Build a GIMPLE_OMP_SINGLE statement.
1027 BODY is the sequence of statements that will be executed once.
1028 CLAUSES are any of the OMP single construct's clauses: private, firstprivate,
1029 copyprivate, nowait. */
1032 gimple_build_omp_single (gimple_seq body
, tree clauses
)
1034 gimple p
= gimple_alloc (GIMPLE_OMP_SINGLE
, 0);
1036 gimple_omp_set_body (p
, body
);
1037 gimple_omp_single_set_clauses (p
, clauses
);
1043 /* Build a GIMPLE_CHANGE_DYNAMIC_TYPE statement. TYPE is the new type
1044 for the location PTR. */
1047 gimple_build_cdt (tree type
, tree ptr
)
1049 gimple p
= gimple_build_with_ops (GIMPLE_CHANGE_DYNAMIC_TYPE
, 0, 2);
1050 gimple_cdt_set_new_type (p
, type
);
1051 gimple_cdt_set_location (p
, ptr
);
1057 /* Build a GIMPLE_OMP_ATOMIC_LOAD statement. */
1060 gimple_build_omp_atomic_load (tree lhs
, tree rhs
)
1062 gimple p
= gimple_alloc (GIMPLE_OMP_ATOMIC_LOAD
, 0);
1063 gimple_omp_atomic_load_set_lhs (p
, lhs
);
1064 gimple_omp_atomic_load_set_rhs (p
, rhs
);
1068 /* Build a GIMPLE_OMP_ATOMIC_STORE statement.
1070 VAL is the value we are storing. */
1073 gimple_build_omp_atomic_store (tree val
)
1075 gimple p
= gimple_alloc (GIMPLE_OMP_ATOMIC_STORE
, 0);
1076 gimple_omp_atomic_store_set_val (p
, val
);
1080 /* Build a GIMPLE_PREDICT statement. PREDICT is one of the predictors from
1081 predict.def, OUTCOME is NOT_TAKEN or TAKEN. */
1084 gimple_build_predict (enum br_predictor predictor
, enum prediction outcome
)
1086 gimple p
= gimple_alloc (GIMPLE_PREDICT
, 0);
1087 /* Ensure all the predictors fit into the lower bits of the subcode. */
1088 gcc_assert (END_PREDICTORS
<= GF_PREDICT_TAKEN
);
1089 gimple_predict_set_predictor (p
, predictor
);
1090 gimple_predict_set_outcome (p
, outcome
);
1094 /* Return which gimple structure is used by T. The enums here are defined
1097 enum gimple_statement_structure_enum
1098 gimple_statement_structure (gimple gs
)
1100 return gss_for_code (gimple_code (gs
));
1103 #if defined ENABLE_GIMPLE_CHECKING && (GCC_VERSION >= 2007)
1104 /* Complain of a gimple type mismatch and die. */
1107 gimple_check_failed (const_gimple gs
, const char *file
, int line
,
1108 const char *function
, enum gimple_code code
,
1109 enum tree_code subcode
)
1111 internal_error ("gimple check: expected %s(%s), have %s(%s) in %s, at %s:%d",
1112 gimple_code_name
[code
],
1113 tree_code_name
[subcode
],
1114 gimple_code_name
[gimple_code (gs
)],
1115 gs
->gsbase
.subcode
> 0
1116 ? tree_code_name
[gs
->gsbase
.subcode
]
1118 function
, trim_filename (file
), line
);
1122 /* Similar to gimple_check_failed, except that instead of specifying a
1123 dozen codes, use the knowledge that they're all sequential. */
1126 gimple_range_check_failed (const_gimple gs
, const char *file
, int line
,
1127 const char *function
, enum gimple_code c1
,
1128 enum gimple_code c2
)
1131 unsigned length
= 0;
1134 for (c
= c1
; c
<= c2
; ++c
)
1135 length
+= 4 + strlen (gimple_code_name
[c
]);
1137 length
+= strlen ("expected ");
1138 buffer
= XALLOCAVAR (char, length
);
1141 for (c
= c1
; c
<= c2
; ++c
)
1143 const char *prefix
= length
? " or " : "expected ";
1145 strcpy (buffer
+ length
, prefix
);
1146 length
+= strlen (prefix
);
1147 strcpy (buffer
+ length
, gimple_code_name
[c
]);
1148 length
+= strlen (gimple_code_name
[c
]);
1151 internal_error ("gimple check: %s, have %s in %s, at %s:%d",
1152 buffer
, gimple_code_name
[gimple_code (gs
)],
1153 function
, trim_filename (file
), line
);
1155 #endif /* ENABLE_GIMPLE_CHECKING */
1158 /* Allocate a new GIMPLE sequence in GC memory and return it. If
1159 there are free sequences in GIMPLE_SEQ_CACHE return one of those
1163 gimple_seq_alloc (void)
1165 gimple_seq seq
= gimple_seq_cache
;
1168 gimple_seq_cache
= gimple_seq_cache
->next_free
;
1169 gcc_assert (gimple_seq_cache
!= seq
);
1170 memset (seq
, 0, sizeof (*seq
));
1174 seq
= (gimple_seq
) ggc_alloc_cleared (sizeof (*seq
));
1175 #ifdef GATHER_STATISTICS
1176 gimple_alloc_counts
[(int) gimple_alloc_kind_seq
]++;
1177 gimple_alloc_sizes
[(int) gimple_alloc_kind_seq
] += sizeof (*seq
);
1184 /* Return SEQ to the free pool of GIMPLE sequences. */
1187 gimple_seq_free (gimple_seq seq
)
1192 gcc_assert (gimple_seq_first (seq
) == NULL
);
1193 gcc_assert (gimple_seq_last (seq
) == NULL
);
1195 /* If this triggers, it's a sign that the same list is being freed
1197 gcc_assert (seq
!= gimple_seq_cache
|| gimple_seq_cache
== NULL
);
1199 /* Add SEQ to the pool of free sequences. */
1200 seq
->next_free
= gimple_seq_cache
;
1201 gimple_seq_cache
= seq
;
1205 /* Link gimple statement GS to the end of the sequence *SEQ_P. If
1206 *SEQ_P is NULL, a new sequence is allocated. */
1209 gimple_seq_add_stmt (gimple_seq
*seq_p
, gimple gs
)
1211 gimple_stmt_iterator si
;
1217 *seq_p
= gimple_seq_alloc ();
1219 si
= gsi_last (*seq_p
);
1220 gsi_insert_after (&si
, gs
, GSI_NEW_STMT
);
1224 /* Append sequence SRC to the end of sequence *DST_P. If *DST_P is
1225 NULL, a new sequence is allocated. */
1228 gimple_seq_add_seq (gimple_seq
*dst_p
, gimple_seq src
)
1230 gimple_stmt_iterator si
;
1236 *dst_p
= gimple_seq_alloc ();
1238 si
= gsi_last (*dst_p
);
1239 gsi_insert_seq_after (&si
, src
, GSI_NEW_STMT
);
1243 /* Helper function of empty_body_p. Return true if STMT is an empty
1247 empty_stmt_p (gimple stmt
)
1249 if (gimple_code (stmt
) == GIMPLE_NOP
)
1251 if (gimple_code (stmt
) == GIMPLE_BIND
)
1252 return empty_body_p (gimple_bind_body (stmt
));
1257 /* Return true if BODY contains nothing but empty statements. */
1260 empty_body_p (gimple_seq body
)
1262 gimple_stmt_iterator i
;
1265 if (gimple_seq_empty_p (body
))
1267 for (i
= gsi_start (body
); !gsi_end_p (i
); gsi_next (&i
))
1268 if (!empty_stmt_p (gsi_stmt (i
)))
1275 /* Perform a deep copy of sequence SRC and return the result. */
1278 gimple_seq_copy (gimple_seq src
)
1280 gimple_stmt_iterator gsi
;
1281 gimple_seq new_seq
= gimple_seq_alloc ();
1284 for (gsi
= gsi_start (src
); !gsi_end_p (gsi
); gsi_next (&gsi
))
1286 stmt
= gimple_copy (gsi_stmt (gsi
));
1287 gimple_seq_add_stmt (&new_seq
, stmt
);
1294 /* Walk all the statements in the sequence SEQ calling walk_gimple_stmt
1295 on each one. WI is as in walk_gimple_stmt.
1297 If walk_gimple_stmt returns non-NULL, the walk is stopped, the
1298 value is stored in WI->CALLBACK_RESULT and the statement that
1299 produced the value is returned.
1301 Otherwise, all the statements are walked and NULL returned. */
1304 walk_gimple_seq (gimple_seq seq
, walk_stmt_fn callback_stmt
,
1305 walk_tree_fn callback_op
, struct walk_stmt_info
*wi
)
1307 gimple_stmt_iterator gsi
;
1309 for (gsi
= gsi_start (seq
); !gsi_end_p (gsi
); gsi_next (&gsi
))
1311 tree ret
= walk_gimple_stmt (&gsi
, callback_stmt
, callback_op
, wi
);
1314 /* If CALLBACK_STMT or CALLBACK_OP return a value, WI must exist
1317 wi
->callback_result
= ret
;
1318 return gsi_stmt (gsi
);
1323 wi
->callback_result
= NULL_TREE
;
1329 /* Helper function for walk_gimple_stmt. Walk operands of a GIMPLE_ASM. */
1332 walk_gimple_asm (gimple stmt
, walk_tree_fn callback_op
,
1333 struct walk_stmt_info
*wi
)
1337 const char **oconstraints
;
1339 const char *constraint
;
1340 bool allows_mem
, allows_reg
, is_inout
;
1342 noutputs
= gimple_asm_noutputs (stmt
);
1343 oconstraints
= (const char **) alloca ((noutputs
) * sizeof (const char *));
1348 for (i
= 0; i
< noutputs
; i
++)
1350 tree op
= gimple_asm_output_op (stmt
, i
);
1351 constraint
= TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (op
)));
1352 oconstraints
[i
] = constraint
;
1353 parse_output_constraint (&constraint
, i
, 0, 0, &allows_mem
, &allows_reg
,
1356 wi
->val_only
= (allows_reg
|| !allows_mem
);
1357 ret
= walk_tree (&TREE_VALUE (op
), callback_op
, wi
, NULL
);
1362 for (i
= 0; i
< gimple_asm_ninputs (stmt
); i
++)
1364 tree op
= gimple_asm_input_op (stmt
, i
);
1365 constraint
= TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (op
)));
1366 parse_input_constraint (&constraint
, 0, 0, noutputs
, 0,
1367 oconstraints
, &allows_mem
, &allows_reg
);
1369 wi
->val_only
= (allows_reg
|| !allows_mem
);
1371 /* Although input "m" is not really a LHS, we need a lvalue. */
1373 wi
->is_lhs
= !wi
->val_only
;
1374 ret
= walk_tree (&TREE_VALUE (op
), callback_op
, wi
, NULL
);
1382 wi
->val_only
= true;
1389 /* Helper function of WALK_GIMPLE_STMT. Walk every tree operand in
1390 STMT. CALLBACK_OP and WI are as in WALK_GIMPLE_STMT.
1392 CALLBACK_OP is called on each operand of STMT via walk_tree.
1393 Additional parameters to walk_tree must be stored in WI. For each operand
1394 OP, walk_tree is called as:
1396 walk_tree (&OP, CALLBACK_OP, WI, WI->PSET)
1398 If CALLBACK_OP returns non-NULL for an operand, the remaining
1399 operands are not scanned.
1401 The return value is that returned by the last call to walk_tree, or
1402 NULL_TREE if no CALLBACK_OP is specified. */
1405 walk_gimple_op (gimple stmt
, walk_tree_fn callback_op
,
1406 struct walk_stmt_info
*wi
)
1408 struct pointer_set_t
*pset
= (wi
) ? wi
->pset
: NULL
;
1410 tree ret
= NULL_TREE
;
1412 switch (gimple_code (stmt
))
1415 /* Walk the RHS operands. A formal temporary LHS may use a
1416 COMPONENT_REF RHS. */
1418 wi
->val_only
= !is_gimple_formal_tmp_var (gimple_assign_lhs (stmt
));
1420 for (i
= 1; i
< gimple_num_ops (stmt
); i
++)
1422 ret
= walk_tree (gimple_op_ptr (stmt
, i
), callback_op
, wi
,
1428 /* Walk the LHS. If the RHS is appropriate for a memory, we
1429 may use a COMPONENT_REF on the LHS. */
1432 /* If the RHS has more than 1 operand, it is not appropriate
1434 wi
->val_only
= !is_gimple_mem_rhs (gimple_assign_rhs1 (stmt
))
1435 || !gimple_assign_single_p (stmt
);
1439 ret
= walk_tree (gimple_op_ptr (stmt
, 0), callback_op
, wi
, pset
);
1445 wi
->val_only
= true;
1454 ret
= walk_tree (gimple_call_chain_ptr (stmt
), callback_op
, wi
, pset
);
1458 ret
= walk_tree (gimple_call_fn_ptr (stmt
), callback_op
, wi
, pset
);
1462 for (i
= 0; i
< gimple_call_num_args (stmt
); i
++)
1464 ret
= walk_tree (gimple_call_arg_ptr (stmt
, i
), callback_op
, wi
,
1473 ret
= walk_tree (gimple_call_lhs_ptr (stmt
), callback_op
, wi
, pset
);
1482 ret
= walk_tree (gimple_catch_types_ptr (stmt
), callback_op
, wi
,
1488 case GIMPLE_EH_FILTER
:
1489 ret
= walk_tree (gimple_eh_filter_types_ptr (stmt
), callback_op
, wi
,
1495 case GIMPLE_CHANGE_DYNAMIC_TYPE
:
1496 ret
= walk_tree (gimple_cdt_location_ptr (stmt
), callback_op
, wi
, pset
);
1500 ret
= walk_tree (gimple_cdt_new_type_ptr (stmt
), callback_op
, wi
, pset
);
1506 ret
= walk_gimple_asm (stmt
, callback_op
, wi
);
1511 case GIMPLE_OMP_CONTINUE
:
1512 ret
= walk_tree (gimple_omp_continue_control_def_ptr (stmt
),
1513 callback_op
, wi
, pset
);
1517 ret
= walk_tree (gimple_omp_continue_control_use_ptr (stmt
),
1518 callback_op
, wi
, pset
);
1523 case GIMPLE_OMP_CRITICAL
:
1524 ret
= walk_tree (gimple_omp_critical_name_ptr (stmt
), callback_op
, wi
,
1530 case GIMPLE_OMP_FOR
:
1531 ret
= walk_tree (gimple_omp_for_clauses_ptr (stmt
), callback_op
, wi
,
1535 for (i
= 0; i
< gimple_omp_for_collapse (stmt
); i
++)
1537 ret
= walk_tree (gimple_omp_for_index_ptr (stmt
, i
), callback_op
,
1541 ret
= walk_tree (gimple_omp_for_initial_ptr (stmt
, i
), callback_op
,
1545 ret
= walk_tree (gimple_omp_for_final_ptr (stmt
, i
), callback_op
,
1549 ret
= walk_tree (gimple_omp_for_incr_ptr (stmt
, i
), callback_op
,
1556 case GIMPLE_OMP_PARALLEL
:
1557 ret
= walk_tree (gimple_omp_parallel_clauses_ptr (stmt
), callback_op
,
1561 ret
= walk_tree (gimple_omp_parallel_child_fn_ptr (stmt
), callback_op
,
1565 ret
= walk_tree (gimple_omp_parallel_data_arg_ptr (stmt
), callback_op
,
1571 case GIMPLE_OMP_TASK
:
1572 ret
= walk_tree (gimple_omp_task_clauses_ptr (stmt
), callback_op
,
1576 ret
= walk_tree (gimple_omp_task_child_fn_ptr (stmt
), callback_op
,
1580 ret
= walk_tree (gimple_omp_task_data_arg_ptr (stmt
), callback_op
,
1584 ret
= walk_tree (gimple_omp_task_copy_fn_ptr (stmt
), callback_op
,
1588 ret
= walk_tree (gimple_omp_task_arg_size_ptr (stmt
), callback_op
,
1592 ret
= walk_tree (gimple_omp_task_arg_align_ptr (stmt
), callback_op
,
1598 case GIMPLE_OMP_SECTIONS
:
1599 ret
= walk_tree (gimple_omp_sections_clauses_ptr (stmt
), callback_op
,
1604 ret
= walk_tree (gimple_omp_sections_control_ptr (stmt
), callback_op
,
1611 case GIMPLE_OMP_SINGLE
:
1612 ret
= walk_tree (gimple_omp_single_clauses_ptr (stmt
), callback_op
, wi
,
1618 case GIMPLE_OMP_ATOMIC_LOAD
:
1619 ret
= walk_tree (gimple_omp_atomic_load_lhs_ptr (stmt
), callback_op
, wi
,
1624 ret
= walk_tree (gimple_omp_atomic_load_rhs_ptr (stmt
), callback_op
, wi
,
1630 case GIMPLE_OMP_ATOMIC_STORE
:
1631 ret
= walk_tree (gimple_omp_atomic_store_val_ptr (stmt
), callback_op
,
1637 /* Tuples that do not have operands. */
1640 case GIMPLE_OMP_RETURN
:
1641 case GIMPLE_PREDICT
:
1646 enum gimple_statement_structure_enum gss
;
1647 gss
= gimple_statement_structure (stmt
);
1648 if (gss
== GSS_WITH_OPS
|| gss
== GSS_WITH_MEM_OPS
)
1649 for (i
= 0; i
< gimple_num_ops (stmt
); i
++)
1651 ret
= walk_tree (gimple_op_ptr (stmt
, i
), callback_op
, wi
, pset
);
1663 /* Walk the current statement in GSI (optionally using traversal state
1664 stored in WI). If WI is NULL, no state is kept during traversal.
1665 The callback CALLBACK_STMT is called. If CALLBACK_STMT indicates
1666 that it has handled all the operands of the statement, its return
1667 value is returned. Otherwise, the return value from CALLBACK_STMT
1668 is discarded and its operands are scanned.
1670 If CALLBACK_STMT is NULL or it didn't handle the operands,
1671 CALLBACK_OP is called on each operand of the statement via
1672 walk_gimple_op. If walk_gimple_op returns non-NULL for any
1673 operand, the remaining operands are not scanned. In this case, the
1674 return value from CALLBACK_OP is returned.
1676 In any other case, NULL_TREE is returned. */
1679 walk_gimple_stmt (gimple_stmt_iterator
*gsi
, walk_stmt_fn callback_stmt
,
1680 walk_tree_fn callback_op
, struct walk_stmt_info
*wi
)
1684 gimple stmt
= gsi_stmt (*gsi
);
1689 if (wi
&& wi
->want_locations
&& gimple_has_location (stmt
))
1690 input_location
= gimple_location (stmt
);
1694 /* Invoke the statement callback. Return if the callback handled
1695 all of STMT operands by itself. */
1698 bool handled_ops
= false;
1699 tree_ret
= callback_stmt (gsi
, &handled_ops
, wi
);
1703 /* If CALLBACK_STMT did not handle operands, it should not have
1704 a value to return. */
1705 gcc_assert (tree_ret
== NULL
);
1707 /* Re-read stmt in case the callback changed it. */
1708 stmt
= gsi_stmt (*gsi
);
1711 /* If CALLBACK_OP is defined, invoke it on every operand of STMT. */
1714 tree_ret
= walk_gimple_op (stmt
, callback_op
, wi
);
1719 /* If STMT can have statements inside (e.g. GIMPLE_BIND), walk them. */
1720 switch (gimple_code (stmt
))
1723 ret
= walk_gimple_seq (gimple_bind_body (stmt
), callback_stmt
,
1726 return wi
->callback_result
;
1730 ret
= walk_gimple_seq (gimple_catch_handler (stmt
), callback_stmt
,
1733 return wi
->callback_result
;
1736 case GIMPLE_EH_FILTER
:
1737 ret
= walk_gimple_seq (gimple_eh_filter_failure (stmt
), callback_stmt
,
1740 return wi
->callback_result
;
1744 ret
= walk_gimple_seq (gimple_try_eval (stmt
), callback_stmt
, callback_op
,
1747 return wi
->callback_result
;
1749 ret
= walk_gimple_seq (gimple_try_cleanup (stmt
), callback_stmt
,
1752 return wi
->callback_result
;
1755 case GIMPLE_OMP_FOR
:
1756 ret
= walk_gimple_seq (gimple_omp_for_pre_body (stmt
), callback_stmt
,
1759 return wi
->callback_result
;
1762 case GIMPLE_OMP_CRITICAL
:
1763 case GIMPLE_OMP_MASTER
:
1764 case GIMPLE_OMP_ORDERED
:
1765 case GIMPLE_OMP_SECTION
:
1766 case GIMPLE_OMP_PARALLEL
:
1767 case GIMPLE_OMP_TASK
:
1768 case GIMPLE_OMP_SECTIONS
:
1769 case GIMPLE_OMP_SINGLE
:
1770 ret
= walk_gimple_seq (gimple_omp_body (stmt
), callback_stmt
, callback_op
,
1773 return wi
->callback_result
;
1776 case GIMPLE_WITH_CLEANUP_EXPR
:
1777 ret
= walk_gimple_seq (gimple_wce_cleanup (stmt
), callback_stmt
,
1780 return wi
->callback_result
;
1784 gcc_assert (!gimple_has_substatements (stmt
));
1792 /* Set sequence SEQ to be the GIMPLE body for function FN. */
1795 gimple_set_body (tree fndecl
, gimple_seq seq
)
1797 struct function
*fn
= DECL_STRUCT_FUNCTION (fndecl
);
1800 /* If FNDECL still does not have a function structure associated
1801 with it, then it does not make sense for it to receive a
1803 gcc_assert (seq
== NULL
);
1806 fn
->gimple_body
= seq
;
1810 /* Return the body of GIMPLE statements for function FN. */
1813 gimple_body (tree fndecl
)
1815 struct function
*fn
= DECL_STRUCT_FUNCTION (fndecl
);
1816 return fn
? fn
->gimple_body
: NULL
;
1820 /* Detect flags from a GIMPLE_CALL. This is just like
1821 call_expr_flags, but for gimple tuples. */
1824 gimple_call_flags (const_gimple stmt
)
1827 tree decl
= gimple_call_fndecl (stmt
);
1831 flags
= flags_from_decl_or_type (decl
);
1834 t
= TREE_TYPE (gimple_call_fn (stmt
));
1835 if (t
&& TREE_CODE (t
) == POINTER_TYPE
)
1836 flags
= flags_from_decl_or_type (TREE_TYPE (t
));
1845 /* Return true if GS is a copy assignment. */
1848 gimple_assign_copy_p (gimple gs
)
1850 return gimple_code (gs
) == GIMPLE_ASSIGN
1851 && get_gimple_rhs_class (gimple_assign_rhs_code (gs
))
1852 == GIMPLE_SINGLE_RHS
1853 && is_gimple_val (gimple_op (gs
, 1));
1857 /* Return true if GS is a SSA_NAME copy assignment. */
1860 gimple_assign_ssa_name_copy_p (gimple gs
)
1862 return (gimple_code (gs
) == GIMPLE_ASSIGN
1863 && (get_gimple_rhs_class (gimple_assign_rhs_code (gs
))
1864 == GIMPLE_SINGLE_RHS
)
1865 && TREE_CODE (gimple_assign_lhs (gs
)) == SSA_NAME
1866 && TREE_CODE (gimple_assign_rhs1 (gs
)) == SSA_NAME
);
1870 /* Return true if GS is an assignment with a singleton RHS, i.e.,
1871 there is no operator associated with the assignment itself.
1872 Unlike gimple_assign_copy_p, this predicate returns true for
1873 any RHS operand, including those that perform an operation
1874 and do not have the semantics of a copy, such as COND_EXPR. */
1877 gimple_assign_single_p (gimple gs
)
1879 return (gimple_code (gs
) == GIMPLE_ASSIGN
1880 && get_gimple_rhs_class (gimple_assign_rhs_code (gs
))
1881 == GIMPLE_SINGLE_RHS
);
1884 /* Return true if GS is an assignment with a unary RHS, but the
1885 operator has no effect on the assigned value. The logic is adapted
1886 from STRIP_NOPS. This predicate is intended to be used in tuplifying
1887 instances in which STRIP_NOPS was previously applied to the RHS of
1890 NOTE: In the use cases that led to the creation of this function
1891 and of gimple_assign_single_p, it is typical to test for either
1892 condition and to proceed in the same manner. In each case, the
1893 assigned value is represented by the single RHS operand of the
1894 assignment. I suspect there may be cases where gimple_assign_copy_p,
1895 gimple_assign_single_p, or equivalent logic is used where a similar
1896 treatment of unary NOPs is appropriate. */
1899 gimple_assign_unary_nop_p (gimple gs
)
1901 return (gimple_code (gs
) == GIMPLE_ASSIGN
1902 && (CONVERT_EXPR_CODE_P (gimple_assign_rhs_code (gs
))
1903 || gimple_assign_rhs_code (gs
) == NON_LVALUE_EXPR
)
1904 && gimple_assign_rhs1 (gs
) != error_mark_node
1905 && (TYPE_MODE (TREE_TYPE (gimple_assign_lhs (gs
)))
1906 == TYPE_MODE (TREE_TYPE (gimple_assign_rhs1 (gs
)))));
1909 /* Set BB to be the basic block holding G. */
1912 gimple_set_bb (gimple stmt
, basic_block bb
)
1914 stmt
->gsbase
.bb
= bb
;
1916 /* If the statement is a label, add the label to block-to-labels map
1917 so that we can speed up edge creation for GIMPLE_GOTOs. */
1918 if (cfun
->cfg
&& gimple_code (stmt
) == GIMPLE_LABEL
)
1923 t
= gimple_label_label (stmt
);
1924 uid
= LABEL_DECL_UID (t
);
1927 unsigned old_len
= VEC_length (basic_block
, label_to_block_map
);
1928 LABEL_DECL_UID (t
) = uid
= cfun
->cfg
->last_label_uid
++;
1929 if (old_len
<= (unsigned) uid
)
1931 unsigned new_len
= 3 * uid
/ 2;
1933 VEC_safe_grow_cleared (basic_block
, gc
, label_to_block_map
,
1938 VEC_replace (basic_block
, label_to_block_map
, uid
, bb
);
1943 /* Fold the expression computed by STMT. If the expression can be
1944 folded, return the folded result, otherwise return NULL. STMT is
1948 gimple_fold (const_gimple stmt
)
1950 switch (gimple_code (stmt
))
1953 return fold_binary (gimple_cond_code (stmt
),
1955 gimple_cond_lhs (stmt
),
1956 gimple_cond_rhs (stmt
));
1959 switch (get_gimple_rhs_class (gimple_assign_rhs_code (stmt
)))
1961 case GIMPLE_UNARY_RHS
:
1962 return fold_unary (gimple_assign_rhs_code (stmt
),
1963 TREE_TYPE (gimple_assign_lhs (stmt
)),
1964 gimple_assign_rhs1 (stmt
));
1965 case GIMPLE_BINARY_RHS
:
1966 return fold_binary (gimple_assign_rhs_code (stmt
),
1967 TREE_TYPE (gimple_assign_lhs (stmt
)),
1968 gimple_assign_rhs1 (stmt
),
1969 gimple_assign_rhs2 (stmt
));
1970 case GIMPLE_SINGLE_RHS
:
1971 return fold (gimple_assign_rhs1 (stmt
));
1977 return gimple_switch_index (stmt
);
1990 /* Modify the RHS of the assignment pointed-to by GSI using the
1991 operands in the expression tree EXPR.
1993 NOTE: The statement pointed-to by GSI may be reallocated if it
1994 did not have enough operand slots.
1996 This function is useful to convert an existing tree expression into
1997 the flat representation used for the RHS of a GIMPLE assignment.
1998 It will reallocate memory as needed to expand or shrink the number
1999 of operand slots needed to represent EXPR.
2001 NOTE: If you find yourself building a tree and then calling this
2002 function, you are most certainly doing it the slow way. It is much
2003 better to build a new assignment or to use the function
2004 gimple_assign_set_rhs_with_ops, which does not require an
2005 expression tree to be built. */
2008 gimple_assign_set_rhs_from_tree (gimple_stmt_iterator
*gsi
, tree expr
)
2010 enum tree_code subcode
;
2013 extract_ops_from_tree (expr
, &subcode
, &op1
, &op2
);
2014 gimple_assign_set_rhs_with_ops (gsi
, subcode
, op1
, op2
);
2018 /* Set the RHS of assignment statement pointed-to by GSI to CODE with
2019 operands OP1 and OP2.
2021 NOTE: The statement pointed-to by GSI may be reallocated if it
2022 did not have enough operand slots. */
2025 gimple_assign_set_rhs_with_ops (gimple_stmt_iterator
*gsi
, enum tree_code code
,
2028 unsigned new_rhs_ops
= get_gimple_rhs_num_ops (code
);
2029 gimple stmt
= gsi_stmt (*gsi
);
2031 /* If the new CODE needs more operands, allocate a new statement. */
2032 if (gimple_num_ops (stmt
) < new_rhs_ops
+ 1)
2034 tree lhs
= gimple_assign_lhs (stmt
);
2035 gimple new_stmt
= gimple_alloc (gimple_code (stmt
), new_rhs_ops
+ 1);
2036 memcpy (new_stmt
, stmt
, gimple_size (gimple_code (stmt
)));
2037 gsi_replace (gsi
, new_stmt
, true);
2040 /* The LHS needs to be reset as this also changes the SSA name
2042 gimple_assign_set_lhs (stmt
, lhs
);
2045 gimple_set_num_ops (stmt
, new_rhs_ops
+ 1);
2046 gimple_set_subcode (stmt
, code
);
2047 gimple_assign_set_rhs1 (stmt
, op1
);
2048 if (new_rhs_ops
> 1)
2049 gimple_assign_set_rhs2 (stmt
, op2
);
2053 /* Return the LHS of a statement that performs an assignment,
2054 either a GIMPLE_ASSIGN or a GIMPLE_CALL. Returns NULL_TREE
2055 for a call to a function that returns no value, or for a
2056 statement other than an assignment or a call. */
2059 gimple_get_lhs (const_gimple stmt
)
2061 enum tree_code code
= gimple_code (stmt
);
2063 if (code
== GIMPLE_ASSIGN
)
2064 return gimple_assign_lhs (stmt
);
2065 else if (code
== GIMPLE_CALL
)
2066 return gimple_call_lhs (stmt
);
2072 /* Set the LHS of a statement that performs an assignment,
2073 either a GIMPLE_ASSIGN or a GIMPLE_CALL. */
2076 gimple_set_lhs (gimple stmt
, tree lhs
)
2078 enum tree_code code
= gimple_code (stmt
);
2080 if (code
== GIMPLE_ASSIGN
)
2081 gimple_assign_set_lhs (stmt
, lhs
);
2082 else if (code
== GIMPLE_CALL
)
2083 gimple_call_set_lhs (stmt
, lhs
);
2089 /* Return a deep copy of statement STMT. All the operands from STMT
2090 are reallocated and copied using unshare_expr. The DEF, USE, VDEF
2091 and VUSE operand arrays are set to empty in the new copy. */
2094 gimple_copy (gimple stmt
)
2096 enum gimple_code code
= gimple_code (stmt
);
2097 unsigned num_ops
= gimple_num_ops (stmt
);
2098 gimple copy
= gimple_alloc (code
, num_ops
);
2101 /* Shallow copy all the fields from STMT. */
2102 memcpy (copy
, stmt
, gimple_size (code
));
2104 /* If STMT has sub-statements, deep-copy them as well. */
2105 if (gimple_has_substatements (stmt
))
2110 switch (gimple_code (stmt
))
2113 new_seq
= gimple_seq_copy (gimple_bind_body (stmt
));
2114 gimple_bind_set_body (copy
, new_seq
);
2115 gimple_bind_set_vars (copy
, unshare_expr (gimple_bind_vars (stmt
)));
2116 gimple_bind_set_block (copy
, gimple_bind_block (stmt
));
2120 new_seq
= gimple_seq_copy (gimple_catch_handler (stmt
));
2121 gimple_catch_set_handler (copy
, new_seq
);
2122 t
= unshare_expr (gimple_catch_types (stmt
));
2123 gimple_catch_set_types (copy
, t
);
2126 case GIMPLE_EH_FILTER
:
2127 new_seq
= gimple_seq_copy (gimple_eh_filter_failure (stmt
));
2128 gimple_eh_filter_set_failure (copy
, new_seq
);
2129 t
= unshare_expr (gimple_eh_filter_types (stmt
));
2130 gimple_eh_filter_set_types (copy
, t
);
2134 new_seq
= gimple_seq_copy (gimple_try_eval (stmt
));
2135 gimple_try_set_eval (copy
, new_seq
);
2136 new_seq
= gimple_seq_copy (gimple_try_cleanup (stmt
));
2137 gimple_try_set_cleanup (copy
, new_seq
);
2140 case GIMPLE_OMP_FOR
:
2141 new_seq
= gimple_seq_copy (gimple_omp_for_pre_body (stmt
));
2142 gimple_omp_for_set_pre_body (copy
, new_seq
);
2143 t
= unshare_expr (gimple_omp_for_clauses (stmt
));
2144 gimple_omp_for_set_clauses (copy
, t
);
2145 copy
->gimple_omp_for
.iter
2146 = GGC_NEWVEC (struct gimple_omp_for_iter
,
2147 gimple_omp_for_collapse (stmt
));
2148 for (i
= 0; i
< gimple_omp_for_collapse (stmt
); i
++)
2150 gimple_omp_for_set_cond (copy
, i
,
2151 gimple_omp_for_cond (stmt
, i
));
2152 gimple_omp_for_set_index (copy
, i
,
2153 gimple_omp_for_index (stmt
, i
));
2154 t
= unshare_expr (gimple_omp_for_initial (stmt
, i
));
2155 gimple_omp_for_set_initial (copy
, i
, t
);
2156 t
= unshare_expr (gimple_omp_for_final (stmt
, i
));
2157 gimple_omp_for_set_final (copy
, i
, t
);
2158 t
= unshare_expr (gimple_omp_for_incr (stmt
, i
));
2159 gimple_omp_for_set_incr (copy
, i
, t
);
2163 case GIMPLE_OMP_PARALLEL
:
2164 t
= unshare_expr (gimple_omp_parallel_clauses (stmt
));
2165 gimple_omp_parallel_set_clauses (copy
, t
);
2166 t
= unshare_expr (gimple_omp_parallel_child_fn (stmt
));
2167 gimple_omp_parallel_set_child_fn (copy
, t
);
2168 t
= unshare_expr (gimple_omp_parallel_data_arg (stmt
));
2169 gimple_omp_parallel_set_data_arg (copy
, t
);
2172 case GIMPLE_OMP_TASK
:
2173 t
= unshare_expr (gimple_omp_task_clauses (stmt
));
2174 gimple_omp_task_set_clauses (copy
, t
);
2175 t
= unshare_expr (gimple_omp_task_child_fn (stmt
));
2176 gimple_omp_task_set_child_fn (copy
, t
);
2177 t
= unshare_expr (gimple_omp_task_data_arg (stmt
));
2178 gimple_omp_task_set_data_arg (copy
, t
);
2179 t
= unshare_expr (gimple_omp_task_copy_fn (stmt
));
2180 gimple_omp_task_set_copy_fn (copy
, t
);
2181 t
= unshare_expr (gimple_omp_task_arg_size (stmt
));
2182 gimple_omp_task_set_arg_size (copy
, t
);
2183 t
= unshare_expr (gimple_omp_task_arg_align (stmt
));
2184 gimple_omp_task_set_arg_align (copy
, t
);
2187 case GIMPLE_OMP_CRITICAL
:
2188 t
= unshare_expr (gimple_omp_critical_name (stmt
));
2189 gimple_omp_critical_set_name (copy
, t
);
2192 case GIMPLE_OMP_SECTIONS
:
2193 t
= unshare_expr (gimple_omp_sections_clauses (stmt
));
2194 gimple_omp_sections_set_clauses (copy
, t
);
2195 t
= unshare_expr (gimple_omp_sections_control (stmt
));
2196 gimple_omp_sections_set_control (copy
, t
);
2199 case GIMPLE_OMP_SINGLE
:
2200 case GIMPLE_OMP_SECTION
:
2201 case GIMPLE_OMP_MASTER
:
2202 case GIMPLE_OMP_ORDERED
:
2204 new_seq
= gimple_seq_copy (gimple_omp_body (stmt
));
2205 gimple_omp_set_body (copy
, new_seq
);
2208 case GIMPLE_WITH_CLEANUP_EXPR
:
2209 new_seq
= gimple_seq_copy (gimple_wce_cleanup (stmt
));
2210 gimple_wce_set_cleanup (copy
, new_seq
);
2218 /* Make copy of operands. */
2221 for (i
= 0; i
< num_ops
; i
++)
2222 gimple_set_op (copy
, i
, unshare_expr (gimple_op (stmt
, i
)));
2224 /* Clear out SSA operand vectors on COPY. Note that we cannot
2225 call the API functions for setting addresses_taken, stores
2226 and loads. These functions free the previous values, and we
2227 cannot do that on COPY as it will affect the original
2229 if (gimple_has_ops (stmt
))
2231 gimple_set_def_ops (copy
, NULL
);
2232 gimple_set_use_ops (copy
, NULL
);
2233 copy
->gsops
.opbase
.addresses_taken
= NULL
;
2236 if (gimple_has_mem_ops (stmt
))
2238 gimple_set_vdef_ops (copy
, NULL
);
2239 gimple_set_vuse_ops (copy
, NULL
);
2240 copy
->gsmem
.membase
.stores
= NULL
;
2241 copy
->gsmem
.membase
.loads
= NULL
;
2251 /* Set the MODIFIED flag to MODIFIEDP, iff the gimple statement G has
2252 a MODIFIED field. */
2255 gimple_set_modified (gimple s
, bool modifiedp
)
2257 if (gimple_has_ops (s
))
2259 s
->gsbase
.modified
= (unsigned) modifiedp
;
2263 && is_gimple_call (s
)
2264 && gimple_call_noreturn_p (s
))
2265 VEC_safe_push (gimple
, gc
, MODIFIED_NORETURN_CALLS (cfun
), s
);
2270 /* Return true if statement S has side-effects. We consider a
2271 statement to have side effects if:
2273 - It is a GIMPLE_CALL not marked with ECF_PURE or ECF_CONST.
2274 - Any of its operands are marked TREE_THIS_VOLATILE or TREE_SIDE_EFFECTS. */
2277 gimple_has_side_effects (const_gimple s
)
2281 /* We don't have to scan the arguments to check for
2282 volatile arguments, though, at present, we still
2283 do a scan to check for TREE_SIDE_EFFECTS. */
2284 if (gimple_has_volatile_ops (s
))
2287 if (is_gimple_call (s
))
2289 unsigned nargs
= gimple_call_num_args (s
);
2291 if (!(gimple_call_flags (s
) & (ECF_CONST
| ECF_PURE
)))
2293 else if (gimple_call_flags (s
) & ECF_LOOPING_CONST_OR_PURE
)
2294 /* An infinite loop is considered a side effect. */
2297 if (gimple_call_lhs (s
)
2298 && TREE_SIDE_EFFECTS (gimple_call_lhs (s
)))
2300 gcc_assert (gimple_has_volatile_ops (s
));
2304 if (TREE_SIDE_EFFECTS (gimple_call_fn (s
)))
2307 for (i
= 0; i
< nargs
; i
++)
2308 if (TREE_SIDE_EFFECTS (gimple_call_arg (s
, i
)))
2310 gcc_assert (gimple_has_volatile_ops (s
));
2318 for (i
= 0; i
< gimple_num_ops (s
); i
++)
2319 if (TREE_SIDE_EFFECTS (gimple_op (s
, i
)))
2321 gcc_assert (gimple_has_volatile_ops (s
));
2329 /* Return true if the RHS of statement S has side effects.
2330 We may use it to determine if it is admissable to replace
2331 an assignment or call with a copy of a previously-computed
2332 value. In such cases, side-effects due the the LHS are
2336 gimple_rhs_has_side_effects (const_gimple s
)
2340 if (is_gimple_call (s
))
2342 unsigned nargs
= gimple_call_num_args (s
);
2344 if (!(gimple_call_flags (s
) & (ECF_CONST
| ECF_PURE
)))
2347 /* We cannot use gimple_has_volatile_ops here,
2348 because we must ignore a volatile LHS. */
2349 if (TREE_SIDE_EFFECTS (gimple_call_fn (s
))
2350 || TREE_THIS_VOLATILE (gimple_call_fn (s
)))
2352 gcc_assert (gimple_has_volatile_ops (s
));
2356 for (i
= 0; i
< nargs
; i
++)
2357 if (TREE_SIDE_EFFECTS (gimple_call_arg (s
, i
))
2358 || TREE_THIS_VOLATILE (gimple_call_arg (s
, i
)))
2363 else if (is_gimple_assign (s
))
2365 /* Skip the first operand, the LHS. */
2366 for (i
= 1; i
< gimple_num_ops (s
); i
++)
2367 if (TREE_SIDE_EFFECTS (gimple_op (s
, i
))
2368 || TREE_THIS_VOLATILE (gimple_op (s
, i
)))
2370 gcc_assert (gimple_has_volatile_ops (s
));
2376 /* For statements without an LHS, examine all arguments. */
2377 for (i
= 0; i
< gimple_num_ops (s
); i
++)
2378 if (TREE_SIDE_EFFECTS (gimple_op (s
, i
))
2379 || TREE_THIS_VOLATILE (gimple_op (s
, i
)))
2381 gcc_assert (gimple_has_volatile_ops (s
));
2390 /* Helper for gimple_could_trap_p and gimple_assign_rhs_could_trap_p.
2391 Return true if S can trap. If INCLUDE_LHS is true and S is a
2392 GIMPLE_ASSIGN, the LHS of the assignment is also checked.
2393 Otherwise, only the RHS of the assignment is checked. */
2396 gimple_could_trap_p_1 (gimple s
, bool include_lhs
)
2399 tree t
, div
= NULL_TREE
;
2402 start
= (is_gimple_assign (s
) && !include_lhs
) ? 1 : 0;
2404 for (i
= start
; i
< gimple_num_ops (s
); i
++)
2405 if (tree_could_trap_p (gimple_op (s
, i
)))
2408 switch (gimple_code (s
))
2411 return gimple_asm_volatile_p (s
);
2414 t
= gimple_call_fndecl (s
);
2415 /* Assume that calls to weak functions may trap. */
2416 if (!t
|| !DECL_P (t
) || DECL_WEAK (t
))
2421 t
= gimple_expr_type (s
);
2422 op
= gimple_assign_rhs_code (s
);
2423 if (get_gimple_rhs_class (op
) == GIMPLE_BINARY_RHS
)
2424 div
= gimple_assign_rhs2 (s
);
2425 return (operation_could_trap_p (op
, FLOAT_TYPE_P (t
),
2426 (INTEGRAL_TYPE_P (t
)
2427 && TYPE_OVERFLOW_TRAPS (t
)),
2439 /* Return true if statement S can trap. */
2442 gimple_could_trap_p (gimple s
)
2444 return gimple_could_trap_p_1 (s
, true);
2448 /* Return true if RHS of a GIMPLE_ASSIGN S can trap. */
2451 gimple_assign_rhs_could_trap_p (gimple s
)
2453 gcc_assert (is_gimple_assign (s
));
2454 return gimple_could_trap_p_1 (s
, false);
2458 /* Print debugging information for gimple stmts generated. */
2461 dump_gimple_statistics (void)
2463 #ifdef GATHER_STATISTICS
2464 int i
, total_tuples
= 0, total_bytes
= 0;
2466 fprintf (stderr
, "\nGIMPLE statements\n");
2467 fprintf (stderr
, "Kind Stmts Bytes\n");
2468 fprintf (stderr
, "---------------------------------------\n");
2469 for (i
= 0; i
< (int) gimple_alloc_kind_all
; ++i
)
2471 fprintf (stderr
, "%-20s %7d %10d\n", gimple_alloc_kind_names
[i
],
2472 gimple_alloc_counts
[i
], gimple_alloc_sizes
[i
]);
2473 total_tuples
+= gimple_alloc_counts
[i
];
2474 total_bytes
+= gimple_alloc_sizes
[i
];
2476 fprintf (stderr
, "---------------------------------------\n");
2477 fprintf (stderr
, "%-20s %7d %10d\n", "Total", total_tuples
, total_bytes
);
2478 fprintf (stderr
, "---------------------------------------\n");
2480 fprintf (stderr
, "No gimple statistics\n");
2485 /* Deep copy SYMS into the set of symbols stored by STMT. If SYMS is
2486 NULL or empty, the storage used is freed up. */
2489 gimple_set_stored_syms (gimple stmt
, bitmap syms
, bitmap_obstack
*obs
)
2491 gcc_assert (gimple_has_mem_ops (stmt
));
2493 if (syms
== NULL
|| bitmap_empty_p (syms
))
2494 BITMAP_FREE (stmt
->gsmem
.membase
.stores
);
2497 if (stmt
->gsmem
.membase
.stores
== NULL
)
2498 stmt
->gsmem
.membase
.stores
= BITMAP_ALLOC (obs
);
2500 bitmap_copy (stmt
->gsmem
.membase
.stores
, syms
);
2505 /* Deep copy SYMS into the set of symbols loaded by STMT. If SYMS is
2506 NULL or empty, the storage used is freed up. */
2509 gimple_set_loaded_syms (gimple stmt
, bitmap syms
, bitmap_obstack
*obs
)
2511 gcc_assert (gimple_has_mem_ops (stmt
));
2513 if (syms
== NULL
|| bitmap_empty_p (syms
))
2514 BITMAP_FREE (stmt
->gsmem
.membase
.loads
);
2517 if (stmt
->gsmem
.membase
.loads
== NULL
)
2518 stmt
->gsmem
.membase
.loads
= BITMAP_ALLOC (obs
);
2520 bitmap_copy (stmt
->gsmem
.membase
.loads
, syms
);
2525 /* Return the number of operands needed on the RHS of a GIMPLE
2526 assignment for an expression with tree code CODE. */
2529 get_gimple_rhs_num_ops (enum tree_code code
)
2531 enum gimple_rhs_class rhs_class
= get_gimple_rhs_class (code
);
2533 if (rhs_class
== GIMPLE_UNARY_RHS
|| rhs_class
== GIMPLE_SINGLE_RHS
)
2535 else if (rhs_class
== GIMPLE_BINARY_RHS
)
2541 #define DEFTREECODE(SYM, STRING, TYPE, NARGS) \
2543 ((TYPE) == tcc_unary ? GIMPLE_UNARY_RHS \
2544 : ((TYPE) == tcc_binary \
2545 || (TYPE) == tcc_comparison) ? GIMPLE_BINARY_RHS \
2546 : ((TYPE) == tcc_constant \
2547 || (TYPE) == tcc_declaration \
2548 || (TYPE) == tcc_reference) ? GIMPLE_SINGLE_RHS \
2549 : ((SYM) == TRUTH_AND_EXPR \
2550 || (SYM) == TRUTH_OR_EXPR \
2551 || (SYM) == TRUTH_XOR_EXPR) ? GIMPLE_BINARY_RHS \
2552 : (SYM) == TRUTH_NOT_EXPR ? GIMPLE_UNARY_RHS \
2553 : ((SYM) == COND_EXPR \
2554 || (SYM) == CONSTRUCTOR \
2555 || (SYM) == OBJ_TYPE_REF \
2556 || (SYM) == ASSERT_EXPR \
2557 || (SYM) == ADDR_EXPR \
2558 || (SYM) == WITH_SIZE_EXPR \
2559 || (SYM) == EXC_PTR_EXPR \
2560 || (SYM) == SSA_NAME \
2561 || (SYM) == FILTER_EXPR \
2562 || (SYM) == POLYNOMIAL_CHREC \
2563 || (SYM) == DOT_PROD_EXPR \
2564 || (SYM) == VEC_COND_EXPR \
2565 || (SYM) == REALIGN_LOAD_EXPR) ? GIMPLE_SINGLE_RHS \
2566 : GIMPLE_INVALID_RHS),
2567 #define END_OF_BASE_TREE_CODES (unsigned char) GIMPLE_INVALID_RHS,
2569 const unsigned char gimple_rhs_class_table
[] = {
2570 #include "all-tree.def"
2574 #undef END_OF_BASE_TREE_CODES
2576 /* For the definitive definition of GIMPLE, see doc/tree-ssa.texi. */
2578 /* Validation of GIMPLE expressions. */
2580 /* Return true if OP is an acceptable tree node to be used as a GIMPLE
2584 is_gimple_operand (const_tree op
)
2586 return op
&& get_gimple_rhs_class (TREE_CODE (op
)) == GIMPLE_SINGLE_RHS
;
2590 /* Return true if T is a GIMPLE RHS for an assignment to a temporary. */
2593 is_gimple_formal_tmp_rhs (tree t
)
2595 if (is_gimple_lvalue (t
) || is_gimple_val (t
))
2598 return get_gimple_rhs_class (TREE_CODE (t
)) != GIMPLE_INVALID_RHS
;
2601 /* Returns true iff T is a valid RHS for an assignment to a renamed
2602 user -- or front-end generated artificial -- variable. */
2605 is_gimple_reg_rhs (tree t
)
2607 /* If the RHS of the MODIFY_EXPR may throw or make a nonlocal goto
2608 and the LHS is a user variable, then we need to introduce a formal
2609 temporary. This way the optimizers can determine that the user
2610 variable is only modified if evaluation of the RHS does not throw.
2612 Don't force a temp of a non-renamable type; the copy could be
2613 arbitrarily expensive. Instead we will generate a VDEF for
2616 if (is_gimple_reg_type (TREE_TYPE (t
)) && tree_could_throw_p (t
))
2619 return is_gimple_formal_tmp_rhs (t
);
2622 /* Returns true iff T is a valid RHS for an assignment to an un-renamed
2623 LHS, or for a call argument. */
2626 is_gimple_mem_rhs (tree t
)
2628 /* If we're dealing with a renamable type, either source or dest must be
2629 a renamed variable. */
2630 if (is_gimple_reg_type (TREE_TYPE (t
)))
2631 return is_gimple_val (t
);
2633 return is_gimple_formal_tmp_rhs (t
);
2636 /* Return true if T is a valid LHS for a GIMPLE assignment expression. */
2639 is_gimple_lvalue (tree t
)
2641 return (is_gimple_addressable (t
)
2642 || TREE_CODE (t
) == WITH_SIZE_EXPR
2643 /* These are complex lvalues, but don't have addresses, so they
2645 || TREE_CODE (t
) == BIT_FIELD_REF
);
2648 /* Return true if T is a GIMPLE condition. */
2651 is_gimple_condexpr (tree t
)
2653 return (is_gimple_val (t
) || (COMPARISON_CLASS_P (t
)
2654 && !tree_could_trap_p (t
)
2655 && is_gimple_val (TREE_OPERAND (t
, 0))
2656 && is_gimple_val (TREE_OPERAND (t
, 1))));
2659 /* Return true if T is something whose address can be taken. */
2662 is_gimple_addressable (tree t
)
2664 return (is_gimple_id (t
) || handled_component_p (t
) || INDIRECT_REF_P (t
));
2667 /* Return true if T is a valid gimple constant. */
2670 is_gimple_constant (const_tree t
)
2672 switch (TREE_CODE (t
))
2682 /* Vector constant constructors are gimple invariant. */
2684 if (TREE_TYPE (t
) && TREE_CODE (TREE_TYPE (t
)) == VECTOR_TYPE
)
2685 return TREE_CONSTANT (t
);
2694 /* Return true if T is a gimple address. */
2697 is_gimple_address (const_tree t
)
2701 if (TREE_CODE (t
) != ADDR_EXPR
)
2704 op
= TREE_OPERAND (t
, 0);
2705 while (handled_component_p (op
))
2707 if ((TREE_CODE (op
) == ARRAY_REF
2708 || TREE_CODE (op
) == ARRAY_RANGE_REF
)
2709 && !is_gimple_val (TREE_OPERAND (op
, 1)))
2712 op
= TREE_OPERAND (op
, 0);
2715 if (CONSTANT_CLASS_P (op
) || INDIRECT_REF_P (op
))
2718 switch (TREE_CODE (op
))
2733 /* Return true if T is a gimple invariant address. */
2736 is_gimple_invariant_address (const_tree t
)
2740 if (TREE_CODE (t
) != ADDR_EXPR
)
2743 op
= TREE_OPERAND (t
, 0);
2744 while (handled_component_p (op
))
2746 switch (TREE_CODE (op
))
2749 case ARRAY_RANGE_REF
:
2750 if (!is_gimple_constant (TREE_OPERAND (op
, 1))
2751 || TREE_OPERAND (op
, 2) != NULL_TREE
2752 || TREE_OPERAND (op
, 3) != NULL_TREE
)
2757 if (TREE_OPERAND (op
, 2) != NULL_TREE
)
2763 op
= TREE_OPERAND (op
, 0);
2766 return CONSTANT_CLASS_P (op
) || decl_address_invariant_p (op
);
2769 /* Return true if T is a GIMPLE minimal invariant. It's a restricted
2770 form of function invariant. */
2773 is_gimple_min_invariant (const_tree t
)
2775 if (TREE_CODE (t
) == ADDR_EXPR
)
2776 return is_gimple_invariant_address (t
);
2778 return is_gimple_constant (t
);
2781 /* Return true if T looks like a valid GIMPLE statement. */
2784 is_gimple_stmt (tree t
)
2786 const enum tree_code code
= TREE_CODE (t
);
2791 /* The only valid NOP_EXPR is the empty statement. */
2792 return IS_EMPTY_STMT (t
);
2796 /* These are only valid if they're void. */
2797 return TREE_TYPE (t
) == NULL
|| VOID_TYPE_P (TREE_TYPE (t
));
2803 case CASE_LABEL_EXPR
:
2804 case TRY_CATCH_EXPR
:
2805 case TRY_FINALLY_EXPR
:
2806 case EH_FILTER_EXPR
:
2808 case CHANGE_DYNAMIC_TYPE_EXPR
:
2811 case STATEMENT_LIST
:
2821 /* These are always void. */
2827 /* These are valid regardless of their type. */
2835 /* Return true if T is a variable. */
2838 is_gimple_variable (tree t
)
2840 return (TREE_CODE (t
) == VAR_DECL
2841 || TREE_CODE (t
) == PARM_DECL
2842 || TREE_CODE (t
) == RESULT_DECL
2843 || TREE_CODE (t
) == SSA_NAME
);
2846 /* Return true if T is a GIMPLE identifier (something with an address). */
2849 is_gimple_id (tree t
)
2851 return (is_gimple_variable (t
)
2852 || TREE_CODE (t
) == FUNCTION_DECL
2853 || TREE_CODE (t
) == LABEL_DECL
2854 || TREE_CODE (t
) == CONST_DECL
2855 /* Allow string constants, since they are addressable. */
2856 || TREE_CODE (t
) == STRING_CST
);
2859 /* Return true if TYPE is a suitable type for a scalar register variable. */
2862 is_gimple_reg_type (tree type
)
2864 /* In addition to aggregate types, we also exclude complex types if not
2865 optimizing because they can be subject to partial stores in GNU C by
2866 means of the __real__ and __imag__ operators and we cannot promote
2867 them to total stores (see gimplify_modify_expr_complex_part). */
2868 return !(AGGREGATE_TYPE_P (type
)
2869 || (TREE_CODE (type
) == COMPLEX_TYPE
&& !optimize
));
2873 /* Return true if T is a non-aggregate register variable. */
2876 is_gimple_reg (tree t
)
2878 if (TREE_CODE (t
) == SSA_NAME
)
2879 t
= SSA_NAME_VAR (t
);
2884 if (!is_gimple_variable (t
))
2887 if (!is_gimple_reg_type (TREE_TYPE (t
)))
2890 /* A volatile decl is not acceptable because we can't reuse it as
2891 needed. We need to copy it into a temp first. */
2892 if (TREE_THIS_VOLATILE (t
))
2895 /* We define "registers" as things that can be renamed as needed,
2896 which with our infrastructure does not apply to memory. */
2897 if (needs_to_live_in_memory (t
))
2900 /* Hard register variables are an interesting case. For those that
2901 are call-clobbered, we don't know where all the calls are, since
2902 we don't (want to) take into account which operations will turn
2903 into libcalls at the rtl level. For those that are call-saved,
2904 we don't currently model the fact that calls may in fact change
2905 global hard registers, nor do we examine ASM_CLOBBERS at the tree
2906 level, and so miss variable changes that might imply. All around,
2907 it seems safest to not do too much optimization with these at the
2908 tree level at all. We'll have to rely on the rtl optimizers to
2909 clean this up, as there we've got all the appropriate bits exposed. */
2910 if (TREE_CODE (t
) == VAR_DECL
&& DECL_HARD_REGISTER (t
))
2913 /* Complex and vector values must have been put into SSA-like form.
2914 That is, no assignments to the individual components. */
2915 if (TREE_CODE (TREE_TYPE (t
)) == COMPLEX_TYPE
2916 || TREE_CODE (TREE_TYPE (t
)) == VECTOR_TYPE
)
2917 return DECL_GIMPLE_REG_P (t
);
2923 /* Returns true if T is a GIMPLE formal temporary variable. */
2926 is_gimple_formal_tmp_var (tree t
)
2928 if (TREE_CODE (t
) == SSA_NAME
)
2931 return TREE_CODE (t
) == VAR_DECL
&& DECL_GIMPLE_FORMAL_TEMP_P (t
);
2934 /* Returns true if T is a GIMPLE formal temporary register variable. */
2937 is_gimple_formal_tmp_reg (tree t
)
2939 /* The intent of this is to get hold of a value that won't change.
2940 An SSA_NAME qualifies no matter if its of a user variable or not. */
2941 if (TREE_CODE (t
) == SSA_NAME
)
2944 /* We don't know the lifetime characteristics of user variables. */
2945 if (!is_gimple_formal_tmp_var (t
))
2948 /* Finally, it must be capable of being placed in a register. */
2949 return is_gimple_reg (t
);
2952 /* Return true if T is a GIMPLE variable whose address is not needed. */
2955 is_gimple_non_addressable (tree t
)
2957 if (TREE_CODE (t
) == SSA_NAME
)
2958 t
= SSA_NAME_VAR (t
);
2960 return (is_gimple_variable (t
) && ! needs_to_live_in_memory (t
));
2963 /* Return true if T is a GIMPLE rvalue, i.e. an identifier or a constant. */
2966 is_gimple_val (tree t
)
2968 /* Make loads from volatiles and memory vars explicit. */
2969 if (is_gimple_variable (t
)
2970 && is_gimple_reg_type (TREE_TYPE (t
))
2971 && !is_gimple_reg (t
))
2974 /* FIXME make these decls. That can happen only when we expose the
2975 entire landing-pad construct at the tree level. */
2976 if (TREE_CODE (t
) == EXC_PTR_EXPR
|| TREE_CODE (t
) == FILTER_EXPR
)
2979 return (is_gimple_variable (t
) || is_gimple_min_invariant (t
));
2982 /* Similarly, but accept hard registers as inputs to asm statements. */
2985 is_gimple_asm_val (tree t
)
2987 if (TREE_CODE (t
) == VAR_DECL
&& DECL_HARD_REGISTER (t
))
2990 return is_gimple_val (t
);
2993 /* Return true if T is a GIMPLE minimal lvalue. */
2996 is_gimple_min_lval (tree t
)
2998 return (is_gimple_id (t
) || TREE_CODE (t
) == INDIRECT_REF
);
3001 /* Return true if T is a typecast operation. */
3004 is_gimple_cast (tree t
)
3006 return (CONVERT_EXPR_P (t
)
3007 || TREE_CODE (t
) == FIX_TRUNC_EXPR
);
3010 /* Return true if T is a valid function operand of a CALL_EXPR. */
3013 is_gimple_call_addr (tree t
)
3015 return (TREE_CODE (t
) == OBJ_TYPE_REF
|| is_gimple_val (t
));
3018 /* If T makes a function call, return the corresponding CALL_EXPR operand.
3019 Otherwise, return NULL_TREE. */
3022 get_call_expr_in (tree t
)
3024 if (TREE_CODE (t
) == MODIFY_EXPR
)
3025 t
= TREE_OPERAND (t
, 1);
3026 if (TREE_CODE (t
) == WITH_SIZE_EXPR
)
3027 t
= TREE_OPERAND (t
, 0);
3028 if (TREE_CODE (t
) == CALL_EXPR
)
3034 /* Given a memory reference expression T, return its base address.
3035 The base address of a memory reference expression is the main
3036 object being referenced. For instance, the base address for
3037 'array[i].fld[j]' is 'array'. You can think of this as stripping
3038 away the offset part from a memory address.
3040 This function calls handled_component_p to strip away all the inner
3041 parts of the memory reference until it reaches the base object. */
3044 get_base_address (tree t
)
3046 while (handled_component_p (t
))
3047 t
= TREE_OPERAND (t
, 0);
3050 || TREE_CODE (t
) == STRING_CST
3051 || TREE_CODE (t
) == CONSTRUCTOR
3052 || INDIRECT_REF_P (t
))
3059 recalculate_side_effects (tree t
)
3061 enum tree_code code
= TREE_CODE (t
);
3062 int len
= TREE_OPERAND_LENGTH (t
);
3065 switch (TREE_CODE_CLASS (code
))
3067 case tcc_expression
:
3073 case PREDECREMENT_EXPR
:
3074 case PREINCREMENT_EXPR
:
3075 case POSTDECREMENT_EXPR
:
3076 case POSTINCREMENT_EXPR
:
3077 /* All of these have side-effects, no matter what their
3086 case tcc_comparison
: /* a comparison expression */
3087 case tcc_unary
: /* a unary arithmetic expression */
3088 case tcc_binary
: /* a binary arithmetic expression */
3089 case tcc_reference
: /* a reference */
3090 case tcc_vl_exp
: /* a function call */
3091 TREE_SIDE_EFFECTS (t
) = TREE_THIS_VOLATILE (t
);
3092 for (i
= 0; i
< len
; ++i
)
3094 tree op
= TREE_OPERAND (t
, i
);
3095 if (op
&& TREE_SIDE_EFFECTS (op
))
3096 TREE_SIDE_EFFECTS (t
) = 1;
3101 /* Can never be used with non-expressions. */
3106 /* Canonicalize a tree T for use in a COND_EXPR as conditional. Returns
3107 a canonicalized tree that is valid for a COND_EXPR or NULL_TREE, if
3108 we failed to create one. */
3111 canonicalize_cond_expr_cond (tree t
)
3113 /* For (bool)x use x != 0. */
3114 if (TREE_CODE (t
) == NOP_EXPR
3115 && TREE_TYPE (t
) == boolean_type_node
)
3117 tree top0
= TREE_OPERAND (t
, 0);
3118 t
= build2 (NE_EXPR
, TREE_TYPE (t
),
3119 top0
, build_int_cst (TREE_TYPE (top0
), 0));
3121 /* For !x use x == 0. */
3122 else if (TREE_CODE (t
) == TRUTH_NOT_EXPR
)
3124 tree top0
= TREE_OPERAND (t
, 0);
3125 t
= build2 (EQ_EXPR
, TREE_TYPE (t
),
3126 top0
, build_int_cst (TREE_TYPE (top0
), 0));
3128 /* For cmp ? 1 : 0 use cmp. */
3129 else if (TREE_CODE (t
) == COND_EXPR
3130 && COMPARISON_CLASS_P (TREE_OPERAND (t
, 0))
3131 && integer_onep (TREE_OPERAND (t
, 1))
3132 && integer_zerop (TREE_OPERAND (t
, 2)))
3134 tree top0
= TREE_OPERAND (t
, 0);
3135 t
= build2 (TREE_CODE (top0
), TREE_TYPE (t
),
3136 TREE_OPERAND (top0
, 0), TREE_OPERAND (top0
, 1));
3139 if (is_gimple_condexpr (t
))
3145 #include "gt-gimple.h"