31370.cc: Skip this test on powerpc64-*-freebsd*.
[official-gcc.git] / gcc / gimple.h
blob92edd181059c178375cade8b6f7af8cc41282747
1 /* Gimple IR definitions.
3 Copyright 2007, 2008, 2009, 2010, 2011, 2012 Free Software Foundation, Inc.
4 Contributed by Aldy Hernandez <aldyh@redhat.com>
6 This file is part of GCC.
8 GCC is free software; you can redistribute it and/or modify it under
9 the terms of the GNU General Public License as published by the Free
10 Software Foundation; either version 3, or (at your option) any later
11 version.
13 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
14 WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16 for more details.
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING3. If not see
20 <http://www.gnu.org/licenses/>. */
22 #ifndef GCC_GIMPLE_H
23 #define GCC_GIMPLE_H
25 #include "pointer-set.h"
26 #include "vec.h"
27 #include "vecprim.h"
28 #include "vecir.h"
29 #include "ggc.h"
30 #include "basic-block.h"
31 #include "tree-ssa-operands.h"
32 #include "tree-ssa-alias.h"
33 #include "internal-fn.h"
35 struct gimple_seq_node_d;
36 typedef struct gimple_seq_node_d *gimple_seq_node;
37 typedef const struct gimple_seq_node_d *const_gimple_seq_node;
39 /* For each block, the PHI nodes that need to be rewritten are stored into
40 these vectors. */
41 typedef VEC(gimple, heap) *gimple_vec;
42 DEF_VEC_P (gimple_vec);
43 DEF_VEC_ALLOC_P (gimple_vec, heap);
45 enum gimple_code {
46 #define DEFGSCODE(SYM, STRING, STRUCT) SYM,
47 #include "gimple.def"
48 #undef DEFGSCODE
49 LAST_AND_UNUSED_GIMPLE_CODE
52 extern const char *const gimple_code_name[];
53 extern const unsigned char gimple_rhs_class_table[];
55 /* Error out if a gimple tuple is addressed incorrectly. */
56 #if defined ENABLE_GIMPLE_CHECKING
57 #define gcc_gimple_checking_assert(EXPR) gcc_assert (EXPR)
58 extern void gimple_check_failed (const_gimple, const char *, int, \
59 const char *, enum gimple_code, \
60 enum tree_code) ATTRIBUTE_NORETURN;
62 #define GIMPLE_CHECK(GS, CODE) \
63 do { \
64 const_gimple __gs = (GS); \
65 if (gimple_code (__gs) != (CODE)) \
66 gimple_check_failed (__gs, __FILE__, __LINE__, __FUNCTION__, \
67 (CODE), ERROR_MARK); \
68 } while (0)
69 #else /* not ENABLE_GIMPLE_CHECKING */
70 #define gcc_gimple_checking_assert(EXPR) ((void)(0 && (EXPR)))
71 #define GIMPLE_CHECK(GS, CODE) (void)0
72 #endif
74 /* Class of GIMPLE expressions suitable for the RHS of assignments. See
75 get_gimple_rhs_class. */
76 enum gimple_rhs_class
78 GIMPLE_INVALID_RHS, /* The expression cannot be used on the RHS. */
79 GIMPLE_TERNARY_RHS, /* The expression is a ternary operation. */
80 GIMPLE_BINARY_RHS, /* The expression is a binary operation. */
81 GIMPLE_UNARY_RHS, /* The expression is a unary operation. */
82 GIMPLE_SINGLE_RHS /* The expression is a single object (an SSA
83 name, a _DECL, a _REF, etc. */
86 /* Specific flags for individual GIMPLE statements. These flags are
87 always stored in gimple_statement_base.subcode and they may only be
88 defined for statement codes that do not use sub-codes.
90 Values for the masks can overlap as long as the overlapping values
91 are never used in the same statement class.
93 The maximum mask value that can be defined is 1 << 15 (i.e., each
94 statement code can hold up to 16 bitflags).
96 Keep this list sorted. */
97 enum gf_mask {
98 GF_ASM_INPUT = 1 << 0,
99 GF_ASM_VOLATILE = 1 << 1,
100 GF_CALL_FROM_THUNK = 1 << 0,
101 GF_CALL_RETURN_SLOT_OPT = 1 << 1,
102 GF_CALL_TAILCALL = 1 << 2,
103 GF_CALL_VA_ARG_PACK = 1 << 3,
104 GF_CALL_NOTHROW = 1 << 4,
105 GF_CALL_ALLOCA_FOR_VAR = 1 << 5,
106 GF_CALL_INTERNAL = 1 << 6,
107 GF_OMP_PARALLEL_COMBINED = 1 << 0,
109 /* True on an GIMPLE_OMP_RETURN statement if the return does not require
110 a thread synchronization via some sort of barrier. The exact barrier
111 that would otherwise be emitted is dependent on the OMP statement with
112 which this return is associated. */
113 GF_OMP_RETURN_NOWAIT = 1 << 0,
115 GF_OMP_SECTION_LAST = 1 << 0,
116 GF_OMP_ATOMIC_NEED_VALUE = 1 << 0,
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. */
131 enum plf_mask {
132 GF_PLF_1 = 1 << 0,
133 GF_PLF_2 = 1 << 1
136 /* A node in a gimple_seq_d. */
137 struct GTY((chain_next ("%h.next"), chain_prev ("%h.prev"))) gimple_seq_node_d {
138 gimple stmt;
139 struct gimple_seq_node_d *prev;
140 struct gimple_seq_node_d *next;
143 /* A double-linked sequence of gimple statements. */
144 struct GTY ((chain_next ("%h.next_free"))) gimple_seq_d {
145 /* First and last statements in the sequence. */
146 gimple_seq_node first;
147 gimple_seq_node last;
149 /* Sequences are created/destroyed frequently. To minimize
150 allocation activity, deallocated sequences are kept in a pool of
151 available sequences. This is the pointer to the next free
152 sequence in the pool. */
153 gimple_seq next_free;
157 /* Return the first node in GIMPLE sequence S. */
159 static inline gimple_seq_node
160 gimple_seq_first (const_gimple_seq s)
162 return s ? s->first : NULL;
166 /* Return the first statement in GIMPLE sequence S. */
168 static inline gimple
169 gimple_seq_first_stmt (const_gimple_seq s)
171 gimple_seq_node n = gimple_seq_first (s);
172 return (n) ? n->stmt : NULL;
176 /* Return the last node in GIMPLE sequence S. */
178 static inline gimple_seq_node
179 gimple_seq_last (const_gimple_seq s)
181 return s ? s->last : NULL;
185 /* Return the last statement in GIMPLE sequence S. */
187 static inline gimple
188 gimple_seq_last_stmt (const_gimple_seq s)
190 gimple_seq_node n = gimple_seq_last (s);
191 return (n) ? n->stmt : NULL;
195 /* Set the last node in GIMPLE sequence S to LAST. */
197 static inline void
198 gimple_seq_set_last (gimple_seq s, gimple_seq_node last)
200 s->last = last;
204 /* Set the first node in GIMPLE sequence S to FIRST. */
206 static inline void
207 gimple_seq_set_first (gimple_seq s, gimple_seq_node first)
209 s->first = first;
213 /* Return true if GIMPLE sequence S is empty. */
215 static inline bool
216 gimple_seq_empty_p (const_gimple_seq s)
218 return s == NULL || s->first == NULL;
222 void gimple_seq_add_stmt (gimple_seq *, gimple);
224 /* Link gimple statement GS to the end of the sequence *SEQ_P. If
225 *SEQ_P is NULL, a new sequence is allocated. This function is
226 similar to gimple_seq_add_stmt, but does not scan the operands.
227 During gimplification, we need to manipulate statement sequences
228 before the def/use vectors have been constructed. */
229 void gimple_seq_add_stmt_without_update (gimple_seq *, gimple);
231 /* Allocate a new sequence and initialize its first element with STMT. */
233 static inline gimple_seq
234 gimple_seq_alloc_with_stmt (gimple stmt)
236 gimple_seq seq = NULL;
237 gimple_seq_add_stmt (&seq, stmt);
238 return seq;
242 /* Returns the sequence of statements in BB. */
244 static inline gimple_seq
245 bb_seq (const_basic_block bb)
247 return (!(bb->flags & BB_RTL) && bb->il.gimple) ? bb->il.gimple->seq : NULL;
251 /* Sets the sequence of statements in BB to SEQ. */
253 static inline void
254 set_bb_seq (basic_block bb, gimple_seq seq)
256 gcc_checking_assert (!(bb->flags & BB_RTL));
257 bb->il.gimple->seq = seq;
260 /* Iterator object for GIMPLE statement sequences. */
262 typedef struct
264 /* Sequence node holding the current statement. */
265 gimple_seq_node ptr;
267 /* Sequence and basic block holding the statement. These fields
268 are necessary to handle edge cases such as when statement is
269 added to an empty basic block or when the last statement of a
270 block/sequence is removed. */
271 gimple_seq seq;
272 basic_block bb;
273 } gimple_stmt_iterator;
276 /* Data structure definitions for GIMPLE tuples. NOTE: word markers
277 are for 64 bit hosts. */
279 struct GTY(()) gimple_statement_base {
280 /* [ WORD 1 ]
281 Main identifying code for a tuple. */
282 ENUM_BITFIELD(gimple_code) code : 8;
284 /* Nonzero if a warning should not be emitted on this tuple. */
285 unsigned int no_warning : 1;
287 /* Nonzero if this tuple has been visited. Passes are responsible
288 for clearing this bit before using it. */
289 unsigned int visited : 1;
291 /* Nonzero if this tuple represents a non-temporal move. */
292 unsigned int nontemporal_move : 1;
294 /* Pass local flags. These flags are free for any pass to use as
295 they see fit. Passes should not assume that these flags contain
296 any useful value when the pass starts. Any initial state that
297 the pass requires should be set on entry to the pass. See
298 gimple_set_plf and gimple_plf for usage. */
299 unsigned int plf : 2;
301 /* Nonzero if this statement has been modified and needs to have its
302 operands rescanned. */
303 unsigned modified : 1;
305 /* Nonzero if this statement contains volatile operands. */
306 unsigned has_volatile_ops : 1;
308 /* Nonzero if this statement appears inside a transaction. This bit
309 is calculated on de-mand and has relevant information only after
310 it has been calculated with compute_transaction_bits. */
311 unsigned in_transaction : 1;
313 /* The SUBCODE field can be used for tuple-specific flags for tuples
314 that do not require subcodes. Note that SUBCODE should be at
315 least as wide as tree codes, as several tuples store tree codes
316 in there. */
317 unsigned int subcode : 16;
319 /* UID of this statement. This is used by passes that want to
320 assign IDs to statements. It must be assigned and used by each
321 pass. By default it should be assumed to contain garbage. */
322 unsigned uid;
324 /* [ WORD 2 ]
325 Locus information for debug info. */
326 location_t location;
328 /* Number of operands in this tuple. */
329 unsigned num_ops;
331 /* [ WORD 3 ]
332 Basic block holding this statement. */
333 struct basic_block_def *bb;
335 /* [ WORD 4 ]
336 Lexical block holding this statement. */
337 tree block;
341 /* Base structure for tuples with operands. */
343 struct GTY(()) gimple_statement_with_ops_base
345 /* [ WORD 1-4 ] */
346 struct gimple_statement_base gsbase;
348 /* [ WORD 5-6 ]
349 SSA operand vectors. NOTE: It should be possible to
350 amalgamate these vectors with the operand vector OP. However,
351 the SSA operand vectors are organized differently and contain
352 more information (like immediate use chaining). */
353 struct def_optype_d GTY((skip (""))) *def_ops;
354 struct use_optype_d GTY((skip (""))) *use_ops;
358 /* Statements that take register operands. */
360 struct GTY(()) gimple_statement_with_ops
362 /* [ WORD 1-6 ] */
363 struct gimple_statement_with_ops_base opbase;
365 /* [ WORD 7 ]
366 Operand vector. NOTE! This must always be the last field
367 of this structure. In particular, this means that this
368 structure cannot be embedded inside another one. */
369 tree GTY((length ("%h.opbase.gsbase.num_ops"))) op[1];
373 /* Base for statements that take both memory and register operands. */
375 struct GTY(()) gimple_statement_with_memory_ops_base
377 /* [ WORD 1-6 ] */
378 struct gimple_statement_with_ops_base opbase;
380 /* [ WORD 7-8 ]
381 Virtual operands for this statement. The GC will pick them
382 up via the ssa_names array. */
383 tree GTY((skip (""))) vdef;
384 tree GTY((skip (""))) vuse;
388 /* Statements that take both memory and register operands. */
390 struct GTY(()) gimple_statement_with_memory_ops
392 /* [ WORD 1-8 ] */
393 struct gimple_statement_with_memory_ops_base membase;
395 /* [ WORD 9 ]
396 Operand vector. NOTE! This must always be the last field
397 of this structure. In particular, this means that this
398 structure cannot be embedded inside another one. */
399 tree GTY((length ("%h.membase.opbase.gsbase.num_ops"))) op[1];
403 /* Call statements that take both memory and register operands. */
405 struct GTY(()) gimple_statement_call
407 /* [ WORD 1-8 ] */
408 struct gimple_statement_with_memory_ops_base membase;
410 /* [ WORD 9-12 ] */
411 struct pt_solution call_used;
412 struct pt_solution call_clobbered;
414 /* [ WORD 13 ] */
415 union GTY ((desc ("%1.membase.opbase.gsbase.subcode & GF_CALL_INTERNAL"))) {
416 tree GTY ((tag ("0"))) fntype;
417 enum internal_fn GTY ((tag ("GF_CALL_INTERNAL"))) internal_fn;
418 } u;
420 /* [ WORD 14 ]
421 Operand vector. NOTE! This must always be the last field
422 of this structure. In particular, this means that this
423 structure cannot be embedded inside another one. */
424 tree GTY((length ("%h.membase.opbase.gsbase.num_ops"))) op[1];
428 /* OpenMP statements (#pragma omp). */
430 struct GTY(()) gimple_statement_omp {
431 /* [ WORD 1-4 ] */
432 struct gimple_statement_base gsbase;
434 /* [ WORD 5 ] */
435 gimple_seq body;
439 /* GIMPLE_BIND */
441 struct GTY(()) gimple_statement_bind {
442 /* [ WORD 1-4 ] */
443 struct gimple_statement_base gsbase;
445 /* [ WORD 5 ]
446 Variables declared in this scope. */
447 tree vars;
449 /* [ WORD 6 ]
450 This is different than the BLOCK field in gimple_statement_base,
451 which is analogous to TREE_BLOCK (i.e., the lexical block holding
452 this statement). This field is the equivalent of BIND_EXPR_BLOCK
453 in tree land (i.e., the lexical scope defined by this bind). See
454 gimple-low.c. */
455 tree block;
457 /* [ WORD 7 ] */
458 gimple_seq body;
462 /* GIMPLE_CATCH */
464 struct GTY(()) gimple_statement_catch {
465 /* [ WORD 1-4 ] */
466 struct gimple_statement_base gsbase;
468 /* [ WORD 5 ] */
469 tree types;
471 /* [ WORD 6 ] */
472 gimple_seq handler;
476 /* GIMPLE_EH_FILTER */
478 struct GTY(()) gimple_statement_eh_filter {
479 /* [ WORD 1-4 ] */
480 struct gimple_statement_base gsbase;
482 /* [ WORD 5 ]
483 Filter types. */
484 tree types;
486 /* [ WORD 6 ]
487 Failure actions. */
488 gimple_seq failure;
491 /* GIMPLE_EH_ELSE */
493 struct GTY(()) gimple_statement_eh_else {
494 /* [ WORD 1-4 ] */
495 struct gimple_statement_base gsbase;
497 /* [ WORD 5,6 ] */
498 gimple_seq n_body, e_body;
501 /* GIMPLE_EH_MUST_NOT_THROW */
503 struct GTY(()) gimple_statement_eh_mnt {
504 /* [ WORD 1-4 ] */
505 struct gimple_statement_base gsbase;
507 /* [ WORD 5 ] Abort function decl. */
508 tree fndecl;
511 /* GIMPLE_PHI */
513 struct GTY(()) gimple_statement_phi {
514 /* [ WORD 1-4 ] */
515 struct gimple_statement_base gsbase;
517 /* [ WORD 5 ] */
518 unsigned capacity;
519 unsigned nargs;
521 /* [ WORD 6 ] */
522 tree result;
524 /* [ WORD 7 ] */
525 struct phi_arg_d GTY ((length ("%h.nargs"))) args[1];
529 /* GIMPLE_RESX, GIMPLE_EH_DISPATCH */
531 struct GTY(()) gimple_statement_eh_ctrl
533 /* [ WORD 1-4 ] */
534 struct gimple_statement_base gsbase;
536 /* [ WORD 5 ]
537 Exception region number. */
538 int region;
542 /* GIMPLE_TRY */
544 struct GTY(()) gimple_statement_try {
545 /* [ WORD 1-4 ] */
546 struct gimple_statement_base gsbase;
548 /* [ WORD 5 ]
549 Expression to evaluate. */
550 gimple_seq eval;
552 /* [ WORD 6 ]
553 Cleanup expression. */
554 gimple_seq cleanup;
557 /* Kind of GIMPLE_TRY statements. */
558 enum gimple_try_flags
560 /* A try/catch. */
561 GIMPLE_TRY_CATCH = 1 << 0,
563 /* A try/finally. */
564 GIMPLE_TRY_FINALLY = 1 << 1,
565 GIMPLE_TRY_KIND = GIMPLE_TRY_CATCH | GIMPLE_TRY_FINALLY,
567 /* Analogous to TRY_CATCH_IS_CLEANUP. */
568 GIMPLE_TRY_CATCH_IS_CLEANUP = 1 << 2
571 /* GIMPLE_WITH_CLEANUP_EXPR */
573 struct GTY(()) gimple_statement_wce {
574 /* [ WORD 1-4 ] */
575 struct gimple_statement_base gsbase;
577 /* Subcode: CLEANUP_EH_ONLY. True if the cleanup should only be
578 executed if an exception is thrown, not on normal exit of its
579 scope. This flag is analogous to the CLEANUP_EH_ONLY flag
580 in TARGET_EXPRs. */
582 /* [ WORD 5 ]
583 Cleanup expression. */
584 gimple_seq cleanup;
588 /* GIMPLE_ASM */
590 struct GTY(()) gimple_statement_asm
592 /* [ WORD 1-8 ] */
593 struct gimple_statement_with_memory_ops_base membase;
595 /* [ WORD 9 ]
596 __asm__ statement. */
597 const char *string;
599 /* [ WORD 10 ]
600 Number of inputs, outputs, clobbers, labels. */
601 unsigned char ni;
602 unsigned char no;
603 unsigned char nc;
604 unsigned char nl;
606 /* [ WORD 11 ]
607 Operand vector. NOTE! This must always be the last field
608 of this structure. In particular, this means that this
609 structure cannot be embedded inside another one. */
610 tree GTY((length ("%h.membase.opbase.gsbase.num_ops"))) op[1];
613 /* GIMPLE_OMP_CRITICAL */
615 struct GTY(()) gimple_statement_omp_critical {
616 /* [ WORD 1-5 ] */
617 struct gimple_statement_omp omp;
619 /* [ WORD 6 ]
620 Critical section name. */
621 tree name;
625 struct GTY(()) gimple_omp_for_iter {
626 /* Condition code. */
627 enum tree_code cond;
629 /* Index variable. */
630 tree index;
632 /* Initial value. */
633 tree initial;
635 /* Final value. */
636 tree final;
638 /* Increment. */
639 tree incr;
642 /* GIMPLE_OMP_FOR */
644 struct GTY(()) gimple_statement_omp_for {
645 /* [ WORD 1-5 ] */
646 struct gimple_statement_omp omp;
648 /* [ WORD 6 ] */
649 tree clauses;
651 /* [ WORD 7 ]
652 Number of elements in iter array. */
653 size_t collapse;
655 /* [ WORD 8 ] */
656 struct gimple_omp_for_iter * GTY((length ("%h.collapse"))) iter;
658 /* [ WORD 9 ]
659 Pre-body evaluated before the loop body begins. */
660 gimple_seq pre_body;
664 /* GIMPLE_OMP_PARALLEL */
666 struct GTY(()) gimple_statement_omp_parallel {
667 /* [ WORD 1-5 ] */
668 struct gimple_statement_omp omp;
670 /* [ WORD 6 ]
671 Clauses. */
672 tree clauses;
674 /* [ WORD 7 ]
675 Child function holding the body of the parallel region. */
676 tree child_fn;
678 /* [ WORD 8 ]
679 Shared data argument. */
680 tree data_arg;
684 /* GIMPLE_OMP_TASK */
686 struct GTY(()) gimple_statement_omp_task {
687 /* [ WORD 1-8 ] */
688 struct gimple_statement_omp_parallel par;
690 /* [ WORD 9 ]
691 Child function holding firstprivate initialization if needed. */
692 tree copy_fn;
694 /* [ WORD 10-11 ]
695 Size and alignment in bytes of the argument data block. */
696 tree arg_size;
697 tree arg_align;
701 /* GIMPLE_OMP_SECTION */
702 /* Uses struct gimple_statement_omp. */
705 /* GIMPLE_OMP_SECTIONS */
707 struct GTY(()) gimple_statement_omp_sections {
708 /* [ WORD 1-5 ] */
709 struct gimple_statement_omp omp;
711 /* [ WORD 6 ] */
712 tree clauses;
714 /* [ WORD 7 ]
715 The control variable used for deciding which of the sections to
716 execute. */
717 tree control;
720 /* GIMPLE_OMP_CONTINUE.
722 Note: This does not inherit from gimple_statement_omp, because we
723 do not need the body field. */
725 struct GTY(()) gimple_statement_omp_continue {
726 /* [ WORD 1-4 ] */
727 struct gimple_statement_base gsbase;
729 /* [ WORD 5 ] */
730 tree control_def;
732 /* [ WORD 6 ] */
733 tree control_use;
736 /* GIMPLE_OMP_SINGLE */
738 struct GTY(()) gimple_statement_omp_single {
739 /* [ WORD 1-5 ] */
740 struct gimple_statement_omp omp;
742 /* [ WORD 6 ] */
743 tree clauses;
747 /* GIMPLE_OMP_ATOMIC_LOAD.
748 Note: This is based on gimple_statement_base, not g_s_omp, because g_s_omp
749 contains a sequence, which we don't need here. */
751 struct GTY(()) gimple_statement_omp_atomic_load {
752 /* [ WORD 1-4 ] */
753 struct gimple_statement_base gsbase;
755 /* [ WORD 5-6 ] */
756 tree rhs, lhs;
759 /* GIMPLE_OMP_ATOMIC_STORE.
760 See note on GIMPLE_OMP_ATOMIC_LOAD. */
762 struct GTY(()) gimple_statement_omp_atomic_store {
763 /* [ WORD 1-4 ] */
764 struct gimple_statement_base gsbase;
766 /* [ WORD 5 ] */
767 tree val;
770 /* GIMPLE_TRANSACTION. */
772 /* Bits to be stored in the GIMPLE_TRANSACTION subcode. */
774 /* The __transaction_atomic was declared [[outer]] or it is
775 __transaction_relaxed. */
776 #define GTMA_IS_OUTER (1u << 0)
777 #define GTMA_IS_RELAXED (1u << 1)
778 #define GTMA_DECLARATION_MASK (GTMA_IS_OUTER | GTMA_IS_RELAXED)
780 /* The transaction is seen to not have an abort. */
781 #define GTMA_HAVE_ABORT (1u << 2)
782 /* The transaction is seen to have loads or stores. */
783 #define GTMA_HAVE_LOAD (1u << 3)
784 #define GTMA_HAVE_STORE (1u << 4)
785 /* The transaction MAY enter serial irrevocable mode in its dynamic scope. */
786 #define GTMA_MAY_ENTER_IRREVOCABLE (1u << 5)
787 /* The transaction WILL enter serial irrevocable mode.
788 An irrevocable block post-dominates the entire transaction, such
789 that all invocations of the transaction will go serial-irrevocable.
790 In such case, we don't bother instrumenting the transaction, and
791 tell the runtime that it should begin the transaction in
792 serial-irrevocable mode. */
793 #define GTMA_DOES_GO_IRREVOCABLE (1u << 6)
795 struct GTY(()) gimple_statement_transaction
797 /* [ WORD 1-10 ] */
798 struct gimple_statement_with_memory_ops_base gsbase;
800 /* [ WORD 11 ] */
801 gimple_seq body;
803 /* [ WORD 12 ] */
804 tree label;
807 #define DEFGSSTRUCT(SYM, STRUCT, HAS_TREE_OP) SYM,
808 enum gimple_statement_structure_enum {
809 #include "gsstruct.def"
810 LAST_GSS_ENUM
812 #undef DEFGSSTRUCT
815 /* Define the overall contents of a gimple tuple. It may be any of the
816 structures declared above for various types of tuples. */
818 union GTY ((desc ("gimple_statement_structure (&%h)"), variable_size)) gimple_statement_d {
819 struct gimple_statement_base GTY ((tag ("GSS_BASE"))) gsbase;
820 struct gimple_statement_with_ops GTY ((tag ("GSS_WITH_OPS"))) gsops;
821 struct gimple_statement_with_memory_ops_base GTY ((tag ("GSS_WITH_MEM_OPS_BASE"))) gsmembase;
822 struct gimple_statement_with_memory_ops GTY ((tag ("GSS_WITH_MEM_OPS"))) gsmem;
823 struct gimple_statement_call GTY ((tag ("GSS_CALL"))) gimple_call;
824 struct gimple_statement_omp GTY ((tag ("GSS_OMP"))) omp;
825 struct gimple_statement_bind GTY ((tag ("GSS_BIND"))) gimple_bind;
826 struct gimple_statement_catch GTY ((tag ("GSS_CATCH"))) gimple_catch;
827 struct gimple_statement_eh_filter GTY ((tag ("GSS_EH_FILTER"))) gimple_eh_filter;
828 struct gimple_statement_eh_mnt GTY ((tag ("GSS_EH_MNT"))) gimple_eh_mnt;
829 struct gimple_statement_eh_else GTY ((tag ("GSS_EH_ELSE"))) gimple_eh_else;
830 struct gimple_statement_phi GTY ((tag ("GSS_PHI"))) gimple_phi;
831 struct gimple_statement_eh_ctrl GTY ((tag ("GSS_EH_CTRL"))) gimple_eh_ctrl;
832 struct gimple_statement_try GTY ((tag ("GSS_TRY"))) gimple_try;
833 struct gimple_statement_wce GTY ((tag ("GSS_WCE"))) gimple_wce;
834 struct gimple_statement_asm GTY ((tag ("GSS_ASM"))) gimple_asm;
835 struct gimple_statement_omp_critical GTY ((tag ("GSS_OMP_CRITICAL"))) gimple_omp_critical;
836 struct gimple_statement_omp_for GTY ((tag ("GSS_OMP_FOR"))) gimple_omp_for;
837 struct gimple_statement_omp_parallel GTY ((tag ("GSS_OMP_PARALLEL"))) gimple_omp_parallel;
838 struct gimple_statement_omp_task GTY ((tag ("GSS_OMP_TASK"))) gimple_omp_task;
839 struct gimple_statement_omp_sections GTY ((tag ("GSS_OMP_SECTIONS"))) gimple_omp_sections;
840 struct gimple_statement_omp_single GTY ((tag ("GSS_OMP_SINGLE"))) gimple_omp_single;
841 struct gimple_statement_omp_continue GTY ((tag ("GSS_OMP_CONTINUE"))) gimple_omp_continue;
842 struct gimple_statement_omp_atomic_load GTY ((tag ("GSS_OMP_ATOMIC_LOAD"))) gimple_omp_atomic_load;
843 struct gimple_statement_omp_atomic_store GTY ((tag ("GSS_OMP_ATOMIC_STORE"))) gimple_omp_atomic_store;
844 struct gimple_statement_transaction GTY((tag ("GSS_TRANSACTION"))) gimple_transaction;
847 /* In gimple.c. */
849 /* Offset in bytes to the location of the operand vector.
850 Zero if there is no operand vector for this tuple structure. */
851 extern size_t const gimple_ops_offset_[];
853 /* Map GIMPLE codes to GSS codes. */
854 extern enum gimple_statement_structure_enum const gss_for_code_[];
856 /* This variable holds the currently expanded gimple statement for purposes
857 of comminucating the profile info to the builtin expanders. */
858 extern gimple currently_expanding_gimple_stmt;
860 gimple gimple_build_return (tree);
862 gimple gimple_build_assign_stat (tree, tree MEM_STAT_DECL);
863 #define gimple_build_assign(l,r) gimple_build_assign_stat (l, r MEM_STAT_INFO)
865 void extract_ops_from_tree_1 (tree, enum tree_code *, tree *, tree *, tree *);
867 gimple gimple_build_assign_with_ops_stat (enum tree_code, tree, tree,
868 tree, tree MEM_STAT_DECL);
869 #define gimple_build_assign_with_ops(c,o1,o2,o3) \
870 gimple_build_assign_with_ops_stat (c, o1, o2, o3, NULL_TREE MEM_STAT_INFO)
871 #define gimple_build_assign_with_ops3(c,o1,o2,o3,o4) \
872 gimple_build_assign_with_ops_stat (c, o1, o2, o3, o4 MEM_STAT_INFO)
874 gimple gimple_build_debug_bind_stat (tree, tree, gimple MEM_STAT_DECL);
875 #define gimple_build_debug_bind(var,val,stmt) \
876 gimple_build_debug_bind_stat ((var), (val), (stmt) MEM_STAT_INFO)
877 gimple gimple_build_debug_source_bind_stat (tree, tree, gimple MEM_STAT_DECL);
878 #define gimple_build_debug_source_bind(var,val,stmt) \
879 gimple_build_debug_source_bind_stat ((var), (val), (stmt) MEM_STAT_INFO)
881 gimple gimple_build_call_vec (tree, VEC(tree, heap) *);
882 gimple gimple_build_call (tree, unsigned, ...);
883 gimple gimple_build_call_valist (tree, unsigned, va_list);
884 gimple gimple_build_call_internal (enum internal_fn, unsigned, ...);
885 gimple gimple_build_call_internal_vec (enum internal_fn, VEC(tree, heap) *);
886 gimple gimple_build_call_from_tree (tree);
887 gimple gimplify_assign (tree, tree, gimple_seq *);
888 gimple gimple_build_cond (enum tree_code, tree, tree, tree, tree);
889 gimple gimple_build_label (tree label);
890 gimple gimple_build_goto (tree dest);
891 gimple gimple_build_nop (void);
892 gimple gimple_build_bind (tree, gimple_seq, tree);
893 gimple gimple_build_asm_vec (const char *, VEC(tree,gc) *, VEC(tree,gc) *,
894 VEC(tree,gc) *, VEC(tree,gc) *);
895 gimple gimple_build_catch (tree, gimple_seq);
896 gimple gimple_build_eh_filter (tree, gimple_seq);
897 gimple gimple_build_eh_must_not_throw (tree);
898 gimple gimple_build_eh_else (gimple_seq, gimple_seq);
899 gimple gimple_build_try (gimple_seq, gimple_seq, enum gimple_try_flags);
900 gimple gimple_build_wce (gimple_seq);
901 gimple gimple_build_resx (int);
902 gimple gimple_build_eh_dispatch (int);
903 gimple gimple_build_switch_nlabels (unsigned, tree, tree);
904 gimple gimple_build_switch (unsigned, tree, tree, ...);
905 gimple gimple_build_switch_vec (tree, tree, VEC(tree,heap) *);
906 gimple gimple_build_omp_parallel (gimple_seq, tree, tree, tree);
907 gimple gimple_build_omp_task (gimple_seq, tree, tree, tree, tree, tree, tree);
908 gimple gimple_build_omp_for (gimple_seq, tree, size_t, gimple_seq);
909 gimple gimple_build_omp_critical (gimple_seq, tree);
910 gimple gimple_build_omp_section (gimple_seq);
911 gimple gimple_build_omp_continue (tree, tree);
912 gimple gimple_build_omp_master (gimple_seq);
913 gimple gimple_build_omp_return (bool);
914 gimple gimple_build_omp_ordered (gimple_seq);
915 gimple gimple_build_omp_sections (gimple_seq, tree);
916 gimple gimple_build_omp_sections_switch (void);
917 gimple gimple_build_omp_single (gimple_seq, tree);
918 gimple gimple_build_cdt (tree, tree);
919 gimple gimple_build_omp_atomic_load (tree, tree);
920 gimple gimple_build_omp_atomic_store (tree);
921 gimple gimple_build_transaction (gimple_seq, tree);
922 gimple gimple_build_predict (enum br_predictor, enum prediction);
923 enum gimple_statement_structure_enum gss_for_assign (enum tree_code);
924 void sort_case_labels (VEC(tree,heap) *);
925 void gimple_set_body (tree, gimple_seq);
926 gimple_seq gimple_body (tree);
927 bool gimple_has_body_p (tree);
928 gimple_seq gimple_seq_alloc (void);
929 void gimple_seq_free (gimple_seq);
930 void gimple_seq_add_seq (gimple_seq *, gimple_seq);
931 gimple_seq gimple_seq_copy (gimple_seq);
932 bool gimple_call_same_target_p (const_gimple, const_gimple);
933 int gimple_call_flags (const_gimple);
934 int gimple_call_return_flags (const_gimple);
935 int gimple_call_arg_flags (const_gimple, unsigned);
936 void gimple_call_reset_alias_info (gimple);
937 bool gimple_assign_copy_p (gimple);
938 bool gimple_assign_ssa_name_copy_p (gimple);
939 bool gimple_assign_unary_nop_p (gimple);
940 void gimple_set_bb (gimple, struct basic_block_def *);
941 void gimple_assign_set_rhs_from_tree (gimple_stmt_iterator *, tree);
942 void gimple_assign_set_rhs_with_ops_1 (gimple_stmt_iterator *, enum tree_code,
943 tree, tree, tree);
944 tree gimple_get_lhs (const_gimple);
945 void gimple_set_lhs (gimple, tree);
946 void gimple_replace_lhs (gimple, tree);
947 gimple gimple_copy (gimple);
948 void gimple_set_modified (gimple, bool);
949 void gimple_cond_get_ops_from_tree (tree, enum tree_code *, tree *, tree *);
950 gimple gimple_build_cond_from_tree (tree, tree, tree);
951 void gimple_cond_set_condition_from_tree (gimple, tree);
952 bool gimple_has_side_effects (const_gimple);
953 bool gimple_could_trap_p (gimple);
954 bool gimple_could_trap_p_1 (gimple, bool, bool);
955 bool gimple_assign_rhs_could_trap_p (gimple);
956 void gimple_regimplify_operands (gimple, gimple_stmt_iterator *);
957 bool empty_body_p (gimple_seq);
958 unsigned get_gimple_rhs_num_ops (enum tree_code);
959 #define gimple_alloc(c, n) gimple_alloc_stat (c, n MEM_STAT_INFO)
960 gimple gimple_alloc_stat (enum gimple_code, unsigned MEM_STAT_DECL);
961 const char *gimple_decl_printable_name (tree, int);
962 tree gimple_get_virt_method_for_binfo (HOST_WIDE_INT, tree);
963 void gimple_adjust_this_by_delta (gimple_stmt_iterator *, tree);
964 tree gimple_extract_devirt_binfo_from_cst (tree);
965 /* Returns true iff T is a valid GIMPLE statement. */
966 extern bool is_gimple_stmt (tree);
968 /* Returns true iff T is a scalar register variable. */
969 extern bool is_gimple_reg (tree);
970 /* Returns true iff T is any sort of variable. */
971 extern bool is_gimple_variable (tree);
972 /* Returns true iff T is any sort of symbol. */
973 extern bool is_gimple_id (tree);
974 /* Returns true iff T is a variable or an INDIRECT_REF (of a variable). */
975 extern bool is_gimple_min_lval (tree);
976 /* Returns true iff T is something whose address can be taken. */
977 extern bool is_gimple_addressable (tree);
978 /* Returns true iff T is any valid GIMPLE lvalue. */
979 extern bool is_gimple_lvalue (tree);
981 /* Returns true iff T is a GIMPLE address. */
982 bool is_gimple_address (const_tree);
983 /* Returns true iff T is a GIMPLE invariant address. */
984 bool is_gimple_invariant_address (const_tree);
985 /* Returns true iff T is a GIMPLE invariant address at interprocedural
986 level. */
987 bool is_gimple_ip_invariant_address (const_tree);
988 /* Returns true iff T is a valid GIMPLE constant. */
989 bool is_gimple_constant (const_tree);
990 /* Returns true iff T is a GIMPLE restricted function invariant. */
991 extern bool is_gimple_min_invariant (const_tree);
992 /* Returns true iff T is a GIMPLE restricted interprecodural invariant. */
993 extern bool is_gimple_ip_invariant (const_tree);
994 /* Returns true iff T is a GIMPLE rvalue. */
995 extern bool is_gimple_val (tree);
996 /* Returns true iff T is a GIMPLE asm statement input. */
997 extern bool is_gimple_asm_val (tree);
998 /* Returns true iff T is a valid address operand of a MEM_REF. */
999 bool is_gimple_mem_ref_addr (tree);
1000 /* Returns true iff T is a valid rhs for a MODIFY_EXPR where the LHS is a
1001 GIMPLE temporary, a renamed user variable, or something else,
1002 respectively. */
1003 extern bool is_gimple_reg_rhs (tree);
1004 extern bool is_gimple_mem_rhs (tree);
1006 /* Returns true iff T is a valid if-statement condition. */
1007 extern bool is_gimple_condexpr (tree);
1009 /* Returns true iff T is a valid call address expression. */
1010 extern bool is_gimple_call_addr (tree);
1012 extern void recalculate_side_effects (tree);
1013 extern bool gimple_compare_field_offset (tree, tree);
1014 extern tree gimple_register_type (tree);
1015 extern tree gimple_register_canonical_type (tree);
1016 extern void print_gimple_types_stats (void);
1017 extern void free_gimple_type_tables (void);
1018 extern tree gimple_unsigned_type (tree);
1019 extern tree gimple_signed_type (tree);
1020 extern alias_set_type gimple_get_alias_set (tree);
1021 extern void count_uses_and_derefs (tree, gimple, unsigned *, unsigned *,
1022 unsigned *);
1023 extern bool walk_stmt_load_store_addr_ops (gimple, void *,
1024 bool (*)(gimple, tree, void *),
1025 bool (*)(gimple, tree, void *),
1026 bool (*)(gimple, tree, void *));
1027 extern bool walk_stmt_load_store_ops (gimple, void *,
1028 bool (*)(gimple, tree, void *),
1029 bool (*)(gimple, tree, void *));
1030 extern bool gimple_ior_addresses_taken (bitmap, gimple);
1031 extern bool gimple_call_builtin_p (gimple, enum built_in_function);
1032 extern bool gimple_asm_clobbers_memory_p (const_gimple);
1034 /* In gimplify.c */
1035 extern tree create_tmp_var_raw (tree, const char *);
1036 extern tree create_tmp_var_name (const char *);
1037 extern tree create_tmp_var (tree, const char *);
1038 extern tree create_tmp_reg (tree, const char *);
1039 extern tree get_initialized_tmp_var (tree, gimple_seq *, gimple_seq *);
1040 extern tree get_formal_tmp_var (tree, gimple_seq *);
1041 extern void declare_vars (tree, gimple, bool);
1042 extern void annotate_all_with_location (gimple_seq, location_t);
1044 /* Validation of GIMPLE expressions. Note that these predicates only check
1045 the basic form of the expression, they don't recurse to make sure that
1046 underlying nodes are also of the right form. */
1047 typedef bool (*gimple_predicate)(tree);
1050 /* FIXME we should deduce this from the predicate. */
1051 enum fallback {
1052 fb_none = 0, /* Do not generate a temporary. */
1054 fb_rvalue = 1, /* Generate an rvalue to hold the result of a
1055 gimplified expression. */
1057 fb_lvalue = 2, /* Generate an lvalue to hold the result of a
1058 gimplified expression. */
1060 fb_mayfail = 4, /* Gimplification may fail. Error issued
1061 afterwards. */
1062 fb_either= fb_rvalue | fb_lvalue
1065 typedef int fallback_t;
1067 enum gimplify_status {
1068 GS_ERROR = -2, /* Something Bad Seen. */
1069 GS_UNHANDLED = -1, /* A langhook result for "I dunno". */
1070 GS_OK = 0, /* We did something, maybe more to do. */
1071 GS_ALL_DONE = 1 /* The expression is fully gimplified. */
1074 struct gimplify_ctx
1076 struct gimplify_ctx *prev_context;
1078 VEC(gimple,heap) *bind_expr_stack;
1079 tree temps;
1080 gimple_seq conditional_cleanups;
1081 tree exit_label;
1082 tree return_temp;
1084 VEC(tree,heap) *case_labels;
1085 /* The formal temporary table. Should this be persistent? */
1086 htab_t temp_htab;
1088 int conditions;
1089 bool save_stack;
1090 bool into_ssa;
1091 bool allow_rhs_cond_expr;
1092 bool in_cleanup_point_expr;
1095 extern enum gimplify_status gimplify_expr (tree *, gimple_seq *, gimple_seq *,
1096 bool (*) (tree), fallback_t);
1097 extern void gimplify_type_sizes (tree, gimple_seq *);
1098 extern void gimplify_one_sizepos (tree *, gimple_seq *);
1099 extern bool gimplify_stmt (tree *, gimple_seq *);
1100 extern gimple gimplify_body (tree, bool);
1101 extern void push_gimplify_context (struct gimplify_ctx *);
1102 extern void pop_gimplify_context (gimple);
1103 extern void gimplify_and_add (tree, gimple_seq *);
1105 /* Miscellaneous helpers. */
1106 extern void gimple_add_tmp_var (tree);
1107 extern gimple gimple_current_bind_expr (void);
1108 extern VEC(gimple, heap) *gimple_bind_expr_stack (void);
1109 extern tree voidify_wrapper_expr (tree, tree);
1110 extern tree build_and_jump (tree *);
1111 extern tree force_labels_r (tree *, int *, void *);
1112 extern enum gimplify_status gimplify_va_arg_expr (tree *, gimple_seq *,
1113 gimple_seq *);
1114 struct gimplify_omp_ctx;
1115 extern void omp_firstprivatize_variable (struct gimplify_omp_ctx *, tree);
1116 extern tree gimple_boolify (tree);
1117 extern gimple_predicate rhs_predicate_for (tree);
1118 extern tree canonicalize_cond_expr_cond (tree);
1120 /* In omp-low.c. */
1121 extern tree omp_reduction_init (tree, tree);
1123 /* In trans-mem.c. */
1124 extern void diagnose_tm_safe_errors (tree);
1125 extern void compute_transaction_bits (void);
1127 /* In tree-nested.c. */
1128 extern void lower_nested_functions (tree);
1129 extern void insert_field_into_struct (tree, tree);
1131 /* In gimplify.c. */
1132 extern void gimplify_function_tree (tree);
1134 /* In cfgexpand.c. */
1135 extern tree gimple_assign_rhs_to_tree (gimple);
1137 /* In builtins.c */
1138 extern bool validate_gimple_arglist (const_gimple, ...);
1140 /* In tree-ssa.c */
1141 extern bool tree_ssa_useless_type_conversion (tree);
1142 extern tree tree_ssa_strip_useless_type_conversions (tree);
1143 extern bool useless_type_conversion_p (tree, tree);
1144 extern bool types_compatible_p (tree, tree);
1146 /* Return the code for GIMPLE statement G. */
1148 static inline enum gimple_code
1149 gimple_code (const_gimple g)
1151 return g->gsbase.code;
1155 /* Return the GSS code used by a GIMPLE code. */
1157 static inline enum gimple_statement_structure_enum
1158 gss_for_code (enum gimple_code code)
1160 gcc_gimple_checking_assert ((unsigned int)code < LAST_AND_UNUSED_GIMPLE_CODE);
1161 return gss_for_code_[code];
1165 /* Return which GSS code is used by GS. */
1167 static inline enum gimple_statement_structure_enum
1168 gimple_statement_structure (gimple gs)
1170 return gss_for_code (gimple_code (gs));
1174 /* Return true if statement G has sub-statements. This is only true for
1175 High GIMPLE statements. */
1177 static inline bool
1178 gimple_has_substatements (gimple g)
1180 switch (gimple_code (g))
1182 case GIMPLE_BIND:
1183 case GIMPLE_CATCH:
1184 case GIMPLE_EH_FILTER:
1185 case GIMPLE_EH_ELSE:
1186 case GIMPLE_TRY:
1187 case GIMPLE_OMP_FOR:
1188 case GIMPLE_OMP_MASTER:
1189 case GIMPLE_OMP_ORDERED:
1190 case GIMPLE_OMP_SECTION:
1191 case GIMPLE_OMP_PARALLEL:
1192 case GIMPLE_OMP_TASK:
1193 case GIMPLE_OMP_SECTIONS:
1194 case GIMPLE_OMP_SINGLE:
1195 case GIMPLE_OMP_CRITICAL:
1196 case GIMPLE_WITH_CLEANUP_EXPR:
1197 case GIMPLE_TRANSACTION:
1198 return true;
1200 default:
1201 return false;
1206 /* Return the basic block holding statement G. */
1208 static inline struct basic_block_def *
1209 gimple_bb (const_gimple g)
1211 return g->gsbase.bb;
1215 /* Return the lexical scope block holding statement G. */
1217 static inline tree
1218 gimple_block (const_gimple g)
1220 return g->gsbase.block;
1224 /* Set BLOCK to be the lexical scope block holding statement G. */
1226 static inline void
1227 gimple_set_block (gimple g, tree block)
1229 g->gsbase.block = block;
1233 /* Return location information for statement G. */
1235 static inline location_t
1236 gimple_location (const_gimple g)
1238 return g->gsbase.location;
1241 /* Return pointer to location information for statement G. */
1243 static inline const location_t *
1244 gimple_location_ptr (const_gimple g)
1246 return &g->gsbase.location;
1250 /* Set location information for statement G. */
1252 static inline void
1253 gimple_set_location (gimple g, location_t location)
1255 g->gsbase.location = location;
1259 /* Return true if G contains location information. */
1261 static inline bool
1262 gimple_has_location (const_gimple g)
1264 return gimple_location (g) != UNKNOWN_LOCATION;
1268 /* Return the file name of the location of STMT. */
1270 static inline const char *
1271 gimple_filename (const_gimple stmt)
1273 return LOCATION_FILE (gimple_location (stmt));
1277 /* Return the line number of the location of STMT. */
1279 static inline int
1280 gimple_lineno (const_gimple stmt)
1282 return LOCATION_LINE (gimple_location (stmt));
1286 /* Determine whether SEQ is a singleton. */
1288 static inline bool
1289 gimple_seq_singleton_p (gimple_seq seq)
1291 return ((gimple_seq_first (seq) != NULL)
1292 && (gimple_seq_first (seq) == gimple_seq_last (seq)));
1295 /* Return true if no warnings should be emitted for statement STMT. */
1297 static inline bool
1298 gimple_no_warning_p (const_gimple stmt)
1300 return stmt->gsbase.no_warning;
1303 /* Set the no_warning flag of STMT to NO_WARNING. */
1305 static inline void
1306 gimple_set_no_warning (gimple stmt, bool no_warning)
1308 stmt->gsbase.no_warning = (unsigned) no_warning;
1311 /* Set the visited status on statement STMT to VISITED_P. */
1313 static inline void
1314 gimple_set_visited (gimple stmt, bool visited_p)
1316 stmt->gsbase.visited = (unsigned) visited_p;
1320 /* Return the visited status for statement STMT. */
1322 static inline bool
1323 gimple_visited_p (gimple stmt)
1325 return stmt->gsbase.visited;
1329 /* Set pass local flag PLF on statement STMT to VAL_P. */
1331 static inline void
1332 gimple_set_plf (gimple stmt, enum plf_mask plf, bool val_p)
1334 if (val_p)
1335 stmt->gsbase.plf |= (unsigned int) plf;
1336 else
1337 stmt->gsbase.plf &= ~((unsigned int) plf);
1341 /* Return the value of pass local flag PLF on statement STMT. */
1343 static inline unsigned int
1344 gimple_plf (gimple stmt, enum plf_mask plf)
1346 return stmt->gsbase.plf & ((unsigned int) plf);
1350 /* Set the UID of statement. */
1352 static inline void
1353 gimple_set_uid (gimple g, unsigned uid)
1355 g->gsbase.uid = uid;
1359 /* Return the UID of statement. */
1361 static inline unsigned
1362 gimple_uid (const_gimple g)
1364 return g->gsbase.uid;
1368 /* Return true if GIMPLE statement G has register or memory operands. */
1370 static inline bool
1371 gimple_has_ops (const_gimple g)
1373 return gimple_code (g) >= GIMPLE_COND && gimple_code (g) <= GIMPLE_RETURN;
1377 /* Return true if GIMPLE statement G has memory operands. */
1379 static inline bool
1380 gimple_has_mem_ops (const_gimple g)
1382 return gimple_code (g) >= GIMPLE_ASSIGN && gimple_code (g) <= GIMPLE_RETURN;
1386 /* Return the set of DEF operands for statement G. */
1388 static inline struct def_optype_d *
1389 gimple_def_ops (const_gimple g)
1391 if (!gimple_has_ops (g))
1392 return NULL;
1393 return g->gsops.opbase.def_ops;
1397 /* Set DEF to be the set of DEF operands for statement G. */
1399 static inline void
1400 gimple_set_def_ops (gimple g, struct def_optype_d *def)
1402 gcc_gimple_checking_assert (gimple_has_ops (g));
1403 g->gsops.opbase.def_ops = def;
1407 /* Return the set of USE operands for statement G. */
1409 static inline struct use_optype_d *
1410 gimple_use_ops (const_gimple g)
1412 if (!gimple_has_ops (g))
1413 return NULL;
1414 return g->gsops.opbase.use_ops;
1418 /* Set USE to be the set of USE operands for statement G. */
1420 static inline void
1421 gimple_set_use_ops (gimple g, struct use_optype_d *use)
1423 gcc_gimple_checking_assert (gimple_has_ops (g));
1424 g->gsops.opbase.use_ops = use;
1428 /* Return the set of VUSE operand for statement G. */
1430 static inline use_operand_p
1431 gimple_vuse_op (const_gimple g)
1433 struct use_optype_d *ops;
1434 if (!gimple_has_mem_ops (g))
1435 return NULL_USE_OPERAND_P;
1436 ops = g->gsops.opbase.use_ops;
1437 if (ops
1438 && USE_OP_PTR (ops)->use == &g->gsmembase.vuse)
1439 return USE_OP_PTR (ops);
1440 return NULL_USE_OPERAND_P;
1443 /* Return the set of VDEF operand for statement G. */
1445 static inline def_operand_p
1446 gimple_vdef_op (const_gimple g)
1448 struct def_optype_d *ops;
1449 if (!gimple_has_mem_ops (g))
1450 return NULL_DEF_OPERAND_P;
1451 ops = g->gsops.opbase.def_ops;
1452 if (ops
1453 && DEF_OP_PTR (ops) == &g->gsmembase.vdef)
1454 return DEF_OP_PTR (ops);
1455 return NULL_DEF_OPERAND_P;
1459 /* Return the single VUSE operand of the statement G. */
1461 static inline tree
1462 gimple_vuse (const_gimple g)
1464 if (!gimple_has_mem_ops (g))
1465 return NULL_TREE;
1466 return g->gsmembase.vuse;
1469 /* Return the single VDEF operand of the statement G. */
1471 static inline tree
1472 gimple_vdef (const_gimple g)
1474 if (!gimple_has_mem_ops (g))
1475 return NULL_TREE;
1476 return g->gsmembase.vdef;
1479 /* Return the single VUSE operand of the statement G. */
1481 static inline tree *
1482 gimple_vuse_ptr (gimple g)
1484 if (!gimple_has_mem_ops (g))
1485 return NULL;
1486 return &g->gsmembase.vuse;
1489 /* Return the single VDEF operand of the statement G. */
1491 static inline tree *
1492 gimple_vdef_ptr (gimple g)
1494 if (!gimple_has_mem_ops (g))
1495 return NULL;
1496 return &g->gsmembase.vdef;
1499 /* Set the single VUSE operand of the statement G. */
1501 static inline void
1502 gimple_set_vuse (gimple g, tree vuse)
1504 gcc_gimple_checking_assert (gimple_has_mem_ops (g));
1505 g->gsmembase.vuse = vuse;
1508 /* Set the single VDEF operand of the statement G. */
1510 static inline void
1511 gimple_set_vdef (gimple g, tree vdef)
1513 gcc_gimple_checking_assert (gimple_has_mem_ops (g));
1514 g->gsmembase.vdef = vdef;
1518 /* Return true if statement G has operands and the modified field has
1519 been set. */
1521 static inline bool
1522 gimple_modified_p (const_gimple g)
1524 return (gimple_has_ops (g)) ? (bool) g->gsbase.modified : false;
1528 /* Return the tree code for the expression computed by STMT. This is
1529 only valid for GIMPLE_COND, GIMPLE_CALL and GIMPLE_ASSIGN. For
1530 GIMPLE_CALL, return CALL_EXPR as the expression code for
1531 consistency. This is useful when the caller needs to deal with the
1532 three kinds of computation that GIMPLE supports. */
1534 static inline enum tree_code
1535 gimple_expr_code (const_gimple stmt)
1537 enum gimple_code code = gimple_code (stmt);
1538 if (code == GIMPLE_ASSIGN || code == GIMPLE_COND)
1539 return (enum tree_code) stmt->gsbase.subcode;
1540 else
1542 gcc_gimple_checking_assert (code == GIMPLE_CALL);
1543 return CALL_EXPR;
1548 /* Mark statement S as modified, and update it. */
1550 static inline void
1551 update_stmt (gimple s)
1553 if (gimple_has_ops (s))
1555 gimple_set_modified (s, true);
1556 update_stmt_operands (s);
1560 /* Update statement S if it has been optimized. */
1562 static inline void
1563 update_stmt_if_modified (gimple s)
1565 if (gimple_modified_p (s))
1566 update_stmt_operands (s);
1569 /* Return true if statement STMT contains volatile operands. */
1571 static inline bool
1572 gimple_has_volatile_ops (const_gimple stmt)
1574 if (gimple_has_mem_ops (stmt))
1575 return stmt->gsbase.has_volatile_ops;
1576 else
1577 return false;
1581 /* Set the HAS_VOLATILE_OPS flag to VOLATILEP. */
1583 static inline void
1584 gimple_set_has_volatile_ops (gimple stmt, bool volatilep)
1586 if (gimple_has_mem_ops (stmt))
1587 stmt->gsbase.has_volatile_ops = (unsigned) volatilep;
1590 /* Return true if STMT is in a transaction. */
1592 static inline bool
1593 gimple_in_transaction (gimple stmt)
1595 return stmt->gsbase.in_transaction;
1598 /* Set the IN_TRANSACTION flag to TRANSACTIONP. */
1600 static inline void
1601 gimple_set_in_transaction (gimple stmt, bool transactionp)
1603 stmt->gsbase.in_transaction = (unsigned) transactionp;
1606 /* Return true if statement STMT may access memory. */
1608 static inline bool
1609 gimple_references_memory_p (gimple stmt)
1611 return gimple_has_mem_ops (stmt) && gimple_vuse (stmt);
1615 /* Return the subcode for OMP statement S. */
1617 static inline unsigned
1618 gimple_omp_subcode (const_gimple s)
1620 gcc_gimple_checking_assert (gimple_code (s) >= GIMPLE_OMP_ATOMIC_LOAD
1621 && gimple_code (s) <= GIMPLE_OMP_SINGLE);
1622 return s->gsbase.subcode;
1625 /* Set the subcode for OMP statement S to SUBCODE. */
1627 static inline void
1628 gimple_omp_set_subcode (gimple s, unsigned int subcode)
1630 /* We only have 16 bits for the subcode. Assert that we are not
1631 overflowing it. */
1632 gcc_gimple_checking_assert (subcode < (1 << 16));
1633 s->gsbase.subcode = subcode;
1636 /* Set the nowait flag on OMP_RETURN statement S. */
1638 static inline void
1639 gimple_omp_return_set_nowait (gimple s)
1641 GIMPLE_CHECK (s, GIMPLE_OMP_RETURN);
1642 s->gsbase.subcode |= GF_OMP_RETURN_NOWAIT;
1646 /* Return true if OMP return statement G has the GF_OMP_RETURN_NOWAIT
1647 flag set. */
1649 static inline bool
1650 gimple_omp_return_nowait_p (const_gimple g)
1652 GIMPLE_CHECK (g, GIMPLE_OMP_RETURN);
1653 return (gimple_omp_subcode (g) & GF_OMP_RETURN_NOWAIT) != 0;
1657 /* Return true if OMP section statement G has the GF_OMP_SECTION_LAST
1658 flag set. */
1660 static inline bool
1661 gimple_omp_section_last_p (const_gimple g)
1663 GIMPLE_CHECK (g, GIMPLE_OMP_SECTION);
1664 return (gimple_omp_subcode (g) & GF_OMP_SECTION_LAST) != 0;
1668 /* Set the GF_OMP_SECTION_LAST flag on G. */
1670 static inline void
1671 gimple_omp_section_set_last (gimple g)
1673 GIMPLE_CHECK (g, GIMPLE_OMP_SECTION);
1674 g->gsbase.subcode |= GF_OMP_SECTION_LAST;
1678 /* Return true if OMP parallel statement G has the
1679 GF_OMP_PARALLEL_COMBINED flag set. */
1681 static inline bool
1682 gimple_omp_parallel_combined_p (const_gimple g)
1684 GIMPLE_CHECK (g, GIMPLE_OMP_PARALLEL);
1685 return (gimple_omp_subcode (g) & GF_OMP_PARALLEL_COMBINED) != 0;
1689 /* Set the GF_OMP_PARALLEL_COMBINED field in G depending on the boolean
1690 value of COMBINED_P. */
1692 static inline void
1693 gimple_omp_parallel_set_combined_p (gimple g, bool combined_p)
1695 GIMPLE_CHECK (g, GIMPLE_OMP_PARALLEL);
1696 if (combined_p)
1697 g->gsbase.subcode |= GF_OMP_PARALLEL_COMBINED;
1698 else
1699 g->gsbase.subcode &= ~GF_OMP_PARALLEL_COMBINED;
1703 /* Return true if OMP atomic load/store statement G has the
1704 GF_OMP_ATOMIC_NEED_VALUE flag set. */
1706 static inline bool
1707 gimple_omp_atomic_need_value_p (const_gimple g)
1709 if (gimple_code (g) != GIMPLE_OMP_ATOMIC_LOAD)
1710 GIMPLE_CHECK (g, GIMPLE_OMP_ATOMIC_STORE);
1711 return (gimple_omp_subcode (g) & GF_OMP_ATOMIC_NEED_VALUE) != 0;
1715 /* Set the GF_OMP_ATOMIC_NEED_VALUE flag on G. */
1717 static inline void
1718 gimple_omp_atomic_set_need_value (gimple g)
1720 if (gimple_code (g) != GIMPLE_OMP_ATOMIC_LOAD)
1721 GIMPLE_CHECK (g, GIMPLE_OMP_ATOMIC_STORE);
1722 g->gsbase.subcode |= GF_OMP_ATOMIC_NEED_VALUE;
1726 /* Return the number of operands for statement GS. */
1728 static inline unsigned
1729 gimple_num_ops (const_gimple gs)
1731 return gs->gsbase.num_ops;
1735 /* Set the number of operands for statement GS. */
1737 static inline void
1738 gimple_set_num_ops (gimple gs, unsigned num_ops)
1740 gs->gsbase.num_ops = num_ops;
1744 /* Return the array of operands for statement GS. */
1746 static inline tree *
1747 gimple_ops (gimple gs)
1749 size_t off;
1751 /* All the tuples have their operand vector at the very bottom
1752 of the structure. Note that those structures that do not
1753 have an operand vector have a zero offset. */
1754 off = gimple_ops_offset_[gimple_statement_structure (gs)];
1755 gcc_gimple_checking_assert (off != 0);
1757 return (tree *) ((char *) gs + off);
1761 /* Return operand I for statement GS. */
1763 static inline tree
1764 gimple_op (const_gimple gs, unsigned i)
1766 if (gimple_has_ops (gs))
1768 gcc_gimple_checking_assert (i < gimple_num_ops (gs));
1769 return gimple_ops (CONST_CAST_GIMPLE (gs))[i];
1771 else
1772 return NULL_TREE;
1775 /* Return a pointer to operand I for statement GS. */
1777 static inline tree *
1778 gimple_op_ptr (const_gimple gs, unsigned i)
1780 if (gimple_has_ops (gs))
1782 gcc_gimple_checking_assert (i < gimple_num_ops (gs));
1783 return gimple_ops (CONST_CAST_GIMPLE (gs)) + i;
1785 else
1786 return NULL;
1789 /* Set operand I of statement GS to OP. */
1791 static inline void
1792 gimple_set_op (gimple gs, unsigned i, tree op)
1794 gcc_gimple_checking_assert (gimple_has_ops (gs) && i < gimple_num_ops (gs));
1796 /* Note. It may be tempting to assert that OP matches
1797 is_gimple_operand, but that would be wrong. Different tuples
1798 accept slightly different sets of tree operands. Each caller
1799 should perform its own validation. */
1800 gimple_ops (gs)[i] = op;
1803 /* Return true if GS is a GIMPLE_ASSIGN. */
1805 static inline bool
1806 is_gimple_assign (const_gimple gs)
1808 return gimple_code (gs) == GIMPLE_ASSIGN;
1811 /* Determine if expression CODE is one of the valid expressions that can
1812 be used on the RHS of GIMPLE assignments. */
1814 static inline enum gimple_rhs_class
1815 get_gimple_rhs_class (enum tree_code code)
1817 return (enum gimple_rhs_class) gimple_rhs_class_table[(int) code];
1820 /* Return the LHS of assignment statement GS. */
1822 static inline tree
1823 gimple_assign_lhs (const_gimple gs)
1825 GIMPLE_CHECK (gs, GIMPLE_ASSIGN);
1826 return gimple_op (gs, 0);
1830 /* Return a pointer to the LHS of assignment statement GS. */
1832 static inline tree *
1833 gimple_assign_lhs_ptr (const_gimple gs)
1835 GIMPLE_CHECK (gs, GIMPLE_ASSIGN);
1836 return gimple_op_ptr (gs, 0);
1840 /* Set LHS to be the LHS operand of assignment statement GS. */
1842 static inline void
1843 gimple_assign_set_lhs (gimple gs, tree lhs)
1845 GIMPLE_CHECK (gs, GIMPLE_ASSIGN);
1846 gimple_set_op (gs, 0, lhs);
1848 if (lhs && TREE_CODE (lhs) == SSA_NAME)
1849 SSA_NAME_DEF_STMT (lhs) = gs;
1853 /* Return the first operand on the RHS of assignment statement GS. */
1855 static inline tree
1856 gimple_assign_rhs1 (const_gimple gs)
1858 GIMPLE_CHECK (gs, GIMPLE_ASSIGN);
1859 return gimple_op (gs, 1);
1863 /* Return a pointer to the first operand on the RHS of assignment
1864 statement GS. */
1866 static inline tree *
1867 gimple_assign_rhs1_ptr (const_gimple gs)
1869 GIMPLE_CHECK (gs, GIMPLE_ASSIGN);
1870 return gimple_op_ptr (gs, 1);
1873 /* Set RHS to be the first operand on the RHS of assignment statement GS. */
1875 static inline void
1876 gimple_assign_set_rhs1 (gimple gs, tree rhs)
1878 GIMPLE_CHECK (gs, GIMPLE_ASSIGN);
1880 gimple_set_op (gs, 1, rhs);
1884 /* Return the second operand on the RHS of assignment statement GS.
1885 If GS does not have two operands, NULL is returned instead. */
1887 static inline tree
1888 gimple_assign_rhs2 (const_gimple gs)
1890 GIMPLE_CHECK (gs, GIMPLE_ASSIGN);
1892 if (gimple_num_ops (gs) >= 3)
1893 return gimple_op (gs, 2);
1894 else
1895 return NULL_TREE;
1899 /* Return a pointer to the second operand on the RHS of assignment
1900 statement GS. */
1902 static inline tree *
1903 gimple_assign_rhs2_ptr (const_gimple gs)
1905 GIMPLE_CHECK (gs, GIMPLE_ASSIGN);
1906 return gimple_op_ptr (gs, 2);
1910 /* Set RHS to be the second operand on the RHS of assignment statement GS. */
1912 static inline void
1913 gimple_assign_set_rhs2 (gimple gs, tree rhs)
1915 GIMPLE_CHECK (gs, GIMPLE_ASSIGN);
1917 gimple_set_op (gs, 2, rhs);
1920 /* Return the third operand on the RHS of assignment statement GS.
1921 If GS does not have two operands, NULL is returned instead. */
1923 static inline tree
1924 gimple_assign_rhs3 (const_gimple gs)
1926 GIMPLE_CHECK (gs, GIMPLE_ASSIGN);
1928 if (gimple_num_ops (gs) >= 4)
1929 return gimple_op (gs, 3);
1930 else
1931 return NULL_TREE;
1934 /* Return a pointer to the third operand on the RHS of assignment
1935 statement GS. */
1937 static inline tree *
1938 gimple_assign_rhs3_ptr (const_gimple gs)
1940 GIMPLE_CHECK (gs, GIMPLE_ASSIGN);
1941 return gimple_op_ptr (gs, 3);
1945 /* Set RHS to be the third operand on the RHS of assignment statement GS. */
1947 static inline void
1948 gimple_assign_set_rhs3 (gimple gs, tree rhs)
1950 GIMPLE_CHECK (gs, GIMPLE_ASSIGN);
1952 gimple_set_op (gs, 3, rhs);
1955 /* A wrapper around gimple_assign_set_rhs_with_ops_1, for callers which expect
1956 to see only a maximum of two operands. */
1958 static inline void
1959 gimple_assign_set_rhs_with_ops (gimple_stmt_iterator *gsi, enum tree_code code,
1960 tree op1, tree op2)
1962 gimple_assign_set_rhs_with_ops_1 (gsi, code, op1, op2, NULL);
1965 /* A wrapper around extract_ops_from_tree_1, for callers which expect
1966 to see only a maximum of two operands. */
1968 static inline void
1969 extract_ops_from_tree (tree expr, enum tree_code *code, tree *op0,
1970 tree *op1)
1972 tree op2;
1973 extract_ops_from_tree_1 (expr, code, op0, op1, &op2);
1974 gcc_assert (op2 == NULL_TREE);
1977 /* Returns true if GS is a nontemporal move. */
1979 static inline bool
1980 gimple_assign_nontemporal_move_p (const_gimple gs)
1982 GIMPLE_CHECK (gs, GIMPLE_ASSIGN);
1983 return gs->gsbase.nontemporal_move;
1986 /* Sets nontemporal move flag of GS to NONTEMPORAL. */
1988 static inline void
1989 gimple_assign_set_nontemporal_move (gimple gs, bool nontemporal)
1991 GIMPLE_CHECK (gs, GIMPLE_ASSIGN);
1992 gs->gsbase.nontemporal_move = nontemporal;
1996 /* Return the code of the expression computed on the rhs of assignment
1997 statement GS. In case that the RHS is a single object, returns the
1998 tree code of the object. */
2000 static inline enum tree_code
2001 gimple_assign_rhs_code (const_gimple gs)
2003 enum tree_code code;
2004 GIMPLE_CHECK (gs, GIMPLE_ASSIGN);
2006 code = (enum tree_code) gs->gsbase.subcode;
2007 /* While we initially set subcode to the TREE_CODE of the rhs for
2008 GIMPLE_SINGLE_RHS assigns we do not update that subcode to stay
2009 in sync when we rewrite stmts into SSA form or do SSA propagations. */
2010 if (get_gimple_rhs_class (code) == GIMPLE_SINGLE_RHS)
2011 code = TREE_CODE (gimple_assign_rhs1 (gs));
2013 return code;
2017 /* Set CODE to be the code for the expression computed on the RHS of
2018 assignment S. */
2020 static inline void
2021 gimple_assign_set_rhs_code (gimple s, enum tree_code code)
2023 GIMPLE_CHECK (s, GIMPLE_ASSIGN);
2024 s->gsbase.subcode = code;
2028 /* Return the gimple rhs class of the code of the expression computed on
2029 the rhs of assignment statement GS.
2030 This will never return GIMPLE_INVALID_RHS. */
2032 static inline enum gimple_rhs_class
2033 gimple_assign_rhs_class (const_gimple gs)
2035 return get_gimple_rhs_class (gimple_assign_rhs_code (gs));
2038 /* Return true if GS is an assignment with a singleton RHS, i.e.,
2039 there is no operator associated with the assignment itself.
2040 Unlike gimple_assign_copy_p, this predicate returns true for
2041 any RHS operand, including those that perform an operation
2042 and do not have the semantics of a copy, such as COND_EXPR. */
2044 static inline bool
2045 gimple_assign_single_p (gimple gs)
2047 return (is_gimple_assign (gs)
2048 && gimple_assign_rhs_class (gs) == GIMPLE_SINGLE_RHS);
2052 /* Return true if S is a type-cast assignment. */
2054 static inline bool
2055 gimple_assign_cast_p (gimple s)
2057 if (is_gimple_assign (s))
2059 enum tree_code sc = gimple_assign_rhs_code (s);
2060 return CONVERT_EXPR_CODE_P (sc)
2061 || sc == VIEW_CONVERT_EXPR
2062 || sc == FIX_TRUNC_EXPR;
2065 return false;
2068 /* Return true if S is a clobber statement. */
2070 static inline bool
2071 gimple_clobber_p (gimple s)
2073 return gimple_assign_single_p (s)
2074 && TREE_CLOBBER_P (gimple_assign_rhs1 (s));
2077 /* Return true if GS is a GIMPLE_CALL. */
2079 static inline bool
2080 is_gimple_call (const_gimple gs)
2082 return gimple_code (gs) == GIMPLE_CALL;
2085 /* Return the LHS of call statement GS. */
2087 static inline tree
2088 gimple_call_lhs (const_gimple gs)
2090 GIMPLE_CHECK (gs, GIMPLE_CALL);
2091 return gimple_op (gs, 0);
2095 /* Return a pointer to the LHS of call statement GS. */
2097 static inline tree *
2098 gimple_call_lhs_ptr (const_gimple gs)
2100 GIMPLE_CHECK (gs, GIMPLE_CALL);
2101 return gimple_op_ptr (gs, 0);
2105 /* Set LHS to be the LHS operand of call statement GS. */
2107 static inline void
2108 gimple_call_set_lhs (gimple gs, tree lhs)
2110 GIMPLE_CHECK (gs, GIMPLE_CALL);
2111 gimple_set_op (gs, 0, lhs);
2112 if (lhs && TREE_CODE (lhs) == SSA_NAME)
2113 SSA_NAME_DEF_STMT (lhs) = gs;
2117 /* Return true if call GS calls an internal-only function, as enumerated
2118 by internal_fn. */
2120 static inline bool
2121 gimple_call_internal_p (const_gimple gs)
2123 GIMPLE_CHECK (gs, GIMPLE_CALL);
2124 return (gs->gsbase.subcode & GF_CALL_INTERNAL) != 0;
2128 /* Return the target of internal call GS. */
2130 static inline enum internal_fn
2131 gimple_call_internal_fn (const_gimple gs)
2133 gcc_gimple_checking_assert (gimple_call_internal_p (gs));
2134 return gs->gimple_call.u.internal_fn;
2138 /* Return the function type of the function called by GS. */
2140 static inline tree
2141 gimple_call_fntype (const_gimple gs)
2143 GIMPLE_CHECK (gs, GIMPLE_CALL);
2144 if (gimple_call_internal_p (gs))
2145 return NULL_TREE;
2146 return gs->gimple_call.u.fntype;
2149 /* Set the type of the function called by GS to FNTYPE. */
2151 static inline void
2152 gimple_call_set_fntype (gimple gs, tree fntype)
2154 GIMPLE_CHECK (gs, GIMPLE_CALL);
2155 gcc_gimple_checking_assert (!gimple_call_internal_p (gs));
2156 gs->gimple_call.u.fntype = fntype;
2160 /* Return the tree node representing the function called by call
2161 statement GS. */
2163 static inline tree
2164 gimple_call_fn (const_gimple gs)
2166 GIMPLE_CHECK (gs, GIMPLE_CALL);
2167 return gimple_op (gs, 1);
2170 /* Return a pointer to the tree node representing the function called by call
2171 statement GS. */
2173 static inline tree *
2174 gimple_call_fn_ptr (const_gimple gs)
2176 GIMPLE_CHECK (gs, GIMPLE_CALL);
2177 return gimple_op_ptr (gs, 1);
2181 /* Set FN to be the function called by call statement GS. */
2183 static inline void
2184 gimple_call_set_fn (gimple gs, tree fn)
2186 GIMPLE_CHECK (gs, GIMPLE_CALL);
2187 gcc_gimple_checking_assert (!gimple_call_internal_p (gs));
2188 gimple_set_op (gs, 1, fn);
2192 /* Set FNDECL to be the function called by call statement GS. */
2194 static inline void
2195 gimple_call_set_fndecl (gimple gs, tree decl)
2197 GIMPLE_CHECK (gs, GIMPLE_CALL);
2198 gcc_gimple_checking_assert (!gimple_call_internal_p (gs));
2199 gimple_set_op (gs, 1, build_fold_addr_expr_loc (gimple_location (gs), decl));
2203 /* Set internal function FN to be the function called by call statement GS. */
2205 static inline void
2206 gimple_call_set_internal_fn (gimple gs, enum internal_fn fn)
2208 GIMPLE_CHECK (gs, GIMPLE_CALL);
2209 gcc_gimple_checking_assert (gimple_call_internal_p (gs));
2210 gs->gimple_call.u.internal_fn = fn;
2214 /* Given a valid GIMPLE_CALL function address return the FUNCTION_DECL
2215 associated with the callee if known. Otherwise return NULL_TREE. */
2217 static inline tree
2218 gimple_call_addr_fndecl (const_tree fn)
2220 if (fn && TREE_CODE (fn) == ADDR_EXPR)
2222 tree fndecl = TREE_OPERAND (fn, 0);
2223 if (TREE_CODE (fndecl) == MEM_REF
2224 && TREE_CODE (TREE_OPERAND (fndecl, 0)) == ADDR_EXPR
2225 && integer_zerop (TREE_OPERAND (fndecl, 1)))
2226 fndecl = TREE_OPERAND (TREE_OPERAND (fndecl, 0), 0);
2227 if (TREE_CODE (fndecl) == FUNCTION_DECL)
2228 return fndecl;
2230 return NULL_TREE;
2233 /* If a given GIMPLE_CALL's callee is a FUNCTION_DECL, return it.
2234 Otherwise return NULL. This function is analogous to
2235 get_callee_fndecl in tree land. */
2237 static inline tree
2238 gimple_call_fndecl (const_gimple gs)
2240 return gimple_call_addr_fndecl (gimple_call_fn (gs));
2244 /* Return the type returned by call statement GS. */
2246 static inline tree
2247 gimple_call_return_type (const_gimple gs)
2249 tree type = gimple_call_fntype (gs);
2251 if (type == NULL_TREE)
2252 return TREE_TYPE (gimple_call_lhs (gs));
2254 /* The type returned by a function is the type of its
2255 function type. */
2256 return TREE_TYPE (type);
2260 /* Return the static chain for call statement GS. */
2262 static inline tree
2263 gimple_call_chain (const_gimple gs)
2265 GIMPLE_CHECK (gs, GIMPLE_CALL);
2266 return gimple_op (gs, 2);
2270 /* Return a pointer to the static chain for call statement GS. */
2272 static inline tree *
2273 gimple_call_chain_ptr (const_gimple gs)
2275 GIMPLE_CHECK (gs, GIMPLE_CALL);
2276 return gimple_op_ptr (gs, 2);
2279 /* Set CHAIN to be the static chain for call statement GS. */
2281 static inline void
2282 gimple_call_set_chain (gimple gs, tree chain)
2284 GIMPLE_CHECK (gs, GIMPLE_CALL);
2286 gimple_set_op (gs, 2, chain);
2290 /* Return the number of arguments used by call statement GS. */
2292 static inline unsigned
2293 gimple_call_num_args (const_gimple gs)
2295 unsigned num_ops;
2296 GIMPLE_CHECK (gs, GIMPLE_CALL);
2297 num_ops = gimple_num_ops (gs);
2298 return num_ops - 3;
2302 /* Return the argument at position INDEX for call statement GS. */
2304 static inline tree
2305 gimple_call_arg (const_gimple gs, unsigned index)
2307 GIMPLE_CHECK (gs, GIMPLE_CALL);
2308 return gimple_op (gs, index + 3);
2312 /* Return a pointer to the argument at position INDEX for call
2313 statement GS. */
2315 static inline tree *
2316 gimple_call_arg_ptr (const_gimple gs, unsigned index)
2318 GIMPLE_CHECK (gs, GIMPLE_CALL);
2319 return gimple_op_ptr (gs, index + 3);
2323 /* Set ARG to be the argument at position INDEX for call statement GS. */
2325 static inline void
2326 gimple_call_set_arg (gimple gs, unsigned index, tree arg)
2328 GIMPLE_CHECK (gs, GIMPLE_CALL);
2329 gimple_set_op (gs, index + 3, arg);
2333 /* If TAIL_P is true, mark call statement S as being a tail call
2334 (i.e., a call just before the exit of a function). These calls are
2335 candidate for tail call optimization. */
2337 static inline void
2338 gimple_call_set_tail (gimple s, bool tail_p)
2340 GIMPLE_CHECK (s, GIMPLE_CALL);
2341 if (tail_p)
2342 s->gsbase.subcode |= GF_CALL_TAILCALL;
2343 else
2344 s->gsbase.subcode &= ~GF_CALL_TAILCALL;
2348 /* Return true if GIMPLE_CALL S is marked as a tail call. */
2350 static inline bool
2351 gimple_call_tail_p (gimple s)
2353 GIMPLE_CHECK (s, GIMPLE_CALL);
2354 return (s->gsbase.subcode & GF_CALL_TAILCALL) != 0;
2358 /* If RETURN_SLOT_OPT_P is true mark GIMPLE_CALL S as valid for return
2359 slot optimization. This transformation uses the target of the call
2360 expansion as the return slot for calls that return in memory. */
2362 static inline void
2363 gimple_call_set_return_slot_opt (gimple s, bool return_slot_opt_p)
2365 GIMPLE_CHECK (s, GIMPLE_CALL);
2366 if (return_slot_opt_p)
2367 s->gsbase.subcode |= GF_CALL_RETURN_SLOT_OPT;
2368 else
2369 s->gsbase.subcode &= ~GF_CALL_RETURN_SLOT_OPT;
2373 /* Return true if S is marked for return slot optimization. */
2375 static inline bool
2376 gimple_call_return_slot_opt_p (gimple s)
2378 GIMPLE_CHECK (s, GIMPLE_CALL);
2379 return (s->gsbase.subcode & GF_CALL_RETURN_SLOT_OPT) != 0;
2383 /* If FROM_THUNK_P is true, mark GIMPLE_CALL S as being the jump from a
2384 thunk to the thunked-to function. */
2386 static inline void
2387 gimple_call_set_from_thunk (gimple s, bool from_thunk_p)
2389 GIMPLE_CHECK (s, GIMPLE_CALL);
2390 if (from_thunk_p)
2391 s->gsbase.subcode |= GF_CALL_FROM_THUNK;
2392 else
2393 s->gsbase.subcode &= ~GF_CALL_FROM_THUNK;
2397 /* Return true if GIMPLE_CALL S is a jump from a thunk. */
2399 static inline bool
2400 gimple_call_from_thunk_p (gimple s)
2402 GIMPLE_CHECK (s, GIMPLE_CALL);
2403 return (s->gsbase.subcode & GF_CALL_FROM_THUNK) != 0;
2407 /* If PASS_ARG_PACK_P is true, GIMPLE_CALL S is a stdarg call that needs the
2408 argument pack in its argument list. */
2410 static inline void
2411 gimple_call_set_va_arg_pack (gimple s, bool pass_arg_pack_p)
2413 GIMPLE_CHECK (s, GIMPLE_CALL);
2414 if (pass_arg_pack_p)
2415 s->gsbase.subcode |= GF_CALL_VA_ARG_PACK;
2416 else
2417 s->gsbase.subcode &= ~GF_CALL_VA_ARG_PACK;
2421 /* Return true if GIMPLE_CALL S is a stdarg call that needs the
2422 argument pack in its argument list. */
2424 static inline bool
2425 gimple_call_va_arg_pack_p (gimple s)
2427 GIMPLE_CHECK (s, GIMPLE_CALL);
2428 return (s->gsbase.subcode & GF_CALL_VA_ARG_PACK) != 0;
2432 /* Return true if S is a noreturn call. */
2434 static inline bool
2435 gimple_call_noreturn_p (gimple s)
2437 GIMPLE_CHECK (s, GIMPLE_CALL);
2438 return (gimple_call_flags (s) & ECF_NORETURN) != 0;
2442 /* If NOTHROW_P is true, GIMPLE_CALL S is a call that is known to not throw
2443 even if the called function can throw in other cases. */
2445 static inline void
2446 gimple_call_set_nothrow (gimple s, bool nothrow_p)
2448 GIMPLE_CHECK (s, GIMPLE_CALL);
2449 if (nothrow_p)
2450 s->gsbase.subcode |= GF_CALL_NOTHROW;
2451 else
2452 s->gsbase.subcode &= ~GF_CALL_NOTHROW;
2455 /* Return true if S is a nothrow call. */
2457 static inline bool
2458 gimple_call_nothrow_p (gimple s)
2460 GIMPLE_CHECK (s, GIMPLE_CALL);
2461 return (gimple_call_flags (s) & ECF_NOTHROW) != 0;
2464 /* If FOR_VAR is true, GIMPLE_CALL S is a call to builtin_alloca that
2465 is known to be emitted for VLA objects. Those are wrapped by
2466 stack_save/stack_restore calls and hence can't lead to unbounded
2467 stack growth even when they occur in loops. */
2469 static inline void
2470 gimple_call_set_alloca_for_var (gimple s, bool for_var)
2472 GIMPLE_CHECK (s, GIMPLE_CALL);
2473 if (for_var)
2474 s->gsbase.subcode |= GF_CALL_ALLOCA_FOR_VAR;
2475 else
2476 s->gsbase.subcode &= ~GF_CALL_ALLOCA_FOR_VAR;
2479 /* Return true of S is a call to builtin_alloca emitted for VLA objects. */
2481 static inline bool
2482 gimple_call_alloca_for_var_p (gimple s)
2484 GIMPLE_CHECK (s, GIMPLE_CALL);
2485 return (s->gsbase.subcode & GF_CALL_ALLOCA_FOR_VAR) != 0;
2488 /* Copy all the GF_CALL_* flags from ORIG_CALL to DEST_CALL. */
2490 static inline void
2491 gimple_call_copy_flags (gimple dest_call, gimple orig_call)
2493 GIMPLE_CHECK (dest_call, GIMPLE_CALL);
2494 GIMPLE_CHECK (orig_call, GIMPLE_CALL);
2495 dest_call->gsbase.subcode = orig_call->gsbase.subcode;
2499 /* Return a pointer to the points-to solution for the set of call-used
2500 variables of the call CALL. */
2502 static inline struct pt_solution *
2503 gimple_call_use_set (gimple call)
2505 GIMPLE_CHECK (call, GIMPLE_CALL);
2506 return &call->gimple_call.call_used;
2510 /* Return a pointer to the points-to solution for the set of call-used
2511 variables of the call CALL. */
2513 static inline struct pt_solution *
2514 gimple_call_clobber_set (gimple call)
2516 GIMPLE_CHECK (call, GIMPLE_CALL);
2517 return &call->gimple_call.call_clobbered;
2521 /* Returns true if this is a GIMPLE_ASSIGN or a GIMPLE_CALL with a
2522 non-NULL lhs. */
2524 static inline bool
2525 gimple_has_lhs (gimple stmt)
2527 return (is_gimple_assign (stmt)
2528 || (is_gimple_call (stmt)
2529 && gimple_call_lhs (stmt) != NULL_TREE));
2533 /* Return the code of the predicate computed by conditional statement GS. */
2535 static inline enum tree_code
2536 gimple_cond_code (const_gimple gs)
2538 GIMPLE_CHECK (gs, GIMPLE_COND);
2539 return (enum tree_code) gs->gsbase.subcode;
2543 /* Set CODE to be the predicate code for the conditional statement GS. */
2545 static inline void
2546 gimple_cond_set_code (gimple gs, enum tree_code code)
2548 GIMPLE_CHECK (gs, GIMPLE_COND);
2549 gs->gsbase.subcode = code;
2553 /* Return the LHS of the predicate computed by conditional statement GS. */
2555 static inline tree
2556 gimple_cond_lhs (const_gimple gs)
2558 GIMPLE_CHECK (gs, GIMPLE_COND);
2559 return gimple_op (gs, 0);
2562 /* Return the pointer to the LHS of the predicate computed by conditional
2563 statement GS. */
2565 static inline tree *
2566 gimple_cond_lhs_ptr (const_gimple gs)
2568 GIMPLE_CHECK (gs, GIMPLE_COND);
2569 return gimple_op_ptr (gs, 0);
2572 /* Set LHS to be the LHS operand of the predicate computed by
2573 conditional statement GS. */
2575 static inline void
2576 gimple_cond_set_lhs (gimple gs, tree lhs)
2578 GIMPLE_CHECK (gs, GIMPLE_COND);
2579 gimple_set_op (gs, 0, lhs);
2583 /* Return the RHS operand of the predicate computed by conditional GS. */
2585 static inline tree
2586 gimple_cond_rhs (const_gimple gs)
2588 GIMPLE_CHECK (gs, GIMPLE_COND);
2589 return gimple_op (gs, 1);
2592 /* Return the pointer to the RHS operand of the predicate computed by
2593 conditional GS. */
2595 static inline tree *
2596 gimple_cond_rhs_ptr (const_gimple gs)
2598 GIMPLE_CHECK (gs, GIMPLE_COND);
2599 return gimple_op_ptr (gs, 1);
2603 /* Set RHS to be the RHS operand of the predicate computed by
2604 conditional statement GS. */
2606 static inline void
2607 gimple_cond_set_rhs (gimple gs, tree rhs)
2609 GIMPLE_CHECK (gs, GIMPLE_COND);
2610 gimple_set_op (gs, 1, rhs);
2614 /* Return the label used by conditional statement GS when its
2615 predicate evaluates to true. */
2617 static inline tree
2618 gimple_cond_true_label (const_gimple gs)
2620 GIMPLE_CHECK (gs, GIMPLE_COND);
2621 return gimple_op (gs, 2);
2625 /* Set LABEL to be the label used by conditional statement GS when its
2626 predicate evaluates to true. */
2628 static inline void
2629 gimple_cond_set_true_label (gimple gs, tree label)
2631 GIMPLE_CHECK (gs, GIMPLE_COND);
2632 gimple_set_op (gs, 2, label);
2636 /* Set LABEL to be the label used by conditional statement GS when its
2637 predicate evaluates to false. */
2639 static inline void
2640 gimple_cond_set_false_label (gimple gs, tree label)
2642 GIMPLE_CHECK (gs, GIMPLE_COND);
2643 gimple_set_op (gs, 3, label);
2647 /* Return the label used by conditional statement GS when its
2648 predicate evaluates to false. */
2650 static inline tree
2651 gimple_cond_false_label (const_gimple gs)
2653 GIMPLE_CHECK (gs, GIMPLE_COND);
2654 return gimple_op (gs, 3);
2658 /* Set the conditional COND_STMT to be of the form 'if (1 == 0)'. */
2660 static inline void
2661 gimple_cond_make_false (gimple gs)
2663 gimple_cond_set_lhs (gs, boolean_true_node);
2664 gimple_cond_set_rhs (gs, boolean_false_node);
2665 gs->gsbase.subcode = EQ_EXPR;
2669 /* Set the conditional COND_STMT to be of the form 'if (1 == 1)'. */
2671 static inline void
2672 gimple_cond_make_true (gimple gs)
2674 gimple_cond_set_lhs (gs, boolean_true_node);
2675 gimple_cond_set_rhs (gs, boolean_true_node);
2676 gs->gsbase.subcode = EQ_EXPR;
2679 /* Check if conditional statemente GS is of the form 'if (1 == 1)',
2680 'if (0 == 0)', 'if (1 != 0)' or 'if (0 != 1)' */
2682 static inline bool
2683 gimple_cond_true_p (const_gimple gs)
2685 tree lhs = gimple_cond_lhs (gs);
2686 tree rhs = gimple_cond_rhs (gs);
2687 enum tree_code code = gimple_cond_code (gs);
2689 if (lhs != boolean_true_node && lhs != boolean_false_node)
2690 return false;
2692 if (rhs != boolean_true_node && rhs != boolean_false_node)
2693 return false;
2695 if (code == NE_EXPR && lhs != rhs)
2696 return true;
2698 if (code == EQ_EXPR && lhs == rhs)
2699 return true;
2701 return false;
2704 /* Check if conditional statement GS is of the form 'if (1 != 1)',
2705 'if (0 != 0)', 'if (1 == 0)' or 'if (0 == 1)' */
2707 static inline bool
2708 gimple_cond_false_p (const_gimple gs)
2710 tree lhs = gimple_cond_lhs (gs);
2711 tree rhs = gimple_cond_rhs (gs);
2712 enum tree_code code = gimple_cond_code (gs);
2714 if (lhs != boolean_true_node && lhs != boolean_false_node)
2715 return false;
2717 if (rhs != boolean_true_node && rhs != boolean_false_node)
2718 return false;
2720 if (code == NE_EXPR && lhs == rhs)
2721 return true;
2723 if (code == EQ_EXPR && lhs != rhs)
2724 return true;
2726 return false;
2729 /* Check if conditional statement GS is of the form 'if (var != 0)' or
2730 'if (var == 1)' */
2732 static inline bool
2733 gimple_cond_single_var_p (gimple gs)
2735 if (gimple_cond_code (gs) == NE_EXPR
2736 && gimple_cond_rhs (gs) == boolean_false_node)
2737 return true;
2739 if (gimple_cond_code (gs) == EQ_EXPR
2740 && gimple_cond_rhs (gs) == boolean_true_node)
2741 return true;
2743 return false;
2746 /* Set the code, LHS and RHS of GIMPLE_COND STMT from CODE, LHS and RHS. */
2748 static inline void
2749 gimple_cond_set_condition (gimple stmt, enum tree_code code, tree lhs, tree rhs)
2751 gimple_cond_set_code (stmt, code);
2752 gimple_cond_set_lhs (stmt, lhs);
2753 gimple_cond_set_rhs (stmt, rhs);
2756 /* Return the LABEL_DECL node used by GIMPLE_LABEL statement GS. */
2758 static inline tree
2759 gimple_label_label (const_gimple gs)
2761 GIMPLE_CHECK (gs, GIMPLE_LABEL);
2762 return gimple_op (gs, 0);
2766 /* Set LABEL to be the LABEL_DECL node used by GIMPLE_LABEL statement
2767 GS. */
2769 static inline void
2770 gimple_label_set_label (gimple gs, tree label)
2772 GIMPLE_CHECK (gs, GIMPLE_LABEL);
2773 gimple_set_op (gs, 0, label);
2777 /* Return the destination of the unconditional jump GS. */
2779 static inline tree
2780 gimple_goto_dest (const_gimple gs)
2782 GIMPLE_CHECK (gs, GIMPLE_GOTO);
2783 return gimple_op (gs, 0);
2787 /* Set DEST to be the destination of the unconditonal jump GS. */
2789 static inline void
2790 gimple_goto_set_dest (gimple gs, tree dest)
2792 GIMPLE_CHECK (gs, GIMPLE_GOTO);
2793 gimple_set_op (gs, 0, dest);
2797 /* Return the variables declared in the GIMPLE_BIND statement GS. */
2799 static inline tree
2800 gimple_bind_vars (const_gimple gs)
2802 GIMPLE_CHECK (gs, GIMPLE_BIND);
2803 return gs->gimple_bind.vars;
2807 /* Set VARS to be the set of variables declared in the GIMPLE_BIND
2808 statement GS. */
2810 static inline void
2811 gimple_bind_set_vars (gimple gs, tree vars)
2813 GIMPLE_CHECK (gs, GIMPLE_BIND);
2814 gs->gimple_bind.vars = vars;
2818 /* Append VARS to the set of variables declared in the GIMPLE_BIND
2819 statement GS. */
2821 static inline void
2822 gimple_bind_append_vars (gimple gs, tree vars)
2824 GIMPLE_CHECK (gs, GIMPLE_BIND);
2825 gs->gimple_bind.vars = chainon (gs->gimple_bind.vars, vars);
2829 /* Return the GIMPLE sequence contained in the GIMPLE_BIND statement GS. */
2831 static inline gimple_seq
2832 gimple_bind_body (gimple gs)
2834 GIMPLE_CHECK (gs, GIMPLE_BIND);
2835 return gs->gimple_bind.body;
2839 /* Set SEQ to be the GIMPLE sequence contained in the GIMPLE_BIND
2840 statement GS. */
2842 static inline void
2843 gimple_bind_set_body (gimple gs, gimple_seq seq)
2845 GIMPLE_CHECK (gs, GIMPLE_BIND);
2846 gs->gimple_bind.body = seq;
2850 /* Append a statement to the end of a GIMPLE_BIND's body. */
2852 static inline void
2853 gimple_bind_add_stmt (gimple gs, gimple stmt)
2855 GIMPLE_CHECK (gs, GIMPLE_BIND);
2856 gimple_seq_add_stmt (&gs->gimple_bind.body, stmt);
2860 /* Append a sequence of statements to the end of a GIMPLE_BIND's body. */
2862 static inline void
2863 gimple_bind_add_seq (gimple gs, gimple_seq seq)
2865 GIMPLE_CHECK (gs, GIMPLE_BIND);
2866 gimple_seq_add_seq (&gs->gimple_bind.body, seq);
2870 /* Return the TREE_BLOCK node associated with GIMPLE_BIND statement
2871 GS. This is analogous to the BIND_EXPR_BLOCK field in trees. */
2873 static inline tree
2874 gimple_bind_block (const_gimple gs)
2876 GIMPLE_CHECK (gs, GIMPLE_BIND);
2877 return gs->gimple_bind.block;
2881 /* Set BLOCK to be the TREE_BLOCK node associated with GIMPLE_BIND
2882 statement GS. */
2884 static inline void
2885 gimple_bind_set_block (gimple gs, tree block)
2887 GIMPLE_CHECK (gs, GIMPLE_BIND);
2888 gcc_gimple_checking_assert (block == NULL_TREE
2889 || TREE_CODE (block) == BLOCK);
2890 gs->gimple_bind.block = block;
2894 /* Return the number of input operands for GIMPLE_ASM GS. */
2896 static inline unsigned
2897 gimple_asm_ninputs (const_gimple gs)
2899 GIMPLE_CHECK (gs, GIMPLE_ASM);
2900 return gs->gimple_asm.ni;
2904 /* Return the number of output operands for GIMPLE_ASM GS. */
2906 static inline unsigned
2907 gimple_asm_noutputs (const_gimple gs)
2909 GIMPLE_CHECK (gs, GIMPLE_ASM);
2910 return gs->gimple_asm.no;
2914 /* Return the number of clobber operands for GIMPLE_ASM GS. */
2916 static inline unsigned
2917 gimple_asm_nclobbers (const_gimple gs)
2919 GIMPLE_CHECK (gs, GIMPLE_ASM);
2920 return gs->gimple_asm.nc;
2923 /* Return the number of label operands for GIMPLE_ASM GS. */
2925 static inline unsigned
2926 gimple_asm_nlabels (const_gimple gs)
2928 GIMPLE_CHECK (gs, GIMPLE_ASM);
2929 return gs->gimple_asm.nl;
2932 /* Return input operand INDEX of GIMPLE_ASM GS. */
2934 static inline tree
2935 gimple_asm_input_op (const_gimple gs, unsigned index)
2937 GIMPLE_CHECK (gs, GIMPLE_ASM);
2938 gcc_gimple_checking_assert (index <= gs->gimple_asm.ni);
2939 return gimple_op (gs, index);
2942 /* Return a pointer to input operand INDEX of GIMPLE_ASM GS. */
2944 static inline tree *
2945 gimple_asm_input_op_ptr (const_gimple gs, unsigned index)
2947 GIMPLE_CHECK (gs, GIMPLE_ASM);
2948 gcc_gimple_checking_assert (index <= gs->gimple_asm.ni);
2949 return gimple_op_ptr (gs, index);
2953 /* Set IN_OP to be input operand INDEX in GIMPLE_ASM GS. */
2955 static inline void
2956 gimple_asm_set_input_op (gimple gs, unsigned index, tree in_op)
2958 GIMPLE_CHECK (gs, GIMPLE_ASM);
2959 gcc_gimple_checking_assert (index <= gs->gimple_asm.ni
2960 && TREE_CODE (in_op) == TREE_LIST);
2961 gimple_set_op (gs, index, in_op);
2965 /* Return output operand INDEX of GIMPLE_ASM GS. */
2967 static inline tree
2968 gimple_asm_output_op (const_gimple gs, unsigned index)
2970 GIMPLE_CHECK (gs, GIMPLE_ASM);
2971 gcc_gimple_checking_assert (index <= gs->gimple_asm.no);
2972 return gimple_op (gs, index + gs->gimple_asm.ni);
2975 /* Return a pointer to output operand INDEX of GIMPLE_ASM GS. */
2977 static inline tree *
2978 gimple_asm_output_op_ptr (const_gimple gs, unsigned index)
2980 GIMPLE_CHECK (gs, GIMPLE_ASM);
2981 gcc_gimple_checking_assert (index <= gs->gimple_asm.no);
2982 return gimple_op_ptr (gs, index + gs->gimple_asm.ni);
2986 /* Set OUT_OP to be output operand INDEX in GIMPLE_ASM GS. */
2988 static inline void
2989 gimple_asm_set_output_op (gimple gs, unsigned index, tree out_op)
2991 GIMPLE_CHECK (gs, GIMPLE_ASM);
2992 gcc_gimple_checking_assert (index <= gs->gimple_asm.no
2993 && TREE_CODE (out_op) == TREE_LIST);
2994 gimple_set_op (gs, index + gs->gimple_asm.ni, out_op);
2998 /* Return clobber operand INDEX of GIMPLE_ASM GS. */
3000 static inline tree
3001 gimple_asm_clobber_op (const_gimple gs, unsigned index)
3003 GIMPLE_CHECK (gs, GIMPLE_ASM);
3004 gcc_gimple_checking_assert (index <= gs->gimple_asm.nc);
3005 return gimple_op (gs, index + gs->gimple_asm.ni + gs->gimple_asm.no);
3009 /* Set CLOBBER_OP to be clobber operand INDEX in GIMPLE_ASM GS. */
3011 static inline void
3012 gimple_asm_set_clobber_op (gimple gs, unsigned index, tree clobber_op)
3014 GIMPLE_CHECK (gs, GIMPLE_ASM);
3015 gcc_gimple_checking_assert (index <= gs->gimple_asm.nc
3016 && TREE_CODE (clobber_op) == TREE_LIST);
3017 gimple_set_op (gs, index + gs->gimple_asm.ni + gs->gimple_asm.no, clobber_op);
3020 /* Return label operand INDEX of GIMPLE_ASM GS. */
3022 static inline tree
3023 gimple_asm_label_op (const_gimple gs, unsigned index)
3025 GIMPLE_CHECK (gs, GIMPLE_ASM);
3026 gcc_gimple_checking_assert (index <= gs->gimple_asm.nl);
3027 return gimple_op (gs, index + gs->gimple_asm.ni + gs->gimple_asm.nc);
3030 /* Set LABEL_OP to be label operand INDEX in GIMPLE_ASM GS. */
3032 static inline void
3033 gimple_asm_set_label_op (gimple gs, unsigned index, tree label_op)
3035 GIMPLE_CHECK (gs, GIMPLE_ASM);
3036 gcc_gimple_checking_assert (index <= gs->gimple_asm.nl
3037 && TREE_CODE (label_op) == TREE_LIST);
3038 gimple_set_op (gs, index + gs->gimple_asm.ni + gs->gimple_asm.nc, label_op);
3041 /* Return the string representing the assembly instruction in
3042 GIMPLE_ASM GS. */
3044 static inline const char *
3045 gimple_asm_string (const_gimple gs)
3047 GIMPLE_CHECK (gs, GIMPLE_ASM);
3048 return gs->gimple_asm.string;
3052 /* Return true if GS is an asm statement marked volatile. */
3054 static inline bool
3055 gimple_asm_volatile_p (const_gimple gs)
3057 GIMPLE_CHECK (gs, GIMPLE_ASM);
3058 return (gs->gsbase.subcode & GF_ASM_VOLATILE) != 0;
3062 /* If VOLATLE_P is true, mark asm statement GS as volatile. */
3064 static inline void
3065 gimple_asm_set_volatile (gimple gs, bool volatile_p)
3067 GIMPLE_CHECK (gs, GIMPLE_ASM);
3068 if (volatile_p)
3069 gs->gsbase.subcode |= GF_ASM_VOLATILE;
3070 else
3071 gs->gsbase.subcode &= ~GF_ASM_VOLATILE;
3075 /* If INPUT_P is true, mark asm GS as an ASM_INPUT. */
3077 static inline void
3078 gimple_asm_set_input (gimple gs, bool input_p)
3080 GIMPLE_CHECK (gs, GIMPLE_ASM);
3081 if (input_p)
3082 gs->gsbase.subcode |= GF_ASM_INPUT;
3083 else
3084 gs->gsbase.subcode &= ~GF_ASM_INPUT;
3088 /* Return true if asm GS is an ASM_INPUT. */
3090 static inline bool
3091 gimple_asm_input_p (const_gimple gs)
3093 GIMPLE_CHECK (gs, GIMPLE_ASM);
3094 return (gs->gsbase.subcode & GF_ASM_INPUT) != 0;
3098 /* Return the types handled by GIMPLE_CATCH statement GS. */
3100 static inline tree
3101 gimple_catch_types (const_gimple gs)
3103 GIMPLE_CHECK (gs, GIMPLE_CATCH);
3104 return gs->gimple_catch.types;
3108 /* Return a pointer to the types handled by GIMPLE_CATCH statement GS. */
3110 static inline tree *
3111 gimple_catch_types_ptr (gimple gs)
3113 GIMPLE_CHECK (gs, GIMPLE_CATCH);
3114 return &gs->gimple_catch.types;
3118 /* Return the GIMPLE sequence representing the body of the handler of
3119 GIMPLE_CATCH statement GS. */
3121 static inline gimple_seq
3122 gimple_catch_handler (gimple gs)
3124 GIMPLE_CHECK (gs, GIMPLE_CATCH);
3125 return gs->gimple_catch.handler;
3129 /* Return a pointer to the GIMPLE sequence representing the body of
3130 the handler of GIMPLE_CATCH statement GS. */
3132 static inline gimple_seq *
3133 gimple_catch_handler_ptr (gimple gs)
3135 GIMPLE_CHECK (gs, GIMPLE_CATCH);
3136 return &gs->gimple_catch.handler;
3140 /* Set T to be the set of types handled by GIMPLE_CATCH GS. */
3142 static inline void
3143 gimple_catch_set_types (gimple gs, tree t)
3145 GIMPLE_CHECK (gs, GIMPLE_CATCH);
3146 gs->gimple_catch.types = t;
3150 /* Set HANDLER to be the body of GIMPLE_CATCH GS. */
3152 static inline void
3153 gimple_catch_set_handler (gimple gs, gimple_seq handler)
3155 GIMPLE_CHECK (gs, GIMPLE_CATCH);
3156 gs->gimple_catch.handler = handler;
3160 /* Return the types handled by GIMPLE_EH_FILTER statement GS. */
3162 static inline tree
3163 gimple_eh_filter_types (const_gimple gs)
3165 GIMPLE_CHECK (gs, GIMPLE_EH_FILTER);
3166 return gs->gimple_eh_filter.types;
3170 /* Return a pointer to the types handled by GIMPLE_EH_FILTER statement
3171 GS. */
3173 static inline tree *
3174 gimple_eh_filter_types_ptr (gimple gs)
3176 GIMPLE_CHECK (gs, GIMPLE_EH_FILTER);
3177 return &gs->gimple_eh_filter.types;
3181 /* Return the sequence of statement to execute when GIMPLE_EH_FILTER
3182 statement fails. */
3184 static inline gimple_seq
3185 gimple_eh_filter_failure (gimple gs)
3187 GIMPLE_CHECK (gs, GIMPLE_EH_FILTER);
3188 return gs->gimple_eh_filter.failure;
3192 /* Set TYPES to be the set of types handled by GIMPLE_EH_FILTER GS. */
3194 static inline void
3195 gimple_eh_filter_set_types (gimple gs, tree types)
3197 GIMPLE_CHECK (gs, GIMPLE_EH_FILTER);
3198 gs->gimple_eh_filter.types = types;
3202 /* Set FAILURE to be the sequence of statements to execute on failure
3203 for GIMPLE_EH_FILTER GS. */
3205 static inline void
3206 gimple_eh_filter_set_failure (gimple gs, gimple_seq failure)
3208 GIMPLE_CHECK (gs, GIMPLE_EH_FILTER);
3209 gs->gimple_eh_filter.failure = failure;
3212 /* Get the function decl to be called by the MUST_NOT_THROW region. */
3214 static inline tree
3215 gimple_eh_must_not_throw_fndecl (gimple gs)
3217 GIMPLE_CHECK (gs, GIMPLE_EH_MUST_NOT_THROW);
3218 return gs->gimple_eh_mnt.fndecl;
3221 /* Set the function decl to be called by GS to DECL. */
3223 static inline void
3224 gimple_eh_must_not_throw_set_fndecl (gimple gs, tree decl)
3226 GIMPLE_CHECK (gs, GIMPLE_EH_MUST_NOT_THROW);
3227 gs->gimple_eh_mnt.fndecl = decl;
3230 /* GIMPLE_EH_ELSE accessors. */
3232 static inline gimple_seq
3233 gimple_eh_else_n_body (gimple gs)
3235 GIMPLE_CHECK (gs, GIMPLE_EH_ELSE);
3236 return gs->gimple_eh_else.n_body;
3239 static inline gimple_seq
3240 gimple_eh_else_e_body (gimple gs)
3242 GIMPLE_CHECK (gs, GIMPLE_EH_ELSE);
3243 return gs->gimple_eh_else.e_body;
3246 static inline void
3247 gimple_eh_else_set_n_body (gimple gs, gimple_seq seq)
3249 GIMPLE_CHECK (gs, GIMPLE_EH_ELSE);
3250 gs->gimple_eh_else.n_body = seq;
3253 static inline void
3254 gimple_eh_else_set_e_body (gimple gs, gimple_seq seq)
3256 GIMPLE_CHECK (gs, GIMPLE_EH_ELSE);
3257 gs->gimple_eh_else.e_body = seq;
3260 /* GIMPLE_TRY accessors. */
3262 /* Return the kind of try block represented by GIMPLE_TRY GS. This is
3263 either GIMPLE_TRY_CATCH or GIMPLE_TRY_FINALLY. */
3265 static inline enum gimple_try_flags
3266 gimple_try_kind (const_gimple gs)
3268 GIMPLE_CHECK (gs, GIMPLE_TRY);
3269 return (enum gimple_try_flags) (gs->gsbase.subcode & GIMPLE_TRY_KIND);
3273 /* Set the kind of try block represented by GIMPLE_TRY GS. */
3275 static inline void
3276 gimple_try_set_kind (gimple gs, enum gimple_try_flags kind)
3278 GIMPLE_CHECK (gs, GIMPLE_TRY);
3279 gcc_gimple_checking_assert (kind == GIMPLE_TRY_CATCH
3280 || kind == GIMPLE_TRY_FINALLY);
3281 if (gimple_try_kind (gs) != kind)
3282 gs->gsbase.subcode = (unsigned int) kind;
3286 /* Return the GIMPLE_TRY_CATCH_IS_CLEANUP flag. */
3288 static inline bool
3289 gimple_try_catch_is_cleanup (const_gimple gs)
3291 gcc_gimple_checking_assert (gimple_try_kind (gs) == GIMPLE_TRY_CATCH);
3292 return (gs->gsbase.subcode & GIMPLE_TRY_CATCH_IS_CLEANUP) != 0;
3296 /* Return the sequence of statements used as the body for GIMPLE_TRY GS. */
3298 static inline gimple_seq
3299 gimple_try_eval (gimple gs)
3301 GIMPLE_CHECK (gs, GIMPLE_TRY);
3302 return gs->gimple_try.eval;
3306 /* Return the sequence of statements used as the cleanup body for
3307 GIMPLE_TRY GS. */
3309 static inline gimple_seq
3310 gimple_try_cleanup (gimple gs)
3312 GIMPLE_CHECK (gs, GIMPLE_TRY);
3313 return gs->gimple_try.cleanup;
3317 /* Set the GIMPLE_TRY_CATCH_IS_CLEANUP flag. */
3319 static inline void
3320 gimple_try_set_catch_is_cleanup (gimple g, bool catch_is_cleanup)
3322 gcc_gimple_checking_assert (gimple_try_kind (g) == GIMPLE_TRY_CATCH);
3323 if (catch_is_cleanup)
3324 g->gsbase.subcode |= GIMPLE_TRY_CATCH_IS_CLEANUP;
3325 else
3326 g->gsbase.subcode &= ~GIMPLE_TRY_CATCH_IS_CLEANUP;
3330 /* Set EVAL to be the sequence of statements to use as the body for
3331 GIMPLE_TRY GS. */
3333 static inline void
3334 gimple_try_set_eval (gimple gs, gimple_seq eval)
3336 GIMPLE_CHECK (gs, GIMPLE_TRY);
3337 gs->gimple_try.eval = eval;
3341 /* Set CLEANUP to be the sequence of statements to use as the cleanup
3342 body for GIMPLE_TRY GS. */
3344 static inline void
3345 gimple_try_set_cleanup (gimple gs, gimple_seq cleanup)
3347 GIMPLE_CHECK (gs, GIMPLE_TRY);
3348 gs->gimple_try.cleanup = cleanup;
3352 /* Return the cleanup sequence for cleanup statement GS. */
3354 static inline gimple_seq
3355 gimple_wce_cleanup (gimple gs)
3357 GIMPLE_CHECK (gs, GIMPLE_WITH_CLEANUP_EXPR);
3358 return gs->gimple_wce.cleanup;
3362 /* Set CLEANUP to be the cleanup sequence for GS. */
3364 static inline void
3365 gimple_wce_set_cleanup (gimple gs, gimple_seq cleanup)
3367 GIMPLE_CHECK (gs, GIMPLE_WITH_CLEANUP_EXPR);
3368 gs->gimple_wce.cleanup = cleanup;
3372 /* Return the CLEANUP_EH_ONLY flag for a WCE tuple. */
3374 static inline bool
3375 gimple_wce_cleanup_eh_only (const_gimple gs)
3377 GIMPLE_CHECK (gs, GIMPLE_WITH_CLEANUP_EXPR);
3378 return gs->gsbase.subcode != 0;
3382 /* Set the CLEANUP_EH_ONLY flag for a WCE tuple. */
3384 static inline void
3385 gimple_wce_set_cleanup_eh_only (gimple gs, bool eh_only_p)
3387 GIMPLE_CHECK (gs, GIMPLE_WITH_CLEANUP_EXPR);
3388 gs->gsbase.subcode = (unsigned int) eh_only_p;
3392 /* Return the maximum number of arguments supported by GIMPLE_PHI GS. */
3394 static inline unsigned
3395 gimple_phi_capacity (const_gimple gs)
3397 GIMPLE_CHECK (gs, GIMPLE_PHI);
3398 return gs->gimple_phi.capacity;
3402 /* Return the number of arguments in GIMPLE_PHI GS. This must always
3403 be exactly the number of incoming edges for the basic block holding
3404 GS. */
3406 static inline unsigned
3407 gimple_phi_num_args (const_gimple gs)
3409 GIMPLE_CHECK (gs, GIMPLE_PHI);
3410 return gs->gimple_phi.nargs;
3414 /* Return the SSA name created by GIMPLE_PHI GS. */
3416 static inline tree
3417 gimple_phi_result (const_gimple gs)
3419 GIMPLE_CHECK (gs, GIMPLE_PHI);
3420 return gs->gimple_phi.result;
3423 /* Return a pointer to the SSA name created by GIMPLE_PHI GS. */
3425 static inline tree *
3426 gimple_phi_result_ptr (gimple gs)
3428 GIMPLE_CHECK (gs, GIMPLE_PHI);
3429 return &gs->gimple_phi.result;
3432 /* Set RESULT to be the SSA name created by GIMPLE_PHI GS. */
3434 static inline void
3435 gimple_phi_set_result (gimple gs, tree result)
3437 GIMPLE_CHECK (gs, GIMPLE_PHI);
3438 gs->gimple_phi.result = result;
3442 /* Return the PHI argument corresponding to incoming edge INDEX for
3443 GIMPLE_PHI GS. */
3445 static inline struct phi_arg_d *
3446 gimple_phi_arg (gimple gs, unsigned index)
3448 GIMPLE_CHECK (gs, GIMPLE_PHI);
3449 gcc_gimple_checking_assert (index <= gs->gimple_phi.capacity);
3450 return &(gs->gimple_phi.args[index]);
3453 /* Set PHIARG to be the argument corresponding to incoming edge INDEX
3454 for GIMPLE_PHI GS. */
3456 static inline void
3457 gimple_phi_set_arg (gimple gs, unsigned index, struct phi_arg_d * phiarg)
3459 GIMPLE_CHECK (gs, GIMPLE_PHI);
3460 gcc_gimple_checking_assert (index <= gs->gimple_phi.nargs);
3461 gs->gimple_phi.args[index] = *phiarg;
3464 /* Return the region number for GIMPLE_RESX GS. */
3466 static inline int
3467 gimple_resx_region (const_gimple gs)
3469 GIMPLE_CHECK (gs, GIMPLE_RESX);
3470 return gs->gimple_eh_ctrl.region;
3473 /* Set REGION to be the region number for GIMPLE_RESX GS. */
3475 static inline void
3476 gimple_resx_set_region (gimple gs, int region)
3478 GIMPLE_CHECK (gs, GIMPLE_RESX);
3479 gs->gimple_eh_ctrl.region = region;
3482 /* Return the region number for GIMPLE_EH_DISPATCH GS. */
3484 static inline int
3485 gimple_eh_dispatch_region (const_gimple gs)
3487 GIMPLE_CHECK (gs, GIMPLE_EH_DISPATCH);
3488 return gs->gimple_eh_ctrl.region;
3491 /* Set REGION to be the region number for GIMPLE_EH_DISPATCH GS. */
3493 static inline void
3494 gimple_eh_dispatch_set_region (gimple gs, int region)
3496 GIMPLE_CHECK (gs, GIMPLE_EH_DISPATCH);
3497 gs->gimple_eh_ctrl.region = region;
3500 /* Return the number of labels associated with the switch statement GS. */
3502 static inline unsigned
3503 gimple_switch_num_labels (const_gimple gs)
3505 unsigned num_ops;
3506 GIMPLE_CHECK (gs, GIMPLE_SWITCH);
3507 num_ops = gimple_num_ops (gs);
3508 gcc_gimple_checking_assert (num_ops > 1);
3509 return num_ops - 1;
3513 /* Set NLABELS to be the number of labels for the switch statement GS. */
3515 static inline void
3516 gimple_switch_set_num_labels (gimple g, unsigned nlabels)
3518 GIMPLE_CHECK (g, GIMPLE_SWITCH);
3519 gimple_set_num_ops (g, nlabels + 1);
3523 /* Return the index variable used by the switch statement GS. */
3525 static inline tree
3526 gimple_switch_index (const_gimple gs)
3528 GIMPLE_CHECK (gs, GIMPLE_SWITCH);
3529 return gimple_op (gs, 0);
3533 /* Return a pointer to the index variable for the switch statement GS. */
3535 static inline tree *
3536 gimple_switch_index_ptr (const_gimple gs)
3538 GIMPLE_CHECK (gs, GIMPLE_SWITCH);
3539 return gimple_op_ptr (gs, 0);
3543 /* Set INDEX to be the index variable for switch statement GS. */
3545 static inline void
3546 gimple_switch_set_index (gimple gs, tree index)
3548 GIMPLE_CHECK (gs, GIMPLE_SWITCH);
3549 gcc_gimple_checking_assert (SSA_VAR_P (index) || CONSTANT_CLASS_P (index));
3550 gimple_set_op (gs, 0, index);
3554 /* Return the label numbered INDEX. The default label is 0, followed by any
3555 labels in a switch statement. */
3557 static inline tree
3558 gimple_switch_label (const_gimple gs, unsigned index)
3560 GIMPLE_CHECK (gs, GIMPLE_SWITCH);
3561 gcc_gimple_checking_assert (gimple_num_ops (gs) > index + 1);
3562 return gimple_op (gs, index + 1);
3565 /* Set the label number INDEX to LABEL. 0 is always the default label. */
3567 static inline void
3568 gimple_switch_set_label (gimple gs, unsigned index, tree label)
3570 GIMPLE_CHECK (gs, GIMPLE_SWITCH);
3571 gcc_gimple_checking_assert (gimple_num_ops (gs) > index + 1
3572 && (label == NULL_TREE
3573 || TREE_CODE (label) == CASE_LABEL_EXPR));
3574 gimple_set_op (gs, index + 1, label);
3577 /* Return the default label for a switch statement. */
3579 static inline tree
3580 gimple_switch_default_label (const_gimple gs)
3582 return gimple_switch_label (gs, 0);
3585 /* Set the default label for a switch statement. */
3587 static inline void
3588 gimple_switch_set_default_label (gimple gs, tree label)
3590 gimple_switch_set_label (gs, 0, label);
3593 /* Return true if GS is a GIMPLE_DEBUG statement. */
3595 static inline bool
3596 is_gimple_debug (const_gimple gs)
3598 return gimple_code (gs) == GIMPLE_DEBUG;
3601 /* Return true if S is a GIMPLE_DEBUG BIND statement. */
3603 static inline bool
3604 gimple_debug_bind_p (const_gimple s)
3606 if (is_gimple_debug (s))
3607 return s->gsbase.subcode == GIMPLE_DEBUG_BIND;
3609 return false;
3612 /* Return the variable bound in a GIMPLE_DEBUG bind statement. */
3614 static inline tree
3615 gimple_debug_bind_get_var (gimple dbg)
3617 GIMPLE_CHECK (dbg, GIMPLE_DEBUG);
3618 gcc_gimple_checking_assert (gimple_debug_bind_p (dbg));
3619 return gimple_op (dbg, 0);
3622 /* Return the value bound to the variable in a GIMPLE_DEBUG bind
3623 statement. */
3625 static inline tree
3626 gimple_debug_bind_get_value (gimple dbg)
3628 GIMPLE_CHECK (dbg, GIMPLE_DEBUG);
3629 gcc_gimple_checking_assert (gimple_debug_bind_p (dbg));
3630 return gimple_op (dbg, 1);
3633 /* Return a pointer to the value bound to the variable in a
3634 GIMPLE_DEBUG bind statement. */
3636 static inline tree *
3637 gimple_debug_bind_get_value_ptr (gimple dbg)
3639 GIMPLE_CHECK (dbg, GIMPLE_DEBUG);
3640 gcc_gimple_checking_assert (gimple_debug_bind_p (dbg));
3641 return gimple_op_ptr (dbg, 1);
3644 /* Set the variable bound in a GIMPLE_DEBUG bind statement. */
3646 static inline void
3647 gimple_debug_bind_set_var (gimple dbg, tree var)
3649 GIMPLE_CHECK (dbg, GIMPLE_DEBUG);
3650 gcc_gimple_checking_assert (gimple_debug_bind_p (dbg));
3651 gimple_set_op (dbg, 0, var);
3654 /* Set the value bound to the variable in a GIMPLE_DEBUG bind
3655 statement. */
3657 static inline void
3658 gimple_debug_bind_set_value (gimple dbg, tree value)
3660 GIMPLE_CHECK (dbg, GIMPLE_DEBUG);
3661 gcc_gimple_checking_assert (gimple_debug_bind_p (dbg));
3662 gimple_set_op (dbg, 1, value);
3665 /* The second operand of a GIMPLE_DEBUG_BIND, when the value was
3666 optimized away. */
3667 #define GIMPLE_DEBUG_BIND_NOVALUE NULL_TREE /* error_mark_node */
3669 /* Remove the value bound to the variable in a GIMPLE_DEBUG bind
3670 statement. */
3672 static inline void
3673 gimple_debug_bind_reset_value (gimple dbg)
3675 GIMPLE_CHECK (dbg, GIMPLE_DEBUG);
3676 gcc_gimple_checking_assert (gimple_debug_bind_p (dbg));
3677 gimple_set_op (dbg, 1, GIMPLE_DEBUG_BIND_NOVALUE);
3680 /* Return true if the GIMPLE_DEBUG bind statement is bound to a
3681 value. */
3683 static inline bool
3684 gimple_debug_bind_has_value_p (gimple dbg)
3686 GIMPLE_CHECK (dbg, GIMPLE_DEBUG);
3687 gcc_gimple_checking_assert (gimple_debug_bind_p (dbg));
3688 return gimple_op (dbg, 1) != GIMPLE_DEBUG_BIND_NOVALUE;
3691 #undef GIMPLE_DEBUG_BIND_NOVALUE
3693 /* Return true if S is a GIMPLE_DEBUG SOURCE BIND statement. */
3695 static inline bool
3696 gimple_debug_source_bind_p (const_gimple s)
3698 if (is_gimple_debug (s))
3699 return s->gsbase.subcode == GIMPLE_DEBUG_SOURCE_BIND;
3701 return false;
3704 /* Return the variable bound in a GIMPLE_DEBUG source bind statement. */
3706 static inline tree
3707 gimple_debug_source_bind_get_var (gimple dbg)
3709 GIMPLE_CHECK (dbg, GIMPLE_DEBUG);
3710 gcc_gimple_checking_assert (gimple_debug_source_bind_p (dbg));
3711 return gimple_op (dbg, 0);
3714 /* Return the value bound to the variable in a GIMPLE_DEBUG source bind
3715 statement. */
3717 static inline tree
3718 gimple_debug_source_bind_get_value (gimple dbg)
3720 GIMPLE_CHECK (dbg, GIMPLE_DEBUG);
3721 gcc_gimple_checking_assert (gimple_debug_source_bind_p (dbg));
3722 return gimple_op (dbg, 1);
3725 /* Return a pointer to the value bound to the variable in a
3726 GIMPLE_DEBUG source bind statement. */
3728 static inline tree *
3729 gimple_debug_source_bind_get_value_ptr (gimple dbg)
3731 GIMPLE_CHECK (dbg, GIMPLE_DEBUG);
3732 gcc_gimple_checking_assert (gimple_debug_source_bind_p (dbg));
3733 return gimple_op_ptr (dbg, 1);
3736 /* Set the variable bound in a GIMPLE_DEBUG source bind statement. */
3738 static inline void
3739 gimple_debug_source_bind_set_var (gimple dbg, tree var)
3741 GIMPLE_CHECK (dbg, GIMPLE_DEBUG);
3742 gcc_gimple_checking_assert (gimple_debug_source_bind_p (dbg));
3743 gimple_set_op (dbg, 0, var);
3746 /* Set the value bound to the variable in a GIMPLE_DEBUG source bind
3747 statement. */
3749 static inline void
3750 gimple_debug_source_bind_set_value (gimple dbg, tree value)
3752 GIMPLE_CHECK (dbg, GIMPLE_DEBUG);
3753 gcc_gimple_checking_assert (gimple_debug_source_bind_p (dbg));
3754 gimple_set_op (dbg, 1, value);
3757 /* Return the body for the OMP statement GS. */
3759 static inline gimple_seq
3760 gimple_omp_body (gimple gs)
3762 return gs->omp.body;
3765 /* Set BODY to be the body for the OMP statement GS. */
3767 static inline void
3768 gimple_omp_set_body (gimple gs, gimple_seq body)
3770 gs->omp.body = body;
3774 /* Return the name associated with OMP_CRITICAL statement GS. */
3776 static inline tree
3777 gimple_omp_critical_name (const_gimple gs)
3779 GIMPLE_CHECK (gs, GIMPLE_OMP_CRITICAL);
3780 return gs->gimple_omp_critical.name;
3784 /* Return a pointer to the name associated with OMP critical statement GS. */
3786 static inline tree *
3787 gimple_omp_critical_name_ptr (gimple gs)
3789 GIMPLE_CHECK (gs, GIMPLE_OMP_CRITICAL);
3790 return &gs->gimple_omp_critical.name;
3794 /* Set NAME to be the name associated with OMP critical statement GS. */
3796 static inline void
3797 gimple_omp_critical_set_name (gimple gs, tree name)
3799 GIMPLE_CHECK (gs, GIMPLE_OMP_CRITICAL);
3800 gs->gimple_omp_critical.name = name;
3804 /* Return the clauses associated with OMP_FOR GS. */
3806 static inline tree
3807 gimple_omp_for_clauses (const_gimple gs)
3809 GIMPLE_CHECK (gs, GIMPLE_OMP_FOR);
3810 return gs->gimple_omp_for.clauses;
3814 /* Return a pointer to the OMP_FOR GS. */
3816 static inline tree *
3817 gimple_omp_for_clauses_ptr (gimple gs)
3819 GIMPLE_CHECK (gs, GIMPLE_OMP_FOR);
3820 return &gs->gimple_omp_for.clauses;
3824 /* Set CLAUSES to be the list of clauses associated with OMP_FOR GS. */
3826 static inline void
3827 gimple_omp_for_set_clauses (gimple gs, tree clauses)
3829 GIMPLE_CHECK (gs, GIMPLE_OMP_FOR);
3830 gs->gimple_omp_for.clauses = clauses;
3834 /* Get the collapse count of OMP_FOR GS. */
3836 static inline size_t
3837 gimple_omp_for_collapse (gimple gs)
3839 GIMPLE_CHECK (gs, GIMPLE_OMP_FOR);
3840 return gs->gimple_omp_for.collapse;
3844 /* Return the index variable for OMP_FOR GS. */
3846 static inline tree
3847 gimple_omp_for_index (const_gimple gs, size_t i)
3849 GIMPLE_CHECK (gs, GIMPLE_OMP_FOR);
3850 gcc_gimple_checking_assert (i < gs->gimple_omp_for.collapse);
3851 return gs->gimple_omp_for.iter[i].index;
3855 /* Return a pointer to the index variable for OMP_FOR GS. */
3857 static inline tree *
3858 gimple_omp_for_index_ptr (gimple gs, size_t i)
3860 GIMPLE_CHECK (gs, GIMPLE_OMP_FOR);
3861 gcc_gimple_checking_assert (i < gs->gimple_omp_for.collapse);
3862 return &gs->gimple_omp_for.iter[i].index;
3866 /* Set INDEX to be the index variable for OMP_FOR GS. */
3868 static inline void
3869 gimple_omp_for_set_index (gimple gs, size_t i, tree index)
3871 GIMPLE_CHECK (gs, GIMPLE_OMP_FOR);
3872 gcc_gimple_checking_assert (i < gs->gimple_omp_for.collapse);
3873 gs->gimple_omp_for.iter[i].index = index;
3877 /* Return the initial value for OMP_FOR GS. */
3879 static inline tree
3880 gimple_omp_for_initial (const_gimple gs, size_t i)
3882 GIMPLE_CHECK (gs, GIMPLE_OMP_FOR);
3883 gcc_gimple_checking_assert (i < gs->gimple_omp_for.collapse);
3884 return gs->gimple_omp_for.iter[i].initial;
3888 /* Return a pointer to the initial value for OMP_FOR GS. */
3890 static inline tree *
3891 gimple_omp_for_initial_ptr (gimple gs, size_t i)
3893 GIMPLE_CHECK (gs, GIMPLE_OMP_FOR);
3894 gcc_gimple_checking_assert (i < gs->gimple_omp_for.collapse);
3895 return &gs->gimple_omp_for.iter[i].initial;
3899 /* Set INITIAL to be the initial value for OMP_FOR GS. */
3901 static inline void
3902 gimple_omp_for_set_initial (gimple gs, size_t i, tree initial)
3904 GIMPLE_CHECK (gs, GIMPLE_OMP_FOR);
3905 gcc_gimple_checking_assert (i < gs->gimple_omp_for.collapse);
3906 gs->gimple_omp_for.iter[i].initial = initial;
3910 /* Return the final value for OMP_FOR GS. */
3912 static inline tree
3913 gimple_omp_for_final (const_gimple gs, size_t i)
3915 GIMPLE_CHECK (gs, GIMPLE_OMP_FOR);
3916 gcc_gimple_checking_assert (i < gs->gimple_omp_for.collapse);
3917 return gs->gimple_omp_for.iter[i].final;
3921 /* Return a pointer to the final value for OMP_FOR GS. */
3923 static inline tree *
3924 gimple_omp_for_final_ptr (gimple gs, size_t i)
3926 GIMPLE_CHECK (gs, GIMPLE_OMP_FOR);
3927 gcc_gimple_checking_assert (i < gs->gimple_omp_for.collapse);
3928 return &gs->gimple_omp_for.iter[i].final;
3932 /* Set FINAL to be the final value for OMP_FOR GS. */
3934 static inline void
3935 gimple_omp_for_set_final (gimple gs, size_t i, tree final)
3937 GIMPLE_CHECK (gs, GIMPLE_OMP_FOR);
3938 gcc_gimple_checking_assert (i < gs->gimple_omp_for.collapse);
3939 gs->gimple_omp_for.iter[i].final = final;
3943 /* Return the increment value for OMP_FOR GS. */
3945 static inline tree
3946 gimple_omp_for_incr (const_gimple gs, size_t i)
3948 GIMPLE_CHECK (gs, GIMPLE_OMP_FOR);
3949 gcc_gimple_checking_assert (i < gs->gimple_omp_for.collapse);
3950 return gs->gimple_omp_for.iter[i].incr;
3954 /* Return a pointer to the increment value for OMP_FOR GS. */
3956 static inline tree *
3957 gimple_omp_for_incr_ptr (gimple gs, size_t i)
3959 GIMPLE_CHECK (gs, GIMPLE_OMP_FOR);
3960 gcc_gimple_checking_assert (i < gs->gimple_omp_for.collapse);
3961 return &gs->gimple_omp_for.iter[i].incr;
3965 /* Set INCR to be the increment value for OMP_FOR GS. */
3967 static inline void
3968 gimple_omp_for_set_incr (gimple gs, size_t i, tree incr)
3970 GIMPLE_CHECK (gs, GIMPLE_OMP_FOR);
3971 gcc_gimple_checking_assert (i < gs->gimple_omp_for.collapse);
3972 gs->gimple_omp_for.iter[i].incr = incr;
3976 /* Return the sequence of statements to execute before the OMP_FOR
3977 statement GS starts. */
3979 static inline gimple_seq
3980 gimple_omp_for_pre_body (gimple gs)
3982 GIMPLE_CHECK (gs, GIMPLE_OMP_FOR);
3983 return gs->gimple_omp_for.pre_body;
3987 /* Set PRE_BODY to be the sequence of statements to execute before the
3988 OMP_FOR statement GS starts. */
3990 static inline void
3991 gimple_omp_for_set_pre_body (gimple gs, gimple_seq pre_body)
3993 GIMPLE_CHECK (gs, GIMPLE_OMP_FOR);
3994 gs->gimple_omp_for.pre_body = pre_body;
3998 /* Return the clauses associated with OMP_PARALLEL GS. */
4000 static inline tree
4001 gimple_omp_parallel_clauses (const_gimple gs)
4003 GIMPLE_CHECK (gs, GIMPLE_OMP_PARALLEL);
4004 return gs->gimple_omp_parallel.clauses;
4008 /* Return a pointer to the clauses associated with OMP_PARALLEL GS. */
4010 static inline tree *
4011 gimple_omp_parallel_clauses_ptr (gimple gs)
4013 GIMPLE_CHECK (gs, GIMPLE_OMP_PARALLEL);
4014 return &gs->gimple_omp_parallel.clauses;
4018 /* Set CLAUSES to be the list of clauses associated with OMP_PARALLEL
4019 GS. */
4021 static inline void
4022 gimple_omp_parallel_set_clauses (gimple gs, tree clauses)
4024 GIMPLE_CHECK (gs, GIMPLE_OMP_PARALLEL);
4025 gs->gimple_omp_parallel.clauses = clauses;
4029 /* Return the child function used to hold the body of OMP_PARALLEL GS. */
4031 static inline tree
4032 gimple_omp_parallel_child_fn (const_gimple gs)
4034 GIMPLE_CHECK (gs, GIMPLE_OMP_PARALLEL);
4035 return gs->gimple_omp_parallel.child_fn;
4038 /* Return a pointer to the child function used to hold the body of
4039 OMP_PARALLEL GS. */
4041 static inline tree *
4042 gimple_omp_parallel_child_fn_ptr (gimple gs)
4044 GIMPLE_CHECK (gs, GIMPLE_OMP_PARALLEL);
4045 return &gs->gimple_omp_parallel.child_fn;
4049 /* Set CHILD_FN to be the child function for OMP_PARALLEL GS. */
4051 static inline void
4052 gimple_omp_parallel_set_child_fn (gimple gs, tree child_fn)
4054 GIMPLE_CHECK (gs, GIMPLE_OMP_PARALLEL);
4055 gs->gimple_omp_parallel.child_fn = child_fn;
4059 /* Return the artificial argument used to send variables and values
4060 from the parent to the children threads in OMP_PARALLEL GS. */
4062 static inline tree
4063 gimple_omp_parallel_data_arg (const_gimple gs)
4065 GIMPLE_CHECK (gs, GIMPLE_OMP_PARALLEL);
4066 return gs->gimple_omp_parallel.data_arg;
4070 /* Return a pointer to the data argument for OMP_PARALLEL GS. */
4072 static inline tree *
4073 gimple_omp_parallel_data_arg_ptr (gimple gs)
4075 GIMPLE_CHECK (gs, GIMPLE_OMP_PARALLEL);
4076 return &gs->gimple_omp_parallel.data_arg;
4080 /* Set DATA_ARG to be the data argument for OMP_PARALLEL GS. */
4082 static inline void
4083 gimple_omp_parallel_set_data_arg (gimple gs, tree data_arg)
4085 GIMPLE_CHECK (gs, GIMPLE_OMP_PARALLEL);
4086 gs->gimple_omp_parallel.data_arg = data_arg;
4090 /* Return the clauses associated with OMP_TASK GS. */
4092 static inline tree
4093 gimple_omp_task_clauses (const_gimple gs)
4095 GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
4096 return gs->gimple_omp_parallel.clauses;
4100 /* Return a pointer to the clauses associated with OMP_TASK GS. */
4102 static inline tree *
4103 gimple_omp_task_clauses_ptr (gimple gs)
4105 GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
4106 return &gs->gimple_omp_parallel.clauses;
4110 /* Set CLAUSES to be the list of clauses associated with OMP_TASK
4111 GS. */
4113 static inline void
4114 gimple_omp_task_set_clauses (gimple gs, tree clauses)
4116 GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
4117 gs->gimple_omp_parallel.clauses = clauses;
4121 /* Return the child function used to hold the body of OMP_TASK GS. */
4123 static inline tree
4124 gimple_omp_task_child_fn (const_gimple gs)
4126 GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
4127 return gs->gimple_omp_parallel.child_fn;
4130 /* Return a pointer to the child function used to hold the body of
4131 OMP_TASK GS. */
4133 static inline tree *
4134 gimple_omp_task_child_fn_ptr (gimple gs)
4136 GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
4137 return &gs->gimple_omp_parallel.child_fn;
4141 /* Set CHILD_FN to be the child function for OMP_TASK GS. */
4143 static inline void
4144 gimple_omp_task_set_child_fn (gimple gs, tree child_fn)
4146 GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
4147 gs->gimple_omp_parallel.child_fn = child_fn;
4151 /* Return the artificial argument used to send variables and values
4152 from the parent to the children threads in OMP_TASK GS. */
4154 static inline tree
4155 gimple_omp_task_data_arg (const_gimple gs)
4157 GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
4158 return gs->gimple_omp_parallel.data_arg;
4162 /* Return a pointer to the data argument for OMP_TASK GS. */
4164 static inline tree *
4165 gimple_omp_task_data_arg_ptr (gimple gs)
4167 GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
4168 return &gs->gimple_omp_parallel.data_arg;
4172 /* Set DATA_ARG to be the data argument for OMP_TASK GS. */
4174 static inline void
4175 gimple_omp_task_set_data_arg (gimple gs, tree data_arg)
4177 GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
4178 gs->gimple_omp_parallel.data_arg = data_arg;
4182 /* Return the clauses associated with OMP_TASK GS. */
4184 static inline tree
4185 gimple_omp_taskreg_clauses (const_gimple gs)
4187 if (gimple_code (gs) != GIMPLE_OMP_PARALLEL)
4188 GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
4189 return gs->gimple_omp_parallel.clauses;
4193 /* Return a pointer to the clauses associated with OMP_TASK GS. */
4195 static inline tree *
4196 gimple_omp_taskreg_clauses_ptr (gimple gs)
4198 if (gimple_code (gs) != GIMPLE_OMP_PARALLEL)
4199 GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
4200 return &gs->gimple_omp_parallel.clauses;
4204 /* Set CLAUSES to be the list of clauses associated with OMP_TASK
4205 GS. */
4207 static inline void
4208 gimple_omp_taskreg_set_clauses (gimple gs, tree clauses)
4210 if (gimple_code (gs) != GIMPLE_OMP_PARALLEL)
4211 GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
4212 gs->gimple_omp_parallel.clauses = clauses;
4216 /* Return the child function used to hold the body of OMP_TASK GS. */
4218 static inline tree
4219 gimple_omp_taskreg_child_fn (const_gimple gs)
4221 if (gimple_code (gs) != GIMPLE_OMP_PARALLEL)
4222 GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
4223 return gs->gimple_omp_parallel.child_fn;
4226 /* Return a pointer to the child function used to hold the body of
4227 OMP_TASK GS. */
4229 static inline tree *
4230 gimple_omp_taskreg_child_fn_ptr (gimple gs)
4232 if (gimple_code (gs) != GIMPLE_OMP_PARALLEL)
4233 GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
4234 return &gs->gimple_omp_parallel.child_fn;
4238 /* Set CHILD_FN to be the child function for OMP_TASK GS. */
4240 static inline void
4241 gimple_omp_taskreg_set_child_fn (gimple gs, tree child_fn)
4243 if (gimple_code (gs) != GIMPLE_OMP_PARALLEL)
4244 GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
4245 gs->gimple_omp_parallel.child_fn = child_fn;
4249 /* Return the artificial argument used to send variables and values
4250 from the parent to the children threads in OMP_TASK GS. */
4252 static inline tree
4253 gimple_omp_taskreg_data_arg (const_gimple gs)
4255 if (gimple_code (gs) != GIMPLE_OMP_PARALLEL)
4256 GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
4257 return gs->gimple_omp_parallel.data_arg;
4261 /* Return a pointer to the data argument for OMP_TASK GS. */
4263 static inline tree *
4264 gimple_omp_taskreg_data_arg_ptr (gimple gs)
4266 if (gimple_code (gs) != GIMPLE_OMP_PARALLEL)
4267 GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
4268 return &gs->gimple_omp_parallel.data_arg;
4272 /* Set DATA_ARG to be the data argument for OMP_TASK GS. */
4274 static inline void
4275 gimple_omp_taskreg_set_data_arg (gimple gs, tree data_arg)
4277 if (gimple_code (gs) != GIMPLE_OMP_PARALLEL)
4278 GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
4279 gs->gimple_omp_parallel.data_arg = data_arg;
4283 /* Return the copy function used to hold the body of OMP_TASK GS. */
4285 static inline tree
4286 gimple_omp_task_copy_fn (const_gimple gs)
4288 GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
4289 return gs->gimple_omp_task.copy_fn;
4292 /* Return a pointer to the copy function used to hold the body of
4293 OMP_TASK GS. */
4295 static inline tree *
4296 gimple_omp_task_copy_fn_ptr (gimple gs)
4298 GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
4299 return &gs->gimple_omp_task.copy_fn;
4303 /* Set CHILD_FN to be the copy function for OMP_TASK GS. */
4305 static inline void
4306 gimple_omp_task_set_copy_fn (gimple gs, tree copy_fn)
4308 GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
4309 gs->gimple_omp_task.copy_fn = copy_fn;
4313 /* Return size of the data block in bytes in OMP_TASK GS. */
4315 static inline tree
4316 gimple_omp_task_arg_size (const_gimple gs)
4318 GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
4319 return gs->gimple_omp_task.arg_size;
4323 /* Return a pointer to the data block size for OMP_TASK GS. */
4325 static inline tree *
4326 gimple_omp_task_arg_size_ptr (gimple gs)
4328 GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
4329 return &gs->gimple_omp_task.arg_size;
4333 /* Set ARG_SIZE to be the data block size for OMP_TASK GS. */
4335 static inline void
4336 gimple_omp_task_set_arg_size (gimple gs, tree arg_size)
4338 GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
4339 gs->gimple_omp_task.arg_size = arg_size;
4343 /* Return align of the data block in bytes in OMP_TASK GS. */
4345 static inline tree
4346 gimple_omp_task_arg_align (const_gimple gs)
4348 GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
4349 return gs->gimple_omp_task.arg_align;
4353 /* Return a pointer to the data block align for OMP_TASK GS. */
4355 static inline tree *
4356 gimple_omp_task_arg_align_ptr (gimple gs)
4358 GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
4359 return &gs->gimple_omp_task.arg_align;
4363 /* Set ARG_SIZE to be the data block align for OMP_TASK GS. */
4365 static inline void
4366 gimple_omp_task_set_arg_align (gimple gs, tree arg_align)
4368 GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
4369 gs->gimple_omp_task.arg_align = arg_align;
4373 /* Return the clauses associated with OMP_SINGLE GS. */
4375 static inline tree
4376 gimple_omp_single_clauses (const_gimple gs)
4378 GIMPLE_CHECK (gs, GIMPLE_OMP_SINGLE);
4379 return gs->gimple_omp_single.clauses;
4383 /* Return a pointer to the clauses associated with OMP_SINGLE GS. */
4385 static inline tree *
4386 gimple_omp_single_clauses_ptr (gimple gs)
4388 GIMPLE_CHECK (gs, GIMPLE_OMP_SINGLE);
4389 return &gs->gimple_omp_single.clauses;
4393 /* Set CLAUSES to be the clauses associated with OMP_SINGLE GS. */
4395 static inline void
4396 gimple_omp_single_set_clauses (gimple gs, tree clauses)
4398 GIMPLE_CHECK (gs, GIMPLE_OMP_SINGLE);
4399 gs->gimple_omp_single.clauses = clauses;
4403 /* Return the clauses associated with OMP_SECTIONS GS. */
4405 static inline tree
4406 gimple_omp_sections_clauses (const_gimple gs)
4408 GIMPLE_CHECK (gs, GIMPLE_OMP_SECTIONS);
4409 return gs->gimple_omp_sections.clauses;
4413 /* Return a pointer to the clauses associated with OMP_SECTIONS GS. */
4415 static inline tree *
4416 gimple_omp_sections_clauses_ptr (gimple gs)
4418 GIMPLE_CHECK (gs, GIMPLE_OMP_SECTIONS);
4419 return &gs->gimple_omp_sections.clauses;
4423 /* Set CLAUSES to be the set of clauses associated with OMP_SECTIONS
4424 GS. */
4426 static inline void
4427 gimple_omp_sections_set_clauses (gimple gs, tree clauses)
4429 GIMPLE_CHECK (gs, GIMPLE_OMP_SECTIONS);
4430 gs->gimple_omp_sections.clauses = clauses;
4434 /* Return the control variable associated with the GIMPLE_OMP_SECTIONS
4435 in GS. */
4437 static inline tree
4438 gimple_omp_sections_control (const_gimple gs)
4440 GIMPLE_CHECK (gs, GIMPLE_OMP_SECTIONS);
4441 return gs->gimple_omp_sections.control;
4445 /* Return a pointer to the clauses associated with the GIMPLE_OMP_SECTIONS
4446 GS. */
4448 static inline tree *
4449 gimple_omp_sections_control_ptr (gimple gs)
4451 GIMPLE_CHECK (gs, GIMPLE_OMP_SECTIONS);
4452 return &gs->gimple_omp_sections.control;
4456 /* Set CONTROL to be the set of clauses associated with the
4457 GIMPLE_OMP_SECTIONS in GS. */
4459 static inline void
4460 gimple_omp_sections_set_control (gimple gs, tree control)
4462 GIMPLE_CHECK (gs, GIMPLE_OMP_SECTIONS);
4463 gs->gimple_omp_sections.control = control;
4467 /* Set COND to be the condition code for OMP_FOR GS. */
4469 static inline void
4470 gimple_omp_for_set_cond (gimple gs, size_t i, enum tree_code cond)
4472 GIMPLE_CHECK (gs, GIMPLE_OMP_FOR);
4473 gcc_gimple_checking_assert (TREE_CODE_CLASS (cond) == tcc_comparison
4474 && i < gs->gimple_omp_for.collapse);
4475 gs->gimple_omp_for.iter[i].cond = cond;
4479 /* Return the condition code associated with OMP_FOR GS. */
4481 static inline enum tree_code
4482 gimple_omp_for_cond (const_gimple gs, size_t i)
4484 GIMPLE_CHECK (gs, GIMPLE_OMP_FOR);
4485 gcc_gimple_checking_assert (i < gs->gimple_omp_for.collapse);
4486 return gs->gimple_omp_for.iter[i].cond;
4490 /* Set the value being stored in an atomic store. */
4492 static inline void
4493 gimple_omp_atomic_store_set_val (gimple g, tree val)
4495 GIMPLE_CHECK (g, GIMPLE_OMP_ATOMIC_STORE);
4496 g->gimple_omp_atomic_store.val = val;
4500 /* Return the value being stored in an atomic store. */
4502 static inline tree
4503 gimple_omp_atomic_store_val (const_gimple g)
4505 GIMPLE_CHECK (g, GIMPLE_OMP_ATOMIC_STORE);
4506 return g->gimple_omp_atomic_store.val;
4510 /* Return a pointer to the value being stored in an atomic store. */
4512 static inline tree *
4513 gimple_omp_atomic_store_val_ptr (gimple g)
4515 GIMPLE_CHECK (g, GIMPLE_OMP_ATOMIC_STORE);
4516 return &g->gimple_omp_atomic_store.val;
4520 /* Set the LHS of an atomic load. */
4522 static inline void
4523 gimple_omp_atomic_load_set_lhs (gimple g, tree lhs)
4525 GIMPLE_CHECK (g, GIMPLE_OMP_ATOMIC_LOAD);
4526 g->gimple_omp_atomic_load.lhs = lhs;
4530 /* Get the LHS of an atomic load. */
4532 static inline tree
4533 gimple_omp_atomic_load_lhs (const_gimple g)
4535 GIMPLE_CHECK (g, GIMPLE_OMP_ATOMIC_LOAD);
4536 return g->gimple_omp_atomic_load.lhs;
4540 /* Return a pointer to the LHS of an atomic load. */
4542 static inline tree *
4543 gimple_omp_atomic_load_lhs_ptr (gimple g)
4545 GIMPLE_CHECK (g, GIMPLE_OMP_ATOMIC_LOAD);
4546 return &g->gimple_omp_atomic_load.lhs;
4550 /* Set the RHS of an atomic load. */
4552 static inline void
4553 gimple_omp_atomic_load_set_rhs (gimple g, tree rhs)
4555 GIMPLE_CHECK (g, GIMPLE_OMP_ATOMIC_LOAD);
4556 g->gimple_omp_atomic_load.rhs = rhs;
4560 /* Get the RHS of an atomic load. */
4562 static inline tree
4563 gimple_omp_atomic_load_rhs (const_gimple g)
4565 GIMPLE_CHECK (g, GIMPLE_OMP_ATOMIC_LOAD);
4566 return g->gimple_omp_atomic_load.rhs;
4570 /* Return a pointer to the RHS of an atomic load. */
4572 static inline tree *
4573 gimple_omp_atomic_load_rhs_ptr (gimple g)
4575 GIMPLE_CHECK (g, GIMPLE_OMP_ATOMIC_LOAD);
4576 return &g->gimple_omp_atomic_load.rhs;
4580 /* Get the definition of the control variable in a GIMPLE_OMP_CONTINUE. */
4582 static inline tree
4583 gimple_omp_continue_control_def (const_gimple g)
4585 GIMPLE_CHECK (g, GIMPLE_OMP_CONTINUE);
4586 return g->gimple_omp_continue.control_def;
4589 /* The same as above, but return the address. */
4591 static inline tree *
4592 gimple_omp_continue_control_def_ptr (gimple g)
4594 GIMPLE_CHECK (g, GIMPLE_OMP_CONTINUE);
4595 return &g->gimple_omp_continue.control_def;
4598 /* Set the definition of the control variable in a GIMPLE_OMP_CONTINUE. */
4600 static inline void
4601 gimple_omp_continue_set_control_def (gimple g, tree def)
4603 GIMPLE_CHECK (g, GIMPLE_OMP_CONTINUE);
4604 g->gimple_omp_continue.control_def = def;
4608 /* Get the use of the control variable in a GIMPLE_OMP_CONTINUE. */
4610 static inline tree
4611 gimple_omp_continue_control_use (const_gimple g)
4613 GIMPLE_CHECK (g, GIMPLE_OMP_CONTINUE);
4614 return g->gimple_omp_continue.control_use;
4618 /* The same as above, but return the address. */
4620 static inline tree *
4621 gimple_omp_continue_control_use_ptr (gimple g)
4623 GIMPLE_CHECK (g, GIMPLE_OMP_CONTINUE);
4624 return &g->gimple_omp_continue.control_use;
4628 /* Set the use of the control variable in a GIMPLE_OMP_CONTINUE. */
4630 static inline void
4631 gimple_omp_continue_set_control_use (gimple g, tree use)
4633 GIMPLE_CHECK (g, GIMPLE_OMP_CONTINUE);
4634 g->gimple_omp_continue.control_use = use;
4637 /* Return the body for the GIMPLE_TRANSACTION statement GS. */
4639 static inline gimple_seq
4640 gimple_transaction_body (gimple gs)
4642 GIMPLE_CHECK (gs, GIMPLE_TRANSACTION);
4643 return gs->gimple_transaction.body;
4646 /* Return the label associated with a GIMPLE_TRANSACTION. */
4648 static inline tree
4649 gimple_transaction_label (const_gimple gs)
4651 GIMPLE_CHECK (gs, GIMPLE_TRANSACTION);
4652 return gs->gimple_transaction.label;
4655 static inline tree *
4656 gimple_transaction_label_ptr (gimple gs)
4658 GIMPLE_CHECK (gs, GIMPLE_TRANSACTION);
4659 return &gs->gimple_transaction.label;
4662 /* Return the subcode associated with a GIMPLE_TRANSACTION. */
4664 static inline unsigned int
4665 gimple_transaction_subcode (const_gimple gs)
4667 GIMPLE_CHECK (gs, GIMPLE_TRANSACTION);
4668 return gs->gsbase.subcode;
4671 /* Set BODY to be the body for the GIMPLE_TRANSACTION statement GS. */
4673 static inline void
4674 gimple_transaction_set_body (gimple gs, gimple_seq body)
4676 GIMPLE_CHECK (gs, GIMPLE_TRANSACTION);
4677 gs->gimple_transaction.body = body;
4680 /* Set the label associated with a GIMPLE_TRANSACTION. */
4682 static inline void
4683 gimple_transaction_set_label (gimple gs, tree label)
4685 GIMPLE_CHECK (gs, GIMPLE_TRANSACTION);
4686 gs->gimple_transaction.label = label;
4689 /* Set the subcode associated with a GIMPLE_TRANSACTION. */
4691 static inline void
4692 gimple_transaction_set_subcode (gimple gs, unsigned int subcode)
4694 GIMPLE_CHECK (gs, GIMPLE_TRANSACTION);
4695 gs->gsbase.subcode = subcode;
4699 /* Return a pointer to the return value for GIMPLE_RETURN GS. */
4701 static inline tree *
4702 gimple_return_retval_ptr (const_gimple gs)
4704 GIMPLE_CHECK (gs, GIMPLE_RETURN);
4705 return gimple_op_ptr (gs, 0);
4708 /* Return the return value for GIMPLE_RETURN GS. */
4710 static inline tree
4711 gimple_return_retval (const_gimple gs)
4713 GIMPLE_CHECK (gs, GIMPLE_RETURN);
4714 return gimple_op (gs, 0);
4718 /* Set RETVAL to be the return value for GIMPLE_RETURN GS. */
4720 static inline void
4721 gimple_return_set_retval (gimple gs, tree retval)
4723 GIMPLE_CHECK (gs, GIMPLE_RETURN);
4724 gimple_set_op (gs, 0, retval);
4728 /* Returns true when the gimple statment STMT is any of the OpenMP types. */
4730 #define CASE_GIMPLE_OMP \
4731 case GIMPLE_OMP_PARALLEL: \
4732 case GIMPLE_OMP_TASK: \
4733 case GIMPLE_OMP_FOR: \
4734 case GIMPLE_OMP_SECTIONS: \
4735 case GIMPLE_OMP_SECTIONS_SWITCH: \
4736 case GIMPLE_OMP_SINGLE: \
4737 case GIMPLE_OMP_SECTION: \
4738 case GIMPLE_OMP_MASTER: \
4739 case GIMPLE_OMP_ORDERED: \
4740 case GIMPLE_OMP_CRITICAL: \
4741 case GIMPLE_OMP_RETURN: \
4742 case GIMPLE_OMP_ATOMIC_LOAD: \
4743 case GIMPLE_OMP_ATOMIC_STORE: \
4744 case GIMPLE_OMP_CONTINUE
4746 static inline bool
4747 is_gimple_omp (const_gimple stmt)
4749 switch (gimple_code (stmt))
4751 CASE_GIMPLE_OMP:
4752 return true;
4753 default:
4754 return false;
4759 /* Returns TRUE if statement G is a GIMPLE_NOP. */
4761 static inline bool
4762 gimple_nop_p (const_gimple g)
4764 return gimple_code (g) == GIMPLE_NOP;
4768 /* Return true if GS is a GIMPLE_RESX. */
4770 static inline bool
4771 is_gimple_resx (const_gimple gs)
4773 return gimple_code (gs) == GIMPLE_RESX;
4776 /* Return the predictor of GIMPLE_PREDICT statement GS. */
4778 static inline enum br_predictor
4779 gimple_predict_predictor (gimple gs)
4781 GIMPLE_CHECK (gs, GIMPLE_PREDICT);
4782 return (enum br_predictor) (gs->gsbase.subcode & ~GF_PREDICT_TAKEN);
4786 /* Set the predictor of GIMPLE_PREDICT statement GS to PREDICT. */
4788 static inline void
4789 gimple_predict_set_predictor (gimple gs, enum br_predictor predictor)
4791 GIMPLE_CHECK (gs, GIMPLE_PREDICT);
4792 gs->gsbase.subcode = (gs->gsbase.subcode & GF_PREDICT_TAKEN)
4793 | (unsigned) predictor;
4797 /* Return the outcome of GIMPLE_PREDICT statement GS. */
4799 static inline enum prediction
4800 gimple_predict_outcome (gimple gs)
4802 GIMPLE_CHECK (gs, GIMPLE_PREDICT);
4803 return (gs->gsbase.subcode & GF_PREDICT_TAKEN) ? TAKEN : NOT_TAKEN;
4807 /* Set the outcome of GIMPLE_PREDICT statement GS to OUTCOME. */
4809 static inline void
4810 gimple_predict_set_outcome (gimple gs, enum prediction outcome)
4812 GIMPLE_CHECK (gs, GIMPLE_PREDICT);
4813 if (outcome == TAKEN)
4814 gs->gsbase.subcode |= GF_PREDICT_TAKEN;
4815 else
4816 gs->gsbase.subcode &= ~GF_PREDICT_TAKEN;
4820 /* Return the type of the main expression computed by STMT. Return
4821 void_type_node if the statement computes nothing. */
4823 static inline tree
4824 gimple_expr_type (const_gimple stmt)
4826 enum gimple_code code = gimple_code (stmt);
4828 if (code == GIMPLE_ASSIGN || code == GIMPLE_CALL)
4830 tree type;
4831 /* In general we want to pass out a type that can be substituted
4832 for both the RHS and the LHS types if there is a possibly
4833 useless conversion involved. That means returning the
4834 original RHS type as far as we can reconstruct it. */
4835 if (code == GIMPLE_CALL)
4836 type = gimple_call_return_type (stmt);
4837 else
4838 switch (gimple_assign_rhs_code (stmt))
4840 case POINTER_PLUS_EXPR:
4841 type = TREE_TYPE (gimple_assign_rhs1 (stmt));
4842 break;
4844 default:
4845 /* As fallback use the type of the LHS. */
4846 type = TREE_TYPE (gimple_get_lhs (stmt));
4847 break;
4849 return type;
4851 else if (code == GIMPLE_COND)
4852 return boolean_type_node;
4853 else
4854 return void_type_node;
4857 /* Return true if TYPE is a suitable type for a scalar register variable. */
4859 static inline bool
4860 is_gimple_reg_type (tree type)
4862 return !AGGREGATE_TYPE_P (type);
4865 /* Return a new iterator pointing to GIMPLE_SEQ's first statement. */
4867 static inline gimple_stmt_iterator
4868 gsi_start (gimple_seq seq)
4870 gimple_stmt_iterator i;
4872 i.ptr = gimple_seq_first (seq);
4873 i.seq = seq;
4874 i.bb = (i.ptr && i.ptr->stmt) ? gimple_bb (i.ptr->stmt) : NULL;
4876 return i;
4880 /* Return a new iterator pointing to the first statement in basic block BB. */
4882 static inline gimple_stmt_iterator
4883 gsi_start_bb (basic_block bb)
4885 gimple_stmt_iterator i;
4886 gimple_seq seq;
4888 seq = bb_seq (bb);
4889 i.ptr = gimple_seq_first (seq);
4890 i.seq = seq;
4891 i.bb = bb;
4893 return i;
4897 /* Return a new iterator initially pointing to GIMPLE_SEQ's last statement. */
4899 static inline gimple_stmt_iterator
4900 gsi_last (gimple_seq seq)
4902 gimple_stmt_iterator i;
4904 i.ptr = gimple_seq_last (seq);
4905 i.seq = seq;
4906 i.bb = (i.ptr && i.ptr->stmt) ? gimple_bb (i.ptr->stmt) : NULL;
4908 return i;
4912 /* Return a new iterator pointing to the last statement in basic block BB. */
4914 static inline gimple_stmt_iterator
4915 gsi_last_bb (basic_block bb)
4917 gimple_stmt_iterator i;
4918 gimple_seq seq;
4920 seq = bb_seq (bb);
4921 i.ptr = gimple_seq_last (seq);
4922 i.seq = seq;
4923 i.bb = bb;
4925 return i;
4929 /* Return true if I is at the end of its sequence. */
4931 static inline bool
4932 gsi_end_p (gimple_stmt_iterator i)
4934 return i.ptr == NULL;
4938 /* Return true if I is one statement before the end of its sequence. */
4940 static inline bool
4941 gsi_one_before_end_p (gimple_stmt_iterator i)
4943 return i.ptr != NULL && i.ptr->next == NULL;
4947 /* Advance the iterator to the next gimple statement. */
4949 static inline void
4950 gsi_next (gimple_stmt_iterator *i)
4952 i->ptr = i->ptr->next;
4955 /* Advance the iterator to the previous gimple statement. */
4957 static inline void
4958 gsi_prev (gimple_stmt_iterator *i)
4960 i->ptr = i->ptr->prev;
4963 /* Return the current stmt. */
4965 static inline gimple
4966 gsi_stmt (gimple_stmt_iterator i)
4968 return i.ptr->stmt;
4971 /* Return a block statement iterator that points to the first non-label
4972 statement in block BB. */
4974 static inline gimple_stmt_iterator
4975 gsi_after_labels (basic_block bb)
4977 gimple_stmt_iterator gsi = gsi_start_bb (bb);
4979 while (!gsi_end_p (gsi) && gimple_code (gsi_stmt (gsi)) == GIMPLE_LABEL)
4980 gsi_next (&gsi);
4982 return gsi;
4985 /* Advance the iterator to the next non-debug gimple statement. */
4987 static inline void
4988 gsi_next_nondebug (gimple_stmt_iterator *i)
4992 gsi_next (i);
4994 while (!gsi_end_p (*i) && is_gimple_debug (gsi_stmt (*i)));
4997 /* Advance the iterator to the next non-debug gimple statement. */
4999 static inline void
5000 gsi_prev_nondebug (gimple_stmt_iterator *i)
5004 gsi_prev (i);
5006 while (!gsi_end_p (*i) && is_gimple_debug (gsi_stmt (*i)));
5009 /* Return a new iterator pointing to the first non-debug statement in
5010 basic block BB. */
5012 static inline gimple_stmt_iterator
5013 gsi_start_nondebug_bb (basic_block bb)
5015 gimple_stmt_iterator i = gsi_start_bb (bb);
5017 if (!gsi_end_p (i) && is_gimple_debug (gsi_stmt (i)))
5018 gsi_next_nondebug (&i);
5020 return i;
5023 /* Return a new iterator pointing to the last non-debug statement in
5024 basic block BB. */
5026 static inline gimple_stmt_iterator
5027 gsi_last_nondebug_bb (basic_block bb)
5029 gimple_stmt_iterator i = gsi_last_bb (bb);
5031 if (!gsi_end_p (i) && is_gimple_debug (gsi_stmt (i)))
5032 gsi_prev_nondebug (&i);
5034 return i;
5037 /* Return a pointer to the current stmt.
5039 NOTE: You may want to use gsi_replace on the iterator itself,
5040 as this performs additional bookkeeping that will not be done
5041 if you simply assign through a pointer returned by gsi_stmt_ptr. */
5043 static inline gimple *
5044 gsi_stmt_ptr (gimple_stmt_iterator *i)
5046 return &i->ptr->stmt;
5050 /* Return the basic block associated with this iterator. */
5052 static inline basic_block
5053 gsi_bb (gimple_stmt_iterator i)
5055 return i.bb;
5059 /* Return the sequence associated with this iterator. */
5061 static inline gimple_seq
5062 gsi_seq (gimple_stmt_iterator i)
5064 return i.seq;
5068 enum gsi_iterator_update
5070 GSI_NEW_STMT, /* Only valid when single statement is added, move
5071 iterator to it. */
5072 GSI_SAME_STMT, /* Leave the iterator at the same statement. */
5073 GSI_CONTINUE_LINKING /* Move iterator to whatever position is suitable
5074 for linking other statements in the same
5075 direction. */
5078 /* In gimple-iterator.c */
5079 gimple_stmt_iterator gsi_start_phis (basic_block);
5080 gimple_seq gsi_split_seq_after (gimple_stmt_iterator);
5081 gimple_seq gsi_split_seq_before (gimple_stmt_iterator *);
5082 void gsi_replace (gimple_stmt_iterator *, gimple, bool);
5083 void gsi_insert_before (gimple_stmt_iterator *, gimple,
5084 enum gsi_iterator_update);
5085 void gsi_insert_before_without_update (gimple_stmt_iterator *, gimple,
5086 enum gsi_iterator_update);
5087 void gsi_insert_seq_before (gimple_stmt_iterator *, gimple_seq,
5088 enum gsi_iterator_update);
5089 void gsi_insert_seq_before_without_update (gimple_stmt_iterator *, gimple_seq,
5090 enum gsi_iterator_update);
5091 void gsi_insert_after (gimple_stmt_iterator *, gimple,
5092 enum gsi_iterator_update);
5093 void gsi_insert_after_without_update (gimple_stmt_iterator *, gimple,
5094 enum gsi_iterator_update);
5095 void gsi_insert_seq_after (gimple_stmt_iterator *, gimple_seq,
5096 enum gsi_iterator_update);
5097 void gsi_insert_seq_after_without_update (gimple_stmt_iterator *, gimple_seq,
5098 enum gsi_iterator_update);
5099 void gsi_remove (gimple_stmt_iterator *, bool);
5100 gimple_stmt_iterator gsi_for_stmt (gimple);
5101 void gsi_move_after (gimple_stmt_iterator *, gimple_stmt_iterator *);
5102 void gsi_move_before (gimple_stmt_iterator *, gimple_stmt_iterator *);
5103 void gsi_move_to_bb_end (gimple_stmt_iterator *, struct basic_block_def *);
5104 void gsi_insert_on_edge (edge, gimple);
5105 void gsi_insert_seq_on_edge (edge, gimple_seq);
5106 basic_block gsi_insert_on_edge_immediate (edge, gimple);
5107 basic_block gsi_insert_seq_on_edge_immediate (edge, gimple_seq);
5108 void gsi_commit_one_edge_insert (edge, basic_block *);
5109 void gsi_commit_edge_inserts (void);
5110 gimple gimple_call_copy_skip_args (gimple, bitmap);
5113 /* Convenience routines to walk all statements of a gimple function.
5114 Note that this is useful exclusively before the code is converted
5115 into SSA form. Once the program is in SSA form, the standard
5116 operand interface should be used to analyze/modify statements. */
5117 struct walk_stmt_info
5119 /* Points to the current statement being walked. */
5120 gimple_stmt_iterator gsi;
5122 /* Additional data that the callback functions may want to carry
5123 through the recursion. */
5124 void *info;
5126 /* Pointer map used to mark visited tree nodes when calling
5127 walk_tree on each operand. If set to NULL, duplicate tree nodes
5128 will be visited more than once. */
5129 struct pointer_set_t *pset;
5131 /* Operand returned by the callbacks. This is set when calling
5132 walk_gimple_seq. If the walk_stmt_fn or walk_tree_fn callback
5133 returns non-NULL, this field will contain the tree returned by
5134 the last callback. */
5135 tree callback_result;
5137 /* Indicates whether the operand being examined may be replaced
5138 with something that matches is_gimple_val (if true) or something
5139 slightly more complicated (if false). "Something" technically
5140 means the common subset of is_gimple_lvalue and is_gimple_rhs,
5141 but we never try to form anything more complicated than that, so
5142 we don't bother checking.
5144 Also note that CALLBACK should update this flag while walking the
5145 sub-expressions of a statement. For instance, when walking the
5146 statement 'foo (&var)', the flag VAL_ONLY will initially be set
5147 to true, however, when walking &var, the operand of that
5148 ADDR_EXPR does not need to be a GIMPLE value. */
5149 BOOL_BITFIELD val_only : 1;
5151 /* True if we are currently walking the LHS of an assignment. */
5152 BOOL_BITFIELD is_lhs : 1;
5154 /* Optional. Set to true by the callback functions if they made any
5155 changes. */
5156 BOOL_BITFIELD changed : 1;
5158 /* True if we're interested in location information. */
5159 BOOL_BITFIELD want_locations : 1;
5161 /* True if we've removed the statement that was processed. */
5162 BOOL_BITFIELD removed_stmt : 1;
5165 /* Callback for walk_gimple_stmt. Called for every statement found
5166 during traversal. The first argument points to the statement to
5167 walk. The second argument is a flag that the callback sets to
5168 'true' if it the callback handled all the operands and
5169 sub-statements of the statement (the default value of this flag is
5170 'false'). The third argument is an anonymous pointer to data
5171 to be used by the callback. */
5172 typedef tree (*walk_stmt_fn) (gimple_stmt_iterator *, bool *,
5173 struct walk_stmt_info *);
5175 gimple walk_gimple_seq (gimple_seq, walk_stmt_fn, walk_tree_fn,
5176 struct walk_stmt_info *);
5177 tree walk_gimple_stmt (gimple_stmt_iterator *, walk_stmt_fn, walk_tree_fn,
5178 struct walk_stmt_info *);
5179 tree walk_gimple_op (gimple, walk_tree_fn, struct walk_stmt_info *);
5181 #ifdef GATHER_STATISTICS
5182 /* Enum and arrays used for allocation stats. Keep in sync with
5183 gimple.c:gimple_alloc_kind_names. */
5184 enum gimple_alloc_kind
5186 gimple_alloc_kind_assign, /* Assignments. */
5187 gimple_alloc_kind_phi, /* PHI nodes. */
5188 gimple_alloc_kind_cond, /* Conditionals. */
5189 gimple_alloc_kind_seq, /* Sequences. */
5190 gimple_alloc_kind_rest, /* Everything else. */
5191 gimple_alloc_kind_all
5194 extern int gimple_alloc_counts[];
5195 extern int gimple_alloc_sizes[];
5197 /* Return the allocation kind for a given stmt CODE. */
5198 static inline enum gimple_alloc_kind
5199 gimple_alloc_kind (enum gimple_code code)
5201 switch (code)
5203 case GIMPLE_ASSIGN:
5204 return gimple_alloc_kind_assign;
5205 case GIMPLE_PHI:
5206 return gimple_alloc_kind_phi;
5207 case GIMPLE_COND:
5208 return gimple_alloc_kind_cond;
5209 default:
5210 return gimple_alloc_kind_rest;
5213 #endif /* GATHER_STATISTICS */
5215 extern void dump_gimple_statistics (void);
5217 /* In gimple-fold.c. */
5218 void gimplify_and_update_call_from_tree (gimple_stmt_iterator *, tree);
5219 tree gimple_fold_builtin (gimple);
5220 bool fold_stmt (gimple_stmt_iterator *);
5221 bool fold_stmt_inplace (gimple_stmt_iterator *);
5222 tree get_symbol_constant_value (tree);
5223 tree canonicalize_constructor_val (tree);
5224 extern tree maybe_fold_and_comparisons (enum tree_code, tree, tree,
5225 enum tree_code, tree, tree);
5226 extern tree maybe_fold_or_comparisons (enum tree_code, tree, tree,
5227 enum tree_code, tree, tree);
5229 bool gimple_val_nonnegative_real_p (tree);
5230 #endif /* GCC_GIMPLE_H */