1 /* Gimple IR definitions.
3 Copyright (C) 2007-2014 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 typedef gimple gimple_seq_node
;
27 /* For each block, the PHI nodes that need to be rewritten are stored into
29 typedef vec
<gimple
> gimple_vec
;
32 #define DEFGSCODE(SYM, STRING, STRUCT) SYM,
35 LAST_AND_UNUSED_GIMPLE_CODE
38 extern const char *const gimple_code_name
[];
39 extern const unsigned char gimple_rhs_class_table
[];
41 /* Error out if a gimple tuple is addressed incorrectly. */
42 #if defined ENABLE_GIMPLE_CHECKING
43 #define gcc_gimple_checking_assert(EXPR) gcc_assert (EXPR)
44 extern void gimple_check_failed (const_gimple
, const char *, int, \
45 const char *, enum gimple_code
, \
46 enum tree_code
) ATTRIBUTE_NORETURN
;
48 #define GIMPLE_CHECK(GS, CODE) \
50 const_gimple __gs = (GS); \
51 if (gimple_code (__gs) != (CODE)) \
52 gimple_check_failed (__gs, __FILE__, __LINE__, __FUNCTION__, \
53 (CODE), ERROR_MARK); \
55 #else /* not ENABLE_GIMPLE_CHECKING */
56 #define gcc_gimple_checking_assert(EXPR) ((void)(0 && (EXPR)))
57 #define GIMPLE_CHECK(GS, CODE) (void)0
60 /* Class of GIMPLE expressions suitable for the RHS of assignments. See
61 get_gimple_rhs_class. */
64 GIMPLE_INVALID_RHS
, /* The expression cannot be used on the RHS. */
65 GIMPLE_TERNARY_RHS
, /* The expression is a ternary operation. */
66 GIMPLE_BINARY_RHS
, /* The expression is a binary operation. */
67 GIMPLE_UNARY_RHS
, /* The expression is a unary operation. */
68 GIMPLE_SINGLE_RHS
/* The expression is a single object (an SSA
69 name, a _DECL, a _REF, etc. */
72 /* Specific flags for individual GIMPLE statements. These flags are
73 always stored in gimple_statement_base.subcode and they may only be
74 defined for statement codes that do not use subcodes.
76 Values for the masks can overlap as long as the overlapping values
77 are never used in the same statement class.
79 The maximum mask value that can be defined is 1 << 15 (i.e., each
80 statement code can hold up to 16 bitflags).
82 Keep this list sorted. */
84 GF_ASM_INPUT
= 1 << 0,
85 GF_ASM_VOLATILE
= 1 << 1,
86 GF_CALL_FROM_THUNK
= 1 << 0,
87 GF_CALL_RETURN_SLOT_OPT
= 1 << 1,
88 GF_CALL_TAILCALL
= 1 << 2,
89 GF_CALL_VA_ARG_PACK
= 1 << 3,
90 GF_CALL_NOTHROW
= 1 << 4,
91 GF_CALL_ALLOCA_FOR_VAR
= 1 << 5,
92 GF_CALL_INTERNAL
= 1 << 6,
93 GF_OMP_PARALLEL_COMBINED
= 1 << 0,
94 GF_OMP_FOR_KIND_MASK
= (1 << 2) - 1,
95 GF_OMP_FOR_KIND_FOR
= 0,
96 GF_OMP_FOR_KIND_DISTRIBUTE
= 1,
97 /* Flag for SIMD variants of OMP_FOR kinds. */
98 GF_OMP_FOR_SIMD
= 1 << 1,
99 GF_OMP_FOR_KIND_SIMD
= GF_OMP_FOR_SIMD
| 0,
100 GF_OMP_FOR_KIND_CILKSIMD
= GF_OMP_FOR_SIMD
| 1,
101 GF_OMP_FOR_COMBINED
= 1 << 2,
102 GF_OMP_FOR_COMBINED_INTO
= 1 << 3,
103 GF_OMP_TARGET_KIND_MASK
= (1 << 2) - 1,
104 GF_OMP_TARGET_KIND_REGION
= 0,
105 GF_OMP_TARGET_KIND_DATA
= 1,
106 GF_OMP_TARGET_KIND_UPDATE
= 2,
108 /* True on an GIMPLE_OMP_RETURN statement if the return does not require
109 a thread synchronization via some sort of barrier. The exact barrier
110 that would otherwise be emitted is dependent on the OMP statement with
111 which this return is associated. */
112 GF_OMP_RETURN_NOWAIT
= 1 << 0,
114 GF_OMP_SECTION_LAST
= 1 << 0,
115 GF_OMP_ATOMIC_NEED_VALUE
= 1 << 0,
116 GF_OMP_ATOMIC_SEQ_CST
= 1 << 1,
117 GF_PREDICT_TAKEN
= 1 << 15
120 /* Currently, there are only two types of gimple debug stmt. Others are
121 envisioned, for example, to enable the generation of is_stmt notes
122 in line number information, to mark sequence points, etc. This
123 subcode is to be used to tell them apart. */
124 enum gimple_debug_subcode
{
125 GIMPLE_DEBUG_BIND
= 0,
126 GIMPLE_DEBUG_SOURCE_BIND
= 1
129 /* Masks for selecting a pass local flag (PLF) to work on. These
130 masks are used by gimple_set_plf and gimple_plf. */
136 /* Data structure definitions for GIMPLE tuples. NOTE: word markers
137 are for 64 bit hosts. */
139 struct GTY((desc ("gimple_statement_structure (&%h)"), tag ("GSS_BASE"),
140 chain_next ("%h.next"), variable_size
))
141 gimple_statement_base
144 Main identifying code for a tuple. */
145 ENUM_BITFIELD(gimple_code
) code
: 8;
147 /* Nonzero if a warning should not be emitted on this tuple. */
148 unsigned int no_warning
: 1;
150 /* Nonzero if this tuple has been visited. Passes are responsible
151 for clearing this bit before using it. */
152 unsigned int visited
: 1;
154 /* Nonzero if this tuple represents a non-temporal move. */
155 unsigned int nontemporal_move
: 1;
157 /* Pass local flags. These flags are free for any pass to use as
158 they see fit. Passes should not assume that these flags contain
159 any useful value when the pass starts. Any initial state that
160 the pass requires should be set on entry to the pass. See
161 gimple_set_plf and gimple_plf for usage. */
162 unsigned int plf
: 2;
164 /* Nonzero if this statement has been modified and needs to have its
165 operands rescanned. */
166 unsigned modified
: 1;
168 /* Nonzero if this statement contains volatile operands. */
169 unsigned has_volatile_ops
: 1;
171 /* Padding to get subcode to 16 bit alignment. */
174 /* The SUBCODE field can be used for tuple-specific flags for tuples
175 that do not require subcodes. Note that SUBCODE should be at
176 least as wide as tree codes, as several tuples store tree codes
178 unsigned int subcode
: 16;
180 /* UID of this statement. This is used by passes that want to
181 assign IDs to statements. It must be assigned and used by each
182 pass. By default it should be assumed to contain garbage. */
186 Locus information for debug info. */
189 /* Number of operands in this tuple. */
193 Basic block holding this statement. */
197 Linked lists of gimple statements. The next pointers form
198 a NULL terminated list, the prev pointers are a cyclic list.
199 A gimple statement is hence also a double-ended list of
200 statements, with the pointer itself being the first element,
201 and the prev pointer being the last. */
203 gimple
GTY((skip
)) prev
;
207 /* Base structure for tuples with operands. */
209 /* This gimple subclass has no tag value. */
211 gimple_statement_with_ops_base
: public gimple_statement_base
213 /* [ WORD 1-6 ] : base class */
216 SSA operand vectors. NOTE: It should be possible to
217 amalgamate these vectors with the operand vector OP. However,
218 the SSA operand vectors are organized differently and contain
219 more information (like immediate use chaining). */
220 struct use_optype_d
GTY((skip (""))) *use_ops
;
224 /* Statements that take register operands. */
226 struct GTY((tag("GSS_WITH_OPS")))
227 gimple_statement_with_ops
: public gimple_statement_with_ops_base
229 /* [ WORD 1-7 ] : base class */
232 Operand vector. NOTE! This must always be the last field
233 of this structure. In particular, this means that this
234 structure cannot be embedded inside another one. */
235 tree
GTY((length ("%h.num_ops"))) op
[1];
239 /* Base for statements that take both memory and register operands. */
241 struct GTY((tag("GSS_WITH_MEM_OPS_BASE")))
242 gimple_statement_with_memory_ops_base
: public gimple_statement_with_ops_base
244 /* [ WORD 1-7 ] : base class */
247 Virtual operands for this statement. The GC will pick them
248 up via the ssa_names array. */
249 tree
GTY((skip (""))) vdef
;
250 tree
GTY((skip (""))) vuse
;
254 /* Statements that take both memory and register operands. */
256 struct GTY((tag("GSS_WITH_MEM_OPS")))
257 gimple_statement_with_memory_ops
:
258 public gimple_statement_with_memory_ops_base
260 /* [ WORD 1-9 ] : base class */
263 Operand vector. NOTE! This must always be the last field
264 of this structure. In particular, this means that this
265 structure cannot be embedded inside another one. */
266 tree
GTY((length ("%h.num_ops"))) op
[1];
270 /* Call statements that take both memory and register operands. */
272 struct GTY((tag("GSS_CALL")))
273 gimple_statement_call
: public gimple_statement_with_memory_ops_base
275 /* [ WORD 1-9 ] : base class */
278 struct pt_solution call_used
;
279 struct pt_solution call_clobbered
;
282 union GTY ((desc ("%1.subcode & GF_CALL_INTERNAL"))) {
283 tree
GTY ((tag ("0"))) fntype
;
284 enum internal_fn
GTY ((tag ("GF_CALL_INTERNAL"))) internal_fn
;
288 Operand vector. NOTE! This must always be the last field
289 of this structure. In particular, this means that this
290 structure cannot be embedded inside another one. */
291 tree
GTY((length ("%h.num_ops"))) op
[1];
295 /* OpenMP statements (#pragma omp). */
297 struct GTY((tag("GSS_OMP")))
298 gimple_statement_omp
: public gimple_statement_base
300 /* [ WORD 1-6 ] : base class */
309 struct GTY((tag("GSS_BIND")))
310 gimple_statement_bind
: public gimple_statement_base
312 /* [ WORD 1-6 ] : base class */
315 Variables declared in this scope. */
319 This is different than the BLOCK field in gimple_statement_base,
320 which is analogous to TREE_BLOCK (i.e., the lexical block holding
321 this statement). This field is the equivalent of BIND_EXPR_BLOCK
322 in tree land (i.e., the lexical scope defined by this bind). See
333 struct GTY((tag("GSS_CATCH")))
334 gimple_statement_catch
: public gimple_statement_base
336 /* [ WORD 1-6 ] : base class */
346 /* GIMPLE_EH_FILTER */
348 struct GTY((tag("GSS_EH_FILTER")))
349 gimple_statement_eh_filter
: public gimple_statement_base
351 /* [ WORD 1-6 ] : base class */
364 struct GTY((tag("GSS_EH_ELSE")))
365 gimple_statement_eh_else
: public gimple_statement_base
367 /* [ WORD 1-6 ] : base class */
370 gimple_seq n_body
, e_body
;
373 /* GIMPLE_EH_MUST_NOT_THROW */
375 struct GTY((tag("GSS_EH_MNT")))
376 gimple_statement_eh_mnt
: public gimple_statement_base
378 /* [ WORD 1-6 ] : base class */
380 /* [ WORD 7 ] Abort function decl. */
386 struct GTY((tag("GSS_PHI")))
387 gimple_statement_phi
: public gimple_statement_base
389 /* [ WORD 1-6 ] : base class */
399 struct phi_arg_d
GTY ((length ("%h.nargs"))) args
[1];
403 /* GIMPLE_RESX, GIMPLE_EH_DISPATCH */
405 struct GTY((tag("GSS_EH_CTRL")))
406 gimple_statement_eh_ctrl
: public gimple_statement_base
408 /* [ WORD 1-6 ] : base class */
411 Exception region number. */
415 struct GTY((tag("GSS_EH_CTRL")))
416 gimple_statement_resx
: public gimple_statement_eh_ctrl
418 /* No extra fields; adds invariant:
419 stmt->code == GIMPLE_RESX. */
422 struct GTY((tag("GSS_EH_CTRL")))
423 gimple_statement_eh_dispatch
: public gimple_statement_eh_ctrl
425 /* No extra fields; adds invariant:
426 stmt->code == GIMPLE_EH_DISPATH. */
432 struct GTY((tag("GSS_TRY")))
433 gimple_statement_try
: public gimple_statement_base
435 /* [ WORD 1-6 ] : base class */
438 Expression to evaluate. */
442 Cleanup expression. */
446 /* Kind of GIMPLE_TRY statements. */
447 enum gimple_try_flags
450 GIMPLE_TRY_CATCH
= 1 << 0,
453 GIMPLE_TRY_FINALLY
= 1 << 1,
454 GIMPLE_TRY_KIND
= GIMPLE_TRY_CATCH
| GIMPLE_TRY_FINALLY
,
456 /* Analogous to TRY_CATCH_IS_CLEANUP. */
457 GIMPLE_TRY_CATCH_IS_CLEANUP
= 1 << 2
460 /* GIMPLE_WITH_CLEANUP_EXPR */
462 struct GTY((tag("GSS_WCE")))
463 gimple_statement_wce
: public gimple_statement_base
465 /* [ WORD 1-6 ] : base class */
467 /* Subcode: CLEANUP_EH_ONLY. True if the cleanup should only be
468 executed if an exception is thrown, not on normal exit of its
469 scope. This flag is analogous to the CLEANUP_EH_ONLY flag
473 Cleanup expression. */
480 struct GTY((tag("GSS_ASM")))
481 gimple_statement_asm
: public gimple_statement_with_memory_ops_base
483 /* [ WORD 1-9 ] : base class */
486 __asm__ statement. */
490 Number of inputs, outputs, clobbers, labels. */
497 Operand vector. NOTE! This must always be the last field
498 of this structure. In particular, this means that this
499 structure cannot be embedded inside another one. */
500 tree
GTY((length ("%h.num_ops"))) op
[1];
503 /* GIMPLE_OMP_CRITICAL */
505 struct GTY((tag("GSS_OMP_CRITICAL")))
506 gimple_statement_omp_critical
: public gimple_statement_omp
508 /* [ WORD 1-7 ] : base class */
511 Critical section name. */
516 struct GTY(()) gimple_omp_for_iter
{
517 /* Condition code. */
520 /* Index variable. */
535 struct GTY((tag("GSS_OMP_FOR")))
536 gimple_statement_omp_for
: public gimple_statement_omp
538 /* [ WORD 1-7 ] : base class */
544 Number of elements in iter array. */
548 struct gimple_omp_for_iter
* GTY((length ("%h.collapse"))) iter
;
551 Pre-body evaluated before the loop body begins. */
556 /* GIMPLE_OMP_PARALLEL, GIMPLE_OMP_TARGET */
557 struct GTY((tag("GSS_OMP_PARALLEL_LAYOUT")))
558 gimple_statement_omp_parallel_layout
: public gimple_statement_omp
560 /* [ WORD 1-7 ] : base class */
567 Child function holding the body of the parallel region. */
571 Shared data argument. */
575 /* GIMPLE_OMP_PARALLEL or GIMPLE_TASK */
576 struct GTY((tag("GSS_OMP_PARALLEL_LAYOUT")))
577 gimple_statement_omp_taskreg
: public gimple_statement_omp_parallel_layout
579 /* No extra fields; adds invariant:
580 stmt->code == GIMPLE_OMP_PARALLEL
581 || stmt->code == GIMPLE_OMP_TASK. */
585 /* GIMPLE_OMP_PARALLEL */
586 struct GTY((tag("GSS_OMP_PARALLEL_LAYOUT")))
587 gimple_statement_omp_parallel
: public gimple_statement_omp_taskreg
589 /* No extra fields; adds invariant:
590 stmt->code == GIMPLE_OMP_PARALLEL. */
593 struct GTY((tag("GSS_OMP_PARALLEL_LAYOUT")))
594 gimple_statement_omp_target
: public gimple_statement_omp_parallel_layout
596 /* No extra fields; adds invariant:
597 stmt->code == GIMPLE_OMP_TARGET. */
600 /* GIMPLE_OMP_TASK */
602 struct GTY((tag("GSS_OMP_TASK")))
603 gimple_statement_omp_task
: public gimple_statement_omp_taskreg
605 /* [ WORD 1-10 ] : base class */
608 Child function holding firstprivate initialization if needed. */
612 Size and alignment in bytes of the argument data block. */
618 /* GIMPLE_OMP_SECTION */
619 /* Uses struct gimple_statement_omp. */
622 /* GIMPLE_OMP_SECTIONS */
624 struct GTY((tag("GSS_OMP_SECTIONS")))
625 gimple_statement_omp_sections
: public gimple_statement_omp
627 /* [ WORD 1-7 ] : base class */
633 The control variable used for deciding which of the sections to
638 /* GIMPLE_OMP_CONTINUE.
640 Note: This does not inherit from gimple_statement_omp, because we
641 do not need the body field. */
643 struct GTY((tag("GSS_OMP_CONTINUE")))
644 gimple_statement_omp_continue
: public gimple_statement_base
646 /* [ WORD 1-6 ] : base class */
655 /* GIMPLE_OMP_SINGLE, GIMPLE_OMP_TEAMS */
657 struct GTY((tag("GSS_OMP_SINGLE_LAYOUT")))
658 gimple_statement_omp_single_layout
: public gimple_statement_omp
660 /* [ WORD 1-7 ] : base class */
666 struct GTY((tag("GSS_OMP_SINGLE_LAYOUT")))
667 gimple_statement_omp_single
: public gimple_statement_omp_single_layout
669 /* No extra fields; adds invariant:
670 stmt->code == GIMPLE_OMP_SINGLE. */
673 struct GTY((tag("GSS_OMP_SINGLE_LAYOUT")))
674 gimple_statement_omp_teams
: public gimple_statement_omp_single_layout
676 /* No extra fields; adds invariant:
677 stmt->code == GIMPLE_OMP_TEAMS. */
681 /* GIMPLE_OMP_ATOMIC_LOAD.
682 Note: This is based on gimple_statement_base, not g_s_omp, because g_s_omp
683 contains a sequence, which we don't need here. */
685 struct GTY((tag("GSS_OMP_ATOMIC_LOAD")))
686 gimple_statement_omp_atomic_load
: public gimple_statement_base
688 /* [ WORD 1-6 ] : base class */
694 /* GIMPLE_OMP_ATOMIC_STORE.
695 See note on GIMPLE_OMP_ATOMIC_LOAD. */
697 struct GTY((tag("GSS_OMP_ATOMIC_STORE_LAYOUT")))
698 gimple_statement_omp_atomic_store_layout
: public gimple_statement_base
700 /* [ WORD 1-6 ] : base class */
706 struct GTY((tag("GSS_OMP_ATOMIC_STORE_LAYOUT")))
707 gimple_statement_omp_atomic_store
:
708 public gimple_statement_omp_atomic_store_layout
710 /* No extra fields; adds invariant:
711 stmt->code == GIMPLE_OMP_ATOMIC_STORE. */
714 struct GTY((tag("GSS_OMP_ATOMIC_STORE_LAYOUT")))
715 gimple_statement_omp_return
:
716 public gimple_statement_omp_atomic_store_layout
718 /* No extra fields; adds invariant:
719 stmt->code == GIMPLE_OMP_RETURN. */
722 /* GIMPLE_TRANSACTION. */
724 /* Bits to be stored in the GIMPLE_TRANSACTION subcode. */
726 /* The __transaction_atomic was declared [[outer]] or it is
727 __transaction_relaxed. */
728 #define GTMA_IS_OUTER (1u << 0)
729 #define GTMA_IS_RELAXED (1u << 1)
730 #define GTMA_DECLARATION_MASK (GTMA_IS_OUTER | GTMA_IS_RELAXED)
732 /* The transaction is seen to not have an abort. */
733 #define GTMA_HAVE_ABORT (1u << 2)
734 /* The transaction is seen to have loads or stores. */
735 #define GTMA_HAVE_LOAD (1u << 3)
736 #define GTMA_HAVE_STORE (1u << 4)
737 /* The transaction MAY enter serial irrevocable mode in its dynamic scope. */
738 #define GTMA_MAY_ENTER_IRREVOCABLE (1u << 5)
739 /* The transaction WILL enter serial irrevocable mode.
740 An irrevocable block post-dominates the entire transaction, such
741 that all invocations of the transaction will go serial-irrevocable.
742 In such case, we don't bother instrumenting the transaction, and
743 tell the runtime that it should begin the transaction in
744 serial-irrevocable mode. */
745 #define GTMA_DOES_GO_IRREVOCABLE (1u << 6)
746 /* The transaction contains no instrumentation code whatsover, most
747 likely because it is guaranteed to go irrevocable upon entry. */
748 #define GTMA_HAS_NO_INSTRUMENTATION (1u << 7)
750 struct GTY((tag("GSS_TRANSACTION")))
751 gimple_statement_transaction
: public gimple_statement_with_memory_ops_base
753 /* [ WORD 1-9 ] : base class */
762 #define DEFGSSTRUCT(SYM, STRUCT, HAS_TREE_OP) SYM,
763 enum gimple_statement_structure_enum
{
764 #include "gsstruct.def"
772 is_a_helper
<gimple_statement_asm
*>::test (gimple gs
)
774 return gs
->code
== GIMPLE_ASM
;
780 is_a_helper
<gimple_statement_bind
*>::test (gimple gs
)
782 return gs
->code
== GIMPLE_BIND
;
788 is_a_helper
<gimple_statement_call
*>::test (gimple gs
)
790 return gs
->code
== GIMPLE_CALL
;
796 is_a_helper
<gimple_statement_catch
*>::test (gimple gs
)
798 return gs
->code
== GIMPLE_CATCH
;
804 is_a_helper
<gimple_statement_resx
*>::test (gimple gs
)
806 return gs
->code
== GIMPLE_RESX
;
812 is_a_helper
<gimple_statement_eh_dispatch
*>::test (gimple gs
)
814 return gs
->code
== GIMPLE_EH_DISPATCH
;
820 is_a_helper
<gimple_statement_eh_else
*>::test (gimple gs
)
822 return gs
->code
== GIMPLE_EH_ELSE
;
828 is_a_helper
<gimple_statement_eh_filter
*>::test (gimple gs
)
830 return gs
->code
== GIMPLE_EH_FILTER
;
836 is_a_helper
<gimple_statement_eh_mnt
*>::test (gimple gs
)
838 return gs
->code
== GIMPLE_EH_MUST_NOT_THROW
;
844 is_a_helper
<gimple_statement_omp_atomic_load
*>::test (gimple gs
)
846 return gs
->code
== GIMPLE_OMP_ATOMIC_LOAD
;
852 is_a_helper
<gimple_statement_omp_atomic_store
*>::test (gimple gs
)
854 return gs
->code
== GIMPLE_OMP_ATOMIC_STORE
;
860 is_a_helper
<gimple_statement_omp_return
*>::test (gimple gs
)
862 return gs
->code
== GIMPLE_OMP_RETURN
;
868 is_a_helper
<gimple_statement_omp_continue
*>::test (gimple gs
)
870 return gs
->code
== GIMPLE_OMP_CONTINUE
;
876 is_a_helper
<gimple_statement_omp_critical
*>::test (gimple gs
)
878 return gs
->code
== GIMPLE_OMP_CRITICAL
;
884 is_a_helper
<gimple_statement_omp_for
*>::test (gimple gs
)
886 return gs
->code
== GIMPLE_OMP_FOR
;
892 is_a_helper
<gimple_statement_omp_taskreg
*>::test (gimple gs
)
894 return gs
->code
== GIMPLE_OMP_PARALLEL
|| gs
->code
== GIMPLE_OMP_TASK
;
900 is_a_helper
<gimple_statement_omp_parallel
*>::test (gimple gs
)
902 return gs
->code
== GIMPLE_OMP_PARALLEL
;
908 is_a_helper
<gimple_statement_omp_target
*>::test (gimple gs
)
910 return gs
->code
== GIMPLE_OMP_TARGET
;
916 is_a_helper
<gimple_statement_omp_sections
*>::test (gimple gs
)
918 return gs
->code
== GIMPLE_OMP_SECTIONS
;
924 is_a_helper
<gimple_statement_omp_single
*>::test (gimple gs
)
926 return gs
->code
== GIMPLE_OMP_SINGLE
;
932 is_a_helper
<gimple_statement_omp_teams
*>::test (gimple gs
)
934 return gs
->code
== GIMPLE_OMP_TEAMS
;
940 is_a_helper
<gimple_statement_omp_task
*>::test (gimple gs
)
942 return gs
->code
== GIMPLE_OMP_TASK
;
948 is_a_helper
<gimple_statement_phi
*>::test (gimple gs
)
950 return gs
->code
== GIMPLE_PHI
;
956 is_a_helper
<gimple_statement_transaction
*>::test (gimple gs
)
958 return gs
->code
== GIMPLE_TRANSACTION
;
964 is_a_helper
<gimple_statement_try
*>::test (gimple gs
)
966 return gs
->code
== GIMPLE_TRY
;
972 is_a_helper
<gimple_statement_wce
*>::test (gimple gs
)
974 return gs
->code
== GIMPLE_WITH_CLEANUP_EXPR
;
980 is_a_helper
<const gimple_statement_asm
*>::test (const_gimple gs
)
982 return gs
->code
== GIMPLE_ASM
;
988 is_a_helper
<const gimple_statement_bind
*>::test (const_gimple gs
)
990 return gs
->code
== GIMPLE_BIND
;
996 is_a_helper
<const gimple_statement_call
*>::test (const_gimple gs
)
998 return gs
->code
== GIMPLE_CALL
;
1004 is_a_helper
<const gimple_statement_catch
*>::test (const_gimple gs
)
1006 return gs
->code
== GIMPLE_CATCH
;
1012 is_a_helper
<const gimple_statement_resx
*>::test (const_gimple gs
)
1014 return gs
->code
== GIMPLE_RESX
;
1020 is_a_helper
<const gimple_statement_eh_dispatch
*>::test (const_gimple gs
)
1022 return gs
->code
== GIMPLE_EH_DISPATCH
;
1028 is_a_helper
<const gimple_statement_eh_filter
*>::test (const_gimple gs
)
1030 return gs
->code
== GIMPLE_EH_FILTER
;
1036 is_a_helper
<const gimple_statement_omp_atomic_load
*>::test (const_gimple gs
)
1038 return gs
->code
== GIMPLE_OMP_ATOMIC_LOAD
;
1044 is_a_helper
<const gimple_statement_omp_atomic_store
*>::test (const_gimple gs
)
1046 return gs
->code
== GIMPLE_OMP_ATOMIC_STORE
;
1052 is_a_helper
<const gimple_statement_omp_return
*>::test (const_gimple gs
)
1054 return gs
->code
== GIMPLE_OMP_RETURN
;
1060 is_a_helper
<const gimple_statement_omp_continue
*>::test (const_gimple gs
)
1062 return gs
->code
== GIMPLE_OMP_CONTINUE
;
1068 is_a_helper
<const gimple_statement_omp_critical
*>::test (const_gimple gs
)
1070 return gs
->code
== GIMPLE_OMP_CRITICAL
;
1076 is_a_helper
<const gimple_statement_omp_for
*>::test (const_gimple gs
)
1078 return gs
->code
== GIMPLE_OMP_FOR
;
1084 is_a_helper
<const gimple_statement_omp_taskreg
*>::test (const_gimple gs
)
1086 return gs
->code
== GIMPLE_OMP_PARALLEL
|| gs
->code
== GIMPLE_OMP_TASK
;
1092 is_a_helper
<const gimple_statement_omp_parallel
*>::test (const_gimple gs
)
1094 return gs
->code
== GIMPLE_OMP_PARALLEL
;
1100 is_a_helper
<const gimple_statement_omp_target
*>::test (const_gimple gs
)
1102 return gs
->code
== GIMPLE_OMP_TARGET
;
1108 is_a_helper
<const gimple_statement_omp_sections
*>::test (const_gimple gs
)
1110 return gs
->code
== GIMPLE_OMP_SECTIONS
;
1116 is_a_helper
<const gimple_statement_omp_single
*>::test (const_gimple gs
)
1118 return gs
->code
== GIMPLE_OMP_SINGLE
;
1124 is_a_helper
<const gimple_statement_omp_teams
*>::test (const_gimple gs
)
1126 return gs
->code
== GIMPLE_OMP_TEAMS
;
1132 is_a_helper
<const gimple_statement_omp_task
*>::test (const_gimple gs
)
1134 return gs
->code
== GIMPLE_OMP_TASK
;
1140 is_a_helper
<const gimple_statement_phi
*>::test (const_gimple gs
)
1142 return gs
->code
== GIMPLE_PHI
;
1148 is_a_helper
<const gimple_statement_transaction
*>::test (const_gimple gs
)
1150 return gs
->code
== GIMPLE_TRANSACTION
;
1153 /* Offset in bytes to the location of the operand vector.
1154 Zero if there is no operand vector for this tuple structure. */
1155 extern size_t const gimple_ops_offset_
[];
1157 /* Map GIMPLE codes to GSS codes. */
1158 extern enum gimple_statement_structure_enum
const gss_for_code_
[];
1160 /* This variable holds the currently expanded gimple statement for purposes
1161 of comminucating the profile info to the builtin expanders. */
1162 extern gimple currently_expanding_gimple_stmt
;
1164 #define gimple_alloc(c, n) gimple_alloc_stat (c, n MEM_STAT_INFO)
1165 gimple
gimple_alloc_stat (enum gimple_code
, unsigned MEM_STAT_DECL
);
1166 gimple
gimple_build_return (tree
);
1167 void gimple_call_reset_alias_info (gimple
);
1168 gimple
gimple_build_call_vec (tree
, vec
<tree
> );
1169 gimple
gimple_build_call (tree
, unsigned, ...);
1170 gimple
gimple_build_call_valist (tree
, unsigned, va_list);
1171 gimple
gimple_build_call_internal (enum internal_fn
, unsigned, ...);
1172 gimple
gimple_build_call_internal_vec (enum internal_fn
, vec
<tree
> );
1173 gimple
gimple_build_call_from_tree (tree
);
1174 gimple
gimple_build_assign_stat (tree
, tree MEM_STAT_DECL
);
1175 #define gimple_build_assign(l,r) gimple_build_assign_stat (l, r MEM_STAT_INFO)
1176 gimple
gimple_build_assign_with_ops (enum tree_code
, tree
,
1177 tree
, tree
, tree CXX_MEM_STAT_INFO
);
1178 gimple
gimple_build_assign_with_ops (enum tree_code
, tree
,
1179 tree
, tree CXX_MEM_STAT_INFO
);
1180 gimple
gimple_build_cond (enum tree_code
, tree
, tree
, tree
, tree
);
1181 gimple
gimple_build_cond_from_tree (tree
, tree
, tree
);
1182 void gimple_cond_set_condition_from_tree (gimple
, tree
);
1183 gimple
gimple_build_label (tree label
);
1184 gimple
gimple_build_goto (tree dest
);
1185 gimple
gimple_build_nop (void);
1186 gimple
gimple_build_bind (tree
, gimple_seq
, tree
);
1187 gimple
gimple_build_asm_vec (const char *, vec
<tree
, va_gc
> *,
1188 vec
<tree
, va_gc
> *, vec
<tree
, va_gc
> *,
1189 vec
<tree
, va_gc
> *);
1190 gimple
gimple_build_catch (tree
, gimple_seq
);
1191 gimple
gimple_build_eh_filter (tree
, gimple_seq
);
1192 gimple
gimple_build_eh_must_not_throw (tree
);
1193 gimple
gimple_build_eh_else (gimple_seq
, gimple_seq
);
1194 gimple_statement_try
*gimple_build_try (gimple_seq
, gimple_seq
,
1195 enum gimple_try_flags
);
1196 gimple
gimple_build_wce (gimple_seq
);
1197 gimple
gimple_build_resx (int);
1198 gimple
gimple_build_switch_nlabels (unsigned, tree
, tree
);
1199 gimple
gimple_build_switch (tree
, tree
, vec
<tree
> );
1200 gimple
gimple_build_eh_dispatch (int);
1201 gimple
gimple_build_debug_bind_stat (tree
, tree
, gimple MEM_STAT_DECL
);
1202 #define gimple_build_debug_bind(var,val,stmt) \
1203 gimple_build_debug_bind_stat ((var), (val), (stmt) MEM_STAT_INFO)
1204 gimple
gimple_build_debug_source_bind_stat (tree
, tree
, gimple MEM_STAT_DECL
);
1205 #define gimple_build_debug_source_bind(var,val,stmt) \
1206 gimple_build_debug_source_bind_stat ((var), (val), (stmt) MEM_STAT_INFO)
1207 gimple
gimple_build_omp_critical (gimple_seq
, tree
);
1208 gimple
gimple_build_omp_for (gimple_seq
, int, tree
, size_t, gimple_seq
);
1209 gimple
gimple_build_omp_parallel (gimple_seq
, tree
, tree
, tree
);
1210 gimple
gimple_build_omp_task (gimple_seq
, tree
, tree
, tree
, tree
, tree
, tree
);
1211 gimple
gimple_build_omp_section (gimple_seq
);
1212 gimple
gimple_build_omp_master (gimple_seq
);
1213 gimple
gimple_build_omp_taskgroup (gimple_seq
);
1214 gimple
gimple_build_omp_continue (tree
, tree
);
1215 gimple
gimple_build_omp_ordered (gimple_seq
);
1216 gimple
gimple_build_omp_return (bool);
1217 gimple
gimple_build_omp_sections (gimple_seq
, tree
);
1218 gimple
gimple_build_omp_sections_switch (void);
1219 gimple
gimple_build_omp_single (gimple_seq
, tree
);
1220 gimple
gimple_build_omp_target (gimple_seq
, int, tree
);
1221 gimple
gimple_build_omp_teams (gimple_seq
, tree
);
1222 gimple
gimple_build_omp_atomic_load (tree
, tree
);
1223 gimple
gimple_build_omp_atomic_store (tree
);
1224 gimple
gimple_build_transaction (gimple_seq
, tree
);
1225 gimple
gimple_build_predict (enum br_predictor
, enum prediction
);
1226 extern void gimple_seq_add_stmt (gimple_seq
*, gimple
);
1227 extern void gimple_seq_add_stmt_without_update (gimple_seq
*, gimple
);
1228 void gimple_seq_add_seq (gimple_seq
*, gimple_seq
);
1229 extern void annotate_all_with_location_after (gimple_seq
, gimple_stmt_iterator
,
1231 extern void annotate_all_with_location (gimple_seq
, location_t
);
1232 bool empty_body_p (gimple_seq
);
1233 gimple_seq
gimple_seq_copy (gimple_seq
);
1234 bool gimple_call_same_target_p (const_gimple
, const_gimple
);
1235 int gimple_call_flags (const_gimple
);
1236 int gimple_call_arg_flags (const_gimple
, unsigned);
1237 int gimple_call_return_flags (const_gimple
);
1238 bool gimple_assign_copy_p (gimple
);
1239 bool gimple_assign_ssa_name_copy_p (gimple
);
1240 bool gimple_assign_unary_nop_p (gimple
);
1241 void gimple_set_bb (gimple
, basic_block
);
1242 void gimple_assign_set_rhs_from_tree (gimple_stmt_iterator
*, tree
);
1243 void gimple_assign_set_rhs_with_ops_1 (gimple_stmt_iterator
*, enum tree_code
,
1245 tree
gimple_get_lhs (const_gimple
);
1246 void gimple_set_lhs (gimple
, tree
);
1247 gimple
gimple_copy (gimple
);
1248 bool gimple_has_side_effects (const_gimple
);
1249 bool gimple_could_trap_p_1 (gimple
, bool, bool);
1250 bool gimple_could_trap_p (gimple
);
1251 bool gimple_assign_rhs_could_trap_p (gimple
);
1252 extern void dump_gimple_statistics (void);
1253 unsigned get_gimple_rhs_num_ops (enum tree_code
);
1254 extern tree
canonicalize_cond_expr_cond (tree
);
1255 gimple
gimple_call_copy_skip_args (gimple
, bitmap
);
1256 extern bool gimple_compare_field_offset (tree
, tree
);
1257 extern tree
gimple_unsigned_type (tree
);
1258 extern tree
gimple_signed_type (tree
);
1259 extern alias_set_type
gimple_get_alias_set (tree
);
1260 extern bool gimple_ior_addresses_taken (bitmap
, gimple
);
1261 extern bool gimple_builtin_call_types_compatible_p (const_gimple
, tree
);
1262 extern bool gimple_call_builtin_p (const_gimple
);
1263 extern bool gimple_call_builtin_p (const_gimple
, enum built_in_class
);
1264 extern bool gimple_call_builtin_p (const_gimple
, enum built_in_function
);
1265 extern bool gimple_asm_clobbers_memory_p (const_gimple
);
1266 extern void dump_decl_set (FILE *, bitmap
);
1267 extern bool nonfreeing_call_p (gimple
);
1268 extern bool infer_nonnull_range (gimple
, tree
, bool, bool);
1269 extern void sort_case_labels (vec
<tree
> );
1270 extern void preprocess_case_label_vec_for_gimple (vec
<tree
> , tree
, tree
*);
1271 extern void gimple_seq_set_location (gimple_seq
, location_t
);
1273 /* Formal (expression) temporary table handling: multiple occurrences of
1274 the same scalar expression are evaluated into the same temporary. */
1276 typedef struct gimple_temp_hash_elt
1279 tree temp
; /* Value */
1282 /* Get the number of the next statement uid to be allocated. */
1283 static inline unsigned int
1284 gimple_stmt_max_uid (struct function
*fn
)
1286 return fn
->last_stmt_uid
;
1289 /* Set the number of the next statement uid to be allocated. */
1291 set_gimple_stmt_max_uid (struct function
*fn
, unsigned int maxid
)
1293 fn
->last_stmt_uid
= maxid
;
1296 /* Set the number of the next statement uid to be allocated. */
1297 static inline unsigned int
1298 inc_gimple_stmt_max_uid (struct function
*fn
)
1300 return fn
->last_stmt_uid
++;
1303 /* Return the first node in GIMPLE sequence S. */
1305 static inline gimple_seq_node
1306 gimple_seq_first (gimple_seq s
)
1312 /* Return the first statement in GIMPLE sequence S. */
1314 static inline gimple
1315 gimple_seq_first_stmt (gimple_seq s
)
1317 gimple_seq_node n
= gimple_seq_first (s
);
1322 /* Return the last node in GIMPLE sequence S. */
1324 static inline gimple_seq_node
1325 gimple_seq_last (gimple_seq s
)
1327 return s
? s
->prev
: NULL
;
1331 /* Return the last statement in GIMPLE sequence S. */
1333 static inline gimple
1334 gimple_seq_last_stmt (gimple_seq s
)
1336 gimple_seq_node n
= gimple_seq_last (s
);
1341 /* Set the last node in GIMPLE sequence *PS to LAST. */
1344 gimple_seq_set_last (gimple_seq
*ps
, gimple_seq_node last
)
1350 /* Set the first node in GIMPLE sequence *PS to FIRST. */
1353 gimple_seq_set_first (gimple_seq
*ps
, gimple_seq_node first
)
1359 /* Return true if GIMPLE sequence S is empty. */
1362 gimple_seq_empty_p (gimple_seq s
)
1367 /* Allocate a new sequence and initialize its first element with STMT. */
1369 static inline gimple_seq
1370 gimple_seq_alloc_with_stmt (gimple stmt
)
1372 gimple_seq seq
= NULL
;
1373 gimple_seq_add_stmt (&seq
, stmt
);
1378 /* Returns the sequence of statements in BB. */
1380 static inline gimple_seq
1381 bb_seq (const_basic_block bb
)
1383 return (!(bb
->flags
& BB_RTL
)) ? bb
->il
.gimple
.seq
: NULL
;
1386 static inline gimple_seq
*
1387 bb_seq_addr (basic_block bb
)
1389 return (!(bb
->flags
& BB_RTL
)) ? &bb
->il
.gimple
.seq
: NULL
;
1392 /* Sets the sequence of statements in BB to SEQ. */
1395 set_bb_seq (basic_block bb
, gimple_seq seq
)
1397 gcc_checking_assert (!(bb
->flags
& BB_RTL
));
1398 bb
->il
.gimple
.seq
= seq
;
1402 /* Return the code for GIMPLE statement G. */
1404 static inline enum gimple_code
1405 gimple_code (const_gimple g
)
1411 /* Return the GSS code used by a GIMPLE code. */
1413 static inline enum gimple_statement_structure_enum
1414 gss_for_code (enum gimple_code code
)
1416 gcc_gimple_checking_assert ((unsigned int)code
< LAST_AND_UNUSED_GIMPLE_CODE
);
1417 return gss_for_code_
[code
];
1421 /* Return which GSS code is used by GS. */
1423 static inline enum gimple_statement_structure_enum
1424 gimple_statement_structure (gimple gs
)
1426 return gss_for_code (gimple_code (gs
));
1430 /* Return true if statement G has sub-statements. This is only true for
1431 High GIMPLE statements. */
1434 gimple_has_substatements (gimple g
)
1436 switch (gimple_code (g
))
1440 case GIMPLE_EH_FILTER
:
1441 case GIMPLE_EH_ELSE
:
1443 case GIMPLE_OMP_FOR
:
1444 case GIMPLE_OMP_MASTER
:
1445 case GIMPLE_OMP_TASKGROUP
:
1446 case GIMPLE_OMP_ORDERED
:
1447 case GIMPLE_OMP_SECTION
:
1448 case GIMPLE_OMP_PARALLEL
:
1449 case GIMPLE_OMP_TASK
:
1450 case GIMPLE_OMP_SECTIONS
:
1451 case GIMPLE_OMP_SINGLE
:
1452 case GIMPLE_OMP_TARGET
:
1453 case GIMPLE_OMP_TEAMS
:
1454 case GIMPLE_OMP_CRITICAL
:
1455 case GIMPLE_WITH_CLEANUP_EXPR
:
1456 case GIMPLE_TRANSACTION
:
1465 /* Return the basic block holding statement G. */
1467 static inline basic_block
1468 gimple_bb (const_gimple g
)
1474 /* Return the lexical scope block holding statement G. */
1477 gimple_block (const_gimple g
)
1479 return LOCATION_BLOCK (g
->location
);
1483 /* Set BLOCK to be the lexical scope block holding statement G. */
1486 gimple_set_block (gimple g
, tree block
)
1490 COMBINE_LOCATION_DATA (line_table
, g
->location
, block
);
1492 g
->location
= LOCATION_LOCUS (g
->location
);
1496 /* Return location information for statement G. */
1498 static inline location_t
1499 gimple_location (const_gimple g
)
1504 /* Return location information for statement G if g is not NULL.
1505 Otherwise, UNKNOWN_LOCATION is returned. */
1507 static inline location_t
1508 gimple_location_safe (const_gimple g
)
1510 return g
? gimple_location (g
) : UNKNOWN_LOCATION
;
1513 /* Return pointer to location information for statement G. */
1515 static inline const location_t
*
1516 gimple_location_ptr (const_gimple g
)
1518 return &g
->location
;
1522 /* Set location information for statement G. */
1525 gimple_set_location (gimple g
, location_t location
)
1527 g
->location
= location
;
1531 /* Return true if G contains location information. */
1534 gimple_has_location (const_gimple g
)
1536 return LOCATION_LOCUS (gimple_location (g
)) != UNKNOWN_LOCATION
;
1540 /* Return the file name of the location of STMT. */
1542 static inline const char *
1543 gimple_filename (const_gimple stmt
)
1545 return LOCATION_FILE (gimple_location (stmt
));
1549 /* Return the line number of the location of STMT. */
1552 gimple_lineno (const_gimple stmt
)
1554 return LOCATION_LINE (gimple_location (stmt
));
1558 /* Determine whether SEQ is a singleton. */
1561 gimple_seq_singleton_p (gimple_seq seq
)
1563 return ((gimple_seq_first (seq
) != NULL
)
1564 && (gimple_seq_first (seq
) == gimple_seq_last (seq
)));
1567 /* Return true if no warnings should be emitted for statement STMT. */
1570 gimple_no_warning_p (const_gimple stmt
)
1572 return stmt
->no_warning
;
1575 /* Set the no_warning flag of STMT to NO_WARNING. */
1578 gimple_set_no_warning (gimple stmt
, bool no_warning
)
1580 stmt
->no_warning
= (unsigned) no_warning
;
1583 /* Set the visited status on statement STMT to VISITED_P. */
1586 gimple_set_visited (gimple stmt
, bool visited_p
)
1588 stmt
->visited
= (unsigned) visited_p
;
1592 /* Return the visited status for statement STMT. */
1595 gimple_visited_p (gimple stmt
)
1597 return stmt
->visited
;
1601 /* Set pass local flag PLF on statement STMT to VAL_P. */
1604 gimple_set_plf (gimple stmt
, enum plf_mask plf
, bool val_p
)
1607 stmt
->plf
|= (unsigned int) plf
;
1609 stmt
->plf
&= ~((unsigned int) plf
);
1613 /* Return the value of pass local flag PLF on statement STMT. */
1615 static inline unsigned int
1616 gimple_plf (gimple stmt
, enum plf_mask plf
)
1618 return stmt
->plf
& ((unsigned int) plf
);
1622 /* Set the UID of statement. */
1625 gimple_set_uid (gimple g
, unsigned uid
)
1631 /* Return the UID of statement. */
1633 static inline unsigned
1634 gimple_uid (const_gimple g
)
1640 /* Make statement G a singleton sequence. */
1643 gimple_init_singleton (gimple g
)
1650 /* Return true if GIMPLE statement G has register or memory operands. */
1653 gimple_has_ops (const_gimple g
)
1655 return gimple_code (g
) >= GIMPLE_COND
&& gimple_code (g
) <= GIMPLE_RETURN
;
1661 is_a_helper
<const gimple_statement_with_ops
*>::test (const_gimple gs
)
1663 return gimple_has_ops (gs
);
1669 is_a_helper
<gimple_statement_with_ops
*>::test (gimple gs
)
1671 return gimple_has_ops (gs
);
1674 /* Return true if GIMPLE statement G has memory operands. */
1677 gimple_has_mem_ops (const_gimple g
)
1679 return gimple_code (g
) >= GIMPLE_ASSIGN
&& gimple_code (g
) <= GIMPLE_RETURN
;
1685 is_a_helper
<const gimple_statement_with_memory_ops
*>::test (const_gimple gs
)
1687 return gimple_has_mem_ops (gs
);
1693 is_a_helper
<gimple_statement_with_memory_ops
*>::test (gimple gs
)
1695 return gimple_has_mem_ops (gs
);
1698 /* Return the set of USE operands for statement G. */
1700 static inline struct use_optype_d
*
1701 gimple_use_ops (const_gimple g
)
1703 const gimple_statement_with_ops
*ops_stmt
=
1704 dyn_cast
<const gimple_statement_with_ops
*> (g
);
1707 return ops_stmt
->use_ops
;
1711 /* Set USE to be the set of USE operands for statement G. */
1714 gimple_set_use_ops (gimple g
, struct use_optype_d
*use
)
1716 gimple_statement_with_ops
*ops_stmt
=
1717 as_a
<gimple_statement_with_ops
*> (g
);
1718 ops_stmt
->use_ops
= use
;
1722 /* Return the single VUSE operand of the statement G. */
1725 gimple_vuse (const_gimple g
)
1727 const gimple_statement_with_memory_ops
*mem_ops_stmt
=
1728 dyn_cast
<const gimple_statement_with_memory_ops
*> (g
);
1731 return mem_ops_stmt
->vuse
;
1734 /* Return the single VDEF operand of the statement G. */
1737 gimple_vdef (const_gimple g
)
1739 const gimple_statement_with_memory_ops
*mem_ops_stmt
=
1740 dyn_cast
<const gimple_statement_with_memory_ops
*> (g
);
1743 return mem_ops_stmt
->vdef
;
1746 /* Return the single VUSE operand of the statement G. */
1748 static inline tree
*
1749 gimple_vuse_ptr (gimple g
)
1751 gimple_statement_with_memory_ops
*mem_ops_stmt
=
1752 dyn_cast
<gimple_statement_with_memory_ops
*> (g
);
1755 return &mem_ops_stmt
->vuse
;
1758 /* Return the single VDEF operand of the statement G. */
1760 static inline tree
*
1761 gimple_vdef_ptr (gimple g
)
1763 gimple_statement_with_memory_ops
*mem_ops_stmt
=
1764 dyn_cast
<gimple_statement_with_memory_ops
*> (g
);
1767 return &mem_ops_stmt
->vdef
;
1770 /* Set the single VUSE operand of the statement G. */
1773 gimple_set_vuse (gimple g
, tree vuse
)
1775 gimple_statement_with_memory_ops
*mem_ops_stmt
=
1776 as_a
<gimple_statement_with_memory_ops
*> (g
);
1777 mem_ops_stmt
->vuse
= vuse
;
1780 /* Set the single VDEF operand of the statement G. */
1783 gimple_set_vdef (gimple g
, tree vdef
)
1785 gimple_statement_with_memory_ops
*mem_ops_stmt
=
1786 as_a
<gimple_statement_with_memory_ops
*> (g
);
1787 mem_ops_stmt
->vdef
= vdef
;
1791 /* Return true if statement G has operands and the modified field has
1795 gimple_modified_p (const_gimple g
)
1797 return (gimple_has_ops (g
)) ? (bool) g
->modified
: false;
1801 /* Set the MODIFIED flag to MODIFIEDP, iff the gimple statement G has
1802 a MODIFIED field. */
1805 gimple_set_modified (gimple s
, bool modifiedp
)
1807 if (gimple_has_ops (s
))
1808 s
->modified
= (unsigned) modifiedp
;
1812 /* Return the tree code for the expression computed by STMT. This is
1813 only valid for GIMPLE_COND, GIMPLE_CALL and GIMPLE_ASSIGN. For
1814 GIMPLE_CALL, return CALL_EXPR as the expression code for
1815 consistency. This is useful when the caller needs to deal with the
1816 three kinds of computation that GIMPLE supports. */
1818 static inline enum tree_code
1819 gimple_expr_code (const_gimple stmt
)
1821 enum gimple_code code
= gimple_code (stmt
);
1822 if (code
== GIMPLE_ASSIGN
|| code
== GIMPLE_COND
)
1823 return (enum tree_code
) stmt
->subcode
;
1826 gcc_gimple_checking_assert (code
== GIMPLE_CALL
);
1832 /* Return true if statement STMT contains volatile operands. */
1835 gimple_has_volatile_ops (const_gimple stmt
)
1837 if (gimple_has_mem_ops (stmt
))
1838 return stmt
->has_volatile_ops
;
1844 /* Set the HAS_VOLATILE_OPS flag to VOLATILEP. */
1847 gimple_set_has_volatile_ops (gimple stmt
, bool volatilep
)
1849 if (gimple_has_mem_ops (stmt
))
1850 stmt
->has_volatile_ops
= (unsigned) volatilep
;
1853 /* Return true if STMT is in a transaction. */
1856 gimple_in_transaction (gimple stmt
)
1858 return bb_in_transaction (gimple_bb (stmt
));
1861 /* Return true if statement STMT may access memory. */
1864 gimple_references_memory_p (gimple stmt
)
1866 return gimple_has_mem_ops (stmt
) && gimple_vuse (stmt
);
1870 /* Return the subcode for OMP statement S. */
1872 static inline unsigned
1873 gimple_omp_subcode (const_gimple s
)
1875 gcc_gimple_checking_assert (gimple_code (s
) >= GIMPLE_OMP_ATOMIC_LOAD
1876 && gimple_code (s
) <= GIMPLE_OMP_TEAMS
);
1880 /* Set the subcode for OMP statement S to SUBCODE. */
1883 gimple_omp_set_subcode (gimple s
, unsigned int subcode
)
1885 /* We only have 16 bits for the subcode. Assert that we are not
1887 gcc_gimple_checking_assert (subcode
< (1 << 16));
1888 s
->subcode
= subcode
;
1891 /* Set the nowait flag on OMP_RETURN statement S. */
1894 gimple_omp_return_set_nowait (gimple s
)
1896 GIMPLE_CHECK (s
, GIMPLE_OMP_RETURN
);
1897 s
->subcode
|= GF_OMP_RETURN_NOWAIT
;
1901 /* Return true if OMP return statement G has the GF_OMP_RETURN_NOWAIT
1905 gimple_omp_return_nowait_p (const_gimple g
)
1907 GIMPLE_CHECK (g
, GIMPLE_OMP_RETURN
);
1908 return (gimple_omp_subcode (g
) & GF_OMP_RETURN_NOWAIT
) != 0;
1912 /* Set the LHS of OMP return. */
1915 gimple_omp_return_set_lhs (gimple g
, tree lhs
)
1917 gimple_statement_omp_return
*omp_return_stmt
=
1918 as_a
<gimple_statement_omp_return
*> (g
);
1919 omp_return_stmt
->val
= lhs
;
1923 /* Get the LHS of OMP return. */
1926 gimple_omp_return_lhs (const_gimple g
)
1928 const gimple_statement_omp_return
*omp_return_stmt
=
1929 as_a
<const gimple_statement_omp_return
*> (g
);
1930 return omp_return_stmt
->val
;
1934 /* Return a pointer to the LHS of OMP return. */
1936 static inline tree
*
1937 gimple_omp_return_lhs_ptr (gimple g
)
1939 gimple_statement_omp_return
*omp_return_stmt
=
1940 as_a
<gimple_statement_omp_return
*> (g
);
1941 return &omp_return_stmt
->val
;
1945 /* Return true if OMP section statement G has the GF_OMP_SECTION_LAST
1949 gimple_omp_section_last_p (const_gimple g
)
1951 GIMPLE_CHECK (g
, GIMPLE_OMP_SECTION
);
1952 return (gimple_omp_subcode (g
) & GF_OMP_SECTION_LAST
) != 0;
1956 /* Set the GF_OMP_SECTION_LAST flag on G. */
1959 gimple_omp_section_set_last (gimple g
)
1961 GIMPLE_CHECK (g
, GIMPLE_OMP_SECTION
);
1962 g
->subcode
|= GF_OMP_SECTION_LAST
;
1966 /* Return true if OMP parallel statement G has the
1967 GF_OMP_PARALLEL_COMBINED flag set. */
1970 gimple_omp_parallel_combined_p (const_gimple g
)
1972 GIMPLE_CHECK (g
, GIMPLE_OMP_PARALLEL
);
1973 return (gimple_omp_subcode (g
) & GF_OMP_PARALLEL_COMBINED
) != 0;
1977 /* Set the GF_OMP_PARALLEL_COMBINED field in G depending on the boolean
1978 value of COMBINED_P. */
1981 gimple_omp_parallel_set_combined_p (gimple g
, bool combined_p
)
1983 GIMPLE_CHECK (g
, GIMPLE_OMP_PARALLEL
);
1985 g
->subcode
|= GF_OMP_PARALLEL_COMBINED
;
1987 g
->subcode
&= ~GF_OMP_PARALLEL_COMBINED
;
1991 /* Return true if OMP atomic load/store statement G has the
1992 GF_OMP_ATOMIC_NEED_VALUE flag set. */
1995 gimple_omp_atomic_need_value_p (const_gimple g
)
1997 if (gimple_code (g
) != GIMPLE_OMP_ATOMIC_LOAD
)
1998 GIMPLE_CHECK (g
, GIMPLE_OMP_ATOMIC_STORE
);
1999 return (gimple_omp_subcode (g
) & GF_OMP_ATOMIC_NEED_VALUE
) != 0;
2003 /* Set the GF_OMP_ATOMIC_NEED_VALUE flag on G. */
2006 gimple_omp_atomic_set_need_value (gimple g
)
2008 if (gimple_code (g
) != GIMPLE_OMP_ATOMIC_LOAD
)
2009 GIMPLE_CHECK (g
, GIMPLE_OMP_ATOMIC_STORE
);
2010 g
->subcode
|= GF_OMP_ATOMIC_NEED_VALUE
;
2014 /* Return true if OMP atomic load/store statement G has the
2015 GF_OMP_ATOMIC_SEQ_CST flag set. */
2018 gimple_omp_atomic_seq_cst_p (const_gimple g
)
2020 if (gimple_code (g
) != GIMPLE_OMP_ATOMIC_LOAD
)
2021 GIMPLE_CHECK (g
, GIMPLE_OMP_ATOMIC_STORE
);
2022 return (gimple_omp_subcode (g
) & GF_OMP_ATOMIC_SEQ_CST
) != 0;
2026 /* Set the GF_OMP_ATOMIC_SEQ_CST flag on G. */
2029 gimple_omp_atomic_set_seq_cst (gimple g
)
2031 if (gimple_code (g
) != GIMPLE_OMP_ATOMIC_LOAD
)
2032 GIMPLE_CHECK (g
, GIMPLE_OMP_ATOMIC_STORE
);
2033 g
->subcode
|= GF_OMP_ATOMIC_SEQ_CST
;
2037 /* Return the number of operands for statement GS. */
2039 static inline unsigned
2040 gimple_num_ops (const_gimple gs
)
2046 /* Set the number of operands for statement GS. */
2049 gimple_set_num_ops (gimple gs
, unsigned num_ops
)
2051 gs
->num_ops
= num_ops
;
2055 /* Return the array of operands for statement GS. */
2057 static inline tree
*
2058 gimple_ops (gimple gs
)
2062 /* All the tuples have their operand vector at the very bottom
2063 of the structure. Note that those structures that do not
2064 have an operand vector have a zero offset. */
2065 off
= gimple_ops_offset_
[gimple_statement_structure (gs
)];
2066 gcc_gimple_checking_assert (off
!= 0);
2068 return (tree
*) ((char *) gs
+ off
);
2072 /* Return operand I for statement GS. */
2075 gimple_op (const_gimple gs
, unsigned i
)
2077 if (gimple_has_ops (gs
))
2079 gcc_gimple_checking_assert (i
< gimple_num_ops (gs
));
2080 return gimple_ops (CONST_CAST_GIMPLE (gs
))[i
];
2086 /* Return a pointer to operand I for statement GS. */
2088 static inline tree
*
2089 gimple_op_ptr (const_gimple gs
, unsigned i
)
2091 if (gimple_has_ops (gs
))
2093 gcc_gimple_checking_assert (i
< gimple_num_ops (gs
));
2094 return gimple_ops (CONST_CAST_GIMPLE (gs
)) + i
;
2100 /* Set operand I of statement GS to OP. */
2103 gimple_set_op (gimple gs
, unsigned i
, tree op
)
2105 gcc_gimple_checking_assert (gimple_has_ops (gs
) && i
< gimple_num_ops (gs
));
2107 /* Note. It may be tempting to assert that OP matches
2108 is_gimple_operand, but that would be wrong. Different tuples
2109 accept slightly different sets of tree operands. Each caller
2110 should perform its own validation. */
2111 gimple_ops (gs
)[i
] = op
;
2114 /* Return true if GS is a GIMPLE_ASSIGN. */
2117 is_gimple_assign (const_gimple gs
)
2119 return gimple_code (gs
) == GIMPLE_ASSIGN
;
2122 /* Determine if expression CODE is one of the valid expressions that can
2123 be used on the RHS of GIMPLE assignments. */
2125 static inline enum gimple_rhs_class
2126 get_gimple_rhs_class (enum tree_code code
)
2128 return (enum gimple_rhs_class
) gimple_rhs_class_table
[(int) code
];
2131 /* Return the LHS of assignment statement GS. */
2134 gimple_assign_lhs (const_gimple gs
)
2136 GIMPLE_CHECK (gs
, GIMPLE_ASSIGN
);
2137 return gimple_op (gs
, 0);
2141 /* Return a pointer to the LHS of assignment statement GS. */
2143 static inline tree
*
2144 gimple_assign_lhs_ptr (const_gimple gs
)
2146 GIMPLE_CHECK (gs
, GIMPLE_ASSIGN
);
2147 return gimple_op_ptr (gs
, 0);
2151 /* Set LHS to be the LHS operand of assignment statement GS. */
2154 gimple_assign_set_lhs (gimple gs
, tree lhs
)
2156 GIMPLE_CHECK (gs
, GIMPLE_ASSIGN
);
2157 gimple_set_op (gs
, 0, lhs
);
2159 if (lhs
&& TREE_CODE (lhs
) == SSA_NAME
)
2160 SSA_NAME_DEF_STMT (lhs
) = gs
;
2164 /* Return the first operand on the RHS of assignment statement GS. */
2167 gimple_assign_rhs1 (const_gimple gs
)
2169 GIMPLE_CHECK (gs
, GIMPLE_ASSIGN
);
2170 return gimple_op (gs
, 1);
2174 /* Return a pointer to the first operand on the RHS of assignment
2177 static inline tree
*
2178 gimple_assign_rhs1_ptr (const_gimple gs
)
2180 GIMPLE_CHECK (gs
, GIMPLE_ASSIGN
);
2181 return gimple_op_ptr (gs
, 1);
2184 /* Set RHS to be the first operand on the RHS of assignment statement GS. */
2187 gimple_assign_set_rhs1 (gimple gs
, tree rhs
)
2189 GIMPLE_CHECK (gs
, GIMPLE_ASSIGN
);
2191 gimple_set_op (gs
, 1, rhs
);
2195 /* Return the second operand on the RHS of assignment statement GS.
2196 If GS does not have two operands, NULL is returned instead. */
2199 gimple_assign_rhs2 (const_gimple gs
)
2201 GIMPLE_CHECK (gs
, GIMPLE_ASSIGN
);
2203 if (gimple_num_ops (gs
) >= 3)
2204 return gimple_op (gs
, 2);
2210 /* Return a pointer to the second operand on the RHS of assignment
2213 static inline tree
*
2214 gimple_assign_rhs2_ptr (const_gimple gs
)
2216 GIMPLE_CHECK (gs
, GIMPLE_ASSIGN
);
2217 return gimple_op_ptr (gs
, 2);
2221 /* Set RHS to be the second operand on the RHS of assignment statement GS. */
2224 gimple_assign_set_rhs2 (gimple gs
, tree rhs
)
2226 GIMPLE_CHECK (gs
, GIMPLE_ASSIGN
);
2228 gimple_set_op (gs
, 2, rhs
);
2231 /* Return the third operand on the RHS of assignment statement GS.
2232 If GS does not have two operands, NULL is returned instead. */
2235 gimple_assign_rhs3 (const_gimple gs
)
2237 GIMPLE_CHECK (gs
, GIMPLE_ASSIGN
);
2239 if (gimple_num_ops (gs
) >= 4)
2240 return gimple_op (gs
, 3);
2245 /* Return a pointer to the third operand on the RHS of assignment
2248 static inline tree
*
2249 gimple_assign_rhs3_ptr (const_gimple gs
)
2251 GIMPLE_CHECK (gs
, GIMPLE_ASSIGN
);
2252 return gimple_op_ptr (gs
, 3);
2256 /* Set RHS to be the third operand on the RHS of assignment statement GS. */
2259 gimple_assign_set_rhs3 (gimple gs
, tree rhs
)
2261 GIMPLE_CHECK (gs
, GIMPLE_ASSIGN
);
2263 gimple_set_op (gs
, 3, rhs
);
2266 /* A wrapper around gimple_assign_set_rhs_with_ops_1, for callers which expect
2267 to see only a maximum of two operands. */
2270 gimple_assign_set_rhs_with_ops (gimple_stmt_iterator
*gsi
, enum tree_code code
,
2273 gimple_assign_set_rhs_with_ops_1 (gsi
, code
, op1
, op2
, NULL
);
2276 /* Returns true if GS is a nontemporal move. */
2279 gimple_assign_nontemporal_move_p (const_gimple gs
)
2281 GIMPLE_CHECK (gs
, GIMPLE_ASSIGN
);
2282 return gs
->nontemporal_move
;
2285 /* Sets nontemporal move flag of GS to NONTEMPORAL. */
2288 gimple_assign_set_nontemporal_move (gimple gs
, bool nontemporal
)
2290 GIMPLE_CHECK (gs
, GIMPLE_ASSIGN
);
2291 gs
->nontemporal_move
= nontemporal
;
2295 /* Return the code of the expression computed on the rhs of assignment
2296 statement GS. In case that the RHS is a single object, returns the
2297 tree code of the object. */
2299 static inline enum tree_code
2300 gimple_assign_rhs_code (const_gimple gs
)
2302 enum tree_code code
;
2303 GIMPLE_CHECK (gs
, GIMPLE_ASSIGN
);
2305 code
= (enum tree_code
) gs
->subcode
;
2306 /* While we initially set subcode to the TREE_CODE of the rhs for
2307 GIMPLE_SINGLE_RHS assigns we do not update that subcode to stay
2308 in sync when we rewrite stmts into SSA form or do SSA propagations. */
2309 if (get_gimple_rhs_class (code
) == GIMPLE_SINGLE_RHS
)
2310 code
= TREE_CODE (gimple_assign_rhs1 (gs
));
2316 /* Set CODE to be the code for the expression computed on the RHS of
2320 gimple_assign_set_rhs_code (gimple s
, enum tree_code code
)
2322 GIMPLE_CHECK (s
, GIMPLE_ASSIGN
);
2327 /* Return the gimple rhs class of the code of the expression computed on
2328 the rhs of assignment statement GS.
2329 This will never return GIMPLE_INVALID_RHS. */
2331 static inline enum gimple_rhs_class
2332 gimple_assign_rhs_class (const_gimple gs
)
2334 return get_gimple_rhs_class (gimple_assign_rhs_code (gs
));
2337 /* Return true if GS is an assignment with a singleton RHS, i.e.,
2338 there is no operator associated with the assignment itself.
2339 Unlike gimple_assign_copy_p, this predicate returns true for
2340 any RHS operand, including those that perform an operation
2341 and do not have the semantics of a copy, such as COND_EXPR. */
2344 gimple_assign_single_p (const_gimple gs
)
2346 return (is_gimple_assign (gs
)
2347 && gimple_assign_rhs_class (gs
) == GIMPLE_SINGLE_RHS
);
2350 /* Return true if GS performs a store to its lhs. */
2353 gimple_store_p (const_gimple gs
)
2355 tree lhs
= gimple_get_lhs (gs
);
2356 return lhs
&& !is_gimple_reg (lhs
);
2359 /* Return true if GS is an assignment that loads from its rhs1. */
2362 gimple_assign_load_p (const_gimple gs
)
2365 if (!gimple_assign_single_p (gs
))
2367 rhs
= gimple_assign_rhs1 (gs
);
2368 if (TREE_CODE (rhs
) == WITH_SIZE_EXPR
)
2370 rhs
= get_base_address (rhs
);
2371 return (DECL_P (rhs
)
2372 || TREE_CODE (rhs
) == MEM_REF
|| TREE_CODE (rhs
) == TARGET_MEM_REF
);
2376 /* Return true if S is a type-cast assignment. */
2379 gimple_assign_cast_p (const_gimple s
)
2381 if (is_gimple_assign (s
))
2383 enum tree_code sc
= gimple_assign_rhs_code (s
);
2384 return CONVERT_EXPR_CODE_P (sc
)
2385 || sc
== VIEW_CONVERT_EXPR
2386 || sc
== FIX_TRUNC_EXPR
;
2392 /* Return true if S is a clobber statement. */
2395 gimple_clobber_p (const_gimple s
)
2397 return gimple_assign_single_p (s
)
2398 && TREE_CLOBBER_P (gimple_assign_rhs1 (s
));
2401 /* Return true if GS is a GIMPLE_CALL. */
2404 is_gimple_call (const_gimple gs
)
2406 return gimple_code (gs
) == GIMPLE_CALL
;
2409 /* Return the LHS of call statement GS. */
2412 gimple_call_lhs (const_gimple gs
)
2414 GIMPLE_CHECK (gs
, GIMPLE_CALL
);
2415 return gimple_op (gs
, 0);
2419 /* Return a pointer to the LHS of call statement GS. */
2421 static inline tree
*
2422 gimple_call_lhs_ptr (const_gimple gs
)
2424 GIMPLE_CHECK (gs
, GIMPLE_CALL
);
2425 return gimple_op_ptr (gs
, 0);
2429 /* Set LHS to be the LHS operand of call statement GS. */
2432 gimple_call_set_lhs (gimple gs
, tree lhs
)
2434 GIMPLE_CHECK (gs
, GIMPLE_CALL
);
2435 gimple_set_op (gs
, 0, lhs
);
2436 if (lhs
&& TREE_CODE (lhs
) == SSA_NAME
)
2437 SSA_NAME_DEF_STMT (lhs
) = gs
;
2441 /* Return true if call GS calls an internal-only function, as enumerated
2445 gimple_call_internal_p (const_gimple gs
)
2447 GIMPLE_CHECK (gs
, GIMPLE_CALL
);
2448 return (gs
->subcode
& GF_CALL_INTERNAL
) != 0;
2452 /* Return the target of internal call GS. */
2454 static inline enum internal_fn
2455 gimple_call_internal_fn (const_gimple gs
)
2457 gcc_gimple_checking_assert (gimple_call_internal_p (gs
));
2458 return static_cast <const gimple_statement_call
*> (gs
)->u
.internal_fn
;
2462 /* Return the function type of the function called by GS. */
2465 gimple_call_fntype (const_gimple gs
)
2467 const gimple_statement_call
*call_stmt
=
2468 as_a
<const gimple_statement_call
*> (gs
);
2469 if (gimple_call_internal_p (gs
))
2471 return call_stmt
->u
.fntype
;
2474 /* Set the type of the function called by GS to FNTYPE. */
2477 gimple_call_set_fntype (gimple gs
, tree fntype
)
2479 gimple_statement_call
*call_stmt
= as_a
<gimple_statement_call
*> (gs
);
2480 gcc_gimple_checking_assert (!gimple_call_internal_p (gs
));
2481 call_stmt
->u
.fntype
= fntype
;
2485 /* Return the tree node representing the function called by call
2489 gimple_call_fn (const_gimple gs
)
2491 GIMPLE_CHECK (gs
, GIMPLE_CALL
);
2492 return gimple_op (gs
, 1);
2495 /* Return a pointer to the tree node representing the function called by call
2498 static inline tree
*
2499 gimple_call_fn_ptr (const_gimple gs
)
2501 GIMPLE_CHECK (gs
, GIMPLE_CALL
);
2502 return gimple_op_ptr (gs
, 1);
2506 /* Set FN to be the function called by call statement GS. */
2509 gimple_call_set_fn (gimple gs
, tree fn
)
2511 GIMPLE_CHECK (gs
, GIMPLE_CALL
);
2512 gcc_gimple_checking_assert (!gimple_call_internal_p (gs
));
2513 gimple_set_op (gs
, 1, fn
);
2517 /* Set FNDECL to be the function called by call statement GS. */
2520 gimple_call_set_fndecl (gimple gs
, tree decl
)
2522 GIMPLE_CHECK (gs
, GIMPLE_CALL
);
2523 gcc_gimple_checking_assert (!gimple_call_internal_p (gs
));
2524 gimple_set_op (gs
, 1, build_fold_addr_expr_loc (gimple_location (gs
), decl
));
2528 /* Set internal function FN to be the function called by call statement GS. */
2531 gimple_call_set_internal_fn (gimple gs
, enum internal_fn fn
)
2533 gimple_statement_call
*call_stmt
= as_a
<gimple_statement_call
*> (gs
);
2534 gcc_gimple_checking_assert (gimple_call_internal_p (gs
));
2535 call_stmt
->u
.internal_fn
= fn
;
2539 /* If a given GIMPLE_CALL's callee is a FUNCTION_DECL, return it.
2540 Otherwise return NULL. This function is analogous to
2541 get_callee_fndecl in tree land. */
2544 gimple_call_fndecl (const_gimple gs
)
2546 return gimple_call_addr_fndecl (gimple_call_fn (gs
));
2550 /* Return the type returned by call statement GS. */
2553 gimple_call_return_type (const_gimple gs
)
2555 tree type
= gimple_call_fntype (gs
);
2557 if (type
== NULL_TREE
)
2558 return TREE_TYPE (gimple_call_lhs (gs
));
2560 /* The type returned by a function is the type of its
2562 return TREE_TYPE (type
);
2566 /* Return the static chain for call statement GS. */
2569 gimple_call_chain (const_gimple gs
)
2571 GIMPLE_CHECK (gs
, GIMPLE_CALL
);
2572 return gimple_op (gs
, 2);
2576 /* Return a pointer to the static chain for call statement GS. */
2578 static inline tree
*
2579 gimple_call_chain_ptr (const_gimple gs
)
2581 GIMPLE_CHECK (gs
, GIMPLE_CALL
);
2582 return gimple_op_ptr (gs
, 2);
2585 /* Set CHAIN to be the static chain for call statement GS. */
2588 gimple_call_set_chain (gimple gs
, tree chain
)
2590 GIMPLE_CHECK (gs
, GIMPLE_CALL
);
2592 gimple_set_op (gs
, 2, chain
);
2596 /* Return the number of arguments used by call statement GS. */
2598 static inline unsigned
2599 gimple_call_num_args (const_gimple gs
)
2602 GIMPLE_CHECK (gs
, GIMPLE_CALL
);
2603 num_ops
= gimple_num_ops (gs
);
2608 /* Return the argument at position INDEX for call statement GS. */
2611 gimple_call_arg (const_gimple gs
, unsigned index
)
2613 GIMPLE_CHECK (gs
, GIMPLE_CALL
);
2614 return gimple_op (gs
, index
+ 3);
2618 /* Return a pointer to the argument at position INDEX for call
2621 static inline tree
*
2622 gimple_call_arg_ptr (const_gimple gs
, unsigned index
)
2624 GIMPLE_CHECK (gs
, GIMPLE_CALL
);
2625 return gimple_op_ptr (gs
, index
+ 3);
2629 /* Set ARG to be the argument at position INDEX for call statement GS. */
2632 gimple_call_set_arg (gimple gs
, unsigned index
, tree arg
)
2634 GIMPLE_CHECK (gs
, GIMPLE_CALL
);
2635 gimple_set_op (gs
, index
+ 3, arg
);
2639 /* If TAIL_P is true, mark call statement S as being a tail call
2640 (i.e., a call just before the exit of a function). These calls are
2641 candidate for tail call optimization. */
2644 gimple_call_set_tail (gimple s
, bool tail_p
)
2646 GIMPLE_CHECK (s
, GIMPLE_CALL
);
2648 s
->subcode
|= GF_CALL_TAILCALL
;
2650 s
->subcode
&= ~GF_CALL_TAILCALL
;
2654 /* Return true if GIMPLE_CALL S is marked as a tail call. */
2657 gimple_call_tail_p (gimple s
)
2659 GIMPLE_CHECK (s
, GIMPLE_CALL
);
2660 return (s
->subcode
& GF_CALL_TAILCALL
) != 0;
2664 /* If RETURN_SLOT_OPT_P is true mark GIMPLE_CALL S as valid for return
2665 slot optimization. This transformation uses the target of the call
2666 expansion as the return slot for calls that return in memory. */
2669 gimple_call_set_return_slot_opt (gimple s
, bool return_slot_opt_p
)
2671 GIMPLE_CHECK (s
, GIMPLE_CALL
);
2672 if (return_slot_opt_p
)
2673 s
->subcode
|= GF_CALL_RETURN_SLOT_OPT
;
2675 s
->subcode
&= ~GF_CALL_RETURN_SLOT_OPT
;
2679 /* Return true if S is marked for return slot optimization. */
2682 gimple_call_return_slot_opt_p (gimple s
)
2684 GIMPLE_CHECK (s
, GIMPLE_CALL
);
2685 return (s
->subcode
& GF_CALL_RETURN_SLOT_OPT
) != 0;
2689 /* If FROM_THUNK_P is true, mark GIMPLE_CALL S as being the jump from a
2690 thunk to the thunked-to function. */
2693 gimple_call_set_from_thunk (gimple s
, bool from_thunk_p
)
2695 GIMPLE_CHECK (s
, GIMPLE_CALL
);
2697 s
->subcode
|= GF_CALL_FROM_THUNK
;
2699 s
->subcode
&= ~GF_CALL_FROM_THUNK
;
2703 /* Return true if GIMPLE_CALL S is a jump from a thunk. */
2706 gimple_call_from_thunk_p (gimple s
)
2708 GIMPLE_CHECK (s
, GIMPLE_CALL
);
2709 return (s
->subcode
& GF_CALL_FROM_THUNK
) != 0;
2713 /* If PASS_ARG_PACK_P is true, GIMPLE_CALL S is a stdarg call that needs the
2714 argument pack in its argument list. */
2717 gimple_call_set_va_arg_pack (gimple s
, bool pass_arg_pack_p
)
2719 GIMPLE_CHECK (s
, GIMPLE_CALL
);
2720 if (pass_arg_pack_p
)
2721 s
->subcode
|= GF_CALL_VA_ARG_PACK
;
2723 s
->subcode
&= ~GF_CALL_VA_ARG_PACK
;
2727 /* Return true if GIMPLE_CALL S is a stdarg call that needs the
2728 argument pack in its argument list. */
2731 gimple_call_va_arg_pack_p (gimple s
)
2733 GIMPLE_CHECK (s
, GIMPLE_CALL
);
2734 return (s
->subcode
& GF_CALL_VA_ARG_PACK
) != 0;
2738 /* Return true if S is a noreturn call. */
2741 gimple_call_noreturn_p (gimple s
)
2743 GIMPLE_CHECK (s
, GIMPLE_CALL
);
2744 return (gimple_call_flags (s
) & ECF_NORETURN
) != 0;
2748 /* If NOTHROW_P is true, GIMPLE_CALL S is a call that is known to not throw
2749 even if the called function can throw in other cases. */
2752 gimple_call_set_nothrow (gimple s
, bool nothrow_p
)
2754 GIMPLE_CHECK (s
, GIMPLE_CALL
);
2756 s
->subcode
|= GF_CALL_NOTHROW
;
2758 s
->subcode
&= ~GF_CALL_NOTHROW
;
2761 /* Return true if S is a nothrow call. */
2764 gimple_call_nothrow_p (gimple s
)
2766 GIMPLE_CHECK (s
, GIMPLE_CALL
);
2767 return (gimple_call_flags (s
) & ECF_NOTHROW
) != 0;
2770 /* If FOR_VAR is true, GIMPLE_CALL S is a call to builtin_alloca that
2771 is known to be emitted for VLA objects. Those are wrapped by
2772 stack_save/stack_restore calls and hence can't lead to unbounded
2773 stack growth even when they occur in loops. */
2776 gimple_call_set_alloca_for_var (gimple s
, bool for_var
)
2778 GIMPLE_CHECK (s
, GIMPLE_CALL
);
2780 s
->subcode
|= GF_CALL_ALLOCA_FOR_VAR
;
2782 s
->subcode
&= ~GF_CALL_ALLOCA_FOR_VAR
;
2785 /* Return true of S is a call to builtin_alloca emitted for VLA objects. */
2788 gimple_call_alloca_for_var_p (gimple s
)
2790 GIMPLE_CHECK (s
, GIMPLE_CALL
);
2791 return (s
->subcode
& GF_CALL_ALLOCA_FOR_VAR
) != 0;
2794 /* Copy all the GF_CALL_* flags from ORIG_CALL to DEST_CALL. */
2797 gimple_call_copy_flags (gimple dest_call
, gimple orig_call
)
2799 GIMPLE_CHECK (dest_call
, GIMPLE_CALL
);
2800 GIMPLE_CHECK (orig_call
, GIMPLE_CALL
);
2801 dest_call
->subcode
= orig_call
->subcode
;
2805 /* Return a pointer to the points-to solution for the set of call-used
2806 variables of the call CALL. */
2808 static inline struct pt_solution
*
2809 gimple_call_use_set (gimple call
)
2811 gimple_statement_call
*call_stmt
= as_a
<gimple_statement_call
*> (call
);
2812 return &call_stmt
->call_used
;
2816 /* Return a pointer to the points-to solution for the set of call-used
2817 variables of the call CALL. */
2819 static inline struct pt_solution
*
2820 gimple_call_clobber_set (gimple call
)
2822 gimple_statement_call
*call_stmt
= as_a
<gimple_statement_call
*> (call
);
2823 return &call_stmt
->call_clobbered
;
2827 /* Returns true if this is a GIMPLE_ASSIGN or a GIMPLE_CALL with a
2831 gimple_has_lhs (gimple stmt
)
2833 return (is_gimple_assign (stmt
)
2834 || (is_gimple_call (stmt
)
2835 && gimple_call_lhs (stmt
) != NULL_TREE
));
2839 /* Return the code of the predicate computed by conditional statement GS. */
2841 static inline enum tree_code
2842 gimple_cond_code (const_gimple gs
)
2844 GIMPLE_CHECK (gs
, GIMPLE_COND
);
2845 return (enum tree_code
) gs
->subcode
;
2849 /* Set CODE to be the predicate code for the conditional statement GS. */
2852 gimple_cond_set_code (gimple gs
, enum tree_code code
)
2854 GIMPLE_CHECK (gs
, GIMPLE_COND
);
2859 /* Return the LHS of the predicate computed by conditional statement GS. */
2862 gimple_cond_lhs (const_gimple gs
)
2864 GIMPLE_CHECK (gs
, GIMPLE_COND
);
2865 return gimple_op (gs
, 0);
2868 /* Return the pointer to the LHS of the predicate computed by conditional
2871 static inline tree
*
2872 gimple_cond_lhs_ptr (const_gimple gs
)
2874 GIMPLE_CHECK (gs
, GIMPLE_COND
);
2875 return gimple_op_ptr (gs
, 0);
2878 /* Set LHS to be the LHS operand of the predicate computed by
2879 conditional statement GS. */
2882 gimple_cond_set_lhs (gimple gs
, tree lhs
)
2884 GIMPLE_CHECK (gs
, GIMPLE_COND
);
2885 gimple_set_op (gs
, 0, lhs
);
2889 /* Return the RHS operand of the predicate computed by conditional GS. */
2892 gimple_cond_rhs (const_gimple gs
)
2894 GIMPLE_CHECK (gs
, GIMPLE_COND
);
2895 return gimple_op (gs
, 1);
2898 /* Return the pointer to the RHS operand of the predicate computed by
2901 static inline tree
*
2902 gimple_cond_rhs_ptr (const_gimple gs
)
2904 GIMPLE_CHECK (gs
, GIMPLE_COND
);
2905 return gimple_op_ptr (gs
, 1);
2909 /* Set RHS to be the RHS operand of the predicate computed by
2910 conditional statement GS. */
2913 gimple_cond_set_rhs (gimple gs
, tree rhs
)
2915 GIMPLE_CHECK (gs
, GIMPLE_COND
);
2916 gimple_set_op (gs
, 1, rhs
);
2920 /* Return the label used by conditional statement GS when its
2921 predicate evaluates to true. */
2924 gimple_cond_true_label (const_gimple gs
)
2926 GIMPLE_CHECK (gs
, GIMPLE_COND
);
2927 return gimple_op (gs
, 2);
2931 /* Set LABEL to be the label used by conditional statement GS when its
2932 predicate evaluates to true. */
2935 gimple_cond_set_true_label (gimple gs
, tree label
)
2937 GIMPLE_CHECK (gs
, GIMPLE_COND
);
2938 gimple_set_op (gs
, 2, label
);
2942 /* Set LABEL to be the label used by conditional statement GS when its
2943 predicate evaluates to false. */
2946 gimple_cond_set_false_label (gimple gs
, tree label
)
2948 GIMPLE_CHECK (gs
, GIMPLE_COND
);
2949 gimple_set_op (gs
, 3, label
);
2953 /* Return the label used by conditional statement GS when its
2954 predicate evaluates to false. */
2957 gimple_cond_false_label (const_gimple gs
)
2959 GIMPLE_CHECK (gs
, GIMPLE_COND
);
2960 return gimple_op (gs
, 3);
2964 /* Set the conditional COND_STMT to be of the form 'if (1 == 0)'. */
2967 gimple_cond_make_false (gimple gs
)
2969 gimple_cond_set_lhs (gs
, boolean_true_node
);
2970 gimple_cond_set_rhs (gs
, boolean_false_node
);
2971 gs
->subcode
= EQ_EXPR
;
2975 /* Set the conditional COND_STMT to be of the form 'if (1 == 1)'. */
2978 gimple_cond_make_true (gimple gs
)
2980 gimple_cond_set_lhs (gs
, boolean_true_node
);
2981 gimple_cond_set_rhs (gs
, boolean_true_node
);
2982 gs
->subcode
= EQ_EXPR
;
2985 /* Check if conditional statemente GS is of the form 'if (1 == 1)',
2986 'if (0 == 0)', 'if (1 != 0)' or 'if (0 != 1)' */
2989 gimple_cond_true_p (const_gimple gs
)
2991 tree lhs
= gimple_cond_lhs (gs
);
2992 tree rhs
= gimple_cond_rhs (gs
);
2993 enum tree_code code
= gimple_cond_code (gs
);
2995 if (lhs
!= boolean_true_node
&& lhs
!= boolean_false_node
)
2998 if (rhs
!= boolean_true_node
&& rhs
!= boolean_false_node
)
3001 if (code
== NE_EXPR
&& lhs
!= rhs
)
3004 if (code
== EQ_EXPR
&& lhs
== rhs
)
3010 /* Check if conditional statement GS is of the form 'if (1 != 1)',
3011 'if (0 != 0)', 'if (1 == 0)' or 'if (0 == 1)' */
3014 gimple_cond_false_p (const_gimple gs
)
3016 tree lhs
= gimple_cond_lhs (gs
);
3017 tree rhs
= gimple_cond_rhs (gs
);
3018 enum tree_code code
= gimple_cond_code (gs
);
3020 if (lhs
!= boolean_true_node
&& lhs
!= boolean_false_node
)
3023 if (rhs
!= boolean_true_node
&& rhs
!= boolean_false_node
)
3026 if (code
== NE_EXPR
&& lhs
== rhs
)
3029 if (code
== EQ_EXPR
&& lhs
!= rhs
)
3035 /* Set the code, LHS and RHS of GIMPLE_COND STMT from CODE, LHS and RHS. */
3038 gimple_cond_set_condition (gimple stmt
, enum tree_code code
, tree lhs
, tree rhs
)
3040 gimple_cond_set_code (stmt
, code
);
3041 gimple_cond_set_lhs (stmt
, lhs
);
3042 gimple_cond_set_rhs (stmt
, rhs
);
3045 /* Return the LABEL_DECL node used by GIMPLE_LABEL statement GS. */
3048 gimple_label_label (const_gimple gs
)
3050 GIMPLE_CHECK (gs
, GIMPLE_LABEL
);
3051 return gimple_op (gs
, 0);
3055 /* Set LABEL to be the LABEL_DECL node used by GIMPLE_LABEL statement
3059 gimple_label_set_label (gimple gs
, tree label
)
3061 GIMPLE_CHECK (gs
, GIMPLE_LABEL
);
3062 gimple_set_op (gs
, 0, label
);
3066 /* Return the destination of the unconditional jump GS. */
3069 gimple_goto_dest (const_gimple gs
)
3071 GIMPLE_CHECK (gs
, GIMPLE_GOTO
);
3072 return gimple_op (gs
, 0);
3076 /* Set DEST to be the destination of the unconditonal jump GS. */
3079 gimple_goto_set_dest (gimple gs
, tree dest
)
3081 GIMPLE_CHECK (gs
, GIMPLE_GOTO
);
3082 gimple_set_op (gs
, 0, dest
);
3086 /* Return the variables declared in the GIMPLE_BIND statement GS. */
3089 gimple_bind_vars (const_gimple gs
)
3091 const gimple_statement_bind
*bind_stmt
=
3092 as_a
<const gimple_statement_bind
*> (gs
);
3093 return bind_stmt
->vars
;
3097 /* Set VARS to be the set of variables declared in the GIMPLE_BIND
3101 gimple_bind_set_vars (gimple gs
, tree vars
)
3103 gimple_statement_bind
*bind_stmt
= as_a
<gimple_statement_bind
*> (gs
);
3104 bind_stmt
->vars
= vars
;
3108 /* Append VARS to the set of variables declared in the GIMPLE_BIND
3112 gimple_bind_append_vars (gimple gs
, tree vars
)
3114 gimple_statement_bind
*bind_stmt
= as_a
<gimple_statement_bind
*> (gs
);
3115 bind_stmt
->vars
= chainon (bind_stmt
->vars
, vars
);
3119 static inline gimple_seq
*
3120 gimple_bind_body_ptr (gimple gs
)
3122 gimple_statement_bind
*bind_stmt
= as_a
<gimple_statement_bind
*> (gs
);
3123 return &bind_stmt
->body
;
3126 /* Return the GIMPLE sequence contained in the GIMPLE_BIND statement GS. */
3128 static inline gimple_seq
3129 gimple_bind_body (gimple gs
)
3131 return *gimple_bind_body_ptr (gs
);
3135 /* Set SEQ to be the GIMPLE sequence contained in the GIMPLE_BIND
3139 gimple_bind_set_body (gimple gs
, gimple_seq seq
)
3141 gimple_statement_bind
*bind_stmt
= as_a
<gimple_statement_bind
*> (gs
);
3142 bind_stmt
->body
= seq
;
3146 /* Append a statement to the end of a GIMPLE_BIND's body. */
3149 gimple_bind_add_stmt (gimple gs
, gimple stmt
)
3151 gimple_statement_bind
*bind_stmt
= as_a
<gimple_statement_bind
*> (gs
);
3152 gimple_seq_add_stmt (&bind_stmt
->body
, stmt
);
3156 /* Append a sequence of statements to the end of a GIMPLE_BIND's body. */
3159 gimple_bind_add_seq (gimple gs
, gimple_seq seq
)
3161 gimple_statement_bind
*bind_stmt
= as_a
<gimple_statement_bind
*> (gs
);
3162 gimple_seq_add_seq (&bind_stmt
->body
, seq
);
3166 /* Return the TREE_BLOCK node associated with GIMPLE_BIND statement
3167 GS. This is analogous to the BIND_EXPR_BLOCK field in trees. */
3170 gimple_bind_block (const_gimple gs
)
3172 const gimple_statement_bind
*bind_stmt
=
3173 as_a
<const gimple_statement_bind
*> (gs
);
3174 return bind_stmt
->block
;
3178 /* Set BLOCK to be the TREE_BLOCK node associated with GIMPLE_BIND
3182 gimple_bind_set_block (gimple gs
, tree block
)
3184 gimple_statement_bind
*bind_stmt
= as_a
<gimple_statement_bind
*> (gs
);
3185 gcc_gimple_checking_assert (block
== NULL_TREE
3186 || TREE_CODE (block
) == BLOCK
);
3187 bind_stmt
->block
= block
;
3191 /* Return the number of input operands for GIMPLE_ASM GS. */
3193 static inline unsigned
3194 gimple_asm_ninputs (const_gimple gs
)
3196 const gimple_statement_asm
*asm_stmt
=
3197 as_a
<const gimple_statement_asm
*> (gs
);
3198 return asm_stmt
->ni
;
3202 /* Return the number of output operands for GIMPLE_ASM GS. */
3204 static inline unsigned
3205 gimple_asm_noutputs (const_gimple gs
)
3207 const gimple_statement_asm
*asm_stmt
=
3208 as_a
<const gimple_statement_asm
*> (gs
);
3209 return asm_stmt
->no
;
3213 /* Return the number of clobber operands for GIMPLE_ASM GS. */
3215 static inline unsigned
3216 gimple_asm_nclobbers (const_gimple gs
)
3218 const gimple_statement_asm
*asm_stmt
=
3219 as_a
<const gimple_statement_asm
*> (gs
);
3220 return asm_stmt
->nc
;
3223 /* Return the number of label operands for GIMPLE_ASM GS. */
3225 static inline unsigned
3226 gimple_asm_nlabels (const_gimple gs
)
3228 const gimple_statement_asm
*asm_stmt
=
3229 as_a
<const gimple_statement_asm
*> (gs
);
3230 return asm_stmt
->nl
;
3233 /* Return input operand INDEX of GIMPLE_ASM GS. */
3236 gimple_asm_input_op (const_gimple gs
, unsigned index
)
3238 const gimple_statement_asm
*asm_stmt
=
3239 as_a
<const gimple_statement_asm
*> (gs
);
3240 gcc_gimple_checking_assert (index
< asm_stmt
->ni
);
3241 return gimple_op (gs
, index
+ asm_stmt
->no
);
3244 /* Return a pointer to input operand INDEX of GIMPLE_ASM GS. */
3246 static inline tree
*
3247 gimple_asm_input_op_ptr (const_gimple gs
, unsigned index
)
3249 const gimple_statement_asm
*asm_stmt
=
3250 as_a
<const gimple_statement_asm
*> (gs
);
3251 gcc_gimple_checking_assert (index
< asm_stmt
->ni
);
3252 return gimple_op_ptr (gs
, index
+ asm_stmt
->no
);
3256 /* Set IN_OP to be input operand INDEX in GIMPLE_ASM GS. */
3259 gimple_asm_set_input_op (gimple gs
, unsigned index
, tree in_op
)
3261 gimple_statement_asm
*asm_stmt
= as_a
<gimple_statement_asm
*> (gs
);
3262 gcc_gimple_checking_assert (index
< asm_stmt
->ni
3263 && TREE_CODE (in_op
) == TREE_LIST
);
3264 gimple_set_op (gs
, index
+ asm_stmt
->no
, in_op
);
3268 /* Return output operand INDEX of GIMPLE_ASM GS. */
3271 gimple_asm_output_op (const_gimple gs
, unsigned index
)
3273 const gimple_statement_asm
*asm_stmt
=
3274 as_a
<const gimple_statement_asm
*> (gs
);
3275 gcc_gimple_checking_assert (index
< asm_stmt
->no
);
3276 return gimple_op (gs
, index
);
3279 /* Return a pointer to output operand INDEX of GIMPLE_ASM GS. */
3281 static inline tree
*
3282 gimple_asm_output_op_ptr (const_gimple gs
, unsigned index
)
3284 const gimple_statement_asm
*asm_stmt
=
3285 as_a
<const gimple_statement_asm
*> (gs
);
3286 gcc_gimple_checking_assert (index
< asm_stmt
->no
);
3287 return gimple_op_ptr (gs
, index
);
3291 /* Set OUT_OP to be output operand INDEX in GIMPLE_ASM GS. */
3294 gimple_asm_set_output_op (gimple gs
, unsigned index
, tree out_op
)
3296 gimple_statement_asm
*asm_stmt
= as_a
<gimple_statement_asm
*> (gs
);
3297 gcc_gimple_checking_assert (index
< asm_stmt
->no
3298 && TREE_CODE (out_op
) == TREE_LIST
);
3299 gimple_set_op (gs
, index
, out_op
);
3303 /* Return clobber operand INDEX of GIMPLE_ASM GS. */
3306 gimple_asm_clobber_op (const_gimple gs
, unsigned index
)
3308 const gimple_statement_asm
*asm_stmt
=
3309 as_a
<const gimple_statement_asm
*> (gs
);
3310 gcc_gimple_checking_assert (index
< asm_stmt
->nc
);
3311 return gimple_op (gs
, index
+ asm_stmt
->ni
+ asm_stmt
->no
);
3315 /* Set CLOBBER_OP to be clobber operand INDEX in GIMPLE_ASM GS. */
3318 gimple_asm_set_clobber_op (gimple gs
, unsigned index
, tree clobber_op
)
3320 gimple_statement_asm
*asm_stmt
= as_a
<gimple_statement_asm
*> (gs
);
3321 gcc_gimple_checking_assert (index
< asm_stmt
->nc
3322 && TREE_CODE (clobber_op
) == TREE_LIST
);
3323 gimple_set_op (gs
, index
+ asm_stmt
->ni
+ asm_stmt
->no
, clobber_op
);
3326 /* Return label operand INDEX of GIMPLE_ASM GS. */
3329 gimple_asm_label_op (const_gimple gs
, unsigned index
)
3331 const gimple_statement_asm
*asm_stmt
=
3332 as_a
<const gimple_statement_asm
*> (gs
);
3333 gcc_gimple_checking_assert (index
< asm_stmt
->nl
);
3334 return gimple_op (gs
, index
+ asm_stmt
->ni
+ asm_stmt
->nc
);
3337 /* Set LABEL_OP to be label operand INDEX in GIMPLE_ASM GS. */
3340 gimple_asm_set_label_op (gimple gs
, unsigned index
, tree label_op
)
3342 gimple_statement_asm
*asm_stmt
= as_a
<gimple_statement_asm
*> (gs
);
3343 gcc_gimple_checking_assert (index
< asm_stmt
->nl
3344 && TREE_CODE (label_op
) == TREE_LIST
);
3345 gimple_set_op (gs
, index
+ asm_stmt
->ni
+ asm_stmt
->nc
, label_op
);
3348 /* Return the string representing the assembly instruction in
3351 static inline const char *
3352 gimple_asm_string (const_gimple gs
)
3354 const gimple_statement_asm
*asm_stmt
=
3355 as_a
<const gimple_statement_asm
*> (gs
);
3356 return asm_stmt
->string
;
3360 /* Return true if GS is an asm statement marked volatile. */
3363 gimple_asm_volatile_p (const_gimple gs
)
3365 GIMPLE_CHECK (gs
, GIMPLE_ASM
);
3366 return (gs
->subcode
& GF_ASM_VOLATILE
) != 0;
3370 /* If VOLATLE_P is true, mark asm statement GS as volatile. */
3373 gimple_asm_set_volatile (gimple gs
, bool volatile_p
)
3375 GIMPLE_CHECK (gs
, GIMPLE_ASM
);
3377 gs
->subcode
|= GF_ASM_VOLATILE
;
3379 gs
->subcode
&= ~GF_ASM_VOLATILE
;
3383 /* If INPUT_P is true, mark asm GS as an ASM_INPUT. */
3386 gimple_asm_set_input (gimple gs
, bool input_p
)
3388 GIMPLE_CHECK (gs
, GIMPLE_ASM
);
3390 gs
->subcode
|= GF_ASM_INPUT
;
3392 gs
->subcode
&= ~GF_ASM_INPUT
;
3396 /* Return true if asm GS is an ASM_INPUT. */
3399 gimple_asm_input_p (const_gimple gs
)
3401 GIMPLE_CHECK (gs
, GIMPLE_ASM
);
3402 return (gs
->subcode
& GF_ASM_INPUT
) != 0;
3406 /* Return the types handled by GIMPLE_CATCH statement GS. */
3409 gimple_catch_types (const_gimple gs
)
3411 const gimple_statement_catch
*catch_stmt
=
3412 as_a
<const gimple_statement_catch
*> (gs
);
3413 return catch_stmt
->types
;
3417 /* Return a pointer to the types handled by GIMPLE_CATCH statement GS. */
3419 static inline tree
*
3420 gimple_catch_types_ptr (gimple gs
)
3422 gimple_statement_catch
*catch_stmt
= as_a
<gimple_statement_catch
*> (gs
);
3423 return &catch_stmt
->types
;
3427 /* Return a pointer to the GIMPLE sequence representing the body of
3428 the handler of GIMPLE_CATCH statement GS. */
3430 static inline gimple_seq
*
3431 gimple_catch_handler_ptr (gimple gs
)
3433 gimple_statement_catch
*catch_stmt
= as_a
<gimple_statement_catch
*> (gs
);
3434 return &catch_stmt
->handler
;
3438 /* Return the GIMPLE sequence representing the body of the handler of
3439 GIMPLE_CATCH statement GS. */
3441 static inline gimple_seq
3442 gimple_catch_handler (gimple gs
)
3444 return *gimple_catch_handler_ptr (gs
);
3448 /* Set T to be the set of types handled by GIMPLE_CATCH GS. */
3451 gimple_catch_set_types (gimple gs
, tree t
)
3453 gimple_statement_catch
*catch_stmt
= as_a
<gimple_statement_catch
*> (gs
);
3454 catch_stmt
->types
= t
;
3458 /* Set HANDLER to be the body of GIMPLE_CATCH GS. */
3461 gimple_catch_set_handler (gimple gs
, gimple_seq handler
)
3463 gimple_statement_catch
*catch_stmt
= as_a
<gimple_statement_catch
*> (gs
);
3464 catch_stmt
->handler
= handler
;
3468 /* Return the types handled by GIMPLE_EH_FILTER statement GS. */
3471 gimple_eh_filter_types (const_gimple gs
)
3473 const gimple_statement_eh_filter
*eh_filter_stmt
=
3474 as_a
<const gimple_statement_eh_filter
*> (gs
);
3475 return eh_filter_stmt
->types
;
3479 /* Return a pointer to the types handled by GIMPLE_EH_FILTER statement
3482 static inline tree
*
3483 gimple_eh_filter_types_ptr (gimple gs
)
3485 gimple_statement_eh_filter
*eh_filter_stmt
=
3486 as_a
<gimple_statement_eh_filter
*> (gs
);
3487 return &eh_filter_stmt
->types
;
3491 /* Return a pointer to the sequence of statement to execute when
3492 GIMPLE_EH_FILTER statement fails. */
3494 static inline gimple_seq
*
3495 gimple_eh_filter_failure_ptr (gimple gs
)
3497 gimple_statement_eh_filter
*eh_filter_stmt
=
3498 as_a
<gimple_statement_eh_filter
*> (gs
);
3499 return &eh_filter_stmt
->failure
;
3503 /* Return the sequence of statement to execute when GIMPLE_EH_FILTER
3506 static inline gimple_seq
3507 gimple_eh_filter_failure (gimple gs
)
3509 return *gimple_eh_filter_failure_ptr (gs
);
3513 /* Set TYPES to be the set of types handled by GIMPLE_EH_FILTER GS. */
3516 gimple_eh_filter_set_types (gimple gs
, tree types
)
3518 gimple_statement_eh_filter
*eh_filter_stmt
=
3519 as_a
<gimple_statement_eh_filter
*> (gs
);
3520 eh_filter_stmt
->types
= types
;
3524 /* Set FAILURE to be the sequence of statements to execute on failure
3525 for GIMPLE_EH_FILTER GS. */
3528 gimple_eh_filter_set_failure (gimple gs
, gimple_seq failure
)
3530 gimple_statement_eh_filter
*eh_filter_stmt
=
3531 as_a
<gimple_statement_eh_filter
*> (gs
);
3532 eh_filter_stmt
->failure
= failure
;
3535 /* Get the function decl to be called by the MUST_NOT_THROW region. */
3538 gimple_eh_must_not_throw_fndecl (gimple gs
)
3540 gimple_statement_eh_mnt
*eh_mnt_stmt
= as_a
<gimple_statement_eh_mnt
*> (gs
);
3541 return eh_mnt_stmt
->fndecl
;
3544 /* Set the function decl to be called by GS to DECL. */
3547 gimple_eh_must_not_throw_set_fndecl (gimple gs
, tree decl
)
3549 gimple_statement_eh_mnt
*eh_mnt_stmt
= as_a
<gimple_statement_eh_mnt
*> (gs
);
3550 eh_mnt_stmt
->fndecl
= decl
;
3553 /* GIMPLE_EH_ELSE accessors. */
3555 static inline gimple_seq
*
3556 gimple_eh_else_n_body_ptr (gimple gs
)
3558 gimple_statement_eh_else
*eh_else_stmt
=
3559 as_a
<gimple_statement_eh_else
*> (gs
);
3560 return &eh_else_stmt
->n_body
;
3563 static inline gimple_seq
3564 gimple_eh_else_n_body (gimple gs
)
3566 return *gimple_eh_else_n_body_ptr (gs
);
3569 static inline gimple_seq
*
3570 gimple_eh_else_e_body_ptr (gimple gs
)
3572 gimple_statement_eh_else
*eh_else_stmt
=
3573 as_a
<gimple_statement_eh_else
*> (gs
);
3574 return &eh_else_stmt
->e_body
;
3577 static inline gimple_seq
3578 gimple_eh_else_e_body (gimple gs
)
3580 return *gimple_eh_else_e_body_ptr (gs
);
3584 gimple_eh_else_set_n_body (gimple gs
, gimple_seq seq
)
3586 gimple_statement_eh_else
*eh_else_stmt
=
3587 as_a
<gimple_statement_eh_else
*> (gs
);
3588 eh_else_stmt
->n_body
= seq
;
3592 gimple_eh_else_set_e_body (gimple gs
, gimple_seq seq
)
3594 gimple_statement_eh_else
*eh_else_stmt
=
3595 as_a
<gimple_statement_eh_else
*> (gs
);
3596 eh_else_stmt
->e_body
= seq
;
3599 /* GIMPLE_TRY accessors. */
3601 /* Return the kind of try block represented by GIMPLE_TRY GS. This is
3602 either GIMPLE_TRY_CATCH or GIMPLE_TRY_FINALLY. */
3604 static inline enum gimple_try_flags
3605 gimple_try_kind (const_gimple gs
)
3607 GIMPLE_CHECK (gs
, GIMPLE_TRY
);
3608 return (enum gimple_try_flags
) (gs
->subcode
& GIMPLE_TRY_KIND
);
3612 /* Set the kind of try block represented by GIMPLE_TRY GS. */
3615 gimple_try_set_kind (gimple gs
, enum gimple_try_flags kind
)
3617 GIMPLE_CHECK (gs
, GIMPLE_TRY
);
3618 gcc_gimple_checking_assert (kind
== GIMPLE_TRY_CATCH
3619 || kind
== GIMPLE_TRY_FINALLY
);
3620 if (gimple_try_kind (gs
) != kind
)
3621 gs
->subcode
= (unsigned int) kind
;
3625 /* Return the GIMPLE_TRY_CATCH_IS_CLEANUP flag. */
3628 gimple_try_catch_is_cleanup (const_gimple gs
)
3630 gcc_gimple_checking_assert (gimple_try_kind (gs
) == GIMPLE_TRY_CATCH
);
3631 return (gs
->subcode
& GIMPLE_TRY_CATCH_IS_CLEANUP
) != 0;
3635 /* Return a pointer to the sequence of statements used as the
3636 body for GIMPLE_TRY GS. */
3638 static inline gimple_seq
*
3639 gimple_try_eval_ptr (gimple gs
)
3641 gimple_statement_try
*try_stmt
= as_a
<gimple_statement_try
*> (gs
);
3642 return &try_stmt
->eval
;
3646 /* Return the sequence of statements used as the body for GIMPLE_TRY GS. */
3648 static inline gimple_seq
3649 gimple_try_eval (gimple gs
)
3651 return *gimple_try_eval_ptr (gs
);
3655 /* Return a pointer to the sequence of statements used as the cleanup body for
3658 static inline gimple_seq
*
3659 gimple_try_cleanup_ptr (gimple gs
)
3661 gimple_statement_try
*try_stmt
= as_a
<gimple_statement_try
*> (gs
);
3662 return &try_stmt
->cleanup
;
3666 /* Return the sequence of statements used as the cleanup body for
3669 static inline gimple_seq
3670 gimple_try_cleanup (gimple gs
)
3672 return *gimple_try_cleanup_ptr (gs
);
3676 /* Set the GIMPLE_TRY_CATCH_IS_CLEANUP flag. */
3679 gimple_try_set_catch_is_cleanup (gimple g
, bool catch_is_cleanup
)
3681 gcc_gimple_checking_assert (gimple_try_kind (g
) == GIMPLE_TRY_CATCH
);
3682 if (catch_is_cleanup
)
3683 g
->subcode
|= GIMPLE_TRY_CATCH_IS_CLEANUP
;
3685 g
->subcode
&= ~GIMPLE_TRY_CATCH_IS_CLEANUP
;
3689 /* Set EVAL to be the sequence of statements to use as the body for
3693 gimple_try_set_eval (gimple gs
, gimple_seq eval
)
3695 gimple_statement_try
*try_stmt
= as_a
<gimple_statement_try
*> (gs
);
3696 try_stmt
->eval
= eval
;
3700 /* Set CLEANUP to be the sequence of statements to use as the cleanup
3701 body for GIMPLE_TRY GS. */
3704 gimple_try_set_cleanup (gimple gs
, gimple_seq cleanup
)
3706 gimple_statement_try
*try_stmt
= as_a
<gimple_statement_try
*> (gs
);
3707 try_stmt
->cleanup
= cleanup
;
3711 /* Return a pointer to the cleanup sequence for cleanup statement GS. */
3713 static inline gimple_seq
*
3714 gimple_wce_cleanup_ptr (gimple gs
)
3716 gimple_statement_wce
*wce_stmt
= as_a
<gimple_statement_wce
*> (gs
);
3717 return &wce_stmt
->cleanup
;
3721 /* Return the cleanup sequence for cleanup statement GS. */
3723 static inline gimple_seq
3724 gimple_wce_cleanup (gimple gs
)
3726 return *gimple_wce_cleanup_ptr (gs
);
3730 /* Set CLEANUP to be the cleanup sequence for GS. */
3733 gimple_wce_set_cleanup (gimple gs
, gimple_seq cleanup
)
3735 gimple_statement_wce
*wce_stmt
= as_a
<gimple_statement_wce
*> (gs
);
3736 wce_stmt
->cleanup
= cleanup
;
3740 /* Return the CLEANUP_EH_ONLY flag for a WCE tuple. */
3743 gimple_wce_cleanup_eh_only (const_gimple gs
)
3745 GIMPLE_CHECK (gs
, GIMPLE_WITH_CLEANUP_EXPR
);
3746 return gs
->subcode
!= 0;
3750 /* Set the CLEANUP_EH_ONLY flag for a WCE tuple. */
3753 gimple_wce_set_cleanup_eh_only (gimple gs
, bool eh_only_p
)
3755 GIMPLE_CHECK (gs
, GIMPLE_WITH_CLEANUP_EXPR
);
3756 gs
->subcode
= (unsigned int) eh_only_p
;
3760 /* Return the maximum number of arguments supported by GIMPLE_PHI GS. */
3762 static inline unsigned
3763 gimple_phi_capacity (const_gimple gs
)
3765 const gimple_statement_phi
*phi_stmt
=
3766 as_a
<const gimple_statement_phi
*> (gs
);
3767 return phi_stmt
->capacity
;
3771 /* Return the number of arguments in GIMPLE_PHI GS. This must always
3772 be exactly the number of incoming edges for the basic block holding
3775 static inline unsigned
3776 gimple_phi_num_args (const_gimple gs
)
3778 const gimple_statement_phi
*phi_stmt
=
3779 as_a
<const gimple_statement_phi
*> (gs
);
3780 return phi_stmt
->nargs
;
3784 /* Return the SSA name created by GIMPLE_PHI GS. */
3787 gimple_phi_result (const_gimple gs
)
3789 const gimple_statement_phi
*phi_stmt
=
3790 as_a
<const gimple_statement_phi
*> (gs
);
3791 return phi_stmt
->result
;
3794 /* Return a pointer to the SSA name created by GIMPLE_PHI GS. */
3796 static inline tree
*
3797 gimple_phi_result_ptr (gimple gs
)
3799 gimple_statement_phi
*phi_stmt
= as_a
<gimple_statement_phi
*> (gs
);
3800 return &phi_stmt
->result
;
3803 /* Set RESULT to be the SSA name created by GIMPLE_PHI GS. */
3806 gimple_phi_set_result (gimple gs
, tree result
)
3808 gimple_statement_phi
*phi_stmt
= as_a
<gimple_statement_phi
*> (gs
);
3809 phi_stmt
->result
= result
;
3810 if (result
&& TREE_CODE (result
) == SSA_NAME
)
3811 SSA_NAME_DEF_STMT (result
) = gs
;
3815 /* Return the PHI argument corresponding to incoming edge INDEX for
3818 static inline struct phi_arg_d
*
3819 gimple_phi_arg (gimple gs
, unsigned index
)
3821 gimple_statement_phi
*phi_stmt
= as_a
<gimple_statement_phi
*> (gs
);
3822 gcc_gimple_checking_assert (index
<= phi_stmt
->capacity
);
3823 return &(phi_stmt
->args
[index
]);
3826 /* Set PHIARG to be the argument corresponding to incoming edge INDEX
3827 for GIMPLE_PHI GS. */
3830 gimple_phi_set_arg (gimple gs
, unsigned index
, struct phi_arg_d
* phiarg
)
3832 gimple_statement_phi
*phi_stmt
= as_a
<gimple_statement_phi
*> (gs
);
3833 gcc_gimple_checking_assert (index
<= phi_stmt
->nargs
);
3834 phi_stmt
->args
[index
] = *phiarg
;
3837 /* Return the PHI nodes for basic block BB, or NULL if there are no
3840 static inline gimple_seq
3841 phi_nodes (const_basic_block bb
)
3843 gcc_checking_assert (!(bb
->flags
& BB_RTL
));
3844 return bb
->il
.gimple
.phi_nodes
;
3847 /* Return a pointer to the PHI nodes for basic block BB. */
3849 static inline gimple_seq
*
3850 phi_nodes_ptr (basic_block bb
)
3852 gcc_checking_assert (!(bb
->flags
& BB_RTL
));
3853 return &bb
->il
.gimple
.phi_nodes
;
3856 /* Return the tree operand for argument I of PHI node GS. */
3859 gimple_phi_arg_def (gimple gs
, size_t index
)
3861 return gimple_phi_arg (gs
, index
)->def
;
3865 /* Return a pointer to the tree operand for argument I of PHI node GS. */
3867 static inline tree
*
3868 gimple_phi_arg_def_ptr (gimple gs
, size_t index
)
3870 return &gimple_phi_arg (gs
, index
)->def
;
3873 /* Return the edge associated with argument I of phi node GS. */
3876 gimple_phi_arg_edge (gimple gs
, size_t i
)
3878 return EDGE_PRED (gimple_bb (gs
), i
);
3881 /* Return the source location of gimple argument I of phi node GS. */
3883 static inline source_location
3884 gimple_phi_arg_location (gimple gs
, size_t i
)
3886 return gimple_phi_arg (gs
, i
)->locus
;
3889 /* Return the source location of the argument on edge E of phi node GS. */
3891 static inline source_location
3892 gimple_phi_arg_location_from_edge (gimple gs
, edge e
)
3894 return gimple_phi_arg (gs
, e
->dest_idx
)->locus
;
3897 /* Set the source location of gimple argument I of phi node GS to LOC. */
3900 gimple_phi_arg_set_location (gimple gs
, size_t i
, source_location loc
)
3902 gimple_phi_arg (gs
, i
)->locus
= loc
;
3905 /* Return TRUE if argument I of phi node GS has a location record. */
3908 gimple_phi_arg_has_location (gimple gs
, size_t i
)
3910 return gimple_phi_arg_location (gs
, i
) != UNKNOWN_LOCATION
;
3914 /* Return the region number for GIMPLE_RESX GS. */
3917 gimple_resx_region (const_gimple gs
)
3919 const gimple_statement_resx
*resx_stmt
=
3920 as_a
<const gimple_statement_resx
*> (gs
);
3921 return resx_stmt
->region
;
3924 /* Set REGION to be the region number for GIMPLE_RESX GS. */
3927 gimple_resx_set_region (gimple gs
, int region
)
3929 gimple_statement_resx
*resx_stmt
= as_a
<gimple_statement_resx
*> (gs
);
3930 resx_stmt
->region
= region
;
3933 /* Return the region number for GIMPLE_EH_DISPATCH GS. */
3936 gimple_eh_dispatch_region (const_gimple gs
)
3938 const gimple_statement_eh_dispatch
*eh_dispatch_stmt
=
3939 as_a
<const gimple_statement_eh_dispatch
*> (gs
);
3940 return eh_dispatch_stmt
->region
;
3943 /* Set REGION to be the region number for GIMPLE_EH_DISPATCH GS. */
3946 gimple_eh_dispatch_set_region (gimple gs
, int region
)
3948 gimple_statement_eh_dispatch
*eh_dispatch_stmt
=
3949 as_a
<gimple_statement_eh_dispatch
*> (gs
);
3950 eh_dispatch_stmt
->region
= region
;
3953 /* Return the number of labels associated with the switch statement GS. */
3955 static inline unsigned
3956 gimple_switch_num_labels (const_gimple gs
)
3959 GIMPLE_CHECK (gs
, GIMPLE_SWITCH
);
3960 num_ops
= gimple_num_ops (gs
);
3961 gcc_gimple_checking_assert (num_ops
> 1);
3966 /* Set NLABELS to be the number of labels for the switch statement GS. */
3969 gimple_switch_set_num_labels (gimple g
, unsigned nlabels
)
3971 GIMPLE_CHECK (g
, GIMPLE_SWITCH
);
3972 gimple_set_num_ops (g
, nlabels
+ 1);
3976 /* Return the index variable used by the switch statement GS. */
3979 gimple_switch_index (const_gimple gs
)
3981 GIMPLE_CHECK (gs
, GIMPLE_SWITCH
);
3982 return gimple_op (gs
, 0);
3986 /* Return a pointer to the index variable for the switch statement GS. */
3988 static inline tree
*
3989 gimple_switch_index_ptr (const_gimple gs
)
3991 GIMPLE_CHECK (gs
, GIMPLE_SWITCH
);
3992 return gimple_op_ptr (gs
, 0);
3996 /* Set INDEX to be the index variable for switch statement GS. */
3999 gimple_switch_set_index (gimple gs
, tree index
)
4001 GIMPLE_CHECK (gs
, GIMPLE_SWITCH
);
4002 gcc_gimple_checking_assert (SSA_VAR_P (index
) || CONSTANT_CLASS_P (index
));
4003 gimple_set_op (gs
, 0, index
);
4007 /* Return the label numbered INDEX. The default label is 0, followed by any
4008 labels in a switch statement. */
4011 gimple_switch_label (const_gimple gs
, unsigned index
)
4013 GIMPLE_CHECK (gs
, GIMPLE_SWITCH
);
4014 gcc_gimple_checking_assert (gimple_num_ops (gs
) > index
+ 1);
4015 return gimple_op (gs
, index
+ 1);
4018 /* Set the label number INDEX to LABEL. 0 is always the default label. */
4021 gimple_switch_set_label (gimple gs
, unsigned index
, tree label
)
4023 GIMPLE_CHECK (gs
, GIMPLE_SWITCH
);
4024 gcc_gimple_checking_assert (gimple_num_ops (gs
) > index
+ 1
4025 && (label
== NULL_TREE
4026 || TREE_CODE (label
) == CASE_LABEL_EXPR
));
4027 gimple_set_op (gs
, index
+ 1, label
);
4030 /* Return the default label for a switch statement. */
4033 gimple_switch_default_label (const_gimple gs
)
4035 tree label
= gimple_switch_label (gs
, 0);
4036 gcc_checking_assert (!CASE_LOW (label
) && !CASE_HIGH (label
));
4040 /* Set the default label for a switch statement. */
4043 gimple_switch_set_default_label (gimple gs
, tree label
)
4045 gcc_checking_assert (!CASE_LOW (label
) && !CASE_HIGH (label
));
4046 gimple_switch_set_label (gs
, 0, label
);
4049 /* Return true if GS is a GIMPLE_DEBUG statement. */
4052 is_gimple_debug (const_gimple gs
)
4054 return gimple_code (gs
) == GIMPLE_DEBUG
;
4057 /* Return true if S is a GIMPLE_DEBUG BIND statement. */
4060 gimple_debug_bind_p (const_gimple s
)
4062 if (is_gimple_debug (s
))
4063 return s
->subcode
== GIMPLE_DEBUG_BIND
;
4068 /* Return the variable bound in a GIMPLE_DEBUG bind statement. */
4071 gimple_debug_bind_get_var (gimple dbg
)
4073 GIMPLE_CHECK (dbg
, GIMPLE_DEBUG
);
4074 gcc_gimple_checking_assert (gimple_debug_bind_p (dbg
));
4075 return gimple_op (dbg
, 0);
4078 /* Return the value bound to the variable in a GIMPLE_DEBUG bind
4082 gimple_debug_bind_get_value (gimple dbg
)
4084 GIMPLE_CHECK (dbg
, GIMPLE_DEBUG
);
4085 gcc_gimple_checking_assert (gimple_debug_bind_p (dbg
));
4086 return gimple_op (dbg
, 1);
4089 /* Return a pointer to the value bound to the variable in a
4090 GIMPLE_DEBUG bind statement. */
4092 static inline tree
*
4093 gimple_debug_bind_get_value_ptr (gimple dbg
)
4095 GIMPLE_CHECK (dbg
, GIMPLE_DEBUG
);
4096 gcc_gimple_checking_assert (gimple_debug_bind_p (dbg
));
4097 return gimple_op_ptr (dbg
, 1);
4100 /* Set the variable bound in a GIMPLE_DEBUG bind statement. */
4103 gimple_debug_bind_set_var (gimple dbg
, tree var
)
4105 GIMPLE_CHECK (dbg
, GIMPLE_DEBUG
);
4106 gcc_gimple_checking_assert (gimple_debug_bind_p (dbg
));
4107 gimple_set_op (dbg
, 0, var
);
4110 /* Set the value bound to the variable in a GIMPLE_DEBUG bind
4114 gimple_debug_bind_set_value (gimple dbg
, tree value
)
4116 GIMPLE_CHECK (dbg
, GIMPLE_DEBUG
);
4117 gcc_gimple_checking_assert (gimple_debug_bind_p (dbg
));
4118 gimple_set_op (dbg
, 1, value
);
4121 /* The second operand of a GIMPLE_DEBUG_BIND, when the value was
4123 #define GIMPLE_DEBUG_BIND_NOVALUE NULL_TREE /* error_mark_node */
4125 /* Remove the value bound to the variable in a GIMPLE_DEBUG bind
4129 gimple_debug_bind_reset_value (gimple dbg
)
4131 GIMPLE_CHECK (dbg
, GIMPLE_DEBUG
);
4132 gcc_gimple_checking_assert (gimple_debug_bind_p (dbg
));
4133 gimple_set_op (dbg
, 1, GIMPLE_DEBUG_BIND_NOVALUE
);
4136 /* Return true if the GIMPLE_DEBUG bind statement is bound to a
4140 gimple_debug_bind_has_value_p (gimple dbg
)
4142 GIMPLE_CHECK (dbg
, GIMPLE_DEBUG
);
4143 gcc_gimple_checking_assert (gimple_debug_bind_p (dbg
));
4144 return gimple_op (dbg
, 1) != GIMPLE_DEBUG_BIND_NOVALUE
;
4147 #undef GIMPLE_DEBUG_BIND_NOVALUE
4149 /* Return true if S is a GIMPLE_DEBUG SOURCE BIND statement. */
4152 gimple_debug_source_bind_p (const_gimple s
)
4154 if (is_gimple_debug (s
))
4155 return s
->subcode
== GIMPLE_DEBUG_SOURCE_BIND
;
4160 /* Return the variable bound in a GIMPLE_DEBUG source bind statement. */
4163 gimple_debug_source_bind_get_var (gimple dbg
)
4165 GIMPLE_CHECK (dbg
, GIMPLE_DEBUG
);
4166 gcc_gimple_checking_assert (gimple_debug_source_bind_p (dbg
));
4167 return gimple_op (dbg
, 0);
4170 /* Return the value bound to the variable in a GIMPLE_DEBUG source bind
4174 gimple_debug_source_bind_get_value (gimple dbg
)
4176 GIMPLE_CHECK (dbg
, GIMPLE_DEBUG
);
4177 gcc_gimple_checking_assert (gimple_debug_source_bind_p (dbg
));
4178 return gimple_op (dbg
, 1);
4181 /* Return a pointer to the value bound to the variable in a
4182 GIMPLE_DEBUG source bind statement. */
4184 static inline tree
*
4185 gimple_debug_source_bind_get_value_ptr (gimple dbg
)
4187 GIMPLE_CHECK (dbg
, GIMPLE_DEBUG
);
4188 gcc_gimple_checking_assert (gimple_debug_source_bind_p (dbg
));
4189 return gimple_op_ptr (dbg
, 1);
4192 /* Set the variable bound in a GIMPLE_DEBUG source bind statement. */
4195 gimple_debug_source_bind_set_var (gimple dbg
, tree var
)
4197 GIMPLE_CHECK (dbg
, GIMPLE_DEBUG
);
4198 gcc_gimple_checking_assert (gimple_debug_source_bind_p (dbg
));
4199 gimple_set_op (dbg
, 0, var
);
4202 /* Set the value bound to the variable in a GIMPLE_DEBUG source bind
4206 gimple_debug_source_bind_set_value (gimple dbg
, tree value
)
4208 GIMPLE_CHECK (dbg
, GIMPLE_DEBUG
);
4209 gcc_gimple_checking_assert (gimple_debug_source_bind_p (dbg
));
4210 gimple_set_op (dbg
, 1, value
);
4213 /* Return the line number for EXPR, or return -1 if we have no line
4214 number information for it. */
4216 get_lineno (const_gimple stmt
)
4223 loc
= gimple_location (stmt
);
4224 if (loc
== UNKNOWN_LOCATION
)
4227 return LOCATION_LINE (loc
);
4230 /* Return a pointer to the body for the OMP statement GS. */
4232 static inline gimple_seq
*
4233 gimple_omp_body_ptr (gimple gs
)
4235 return &static_cast <gimple_statement_omp
*> (gs
)->body
;
4238 /* Return the body for the OMP statement GS. */
4240 static inline gimple_seq
4241 gimple_omp_body (gimple gs
)
4243 return *gimple_omp_body_ptr (gs
);
4246 /* Set BODY to be the body for the OMP statement GS. */
4249 gimple_omp_set_body (gimple gs
, gimple_seq body
)
4251 static_cast <gimple_statement_omp
*> (gs
)->body
= body
;
4255 /* Return the name associated with OMP_CRITICAL statement GS. */
4258 gimple_omp_critical_name (const_gimple gs
)
4260 const gimple_statement_omp_critical
*omp_critical_stmt
=
4261 as_a
<const gimple_statement_omp_critical
*> (gs
);
4262 return omp_critical_stmt
->name
;
4266 /* Return a pointer to the name associated with OMP critical statement GS. */
4268 static inline tree
*
4269 gimple_omp_critical_name_ptr (gimple gs
)
4271 gimple_statement_omp_critical
*omp_critical_stmt
=
4272 as_a
<gimple_statement_omp_critical
*> (gs
);
4273 return &omp_critical_stmt
->name
;
4277 /* Set NAME to be the name associated with OMP critical statement GS. */
4280 gimple_omp_critical_set_name (gimple gs
, tree name
)
4282 gimple_statement_omp_critical
*omp_critical_stmt
=
4283 as_a
<gimple_statement_omp_critical
*> (gs
);
4284 omp_critical_stmt
->name
= name
;
4288 /* Return the kind of OMP for statemement. */
4291 gimple_omp_for_kind (const_gimple g
)
4293 GIMPLE_CHECK (g
, GIMPLE_OMP_FOR
);
4294 return (gimple_omp_subcode (g
) & GF_OMP_FOR_KIND_MASK
);
4298 /* Set the OMP for kind. */
4301 gimple_omp_for_set_kind (gimple g
, int kind
)
4303 GIMPLE_CHECK (g
, GIMPLE_OMP_FOR
);
4304 g
->subcode
= (g
->subcode
& ~GF_OMP_FOR_KIND_MASK
)
4305 | (kind
& GF_OMP_FOR_KIND_MASK
);
4309 /* Return true if OMP for statement G has the
4310 GF_OMP_FOR_COMBINED flag set. */
4313 gimple_omp_for_combined_p (const_gimple g
)
4315 GIMPLE_CHECK (g
, GIMPLE_OMP_FOR
);
4316 return (gimple_omp_subcode (g
) & GF_OMP_FOR_COMBINED
) != 0;
4320 /* Set the GF_OMP_FOR_COMBINED field in G depending on the boolean
4321 value of COMBINED_P. */
4324 gimple_omp_for_set_combined_p (gimple g
, bool combined_p
)
4326 GIMPLE_CHECK (g
, GIMPLE_OMP_FOR
);
4328 g
->subcode
|= GF_OMP_FOR_COMBINED
;
4330 g
->subcode
&= ~GF_OMP_FOR_COMBINED
;
4334 /* Return true if OMP for statement G has the
4335 GF_OMP_FOR_COMBINED_INTO flag set. */
4338 gimple_omp_for_combined_into_p (const_gimple g
)
4340 GIMPLE_CHECK (g
, GIMPLE_OMP_FOR
);
4341 return (gimple_omp_subcode (g
) & GF_OMP_FOR_COMBINED_INTO
) != 0;
4345 /* Set the GF_OMP_FOR_COMBINED_INTO field in G depending on the boolean
4346 value of COMBINED_P. */
4349 gimple_omp_for_set_combined_into_p (gimple g
, bool combined_p
)
4351 GIMPLE_CHECK (g
, GIMPLE_OMP_FOR
);
4353 g
->subcode
|= GF_OMP_FOR_COMBINED_INTO
;
4355 g
->subcode
&= ~GF_OMP_FOR_COMBINED_INTO
;
4359 /* Return the clauses associated with OMP_FOR GS. */
4362 gimple_omp_for_clauses (const_gimple gs
)
4364 const gimple_statement_omp_for
*omp_for_stmt
=
4365 as_a
<const gimple_statement_omp_for
*> (gs
);
4366 return omp_for_stmt
->clauses
;
4370 /* Return a pointer to the OMP_FOR GS. */
4372 static inline tree
*
4373 gimple_omp_for_clauses_ptr (gimple gs
)
4375 gimple_statement_omp_for
*omp_for_stmt
=
4376 as_a
<gimple_statement_omp_for
*> (gs
);
4377 return &omp_for_stmt
->clauses
;
4381 /* Set CLAUSES to be the list of clauses associated with OMP_FOR GS. */
4384 gimple_omp_for_set_clauses (gimple gs
, tree clauses
)
4386 gimple_statement_omp_for
*omp_for_stmt
=
4387 as_a
<gimple_statement_omp_for
*> (gs
);
4388 omp_for_stmt
->clauses
= clauses
;
4392 /* Get the collapse count of OMP_FOR GS. */
4394 static inline size_t
4395 gimple_omp_for_collapse (gimple gs
)
4397 gimple_statement_omp_for
*omp_for_stmt
=
4398 as_a
<gimple_statement_omp_for
*> (gs
);
4399 return omp_for_stmt
->collapse
;
4403 /* Return the index variable for OMP_FOR GS. */
4406 gimple_omp_for_index (const_gimple gs
, size_t i
)
4408 const gimple_statement_omp_for
*omp_for_stmt
=
4409 as_a
<const gimple_statement_omp_for
*> (gs
);
4410 gcc_gimple_checking_assert (i
< omp_for_stmt
->collapse
);
4411 return omp_for_stmt
->iter
[i
].index
;
4415 /* Return a pointer to the index variable for OMP_FOR GS. */
4417 static inline tree
*
4418 gimple_omp_for_index_ptr (gimple gs
, size_t i
)
4420 gimple_statement_omp_for
*omp_for_stmt
=
4421 as_a
<gimple_statement_omp_for
*> (gs
);
4422 gcc_gimple_checking_assert (i
< omp_for_stmt
->collapse
);
4423 return &omp_for_stmt
->iter
[i
].index
;
4427 /* Set INDEX to be the index variable for OMP_FOR GS. */
4430 gimple_omp_for_set_index (gimple gs
, size_t i
, tree index
)
4432 gimple_statement_omp_for
*omp_for_stmt
=
4433 as_a
<gimple_statement_omp_for
*> (gs
);
4434 gcc_gimple_checking_assert (i
< omp_for_stmt
->collapse
);
4435 omp_for_stmt
->iter
[i
].index
= index
;
4439 /* Return the initial value for OMP_FOR GS. */
4442 gimple_omp_for_initial (const_gimple gs
, size_t i
)
4444 const gimple_statement_omp_for
*omp_for_stmt
=
4445 as_a
<const gimple_statement_omp_for
*> (gs
);
4446 gcc_gimple_checking_assert (i
< omp_for_stmt
->collapse
);
4447 return omp_for_stmt
->iter
[i
].initial
;
4451 /* Return a pointer to the initial value for OMP_FOR GS. */
4453 static inline tree
*
4454 gimple_omp_for_initial_ptr (gimple gs
, size_t i
)
4456 gimple_statement_omp_for
*omp_for_stmt
=
4457 as_a
<gimple_statement_omp_for
*> (gs
);
4458 gcc_gimple_checking_assert (i
< omp_for_stmt
->collapse
);
4459 return &omp_for_stmt
->iter
[i
].initial
;
4463 /* Set INITIAL to be the initial value for OMP_FOR GS. */
4466 gimple_omp_for_set_initial (gimple gs
, size_t i
, tree initial
)
4468 gimple_statement_omp_for
*omp_for_stmt
=
4469 as_a
<gimple_statement_omp_for
*> (gs
);
4470 gcc_gimple_checking_assert (i
< omp_for_stmt
->collapse
);
4471 omp_for_stmt
->iter
[i
].initial
= initial
;
4475 /* Return the final value for OMP_FOR GS. */
4478 gimple_omp_for_final (const_gimple gs
, size_t i
)
4480 const gimple_statement_omp_for
*omp_for_stmt
=
4481 as_a
<const gimple_statement_omp_for
*> (gs
);
4482 gcc_gimple_checking_assert (i
< omp_for_stmt
->collapse
);
4483 return omp_for_stmt
->iter
[i
].final
;
4487 /* Return a pointer to the final value for OMP_FOR GS. */
4489 static inline tree
*
4490 gimple_omp_for_final_ptr (gimple gs
, size_t i
)
4492 gimple_statement_omp_for
*omp_for_stmt
=
4493 as_a
<gimple_statement_omp_for
*> (gs
);
4494 gcc_gimple_checking_assert (i
< omp_for_stmt
->collapse
);
4495 return &omp_for_stmt
->iter
[i
].final
;
4499 /* Set FINAL to be the final value for OMP_FOR GS. */
4502 gimple_omp_for_set_final (gimple gs
, size_t i
, tree final
)
4504 gimple_statement_omp_for
*omp_for_stmt
=
4505 as_a
<gimple_statement_omp_for
*> (gs
);
4506 gcc_gimple_checking_assert (i
< omp_for_stmt
->collapse
);
4507 omp_for_stmt
->iter
[i
].final
= final
;
4511 /* Return the increment value for OMP_FOR GS. */
4514 gimple_omp_for_incr (const_gimple gs
, size_t i
)
4516 const gimple_statement_omp_for
*omp_for_stmt
=
4517 as_a
<const gimple_statement_omp_for
*> (gs
);
4518 gcc_gimple_checking_assert (i
< omp_for_stmt
->collapse
);
4519 return omp_for_stmt
->iter
[i
].incr
;
4523 /* Return a pointer to the increment value for OMP_FOR GS. */
4525 static inline tree
*
4526 gimple_omp_for_incr_ptr (gimple gs
, size_t i
)
4528 gimple_statement_omp_for
*omp_for_stmt
=
4529 as_a
<gimple_statement_omp_for
*> (gs
);
4530 gcc_gimple_checking_assert (i
< omp_for_stmt
->collapse
);
4531 return &omp_for_stmt
->iter
[i
].incr
;
4535 /* Set INCR to be the increment value for OMP_FOR GS. */
4538 gimple_omp_for_set_incr (gimple gs
, size_t i
, tree incr
)
4540 gimple_statement_omp_for
*omp_for_stmt
=
4541 as_a
<gimple_statement_omp_for
*> (gs
);
4542 gcc_gimple_checking_assert (i
< omp_for_stmt
->collapse
);
4543 omp_for_stmt
->iter
[i
].incr
= incr
;
4547 /* Return a pointer to the sequence of statements to execute before the OMP_FOR
4548 statement GS starts. */
4550 static inline gimple_seq
*
4551 gimple_omp_for_pre_body_ptr (gimple gs
)
4553 gimple_statement_omp_for
*omp_for_stmt
=
4554 as_a
<gimple_statement_omp_for
*> (gs
);
4555 return &omp_for_stmt
->pre_body
;
4559 /* Return the sequence of statements to execute before the OMP_FOR
4560 statement GS starts. */
4562 static inline gimple_seq
4563 gimple_omp_for_pre_body (gimple gs
)
4565 return *gimple_omp_for_pre_body_ptr (gs
);
4569 /* Set PRE_BODY to be the sequence of statements to execute before the
4570 OMP_FOR statement GS starts. */
4573 gimple_omp_for_set_pre_body (gimple gs
, gimple_seq pre_body
)
4575 gimple_statement_omp_for
*omp_for_stmt
=
4576 as_a
<gimple_statement_omp_for
*> (gs
);
4577 omp_for_stmt
->pre_body
= pre_body
;
4581 /* Return the clauses associated with OMP_PARALLEL GS. */
4584 gimple_omp_parallel_clauses (const_gimple gs
)
4586 const gimple_statement_omp_parallel
*omp_parallel_stmt
=
4587 as_a
<const gimple_statement_omp_parallel
*> (gs
);
4588 return omp_parallel_stmt
->clauses
;
4592 /* Return a pointer to the clauses associated with OMP_PARALLEL GS. */
4594 static inline tree
*
4595 gimple_omp_parallel_clauses_ptr (gimple gs
)
4597 gimple_statement_omp_parallel
*omp_parallel_stmt
=
4598 as_a
<gimple_statement_omp_parallel
*> (gs
);
4599 return &omp_parallel_stmt
->clauses
;
4603 /* Set CLAUSES to be the list of clauses associated with OMP_PARALLEL
4607 gimple_omp_parallel_set_clauses (gimple gs
, tree clauses
)
4609 gimple_statement_omp_parallel
*omp_parallel_stmt
=
4610 as_a
<gimple_statement_omp_parallel
*> (gs
);
4611 omp_parallel_stmt
->clauses
= clauses
;
4615 /* Return the child function used to hold the body of OMP_PARALLEL GS. */
4618 gimple_omp_parallel_child_fn (const_gimple gs
)
4620 const gimple_statement_omp_parallel
*omp_parallel_stmt
=
4621 as_a
<const gimple_statement_omp_parallel
*> (gs
);
4622 return omp_parallel_stmt
->child_fn
;
4625 /* Return a pointer to the child function used to hold the body of
4628 static inline tree
*
4629 gimple_omp_parallel_child_fn_ptr (gimple gs
)
4631 gimple_statement_omp_parallel
*omp_parallel_stmt
=
4632 as_a
<gimple_statement_omp_parallel
*> (gs
);
4633 return &omp_parallel_stmt
->child_fn
;
4637 /* Set CHILD_FN to be the child function for OMP_PARALLEL GS. */
4640 gimple_omp_parallel_set_child_fn (gimple gs
, tree child_fn
)
4642 gimple_statement_omp_parallel
*omp_parallel_stmt
=
4643 as_a
<gimple_statement_omp_parallel
*> (gs
);
4644 omp_parallel_stmt
->child_fn
= child_fn
;
4648 /* Return the artificial argument used to send variables and values
4649 from the parent to the children threads in OMP_PARALLEL GS. */
4652 gimple_omp_parallel_data_arg (const_gimple gs
)
4654 const gimple_statement_omp_parallel
*omp_parallel_stmt
=
4655 as_a
<const gimple_statement_omp_parallel
*> (gs
);
4656 return omp_parallel_stmt
->data_arg
;
4660 /* Return a pointer to the data argument for OMP_PARALLEL GS. */
4662 static inline tree
*
4663 gimple_omp_parallel_data_arg_ptr (gimple gs
)
4665 gimple_statement_omp_parallel
*omp_parallel_stmt
=
4666 as_a
<gimple_statement_omp_parallel
*> (gs
);
4667 return &omp_parallel_stmt
->data_arg
;
4671 /* Set DATA_ARG to be the data argument for OMP_PARALLEL GS. */
4674 gimple_omp_parallel_set_data_arg (gimple gs
, tree data_arg
)
4676 gimple_statement_omp_parallel
*omp_parallel_stmt
=
4677 as_a
<gimple_statement_omp_parallel
*> (gs
);
4678 omp_parallel_stmt
->data_arg
= data_arg
;
4682 /* Return the clauses associated with OMP_TASK GS. */
4685 gimple_omp_task_clauses (const_gimple gs
)
4687 const gimple_statement_omp_task
*omp_task_stmt
=
4688 as_a
<const gimple_statement_omp_task
*> (gs
);
4689 return omp_task_stmt
->clauses
;
4693 /* Return a pointer to the clauses associated with OMP_TASK GS. */
4695 static inline tree
*
4696 gimple_omp_task_clauses_ptr (gimple gs
)
4698 gimple_statement_omp_task
*omp_task_stmt
=
4699 as_a
<gimple_statement_omp_task
*> (gs
);
4700 return &omp_task_stmt
->clauses
;
4704 /* Set CLAUSES to be the list of clauses associated with OMP_TASK
4708 gimple_omp_task_set_clauses (gimple gs
, tree clauses
)
4710 gimple_statement_omp_task
*omp_task_stmt
=
4711 as_a
<gimple_statement_omp_task
*> (gs
);
4712 omp_task_stmt
->clauses
= clauses
;
4716 /* Return the child function used to hold the body of OMP_TASK GS. */
4719 gimple_omp_task_child_fn (const_gimple gs
)
4721 const gimple_statement_omp_task
*omp_task_stmt
=
4722 as_a
<const gimple_statement_omp_task
*> (gs
);
4723 return omp_task_stmt
->child_fn
;
4726 /* Return a pointer to the child function used to hold the body of
4729 static inline tree
*
4730 gimple_omp_task_child_fn_ptr (gimple gs
)
4732 gimple_statement_omp_task
*omp_task_stmt
=
4733 as_a
<gimple_statement_omp_task
*> (gs
);
4734 return &omp_task_stmt
->child_fn
;
4738 /* Set CHILD_FN to be the child function for OMP_TASK GS. */
4741 gimple_omp_task_set_child_fn (gimple gs
, tree child_fn
)
4743 gimple_statement_omp_task
*omp_task_stmt
=
4744 as_a
<gimple_statement_omp_task
*> (gs
);
4745 omp_task_stmt
->child_fn
= child_fn
;
4749 /* Return the artificial argument used to send variables and values
4750 from the parent to the children threads in OMP_TASK GS. */
4753 gimple_omp_task_data_arg (const_gimple gs
)
4755 const gimple_statement_omp_task
*omp_task_stmt
=
4756 as_a
<const gimple_statement_omp_task
*> (gs
);
4757 return omp_task_stmt
->data_arg
;
4761 /* Return a pointer to the data argument for OMP_TASK GS. */
4763 static inline tree
*
4764 gimple_omp_task_data_arg_ptr (gimple gs
)
4766 gimple_statement_omp_task
*omp_task_stmt
=
4767 as_a
<gimple_statement_omp_task
*> (gs
);
4768 return &omp_task_stmt
->data_arg
;
4772 /* Set DATA_ARG to be the data argument for OMP_TASK GS. */
4775 gimple_omp_task_set_data_arg (gimple gs
, tree data_arg
)
4777 gimple_statement_omp_task
*omp_task_stmt
=
4778 as_a
<gimple_statement_omp_task
*> (gs
);
4779 omp_task_stmt
->data_arg
= data_arg
;
4783 /* Return the clauses associated with OMP_TASK GS. */
4786 gimple_omp_taskreg_clauses (const_gimple gs
)
4788 const gimple_statement_omp_taskreg
*omp_taskreg_stmt
=
4789 as_a
<const gimple_statement_omp_taskreg
*> (gs
);
4790 return omp_taskreg_stmt
->clauses
;
4794 /* Return a pointer to the clauses associated with OMP_TASK GS. */
4796 static inline tree
*
4797 gimple_omp_taskreg_clauses_ptr (gimple gs
)
4799 gimple_statement_omp_taskreg
*omp_taskreg_stmt
=
4800 as_a
<gimple_statement_omp_taskreg
*> (gs
);
4801 return &omp_taskreg_stmt
->clauses
;
4805 /* Set CLAUSES to be the list of clauses associated with OMP_TASK
4809 gimple_omp_taskreg_set_clauses (gimple gs
, tree clauses
)
4811 gimple_statement_omp_taskreg
*omp_taskreg_stmt
=
4812 as_a
<gimple_statement_omp_taskreg
*> (gs
);
4813 omp_taskreg_stmt
->clauses
= clauses
;
4817 /* Return the child function used to hold the body of OMP_TASK GS. */
4820 gimple_omp_taskreg_child_fn (const_gimple gs
)
4822 const gimple_statement_omp_taskreg
*omp_taskreg_stmt
=
4823 as_a
<const gimple_statement_omp_taskreg
*> (gs
);
4824 return omp_taskreg_stmt
->child_fn
;
4827 /* Return a pointer to the child function used to hold the body of
4830 static inline tree
*
4831 gimple_omp_taskreg_child_fn_ptr (gimple gs
)
4833 gimple_statement_omp_taskreg
*omp_taskreg_stmt
=
4834 as_a
<gimple_statement_omp_taskreg
*> (gs
);
4835 return &omp_taskreg_stmt
->child_fn
;
4839 /* Set CHILD_FN to be the child function for OMP_TASK GS. */
4842 gimple_omp_taskreg_set_child_fn (gimple gs
, tree child_fn
)
4844 gimple_statement_omp_taskreg
*omp_taskreg_stmt
=
4845 as_a
<gimple_statement_omp_taskreg
*> (gs
);
4846 omp_taskreg_stmt
->child_fn
= child_fn
;
4850 /* Return the artificial argument used to send variables and values
4851 from the parent to the children threads in OMP_TASK GS. */
4854 gimple_omp_taskreg_data_arg (const_gimple gs
)
4856 const gimple_statement_omp_taskreg
*omp_taskreg_stmt
=
4857 as_a
<const gimple_statement_omp_taskreg
*> (gs
);
4858 return omp_taskreg_stmt
->data_arg
;
4862 /* Return a pointer to the data argument for OMP_TASK GS. */
4864 static inline tree
*
4865 gimple_omp_taskreg_data_arg_ptr (gimple gs
)
4867 gimple_statement_omp_taskreg
*omp_taskreg_stmt
=
4868 as_a
<gimple_statement_omp_taskreg
*> (gs
);
4869 return &omp_taskreg_stmt
->data_arg
;
4873 /* Set DATA_ARG to be the data argument for OMP_TASK GS. */
4876 gimple_omp_taskreg_set_data_arg (gimple gs
, tree data_arg
)
4878 gimple_statement_omp_taskreg
*omp_taskreg_stmt
=
4879 as_a
<gimple_statement_omp_taskreg
*> (gs
);
4880 omp_taskreg_stmt
->data_arg
= data_arg
;
4884 /* Return the copy function used to hold the body of OMP_TASK GS. */
4887 gimple_omp_task_copy_fn (const_gimple gs
)
4889 const gimple_statement_omp_task
*omp_task_stmt
=
4890 as_a
<const gimple_statement_omp_task
*> (gs
);
4891 return omp_task_stmt
->copy_fn
;
4894 /* Return a pointer to the copy function used to hold the body of
4897 static inline tree
*
4898 gimple_omp_task_copy_fn_ptr (gimple gs
)
4900 gimple_statement_omp_task
*omp_task_stmt
=
4901 as_a
<gimple_statement_omp_task
*> (gs
);
4902 return &omp_task_stmt
->copy_fn
;
4906 /* Set CHILD_FN to be the copy function for OMP_TASK GS. */
4909 gimple_omp_task_set_copy_fn (gimple gs
, tree copy_fn
)
4911 gimple_statement_omp_task
*omp_task_stmt
=
4912 as_a
<gimple_statement_omp_task
*> (gs
);
4913 omp_task_stmt
->copy_fn
= copy_fn
;
4917 /* Return size of the data block in bytes in OMP_TASK GS. */
4920 gimple_omp_task_arg_size (const_gimple gs
)
4922 const gimple_statement_omp_task
*omp_task_stmt
=
4923 as_a
<const gimple_statement_omp_task
*> (gs
);
4924 return omp_task_stmt
->arg_size
;
4928 /* Return a pointer to the data block size for OMP_TASK GS. */
4930 static inline tree
*
4931 gimple_omp_task_arg_size_ptr (gimple gs
)
4933 gimple_statement_omp_task
*omp_task_stmt
=
4934 as_a
<gimple_statement_omp_task
*> (gs
);
4935 return &omp_task_stmt
->arg_size
;
4939 /* Set ARG_SIZE to be the data block size for OMP_TASK GS. */
4942 gimple_omp_task_set_arg_size (gimple gs
, tree arg_size
)
4944 gimple_statement_omp_task
*omp_task_stmt
=
4945 as_a
<gimple_statement_omp_task
*> (gs
);
4946 omp_task_stmt
->arg_size
= arg_size
;
4950 /* Return align of the data block in bytes in OMP_TASK GS. */
4953 gimple_omp_task_arg_align (const_gimple gs
)
4955 const gimple_statement_omp_task
*omp_task_stmt
=
4956 as_a
<const gimple_statement_omp_task
*> (gs
);
4957 return omp_task_stmt
->arg_align
;
4961 /* Return a pointer to the data block align for OMP_TASK GS. */
4963 static inline tree
*
4964 gimple_omp_task_arg_align_ptr (gimple gs
)
4966 gimple_statement_omp_task
*omp_task_stmt
=
4967 as_a
<gimple_statement_omp_task
*> (gs
);
4968 return &omp_task_stmt
->arg_align
;
4972 /* Set ARG_SIZE to be the data block align for OMP_TASK GS. */
4975 gimple_omp_task_set_arg_align (gimple gs
, tree arg_align
)
4977 gimple_statement_omp_task
*omp_task_stmt
=
4978 as_a
<gimple_statement_omp_task
*> (gs
);
4979 omp_task_stmt
->arg_align
= arg_align
;
4983 /* Return the clauses associated with OMP_SINGLE GS. */
4986 gimple_omp_single_clauses (const_gimple gs
)
4988 const gimple_statement_omp_single
*omp_single_stmt
=
4989 as_a
<const gimple_statement_omp_single
*> (gs
);
4990 return omp_single_stmt
->clauses
;
4994 /* Return a pointer to the clauses associated with OMP_SINGLE GS. */
4996 static inline tree
*
4997 gimple_omp_single_clauses_ptr (gimple gs
)
4999 gimple_statement_omp_single
*omp_single_stmt
=
5000 as_a
<gimple_statement_omp_single
*> (gs
);
5001 return &omp_single_stmt
->clauses
;
5005 /* Set CLAUSES to be the clauses associated with OMP_SINGLE GS. */
5008 gimple_omp_single_set_clauses (gimple gs
, tree clauses
)
5010 gimple_statement_omp_single
*omp_single_stmt
=
5011 as_a
<gimple_statement_omp_single
*> (gs
);
5012 omp_single_stmt
->clauses
= clauses
;
5016 /* Return the clauses associated with OMP_TARGET GS. */
5019 gimple_omp_target_clauses (const_gimple gs
)
5021 const gimple_statement_omp_target
*omp_target_stmt
=
5022 as_a
<const gimple_statement_omp_target
*> (gs
);
5023 return omp_target_stmt
->clauses
;
5027 /* Return a pointer to the clauses associated with OMP_TARGET GS. */
5029 static inline tree
*
5030 gimple_omp_target_clauses_ptr (gimple gs
)
5032 gimple_statement_omp_target
*omp_target_stmt
=
5033 as_a
<gimple_statement_omp_target
*> (gs
);
5034 return &omp_target_stmt
->clauses
;
5038 /* Set CLAUSES to be the clauses associated with OMP_TARGET GS. */
5041 gimple_omp_target_set_clauses (gimple gs
, tree clauses
)
5043 gimple_statement_omp_target
*omp_target_stmt
=
5044 as_a
<gimple_statement_omp_target
*> (gs
);
5045 omp_target_stmt
->clauses
= clauses
;
5049 /* Return the kind of OMP target statemement. */
5052 gimple_omp_target_kind (const_gimple g
)
5054 GIMPLE_CHECK (g
, GIMPLE_OMP_TARGET
);
5055 return (gimple_omp_subcode (g
) & GF_OMP_TARGET_KIND_MASK
);
5059 /* Set the OMP target kind. */
5062 gimple_omp_target_set_kind (gimple g
, int kind
)
5064 GIMPLE_CHECK (g
, GIMPLE_OMP_TARGET
);
5065 g
->subcode
= (g
->subcode
& ~GF_OMP_TARGET_KIND_MASK
)
5066 | (kind
& GF_OMP_TARGET_KIND_MASK
);
5070 /* Return the child function used to hold the body of OMP_TARGET GS. */
5073 gimple_omp_target_child_fn (const_gimple gs
)
5075 const gimple_statement_omp_target
*omp_target_stmt
=
5076 as_a
<const gimple_statement_omp_target
*> (gs
);
5077 return omp_target_stmt
->child_fn
;
5080 /* Return a pointer to the child function used to hold the body of
5083 static inline tree
*
5084 gimple_omp_target_child_fn_ptr (gimple gs
)
5086 gimple_statement_omp_target
*omp_target_stmt
=
5087 as_a
<gimple_statement_omp_target
*> (gs
);
5088 return &omp_target_stmt
->child_fn
;
5092 /* Set CHILD_FN to be the child function for OMP_TARGET GS. */
5095 gimple_omp_target_set_child_fn (gimple gs
, tree child_fn
)
5097 gimple_statement_omp_target
*omp_target_stmt
=
5098 as_a
<gimple_statement_omp_target
*> (gs
);
5099 omp_target_stmt
->child_fn
= child_fn
;
5103 /* Return the artificial argument used to send variables and values
5104 from the parent to the children threads in OMP_TARGET GS. */
5107 gimple_omp_target_data_arg (const_gimple gs
)
5109 const gimple_statement_omp_target
*omp_target_stmt
=
5110 as_a
<const gimple_statement_omp_target
*> (gs
);
5111 return omp_target_stmt
->data_arg
;
5115 /* Return a pointer to the data argument for OMP_TARGET GS. */
5117 static inline tree
*
5118 gimple_omp_target_data_arg_ptr (gimple gs
)
5120 gimple_statement_omp_target
*omp_target_stmt
=
5121 as_a
<gimple_statement_omp_target
*> (gs
);
5122 return &omp_target_stmt
->data_arg
;
5126 /* Set DATA_ARG to be the data argument for OMP_TARGET GS. */
5129 gimple_omp_target_set_data_arg (gimple gs
, tree data_arg
)
5131 gimple_statement_omp_target
*omp_target_stmt
=
5132 as_a
<gimple_statement_omp_target
*> (gs
);
5133 omp_target_stmt
->data_arg
= data_arg
;
5137 /* Return the clauses associated with OMP_TEAMS GS. */
5140 gimple_omp_teams_clauses (const_gimple gs
)
5142 const gimple_statement_omp_teams
*omp_teams_stmt
=
5143 as_a
<const gimple_statement_omp_teams
*> (gs
);
5144 return omp_teams_stmt
->clauses
;
5148 /* Return a pointer to the clauses associated with OMP_TEAMS GS. */
5150 static inline tree
*
5151 gimple_omp_teams_clauses_ptr (gimple gs
)
5153 gimple_statement_omp_teams
*omp_teams_stmt
=
5154 as_a
<gimple_statement_omp_teams
*> (gs
);
5155 return &omp_teams_stmt
->clauses
;
5159 /* Set CLAUSES to be the clauses associated with OMP_TEAMS GS. */
5162 gimple_omp_teams_set_clauses (gimple gs
, tree clauses
)
5164 gimple_statement_omp_teams
*omp_teams_stmt
=
5165 as_a
<gimple_statement_omp_teams
*> (gs
);
5166 omp_teams_stmt
->clauses
= clauses
;
5170 /* Return the clauses associated with OMP_SECTIONS GS. */
5173 gimple_omp_sections_clauses (const_gimple gs
)
5175 const gimple_statement_omp_sections
*omp_sections_stmt
=
5176 as_a
<const gimple_statement_omp_sections
*> (gs
);
5177 return omp_sections_stmt
->clauses
;
5181 /* Return a pointer to the clauses associated with OMP_SECTIONS GS. */
5183 static inline tree
*
5184 gimple_omp_sections_clauses_ptr (gimple gs
)
5186 gimple_statement_omp_sections
*omp_sections_stmt
=
5187 as_a
<gimple_statement_omp_sections
*> (gs
);
5188 return &omp_sections_stmt
->clauses
;
5192 /* Set CLAUSES to be the set of clauses associated with OMP_SECTIONS
5196 gimple_omp_sections_set_clauses (gimple gs
, tree clauses
)
5198 gimple_statement_omp_sections
*omp_sections_stmt
=
5199 as_a
<gimple_statement_omp_sections
*> (gs
);
5200 omp_sections_stmt
->clauses
= clauses
;
5204 /* Return the control variable associated with the GIMPLE_OMP_SECTIONS
5208 gimple_omp_sections_control (const_gimple gs
)
5210 const gimple_statement_omp_sections
*omp_sections_stmt
=
5211 as_a
<const gimple_statement_omp_sections
*> (gs
);
5212 return omp_sections_stmt
->control
;
5216 /* Return a pointer to the clauses associated with the GIMPLE_OMP_SECTIONS
5219 static inline tree
*
5220 gimple_omp_sections_control_ptr (gimple gs
)
5222 gimple_statement_omp_sections
*omp_sections_stmt
=
5223 as_a
<gimple_statement_omp_sections
*> (gs
);
5224 return &omp_sections_stmt
->control
;
5228 /* Set CONTROL to be the set of clauses associated with the
5229 GIMPLE_OMP_SECTIONS in GS. */
5232 gimple_omp_sections_set_control (gimple gs
, tree control
)
5234 gimple_statement_omp_sections
*omp_sections_stmt
=
5235 as_a
<gimple_statement_omp_sections
*> (gs
);
5236 omp_sections_stmt
->control
= control
;
5240 /* Set COND to be the condition code for OMP_FOR GS. */
5243 gimple_omp_for_set_cond (gimple gs
, size_t i
, enum tree_code cond
)
5245 gimple_statement_omp_for
*omp_for_stmt
=
5246 as_a
<gimple_statement_omp_for
*> (gs
);
5247 gcc_gimple_checking_assert (TREE_CODE_CLASS (cond
) == tcc_comparison
5248 && i
< omp_for_stmt
->collapse
);
5249 omp_for_stmt
->iter
[i
].cond
= cond
;
5253 /* Return the condition code associated with OMP_FOR GS. */
5255 static inline enum tree_code
5256 gimple_omp_for_cond (const_gimple gs
, size_t i
)
5258 const gimple_statement_omp_for
*omp_for_stmt
=
5259 as_a
<const gimple_statement_omp_for
*> (gs
);
5260 gcc_gimple_checking_assert (i
< omp_for_stmt
->collapse
);
5261 return omp_for_stmt
->iter
[i
].cond
;
5265 /* Set the value being stored in an atomic store. */
5268 gimple_omp_atomic_store_set_val (gimple g
, tree val
)
5270 gimple_statement_omp_atomic_store
*omp_atomic_store_stmt
=
5271 as_a
<gimple_statement_omp_atomic_store
*> (g
);
5272 omp_atomic_store_stmt
->val
= val
;
5276 /* Return the value being stored in an atomic store. */
5279 gimple_omp_atomic_store_val (const_gimple g
)
5281 const gimple_statement_omp_atomic_store
*omp_atomic_store_stmt
=
5282 as_a
<const gimple_statement_omp_atomic_store
*> (g
);
5283 return omp_atomic_store_stmt
->val
;
5287 /* Return a pointer to the value being stored in an atomic store. */
5289 static inline tree
*
5290 gimple_omp_atomic_store_val_ptr (gimple g
)
5292 gimple_statement_omp_atomic_store
*omp_atomic_store_stmt
=
5293 as_a
<gimple_statement_omp_atomic_store
*> (g
);
5294 return &omp_atomic_store_stmt
->val
;
5298 /* Set the LHS of an atomic load. */
5301 gimple_omp_atomic_load_set_lhs (gimple g
, tree lhs
)
5303 gimple_statement_omp_atomic_load
*omp_atomic_load_stmt
=
5304 as_a
<gimple_statement_omp_atomic_load
*> (g
);
5305 omp_atomic_load_stmt
->lhs
= lhs
;
5309 /* Get the LHS of an atomic load. */
5312 gimple_omp_atomic_load_lhs (const_gimple g
)
5314 const gimple_statement_omp_atomic_load
*omp_atomic_load_stmt
=
5315 as_a
<const gimple_statement_omp_atomic_load
*> (g
);
5316 return omp_atomic_load_stmt
->lhs
;
5320 /* Return a pointer to the LHS of an atomic load. */
5322 static inline tree
*
5323 gimple_omp_atomic_load_lhs_ptr (gimple g
)
5325 gimple_statement_omp_atomic_load
*omp_atomic_load_stmt
=
5326 as_a
<gimple_statement_omp_atomic_load
*> (g
);
5327 return &omp_atomic_load_stmt
->lhs
;
5331 /* Set the RHS of an atomic load. */
5334 gimple_omp_atomic_load_set_rhs (gimple g
, tree rhs
)
5336 gimple_statement_omp_atomic_load
*omp_atomic_load_stmt
=
5337 as_a
<gimple_statement_omp_atomic_load
*> (g
);
5338 omp_atomic_load_stmt
->rhs
= rhs
;
5342 /* Get the RHS of an atomic load. */
5345 gimple_omp_atomic_load_rhs (const_gimple g
)
5347 const gimple_statement_omp_atomic_load
*omp_atomic_load_stmt
=
5348 as_a
<const gimple_statement_omp_atomic_load
*> (g
);
5349 return omp_atomic_load_stmt
->rhs
;
5353 /* Return a pointer to the RHS of an atomic load. */
5355 static inline tree
*
5356 gimple_omp_atomic_load_rhs_ptr (gimple g
)
5358 gimple_statement_omp_atomic_load
*omp_atomic_load_stmt
=
5359 as_a
<gimple_statement_omp_atomic_load
*> (g
);
5360 return &omp_atomic_load_stmt
->rhs
;
5364 /* Get the definition of the control variable in a GIMPLE_OMP_CONTINUE. */
5367 gimple_omp_continue_control_def (const_gimple g
)
5369 const gimple_statement_omp_continue
*omp_continue_stmt
=
5370 as_a
<const gimple_statement_omp_continue
*> (g
);
5371 return omp_continue_stmt
->control_def
;
5374 /* The same as above, but return the address. */
5376 static inline tree
*
5377 gimple_omp_continue_control_def_ptr (gimple g
)
5379 gimple_statement_omp_continue
*omp_continue_stmt
=
5380 as_a
<gimple_statement_omp_continue
*> (g
);
5381 return &omp_continue_stmt
->control_def
;
5384 /* Set the definition of the control variable in a GIMPLE_OMP_CONTINUE. */
5387 gimple_omp_continue_set_control_def (gimple g
, tree def
)
5389 gimple_statement_omp_continue
*omp_continue_stmt
=
5390 as_a
<gimple_statement_omp_continue
*> (g
);
5391 omp_continue_stmt
->control_def
= def
;
5395 /* Get the use of the control variable in a GIMPLE_OMP_CONTINUE. */
5398 gimple_omp_continue_control_use (const_gimple g
)
5400 const gimple_statement_omp_continue
*omp_continue_stmt
=
5401 as_a
<const gimple_statement_omp_continue
*> (g
);
5402 return omp_continue_stmt
->control_use
;
5406 /* The same as above, but return the address. */
5408 static inline tree
*
5409 gimple_omp_continue_control_use_ptr (gimple g
)
5411 gimple_statement_omp_continue
*omp_continue_stmt
=
5412 as_a
<gimple_statement_omp_continue
*> (g
);
5413 return &omp_continue_stmt
->control_use
;
5417 /* Set the use of the control variable in a GIMPLE_OMP_CONTINUE. */
5420 gimple_omp_continue_set_control_use (gimple g
, tree use
)
5422 gimple_statement_omp_continue
*omp_continue_stmt
=
5423 as_a
<gimple_statement_omp_continue
*> (g
);
5424 omp_continue_stmt
->control_use
= use
;
5427 /* Return a pointer to the body for the GIMPLE_TRANSACTION statement GS. */
5429 static inline gimple_seq
*
5430 gimple_transaction_body_ptr (gimple gs
)
5432 gimple_statement_transaction
*transaction_stmt
=
5433 as_a
<gimple_statement_transaction
*> (gs
);
5434 return &transaction_stmt
->body
;
5437 /* Return the body for the GIMPLE_TRANSACTION statement GS. */
5439 static inline gimple_seq
5440 gimple_transaction_body (gimple gs
)
5442 return *gimple_transaction_body_ptr (gs
);
5445 /* Return the label associated with a GIMPLE_TRANSACTION. */
5448 gimple_transaction_label (const_gimple gs
)
5450 const gimple_statement_transaction
*transaction_stmt
=
5451 as_a
<const gimple_statement_transaction
*> (gs
);
5452 return transaction_stmt
->label
;
5455 static inline tree
*
5456 gimple_transaction_label_ptr (gimple gs
)
5458 gimple_statement_transaction
*transaction_stmt
=
5459 as_a
<gimple_statement_transaction
*> (gs
);
5460 return &transaction_stmt
->label
;
5463 /* Return the subcode associated with a GIMPLE_TRANSACTION. */
5465 static inline unsigned int
5466 gimple_transaction_subcode (const_gimple gs
)
5468 GIMPLE_CHECK (gs
, GIMPLE_TRANSACTION
);
5472 /* Set BODY to be the body for the GIMPLE_TRANSACTION statement GS. */
5475 gimple_transaction_set_body (gimple gs
, gimple_seq body
)
5477 gimple_statement_transaction
*transaction_stmt
=
5478 as_a
<gimple_statement_transaction
*> (gs
);
5479 transaction_stmt
->body
= body
;
5482 /* Set the label associated with a GIMPLE_TRANSACTION. */
5485 gimple_transaction_set_label (gimple gs
, tree label
)
5487 gimple_statement_transaction
*transaction_stmt
=
5488 as_a
<gimple_statement_transaction
*> (gs
);
5489 transaction_stmt
->label
= label
;
5492 /* Set the subcode associated with a GIMPLE_TRANSACTION. */
5495 gimple_transaction_set_subcode (gimple gs
, unsigned int subcode
)
5497 GIMPLE_CHECK (gs
, GIMPLE_TRANSACTION
);
5498 gs
->subcode
= subcode
;
5502 /* Return a pointer to the return value for GIMPLE_RETURN GS. */
5504 static inline tree
*
5505 gimple_return_retval_ptr (const_gimple gs
)
5507 GIMPLE_CHECK (gs
, GIMPLE_RETURN
);
5508 return gimple_op_ptr (gs
, 0);
5511 /* Return the return value for GIMPLE_RETURN GS. */
5514 gimple_return_retval (const_gimple gs
)
5516 GIMPLE_CHECK (gs
, GIMPLE_RETURN
);
5517 return gimple_op (gs
, 0);
5521 /* Set RETVAL to be the return value for GIMPLE_RETURN GS. */
5524 gimple_return_set_retval (gimple gs
, tree retval
)
5526 GIMPLE_CHECK (gs
, GIMPLE_RETURN
);
5527 gimple_set_op (gs
, 0, retval
);
5531 /* Returns true when the gimple statement STMT is any of the OpenMP types. */
5533 #define CASE_GIMPLE_OMP \
5534 case GIMPLE_OMP_PARALLEL: \
5535 case GIMPLE_OMP_TASK: \
5536 case GIMPLE_OMP_FOR: \
5537 case GIMPLE_OMP_SECTIONS: \
5538 case GIMPLE_OMP_SECTIONS_SWITCH: \
5539 case GIMPLE_OMP_SINGLE: \
5540 case GIMPLE_OMP_TARGET: \
5541 case GIMPLE_OMP_TEAMS: \
5542 case GIMPLE_OMP_SECTION: \
5543 case GIMPLE_OMP_MASTER: \
5544 case GIMPLE_OMP_TASKGROUP: \
5545 case GIMPLE_OMP_ORDERED: \
5546 case GIMPLE_OMP_CRITICAL: \
5547 case GIMPLE_OMP_RETURN: \
5548 case GIMPLE_OMP_ATOMIC_LOAD: \
5549 case GIMPLE_OMP_ATOMIC_STORE: \
5550 case GIMPLE_OMP_CONTINUE
5553 is_gimple_omp (const_gimple stmt
)
5555 switch (gimple_code (stmt
))
5565 /* Returns TRUE if statement G is a GIMPLE_NOP. */
5568 gimple_nop_p (const_gimple g
)
5570 return gimple_code (g
) == GIMPLE_NOP
;
5574 /* Return true if GS is a GIMPLE_RESX. */
5577 is_gimple_resx (const_gimple gs
)
5579 return gimple_code (gs
) == GIMPLE_RESX
;
5582 /* Return the predictor of GIMPLE_PREDICT statement GS. */
5584 static inline enum br_predictor
5585 gimple_predict_predictor (gimple gs
)
5587 GIMPLE_CHECK (gs
, GIMPLE_PREDICT
);
5588 return (enum br_predictor
) (gs
->subcode
& ~GF_PREDICT_TAKEN
);
5592 /* Set the predictor of GIMPLE_PREDICT statement GS to PREDICT. */
5595 gimple_predict_set_predictor (gimple gs
, enum br_predictor predictor
)
5597 GIMPLE_CHECK (gs
, GIMPLE_PREDICT
);
5598 gs
->subcode
= (gs
->subcode
& GF_PREDICT_TAKEN
)
5599 | (unsigned) predictor
;
5603 /* Return the outcome of GIMPLE_PREDICT statement GS. */
5605 static inline enum prediction
5606 gimple_predict_outcome (gimple gs
)
5608 GIMPLE_CHECK (gs
, GIMPLE_PREDICT
);
5609 return (gs
->subcode
& GF_PREDICT_TAKEN
) ? TAKEN
: NOT_TAKEN
;
5613 /* Set the outcome of GIMPLE_PREDICT statement GS to OUTCOME. */
5616 gimple_predict_set_outcome (gimple gs
, enum prediction outcome
)
5618 GIMPLE_CHECK (gs
, GIMPLE_PREDICT
);
5619 if (outcome
== TAKEN
)
5620 gs
->subcode
|= GF_PREDICT_TAKEN
;
5622 gs
->subcode
&= ~GF_PREDICT_TAKEN
;
5626 /* Return the type of the main expression computed by STMT. Return
5627 void_type_node if the statement computes nothing. */
5630 gimple_expr_type (const_gimple stmt
)
5632 enum gimple_code code
= gimple_code (stmt
);
5634 if (code
== GIMPLE_ASSIGN
|| code
== GIMPLE_CALL
)
5637 /* In general we want to pass out a type that can be substituted
5638 for both the RHS and the LHS types if there is a possibly
5639 useless conversion involved. That means returning the
5640 original RHS type as far as we can reconstruct it. */
5641 if (code
== GIMPLE_CALL
)
5643 if (gimple_call_internal_p (stmt
)
5644 && gimple_call_internal_fn (stmt
) == IFN_MASK_STORE
)
5645 type
= TREE_TYPE (gimple_call_arg (stmt
, 3));
5647 type
= gimple_call_return_type (stmt
);
5650 switch (gimple_assign_rhs_code (stmt
))
5652 case POINTER_PLUS_EXPR
:
5653 type
= TREE_TYPE (gimple_assign_rhs1 (stmt
));
5657 /* As fallback use the type of the LHS. */
5658 type
= TREE_TYPE (gimple_get_lhs (stmt
));
5663 else if (code
== GIMPLE_COND
)
5664 return boolean_type_node
;
5666 return void_type_node
;
5669 /* Enum and arrays used for allocation stats. Keep in sync with
5670 gimple.c:gimple_alloc_kind_names. */
5671 enum gimple_alloc_kind
5673 gimple_alloc_kind_assign
, /* Assignments. */
5674 gimple_alloc_kind_phi
, /* PHI nodes. */
5675 gimple_alloc_kind_cond
, /* Conditionals. */
5676 gimple_alloc_kind_rest
, /* Everything else. */
5677 gimple_alloc_kind_all
5680 extern int gimple_alloc_counts
[];
5681 extern int gimple_alloc_sizes
[];
5683 /* Return the allocation kind for a given stmt CODE. */
5684 static inline enum gimple_alloc_kind
5685 gimple_alloc_kind (enum gimple_code code
)
5690 return gimple_alloc_kind_assign
;
5692 return gimple_alloc_kind_phi
;
5694 return gimple_alloc_kind_cond
;
5696 return gimple_alloc_kind_rest
;
5700 /* Return true if a location should not be emitted for this statement
5701 by annotate_all_with_location. */
5704 gimple_do_not_emit_location_p (gimple g
)
5706 return gimple_plf (g
, GF_PLF_1
);
5709 /* Mark statement G so a location will not be emitted by
5710 annotate_one_with_location. */
5713 gimple_set_do_not_emit_location (gimple g
)
5715 /* The PLF flags are initialized to 0 when a new tuple is created,
5716 so no need to initialize it anywhere. */
5717 gimple_set_plf (g
, GF_PLF_1
, true);
5721 /* Macros for showing usage statistics. */
5722 #define SCALE(x) ((unsigned long) ((x) < 1024*10 \
5724 : ((x) < 1024*1024*10 \
5726 : (x) / (1024*1024))))
5728 #define LABEL(x) ((x) < 1024*10 ? 'b' : ((x) < 1024*1024*10 ? 'k' : 'M'))
5730 #endif /* GCC_GIMPLE_H */