1 /* Gimple IR definitions.
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/>. */
25 #include "pointer-set.h"
29 #include "hard-reg-set.h"
30 #include "basic-block.h"
31 #include "tree-ssa-operands.h"
34 DEF_VEC_ALLOC_P(gimple
,heap
);
35 DEF_VEC_ALLOC_P(gimple
,gc
);
37 DEF_VEC_P(gimple_seq
);
38 DEF_VEC_ALLOC_P(gimple_seq
,gc
);
39 DEF_VEC_ALLOC_P(gimple_seq
,heap
);
42 #define DEFGSCODE(SYM, STRING, STRUCT) SYM,
45 LAST_AND_UNUSED_GIMPLE_CODE
48 extern const char *const gimple_code_name
[];
49 extern const unsigned char gimple_rhs_class_table
[];
51 /* Error out if a gimple tuple is addressed incorrectly. */
52 #if defined ENABLE_GIMPLE_CHECKING
53 extern void gimple_check_failed (const_gimple
, const char *, int, \
54 const char *, enum gimple_code
, \
55 enum tree_code
) ATTRIBUTE_NORETURN
;
56 extern void gimple_range_check_failed (const_gimple
, const char *, int, \
57 const char *, enum gimple_code
, \
58 enum gimple_code
) ATTRIBUTE_NORETURN
;
60 #define GIMPLE_CHECK(GS, CODE) \
62 const_gimple __gs = (GS); \
63 if (gimple_code (__gs) != (CODE)) \
64 gimple_check_failed (__gs, __FILE__, __LINE__, __FUNCTION__, \
67 #else /* not ENABLE_GIMPLE_CHECKING */
68 #define GIMPLE_CHECK(GS, CODE) (void)0
71 /* Class of GIMPLE expressions suitable for the RHS of assignments. See
72 get_gimple_rhs_class. */
75 GIMPLE_INVALID_RHS
, /* The expression cannot be used on the RHS. */
76 GIMPLE_BINARY_RHS
, /* The expression is a binary operation. */
77 GIMPLE_UNARY_RHS
, /* The expression is a unary operation. */
78 GIMPLE_SINGLE_RHS
/* The expression is a single object (an SSA
79 name, a _DECL, a _REF, etc. */
82 /* Specific flags for individual GIMPLE statements. These flags are
83 always stored in gimple_statement_base.subcode and they may only be
84 defined for statement codes that do not use sub-codes.
86 Values for the masks can overlap as long as the overlapping values
87 are never used in the same statement class.
89 The maximum mask value that can be defined is 1 << 15 (i.e., each
90 statement code can hold up to 16 bitflags).
92 Keep this list sorted. */
94 GF_ASM_INPUT
= 1 << 0,
95 GF_ASM_VOLATILE
= 1 << 1,
96 GF_CALL_CANNOT_INLINE
= 1 << 0,
97 GF_CALL_FROM_THUNK
= 1 << 1,
98 GF_CALL_RETURN_SLOT_OPT
= 1 << 2,
99 GF_CALL_TAILCALL
= 1 << 3,
100 GF_CALL_VA_ARG_PACK
= 1 << 4,
101 GF_OMP_PARALLEL_COMBINED
= 1 << 0,
103 /* True on an GIMPLE_OMP_RETURN statement if the return does not require
104 a thread synchronization via some sort of barrier. The exact barrier
105 that would otherwise be emitted is dependent on the OMP statement with
106 which this return is associated. */
107 GF_OMP_RETURN_NOWAIT
= 1 << 0,
109 GF_OMP_SECTION_LAST
= 1 << 0,
110 GF_PREDICT_TAKEN
= 1 << 15
113 /* Masks for selecting a pass local flag (PLF) to work on. These
114 masks are used by gimple_set_plf and gimple_plf. */
120 /* A node in a gimple_seq_d. */
121 struct gimple_seq_node_d
GTY((chain_next ("%h.next"), chain_prev ("%h.prev")))
124 struct gimple_seq_node_d
*prev
;
125 struct gimple_seq_node_d
*next
;
128 /* A double-linked sequence of gimple statements. */
129 struct gimple_seq_d
GTY ((chain_next ("%h.next_free")))
131 /* First and last statements in the sequence. */
132 gimple_seq_node first
;
133 gimple_seq_node last
;
135 /* Sequences are created/destroyed frequently. To minimize
136 allocation activity, deallocated sequences are kept in a pool of
137 available sequences. This is the pointer to the next free
138 sequence in the pool. */
139 gimple_seq next_free
;
143 /* Return the first node in GIMPLE sequence S. */
145 static inline gimple_seq_node
146 gimple_seq_first (const_gimple_seq s
)
148 return s
? s
->first
: NULL
;
152 /* Return the first statement in GIMPLE sequence S. */
155 gimple_seq_first_stmt (const_gimple_seq s
)
157 gimple_seq_node n
= gimple_seq_first (s
);
158 return (n
) ? n
->stmt
: NULL
;
162 /* Return the last node in GIMPLE sequence S. */
164 static inline gimple_seq_node
165 gimple_seq_last (const_gimple_seq s
)
167 return s
? s
->last
: NULL
;
171 /* Return the last statement in GIMPLE sequence S. */
174 gimple_seq_last_stmt (const_gimple_seq s
)
176 gimple_seq_node n
= gimple_seq_last (s
);
177 return (n
) ? n
->stmt
: NULL
;
181 /* Set the last node in GIMPLE sequence S to LAST. */
184 gimple_seq_set_last (gimple_seq s
, gimple_seq_node last
)
190 /* Set the first node in GIMPLE sequence S to FIRST. */
193 gimple_seq_set_first (gimple_seq s
, gimple_seq_node first
)
199 /* Return true if GIMPLE sequence S is empty. */
202 gimple_seq_empty_p (const_gimple_seq s
)
204 return s
== NULL
|| s
->first
== NULL
;
208 void gimple_seq_add_stmt (gimple_seq
*, gimple
);
210 /* Allocate a new sequence and initialize its first element with STMT. */
212 static inline gimple_seq
213 gimple_seq_alloc_with_stmt (gimple stmt
)
215 gimple_seq seq
= NULL
;
216 gimple_seq_add_stmt (&seq
, stmt
);
221 /* Returns the sequence of statements in BB. */
223 static inline gimple_seq
224 bb_seq (const_basic_block bb
)
226 return (!(bb
->flags
& BB_RTL
) && bb
->il
.gimple
) ? bb
->il
.gimple
->seq
: NULL
;
230 /* Sets the sequence of statements in BB to SEQ. */
233 set_bb_seq (basic_block bb
, gimple_seq seq
)
235 gcc_assert (!(bb
->flags
& BB_RTL
));
236 bb
->il
.gimple
->seq
= seq
;
239 /* Iterator object for GIMPLE statement sequences. */
243 /* Sequence node holding the current statement. */
246 /* Sequence and basic block holding the statement. These fields
247 are necessary to handle edge cases such as when statement is
248 added to an empty basic block or when the last statement of a
249 block/sequence is removed. */
252 } gimple_stmt_iterator
;
255 /* Data structure definitions for GIMPLE tuples. NOTE: word markers
256 are for 64 bit hosts. */
258 struct gimple_statement_base
GTY(())
261 Main identifying code for a tuple. */
262 ENUM_BITFIELD(gimple_code
) code
: 8;
264 /* Nonzero if a warning should not be emitted on this tuple. */
265 unsigned int no_warning
: 1;
267 /* Nonzero if this tuple has been visited. Passes are responsible
268 for clearing this bit before using it. */
269 unsigned int visited
: 1;
271 /* Nonzero if this tuple represents a non-temporal move. */
272 unsigned int nontemporal_move
: 1;
274 /* Pass local flags. These flags are free for any pass to use as
275 they see fit. Passes should not assume that these flags contain
276 any useful value when the pass starts. Any initial state that
277 the pass requires should be set on entry to the pass. See
278 gimple_set_plf and gimple_plf for usage. */
279 unsigned int plf
: 2;
281 /* Nonzero if this statement has been modified and needs to have its
282 operands rescanned. */
283 unsigned modified
: 1;
285 /* Nonzero if this statement contains volatile operands. */
286 unsigned has_volatile_ops
: 1;
288 /* Nonzero if this statement contains memory refernces. */
289 unsigned references_memory_p
: 1;
291 /* The SUBCODE field can be used for tuple-specific flags for tuples
292 that do not require subcodes. Note that SUBCODE should be at
293 least as wide as tree codes, as several tuples store tree codes
295 unsigned int subcode
: 16;
297 /* UID of this statement. */
301 Locus information for debug info. */
304 /* Number of operands in this tuple. */
308 Basic block holding this statement. */
309 struct basic_block_def
*bb
;
312 Lexical block holding this statement. */
317 /* Base structure for tuples with operands. */
319 struct gimple_statement_with_ops_base
GTY(())
322 struct gimple_statement_base gsbase
;
325 Symbols whose addresses are taken by this statement (i.e., they
326 appear inside ADDR_EXPR nodes). */
327 bitmap
GTY((skip (""))) addresses_taken
;
330 SSA operand vectors. NOTE: It should be possible to
331 amalgamate these vectors with the operand vector OP. However,
332 the SSA operand vectors are organized differently and contain
333 more information (like immediate use chaining). */
334 struct def_optype_d
GTY((skip (""))) *def_ops
;
335 struct use_optype_d
GTY((skip (""))) *use_ops
;
339 /* Statements that take register operands. */
341 struct gimple_statement_with_ops
GTY(())
344 struct gimple_statement_with_ops_base opbase
;
347 Operand vector. NOTE! This must always be the last field
348 of this structure. In particular, this means that this
349 structure cannot be embedded inside another one. */
350 tree
GTY((length ("%h.opbase.gsbase.num_ops"))) op
[1];
354 /* Base for statements that take both memory and register operands. */
356 struct gimple_statement_with_memory_ops_base
GTY(())
359 struct gimple_statement_with_ops_base opbase
;
362 Vectors for virtual operands. */
363 struct voptype_d
GTY((skip (""))) *vdef_ops
;
364 struct voptype_d
GTY((skip (""))) *vuse_ops
;
367 Symbols stored/loaded by this statement. */
368 bitmap
GTY((skip (""))) stores
;
369 bitmap
GTY((skip (""))) loads
;
373 /* Statements that take both memory and register operands. */
375 struct gimple_statement_with_memory_ops
GTY(())
378 struct gimple_statement_with_memory_ops_base membase
;
381 Operand vector. NOTE! This must always be the last field
382 of this structure. In particular, this means that this
383 structure cannot be embedded inside another one. */
384 tree
GTY((length ("%h.membase.opbase.gsbase.num_ops"))) op
[1];
388 /* OpenMP statements (#pragma omp). */
390 struct gimple_statement_omp
GTY(())
393 struct gimple_statement_base gsbase
;
402 struct gimple_statement_bind
GTY(())
405 struct gimple_statement_base gsbase
;
408 Variables declared in this scope. */
412 This is different than the BLOCK field in gimple_statement_base,
413 which is analogous to TREE_BLOCK (i.e., the lexical block holding
414 this statement). This field is the equivalent of BIND_EXPR_BLOCK
415 in tree land (i.e., the lexical scope defined by this bind). See
426 struct gimple_statement_catch
GTY(())
429 struct gimple_statement_base gsbase
;
439 /* GIMPLE_EH_FILTER */
441 struct gimple_statement_eh_filter
GTY(())
444 struct gimple_statement_base gsbase
;
446 /* Subcode: EH_FILTER_MUST_NOT_THROW. A boolean flag analogous to
447 the tree counterpart. */
461 struct gimple_statement_phi
GTY(())
464 struct gimple_statement_base gsbase
;
474 struct phi_arg_d
GTY ((length ("%h.nargs"))) args
[1];
480 struct gimple_statement_resx
GTY(())
483 struct gimple_statement_base gsbase
;
486 Exception region number. */
493 struct gimple_statement_try
GTY(())
496 struct gimple_statement_base gsbase
;
499 Expression to evaluate. */
503 Cleanup expression. */
507 /* Kind of GIMPLE_TRY statements. */
508 enum gimple_try_flags
511 GIMPLE_TRY_CATCH
= 1 << 0,
514 GIMPLE_TRY_FINALLY
= 1 << 1,
515 GIMPLE_TRY_KIND
= GIMPLE_TRY_CATCH
| GIMPLE_TRY_FINALLY
,
517 /* Analogous to TRY_CATCH_IS_CLEANUP. */
518 GIMPLE_TRY_CATCH_IS_CLEANUP
= 1 << 2
521 /* GIMPLE_WITH_CLEANUP_EXPR */
523 struct gimple_statement_wce
GTY(())
526 struct gimple_statement_base gsbase
;
528 /* Subcode: CLEANUP_EH_ONLY. True if the cleanup should only be
529 executed if an exception is thrown, not on normal exit of its
530 scope. This flag is analogous to the CLEANUP_EH_ONLY flag
534 Cleanup expression. */
541 struct gimple_statement_asm
GTY(())
544 struct gimple_statement_with_memory_ops_base membase
;
547 __asm__ statement. */
551 Number of inputs, outputs and clobbers. */
557 Operand vector. NOTE! This must always be the last field
558 of this structure. In particular, this means that this
559 structure cannot be embedded inside another one. */
560 tree
GTY((length ("%h.membase.opbase.gsbase.num_ops"))) op
[1];
563 /* GIMPLE_OMP_CRITICAL */
565 struct gimple_statement_omp_critical
GTY(())
568 struct gimple_statement_omp omp
;
571 Critical section name. */
576 struct gimple_omp_for_iter
GTY(())
578 /* Condition code. */
581 /* Index variable. */
596 struct gimple_statement_omp_for
GTY(())
599 struct gimple_statement_omp omp
;
605 Number of elements in iter array. */
609 struct gimple_omp_for_iter
* GTY((length ("%h.collapse"))) iter
;
612 Pre-body evaluated before the loop body begins. */
617 /* GIMPLE_OMP_PARALLEL */
619 struct gimple_statement_omp_parallel
GTY(())
622 struct gimple_statement_omp omp
;
629 Child function holding the body of the parallel region. */
633 Shared data argument. */
638 /* GIMPLE_OMP_TASK */
640 struct gimple_statement_omp_task
GTY(())
643 struct gimple_statement_omp_parallel par
;
646 Child function holding firstprivate initialization if needed. */
650 Size and alignment in bytes of the argument data block. */
656 /* GIMPLE_OMP_SECTION */
657 /* Uses struct gimple_statement_omp. */
660 /* GIMPLE_OMP_SECTIONS */
662 struct gimple_statement_omp_sections
GTY(())
665 struct gimple_statement_omp omp
;
671 The control variable used for deciding which of the sections to
676 /* GIMPLE_OMP_CONTINUE.
678 Note: This does not inherit from gimple_statement_omp, because we
679 do not need the body field. */
681 struct gimple_statement_omp_continue
GTY(())
684 struct gimple_statement_base gsbase
;
693 /* GIMPLE_OMP_SINGLE */
695 struct gimple_statement_omp_single
GTY(())
698 struct gimple_statement_omp omp
;
705 /* GIMPLE_OMP_ATOMIC_LOAD.
706 Note: This is based on gimple_statement_base, not g_s_omp, because g_s_omp
707 contains a sequence, which we don't need here. */
709 struct gimple_statement_omp_atomic_load
GTY(())
712 struct gimple_statement_base gsbase
;
718 /* GIMPLE_OMP_ATOMIC_STORE.
719 See note on GIMPLE_OMP_ATOMIC_LOAD. */
721 struct gimple_statement_omp_atomic_store
GTY(())
724 struct gimple_statement_base gsbase
;
730 enum gimple_statement_structure_enum
{
731 #define DEFGSSTRUCT(SYM, STRING) SYM,
732 #include "gsstruct.def"
738 /* Define the overall contents of a gimple tuple. It may be any of the
739 structures declared above for various types of tuples. */
741 union gimple_statement_d
GTY ((desc ("gimple_statement_structure (&%h)")))
743 struct gimple_statement_base
GTY ((tag ("GSS_BASE"))) gsbase
;
744 struct gimple_statement_with_ops
GTY ((tag ("GSS_WITH_OPS"))) gsops
;
745 struct gimple_statement_with_memory_ops
GTY ((tag ("GSS_WITH_MEM_OPS"))) gsmem
;
746 struct gimple_statement_omp
GTY ((tag ("GSS_OMP"))) omp
;
747 struct gimple_statement_bind
GTY ((tag ("GSS_BIND"))) gimple_bind
;
748 struct gimple_statement_catch
GTY ((tag ("GSS_CATCH"))) gimple_catch
;
749 struct gimple_statement_eh_filter
GTY ((tag ("GSS_EH_FILTER"))) gimple_eh_filter
;
750 struct gimple_statement_phi
GTY ((tag ("GSS_PHI"))) gimple_phi
;
751 struct gimple_statement_resx
GTY ((tag ("GSS_RESX"))) gimple_resx
;
752 struct gimple_statement_try
GTY ((tag ("GSS_TRY"))) gimple_try
;
753 struct gimple_statement_wce
GTY ((tag ("GSS_WCE"))) gimple_wce
;
754 struct gimple_statement_asm
GTY ((tag ("GSS_ASM"))) gimple_asm
;
755 struct gimple_statement_omp_critical
GTY ((tag ("GSS_OMP_CRITICAL"))) gimple_omp_critical
;
756 struct gimple_statement_omp_for
GTY ((tag ("GSS_OMP_FOR"))) gimple_omp_for
;
757 struct gimple_statement_omp_parallel
GTY ((tag ("GSS_OMP_PARALLEL"))) gimple_omp_parallel
;
758 struct gimple_statement_omp_task
GTY ((tag ("GSS_OMP_TASK"))) gimple_omp_task
;
759 struct gimple_statement_omp_sections
GTY ((tag ("GSS_OMP_SECTIONS"))) gimple_omp_sections
;
760 struct gimple_statement_omp_single
GTY ((tag ("GSS_OMP_SINGLE"))) gimple_omp_single
;
761 struct gimple_statement_omp_continue
GTY ((tag ("GSS_OMP_CONTINUE"))) gimple_omp_continue
;
762 struct gimple_statement_omp_atomic_load
GTY ((tag ("GSS_OMP_ATOMIC_LOAD"))) gimple_omp_atomic_load
;
763 struct gimple_statement_omp_atomic_store
GTY ((tag ("GSS_OMP_ATOMIC_STORE"))) gimple_omp_atomic_store
;
767 gimple
gimple_build_return (tree
);
769 gimple
gimple_build_assign_stat (tree
, tree MEM_STAT_DECL
);
770 #define gimple_build_assign(l,r) gimple_build_assign_stat (l, r MEM_STAT_INFO)
772 void extract_ops_from_tree (tree
, enum tree_code
*, tree
*, tree
*);
774 gimple
gimple_build_assign_with_ops_stat (enum tree_code
, tree
, tree
,
776 #define gimple_build_assign_with_ops(c,o1,o2,o3) \
777 gimple_build_assign_with_ops_stat (c, o1, o2, o3 MEM_STAT_INFO)
779 gimple
gimple_build_call_vec (tree
, VEC(tree
, heap
) *);
780 gimple
gimple_build_call (tree
, unsigned, ...);
781 gimple
gimple_build_call_from_tree (tree
);
782 gimple
gimplify_assign (tree
, tree
, gimple_seq
*);
783 gimple
gimple_build_cond (enum tree_code
, tree
, tree
, tree
, tree
);
784 gimple
gimple_build_label (tree label
);
785 gimple
gimple_build_goto (tree dest
);
786 gimple
gimple_build_nop (void);
787 gimple
gimple_build_bind (tree
, gimple_seq
, tree
);
788 gimple
gimple_build_asm (const char *, unsigned, unsigned, unsigned, ...);
789 gimple
gimple_build_asm_vec (const char *, VEC(tree
,gc
) *, VEC(tree
,gc
) *,
791 gimple
gimple_build_catch (tree
, gimple_seq
);
792 gimple
gimple_build_eh_filter (tree
, gimple_seq
);
793 gimple
gimple_build_try (gimple_seq
, gimple_seq
, unsigned int);
794 gimple
gimple_build_wce (gimple_seq
);
795 gimple
gimple_build_resx (int);
796 gimple
gimple_build_switch (unsigned, tree
, tree
, ...);
797 gimple
gimple_build_switch_vec (tree
, tree
, VEC(tree
,heap
) *);
798 gimple
gimple_build_omp_parallel (gimple_seq
, tree
, tree
, tree
);
799 gimple
gimple_build_omp_task (gimple_seq
, tree
, tree
, tree
, tree
, tree
, tree
);
800 gimple
gimple_build_omp_for (gimple_seq
, tree
, size_t, gimple_seq
);
801 gimple
gimple_build_omp_critical (gimple_seq
, tree
);
802 gimple
gimple_build_omp_section (gimple_seq
);
803 gimple
gimple_build_omp_continue (tree
, tree
);
804 gimple
gimple_build_omp_master (gimple_seq
);
805 gimple
gimple_build_omp_return (bool);
806 gimple
gimple_build_omp_ordered (gimple_seq
);
807 gimple
gimple_build_omp_sections (gimple_seq
, tree
);
808 gimple
gimple_build_omp_sections_switch (void);
809 gimple
gimple_build_omp_single (gimple_seq
, tree
);
810 gimple
gimple_build_cdt (tree
, tree
);
811 gimple
gimple_build_omp_atomic_load (tree
, tree
);
812 gimple
gimple_build_omp_atomic_store (tree
);
813 gimple
gimple_build_predict (enum br_predictor
, enum prediction
);
814 enum gimple_statement_structure_enum
gimple_statement_structure (gimple
);
815 enum gimple_statement_structure_enum
gss_for_assign (enum tree_code
);
816 void sort_case_labels (VEC(tree
,heap
) *);
817 void gimple_set_body (tree
, gimple_seq
);
818 gimple_seq
gimple_body (tree
);
819 gimple_seq
gimple_seq_alloc (void);
820 void gimple_seq_free (gimple_seq
);
821 void gimple_seq_add_seq (gimple_seq
*, gimple_seq
);
822 gimple_seq
gimple_seq_copy (gimple_seq
);
823 int gimple_call_flags (const_gimple
);
824 bool gimple_assign_copy_p (gimple
);
825 bool gimple_assign_ssa_name_copy_p (gimple
);
826 bool gimple_assign_single_p (gimple
);
827 bool gimple_assign_unary_nop_p (gimple
);
828 void gimple_set_bb (gimple
, struct basic_block_def
*);
829 tree
gimple_fold (const_gimple
);
830 void gimple_assign_set_rhs_from_tree (gimple_stmt_iterator
*, tree
);
831 void gimple_assign_set_rhs_with_ops (gimple_stmt_iterator
*, enum tree_code
,
833 tree
gimple_get_lhs (const_gimple
);
834 void gimple_set_lhs (gimple
, tree
);
835 gimple
gimple_copy (gimple
);
836 bool is_gimple_operand (const_tree
);
837 void gimple_set_modified (gimple
, bool);
838 void gimple_cond_get_ops_from_tree (tree
, enum tree_code
*, tree
*, tree
*);
839 gimple
gimple_build_cond_from_tree (tree
, tree
, tree
);
840 void gimple_cond_set_condition_from_tree (gimple
, tree
);
841 bool gimple_has_side_effects (const_gimple
);
842 bool gimple_rhs_has_side_effects (const_gimple
);
843 bool gimple_could_trap_p (gimple
);
844 bool gimple_assign_rhs_could_trap_p (gimple
);
845 void gimple_regimplify_operands (gimple
, gimple_stmt_iterator
*);
846 bool empty_body_p (gimple_seq
);
847 unsigned get_gimple_rhs_num_ops (enum tree_code
);
849 /* Returns true iff T is a valid GIMPLE statement. */
850 extern bool is_gimple_stmt (tree
);
852 /* Returns true iff TYPE is a valid type for a scalar register variable. */
853 extern bool is_gimple_reg_type (tree
);
854 /* Returns true iff T is a scalar register variable. */
855 extern bool is_gimple_reg (tree
);
856 /* Returns true if T is a GIMPLE temporary variable, false otherwise. */
857 extern bool is_gimple_formal_tmp_var (tree
);
858 /* Returns true if T is a GIMPLE temporary register variable. */
859 extern bool is_gimple_formal_tmp_reg (tree
);
860 /* Returns true iff T is any sort of variable. */
861 extern bool is_gimple_variable (tree
);
862 /* Returns true iff T is any sort of symbol. */
863 extern bool is_gimple_id (tree
);
864 /* Returns true iff T is a variable or an INDIRECT_REF (of a variable). */
865 extern bool is_gimple_min_lval (tree
);
866 /* Returns true iff T is something whose address can be taken. */
867 extern bool is_gimple_addressable (tree
);
868 /* Returns true iff T is any valid GIMPLE lvalue. */
869 extern bool is_gimple_lvalue (tree
);
871 /* Returns true iff T is a GIMPLE address. */
872 bool is_gimple_address (const_tree
);
873 /* Returns true iff T is a GIMPLE invariant address. */
874 bool is_gimple_invariant_address (const_tree
);
875 /* Returns true iff T is a valid GIMPLE constant. */
876 bool is_gimple_constant (const_tree
);
877 /* Returns true iff T is a GIMPLE restricted function invariant. */
878 extern bool is_gimple_min_invariant (const_tree
);
879 /* Returns true iff T is a GIMPLE rvalue. */
880 extern bool is_gimple_val (tree
);
881 /* Returns true iff T is a GIMPLE asm statement input. */
882 extern bool is_gimple_asm_val (tree
);
883 /* Returns true iff T is a valid rhs for a MODIFY_EXPR where the LHS is a
884 GIMPLE temporary, a renamed user variable, or something else,
886 extern bool is_gimple_formal_tmp_rhs (tree
);
887 extern bool is_gimple_reg_rhs (tree
);
888 extern bool is_gimple_mem_rhs (tree
);
890 /* Returns true iff T is a valid if-statement condition. */
891 extern bool is_gimple_condexpr (tree
);
893 /* Returns true iff T is a type conversion. */
894 extern bool is_gimple_cast (tree
);
895 /* Returns true iff T is a variable that does not need to live in memory. */
896 extern bool is_gimple_non_addressable (tree t
);
898 /* Returns true iff T is a valid call address expression. */
899 extern bool is_gimple_call_addr (tree
);
900 /* If T makes a function call, returns the CALL_EXPR operand. */
901 extern tree
get_call_expr_in (tree t
);
903 extern void recalculate_side_effects (tree
);
906 extern tree
create_tmp_var_raw (tree
, const char *);
907 extern tree
create_tmp_var_name (const char *);
908 extern tree
create_tmp_var (tree
, const char *);
909 extern tree
get_initialized_tmp_var (tree
, gimple_seq
*, gimple_seq
*);
910 extern tree
get_formal_tmp_var (tree
, gimple_seq
*);
911 extern void declare_vars (tree
, gimple
, bool);
912 extern void tree_annotate_all_with_location (tree
*, location_t
);
913 extern void annotate_all_with_location (gimple_seq
, location_t
);
915 /* Validation of GIMPLE expressions. Note that these predicates only check
916 the basic form of the expression, they don't recurse to make sure that
917 underlying nodes are also of the right form. */
918 typedef bool (*gimple_predicate
)(tree
);
921 /* FIXME we should deduce this from the predicate. */
922 typedef enum fallback_t
{
923 fb_none
= 0, /* Do not generate a temporary. */
925 fb_rvalue
= 1, /* Generate an rvalue to hold the result of a
926 gimplified expression. */
928 fb_lvalue
= 2, /* Generate an lvalue to hold the result of a
929 gimplified expression. */
931 fb_mayfail
= 4, /* Gimplification may fail. Error issued
933 fb_either
= fb_rvalue
| fb_lvalue
936 enum gimplify_status
{
937 GS_ERROR
= -2, /* Something Bad Seen. */
938 GS_UNHANDLED
= -1, /* A langhook result for "I dunno". */
939 GS_OK
= 0, /* We did something, maybe more to do. */
940 GS_ALL_DONE
= 1 /* The expression is fully gimplified. */
945 struct gimplify_ctx
*prev_context
;
947 VEC(gimple
,heap
) *bind_expr_stack
;
949 gimple_seq conditional_cleanups
;
953 VEC(tree
,heap
) *case_labels
;
954 /* The formal temporary table. Should this be persistent? */
960 bool allow_rhs_cond_expr
;
963 extern enum gimplify_status
gimplify_expr (tree
*, gimple_seq
*, gimple_seq
*,
964 bool (*) (tree
), fallback_t
);
965 extern void gimplify_type_sizes (tree
, gimple_seq
*);
966 extern void gimplify_one_sizepos (tree
*, gimple_seq
*);
967 extern bool gimplify_stmt (tree
*, gimple_seq
*);
968 extern gimple
gimplify_body (tree
*, tree
, bool);
969 extern void push_gimplify_context (struct gimplify_ctx
*);
970 extern void pop_gimplify_context (gimple
);
971 extern void gimplify_and_add (tree
, gimple_seq
*);
973 /* Miscellaneous helpers. */
974 extern void gimple_add_tmp_var (tree
);
975 extern gimple
gimple_current_bind_expr (void);
976 extern VEC(gimple
, heap
) *gimple_bind_expr_stack (void);
977 extern tree
voidify_wrapper_expr (tree
, tree
);
978 extern tree
build_and_jump (tree
*);
979 extern tree
alloc_stmt_list (void);
980 extern void free_stmt_list (tree
);
981 extern tree
force_labels_r (tree
*, int *, void *);
982 extern enum gimplify_status
gimplify_va_arg_expr (tree
*, gimple_seq
*,
984 struct gimplify_omp_ctx
;
985 extern void omp_firstprivatize_variable (struct gimplify_omp_ctx
*, tree
);
986 extern tree
gimple_boolify (tree
);
987 extern gimple_predicate
rhs_predicate_for (tree
);
988 extern tree
canonicalize_cond_expr_cond (tree
);
991 extern void diagnose_omp_structured_block_errors (tree
);
992 extern tree
omp_reduction_init (tree
, tree
);
994 /* In tree-nested.c. */
995 extern void lower_nested_functions (tree
);
996 extern void insert_field_into_struct (tree
, tree
);
999 extern void gimplify_function_tree (tree
);
1001 /* In cfgexpand.c. */
1002 extern tree
gimple_assign_rhs_to_tree (gimple
);
1005 extern bool validate_gimple_arglist (const_gimple
, ...);
1007 /* In tree-ssa-operands.c */
1008 extern void gimple_add_to_addresses_taken (gimple
, tree
);
1011 extern bool tree_ssa_useless_type_conversion (tree
);
1012 extern bool useless_type_conversion_p (tree
, tree
);
1013 extern bool types_compatible_p (tree
, tree
);
1015 /* Return the code for GIMPLE statement G. */
1017 static inline enum gimple_code
1018 gimple_code (const_gimple g
)
1020 return g
->gsbase
.code
;
1024 /* Return true if statement G has sub-statements. This is only true for
1025 High GIMPLE statements. */
1028 gimple_has_substatements (gimple g
)
1030 switch (gimple_code (g
))
1034 case GIMPLE_EH_FILTER
:
1036 case GIMPLE_OMP_FOR
:
1037 case GIMPLE_OMP_MASTER
:
1038 case GIMPLE_OMP_ORDERED
:
1039 case GIMPLE_OMP_SECTION
:
1040 case GIMPLE_OMP_PARALLEL
:
1041 case GIMPLE_OMP_TASK
:
1042 case GIMPLE_OMP_SECTIONS
:
1043 case GIMPLE_OMP_SINGLE
:
1044 case GIMPLE_WITH_CLEANUP_EXPR
:
1053 /* Return the basic block holding statement G. */
1055 static inline struct basic_block_def
*
1056 gimple_bb (const_gimple g
)
1058 return g
->gsbase
.bb
;
1062 /* Return the lexical scope block holding statement G. */
1065 gimple_block (const_gimple g
)
1067 return g
->gsbase
.block
;
1071 /* Set BLOCK to be the lexical scope block holding statement G. */
1074 gimple_set_block (gimple g
, tree block
)
1076 g
->gsbase
.block
= block
;
1080 /* Return location information for statement G. */
1082 static inline location_t
1083 gimple_location (const_gimple g
)
1085 return g
->gsbase
.location
;
1088 /* Return pointer to location information for statement G. */
1090 static inline const location_t
*
1091 gimple_location_ptr (const_gimple g
)
1093 return &g
->gsbase
.location
;
1097 /* Set location information for statement G. */
1100 gimple_set_location (gimple g
, location_t location
)
1102 g
->gsbase
.location
= location
;
1106 /* Return true if G contains location information. */
1109 gimple_has_location (const_gimple g
)
1111 return gimple_location (g
) != UNKNOWN_LOCATION
;
1115 /* Return the file name of the location of STMT. */
1117 static inline const char *
1118 gimple_filename (const_gimple stmt
)
1120 return LOCATION_FILE (gimple_location (stmt
));
1124 /* Return the line number of the location of STMT. */
1127 gimple_lineno (const_gimple stmt
)
1129 return LOCATION_LINE (gimple_location (stmt
));
1133 /* Determine whether SEQ is a singleton. */
1136 gimple_seq_singleton_p (gimple_seq seq
)
1138 return ((gimple_seq_first (seq
) != NULL
)
1139 && (gimple_seq_first (seq
) == gimple_seq_last (seq
)));
1142 /* Return true if no warnings should be emitted for statement STMT. */
1145 gimple_no_warning_p (const_gimple stmt
)
1147 return stmt
->gsbase
.no_warning
;
1150 /* Set the no_warning flag of STMT to NO_WARNING. */
1153 gimple_set_no_warning (gimple stmt
, bool no_warning
)
1155 stmt
->gsbase
.no_warning
= (unsigned) no_warning
;
1158 /* Set the visited status on statement STMT to VISITED_P. */
1161 gimple_set_visited (gimple stmt
, bool visited_p
)
1163 stmt
->gsbase
.visited
= (unsigned) visited_p
;
1167 /* Return the visited status for statement STMT. */
1170 gimple_visited_p (gimple stmt
)
1172 return stmt
->gsbase
.visited
;
1176 /* Set pass local flag PLF on statement STMT to VAL_P. */
1179 gimple_set_plf (gimple stmt
, enum plf_mask plf
, bool val_p
)
1182 stmt
->gsbase
.plf
|= (unsigned int) plf
;
1184 stmt
->gsbase
.plf
&= ~((unsigned int) plf
);
1188 /* Return the value of pass local flag PLF on statement STMT. */
1190 static inline unsigned int
1191 gimple_plf (gimple stmt
, enum plf_mask plf
)
1193 return stmt
->gsbase
.plf
& ((unsigned int) plf
);
1197 /* Set the uid of statement */
1200 gimple_set_uid (gimple g
, unsigned uid
)
1202 g
->gsbase
.uid
= uid
;
1206 /* Return the uid of statement */
1208 static inline unsigned
1209 gimple_uid (const_gimple g
)
1211 return g
->gsbase
.uid
;
1215 /* Return true if GIMPLE statement G has register or memory operands. */
1218 gimple_has_ops (const_gimple g
)
1220 return gimple_code (g
) >= GIMPLE_COND
&& gimple_code (g
) <= GIMPLE_RETURN
;
1224 /* Return true if GIMPLE statement G has memory operands. */
1227 gimple_has_mem_ops (const_gimple g
)
1229 return gimple_code (g
) >= GIMPLE_ASSIGN
&& gimple_code (g
) <= GIMPLE_RETURN
;
1232 /* Return the set of addresses taken by statement G. */
1234 static inline bitmap
1235 gimple_addresses_taken (const_gimple g
)
1237 if (gimple_has_ops (g
))
1238 return g
->gsops
.opbase
.addresses_taken
;
1244 /* Return a pointer to the set of addresses taken by statement G. */
1246 static inline bitmap
*
1247 gimple_addresses_taken_ptr (gimple g
)
1249 if (gimple_has_ops (g
))
1250 return &g
->gsops
.opbase
.addresses_taken
;
1256 /* Set B to be the set of addresses taken by statement G. The
1257 previous set is freed. */
1260 gimple_set_addresses_taken (gimple g
, bitmap b
)
1262 gcc_assert (gimple_has_ops (g
));
1263 BITMAP_FREE (g
->gsops
.opbase
.addresses_taken
);
1264 g
->gsops
.opbase
.addresses_taken
= b
;
1268 /* Return the set of DEF operands for statement G. */
1270 static inline struct def_optype_d
*
1271 gimple_def_ops (const_gimple g
)
1273 if (!gimple_has_ops (g
))
1275 return g
->gsops
.opbase
.def_ops
;
1279 /* Set DEF to be the set of DEF operands for statement G. */
1282 gimple_set_def_ops (gimple g
, struct def_optype_d
*def
)
1284 gcc_assert (gimple_has_ops (g
));
1285 g
->gsops
.opbase
.def_ops
= def
;
1289 /* Return the set of USE operands for statement G. */
1291 static inline struct use_optype_d
*
1292 gimple_use_ops (const_gimple g
)
1294 if (!gimple_has_ops (g
))
1296 return g
->gsops
.opbase
.use_ops
;
1300 /* Set USE to be the set of USE operands for statement G. */
1303 gimple_set_use_ops (gimple g
, struct use_optype_d
*use
)
1305 gcc_assert (gimple_has_ops (g
));
1306 g
->gsops
.opbase
.use_ops
= use
;
1310 /* Return the set of VUSE operands for statement G. */
1312 static inline struct voptype_d
*
1313 gimple_vuse_ops (const_gimple g
)
1315 if (!gimple_has_mem_ops (g
))
1317 return g
->gsmem
.membase
.vuse_ops
;
1321 /* Set OPS to be the set of VUSE operands for statement G. */
1324 gimple_set_vuse_ops (gimple g
, struct voptype_d
*ops
)
1326 gcc_assert (gimple_has_mem_ops (g
));
1327 g
->gsmem
.membase
.vuse_ops
= ops
;
1331 /* Return the set of VDEF operands for statement G. */
1333 static inline struct voptype_d
*
1334 gimple_vdef_ops (const_gimple g
)
1336 if (!gimple_has_mem_ops (g
))
1338 return g
->gsmem
.membase
.vdef_ops
;
1342 /* Set OPS to be the set of VDEF operands for statement G. */
1345 gimple_set_vdef_ops (gimple g
, struct voptype_d
*ops
)
1347 gcc_assert (gimple_has_mem_ops (g
));
1348 g
->gsmem
.membase
.vdef_ops
= ops
;
1352 /* Return the set of symbols loaded by statement G. Each element of the
1353 set is the DECL_UID of the corresponding symbol. */
1355 static inline bitmap
1356 gimple_loaded_syms (const_gimple g
)
1358 if (!gimple_has_mem_ops (g
))
1360 return g
->gsmem
.membase
.loads
;
1364 /* Return the set of symbols stored by statement G. Each element of
1365 the set is the DECL_UID of the corresponding symbol. */
1367 static inline bitmap
1368 gimple_stored_syms (const_gimple g
)
1370 if (!gimple_has_mem_ops (g
))
1372 return g
->gsmem
.membase
.stores
;
1376 /* Return true if statement G has operands and the modified field has
1380 gimple_modified_p (const_gimple g
)
1382 return (gimple_has_ops (g
)) ? (bool) g
->gsbase
.modified
: false;
1385 /* Return the type of the main expression computed by STMT. Return
1386 void_type_node if the statement computes nothing. */
1389 gimple_expr_type (const_gimple stmt
)
1391 enum gimple_code code
= gimple_code (stmt
);
1393 if (code
== GIMPLE_ASSIGN
|| code
== GIMPLE_CALL
)
1395 tree type
= TREE_TYPE (gimple_get_lhs (stmt
));
1396 /* Integral sub-types are never the type of the expression,
1397 but they still can be the type of the result as the base
1398 type (in which expressions are computed) is trivially
1399 convertible to one of its sub-types. So always return
1400 the base type here. */
1401 if (INTEGRAL_TYPE_P (type
)
1403 /* But only if they are trivially convertible. */
1404 && useless_type_conversion_p (type
, TREE_TYPE (type
)))
1405 type
= TREE_TYPE (type
);
1408 else if (code
== GIMPLE_COND
)
1409 return boolean_type_node
;
1411 return void_type_node
;
1415 /* Return the tree code for the expression computed by STMT. This is
1416 only valid for GIMPLE_COND, GIMPLE_CALL and GIMPLE_ASSIGN. For
1417 GIMPLE_CALL, return CALL_EXPR as the expression code for
1418 consistency. This is useful when the caller needs to deal with the
1419 three kinds of computation that GIMPLE supports. */
1421 static inline enum tree_code
1422 gimple_expr_code (const_gimple stmt
)
1424 enum gimple_code code
= gimple_code (stmt
);
1425 if (code
== GIMPLE_ASSIGN
|| code
== GIMPLE_COND
)
1426 return (enum tree_code
) stmt
->gsbase
.subcode
;
1427 else if (code
== GIMPLE_CALL
)
1434 /* Mark statement S as modified, and update it. */
1437 update_stmt (gimple s
)
1439 if (gimple_has_ops (s
))
1441 gimple_set_modified (s
, true);
1442 update_stmt_operands (s
);
1446 /* Update statement S if it has been optimized. */
1449 update_stmt_if_modified (gimple s
)
1451 if (gimple_modified_p (s
))
1452 update_stmt_operands (s
);
1455 /* Return true if statement STMT contains volatile operands. */
1458 gimple_has_volatile_ops (const_gimple stmt
)
1460 if (gimple_has_mem_ops (stmt
))
1461 return stmt
->gsbase
.has_volatile_ops
;
1467 /* Set the HAS_VOLATILE_OPS flag to VOLATILEP. */
1470 gimple_set_has_volatile_ops (gimple stmt
, bool volatilep
)
1472 if (gimple_has_mem_ops (stmt
))
1473 stmt
->gsbase
.has_volatile_ops
= (unsigned) volatilep
;
1477 /* Return true if statement STMT may access memory. */
1480 gimple_references_memory_p (gimple stmt
)
1482 return gimple_has_mem_ops (stmt
) && stmt
->gsbase
.references_memory_p
;
1486 /* Set the REFERENCES_MEMORY_P flag for STMT to MEM_P. */
1489 gimple_set_references_memory (gimple stmt
, bool mem_p
)
1491 if (gimple_has_mem_ops (stmt
))
1492 stmt
->gsbase
.references_memory_p
= (unsigned) mem_p
;
1495 /* Return the subcode for OMP statement S. */
1497 static inline unsigned
1498 gimple_omp_subcode (const_gimple s
)
1500 gcc_assert (gimple_code (s
) >= GIMPLE_OMP_ATOMIC_LOAD
1501 && gimple_code (s
) <= GIMPLE_OMP_SINGLE
);
1502 return s
->gsbase
.subcode
;
1505 /* Set the subcode for OMP statement S to SUBCODE. */
1508 gimple_omp_set_subcode (gimple s
, unsigned int subcode
)
1510 /* We only have 16 bits for the subcode. Assert that we are not
1512 gcc_assert (subcode
< (1 << 16));
1513 s
->gsbase
.subcode
= subcode
;
1516 /* Set the nowait flag on OMP_RETURN statement S. */
1519 gimple_omp_return_set_nowait (gimple s
)
1521 GIMPLE_CHECK (s
, GIMPLE_OMP_RETURN
);
1522 s
->gsbase
.subcode
|= GF_OMP_RETURN_NOWAIT
;
1526 /* Return true if OMP return statement G has the GF_OMP_RETURN_NOWAIT
1530 gimple_omp_return_nowait_p (const_gimple g
)
1532 GIMPLE_CHECK (g
, GIMPLE_OMP_RETURN
);
1533 return (gimple_omp_subcode (g
) & GF_OMP_RETURN_NOWAIT
) != 0;
1537 /* Return true if OMP section statement G has the GF_OMP_SECTION_LAST
1541 gimple_omp_section_last_p (const_gimple g
)
1543 GIMPLE_CHECK (g
, GIMPLE_OMP_SECTION
);
1544 return (gimple_omp_subcode (g
) & GF_OMP_SECTION_LAST
) != 0;
1548 /* Set the GF_OMP_SECTION_LAST flag on G. */
1551 gimple_omp_section_set_last (gimple g
)
1553 GIMPLE_CHECK (g
, GIMPLE_OMP_SECTION
);
1554 g
->gsbase
.subcode
|= GF_OMP_SECTION_LAST
;
1558 /* Return true if OMP parallel statement G has the
1559 GF_OMP_PARALLEL_COMBINED flag set. */
1562 gimple_omp_parallel_combined_p (const_gimple g
)
1564 GIMPLE_CHECK (g
, GIMPLE_OMP_PARALLEL
);
1565 return (gimple_omp_subcode (g
) & GF_OMP_PARALLEL_COMBINED
) != 0;
1569 /* Set the GF_OMP_PARALLEL_COMBINED field in G depending on the boolean
1570 value of COMBINED_P. */
1573 gimple_omp_parallel_set_combined_p (gimple g
, bool combined_p
)
1575 GIMPLE_CHECK (g
, GIMPLE_OMP_PARALLEL
);
1577 g
->gsbase
.subcode
|= GF_OMP_PARALLEL_COMBINED
;
1579 g
->gsbase
.subcode
&= ~GF_OMP_PARALLEL_COMBINED
;
1583 /* Return the number of operands for statement GS. */
1585 static inline unsigned
1586 gimple_num_ops (const_gimple gs
)
1588 return gs
->gsbase
.num_ops
;
1592 /* Set the number of operands for statement GS. */
1595 gimple_set_num_ops (gimple gs
, unsigned num_ops
)
1597 gs
->gsbase
.num_ops
= num_ops
;
1601 /* Return the array of operands for statement GS. */
1603 static inline tree
*
1604 gimple_ops (gimple gs
)
1606 /* Offset in bytes to the location of the operand vector in every
1607 tuple structure. Defined in gimple.c */
1608 extern size_t const gimple_ops_offset_
[];
1610 if (!gimple_has_ops (gs
))
1613 /* All the tuples have their operand vector at the very bottom
1614 of the structure. */
1615 return ((tree
*) ((char *) gs
+ gimple_ops_offset_
[gimple_code (gs
)]));
1619 /* Return operand I for statement GS. */
1622 gimple_op (const_gimple gs
, unsigned i
)
1624 if (gimple_has_ops (gs
))
1626 gcc_assert (i
< gimple_num_ops (gs
));
1627 return gimple_ops (CONST_CAST_GIMPLE (gs
))[i
];
1633 /* Return a pointer to operand I for statement GS. */
1635 static inline tree
*
1636 gimple_op_ptr (const_gimple gs
, unsigned i
)
1638 if (gimple_has_ops (gs
))
1640 gcc_assert (i
< gimple_num_ops (gs
));
1641 return gimple_ops (CONST_CAST_GIMPLE (gs
)) + i
;
1647 /* Set operand I of statement GS to OP. */
1650 gimple_set_op (gimple gs
, unsigned i
, tree op
)
1652 gcc_assert (gimple_has_ops (gs
) && i
< gimple_num_ops (gs
));
1654 /* Note. It may be tempting to assert that OP matches
1655 is_gimple_operand, but that would be wrong. Different tuples
1656 accept slightly different sets of tree operands. Each caller
1657 should perform its own validation. */
1658 gimple_ops (gs
)[i
] = op
;
1661 /* Return true if GS is a GIMPLE_ASSIGN. */
1664 is_gimple_assign (const_gimple gs
)
1666 return gimple_code (gs
) == GIMPLE_ASSIGN
;
1669 /* Determine if expression CODE is one of the valid expressions that can
1670 be used on the RHS of GIMPLE assignments. */
1672 static inline enum gimple_rhs_class
1673 get_gimple_rhs_class (enum tree_code code
)
1675 return (enum gimple_rhs_class
) gimple_rhs_class_table
[(int) code
];
1678 /* Return the LHS of assignment statement GS. */
1681 gimple_assign_lhs (const_gimple gs
)
1683 GIMPLE_CHECK (gs
, GIMPLE_ASSIGN
);
1684 return gimple_op (gs
, 0);
1688 /* Return a pointer to the LHS of assignment statement GS. */
1690 static inline tree
*
1691 gimple_assign_lhs_ptr (const_gimple gs
)
1693 GIMPLE_CHECK (gs
, GIMPLE_ASSIGN
);
1694 return gimple_op_ptr (gs
, 0);
1698 /* Set LHS to be the LHS operand of assignment statement GS. */
1701 gimple_assign_set_lhs (gimple gs
, tree lhs
)
1703 GIMPLE_CHECK (gs
, GIMPLE_ASSIGN
);
1704 gcc_assert (is_gimple_operand (lhs
));
1705 gimple_set_op (gs
, 0, lhs
);
1707 if (lhs
&& TREE_CODE (lhs
) == SSA_NAME
)
1708 SSA_NAME_DEF_STMT (lhs
) = gs
;
1712 /* Return the first operand on the RHS of assignment statement GS. */
1715 gimple_assign_rhs1 (const_gimple gs
)
1717 GIMPLE_CHECK (gs
, GIMPLE_ASSIGN
);
1718 return gimple_op (gs
, 1);
1722 /* Return a pointer to the first operand on the RHS of assignment
1725 static inline tree
*
1726 gimple_assign_rhs1_ptr (const_gimple gs
)
1728 GIMPLE_CHECK (gs
, GIMPLE_ASSIGN
);
1729 return gimple_op_ptr (gs
, 1);
1732 /* Set RHS to be the first operand on the RHS of assignment statement GS. */
1735 gimple_assign_set_rhs1 (gimple gs
, tree rhs
)
1737 GIMPLE_CHECK (gs
, GIMPLE_ASSIGN
);
1739 /* If there are 3 or more operands, the 2 operands on the RHS must be
1741 if (gimple_num_ops (gs
) >= 3)
1742 gcc_assert (is_gimple_val (rhs
));
1744 gcc_assert (is_gimple_operand (rhs
));
1746 gimple_set_op (gs
, 1, rhs
);
1750 /* Return the second operand on the RHS of assignment statement GS.
1751 If GS does not have two operands, NULL is returned instead. */
1754 gimple_assign_rhs2 (const_gimple gs
)
1756 GIMPLE_CHECK (gs
, GIMPLE_ASSIGN
);
1758 if (gimple_num_ops (gs
) >= 3)
1759 return gimple_op (gs
, 2);
1765 /* Return a pointer to the second operand on the RHS of assignment
1768 static inline tree
*
1769 gimple_assign_rhs2_ptr (const_gimple gs
)
1771 GIMPLE_CHECK (gs
, GIMPLE_ASSIGN
);
1772 return gimple_op_ptr (gs
, 2);
1776 /* Set RHS to be the second operand on the RHS of assignment statement GS. */
1779 gimple_assign_set_rhs2 (gimple gs
, tree rhs
)
1781 GIMPLE_CHECK (gs
, GIMPLE_ASSIGN
);
1783 /* The 2 operands on the RHS must be GIMPLE values. */
1784 gcc_assert (is_gimple_val (rhs
));
1786 gimple_set_op (gs
, 2, rhs
);
1789 /* Returns true if GS is a nontemporal move. */
1792 gimple_assign_nontemporal_move_p (const_gimple gs
)
1794 GIMPLE_CHECK (gs
, GIMPLE_ASSIGN
);
1795 return gs
->gsbase
.nontemporal_move
;
1798 /* Sets nontemporal move flag of GS to NONTEMPORAL. */
1801 gimple_assign_set_nontemporal_move (gimple gs
, bool nontemporal
)
1803 GIMPLE_CHECK (gs
, GIMPLE_ASSIGN
);
1804 gs
->gsbase
.nontemporal_move
= nontemporal
;
1808 /* Return the code of the expression computed on the rhs of assignment
1809 statement GS. In case that the RHS is a single object, returns the
1810 tree code of the object. */
1812 static inline enum tree_code
1813 gimple_assign_rhs_code (const_gimple gs
)
1815 enum tree_code code
;
1816 GIMPLE_CHECK (gs
, GIMPLE_ASSIGN
);
1818 code
= gimple_expr_code (gs
);
1819 if (get_gimple_rhs_class (code
) == GIMPLE_SINGLE_RHS
)
1820 code
= TREE_CODE (gimple_assign_rhs1 (gs
));
1826 /* Set CODE to be the code for the expression computed on the RHS of
1830 gimple_assign_set_rhs_code (gimple s
, enum tree_code code
)
1832 GIMPLE_CHECK (s
, GIMPLE_ASSIGN
);
1833 s
->gsbase
.subcode
= code
;
1837 /* Return the gimple rhs class of the code of the expression computed on
1838 the rhs of assignment statement GS.
1839 This will never return GIMPLE_INVALID_RHS. */
1841 static inline enum gimple_rhs_class
1842 gimple_assign_rhs_class (const_gimple gs
)
1844 return get_gimple_rhs_class (gimple_assign_rhs_code (gs
));
1848 /* Return true if S is a type-cast assignment. */
1851 gimple_assign_cast_p (gimple s
)
1853 if (is_gimple_assign (s
))
1855 enum tree_code sc
= gimple_assign_rhs_code (s
);
1856 return CONVERT_EXPR_CODE_P (sc
)
1857 || sc
== VIEW_CONVERT_EXPR
1858 || sc
== FIX_TRUNC_EXPR
;
1865 /* Return true if GS is a GIMPLE_CALL. */
1868 is_gimple_call (const_gimple gs
)
1870 return gimple_code (gs
) == GIMPLE_CALL
;
1873 /* Return the LHS of call statement GS. */
1876 gimple_call_lhs (const_gimple gs
)
1878 GIMPLE_CHECK (gs
, GIMPLE_CALL
);
1879 return gimple_op (gs
, 0);
1883 /* Return a pointer to the LHS of call statement GS. */
1885 static inline tree
*
1886 gimple_call_lhs_ptr (const_gimple gs
)
1888 GIMPLE_CHECK (gs
, GIMPLE_CALL
);
1889 return gimple_op_ptr (gs
, 0);
1893 /* Set LHS to be the LHS operand of call statement GS. */
1896 gimple_call_set_lhs (gimple gs
, tree lhs
)
1898 GIMPLE_CHECK (gs
, GIMPLE_CALL
);
1899 gcc_assert (!lhs
|| is_gimple_operand (lhs
));
1900 gimple_set_op (gs
, 0, lhs
);
1901 if (lhs
&& TREE_CODE (lhs
) == SSA_NAME
)
1902 SSA_NAME_DEF_STMT (lhs
) = gs
;
1906 /* Return the tree node representing the function called by call
1910 gimple_call_fn (const_gimple gs
)
1912 GIMPLE_CHECK (gs
, GIMPLE_CALL
);
1913 return gimple_op (gs
, 1);
1917 /* Return a pointer to the tree node representing the function called by call
1920 static inline tree
*
1921 gimple_call_fn_ptr (const_gimple gs
)
1923 GIMPLE_CHECK (gs
, GIMPLE_CALL
);
1924 return gimple_op_ptr (gs
, 1);
1928 /* Set FN to be the function called by call statement GS. */
1931 gimple_call_set_fn (gimple gs
, tree fn
)
1933 GIMPLE_CHECK (gs
, GIMPLE_CALL
);
1934 gcc_assert (is_gimple_operand (fn
));
1935 gimple_set_op (gs
, 1, fn
);
1939 /* Set FNDECL to be the function called by call statement GS. */
1942 gimple_call_set_fndecl (gimple gs
, tree decl
)
1944 GIMPLE_CHECK (gs
, GIMPLE_CALL
);
1945 gcc_assert (TREE_CODE (decl
) == FUNCTION_DECL
);
1946 gimple_set_op (gs
, 1, build_fold_addr_expr (decl
));
1950 /* If a given GIMPLE_CALL's callee is a FUNCTION_DECL, return it.
1951 Otherwise return NULL. This function is analogous to
1952 get_callee_fndecl in tree land. */
1955 gimple_call_fndecl (const_gimple gs
)
1957 tree addr
= gimple_call_fn (gs
);
1958 if (TREE_CODE (addr
) == ADDR_EXPR
)
1960 gcc_assert (TREE_CODE (TREE_OPERAND (addr
, 0)) == FUNCTION_DECL
);
1961 return TREE_OPERAND (addr
, 0);
1967 /* Return the type returned by call statement GS. */
1970 gimple_call_return_type (const_gimple gs
)
1972 tree fn
= gimple_call_fn (gs
);
1973 tree type
= TREE_TYPE (fn
);
1975 /* See through the pointer. */
1976 gcc_assert (POINTER_TYPE_P (type
));
1977 type
= TREE_TYPE (type
);
1979 gcc_assert (TREE_CODE (type
) == FUNCTION_TYPE
1980 || TREE_CODE (type
) == METHOD_TYPE
);
1982 /* The type returned by a FUNCTION_DECL is the type of its
1984 return TREE_TYPE (type
);
1988 /* Return the static chain for call statement GS. */
1991 gimple_call_chain (const_gimple gs
)
1993 GIMPLE_CHECK (gs
, GIMPLE_CALL
);
1994 return gimple_op (gs
, 2);
1998 /* Return a pointer to the static chain for call statement GS. */
2000 static inline tree
*
2001 gimple_call_chain_ptr (const_gimple gs
)
2003 GIMPLE_CHECK (gs
, GIMPLE_CALL
);
2004 return gimple_op_ptr (gs
, 2);
2007 /* Set CHAIN to be the static chain for call statement GS. */
2010 gimple_call_set_chain (gimple gs
, tree chain
)
2012 GIMPLE_CHECK (gs
, GIMPLE_CALL
);
2013 gcc_assert (chain
== NULL
2014 || TREE_CODE (chain
) == ADDR_EXPR
2015 || SSA_VAR_P (chain
));
2016 gimple_set_op (gs
, 2, chain
);
2020 /* Return the number of arguments used by call statement GS. */
2022 static inline unsigned
2023 gimple_call_num_args (const_gimple gs
)
2026 GIMPLE_CHECK (gs
, GIMPLE_CALL
);
2027 num_ops
= gimple_num_ops (gs
);
2028 gcc_assert (num_ops
>= 3);
2033 /* Return the argument at position INDEX for call statement GS. */
2036 gimple_call_arg (const_gimple gs
, unsigned index
)
2038 GIMPLE_CHECK (gs
, GIMPLE_CALL
);
2039 return gimple_op (gs
, index
+ 3);
2043 /* Return a pointer to the argument at position INDEX for call
2046 static inline tree
*
2047 gimple_call_arg_ptr (const_gimple gs
, unsigned index
)
2049 GIMPLE_CHECK (gs
, GIMPLE_CALL
);
2050 return gimple_op_ptr (gs
, index
+ 3);
2054 /* Set ARG to be the argument at position INDEX for call statement GS. */
2057 gimple_call_set_arg (gimple gs
, unsigned index
, tree arg
)
2059 GIMPLE_CHECK (gs
, GIMPLE_CALL
);
2060 gcc_assert (is_gimple_operand (arg
));
2061 gimple_set_op (gs
, index
+ 3, arg
);
2065 /* If TAIL_P is true, mark call statement S as being a tail call
2066 (i.e., a call just before the exit of a function). These calls are
2067 candidate for tail call optimization. */
2070 gimple_call_set_tail (gimple s
, bool tail_p
)
2072 GIMPLE_CHECK (s
, GIMPLE_CALL
);
2074 s
->gsbase
.subcode
|= GF_CALL_TAILCALL
;
2076 s
->gsbase
.subcode
&= ~GF_CALL_TAILCALL
;
2080 /* Return true if GIMPLE_CALL S is marked as a tail call. */
2083 gimple_call_tail_p (gimple s
)
2085 GIMPLE_CHECK (s
, GIMPLE_CALL
);
2086 return (s
->gsbase
.subcode
& GF_CALL_TAILCALL
) != 0;
2090 /* Set the inlinable status of GIMPLE_CALL S to INLINABLE_P. */
2093 gimple_call_set_cannot_inline (gimple s
, bool inlinable_p
)
2095 GIMPLE_CHECK (s
, GIMPLE_CALL
);
2097 s
->gsbase
.subcode
|= GF_CALL_CANNOT_INLINE
;
2099 s
->gsbase
.subcode
&= ~GF_CALL_CANNOT_INLINE
;
2103 /* Return true if GIMPLE_CALL S cannot be inlined. */
2106 gimple_call_cannot_inline_p (gimple s
)
2108 GIMPLE_CHECK (s
, GIMPLE_CALL
);
2109 return (s
->gsbase
.subcode
& GF_CALL_CANNOT_INLINE
) != 0;
2113 /* If RETURN_SLOT_OPT_P is true mark GIMPLE_CALL S as valid for return
2114 slot optimization. This transformation uses the target of the call
2115 expansion as the return slot for calls that return in memory. */
2118 gimple_call_set_return_slot_opt (gimple s
, bool return_slot_opt_p
)
2120 GIMPLE_CHECK (s
, GIMPLE_CALL
);
2121 if (return_slot_opt_p
)
2122 s
->gsbase
.subcode
|= GF_CALL_RETURN_SLOT_OPT
;
2124 s
->gsbase
.subcode
&= ~GF_CALL_RETURN_SLOT_OPT
;
2128 /* Return true if S is marked for return slot optimization. */
2131 gimple_call_return_slot_opt_p (gimple s
)
2133 GIMPLE_CHECK (s
, GIMPLE_CALL
);
2134 return (s
->gsbase
.subcode
& GF_CALL_RETURN_SLOT_OPT
) != 0;
2138 /* If FROM_THUNK_P is true, mark GIMPLE_CALL S as being the jump from a
2139 thunk to the thunked-to function. */
2142 gimple_call_set_from_thunk (gimple s
, bool from_thunk_p
)
2144 GIMPLE_CHECK (s
, GIMPLE_CALL
);
2146 s
->gsbase
.subcode
|= GF_CALL_FROM_THUNK
;
2148 s
->gsbase
.subcode
&= ~GF_CALL_FROM_THUNK
;
2152 /* Return true if GIMPLE_CALL S is a jump from a thunk. */
2155 gimple_call_from_thunk_p (gimple s
)
2157 GIMPLE_CHECK (s
, GIMPLE_CALL
);
2158 return (s
->gsbase
.subcode
& GF_CALL_FROM_THUNK
) != 0;
2162 /* If PASS_ARG_PACK_P is true, GIMPLE_CALL S is a stdarg call that needs the
2163 argument pack in its argument list. */
2166 gimple_call_set_va_arg_pack (gimple s
, bool pass_arg_pack_p
)
2168 GIMPLE_CHECK (s
, GIMPLE_CALL
);
2169 if (pass_arg_pack_p
)
2170 s
->gsbase
.subcode
|= GF_CALL_VA_ARG_PACK
;
2172 s
->gsbase
.subcode
&= ~GF_CALL_VA_ARG_PACK
;
2176 /* Return true if GIMPLE_CALL S is a stdarg call that needs the
2177 argument pack in its argument list. */
2180 gimple_call_va_arg_pack_p (gimple s
)
2182 GIMPLE_CHECK (s
, GIMPLE_CALL
);
2183 return (s
->gsbase
.subcode
& GF_CALL_VA_ARG_PACK
) != 0;
2187 /* Return true if S is a noreturn call. */
2190 gimple_call_noreturn_p (gimple s
)
2192 GIMPLE_CHECK (s
, GIMPLE_CALL
);
2193 return (gimple_call_flags (s
) & ECF_NORETURN
) != 0;
2197 /* Return true if S is a nothrow call. */
2200 gimple_call_nothrow_p (gimple s
)
2202 GIMPLE_CHECK (s
, GIMPLE_CALL
);
2203 return (gimple_call_flags (s
) & ECF_NOTHROW
) != 0;
2207 /* Copy all the GF_CALL_* flags from ORIG_CALL to DEST_CALL. */
2210 gimple_call_copy_flags (gimple dest_call
, gimple orig_call
)
2212 GIMPLE_CHECK (dest_call
, GIMPLE_CALL
);
2213 GIMPLE_CHECK (orig_call
, GIMPLE_CALL
);
2214 dest_call
->gsbase
.subcode
= orig_call
->gsbase
.subcode
;
2218 /* Returns true if this is a GIMPLE_ASSIGN or a GIMPLE_CALL with a
2222 gimple_has_lhs (gimple stmt
)
2224 return (is_gimple_assign (stmt
)
2225 || (is_gimple_call (stmt
)
2226 && gimple_call_lhs (stmt
) != NULL_TREE
));
2230 /* Return the code of the predicate computed by conditional statement GS. */
2232 static inline enum tree_code
2233 gimple_cond_code (const_gimple gs
)
2235 GIMPLE_CHECK (gs
, GIMPLE_COND
);
2236 return gs
->gsbase
.subcode
;
2240 /* Set CODE to be the predicate code for the conditional statement GS. */
2243 gimple_cond_set_code (gimple gs
, enum tree_code code
)
2245 GIMPLE_CHECK (gs
, GIMPLE_COND
);
2246 gcc_assert (TREE_CODE_CLASS (code
) == tcc_comparison
);
2247 gs
->gsbase
.subcode
= code
;
2251 /* Return the LHS of the predicate computed by conditional statement GS. */
2254 gimple_cond_lhs (const_gimple gs
)
2256 GIMPLE_CHECK (gs
, GIMPLE_COND
);
2257 return gimple_op (gs
, 0);
2260 /* Return the pointer to the LHS of the predicate computed by conditional
2263 static inline tree
*
2264 gimple_cond_lhs_ptr (const_gimple gs
)
2266 GIMPLE_CHECK (gs
, GIMPLE_COND
);
2267 return gimple_op_ptr (gs
, 0);
2270 /* Set LHS to be the LHS operand of the predicate computed by
2271 conditional statement GS. */
2274 gimple_cond_set_lhs (gimple gs
, tree lhs
)
2276 GIMPLE_CHECK (gs
, GIMPLE_COND
);
2277 gcc_assert (is_gimple_operand (lhs
));
2278 gimple_set_op (gs
, 0, lhs
);
2282 /* Return the RHS operand of the predicate computed by conditional GS. */
2285 gimple_cond_rhs (const_gimple gs
)
2287 GIMPLE_CHECK (gs
, GIMPLE_COND
);
2288 return gimple_op (gs
, 1);
2291 /* Return the pointer to the RHS operand of the predicate computed by
2294 static inline tree
*
2295 gimple_cond_rhs_ptr (const_gimple gs
)
2297 GIMPLE_CHECK (gs
, GIMPLE_COND
);
2298 return gimple_op_ptr (gs
, 1);
2302 /* Set RHS to be the RHS operand of the predicate computed by
2303 conditional statement GS. */
2306 gimple_cond_set_rhs (gimple gs
, tree rhs
)
2308 GIMPLE_CHECK (gs
, GIMPLE_COND
);
2309 gcc_assert (is_gimple_operand (rhs
));
2310 gimple_set_op (gs
, 1, rhs
);
2314 /* Return the label used by conditional statement GS when its
2315 predicate evaluates to true. */
2318 gimple_cond_true_label (const_gimple gs
)
2320 GIMPLE_CHECK (gs
, GIMPLE_COND
);
2321 return gimple_op (gs
, 2);
2325 /* Set LABEL to be the label used by conditional statement GS when its
2326 predicate evaluates to true. */
2329 gimple_cond_set_true_label (gimple gs
, tree label
)
2331 GIMPLE_CHECK (gs
, GIMPLE_COND
);
2332 gcc_assert (!label
|| TREE_CODE (label
) == LABEL_DECL
);
2333 gimple_set_op (gs
, 2, label
);
2337 /* Set LABEL to be the label used by conditional statement GS when its
2338 predicate evaluates to false. */
2341 gimple_cond_set_false_label (gimple gs
, tree label
)
2343 GIMPLE_CHECK (gs
, GIMPLE_COND
);
2344 gcc_assert (!label
|| TREE_CODE (label
) == LABEL_DECL
);
2345 gimple_set_op (gs
, 3, label
);
2349 /* Return the label used by conditional statement GS when its
2350 predicate evaluates to false. */
2353 gimple_cond_false_label (const_gimple gs
)
2355 GIMPLE_CHECK (gs
, GIMPLE_COND
);
2356 return gimple_op (gs
, 3);
2360 /* Set the conditional COND_STMT to be of the form 'if (1 == 0)'. */
2363 gimple_cond_make_false (gimple gs
)
2365 gimple_cond_set_lhs (gs
, boolean_true_node
);
2366 gimple_cond_set_rhs (gs
, boolean_false_node
);
2367 gs
->gsbase
.subcode
= EQ_EXPR
;
2371 /* Set the conditional COND_STMT to be of the form 'if (1 == 1)'. */
2374 gimple_cond_make_true (gimple gs
)
2376 gimple_cond_set_lhs (gs
, boolean_true_node
);
2377 gimple_cond_set_rhs (gs
, boolean_true_node
);
2378 gs
->gsbase
.subcode
= EQ_EXPR
;
2381 /* Check if conditional statemente GS is of the form 'if (1 == 1)',
2382 'if (0 == 0)', 'if (1 != 0)' or 'if (0 != 1)' */
2385 gimple_cond_true_p (const_gimple gs
)
2387 tree lhs
= gimple_cond_lhs (gs
);
2388 tree rhs
= gimple_cond_rhs (gs
);
2389 enum tree_code code
= gimple_cond_code (gs
);
2391 if (lhs
!= boolean_true_node
&& lhs
!= boolean_false_node
)
2394 if (rhs
!= boolean_true_node
&& rhs
!= boolean_false_node
)
2397 if (code
== NE_EXPR
&& lhs
!= rhs
)
2400 if (code
== EQ_EXPR
&& lhs
== rhs
)
2406 /* Check if conditional statement GS is of the form 'if (1 != 1)',
2407 'if (0 != 0)', 'if (1 == 0)' or 'if (0 == 1)' */
2410 gimple_cond_false_p (const_gimple gs
)
2412 tree lhs
= gimple_cond_lhs (gs
);
2413 tree rhs
= gimple_cond_rhs (gs
);
2414 enum tree_code code
= gimple_cond_code (gs
);
2416 if (lhs
!= boolean_true_node
&& lhs
!= boolean_false_node
)
2419 if (rhs
!= boolean_true_node
&& rhs
!= boolean_false_node
)
2422 if (code
== NE_EXPR
&& lhs
== rhs
)
2425 if (code
== EQ_EXPR
&& lhs
!= rhs
)
2431 /* Check if conditional statement GS is of the form 'if (var != 0)' or
2435 gimple_cond_single_var_p (gimple gs
)
2437 if (gimple_cond_code (gs
) == NE_EXPR
2438 && gimple_cond_rhs (gs
) == boolean_false_node
)
2441 if (gimple_cond_code (gs
) == EQ_EXPR
2442 && gimple_cond_rhs (gs
) == boolean_true_node
)
2448 /* Set the code, LHS and RHS of GIMPLE_COND STMT from CODE, LHS and RHS. */
2451 gimple_cond_set_condition (gimple stmt
, enum tree_code code
, tree lhs
, tree rhs
)
2453 gimple_cond_set_code (stmt
, code
);
2454 gimple_cond_set_lhs (stmt
, lhs
);
2455 gimple_cond_set_rhs (stmt
, rhs
);
2458 /* Return the LABEL_DECL node used by GIMPLE_LABEL statement GS. */
2461 gimple_label_label (const_gimple gs
)
2463 GIMPLE_CHECK (gs
, GIMPLE_LABEL
);
2464 return gimple_op (gs
, 0);
2468 /* Set LABEL to be the LABEL_DECL node used by GIMPLE_LABEL statement
2472 gimple_label_set_label (gimple gs
, tree label
)
2474 GIMPLE_CHECK (gs
, GIMPLE_LABEL
);
2475 gcc_assert (TREE_CODE (label
) == LABEL_DECL
);
2476 gimple_set_op (gs
, 0, label
);
2480 /* Return the destination of the unconditional jump GS. */
2483 gimple_goto_dest (const_gimple gs
)
2485 GIMPLE_CHECK (gs
, GIMPLE_GOTO
);
2486 return gimple_op (gs
, 0);
2490 /* Set DEST to be the destination of the unconditonal jump GS. */
2493 gimple_goto_set_dest (gimple gs
, tree dest
)
2495 GIMPLE_CHECK (gs
, GIMPLE_GOTO
);
2496 gcc_assert (is_gimple_operand (dest
));
2497 gimple_set_op (gs
, 0, dest
);
2501 /* Return the variables declared in the GIMPLE_BIND statement GS. */
2504 gimple_bind_vars (const_gimple gs
)
2506 GIMPLE_CHECK (gs
, GIMPLE_BIND
);
2507 return gs
->gimple_bind
.vars
;
2511 /* Set VARS to be the set of variables declared in the GIMPLE_BIND
2515 gimple_bind_set_vars (gimple gs
, tree vars
)
2517 GIMPLE_CHECK (gs
, GIMPLE_BIND
);
2518 gs
->gimple_bind
.vars
= vars
;
2522 /* Append VARS to the set of variables declared in the GIMPLE_BIND
2526 gimple_bind_append_vars (gimple gs
, tree vars
)
2528 GIMPLE_CHECK (gs
, GIMPLE_BIND
);
2529 gs
->gimple_bind
.vars
= chainon (gs
->gimple_bind
.vars
, vars
);
2533 /* Return the GIMPLE sequence contained in the GIMPLE_BIND statement GS. */
2535 static inline gimple_seq
2536 gimple_bind_body (gimple gs
)
2538 GIMPLE_CHECK (gs
, GIMPLE_BIND
);
2539 return gs
->gimple_bind
.body
;
2543 /* Set SEQ to be the GIMPLE sequence contained in the GIMPLE_BIND
2547 gimple_bind_set_body (gimple gs
, gimple_seq seq
)
2549 GIMPLE_CHECK (gs
, GIMPLE_BIND
);
2550 gs
->gimple_bind
.body
= seq
;
2554 /* Append a statement to the end of a GIMPLE_BIND's body. */
2557 gimple_bind_add_stmt (gimple gs
, gimple stmt
)
2559 GIMPLE_CHECK (gs
, GIMPLE_BIND
);
2560 gimple_seq_add_stmt (&gs
->gimple_bind
.body
, stmt
);
2564 /* Append a sequence of statements to the end of a GIMPLE_BIND's body. */
2567 gimple_bind_add_seq (gimple gs
, gimple_seq seq
)
2569 GIMPLE_CHECK (gs
, GIMPLE_BIND
);
2570 gimple_seq_add_seq (&gs
->gimple_bind
.body
, seq
);
2574 /* Return the TREE_BLOCK node associated with GIMPLE_BIND statement
2575 GS. This is analogous to the BIND_EXPR_BLOCK field in trees. */
2578 gimple_bind_block (const_gimple gs
)
2580 GIMPLE_CHECK (gs
, GIMPLE_BIND
);
2581 return gs
->gimple_bind
.block
;
2585 /* Set BLOCK to be the TREE_BLOCK node associated with GIMPLE_BIND
2589 gimple_bind_set_block (gimple gs
, tree block
)
2591 GIMPLE_CHECK (gs
, GIMPLE_BIND
);
2592 gcc_assert (TREE_CODE (block
) == BLOCK
);
2593 gs
->gimple_bind
.block
= block
;
2597 /* Return the number of input operands for GIMPLE_ASM GS. */
2599 static inline unsigned
2600 gimple_asm_ninputs (const_gimple gs
)
2602 GIMPLE_CHECK (gs
, GIMPLE_ASM
);
2603 return gs
->gimple_asm
.ni
;
2607 /* Return the number of output operands for GIMPLE_ASM GS. */
2609 static inline unsigned
2610 gimple_asm_noutputs (const_gimple gs
)
2612 GIMPLE_CHECK (gs
, GIMPLE_ASM
);
2613 return gs
->gimple_asm
.no
;
2617 /* Return the number of clobber operands for GIMPLE_ASM GS. */
2619 static inline unsigned
2620 gimple_asm_nclobbers (const_gimple gs
)
2622 GIMPLE_CHECK (gs
, GIMPLE_ASM
);
2623 return gs
->gimple_asm
.nc
;
2627 /* Return input operand INDEX of GIMPLE_ASM GS. */
2630 gimple_asm_input_op (const_gimple gs
, unsigned index
)
2632 GIMPLE_CHECK (gs
, GIMPLE_ASM
);
2633 gcc_assert (index
<= gs
->gimple_asm
.ni
);
2634 return gimple_op (gs
, index
);
2637 /* Return a pointer to input operand INDEX of GIMPLE_ASM GS. */
2639 static inline tree
*
2640 gimple_asm_input_op_ptr (const_gimple gs
, unsigned index
)
2642 GIMPLE_CHECK (gs
, GIMPLE_ASM
);
2643 gcc_assert (index
<= gs
->gimple_asm
.ni
);
2644 return gimple_op_ptr (gs
, index
);
2648 /* Set IN_OP to be input operand INDEX in GIMPLE_ASM GS. */
2651 gimple_asm_set_input_op (gimple gs
, unsigned index
, tree in_op
)
2653 GIMPLE_CHECK (gs
, GIMPLE_ASM
);
2654 gcc_assert (index
<= gs
->gimple_asm
.ni
);
2655 gcc_assert (TREE_CODE (in_op
) == TREE_LIST
);
2656 gimple_set_op (gs
, index
, in_op
);
2660 /* Return output operand INDEX of GIMPLE_ASM GS. */
2663 gimple_asm_output_op (const_gimple gs
, unsigned index
)
2665 GIMPLE_CHECK (gs
, GIMPLE_ASM
);
2666 gcc_assert (index
<= gs
->gimple_asm
.no
);
2667 return gimple_op (gs
, index
+ gs
->gimple_asm
.ni
);
2670 /* Return a pointer to output operand INDEX of GIMPLE_ASM GS. */
2672 static inline tree
*
2673 gimple_asm_output_op_ptr (const_gimple gs
, unsigned index
)
2675 GIMPLE_CHECK (gs
, GIMPLE_ASM
);
2676 gcc_assert (index
<= gs
->gimple_asm
.no
);
2677 return gimple_op_ptr (gs
, index
+ gs
->gimple_asm
.ni
);
2681 /* Set OUT_OP to be output operand INDEX in GIMPLE_ASM GS. */
2684 gimple_asm_set_output_op (gimple gs
, unsigned index
, tree out_op
)
2686 GIMPLE_CHECK (gs
, GIMPLE_ASM
);
2687 gcc_assert (index
<= gs
->gimple_asm
.no
);
2688 gcc_assert (TREE_CODE (out_op
) == TREE_LIST
);
2689 gimple_set_op (gs
, index
+ gs
->gimple_asm
.ni
, out_op
);
2693 /* Return clobber operand INDEX of GIMPLE_ASM GS. */
2696 gimple_asm_clobber_op (const_gimple gs
, unsigned index
)
2698 GIMPLE_CHECK (gs
, GIMPLE_ASM
);
2699 gcc_assert (index
<= gs
->gimple_asm
.nc
);
2700 return gimple_op (gs
, index
+ gs
->gimple_asm
.ni
+ gs
->gimple_asm
.no
);
2704 /* Set CLOBBER_OP to be clobber operand INDEX in GIMPLE_ASM GS. */
2707 gimple_asm_set_clobber_op (gimple gs
, unsigned index
, tree clobber_op
)
2709 GIMPLE_CHECK (gs
, GIMPLE_ASM
);
2710 gcc_assert (index
<= gs
->gimple_asm
.nc
);
2711 gcc_assert (TREE_CODE (clobber_op
) == TREE_LIST
);
2712 gimple_set_op (gs
, index
+ gs
->gimple_asm
.ni
+ gs
->gimple_asm
.no
, clobber_op
);
2716 /* Return the string representing the assembly instruction in
2719 static inline const char *
2720 gimple_asm_string (const_gimple gs
)
2722 GIMPLE_CHECK (gs
, GIMPLE_ASM
);
2723 return gs
->gimple_asm
.string
;
2727 /* Return true if GS is an asm statement marked volatile. */
2730 gimple_asm_volatile_p (const_gimple gs
)
2732 GIMPLE_CHECK (gs
, GIMPLE_ASM
);
2733 return (gs
->gsbase
.subcode
& GF_ASM_VOLATILE
) != 0;
2737 /* If VOLATLE_P is true, mark asm statement GS as volatile. */
2740 gimple_asm_set_volatile (gimple gs
, bool volatile_p
)
2742 GIMPLE_CHECK (gs
, GIMPLE_ASM
);
2744 gs
->gsbase
.subcode
|= GF_ASM_VOLATILE
;
2746 gs
->gsbase
.subcode
&= ~GF_ASM_VOLATILE
;
2750 /* If INPUT_P is true, mark asm GS as an ASM_INPUT. */
2753 gimple_asm_set_input (gimple gs
, bool input_p
)
2755 GIMPLE_CHECK (gs
, GIMPLE_ASM
);
2757 gs
->gsbase
.subcode
|= GF_ASM_INPUT
;
2759 gs
->gsbase
.subcode
&= ~GF_ASM_INPUT
;
2763 /* Return true if asm GS is an ASM_INPUT. */
2766 gimple_asm_input_p (const_gimple gs
)
2768 GIMPLE_CHECK (gs
, GIMPLE_ASM
);
2769 return (gs
->gsbase
.subcode
& GF_ASM_INPUT
) != 0;
2773 /* Return the types handled by GIMPLE_CATCH statement GS. */
2776 gimple_catch_types (const_gimple gs
)
2778 GIMPLE_CHECK (gs
, GIMPLE_CATCH
);
2779 return gs
->gimple_catch
.types
;
2783 /* Return a pointer to the types handled by GIMPLE_CATCH statement GS. */
2785 static inline tree
*
2786 gimple_catch_types_ptr (gimple gs
)
2788 GIMPLE_CHECK (gs
, GIMPLE_CATCH
);
2789 return &gs
->gimple_catch
.types
;
2793 /* Return the GIMPLE sequence representing the body of the handler of
2794 GIMPLE_CATCH statement GS. */
2796 static inline gimple_seq
2797 gimple_catch_handler (gimple gs
)
2799 GIMPLE_CHECK (gs
, GIMPLE_CATCH
);
2800 return gs
->gimple_catch
.handler
;
2804 /* Return a pointer to the GIMPLE sequence representing the body of
2805 the handler of GIMPLE_CATCH statement GS. */
2807 static inline gimple_seq
*
2808 gimple_catch_handler_ptr (gimple gs
)
2810 GIMPLE_CHECK (gs
, GIMPLE_CATCH
);
2811 return &gs
->gimple_catch
.handler
;
2815 /* Set T to be the set of types handled by GIMPLE_CATCH GS. */
2818 gimple_catch_set_types (gimple gs
, tree t
)
2820 GIMPLE_CHECK (gs
, GIMPLE_CATCH
);
2821 gs
->gimple_catch
.types
= t
;
2825 /* Set HANDLER to be the body of GIMPLE_CATCH GS. */
2828 gimple_catch_set_handler (gimple gs
, gimple_seq handler
)
2830 GIMPLE_CHECK (gs
, GIMPLE_CATCH
);
2831 gs
->gimple_catch
.handler
= handler
;
2835 /* Return the types handled by GIMPLE_EH_FILTER statement GS. */
2838 gimple_eh_filter_types (const_gimple gs
)
2840 GIMPLE_CHECK (gs
, GIMPLE_EH_FILTER
);
2841 return gs
->gimple_eh_filter
.types
;
2845 /* Return a pointer to the types handled by GIMPLE_EH_FILTER statement
2848 static inline tree
*
2849 gimple_eh_filter_types_ptr (gimple gs
)
2851 GIMPLE_CHECK (gs
, GIMPLE_EH_FILTER
);
2852 return &gs
->gimple_eh_filter
.types
;
2856 /* Return the sequence of statement to execute when GIMPLE_EH_FILTER
2859 static inline gimple_seq
2860 gimple_eh_filter_failure (gimple gs
)
2862 GIMPLE_CHECK (gs
, GIMPLE_EH_FILTER
);
2863 return gs
->gimple_eh_filter
.failure
;
2867 /* Set TYPES to be the set of types handled by GIMPLE_EH_FILTER GS. */
2870 gimple_eh_filter_set_types (gimple gs
, tree types
)
2872 GIMPLE_CHECK (gs
, GIMPLE_EH_FILTER
);
2873 gs
->gimple_eh_filter
.types
= types
;
2877 /* Set FAILURE to be the sequence of statements to execute on failure
2878 for GIMPLE_EH_FILTER GS. */
2881 gimple_eh_filter_set_failure (gimple gs
, gimple_seq failure
)
2883 GIMPLE_CHECK (gs
, GIMPLE_EH_FILTER
);
2884 gs
->gimple_eh_filter
.failure
= failure
;
2887 /* Return the EH_FILTER_MUST_NOT_THROW flag. */
2891 gimple_eh_filter_must_not_throw (gimple gs
)
2893 GIMPLE_CHECK (gs
, GIMPLE_EH_FILTER
);
2894 return gs
->gsbase
.subcode
!= 0;
2897 /* Set the EH_FILTER_MUST_NOT_THROW flag to the value MNTP. */
2900 gimple_eh_filter_set_must_not_throw (gimple gs
, bool mntp
)
2902 GIMPLE_CHECK (gs
, GIMPLE_EH_FILTER
);
2903 gs
->gsbase
.subcode
= (unsigned int) mntp
;
2907 /* GIMPLE_TRY accessors. */
2909 /* Return the kind of try block represented by GIMPLE_TRY GS. This is
2910 either GIMPLE_TRY_CATCH or GIMPLE_TRY_FINALLY. */
2912 static inline enum gimple_try_flags
2913 gimple_try_kind (const_gimple gs
)
2915 GIMPLE_CHECK (gs
, GIMPLE_TRY
);
2916 return (enum gimple_try_flags
) (gs
->gsbase
.subcode
& GIMPLE_TRY_KIND
);
2920 /* Set the kind of try block represented by GIMPLE_TRY GS. */
2923 gimple_try_set_kind (gimple gs
, enum gimple_try_flags kind
)
2925 GIMPLE_CHECK (gs
, GIMPLE_TRY
);
2926 gcc_assert (kind
== GIMPLE_TRY_CATCH
|| kind
== GIMPLE_TRY_FINALLY
);
2927 if (gimple_try_kind (gs
) != kind
)
2928 gs
->gsbase
.subcode
= (unsigned int) kind
;
2932 /* Return the GIMPLE_TRY_CATCH_IS_CLEANUP flag. */
2935 gimple_try_catch_is_cleanup (const_gimple gs
)
2937 gcc_assert (gimple_try_kind (gs
) == GIMPLE_TRY_CATCH
);
2938 return (gs
->gsbase
.subcode
& GIMPLE_TRY_CATCH_IS_CLEANUP
) != 0;
2942 /* Return the sequence of statements used as the body for GIMPLE_TRY GS. */
2944 static inline gimple_seq
2945 gimple_try_eval (gimple gs
)
2947 GIMPLE_CHECK (gs
, GIMPLE_TRY
);
2948 return gs
->gimple_try
.eval
;
2952 /* Return the sequence of statements used as the cleanup body for
2955 static inline gimple_seq
2956 gimple_try_cleanup (gimple gs
)
2958 GIMPLE_CHECK (gs
, GIMPLE_TRY
);
2959 return gs
->gimple_try
.cleanup
;
2963 /* Set the GIMPLE_TRY_CATCH_IS_CLEANUP flag. */
2966 gimple_try_set_catch_is_cleanup (gimple g
, bool catch_is_cleanup
)
2968 gcc_assert (gimple_try_kind (g
) == GIMPLE_TRY_CATCH
);
2969 if (catch_is_cleanup
)
2970 g
->gsbase
.subcode
|= GIMPLE_TRY_CATCH_IS_CLEANUP
;
2972 g
->gsbase
.subcode
&= ~GIMPLE_TRY_CATCH_IS_CLEANUP
;
2976 /* Set EVAL to be the sequence of statements to use as the body for
2980 gimple_try_set_eval (gimple gs
, gimple_seq eval
)
2982 GIMPLE_CHECK (gs
, GIMPLE_TRY
);
2983 gs
->gimple_try
.eval
= eval
;
2987 /* Set CLEANUP to be the sequence of statements to use as the cleanup
2988 body for GIMPLE_TRY GS. */
2991 gimple_try_set_cleanup (gimple gs
, gimple_seq cleanup
)
2993 GIMPLE_CHECK (gs
, GIMPLE_TRY
);
2994 gs
->gimple_try
.cleanup
= cleanup
;
2998 /* Return the cleanup sequence for cleanup statement GS. */
3000 static inline gimple_seq
3001 gimple_wce_cleanup (gimple gs
)
3003 GIMPLE_CHECK (gs
, GIMPLE_WITH_CLEANUP_EXPR
);
3004 return gs
->gimple_wce
.cleanup
;
3008 /* Set CLEANUP to be the cleanup sequence for GS. */
3011 gimple_wce_set_cleanup (gimple gs
, gimple_seq cleanup
)
3013 GIMPLE_CHECK (gs
, GIMPLE_WITH_CLEANUP_EXPR
);
3014 gs
->gimple_wce
.cleanup
= cleanup
;
3018 /* Return the CLEANUP_EH_ONLY flag for a WCE tuple. */
3021 gimple_wce_cleanup_eh_only (const_gimple gs
)
3023 GIMPLE_CHECK (gs
, GIMPLE_WITH_CLEANUP_EXPR
);
3024 return gs
->gsbase
.subcode
!= 0;
3028 /* Set the CLEANUP_EH_ONLY flag for a WCE tuple. */
3031 gimple_wce_set_cleanup_eh_only (gimple gs
, bool eh_only_p
)
3033 GIMPLE_CHECK (gs
, GIMPLE_WITH_CLEANUP_EXPR
);
3034 gs
->gsbase
.subcode
= (unsigned int) eh_only_p
;
3038 /* Return the maximum number of arguments supported by GIMPLE_PHI GS. */
3040 static inline unsigned
3041 gimple_phi_capacity (const_gimple gs
)
3043 GIMPLE_CHECK (gs
, GIMPLE_PHI
);
3044 return gs
->gimple_phi
.capacity
;
3048 /* Return the number of arguments in GIMPLE_PHI GS. This must always
3049 be exactly the number of incoming edges for the basic block holding
3052 static inline unsigned
3053 gimple_phi_num_args (const_gimple gs
)
3055 GIMPLE_CHECK (gs
, GIMPLE_PHI
);
3056 return gs
->gimple_phi
.nargs
;
3060 /* Return the SSA name created by GIMPLE_PHI GS. */
3063 gimple_phi_result (const_gimple gs
)
3065 GIMPLE_CHECK (gs
, GIMPLE_PHI
);
3066 return gs
->gimple_phi
.result
;
3069 /* Return a pointer to the SSA name created by GIMPLE_PHI GS. */
3071 static inline tree
*
3072 gimple_phi_result_ptr (gimple gs
)
3074 GIMPLE_CHECK (gs
, GIMPLE_PHI
);
3075 return &gs
->gimple_phi
.result
;
3078 /* Set RESULT to be the SSA name created by GIMPLE_PHI GS. */
3081 gimple_phi_set_result (gimple gs
, tree result
)
3083 GIMPLE_CHECK (gs
, GIMPLE_PHI
);
3084 gs
->gimple_phi
.result
= result
;
3088 /* Return the PHI argument corresponding to incoming edge INDEX for
3091 static inline struct phi_arg_d
*
3092 gimple_phi_arg (gimple gs
, unsigned index
)
3094 GIMPLE_CHECK (gs
, GIMPLE_PHI
);
3095 gcc_assert (index
<= gs
->gimple_phi
.capacity
);
3096 return &(gs
->gimple_phi
.args
[index
]);
3099 /* Set PHIARG to be the argument corresponding to incoming edge INDEX
3100 for GIMPLE_PHI GS. */
3103 gimple_phi_set_arg (gimple gs
, unsigned index
, struct phi_arg_d
* phiarg
)
3105 GIMPLE_CHECK (gs
, GIMPLE_PHI
);
3106 gcc_assert (index
<= gs
->gimple_phi
.nargs
);
3107 memcpy (gs
->gimple_phi
.args
+ index
, phiarg
, sizeof (struct phi_arg_d
));
3110 /* Return the region number for GIMPLE_RESX GS. */
3113 gimple_resx_region (const_gimple gs
)
3115 GIMPLE_CHECK (gs
, GIMPLE_RESX
);
3116 return gs
->gimple_resx
.region
;
3119 /* Set REGION to be the region number for GIMPLE_RESX GS. */
3122 gimple_resx_set_region (gimple gs
, int region
)
3124 GIMPLE_CHECK (gs
, GIMPLE_RESX
);
3125 gs
->gimple_resx
.region
= region
;
3129 /* Return the number of labels associated with the switch statement GS. */
3131 static inline unsigned
3132 gimple_switch_num_labels (const_gimple gs
)
3135 GIMPLE_CHECK (gs
, GIMPLE_SWITCH
);
3136 num_ops
= gimple_num_ops (gs
);
3137 gcc_assert (num_ops
> 1);
3142 /* Set NLABELS to be the number of labels for the switch statement GS. */
3145 gimple_switch_set_num_labels (gimple g
, unsigned nlabels
)
3147 GIMPLE_CHECK (g
, GIMPLE_SWITCH
);
3148 gimple_set_num_ops (g
, nlabels
+ 1);
3152 /* Return the index variable used by the switch statement GS. */
3155 gimple_switch_index (const_gimple gs
)
3157 GIMPLE_CHECK (gs
, GIMPLE_SWITCH
);
3158 return gimple_op (gs
, 0);
3162 /* Return a pointer to the index variable for the switch statement GS. */
3164 static inline tree
*
3165 gimple_switch_index_ptr (const_gimple gs
)
3167 GIMPLE_CHECK (gs
, GIMPLE_SWITCH
);
3168 return gimple_op_ptr (gs
, 0);
3172 /* Set INDEX to be the index variable for switch statement GS. */
3175 gimple_switch_set_index (gimple gs
, tree index
)
3177 GIMPLE_CHECK (gs
, GIMPLE_SWITCH
);
3178 gcc_assert (SSA_VAR_P (index
) || CONSTANT_CLASS_P (index
));
3179 gimple_set_op (gs
, 0, index
);
3183 /* Return the label numbered INDEX. The default label is 0, followed by any
3184 labels in a switch statement. */
3187 gimple_switch_label (const_gimple gs
, unsigned index
)
3189 GIMPLE_CHECK (gs
, GIMPLE_SWITCH
);
3190 gcc_assert (gimple_num_ops (gs
) > index
+ 1);
3191 return gimple_op (gs
, index
+ 1);
3194 /* Set the label number INDEX to LABEL. 0 is always the default label. */
3197 gimple_switch_set_label (gimple gs
, unsigned index
, tree label
)
3199 GIMPLE_CHECK (gs
, GIMPLE_SWITCH
);
3200 gcc_assert (gimple_num_ops (gs
) > index
+ 1);
3201 gcc_assert (label
== NULL_TREE
|| TREE_CODE (label
) == CASE_LABEL_EXPR
);
3202 gimple_set_op (gs
, index
+ 1, label
);
3205 /* Return the default label for a switch statement. */
3208 gimple_switch_default_label (const_gimple gs
)
3210 return gimple_switch_label (gs
, 0);
3213 /* Set the default label for a switch statement. */
3216 gimple_switch_set_default_label (gimple gs
, tree label
)
3218 gimple_switch_set_label (gs
, 0, label
);
3222 /* Return the body for the OMP statement GS. */
3224 static inline gimple_seq
3225 gimple_omp_body (gimple gs
)
3227 return gs
->omp
.body
;
3230 /* Set BODY to be the body for the OMP statement GS. */
3233 gimple_omp_set_body (gimple gs
, gimple_seq body
)
3235 gs
->omp
.body
= body
;
3239 /* Return the name associated with OMP_CRITICAL statement GS. */
3242 gimple_omp_critical_name (const_gimple gs
)
3244 GIMPLE_CHECK (gs
, GIMPLE_OMP_CRITICAL
);
3245 return gs
->gimple_omp_critical
.name
;
3249 /* Return a pointer to the name associated with OMP critical statement GS. */
3251 static inline tree
*
3252 gimple_omp_critical_name_ptr (gimple gs
)
3254 GIMPLE_CHECK (gs
, GIMPLE_OMP_CRITICAL
);
3255 return &gs
->gimple_omp_critical
.name
;
3259 /* Set NAME to be the name associated with OMP critical statement GS. */
3262 gimple_omp_critical_set_name (gimple gs
, tree name
)
3264 GIMPLE_CHECK (gs
, GIMPLE_OMP_CRITICAL
);
3265 gs
->gimple_omp_critical
.name
= name
;
3269 /* Return the clauses associated with OMP_FOR GS. */
3272 gimple_omp_for_clauses (const_gimple gs
)
3274 GIMPLE_CHECK (gs
, GIMPLE_OMP_FOR
);
3275 return gs
->gimple_omp_for
.clauses
;
3279 /* Return a pointer to the OMP_FOR GS. */
3281 static inline tree
*
3282 gimple_omp_for_clauses_ptr (gimple gs
)
3284 GIMPLE_CHECK (gs
, GIMPLE_OMP_FOR
);
3285 return &gs
->gimple_omp_for
.clauses
;
3289 /* Set CLAUSES to be the list of clauses associated with OMP_FOR GS. */
3292 gimple_omp_for_set_clauses (gimple gs
, tree clauses
)
3294 GIMPLE_CHECK (gs
, GIMPLE_OMP_FOR
);
3295 gs
->gimple_omp_for
.clauses
= clauses
;
3299 /* Get the collapse count of OMP_FOR GS. */
3301 static inline size_t
3302 gimple_omp_for_collapse (gimple gs
)
3304 GIMPLE_CHECK (gs
, GIMPLE_OMP_FOR
);
3305 return gs
->gimple_omp_for
.collapse
;
3309 /* Return the index variable for OMP_FOR GS. */
3312 gimple_omp_for_index (const_gimple gs
, size_t i
)
3314 GIMPLE_CHECK (gs
, GIMPLE_OMP_FOR
);
3315 gcc_assert (i
< gs
->gimple_omp_for
.collapse
);
3316 return gs
->gimple_omp_for
.iter
[i
].index
;
3320 /* Return a pointer to the index variable for OMP_FOR GS. */
3322 static inline tree
*
3323 gimple_omp_for_index_ptr (gimple gs
, size_t i
)
3325 GIMPLE_CHECK (gs
, GIMPLE_OMP_FOR
);
3326 gcc_assert (i
< gs
->gimple_omp_for
.collapse
);
3327 return &gs
->gimple_omp_for
.iter
[i
].index
;
3331 /* Set INDEX to be the index variable for OMP_FOR GS. */
3334 gimple_omp_for_set_index (gimple gs
, size_t i
, tree index
)
3336 GIMPLE_CHECK (gs
, GIMPLE_OMP_FOR
);
3337 gcc_assert (i
< gs
->gimple_omp_for
.collapse
);
3338 gs
->gimple_omp_for
.iter
[i
].index
= index
;
3342 /* Return the initial value for OMP_FOR GS. */
3345 gimple_omp_for_initial (const_gimple gs
, size_t i
)
3347 GIMPLE_CHECK (gs
, GIMPLE_OMP_FOR
);
3348 gcc_assert (i
< gs
->gimple_omp_for
.collapse
);
3349 return gs
->gimple_omp_for
.iter
[i
].initial
;
3353 /* Return a pointer to the initial value for OMP_FOR GS. */
3355 static inline tree
*
3356 gimple_omp_for_initial_ptr (gimple gs
, size_t i
)
3358 GIMPLE_CHECK (gs
, GIMPLE_OMP_FOR
);
3359 gcc_assert (i
< gs
->gimple_omp_for
.collapse
);
3360 return &gs
->gimple_omp_for
.iter
[i
].initial
;
3364 /* Set INITIAL to be the initial value for OMP_FOR GS. */
3367 gimple_omp_for_set_initial (gimple gs
, size_t i
, tree initial
)
3369 GIMPLE_CHECK (gs
, GIMPLE_OMP_FOR
);
3370 gcc_assert (i
< gs
->gimple_omp_for
.collapse
);
3371 gs
->gimple_omp_for
.iter
[i
].initial
= initial
;
3375 /* Return the final value for OMP_FOR GS. */
3378 gimple_omp_for_final (const_gimple gs
, size_t i
)
3380 GIMPLE_CHECK (gs
, GIMPLE_OMP_FOR
);
3381 gcc_assert (i
< gs
->gimple_omp_for
.collapse
);
3382 return gs
->gimple_omp_for
.iter
[i
].final
;
3386 /* Return a pointer to the final value for OMP_FOR GS. */
3388 static inline tree
*
3389 gimple_omp_for_final_ptr (gimple gs
, size_t i
)
3391 GIMPLE_CHECK (gs
, GIMPLE_OMP_FOR
);
3392 gcc_assert (i
< gs
->gimple_omp_for
.collapse
);
3393 return &gs
->gimple_omp_for
.iter
[i
].final
;
3397 /* Set FINAL to be the final value for OMP_FOR GS. */
3400 gimple_omp_for_set_final (gimple gs
, size_t i
, tree final
)
3402 GIMPLE_CHECK (gs
, GIMPLE_OMP_FOR
);
3403 gcc_assert (i
< gs
->gimple_omp_for
.collapse
);
3404 gs
->gimple_omp_for
.iter
[i
].final
= final
;
3408 /* Return the increment value for OMP_FOR GS. */
3411 gimple_omp_for_incr (const_gimple gs
, size_t i
)
3413 GIMPLE_CHECK (gs
, GIMPLE_OMP_FOR
);
3414 gcc_assert (i
< gs
->gimple_omp_for
.collapse
);
3415 return gs
->gimple_omp_for
.iter
[i
].incr
;
3419 /* Return a pointer to the increment value for OMP_FOR GS. */
3421 static inline tree
*
3422 gimple_omp_for_incr_ptr (gimple gs
, size_t i
)
3424 GIMPLE_CHECK (gs
, GIMPLE_OMP_FOR
);
3425 gcc_assert (i
< gs
->gimple_omp_for
.collapse
);
3426 return &gs
->gimple_omp_for
.iter
[i
].incr
;
3430 /* Set INCR to be the increment value for OMP_FOR GS. */
3433 gimple_omp_for_set_incr (gimple gs
, size_t i
, tree incr
)
3435 GIMPLE_CHECK (gs
, GIMPLE_OMP_FOR
);
3436 gcc_assert (i
< gs
->gimple_omp_for
.collapse
);
3437 gs
->gimple_omp_for
.iter
[i
].incr
= incr
;
3441 /* Return the sequence of statements to execute before the OMP_FOR
3442 statement GS starts. */
3444 static inline gimple_seq
3445 gimple_omp_for_pre_body (gimple gs
)
3447 GIMPLE_CHECK (gs
, GIMPLE_OMP_FOR
);
3448 return gs
->gimple_omp_for
.pre_body
;
3452 /* Set PRE_BODY to be the sequence of statements to execute before the
3453 OMP_FOR statement GS starts. */
3456 gimple_omp_for_set_pre_body (gimple gs
, gimple_seq pre_body
)
3458 GIMPLE_CHECK (gs
, GIMPLE_OMP_FOR
);
3459 gs
->gimple_omp_for
.pre_body
= pre_body
;
3463 /* Return the clauses associated with OMP_PARALLEL GS. */
3466 gimple_omp_parallel_clauses (const_gimple gs
)
3468 GIMPLE_CHECK (gs
, GIMPLE_OMP_PARALLEL
);
3469 return gs
->gimple_omp_parallel
.clauses
;
3473 /* Return a pointer to the clauses associated with OMP_PARALLEL GS. */
3475 static inline tree
*
3476 gimple_omp_parallel_clauses_ptr (gimple gs
)
3478 GIMPLE_CHECK (gs
, GIMPLE_OMP_PARALLEL
);
3479 return &gs
->gimple_omp_parallel
.clauses
;
3483 /* Set CLAUSES to be the list of clauses associated with OMP_PARALLEL
3487 gimple_omp_parallel_set_clauses (gimple gs
, tree clauses
)
3489 GIMPLE_CHECK (gs
, GIMPLE_OMP_PARALLEL
);
3490 gs
->gimple_omp_parallel
.clauses
= clauses
;
3494 /* Return the child function used to hold the body of OMP_PARALLEL GS. */
3497 gimple_omp_parallel_child_fn (const_gimple gs
)
3499 GIMPLE_CHECK (gs
, GIMPLE_OMP_PARALLEL
);
3500 return gs
->gimple_omp_parallel
.child_fn
;
3503 /* Return a pointer to the child function used to hold the body of
3506 static inline tree
*
3507 gimple_omp_parallel_child_fn_ptr (gimple gs
)
3509 GIMPLE_CHECK (gs
, GIMPLE_OMP_PARALLEL
);
3510 return &gs
->gimple_omp_parallel
.child_fn
;
3514 /* Set CHILD_FN to be the child function for OMP_PARALLEL GS. */
3517 gimple_omp_parallel_set_child_fn (gimple gs
, tree child_fn
)
3519 GIMPLE_CHECK (gs
, GIMPLE_OMP_PARALLEL
);
3520 gs
->gimple_omp_parallel
.child_fn
= child_fn
;
3524 /* Return the artificial argument used to send variables and values
3525 from the parent to the children threads in OMP_PARALLEL GS. */
3528 gimple_omp_parallel_data_arg (const_gimple gs
)
3530 GIMPLE_CHECK (gs
, GIMPLE_OMP_PARALLEL
);
3531 return gs
->gimple_omp_parallel
.data_arg
;
3535 /* Return a pointer to the data argument for OMP_PARALLEL GS. */
3537 static inline tree
*
3538 gimple_omp_parallel_data_arg_ptr (gimple gs
)
3540 GIMPLE_CHECK (gs
, GIMPLE_OMP_PARALLEL
);
3541 return &gs
->gimple_omp_parallel
.data_arg
;
3545 /* Set DATA_ARG to be the data argument for OMP_PARALLEL GS. */
3548 gimple_omp_parallel_set_data_arg (gimple gs
, tree data_arg
)
3550 GIMPLE_CHECK (gs
, GIMPLE_OMP_PARALLEL
);
3551 gs
->gimple_omp_parallel
.data_arg
= data_arg
;
3555 /* Return the clauses associated with OMP_TASK GS. */
3558 gimple_omp_task_clauses (const_gimple gs
)
3560 GIMPLE_CHECK (gs
, GIMPLE_OMP_TASK
);
3561 return gs
->gimple_omp_parallel
.clauses
;
3565 /* Return a pointer to the clauses associated with OMP_TASK GS. */
3567 static inline tree
*
3568 gimple_omp_task_clauses_ptr (gimple gs
)
3570 GIMPLE_CHECK (gs
, GIMPLE_OMP_TASK
);
3571 return &gs
->gimple_omp_parallel
.clauses
;
3575 /* Set CLAUSES to be the list of clauses associated with OMP_TASK
3579 gimple_omp_task_set_clauses (gimple gs
, tree clauses
)
3581 GIMPLE_CHECK (gs
, GIMPLE_OMP_TASK
);
3582 gs
->gimple_omp_parallel
.clauses
= clauses
;
3586 /* Return the child function used to hold the body of OMP_TASK GS. */
3589 gimple_omp_task_child_fn (const_gimple gs
)
3591 GIMPLE_CHECK (gs
, GIMPLE_OMP_TASK
);
3592 return gs
->gimple_omp_parallel
.child_fn
;
3595 /* Return a pointer to the child function used to hold the body of
3598 static inline tree
*
3599 gimple_omp_task_child_fn_ptr (gimple gs
)
3601 GIMPLE_CHECK (gs
, GIMPLE_OMP_TASK
);
3602 return &gs
->gimple_omp_parallel
.child_fn
;
3606 /* Set CHILD_FN to be the child function for OMP_TASK GS. */
3609 gimple_omp_task_set_child_fn (gimple gs
, tree child_fn
)
3611 GIMPLE_CHECK (gs
, GIMPLE_OMP_TASK
);
3612 gs
->gimple_omp_parallel
.child_fn
= child_fn
;
3616 /* Return the artificial argument used to send variables and values
3617 from the parent to the children threads in OMP_TASK GS. */
3620 gimple_omp_task_data_arg (const_gimple gs
)
3622 GIMPLE_CHECK (gs
, GIMPLE_OMP_TASK
);
3623 return gs
->gimple_omp_parallel
.data_arg
;
3627 /* Return a pointer to the data argument for OMP_TASK GS. */
3629 static inline tree
*
3630 gimple_omp_task_data_arg_ptr (gimple gs
)
3632 GIMPLE_CHECK (gs
, GIMPLE_OMP_TASK
);
3633 return &gs
->gimple_omp_parallel
.data_arg
;
3637 /* Set DATA_ARG to be the data argument for OMP_TASK GS. */
3640 gimple_omp_task_set_data_arg (gimple gs
, tree data_arg
)
3642 GIMPLE_CHECK (gs
, GIMPLE_OMP_TASK
);
3643 gs
->gimple_omp_parallel
.data_arg
= data_arg
;
3647 /* Return the clauses associated with OMP_TASK GS. */
3650 gimple_omp_taskreg_clauses (const_gimple gs
)
3652 if (gimple_code (gs
) != GIMPLE_OMP_PARALLEL
)
3653 GIMPLE_CHECK (gs
, GIMPLE_OMP_TASK
);
3654 return gs
->gimple_omp_parallel
.clauses
;
3658 /* Return a pointer to the clauses associated with OMP_TASK GS. */
3660 static inline tree
*
3661 gimple_omp_taskreg_clauses_ptr (gimple gs
)
3663 if (gimple_code (gs
) != GIMPLE_OMP_PARALLEL
)
3664 GIMPLE_CHECK (gs
, GIMPLE_OMP_TASK
);
3665 return &gs
->gimple_omp_parallel
.clauses
;
3669 /* Set CLAUSES to be the list of clauses associated with OMP_TASK
3673 gimple_omp_taskreg_set_clauses (gimple gs
, tree clauses
)
3675 if (gimple_code (gs
) != GIMPLE_OMP_PARALLEL
)
3676 GIMPLE_CHECK (gs
, GIMPLE_OMP_TASK
);
3677 gs
->gimple_omp_parallel
.clauses
= clauses
;
3681 /* Return the child function used to hold the body of OMP_TASK GS. */
3684 gimple_omp_taskreg_child_fn (const_gimple gs
)
3686 if (gimple_code (gs
) != GIMPLE_OMP_PARALLEL
)
3687 GIMPLE_CHECK (gs
, GIMPLE_OMP_TASK
);
3688 return gs
->gimple_omp_parallel
.child_fn
;
3691 /* Return a pointer to the child function used to hold the body of
3694 static inline tree
*
3695 gimple_omp_taskreg_child_fn_ptr (gimple gs
)
3697 if (gimple_code (gs
) != GIMPLE_OMP_PARALLEL
)
3698 GIMPLE_CHECK (gs
, GIMPLE_OMP_TASK
);
3699 return &gs
->gimple_omp_parallel
.child_fn
;
3703 /* Set CHILD_FN to be the child function for OMP_TASK GS. */
3706 gimple_omp_taskreg_set_child_fn (gimple gs
, tree child_fn
)
3708 if (gimple_code (gs
) != GIMPLE_OMP_PARALLEL
)
3709 GIMPLE_CHECK (gs
, GIMPLE_OMP_TASK
);
3710 gs
->gimple_omp_parallel
.child_fn
= child_fn
;
3714 /* Return the artificial argument used to send variables and values
3715 from the parent to the children threads in OMP_TASK GS. */
3718 gimple_omp_taskreg_data_arg (const_gimple gs
)
3720 if (gimple_code (gs
) != GIMPLE_OMP_PARALLEL
)
3721 GIMPLE_CHECK (gs
, GIMPLE_OMP_TASK
);
3722 return gs
->gimple_omp_parallel
.data_arg
;
3726 /* Return a pointer to the data argument for OMP_TASK GS. */
3728 static inline tree
*
3729 gimple_omp_taskreg_data_arg_ptr (gimple gs
)
3731 if (gimple_code (gs
) != GIMPLE_OMP_PARALLEL
)
3732 GIMPLE_CHECK (gs
, GIMPLE_OMP_TASK
);
3733 return &gs
->gimple_omp_parallel
.data_arg
;
3737 /* Set DATA_ARG to be the data argument for OMP_TASK GS. */
3740 gimple_omp_taskreg_set_data_arg (gimple gs
, tree data_arg
)
3742 if (gimple_code (gs
) != GIMPLE_OMP_PARALLEL
)
3743 GIMPLE_CHECK (gs
, GIMPLE_OMP_TASK
);
3744 gs
->gimple_omp_parallel
.data_arg
= data_arg
;
3748 /* Return the copy function used to hold the body of OMP_TASK GS. */
3751 gimple_omp_task_copy_fn (const_gimple gs
)
3753 GIMPLE_CHECK (gs
, GIMPLE_OMP_TASK
);
3754 return gs
->gimple_omp_task
.copy_fn
;
3757 /* Return a pointer to the copy function used to hold the body of
3760 static inline tree
*
3761 gimple_omp_task_copy_fn_ptr (gimple gs
)
3763 GIMPLE_CHECK (gs
, GIMPLE_OMP_TASK
);
3764 return &gs
->gimple_omp_task
.copy_fn
;
3768 /* Set CHILD_FN to be the copy function for OMP_TASK GS. */
3771 gimple_omp_task_set_copy_fn (gimple gs
, tree copy_fn
)
3773 GIMPLE_CHECK (gs
, GIMPLE_OMP_TASK
);
3774 gs
->gimple_omp_task
.copy_fn
= copy_fn
;
3778 /* Return size of the data block in bytes in OMP_TASK GS. */
3781 gimple_omp_task_arg_size (const_gimple gs
)
3783 GIMPLE_CHECK (gs
, GIMPLE_OMP_TASK
);
3784 return gs
->gimple_omp_task
.arg_size
;
3788 /* Return a pointer to the data block size for OMP_TASK GS. */
3790 static inline tree
*
3791 gimple_omp_task_arg_size_ptr (gimple gs
)
3793 GIMPLE_CHECK (gs
, GIMPLE_OMP_TASK
);
3794 return &gs
->gimple_omp_task
.arg_size
;
3798 /* Set ARG_SIZE to be the data block size for OMP_TASK GS. */
3801 gimple_omp_task_set_arg_size (gimple gs
, tree arg_size
)
3803 GIMPLE_CHECK (gs
, GIMPLE_OMP_TASK
);
3804 gs
->gimple_omp_task
.arg_size
= arg_size
;
3808 /* Return align of the data block in bytes in OMP_TASK GS. */
3811 gimple_omp_task_arg_align (const_gimple gs
)
3813 GIMPLE_CHECK (gs
, GIMPLE_OMP_TASK
);
3814 return gs
->gimple_omp_task
.arg_align
;
3818 /* Return a pointer to the data block align for OMP_TASK GS. */
3820 static inline tree
*
3821 gimple_omp_task_arg_align_ptr (gimple gs
)
3823 GIMPLE_CHECK (gs
, GIMPLE_OMP_TASK
);
3824 return &gs
->gimple_omp_task
.arg_align
;
3828 /* Set ARG_SIZE to be the data block align for OMP_TASK GS. */
3831 gimple_omp_task_set_arg_align (gimple gs
, tree arg_align
)
3833 GIMPLE_CHECK (gs
, GIMPLE_OMP_TASK
);
3834 gs
->gimple_omp_task
.arg_align
= arg_align
;
3838 /* Return the clauses associated with OMP_SINGLE GS. */
3841 gimple_omp_single_clauses (const_gimple gs
)
3843 GIMPLE_CHECK (gs
, GIMPLE_OMP_SINGLE
);
3844 return gs
->gimple_omp_single
.clauses
;
3848 /* Return a pointer to the clauses associated with OMP_SINGLE GS. */
3850 static inline tree
*
3851 gimple_omp_single_clauses_ptr (gimple gs
)
3853 GIMPLE_CHECK (gs
, GIMPLE_OMP_SINGLE
);
3854 return &gs
->gimple_omp_single
.clauses
;
3858 /* Set CLAUSES to be the clauses associated with OMP_SINGLE GS. */
3861 gimple_omp_single_set_clauses (gimple gs
, tree clauses
)
3863 GIMPLE_CHECK (gs
, GIMPLE_OMP_SINGLE
);
3864 gs
->gimple_omp_single
.clauses
= clauses
;
3868 /* Return the clauses associated with OMP_SECTIONS GS. */
3871 gimple_omp_sections_clauses (const_gimple gs
)
3873 GIMPLE_CHECK (gs
, GIMPLE_OMP_SECTIONS
);
3874 return gs
->gimple_omp_sections
.clauses
;
3878 /* Return a pointer to the clauses associated with OMP_SECTIONS GS. */
3880 static inline tree
*
3881 gimple_omp_sections_clauses_ptr (gimple gs
)
3883 GIMPLE_CHECK (gs
, GIMPLE_OMP_SECTIONS
);
3884 return &gs
->gimple_omp_sections
.clauses
;
3888 /* Set CLAUSES to be the set of clauses associated with OMP_SECTIONS
3892 gimple_omp_sections_set_clauses (gimple gs
, tree clauses
)
3894 GIMPLE_CHECK (gs
, GIMPLE_OMP_SECTIONS
);
3895 gs
->gimple_omp_sections
.clauses
= clauses
;
3899 /* Return the control variable associated with the GIMPLE_OMP_SECTIONS
3903 gimple_omp_sections_control (const_gimple gs
)
3905 GIMPLE_CHECK (gs
, GIMPLE_OMP_SECTIONS
);
3906 return gs
->gimple_omp_sections
.control
;
3910 /* Return a pointer to the clauses associated with the GIMPLE_OMP_SECTIONS
3913 static inline tree
*
3914 gimple_omp_sections_control_ptr (gimple gs
)
3916 GIMPLE_CHECK (gs
, GIMPLE_OMP_SECTIONS
);
3917 return &gs
->gimple_omp_sections
.control
;
3921 /* Set CONTROL to be the set of clauses associated with the
3922 GIMPLE_OMP_SECTIONS in GS. */
3925 gimple_omp_sections_set_control (gimple gs
, tree control
)
3927 GIMPLE_CHECK (gs
, GIMPLE_OMP_SECTIONS
);
3928 gs
->gimple_omp_sections
.control
= control
;
3932 /* Set COND to be the condition code for OMP_FOR GS. */
3935 gimple_omp_for_set_cond (gimple gs
, size_t i
, enum tree_code cond
)
3937 GIMPLE_CHECK (gs
, GIMPLE_OMP_FOR
);
3938 gcc_assert (TREE_CODE_CLASS (cond
) == tcc_comparison
);
3939 gcc_assert (i
< gs
->gimple_omp_for
.collapse
);
3940 gs
->gimple_omp_for
.iter
[i
].cond
= cond
;
3944 /* Return the condition code associated with OMP_FOR GS. */
3946 static inline enum tree_code
3947 gimple_omp_for_cond (const_gimple gs
, size_t i
)
3949 GIMPLE_CHECK (gs
, GIMPLE_OMP_FOR
);
3950 gcc_assert (i
< gs
->gimple_omp_for
.collapse
);
3951 return gs
->gimple_omp_for
.iter
[i
].cond
;
3955 /* Set the value being stored in an atomic store. */
3958 gimple_omp_atomic_store_set_val (gimple g
, tree val
)
3960 GIMPLE_CHECK (g
, GIMPLE_OMP_ATOMIC_STORE
);
3961 g
->gimple_omp_atomic_store
.val
= val
;
3965 /* Return the value being stored in an atomic store. */
3968 gimple_omp_atomic_store_val (const_gimple g
)
3970 GIMPLE_CHECK (g
, GIMPLE_OMP_ATOMIC_STORE
);
3971 return g
->gimple_omp_atomic_store
.val
;
3975 /* Return a pointer to the value being stored in an atomic store. */
3977 static inline tree
*
3978 gimple_omp_atomic_store_val_ptr (gimple g
)
3980 GIMPLE_CHECK (g
, GIMPLE_OMP_ATOMIC_STORE
);
3981 return &g
->gimple_omp_atomic_store
.val
;
3985 /* Set the LHS of an atomic load. */
3988 gimple_omp_atomic_load_set_lhs (gimple g
, tree lhs
)
3990 GIMPLE_CHECK (g
, GIMPLE_OMP_ATOMIC_LOAD
);
3991 g
->gimple_omp_atomic_load
.lhs
= lhs
;
3995 /* Get the LHS of an atomic load. */
3998 gimple_omp_atomic_load_lhs (const_gimple g
)
4000 GIMPLE_CHECK (g
, GIMPLE_OMP_ATOMIC_LOAD
);
4001 return g
->gimple_omp_atomic_load
.lhs
;
4005 /* Return a pointer to the LHS of an atomic load. */
4007 static inline tree
*
4008 gimple_omp_atomic_load_lhs_ptr (gimple g
)
4010 GIMPLE_CHECK (g
, GIMPLE_OMP_ATOMIC_LOAD
);
4011 return &g
->gimple_omp_atomic_load
.lhs
;
4015 /* Set the RHS of an atomic load. */
4018 gimple_omp_atomic_load_set_rhs (gimple g
, tree rhs
)
4020 GIMPLE_CHECK (g
, GIMPLE_OMP_ATOMIC_LOAD
);
4021 g
->gimple_omp_atomic_load
.rhs
= rhs
;
4025 /* Get the RHS of an atomic load. */
4028 gimple_omp_atomic_load_rhs (const_gimple g
)
4030 GIMPLE_CHECK (g
, GIMPLE_OMP_ATOMIC_LOAD
);
4031 return g
->gimple_omp_atomic_load
.rhs
;
4035 /* Return a pointer to the RHS of an atomic load. */
4037 static inline tree
*
4038 gimple_omp_atomic_load_rhs_ptr (gimple g
)
4040 GIMPLE_CHECK (g
, GIMPLE_OMP_ATOMIC_LOAD
);
4041 return &g
->gimple_omp_atomic_load
.rhs
;
4045 /* Get the definition of the control variable in a GIMPLE_OMP_CONTINUE. */
4048 gimple_omp_continue_control_def (const_gimple g
)
4050 GIMPLE_CHECK (g
, GIMPLE_OMP_CONTINUE
);
4051 return g
->gimple_omp_continue
.control_def
;
4054 /* The same as above, but return the address. */
4056 static inline tree
*
4057 gimple_omp_continue_control_def_ptr (gimple g
)
4059 GIMPLE_CHECK (g
, GIMPLE_OMP_CONTINUE
);
4060 return &g
->gimple_omp_continue
.control_def
;
4063 /* Set the definition of the control variable in a GIMPLE_OMP_CONTINUE. */
4066 gimple_omp_continue_set_control_def (gimple g
, tree def
)
4068 GIMPLE_CHECK (g
, GIMPLE_OMP_CONTINUE
);
4069 g
->gimple_omp_continue
.control_def
= def
;
4073 /* Get the use of the control variable in a GIMPLE_OMP_CONTINUE. */
4076 gimple_omp_continue_control_use (const_gimple g
)
4078 GIMPLE_CHECK (g
, GIMPLE_OMP_CONTINUE
);
4079 return g
->gimple_omp_continue
.control_use
;
4083 /* The same as above, but return the address. */
4085 static inline tree
*
4086 gimple_omp_continue_control_use_ptr (gimple g
)
4088 GIMPLE_CHECK (g
, GIMPLE_OMP_CONTINUE
);
4089 return &g
->gimple_omp_continue
.control_use
;
4093 /* Set the use of the control variable in a GIMPLE_OMP_CONTINUE. */
4096 gimple_omp_continue_set_control_use (gimple g
, tree use
)
4098 GIMPLE_CHECK (g
, GIMPLE_OMP_CONTINUE
);
4099 g
->gimple_omp_continue
.control_use
= use
;
4103 /* Return a pointer to the return value for GIMPLE_RETURN GS. */
4105 static inline tree
*
4106 gimple_return_retval_ptr (const_gimple gs
)
4108 GIMPLE_CHECK (gs
, GIMPLE_RETURN
);
4109 gcc_assert (gimple_num_ops (gs
) == 1);
4110 return gimple_op_ptr (gs
, 0);
4113 /* Return the return value for GIMPLE_RETURN GS. */
4116 gimple_return_retval (const_gimple gs
)
4118 GIMPLE_CHECK (gs
, GIMPLE_RETURN
);
4119 gcc_assert (gimple_num_ops (gs
) == 1);
4120 return gimple_op (gs
, 0);
4124 /* Set RETVAL to be the return value for GIMPLE_RETURN GS. */
4127 gimple_return_set_retval (gimple gs
, tree retval
)
4129 GIMPLE_CHECK (gs
, GIMPLE_RETURN
);
4130 gcc_assert (gimple_num_ops (gs
) == 1);
4131 gcc_assert (retval
== NULL_TREE
4132 || TREE_CODE (retval
) == RESULT_DECL
4133 || is_gimple_val (retval
));
4134 gimple_set_op (gs
, 0, retval
);
4138 /* Returns true when the gimple statment STMT is any of the OpenMP types. */
4141 is_gimple_omp (const_gimple stmt
)
4143 return (gimple_code (stmt
) == GIMPLE_OMP_PARALLEL
4144 || gimple_code (stmt
) == GIMPLE_OMP_TASK
4145 || gimple_code (stmt
) == GIMPLE_OMP_FOR
4146 || gimple_code (stmt
) == GIMPLE_OMP_SECTIONS
4147 || gimple_code (stmt
) == GIMPLE_OMP_SECTIONS_SWITCH
4148 || gimple_code (stmt
) == GIMPLE_OMP_SINGLE
4149 || gimple_code (stmt
) == GIMPLE_OMP_SECTION
4150 || gimple_code (stmt
) == GIMPLE_OMP_MASTER
4151 || gimple_code (stmt
) == GIMPLE_OMP_ORDERED
4152 || gimple_code (stmt
) == GIMPLE_OMP_CRITICAL
4153 || gimple_code (stmt
) == GIMPLE_OMP_RETURN
4154 || gimple_code (stmt
) == GIMPLE_OMP_ATOMIC_LOAD
4155 || gimple_code (stmt
) == GIMPLE_OMP_ATOMIC_STORE
4156 || gimple_code (stmt
) == GIMPLE_OMP_CONTINUE
);
4160 /* Returns TRUE if statement G is a GIMPLE_NOP. */
4163 gimple_nop_p (const_gimple g
)
4165 return gimple_code (g
) == GIMPLE_NOP
;
4169 /* Return the new type set by GIMPLE_CHANGE_DYNAMIC_TYPE statement GS. */
4172 gimple_cdt_new_type (gimple gs
)
4174 GIMPLE_CHECK (gs
, GIMPLE_CHANGE_DYNAMIC_TYPE
);
4175 return gimple_op (gs
, 1);
4178 /* Return a pointer to the new type set by GIMPLE_CHANGE_DYNAMIC_TYPE
4181 static inline tree
*
4182 gimple_cdt_new_type_ptr (gimple gs
)
4184 GIMPLE_CHECK (gs
, GIMPLE_CHANGE_DYNAMIC_TYPE
);
4185 return gimple_op_ptr (gs
, 1);
4188 /* Set NEW_TYPE to be the type returned by GIMPLE_CHANGE_DYNAMIC_TYPE
4192 gimple_cdt_set_new_type (gimple gs
, tree new_type
)
4194 GIMPLE_CHECK (gs
, GIMPLE_CHANGE_DYNAMIC_TYPE
);
4195 gcc_assert (TREE_CODE_CLASS (TREE_CODE (new_type
)) == tcc_type
);
4196 gimple_set_op (gs
, 1, new_type
);
4200 /* Return the location affected by GIMPLE_CHANGE_DYNAMIC_TYPE statement GS. */
4203 gimple_cdt_location (gimple gs
)
4205 GIMPLE_CHECK (gs
, GIMPLE_CHANGE_DYNAMIC_TYPE
);
4206 return gimple_op (gs
, 0);
4210 /* Return a pointer to the location affected by GIMPLE_CHANGE_DYNAMIC_TYPE
4213 static inline tree
*
4214 gimple_cdt_location_ptr (gimple gs
)
4216 GIMPLE_CHECK (gs
, GIMPLE_CHANGE_DYNAMIC_TYPE
);
4217 return gimple_op_ptr (gs
, 0);
4221 /* Set PTR to be the location affected by GIMPLE_CHANGE_DYNAMIC_TYPE
4225 gimple_cdt_set_location (gimple gs
, tree ptr
)
4227 GIMPLE_CHECK (gs
, GIMPLE_CHANGE_DYNAMIC_TYPE
);
4228 gimple_set_op (gs
, 0, ptr
);
4232 /* Return the predictor of GIMPLE_PREDICT statement GS. */
4234 static inline enum br_predictor
4235 gimple_predict_predictor (gimple gs
)
4237 GIMPLE_CHECK (gs
, GIMPLE_PREDICT
);
4238 return (enum br_predictor
) (gs
->gsbase
.subcode
& ~GF_PREDICT_TAKEN
);
4242 /* Set the predictor of GIMPLE_PREDICT statement GS to PREDICT. */
4245 gimple_predict_set_predictor (gimple gs
, enum br_predictor predictor
)
4247 GIMPLE_CHECK (gs
, GIMPLE_PREDICT
);
4248 gs
->gsbase
.subcode
= (gs
->gsbase
.subcode
& GF_PREDICT_TAKEN
)
4249 | (unsigned) predictor
;
4253 /* Return the outcome of GIMPLE_PREDICT statement GS. */
4255 static inline enum prediction
4256 gimple_predict_outcome (gimple gs
)
4258 GIMPLE_CHECK (gs
, GIMPLE_PREDICT
);
4259 return (gs
->gsbase
.subcode
& GF_PREDICT_TAKEN
) ? TAKEN
: NOT_TAKEN
;
4263 /* Set the outcome of GIMPLE_PREDICT statement GS to OUTCOME. */
4266 gimple_predict_set_outcome (gimple gs
, enum prediction outcome
)
4268 GIMPLE_CHECK (gs
, GIMPLE_PREDICT
);
4269 if (outcome
== TAKEN
)
4270 gs
->gsbase
.subcode
|= GF_PREDICT_TAKEN
;
4272 gs
->gsbase
.subcode
&= ~GF_PREDICT_TAKEN
;
4276 /* Return a new iterator pointing to GIMPLE_SEQ's first statement. */
4278 static inline gimple_stmt_iterator
4279 gsi_start (gimple_seq seq
)
4281 gimple_stmt_iterator i
;
4283 i
.ptr
= gimple_seq_first (seq
);
4285 i
.bb
= (i
.ptr
&& i
.ptr
->stmt
) ? gimple_bb (i
.ptr
->stmt
) : NULL
;
4291 /* Return a new iterator pointing to the first statement in basic block BB. */
4293 static inline gimple_stmt_iterator
4294 gsi_start_bb (basic_block bb
)
4296 gimple_stmt_iterator i
;
4300 i
.ptr
= gimple_seq_first (seq
);
4308 /* Return a new iterator initially pointing to GIMPLE_SEQ's last statement. */
4310 static inline gimple_stmt_iterator
4311 gsi_last (gimple_seq seq
)
4313 gimple_stmt_iterator i
;
4315 i
.ptr
= gimple_seq_last (seq
);
4317 i
.bb
= (i
.ptr
&& i
.ptr
->stmt
) ? gimple_bb (i
.ptr
->stmt
) : NULL
;
4323 /* Return a new iterator pointing to the last statement in basic block BB. */
4325 static inline gimple_stmt_iterator
4326 gsi_last_bb (basic_block bb
)
4328 gimple_stmt_iterator i
;
4332 i
.ptr
= gimple_seq_last (seq
);
4340 /* Return true if I is at the end of its sequence. */
4343 gsi_end_p (gimple_stmt_iterator i
)
4345 return i
.ptr
== NULL
;
4349 /* Return true if I is one statement before the end of its sequence. */
4352 gsi_one_before_end_p (gimple_stmt_iterator i
)
4354 return i
.ptr
!= NULL
&& i
.ptr
->next
== NULL
;
4358 /* Advance the iterator to the next gimple statement. */
4361 gsi_next (gimple_stmt_iterator
*i
)
4363 i
->ptr
= i
->ptr
->next
;
4366 /* Advance the iterator to the previous gimple statement. */
4369 gsi_prev (gimple_stmt_iterator
*i
)
4371 i
->ptr
= i
->ptr
->prev
;
4374 /* Return the current stmt. */
4376 static inline gimple
4377 gsi_stmt (gimple_stmt_iterator i
)
4382 /* Return a block statement iterator that points to the first non-label
4383 statement in block BB. */
4385 static inline gimple_stmt_iterator
4386 gsi_after_labels (basic_block bb
)
4388 gimple_stmt_iterator gsi
= gsi_start_bb (bb
);
4390 while (!gsi_end_p (gsi
) && gimple_code (gsi_stmt (gsi
)) == GIMPLE_LABEL
)
4396 /* Return a pointer to the current stmt.
4398 NOTE: You may want to use gsi_replace on the iterator itself,
4399 as this performs additional bookkeeping that will not be done
4400 if you simply assign through a pointer returned by gsi_stmt_ptr. */
4402 static inline gimple
*
4403 gsi_stmt_ptr (gimple_stmt_iterator
*i
)
4405 return &i
->ptr
->stmt
;
4409 /* Return the basic block associated with this iterator. */
4411 static inline basic_block
4412 gsi_bb (gimple_stmt_iterator i
)
4418 /* Return the sequence associated with this iterator. */
4420 static inline gimple_seq
4421 gsi_seq (gimple_stmt_iterator i
)
4427 enum gsi_iterator_update
4429 GSI_NEW_STMT
, /* Only valid when single statement is added, move
4431 GSI_SAME_STMT
, /* Leave the iterator at the same statement. */
4432 GSI_CONTINUE_LINKING
/* Move iterator to whatever position is suitable
4433 for linking other statements in the same
4437 /* In gimple-iterator.c */
4438 gimple_stmt_iterator
gsi_start_phis (basic_block
);
4439 gimple_seq
gsi_split_seq_after (gimple_stmt_iterator
);
4440 gimple_seq
gsi_split_seq_before (gimple_stmt_iterator
*);
4441 void gsi_replace (gimple_stmt_iterator
*, gimple
, bool);
4442 void gsi_insert_before (gimple_stmt_iterator
*, gimple
,
4443 enum gsi_iterator_update
);
4444 void gsi_insert_before_without_update (gimple_stmt_iterator
*, gimple
,
4445 enum gsi_iterator_update
);
4446 void gsi_insert_seq_before (gimple_stmt_iterator
*, gimple_seq
,
4447 enum gsi_iterator_update
);
4448 void gsi_insert_seq_before_without_update (gimple_stmt_iterator
*, gimple_seq
,
4449 enum gsi_iterator_update
);
4450 void gsi_insert_after (gimple_stmt_iterator
*, gimple
,
4451 enum gsi_iterator_update
);
4452 void gsi_insert_after_without_update (gimple_stmt_iterator
*, gimple
,
4453 enum gsi_iterator_update
);
4454 void gsi_insert_seq_after (gimple_stmt_iterator
*, gimple_seq
,
4455 enum gsi_iterator_update
);
4456 void gsi_insert_seq_after_without_update (gimple_stmt_iterator
*, gimple_seq
,
4457 enum gsi_iterator_update
);
4458 void gsi_remove (gimple_stmt_iterator
*, bool);
4459 gimple_stmt_iterator
gsi_for_stmt (gimple
);
4460 void gsi_move_after (gimple_stmt_iterator
*, gimple_stmt_iterator
*);
4461 void gsi_move_before (gimple_stmt_iterator
*, gimple_stmt_iterator
*);
4462 void gsi_move_to_bb_end (gimple_stmt_iterator
*, struct basic_block_def
*);
4463 void gsi_insert_on_edge (edge
, gimple
);
4464 void gsi_insert_seq_on_edge (edge
, gimple_seq
);
4465 basic_block
gsi_insert_on_edge_immediate (edge
, gimple
);
4466 basic_block
gsi_insert_seq_on_edge_immediate (edge
, gimple_seq
);
4467 void gsi_commit_one_edge_insert (edge
, basic_block
*);
4468 void gsi_commit_edge_inserts (void);
4471 /* Convenience routines to walk all statements of a gimple function.
4472 Note that this is useful exclusively before the code is converted
4473 into SSA form. Once the program is in SSA form, the standard
4474 operand interface should be used to analyze/modify statements. */
4475 struct walk_stmt_info
4477 /* Points to the current statement being walked. */
4478 gimple_stmt_iterator gsi
;
4480 /* Additional data that the callback functions may want to carry
4481 through the recursion. */
4484 /* Pointer map used to mark visited tree nodes when calling
4485 walk_tree on each operand. If set to NULL, duplicate tree nodes
4486 will be visited more than once. */
4487 struct pointer_set_t
*pset
;
4489 /* Indicates whether the operand being examined may be replaced
4490 with something that matches is_gimple_val (if true) or something
4491 slightly more complicated (if false). "Something" technically
4492 means the common subset of is_gimple_lvalue and is_gimple_rhs,
4493 but we never try to form anything more complicated than that, so
4494 we don't bother checking.
4496 Also note that CALLBACK should update this flag while walking the
4497 sub-expressions of a statement. For instance, when walking the
4498 statement 'foo (&var)', the flag VAL_ONLY will initially be set
4499 to true, however, when walking &var, the operand of that
4500 ADDR_EXPR does not need to be a GIMPLE value. */
4503 /* True if we are currently walking the LHS of an assignment. */
4506 /* Optional. Set to true by the callback functions if they made any
4510 /* True if we're interested in location information. */
4511 bool want_locations
;
4513 /* Operand returned by the callbacks. This is set when calling
4514 walk_gimple_seq. If the walk_stmt_fn or walk_tree_fn callback
4515 returns non-NULL, this field will contain the tree returned by
4516 the last callback. */
4517 tree callback_result
;
4520 /* Callback for walk_gimple_stmt. Called for every statement found
4521 during traversal. The first argument points to the statement to
4522 walk. The second argument is a flag that the callback sets to
4523 'true' if it the callback handled all the operands and
4524 sub-statements of the statement (the default value of this flag is
4525 'false'). The third argument is an anonymous pointer to data
4526 to be used by the callback. */
4527 typedef tree (*walk_stmt_fn
) (gimple_stmt_iterator
*, bool *,
4528 struct walk_stmt_info
*);
4530 gimple
walk_gimple_seq (gimple_seq
, walk_stmt_fn
, walk_tree_fn
,
4531 struct walk_stmt_info
*);
4532 tree
walk_gimple_stmt (gimple_stmt_iterator
*, walk_stmt_fn
, walk_tree_fn
,
4533 struct walk_stmt_info
*);
4534 tree
walk_gimple_op (gimple
, walk_tree_fn
, struct walk_stmt_info
*);
4536 #ifdef GATHER_STATISTICS
4537 /* Enum and arrays used for allocation stats. Keep in sync with
4538 gimple.c:gimple_alloc_kind_names. */
4539 enum gimple_alloc_kind
4541 gimple_alloc_kind_assign
, /* Assignments. */
4542 gimple_alloc_kind_phi
, /* PHI nodes. */
4543 gimple_alloc_kind_cond
, /* Conditionals. */
4544 gimple_alloc_kind_seq
, /* Sequences. */
4545 gimple_alloc_kind_rest
, /* Everything else. */
4546 gimple_alloc_kind_all
4549 extern int gimple_alloc_counts
[];
4550 extern int gimple_alloc_sizes
[];
4552 /* Return the allocation kind for a given stmt CODE. */
4553 static inline enum gimple_alloc_kind
4554 gimple_alloc_kind (enum gimple_code code
)
4559 return gimple_alloc_kind_assign
;
4561 return gimple_alloc_kind_phi
;
4563 return gimple_alloc_kind_cond
;
4565 return gimple_alloc_kind_rest
;
4568 #endif /* GATHER_STATISTICS */
4570 extern void dump_gimple_statistics (void);
4572 #endif /* GCC_GIMPLE_H */