config.rpath (ld_shlibs): Fix detection of FreeBSD-10 and up.
[official-gcc.git] / gcc / gimple.h
blobdf31bf3c23a3ef6e7114bb0e18431b38fd3bd19b
1 /* Gimple IR definitions.
3 Copyright 2007, 2008, 2009, 2010, 2011 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_CANNOT_INLINE = 1 << 0,
101 GF_CALL_FROM_THUNK = 1 << 1,
102 GF_CALL_RETURN_SLOT_OPT = 1 << 2,
103 GF_CALL_TAILCALL = 1 << 3,
104 GF_CALL_VA_ARG_PACK = 1 << 4,
105 GF_CALL_NOTHROW = 1 << 5,
106 GF_CALL_ALLOCA_FOR_VAR = 1 << 6,
107 GF_CALL_INTERNAL = 1 << 7,
108 GF_OMP_PARALLEL_COMBINED = 1 << 0,
110 /* True on an GIMPLE_OMP_RETURN statement if the return does not require
111 a thread synchronization via some sort of barrier. The exact barrier
112 that would otherwise be emitted is dependent on the OMP statement with
113 which this return is associated. */
114 GF_OMP_RETURN_NOWAIT = 1 << 0,
116 GF_OMP_SECTION_LAST = 1 << 0,
117 GF_OMP_ATOMIC_NEED_VALUE = 1 << 0,
118 GF_PREDICT_TAKEN = 1 << 15
121 /* Currently, there are only two types of gimple debug stmt. Others are
122 envisioned, for example, to enable the generation of is_stmt notes
123 in line number information, to mark sequence points, etc. This
124 subcode is to be used to tell them apart. */
125 enum gimple_debug_subcode {
126 GIMPLE_DEBUG_BIND = 0,
127 GIMPLE_DEBUG_SOURCE_BIND = 1
130 /* Masks for selecting a pass local flag (PLF) to work on. These
131 masks are used by gimple_set_plf and gimple_plf. */
132 enum plf_mask {
133 GF_PLF_1 = 1 << 0,
134 GF_PLF_2 = 1 << 1
137 /* A node in a gimple_seq_d. */
138 struct GTY((chain_next ("%h.next"), chain_prev ("%h.prev"))) gimple_seq_node_d {
139 gimple stmt;
140 struct gimple_seq_node_d *prev;
141 struct gimple_seq_node_d *next;
144 /* A double-linked sequence of gimple statements. */
145 struct GTY ((chain_next ("%h.next_free"))) gimple_seq_d {
146 /* First and last statements in the sequence. */
147 gimple_seq_node first;
148 gimple_seq_node last;
150 /* Sequences are created/destroyed frequently. To minimize
151 allocation activity, deallocated sequences are kept in a pool of
152 available sequences. This is the pointer to the next free
153 sequence in the pool. */
154 gimple_seq next_free;
158 /* Return the first node in GIMPLE sequence S. */
160 static inline gimple_seq_node
161 gimple_seq_first (const_gimple_seq s)
163 return s ? s->first : NULL;
167 /* Return the first statement in GIMPLE sequence S. */
169 static inline gimple
170 gimple_seq_first_stmt (const_gimple_seq s)
172 gimple_seq_node n = gimple_seq_first (s);
173 return (n) ? n->stmt : NULL;
177 /* Return the last node in GIMPLE sequence S. */
179 static inline gimple_seq_node
180 gimple_seq_last (const_gimple_seq s)
182 return s ? s->last : NULL;
186 /* Return the last statement in GIMPLE sequence S. */
188 static inline gimple
189 gimple_seq_last_stmt (const_gimple_seq s)
191 gimple_seq_node n = gimple_seq_last (s);
192 return (n) ? n->stmt : NULL;
196 /* Set the last node in GIMPLE sequence S to LAST. */
198 static inline void
199 gimple_seq_set_last (gimple_seq s, gimple_seq_node last)
201 s->last = last;
205 /* Set the first node in GIMPLE sequence S to FIRST. */
207 static inline void
208 gimple_seq_set_first (gimple_seq s, gimple_seq_node first)
210 s->first = first;
214 /* Return true if GIMPLE sequence S is empty. */
216 static inline bool
217 gimple_seq_empty_p (const_gimple_seq s)
219 return s == NULL || s->first == NULL;
223 void gimple_seq_add_stmt (gimple_seq *, gimple);
225 /* Link gimple statement GS to the end of the sequence *SEQ_P. If
226 *SEQ_P is NULL, a new sequence is allocated. This function is
227 similar to gimple_seq_add_stmt, but does not scan the operands.
228 During gimplification, we need to manipulate statement sequences
229 before the def/use vectors have been constructed. */
230 void gimplify_seq_add_stmt (gimple_seq *, gimple);
232 /* Allocate a new sequence and initialize its first element with STMT. */
234 static inline gimple_seq
235 gimple_seq_alloc_with_stmt (gimple stmt)
237 gimple_seq seq = NULL;
238 gimple_seq_add_stmt (&seq, stmt);
239 return seq;
243 /* Returns the sequence of statements in BB. */
245 static inline gimple_seq
246 bb_seq (const_basic_block bb)
248 return (!(bb->flags & BB_RTL) && bb->il.gimple) ? bb->il.gimple->seq : NULL;
252 /* Sets the sequence of statements in BB to SEQ. */
254 static inline void
255 set_bb_seq (basic_block bb, gimple_seq seq)
257 gcc_checking_assert (!(bb->flags & BB_RTL));
258 bb->il.gimple->seq = seq;
261 /* Iterator object for GIMPLE statement sequences. */
263 typedef struct
265 /* Sequence node holding the current statement. */
266 gimple_seq_node ptr;
268 /* Sequence and basic block holding the statement. These fields
269 are necessary to handle edge cases such as when statement is
270 added to an empty basic block or when the last statement of a
271 block/sequence is removed. */
272 gimple_seq seq;
273 basic_block bb;
274 } gimple_stmt_iterator;
277 /* Data structure definitions for GIMPLE tuples. NOTE: word markers
278 are for 64 bit hosts. */
280 struct GTY(()) gimple_statement_base {
281 /* [ WORD 1 ]
282 Main identifying code for a tuple. */
283 ENUM_BITFIELD(gimple_code) code : 8;
285 /* Nonzero if a warning should not be emitted on this tuple. */
286 unsigned int no_warning : 1;
288 /* Nonzero if this tuple has been visited. Passes are responsible
289 for clearing this bit before using it. */
290 unsigned int visited : 1;
292 /* Nonzero if this tuple represents a non-temporal move. */
293 unsigned int nontemporal_move : 1;
295 /* Pass local flags. These flags are free for any pass to use as
296 they see fit. Passes should not assume that these flags contain
297 any useful value when the pass starts. Any initial state that
298 the pass requires should be set on entry to the pass. See
299 gimple_set_plf and gimple_plf for usage. */
300 unsigned int plf : 2;
302 /* Nonzero if this statement has been modified and needs to have its
303 operands rescanned. */
304 unsigned modified : 1;
306 /* Nonzero if this statement contains volatile operands. */
307 unsigned has_volatile_ops : 1;
309 /* Padding to get subcode to 16 bit alignment. */
310 unsigned pad : 1;
312 /* The SUBCODE field can be used for tuple-specific flags for tuples
313 that do not require subcodes. Note that SUBCODE should be at
314 least as wide as tree codes, as several tuples store tree codes
315 in there. */
316 unsigned int subcode : 16;
318 /* UID of this statement. This is used by passes that want to
319 assign IDs to statements. It must be assigned and used by each
320 pass. By default it should be assumed to contain garbage. */
321 unsigned uid;
323 /* [ WORD 2 ]
324 Locus information for debug info. */
325 location_t location;
327 /* Number of operands in this tuple. */
328 unsigned num_ops;
330 /* [ WORD 3 ]
331 Basic block holding this statement. */
332 struct basic_block_def *bb;
334 /* [ WORD 4 ]
335 Lexical block holding this statement. */
336 tree block;
340 /* Base structure for tuples with operands. */
342 struct GTY(()) gimple_statement_with_ops_base
344 /* [ WORD 1-4 ] */
345 struct gimple_statement_base gsbase;
347 /* [ WORD 5-6 ]
348 SSA operand vectors. NOTE: It should be possible to
349 amalgamate these vectors with the operand vector OP. However,
350 the SSA operand vectors are organized differently and contain
351 more information (like immediate use chaining). */
352 struct def_optype_d GTY((skip (""))) *def_ops;
353 struct use_optype_d GTY((skip (""))) *use_ops;
357 /* Statements that take register operands. */
359 struct GTY(()) gimple_statement_with_ops
361 /* [ WORD 1-6 ] */
362 struct gimple_statement_with_ops_base opbase;
364 /* [ WORD 7 ]
365 Operand vector. NOTE! This must always be the last field
366 of this structure. In particular, this means that this
367 structure cannot be embedded inside another one. */
368 tree GTY((length ("%h.opbase.gsbase.num_ops"))) op[1];
372 /* Base for statements that take both memory and register operands. */
374 struct GTY(()) gimple_statement_with_memory_ops_base
376 /* [ WORD 1-6 ] */
377 struct gimple_statement_with_ops_base opbase;
379 /* [ WORD 7-8 ]
380 Virtual operands for this statement. The GC will pick them
381 up via the ssa_names array. */
382 tree GTY((skip (""))) vdef;
383 tree GTY((skip (""))) vuse;
387 /* Statements that take both memory and register operands. */
389 struct GTY(()) gimple_statement_with_memory_ops
391 /* [ WORD 1-8 ] */
392 struct gimple_statement_with_memory_ops_base membase;
394 /* [ WORD 9 ]
395 Operand vector. NOTE! This must always be the last field
396 of this structure. In particular, this means that this
397 structure cannot be embedded inside another one. */
398 tree GTY((length ("%h.membase.opbase.gsbase.num_ops"))) op[1];
402 /* Call statements that take both memory and register operands. */
404 struct GTY(()) gimple_statement_call
406 /* [ WORD 1-8 ] */
407 struct gimple_statement_with_memory_ops_base membase;
409 /* [ WORD 9-12 ] */
410 struct pt_solution call_used;
411 struct pt_solution call_clobbered;
413 /* [ WORD 13 ] */
414 union GTY ((desc ("%1.membase.opbase.gsbase.subcode & GF_CALL_INTERNAL"))) {
415 tree GTY ((tag ("0"))) fntype;
416 enum internal_fn GTY ((tag ("GF_CALL_INTERNAL"))) internal_fn;
417 } u;
419 /* [ WORD 14 ]
420 Operand vector. NOTE! This must always be the last field
421 of this structure. In particular, this means that this
422 structure cannot be embedded inside another one. */
423 tree GTY((length ("%h.membase.opbase.gsbase.num_ops"))) op[1];
427 /* OpenMP statements (#pragma omp). */
429 struct GTY(()) gimple_statement_omp {
430 /* [ WORD 1-4 ] */
431 struct gimple_statement_base gsbase;
433 /* [ WORD 5 ] */
434 gimple_seq body;
438 /* GIMPLE_BIND */
440 struct GTY(()) gimple_statement_bind {
441 /* [ WORD 1-4 ] */
442 struct gimple_statement_base gsbase;
444 /* [ WORD 5 ]
445 Variables declared in this scope. */
446 tree vars;
448 /* [ WORD 6 ]
449 This is different than the BLOCK field in gimple_statement_base,
450 which is analogous to TREE_BLOCK (i.e., the lexical block holding
451 this statement). This field is the equivalent of BIND_EXPR_BLOCK
452 in tree land (i.e., the lexical scope defined by this bind). See
453 gimple-low.c. */
454 tree block;
456 /* [ WORD 7 ] */
457 gimple_seq body;
461 /* GIMPLE_CATCH */
463 struct GTY(()) gimple_statement_catch {
464 /* [ WORD 1-4 ] */
465 struct gimple_statement_base gsbase;
467 /* [ WORD 5 ] */
468 tree types;
470 /* [ WORD 6 ] */
471 gimple_seq handler;
475 /* GIMPLE_EH_FILTER */
477 struct GTY(()) gimple_statement_eh_filter {
478 /* [ WORD 1-4 ] */
479 struct gimple_statement_base gsbase;
481 /* [ WORD 5 ]
482 Filter types. */
483 tree types;
485 /* [ WORD 6 ]
486 Failure actions. */
487 gimple_seq failure;
490 /* GIMPLE_EH_ELSE */
492 struct GTY(()) gimple_statement_eh_else {
493 /* [ WORD 1-4 ] */
494 struct gimple_statement_base gsbase;
496 /* [ WORD 5,6 ] */
497 gimple_seq n_body, e_body;
500 /* GIMPLE_EH_MUST_NOT_THROW */
502 struct GTY(()) gimple_statement_eh_mnt {
503 /* [ WORD 1-4 ] */
504 struct gimple_statement_base gsbase;
506 /* [ WORD 5 ] Abort function decl. */
507 tree fndecl;
510 /* GIMPLE_PHI */
512 struct GTY(()) gimple_statement_phi {
513 /* [ WORD 1-4 ] */
514 struct gimple_statement_base gsbase;
516 /* [ WORD 5 ] */
517 unsigned capacity;
518 unsigned nargs;
520 /* [ WORD 6 ] */
521 tree result;
523 /* [ WORD 7 ] */
524 struct phi_arg_d GTY ((length ("%h.nargs"))) args[1];
528 /* GIMPLE_RESX, GIMPLE_EH_DISPATCH */
530 struct GTY(()) gimple_statement_eh_ctrl
532 /* [ WORD 1-4 ] */
533 struct gimple_statement_base gsbase;
535 /* [ WORD 5 ]
536 Exception region number. */
537 int region;
541 /* GIMPLE_TRY */
543 struct GTY(()) gimple_statement_try {
544 /* [ WORD 1-4 ] */
545 struct gimple_statement_base gsbase;
547 /* [ WORD 5 ]
548 Expression to evaluate. */
549 gimple_seq eval;
551 /* [ WORD 6 ]
552 Cleanup expression. */
553 gimple_seq cleanup;
556 /* Kind of GIMPLE_TRY statements. */
557 enum gimple_try_flags
559 /* A try/catch. */
560 GIMPLE_TRY_CATCH = 1 << 0,
562 /* A try/finally. */
563 GIMPLE_TRY_FINALLY = 1 << 1,
564 GIMPLE_TRY_KIND = GIMPLE_TRY_CATCH | GIMPLE_TRY_FINALLY,
566 /* Analogous to TRY_CATCH_IS_CLEANUP. */
567 GIMPLE_TRY_CATCH_IS_CLEANUP = 1 << 2
570 /* GIMPLE_WITH_CLEANUP_EXPR */
572 struct GTY(()) gimple_statement_wce {
573 /* [ WORD 1-4 ] */
574 struct gimple_statement_base gsbase;
576 /* Subcode: CLEANUP_EH_ONLY. True if the cleanup should only be
577 executed if an exception is thrown, not on normal exit of its
578 scope. This flag is analogous to the CLEANUP_EH_ONLY flag
579 in TARGET_EXPRs. */
581 /* [ WORD 5 ]
582 Cleanup expression. */
583 gimple_seq cleanup;
587 /* GIMPLE_ASM */
589 struct GTY(()) gimple_statement_asm
591 /* [ WORD 1-8 ] */
592 struct gimple_statement_with_memory_ops_base membase;
594 /* [ WORD 9 ]
595 __asm__ statement. */
596 const char *string;
598 /* [ WORD 10 ]
599 Number of inputs, outputs, clobbers, labels. */
600 unsigned char ni;
601 unsigned char no;
602 unsigned char nc;
603 unsigned char nl;
605 /* [ WORD 11 ]
606 Operand vector. NOTE! This must always be the last field
607 of this structure. In particular, this means that this
608 structure cannot be embedded inside another one. */
609 tree GTY((length ("%h.membase.opbase.gsbase.num_ops"))) op[1];
612 /* GIMPLE_OMP_CRITICAL */
614 struct GTY(()) gimple_statement_omp_critical {
615 /* [ WORD 1-5 ] */
616 struct gimple_statement_omp omp;
618 /* [ WORD 6 ]
619 Critical section name. */
620 tree name;
624 struct GTY(()) gimple_omp_for_iter {
625 /* Condition code. */
626 enum tree_code cond;
628 /* Index variable. */
629 tree index;
631 /* Initial value. */
632 tree initial;
634 /* Final value. */
635 tree final;
637 /* Increment. */
638 tree incr;
641 /* GIMPLE_OMP_FOR */
643 struct GTY(()) gimple_statement_omp_for {
644 /* [ WORD 1-5 ] */
645 struct gimple_statement_omp omp;
647 /* [ WORD 6 ] */
648 tree clauses;
650 /* [ WORD 7 ]
651 Number of elements in iter array. */
652 size_t collapse;
654 /* [ WORD 8 ] */
655 struct gimple_omp_for_iter * GTY((length ("%h.collapse"))) iter;
657 /* [ WORD 9 ]
658 Pre-body evaluated before the loop body begins. */
659 gimple_seq pre_body;
663 /* GIMPLE_OMP_PARALLEL */
665 struct GTY(()) gimple_statement_omp_parallel {
666 /* [ WORD 1-5 ] */
667 struct gimple_statement_omp omp;
669 /* [ WORD 6 ]
670 Clauses. */
671 tree clauses;
673 /* [ WORD 7 ]
674 Child function holding the body of the parallel region. */
675 tree child_fn;
677 /* [ WORD 8 ]
678 Shared data argument. */
679 tree data_arg;
683 /* GIMPLE_OMP_TASK */
685 struct GTY(()) gimple_statement_omp_task {
686 /* [ WORD 1-8 ] */
687 struct gimple_statement_omp_parallel par;
689 /* [ WORD 9 ]
690 Child function holding firstprivate initialization if needed. */
691 tree copy_fn;
693 /* [ WORD 10-11 ]
694 Size and alignment in bytes of the argument data block. */
695 tree arg_size;
696 tree arg_align;
700 /* GIMPLE_OMP_SECTION */
701 /* Uses struct gimple_statement_omp. */
704 /* GIMPLE_OMP_SECTIONS */
706 struct GTY(()) gimple_statement_omp_sections {
707 /* [ WORD 1-5 ] */
708 struct gimple_statement_omp omp;
710 /* [ WORD 6 ] */
711 tree clauses;
713 /* [ WORD 7 ]
714 The control variable used for deciding which of the sections to
715 execute. */
716 tree control;
719 /* GIMPLE_OMP_CONTINUE.
721 Note: This does not inherit from gimple_statement_omp, because we
722 do not need the body field. */
724 struct GTY(()) gimple_statement_omp_continue {
725 /* [ WORD 1-4 ] */
726 struct gimple_statement_base gsbase;
728 /* [ WORD 5 ] */
729 tree control_def;
731 /* [ WORD 6 ] */
732 tree control_use;
735 /* GIMPLE_OMP_SINGLE */
737 struct GTY(()) gimple_statement_omp_single {
738 /* [ WORD 1-5 ] */
739 struct gimple_statement_omp omp;
741 /* [ WORD 6 ] */
742 tree clauses;
746 /* GIMPLE_OMP_ATOMIC_LOAD.
747 Note: This is based on gimple_statement_base, not g_s_omp, because g_s_omp
748 contains a sequence, which we don't need here. */
750 struct GTY(()) gimple_statement_omp_atomic_load {
751 /* [ WORD 1-4 ] */
752 struct gimple_statement_base gsbase;
754 /* [ WORD 5-6 ] */
755 tree rhs, lhs;
758 /* GIMPLE_OMP_ATOMIC_STORE.
759 See note on GIMPLE_OMP_ATOMIC_LOAD. */
761 struct GTY(()) gimple_statement_omp_atomic_store {
762 /* [ WORD 1-4 ] */
763 struct gimple_statement_base gsbase;
765 /* [ WORD 5 ] */
766 tree val;
769 /* GIMPLE_TRANSACTION. */
771 /* Bits to be stored in the GIMPLE_TRANSACTION subcode. */
773 /* The __transaction_atomic was declared [[outer]] or it is
774 __transaction_relaxed. */
775 #define GTMA_IS_OUTER (1u << 0)
776 #define GTMA_IS_RELAXED (1u << 1)
777 #define GTMA_DECLARATION_MASK (GTMA_IS_OUTER | GTMA_IS_RELAXED)
779 /* The transaction is seen to not have an abort. */
780 #define GTMA_HAVE_ABORT (1u << 2)
781 /* The transaction is seen to have loads or stores. */
782 #define GTMA_HAVE_LOAD (1u << 3)
783 #define GTMA_HAVE_STORE (1u << 4)
784 /* The transaction MAY enter serial irrevocable mode in its dynamic scope. */
785 #define GTMA_MAY_ENTER_IRREVOCABLE (1u << 5)
786 /* The transaction WILL enter serial irrevocable mode.
787 An irrevocable block post-dominates the entire transaction, such
788 that all invocations of the transaction will go serial-irrevocable.
789 In such case, we don't bother instrumenting the transaction, and
790 tell the runtime that it should begin the transaction in
791 serial-irrevocable mode. */
792 #define GTMA_DOES_GO_IRREVOCABLE (1u << 6)
794 struct GTY(()) gimple_statement_transaction
796 /* [ WORD 1-10 ] */
797 struct gimple_statement_with_memory_ops_base gsbase;
799 /* [ WORD 11 ] */
800 gimple_seq body;
802 /* [ WORD 12 ] */
803 tree label;
806 #define DEFGSSTRUCT(SYM, STRUCT, HAS_TREE_OP) SYM,
807 enum gimple_statement_structure_enum {
808 #include "gsstruct.def"
809 LAST_GSS_ENUM
811 #undef DEFGSSTRUCT
814 /* Define the overall contents of a gimple tuple. It may be any of the
815 structures declared above for various types of tuples. */
817 union GTY ((desc ("gimple_statement_structure (&%h)"), variable_size)) gimple_statement_d {
818 struct gimple_statement_base GTY ((tag ("GSS_BASE"))) gsbase;
819 struct gimple_statement_with_ops GTY ((tag ("GSS_WITH_OPS"))) gsops;
820 struct gimple_statement_with_memory_ops_base GTY ((tag ("GSS_WITH_MEM_OPS_BASE"))) gsmembase;
821 struct gimple_statement_with_memory_ops GTY ((tag ("GSS_WITH_MEM_OPS"))) gsmem;
822 struct gimple_statement_call GTY ((tag ("GSS_CALL"))) gimple_call;
823 struct gimple_statement_omp GTY ((tag ("GSS_OMP"))) omp;
824 struct gimple_statement_bind GTY ((tag ("GSS_BIND"))) gimple_bind;
825 struct gimple_statement_catch GTY ((tag ("GSS_CATCH"))) gimple_catch;
826 struct gimple_statement_eh_filter GTY ((tag ("GSS_EH_FILTER"))) gimple_eh_filter;
827 struct gimple_statement_eh_mnt GTY ((tag ("GSS_EH_MNT"))) gimple_eh_mnt;
828 struct gimple_statement_eh_else GTY ((tag ("GSS_EH_ELSE"))) gimple_eh_else;
829 struct gimple_statement_phi GTY ((tag ("GSS_PHI"))) gimple_phi;
830 struct gimple_statement_eh_ctrl GTY ((tag ("GSS_EH_CTRL"))) gimple_eh_ctrl;
831 struct gimple_statement_try GTY ((tag ("GSS_TRY"))) gimple_try;
832 struct gimple_statement_wce GTY ((tag ("GSS_WCE"))) gimple_wce;
833 struct gimple_statement_asm GTY ((tag ("GSS_ASM"))) gimple_asm;
834 struct gimple_statement_omp_critical GTY ((tag ("GSS_OMP_CRITICAL"))) gimple_omp_critical;
835 struct gimple_statement_omp_for GTY ((tag ("GSS_OMP_FOR"))) gimple_omp_for;
836 struct gimple_statement_omp_parallel GTY ((tag ("GSS_OMP_PARALLEL"))) gimple_omp_parallel;
837 struct gimple_statement_omp_task GTY ((tag ("GSS_OMP_TASK"))) gimple_omp_task;
838 struct gimple_statement_omp_sections GTY ((tag ("GSS_OMP_SECTIONS"))) gimple_omp_sections;
839 struct gimple_statement_omp_single GTY ((tag ("GSS_OMP_SINGLE"))) gimple_omp_single;
840 struct gimple_statement_omp_continue GTY ((tag ("GSS_OMP_CONTINUE"))) gimple_omp_continue;
841 struct gimple_statement_omp_atomic_load GTY ((tag ("GSS_OMP_ATOMIC_LOAD"))) gimple_omp_atomic_load;
842 struct gimple_statement_omp_atomic_store GTY ((tag ("GSS_OMP_ATOMIC_STORE"))) gimple_omp_atomic_store;
843 struct gimple_statement_transaction GTY((tag ("GSS_TRANSACTION"))) gimple_transaction;
846 /* In gimple.c. */
848 /* Offset in bytes to the location of the operand vector.
849 Zero if there is no operand vector for this tuple structure. */
850 extern size_t const gimple_ops_offset_[];
852 /* Map GIMPLE codes to GSS codes. */
853 extern enum gimple_statement_structure_enum const gss_for_code_[];
855 /* This variable holds the currently expanded gimple statement for purposes
856 of comminucating the profile info to the builtin expanders. */
857 extern gimple currently_expanding_gimple_stmt;
859 gimple gimple_build_return (tree);
861 gimple gimple_build_assign_stat (tree, tree MEM_STAT_DECL);
862 #define gimple_build_assign(l,r) gimple_build_assign_stat (l, r MEM_STAT_INFO)
864 void extract_ops_from_tree_1 (tree, enum tree_code *, tree *, tree *, tree *);
866 gimple gimple_build_assign_with_ops_stat (enum tree_code, tree, tree,
867 tree, tree MEM_STAT_DECL);
868 #define gimple_build_assign_with_ops(c,o1,o2,o3) \
869 gimple_build_assign_with_ops_stat (c, o1, o2, o3, NULL_TREE MEM_STAT_INFO)
870 #define gimple_build_assign_with_ops3(c,o1,o2,o3,o4) \
871 gimple_build_assign_with_ops_stat (c, o1, o2, o3, o4 MEM_STAT_INFO)
873 gimple gimple_build_debug_bind_stat (tree, tree, gimple MEM_STAT_DECL);
874 #define gimple_build_debug_bind(var,val,stmt) \
875 gimple_build_debug_bind_stat ((var), (val), (stmt) MEM_STAT_INFO)
876 gimple gimple_build_debug_source_bind_stat (tree, tree, gimple MEM_STAT_DECL);
877 #define gimple_build_debug_source_bind(var,val,stmt) \
878 gimple_build_debug_source_bind_stat ((var), (val), (stmt) MEM_STAT_INFO)
880 gimple gimple_build_call_vec (tree, VEC(tree, heap) *);
881 gimple gimple_build_call (tree, unsigned, ...);
882 gimple gimple_build_call_valist (tree, unsigned, va_list);
883 gimple gimple_build_call_internal (enum internal_fn, unsigned, ...);
884 gimple gimple_build_call_internal_vec (enum internal_fn, VEC(tree, heap) *);
885 gimple gimple_build_call_from_tree (tree);
886 gimple gimplify_assign (tree, tree, gimple_seq *);
887 gimple gimple_build_cond (enum tree_code, tree, tree, tree, tree);
888 gimple gimple_build_label (tree label);
889 gimple gimple_build_goto (tree dest);
890 gimple gimple_build_nop (void);
891 gimple gimple_build_bind (tree, gimple_seq, tree);
892 gimple gimple_build_asm_vec (const char *, VEC(tree,gc) *, VEC(tree,gc) *,
893 VEC(tree,gc) *, VEC(tree,gc) *);
894 gimple gimple_build_catch (tree, gimple_seq);
895 gimple gimple_build_eh_filter (tree, gimple_seq);
896 gimple gimple_build_eh_must_not_throw (tree);
897 gimple gimple_build_eh_else (gimple_seq, gimple_seq);
898 gimple gimple_build_try (gimple_seq, gimple_seq, enum gimple_try_flags);
899 gimple gimple_build_wce (gimple_seq);
900 gimple gimple_build_resx (int);
901 gimple gimple_build_eh_dispatch (int);
902 gimple gimple_build_switch_nlabels (unsigned, tree, tree);
903 gimple gimple_build_switch (unsigned, tree, tree, ...);
904 gimple gimple_build_switch_vec (tree, tree, VEC(tree,heap) *);
905 gimple gimple_build_omp_parallel (gimple_seq, tree, tree, tree);
906 gimple gimple_build_omp_task (gimple_seq, tree, tree, tree, tree, tree, tree);
907 gimple gimple_build_omp_for (gimple_seq, tree, size_t, gimple_seq);
908 gimple gimple_build_omp_critical (gimple_seq, tree);
909 gimple gimple_build_omp_section (gimple_seq);
910 gimple gimple_build_omp_continue (tree, tree);
911 gimple gimple_build_omp_master (gimple_seq);
912 gimple gimple_build_omp_return (bool);
913 gimple gimple_build_omp_ordered (gimple_seq);
914 gimple gimple_build_omp_sections (gimple_seq, tree);
915 gimple gimple_build_omp_sections_switch (void);
916 gimple gimple_build_omp_single (gimple_seq, tree);
917 gimple gimple_build_cdt (tree, tree);
918 gimple gimple_build_omp_atomic_load (tree, tree);
919 gimple gimple_build_omp_atomic_store (tree);
920 gimple gimple_build_transaction (gimple_seq, tree);
921 gimple gimple_build_predict (enum br_predictor, enum prediction);
922 enum gimple_statement_structure_enum gss_for_assign (enum tree_code);
923 void sort_case_labels (VEC(tree,heap) *);
924 void gimple_set_body (tree, gimple_seq);
925 gimple_seq gimple_body (tree);
926 bool gimple_has_body_p (tree);
927 gimple_seq gimple_seq_alloc (void);
928 void gimple_seq_free (gimple_seq);
929 void gimple_seq_add_seq (gimple_seq *, gimple_seq);
930 gimple_seq gimple_seq_copy (gimple_seq);
931 bool gimple_call_same_target_p (const_gimple, const_gimple);
932 int gimple_call_flags (const_gimple);
933 int gimple_call_return_flags (const_gimple);
934 int gimple_call_arg_flags (const_gimple, unsigned);
935 void gimple_call_reset_alias_info (gimple);
936 bool gimple_assign_copy_p (gimple);
937 bool gimple_assign_ssa_name_copy_p (gimple);
938 bool gimple_assign_unary_nop_p (gimple);
939 void gimple_set_bb (gimple, struct basic_block_def *);
940 void gimple_assign_set_rhs_from_tree (gimple_stmt_iterator *, tree);
941 void gimple_assign_set_rhs_with_ops_1 (gimple_stmt_iterator *, enum tree_code,
942 tree, tree, tree);
943 tree gimple_get_lhs (const_gimple);
944 void gimple_set_lhs (gimple, tree);
945 void gimple_replace_lhs (gimple, tree);
946 gimple gimple_copy (gimple);
947 void gimple_set_modified (gimple, bool);
948 void gimple_cond_get_ops_from_tree (tree, enum tree_code *, tree *, tree *);
949 gimple gimple_build_cond_from_tree (tree, tree, tree);
950 void gimple_cond_set_condition_from_tree (gimple, tree);
951 bool gimple_has_side_effects (const_gimple);
952 bool gimple_rhs_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 TYPE is a valid type for a scalar register variable. */
969 extern bool is_gimple_reg_type (tree);
970 /* Returns true iff T is a scalar register variable. */
971 extern bool is_gimple_reg (tree);
972 /* Returns true iff T is any sort of variable. */
973 extern bool is_gimple_variable (tree);
974 /* Returns true iff T is any sort of symbol. */
975 extern bool is_gimple_id (tree);
976 /* Returns true iff T is a variable or an INDIRECT_REF (of a variable). */
977 extern bool is_gimple_min_lval (tree);
978 /* Returns true iff T is something whose address can be taken. */
979 extern bool is_gimple_addressable (tree);
980 /* Returns true iff T is any valid GIMPLE lvalue. */
981 extern bool is_gimple_lvalue (tree);
983 /* Returns true iff T is a GIMPLE address. */
984 bool is_gimple_address (const_tree);
985 /* Returns true iff T is a GIMPLE invariant address. */
986 bool is_gimple_invariant_address (const_tree);
987 /* Returns true iff T is a GIMPLE invariant address at interprocedural
988 level. */
989 bool is_gimple_ip_invariant_address (const_tree);
990 /* Returns true iff T is a valid GIMPLE constant. */
991 bool is_gimple_constant (const_tree);
992 /* Returns true iff T is a GIMPLE restricted function invariant. */
993 extern bool is_gimple_min_invariant (const_tree);
994 /* Returns true iff T is a GIMPLE restricted interprecodural invariant. */
995 extern bool is_gimple_ip_invariant (const_tree);
996 /* Returns true iff T is a GIMPLE rvalue. */
997 extern bool is_gimple_val (tree);
998 /* Returns true iff T is a GIMPLE asm statement input. */
999 extern bool is_gimple_asm_val (tree);
1000 /* Returns true iff T is a valid address operand of a MEM_REF. */
1001 bool is_gimple_mem_ref_addr (tree);
1002 /* Returns true iff T is a valid rhs for a MODIFY_EXPR where the LHS is a
1003 GIMPLE temporary, a renamed user variable, or something else,
1004 respectively. */
1005 extern bool is_gimple_reg_rhs (tree);
1006 extern bool is_gimple_mem_rhs (tree);
1008 /* Returns true iff T is a valid if-statement condition. */
1009 extern bool is_gimple_condexpr (tree);
1011 /* Returns true iff T is a variable that does not need to live in memory. */
1012 extern bool is_gimple_non_addressable (tree t);
1014 /* Returns true iff T is a valid call address expression. */
1015 extern bool is_gimple_call_addr (tree);
1017 extern void recalculate_side_effects (tree);
1018 extern bool gimple_compare_field_offset (tree, tree);
1019 extern tree gimple_register_type (tree);
1020 extern tree gimple_register_canonical_type (tree);
1021 extern void print_gimple_types_stats (void);
1022 extern void free_gimple_type_tables (void);
1023 extern tree gimple_unsigned_type (tree);
1024 extern tree gimple_signed_type (tree);
1025 extern alias_set_type gimple_get_alias_set (tree);
1026 extern void count_uses_and_derefs (tree, gimple, unsigned *, unsigned *,
1027 unsigned *);
1028 extern bool walk_stmt_load_store_addr_ops (gimple, void *,
1029 bool (*)(gimple, tree, void *),
1030 bool (*)(gimple, tree, void *),
1031 bool (*)(gimple, tree, void *));
1032 extern bool walk_stmt_load_store_ops (gimple, void *,
1033 bool (*)(gimple, tree, void *),
1034 bool (*)(gimple, tree, void *));
1035 extern bool gimple_ior_addresses_taken (bitmap, gimple);
1036 extern bool gimple_call_builtin_p (gimple, enum built_in_function);
1037 extern bool gimple_asm_clobbers_memory_p (const_gimple);
1038 extern void gimple_call_set_cannot_inline (gimple, bool);
1040 /* In gimplify.c */
1041 extern tree create_tmp_var_raw (tree, const char *);
1042 extern tree create_tmp_var_name (const char *);
1043 extern tree create_tmp_var (tree, const char *);
1044 extern tree create_tmp_reg (tree, const char *);
1045 extern tree get_initialized_tmp_var (tree, gimple_seq *, gimple_seq *);
1046 extern tree get_formal_tmp_var (tree, gimple_seq *);
1047 extern void declare_vars (tree, gimple, bool);
1048 extern void annotate_all_with_location (gimple_seq, location_t);
1050 /* Validation of GIMPLE expressions. Note that these predicates only check
1051 the basic form of the expression, they don't recurse to make sure that
1052 underlying nodes are also of the right form. */
1053 typedef bool (*gimple_predicate)(tree);
1056 /* FIXME we should deduce this from the predicate. */
1057 enum fallback {
1058 fb_none = 0, /* Do not generate a temporary. */
1060 fb_rvalue = 1, /* Generate an rvalue to hold the result of a
1061 gimplified expression. */
1063 fb_lvalue = 2, /* Generate an lvalue to hold the result of a
1064 gimplified expression. */
1066 fb_mayfail = 4, /* Gimplification may fail. Error issued
1067 afterwards. */
1068 fb_either= fb_rvalue | fb_lvalue
1071 typedef int fallback_t;
1073 enum gimplify_status {
1074 GS_ERROR = -2, /* Something Bad Seen. */
1075 GS_UNHANDLED = -1, /* A langhook result for "I dunno". */
1076 GS_OK = 0, /* We did something, maybe more to do. */
1077 GS_ALL_DONE = 1 /* The expression is fully gimplified. */
1080 struct gimplify_ctx
1082 struct gimplify_ctx *prev_context;
1084 VEC(gimple,heap) *bind_expr_stack;
1085 tree temps;
1086 gimple_seq conditional_cleanups;
1087 tree exit_label;
1088 tree return_temp;
1090 VEC(tree,heap) *case_labels;
1091 /* The formal temporary table. Should this be persistent? */
1092 htab_t temp_htab;
1094 int conditions;
1095 bool save_stack;
1096 bool into_ssa;
1097 bool allow_rhs_cond_expr;
1100 extern enum gimplify_status gimplify_expr (tree *, gimple_seq *, gimple_seq *,
1101 bool (*) (tree), fallback_t);
1102 extern void gimplify_type_sizes (tree, gimple_seq *);
1103 extern void gimplify_one_sizepos (tree *, gimple_seq *);
1104 extern bool gimplify_stmt (tree *, gimple_seq *);
1105 extern gimple gimplify_body (tree *, tree, bool);
1106 extern void push_gimplify_context (struct gimplify_ctx *);
1107 extern void pop_gimplify_context (gimple);
1108 extern void gimplify_and_add (tree, gimple_seq *);
1110 /* Miscellaneous helpers. */
1111 extern void gimple_add_tmp_var (tree);
1112 extern gimple gimple_current_bind_expr (void);
1113 extern VEC(gimple, heap) *gimple_bind_expr_stack (void);
1114 extern tree voidify_wrapper_expr (tree, tree);
1115 extern tree build_and_jump (tree *);
1116 extern tree force_labels_r (tree *, int *, void *);
1117 extern enum gimplify_status gimplify_va_arg_expr (tree *, gimple_seq *,
1118 gimple_seq *);
1119 struct gimplify_omp_ctx;
1120 extern void omp_firstprivatize_variable (struct gimplify_omp_ctx *, tree);
1121 extern tree gimple_boolify (tree);
1122 extern gimple_predicate rhs_predicate_for (tree);
1123 extern tree canonicalize_cond_expr_cond (tree);
1125 /* In omp-low.c. */
1126 extern tree omp_reduction_init (tree, tree);
1128 /* In trans-mem.c. */
1129 extern void diagnose_tm_safe_errors (tree);
1131 /* In tree-nested.c. */
1132 extern void lower_nested_functions (tree);
1133 extern void insert_field_into_struct (tree, tree);
1135 /* In gimplify.c. */
1136 extern void gimplify_function_tree (tree);
1138 /* In cfgexpand.c. */
1139 extern tree gimple_assign_rhs_to_tree (gimple);
1141 /* In builtins.c */
1142 extern bool validate_gimple_arglist (const_gimple, ...);
1144 /* In tree-ssa.c */
1145 extern bool tree_ssa_useless_type_conversion (tree);
1146 extern tree tree_ssa_strip_useless_type_conversions (tree);
1147 extern bool useless_type_conversion_p (tree, tree);
1148 extern bool types_compatible_p (tree, tree);
1150 /* Return the code for GIMPLE statement G. */
1152 static inline enum gimple_code
1153 gimple_code (const_gimple g)
1155 return g->gsbase.code;
1159 /* Return the GSS code used by a GIMPLE code. */
1161 static inline enum gimple_statement_structure_enum
1162 gss_for_code (enum gimple_code code)
1164 gcc_gimple_checking_assert ((unsigned int)code < LAST_AND_UNUSED_GIMPLE_CODE);
1165 return gss_for_code_[code];
1169 /* Return which GSS code is used by GS. */
1171 static inline enum gimple_statement_structure_enum
1172 gimple_statement_structure (gimple gs)
1174 return gss_for_code (gimple_code (gs));
1178 /* Return true if statement G has sub-statements. This is only true for
1179 High GIMPLE statements. */
1181 static inline bool
1182 gimple_has_substatements (gimple g)
1184 switch (gimple_code (g))
1186 case GIMPLE_BIND:
1187 case GIMPLE_CATCH:
1188 case GIMPLE_EH_FILTER:
1189 case GIMPLE_EH_ELSE:
1190 case GIMPLE_TRY:
1191 case GIMPLE_OMP_FOR:
1192 case GIMPLE_OMP_MASTER:
1193 case GIMPLE_OMP_ORDERED:
1194 case GIMPLE_OMP_SECTION:
1195 case GIMPLE_OMP_PARALLEL:
1196 case GIMPLE_OMP_TASK:
1197 case GIMPLE_OMP_SECTIONS:
1198 case GIMPLE_OMP_SINGLE:
1199 case GIMPLE_OMP_CRITICAL:
1200 case GIMPLE_WITH_CLEANUP_EXPR:
1201 case GIMPLE_TRANSACTION:
1202 return true;
1204 default:
1205 return false;
1210 /* Return the basic block holding statement G. */
1212 static inline struct basic_block_def *
1213 gimple_bb (const_gimple g)
1215 return g->gsbase.bb;
1219 /* Return the lexical scope block holding statement G. */
1221 static inline tree
1222 gimple_block (const_gimple g)
1224 return g->gsbase.block;
1228 /* Set BLOCK to be the lexical scope block holding statement G. */
1230 static inline void
1231 gimple_set_block (gimple g, tree block)
1233 g->gsbase.block = block;
1237 /* Return location information for statement G. */
1239 static inline location_t
1240 gimple_location (const_gimple g)
1242 return g->gsbase.location;
1245 /* Return pointer to location information for statement G. */
1247 static inline const location_t *
1248 gimple_location_ptr (const_gimple g)
1250 return &g->gsbase.location;
1254 /* Set location information for statement G. */
1256 static inline void
1257 gimple_set_location (gimple g, location_t location)
1259 g->gsbase.location = location;
1263 /* Return true if G contains location information. */
1265 static inline bool
1266 gimple_has_location (const_gimple g)
1268 return gimple_location (g) != UNKNOWN_LOCATION;
1272 /* Return the file name of the location of STMT. */
1274 static inline const char *
1275 gimple_filename (const_gimple stmt)
1277 return LOCATION_FILE (gimple_location (stmt));
1281 /* Return the line number of the location of STMT. */
1283 static inline int
1284 gimple_lineno (const_gimple stmt)
1286 return LOCATION_LINE (gimple_location (stmt));
1290 /* Determine whether SEQ is a singleton. */
1292 static inline bool
1293 gimple_seq_singleton_p (gimple_seq seq)
1295 return ((gimple_seq_first (seq) != NULL)
1296 && (gimple_seq_first (seq) == gimple_seq_last (seq)));
1299 /* Return true if no warnings should be emitted for statement STMT. */
1301 static inline bool
1302 gimple_no_warning_p (const_gimple stmt)
1304 return stmt->gsbase.no_warning;
1307 /* Set the no_warning flag of STMT to NO_WARNING. */
1309 static inline void
1310 gimple_set_no_warning (gimple stmt, bool no_warning)
1312 stmt->gsbase.no_warning = (unsigned) no_warning;
1315 /* Set the visited status on statement STMT to VISITED_P. */
1317 static inline void
1318 gimple_set_visited (gimple stmt, bool visited_p)
1320 stmt->gsbase.visited = (unsigned) visited_p;
1324 /* Return the visited status for statement STMT. */
1326 static inline bool
1327 gimple_visited_p (gimple stmt)
1329 return stmt->gsbase.visited;
1333 /* Set pass local flag PLF on statement STMT to VAL_P. */
1335 static inline void
1336 gimple_set_plf (gimple stmt, enum plf_mask plf, bool val_p)
1338 if (val_p)
1339 stmt->gsbase.plf |= (unsigned int) plf;
1340 else
1341 stmt->gsbase.plf &= ~((unsigned int) plf);
1345 /* Return the value of pass local flag PLF on statement STMT. */
1347 static inline unsigned int
1348 gimple_plf (gimple stmt, enum plf_mask plf)
1350 return stmt->gsbase.plf & ((unsigned int) plf);
1354 /* Set the UID of statement. */
1356 static inline void
1357 gimple_set_uid (gimple g, unsigned uid)
1359 g->gsbase.uid = uid;
1363 /* Return the UID of statement. */
1365 static inline unsigned
1366 gimple_uid (const_gimple g)
1368 return g->gsbase.uid;
1372 /* Return true if GIMPLE statement G has register or memory operands. */
1374 static inline bool
1375 gimple_has_ops (const_gimple g)
1377 return gimple_code (g) >= GIMPLE_COND && gimple_code (g) <= GIMPLE_RETURN;
1381 /* Return true if GIMPLE statement G has memory operands. */
1383 static inline bool
1384 gimple_has_mem_ops (const_gimple g)
1386 return gimple_code (g) >= GIMPLE_ASSIGN && gimple_code (g) <= GIMPLE_RETURN;
1390 /* Return the set of DEF operands for statement G. */
1392 static inline struct def_optype_d *
1393 gimple_def_ops (const_gimple g)
1395 if (!gimple_has_ops (g))
1396 return NULL;
1397 return g->gsops.opbase.def_ops;
1401 /* Set DEF to be the set of DEF operands for statement G. */
1403 static inline void
1404 gimple_set_def_ops (gimple g, struct def_optype_d *def)
1406 gcc_gimple_checking_assert (gimple_has_ops (g));
1407 g->gsops.opbase.def_ops = def;
1411 /* Return the set of USE operands for statement G. */
1413 static inline struct use_optype_d *
1414 gimple_use_ops (const_gimple g)
1416 if (!gimple_has_ops (g))
1417 return NULL;
1418 return g->gsops.opbase.use_ops;
1422 /* Set USE to be the set of USE operands for statement G. */
1424 static inline void
1425 gimple_set_use_ops (gimple g, struct use_optype_d *use)
1427 gcc_gimple_checking_assert (gimple_has_ops (g));
1428 g->gsops.opbase.use_ops = use;
1432 /* Return the set of VUSE operand for statement G. */
1434 static inline use_operand_p
1435 gimple_vuse_op (const_gimple g)
1437 struct use_optype_d *ops;
1438 if (!gimple_has_mem_ops (g))
1439 return NULL_USE_OPERAND_P;
1440 ops = g->gsops.opbase.use_ops;
1441 if (ops
1442 && USE_OP_PTR (ops)->use == &g->gsmembase.vuse)
1443 return USE_OP_PTR (ops);
1444 return NULL_USE_OPERAND_P;
1447 /* Return the set of VDEF operand for statement G. */
1449 static inline def_operand_p
1450 gimple_vdef_op (const_gimple g)
1452 struct def_optype_d *ops;
1453 if (!gimple_has_mem_ops (g))
1454 return NULL_DEF_OPERAND_P;
1455 ops = g->gsops.opbase.def_ops;
1456 if (ops
1457 && DEF_OP_PTR (ops) == &g->gsmembase.vdef)
1458 return DEF_OP_PTR (ops);
1459 return NULL_DEF_OPERAND_P;
1463 /* Return the single VUSE operand of the statement G. */
1465 static inline tree
1466 gimple_vuse (const_gimple g)
1468 if (!gimple_has_mem_ops (g))
1469 return NULL_TREE;
1470 return g->gsmembase.vuse;
1473 /* Return the single VDEF operand of the statement G. */
1475 static inline tree
1476 gimple_vdef (const_gimple g)
1478 if (!gimple_has_mem_ops (g))
1479 return NULL_TREE;
1480 return g->gsmembase.vdef;
1483 /* Return the single VUSE operand of the statement G. */
1485 static inline tree *
1486 gimple_vuse_ptr (gimple g)
1488 if (!gimple_has_mem_ops (g))
1489 return NULL;
1490 return &g->gsmembase.vuse;
1493 /* Return the single VDEF operand of the statement G. */
1495 static inline tree *
1496 gimple_vdef_ptr (gimple g)
1498 if (!gimple_has_mem_ops (g))
1499 return NULL;
1500 return &g->gsmembase.vdef;
1503 /* Set the single VUSE operand of the statement G. */
1505 static inline void
1506 gimple_set_vuse (gimple g, tree vuse)
1508 gcc_gimple_checking_assert (gimple_has_mem_ops (g));
1509 g->gsmembase.vuse = vuse;
1512 /* Set the single VDEF operand of the statement G. */
1514 static inline void
1515 gimple_set_vdef (gimple g, tree vdef)
1517 gcc_gimple_checking_assert (gimple_has_mem_ops (g));
1518 g->gsmembase.vdef = vdef;
1522 /* Return true if statement G has operands and the modified field has
1523 been set. */
1525 static inline bool
1526 gimple_modified_p (const_gimple g)
1528 return (gimple_has_ops (g)) ? (bool) g->gsbase.modified : false;
1532 /* Return the tree code for the expression computed by STMT. This is
1533 only valid for GIMPLE_COND, GIMPLE_CALL and GIMPLE_ASSIGN. For
1534 GIMPLE_CALL, return CALL_EXPR as the expression code for
1535 consistency. This is useful when the caller needs to deal with the
1536 three kinds of computation that GIMPLE supports. */
1538 static inline enum tree_code
1539 gimple_expr_code (const_gimple stmt)
1541 enum gimple_code code = gimple_code (stmt);
1542 if (code == GIMPLE_ASSIGN || code == GIMPLE_COND)
1543 return (enum tree_code) stmt->gsbase.subcode;
1544 else
1546 gcc_gimple_checking_assert (code == GIMPLE_CALL);
1547 return CALL_EXPR;
1552 /* Mark statement S as modified, and update it. */
1554 static inline void
1555 update_stmt (gimple s)
1557 if (gimple_has_ops (s))
1559 gimple_set_modified (s, true);
1560 update_stmt_operands (s);
1564 /* Update statement S if it has been optimized. */
1566 static inline void
1567 update_stmt_if_modified (gimple s)
1569 if (gimple_modified_p (s))
1570 update_stmt_operands (s);
1573 /* Return true if statement STMT contains volatile operands. */
1575 static inline bool
1576 gimple_has_volatile_ops (const_gimple stmt)
1578 if (gimple_has_mem_ops (stmt))
1579 return stmt->gsbase.has_volatile_ops;
1580 else
1581 return false;
1585 /* Set the HAS_VOLATILE_OPS flag to VOLATILEP. */
1587 static inline void
1588 gimple_set_has_volatile_ops (gimple stmt, bool volatilep)
1590 if (gimple_has_mem_ops (stmt))
1591 stmt->gsbase.has_volatile_ops = (unsigned) volatilep;
1595 /* Return true if statement STMT may access memory. */
1597 static inline bool
1598 gimple_references_memory_p (gimple stmt)
1600 return gimple_has_mem_ops (stmt) && gimple_vuse (stmt);
1604 /* Return the subcode for OMP statement S. */
1606 static inline unsigned
1607 gimple_omp_subcode (const_gimple s)
1609 gcc_gimple_checking_assert (gimple_code (s) >= GIMPLE_OMP_ATOMIC_LOAD
1610 && gimple_code (s) <= GIMPLE_OMP_SINGLE);
1611 return s->gsbase.subcode;
1614 /* Set the subcode for OMP statement S to SUBCODE. */
1616 static inline void
1617 gimple_omp_set_subcode (gimple s, unsigned int subcode)
1619 /* We only have 16 bits for the subcode. Assert that we are not
1620 overflowing it. */
1621 gcc_gimple_checking_assert (subcode < (1 << 16));
1622 s->gsbase.subcode = subcode;
1625 /* Set the nowait flag on OMP_RETURN statement S. */
1627 static inline void
1628 gimple_omp_return_set_nowait (gimple s)
1630 GIMPLE_CHECK (s, GIMPLE_OMP_RETURN);
1631 s->gsbase.subcode |= GF_OMP_RETURN_NOWAIT;
1635 /* Return true if OMP return statement G has the GF_OMP_RETURN_NOWAIT
1636 flag set. */
1638 static inline bool
1639 gimple_omp_return_nowait_p (const_gimple g)
1641 GIMPLE_CHECK (g, GIMPLE_OMP_RETURN);
1642 return (gimple_omp_subcode (g) & GF_OMP_RETURN_NOWAIT) != 0;
1646 /* Return true if OMP section statement G has the GF_OMP_SECTION_LAST
1647 flag set. */
1649 static inline bool
1650 gimple_omp_section_last_p (const_gimple g)
1652 GIMPLE_CHECK (g, GIMPLE_OMP_SECTION);
1653 return (gimple_omp_subcode (g) & GF_OMP_SECTION_LAST) != 0;
1657 /* Set the GF_OMP_SECTION_LAST flag on G. */
1659 static inline void
1660 gimple_omp_section_set_last (gimple g)
1662 GIMPLE_CHECK (g, GIMPLE_OMP_SECTION);
1663 g->gsbase.subcode |= GF_OMP_SECTION_LAST;
1667 /* Return true if OMP parallel statement G has the
1668 GF_OMP_PARALLEL_COMBINED flag set. */
1670 static inline bool
1671 gimple_omp_parallel_combined_p (const_gimple g)
1673 GIMPLE_CHECK (g, GIMPLE_OMP_PARALLEL);
1674 return (gimple_omp_subcode (g) & GF_OMP_PARALLEL_COMBINED) != 0;
1678 /* Set the GF_OMP_PARALLEL_COMBINED field in G depending on the boolean
1679 value of COMBINED_P. */
1681 static inline void
1682 gimple_omp_parallel_set_combined_p (gimple g, bool combined_p)
1684 GIMPLE_CHECK (g, GIMPLE_OMP_PARALLEL);
1685 if (combined_p)
1686 g->gsbase.subcode |= GF_OMP_PARALLEL_COMBINED;
1687 else
1688 g->gsbase.subcode &= ~GF_OMP_PARALLEL_COMBINED;
1692 /* Return true if OMP atomic load/store statement G has the
1693 GF_OMP_ATOMIC_NEED_VALUE flag set. */
1695 static inline bool
1696 gimple_omp_atomic_need_value_p (const_gimple g)
1698 if (gimple_code (g) != GIMPLE_OMP_ATOMIC_LOAD)
1699 GIMPLE_CHECK (g, GIMPLE_OMP_ATOMIC_STORE);
1700 return (gimple_omp_subcode (g) & GF_OMP_ATOMIC_NEED_VALUE) != 0;
1704 /* Set the GF_OMP_ATOMIC_NEED_VALUE flag on G. */
1706 static inline void
1707 gimple_omp_atomic_set_need_value (gimple g)
1709 if (gimple_code (g) != GIMPLE_OMP_ATOMIC_LOAD)
1710 GIMPLE_CHECK (g, GIMPLE_OMP_ATOMIC_STORE);
1711 g->gsbase.subcode |= GF_OMP_ATOMIC_NEED_VALUE;
1715 /* Return the number of operands for statement GS. */
1717 static inline unsigned
1718 gimple_num_ops (const_gimple gs)
1720 return gs->gsbase.num_ops;
1724 /* Set the number of operands for statement GS. */
1726 static inline void
1727 gimple_set_num_ops (gimple gs, unsigned num_ops)
1729 gs->gsbase.num_ops = num_ops;
1733 /* Return the array of operands for statement GS. */
1735 static inline tree *
1736 gimple_ops (gimple gs)
1738 size_t off;
1740 /* All the tuples have their operand vector at the very bottom
1741 of the structure. Note that those structures that do not
1742 have an operand vector have a zero offset. */
1743 off = gimple_ops_offset_[gimple_statement_structure (gs)];
1744 gcc_gimple_checking_assert (off != 0);
1746 return (tree *) ((char *) gs + off);
1750 /* Return operand I for statement GS. */
1752 static inline tree
1753 gimple_op (const_gimple gs, unsigned i)
1755 if (gimple_has_ops (gs))
1757 gcc_gimple_checking_assert (i < gimple_num_ops (gs));
1758 return gimple_ops (CONST_CAST_GIMPLE (gs))[i];
1760 else
1761 return NULL_TREE;
1764 /* Return a pointer to operand I for statement GS. */
1766 static inline tree *
1767 gimple_op_ptr (const_gimple gs, unsigned i)
1769 if (gimple_has_ops (gs))
1771 gcc_gimple_checking_assert (i < gimple_num_ops (gs));
1772 return gimple_ops (CONST_CAST_GIMPLE (gs)) + i;
1774 else
1775 return NULL;
1778 /* Set operand I of statement GS to OP. */
1780 static inline void
1781 gimple_set_op (gimple gs, unsigned i, tree op)
1783 gcc_gimple_checking_assert (gimple_has_ops (gs) && i < gimple_num_ops (gs));
1785 /* Note. It may be tempting to assert that OP matches
1786 is_gimple_operand, but that would be wrong. Different tuples
1787 accept slightly different sets of tree operands. Each caller
1788 should perform its own validation. */
1789 gimple_ops (gs)[i] = op;
1792 /* Return true if GS is a GIMPLE_ASSIGN. */
1794 static inline bool
1795 is_gimple_assign (const_gimple gs)
1797 return gimple_code (gs) == GIMPLE_ASSIGN;
1800 /* Determine if expression CODE is one of the valid expressions that can
1801 be used on the RHS of GIMPLE assignments. */
1803 static inline enum gimple_rhs_class
1804 get_gimple_rhs_class (enum tree_code code)
1806 return (enum gimple_rhs_class) gimple_rhs_class_table[(int) code];
1809 /* Return the LHS of assignment statement GS. */
1811 static inline tree
1812 gimple_assign_lhs (const_gimple gs)
1814 GIMPLE_CHECK (gs, GIMPLE_ASSIGN);
1815 return gimple_op (gs, 0);
1819 /* Return a pointer to the LHS of assignment statement GS. */
1821 static inline tree *
1822 gimple_assign_lhs_ptr (const_gimple gs)
1824 GIMPLE_CHECK (gs, GIMPLE_ASSIGN);
1825 return gimple_op_ptr (gs, 0);
1829 /* Set LHS to be the LHS operand of assignment statement GS. */
1831 static inline void
1832 gimple_assign_set_lhs (gimple gs, tree lhs)
1834 GIMPLE_CHECK (gs, GIMPLE_ASSIGN);
1835 gimple_set_op (gs, 0, lhs);
1837 if (lhs && TREE_CODE (lhs) == SSA_NAME)
1838 SSA_NAME_DEF_STMT (lhs) = gs;
1842 /* Return the first operand on the RHS of assignment statement GS. */
1844 static inline tree
1845 gimple_assign_rhs1 (const_gimple gs)
1847 GIMPLE_CHECK (gs, GIMPLE_ASSIGN);
1848 return gimple_op (gs, 1);
1852 /* Return a pointer to the first operand on the RHS of assignment
1853 statement GS. */
1855 static inline tree *
1856 gimple_assign_rhs1_ptr (const_gimple gs)
1858 GIMPLE_CHECK (gs, GIMPLE_ASSIGN);
1859 return gimple_op_ptr (gs, 1);
1862 /* Set RHS to be the first operand on the RHS of assignment statement GS. */
1864 static inline void
1865 gimple_assign_set_rhs1 (gimple gs, tree rhs)
1867 GIMPLE_CHECK (gs, GIMPLE_ASSIGN);
1869 gimple_set_op (gs, 1, rhs);
1873 /* Return the second operand on the RHS of assignment statement GS.
1874 If GS does not have two operands, NULL is returned instead. */
1876 static inline tree
1877 gimple_assign_rhs2 (const_gimple gs)
1879 GIMPLE_CHECK (gs, GIMPLE_ASSIGN);
1881 if (gimple_num_ops (gs) >= 3)
1882 return gimple_op (gs, 2);
1883 else
1884 return NULL_TREE;
1888 /* Return a pointer to the second operand on the RHS of assignment
1889 statement GS. */
1891 static inline tree *
1892 gimple_assign_rhs2_ptr (const_gimple gs)
1894 GIMPLE_CHECK (gs, GIMPLE_ASSIGN);
1895 return gimple_op_ptr (gs, 2);
1899 /* Set RHS to be the second operand on the RHS of assignment statement GS. */
1901 static inline void
1902 gimple_assign_set_rhs2 (gimple gs, tree rhs)
1904 GIMPLE_CHECK (gs, GIMPLE_ASSIGN);
1906 gimple_set_op (gs, 2, rhs);
1909 /* Return the third operand on the RHS of assignment statement GS.
1910 If GS does not have two operands, NULL is returned instead. */
1912 static inline tree
1913 gimple_assign_rhs3 (const_gimple gs)
1915 GIMPLE_CHECK (gs, GIMPLE_ASSIGN);
1917 if (gimple_num_ops (gs) >= 4)
1918 return gimple_op (gs, 3);
1919 else
1920 return NULL_TREE;
1923 /* Return a pointer to the third operand on the RHS of assignment
1924 statement GS. */
1926 static inline tree *
1927 gimple_assign_rhs3_ptr (const_gimple gs)
1929 GIMPLE_CHECK (gs, GIMPLE_ASSIGN);
1930 return gimple_op_ptr (gs, 3);
1934 /* Set RHS to be the third operand on the RHS of assignment statement GS. */
1936 static inline void
1937 gimple_assign_set_rhs3 (gimple gs, tree rhs)
1939 GIMPLE_CHECK (gs, GIMPLE_ASSIGN);
1941 gimple_set_op (gs, 3, rhs);
1944 /* A wrapper around gimple_assign_set_rhs_with_ops_1, for callers which expect
1945 to see only a maximum of two operands. */
1947 static inline void
1948 gimple_assign_set_rhs_with_ops (gimple_stmt_iterator *gsi, enum tree_code code,
1949 tree op1, tree op2)
1951 gimple_assign_set_rhs_with_ops_1 (gsi, code, op1, op2, NULL);
1954 /* A wrapper around extract_ops_from_tree_1, for callers which expect
1955 to see only a maximum of two operands. */
1957 static inline void
1958 extract_ops_from_tree (tree expr, enum tree_code *code, tree *op0,
1959 tree *op1)
1961 tree op2;
1962 extract_ops_from_tree_1 (expr, code, op0, op1, &op2);
1963 gcc_assert (op2 == NULL_TREE);
1966 /* Returns true if GS is a nontemporal move. */
1968 static inline bool
1969 gimple_assign_nontemporal_move_p (const_gimple gs)
1971 GIMPLE_CHECK (gs, GIMPLE_ASSIGN);
1972 return gs->gsbase.nontemporal_move;
1975 /* Sets nontemporal move flag of GS to NONTEMPORAL. */
1977 static inline void
1978 gimple_assign_set_nontemporal_move (gimple gs, bool nontemporal)
1980 GIMPLE_CHECK (gs, GIMPLE_ASSIGN);
1981 gs->gsbase.nontemporal_move = nontemporal;
1985 /* Return the code of the expression computed on the rhs of assignment
1986 statement GS. In case that the RHS is a single object, returns the
1987 tree code of the object. */
1989 static inline enum tree_code
1990 gimple_assign_rhs_code (const_gimple gs)
1992 enum tree_code code;
1993 GIMPLE_CHECK (gs, GIMPLE_ASSIGN);
1995 code = (enum tree_code) gs->gsbase.subcode;
1996 /* While we initially set subcode to the TREE_CODE of the rhs for
1997 GIMPLE_SINGLE_RHS assigns we do not update that subcode to stay
1998 in sync when we rewrite stmts into SSA form or do SSA propagations. */
1999 if (get_gimple_rhs_class (code) == GIMPLE_SINGLE_RHS)
2000 code = TREE_CODE (gimple_assign_rhs1 (gs));
2002 return code;
2006 /* Set CODE to be the code for the expression computed on the RHS of
2007 assignment S. */
2009 static inline void
2010 gimple_assign_set_rhs_code (gimple s, enum tree_code code)
2012 GIMPLE_CHECK (s, GIMPLE_ASSIGN);
2013 s->gsbase.subcode = code;
2017 /* Return the gimple rhs class of the code of the expression computed on
2018 the rhs of assignment statement GS.
2019 This will never return GIMPLE_INVALID_RHS. */
2021 static inline enum gimple_rhs_class
2022 gimple_assign_rhs_class (const_gimple gs)
2024 return get_gimple_rhs_class (gimple_assign_rhs_code (gs));
2027 /* Return true if GS is an assignment with a singleton RHS, i.e.,
2028 there is no operator associated with the assignment itself.
2029 Unlike gimple_assign_copy_p, this predicate returns true for
2030 any RHS operand, including those that perform an operation
2031 and do not have the semantics of a copy, such as COND_EXPR. */
2033 static inline bool
2034 gimple_assign_single_p (gimple gs)
2036 return (is_gimple_assign (gs)
2037 && gimple_assign_rhs_class (gs) == GIMPLE_SINGLE_RHS);
2041 /* Return true if S is a type-cast assignment. */
2043 static inline bool
2044 gimple_assign_cast_p (gimple s)
2046 if (is_gimple_assign (s))
2048 enum tree_code sc = gimple_assign_rhs_code (s);
2049 return CONVERT_EXPR_CODE_P (sc)
2050 || sc == VIEW_CONVERT_EXPR
2051 || sc == FIX_TRUNC_EXPR;
2054 return false;
2057 /* Return true if S is a clobber statement. */
2059 static inline bool
2060 gimple_clobber_p (gimple s)
2062 return gimple_assign_single_p (s)
2063 && TREE_CLOBBER_P (gimple_assign_rhs1 (s));
2066 /* Return true if GS is a GIMPLE_CALL. */
2068 static inline bool
2069 is_gimple_call (const_gimple gs)
2071 return gimple_code (gs) == GIMPLE_CALL;
2074 /* Return the LHS of call statement GS. */
2076 static inline tree
2077 gimple_call_lhs (const_gimple gs)
2079 GIMPLE_CHECK (gs, GIMPLE_CALL);
2080 return gimple_op (gs, 0);
2084 /* Return a pointer to the LHS of call statement GS. */
2086 static inline tree *
2087 gimple_call_lhs_ptr (const_gimple gs)
2089 GIMPLE_CHECK (gs, GIMPLE_CALL);
2090 return gimple_op_ptr (gs, 0);
2094 /* Set LHS to be the LHS operand of call statement GS. */
2096 static inline void
2097 gimple_call_set_lhs (gimple gs, tree lhs)
2099 GIMPLE_CHECK (gs, GIMPLE_CALL);
2100 gimple_set_op (gs, 0, lhs);
2101 if (lhs && TREE_CODE (lhs) == SSA_NAME)
2102 SSA_NAME_DEF_STMT (lhs) = gs;
2106 /* Return true if call GS calls an internal-only function, as enumerated
2107 by internal_fn. */
2109 static inline bool
2110 gimple_call_internal_p (const_gimple gs)
2112 GIMPLE_CHECK (gs, GIMPLE_CALL);
2113 return (gs->gsbase.subcode & GF_CALL_INTERNAL) != 0;
2117 /* Return the target of internal call GS. */
2119 static inline enum internal_fn
2120 gimple_call_internal_fn (const_gimple gs)
2122 gcc_gimple_checking_assert (gimple_call_internal_p (gs));
2123 return gs->gimple_call.u.internal_fn;
2127 /* Return the function type of the function called by GS. */
2129 static inline tree
2130 gimple_call_fntype (const_gimple gs)
2132 GIMPLE_CHECK (gs, GIMPLE_CALL);
2133 if (gimple_call_internal_p (gs))
2134 return NULL_TREE;
2135 return gs->gimple_call.u.fntype;
2138 /* Set the type of the function called by GS to FNTYPE. */
2140 static inline void
2141 gimple_call_set_fntype (gimple gs, tree fntype)
2143 GIMPLE_CHECK (gs, GIMPLE_CALL);
2144 gcc_gimple_checking_assert (!gimple_call_internal_p (gs));
2145 gs->gimple_call.u.fntype = fntype;
2149 /* Return the tree node representing the function called by call
2150 statement GS. */
2152 static inline tree
2153 gimple_call_fn (const_gimple gs)
2155 GIMPLE_CHECK (gs, GIMPLE_CALL);
2156 return gimple_op (gs, 1);
2159 /* Return a pointer to the tree node representing the function called by call
2160 statement GS. */
2162 static inline tree *
2163 gimple_call_fn_ptr (const_gimple gs)
2165 GIMPLE_CHECK (gs, GIMPLE_CALL);
2166 return gimple_op_ptr (gs, 1);
2170 /* Set FN to be the function called by call statement GS. */
2172 static inline void
2173 gimple_call_set_fn (gimple gs, tree fn)
2175 GIMPLE_CHECK (gs, GIMPLE_CALL);
2176 gcc_gimple_checking_assert (!gimple_call_internal_p (gs));
2177 gimple_set_op (gs, 1, fn);
2181 /* Set FNDECL to be the function called by call statement GS. */
2183 static inline void
2184 gimple_call_set_fndecl (gimple gs, tree decl)
2186 GIMPLE_CHECK (gs, GIMPLE_CALL);
2187 gcc_gimple_checking_assert (!gimple_call_internal_p (gs));
2188 gimple_set_op (gs, 1, build_fold_addr_expr_loc (gimple_location (gs), decl));
2192 /* Set internal function FN to be the function called by call statement GS. */
2194 static inline void
2195 gimple_call_set_internal_fn (gimple gs, enum internal_fn fn)
2197 GIMPLE_CHECK (gs, GIMPLE_CALL);
2198 gcc_gimple_checking_assert (gimple_call_internal_p (gs));
2199 gs->gimple_call.u.internal_fn = fn;
2203 /* Given a valid GIMPLE_CALL function address return the FUNCTION_DECL
2204 associated with the callee if known. Otherwise return NULL_TREE. */
2206 static inline tree
2207 gimple_call_addr_fndecl (const_tree fn)
2209 if (fn && TREE_CODE (fn) == ADDR_EXPR)
2211 tree fndecl = TREE_OPERAND (fn, 0);
2212 if (TREE_CODE (fndecl) == MEM_REF
2213 && TREE_CODE (TREE_OPERAND (fndecl, 0)) == ADDR_EXPR
2214 && integer_zerop (TREE_OPERAND (fndecl, 1)))
2215 fndecl = TREE_OPERAND (TREE_OPERAND (fndecl, 0), 0);
2216 if (TREE_CODE (fndecl) == FUNCTION_DECL)
2217 return fndecl;
2219 return NULL_TREE;
2222 /* If a given GIMPLE_CALL's callee is a FUNCTION_DECL, return it.
2223 Otherwise return NULL. This function is analogous to
2224 get_callee_fndecl in tree land. */
2226 static inline tree
2227 gimple_call_fndecl (const_gimple gs)
2229 return gimple_call_addr_fndecl (gimple_call_fn (gs));
2233 /* Return the type returned by call statement GS. */
2235 static inline tree
2236 gimple_call_return_type (const_gimple gs)
2238 tree type = gimple_call_fntype (gs);
2240 if (type == NULL_TREE)
2241 return TREE_TYPE (gimple_call_lhs (gs));
2243 /* The type returned by a function is the type of its
2244 function type. */
2245 return TREE_TYPE (type);
2249 /* Return the static chain for call statement GS. */
2251 static inline tree
2252 gimple_call_chain (const_gimple gs)
2254 GIMPLE_CHECK (gs, GIMPLE_CALL);
2255 return gimple_op (gs, 2);
2259 /* Return a pointer to the static chain for call statement GS. */
2261 static inline tree *
2262 gimple_call_chain_ptr (const_gimple gs)
2264 GIMPLE_CHECK (gs, GIMPLE_CALL);
2265 return gimple_op_ptr (gs, 2);
2268 /* Set CHAIN to be the static chain for call statement GS. */
2270 static inline void
2271 gimple_call_set_chain (gimple gs, tree chain)
2273 GIMPLE_CHECK (gs, GIMPLE_CALL);
2275 gimple_set_op (gs, 2, chain);
2279 /* Return the number of arguments used by call statement GS. */
2281 static inline unsigned
2282 gimple_call_num_args (const_gimple gs)
2284 unsigned num_ops;
2285 GIMPLE_CHECK (gs, GIMPLE_CALL);
2286 num_ops = gimple_num_ops (gs);
2287 return num_ops - 3;
2291 /* Return the argument at position INDEX for call statement GS. */
2293 static inline tree
2294 gimple_call_arg (const_gimple gs, unsigned index)
2296 GIMPLE_CHECK (gs, GIMPLE_CALL);
2297 return gimple_op (gs, index + 3);
2301 /* Return a pointer to the argument at position INDEX for call
2302 statement GS. */
2304 static inline tree *
2305 gimple_call_arg_ptr (const_gimple gs, unsigned index)
2307 GIMPLE_CHECK (gs, GIMPLE_CALL);
2308 return gimple_op_ptr (gs, index + 3);
2312 /* Set ARG to be the argument at position INDEX for call statement GS. */
2314 static inline void
2315 gimple_call_set_arg (gimple gs, unsigned index, tree arg)
2317 GIMPLE_CHECK (gs, GIMPLE_CALL);
2318 gimple_set_op (gs, index + 3, arg);
2322 /* If TAIL_P is true, mark call statement S as being a tail call
2323 (i.e., a call just before the exit of a function). These calls are
2324 candidate for tail call optimization. */
2326 static inline void
2327 gimple_call_set_tail (gimple s, bool tail_p)
2329 GIMPLE_CHECK (s, GIMPLE_CALL);
2330 if (tail_p)
2331 s->gsbase.subcode |= GF_CALL_TAILCALL;
2332 else
2333 s->gsbase.subcode &= ~GF_CALL_TAILCALL;
2337 /* Return true if GIMPLE_CALL S is marked as a tail call. */
2339 static inline bool
2340 gimple_call_tail_p (gimple s)
2342 GIMPLE_CHECK (s, GIMPLE_CALL);
2343 return (s->gsbase.subcode & GF_CALL_TAILCALL) != 0;
2347 /* Return true if GIMPLE_CALL S cannot be inlined. */
2349 static inline bool
2350 gimple_call_cannot_inline_p (gimple s)
2352 GIMPLE_CHECK (s, GIMPLE_CALL);
2353 return (s->gsbase.subcode & GF_CALL_CANNOT_INLINE) != 0;
2357 /* If RETURN_SLOT_OPT_P is true mark GIMPLE_CALL S as valid for return
2358 slot optimization. This transformation uses the target of the call
2359 expansion as the return slot for calls that return in memory. */
2361 static inline void
2362 gimple_call_set_return_slot_opt (gimple s, bool return_slot_opt_p)
2364 GIMPLE_CHECK (s, GIMPLE_CALL);
2365 if (return_slot_opt_p)
2366 s->gsbase.subcode |= GF_CALL_RETURN_SLOT_OPT;
2367 else
2368 s->gsbase.subcode &= ~GF_CALL_RETURN_SLOT_OPT;
2372 /* Return true if S is marked for return slot optimization. */
2374 static inline bool
2375 gimple_call_return_slot_opt_p (gimple s)
2377 GIMPLE_CHECK (s, GIMPLE_CALL);
2378 return (s->gsbase.subcode & GF_CALL_RETURN_SLOT_OPT) != 0;
2382 /* If FROM_THUNK_P is true, mark GIMPLE_CALL S as being the jump from a
2383 thunk to the thunked-to function. */
2385 static inline void
2386 gimple_call_set_from_thunk (gimple s, bool from_thunk_p)
2388 GIMPLE_CHECK (s, GIMPLE_CALL);
2389 if (from_thunk_p)
2390 s->gsbase.subcode |= GF_CALL_FROM_THUNK;
2391 else
2392 s->gsbase.subcode &= ~GF_CALL_FROM_THUNK;
2396 /* Return true if GIMPLE_CALL S is a jump from a thunk. */
2398 static inline bool
2399 gimple_call_from_thunk_p (gimple s)
2401 GIMPLE_CHECK (s, GIMPLE_CALL);
2402 return (s->gsbase.subcode & GF_CALL_FROM_THUNK) != 0;
2406 /* If PASS_ARG_PACK_P is true, GIMPLE_CALL S is a stdarg call that needs the
2407 argument pack in its argument list. */
2409 static inline void
2410 gimple_call_set_va_arg_pack (gimple s, bool pass_arg_pack_p)
2412 GIMPLE_CHECK (s, GIMPLE_CALL);
2413 if (pass_arg_pack_p)
2414 s->gsbase.subcode |= GF_CALL_VA_ARG_PACK;
2415 else
2416 s->gsbase.subcode &= ~GF_CALL_VA_ARG_PACK;
2420 /* Return true if GIMPLE_CALL S is a stdarg call that needs the
2421 argument pack in its argument list. */
2423 static inline bool
2424 gimple_call_va_arg_pack_p (gimple s)
2426 GIMPLE_CHECK (s, GIMPLE_CALL);
2427 return (s->gsbase.subcode & GF_CALL_VA_ARG_PACK) != 0;
2431 /* Return true if S is a noreturn call. */
2433 static inline bool
2434 gimple_call_noreturn_p (gimple s)
2436 GIMPLE_CHECK (s, GIMPLE_CALL);
2437 return (gimple_call_flags (s) & ECF_NORETURN) != 0;
2441 /* If NOTHROW_P is true, GIMPLE_CALL S is a call that is known to not throw
2442 even if the called function can throw in other cases. */
2444 static inline void
2445 gimple_call_set_nothrow (gimple s, bool nothrow_p)
2447 GIMPLE_CHECK (s, GIMPLE_CALL);
2448 if (nothrow_p)
2449 s->gsbase.subcode |= GF_CALL_NOTHROW;
2450 else
2451 s->gsbase.subcode &= ~GF_CALL_NOTHROW;
2454 /* Return true if S is a nothrow call. */
2456 static inline bool
2457 gimple_call_nothrow_p (gimple s)
2459 GIMPLE_CHECK (s, GIMPLE_CALL);
2460 return (gimple_call_flags (s) & ECF_NOTHROW) != 0;
2463 /* If FOR_VAR is true, GIMPLE_CALL S is a call to builtin_alloca that
2464 is known to be emitted for VLA objects. Those are wrapped by
2465 stack_save/stack_restore calls and hence can't lead to unbounded
2466 stack growth even when they occur in loops. */
2468 static inline void
2469 gimple_call_set_alloca_for_var (gimple s, bool for_var)
2471 GIMPLE_CHECK (s, GIMPLE_CALL);
2472 if (for_var)
2473 s->gsbase.subcode |= GF_CALL_ALLOCA_FOR_VAR;
2474 else
2475 s->gsbase.subcode &= ~GF_CALL_ALLOCA_FOR_VAR;
2478 /* Return true of S is a call to builtin_alloca emitted for VLA objects. */
2480 static inline bool
2481 gimple_call_alloca_for_var_p (gimple s)
2483 GIMPLE_CHECK (s, GIMPLE_CALL);
2484 return (s->gsbase.subcode & GF_CALL_ALLOCA_FOR_VAR) != 0;
2487 /* Copy all the GF_CALL_* flags from ORIG_CALL to DEST_CALL. */
2489 static inline void
2490 gimple_call_copy_flags (gimple dest_call, gimple orig_call)
2492 GIMPLE_CHECK (dest_call, GIMPLE_CALL);
2493 GIMPLE_CHECK (orig_call, GIMPLE_CALL);
2494 dest_call->gsbase.subcode = orig_call->gsbase.subcode;
2498 /* Return a pointer to the points-to solution for the set of call-used
2499 variables of the call CALL. */
2501 static inline struct pt_solution *
2502 gimple_call_use_set (gimple call)
2504 GIMPLE_CHECK (call, GIMPLE_CALL);
2505 return &call->gimple_call.call_used;
2509 /* Return a pointer to the points-to solution for the set of call-used
2510 variables of the call CALL. */
2512 static inline struct pt_solution *
2513 gimple_call_clobber_set (gimple call)
2515 GIMPLE_CHECK (call, GIMPLE_CALL);
2516 return &call->gimple_call.call_clobbered;
2520 /* Returns true if this is a GIMPLE_ASSIGN or a GIMPLE_CALL with a
2521 non-NULL lhs. */
2523 static inline bool
2524 gimple_has_lhs (gimple stmt)
2526 return (is_gimple_assign (stmt)
2527 || (is_gimple_call (stmt)
2528 && gimple_call_lhs (stmt) != NULL_TREE));
2532 /* Return the code of the predicate computed by conditional statement GS. */
2534 static inline enum tree_code
2535 gimple_cond_code (const_gimple gs)
2537 GIMPLE_CHECK (gs, GIMPLE_COND);
2538 return (enum tree_code) gs->gsbase.subcode;
2542 /* Set CODE to be the predicate code for the conditional statement GS. */
2544 static inline void
2545 gimple_cond_set_code (gimple gs, enum tree_code code)
2547 GIMPLE_CHECK (gs, GIMPLE_COND);
2548 gs->gsbase.subcode = code;
2552 /* Return the LHS of the predicate computed by conditional statement GS. */
2554 static inline tree
2555 gimple_cond_lhs (const_gimple gs)
2557 GIMPLE_CHECK (gs, GIMPLE_COND);
2558 return gimple_op (gs, 0);
2561 /* Return the pointer to the LHS of the predicate computed by conditional
2562 statement GS. */
2564 static inline tree *
2565 gimple_cond_lhs_ptr (const_gimple gs)
2567 GIMPLE_CHECK (gs, GIMPLE_COND);
2568 return gimple_op_ptr (gs, 0);
2571 /* Set LHS to be the LHS operand of the predicate computed by
2572 conditional statement GS. */
2574 static inline void
2575 gimple_cond_set_lhs (gimple gs, tree lhs)
2577 GIMPLE_CHECK (gs, GIMPLE_COND);
2578 gimple_set_op (gs, 0, lhs);
2582 /* Return the RHS operand of the predicate computed by conditional GS. */
2584 static inline tree
2585 gimple_cond_rhs (const_gimple gs)
2587 GIMPLE_CHECK (gs, GIMPLE_COND);
2588 return gimple_op (gs, 1);
2591 /* Return the pointer to the RHS operand of the predicate computed by
2592 conditional GS. */
2594 static inline tree *
2595 gimple_cond_rhs_ptr (const_gimple gs)
2597 GIMPLE_CHECK (gs, GIMPLE_COND);
2598 return gimple_op_ptr (gs, 1);
2602 /* Set RHS to be the RHS operand of the predicate computed by
2603 conditional statement GS. */
2605 static inline void
2606 gimple_cond_set_rhs (gimple gs, tree rhs)
2608 GIMPLE_CHECK (gs, GIMPLE_COND);
2609 gimple_set_op (gs, 1, rhs);
2613 /* Return the label used by conditional statement GS when its
2614 predicate evaluates to true. */
2616 static inline tree
2617 gimple_cond_true_label (const_gimple gs)
2619 GIMPLE_CHECK (gs, GIMPLE_COND);
2620 return gimple_op (gs, 2);
2624 /* Set LABEL to be the label used by conditional statement GS when its
2625 predicate evaluates to true. */
2627 static inline void
2628 gimple_cond_set_true_label (gimple gs, tree label)
2630 GIMPLE_CHECK (gs, GIMPLE_COND);
2631 gimple_set_op (gs, 2, label);
2635 /* Set LABEL to be the label used by conditional statement GS when its
2636 predicate evaluates to false. */
2638 static inline void
2639 gimple_cond_set_false_label (gimple gs, tree label)
2641 GIMPLE_CHECK (gs, GIMPLE_COND);
2642 gimple_set_op (gs, 3, label);
2646 /* Return the label used by conditional statement GS when its
2647 predicate evaluates to false. */
2649 static inline tree
2650 gimple_cond_false_label (const_gimple gs)
2652 GIMPLE_CHECK (gs, GIMPLE_COND);
2653 return gimple_op (gs, 3);
2657 /* Set the conditional COND_STMT to be of the form 'if (1 == 0)'. */
2659 static inline void
2660 gimple_cond_make_false (gimple gs)
2662 gimple_cond_set_lhs (gs, boolean_true_node);
2663 gimple_cond_set_rhs (gs, boolean_false_node);
2664 gs->gsbase.subcode = EQ_EXPR;
2668 /* Set the conditional COND_STMT to be of the form 'if (1 == 1)'. */
2670 static inline void
2671 gimple_cond_make_true (gimple gs)
2673 gimple_cond_set_lhs (gs, boolean_true_node);
2674 gimple_cond_set_rhs (gs, boolean_true_node);
2675 gs->gsbase.subcode = EQ_EXPR;
2678 /* Check if conditional statemente GS is of the form 'if (1 == 1)',
2679 'if (0 == 0)', 'if (1 != 0)' or 'if (0 != 1)' */
2681 static inline bool
2682 gimple_cond_true_p (const_gimple gs)
2684 tree lhs = gimple_cond_lhs (gs);
2685 tree rhs = gimple_cond_rhs (gs);
2686 enum tree_code code = gimple_cond_code (gs);
2688 if (lhs != boolean_true_node && lhs != boolean_false_node)
2689 return false;
2691 if (rhs != boolean_true_node && rhs != boolean_false_node)
2692 return false;
2694 if (code == NE_EXPR && lhs != rhs)
2695 return true;
2697 if (code == EQ_EXPR && lhs == rhs)
2698 return true;
2700 return false;
2703 /* Check if conditional statement GS is of the form 'if (1 != 1)',
2704 'if (0 != 0)', 'if (1 == 0)' or 'if (0 == 1)' */
2706 static inline bool
2707 gimple_cond_false_p (const_gimple gs)
2709 tree lhs = gimple_cond_lhs (gs);
2710 tree rhs = gimple_cond_rhs (gs);
2711 enum tree_code code = gimple_cond_code (gs);
2713 if (lhs != boolean_true_node && lhs != boolean_false_node)
2714 return false;
2716 if (rhs != boolean_true_node && rhs != boolean_false_node)
2717 return false;
2719 if (code == NE_EXPR && lhs == rhs)
2720 return true;
2722 if (code == EQ_EXPR && lhs != rhs)
2723 return true;
2725 return false;
2728 /* Check if conditional statement GS is of the form 'if (var != 0)' or
2729 'if (var == 1)' */
2731 static inline bool
2732 gimple_cond_single_var_p (gimple gs)
2734 if (gimple_cond_code (gs) == NE_EXPR
2735 && gimple_cond_rhs (gs) == boolean_false_node)
2736 return true;
2738 if (gimple_cond_code (gs) == EQ_EXPR
2739 && gimple_cond_rhs (gs) == boolean_true_node)
2740 return true;
2742 return false;
2745 /* Set the code, LHS and RHS of GIMPLE_COND STMT from CODE, LHS and RHS. */
2747 static inline void
2748 gimple_cond_set_condition (gimple stmt, enum tree_code code, tree lhs, tree rhs)
2750 gimple_cond_set_code (stmt, code);
2751 gimple_cond_set_lhs (stmt, lhs);
2752 gimple_cond_set_rhs (stmt, rhs);
2755 /* Return the LABEL_DECL node used by GIMPLE_LABEL statement GS. */
2757 static inline tree
2758 gimple_label_label (const_gimple gs)
2760 GIMPLE_CHECK (gs, GIMPLE_LABEL);
2761 return gimple_op (gs, 0);
2765 /* Set LABEL to be the LABEL_DECL node used by GIMPLE_LABEL statement
2766 GS. */
2768 static inline void
2769 gimple_label_set_label (gimple gs, tree label)
2771 GIMPLE_CHECK (gs, GIMPLE_LABEL);
2772 gimple_set_op (gs, 0, label);
2776 /* Return the destination of the unconditional jump GS. */
2778 static inline tree
2779 gimple_goto_dest (const_gimple gs)
2781 GIMPLE_CHECK (gs, GIMPLE_GOTO);
2782 return gimple_op (gs, 0);
2786 /* Set DEST to be the destination of the unconditonal jump GS. */
2788 static inline void
2789 gimple_goto_set_dest (gimple gs, tree dest)
2791 GIMPLE_CHECK (gs, GIMPLE_GOTO);
2792 gimple_set_op (gs, 0, dest);
2796 /* Return the variables declared in the GIMPLE_BIND statement GS. */
2798 static inline tree
2799 gimple_bind_vars (const_gimple gs)
2801 GIMPLE_CHECK (gs, GIMPLE_BIND);
2802 return gs->gimple_bind.vars;
2806 /* Set VARS to be the set of variables declared in the GIMPLE_BIND
2807 statement GS. */
2809 static inline void
2810 gimple_bind_set_vars (gimple gs, tree vars)
2812 GIMPLE_CHECK (gs, GIMPLE_BIND);
2813 gs->gimple_bind.vars = vars;
2817 /* Append VARS to the set of variables declared in the GIMPLE_BIND
2818 statement GS. */
2820 static inline void
2821 gimple_bind_append_vars (gimple gs, tree vars)
2823 GIMPLE_CHECK (gs, GIMPLE_BIND);
2824 gs->gimple_bind.vars = chainon (gs->gimple_bind.vars, vars);
2828 /* Return the GIMPLE sequence contained in the GIMPLE_BIND statement GS. */
2830 static inline gimple_seq
2831 gimple_bind_body (gimple gs)
2833 GIMPLE_CHECK (gs, GIMPLE_BIND);
2834 return gs->gimple_bind.body;
2838 /* Set SEQ to be the GIMPLE sequence contained in the GIMPLE_BIND
2839 statement GS. */
2841 static inline void
2842 gimple_bind_set_body (gimple gs, gimple_seq seq)
2844 GIMPLE_CHECK (gs, GIMPLE_BIND);
2845 gs->gimple_bind.body = seq;
2849 /* Append a statement to the end of a GIMPLE_BIND's body. */
2851 static inline void
2852 gimple_bind_add_stmt (gimple gs, gimple stmt)
2854 GIMPLE_CHECK (gs, GIMPLE_BIND);
2855 gimple_seq_add_stmt (&gs->gimple_bind.body, stmt);
2859 /* Append a sequence of statements to the end of a GIMPLE_BIND's body. */
2861 static inline void
2862 gimple_bind_add_seq (gimple gs, gimple_seq seq)
2864 GIMPLE_CHECK (gs, GIMPLE_BIND);
2865 gimple_seq_add_seq (&gs->gimple_bind.body, seq);
2869 /* Return the TREE_BLOCK node associated with GIMPLE_BIND statement
2870 GS. This is analogous to the BIND_EXPR_BLOCK field in trees. */
2872 static inline tree
2873 gimple_bind_block (const_gimple gs)
2875 GIMPLE_CHECK (gs, GIMPLE_BIND);
2876 return gs->gimple_bind.block;
2880 /* Set BLOCK to be the TREE_BLOCK node associated with GIMPLE_BIND
2881 statement GS. */
2883 static inline void
2884 gimple_bind_set_block (gimple gs, tree block)
2886 GIMPLE_CHECK (gs, GIMPLE_BIND);
2887 gcc_gimple_checking_assert (block == NULL_TREE
2888 || TREE_CODE (block) == BLOCK);
2889 gs->gimple_bind.block = block;
2893 /* Return the number of input operands for GIMPLE_ASM GS. */
2895 static inline unsigned
2896 gimple_asm_ninputs (const_gimple gs)
2898 GIMPLE_CHECK (gs, GIMPLE_ASM);
2899 return gs->gimple_asm.ni;
2903 /* Return the number of output operands for GIMPLE_ASM GS. */
2905 static inline unsigned
2906 gimple_asm_noutputs (const_gimple gs)
2908 GIMPLE_CHECK (gs, GIMPLE_ASM);
2909 return gs->gimple_asm.no;
2913 /* Return the number of clobber operands for GIMPLE_ASM GS. */
2915 static inline unsigned
2916 gimple_asm_nclobbers (const_gimple gs)
2918 GIMPLE_CHECK (gs, GIMPLE_ASM);
2919 return gs->gimple_asm.nc;
2922 /* Return the number of label operands for GIMPLE_ASM GS. */
2924 static inline unsigned
2925 gimple_asm_nlabels (const_gimple gs)
2927 GIMPLE_CHECK (gs, GIMPLE_ASM);
2928 return gs->gimple_asm.nl;
2931 /* Return input operand INDEX of GIMPLE_ASM GS. */
2933 static inline tree
2934 gimple_asm_input_op (const_gimple gs, unsigned index)
2936 GIMPLE_CHECK (gs, GIMPLE_ASM);
2937 gcc_gimple_checking_assert (index <= gs->gimple_asm.ni);
2938 return gimple_op (gs, index);
2941 /* Return a pointer to input operand INDEX of GIMPLE_ASM GS. */
2943 static inline tree *
2944 gimple_asm_input_op_ptr (const_gimple gs, unsigned index)
2946 GIMPLE_CHECK (gs, GIMPLE_ASM);
2947 gcc_gimple_checking_assert (index <= gs->gimple_asm.ni);
2948 return gimple_op_ptr (gs, index);
2952 /* Set IN_OP to be input operand INDEX in GIMPLE_ASM GS. */
2954 static inline void
2955 gimple_asm_set_input_op (gimple gs, unsigned index, tree in_op)
2957 GIMPLE_CHECK (gs, GIMPLE_ASM);
2958 gcc_gimple_checking_assert (index <= gs->gimple_asm.ni
2959 && TREE_CODE (in_op) == TREE_LIST);
2960 gimple_set_op (gs, index, in_op);
2964 /* Return output operand INDEX of GIMPLE_ASM GS. */
2966 static inline tree
2967 gimple_asm_output_op (const_gimple gs, unsigned index)
2969 GIMPLE_CHECK (gs, GIMPLE_ASM);
2970 gcc_gimple_checking_assert (index <= gs->gimple_asm.no);
2971 return gimple_op (gs, index + gs->gimple_asm.ni);
2974 /* Return a pointer to output operand INDEX of GIMPLE_ASM GS. */
2976 static inline tree *
2977 gimple_asm_output_op_ptr (const_gimple gs, unsigned index)
2979 GIMPLE_CHECK (gs, GIMPLE_ASM);
2980 gcc_gimple_checking_assert (index <= gs->gimple_asm.no);
2981 return gimple_op_ptr (gs, index + gs->gimple_asm.ni);
2985 /* Set OUT_OP to be output operand INDEX in GIMPLE_ASM GS. */
2987 static inline void
2988 gimple_asm_set_output_op (gimple gs, unsigned index, tree out_op)
2990 GIMPLE_CHECK (gs, GIMPLE_ASM);
2991 gcc_gimple_checking_assert (index <= gs->gimple_asm.no
2992 && TREE_CODE (out_op) == TREE_LIST);
2993 gimple_set_op (gs, index + gs->gimple_asm.ni, out_op);
2997 /* Return clobber operand INDEX of GIMPLE_ASM GS. */
2999 static inline tree
3000 gimple_asm_clobber_op (const_gimple gs, unsigned index)
3002 GIMPLE_CHECK (gs, GIMPLE_ASM);
3003 gcc_gimple_checking_assert (index <= gs->gimple_asm.nc);
3004 return gimple_op (gs, index + gs->gimple_asm.ni + gs->gimple_asm.no);
3008 /* Set CLOBBER_OP to be clobber operand INDEX in GIMPLE_ASM GS. */
3010 static inline void
3011 gimple_asm_set_clobber_op (gimple gs, unsigned index, tree clobber_op)
3013 GIMPLE_CHECK (gs, GIMPLE_ASM);
3014 gcc_gimple_checking_assert (index <= gs->gimple_asm.nc
3015 && TREE_CODE (clobber_op) == TREE_LIST);
3016 gimple_set_op (gs, index + gs->gimple_asm.ni + gs->gimple_asm.no, clobber_op);
3019 /* Return label operand INDEX of GIMPLE_ASM GS. */
3021 static inline tree
3022 gimple_asm_label_op (const_gimple gs, unsigned index)
3024 GIMPLE_CHECK (gs, GIMPLE_ASM);
3025 gcc_gimple_checking_assert (index <= gs->gimple_asm.nl);
3026 return gimple_op (gs, index + gs->gimple_asm.ni + gs->gimple_asm.nc);
3029 /* Set LABEL_OP to be label operand INDEX in GIMPLE_ASM GS. */
3031 static inline void
3032 gimple_asm_set_label_op (gimple gs, unsigned index, tree label_op)
3034 GIMPLE_CHECK (gs, GIMPLE_ASM);
3035 gcc_gimple_checking_assert (index <= gs->gimple_asm.nl
3036 && TREE_CODE (label_op) == TREE_LIST);
3037 gimple_set_op (gs, index + gs->gimple_asm.ni + gs->gimple_asm.nc, label_op);
3040 /* Return the string representing the assembly instruction in
3041 GIMPLE_ASM GS. */
3043 static inline const char *
3044 gimple_asm_string (const_gimple gs)
3046 GIMPLE_CHECK (gs, GIMPLE_ASM);
3047 return gs->gimple_asm.string;
3051 /* Return true if GS is an asm statement marked volatile. */
3053 static inline bool
3054 gimple_asm_volatile_p (const_gimple gs)
3056 GIMPLE_CHECK (gs, GIMPLE_ASM);
3057 return (gs->gsbase.subcode & GF_ASM_VOLATILE) != 0;
3061 /* If VOLATLE_P is true, mark asm statement GS as volatile. */
3063 static inline void
3064 gimple_asm_set_volatile (gimple gs, bool volatile_p)
3066 GIMPLE_CHECK (gs, GIMPLE_ASM);
3067 if (volatile_p)
3068 gs->gsbase.subcode |= GF_ASM_VOLATILE;
3069 else
3070 gs->gsbase.subcode &= ~GF_ASM_VOLATILE;
3074 /* If INPUT_P is true, mark asm GS as an ASM_INPUT. */
3076 static inline void
3077 gimple_asm_set_input (gimple gs, bool input_p)
3079 GIMPLE_CHECK (gs, GIMPLE_ASM);
3080 if (input_p)
3081 gs->gsbase.subcode |= GF_ASM_INPUT;
3082 else
3083 gs->gsbase.subcode &= ~GF_ASM_INPUT;
3087 /* Return true if asm GS is an ASM_INPUT. */
3089 static inline bool
3090 gimple_asm_input_p (const_gimple gs)
3092 GIMPLE_CHECK (gs, GIMPLE_ASM);
3093 return (gs->gsbase.subcode & GF_ASM_INPUT) != 0;
3097 /* Return the types handled by GIMPLE_CATCH statement GS. */
3099 static inline tree
3100 gimple_catch_types (const_gimple gs)
3102 GIMPLE_CHECK (gs, GIMPLE_CATCH);
3103 return gs->gimple_catch.types;
3107 /* Return a pointer to the types handled by GIMPLE_CATCH statement GS. */
3109 static inline tree *
3110 gimple_catch_types_ptr (gimple gs)
3112 GIMPLE_CHECK (gs, GIMPLE_CATCH);
3113 return &gs->gimple_catch.types;
3117 /* Return the GIMPLE sequence representing the body of the handler of
3118 GIMPLE_CATCH statement GS. */
3120 static inline gimple_seq
3121 gimple_catch_handler (gimple gs)
3123 GIMPLE_CHECK (gs, GIMPLE_CATCH);
3124 return gs->gimple_catch.handler;
3128 /* Return a pointer to the GIMPLE sequence representing the body of
3129 the handler of GIMPLE_CATCH statement GS. */
3131 static inline gimple_seq *
3132 gimple_catch_handler_ptr (gimple gs)
3134 GIMPLE_CHECK (gs, GIMPLE_CATCH);
3135 return &gs->gimple_catch.handler;
3139 /* Set T to be the set of types handled by GIMPLE_CATCH GS. */
3141 static inline void
3142 gimple_catch_set_types (gimple gs, tree t)
3144 GIMPLE_CHECK (gs, GIMPLE_CATCH);
3145 gs->gimple_catch.types = t;
3149 /* Set HANDLER to be the body of GIMPLE_CATCH GS. */
3151 static inline void
3152 gimple_catch_set_handler (gimple gs, gimple_seq handler)
3154 GIMPLE_CHECK (gs, GIMPLE_CATCH);
3155 gs->gimple_catch.handler = handler;
3159 /* Return the types handled by GIMPLE_EH_FILTER statement GS. */
3161 static inline tree
3162 gimple_eh_filter_types (const_gimple gs)
3164 GIMPLE_CHECK (gs, GIMPLE_EH_FILTER);
3165 return gs->gimple_eh_filter.types;
3169 /* Return a pointer to the types handled by GIMPLE_EH_FILTER statement
3170 GS. */
3172 static inline tree *
3173 gimple_eh_filter_types_ptr (gimple gs)
3175 GIMPLE_CHECK (gs, GIMPLE_EH_FILTER);
3176 return &gs->gimple_eh_filter.types;
3180 /* Return the sequence of statement to execute when GIMPLE_EH_FILTER
3181 statement fails. */
3183 static inline gimple_seq
3184 gimple_eh_filter_failure (gimple gs)
3186 GIMPLE_CHECK (gs, GIMPLE_EH_FILTER);
3187 return gs->gimple_eh_filter.failure;
3191 /* Set TYPES to be the set of types handled by GIMPLE_EH_FILTER GS. */
3193 static inline void
3194 gimple_eh_filter_set_types (gimple gs, tree types)
3196 GIMPLE_CHECK (gs, GIMPLE_EH_FILTER);
3197 gs->gimple_eh_filter.types = types;
3201 /* Set FAILURE to be the sequence of statements to execute on failure
3202 for GIMPLE_EH_FILTER GS. */
3204 static inline void
3205 gimple_eh_filter_set_failure (gimple gs, gimple_seq failure)
3207 GIMPLE_CHECK (gs, GIMPLE_EH_FILTER);
3208 gs->gimple_eh_filter.failure = failure;
3211 /* Get the function decl to be called by the MUST_NOT_THROW region. */
3213 static inline tree
3214 gimple_eh_must_not_throw_fndecl (gimple gs)
3216 GIMPLE_CHECK (gs, GIMPLE_EH_MUST_NOT_THROW);
3217 return gs->gimple_eh_mnt.fndecl;
3220 /* Set the function decl to be called by GS to DECL. */
3222 static inline void
3223 gimple_eh_must_not_throw_set_fndecl (gimple gs, tree decl)
3225 GIMPLE_CHECK (gs, GIMPLE_EH_MUST_NOT_THROW);
3226 gs->gimple_eh_mnt.fndecl = decl;
3229 /* GIMPLE_EH_ELSE accessors. */
3231 static inline gimple_seq
3232 gimple_eh_else_n_body (gimple gs)
3234 GIMPLE_CHECK (gs, GIMPLE_EH_ELSE);
3235 return gs->gimple_eh_else.n_body;
3238 static inline gimple_seq
3239 gimple_eh_else_e_body (gimple gs)
3241 GIMPLE_CHECK (gs, GIMPLE_EH_ELSE);
3242 return gs->gimple_eh_else.e_body;
3245 static inline void
3246 gimple_eh_else_set_n_body (gimple gs, gimple_seq seq)
3248 GIMPLE_CHECK (gs, GIMPLE_EH_ELSE);
3249 gs->gimple_eh_else.n_body = seq;
3252 static inline void
3253 gimple_eh_else_set_e_body (gimple gs, gimple_seq seq)
3255 GIMPLE_CHECK (gs, GIMPLE_EH_ELSE);
3256 gs->gimple_eh_else.e_body = seq;
3259 /* GIMPLE_TRY accessors. */
3261 /* Return the kind of try block represented by GIMPLE_TRY GS. This is
3262 either GIMPLE_TRY_CATCH or GIMPLE_TRY_FINALLY. */
3264 static inline enum gimple_try_flags
3265 gimple_try_kind (const_gimple gs)
3267 GIMPLE_CHECK (gs, GIMPLE_TRY);
3268 return (enum gimple_try_flags) (gs->gsbase.subcode & GIMPLE_TRY_KIND);
3272 /* Set the kind of try block represented by GIMPLE_TRY GS. */
3274 static inline void
3275 gimple_try_set_kind (gimple gs, enum gimple_try_flags kind)
3277 GIMPLE_CHECK (gs, GIMPLE_TRY);
3278 gcc_gimple_checking_assert (kind == GIMPLE_TRY_CATCH
3279 || kind == GIMPLE_TRY_FINALLY);
3280 if (gimple_try_kind (gs) != kind)
3281 gs->gsbase.subcode = (unsigned int) kind;
3285 /* Return the GIMPLE_TRY_CATCH_IS_CLEANUP flag. */
3287 static inline bool
3288 gimple_try_catch_is_cleanup (const_gimple gs)
3290 gcc_gimple_checking_assert (gimple_try_kind (gs) == GIMPLE_TRY_CATCH);
3291 return (gs->gsbase.subcode & GIMPLE_TRY_CATCH_IS_CLEANUP) != 0;
3295 /* Return the sequence of statements used as the body for GIMPLE_TRY GS. */
3297 static inline gimple_seq
3298 gimple_try_eval (gimple gs)
3300 GIMPLE_CHECK (gs, GIMPLE_TRY);
3301 return gs->gimple_try.eval;
3305 /* Return the sequence of statements used as the cleanup body for
3306 GIMPLE_TRY GS. */
3308 static inline gimple_seq
3309 gimple_try_cleanup (gimple gs)
3311 GIMPLE_CHECK (gs, GIMPLE_TRY);
3312 return gs->gimple_try.cleanup;
3316 /* Set the GIMPLE_TRY_CATCH_IS_CLEANUP flag. */
3318 static inline void
3319 gimple_try_set_catch_is_cleanup (gimple g, bool catch_is_cleanup)
3321 gcc_gimple_checking_assert (gimple_try_kind (g) == GIMPLE_TRY_CATCH);
3322 if (catch_is_cleanup)
3323 g->gsbase.subcode |= GIMPLE_TRY_CATCH_IS_CLEANUP;
3324 else
3325 g->gsbase.subcode &= ~GIMPLE_TRY_CATCH_IS_CLEANUP;
3329 /* Set EVAL to be the sequence of statements to use as the body for
3330 GIMPLE_TRY GS. */
3332 static inline void
3333 gimple_try_set_eval (gimple gs, gimple_seq eval)
3335 GIMPLE_CHECK (gs, GIMPLE_TRY);
3336 gs->gimple_try.eval = eval;
3340 /* Set CLEANUP to be the sequence of statements to use as the cleanup
3341 body for GIMPLE_TRY GS. */
3343 static inline void
3344 gimple_try_set_cleanup (gimple gs, gimple_seq cleanup)
3346 GIMPLE_CHECK (gs, GIMPLE_TRY);
3347 gs->gimple_try.cleanup = cleanup;
3351 /* Return the cleanup sequence for cleanup statement GS. */
3353 static inline gimple_seq
3354 gimple_wce_cleanup (gimple gs)
3356 GIMPLE_CHECK (gs, GIMPLE_WITH_CLEANUP_EXPR);
3357 return gs->gimple_wce.cleanup;
3361 /* Set CLEANUP to be the cleanup sequence for GS. */
3363 static inline void
3364 gimple_wce_set_cleanup (gimple gs, gimple_seq cleanup)
3366 GIMPLE_CHECK (gs, GIMPLE_WITH_CLEANUP_EXPR);
3367 gs->gimple_wce.cleanup = cleanup;
3371 /* Return the CLEANUP_EH_ONLY flag for a WCE tuple. */
3373 static inline bool
3374 gimple_wce_cleanup_eh_only (const_gimple gs)
3376 GIMPLE_CHECK (gs, GIMPLE_WITH_CLEANUP_EXPR);
3377 return gs->gsbase.subcode != 0;
3381 /* Set the CLEANUP_EH_ONLY flag for a WCE tuple. */
3383 static inline void
3384 gimple_wce_set_cleanup_eh_only (gimple gs, bool eh_only_p)
3386 GIMPLE_CHECK (gs, GIMPLE_WITH_CLEANUP_EXPR);
3387 gs->gsbase.subcode = (unsigned int) eh_only_p;
3391 /* Return the maximum number of arguments supported by GIMPLE_PHI GS. */
3393 static inline unsigned
3394 gimple_phi_capacity (const_gimple gs)
3396 GIMPLE_CHECK (gs, GIMPLE_PHI);
3397 return gs->gimple_phi.capacity;
3401 /* Return the number of arguments in GIMPLE_PHI GS. This must always
3402 be exactly the number of incoming edges for the basic block holding
3403 GS. */
3405 static inline unsigned
3406 gimple_phi_num_args (const_gimple gs)
3408 GIMPLE_CHECK (gs, GIMPLE_PHI);
3409 return gs->gimple_phi.nargs;
3413 /* Return the SSA name created by GIMPLE_PHI GS. */
3415 static inline tree
3416 gimple_phi_result (const_gimple gs)
3418 GIMPLE_CHECK (gs, GIMPLE_PHI);
3419 return gs->gimple_phi.result;
3422 /* Return a pointer to the SSA name created by GIMPLE_PHI GS. */
3424 static inline tree *
3425 gimple_phi_result_ptr (gimple gs)
3427 GIMPLE_CHECK (gs, GIMPLE_PHI);
3428 return &gs->gimple_phi.result;
3431 /* Set RESULT to be the SSA name created by GIMPLE_PHI GS. */
3433 static inline void
3434 gimple_phi_set_result (gimple gs, tree result)
3436 GIMPLE_CHECK (gs, GIMPLE_PHI);
3437 gs->gimple_phi.result = result;
3441 /* Return the PHI argument corresponding to incoming edge INDEX for
3442 GIMPLE_PHI GS. */
3444 static inline struct phi_arg_d *
3445 gimple_phi_arg (gimple gs, unsigned index)
3447 GIMPLE_CHECK (gs, GIMPLE_PHI);
3448 gcc_gimple_checking_assert (index <= gs->gimple_phi.capacity);
3449 return &(gs->gimple_phi.args[index]);
3452 /* Set PHIARG to be the argument corresponding to incoming edge INDEX
3453 for GIMPLE_PHI GS. */
3455 static inline void
3456 gimple_phi_set_arg (gimple gs, unsigned index, struct phi_arg_d * phiarg)
3458 GIMPLE_CHECK (gs, GIMPLE_PHI);
3459 gcc_gimple_checking_assert (index <= gs->gimple_phi.nargs);
3460 gs->gimple_phi.args[index] = *phiarg;
3463 /* Return the region number for GIMPLE_RESX GS. */
3465 static inline int
3466 gimple_resx_region (const_gimple gs)
3468 GIMPLE_CHECK (gs, GIMPLE_RESX);
3469 return gs->gimple_eh_ctrl.region;
3472 /* Set REGION to be the region number for GIMPLE_RESX GS. */
3474 static inline void
3475 gimple_resx_set_region (gimple gs, int region)
3477 GIMPLE_CHECK (gs, GIMPLE_RESX);
3478 gs->gimple_eh_ctrl.region = region;
3481 /* Return the region number for GIMPLE_EH_DISPATCH GS. */
3483 static inline int
3484 gimple_eh_dispatch_region (const_gimple gs)
3486 GIMPLE_CHECK (gs, GIMPLE_EH_DISPATCH);
3487 return gs->gimple_eh_ctrl.region;
3490 /* Set REGION to be the region number for GIMPLE_EH_DISPATCH GS. */
3492 static inline void
3493 gimple_eh_dispatch_set_region (gimple gs, int region)
3495 GIMPLE_CHECK (gs, GIMPLE_EH_DISPATCH);
3496 gs->gimple_eh_ctrl.region = region;
3499 /* Return the number of labels associated with the switch statement GS. */
3501 static inline unsigned
3502 gimple_switch_num_labels (const_gimple gs)
3504 unsigned num_ops;
3505 GIMPLE_CHECK (gs, GIMPLE_SWITCH);
3506 num_ops = gimple_num_ops (gs);
3507 gcc_gimple_checking_assert (num_ops > 1);
3508 return num_ops - 1;
3512 /* Set NLABELS to be the number of labels for the switch statement GS. */
3514 static inline void
3515 gimple_switch_set_num_labels (gimple g, unsigned nlabels)
3517 GIMPLE_CHECK (g, GIMPLE_SWITCH);
3518 gimple_set_num_ops (g, nlabels + 1);
3522 /* Return the index variable used by the switch statement GS. */
3524 static inline tree
3525 gimple_switch_index (const_gimple gs)
3527 GIMPLE_CHECK (gs, GIMPLE_SWITCH);
3528 return gimple_op (gs, 0);
3532 /* Return a pointer to the index variable for the switch statement GS. */
3534 static inline tree *
3535 gimple_switch_index_ptr (const_gimple gs)
3537 GIMPLE_CHECK (gs, GIMPLE_SWITCH);
3538 return gimple_op_ptr (gs, 0);
3542 /* Set INDEX to be the index variable for switch statement GS. */
3544 static inline void
3545 gimple_switch_set_index (gimple gs, tree index)
3547 GIMPLE_CHECK (gs, GIMPLE_SWITCH);
3548 gcc_gimple_checking_assert (SSA_VAR_P (index) || CONSTANT_CLASS_P (index));
3549 gimple_set_op (gs, 0, index);
3553 /* Return the label numbered INDEX. The default label is 0, followed by any
3554 labels in a switch statement. */
3556 static inline tree
3557 gimple_switch_label (const_gimple gs, unsigned index)
3559 GIMPLE_CHECK (gs, GIMPLE_SWITCH);
3560 gcc_gimple_checking_assert (gimple_num_ops (gs) > index + 1);
3561 return gimple_op (gs, index + 1);
3564 /* Set the label number INDEX to LABEL. 0 is always the default label. */
3566 static inline void
3567 gimple_switch_set_label (gimple gs, unsigned index, tree label)
3569 GIMPLE_CHECK (gs, GIMPLE_SWITCH);
3570 gcc_gimple_checking_assert (gimple_num_ops (gs) > index + 1
3571 && (label == NULL_TREE
3572 || TREE_CODE (label) == CASE_LABEL_EXPR));
3573 gimple_set_op (gs, index + 1, label);
3576 /* Return the default label for a switch statement. */
3578 static inline tree
3579 gimple_switch_default_label (const_gimple gs)
3581 return gimple_switch_label (gs, 0);
3584 /* Set the default label for a switch statement. */
3586 static inline void
3587 gimple_switch_set_default_label (gimple gs, tree label)
3589 gimple_switch_set_label (gs, 0, label);
3592 /* Return true if GS is a GIMPLE_DEBUG statement. */
3594 static inline bool
3595 is_gimple_debug (const_gimple gs)
3597 return gimple_code (gs) == GIMPLE_DEBUG;
3600 /* Return true if S is a GIMPLE_DEBUG BIND statement. */
3602 static inline bool
3603 gimple_debug_bind_p (const_gimple s)
3605 if (is_gimple_debug (s))
3606 return s->gsbase.subcode == GIMPLE_DEBUG_BIND;
3608 return false;
3611 /* Return the variable bound in a GIMPLE_DEBUG bind statement. */
3613 static inline tree
3614 gimple_debug_bind_get_var (gimple dbg)
3616 GIMPLE_CHECK (dbg, GIMPLE_DEBUG);
3617 gcc_gimple_checking_assert (gimple_debug_bind_p (dbg));
3618 return gimple_op (dbg, 0);
3621 /* Return the value bound to the variable in a GIMPLE_DEBUG bind
3622 statement. */
3624 static inline tree
3625 gimple_debug_bind_get_value (gimple dbg)
3627 GIMPLE_CHECK (dbg, GIMPLE_DEBUG);
3628 gcc_gimple_checking_assert (gimple_debug_bind_p (dbg));
3629 return gimple_op (dbg, 1);
3632 /* Return a pointer to the value bound to the variable in a
3633 GIMPLE_DEBUG bind statement. */
3635 static inline tree *
3636 gimple_debug_bind_get_value_ptr (gimple dbg)
3638 GIMPLE_CHECK (dbg, GIMPLE_DEBUG);
3639 gcc_gimple_checking_assert (gimple_debug_bind_p (dbg));
3640 return gimple_op_ptr (dbg, 1);
3643 /* Set the variable bound in a GIMPLE_DEBUG bind statement. */
3645 static inline void
3646 gimple_debug_bind_set_var (gimple dbg, tree var)
3648 GIMPLE_CHECK (dbg, GIMPLE_DEBUG);
3649 gcc_gimple_checking_assert (gimple_debug_bind_p (dbg));
3650 gimple_set_op (dbg, 0, var);
3653 /* Set the value bound to the variable in a GIMPLE_DEBUG bind
3654 statement. */
3656 static inline void
3657 gimple_debug_bind_set_value (gimple dbg, tree value)
3659 GIMPLE_CHECK (dbg, GIMPLE_DEBUG);
3660 gcc_gimple_checking_assert (gimple_debug_bind_p (dbg));
3661 gimple_set_op (dbg, 1, value);
3664 /* The second operand of a GIMPLE_DEBUG_BIND, when the value was
3665 optimized away. */
3666 #define GIMPLE_DEBUG_BIND_NOVALUE NULL_TREE /* error_mark_node */
3668 /* Remove the value bound to the variable in a GIMPLE_DEBUG bind
3669 statement. */
3671 static inline void
3672 gimple_debug_bind_reset_value (gimple dbg)
3674 GIMPLE_CHECK (dbg, GIMPLE_DEBUG);
3675 gcc_gimple_checking_assert (gimple_debug_bind_p (dbg));
3676 gimple_set_op (dbg, 1, GIMPLE_DEBUG_BIND_NOVALUE);
3679 /* Return true if the GIMPLE_DEBUG bind statement is bound to a
3680 value. */
3682 static inline bool
3683 gimple_debug_bind_has_value_p (gimple dbg)
3685 GIMPLE_CHECK (dbg, GIMPLE_DEBUG);
3686 gcc_gimple_checking_assert (gimple_debug_bind_p (dbg));
3687 return gimple_op (dbg, 1) != GIMPLE_DEBUG_BIND_NOVALUE;
3690 #undef GIMPLE_DEBUG_BIND_NOVALUE
3692 /* Return true if S is a GIMPLE_DEBUG SOURCE BIND statement. */
3694 static inline bool
3695 gimple_debug_source_bind_p (const_gimple s)
3697 if (is_gimple_debug (s))
3698 return s->gsbase.subcode == GIMPLE_DEBUG_SOURCE_BIND;
3700 return false;
3703 /* Return the variable bound in a GIMPLE_DEBUG source bind statement. */
3705 static inline tree
3706 gimple_debug_source_bind_get_var (gimple dbg)
3708 GIMPLE_CHECK (dbg, GIMPLE_DEBUG);
3709 gcc_gimple_checking_assert (gimple_debug_source_bind_p (dbg));
3710 return gimple_op (dbg, 0);
3713 /* Return the value bound to the variable in a GIMPLE_DEBUG source bind
3714 statement. */
3716 static inline tree
3717 gimple_debug_source_bind_get_value (gimple dbg)
3719 GIMPLE_CHECK (dbg, GIMPLE_DEBUG);
3720 gcc_gimple_checking_assert (gimple_debug_source_bind_p (dbg));
3721 return gimple_op (dbg, 1);
3724 /* Return a pointer to the value bound to the variable in a
3725 GIMPLE_DEBUG source bind statement. */
3727 static inline tree *
3728 gimple_debug_source_bind_get_value_ptr (gimple dbg)
3730 GIMPLE_CHECK (dbg, GIMPLE_DEBUG);
3731 gcc_gimple_checking_assert (gimple_debug_source_bind_p (dbg));
3732 return gimple_op_ptr (dbg, 1);
3735 /* Set the variable bound in a GIMPLE_DEBUG source bind statement. */
3737 static inline void
3738 gimple_debug_source_bind_set_var (gimple dbg, tree var)
3740 GIMPLE_CHECK (dbg, GIMPLE_DEBUG);
3741 gcc_gimple_checking_assert (gimple_debug_source_bind_p (dbg));
3742 gimple_set_op (dbg, 0, var);
3745 /* Set the value bound to the variable in a GIMPLE_DEBUG source bind
3746 statement. */
3748 static inline void
3749 gimple_debug_source_bind_set_value (gimple dbg, tree value)
3751 GIMPLE_CHECK (dbg, GIMPLE_DEBUG);
3752 gcc_gimple_checking_assert (gimple_debug_source_bind_p (dbg));
3753 gimple_set_op (dbg, 1, value);
3756 /* Return the body for the OMP statement GS. */
3758 static inline gimple_seq
3759 gimple_omp_body (gimple gs)
3761 return gs->omp.body;
3764 /* Set BODY to be the body for the OMP statement GS. */
3766 static inline void
3767 gimple_omp_set_body (gimple gs, gimple_seq body)
3769 gs->omp.body = body;
3773 /* Return the name associated with OMP_CRITICAL statement GS. */
3775 static inline tree
3776 gimple_omp_critical_name (const_gimple gs)
3778 GIMPLE_CHECK (gs, GIMPLE_OMP_CRITICAL);
3779 return gs->gimple_omp_critical.name;
3783 /* Return a pointer to the name associated with OMP critical statement GS. */
3785 static inline tree *
3786 gimple_omp_critical_name_ptr (gimple gs)
3788 GIMPLE_CHECK (gs, GIMPLE_OMP_CRITICAL);
3789 return &gs->gimple_omp_critical.name;
3793 /* Set NAME to be the name associated with OMP critical statement GS. */
3795 static inline void
3796 gimple_omp_critical_set_name (gimple gs, tree name)
3798 GIMPLE_CHECK (gs, GIMPLE_OMP_CRITICAL);
3799 gs->gimple_omp_critical.name = name;
3803 /* Return the clauses associated with OMP_FOR GS. */
3805 static inline tree
3806 gimple_omp_for_clauses (const_gimple gs)
3808 GIMPLE_CHECK (gs, GIMPLE_OMP_FOR);
3809 return gs->gimple_omp_for.clauses;
3813 /* Return a pointer to the OMP_FOR GS. */
3815 static inline tree *
3816 gimple_omp_for_clauses_ptr (gimple gs)
3818 GIMPLE_CHECK (gs, GIMPLE_OMP_FOR);
3819 return &gs->gimple_omp_for.clauses;
3823 /* Set CLAUSES to be the list of clauses associated with OMP_FOR GS. */
3825 static inline void
3826 gimple_omp_for_set_clauses (gimple gs, tree clauses)
3828 GIMPLE_CHECK (gs, GIMPLE_OMP_FOR);
3829 gs->gimple_omp_for.clauses = clauses;
3833 /* Get the collapse count of OMP_FOR GS. */
3835 static inline size_t
3836 gimple_omp_for_collapse (gimple gs)
3838 GIMPLE_CHECK (gs, GIMPLE_OMP_FOR);
3839 return gs->gimple_omp_for.collapse;
3843 /* Return the index variable for OMP_FOR GS. */
3845 static inline tree
3846 gimple_omp_for_index (const_gimple gs, size_t i)
3848 GIMPLE_CHECK (gs, GIMPLE_OMP_FOR);
3849 gcc_gimple_checking_assert (i < gs->gimple_omp_for.collapse);
3850 return gs->gimple_omp_for.iter[i].index;
3854 /* Return a pointer to the index variable for OMP_FOR GS. */
3856 static inline tree *
3857 gimple_omp_for_index_ptr (gimple gs, size_t i)
3859 GIMPLE_CHECK (gs, GIMPLE_OMP_FOR);
3860 gcc_gimple_checking_assert (i < gs->gimple_omp_for.collapse);
3861 return &gs->gimple_omp_for.iter[i].index;
3865 /* Set INDEX to be the index variable for OMP_FOR GS. */
3867 static inline void
3868 gimple_omp_for_set_index (gimple gs, size_t i, tree index)
3870 GIMPLE_CHECK (gs, GIMPLE_OMP_FOR);
3871 gcc_gimple_checking_assert (i < gs->gimple_omp_for.collapse);
3872 gs->gimple_omp_for.iter[i].index = index;
3876 /* Return the initial value for OMP_FOR GS. */
3878 static inline tree
3879 gimple_omp_for_initial (const_gimple gs, size_t i)
3881 GIMPLE_CHECK (gs, GIMPLE_OMP_FOR);
3882 gcc_gimple_checking_assert (i < gs->gimple_omp_for.collapse);
3883 return gs->gimple_omp_for.iter[i].initial;
3887 /* Return a pointer to the initial value for OMP_FOR GS. */
3889 static inline tree *
3890 gimple_omp_for_initial_ptr (gimple gs, size_t i)
3892 GIMPLE_CHECK (gs, GIMPLE_OMP_FOR);
3893 gcc_gimple_checking_assert (i < gs->gimple_omp_for.collapse);
3894 return &gs->gimple_omp_for.iter[i].initial;
3898 /* Set INITIAL to be the initial value for OMP_FOR GS. */
3900 static inline void
3901 gimple_omp_for_set_initial (gimple gs, size_t i, tree initial)
3903 GIMPLE_CHECK (gs, GIMPLE_OMP_FOR);
3904 gcc_gimple_checking_assert (i < gs->gimple_omp_for.collapse);
3905 gs->gimple_omp_for.iter[i].initial = initial;
3909 /* Return the final value for OMP_FOR GS. */
3911 static inline tree
3912 gimple_omp_for_final (const_gimple gs, size_t i)
3914 GIMPLE_CHECK (gs, GIMPLE_OMP_FOR);
3915 gcc_gimple_checking_assert (i < gs->gimple_omp_for.collapse);
3916 return gs->gimple_omp_for.iter[i].final;
3920 /* Return a pointer to the final value for OMP_FOR GS. */
3922 static inline tree *
3923 gimple_omp_for_final_ptr (gimple gs, size_t i)
3925 GIMPLE_CHECK (gs, GIMPLE_OMP_FOR);
3926 gcc_gimple_checking_assert (i < gs->gimple_omp_for.collapse);
3927 return &gs->gimple_omp_for.iter[i].final;
3931 /* Set FINAL to be the final value for OMP_FOR GS. */
3933 static inline void
3934 gimple_omp_for_set_final (gimple gs, size_t i, tree final)
3936 GIMPLE_CHECK (gs, GIMPLE_OMP_FOR);
3937 gcc_gimple_checking_assert (i < gs->gimple_omp_for.collapse);
3938 gs->gimple_omp_for.iter[i].final = final;
3942 /* Return the increment value for OMP_FOR GS. */
3944 static inline tree
3945 gimple_omp_for_incr (const_gimple gs, size_t i)
3947 GIMPLE_CHECK (gs, GIMPLE_OMP_FOR);
3948 gcc_gimple_checking_assert (i < gs->gimple_omp_for.collapse);
3949 return gs->gimple_omp_for.iter[i].incr;
3953 /* Return a pointer to the increment value for OMP_FOR GS. */
3955 static inline tree *
3956 gimple_omp_for_incr_ptr (gimple gs, size_t i)
3958 GIMPLE_CHECK (gs, GIMPLE_OMP_FOR);
3959 gcc_gimple_checking_assert (i < gs->gimple_omp_for.collapse);
3960 return &gs->gimple_omp_for.iter[i].incr;
3964 /* Set INCR to be the increment value for OMP_FOR GS. */
3966 static inline void
3967 gimple_omp_for_set_incr (gimple gs, size_t i, tree incr)
3969 GIMPLE_CHECK (gs, GIMPLE_OMP_FOR);
3970 gcc_gimple_checking_assert (i < gs->gimple_omp_for.collapse);
3971 gs->gimple_omp_for.iter[i].incr = incr;
3975 /* Return the sequence of statements to execute before the OMP_FOR
3976 statement GS starts. */
3978 static inline gimple_seq
3979 gimple_omp_for_pre_body (gimple gs)
3981 GIMPLE_CHECK (gs, GIMPLE_OMP_FOR);
3982 return gs->gimple_omp_for.pre_body;
3986 /* Set PRE_BODY to be the sequence of statements to execute before the
3987 OMP_FOR statement GS starts. */
3989 static inline void
3990 gimple_omp_for_set_pre_body (gimple gs, gimple_seq pre_body)
3992 GIMPLE_CHECK (gs, GIMPLE_OMP_FOR);
3993 gs->gimple_omp_for.pre_body = pre_body;
3997 /* Return the clauses associated with OMP_PARALLEL GS. */
3999 static inline tree
4000 gimple_omp_parallel_clauses (const_gimple gs)
4002 GIMPLE_CHECK (gs, GIMPLE_OMP_PARALLEL);
4003 return gs->gimple_omp_parallel.clauses;
4007 /* Return a pointer to the clauses associated with OMP_PARALLEL GS. */
4009 static inline tree *
4010 gimple_omp_parallel_clauses_ptr (gimple gs)
4012 GIMPLE_CHECK (gs, GIMPLE_OMP_PARALLEL);
4013 return &gs->gimple_omp_parallel.clauses;
4017 /* Set CLAUSES to be the list of clauses associated with OMP_PARALLEL
4018 GS. */
4020 static inline void
4021 gimple_omp_parallel_set_clauses (gimple gs, tree clauses)
4023 GIMPLE_CHECK (gs, GIMPLE_OMP_PARALLEL);
4024 gs->gimple_omp_parallel.clauses = clauses;
4028 /* Return the child function used to hold the body of OMP_PARALLEL GS. */
4030 static inline tree
4031 gimple_omp_parallel_child_fn (const_gimple gs)
4033 GIMPLE_CHECK (gs, GIMPLE_OMP_PARALLEL);
4034 return gs->gimple_omp_parallel.child_fn;
4037 /* Return a pointer to the child function used to hold the body of
4038 OMP_PARALLEL GS. */
4040 static inline tree *
4041 gimple_omp_parallel_child_fn_ptr (gimple gs)
4043 GIMPLE_CHECK (gs, GIMPLE_OMP_PARALLEL);
4044 return &gs->gimple_omp_parallel.child_fn;
4048 /* Set CHILD_FN to be the child function for OMP_PARALLEL GS. */
4050 static inline void
4051 gimple_omp_parallel_set_child_fn (gimple gs, tree child_fn)
4053 GIMPLE_CHECK (gs, GIMPLE_OMP_PARALLEL);
4054 gs->gimple_omp_parallel.child_fn = child_fn;
4058 /* Return the artificial argument used to send variables and values
4059 from the parent to the children threads in OMP_PARALLEL GS. */
4061 static inline tree
4062 gimple_omp_parallel_data_arg (const_gimple gs)
4064 GIMPLE_CHECK (gs, GIMPLE_OMP_PARALLEL);
4065 return gs->gimple_omp_parallel.data_arg;
4069 /* Return a pointer to the data argument for OMP_PARALLEL GS. */
4071 static inline tree *
4072 gimple_omp_parallel_data_arg_ptr (gimple gs)
4074 GIMPLE_CHECK (gs, GIMPLE_OMP_PARALLEL);
4075 return &gs->gimple_omp_parallel.data_arg;
4079 /* Set DATA_ARG to be the data argument for OMP_PARALLEL GS. */
4081 static inline void
4082 gimple_omp_parallel_set_data_arg (gimple gs, tree data_arg)
4084 GIMPLE_CHECK (gs, GIMPLE_OMP_PARALLEL);
4085 gs->gimple_omp_parallel.data_arg = data_arg;
4089 /* Return the clauses associated with OMP_TASK GS. */
4091 static inline tree
4092 gimple_omp_task_clauses (const_gimple gs)
4094 GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
4095 return gs->gimple_omp_parallel.clauses;
4099 /* Return a pointer to the clauses associated with OMP_TASK GS. */
4101 static inline tree *
4102 gimple_omp_task_clauses_ptr (gimple gs)
4104 GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
4105 return &gs->gimple_omp_parallel.clauses;
4109 /* Set CLAUSES to be the list of clauses associated with OMP_TASK
4110 GS. */
4112 static inline void
4113 gimple_omp_task_set_clauses (gimple gs, tree clauses)
4115 GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
4116 gs->gimple_omp_parallel.clauses = clauses;
4120 /* Return the child function used to hold the body of OMP_TASK GS. */
4122 static inline tree
4123 gimple_omp_task_child_fn (const_gimple gs)
4125 GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
4126 return gs->gimple_omp_parallel.child_fn;
4129 /* Return a pointer to the child function used to hold the body of
4130 OMP_TASK GS. */
4132 static inline tree *
4133 gimple_omp_task_child_fn_ptr (gimple gs)
4135 GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
4136 return &gs->gimple_omp_parallel.child_fn;
4140 /* Set CHILD_FN to be the child function for OMP_TASK GS. */
4142 static inline void
4143 gimple_omp_task_set_child_fn (gimple gs, tree child_fn)
4145 GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
4146 gs->gimple_omp_parallel.child_fn = child_fn;
4150 /* Return the artificial argument used to send variables and values
4151 from the parent to the children threads in OMP_TASK GS. */
4153 static inline tree
4154 gimple_omp_task_data_arg (const_gimple gs)
4156 GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
4157 return gs->gimple_omp_parallel.data_arg;
4161 /* Return a pointer to the data argument for OMP_TASK GS. */
4163 static inline tree *
4164 gimple_omp_task_data_arg_ptr (gimple gs)
4166 GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
4167 return &gs->gimple_omp_parallel.data_arg;
4171 /* Set DATA_ARG to be the data argument for OMP_TASK GS. */
4173 static inline void
4174 gimple_omp_task_set_data_arg (gimple gs, tree data_arg)
4176 GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
4177 gs->gimple_omp_parallel.data_arg = data_arg;
4181 /* Return the clauses associated with OMP_TASK GS. */
4183 static inline tree
4184 gimple_omp_taskreg_clauses (const_gimple gs)
4186 if (gimple_code (gs) != GIMPLE_OMP_PARALLEL)
4187 GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
4188 return gs->gimple_omp_parallel.clauses;
4192 /* Return a pointer to the clauses associated with OMP_TASK GS. */
4194 static inline tree *
4195 gimple_omp_taskreg_clauses_ptr (gimple gs)
4197 if (gimple_code (gs) != GIMPLE_OMP_PARALLEL)
4198 GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
4199 return &gs->gimple_omp_parallel.clauses;
4203 /* Set CLAUSES to be the list of clauses associated with OMP_TASK
4204 GS. */
4206 static inline void
4207 gimple_omp_taskreg_set_clauses (gimple gs, tree clauses)
4209 if (gimple_code (gs) != GIMPLE_OMP_PARALLEL)
4210 GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
4211 gs->gimple_omp_parallel.clauses = clauses;
4215 /* Return the child function used to hold the body of OMP_TASK GS. */
4217 static inline tree
4218 gimple_omp_taskreg_child_fn (const_gimple gs)
4220 if (gimple_code (gs) != GIMPLE_OMP_PARALLEL)
4221 GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
4222 return gs->gimple_omp_parallel.child_fn;
4225 /* Return a pointer to the child function used to hold the body of
4226 OMP_TASK GS. */
4228 static inline tree *
4229 gimple_omp_taskreg_child_fn_ptr (gimple gs)
4231 if (gimple_code (gs) != GIMPLE_OMP_PARALLEL)
4232 GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
4233 return &gs->gimple_omp_parallel.child_fn;
4237 /* Set CHILD_FN to be the child function for OMP_TASK GS. */
4239 static inline void
4240 gimple_omp_taskreg_set_child_fn (gimple gs, tree child_fn)
4242 if (gimple_code (gs) != GIMPLE_OMP_PARALLEL)
4243 GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
4244 gs->gimple_omp_parallel.child_fn = child_fn;
4248 /* Return the artificial argument used to send variables and values
4249 from the parent to the children threads in OMP_TASK GS. */
4251 static inline tree
4252 gimple_omp_taskreg_data_arg (const_gimple gs)
4254 if (gimple_code (gs) != GIMPLE_OMP_PARALLEL)
4255 GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
4256 return gs->gimple_omp_parallel.data_arg;
4260 /* Return a pointer to the data argument for OMP_TASK GS. */
4262 static inline tree *
4263 gimple_omp_taskreg_data_arg_ptr (gimple gs)
4265 if (gimple_code (gs) != GIMPLE_OMP_PARALLEL)
4266 GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
4267 return &gs->gimple_omp_parallel.data_arg;
4271 /* Set DATA_ARG to be the data argument for OMP_TASK GS. */
4273 static inline void
4274 gimple_omp_taskreg_set_data_arg (gimple gs, tree data_arg)
4276 if (gimple_code (gs) != GIMPLE_OMP_PARALLEL)
4277 GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
4278 gs->gimple_omp_parallel.data_arg = data_arg;
4282 /* Return the copy function used to hold the body of OMP_TASK GS. */
4284 static inline tree
4285 gimple_omp_task_copy_fn (const_gimple gs)
4287 GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
4288 return gs->gimple_omp_task.copy_fn;
4291 /* Return a pointer to the copy function used to hold the body of
4292 OMP_TASK GS. */
4294 static inline tree *
4295 gimple_omp_task_copy_fn_ptr (gimple gs)
4297 GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
4298 return &gs->gimple_omp_task.copy_fn;
4302 /* Set CHILD_FN to be the copy function for OMP_TASK GS. */
4304 static inline void
4305 gimple_omp_task_set_copy_fn (gimple gs, tree copy_fn)
4307 GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
4308 gs->gimple_omp_task.copy_fn = copy_fn;
4312 /* Return size of the data block in bytes in OMP_TASK GS. */
4314 static inline tree
4315 gimple_omp_task_arg_size (const_gimple gs)
4317 GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
4318 return gs->gimple_omp_task.arg_size;
4322 /* Return a pointer to the data block size for OMP_TASK GS. */
4324 static inline tree *
4325 gimple_omp_task_arg_size_ptr (gimple gs)
4327 GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
4328 return &gs->gimple_omp_task.arg_size;
4332 /* Set ARG_SIZE to be the data block size for OMP_TASK GS. */
4334 static inline void
4335 gimple_omp_task_set_arg_size (gimple gs, tree arg_size)
4337 GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
4338 gs->gimple_omp_task.arg_size = arg_size;
4342 /* Return align of the data block in bytes in OMP_TASK GS. */
4344 static inline tree
4345 gimple_omp_task_arg_align (const_gimple gs)
4347 GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
4348 return gs->gimple_omp_task.arg_align;
4352 /* Return a pointer to the data block align for OMP_TASK GS. */
4354 static inline tree *
4355 gimple_omp_task_arg_align_ptr (gimple gs)
4357 GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
4358 return &gs->gimple_omp_task.arg_align;
4362 /* Set ARG_SIZE to be the data block align for OMP_TASK GS. */
4364 static inline void
4365 gimple_omp_task_set_arg_align (gimple gs, tree arg_align)
4367 GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
4368 gs->gimple_omp_task.arg_align = arg_align;
4372 /* Return the clauses associated with OMP_SINGLE GS. */
4374 static inline tree
4375 gimple_omp_single_clauses (const_gimple gs)
4377 GIMPLE_CHECK (gs, GIMPLE_OMP_SINGLE);
4378 return gs->gimple_omp_single.clauses;
4382 /* Return a pointer to the clauses associated with OMP_SINGLE GS. */
4384 static inline tree *
4385 gimple_omp_single_clauses_ptr (gimple gs)
4387 GIMPLE_CHECK (gs, GIMPLE_OMP_SINGLE);
4388 return &gs->gimple_omp_single.clauses;
4392 /* Set CLAUSES to be the clauses associated with OMP_SINGLE GS. */
4394 static inline void
4395 gimple_omp_single_set_clauses (gimple gs, tree clauses)
4397 GIMPLE_CHECK (gs, GIMPLE_OMP_SINGLE);
4398 gs->gimple_omp_single.clauses = clauses;
4402 /* Return the clauses associated with OMP_SECTIONS GS. */
4404 static inline tree
4405 gimple_omp_sections_clauses (const_gimple gs)
4407 GIMPLE_CHECK (gs, GIMPLE_OMP_SECTIONS);
4408 return gs->gimple_omp_sections.clauses;
4412 /* Return a pointer to the clauses associated with OMP_SECTIONS GS. */
4414 static inline tree *
4415 gimple_omp_sections_clauses_ptr (gimple gs)
4417 GIMPLE_CHECK (gs, GIMPLE_OMP_SECTIONS);
4418 return &gs->gimple_omp_sections.clauses;
4422 /* Set CLAUSES to be the set of clauses associated with OMP_SECTIONS
4423 GS. */
4425 static inline void
4426 gimple_omp_sections_set_clauses (gimple gs, tree clauses)
4428 GIMPLE_CHECK (gs, GIMPLE_OMP_SECTIONS);
4429 gs->gimple_omp_sections.clauses = clauses;
4433 /* Return the control variable associated with the GIMPLE_OMP_SECTIONS
4434 in GS. */
4436 static inline tree
4437 gimple_omp_sections_control (const_gimple gs)
4439 GIMPLE_CHECK (gs, GIMPLE_OMP_SECTIONS);
4440 return gs->gimple_omp_sections.control;
4444 /* Return a pointer to the clauses associated with the GIMPLE_OMP_SECTIONS
4445 GS. */
4447 static inline tree *
4448 gimple_omp_sections_control_ptr (gimple gs)
4450 GIMPLE_CHECK (gs, GIMPLE_OMP_SECTIONS);
4451 return &gs->gimple_omp_sections.control;
4455 /* Set CONTROL to be the set of clauses associated with the
4456 GIMPLE_OMP_SECTIONS in GS. */
4458 static inline void
4459 gimple_omp_sections_set_control (gimple gs, tree control)
4461 GIMPLE_CHECK (gs, GIMPLE_OMP_SECTIONS);
4462 gs->gimple_omp_sections.control = control;
4466 /* Set COND to be the condition code for OMP_FOR GS. */
4468 static inline void
4469 gimple_omp_for_set_cond (gimple gs, size_t i, enum tree_code cond)
4471 GIMPLE_CHECK (gs, GIMPLE_OMP_FOR);
4472 gcc_gimple_checking_assert (TREE_CODE_CLASS (cond) == tcc_comparison
4473 && i < gs->gimple_omp_for.collapse);
4474 gs->gimple_omp_for.iter[i].cond = cond;
4478 /* Return the condition code associated with OMP_FOR GS. */
4480 static inline enum tree_code
4481 gimple_omp_for_cond (const_gimple gs, size_t i)
4483 GIMPLE_CHECK (gs, GIMPLE_OMP_FOR);
4484 gcc_gimple_checking_assert (i < gs->gimple_omp_for.collapse);
4485 return gs->gimple_omp_for.iter[i].cond;
4489 /* Set the value being stored in an atomic store. */
4491 static inline void
4492 gimple_omp_atomic_store_set_val (gimple g, tree val)
4494 GIMPLE_CHECK (g, GIMPLE_OMP_ATOMIC_STORE);
4495 g->gimple_omp_atomic_store.val = val;
4499 /* Return the value being stored in an atomic store. */
4501 static inline tree
4502 gimple_omp_atomic_store_val (const_gimple g)
4504 GIMPLE_CHECK (g, GIMPLE_OMP_ATOMIC_STORE);
4505 return g->gimple_omp_atomic_store.val;
4509 /* Return a pointer to the value being stored in an atomic store. */
4511 static inline tree *
4512 gimple_omp_atomic_store_val_ptr (gimple g)
4514 GIMPLE_CHECK (g, GIMPLE_OMP_ATOMIC_STORE);
4515 return &g->gimple_omp_atomic_store.val;
4519 /* Set the LHS of an atomic load. */
4521 static inline void
4522 gimple_omp_atomic_load_set_lhs (gimple g, tree lhs)
4524 GIMPLE_CHECK (g, GIMPLE_OMP_ATOMIC_LOAD);
4525 g->gimple_omp_atomic_load.lhs = lhs;
4529 /* Get the LHS of an atomic load. */
4531 static inline tree
4532 gimple_omp_atomic_load_lhs (const_gimple g)
4534 GIMPLE_CHECK (g, GIMPLE_OMP_ATOMIC_LOAD);
4535 return g->gimple_omp_atomic_load.lhs;
4539 /* Return a pointer to the LHS of an atomic load. */
4541 static inline tree *
4542 gimple_omp_atomic_load_lhs_ptr (gimple g)
4544 GIMPLE_CHECK (g, GIMPLE_OMP_ATOMIC_LOAD);
4545 return &g->gimple_omp_atomic_load.lhs;
4549 /* Set the RHS of an atomic load. */
4551 static inline void
4552 gimple_omp_atomic_load_set_rhs (gimple g, tree rhs)
4554 GIMPLE_CHECK (g, GIMPLE_OMP_ATOMIC_LOAD);
4555 g->gimple_omp_atomic_load.rhs = rhs;
4559 /* Get the RHS of an atomic load. */
4561 static inline tree
4562 gimple_omp_atomic_load_rhs (const_gimple g)
4564 GIMPLE_CHECK (g, GIMPLE_OMP_ATOMIC_LOAD);
4565 return g->gimple_omp_atomic_load.rhs;
4569 /* Return a pointer to the RHS of an atomic load. */
4571 static inline tree *
4572 gimple_omp_atomic_load_rhs_ptr (gimple g)
4574 GIMPLE_CHECK (g, GIMPLE_OMP_ATOMIC_LOAD);
4575 return &g->gimple_omp_atomic_load.rhs;
4579 /* Get the definition of the control variable in a GIMPLE_OMP_CONTINUE. */
4581 static inline tree
4582 gimple_omp_continue_control_def (const_gimple g)
4584 GIMPLE_CHECK (g, GIMPLE_OMP_CONTINUE);
4585 return g->gimple_omp_continue.control_def;
4588 /* The same as above, but return the address. */
4590 static inline tree *
4591 gimple_omp_continue_control_def_ptr (gimple g)
4593 GIMPLE_CHECK (g, GIMPLE_OMP_CONTINUE);
4594 return &g->gimple_omp_continue.control_def;
4597 /* Set the definition of the control variable in a GIMPLE_OMP_CONTINUE. */
4599 static inline void
4600 gimple_omp_continue_set_control_def (gimple g, tree def)
4602 GIMPLE_CHECK (g, GIMPLE_OMP_CONTINUE);
4603 g->gimple_omp_continue.control_def = def;
4607 /* Get the use of the control variable in a GIMPLE_OMP_CONTINUE. */
4609 static inline tree
4610 gimple_omp_continue_control_use (const_gimple g)
4612 GIMPLE_CHECK (g, GIMPLE_OMP_CONTINUE);
4613 return g->gimple_omp_continue.control_use;
4617 /* The same as above, but return the address. */
4619 static inline tree *
4620 gimple_omp_continue_control_use_ptr (gimple g)
4622 GIMPLE_CHECK (g, GIMPLE_OMP_CONTINUE);
4623 return &g->gimple_omp_continue.control_use;
4627 /* Set the use of the control variable in a GIMPLE_OMP_CONTINUE. */
4629 static inline void
4630 gimple_omp_continue_set_control_use (gimple g, tree use)
4632 GIMPLE_CHECK (g, GIMPLE_OMP_CONTINUE);
4633 g->gimple_omp_continue.control_use = use;
4636 /* Return the body for the GIMPLE_TRANSACTION statement GS. */
4638 static inline gimple_seq
4639 gimple_transaction_body (gimple gs)
4641 GIMPLE_CHECK (gs, GIMPLE_TRANSACTION);
4642 return gs->gimple_transaction.body;
4645 /* Return the label associated with a GIMPLE_TRANSACTION. */
4647 static inline tree
4648 gimple_transaction_label (const_gimple gs)
4650 GIMPLE_CHECK (gs, GIMPLE_TRANSACTION);
4651 return gs->gimple_transaction.label;
4654 static inline tree *
4655 gimple_transaction_label_ptr (gimple gs)
4657 GIMPLE_CHECK (gs, GIMPLE_TRANSACTION);
4658 return &gs->gimple_transaction.label;
4661 /* Return the subcode associated with a GIMPLE_TRANSACTION. */
4663 static inline unsigned int
4664 gimple_transaction_subcode (const_gimple gs)
4666 GIMPLE_CHECK (gs, GIMPLE_TRANSACTION);
4667 return gs->gsbase.subcode;
4670 /* Set BODY to be the body for the GIMPLE_TRANSACTION statement GS. */
4672 static inline void
4673 gimple_transaction_set_body (gimple gs, gimple_seq body)
4675 GIMPLE_CHECK (gs, GIMPLE_TRANSACTION);
4676 gs->gimple_transaction.body = body;
4679 /* Set the label associated with a GIMPLE_TRANSACTION. */
4681 static inline void
4682 gimple_transaction_set_label (gimple gs, tree label)
4684 GIMPLE_CHECK (gs, GIMPLE_TRANSACTION);
4685 gs->gimple_transaction.label = label;
4688 /* Set the subcode associated with a GIMPLE_TRANSACTION. */
4690 static inline void
4691 gimple_transaction_set_subcode (gimple gs, unsigned int subcode)
4693 GIMPLE_CHECK (gs, GIMPLE_TRANSACTION);
4694 gs->gsbase.subcode = subcode;
4698 /* Return a pointer to the return value for GIMPLE_RETURN GS. */
4700 static inline tree *
4701 gimple_return_retval_ptr (const_gimple gs)
4703 GIMPLE_CHECK (gs, GIMPLE_RETURN);
4704 return gimple_op_ptr (gs, 0);
4707 /* Return the return value for GIMPLE_RETURN GS. */
4709 static inline tree
4710 gimple_return_retval (const_gimple gs)
4712 GIMPLE_CHECK (gs, GIMPLE_RETURN);
4713 return gimple_op (gs, 0);
4717 /* Set RETVAL to be the return value for GIMPLE_RETURN GS. */
4719 static inline void
4720 gimple_return_set_retval (gimple gs, tree retval)
4722 GIMPLE_CHECK (gs, GIMPLE_RETURN);
4723 gimple_set_op (gs, 0, retval);
4727 /* Returns true when the gimple statment STMT is any of the OpenMP types. */
4729 #define CASE_GIMPLE_OMP \
4730 case GIMPLE_OMP_PARALLEL: \
4731 case GIMPLE_OMP_TASK: \
4732 case GIMPLE_OMP_FOR: \
4733 case GIMPLE_OMP_SECTIONS: \
4734 case GIMPLE_OMP_SECTIONS_SWITCH: \
4735 case GIMPLE_OMP_SINGLE: \
4736 case GIMPLE_OMP_SECTION: \
4737 case GIMPLE_OMP_MASTER: \
4738 case GIMPLE_OMP_ORDERED: \
4739 case GIMPLE_OMP_CRITICAL: \
4740 case GIMPLE_OMP_RETURN: \
4741 case GIMPLE_OMP_ATOMIC_LOAD: \
4742 case GIMPLE_OMP_ATOMIC_STORE: \
4743 case GIMPLE_OMP_CONTINUE
4745 static inline bool
4746 is_gimple_omp (const_gimple stmt)
4748 switch (gimple_code (stmt))
4750 CASE_GIMPLE_OMP:
4751 return true;
4752 default:
4753 return false;
4758 /* Returns TRUE if statement G is a GIMPLE_NOP. */
4760 static inline bool
4761 gimple_nop_p (const_gimple g)
4763 return gimple_code (g) == GIMPLE_NOP;
4767 /* Return true if GS is a GIMPLE_RESX. */
4769 static inline bool
4770 is_gimple_resx (const_gimple gs)
4772 return gimple_code (gs) == GIMPLE_RESX;
4775 /* Return the predictor of GIMPLE_PREDICT statement GS. */
4777 static inline enum br_predictor
4778 gimple_predict_predictor (gimple gs)
4780 GIMPLE_CHECK (gs, GIMPLE_PREDICT);
4781 return (enum br_predictor) (gs->gsbase.subcode & ~GF_PREDICT_TAKEN);
4785 /* Set the predictor of GIMPLE_PREDICT statement GS to PREDICT. */
4787 static inline void
4788 gimple_predict_set_predictor (gimple gs, enum br_predictor predictor)
4790 GIMPLE_CHECK (gs, GIMPLE_PREDICT);
4791 gs->gsbase.subcode = (gs->gsbase.subcode & GF_PREDICT_TAKEN)
4792 | (unsigned) predictor;
4796 /* Return the outcome of GIMPLE_PREDICT statement GS. */
4798 static inline enum prediction
4799 gimple_predict_outcome (gimple gs)
4801 GIMPLE_CHECK (gs, GIMPLE_PREDICT);
4802 return (gs->gsbase.subcode & GF_PREDICT_TAKEN) ? TAKEN : NOT_TAKEN;
4806 /* Set the outcome of GIMPLE_PREDICT statement GS to OUTCOME. */
4808 static inline void
4809 gimple_predict_set_outcome (gimple gs, enum prediction outcome)
4811 GIMPLE_CHECK (gs, GIMPLE_PREDICT);
4812 if (outcome == TAKEN)
4813 gs->gsbase.subcode |= GF_PREDICT_TAKEN;
4814 else
4815 gs->gsbase.subcode &= ~GF_PREDICT_TAKEN;
4819 /* Return the type of the main expression computed by STMT. Return
4820 void_type_node if the statement computes nothing. */
4822 static inline tree
4823 gimple_expr_type (const_gimple stmt)
4825 enum gimple_code code = gimple_code (stmt);
4827 if (code == GIMPLE_ASSIGN || code == GIMPLE_CALL)
4829 tree type;
4830 /* In general we want to pass out a type that can be substituted
4831 for both the RHS and the LHS types if there is a possibly
4832 useless conversion involved. That means returning the
4833 original RHS type as far as we can reconstruct it. */
4834 if (code == GIMPLE_CALL)
4835 type = gimple_call_return_type (stmt);
4836 else
4837 switch (gimple_assign_rhs_code (stmt))
4839 case POINTER_PLUS_EXPR:
4840 type = TREE_TYPE (gimple_assign_rhs1 (stmt));
4841 break;
4843 default:
4844 /* As fallback use the type of the LHS. */
4845 type = TREE_TYPE (gimple_get_lhs (stmt));
4846 break;
4848 return type;
4850 else if (code == GIMPLE_COND)
4851 return boolean_type_node;
4852 else
4853 return void_type_node;
4857 /* Return a new iterator pointing to GIMPLE_SEQ's first statement. */
4859 static inline gimple_stmt_iterator
4860 gsi_start (gimple_seq seq)
4862 gimple_stmt_iterator i;
4864 i.ptr = gimple_seq_first (seq);
4865 i.seq = seq;
4866 i.bb = (i.ptr && i.ptr->stmt) ? gimple_bb (i.ptr->stmt) : NULL;
4868 return i;
4872 /* Return a new iterator pointing to the first statement in basic block BB. */
4874 static inline gimple_stmt_iterator
4875 gsi_start_bb (basic_block bb)
4877 gimple_stmt_iterator i;
4878 gimple_seq seq;
4880 seq = bb_seq (bb);
4881 i.ptr = gimple_seq_first (seq);
4882 i.seq = seq;
4883 i.bb = bb;
4885 return i;
4889 /* Return a new iterator initially pointing to GIMPLE_SEQ's last statement. */
4891 static inline gimple_stmt_iterator
4892 gsi_last (gimple_seq seq)
4894 gimple_stmt_iterator i;
4896 i.ptr = gimple_seq_last (seq);
4897 i.seq = seq;
4898 i.bb = (i.ptr && i.ptr->stmt) ? gimple_bb (i.ptr->stmt) : NULL;
4900 return i;
4904 /* Return a new iterator pointing to the last statement in basic block BB. */
4906 static inline gimple_stmt_iterator
4907 gsi_last_bb (basic_block bb)
4909 gimple_stmt_iterator i;
4910 gimple_seq seq;
4912 seq = bb_seq (bb);
4913 i.ptr = gimple_seq_last (seq);
4914 i.seq = seq;
4915 i.bb = bb;
4917 return i;
4921 /* Return true if I is at the end of its sequence. */
4923 static inline bool
4924 gsi_end_p (gimple_stmt_iterator i)
4926 return i.ptr == NULL;
4930 /* Return true if I is one statement before the end of its sequence. */
4932 static inline bool
4933 gsi_one_before_end_p (gimple_stmt_iterator i)
4935 return i.ptr != NULL && i.ptr->next == NULL;
4939 /* Advance the iterator to the next gimple statement. */
4941 static inline void
4942 gsi_next (gimple_stmt_iterator *i)
4944 i->ptr = i->ptr->next;
4947 /* Advance the iterator to the previous gimple statement. */
4949 static inline void
4950 gsi_prev (gimple_stmt_iterator *i)
4952 i->ptr = i->ptr->prev;
4955 /* Return the current stmt. */
4957 static inline gimple
4958 gsi_stmt (gimple_stmt_iterator i)
4960 return i.ptr->stmt;
4963 /* Return a block statement iterator that points to the first non-label
4964 statement in block BB. */
4966 static inline gimple_stmt_iterator
4967 gsi_after_labels (basic_block bb)
4969 gimple_stmt_iterator gsi = gsi_start_bb (bb);
4971 while (!gsi_end_p (gsi) && gimple_code (gsi_stmt (gsi)) == GIMPLE_LABEL)
4972 gsi_next (&gsi);
4974 return gsi;
4977 /* Advance the iterator to the next non-debug gimple statement. */
4979 static inline void
4980 gsi_next_nondebug (gimple_stmt_iterator *i)
4984 gsi_next (i);
4986 while (!gsi_end_p (*i) && is_gimple_debug (gsi_stmt (*i)));
4989 /* Advance the iterator to the next non-debug gimple statement. */
4991 static inline void
4992 gsi_prev_nondebug (gimple_stmt_iterator *i)
4996 gsi_prev (i);
4998 while (!gsi_end_p (*i) && is_gimple_debug (gsi_stmt (*i)));
5001 /* Return a new iterator pointing to the first non-debug statement in
5002 basic block BB. */
5004 static inline gimple_stmt_iterator
5005 gsi_start_nondebug_bb (basic_block bb)
5007 gimple_stmt_iterator i = gsi_start_bb (bb);
5009 if (!gsi_end_p (i) && is_gimple_debug (gsi_stmt (i)))
5010 gsi_next_nondebug (&i);
5012 return i;
5015 /* Return a new iterator pointing to the last non-debug statement in
5016 basic block BB. */
5018 static inline gimple_stmt_iterator
5019 gsi_last_nondebug_bb (basic_block bb)
5021 gimple_stmt_iterator i = gsi_last_bb (bb);
5023 if (!gsi_end_p (i) && is_gimple_debug (gsi_stmt (i)))
5024 gsi_prev_nondebug (&i);
5026 return i;
5029 /* Return a pointer to the current stmt.
5031 NOTE: You may want to use gsi_replace on the iterator itself,
5032 as this performs additional bookkeeping that will not be done
5033 if you simply assign through a pointer returned by gsi_stmt_ptr. */
5035 static inline gimple *
5036 gsi_stmt_ptr (gimple_stmt_iterator *i)
5038 return &i->ptr->stmt;
5042 /* Return the basic block associated with this iterator. */
5044 static inline basic_block
5045 gsi_bb (gimple_stmt_iterator i)
5047 return i.bb;
5051 /* Return the sequence associated with this iterator. */
5053 static inline gimple_seq
5054 gsi_seq (gimple_stmt_iterator i)
5056 return i.seq;
5060 enum gsi_iterator_update
5062 GSI_NEW_STMT, /* Only valid when single statement is added, move
5063 iterator to it. */
5064 GSI_SAME_STMT, /* Leave the iterator at the same statement. */
5065 GSI_CONTINUE_LINKING /* Move iterator to whatever position is suitable
5066 for linking other statements in the same
5067 direction. */
5070 /* In gimple-iterator.c */
5071 gimple_stmt_iterator gsi_start_phis (basic_block);
5072 gimple_seq gsi_split_seq_after (gimple_stmt_iterator);
5073 gimple_seq gsi_split_seq_before (gimple_stmt_iterator *);
5074 void gsi_replace (gimple_stmt_iterator *, gimple, bool);
5075 void gsi_insert_before (gimple_stmt_iterator *, gimple,
5076 enum gsi_iterator_update);
5077 void gsi_insert_before_without_update (gimple_stmt_iterator *, gimple,
5078 enum gsi_iterator_update);
5079 void gsi_insert_seq_before (gimple_stmt_iterator *, gimple_seq,
5080 enum gsi_iterator_update);
5081 void gsi_insert_seq_before_without_update (gimple_stmt_iterator *, gimple_seq,
5082 enum gsi_iterator_update);
5083 void gsi_insert_after (gimple_stmt_iterator *, gimple,
5084 enum gsi_iterator_update);
5085 void gsi_insert_after_without_update (gimple_stmt_iterator *, gimple,
5086 enum gsi_iterator_update);
5087 void gsi_insert_seq_after (gimple_stmt_iterator *, gimple_seq,
5088 enum gsi_iterator_update);
5089 void gsi_insert_seq_after_without_update (gimple_stmt_iterator *, gimple_seq,
5090 enum gsi_iterator_update);
5091 void gsi_remove (gimple_stmt_iterator *, bool);
5092 gimple_stmt_iterator gsi_for_stmt (gimple);
5093 void gsi_move_after (gimple_stmt_iterator *, gimple_stmt_iterator *);
5094 void gsi_move_before (gimple_stmt_iterator *, gimple_stmt_iterator *);
5095 void gsi_move_to_bb_end (gimple_stmt_iterator *, struct basic_block_def *);
5096 void gsi_insert_on_edge (edge, gimple);
5097 void gsi_insert_seq_on_edge (edge, gimple_seq);
5098 basic_block gsi_insert_on_edge_immediate (edge, gimple);
5099 basic_block gsi_insert_seq_on_edge_immediate (edge, gimple_seq);
5100 void gsi_commit_one_edge_insert (edge, basic_block *);
5101 void gsi_commit_edge_inserts (void);
5102 gimple gimple_call_copy_skip_args (gimple, bitmap);
5105 /* Convenience routines to walk all statements of a gimple function.
5106 Note that this is useful exclusively before the code is converted
5107 into SSA form. Once the program is in SSA form, the standard
5108 operand interface should be used to analyze/modify statements. */
5109 struct walk_stmt_info
5111 /* Points to the current statement being walked. */
5112 gimple_stmt_iterator gsi;
5114 /* Additional data that the callback functions may want to carry
5115 through the recursion. */
5116 void *info;
5118 /* Pointer map used to mark visited tree nodes when calling
5119 walk_tree on each operand. If set to NULL, duplicate tree nodes
5120 will be visited more than once. */
5121 struct pointer_set_t *pset;
5123 /* Operand returned by the callbacks. This is set when calling
5124 walk_gimple_seq. If the walk_stmt_fn or walk_tree_fn callback
5125 returns non-NULL, this field will contain the tree returned by
5126 the last callback. */
5127 tree callback_result;
5129 /* Indicates whether the operand being examined may be replaced
5130 with something that matches is_gimple_val (if true) or something
5131 slightly more complicated (if false). "Something" technically
5132 means the common subset of is_gimple_lvalue and is_gimple_rhs,
5133 but we never try to form anything more complicated than that, so
5134 we don't bother checking.
5136 Also note that CALLBACK should update this flag while walking the
5137 sub-expressions of a statement. For instance, when walking the
5138 statement 'foo (&var)', the flag VAL_ONLY will initially be set
5139 to true, however, when walking &var, the operand of that
5140 ADDR_EXPR does not need to be a GIMPLE value. */
5141 BOOL_BITFIELD val_only : 1;
5143 /* True if we are currently walking the LHS of an assignment. */
5144 BOOL_BITFIELD is_lhs : 1;
5146 /* Optional. Set to true by the callback functions if they made any
5147 changes. */
5148 BOOL_BITFIELD changed : 1;
5150 /* True if we're interested in location information. */
5151 BOOL_BITFIELD want_locations : 1;
5153 /* True if we've removed the statement that was processed. */
5154 BOOL_BITFIELD removed_stmt : 1;
5157 /* Callback for walk_gimple_stmt. Called for every statement found
5158 during traversal. The first argument points to the statement to
5159 walk. The second argument is a flag that the callback sets to
5160 'true' if it the callback handled all the operands and
5161 sub-statements of the statement (the default value of this flag is
5162 'false'). The third argument is an anonymous pointer to data
5163 to be used by the callback. */
5164 typedef tree (*walk_stmt_fn) (gimple_stmt_iterator *, bool *,
5165 struct walk_stmt_info *);
5167 gimple walk_gimple_seq (gimple_seq, walk_stmt_fn, walk_tree_fn,
5168 struct walk_stmt_info *);
5169 tree walk_gimple_stmt (gimple_stmt_iterator *, walk_stmt_fn, walk_tree_fn,
5170 struct walk_stmt_info *);
5171 tree walk_gimple_op (gimple, walk_tree_fn, struct walk_stmt_info *);
5173 #ifdef GATHER_STATISTICS
5174 /* Enum and arrays used for allocation stats. Keep in sync with
5175 gimple.c:gimple_alloc_kind_names. */
5176 enum gimple_alloc_kind
5178 gimple_alloc_kind_assign, /* Assignments. */
5179 gimple_alloc_kind_phi, /* PHI nodes. */
5180 gimple_alloc_kind_cond, /* Conditionals. */
5181 gimple_alloc_kind_seq, /* Sequences. */
5182 gimple_alloc_kind_rest, /* Everything else. */
5183 gimple_alloc_kind_all
5186 extern int gimple_alloc_counts[];
5187 extern int gimple_alloc_sizes[];
5189 /* Return the allocation kind for a given stmt CODE. */
5190 static inline enum gimple_alloc_kind
5191 gimple_alloc_kind (enum gimple_code code)
5193 switch (code)
5195 case GIMPLE_ASSIGN:
5196 return gimple_alloc_kind_assign;
5197 case GIMPLE_PHI:
5198 return gimple_alloc_kind_phi;
5199 case GIMPLE_COND:
5200 return gimple_alloc_kind_cond;
5201 default:
5202 return gimple_alloc_kind_rest;
5205 #endif /* GATHER_STATISTICS */
5207 extern void dump_gimple_statistics (void);
5209 /* In gimple-fold.c. */
5210 void gimplify_and_update_call_from_tree (gimple_stmt_iterator *, tree);
5211 tree gimple_fold_builtin (gimple);
5212 bool fold_stmt (gimple_stmt_iterator *);
5213 bool fold_stmt_inplace (gimple_stmt_iterator *);
5214 tree get_symbol_constant_value (tree);
5215 tree canonicalize_constructor_val (tree);
5216 extern tree maybe_fold_and_comparisons (enum tree_code, tree, tree,
5217 enum tree_code, tree, tree);
5218 extern tree maybe_fold_or_comparisons (enum tree_code, tree, tree,
5219 enum tree_code, tree, tree);
5221 bool gimple_val_nonnegative_real_p (tree);
5222 #endif /* GCC_GIMPLE_H */