1 /* Gimple IR definitions.
3 Copyright (C) 2007-2015 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 "tree-ssa-alias.h"
26 #include "gimple-expr.h"
28 typedef gimple gimple_seq_node
;
31 #define DEFGSCODE(SYM, STRING, STRUCT) SYM,
34 LAST_AND_UNUSED_GIMPLE_CODE
37 extern const char *const gimple_code_name
[];
38 extern const unsigned char gimple_rhs_class_table
[];
40 /* Error out if a gimple tuple is addressed incorrectly. */
41 #if defined ENABLE_GIMPLE_CHECKING
42 #define gcc_gimple_checking_assert(EXPR) gcc_assert (EXPR)
43 extern void gimple_check_failed (const_gimple
, const char *, int, \
44 const char *, enum gimple_code
, \
45 enum tree_code
) ATTRIBUTE_NORETURN
;
47 #define GIMPLE_CHECK(GS, CODE) \
49 const_gimple __gs = (GS); \
50 if (gimple_code (__gs) != (CODE)) \
51 gimple_check_failed (__gs, __FILE__, __LINE__, __FUNCTION__, \
52 (CODE), ERROR_MARK); \
54 #else /* not ENABLE_GIMPLE_CHECKING */
55 #define gcc_gimple_checking_assert(EXPR) ((void)(0 && (EXPR)))
56 #define GIMPLE_CHECK(GS, CODE) (void)0
59 /* Class of GIMPLE expressions suitable for the RHS of assignments. See
60 get_gimple_rhs_class. */
63 GIMPLE_INVALID_RHS
, /* The expression cannot be used on the RHS. */
64 GIMPLE_TERNARY_RHS
, /* The expression is a ternary operation. */
65 GIMPLE_BINARY_RHS
, /* The expression is a binary operation. */
66 GIMPLE_UNARY_RHS
, /* The expression is a unary operation. */
67 GIMPLE_SINGLE_RHS
/* The expression is a single object (an SSA
68 name, a _DECL, a _REF, etc. */
71 /* Specific flags for individual GIMPLE statements. These flags are
72 always stored in gimple_statement_base.subcode and they may only be
73 defined for statement codes that do not use subcodes.
75 Values for the masks can overlap as long as the overlapping values
76 are never used in the same statement class.
78 The maximum mask value that can be defined is 1 << 15 (i.e., each
79 statement code can hold up to 16 bitflags).
81 Keep this list sorted. */
83 GF_ASM_INPUT
= 1 << 0,
84 GF_ASM_VOLATILE
= 1 << 1,
85 GF_CALL_FROM_THUNK
= 1 << 0,
86 GF_CALL_RETURN_SLOT_OPT
= 1 << 1,
87 GF_CALL_TAILCALL
= 1 << 2,
88 GF_CALL_VA_ARG_PACK
= 1 << 3,
89 GF_CALL_NOTHROW
= 1 << 4,
90 GF_CALL_ALLOCA_FOR_VAR
= 1 << 5,
91 GF_CALL_INTERNAL
= 1 << 6,
92 GF_CALL_CTRL_ALTERING
= 1 << 7,
93 GF_CALL_WITH_BOUNDS
= 1 << 8,
94 GF_OMP_PARALLEL_COMBINED
= 1 << 0,
95 GF_OMP_FOR_KIND_MASK
= (1 << 3) - 1,
96 GF_OMP_FOR_KIND_FOR
= 0,
97 GF_OMP_FOR_KIND_DISTRIBUTE
= 1,
98 GF_OMP_FOR_KIND_CILKFOR
= 2,
99 GF_OMP_FOR_KIND_OACC_LOOP
= 3,
100 /* Flag for SIMD variants of OMP_FOR kinds. */
101 GF_OMP_FOR_SIMD
= 1 << 2,
102 GF_OMP_FOR_KIND_SIMD
= GF_OMP_FOR_SIMD
| 0,
103 GF_OMP_FOR_KIND_CILKSIMD
= GF_OMP_FOR_SIMD
| 1,
104 GF_OMP_FOR_COMBINED
= 1 << 3,
105 GF_OMP_FOR_COMBINED_INTO
= 1 << 4,
106 GF_OMP_TARGET_KIND_MASK
= (1 << 3) - 1,
107 GF_OMP_TARGET_KIND_REGION
= 0,
108 GF_OMP_TARGET_KIND_DATA
= 1,
109 GF_OMP_TARGET_KIND_UPDATE
= 2,
110 GF_OMP_TARGET_KIND_OACC_PARALLEL
= 3,
111 GF_OMP_TARGET_KIND_OACC_KERNELS
= 4,
112 GF_OMP_TARGET_KIND_OACC_DATA
= 5,
113 GF_OMP_TARGET_KIND_OACC_UPDATE
= 6,
114 GF_OMP_TARGET_KIND_OACC_ENTER_EXIT_DATA
= 7,
116 /* True on an GIMPLE_OMP_RETURN statement if the return does not require
117 a thread synchronization via some sort of barrier. The exact barrier
118 that would otherwise be emitted is dependent on the OMP statement with
119 which this return is associated. */
120 GF_OMP_RETURN_NOWAIT
= 1 << 0,
122 GF_OMP_SECTION_LAST
= 1 << 0,
123 GF_OMP_ATOMIC_NEED_VALUE
= 1 << 0,
124 GF_OMP_ATOMIC_SEQ_CST
= 1 << 1,
125 GF_PREDICT_TAKEN
= 1 << 15
128 /* Currently, there are only two types of gimple debug stmt. Others are
129 envisioned, for example, to enable the generation of is_stmt notes
130 in line number information, to mark sequence points, etc. This
131 subcode is to be used to tell them apart. */
132 enum gimple_debug_subcode
{
133 GIMPLE_DEBUG_BIND
= 0,
134 GIMPLE_DEBUG_SOURCE_BIND
= 1
137 /* Masks for selecting a pass local flag (PLF) to work on. These
138 masks are used by gimple_set_plf and gimple_plf. */
144 /* Data structure definitions for GIMPLE tuples. NOTE: word markers
145 are for 64 bit hosts. */
147 struct GTY((desc ("gimple_statement_structure (&%h)"), tag ("GSS_BASE"),
148 chain_next ("%h.next"), variable_size
))
149 gimple_statement_base
152 Main identifying code for a tuple. */
153 ENUM_BITFIELD(gimple_code
) code
: 8;
155 /* Nonzero if a warning should not be emitted on this tuple. */
156 unsigned int no_warning
: 1;
158 /* Nonzero if this tuple has been visited. Passes are responsible
159 for clearing this bit before using it. */
160 unsigned int visited
: 1;
162 /* Nonzero if this tuple represents a non-temporal move. */
163 unsigned int nontemporal_move
: 1;
165 /* Pass local flags. These flags are free for any pass to use as
166 they see fit. Passes should not assume that these flags contain
167 any useful value when the pass starts. Any initial state that
168 the pass requires should be set on entry to the pass. See
169 gimple_set_plf and gimple_plf for usage. */
170 unsigned int plf
: 2;
172 /* Nonzero if this statement has been modified and needs to have its
173 operands rescanned. */
174 unsigned modified
: 1;
176 /* Nonzero if this statement contains volatile operands. */
177 unsigned has_volatile_ops
: 1;
179 /* Padding to get subcode to 16 bit alignment. */
182 /* The SUBCODE field can be used for tuple-specific flags for tuples
183 that do not require subcodes. Note that SUBCODE should be at
184 least as wide as tree codes, as several tuples store tree codes
186 unsigned int subcode
: 16;
188 /* UID of this statement. This is used by passes that want to
189 assign IDs to statements. It must be assigned and used by each
190 pass. By default it should be assumed to contain garbage. */
194 Locus information for debug info. */
197 /* Number of operands in this tuple. */
201 Basic block holding this statement. */
205 Linked lists of gimple statements. The next pointers form
206 a NULL terminated list, the prev pointers are a cyclic list.
207 A gimple statement is hence also a double-ended list of
208 statements, with the pointer itself being the first element,
209 and the prev pointer being the last. */
211 gimple
GTY((skip
)) prev
;
215 /* Base structure for tuples with operands. */
217 /* This gimple subclass has no tag value. */
219 gimple_statement_with_ops_base
: public gimple_statement_base
221 /* [ WORD 1-6 ] : base class */
224 SSA operand vectors. NOTE: It should be possible to
225 amalgamate these vectors with the operand vector OP. However,
226 the SSA operand vectors are organized differently and contain
227 more information (like immediate use chaining). */
228 struct use_optype_d
GTY((skip (""))) *use_ops
;
232 /* Statements that take register operands. */
234 struct GTY((tag("GSS_WITH_OPS")))
235 gimple_statement_with_ops
: public gimple_statement_with_ops_base
237 /* [ WORD 1-7 ] : base class */
240 Operand vector. NOTE! This must always be the last field
241 of this structure. In particular, this means that this
242 structure cannot be embedded inside another one. */
243 tree
GTY((length ("%h.num_ops"))) op
[1];
247 /* Base for statements that take both memory and register operands. */
249 struct GTY((tag("GSS_WITH_MEM_OPS_BASE")))
250 gimple_statement_with_memory_ops_base
: public gimple_statement_with_ops_base
252 /* [ WORD 1-7 ] : base class */
255 Virtual operands for this statement. The GC will pick them
256 up via the ssa_names array. */
257 tree
GTY((skip (""))) vdef
;
258 tree
GTY((skip (""))) vuse
;
262 /* Statements that take both memory and register operands. */
264 struct GTY((tag("GSS_WITH_MEM_OPS")))
265 gimple_statement_with_memory_ops
:
266 public gimple_statement_with_memory_ops_base
268 /* [ WORD 1-9 ] : base class */
271 Operand vector. NOTE! This must always be the last field
272 of this structure. In particular, this means that this
273 structure cannot be embedded inside another one. */
274 tree
GTY((length ("%h.num_ops"))) op
[1];
278 /* Call statements that take both memory and register operands. */
280 struct GTY((tag("GSS_CALL")))
281 gcall
: public gimple_statement_with_memory_ops_base
283 /* [ WORD 1-9 ] : base class */
286 struct pt_solution call_used
;
287 struct pt_solution call_clobbered
;
290 union GTY ((desc ("%1.subcode & GF_CALL_INTERNAL"))) {
291 tree
GTY ((tag ("0"))) fntype
;
292 enum internal_fn
GTY ((tag ("GF_CALL_INTERNAL"))) internal_fn
;
296 Operand vector. NOTE! This must always be the last field
297 of this structure. In particular, this means that this
298 structure cannot be embedded inside another one. */
299 tree
GTY((length ("%h.num_ops"))) op
[1];
303 /* OMP statements. */
305 struct GTY((tag("GSS_OMP")))
306 gimple_statement_omp
: public gimple_statement_base
308 /* [ WORD 1-6 ] : base class */
317 struct GTY((tag("GSS_BIND")))
318 gbind
: public gimple_statement_base
320 /* [ WORD 1-6 ] : base class */
323 Variables declared in this scope. */
327 This is different than the BLOCK field in gimple_statement_base,
328 which is analogous to TREE_BLOCK (i.e., the lexical block holding
329 this statement). This field is the equivalent of BIND_EXPR_BLOCK
330 in tree land (i.e., the lexical scope defined by this bind). See
341 struct GTY((tag("GSS_CATCH")))
342 gcatch
: public gimple_statement_base
344 /* [ WORD 1-6 ] : base class */
354 /* GIMPLE_EH_FILTER */
356 struct GTY((tag("GSS_EH_FILTER")))
357 geh_filter
: public gimple_statement_base
359 /* [ WORD 1-6 ] : base class */
372 struct GTY((tag("GSS_EH_ELSE")))
373 geh_else
: public gimple_statement_base
375 /* [ WORD 1-6 ] : base class */
378 gimple_seq n_body
, e_body
;
381 /* GIMPLE_EH_MUST_NOT_THROW */
383 struct GTY((tag("GSS_EH_MNT")))
384 geh_mnt
: public gimple_statement_base
386 /* [ WORD 1-6 ] : base class */
388 /* [ WORD 7 ] Abort function decl. */
394 struct GTY((tag("GSS_PHI")))
395 gphi
: public gimple_statement_base
397 /* [ WORD 1-6 ] : base class */
407 struct phi_arg_d
GTY ((length ("%h.nargs"))) args
[1];
411 /* GIMPLE_RESX, GIMPLE_EH_DISPATCH */
413 struct GTY((tag("GSS_EH_CTRL")))
414 gimple_statement_eh_ctrl
: public gimple_statement_base
416 /* [ WORD 1-6 ] : base class */
419 Exception region number. */
423 struct GTY((tag("GSS_EH_CTRL")))
424 gresx
: public gimple_statement_eh_ctrl
426 /* No extra fields; adds invariant:
427 stmt->code == GIMPLE_RESX. */
430 struct GTY((tag("GSS_EH_CTRL")))
431 geh_dispatch
: public gimple_statement_eh_ctrl
433 /* No extra fields; adds invariant:
434 stmt->code == GIMPLE_EH_DISPATH. */
440 struct GTY((tag("GSS_TRY")))
441 gtry
: public gimple_statement_base
443 /* [ WORD 1-6 ] : base class */
446 Expression to evaluate. */
450 Cleanup expression. */
454 /* Kind of GIMPLE_TRY statements. */
455 enum gimple_try_flags
458 GIMPLE_TRY_CATCH
= 1 << 0,
461 GIMPLE_TRY_FINALLY
= 1 << 1,
462 GIMPLE_TRY_KIND
= GIMPLE_TRY_CATCH
| GIMPLE_TRY_FINALLY
,
464 /* Analogous to TRY_CATCH_IS_CLEANUP. */
465 GIMPLE_TRY_CATCH_IS_CLEANUP
= 1 << 2
468 /* GIMPLE_WITH_CLEANUP_EXPR */
470 struct GTY((tag("GSS_WCE")))
471 gimple_statement_wce
: public gimple_statement_base
473 /* [ WORD 1-6 ] : base class */
475 /* Subcode: CLEANUP_EH_ONLY. True if the cleanup should only be
476 executed if an exception is thrown, not on normal exit of its
477 scope. This flag is analogous to the CLEANUP_EH_ONLY flag
481 Cleanup expression. */
488 struct GTY((tag("GSS_ASM")))
489 gasm
: public gimple_statement_with_memory_ops_base
491 /* [ WORD 1-9 ] : base class */
494 __asm__ statement. */
498 Number of inputs, outputs, clobbers, labels. */
505 Operand vector. NOTE! This must always be the last field
506 of this structure. In particular, this means that this
507 structure cannot be embedded inside another one. */
508 tree
GTY((length ("%h.num_ops"))) op
[1];
511 /* GIMPLE_OMP_CRITICAL */
513 struct GTY((tag("GSS_OMP_CRITICAL")))
514 gomp_critical
: public gimple_statement_omp
516 /* [ WORD 1-7 ] : base class */
519 Critical section name. */
524 struct GTY(()) gimple_omp_for_iter
{
525 /* Condition code. */
528 /* Index variable. */
543 struct GTY((tag("GSS_OMP_FOR")))
544 gomp_for
: public gimple_statement_omp
546 /* [ WORD 1-7 ] : base class */
552 Number of elements in iter array. */
556 struct gimple_omp_for_iter
* GTY((length ("%h.collapse"))) iter
;
559 Pre-body evaluated before the loop body begins. */
564 /* GIMPLE_OMP_PARALLEL, GIMPLE_OMP_TARGET, GIMPLE_OMP_TASK */
566 struct GTY((tag("GSS_OMP_PARALLEL_LAYOUT")))
567 gimple_statement_omp_parallel_layout
: public gimple_statement_omp
569 /* [ WORD 1-7 ] : base class */
576 Child function holding the body of the parallel region. */
580 Shared data argument. */
584 /* GIMPLE_OMP_PARALLEL or GIMPLE_TASK */
585 struct GTY((tag("GSS_OMP_PARALLEL_LAYOUT")))
586 gimple_statement_omp_taskreg
: public gimple_statement_omp_parallel_layout
588 /* No extra fields; adds invariant:
589 stmt->code == GIMPLE_OMP_PARALLEL
590 || stmt->code == GIMPLE_OMP_TASK. */
593 /* GIMPLE_OMP_PARALLEL */
594 struct GTY((tag("GSS_OMP_PARALLEL_LAYOUT")))
595 gomp_parallel
: public gimple_statement_omp_taskreg
597 /* No extra fields; adds invariant:
598 stmt->code == GIMPLE_OMP_PARALLEL. */
601 /* GIMPLE_OMP_TARGET */
602 struct GTY((tag("GSS_OMP_PARALLEL_LAYOUT")))
603 gomp_target
: public gimple_statement_omp_parallel_layout
605 /* No extra fields; adds invariant:
606 stmt->code == GIMPLE_OMP_TARGET. */
609 /* GIMPLE_OMP_TASK */
611 struct GTY((tag("GSS_OMP_TASK")))
612 gomp_task
: public gimple_statement_omp_taskreg
614 /* [ WORD 1-10 ] : base class */
617 Child function holding firstprivate initialization if needed. */
621 Size and alignment in bytes of the argument data block. */
627 /* GIMPLE_OMP_SECTION */
628 /* Uses struct gimple_statement_omp. */
631 /* GIMPLE_OMP_SECTIONS */
633 struct GTY((tag("GSS_OMP_SECTIONS")))
634 gomp_sections
: public gimple_statement_omp
636 /* [ WORD 1-7 ] : base class */
642 The control variable used for deciding which of the sections to
647 /* GIMPLE_OMP_CONTINUE.
649 Note: This does not inherit from gimple_statement_omp, because we
650 do not need the body field. */
652 struct GTY((tag("GSS_OMP_CONTINUE")))
653 gomp_continue
: public gimple_statement_base
655 /* [ WORD 1-6 ] : base class */
664 /* GIMPLE_OMP_SINGLE, GIMPLE_OMP_TEAMS */
666 struct GTY((tag("GSS_OMP_SINGLE_LAYOUT")))
667 gimple_statement_omp_single_layout
: public gimple_statement_omp
669 /* [ WORD 1-7 ] : base class */
675 struct GTY((tag("GSS_OMP_SINGLE_LAYOUT")))
676 gomp_single
: public gimple_statement_omp_single_layout
678 /* No extra fields; adds invariant:
679 stmt->code == GIMPLE_OMP_SINGLE. */
682 struct GTY((tag("GSS_OMP_SINGLE_LAYOUT")))
683 gomp_teams
: public gimple_statement_omp_single_layout
685 /* No extra fields; adds invariant:
686 stmt->code == GIMPLE_OMP_TEAMS. */
690 /* GIMPLE_OMP_ATOMIC_LOAD.
691 Note: This is based on gimple_statement_base, not g_s_omp, because g_s_omp
692 contains a sequence, which we don't need here. */
694 struct GTY((tag("GSS_OMP_ATOMIC_LOAD")))
695 gomp_atomic_load
: public gimple_statement_base
697 /* [ WORD 1-6 ] : base class */
703 /* GIMPLE_OMP_ATOMIC_STORE.
704 See note on GIMPLE_OMP_ATOMIC_LOAD. */
706 struct GTY((tag("GSS_OMP_ATOMIC_STORE_LAYOUT")))
707 gimple_statement_omp_atomic_store_layout
: public gimple_statement_base
709 /* [ WORD 1-6 ] : base class */
715 struct GTY((tag("GSS_OMP_ATOMIC_STORE_LAYOUT")))
717 public gimple_statement_omp_atomic_store_layout
719 /* No extra fields; adds invariant:
720 stmt->code == GIMPLE_OMP_ATOMIC_STORE. */
723 struct GTY((tag("GSS_OMP_ATOMIC_STORE_LAYOUT")))
724 gimple_statement_omp_return
:
725 public gimple_statement_omp_atomic_store_layout
727 /* No extra fields; adds invariant:
728 stmt->code == GIMPLE_OMP_RETURN. */
731 /* GIMPLE_TRANSACTION. */
733 /* Bits to be stored in the GIMPLE_TRANSACTION subcode. */
735 /* The __transaction_atomic was declared [[outer]] or it is
736 __transaction_relaxed. */
737 #define GTMA_IS_OUTER (1u << 0)
738 #define GTMA_IS_RELAXED (1u << 1)
739 #define GTMA_DECLARATION_MASK (GTMA_IS_OUTER | GTMA_IS_RELAXED)
741 /* The transaction is seen to not have an abort. */
742 #define GTMA_HAVE_ABORT (1u << 2)
743 /* The transaction is seen to have loads or stores. */
744 #define GTMA_HAVE_LOAD (1u << 3)
745 #define GTMA_HAVE_STORE (1u << 4)
746 /* The transaction MAY enter serial irrevocable mode in its dynamic scope. */
747 #define GTMA_MAY_ENTER_IRREVOCABLE (1u << 5)
748 /* The transaction WILL enter serial irrevocable mode.
749 An irrevocable block post-dominates the entire transaction, such
750 that all invocations of the transaction will go serial-irrevocable.
751 In such case, we don't bother instrumenting the transaction, and
752 tell the runtime that it should begin the transaction in
753 serial-irrevocable mode. */
754 #define GTMA_DOES_GO_IRREVOCABLE (1u << 6)
755 /* The transaction contains no instrumentation code whatsover, most
756 likely because it is guaranteed to go irrevocable upon entry. */
757 #define GTMA_HAS_NO_INSTRUMENTATION (1u << 7)
759 struct GTY((tag("GSS_TRANSACTION")))
760 gtransaction
: public gimple_statement_with_memory_ops_base
762 /* [ WORD 1-9 ] : base class */
771 #define DEFGSSTRUCT(SYM, STRUCT, HAS_TREE_OP) SYM,
772 enum gimple_statement_structure_enum
{
773 #include "gsstruct.def"
778 /* A statement with the invariant that
779 stmt->code == GIMPLE_COND
780 i.e. a conditional jump statement. */
782 struct GTY((tag("GSS_WITH_OPS")))
783 gcond
: public gimple_statement_with_ops
785 /* no additional fields; this uses the layout for GSS_WITH_OPS. */
788 /* A statement with the invariant that
789 stmt->code == GIMPLE_DEBUG
790 i.e. a debug statement. */
792 struct GTY((tag("GSS_WITH_OPS")))
793 gdebug
: public gimple_statement_with_ops
795 /* no additional fields; this uses the layout for GSS_WITH_OPS. */
798 /* A statement with the invariant that
799 stmt->code == GIMPLE_GOTO
800 i.e. a goto statement. */
802 struct GTY((tag("GSS_WITH_OPS")))
803 ggoto
: public gimple_statement_with_ops
805 /* no additional fields; this uses the layout for GSS_WITH_OPS. */
808 /* A statement with the invariant that
809 stmt->code == GIMPLE_LABEL
810 i.e. a label statement. */
812 struct GTY((tag("GSS_WITH_OPS")))
813 glabel
: public gimple_statement_with_ops
815 /* no additional fields; this uses the layout for GSS_WITH_OPS. */
818 /* A statement with the invariant that
819 stmt->code == GIMPLE_SWITCH
820 i.e. a switch statement. */
822 struct GTY((tag("GSS_WITH_OPS")))
823 gswitch
: public gimple_statement_with_ops
825 /* no additional fields; this uses the layout for GSS_WITH_OPS. */
828 /* A statement with the invariant that
829 stmt->code == GIMPLE_ASSIGN
830 i.e. an assignment statement. */
832 struct GTY((tag("GSS_WITH_MEM_OPS")))
833 gassign
: public gimple_statement_with_memory_ops
835 /* no additional fields; this uses the layout for GSS_WITH_MEM_OPS. */
838 /* A statement with the invariant that
839 stmt->code == GIMPLE_RETURN
840 i.e. a return statement. */
842 struct GTY((tag("GSS_WITH_MEM_OPS")))
843 greturn
: public gimple_statement_with_memory_ops
845 /* no additional fields; this uses the layout for GSS_WITH_MEM_OPS. */
851 is_a_helper
<gasm
*>::test (gimple gs
)
853 return gs
->code
== GIMPLE_ASM
;
859 is_a_helper
<gassign
*>::test (gimple gs
)
861 return gs
->code
== GIMPLE_ASSIGN
;
867 is_a_helper
<gbind
*>::test (gimple gs
)
869 return gs
->code
== GIMPLE_BIND
;
875 is_a_helper
<gcall
*>::test (gimple gs
)
877 return gs
->code
== GIMPLE_CALL
;
883 is_a_helper
<gcatch
*>::test (gimple gs
)
885 return gs
->code
== GIMPLE_CATCH
;
891 is_a_helper
<gcond
*>::test (gimple gs
)
893 return gs
->code
== GIMPLE_COND
;
899 is_a_helper
<gdebug
*>::test (gimple gs
)
901 return gs
->code
== GIMPLE_DEBUG
;
907 is_a_helper
<ggoto
*>::test (gimple gs
)
909 return gs
->code
== GIMPLE_GOTO
;
915 is_a_helper
<glabel
*>::test (gimple gs
)
917 return gs
->code
== GIMPLE_LABEL
;
923 is_a_helper
<gresx
*>::test (gimple gs
)
925 return gs
->code
== GIMPLE_RESX
;
931 is_a_helper
<geh_dispatch
*>::test (gimple gs
)
933 return gs
->code
== GIMPLE_EH_DISPATCH
;
939 is_a_helper
<geh_else
*>::test (gimple gs
)
941 return gs
->code
== GIMPLE_EH_ELSE
;
947 is_a_helper
<geh_filter
*>::test (gimple gs
)
949 return gs
->code
== GIMPLE_EH_FILTER
;
955 is_a_helper
<geh_mnt
*>::test (gimple gs
)
957 return gs
->code
== GIMPLE_EH_MUST_NOT_THROW
;
963 is_a_helper
<gomp_atomic_load
*>::test (gimple gs
)
965 return gs
->code
== GIMPLE_OMP_ATOMIC_LOAD
;
971 is_a_helper
<gomp_atomic_store
*>::test (gimple gs
)
973 return gs
->code
== GIMPLE_OMP_ATOMIC_STORE
;
979 is_a_helper
<gimple_statement_omp_return
*>::test (gimple gs
)
981 return gs
->code
== GIMPLE_OMP_RETURN
;
987 is_a_helper
<gomp_continue
*>::test (gimple gs
)
989 return gs
->code
== GIMPLE_OMP_CONTINUE
;
995 is_a_helper
<gomp_critical
*>::test (gimple gs
)
997 return gs
->code
== GIMPLE_OMP_CRITICAL
;
1003 is_a_helper
<gomp_for
*>::test (gimple gs
)
1005 return gs
->code
== GIMPLE_OMP_FOR
;
1011 is_a_helper
<gimple_statement_omp_taskreg
*>::test (gimple gs
)
1013 return gs
->code
== GIMPLE_OMP_PARALLEL
|| gs
->code
== GIMPLE_OMP_TASK
;
1019 is_a_helper
<gomp_parallel
*>::test (gimple gs
)
1021 return gs
->code
== GIMPLE_OMP_PARALLEL
;
1027 is_a_helper
<gomp_target
*>::test (gimple gs
)
1029 return gs
->code
== GIMPLE_OMP_TARGET
;
1035 is_a_helper
<gomp_sections
*>::test (gimple gs
)
1037 return gs
->code
== GIMPLE_OMP_SECTIONS
;
1043 is_a_helper
<gomp_single
*>::test (gimple gs
)
1045 return gs
->code
== GIMPLE_OMP_SINGLE
;
1051 is_a_helper
<gomp_teams
*>::test (gimple gs
)
1053 return gs
->code
== GIMPLE_OMP_TEAMS
;
1059 is_a_helper
<gomp_task
*>::test (gimple gs
)
1061 return gs
->code
== GIMPLE_OMP_TASK
;
1067 is_a_helper
<gphi
*>::test (gimple gs
)
1069 return gs
->code
== GIMPLE_PHI
;
1075 is_a_helper
<greturn
*>::test (gimple gs
)
1077 return gs
->code
== GIMPLE_RETURN
;
1083 is_a_helper
<gswitch
*>::test (gimple gs
)
1085 return gs
->code
== GIMPLE_SWITCH
;
1091 is_a_helper
<gtransaction
*>::test (gimple gs
)
1093 return gs
->code
== GIMPLE_TRANSACTION
;
1099 is_a_helper
<gtry
*>::test (gimple gs
)
1101 return gs
->code
== GIMPLE_TRY
;
1107 is_a_helper
<gimple_statement_wce
*>::test (gimple gs
)
1109 return gs
->code
== GIMPLE_WITH_CLEANUP_EXPR
;
1115 is_a_helper
<const gasm
*>::test (const_gimple gs
)
1117 return gs
->code
== GIMPLE_ASM
;
1123 is_a_helper
<const gbind
*>::test (const_gimple gs
)
1125 return gs
->code
== GIMPLE_BIND
;
1131 is_a_helper
<const gcall
*>::test (const_gimple gs
)
1133 return gs
->code
== GIMPLE_CALL
;
1139 is_a_helper
<const gcatch
*>::test (const_gimple gs
)
1141 return gs
->code
== GIMPLE_CATCH
;
1147 is_a_helper
<const gresx
*>::test (const_gimple gs
)
1149 return gs
->code
== GIMPLE_RESX
;
1155 is_a_helper
<const geh_dispatch
*>::test (const_gimple gs
)
1157 return gs
->code
== GIMPLE_EH_DISPATCH
;
1163 is_a_helper
<const geh_filter
*>::test (const_gimple gs
)
1165 return gs
->code
== GIMPLE_EH_FILTER
;
1171 is_a_helper
<const gomp_atomic_load
*>::test (const_gimple gs
)
1173 return gs
->code
== GIMPLE_OMP_ATOMIC_LOAD
;
1179 is_a_helper
<const gomp_atomic_store
*>::test (const_gimple gs
)
1181 return gs
->code
== GIMPLE_OMP_ATOMIC_STORE
;
1187 is_a_helper
<const gimple_statement_omp_return
*>::test (const_gimple gs
)
1189 return gs
->code
== GIMPLE_OMP_RETURN
;
1195 is_a_helper
<const gomp_continue
*>::test (const_gimple gs
)
1197 return gs
->code
== GIMPLE_OMP_CONTINUE
;
1203 is_a_helper
<const gomp_critical
*>::test (const_gimple gs
)
1205 return gs
->code
== GIMPLE_OMP_CRITICAL
;
1211 is_a_helper
<const gomp_for
*>::test (const_gimple gs
)
1213 return gs
->code
== GIMPLE_OMP_FOR
;
1219 is_a_helper
<const gimple_statement_omp_taskreg
*>::test (const_gimple gs
)
1221 return gs
->code
== GIMPLE_OMP_PARALLEL
|| gs
->code
== GIMPLE_OMP_TASK
;
1227 is_a_helper
<const gomp_parallel
*>::test (const_gimple gs
)
1229 return gs
->code
== GIMPLE_OMP_PARALLEL
;
1235 is_a_helper
<const gomp_target
*>::test (const_gimple gs
)
1237 return gs
->code
== GIMPLE_OMP_TARGET
;
1243 is_a_helper
<const gomp_sections
*>::test (const_gimple gs
)
1245 return gs
->code
== GIMPLE_OMP_SECTIONS
;
1251 is_a_helper
<const gomp_single
*>::test (const_gimple gs
)
1253 return gs
->code
== GIMPLE_OMP_SINGLE
;
1259 is_a_helper
<const gomp_teams
*>::test (const_gimple gs
)
1261 return gs
->code
== GIMPLE_OMP_TEAMS
;
1267 is_a_helper
<const gomp_task
*>::test (const_gimple gs
)
1269 return gs
->code
== GIMPLE_OMP_TASK
;
1275 is_a_helper
<const gphi
*>::test (const_gimple gs
)
1277 return gs
->code
== GIMPLE_PHI
;
1283 is_a_helper
<const gtransaction
*>::test (const_gimple gs
)
1285 return gs
->code
== GIMPLE_TRANSACTION
;
1288 /* Offset in bytes to the location of the operand vector.
1289 Zero if there is no operand vector for this tuple structure. */
1290 extern size_t const gimple_ops_offset_
[];
1292 /* Map GIMPLE codes to GSS codes. */
1293 extern enum gimple_statement_structure_enum
const gss_for_code_
[];
1295 /* This variable holds the currently expanded gimple statement for purposes
1296 of comminucating the profile info to the builtin expanders. */
1297 extern gimple currently_expanding_gimple_stmt
;
1299 #define gimple_alloc(c, n) gimple_alloc_stat (c, n MEM_STAT_INFO)
1300 gimple
gimple_alloc_stat (enum gimple_code
, unsigned MEM_STAT_DECL
);
1301 greturn
*gimple_build_return (tree
);
1302 void gimple_call_reset_alias_info (gcall
*);
1303 gcall
*gimple_build_call_vec (tree
, vec
<tree
> );
1304 gcall
*gimple_build_call (tree
, unsigned, ...);
1305 gcall
*gimple_build_call_valist (tree
, unsigned, va_list);
1306 gcall
*gimple_build_call_internal (enum internal_fn
, unsigned, ...);
1307 gcall
*gimple_build_call_internal_vec (enum internal_fn
, vec
<tree
> );
1308 gcall
*gimple_build_call_from_tree (tree
);
1309 gassign
*gimple_build_assign (tree
, tree CXX_MEM_STAT_INFO
);
1310 gassign
*gimple_build_assign (tree
, enum tree_code
,
1311 tree
, tree
, tree CXX_MEM_STAT_INFO
);
1312 gassign
*gimple_build_assign (tree
, enum tree_code
,
1313 tree
, tree CXX_MEM_STAT_INFO
);
1314 gassign
*gimple_build_assign (tree
, enum tree_code
, tree CXX_MEM_STAT_INFO
);
1315 gcond
*gimple_build_cond (enum tree_code
, tree
, tree
, tree
, tree
);
1316 gcond
*gimple_build_cond_from_tree (tree
, tree
, tree
);
1317 void gimple_cond_set_condition_from_tree (gcond
*, tree
);
1318 glabel
*gimple_build_label (tree label
);
1319 ggoto
*gimple_build_goto (tree dest
);
1320 gimple
gimple_build_nop (void);
1321 gbind
*gimple_build_bind (tree
, gimple_seq
, tree
);
1322 gasm
*gimple_build_asm_vec (const char *, vec
<tree
, va_gc
> *,
1323 vec
<tree
, va_gc
> *, vec
<tree
, va_gc
> *,
1324 vec
<tree
, va_gc
> *);
1325 gcatch
*gimple_build_catch (tree
, gimple_seq
);
1326 geh_filter
*gimple_build_eh_filter (tree
, gimple_seq
);
1327 geh_mnt
*gimple_build_eh_must_not_throw (tree
);
1328 geh_else
*gimple_build_eh_else (gimple_seq
, gimple_seq
);
1329 gtry
*gimple_build_try (gimple_seq
, gimple_seq
,
1330 enum gimple_try_flags
);
1331 gimple
gimple_build_wce (gimple_seq
);
1332 gresx
*gimple_build_resx (int);
1333 gswitch
*gimple_build_switch_nlabels (unsigned, tree
, tree
);
1334 gswitch
*gimple_build_switch (tree
, tree
, vec
<tree
> );
1335 geh_dispatch
*gimple_build_eh_dispatch (int);
1336 gdebug
*gimple_build_debug_bind_stat (tree
, tree
, gimple MEM_STAT_DECL
);
1337 #define gimple_build_debug_bind(var,val,stmt) \
1338 gimple_build_debug_bind_stat ((var), (val), (stmt) MEM_STAT_INFO)
1339 gdebug
*gimple_build_debug_source_bind_stat (tree
, tree
, gimple MEM_STAT_DECL
);
1340 #define gimple_build_debug_source_bind(var,val,stmt) \
1341 gimple_build_debug_source_bind_stat ((var), (val), (stmt) MEM_STAT_INFO)
1342 gomp_critical
*gimple_build_omp_critical (gimple_seq
, tree
);
1343 gomp_for
*gimple_build_omp_for (gimple_seq
, int, tree
, size_t, gimple_seq
);
1344 gomp_parallel
*gimple_build_omp_parallel (gimple_seq
, tree
, tree
, tree
);
1345 gomp_task
*gimple_build_omp_task (gimple_seq
, tree
, tree
, tree
, tree
,
1347 gimple
gimple_build_omp_section (gimple_seq
);
1348 gimple
gimple_build_omp_master (gimple_seq
);
1349 gimple
gimple_build_omp_taskgroup (gimple_seq
);
1350 gomp_continue
*gimple_build_omp_continue (tree
, tree
);
1351 gimple
gimple_build_omp_ordered (gimple_seq
);
1352 gimple
gimple_build_omp_return (bool);
1353 gomp_sections
*gimple_build_omp_sections (gimple_seq
, tree
);
1354 gimple
gimple_build_omp_sections_switch (void);
1355 gomp_single
*gimple_build_omp_single (gimple_seq
, tree
);
1356 gomp_target
*gimple_build_omp_target (gimple_seq
, int, tree
);
1357 gomp_teams
*gimple_build_omp_teams (gimple_seq
, tree
);
1358 gomp_atomic_load
*gimple_build_omp_atomic_load (tree
, tree
);
1359 gomp_atomic_store
*gimple_build_omp_atomic_store (tree
);
1360 gtransaction
*gimple_build_transaction (gimple_seq
, tree
);
1361 extern void gimple_seq_add_stmt (gimple_seq
*, gimple
);
1362 extern void gimple_seq_add_stmt_without_update (gimple_seq
*, gimple
);
1363 void gimple_seq_add_seq (gimple_seq
*, gimple_seq
);
1364 void gimple_seq_add_seq_without_update (gimple_seq
*, gimple_seq
);
1365 extern void annotate_all_with_location_after (gimple_seq
, gimple_stmt_iterator
,
1367 extern void annotate_all_with_location (gimple_seq
, location_t
);
1368 bool empty_body_p (gimple_seq
);
1369 gimple_seq
gimple_seq_copy (gimple_seq
);
1370 bool gimple_call_same_target_p (const_gimple
, const_gimple
);
1371 int gimple_call_flags (const_gimple
);
1372 int gimple_call_arg_flags (const gcall
*, unsigned);
1373 int gimple_call_return_flags (const gcall
*);
1374 bool gimple_assign_copy_p (gimple
);
1375 bool gimple_assign_ssa_name_copy_p (gimple
);
1376 bool gimple_assign_unary_nop_p (gimple
);
1377 void gimple_set_bb (gimple
, basic_block
);
1378 void gimple_assign_set_rhs_from_tree (gimple_stmt_iterator
*, tree
);
1379 void gimple_assign_set_rhs_with_ops (gimple_stmt_iterator
*, enum tree_code
,
1381 tree
gimple_get_lhs (const_gimple
);
1382 void gimple_set_lhs (gimple
, tree
);
1383 gimple
gimple_copy (gimple
);
1384 bool gimple_has_side_effects (const_gimple
);
1385 bool gimple_could_trap_p_1 (gimple
, bool, bool);
1386 bool gimple_could_trap_p (gimple
);
1387 bool gimple_assign_rhs_could_trap_p (gimple
);
1388 extern void dump_gimple_statistics (void);
1389 unsigned get_gimple_rhs_num_ops (enum tree_code
);
1390 extern tree
canonicalize_cond_expr_cond (tree
);
1391 gcall
*gimple_call_copy_skip_args (gcall
*, bitmap
);
1392 extern bool gimple_compare_field_offset (tree
, tree
);
1393 extern tree
gimple_unsigned_type (tree
);
1394 extern tree
gimple_signed_type (tree
);
1395 extern alias_set_type
gimple_get_alias_set (tree
);
1396 extern bool gimple_ior_addresses_taken (bitmap
, gimple
);
1397 extern bool gimple_builtin_call_types_compatible_p (const_gimple
, tree
);
1398 extern bool gimple_call_builtin_p (const_gimple
);
1399 extern bool gimple_call_builtin_p (const_gimple
, enum built_in_class
);
1400 extern bool gimple_call_builtin_p (const_gimple
, enum built_in_function
);
1401 extern bool gimple_asm_clobbers_memory_p (const gasm
*);
1402 extern void dump_decl_set (FILE *, bitmap
);
1403 extern bool nonfreeing_call_p (gimple
);
1404 extern bool infer_nonnull_range (gimple
, tree
, bool, bool);
1405 extern void sort_case_labels (vec
<tree
>);
1406 extern void preprocess_case_label_vec_for_gimple (vec
<tree
>, tree
, tree
*);
1407 extern void gimple_seq_set_location (gimple_seq
, location_t
);
1408 extern void gimple_seq_discard (gimple_seq
);
1409 extern void maybe_remove_unused_call_args (struct function
*, gimple
);
1411 /* Formal (expression) temporary table handling: multiple occurrences of
1412 the same scalar expression are evaluated into the same temporary. */
1414 typedef struct gimple_temp_hash_elt
1417 tree temp
; /* Value */
1420 /* Get the number of the next statement uid to be allocated. */
1421 static inline unsigned int
1422 gimple_stmt_max_uid (struct function
*fn
)
1424 return fn
->last_stmt_uid
;
1427 /* Set the number of the next statement uid to be allocated. */
1429 set_gimple_stmt_max_uid (struct function
*fn
, unsigned int maxid
)
1431 fn
->last_stmt_uid
= maxid
;
1434 /* Set the number of the next statement uid to be allocated. */
1435 static inline unsigned int
1436 inc_gimple_stmt_max_uid (struct function
*fn
)
1438 return fn
->last_stmt_uid
++;
1441 /* Return the first node in GIMPLE sequence S. */
1443 static inline gimple_seq_node
1444 gimple_seq_first (gimple_seq s
)
1450 /* Return the first statement in GIMPLE sequence S. */
1452 static inline gimple
1453 gimple_seq_first_stmt (gimple_seq s
)
1455 gimple_seq_node n
= gimple_seq_first (s
);
1459 /* Return the first statement in GIMPLE sequence S as a gbind *,
1460 verifying that it has code GIMPLE_BIND in a checked build. */
1462 static inline gbind
*
1463 gimple_seq_first_stmt_as_a_bind (gimple_seq s
)
1465 gimple_seq_node n
= gimple_seq_first (s
);
1466 return as_a
<gbind
*> (n
);
1470 /* Return the last node in GIMPLE sequence S. */
1472 static inline gimple_seq_node
1473 gimple_seq_last (gimple_seq s
)
1475 return s
? s
->prev
: NULL
;
1479 /* Return the last statement in GIMPLE sequence S. */
1481 static inline gimple
1482 gimple_seq_last_stmt (gimple_seq s
)
1484 gimple_seq_node n
= gimple_seq_last (s
);
1489 /* Set the last node in GIMPLE sequence *PS to LAST. */
1492 gimple_seq_set_last (gimple_seq
*ps
, gimple_seq_node last
)
1498 /* Set the first node in GIMPLE sequence *PS to FIRST. */
1501 gimple_seq_set_first (gimple_seq
*ps
, gimple_seq_node first
)
1507 /* Return true if GIMPLE sequence S is empty. */
1510 gimple_seq_empty_p (gimple_seq s
)
1515 /* Allocate a new sequence and initialize its first element with STMT. */
1517 static inline gimple_seq
1518 gimple_seq_alloc_with_stmt (gimple stmt
)
1520 gimple_seq seq
= NULL
;
1521 gimple_seq_add_stmt (&seq
, stmt
);
1526 /* Returns the sequence of statements in BB. */
1528 static inline gimple_seq
1529 bb_seq (const_basic_block bb
)
1531 return (!(bb
->flags
& BB_RTL
)) ? bb
->il
.gimple
.seq
: NULL
;
1534 static inline gimple_seq
*
1535 bb_seq_addr (basic_block bb
)
1537 return (!(bb
->flags
& BB_RTL
)) ? &bb
->il
.gimple
.seq
: NULL
;
1540 /* Sets the sequence of statements in BB to SEQ. */
1543 set_bb_seq (basic_block bb
, gimple_seq seq
)
1545 gcc_checking_assert (!(bb
->flags
& BB_RTL
));
1546 bb
->il
.gimple
.seq
= seq
;
1550 /* Return the code for GIMPLE statement G. */
1552 static inline enum gimple_code
1553 gimple_code (const_gimple g
)
1559 /* Return the GSS code used by a GIMPLE code. */
1561 static inline enum gimple_statement_structure_enum
1562 gss_for_code (enum gimple_code code
)
1564 gcc_gimple_checking_assert ((unsigned int)code
< LAST_AND_UNUSED_GIMPLE_CODE
);
1565 return gss_for_code_
[code
];
1569 /* Return which GSS code is used by GS. */
1571 static inline enum gimple_statement_structure_enum
1572 gimple_statement_structure (gimple gs
)
1574 return gss_for_code (gimple_code (gs
));
1578 /* Return true if statement G has sub-statements. This is only true for
1579 High GIMPLE statements. */
1582 gimple_has_substatements (gimple g
)
1584 switch (gimple_code (g
))
1588 case GIMPLE_EH_FILTER
:
1589 case GIMPLE_EH_ELSE
:
1591 case GIMPLE_OMP_FOR
:
1592 case GIMPLE_OMP_MASTER
:
1593 case GIMPLE_OMP_TASKGROUP
:
1594 case GIMPLE_OMP_ORDERED
:
1595 case GIMPLE_OMP_SECTION
:
1596 case GIMPLE_OMP_PARALLEL
:
1597 case GIMPLE_OMP_TASK
:
1598 case GIMPLE_OMP_SECTIONS
:
1599 case GIMPLE_OMP_SINGLE
:
1600 case GIMPLE_OMP_TARGET
:
1601 case GIMPLE_OMP_TEAMS
:
1602 case GIMPLE_OMP_CRITICAL
:
1603 case GIMPLE_WITH_CLEANUP_EXPR
:
1604 case GIMPLE_TRANSACTION
:
1613 /* Return the basic block holding statement G. */
1615 static inline basic_block
1616 gimple_bb (const_gimple g
)
1622 /* Return the lexical scope block holding statement G. */
1625 gimple_block (const_gimple g
)
1627 return LOCATION_BLOCK (g
->location
);
1631 /* Set BLOCK to be the lexical scope block holding statement G. */
1634 gimple_set_block (gimple g
, tree block
)
1638 COMBINE_LOCATION_DATA (line_table
, g
->location
, block
);
1640 g
->location
= LOCATION_LOCUS (g
->location
);
1644 /* Return location information for statement G. */
1646 static inline location_t
1647 gimple_location (const_gimple g
)
1652 /* Return location information for statement G if g is not NULL.
1653 Otherwise, UNKNOWN_LOCATION is returned. */
1655 static inline location_t
1656 gimple_location_safe (const_gimple g
)
1658 return g
? gimple_location (g
) : UNKNOWN_LOCATION
;
1661 /* Return pointer to location information for statement G. */
1663 static inline const location_t
*
1664 gimple_location_ptr (const_gimple g
)
1666 return &g
->location
;
1670 /* Set location information for statement G. */
1673 gimple_set_location (gimple g
, location_t location
)
1675 g
->location
= location
;
1679 /* Return true if G contains location information. */
1682 gimple_has_location (const_gimple g
)
1684 return LOCATION_LOCUS (gimple_location (g
)) != UNKNOWN_LOCATION
;
1688 /* Return the file name of the location of STMT. */
1690 static inline const char *
1691 gimple_filename (const_gimple stmt
)
1693 return LOCATION_FILE (gimple_location (stmt
));
1697 /* Return the line number of the location of STMT. */
1700 gimple_lineno (const_gimple stmt
)
1702 return LOCATION_LINE (gimple_location (stmt
));
1706 /* Determine whether SEQ is a singleton. */
1709 gimple_seq_singleton_p (gimple_seq seq
)
1711 return ((gimple_seq_first (seq
) != NULL
)
1712 && (gimple_seq_first (seq
) == gimple_seq_last (seq
)));
1715 /* Return true if no warnings should be emitted for statement STMT. */
1718 gimple_no_warning_p (const_gimple stmt
)
1720 return stmt
->no_warning
;
1723 /* Set the no_warning flag of STMT to NO_WARNING. */
1726 gimple_set_no_warning (gimple stmt
, bool no_warning
)
1728 stmt
->no_warning
= (unsigned) no_warning
;
1731 /* Set the visited status on statement STMT to VISITED_P.
1733 Please note that this 'visited' property of the gimple statement is
1734 supposed to be undefined at pass boundaries. This means that a
1735 given pass should not assume it contains any useful value when the
1736 pass starts and thus can set it to any value it sees fit.
1738 You can learn more about the visited property of the gimple
1739 statement by reading the comments of the 'visited' data member of
1740 struct gimple statement_base.
1744 gimple_set_visited (gimple stmt
, bool visited_p
)
1746 stmt
->visited
= (unsigned) visited_p
;
1750 /* Return the visited status for statement STMT.
1752 Please note that this 'visited' property of the gimple statement is
1753 supposed to be undefined at pass boundaries. This means that a
1754 given pass should not assume it contains any useful value when the
1755 pass starts and thus can set it to any value it sees fit.
1757 You can learn more about the visited property of the gimple
1758 statement by reading the comments of the 'visited' data member of
1759 struct gimple statement_base. */
1762 gimple_visited_p (gimple stmt
)
1764 return stmt
->visited
;
1768 /* Set pass local flag PLF on statement STMT to VAL_P.
1770 Please note that this PLF property of the gimple statement is
1771 supposed to be undefined at pass boundaries. This means that a
1772 given pass should not assume it contains any useful value when the
1773 pass starts and thus can set it to any value it sees fit.
1775 You can learn more about the PLF property by reading the comment of
1776 the 'plf' data member of struct gimple_statement_structure. */
1779 gimple_set_plf (gimple stmt
, enum plf_mask plf
, bool val_p
)
1782 stmt
->plf
|= (unsigned int) plf
;
1784 stmt
->plf
&= ~((unsigned int) plf
);
1788 /* Return the value of pass local flag PLF on statement STMT.
1790 Please note that this 'plf' property of the gimple statement is
1791 supposed to be undefined at pass boundaries. This means that a
1792 given pass should not assume it contains any useful value when the
1793 pass starts and thus can set it to any value it sees fit.
1795 You can learn more about the plf property by reading the comment of
1796 the 'plf' data member of struct gimple_statement_structure. */
1798 static inline unsigned int
1799 gimple_plf (gimple stmt
, enum plf_mask plf
)
1801 return stmt
->plf
& ((unsigned int) plf
);
1805 /* Set the UID of statement.
1807 Please note that this UID property is supposed to be undefined at
1808 pass boundaries. This means that a given pass should not assume it
1809 contains any useful value when the pass starts and thus can set it
1810 to any value it sees fit. */
1813 gimple_set_uid (gimple g
, unsigned uid
)
1819 /* Return the UID of statement.
1821 Please note that this UID property is supposed to be undefined at
1822 pass boundaries. This means that a given pass should not assume it
1823 contains any useful value when the pass starts and thus can set it
1824 to any value it sees fit. */
1826 static inline unsigned
1827 gimple_uid (const_gimple g
)
1833 /* Make statement G a singleton sequence. */
1836 gimple_init_singleton (gimple g
)
1843 /* Return true if GIMPLE statement G has register or memory operands. */
1846 gimple_has_ops (const_gimple g
)
1848 return gimple_code (g
) >= GIMPLE_COND
&& gimple_code (g
) <= GIMPLE_RETURN
;
1854 is_a_helper
<const gimple_statement_with_ops
*>::test (const_gimple gs
)
1856 return gimple_has_ops (gs
);
1862 is_a_helper
<gimple_statement_with_ops
*>::test (gimple gs
)
1864 return gimple_has_ops (gs
);
1867 /* Return true if GIMPLE statement G has memory operands. */
1870 gimple_has_mem_ops (const_gimple g
)
1872 return gimple_code (g
) >= GIMPLE_ASSIGN
&& gimple_code (g
) <= GIMPLE_RETURN
;
1878 is_a_helper
<const gimple_statement_with_memory_ops
*>::test (const_gimple gs
)
1880 return gimple_has_mem_ops (gs
);
1886 is_a_helper
<gimple_statement_with_memory_ops
*>::test (gimple gs
)
1888 return gimple_has_mem_ops (gs
);
1891 /* Return the set of USE operands for statement G. */
1893 static inline struct use_optype_d
*
1894 gimple_use_ops (const_gimple g
)
1896 const gimple_statement_with_ops
*ops_stmt
=
1897 dyn_cast
<const gimple_statement_with_ops
*> (g
);
1900 return ops_stmt
->use_ops
;
1904 /* Set USE to be the set of USE operands for statement G. */
1907 gimple_set_use_ops (gimple g
, struct use_optype_d
*use
)
1909 gimple_statement_with_ops
*ops_stmt
=
1910 as_a
<gimple_statement_with_ops
*> (g
);
1911 ops_stmt
->use_ops
= use
;
1915 /* Return the single VUSE operand of the statement G. */
1918 gimple_vuse (const_gimple g
)
1920 const gimple_statement_with_memory_ops
*mem_ops_stmt
=
1921 dyn_cast
<const gimple_statement_with_memory_ops
*> (g
);
1924 return mem_ops_stmt
->vuse
;
1927 /* Return the single VDEF operand of the statement G. */
1930 gimple_vdef (const_gimple g
)
1932 const gimple_statement_with_memory_ops
*mem_ops_stmt
=
1933 dyn_cast
<const gimple_statement_with_memory_ops
*> (g
);
1936 return mem_ops_stmt
->vdef
;
1939 /* Return the single VUSE operand of the statement G. */
1941 static inline tree
*
1942 gimple_vuse_ptr (gimple g
)
1944 gimple_statement_with_memory_ops
*mem_ops_stmt
=
1945 dyn_cast
<gimple_statement_with_memory_ops
*> (g
);
1948 return &mem_ops_stmt
->vuse
;
1951 /* Return the single VDEF operand of the statement G. */
1953 static inline tree
*
1954 gimple_vdef_ptr (gimple g
)
1956 gimple_statement_with_memory_ops
*mem_ops_stmt
=
1957 dyn_cast
<gimple_statement_with_memory_ops
*> (g
);
1960 return &mem_ops_stmt
->vdef
;
1963 /* Set the single VUSE operand of the statement G. */
1966 gimple_set_vuse (gimple g
, tree vuse
)
1968 gimple_statement_with_memory_ops
*mem_ops_stmt
=
1969 as_a
<gimple_statement_with_memory_ops
*> (g
);
1970 mem_ops_stmt
->vuse
= vuse
;
1973 /* Set the single VDEF operand of the statement G. */
1976 gimple_set_vdef (gimple g
, tree vdef
)
1978 gimple_statement_with_memory_ops
*mem_ops_stmt
=
1979 as_a
<gimple_statement_with_memory_ops
*> (g
);
1980 mem_ops_stmt
->vdef
= vdef
;
1984 /* Return true if statement G has operands and the modified field has
1988 gimple_modified_p (const_gimple g
)
1990 return (gimple_has_ops (g
)) ? (bool) g
->modified
: false;
1994 /* Set the MODIFIED flag to MODIFIEDP, iff the gimple statement G has
1995 a MODIFIED field. */
1998 gimple_set_modified (gimple s
, bool modifiedp
)
2000 if (gimple_has_ops (s
))
2001 s
->modified
= (unsigned) modifiedp
;
2005 /* Return the tree code for the expression computed by STMT. This is
2006 only valid for GIMPLE_COND, GIMPLE_CALL and GIMPLE_ASSIGN. For
2007 GIMPLE_CALL, return CALL_EXPR as the expression code for
2008 consistency. This is useful when the caller needs to deal with the
2009 three kinds of computation that GIMPLE supports. */
2011 static inline enum tree_code
2012 gimple_expr_code (const_gimple stmt
)
2014 enum gimple_code code
= gimple_code (stmt
);
2015 if (code
== GIMPLE_ASSIGN
|| code
== GIMPLE_COND
)
2016 return (enum tree_code
) stmt
->subcode
;
2019 gcc_gimple_checking_assert (code
== GIMPLE_CALL
);
2025 /* Return true if statement STMT contains volatile operands. */
2028 gimple_has_volatile_ops (const_gimple stmt
)
2030 if (gimple_has_mem_ops (stmt
))
2031 return stmt
->has_volatile_ops
;
2037 /* Set the HAS_VOLATILE_OPS flag to VOLATILEP. */
2040 gimple_set_has_volatile_ops (gimple stmt
, bool volatilep
)
2042 if (gimple_has_mem_ops (stmt
))
2043 stmt
->has_volatile_ops
= (unsigned) volatilep
;
2046 /* Return true if STMT is in a transaction. */
2049 gimple_in_transaction (gimple stmt
)
2051 return bb_in_transaction (gimple_bb (stmt
));
2054 /* Return true if statement STMT may access memory. */
2057 gimple_references_memory_p (gimple stmt
)
2059 return gimple_has_mem_ops (stmt
) && gimple_vuse (stmt
);
2063 /* Return the subcode for OMP statement S. */
2065 static inline unsigned
2066 gimple_omp_subcode (const_gimple s
)
2068 gcc_gimple_checking_assert (gimple_code (s
) >= GIMPLE_OMP_ATOMIC_LOAD
2069 && gimple_code (s
) <= GIMPLE_OMP_TEAMS
);
2073 /* Set the subcode for OMP statement S to SUBCODE. */
2076 gimple_omp_set_subcode (gimple s
, unsigned int subcode
)
2078 /* We only have 16 bits for the subcode. Assert that we are not
2080 gcc_gimple_checking_assert (subcode
< (1 << 16));
2081 s
->subcode
= subcode
;
2084 /* Set the nowait flag on OMP_RETURN statement S. */
2087 gimple_omp_return_set_nowait (gimple s
)
2089 GIMPLE_CHECK (s
, GIMPLE_OMP_RETURN
);
2090 s
->subcode
|= GF_OMP_RETURN_NOWAIT
;
2094 /* Return true if OMP return statement G has the GF_OMP_RETURN_NOWAIT
2098 gimple_omp_return_nowait_p (const_gimple g
)
2100 GIMPLE_CHECK (g
, GIMPLE_OMP_RETURN
);
2101 return (gimple_omp_subcode (g
) & GF_OMP_RETURN_NOWAIT
) != 0;
2105 /* Set the LHS of OMP return. */
2108 gimple_omp_return_set_lhs (gimple g
, tree lhs
)
2110 gimple_statement_omp_return
*omp_return_stmt
=
2111 as_a
<gimple_statement_omp_return
*> (g
);
2112 omp_return_stmt
->val
= lhs
;
2116 /* Get the LHS of OMP return. */
2119 gimple_omp_return_lhs (const_gimple g
)
2121 const gimple_statement_omp_return
*omp_return_stmt
=
2122 as_a
<const gimple_statement_omp_return
*> (g
);
2123 return omp_return_stmt
->val
;
2127 /* Return a pointer to the LHS of OMP return. */
2129 static inline tree
*
2130 gimple_omp_return_lhs_ptr (gimple g
)
2132 gimple_statement_omp_return
*omp_return_stmt
=
2133 as_a
<gimple_statement_omp_return
*> (g
);
2134 return &omp_return_stmt
->val
;
2138 /* Return true if OMP section statement G has the GF_OMP_SECTION_LAST
2142 gimple_omp_section_last_p (const_gimple g
)
2144 GIMPLE_CHECK (g
, GIMPLE_OMP_SECTION
);
2145 return (gimple_omp_subcode (g
) & GF_OMP_SECTION_LAST
) != 0;
2149 /* Set the GF_OMP_SECTION_LAST flag on G. */
2152 gimple_omp_section_set_last (gimple g
)
2154 GIMPLE_CHECK (g
, GIMPLE_OMP_SECTION
);
2155 g
->subcode
|= GF_OMP_SECTION_LAST
;
2159 /* Return true if OMP parallel statement G has the
2160 GF_OMP_PARALLEL_COMBINED flag set. */
2163 gimple_omp_parallel_combined_p (const_gimple g
)
2165 GIMPLE_CHECK (g
, GIMPLE_OMP_PARALLEL
);
2166 return (gimple_omp_subcode (g
) & GF_OMP_PARALLEL_COMBINED
) != 0;
2170 /* Set the GF_OMP_PARALLEL_COMBINED field in G depending on the boolean
2171 value of COMBINED_P. */
2174 gimple_omp_parallel_set_combined_p (gimple g
, bool combined_p
)
2176 GIMPLE_CHECK (g
, GIMPLE_OMP_PARALLEL
);
2178 g
->subcode
|= GF_OMP_PARALLEL_COMBINED
;
2180 g
->subcode
&= ~GF_OMP_PARALLEL_COMBINED
;
2184 /* Return true if OMP atomic load/store statement G has the
2185 GF_OMP_ATOMIC_NEED_VALUE flag set. */
2188 gimple_omp_atomic_need_value_p (const_gimple g
)
2190 if (gimple_code (g
) != GIMPLE_OMP_ATOMIC_LOAD
)
2191 GIMPLE_CHECK (g
, GIMPLE_OMP_ATOMIC_STORE
);
2192 return (gimple_omp_subcode (g
) & GF_OMP_ATOMIC_NEED_VALUE
) != 0;
2196 /* Set the GF_OMP_ATOMIC_NEED_VALUE flag on G. */
2199 gimple_omp_atomic_set_need_value (gimple g
)
2201 if (gimple_code (g
) != GIMPLE_OMP_ATOMIC_LOAD
)
2202 GIMPLE_CHECK (g
, GIMPLE_OMP_ATOMIC_STORE
);
2203 g
->subcode
|= GF_OMP_ATOMIC_NEED_VALUE
;
2207 /* Return true if OMP atomic load/store statement G has the
2208 GF_OMP_ATOMIC_SEQ_CST flag set. */
2211 gimple_omp_atomic_seq_cst_p (const_gimple g
)
2213 if (gimple_code (g
) != GIMPLE_OMP_ATOMIC_LOAD
)
2214 GIMPLE_CHECK (g
, GIMPLE_OMP_ATOMIC_STORE
);
2215 return (gimple_omp_subcode (g
) & GF_OMP_ATOMIC_SEQ_CST
) != 0;
2219 /* Set the GF_OMP_ATOMIC_SEQ_CST flag on G. */
2222 gimple_omp_atomic_set_seq_cst (gimple g
)
2224 if (gimple_code (g
) != GIMPLE_OMP_ATOMIC_LOAD
)
2225 GIMPLE_CHECK (g
, GIMPLE_OMP_ATOMIC_STORE
);
2226 g
->subcode
|= GF_OMP_ATOMIC_SEQ_CST
;
2230 /* Return the number of operands for statement GS. */
2232 static inline unsigned
2233 gimple_num_ops (const_gimple gs
)
2239 /* Set the number of operands for statement GS. */
2242 gimple_set_num_ops (gimple gs
, unsigned num_ops
)
2244 gs
->num_ops
= num_ops
;
2248 /* Return the array of operands for statement GS. */
2250 static inline tree
*
2251 gimple_ops (gimple gs
)
2255 /* All the tuples have their operand vector at the very bottom
2256 of the structure. Note that those structures that do not
2257 have an operand vector have a zero offset. */
2258 off
= gimple_ops_offset_
[gimple_statement_structure (gs
)];
2259 gcc_gimple_checking_assert (off
!= 0);
2261 return (tree
*) ((char *) gs
+ off
);
2265 /* Return operand I for statement GS. */
2268 gimple_op (const_gimple gs
, unsigned i
)
2270 if (gimple_has_ops (gs
))
2272 gcc_gimple_checking_assert (i
< gimple_num_ops (gs
));
2273 return gimple_ops (CONST_CAST_GIMPLE (gs
))[i
];
2279 /* Return a pointer to operand I for statement GS. */
2281 static inline tree
*
2282 gimple_op_ptr (const_gimple gs
, unsigned i
)
2284 if (gimple_has_ops (gs
))
2286 gcc_gimple_checking_assert (i
< gimple_num_ops (gs
));
2287 return gimple_ops (CONST_CAST_GIMPLE (gs
)) + i
;
2293 /* Set operand I of statement GS to OP. */
2296 gimple_set_op (gimple gs
, unsigned i
, tree op
)
2298 gcc_gimple_checking_assert (gimple_has_ops (gs
) && i
< gimple_num_ops (gs
));
2300 /* Note. It may be tempting to assert that OP matches
2301 is_gimple_operand, but that would be wrong. Different tuples
2302 accept slightly different sets of tree operands. Each caller
2303 should perform its own validation. */
2304 gimple_ops (gs
)[i
] = op
;
2307 /* Return true if GS is a GIMPLE_ASSIGN. */
2310 is_gimple_assign (const_gimple gs
)
2312 return gimple_code (gs
) == GIMPLE_ASSIGN
;
2315 /* Determine if expression CODE is one of the valid expressions that can
2316 be used on the RHS of GIMPLE assignments. */
2318 static inline enum gimple_rhs_class
2319 get_gimple_rhs_class (enum tree_code code
)
2321 return (enum gimple_rhs_class
) gimple_rhs_class_table
[(int) code
];
2324 /* Return the LHS of assignment statement GS. */
2327 gimple_assign_lhs (const_gimple gs
)
2329 GIMPLE_CHECK (gs
, GIMPLE_ASSIGN
);
2330 return gimple_op (gs
, 0);
2334 /* Return a pointer to the LHS of assignment statement GS. */
2336 static inline tree
*
2337 gimple_assign_lhs_ptr (const_gimple gs
)
2339 GIMPLE_CHECK (gs
, GIMPLE_ASSIGN
);
2340 return gimple_op_ptr (gs
, 0);
2344 /* Set LHS to be the LHS operand of assignment statement GS. */
2347 gimple_assign_set_lhs (gimple gs
, tree lhs
)
2349 GIMPLE_CHECK (gs
, GIMPLE_ASSIGN
);
2350 gimple_set_op (gs
, 0, lhs
);
2352 if (lhs
&& TREE_CODE (lhs
) == SSA_NAME
)
2353 SSA_NAME_DEF_STMT (lhs
) = gs
;
2357 /* Return the first operand on the RHS of assignment statement GS. */
2360 gimple_assign_rhs1 (const_gimple gs
)
2362 GIMPLE_CHECK (gs
, GIMPLE_ASSIGN
);
2363 return gimple_op (gs
, 1);
2367 /* Return a pointer to the first operand on the RHS of assignment
2370 static inline tree
*
2371 gimple_assign_rhs1_ptr (const_gimple gs
)
2373 GIMPLE_CHECK (gs
, GIMPLE_ASSIGN
);
2374 return gimple_op_ptr (gs
, 1);
2377 /* Set RHS to be the first operand on the RHS of assignment statement GS. */
2380 gimple_assign_set_rhs1 (gimple gs
, tree rhs
)
2382 GIMPLE_CHECK (gs
, GIMPLE_ASSIGN
);
2384 gimple_set_op (gs
, 1, rhs
);
2388 /* Return the second operand on the RHS of assignment statement GS.
2389 If GS does not have two operands, NULL is returned instead. */
2392 gimple_assign_rhs2 (const_gimple gs
)
2394 GIMPLE_CHECK (gs
, GIMPLE_ASSIGN
);
2396 if (gimple_num_ops (gs
) >= 3)
2397 return gimple_op (gs
, 2);
2403 /* Return a pointer to the second operand on the RHS of assignment
2406 static inline tree
*
2407 gimple_assign_rhs2_ptr (const_gimple gs
)
2409 GIMPLE_CHECK (gs
, GIMPLE_ASSIGN
);
2410 return gimple_op_ptr (gs
, 2);
2414 /* Set RHS to be the second operand on the RHS of assignment statement GS. */
2417 gimple_assign_set_rhs2 (gimple gs
, tree rhs
)
2419 GIMPLE_CHECK (gs
, GIMPLE_ASSIGN
);
2421 gimple_set_op (gs
, 2, rhs
);
2424 /* Return the third operand on the RHS of assignment statement GS.
2425 If GS does not have two operands, NULL is returned instead. */
2428 gimple_assign_rhs3 (const_gimple gs
)
2430 GIMPLE_CHECK (gs
, GIMPLE_ASSIGN
);
2432 if (gimple_num_ops (gs
) >= 4)
2433 return gimple_op (gs
, 3);
2438 /* Return a pointer to the third operand on the RHS of assignment
2441 static inline tree
*
2442 gimple_assign_rhs3_ptr (const_gimple gs
)
2444 GIMPLE_CHECK (gs
, GIMPLE_ASSIGN
);
2445 return gimple_op_ptr (gs
, 3);
2449 /* Set RHS to be the third operand on the RHS of assignment statement GS. */
2452 gimple_assign_set_rhs3 (gimple gs
, tree rhs
)
2454 GIMPLE_CHECK (gs
, GIMPLE_ASSIGN
);
2456 gimple_set_op (gs
, 3, rhs
);
2459 /* A wrapper around 3 operand gimple_assign_set_rhs_with_ops, for callers
2460 which expect to see only two operands. */
2463 gimple_assign_set_rhs_with_ops (gimple_stmt_iterator
*gsi
, enum tree_code code
,
2466 gimple_assign_set_rhs_with_ops (gsi
, code
, op1
, op2
, NULL
);
2469 /* A wrapper around 3 operand gimple_assign_set_rhs_with_ops, for callers
2470 which expect to see only one operands. */
2473 gimple_assign_set_rhs_with_ops (gimple_stmt_iterator
*gsi
, enum tree_code code
,
2476 gimple_assign_set_rhs_with_ops (gsi
, code
, op1
, NULL
, NULL
);
2479 /* Returns true if GS is a nontemporal move. */
2482 gimple_assign_nontemporal_move_p (const gassign
*gs
)
2484 return gs
->nontemporal_move
;
2487 /* Sets nontemporal move flag of GS to NONTEMPORAL. */
2490 gimple_assign_set_nontemporal_move (gimple gs
, bool nontemporal
)
2492 GIMPLE_CHECK (gs
, GIMPLE_ASSIGN
);
2493 gs
->nontemporal_move
= nontemporal
;
2497 /* Return the code of the expression computed on the rhs of assignment
2498 statement GS. In case that the RHS is a single object, returns the
2499 tree code of the object. */
2501 static inline enum tree_code
2502 gimple_assign_rhs_code (const_gimple gs
)
2504 enum tree_code code
;
2505 GIMPLE_CHECK (gs
, GIMPLE_ASSIGN
);
2507 code
= (enum tree_code
) gs
->subcode
;
2508 /* While we initially set subcode to the TREE_CODE of the rhs for
2509 GIMPLE_SINGLE_RHS assigns we do not update that subcode to stay
2510 in sync when we rewrite stmts into SSA form or do SSA propagations. */
2511 if (get_gimple_rhs_class (code
) == GIMPLE_SINGLE_RHS
)
2512 code
= TREE_CODE (gimple_assign_rhs1 (gs
));
2518 /* Set CODE to be the code for the expression computed on the RHS of
2522 gimple_assign_set_rhs_code (gimple s
, enum tree_code code
)
2524 GIMPLE_CHECK (s
, GIMPLE_ASSIGN
);
2529 /* Return the gimple rhs class of the code of the expression computed on
2530 the rhs of assignment statement GS.
2531 This will never return GIMPLE_INVALID_RHS. */
2533 static inline enum gimple_rhs_class
2534 gimple_assign_rhs_class (const_gimple gs
)
2536 return get_gimple_rhs_class (gimple_assign_rhs_code (gs
));
2539 /* Return true if GS is an assignment with a singleton RHS, i.e.,
2540 there is no operator associated with the assignment itself.
2541 Unlike gimple_assign_copy_p, this predicate returns true for
2542 any RHS operand, including those that perform an operation
2543 and do not have the semantics of a copy, such as COND_EXPR. */
2546 gimple_assign_single_p (const_gimple gs
)
2548 return (is_gimple_assign (gs
)
2549 && gimple_assign_rhs_class (gs
) == GIMPLE_SINGLE_RHS
);
2552 /* Return true if GS performs a store to its lhs. */
2555 gimple_store_p (const_gimple gs
)
2557 tree lhs
= gimple_get_lhs (gs
);
2558 return lhs
&& !is_gimple_reg (lhs
);
2561 /* Return true if GS is an assignment that loads from its rhs1. */
2564 gimple_assign_load_p (const_gimple gs
)
2567 if (!gimple_assign_single_p (gs
))
2569 rhs
= gimple_assign_rhs1 (gs
);
2570 if (TREE_CODE (rhs
) == WITH_SIZE_EXPR
)
2572 rhs
= get_base_address (rhs
);
2573 return (DECL_P (rhs
)
2574 || TREE_CODE (rhs
) == MEM_REF
|| TREE_CODE (rhs
) == TARGET_MEM_REF
);
2578 /* Return true if S is a type-cast assignment. */
2581 gimple_assign_cast_p (const_gimple s
)
2583 if (is_gimple_assign (s
))
2585 enum tree_code sc
= gimple_assign_rhs_code (s
);
2586 return CONVERT_EXPR_CODE_P (sc
)
2587 || sc
== VIEW_CONVERT_EXPR
2588 || sc
== FIX_TRUNC_EXPR
;
2594 /* Return true if S is a clobber statement. */
2597 gimple_clobber_p (const_gimple s
)
2599 return gimple_assign_single_p (s
)
2600 && TREE_CLOBBER_P (gimple_assign_rhs1 (s
));
2603 /* Return true if GS is a GIMPLE_CALL. */
2606 is_gimple_call (const_gimple gs
)
2608 return gimple_code (gs
) == GIMPLE_CALL
;
2611 /* Return the LHS of call statement GS. */
2614 gimple_call_lhs (const_gimple gs
)
2616 GIMPLE_CHECK (gs
, GIMPLE_CALL
);
2617 return gimple_op (gs
, 0);
2621 /* Return a pointer to the LHS of call statement GS. */
2623 static inline tree
*
2624 gimple_call_lhs_ptr (const_gimple gs
)
2626 GIMPLE_CHECK (gs
, GIMPLE_CALL
);
2627 return gimple_op_ptr (gs
, 0);
2631 /* Set LHS to be the LHS operand of call statement GS. */
2634 gimple_call_set_lhs (gimple gs
, tree lhs
)
2636 GIMPLE_CHECK (gs
, GIMPLE_CALL
);
2637 gimple_set_op (gs
, 0, lhs
);
2638 if (lhs
&& TREE_CODE (lhs
) == SSA_NAME
)
2639 SSA_NAME_DEF_STMT (lhs
) = gs
;
2643 /* Return true if call GS calls an internal-only function, as enumerated
2647 gimple_call_internal_p (const_gimple gs
)
2649 GIMPLE_CHECK (gs
, GIMPLE_CALL
);
2650 return (gs
->subcode
& GF_CALL_INTERNAL
) != 0;
2654 /* Return true if call GS is marked as instrumented by
2655 Pointer Bounds Checker. */
2658 gimple_call_with_bounds_p (const_gimple gs
)
2660 GIMPLE_CHECK (gs
, GIMPLE_CALL
);
2661 return (gs
->subcode
& GF_CALL_WITH_BOUNDS
) != 0;
2665 /* If INSTRUMENTED_P is true, marm statement GS as instrumented by
2666 Pointer Bounds Checker. */
2669 gimple_call_set_with_bounds (gimple gs
, bool with_bounds
)
2671 GIMPLE_CHECK (gs
, GIMPLE_CALL
);
2673 gs
->subcode
|= GF_CALL_WITH_BOUNDS
;
2675 gs
->subcode
&= ~GF_CALL_WITH_BOUNDS
;
2679 /* Return the target of internal call GS. */
2681 static inline enum internal_fn
2682 gimple_call_internal_fn (const_gimple gs
)
2684 gcc_gimple_checking_assert (gimple_call_internal_p (gs
));
2685 return static_cast <const gcall
*> (gs
)->u
.internal_fn
;
2688 /* If CTRL_ALTERING_P is true, mark GIMPLE_CALL S to be a stmt
2689 that could alter control flow. */
2692 gimple_call_set_ctrl_altering (gimple s
, bool ctrl_altering_p
)
2694 GIMPLE_CHECK (s
, GIMPLE_CALL
);
2695 if (ctrl_altering_p
)
2696 s
->subcode
|= GF_CALL_CTRL_ALTERING
;
2698 s
->subcode
&= ~GF_CALL_CTRL_ALTERING
;
2701 /* Return true if call GS calls an func whose GF_CALL_CTRL_ALTERING
2702 flag is set. Such call could not be a stmt in the middle of a bb. */
2705 gimple_call_ctrl_altering_p (const_gimple gs
)
2707 GIMPLE_CHECK (gs
, GIMPLE_CALL
);
2708 return (gs
->subcode
& GF_CALL_CTRL_ALTERING
) != 0;
2712 /* Return the function type of the function called by GS. */
2715 gimple_call_fntype (const_gimple gs
)
2717 const gcall
*call_stmt
= as_a
<const gcall
*> (gs
);
2718 if (gimple_call_internal_p (gs
))
2720 return call_stmt
->u
.fntype
;
2723 /* Set the type of the function called by CALL_STMT to FNTYPE. */
2726 gimple_call_set_fntype (gcall
*call_stmt
, tree fntype
)
2728 gcc_gimple_checking_assert (!gimple_call_internal_p (call_stmt
));
2729 call_stmt
->u
.fntype
= fntype
;
2733 /* Return the tree node representing the function called by call
2737 gimple_call_fn (const_gimple gs
)
2739 GIMPLE_CHECK (gs
, GIMPLE_CALL
);
2740 return gimple_op (gs
, 1);
2743 /* Return a pointer to the tree node representing the function called by call
2746 static inline tree
*
2747 gimple_call_fn_ptr (const_gimple gs
)
2749 GIMPLE_CHECK (gs
, GIMPLE_CALL
);
2750 return gimple_op_ptr (gs
, 1);
2754 /* Set FN to be the function called by call statement GS. */
2757 gimple_call_set_fn (gcall
*gs
, tree fn
)
2759 gcc_gimple_checking_assert (!gimple_call_internal_p (gs
));
2760 gimple_set_op (gs
, 1, fn
);
2764 /* Set FNDECL to be the function called by call statement GS. */
2767 gimple_call_set_fndecl (gimple gs
, tree decl
)
2769 GIMPLE_CHECK (gs
, GIMPLE_CALL
);
2770 gcc_gimple_checking_assert (!gimple_call_internal_p (gs
));
2771 gimple_set_op (gs
, 1, build1_loc (gimple_location (gs
), ADDR_EXPR
,
2772 build_pointer_type (TREE_TYPE (decl
)),
2777 /* Set internal function FN to be the function called by call statement CALL_STMT. */
2780 gimple_call_set_internal_fn (gcall
*call_stmt
, enum internal_fn fn
)
2782 gcc_gimple_checking_assert (gimple_call_internal_p (call_stmt
));
2783 call_stmt
->u
.internal_fn
= fn
;
2787 /* If a given GIMPLE_CALL's callee is a FUNCTION_DECL, return it.
2788 Otherwise return NULL. This function is analogous to
2789 get_callee_fndecl in tree land. */
2792 gimple_call_fndecl (const_gimple gs
)
2794 return gimple_call_addr_fndecl (gimple_call_fn (gs
));
2798 /* Return the type returned by call statement GS. */
2801 gimple_call_return_type (const gcall
*gs
)
2803 tree type
= gimple_call_fntype (gs
);
2805 if (type
== NULL_TREE
)
2806 return TREE_TYPE (gimple_call_lhs (gs
));
2808 /* The type returned by a function is the type of its
2810 return TREE_TYPE (type
);
2814 /* Return the static chain for call statement GS. */
2817 gimple_call_chain (const_gimple gs
)
2819 GIMPLE_CHECK (gs
, GIMPLE_CALL
);
2820 return gimple_op (gs
, 2);
2824 /* Return a pointer to the static chain for call statement CALL_STMT. */
2826 static inline tree
*
2827 gimple_call_chain_ptr (const gcall
*call_stmt
)
2829 return gimple_op_ptr (call_stmt
, 2);
2832 /* Set CHAIN to be the static chain for call statement CALL_STMT. */
2835 gimple_call_set_chain (gcall
*call_stmt
, tree chain
)
2837 gimple_set_op (call_stmt
, 2, chain
);
2841 /* Return the number of arguments used by call statement GS. */
2843 static inline unsigned
2844 gimple_call_num_args (const_gimple gs
)
2847 GIMPLE_CHECK (gs
, GIMPLE_CALL
);
2848 num_ops
= gimple_num_ops (gs
);
2853 /* Return the argument at position INDEX for call statement GS. */
2856 gimple_call_arg (const_gimple gs
, unsigned index
)
2858 GIMPLE_CHECK (gs
, GIMPLE_CALL
);
2859 return gimple_op (gs
, index
+ 3);
2863 /* Return a pointer to the argument at position INDEX for call
2866 static inline tree
*
2867 gimple_call_arg_ptr (const_gimple gs
, unsigned index
)
2869 GIMPLE_CHECK (gs
, GIMPLE_CALL
);
2870 return gimple_op_ptr (gs
, index
+ 3);
2874 /* Set ARG to be the argument at position INDEX for call statement GS. */
2877 gimple_call_set_arg (gimple gs
, unsigned index
, tree arg
)
2879 GIMPLE_CHECK (gs
, GIMPLE_CALL
);
2880 gimple_set_op (gs
, index
+ 3, arg
);
2884 /* If TAIL_P is true, mark call statement S as being a tail call
2885 (i.e., a call just before the exit of a function). These calls are
2886 candidate for tail call optimization. */
2889 gimple_call_set_tail (gcall
*s
, bool tail_p
)
2892 s
->subcode
|= GF_CALL_TAILCALL
;
2894 s
->subcode
&= ~GF_CALL_TAILCALL
;
2898 /* Return true if GIMPLE_CALL S is marked as a tail call. */
2901 gimple_call_tail_p (gcall
*s
)
2903 return (s
->subcode
& GF_CALL_TAILCALL
) != 0;
2907 /* If RETURN_SLOT_OPT_P is true mark GIMPLE_CALL S as valid for return
2908 slot optimization. This transformation uses the target of the call
2909 expansion as the return slot for calls that return in memory. */
2912 gimple_call_set_return_slot_opt (gcall
*s
, bool return_slot_opt_p
)
2914 if (return_slot_opt_p
)
2915 s
->subcode
|= GF_CALL_RETURN_SLOT_OPT
;
2917 s
->subcode
&= ~GF_CALL_RETURN_SLOT_OPT
;
2921 /* Return true if S is marked for return slot optimization. */
2924 gimple_call_return_slot_opt_p (gcall
*s
)
2926 return (s
->subcode
& GF_CALL_RETURN_SLOT_OPT
) != 0;
2930 /* If FROM_THUNK_P is true, mark GIMPLE_CALL S as being the jump from a
2931 thunk to the thunked-to function. */
2934 gimple_call_set_from_thunk (gcall
*s
, bool from_thunk_p
)
2937 s
->subcode
|= GF_CALL_FROM_THUNK
;
2939 s
->subcode
&= ~GF_CALL_FROM_THUNK
;
2943 /* Return true if GIMPLE_CALL S is a jump from a thunk. */
2946 gimple_call_from_thunk_p (gcall
*s
)
2948 return (s
->subcode
& GF_CALL_FROM_THUNK
) != 0;
2952 /* If PASS_ARG_PACK_P is true, GIMPLE_CALL S is a stdarg call that needs the
2953 argument pack in its argument list. */
2956 gimple_call_set_va_arg_pack (gcall
*s
, bool pass_arg_pack_p
)
2958 if (pass_arg_pack_p
)
2959 s
->subcode
|= GF_CALL_VA_ARG_PACK
;
2961 s
->subcode
&= ~GF_CALL_VA_ARG_PACK
;
2965 /* Return true if GIMPLE_CALL S is a stdarg call that needs the
2966 argument pack in its argument list. */
2969 gimple_call_va_arg_pack_p (gcall
*s
)
2971 return (s
->subcode
& GF_CALL_VA_ARG_PACK
) != 0;
2975 /* Return true if S is a noreturn call. */
2978 gimple_call_noreturn_p (gimple s
)
2980 GIMPLE_CHECK (s
, GIMPLE_CALL
);
2981 return (gimple_call_flags (s
) & ECF_NORETURN
) != 0;
2985 /* If NOTHROW_P is true, GIMPLE_CALL S is a call that is known to not throw
2986 even if the called function can throw in other cases. */
2989 gimple_call_set_nothrow (gcall
*s
, bool nothrow_p
)
2992 s
->subcode
|= GF_CALL_NOTHROW
;
2994 s
->subcode
&= ~GF_CALL_NOTHROW
;
2997 /* Return true if S is a nothrow call. */
3000 gimple_call_nothrow_p (gcall
*s
)
3002 return (gimple_call_flags (s
) & ECF_NOTHROW
) != 0;
3005 /* If FOR_VAR is true, GIMPLE_CALL S is a call to builtin_alloca that
3006 is known to be emitted for VLA objects. Those are wrapped by
3007 stack_save/stack_restore calls and hence can't lead to unbounded
3008 stack growth even when they occur in loops. */
3011 gimple_call_set_alloca_for_var (gcall
*s
, bool for_var
)
3014 s
->subcode
|= GF_CALL_ALLOCA_FOR_VAR
;
3016 s
->subcode
&= ~GF_CALL_ALLOCA_FOR_VAR
;
3019 /* Return true of S is a call to builtin_alloca emitted for VLA objects. */
3022 gimple_call_alloca_for_var_p (gcall
*s
)
3024 return (s
->subcode
& GF_CALL_ALLOCA_FOR_VAR
) != 0;
3027 /* Copy all the GF_CALL_* flags from ORIG_CALL to DEST_CALL. */
3030 gimple_call_copy_flags (gcall
*dest_call
, gcall
*orig_call
)
3032 dest_call
->subcode
= orig_call
->subcode
;
3036 /* Return a pointer to the points-to solution for the set of call-used
3037 variables of the call CALL_STMT. */
3039 static inline struct pt_solution
*
3040 gimple_call_use_set (gcall
*call_stmt
)
3042 return &call_stmt
->call_used
;
3046 /* Return a pointer to the points-to solution for the set of call-used
3047 variables of the call CALL_STMT. */
3049 static inline struct pt_solution
*
3050 gimple_call_clobber_set (gcall
*call_stmt
)
3052 return &call_stmt
->call_clobbered
;
3056 /* Returns true if this is a GIMPLE_ASSIGN or a GIMPLE_CALL with a
3060 gimple_has_lhs (gimple stmt
)
3062 return (is_gimple_assign (stmt
)
3063 || (is_gimple_call (stmt
)
3064 && gimple_call_lhs (stmt
) != NULL_TREE
));
3068 /* Return the code of the predicate computed by conditional statement GS. */
3070 static inline enum tree_code
3071 gimple_cond_code (const_gimple gs
)
3073 GIMPLE_CHECK (gs
, GIMPLE_COND
);
3074 return (enum tree_code
) gs
->subcode
;
3078 /* Set CODE to be the predicate code for the conditional statement GS. */
3081 gimple_cond_set_code (gcond
*gs
, enum tree_code code
)
3087 /* Return the LHS of the predicate computed by conditional statement GS. */
3090 gimple_cond_lhs (const_gimple gs
)
3092 GIMPLE_CHECK (gs
, GIMPLE_COND
);
3093 return gimple_op (gs
, 0);
3096 /* Return the pointer to the LHS of the predicate computed by conditional
3099 static inline tree
*
3100 gimple_cond_lhs_ptr (const gcond
*gs
)
3102 return gimple_op_ptr (gs
, 0);
3105 /* Set LHS to be the LHS operand of the predicate computed by
3106 conditional statement GS. */
3109 gimple_cond_set_lhs (gcond
*gs
, tree lhs
)
3111 gimple_set_op (gs
, 0, lhs
);
3115 /* Return the RHS operand of the predicate computed by conditional GS. */
3118 gimple_cond_rhs (const_gimple gs
)
3120 GIMPLE_CHECK (gs
, GIMPLE_COND
);
3121 return gimple_op (gs
, 1);
3124 /* Return the pointer to the RHS operand of the predicate computed by
3127 static inline tree
*
3128 gimple_cond_rhs_ptr (const gcond
*gs
)
3130 return gimple_op_ptr (gs
, 1);
3134 /* Set RHS to be the RHS operand of the predicate computed by
3135 conditional statement GS. */
3138 gimple_cond_set_rhs (gcond
*gs
, tree rhs
)
3140 gimple_set_op (gs
, 1, rhs
);
3144 /* Return the label used by conditional statement GS when its
3145 predicate evaluates to true. */
3148 gimple_cond_true_label (const gcond
*gs
)
3150 return gimple_op (gs
, 2);
3154 /* Set LABEL to be the label used by conditional statement GS when its
3155 predicate evaluates to true. */
3158 gimple_cond_set_true_label (gcond
*gs
, tree label
)
3160 gimple_set_op (gs
, 2, label
);
3164 /* Set LABEL to be the label used by conditional statement GS when its
3165 predicate evaluates to false. */
3168 gimple_cond_set_false_label (gcond
*gs
, tree label
)
3170 gimple_set_op (gs
, 3, label
);
3174 /* Return the label used by conditional statement GS when its
3175 predicate evaluates to false. */
3178 gimple_cond_false_label (const gcond
*gs
)
3181 return gimple_op (gs
, 3);
3185 /* Set the conditional COND_STMT to be of the form 'if (1 == 0)'. */
3188 gimple_cond_make_false (gcond
*gs
)
3190 gimple_cond_set_lhs (gs
, boolean_false_node
);
3191 gimple_cond_set_rhs (gs
, boolean_false_node
);
3192 gs
->subcode
= NE_EXPR
;
3196 /* Set the conditional COND_STMT to be of the form 'if (1 == 1)'. */
3199 gimple_cond_make_true (gcond
*gs
)
3201 gimple_cond_set_lhs (gs
, boolean_true_node
);
3202 gimple_cond_set_rhs (gs
, boolean_false_node
);
3203 gs
->subcode
= NE_EXPR
;
3206 /* Check if conditional statemente GS is of the form 'if (1 == 1)',
3207 'if (0 == 0)', 'if (1 != 0)' or 'if (0 != 1)' */
3210 gimple_cond_true_p (const gcond
*gs
)
3212 tree lhs
= gimple_cond_lhs (gs
);
3213 tree rhs
= gimple_cond_rhs (gs
);
3214 enum tree_code code
= gimple_cond_code (gs
);
3216 if (lhs
!= boolean_true_node
&& lhs
!= boolean_false_node
)
3219 if (rhs
!= boolean_true_node
&& rhs
!= boolean_false_node
)
3222 if (code
== NE_EXPR
&& lhs
!= rhs
)
3225 if (code
== EQ_EXPR
&& lhs
== rhs
)
3231 /* Check if conditional statement GS is of the form 'if (1 != 1)',
3232 'if (0 != 0)', 'if (1 == 0)' or 'if (0 == 1)' */
3235 gimple_cond_false_p (const gcond
*gs
)
3237 tree lhs
= gimple_cond_lhs (gs
);
3238 tree rhs
= gimple_cond_rhs (gs
);
3239 enum tree_code code
= gimple_cond_code (gs
);
3241 if (lhs
!= boolean_true_node
&& lhs
!= boolean_false_node
)
3244 if (rhs
!= boolean_true_node
&& rhs
!= boolean_false_node
)
3247 if (code
== NE_EXPR
&& lhs
== rhs
)
3250 if (code
== EQ_EXPR
&& lhs
!= rhs
)
3256 /* Set the code, LHS and RHS of GIMPLE_COND STMT from CODE, LHS and RHS. */
3259 gimple_cond_set_condition (gcond
*stmt
, enum tree_code code
, tree lhs
,
3262 gimple_cond_set_code (stmt
, code
);
3263 gimple_cond_set_lhs (stmt
, lhs
);
3264 gimple_cond_set_rhs (stmt
, rhs
);
3267 /* Return the LABEL_DECL node used by GIMPLE_LABEL statement GS. */
3270 gimple_label_label (const glabel
*gs
)
3272 return gimple_op (gs
, 0);
3276 /* Set LABEL to be the LABEL_DECL node used by GIMPLE_LABEL statement
3280 gimple_label_set_label (glabel
*gs
, tree label
)
3282 gimple_set_op (gs
, 0, label
);
3286 /* Return the destination of the unconditional jump GS. */
3289 gimple_goto_dest (const_gimple gs
)
3291 GIMPLE_CHECK (gs
, GIMPLE_GOTO
);
3292 return gimple_op (gs
, 0);
3296 /* Set DEST to be the destination of the unconditonal jump GS. */
3299 gimple_goto_set_dest (ggoto
*gs
, tree dest
)
3301 gimple_set_op (gs
, 0, dest
);
3305 /* Return the variables declared in the GIMPLE_BIND statement GS. */
3308 gimple_bind_vars (const gbind
*bind_stmt
)
3310 return bind_stmt
->vars
;
3314 /* Set VARS to be the set of variables declared in the GIMPLE_BIND
3318 gimple_bind_set_vars (gbind
*bind_stmt
, tree vars
)
3320 bind_stmt
->vars
= vars
;
3324 /* Append VARS to the set of variables declared in the GIMPLE_BIND
3328 gimple_bind_append_vars (gbind
*bind_stmt
, tree vars
)
3330 bind_stmt
->vars
= chainon (bind_stmt
->vars
, vars
);
3334 static inline gimple_seq
*
3335 gimple_bind_body_ptr (gbind
*bind_stmt
)
3337 return &bind_stmt
->body
;
3340 /* Return the GIMPLE sequence contained in the GIMPLE_BIND statement GS. */
3342 static inline gimple_seq
3343 gimple_bind_body (gbind
*gs
)
3345 return *gimple_bind_body_ptr (gs
);
3349 /* Set SEQ to be the GIMPLE sequence contained in the GIMPLE_BIND
3353 gimple_bind_set_body (gbind
*bind_stmt
, gimple_seq seq
)
3355 bind_stmt
->body
= seq
;
3359 /* Append a statement to the end of a GIMPLE_BIND's body. */
3362 gimple_bind_add_stmt (gbind
*bind_stmt
, gimple stmt
)
3364 gimple_seq_add_stmt (&bind_stmt
->body
, stmt
);
3368 /* Append a sequence of statements to the end of a GIMPLE_BIND's body. */
3371 gimple_bind_add_seq (gbind
*bind_stmt
, gimple_seq seq
)
3373 gimple_seq_add_seq (&bind_stmt
->body
, seq
);
3377 /* Return the TREE_BLOCK node associated with GIMPLE_BIND statement
3378 GS. This is analogous to the BIND_EXPR_BLOCK field in trees. */
3381 gimple_bind_block (const gbind
*bind_stmt
)
3383 return bind_stmt
->block
;
3387 /* Set BLOCK to be the TREE_BLOCK node associated with GIMPLE_BIND
3391 gimple_bind_set_block (gbind
*bind_stmt
, tree block
)
3393 gcc_gimple_checking_assert (block
== NULL_TREE
3394 || TREE_CODE (block
) == BLOCK
);
3395 bind_stmt
->block
= block
;
3399 /* Return the number of input operands for GIMPLE_ASM ASM_STMT. */
3401 static inline unsigned
3402 gimple_asm_ninputs (const gasm
*asm_stmt
)
3404 return asm_stmt
->ni
;
3408 /* Return the number of output operands for GIMPLE_ASM ASM_STMT. */
3410 static inline unsigned
3411 gimple_asm_noutputs (const gasm
*asm_stmt
)
3413 return asm_stmt
->no
;
3417 /* Return the number of clobber operands for GIMPLE_ASM ASM_STMT. */
3419 static inline unsigned
3420 gimple_asm_nclobbers (const gasm
*asm_stmt
)
3422 return asm_stmt
->nc
;
3425 /* Return the number of label operands for GIMPLE_ASM ASM_STMT. */
3427 static inline unsigned
3428 gimple_asm_nlabels (const gasm
*asm_stmt
)
3430 return asm_stmt
->nl
;
3433 /* Return input operand INDEX of GIMPLE_ASM ASM_STMT. */
3436 gimple_asm_input_op (const gasm
*asm_stmt
, unsigned index
)
3438 gcc_gimple_checking_assert (index
< asm_stmt
->ni
);
3439 return gimple_op (asm_stmt
, index
+ asm_stmt
->no
);
3442 /* Return a pointer to input operand INDEX of GIMPLE_ASM ASM_STMT. */
3444 static inline tree
*
3445 gimple_asm_input_op_ptr (const gasm
*asm_stmt
, unsigned index
)
3447 gcc_gimple_checking_assert (index
< asm_stmt
->ni
);
3448 return gimple_op_ptr (asm_stmt
, index
+ asm_stmt
->no
);
3452 /* Set IN_OP to be input operand INDEX in GIMPLE_ASM ASM_STMT. */
3455 gimple_asm_set_input_op (gasm
*asm_stmt
, unsigned index
, tree in_op
)
3457 gcc_gimple_checking_assert (index
< asm_stmt
->ni
3458 && TREE_CODE (in_op
) == TREE_LIST
);
3459 gimple_set_op (asm_stmt
, index
+ asm_stmt
->no
, in_op
);
3463 /* Return output operand INDEX of GIMPLE_ASM ASM_STMT. */
3466 gimple_asm_output_op (const gasm
*asm_stmt
, unsigned index
)
3468 gcc_gimple_checking_assert (index
< asm_stmt
->no
);
3469 return gimple_op (asm_stmt
, index
);
3472 /* Return a pointer to output operand INDEX of GIMPLE_ASM ASM_STMT. */
3474 static inline tree
*
3475 gimple_asm_output_op_ptr (const gasm
*asm_stmt
, unsigned index
)
3477 gcc_gimple_checking_assert (index
< asm_stmt
->no
);
3478 return gimple_op_ptr (asm_stmt
, index
);
3482 /* Set OUT_OP to be output operand INDEX in GIMPLE_ASM ASM_STMT. */
3485 gimple_asm_set_output_op (gasm
*asm_stmt
, unsigned index
, tree out_op
)
3487 gcc_gimple_checking_assert (index
< asm_stmt
->no
3488 && TREE_CODE (out_op
) == TREE_LIST
);
3489 gimple_set_op (asm_stmt
, index
, out_op
);
3493 /* Return clobber operand INDEX of GIMPLE_ASM ASM_STMT. */
3496 gimple_asm_clobber_op (const gasm
*asm_stmt
, unsigned index
)
3498 gcc_gimple_checking_assert (index
< asm_stmt
->nc
);
3499 return gimple_op (asm_stmt
, index
+ asm_stmt
->ni
+ asm_stmt
->no
);
3503 /* Set CLOBBER_OP to be clobber operand INDEX in GIMPLE_ASM ASM_STMT. */
3506 gimple_asm_set_clobber_op (gasm
*asm_stmt
, unsigned index
, tree clobber_op
)
3508 gcc_gimple_checking_assert (index
< asm_stmt
->nc
3509 && TREE_CODE (clobber_op
) == TREE_LIST
);
3510 gimple_set_op (asm_stmt
, index
+ asm_stmt
->ni
+ asm_stmt
->no
, clobber_op
);
3513 /* Return label operand INDEX of GIMPLE_ASM ASM_STMT. */
3516 gimple_asm_label_op (const gasm
*asm_stmt
, unsigned index
)
3518 gcc_gimple_checking_assert (index
< asm_stmt
->nl
);
3519 return gimple_op (asm_stmt
, index
+ asm_stmt
->ni
+ asm_stmt
->nc
);
3522 /* Set LABEL_OP to be label operand INDEX in GIMPLE_ASM ASM_STMT. */
3525 gimple_asm_set_label_op (gasm
*asm_stmt
, unsigned index
, tree label_op
)
3527 gcc_gimple_checking_assert (index
< asm_stmt
->nl
3528 && TREE_CODE (label_op
) == TREE_LIST
);
3529 gimple_set_op (asm_stmt
, index
+ asm_stmt
->ni
+ asm_stmt
->nc
, label_op
);
3532 /* Return the string representing the assembly instruction in
3533 GIMPLE_ASM ASM_STMT. */
3535 static inline const char *
3536 gimple_asm_string (const gasm
*asm_stmt
)
3538 return asm_stmt
->string
;
3542 /* Return true ASM_STMT ASM_STMT is an asm statement marked volatile. */
3545 gimple_asm_volatile_p (const gasm
*asm_stmt
)
3547 return (asm_stmt
->subcode
& GF_ASM_VOLATILE
) != 0;
3551 /* If VOLATLE_P is true, mark asm statement ASM_STMT as volatile. */
3554 gimple_asm_set_volatile (gasm
*asm_stmt
, bool volatile_p
)
3557 asm_stmt
->subcode
|= GF_ASM_VOLATILE
;
3559 asm_stmt
->subcode
&= ~GF_ASM_VOLATILE
;
3563 /* If INPUT_P is true, mark asm ASM_STMT as an ASM_INPUT. */
3566 gimple_asm_set_input (gasm
*asm_stmt
, bool input_p
)
3569 asm_stmt
->subcode
|= GF_ASM_INPUT
;
3571 asm_stmt
->subcode
&= ~GF_ASM_INPUT
;
3575 /* Return true if asm ASM_STMT is an ASM_INPUT. */
3578 gimple_asm_input_p (const gasm
*asm_stmt
)
3580 return (asm_stmt
->subcode
& GF_ASM_INPUT
) != 0;
3584 /* Return the types handled by GIMPLE_CATCH statement CATCH_STMT. */
3587 gimple_catch_types (const gcatch
*catch_stmt
)
3589 return catch_stmt
->types
;
3593 /* Return a pointer to the types handled by GIMPLE_CATCH statement CATCH_STMT. */
3595 static inline tree
*
3596 gimple_catch_types_ptr (gcatch
*catch_stmt
)
3598 return &catch_stmt
->types
;
3602 /* Return a pointer to the GIMPLE sequence representing the body of
3603 the handler of GIMPLE_CATCH statement CATCH_STMT. */
3605 static inline gimple_seq
*
3606 gimple_catch_handler_ptr (gcatch
*catch_stmt
)
3608 return &catch_stmt
->handler
;
3612 /* Return the GIMPLE sequence representing the body of the handler of
3613 GIMPLE_CATCH statement CATCH_STMT. */
3615 static inline gimple_seq
3616 gimple_catch_handler (gcatch
*catch_stmt
)
3618 return *gimple_catch_handler_ptr (catch_stmt
);
3622 /* Set T to be the set of types handled by GIMPLE_CATCH CATCH_STMT. */
3625 gimple_catch_set_types (gcatch
*catch_stmt
, tree t
)
3627 catch_stmt
->types
= t
;
3631 /* Set HANDLER to be the body of GIMPLE_CATCH CATCH_STMT. */
3634 gimple_catch_set_handler (gcatch
*catch_stmt
, gimple_seq handler
)
3636 catch_stmt
->handler
= handler
;
3640 /* Return the types handled by GIMPLE_EH_FILTER statement GS. */
3643 gimple_eh_filter_types (const_gimple gs
)
3645 const geh_filter
*eh_filter_stmt
= as_a
<const geh_filter
*> (gs
);
3646 return eh_filter_stmt
->types
;
3650 /* Return a pointer to the types handled by GIMPLE_EH_FILTER statement
3653 static inline tree
*
3654 gimple_eh_filter_types_ptr (gimple gs
)
3656 geh_filter
*eh_filter_stmt
= as_a
<geh_filter
*> (gs
);
3657 return &eh_filter_stmt
->types
;
3661 /* Return a pointer to the sequence of statement to execute when
3662 GIMPLE_EH_FILTER statement fails. */
3664 static inline gimple_seq
*
3665 gimple_eh_filter_failure_ptr (gimple gs
)
3667 geh_filter
*eh_filter_stmt
= as_a
<geh_filter
*> (gs
);
3668 return &eh_filter_stmt
->failure
;
3672 /* Return the sequence of statement to execute when GIMPLE_EH_FILTER
3675 static inline gimple_seq
3676 gimple_eh_filter_failure (gimple gs
)
3678 return *gimple_eh_filter_failure_ptr (gs
);
3682 /* Set TYPES to be the set of types handled by GIMPLE_EH_FILTER
3686 gimple_eh_filter_set_types (geh_filter
*eh_filter_stmt
, tree types
)
3688 eh_filter_stmt
->types
= types
;
3692 /* Set FAILURE to be the sequence of statements to execute on failure
3693 for GIMPLE_EH_FILTER EH_FILTER_STMT. */
3696 gimple_eh_filter_set_failure (geh_filter
*eh_filter_stmt
,
3699 eh_filter_stmt
->failure
= failure
;
3702 /* Get the function decl to be called by the MUST_NOT_THROW region. */
3705 gimple_eh_must_not_throw_fndecl (geh_mnt
*eh_mnt_stmt
)
3707 return eh_mnt_stmt
->fndecl
;
3710 /* Set the function decl to be called by GS to DECL. */
3713 gimple_eh_must_not_throw_set_fndecl (geh_mnt
*eh_mnt_stmt
,
3716 eh_mnt_stmt
->fndecl
= decl
;
3719 /* GIMPLE_EH_ELSE accessors. */
3721 static inline gimple_seq
*
3722 gimple_eh_else_n_body_ptr (geh_else
*eh_else_stmt
)
3724 return &eh_else_stmt
->n_body
;
3727 static inline gimple_seq
3728 gimple_eh_else_n_body (geh_else
*eh_else_stmt
)
3730 return *gimple_eh_else_n_body_ptr (eh_else_stmt
);
3733 static inline gimple_seq
*
3734 gimple_eh_else_e_body_ptr (geh_else
*eh_else_stmt
)
3736 return &eh_else_stmt
->e_body
;
3739 static inline gimple_seq
3740 gimple_eh_else_e_body (geh_else
*eh_else_stmt
)
3742 return *gimple_eh_else_e_body_ptr (eh_else_stmt
);
3746 gimple_eh_else_set_n_body (geh_else
*eh_else_stmt
, gimple_seq seq
)
3748 eh_else_stmt
->n_body
= seq
;
3752 gimple_eh_else_set_e_body (geh_else
*eh_else_stmt
, gimple_seq seq
)
3754 eh_else_stmt
->e_body
= seq
;
3757 /* GIMPLE_TRY accessors. */
3759 /* Return the kind of try block represented by GIMPLE_TRY GS. This is
3760 either GIMPLE_TRY_CATCH or GIMPLE_TRY_FINALLY. */
3762 static inline enum gimple_try_flags
3763 gimple_try_kind (const_gimple gs
)
3765 GIMPLE_CHECK (gs
, GIMPLE_TRY
);
3766 return (enum gimple_try_flags
) (gs
->subcode
& GIMPLE_TRY_KIND
);
3770 /* Set the kind of try block represented by GIMPLE_TRY GS. */
3773 gimple_try_set_kind (gtry
*gs
, enum gimple_try_flags kind
)
3775 gcc_gimple_checking_assert (kind
== GIMPLE_TRY_CATCH
3776 || kind
== GIMPLE_TRY_FINALLY
);
3777 if (gimple_try_kind (gs
) != kind
)
3778 gs
->subcode
= (unsigned int) kind
;
3782 /* Return the GIMPLE_TRY_CATCH_IS_CLEANUP flag. */
3785 gimple_try_catch_is_cleanup (const_gimple gs
)
3787 gcc_gimple_checking_assert (gimple_try_kind (gs
) == GIMPLE_TRY_CATCH
);
3788 return (gs
->subcode
& GIMPLE_TRY_CATCH_IS_CLEANUP
) != 0;
3792 /* Return a pointer to the sequence of statements used as the
3793 body for GIMPLE_TRY GS. */
3795 static inline gimple_seq
*
3796 gimple_try_eval_ptr (gimple gs
)
3798 gtry
*try_stmt
= as_a
<gtry
*> (gs
);
3799 return &try_stmt
->eval
;
3803 /* Return the sequence of statements used as the body for GIMPLE_TRY GS. */
3805 static inline gimple_seq
3806 gimple_try_eval (gimple gs
)
3808 return *gimple_try_eval_ptr (gs
);
3812 /* Return a pointer to the sequence of statements used as the cleanup body for
3815 static inline gimple_seq
*
3816 gimple_try_cleanup_ptr (gimple gs
)
3818 gtry
*try_stmt
= as_a
<gtry
*> (gs
);
3819 return &try_stmt
->cleanup
;
3823 /* Return the sequence of statements used as the cleanup body for
3826 static inline gimple_seq
3827 gimple_try_cleanup (gimple gs
)
3829 return *gimple_try_cleanup_ptr (gs
);
3833 /* Set the GIMPLE_TRY_CATCH_IS_CLEANUP flag. */
3836 gimple_try_set_catch_is_cleanup (gtry
*g
, bool catch_is_cleanup
)
3838 gcc_gimple_checking_assert (gimple_try_kind (g
) == GIMPLE_TRY_CATCH
);
3839 if (catch_is_cleanup
)
3840 g
->subcode
|= GIMPLE_TRY_CATCH_IS_CLEANUP
;
3842 g
->subcode
&= ~GIMPLE_TRY_CATCH_IS_CLEANUP
;
3846 /* Set EVAL to be the sequence of statements to use as the body for
3847 GIMPLE_TRY TRY_STMT. */
3850 gimple_try_set_eval (gtry
*try_stmt
, gimple_seq eval
)
3852 try_stmt
->eval
= eval
;
3856 /* Set CLEANUP to be the sequence of statements to use as the cleanup
3857 body for GIMPLE_TRY TRY_STMT. */
3860 gimple_try_set_cleanup (gtry
*try_stmt
, gimple_seq cleanup
)
3862 try_stmt
->cleanup
= cleanup
;
3866 /* Return a pointer to the cleanup sequence for cleanup statement GS. */
3868 static inline gimple_seq
*
3869 gimple_wce_cleanup_ptr (gimple gs
)
3871 gimple_statement_wce
*wce_stmt
= as_a
<gimple_statement_wce
*> (gs
);
3872 return &wce_stmt
->cleanup
;
3876 /* Return the cleanup sequence for cleanup statement GS. */
3878 static inline gimple_seq
3879 gimple_wce_cleanup (gimple gs
)
3881 return *gimple_wce_cleanup_ptr (gs
);
3885 /* Set CLEANUP to be the cleanup sequence for GS. */
3888 gimple_wce_set_cleanup (gimple gs
, gimple_seq cleanup
)
3890 gimple_statement_wce
*wce_stmt
= as_a
<gimple_statement_wce
*> (gs
);
3891 wce_stmt
->cleanup
= cleanup
;
3895 /* Return the CLEANUP_EH_ONLY flag for a WCE tuple. */
3898 gimple_wce_cleanup_eh_only (const_gimple gs
)
3900 GIMPLE_CHECK (gs
, GIMPLE_WITH_CLEANUP_EXPR
);
3901 return gs
->subcode
!= 0;
3905 /* Set the CLEANUP_EH_ONLY flag for a WCE tuple. */
3908 gimple_wce_set_cleanup_eh_only (gimple gs
, bool eh_only_p
)
3910 GIMPLE_CHECK (gs
, GIMPLE_WITH_CLEANUP_EXPR
);
3911 gs
->subcode
= (unsigned int) eh_only_p
;
3915 /* Return the maximum number of arguments supported by GIMPLE_PHI GS. */
3917 static inline unsigned
3918 gimple_phi_capacity (const_gimple gs
)
3920 const gphi
*phi_stmt
= as_a
<const gphi
*> (gs
);
3921 return phi_stmt
->capacity
;
3925 /* Return the number of arguments in GIMPLE_PHI GS. This must always
3926 be exactly the number of incoming edges for the basic block holding
3929 static inline unsigned
3930 gimple_phi_num_args (const_gimple gs
)
3932 const gphi
*phi_stmt
= as_a
<const gphi
*> (gs
);
3933 return phi_stmt
->nargs
;
3937 /* Return the SSA name created by GIMPLE_PHI GS. */
3940 gimple_phi_result (const_gimple gs
)
3942 const gphi
*phi_stmt
= as_a
<const gphi
*> (gs
);
3943 return phi_stmt
->result
;
3946 /* Return a pointer to the SSA name created by GIMPLE_PHI GS. */
3948 static inline tree
*
3949 gimple_phi_result_ptr (gimple gs
)
3951 gphi
*phi_stmt
= as_a
<gphi
*> (gs
);
3952 return &phi_stmt
->result
;
3955 /* Set RESULT to be the SSA name created by GIMPLE_PHI PHI. */
3958 gimple_phi_set_result (gphi
*phi
, tree result
)
3960 phi
->result
= result
;
3961 if (result
&& TREE_CODE (result
) == SSA_NAME
)
3962 SSA_NAME_DEF_STMT (result
) = phi
;
3966 /* Return the PHI argument corresponding to incoming edge INDEX for
3969 static inline struct phi_arg_d
*
3970 gimple_phi_arg (gimple gs
, unsigned index
)
3972 gphi
*phi_stmt
= as_a
<gphi
*> (gs
);
3973 gcc_gimple_checking_assert (index
<= phi_stmt
->capacity
);
3974 return &(phi_stmt
->args
[index
]);
3977 /* Set PHIARG to be the argument corresponding to incoming edge INDEX
3978 for GIMPLE_PHI PHI. */
3981 gimple_phi_set_arg (gphi
*phi
, unsigned index
, struct phi_arg_d
* phiarg
)
3983 gcc_gimple_checking_assert (index
<= phi
->nargs
);
3984 phi
->args
[index
] = *phiarg
;
3987 /* Return the PHI nodes for basic block BB, or NULL if there are no
3990 static inline gimple_seq
3991 phi_nodes (const_basic_block bb
)
3993 gcc_checking_assert (!(bb
->flags
& BB_RTL
));
3994 return bb
->il
.gimple
.phi_nodes
;
3997 /* Return a pointer to the PHI nodes for basic block BB. */
3999 static inline gimple_seq
*
4000 phi_nodes_ptr (basic_block bb
)
4002 gcc_checking_assert (!(bb
->flags
& BB_RTL
));
4003 return &bb
->il
.gimple
.phi_nodes
;
4006 /* Return the tree operand for argument I of PHI node GS. */
4009 gimple_phi_arg_def (gimple gs
, size_t index
)
4011 return gimple_phi_arg (gs
, index
)->def
;
4015 /* Return a pointer to the tree operand for argument I of phi node PHI. */
4017 static inline tree
*
4018 gimple_phi_arg_def_ptr (gphi
*phi
, size_t index
)
4020 return &gimple_phi_arg (phi
, index
)->def
;
4023 /* Return the edge associated with argument I of phi node PHI. */
4026 gimple_phi_arg_edge (gphi
*phi
, size_t i
)
4028 return EDGE_PRED (gimple_bb (phi
), i
);
4031 /* Return the source location of gimple argument I of phi node PHI. */
4033 static inline source_location
4034 gimple_phi_arg_location (gphi
*phi
, size_t i
)
4036 return gimple_phi_arg (phi
, i
)->locus
;
4039 /* Return the source location of the argument on edge E of phi node PHI. */
4041 static inline source_location
4042 gimple_phi_arg_location_from_edge (gphi
*phi
, edge e
)
4044 return gimple_phi_arg (phi
, e
->dest_idx
)->locus
;
4047 /* Set the source location of gimple argument I of phi node PHI to LOC. */
4050 gimple_phi_arg_set_location (gphi
*phi
, size_t i
, source_location loc
)
4052 gimple_phi_arg (phi
, i
)->locus
= loc
;
4055 /* Return TRUE if argument I of phi node PHI has a location record. */
4058 gimple_phi_arg_has_location (gphi
*phi
, size_t i
)
4060 return gimple_phi_arg_location (phi
, i
) != UNKNOWN_LOCATION
;
4064 /* Return the region number for GIMPLE_RESX RESX_STMT. */
4067 gimple_resx_region (const gresx
*resx_stmt
)
4069 return resx_stmt
->region
;
4072 /* Set REGION to be the region number for GIMPLE_RESX RESX_STMT. */
4075 gimple_resx_set_region (gresx
*resx_stmt
, int region
)
4077 resx_stmt
->region
= region
;
4080 /* Return the region number for GIMPLE_EH_DISPATCH EH_DISPATCH_STMT. */
4083 gimple_eh_dispatch_region (const geh_dispatch
*eh_dispatch_stmt
)
4085 return eh_dispatch_stmt
->region
;
4088 /* Set REGION to be the region number for GIMPLE_EH_DISPATCH
4089 EH_DISPATCH_STMT. */
4092 gimple_eh_dispatch_set_region (geh_dispatch
*eh_dispatch_stmt
, int region
)
4094 eh_dispatch_stmt
->region
= region
;
4097 /* Return the number of labels associated with the switch statement GS. */
4099 static inline unsigned
4100 gimple_switch_num_labels (const gswitch
*gs
)
4103 GIMPLE_CHECK (gs
, GIMPLE_SWITCH
);
4104 num_ops
= gimple_num_ops (gs
);
4105 gcc_gimple_checking_assert (num_ops
> 1);
4110 /* Set NLABELS to be the number of labels for the switch statement GS. */
4113 gimple_switch_set_num_labels (gswitch
*g
, unsigned nlabels
)
4115 GIMPLE_CHECK (g
, GIMPLE_SWITCH
);
4116 gimple_set_num_ops (g
, nlabels
+ 1);
4120 /* Return the index variable used by the switch statement GS. */
4123 gimple_switch_index (const gswitch
*gs
)
4125 return gimple_op (gs
, 0);
4129 /* Return a pointer to the index variable for the switch statement GS. */
4131 static inline tree
*
4132 gimple_switch_index_ptr (const gswitch
*gs
)
4134 return gimple_op_ptr (gs
, 0);
4138 /* Set INDEX to be the index variable for switch statement GS. */
4141 gimple_switch_set_index (gswitch
*gs
, tree index
)
4143 GIMPLE_CHECK (gs
, GIMPLE_SWITCH
);
4144 gcc_gimple_checking_assert (SSA_VAR_P (index
) || CONSTANT_CLASS_P (index
));
4145 gimple_set_op (gs
, 0, index
);
4149 /* Return the label numbered INDEX. The default label is 0, followed by any
4150 labels in a switch statement. */
4153 gimple_switch_label (const gswitch
*gs
, unsigned index
)
4155 GIMPLE_CHECK (gs
, GIMPLE_SWITCH
);
4156 gcc_gimple_checking_assert (gimple_num_ops (gs
) > index
+ 1);
4157 return gimple_op (gs
, index
+ 1);
4160 /* Set the label number INDEX to LABEL. 0 is always the default label. */
4163 gimple_switch_set_label (gswitch
*gs
, unsigned index
, tree label
)
4165 GIMPLE_CHECK (gs
, GIMPLE_SWITCH
);
4166 gcc_gimple_checking_assert (gimple_num_ops (gs
) > index
+ 1
4167 && (label
== NULL_TREE
4168 || TREE_CODE (label
) == CASE_LABEL_EXPR
));
4169 gimple_set_op (gs
, index
+ 1, label
);
4172 /* Return the default label for a switch statement. */
4175 gimple_switch_default_label (const gswitch
*gs
)
4177 tree label
= gimple_switch_label (gs
, 0);
4178 gcc_checking_assert (!CASE_LOW (label
) && !CASE_HIGH (label
));
4182 /* Set the default label for a switch statement. */
4185 gimple_switch_set_default_label (gswitch
*gs
, tree label
)
4187 gcc_checking_assert (!CASE_LOW (label
) && !CASE_HIGH (label
));
4188 gimple_switch_set_label (gs
, 0, label
);
4191 /* Return true if GS is a GIMPLE_DEBUG statement. */
4194 is_gimple_debug (const_gimple gs
)
4196 return gimple_code (gs
) == GIMPLE_DEBUG
;
4199 /* Return true if S is a GIMPLE_DEBUG BIND statement. */
4202 gimple_debug_bind_p (const_gimple s
)
4204 if (is_gimple_debug (s
))
4205 return s
->subcode
== GIMPLE_DEBUG_BIND
;
4210 /* Return the variable bound in a GIMPLE_DEBUG bind statement. */
4213 gimple_debug_bind_get_var (gimple dbg
)
4215 GIMPLE_CHECK (dbg
, GIMPLE_DEBUG
);
4216 gcc_gimple_checking_assert (gimple_debug_bind_p (dbg
));
4217 return gimple_op (dbg
, 0);
4220 /* Return the value bound to the variable in a GIMPLE_DEBUG bind
4224 gimple_debug_bind_get_value (gimple dbg
)
4226 GIMPLE_CHECK (dbg
, GIMPLE_DEBUG
);
4227 gcc_gimple_checking_assert (gimple_debug_bind_p (dbg
));
4228 return gimple_op (dbg
, 1);
4231 /* Return a pointer to the value bound to the variable in a
4232 GIMPLE_DEBUG bind statement. */
4234 static inline tree
*
4235 gimple_debug_bind_get_value_ptr (gimple dbg
)
4237 GIMPLE_CHECK (dbg
, GIMPLE_DEBUG
);
4238 gcc_gimple_checking_assert (gimple_debug_bind_p (dbg
));
4239 return gimple_op_ptr (dbg
, 1);
4242 /* Set the variable bound in a GIMPLE_DEBUG bind statement. */
4245 gimple_debug_bind_set_var (gimple dbg
, tree var
)
4247 GIMPLE_CHECK (dbg
, GIMPLE_DEBUG
);
4248 gcc_gimple_checking_assert (gimple_debug_bind_p (dbg
));
4249 gimple_set_op (dbg
, 0, var
);
4252 /* Set the value bound to the variable in a GIMPLE_DEBUG bind
4256 gimple_debug_bind_set_value (gimple dbg
, tree value
)
4258 GIMPLE_CHECK (dbg
, GIMPLE_DEBUG
);
4259 gcc_gimple_checking_assert (gimple_debug_bind_p (dbg
));
4260 gimple_set_op (dbg
, 1, value
);
4263 /* The second operand of a GIMPLE_DEBUG_BIND, when the value was
4265 #define GIMPLE_DEBUG_BIND_NOVALUE NULL_TREE /* error_mark_node */
4267 /* Remove the value bound to the variable in a GIMPLE_DEBUG bind
4271 gimple_debug_bind_reset_value (gimple dbg
)
4273 GIMPLE_CHECK (dbg
, GIMPLE_DEBUG
);
4274 gcc_gimple_checking_assert (gimple_debug_bind_p (dbg
));
4275 gimple_set_op (dbg
, 1, GIMPLE_DEBUG_BIND_NOVALUE
);
4278 /* Return true if the GIMPLE_DEBUG bind statement is bound to a
4282 gimple_debug_bind_has_value_p (gimple dbg
)
4284 GIMPLE_CHECK (dbg
, GIMPLE_DEBUG
);
4285 gcc_gimple_checking_assert (gimple_debug_bind_p (dbg
));
4286 return gimple_op (dbg
, 1) != GIMPLE_DEBUG_BIND_NOVALUE
;
4289 #undef GIMPLE_DEBUG_BIND_NOVALUE
4291 /* Return true if S is a GIMPLE_DEBUG SOURCE BIND statement. */
4294 gimple_debug_source_bind_p (const_gimple s
)
4296 if (is_gimple_debug (s
))
4297 return s
->subcode
== GIMPLE_DEBUG_SOURCE_BIND
;
4302 /* Return the variable bound in a GIMPLE_DEBUG source bind statement. */
4305 gimple_debug_source_bind_get_var (gimple dbg
)
4307 GIMPLE_CHECK (dbg
, GIMPLE_DEBUG
);
4308 gcc_gimple_checking_assert (gimple_debug_source_bind_p (dbg
));
4309 return gimple_op (dbg
, 0);
4312 /* Return the value bound to the variable in a GIMPLE_DEBUG source bind
4316 gimple_debug_source_bind_get_value (gimple dbg
)
4318 GIMPLE_CHECK (dbg
, GIMPLE_DEBUG
);
4319 gcc_gimple_checking_assert (gimple_debug_source_bind_p (dbg
));
4320 return gimple_op (dbg
, 1);
4323 /* Return a pointer to the value bound to the variable in a
4324 GIMPLE_DEBUG source bind statement. */
4326 static inline tree
*
4327 gimple_debug_source_bind_get_value_ptr (gimple dbg
)
4329 GIMPLE_CHECK (dbg
, GIMPLE_DEBUG
);
4330 gcc_gimple_checking_assert (gimple_debug_source_bind_p (dbg
));
4331 return gimple_op_ptr (dbg
, 1);
4334 /* Set the variable bound in a GIMPLE_DEBUG source bind statement. */
4337 gimple_debug_source_bind_set_var (gimple dbg
, tree var
)
4339 GIMPLE_CHECK (dbg
, GIMPLE_DEBUG
);
4340 gcc_gimple_checking_assert (gimple_debug_source_bind_p (dbg
));
4341 gimple_set_op (dbg
, 0, var
);
4344 /* Set the value bound to the variable in a GIMPLE_DEBUG source bind
4348 gimple_debug_source_bind_set_value (gimple dbg
, tree value
)
4350 GIMPLE_CHECK (dbg
, GIMPLE_DEBUG
);
4351 gcc_gimple_checking_assert (gimple_debug_source_bind_p (dbg
));
4352 gimple_set_op (dbg
, 1, value
);
4355 /* Return the line number for EXPR, or return -1 if we have no line
4356 number information for it. */
4358 get_lineno (const_gimple stmt
)
4365 loc
= gimple_location (stmt
);
4366 if (loc
== UNKNOWN_LOCATION
)
4369 return LOCATION_LINE (loc
);
4372 /* Return a pointer to the body for the OMP statement GS. */
4374 static inline gimple_seq
*
4375 gimple_omp_body_ptr (gimple gs
)
4377 return &static_cast <gimple_statement_omp
*> (gs
)->body
;
4380 /* Return the body for the OMP statement GS. */
4382 static inline gimple_seq
4383 gimple_omp_body (gimple gs
)
4385 return *gimple_omp_body_ptr (gs
);
4388 /* Set BODY to be the body for the OMP statement GS. */
4391 gimple_omp_set_body (gimple gs
, gimple_seq body
)
4393 static_cast <gimple_statement_omp
*> (gs
)->body
= body
;
4397 /* Return the name associated with OMP_CRITICAL statement CRIT_STMT. */
4400 gimple_omp_critical_name (const gomp_critical
*crit_stmt
)
4402 return crit_stmt
->name
;
4406 /* Return a pointer to the name associated with OMP critical statement GS. */
4408 static inline tree
*
4409 gimple_omp_critical_name_ptr (gomp_critical
*crit_stmt
)
4411 return &crit_stmt
->name
;
4415 /* Set NAME to be the name associated with OMP critical statement GS. */
4418 gimple_omp_critical_set_name (gomp_critical
*crit_stmt
, tree name
)
4420 crit_stmt
->name
= name
;
4424 /* Return the kind of the OMP_FOR statemement G. */
4427 gimple_omp_for_kind (const_gimple g
)
4429 GIMPLE_CHECK (g
, GIMPLE_OMP_FOR
);
4430 return (gimple_omp_subcode (g
) & GF_OMP_FOR_KIND_MASK
);
4434 /* Set the kind of the OMP_FOR statement G. */
4437 gimple_omp_for_set_kind (gomp_for
*g
, int kind
)
4439 g
->subcode
= (g
->subcode
& ~GF_OMP_FOR_KIND_MASK
)
4440 | (kind
& GF_OMP_FOR_KIND_MASK
);
4444 /* Return true if OMP_FOR statement G has the
4445 GF_OMP_FOR_COMBINED flag set. */
4448 gimple_omp_for_combined_p (const_gimple g
)
4450 GIMPLE_CHECK (g
, GIMPLE_OMP_FOR
);
4451 return (gimple_omp_subcode (g
) & GF_OMP_FOR_COMBINED
) != 0;
4455 /* Set the GF_OMP_FOR_COMBINED field in the OMP_FOR statement G depending on
4456 the boolean value of COMBINED_P. */
4459 gimple_omp_for_set_combined_p (gomp_for
*g
, bool combined_p
)
4462 g
->subcode
|= GF_OMP_FOR_COMBINED
;
4464 g
->subcode
&= ~GF_OMP_FOR_COMBINED
;
4468 /* Return true if the OMP_FOR statement G has the
4469 GF_OMP_FOR_COMBINED_INTO flag set. */
4472 gimple_omp_for_combined_into_p (const_gimple g
)
4474 GIMPLE_CHECK (g
, GIMPLE_OMP_FOR
);
4475 return (gimple_omp_subcode (g
) & GF_OMP_FOR_COMBINED_INTO
) != 0;
4479 /* Set the GF_OMP_FOR_COMBINED_INTO field in the OMP_FOR statement G depending
4480 on the boolean value of COMBINED_P. */
4483 gimple_omp_for_set_combined_into_p (gomp_for
*g
, bool combined_p
)
4486 g
->subcode
|= GF_OMP_FOR_COMBINED_INTO
;
4488 g
->subcode
&= ~GF_OMP_FOR_COMBINED_INTO
;
4492 /* Return the clauses associated with the OMP_FOR statement GS. */
4495 gimple_omp_for_clauses (const_gimple gs
)
4497 const gomp_for
*omp_for_stmt
= as_a
<const gomp_for
*> (gs
);
4498 return omp_for_stmt
->clauses
;
4502 /* Return a pointer to the clauses associated with the OMP_FOR statement
4505 static inline tree
*
4506 gimple_omp_for_clauses_ptr (gimple gs
)
4508 gomp_for
*omp_for_stmt
= as_a
<gomp_for
*> (gs
);
4509 return &omp_for_stmt
->clauses
;
4513 /* Set CLAUSES to be the list of clauses associated with the OMP_FOR statement
4517 gimple_omp_for_set_clauses (gimple gs
, tree clauses
)
4519 gomp_for
*omp_for_stmt
= as_a
<gomp_for
*> (gs
);
4520 omp_for_stmt
->clauses
= clauses
;
4524 /* Get the collapse count of the OMP_FOR statement GS. */
4526 static inline size_t
4527 gimple_omp_for_collapse (gimple gs
)
4529 gomp_for
*omp_for_stmt
= as_a
<gomp_for
*> (gs
);
4530 return omp_for_stmt
->collapse
;
4534 /* Return the condition code associated with the OMP_FOR statement GS. */
4536 static inline enum tree_code
4537 gimple_omp_for_cond (const_gimple gs
, size_t i
)
4539 const gomp_for
*omp_for_stmt
= as_a
<const gomp_for
*> (gs
);
4540 gcc_gimple_checking_assert (i
< omp_for_stmt
->collapse
);
4541 return omp_for_stmt
->iter
[i
].cond
;
4545 /* Set COND to be the condition code for the OMP_FOR statement GS. */
4548 gimple_omp_for_set_cond (gimple gs
, size_t i
, enum tree_code cond
)
4550 gomp_for
*omp_for_stmt
= as_a
<gomp_for
*> (gs
);
4551 gcc_gimple_checking_assert (TREE_CODE_CLASS (cond
) == tcc_comparison
4552 && i
< omp_for_stmt
->collapse
);
4553 omp_for_stmt
->iter
[i
].cond
= cond
;
4557 /* Return the index variable for the OMP_FOR statement GS. */
4560 gimple_omp_for_index (const_gimple gs
, size_t i
)
4562 const gomp_for
*omp_for_stmt
= as_a
<const gomp_for
*> (gs
);
4563 gcc_gimple_checking_assert (i
< omp_for_stmt
->collapse
);
4564 return omp_for_stmt
->iter
[i
].index
;
4568 /* Return a pointer to the index variable for the OMP_FOR statement GS. */
4570 static inline tree
*
4571 gimple_omp_for_index_ptr (gimple gs
, size_t i
)
4573 gomp_for
*omp_for_stmt
= as_a
<gomp_for
*> (gs
);
4574 gcc_gimple_checking_assert (i
< omp_for_stmt
->collapse
);
4575 return &omp_for_stmt
->iter
[i
].index
;
4579 /* Set INDEX to be the index variable for the OMP_FOR statement GS. */
4582 gimple_omp_for_set_index (gimple gs
, size_t i
, tree index
)
4584 gomp_for
*omp_for_stmt
= as_a
<gomp_for
*> (gs
);
4585 gcc_gimple_checking_assert (i
< omp_for_stmt
->collapse
);
4586 omp_for_stmt
->iter
[i
].index
= index
;
4590 /* Return the initial value for the OMP_FOR statement GS. */
4593 gimple_omp_for_initial (const_gimple gs
, size_t i
)
4595 const gomp_for
*omp_for_stmt
= as_a
<const gomp_for
*> (gs
);
4596 gcc_gimple_checking_assert (i
< omp_for_stmt
->collapse
);
4597 return omp_for_stmt
->iter
[i
].initial
;
4601 /* Return a pointer to the initial value for the OMP_FOR statement GS. */
4603 static inline tree
*
4604 gimple_omp_for_initial_ptr (gimple gs
, size_t i
)
4606 gomp_for
*omp_for_stmt
= as_a
<gomp_for
*> (gs
);
4607 gcc_gimple_checking_assert (i
< omp_for_stmt
->collapse
);
4608 return &omp_for_stmt
->iter
[i
].initial
;
4612 /* Set INITIAL to be the initial value for the OMP_FOR statement GS. */
4615 gimple_omp_for_set_initial (gimple gs
, size_t i
, tree initial
)
4617 gomp_for
*omp_for_stmt
= as_a
<gomp_for
*> (gs
);
4618 gcc_gimple_checking_assert (i
< omp_for_stmt
->collapse
);
4619 omp_for_stmt
->iter
[i
].initial
= initial
;
4623 /* Return the final value for the OMP_FOR statement GS. */
4626 gimple_omp_for_final (const_gimple gs
, size_t i
)
4628 const gomp_for
*omp_for_stmt
= as_a
<const gomp_for
*> (gs
);
4629 gcc_gimple_checking_assert (i
< omp_for_stmt
->collapse
);
4630 return omp_for_stmt
->iter
[i
].final
;
4634 /* Return a pointer to the final value for the OMP_FOR statement GS. */
4636 static inline tree
*
4637 gimple_omp_for_final_ptr (gimple gs
, size_t i
)
4639 gomp_for
*omp_for_stmt
= as_a
<gomp_for
*> (gs
);
4640 gcc_gimple_checking_assert (i
< omp_for_stmt
->collapse
);
4641 return &omp_for_stmt
->iter
[i
].final
;
4645 /* Set FINAL to be the final value for the OMP_FOR statement GS. */
4648 gimple_omp_for_set_final (gimple gs
, size_t i
, tree final
)
4650 gomp_for
*omp_for_stmt
= as_a
<gomp_for
*> (gs
);
4651 gcc_gimple_checking_assert (i
< omp_for_stmt
->collapse
);
4652 omp_for_stmt
->iter
[i
].final
= final
;
4656 /* Return the increment value for the OMP_FOR statement GS. */
4659 gimple_omp_for_incr (const_gimple gs
, size_t i
)
4661 const gomp_for
*omp_for_stmt
= as_a
<const gomp_for
*> (gs
);
4662 gcc_gimple_checking_assert (i
< omp_for_stmt
->collapse
);
4663 return omp_for_stmt
->iter
[i
].incr
;
4667 /* Return a pointer to the increment value for the OMP_FOR statement GS. */
4669 static inline tree
*
4670 gimple_omp_for_incr_ptr (gimple gs
, size_t i
)
4672 gomp_for
*omp_for_stmt
= as_a
<gomp_for
*> (gs
);
4673 gcc_gimple_checking_assert (i
< omp_for_stmt
->collapse
);
4674 return &omp_for_stmt
->iter
[i
].incr
;
4678 /* Set INCR to be the increment value for the OMP_FOR statement GS. */
4681 gimple_omp_for_set_incr (gimple gs
, size_t i
, tree incr
)
4683 gomp_for
*omp_for_stmt
= as_a
<gomp_for
*> (gs
);
4684 gcc_gimple_checking_assert (i
< omp_for_stmt
->collapse
);
4685 omp_for_stmt
->iter
[i
].incr
= incr
;
4689 /* Return a pointer to the sequence of statements to execute before the OMP_FOR
4690 statement GS starts. */
4692 static inline gimple_seq
*
4693 gimple_omp_for_pre_body_ptr (gimple gs
)
4695 gomp_for
*omp_for_stmt
= as_a
<gomp_for
*> (gs
);
4696 return &omp_for_stmt
->pre_body
;
4700 /* Return the sequence of statements to execute before the OMP_FOR
4701 statement GS starts. */
4703 static inline gimple_seq
4704 gimple_omp_for_pre_body (gimple gs
)
4706 return *gimple_omp_for_pre_body_ptr (gs
);
4710 /* Set PRE_BODY to be the sequence of statements to execute before the
4711 OMP_FOR statement GS starts. */
4714 gimple_omp_for_set_pre_body (gimple gs
, gimple_seq pre_body
)
4716 gomp_for
*omp_for_stmt
= as_a
<gomp_for
*> (gs
);
4717 omp_for_stmt
->pre_body
= pre_body
;
4721 /* Return the clauses associated with OMP_PARALLEL GS. */
4724 gimple_omp_parallel_clauses (const_gimple gs
)
4726 const gomp_parallel
*omp_parallel_stmt
= as_a
<const gomp_parallel
*> (gs
);
4727 return omp_parallel_stmt
->clauses
;
4731 /* Return a pointer to the clauses associated with OMP_PARALLEL_STMT. */
4733 static inline tree
*
4734 gimple_omp_parallel_clauses_ptr (gomp_parallel
*omp_parallel_stmt
)
4736 return &omp_parallel_stmt
->clauses
;
4740 /* Set CLAUSES to be the list of clauses associated with OMP_PARALLEL_STMT. */
4743 gimple_omp_parallel_set_clauses (gomp_parallel
*omp_parallel_stmt
,
4746 omp_parallel_stmt
->clauses
= clauses
;
4750 /* Return the child function used to hold the body of OMP_PARALLEL_STMT. */
4753 gimple_omp_parallel_child_fn (const gomp_parallel
*omp_parallel_stmt
)
4755 return omp_parallel_stmt
->child_fn
;
4758 /* Return a pointer to the child function used to hold the body of
4759 OMP_PARALLEL_STMT. */
4761 static inline tree
*
4762 gimple_omp_parallel_child_fn_ptr (gomp_parallel
*omp_parallel_stmt
)
4764 return &omp_parallel_stmt
->child_fn
;
4768 /* Set CHILD_FN to be the child function for OMP_PARALLEL_STMT. */
4771 gimple_omp_parallel_set_child_fn (gomp_parallel
*omp_parallel_stmt
,
4774 omp_parallel_stmt
->child_fn
= child_fn
;
4778 /* Return the artificial argument used to send variables and values
4779 from the parent to the children threads in OMP_PARALLEL_STMT. */
4782 gimple_omp_parallel_data_arg (const gomp_parallel
*omp_parallel_stmt
)
4784 return omp_parallel_stmt
->data_arg
;
4788 /* Return a pointer to the data argument for OMP_PARALLEL_STMT. */
4790 static inline tree
*
4791 gimple_omp_parallel_data_arg_ptr (gomp_parallel
*omp_parallel_stmt
)
4793 return &omp_parallel_stmt
->data_arg
;
4797 /* Set DATA_ARG to be the data argument for OMP_PARALLEL_STMT. */
4800 gimple_omp_parallel_set_data_arg (gomp_parallel
*omp_parallel_stmt
,
4803 omp_parallel_stmt
->data_arg
= data_arg
;
4807 /* Return the clauses associated with OMP_TASK GS. */
4810 gimple_omp_task_clauses (const_gimple gs
)
4812 const gomp_task
*omp_task_stmt
= as_a
<const gomp_task
*> (gs
);
4813 return omp_task_stmt
->clauses
;
4817 /* Return a pointer to the clauses associated with OMP_TASK GS. */
4819 static inline tree
*
4820 gimple_omp_task_clauses_ptr (gimple gs
)
4822 gomp_task
*omp_task_stmt
= as_a
<gomp_task
*> (gs
);
4823 return &omp_task_stmt
->clauses
;
4827 /* Set CLAUSES to be the list of clauses associated with OMP_TASK
4831 gimple_omp_task_set_clauses (gimple gs
, tree clauses
)
4833 gomp_task
*omp_task_stmt
= as_a
<gomp_task
*> (gs
);
4834 omp_task_stmt
->clauses
= clauses
;
4838 /* Return the child function used to hold the body of OMP_TASK GS. */
4841 gimple_omp_task_child_fn (const_gimple gs
)
4843 const gomp_task
*omp_task_stmt
= as_a
<const gomp_task
*> (gs
);
4844 return omp_task_stmt
->child_fn
;
4847 /* Return a pointer to the child function used to hold the body of
4850 static inline tree
*
4851 gimple_omp_task_child_fn_ptr (gimple gs
)
4853 gomp_task
*omp_task_stmt
= as_a
<gomp_task
*> (gs
);
4854 return &omp_task_stmt
->child_fn
;
4858 /* Set CHILD_FN to be the child function for OMP_TASK GS. */
4861 gimple_omp_task_set_child_fn (gimple gs
, tree child_fn
)
4863 gomp_task
*omp_task_stmt
= as_a
<gomp_task
*> (gs
);
4864 omp_task_stmt
->child_fn
= child_fn
;
4868 /* Return the artificial argument used to send variables and values
4869 from the parent to the children threads in OMP_TASK GS. */
4872 gimple_omp_task_data_arg (const_gimple gs
)
4874 const gomp_task
*omp_task_stmt
= as_a
<const gomp_task
*> (gs
);
4875 return omp_task_stmt
->data_arg
;
4879 /* Return a pointer to the data argument for OMP_TASK GS. */
4881 static inline tree
*
4882 gimple_omp_task_data_arg_ptr (gimple gs
)
4884 gomp_task
*omp_task_stmt
= as_a
<gomp_task
*> (gs
);
4885 return &omp_task_stmt
->data_arg
;
4889 /* Set DATA_ARG to be the data argument for OMP_TASK GS. */
4892 gimple_omp_task_set_data_arg (gimple gs
, tree data_arg
)
4894 gomp_task
*omp_task_stmt
= as_a
<gomp_task
*> (gs
);
4895 omp_task_stmt
->data_arg
= data_arg
;
4899 /* Return the clauses associated with OMP_TASK GS. */
4902 gimple_omp_taskreg_clauses (const_gimple gs
)
4904 const gimple_statement_omp_taskreg
*omp_taskreg_stmt
4905 = as_a
<const gimple_statement_omp_taskreg
*> (gs
);
4906 return omp_taskreg_stmt
->clauses
;
4910 /* Return a pointer to the clauses associated with OMP_TASK GS. */
4912 static inline tree
*
4913 gimple_omp_taskreg_clauses_ptr (gimple gs
)
4915 gimple_statement_omp_taskreg
*omp_taskreg_stmt
4916 = as_a
<gimple_statement_omp_taskreg
*> (gs
);
4917 return &omp_taskreg_stmt
->clauses
;
4921 /* Set CLAUSES to be the list of clauses associated with OMP_TASK
4925 gimple_omp_taskreg_set_clauses (gimple gs
, tree clauses
)
4927 gimple_statement_omp_taskreg
*omp_taskreg_stmt
4928 = as_a
<gimple_statement_omp_taskreg
*> (gs
);
4929 omp_taskreg_stmt
->clauses
= clauses
;
4933 /* Return the child function used to hold the body of OMP_TASK GS. */
4936 gimple_omp_taskreg_child_fn (const_gimple gs
)
4938 const gimple_statement_omp_taskreg
*omp_taskreg_stmt
4939 = as_a
<const gimple_statement_omp_taskreg
*> (gs
);
4940 return omp_taskreg_stmt
->child_fn
;
4943 /* Return a pointer to the child function used to hold the body of
4946 static inline tree
*
4947 gimple_omp_taskreg_child_fn_ptr (gimple gs
)
4949 gimple_statement_omp_taskreg
*omp_taskreg_stmt
4950 = as_a
<gimple_statement_omp_taskreg
*> (gs
);
4951 return &omp_taskreg_stmt
->child_fn
;
4955 /* Set CHILD_FN to be the child function for OMP_TASK GS. */
4958 gimple_omp_taskreg_set_child_fn (gimple gs
, tree child_fn
)
4960 gimple_statement_omp_taskreg
*omp_taskreg_stmt
4961 = as_a
<gimple_statement_omp_taskreg
*> (gs
);
4962 omp_taskreg_stmt
->child_fn
= child_fn
;
4966 /* Return the artificial argument used to send variables and values
4967 from the parent to the children threads in OMP_TASK GS. */
4970 gimple_omp_taskreg_data_arg (const_gimple gs
)
4972 const gimple_statement_omp_taskreg
*omp_taskreg_stmt
4973 = as_a
<const gimple_statement_omp_taskreg
*> (gs
);
4974 return omp_taskreg_stmt
->data_arg
;
4978 /* Return a pointer to the data argument for OMP_TASK GS. */
4980 static inline tree
*
4981 gimple_omp_taskreg_data_arg_ptr (gimple gs
)
4983 gimple_statement_omp_taskreg
*omp_taskreg_stmt
4984 = as_a
<gimple_statement_omp_taskreg
*> (gs
);
4985 return &omp_taskreg_stmt
->data_arg
;
4989 /* Set DATA_ARG to be the data argument for OMP_TASK GS. */
4992 gimple_omp_taskreg_set_data_arg (gimple gs
, tree data_arg
)
4994 gimple_statement_omp_taskreg
*omp_taskreg_stmt
4995 = as_a
<gimple_statement_omp_taskreg
*> (gs
);
4996 omp_taskreg_stmt
->data_arg
= data_arg
;
5000 /* Return the copy function used to hold the body of OMP_TASK GS. */
5003 gimple_omp_task_copy_fn (const_gimple gs
)
5005 const gomp_task
*omp_task_stmt
= as_a
<const gomp_task
*> (gs
);
5006 return omp_task_stmt
->copy_fn
;
5009 /* Return a pointer to the copy function used to hold the body of
5012 static inline tree
*
5013 gimple_omp_task_copy_fn_ptr (gimple gs
)
5015 gomp_task
*omp_task_stmt
= as_a
<gomp_task
*> (gs
);
5016 return &omp_task_stmt
->copy_fn
;
5020 /* Set CHILD_FN to be the copy function for OMP_TASK GS. */
5023 gimple_omp_task_set_copy_fn (gimple gs
, tree copy_fn
)
5025 gomp_task
*omp_task_stmt
= as_a
<gomp_task
*> (gs
);
5026 omp_task_stmt
->copy_fn
= copy_fn
;
5030 /* Return size of the data block in bytes in OMP_TASK GS. */
5033 gimple_omp_task_arg_size (const_gimple gs
)
5035 const gomp_task
*omp_task_stmt
= as_a
<const gomp_task
*> (gs
);
5036 return omp_task_stmt
->arg_size
;
5040 /* Return a pointer to the data block size for OMP_TASK GS. */
5042 static inline tree
*
5043 gimple_omp_task_arg_size_ptr (gimple gs
)
5045 gomp_task
*omp_task_stmt
= as_a
<gomp_task
*> (gs
);
5046 return &omp_task_stmt
->arg_size
;
5050 /* Set ARG_SIZE to be the data block size for OMP_TASK GS. */
5053 gimple_omp_task_set_arg_size (gimple gs
, tree arg_size
)
5055 gomp_task
*omp_task_stmt
= as_a
<gomp_task
*> (gs
);
5056 omp_task_stmt
->arg_size
= arg_size
;
5060 /* Return align of the data block in bytes in OMP_TASK GS. */
5063 gimple_omp_task_arg_align (const_gimple gs
)
5065 const gomp_task
*omp_task_stmt
= as_a
<const gomp_task
*> (gs
);
5066 return omp_task_stmt
->arg_align
;
5070 /* Return a pointer to the data block align for OMP_TASK GS. */
5072 static inline tree
*
5073 gimple_omp_task_arg_align_ptr (gimple gs
)
5075 gomp_task
*omp_task_stmt
= as_a
<gomp_task
*> (gs
);
5076 return &omp_task_stmt
->arg_align
;
5080 /* Set ARG_SIZE to be the data block align for OMP_TASK GS. */
5083 gimple_omp_task_set_arg_align (gimple gs
, tree arg_align
)
5085 gomp_task
*omp_task_stmt
= as_a
<gomp_task
*> (gs
);
5086 omp_task_stmt
->arg_align
= arg_align
;
5090 /* Return the clauses associated with OMP_SINGLE GS. */
5093 gimple_omp_single_clauses (const_gimple gs
)
5095 const gomp_single
*omp_single_stmt
= as_a
<const gomp_single
*> (gs
);
5096 return omp_single_stmt
->clauses
;
5100 /* Return a pointer to the clauses associated with OMP_SINGLE GS. */
5102 static inline tree
*
5103 gimple_omp_single_clauses_ptr (gimple gs
)
5105 gomp_single
*omp_single_stmt
= as_a
<gomp_single
*> (gs
);
5106 return &omp_single_stmt
->clauses
;
5110 /* Set CLAUSES to be the clauses associated with OMP_SINGLE_STMT. */
5113 gimple_omp_single_set_clauses (gomp_single
*omp_single_stmt
, tree clauses
)
5115 omp_single_stmt
->clauses
= clauses
;
5119 /* Return the clauses associated with OMP_TARGET GS. */
5122 gimple_omp_target_clauses (const_gimple gs
)
5124 const gomp_target
*omp_target_stmt
= as_a
<const gomp_target
*> (gs
);
5125 return omp_target_stmt
->clauses
;
5129 /* Return a pointer to the clauses associated with OMP_TARGET GS. */
5131 static inline tree
*
5132 gimple_omp_target_clauses_ptr (gimple gs
)
5134 gomp_target
*omp_target_stmt
= as_a
<gomp_target
*> (gs
);
5135 return &omp_target_stmt
->clauses
;
5139 /* Set CLAUSES to be the clauses associated with OMP_TARGET_STMT. */
5142 gimple_omp_target_set_clauses (gomp_target
*omp_target_stmt
,
5145 omp_target_stmt
->clauses
= clauses
;
5149 /* Return the kind of the OMP_TARGET G. */
5152 gimple_omp_target_kind (const_gimple g
)
5154 GIMPLE_CHECK (g
, GIMPLE_OMP_TARGET
);
5155 return (gimple_omp_subcode (g
) & GF_OMP_TARGET_KIND_MASK
);
5159 /* Set the kind of the OMP_TARGET G. */
5162 gimple_omp_target_set_kind (gomp_target
*g
, int kind
)
5164 g
->subcode
= (g
->subcode
& ~GF_OMP_TARGET_KIND_MASK
)
5165 | (kind
& GF_OMP_TARGET_KIND_MASK
);
5169 /* Return the child function used to hold the body of OMP_TARGET_STMT. */
5172 gimple_omp_target_child_fn (const gomp_target
*omp_target_stmt
)
5174 return omp_target_stmt
->child_fn
;
5177 /* Return a pointer to the child function used to hold the body of
5180 static inline tree
*
5181 gimple_omp_target_child_fn_ptr (gomp_target
*omp_target_stmt
)
5183 return &omp_target_stmt
->child_fn
;
5187 /* Set CHILD_FN to be the child function for OMP_TARGET_STMT. */
5190 gimple_omp_target_set_child_fn (gomp_target
*omp_target_stmt
,
5193 omp_target_stmt
->child_fn
= child_fn
;
5197 /* Return the artificial argument used to send variables and values
5198 from the parent to the children threads in OMP_TARGET_STMT. */
5201 gimple_omp_target_data_arg (const gomp_target
*omp_target_stmt
)
5203 return omp_target_stmt
->data_arg
;
5207 /* Return a pointer to the data argument for OMP_TARGET GS. */
5209 static inline tree
*
5210 gimple_omp_target_data_arg_ptr (gomp_target
*omp_target_stmt
)
5212 return &omp_target_stmt
->data_arg
;
5216 /* Set DATA_ARG to be the data argument for OMP_TARGET_STMT. */
5219 gimple_omp_target_set_data_arg (gomp_target
*omp_target_stmt
,
5222 omp_target_stmt
->data_arg
= data_arg
;
5226 /* Return the clauses associated with OMP_TEAMS GS. */
5229 gimple_omp_teams_clauses (const_gimple gs
)
5231 const gomp_teams
*omp_teams_stmt
= as_a
<const gomp_teams
*> (gs
);
5232 return omp_teams_stmt
->clauses
;
5236 /* Return a pointer to the clauses associated with OMP_TEAMS GS. */
5238 static inline tree
*
5239 gimple_omp_teams_clauses_ptr (gimple gs
)
5241 gomp_teams
*omp_teams_stmt
= as_a
<gomp_teams
*> (gs
);
5242 return &omp_teams_stmt
->clauses
;
5246 /* Set CLAUSES to be the clauses associated with OMP_TEAMS_STMT. */
5249 gimple_omp_teams_set_clauses (gomp_teams
*omp_teams_stmt
, tree clauses
)
5251 omp_teams_stmt
->clauses
= clauses
;
5255 /* Return the clauses associated with OMP_SECTIONS GS. */
5258 gimple_omp_sections_clauses (const_gimple gs
)
5260 const gomp_sections
*omp_sections_stmt
= as_a
<const gomp_sections
*> (gs
);
5261 return omp_sections_stmt
->clauses
;
5265 /* Return a pointer to the clauses associated with OMP_SECTIONS GS. */
5267 static inline tree
*
5268 gimple_omp_sections_clauses_ptr (gimple gs
)
5270 gomp_sections
*omp_sections_stmt
= as_a
<gomp_sections
*> (gs
);
5271 return &omp_sections_stmt
->clauses
;
5275 /* Set CLAUSES to be the set of clauses associated with OMP_SECTIONS
5279 gimple_omp_sections_set_clauses (gimple gs
, tree clauses
)
5281 gomp_sections
*omp_sections_stmt
= as_a
<gomp_sections
*> (gs
);
5282 omp_sections_stmt
->clauses
= clauses
;
5286 /* Return the control variable associated with the GIMPLE_OMP_SECTIONS
5290 gimple_omp_sections_control (const_gimple gs
)
5292 const gomp_sections
*omp_sections_stmt
= as_a
<const gomp_sections
*> (gs
);
5293 return omp_sections_stmt
->control
;
5297 /* Return a pointer to the clauses associated with the GIMPLE_OMP_SECTIONS
5300 static inline tree
*
5301 gimple_omp_sections_control_ptr (gimple gs
)
5303 gomp_sections
*omp_sections_stmt
= as_a
<gomp_sections
*> (gs
);
5304 return &omp_sections_stmt
->control
;
5308 /* Set CONTROL to be the set of clauses associated with the
5309 GIMPLE_OMP_SECTIONS in GS. */
5312 gimple_omp_sections_set_control (gimple gs
, tree control
)
5314 gomp_sections
*omp_sections_stmt
= as_a
<gomp_sections
*> (gs
);
5315 omp_sections_stmt
->control
= control
;
5319 /* Set the value being stored in an atomic store. */
5322 gimple_omp_atomic_store_set_val (gomp_atomic_store
*store_stmt
, tree val
)
5324 store_stmt
->val
= val
;
5328 /* Return the value being stored in an atomic store. */
5331 gimple_omp_atomic_store_val (const gomp_atomic_store
*store_stmt
)
5333 return store_stmt
->val
;
5337 /* Return a pointer to the value being stored in an atomic store. */
5339 static inline tree
*
5340 gimple_omp_atomic_store_val_ptr (gomp_atomic_store
*store_stmt
)
5342 return &store_stmt
->val
;
5346 /* Set the LHS of an atomic load. */
5349 gimple_omp_atomic_load_set_lhs (gomp_atomic_load
*load_stmt
, tree lhs
)
5351 load_stmt
->lhs
= lhs
;
5355 /* Get the LHS of an atomic load. */
5358 gimple_omp_atomic_load_lhs (const gomp_atomic_load
*load_stmt
)
5360 return load_stmt
->lhs
;
5364 /* Return a pointer to the LHS of an atomic load. */
5366 static inline tree
*
5367 gimple_omp_atomic_load_lhs_ptr (gomp_atomic_load
*load_stmt
)
5369 return &load_stmt
->lhs
;
5373 /* Set the RHS of an atomic load. */
5376 gimple_omp_atomic_load_set_rhs (gomp_atomic_load
*load_stmt
, tree rhs
)
5378 load_stmt
->rhs
= rhs
;
5382 /* Get the RHS of an atomic load. */
5385 gimple_omp_atomic_load_rhs (const gomp_atomic_load
*load_stmt
)
5387 return load_stmt
->rhs
;
5391 /* Return a pointer to the RHS of an atomic load. */
5393 static inline tree
*
5394 gimple_omp_atomic_load_rhs_ptr (gomp_atomic_load
*load_stmt
)
5396 return &load_stmt
->rhs
;
5400 /* Get the definition of the control variable in a GIMPLE_OMP_CONTINUE. */
5403 gimple_omp_continue_control_def (const gomp_continue
*cont_stmt
)
5405 return cont_stmt
->control_def
;
5408 /* The same as above, but return the address. */
5410 static inline tree
*
5411 gimple_omp_continue_control_def_ptr (gomp_continue
*cont_stmt
)
5413 return &cont_stmt
->control_def
;
5416 /* Set the definition of the control variable in a GIMPLE_OMP_CONTINUE. */
5419 gimple_omp_continue_set_control_def (gomp_continue
*cont_stmt
, tree def
)
5421 cont_stmt
->control_def
= def
;
5425 /* Get the use of the control variable in a GIMPLE_OMP_CONTINUE. */
5428 gimple_omp_continue_control_use (const gomp_continue
*cont_stmt
)
5430 return cont_stmt
->control_use
;
5434 /* The same as above, but return the address. */
5436 static inline tree
*
5437 gimple_omp_continue_control_use_ptr (gomp_continue
*cont_stmt
)
5439 return &cont_stmt
->control_use
;
5443 /* Set the use of the control variable in a GIMPLE_OMP_CONTINUE. */
5446 gimple_omp_continue_set_control_use (gomp_continue
*cont_stmt
, tree use
)
5448 cont_stmt
->control_use
= use
;
5451 /* Return a pointer to the body for the GIMPLE_TRANSACTION statement
5452 TRANSACTION_STMT. */
5454 static inline gimple_seq
*
5455 gimple_transaction_body_ptr (gtransaction
*transaction_stmt
)
5457 return &transaction_stmt
->body
;
5460 /* Return the body for the GIMPLE_TRANSACTION statement TRANSACTION_STMT. */
5462 static inline gimple_seq
5463 gimple_transaction_body (gtransaction
*transaction_stmt
)
5465 return *gimple_transaction_body_ptr (transaction_stmt
);
5468 /* Return the label associated with a GIMPLE_TRANSACTION. */
5471 gimple_transaction_label (const gtransaction
*transaction_stmt
)
5473 return transaction_stmt
->label
;
5476 static inline tree
*
5477 gimple_transaction_label_ptr (gtransaction
*transaction_stmt
)
5479 return &transaction_stmt
->label
;
5482 /* Return the subcode associated with a GIMPLE_TRANSACTION. */
5484 static inline unsigned int
5485 gimple_transaction_subcode (const gtransaction
*transaction_stmt
)
5487 return transaction_stmt
->subcode
;
5490 /* Set BODY to be the body for the GIMPLE_TRANSACTION statement
5491 TRANSACTION_STMT. */
5494 gimple_transaction_set_body (gtransaction
*transaction_stmt
,
5497 transaction_stmt
->body
= body
;
5500 /* Set the label associated with a GIMPLE_TRANSACTION. */
5503 gimple_transaction_set_label (gtransaction
*transaction_stmt
, tree label
)
5505 transaction_stmt
->label
= label
;
5508 /* Set the subcode associated with a GIMPLE_TRANSACTION. */
5511 gimple_transaction_set_subcode (gtransaction
*transaction_stmt
,
5512 unsigned int subcode
)
5514 transaction_stmt
->subcode
= subcode
;
5518 /* Return a pointer to the return value for GIMPLE_RETURN GS. */
5520 static inline tree
*
5521 gimple_return_retval_ptr (const greturn
*gs
)
5523 return gimple_op_ptr (gs
, 0);
5526 /* Return the return value for GIMPLE_RETURN GS. */
5529 gimple_return_retval (const greturn
*gs
)
5531 return gimple_op (gs
, 0);
5535 /* Set RETVAL to be the return value for GIMPLE_RETURN GS. */
5538 gimple_return_set_retval (greturn
*gs
, tree retval
)
5540 gimple_set_op (gs
, 0, retval
);
5544 /* Return the return bounds for GIMPLE_RETURN GS. */
5547 gimple_return_retbnd (const_gimple gs
)
5549 GIMPLE_CHECK (gs
, GIMPLE_RETURN
);
5550 return gimple_op (gs
, 1);
5554 /* Set RETVAL to be the return bounds for GIMPLE_RETURN GS. */
5557 gimple_return_set_retbnd (gimple gs
, tree retval
)
5559 GIMPLE_CHECK (gs
, GIMPLE_RETURN
);
5560 gimple_set_op (gs
, 1, retval
);
5564 /* Returns true when the gimple statement STMT is any of the OMP types. */
5566 #define CASE_GIMPLE_OMP \
5567 case GIMPLE_OMP_PARALLEL: \
5568 case GIMPLE_OMP_TASK: \
5569 case GIMPLE_OMP_FOR: \
5570 case GIMPLE_OMP_SECTIONS: \
5571 case GIMPLE_OMP_SECTIONS_SWITCH: \
5572 case GIMPLE_OMP_SINGLE: \
5573 case GIMPLE_OMP_TARGET: \
5574 case GIMPLE_OMP_TEAMS: \
5575 case GIMPLE_OMP_SECTION: \
5576 case GIMPLE_OMP_MASTER: \
5577 case GIMPLE_OMP_TASKGROUP: \
5578 case GIMPLE_OMP_ORDERED: \
5579 case GIMPLE_OMP_CRITICAL: \
5580 case GIMPLE_OMP_RETURN: \
5581 case GIMPLE_OMP_ATOMIC_LOAD: \
5582 case GIMPLE_OMP_ATOMIC_STORE: \
5583 case GIMPLE_OMP_CONTINUE
5586 is_gimple_omp (const_gimple stmt
)
5588 switch (gimple_code (stmt
))
5597 /* Return true if the OMP gimple statement STMT is any of the OpenACC types
5601 is_gimple_omp_oacc (const_gimple stmt
)
5603 gcc_assert (is_gimple_omp (stmt
));
5604 switch (gimple_code (stmt
))
5606 case GIMPLE_OMP_FOR
:
5607 switch (gimple_omp_for_kind (stmt
))
5609 case GF_OMP_FOR_KIND_OACC_LOOP
:
5614 case GIMPLE_OMP_TARGET
:
5615 switch (gimple_omp_target_kind (stmt
))
5617 case GF_OMP_TARGET_KIND_OACC_PARALLEL
:
5618 case GF_OMP_TARGET_KIND_OACC_KERNELS
:
5619 case GF_OMP_TARGET_KIND_OACC_DATA
:
5620 case GF_OMP_TARGET_KIND_OACC_UPDATE
:
5621 case GF_OMP_TARGET_KIND_OACC_ENTER_EXIT_DATA
:
5632 /* Return true if the OMP gimple statement STMT is offloaded. */
5635 is_gimple_omp_offloaded (const_gimple stmt
)
5637 gcc_assert (is_gimple_omp (stmt
));
5638 switch (gimple_code (stmt
))
5640 case GIMPLE_OMP_TARGET
:
5641 switch (gimple_omp_target_kind (stmt
))
5643 case GF_OMP_TARGET_KIND_REGION
:
5644 case GF_OMP_TARGET_KIND_OACC_PARALLEL
:
5645 case GF_OMP_TARGET_KIND_OACC_KERNELS
:
5656 /* Returns TRUE if statement G is a GIMPLE_NOP. */
5659 gimple_nop_p (const_gimple g
)
5661 return gimple_code (g
) == GIMPLE_NOP
;
5665 /* Return true if GS is a GIMPLE_RESX. */
5668 is_gimple_resx (const_gimple gs
)
5670 return gimple_code (gs
) == GIMPLE_RESX
;
5673 /* Return the type of the main expression computed by STMT. Return
5674 void_type_node if the statement computes nothing. */
5677 gimple_expr_type (const_gimple stmt
)
5679 enum gimple_code code
= gimple_code (stmt
);
5680 /* In general we want to pass out a type that can be substituted
5681 for both the RHS and the LHS types if there is a possibly
5682 useless conversion involved. That means returning the
5683 original RHS type as far as we can reconstruct it. */
5684 if (code
== GIMPLE_CALL
)
5686 const gcall
*call_stmt
= as_a
<const gcall
*> (stmt
);
5687 if (gimple_call_internal_p (call_stmt
)
5688 && gimple_call_internal_fn (call_stmt
) == IFN_MASK_STORE
)
5689 return TREE_TYPE (gimple_call_arg (call_stmt
, 3));
5691 return gimple_call_return_type (call_stmt
);
5693 else if (code
== GIMPLE_ASSIGN
)
5695 if (gimple_assign_rhs_code (stmt
) == POINTER_PLUS_EXPR
)
5696 return TREE_TYPE (gimple_assign_rhs1 (stmt
));
5698 /* As fallback use the type of the LHS. */
5699 return TREE_TYPE (gimple_get_lhs (stmt
));
5701 else if (code
== GIMPLE_COND
)
5702 return boolean_type_node
;
5704 return void_type_node
;
5707 /* Enum and arrays used for allocation stats. Keep in sync with
5708 gimple.c:gimple_alloc_kind_names. */
5709 enum gimple_alloc_kind
5711 gimple_alloc_kind_assign
, /* Assignments. */
5712 gimple_alloc_kind_phi
, /* PHI nodes. */
5713 gimple_alloc_kind_cond
, /* Conditionals. */
5714 gimple_alloc_kind_rest
, /* Everything else. */
5715 gimple_alloc_kind_all
5718 extern int gimple_alloc_counts
[];
5719 extern int gimple_alloc_sizes
[];
5721 /* Return the allocation kind for a given stmt CODE. */
5722 static inline enum gimple_alloc_kind
5723 gimple_alloc_kind (enum gimple_code code
)
5728 return gimple_alloc_kind_assign
;
5730 return gimple_alloc_kind_phi
;
5732 return gimple_alloc_kind_cond
;
5734 return gimple_alloc_kind_rest
;
5738 /* Return true if a location should not be emitted for this statement
5739 by annotate_all_with_location. */
5742 gimple_do_not_emit_location_p (gimple g
)
5744 return gimple_plf (g
, GF_PLF_1
);
5747 /* Mark statement G so a location will not be emitted by
5748 annotate_one_with_location. */
5751 gimple_set_do_not_emit_location (gimple g
)
5753 /* The PLF flags are initialized to 0 when a new tuple is created,
5754 so no need to initialize it anywhere. */
5755 gimple_set_plf (g
, GF_PLF_1
, true);
5759 /* Macros for showing usage statistics. */
5760 #define SCALE(x) ((unsigned long) ((x) < 1024*10 \
5762 : ((x) < 1024*1024*10 \
5764 : (x) / (1024*1024))))
5766 #define LABEL(x) ((x) < 1024*10 ? 'b' : ((x) < 1024*1024*10 ? 'k' : 'M'))
5768 #endif /* GCC_GIMPLE_H */