Fix PR number in ChangeLog.
[official-gcc.git] / gcc / gimple.h
blob5283ca2e2d6b809bc85479284ac15bc41d0922e3
1 /* Gimple IR definitions.
3 Copyright 2007, 2008, 2009, 2010, 2011, 2012 Free Software Foundation, Inc.
4 Contributed by Aldy Hernandez <aldyh@redhat.com>
6 This file is part of GCC.
8 GCC is free software; you can redistribute it and/or modify it under
9 the terms of the GNU General Public License as published by the Free
10 Software Foundation; either version 3, or (at your option) any later
11 version.
13 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
14 WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16 for more details.
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING3. If not see
20 <http://www.gnu.org/licenses/>. */
22 #ifndef GCC_GIMPLE_H
23 #define GCC_GIMPLE_H
25 #include "pointer-set.h"
26 #include "vec.h"
27 #include "vecprim.h"
28 #include "vecir.h"
29 #include "ggc.h"
30 #include "basic-block.h"
31 #include "tree-ssa-operands.h"
32 #include "tree-ssa-alias.h"
33 #include "internal-fn.h"
35 struct gimple_seq_node_d;
36 typedef struct gimple_seq_node_d *gimple_seq_node;
37 typedef const struct gimple_seq_node_d *const_gimple_seq_node;
39 /* For each block, the PHI nodes that need to be rewritten are stored into
40 these vectors. */
41 typedef VEC(gimple, heap) *gimple_vec;
42 DEF_VEC_P (gimple_vec);
43 DEF_VEC_ALLOC_P (gimple_vec, heap);
45 enum gimple_code {
46 #define DEFGSCODE(SYM, STRING, STRUCT) SYM,
47 #include "gimple.def"
48 #undef DEFGSCODE
49 LAST_AND_UNUSED_GIMPLE_CODE
52 extern const char *const gimple_code_name[];
53 extern const unsigned char gimple_rhs_class_table[];
55 /* Error out if a gimple tuple is addressed incorrectly. */
56 #if defined ENABLE_GIMPLE_CHECKING
57 #define gcc_gimple_checking_assert(EXPR) gcc_assert (EXPR)
58 extern void gimple_check_failed (const_gimple, const char *, int, \
59 const char *, enum gimple_code, \
60 enum tree_code) ATTRIBUTE_NORETURN;
62 #define GIMPLE_CHECK(GS, CODE) \
63 do { \
64 const_gimple __gs = (GS); \
65 if (gimple_code (__gs) != (CODE)) \
66 gimple_check_failed (__gs, __FILE__, __LINE__, __FUNCTION__, \
67 (CODE), ERROR_MARK); \
68 } while (0)
69 #else /* not ENABLE_GIMPLE_CHECKING */
70 #define gcc_gimple_checking_assert(EXPR) ((void)(0 && (EXPR)))
71 #define GIMPLE_CHECK(GS, CODE) (void)0
72 #endif
74 /* Class of GIMPLE expressions suitable for the RHS of assignments. See
75 get_gimple_rhs_class. */
76 enum gimple_rhs_class
78 GIMPLE_INVALID_RHS, /* The expression cannot be used on the RHS. */
79 GIMPLE_TERNARY_RHS, /* The expression is a ternary operation. */
80 GIMPLE_BINARY_RHS, /* The expression is a binary operation. */
81 GIMPLE_UNARY_RHS, /* The expression is a unary operation. */
82 GIMPLE_SINGLE_RHS /* The expression is a single object (an SSA
83 name, a _DECL, a _REF, etc. */
86 /* Specific flags for individual GIMPLE statements. These flags are
87 always stored in gimple_statement_base.subcode and they may only be
88 defined for statement codes that do not use sub-codes.
90 Values for the masks can overlap as long as the overlapping values
91 are never used in the same statement class.
93 The maximum mask value that can be defined is 1 << 15 (i.e., each
94 statement code can hold up to 16 bitflags).
96 Keep this list sorted. */
97 enum gf_mask {
98 GF_ASM_INPUT = 1 << 0,
99 GF_ASM_VOLATILE = 1 << 1,
100 GF_CALL_FROM_THUNK = 1 << 0,
101 GF_CALL_RETURN_SLOT_OPT = 1 << 1,
102 GF_CALL_TAILCALL = 1 << 2,
103 GF_CALL_VA_ARG_PACK = 1 << 3,
104 GF_CALL_NOTHROW = 1 << 4,
105 GF_CALL_ALLOCA_FOR_VAR = 1 << 5,
106 GF_CALL_INTERNAL = 1 << 6,
107 GF_OMP_PARALLEL_COMBINED = 1 << 0,
109 /* True on an GIMPLE_OMP_RETURN statement if the return does not require
110 a thread synchronization via some sort of barrier. The exact barrier
111 that would otherwise be emitted is dependent on the OMP statement with
112 which this return is associated. */
113 GF_OMP_RETURN_NOWAIT = 1 << 0,
115 GF_OMP_SECTION_LAST = 1 << 0,
116 GF_OMP_ATOMIC_NEED_VALUE = 1 << 0,
117 GF_PREDICT_TAKEN = 1 << 15
120 /* Currently, there are only two types of gimple debug stmt. Others are
121 envisioned, for example, to enable the generation of is_stmt notes
122 in line number information, to mark sequence points, etc. This
123 subcode is to be used to tell them apart. */
124 enum gimple_debug_subcode {
125 GIMPLE_DEBUG_BIND = 0,
126 GIMPLE_DEBUG_SOURCE_BIND = 1
129 /* Masks for selecting a pass local flag (PLF) to work on. These
130 masks are used by gimple_set_plf and gimple_plf. */
131 enum plf_mask {
132 GF_PLF_1 = 1 << 0,
133 GF_PLF_2 = 1 << 1
136 /* A node in a gimple_seq_d. */
137 struct GTY((chain_next ("%h.next"), chain_prev ("%h.prev"))) gimple_seq_node_d {
138 gimple stmt;
139 struct gimple_seq_node_d *prev;
140 struct gimple_seq_node_d *next;
143 /* A double-linked sequence of gimple statements. */
144 struct GTY ((chain_next ("%h.next_free"))) gimple_seq_d {
145 /* First and last statements in the sequence. */
146 gimple_seq_node first;
147 gimple_seq_node last;
149 /* Sequences are created/destroyed frequently. To minimize
150 allocation activity, deallocated sequences are kept in a pool of
151 available sequences. This is the pointer to the next free
152 sequence in the pool. */
153 gimple_seq next_free;
157 /* Return the first node in GIMPLE sequence S. */
159 static inline gimple_seq_node
160 gimple_seq_first (const_gimple_seq s)
162 return s ? s->first : NULL;
166 /* Return the first statement in GIMPLE sequence S. */
168 static inline gimple
169 gimple_seq_first_stmt (const_gimple_seq s)
171 gimple_seq_node n = gimple_seq_first (s);
172 return (n) ? n->stmt : NULL;
176 /* Return the last node in GIMPLE sequence S. */
178 static inline gimple_seq_node
179 gimple_seq_last (const_gimple_seq s)
181 return s ? s->last : NULL;
185 /* Return the last statement in GIMPLE sequence S. */
187 static inline gimple
188 gimple_seq_last_stmt (const_gimple_seq s)
190 gimple_seq_node n = gimple_seq_last (s);
191 return (n) ? n->stmt : NULL;
195 /* Set the last node in GIMPLE sequence S to LAST. */
197 static inline void
198 gimple_seq_set_last (gimple_seq s, gimple_seq_node last)
200 s->last = last;
204 /* Set the first node in GIMPLE sequence S to FIRST. */
206 static inline void
207 gimple_seq_set_first (gimple_seq s, gimple_seq_node first)
209 s->first = first;
213 /* Return true if GIMPLE sequence S is empty. */
215 static inline bool
216 gimple_seq_empty_p (const_gimple_seq s)
218 return s == NULL || s->first == NULL;
222 void gimple_seq_add_stmt (gimple_seq *, gimple);
224 /* Link gimple statement GS to the end of the sequence *SEQ_P. If
225 *SEQ_P is NULL, a new sequence is allocated. This function is
226 similar to gimple_seq_add_stmt, but does not scan the operands.
227 During gimplification, we need to manipulate statement sequences
228 before the def/use vectors have been constructed. */
229 void gimple_seq_add_stmt_without_update (gimple_seq *, gimple);
231 /* Allocate a new sequence and initialize its first element with STMT. */
233 static inline gimple_seq
234 gimple_seq_alloc_with_stmt (gimple stmt)
236 gimple_seq seq = NULL;
237 gimple_seq_add_stmt (&seq, stmt);
238 return seq;
242 /* Returns the sequence of statements in BB. */
244 static inline gimple_seq
245 bb_seq (const_basic_block bb)
247 return (!(bb->flags & BB_RTL) && bb->il.gimple) ? bb->il.gimple->seq : NULL;
251 /* Sets the sequence of statements in BB to SEQ. */
253 static inline void
254 set_bb_seq (basic_block bb, gimple_seq seq)
256 gcc_checking_assert (!(bb->flags & BB_RTL));
257 bb->il.gimple->seq = seq;
260 /* Iterator object for GIMPLE statement sequences. */
262 typedef struct
264 /* Sequence node holding the current statement. */
265 gimple_seq_node ptr;
267 /* Sequence and basic block holding the statement. These fields
268 are necessary to handle edge cases such as when statement is
269 added to an empty basic block or when the last statement of a
270 block/sequence is removed. */
271 gimple_seq seq;
272 basic_block bb;
273 } gimple_stmt_iterator;
276 /* Data structure definitions for GIMPLE tuples. NOTE: word markers
277 are for 64 bit hosts. */
279 struct GTY(()) gimple_statement_base {
280 /* [ WORD 1 ]
281 Main identifying code for a tuple. */
282 ENUM_BITFIELD(gimple_code) code : 8;
284 /* Nonzero if a warning should not be emitted on this tuple. */
285 unsigned int no_warning : 1;
287 /* Nonzero if this tuple has been visited. Passes are responsible
288 for clearing this bit before using it. */
289 unsigned int visited : 1;
291 /* Nonzero if this tuple represents a non-temporal move. */
292 unsigned int nontemporal_move : 1;
294 /* Pass local flags. These flags are free for any pass to use as
295 they see fit. Passes should not assume that these flags contain
296 any useful value when the pass starts. Any initial state that
297 the pass requires should be set on entry to the pass. See
298 gimple_set_plf and gimple_plf for usage. */
299 unsigned int plf : 2;
301 /* Nonzero if this statement has been modified and needs to have its
302 operands rescanned. */
303 unsigned modified : 1;
305 /* Nonzero if this statement contains volatile operands. */
306 unsigned has_volatile_ops : 1;
308 /* Padding to get subcode to 16 bit alignment. */
309 unsigned pad : 1;
311 /* The SUBCODE field can be used for tuple-specific flags for tuples
312 that do not require subcodes. Note that SUBCODE should be at
313 least as wide as tree codes, as several tuples store tree codes
314 in there. */
315 unsigned int subcode : 16;
317 /* UID of this statement. This is used by passes that want to
318 assign IDs to statements. It must be assigned and used by each
319 pass. By default it should be assumed to contain garbage. */
320 unsigned uid;
322 /* [ WORD 2 ]
323 Locus information for debug info. */
324 location_t location;
326 /* Number of operands in this tuple. */
327 unsigned num_ops;
329 /* [ WORD 3 ]
330 Basic block holding this statement. */
331 struct basic_block_def *bb;
333 /* [ WORD 4 ]
334 Lexical block holding this statement. */
335 tree block;
339 /* Base structure for tuples with operands. */
341 struct GTY(()) gimple_statement_with_ops_base
343 /* [ WORD 1-4 ] */
344 struct gimple_statement_base gsbase;
346 /* [ WORD 5-6 ]
347 SSA operand vectors. NOTE: It should be possible to
348 amalgamate these vectors with the operand vector OP. However,
349 the SSA operand vectors are organized differently and contain
350 more information (like immediate use chaining). */
351 struct def_optype_d GTY((skip (""))) *def_ops;
352 struct use_optype_d GTY((skip (""))) *use_ops;
356 /* Statements that take register operands. */
358 struct GTY(()) gimple_statement_with_ops
360 /* [ WORD 1-6 ] */
361 struct gimple_statement_with_ops_base opbase;
363 /* [ WORD 7 ]
364 Operand vector. NOTE! This must always be the last field
365 of this structure. In particular, this means that this
366 structure cannot be embedded inside another one. */
367 tree GTY((length ("%h.opbase.gsbase.num_ops"))) op[1];
371 /* Base for statements that take both memory and register operands. */
373 struct GTY(()) gimple_statement_with_memory_ops_base
375 /* [ WORD 1-6 ] */
376 struct gimple_statement_with_ops_base opbase;
378 /* [ WORD 7-8 ]
379 Virtual operands for this statement. The GC will pick them
380 up via the ssa_names array. */
381 tree GTY((skip (""))) vdef;
382 tree GTY((skip (""))) vuse;
386 /* Statements that take both memory and register operands. */
388 struct GTY(()) gimple_statement_with_memory_ops
390 /* [ WORD 1-8 ] */
391 struct gimple_statement_with_memory_ops_base membase;
393 /* [ WORD 9 ]
394 Operand vector. NOTE! This must always be the last field
395 of this structure. In particular, this means that this
396 structure cannot be embedded inside another one. */
397 tree GTY((length ("%h.membase.opbase.gsbase.num_ops"))) op[1];
401 /* Call statements that take both memory and register operands. */
403 struct GTY(()) gimple_statement_call
405 /* [ WORD 1-8 ] */
406 struct gimple_statement_with_memory_ops_base membase;
408 /* [ WORD 9-12 ] */
409 struct pt_solution call_used;
410 struct pt_solution call_clobbered;
412 /* [ WORD 13 ] */
413 union GTY ((desc ("%1.membase.opbase.gsbase.subcode & GF_CALL_INTERNAL"))) {
414 tree GTY ((tag ("0"))) fntype;
415 enum internal_fn GTY ((tag ("GF_CALL_INTERNAL"))) internal_fn;
416 } u;
418 /* [ WORD 14 ]
419 Operand vector. NOTE! This must always be the last field
420 of this structure. In particular, this means that this
421 structure cannot be embedded inside another one. */
422 tree GTY((length ("%h.membase.opbase.gsbase.num_ops"))) op[1];
426 /* OpenMP statements (#pragma omp). */
428 struct GTY(()) gimple_statement_omp {
429 /* [ WORD 1-4 ] */
430 struct gimple_statement_base gsbase;
432 /* [ WORD 5 ] */
433 gimple_seq body;
437 /* GIMPLE_BIND */
439 struct GTY(()) gimple_statement_bind {
440 /* [ WORD 1-4 ] */
441 struct gimple_statement_base gsbase;
443 /* [ WORD 5 ]
444 Variables declared in this scope. */
445 tree vars;
447 /* [ WORD 6 ]
448 This is different than the BLOCK field in gimple_statement_base,
449 which is analogous to TREE_BLOCK (i.e., the lexical block holding
450 this statement). This field is the equivalent of BIND_EXPR_BLOCK
451 in tree land (i.e., the lexical scope defined by this bind). See
452 gimple-low.c. */
453 tree block;
455 /* [ WORD 7 ] */
456 gimple_seq body;
460 /* GIMPLE_CATCH */
462 struct GTY(()) gimple_statement_catch {
463 /* [ WORD 1-4 ] */
464 struct gimple_statement_base gsbase;
466 /* [ WORD 5 ] */
467 tree types;
469 /* [ WORD 6 ] */
470 gimple_seq handler;
474 /* GIMPLE_EH_FILTER */
476 struct GTY(()) gimple_statement_eh_filter {
477 /* [ WORD 1-4 ] */
478 struct gimple_statement_base gsbase;
480 /* [ WORD 5 ]
481 Filter types. */
482 tree types;
484 /* [ WORD 6 ]
485 Failure actions. */
486 gimple_seq failure;
489 /* GIMPLE_EH_ELSE */
491 struct GTY(()) gimple_statement_eh_else {
492 /* [ WORD 1-4 ] */
493 struct gimple_statement_base gsbase;
495 /* [ WORD 5,6 ] */
496 gimple_seq n_body, e_body;
499 /* GIMPLE_EH_MUST_NOT_THROW */
501 struct GTY(()) gimple_statement_eh_mnt {
502 /* [ WORD 1-4 ] */
503 struct gimple_statement_base gsbase;
505 /* [ WORD 5 ] Abort function decl. */
506 tree fndecl;
509 /* GIMPLE_PHI */
511 struct GTY(()) gimple_statement_phi {
512 /* [ WORD 1-4 ] */
513 struct gimple_statement_base gsbase;
515 /* [ WORD 5 ] */
516 unsigned capacity;
517 unsigned nargs;
519 /* [ WORD 6 ] */
520 tree result;
522 /* [ WORD 7 ] */
523 struct phi_arg_d GTY ((length ("%h.nargs"))) args[1];
527 /* GIMPLE_RESX, GIMPLE_EH_DISPATCH */
529 struct GTY(()) gimple_statement_eh_ctrl
531 /* [ WORD 1-4 ] */
532 struct gimple_statement_base gsbase;
534 /* [ WORD 5 ]
535 Exception region number. */
536 int region;
540 /* GIMPLE_TRY */
542 struct GTY(()) gimple_statement_try {
543 /* [ WORD 1-4 ] */
544 struct gimple_statement_base gsbase;
546 /* [ WORD 5 ]
547 Expression to evaluate. */
548 gimple_seq eval;
550 /* [ WORD 6 ]
551 Cleanup expression. */
552 gimple_seq cleanup;
555 /* Kind of GIMPLE_TRY statements. */
556 enum gimple_try_flags
558 /* A try/catch. */
559 GIMPLE_TRY_CATCH = 1 << 0,
561 /* A try/finally. */
562 GIMPLE_TRY_FINALLY = 1 << 1,
563 GIMPLE_TRY_KIND = GIMPLE_TRY_CATCH | GIMPLE_TRY_FINALLY,
565 /* Analogous to TRY_CATCH_IS_CLEANUP. */
566 GIMPLE_TRY_CATCH_IS_CLEANUP = 1 << 2
569 /* GIMPLE_WITH_CLEANUP_EXPR */
571 struct GTY(()) gimple_statement_wce {
572 /* [ WORD 1-4 ] */
573 struct gimple_statement_base gsbase;
575 /* Subcode: CLEANUP_EH_ONLY. True if the cleanup should only be
576 executed if an exception is thrown, not on normal exit of its
577 scope. This flag is analogous to the CLEANUP_EH_ONLY flag
578 in TARGET_EXPRs. */
580 /* [ WORD 5 ]
581 Cleanup expression. */
582 gimple_seq cleanup;
586 /* GIMPLE_ASM */
588 struct GTY(()) gimple_statement_asm
590 /* [ WORD 1-8 ] */
591 struct gimple_statement_with_memory_ops_base membase;
593 /* [ WORD 9 ]
594 __asm__ statement. */
595 const char *string;
597 /* [ WORD 10 ]
598 Number of inputs, outputs, clobbers, labels. */
599 unsigned char ni;
600 unsigned char no;
601 unsigned char nc;
602 unsigned char nl;
604 /* [ WORD 11 ]
605 Operand vector. NOTE! This must always be the last field
606 of this structure. In particular, this means that this
607 structure cannot be embedded inside another one. */
608 tree GTY((length ("%h.membase.opbase.gsbase.num_ops"))) op[1];
611 /* GIMPLE_OMP_CRITICAL */
613 struct GTY(()) gimple_statement_omp_critical {
614 /* [ WORD 1-5 ] */
615 struct gimple_statement_omp omp;
617 /* [ WORD 6 ]
618 Critical section name. */
619 tree name;
623 struct GTY(()) gimple_omp_for_iter {
624 /* Condition code. */
625 enum tree_code cond;
627 /* Index variable. */
628 tree index;
630 /* Initial value. */
631 tree initial;
633 /* Final value. */
634 tree final;
636 /* Increment. */
637 tree incr;
640 /* GIMPLE_OMP_FOR */
642 struct GTY(()) gimple_statement_omp_for {
643 /* [ WORD 1-5 ] */
644 struct gimple_statement_omp omp;
646 /* [ WORD 6 ] */
647 tree clauses;
649 /* [ WORD 7 ]
650 Number of elements in iter array. */
651 size_t collapse;
653 /* [ WORD 8 ] */
654 struct gimple_omp_for_iter * GTY((length ("%h.collapse"))) iter;
656 /* [ WORD 9 ]
657 Pre-body evaluated before the loop body begins. */
658 gimple_seq pre_body;
662 /* GIMPLE_OMP_PARALLEL */
664 struct GTY(()) gimple_statement_omp_parallel {
665 /* [ WORD 1-5 ] */
666 struct gimple_statement_omp omp;
668 /* [ WORD 6 ]
669 Clauses. */
670 tree clauses;
672 /* [ WORD 7 ]
673 Child function holding the body of the parallel region. */
674 tree child_fn;
676 /* [ WORD 8 ]
677 Shared data argument. */
678 tree data_arg;
682 /* GIMPLE_OMP_TASK */
684 struct GTY(()) gimple_statement_omp_task {
685 /* [ WORD 1-8 ] */
686 struct gimple_statement_omp_parallel par;
688 /* [ WORD 9 ]
689 Child function holding firstprivate initialization if needed. */
690 tree copy_fn;
692 /* [ WORD 10-11 ]
693 Size and alignment in bytes of the argument data block. */
694 tree arg_size;
695 tree arg_align;
699 /* GIMPLE_OMP_SECTION */
700 /* Uses struct gimple_statement_omp. */
703 /* GIMPLE_OMP_SECTIONS */
705 struct GTY(()) gimple_statement_omp_sections {
706 /* [ WORD 1-5 ] */
707 struct gimple_statement_omp omp;
709 /* [ WORD 6 ] */
710 tree clauses;
712 /* [ WORD 7 ]
713 The control variable used for deciding which of the sections to
714 execute. */
715 tree control;
718 /* GIMPLE_OMP_CONTINUE.
720 Note: This does not inherit from gimple_statement_omp, because we
721 do not need the body field. */
723 struct GTY(()) gimple_statement_omp_continue {
724 /* [ WORD 1-4 ] */
725 struct gimple_statement_base gsbase;
727 /* [ WORD 5 ] */
728 tree control_def;
730 /* [ WORD 6 ] */
731 tree control_use;
734 /* GIMPLE_OMP_SINGLE */
736 struct GTY(()) gimple_statement_omp_single {
737 /* [ WORD 1-5 ] */
738 struct gimple_statement_omp omp;
740 /* [ WORD 6 ] */
741 tree clauses;
745 /* GIMPLE_OMP_ATOMIC_LOAD.
746 Note: This is based on gimple_statement_base, not g_s_omp, because g_s_omp
747 contains a sequence, which we don't need here. */
749 struct GTY(()) gimple_statement_omp_atomic_load {
750 /* [ WORD 1-4 ] */
751 struct gimple_statement_base gsbase;
753 /* [ WORD 5-6 ] */
754 tree rhs, lhs;
757 /* GIMPLE_OMP_ATOMIC_STORE.
758 See note on GIMPLE_OMP_ATOMIC_LOAD. */
760 struct GTY(()) gimple_statement_omp_atomic_store {
761 /* [ WORD 1-4 ] */
762 struct gimple_statement_base gsbase;
764 /* [ WORD 5 ] */
765 tree val;
768 /* GIMPLE_TRANSACTION. */
770 /* Bits to be stored in the GIMPLE_TRANSACTION subcode. */
772 /* The __transaction_atomic was declared [[outer]] or it is
773 __transaction_relaxed. */
774 #define GTMA_IS_OUTER (1u << 0)
775 #define GTMA_IS_RELAXED (1u << 1)
776 #define GTMA_DECLARATION_MASK (GTMA_IS_OUTER | GTMA_IS_RELAXED)
778 /* The transaction is seen to not have an abort. */
779 #define GTMA_HAVE_ABORT (1u << 2)
780 /* The transaction is seen to have loads or stores. */
781 #define GTMA_HAVE_LOAD (1u << 3)
782 #define GTMA_HAVE_STORE (1u << 4)
783 /* The transaction MAY enter serial irrevocable mode in its dynamic scope. */
784 #define GTMA_MAY_ENTER_IRREVOCABLE (1u << 5)
785 /* The transaction WILL enter serial irrevocable mode.
786 An irrevocable block post-dominates the entire transaction, such
787 that all invocations of the transaction will go serial-irrevocable.
788 In such case, we don't bother instrumenting the transaction, and
789 tell the runtime that it should begin the transaction in
790 serial-irrevocable mode. */
791 #define GTMA_DOES_GO_IRREVOCABLE (1u << 6)
793 struct GTY(()) gimple_statement_transaction
795 /* [ WORD 1-10 ] */
796 struct gimple_statement_with_memory_ops_base gsbase;
798 /* [ WORD 11 ] */
799 gimple_seq body;
801 /* [ WORD 12 ] */
802 tree label;
805 #define DEFGSSTRUCT(SYM, STRUCT, HAS_TREE_OP) SYM,
806 enum gimple_statement_structure_enum {
807 #include "gsstruct.def"
808 LAST_GSS_ENUM
810 #undef DEFGSSTRUCT
813 /* Define the overall contents of a gimple tuple. It may be any of the
814 structures declared above for various types of tuples. */
816 union GTY ((desc ("gimple_statement_structure (&%h)"), variable_size)) gimple_statement_d {
817 struct gimple_statement_base GTY ((tag ("GSS_BASE"))) gsbase;
818 struct gimple_statement_with_ops GTY ((tag ("GSS_WITH_OPS"))) gsops;
819 struct gimple_statement_with_memory_ops_base GTY ((tag ("GSS_WITH_MEM_OPS_BASE"))) gsmembase;
820 struct gimple_statement_with_memory_ops GTY ((tag ("GSS_WITH_MEM_OPS"))) gsmem;
821 struct gimple_statement_call GTY ((tag ("GSS_CALL"))) gimple_call;
822 struct gimple_statement_omp GTY ((tag ("GSS_OMP"))) omp;
823 struct gimple_statement_bind GTY ((tag ("GSS_BIND"))) gimple_bind;
824 struct gimple_statement_catch GTY ((tag ("GSS_CATCH"))) gimple_catch;
825 struct gimple_statement_eh_filter GTY ((tag ("GSS_EH_FILTER"))) gimple_eh_filter;
826 struct gimple_statement_eh_mnt GTY ((tag ("GSS_EH_MNT"))) gimple_eh_mnt;
827 struct gimple_statement_eh_else GTY ((tag ("GSS_EH_ELSE"))) gimple_eh_else;
828 struct gimple_statement_phi GTY ((tag ("GSS_PHI"))) gimple_phi;
829 struct gimple_statement_eh_ctrl GTY ((tag ("GSS_EH_CTRL"))) gimple_eh_ctrl;
830 struct gimple_statement_try GTY ((tag ("GSS_TRY"))) gimple_try;
831 struct gimple_statement_wce GTY ((tag ("GSS_WCE"))) gimple_wce;
832 struct gimple_statement_asm GTY ((tag ("GSS_ASM"))) gimple_asm;
833 struct gimple_statement_omp_critical GTY ((tag ("GSS_OMP_CRITICAL"))) gimple_omp_critical;
834 struct gimple_statement_omp_for GTY ((tag ("GSS_OMP_FOR"))) gimple_omp_for;
835 struct gimple_statement_omp_parallel GTY ((tag ("GSS_OMP_PARALLEL"))) gimple_omp_parallel;
836 struct gimple_statement_omp_task GTY ((tag ("GSS_OMP_TASK"))) gimple_omp_task;
837 struct gimple_statement_omp_sections GTY ((tag ("GSS_OMP_SECTIONS"))) gimple_omp_sections;
838 struct gimple_statement_omp_single GTY ((tag ("GSS_OMP_SINGLE"))) gimple_omp_single;
839 struct gimple_statement_omp_continue GTY ((tag ("GSS_OMP_CONTINUE"))) gimple_omp_continue;
840 struct gimple_statement_omp_atomic_load GTY ((tag ("GSS_OMP_ATOMIC_LOAD"))) gimple_omp_atomic_load;
841 struct gimple_statement_omp_atomic_store GTY ((tag ("GSS_OMP_ATOMIC_STORE"))) gimple_omp_atomic_store;
842 struct gimple_statement_transaction GTY((tag ("GSS_TRANSACTION"))) gimple_transaction;
845 /* In gimple.c. */
847 /* Offset in bytes to the location of the operand vector.
848 Zero if there is no operand vector for this tuple structure. */
849 extern size_t const gimple_ops_offset_[];
851 /* Map GIMPLE codes to GSS codes. */
852 extern enum gimple_statement_structure_enum const gss_for_code_[];
854 /* This variable holds the currently expanded gimple statement for purposes
855 of comminucating the profile info to the builtin expanders. */
856 extern gimple currently_expanding_gimple_stmt;
858 gimple gimple_build_return (tree);
860 gimple gimple_build_assign_stat (tree, tree MEM_STAT_DECL);
861 #define gimple_build_assign(l,r) gimple_build_assign_stat (l, r MEM_STAT_INFO)
863 void extract_ops_from_tree_1 (tree, enum tree_code *, tree *, tree *, tree *);
865 gimple gimple_build_assign_with_ops_stat (enum tree_code, tree, tree,
866 tree, tree MEM_STAT_DECL);
867 #define gimple_build_assign_with_ops(c,o1,o2,o3) \
868 gimple_build_assign_with_ops_stat (c, o1, o2, o3, NULL_TREE MEM_STAT_INFO)
869 #define gimple_build_assign_with_ops3(c,o1,o2,o3,o4) \
870 gimple_build_assign_with_ops_stat (c, o1, o2, o3, o4 MEM_STAT_INFO)
872 gimple gimple_build_debug_bind_stat (tree, tree, gimple MEM_STAT_DECL);
873 #define gimple_build_debug_bind(var,val,stmt) \
874 gimple_build_debug_bind_stat ((var), (val), (stmt) MEM_STAT_INFO)
875 gimple gimple_build_debug_source_bind_stat (tree, tree, gimple MEM_STAT_DECL);
876 #define gimple_build_debug_source_bind(var,val,stmt) \
877 gimple_build_debug_source_bind_stat ((var), (val), (stmt) MEM_STAT_INFO)
879 gimple gimple_build_call_vec (tree, VEC(tree, heap) *);
880 gimple gimple_build_call (tree, unsigned, ...);
881 gimple gimple_build_call_valist (tree, unsigned, va_list);
882 gimple gimple_build_call_internal (enum internal_fn, unsigned, ...);
883 gimple gimple_build_call_internal_vec (enum internal_fn, VEC(tree, heap) *);
884 gimple gimple_build_call_from_tree (tree);
885 gimple gimplify_assign (tree, tree, gimple_seq *);
886 gimple gimple_build_cond (enum tree_code, tree, tree, tree, tree);
887 gimple gimple_build_label (tree label);
888 gimple gimple_build_goto (tree dest);
889 gimple gimple_build_nop (void);
890 gimple gimple_build_bind (tree, gimple_seq, tree);
891 gimple gimple_build_asm_vec (const char *, VEC(tree,gc) *, VEC(tree,gc) *,
892 VEC(tree,gc) *, VEC(tree,gc) *);
893 gimple gimple_build_catch (tree, gimple_seq);
894 gimple gimple_build_eh_filter (tree, gimple_seq);
895 gimple gimple_build_eh_must_not_throw (tree);
896 gimple gimple_build_eh_else (gimple_seq, gimple_seq);
897 gimple gimple_build_try (gimple_seq, gimple_seq, enum gimple_try_flags);
898 gimple gimple_build_wce (gimple_seq);
899 gimple gimple_build_resx (int);
900 gimple gimple_build_eh_dispatch (int);
901 gimple gimple_build_switch_nlabels (unsigned, tree, tree);
902 gimple gimple_build_switch (unsigned, tree, tree, ...);
903 gimple gimple_build_switch_vec (tree, tree, VEC(tree,heap) *);
904 gimple gimple_build_omp_parallel (gimple_seq, tree, tree, tree);
905 gimple gimple_build_omp_task (gimple_seq, tree, tree, tree, tree, tree, tree);
906 gimple gimple_build_omp_for (gimple_seq, tree, size_t, gimple_seq);
907 gimple gimple_build_omp_critical (gimple_seq, tree);
908 gimple gimple_build_omp_section (gimple_seq);
909 gimple gimple_build_omp_continue (tree, tree);
910 gimple gimple_build_omp_master (gimple_seq);
911 gimple gimple_build_omp_return (bool);
912 gimple gimple_build_omp_ordered (gimple_seq);
913 gimple gimple_build_omp_sections (gimple_seq, tree);
914 gimple gimple_build_omp_sections_switch (void);
915 gimple gimple_build_omp_single (gimple_seq, tree);
916 gimple gimple_build_cdt (tree, tree);
917 gimple gimple_build_omp_atomic_load (tree, tree);
918 gimple gimple_build_omp_atomic_store (tree);
919 gimple gimple_build_transaction (gimple_seq, tree);
920 gimple gimple_build_predict (enum br_predictor, enum prediction);
921 enum gimple_statement_structure_enum gss_for_assign (enum tree_code);
922 void sort_case_labels (VEC(tree,heap) *);
923 void gimple_set_body (tree, gimple_seq);
924 gimple_seq gimple_body (tree);
925 bool gimple_has_body_p (tree);
926 gimple_seq gimple_seq_alloc (void);
927 void gimple_seq_free (gimple_seq);
928 void gimple_seq_add_seq (gimple_seq *, gimple_seq);
929 gimple_seq gimple_seq_copy (gimple_seq);
930 bool gimple_call_same_target_p (const_gimple, const_gimple);
931 int gimple_call_flags (const_gimple);
932 int gimple_call_return_flags (const_gimple);
933 int gimple_call_arg_flags (const_gimple, unsigned);
934 void gimple_call_reset_alias_info (gimple);
935 bool gimple_assign_copy_p (gimple);
936 bool gimple_assign_ssa_name_copy_p (gimple);
937 bool gimple_assign_unary_nop_p (gimple);
938 void gimple_set_bb (gimple, struct basic_block_def *);
939 void gimple_assign_set_rhs_from_tree (gimple_stmt_iterator *, tree);
940 void gimple_assign_set_rhs_with_ops_1 (gimple_stmt_iterator *, enum tree_code,
941 tree, tree, tree);
942 tree gimple_get_lhs (const_gimple);
943 void gimple_set_lhs (gimple, tree);
944 void gimple_replace_lhs (gimple, tree);
945 gimple gimple_copy (gimple);
946 void gimple_set_modified (gimple, bool);
947 void gimple_cond_get_ops_from_tree (tree, enum tree_code *, tree *, tree *);
948 gimple gimple_build_cond_from_tree (tree, tree, tree);
949 void gimple_cond_set_condition_from_tree (gimple, tree);
950 bool gimple_has_side_effects (const_gimple);
951 bool gimple_could_trap_p (gimple);
952 bool gimple_could_trap_p_1 (gimple, bool, bool);
953 bool gimple_assign_rhs_could_trap_p (gimple);
954 void gimple_regimplify_operands (gimple, gimple_stmt_iterator *);
955 bool empty_body_p (gimple_seq);
956 unsigned get_gimple_rhs_num_ops (enum tree_code);
957 #define gimple_alloc(c, n) gimple_alloc_stat (c, n MEM_STAT_INFO)
958 gimple gimple_alloc_stat (enum gimple_code, unsigned MEM_STAT_DECL);
959 const char *gimple_decl_printable_name (tree, int);
960 tree gimple_get_virt_method_for_binfo (HOST_WIDE_INT, tree);
961 void gimple_adjust_this_by_delta (gimple_stmt_iterator *, tree);
962 tree gimple_extract_devirt_binfo_from_cst (tree);
963 /* Returns true iff T is a valid GIMPLE statement. */
964 extern bool is_gimple_stmt (tree);
966 /* Returns true iff TYPE is a valid type for a scalar register variable. */
967 extern bool is_gimple_reg_type (tree);
968 /* Returns true iff T is a scalar register variable. */
969 extern bool is_gimple_reg (tree);
970 /* Returns true iff T is any sort of variable. */
971 extern bool is_gimple_variable (tree);
972 /* Returns true iff T is any sort of symbol. */
973 extern bool is_gimple_id (tree);
974 /* Returns true iff T is a variable or an INDIRECT_REF (of a variable). */
975 extern bool is_gimple_min_lval (tree);
976 /* Returns true iff T is something whose address can be taken. */
977 extern bool is_gimple_addressable (tree);
978 /* Returns true iff T is any valid GIMPLE lvalue. */
979 extern bool is_gimple_lvalue (tree);
981 /* Returns true iff T is a GIMPLE address. */
982 bool is_gimple_address (const_tree);
983 /* Returns true iff T is a GIMPLE invariant address. */
984 bool is_gimple_invariant_address (const_tree);
985 /* Returns true iff T is a GIMPLE invariant address at interprocedural
986 level. */
987 bool is_gimple_ip_invariant_address (const_tree);
988 /* Returns true iff T is a valid GIMPLE constant. */
989 bool is_gimple_constant (const_tree);
990 /* Returns true iff T is a GIMPLE restricted function invariant. */
991 extern bool is_gimple_min_invariant (const_tree);
992 /* Returns true iff T is a GIMPLE restricted interprecodural invariant. */
993 extern bool is_gimple_ip_invariant (const_tree);
994 /* Returns true iff T is a GIMPLE rvalue. */
995 extern bool is_gimple_val (tree);
996 /* Returns true iff T is a GIMPLE asm statement input. */
997 extern bool is_gimple_asm_val (tree);
998 /* Returns true iff T is a valid address operand of a MEM_REF. */
999 bool is_gimple_mem_ref_addr (tree);
1000 /* Returns true iff T is a valid rhs for a MODIFY_EXPR where the LHS is a
1001 GIMPLE temporary, a renamed user variable, or something else,
1002 respectively. */
1003 extern bool is_gimple_reg_rhs (tree);
1004 extern bool is_gimple_mem_rhs (tree);
1006 /* Returns true iff T is a valid if-statement condition. */
1007 extern bool is_gimple_condexpr (tree);
1009 /* Returns true iff T is a valid call address expression. */
1010 extern bool is_gimple_call_addr (tree);
1012 extern void recalculate_side_effects (tree);
1013 extern bool gimple_compare_field_offset (tree, tree);
1014 extern tree gimple_register_type (tree);
1015 extern tree gimple_register_canonical_type (tree);
1016 extern void print_gimple_types_stats (void);
1017 extern void free_gimple_type_tables (void);
1018 extern tree gimple_unsigned_type (tree);
1019 extern tree gimple_signed_type (tree);
1020 extern alias_set_type gimple_get_alias_set (tree);
1021 extern void count_uses_and_derefs (tree, gimple, unsigned *, unsigned *,
1022 unsigned *);
1023 extern bool walk_stmt_load_store_addr_ops (gimple, void *,
1024 bool (*)(gimple, tree, void *),
1025 bool (*)(gimple, tree, void *),
1026 bool (*)(gimple, tree, void *));
1027 extern bool walk_stmt_load_store_ops (gimple, void *,
1028 bool (*)(gimple, tree, void *),
1029 bool (*)(gimple, tree, void *));
1030 extern bool gimple_ior_addresses_taken (bitmap, gimple);
1031 extern bool gimple_call_builtin_p (gimple, enum built_in_function);
1032 extern bool gimple_asm_clobbers_memory_p (const_gimple);
1034 /* In gimplify.c */
1035 extern tree create_tmp_var_raw (tree, const char *);
1036 extern tree create_tmp_var_name (const char *);
1037 extern tree create_tmp_var (tree, const char *);
1038 extern tree create_tmp_reg (tree, const char *);
1039 extern tree get_initialized_tmp_var (tree, gimple_seq *, gimple_seq *);
1040 extern tree get_formal_tmp_var (tree, gimple_seq *);
1041 extern void declare_vars (tree, gimple, bool);
1042 extern void annotate_all_with_location (gimple_seq, location_t);
1044 /* Validation of GIMPLE expressions. Note that these predicates only check
1045 the basic form of the expression, they don't recurse to make sure that
1046 underlying nodes are also of the right form. */
1047 typedef bool (*gimple_predicate)(tree);
1050 /* FIXME we should deduce this from the predicate. */
1051 enum fallback {
1052 fb_none = 0, /* Do not generate a temporary. */
1054 fb_rvalue = 1, /* Generate an rvalue to hold the result of a
1055 gimplified expression. */
1057 fb_lvalue = 2, /* Generate an lvalue to hold the result of a
1058 gimplified expression. */
1060 fb_mayfail = 4, /* Gimplification may fail. Error issued
1061 afterwards. */
1062 fb_either= fb_rvalue | fb_lvalue
1065 typedef int fallback_t;
1067 enum gimplify_status {
1068 GS_ERROR = -2, /* Something Bad Seen. */
1069 GS_UNHANDLED = -1, /* A langhook result for "I dunno". */
1070 GS_OK = 0, /* We did something, maybe more to do. */
1071 GS_ALL_DONE = 1 /* The expression is fully gimplified. */
1074 struct gimplify_ctx
1076 struct gimplify_ctx *prev_context;
1078 VEC(gimple,heap) *bind_expr_stack;
1079 tree temps;
1080 gimple_seq conditional_cleanups;
1081 tree exit_label;
1082 tree return_temp;
1084 VEC(tree,heap) *case_labels;
1085 /* The formal temporary table. Should this be persistent? */
1086 htab_t temp_htab;
1088 int conditions;
1089 bool save_stack;
1090 bool into_ssa;
1091 bool allow_rhs_cond_expr;
1092 bool in_cleanup_point_expr;
1095 extern enum gimplify_status gimplify_expr (tree *, gimple_seq *, gimple_seq *,
1096 bool (*) (tree), fallback_t);
1097 extern void gimplify_type_sizes (tree, gimple_seq *);
1098 extern void gimplify_one_sizepos (tree *, gimple_seq *);
1099 extern bool gimplify_stmt (tree *, gimple_seq *);
1100 extern gimple gimplify_body (tree *, tree, bool);
1101 extern void push_gimplify_context (struct gimplify_ctx *);
1102 extern void pop_gimplify_context (gimple);
1103 extern void gimplify_and_add (tree, gimple_seq *);
1105 /* Miscellaneous helpers. */
1106 extern void gimple_add_tmp_var (tree);
1107 extern gimple gimple_current_bind_expr (void);
1108 extern VEC(gimple, heap) *gimple_bind_expr_stack (void);
1109 extern tree voidify_wrapper_expr (tree, tree);
1110 extern tree build_and_jump (tree *);
1111 extern tree force_labels_r (tree *, int *, void *);
1112 extern enum gimplify_status gimplify_va_arg_expr (tree *, gimple_seq *,
1113 gimple_seq *);
1114 struct gimplify_omp_ctx;
1115 extern void omp_firstprivatize_variable (struct gimplify_omp_ctx *, tree);
1116 extern tree gimple_boolify (tree);
1117 extern gimple_predicate rhs_predicate_for (tree);
1118 extern tree canonicalize_cond_expr_cond (tree);
1120 /* In omp-low.c. */
1121 extern tree omp_reduction_init (tree, tree);
1123 /* In trans-mem.c. */
1124 extern void diagnose_tm_safe_errors (tree);
1126 /* In tree-nested.c. */
1127 extern void lower_nested_functions (tree);
1128 extern void insert_field_into_struct (tree, tree);
1130 /* In gimplify.c. */
1131 extern void gimplify_function_tree (tree);
1133 /* In cfgexpand.c. */
1134 extern tree gimple_assign_rhs_to_tree (gimple);
1136 /* In builtins.c */
1137 extern bool validate_gimple_arglist (const_gimple, ...);
1139 /* In tree-ssa.c */
1140 extern bool tree_ssa_useless_type_conversion (tree);
1141 extern tree tree_ssa_strip_useless_type_conversions (tree);
1142 extern bool useless_type_conversion_p (tree, tree);
1143 extern bool types_compatible_p (tree, tree);
1145 /* Return the code for GIMPLE statement G. */
1147 static inline enum gimple_code
1148 gimple_code (const_gimple g)
1150 return g->gsbase.code;
1154 /* Return the GSS code used by a GIMPLE code. */
1156 static inline enum gimple_statement_structure_enum
1157 gss_for_code (enum gimple_code code)
1159 gcc_gimple_checking_assert ((unsigned int)code < LAST_AND_UNUSED_GIMPLE_CODE);
1160 return gss_for_code_[code];
1164 /* Return which GSS code is used by GS. */
1166 static inline enum gimple_statement_structure_enum
1167 gimple_statement_structure (gimple gs)
1169 return gss_for_code (gimple_code (gs));
1173 /* Return true if statement G has sub-statements. This is only true for
1174 High GIMPLE statements. */
1176 static inline bool
1177 gimple_has_substatements (gimple g)
1179 switch (gimple_code (g))
1181 case GIMPLE_BIND:
1182 case GIMPLE_CATCH:
1183 case GIMPLE_EH_FILTER:
1184 case GIMPLE_EH_ELSE:
1185 case GIMPLE_TRY:
1186 case GIMPLE_OMP_FOR:
1187 case GIMPLE_OMP_MASTER:
1188 case GIMPLE_OMP_ORDERED:
1189 case GIMPLE_OMP_SECTION:
1190 case GIMPLE_OMP_PARALLEL:
1191 case GIMPLE_OMP_TASK:
1192 case GIMPLE_OMP_SECTIONS:
1193 case GIMPLE_OMP_SINGLE:
1194 case GIMPLE_OMP_CRITICAL:
1195 case GIMPLE_WITH_CLEANUP_EXPR:
1196 case GIMPLE_TRANSACTION:
1197 return true;
1199 default:
1200 return false;
1205 /* Return the basic block holding statement G. */
1207 static inline struct basic_block_def *
1208 gimple_bb (const_gimple g)
1210 return g->gsbase.bb;
1214 /* Return the lexical scope block holding statement G. */
1216 static inline tree
1217 gimple_block (const_gimple g)
1219 return g->gsbase.block;
1223 /* Set BLOCK to be the lexical scope block holding statement G. */
1225 static inline void
1226 gimple_set_block (gimple g, tree block)
1228 g->gsbase.block = block;
1232 /* Return location information for statement G. */
1234 static inline location_t
1235 gimple_location (const_gimple g)
1237 return g->gsbase.location;
1240 /* Return pointer to location information for statement G. */
1242 static inline const location_t *
1243 gimple_location_ptr (const_gimple g)
1245 return &g->gsbase.location;
1249 /* Set location information for statement G. */
1251 static inline void
1252 gimple_set_location (gimple g, location_t location)
1254 g->gsbase.location = location;
1258 /* Return true if G contains location information. */
1260 static inline bool
1261 gimple_has_location (const_gimple g)
1263 return gimple_location (g) != UNKNOWN_LOCATION;
1267 /* Return the file name of the location of STMT. */
1269 static inline const char *
1270 gimple_filename (const_gimple stmt)
1272 return LOCATION_FILE (gimple_location (stmt));
1276 /* Return the line number of the location of STMT. */
1278 static inline int
1279 gimple_lineno (const_gimple stmt)
1281 return LOCATION_LINE (gimple_location (stmt));
1285 /* Determine whether SEQ is a singleton. */
1287 static inline bool
1288 gimple_seq_singleton_p (gimple_seq seq)
1290 return ((gimple_seq_first (seq) != NULL)
1291 && (gimple_seq_first (seq) == gimple_seq_last (seq)));
1294 /* Return true if no warnings should be emitted for statement STMT. */
1296 static inline bool
1297 gimple_no_warning_p (const_gimple stmt)
1299 return stmt->gsbase.no_warning;
1302 /* Set the no_warning flag of STMT to NO_WARNING. */
1304 static inline void
1305 gimple_set_no_warning (gimple stmt, bool no_warning)
1307 stmt->gsbase.no_warning = (unsigned) no_warning;
1310 /* Set the visited status on statement STMT to VISITED_P. */
1312 static inline void
1313 gimple_set_visited (gimple stmt, bool visited_p)
1315 stmt->gsbase.visited = (unsigned) visited_p;
1319 /* Return the visited status for statement STMT. */
1321 static inline bool
1322 gimple_visited_p (gimple stmt)
1324 return stmt->gsbase.visited;
1328 /* Set pass local flag PLF on statement STMT to VAL_P. */
1330 static inline void
1331 gimple_set_plf (gimple stmt, enum plf_mask plf, bool val_p)
1333 if (val_p)
1334 stmt->gsbase.plf |= (unsigned int) plf;
1335 else
1336 stmt->gsbase.plf &= ~((unsigned int) plf);
1340 /* Return the value of pass local flag PLF on statement STMT. */
1342 static inline unsigned int
1343 gimple_plf (gimple stmt, enum plf_mask plf)
1345 return stmt->gsbase.plf & ((unsigned int) plf);
1349 /* Set the UID of statement. */
1351 static inline void
1352 gimple_set_uid (gimple g, unsigned uid)
1354 g->gsbase.uid = uid;
1358 /* Return the UID of statement. */
1360 static inline unsigned
1361 gimple_uid (const_gimple g)
1363 return g->gsbase.uid;
1367 /* Return true if GIMPLE statement G has register or memory operands. */
1369 static inline bool
1370 gimple_has_ops (const_gimple g)
1372 return gimple_code (g) >= GIMPLE_COND && gimple_code (g) <= GIMPLE_RETURN;
1376 /* Return true if GIMPLE statement G has memory operands. */
1378 static inline bool
1379 gimple_has_mem_ops (const_gimple g)
1381 return gimple_code (g) >= GIMPLE_ASSIGN && gimple_code (g) <= GIMPLE_RETURN;
1385 /* Return the set of DEF operands for statement G. */
1387 static inline struct def_optype_d *
1388 gimple_def_ops (const_gimple g)
1390 if (!gimple_has_ops (g))
1391 return NULL;
1392 return g->gsops.opbase.def_ops;
1396 /* Set DEF to be the set of DEF operands for statement G. */
1398 static inline void
1399 gimple_set_def_ops (gimple g, struct def_optype_d *def)
1401 gcc_gimple_checking_assert (gimple_has_ops (g));
1402 g->gsops.opbase.def_ops = def;
1406 /* Return the set of USE operands for statement G. */
1408 static inline struct use_optype_d *
1409 gimple_use_ops (const_gimple g)
1411 if (!gimple_has_ops (g))
1412 return NULL;
1413 return g->gsops.opbase.use_ops;
1417 /* Set USE to be the set of USE operands for statement G. */
1419 static inline void
1420 gimple_set_use_ops (gimple g, struct use_optype_d *use)
1422 gcc_gimple_checking_assert (gimple_has_ops (g));
1423 g->gsops.opbase.use_ops = use;
1427 /* Return the set of VUSE operand for statement G. */
1429 static inline use_operand_p
1430 gimple_vuse_op (const_gimple g)
1432 struct use_optype_d *ops;
1433 if (!gimple_has_mem_ops (g))
1434 return NULL_USE_OPERAND_P;
1435 ops = g->gsops.opbase.use_ops;
1436 if (ops
1437 && USE_OP_PTR (ops)->use == &g->gsmembase.vuse)
1438 return USE_OP_PTR (ops);
1439 return NULL_USE_OPERAND_P;
1442 /* Return the set of VDEF operand for statement G. */
1444 static inline def_operand_p
1445 gimple_vdef_op (const_gimple g)
1447 struct def_optype_d *ops;
1448 if (!gimple_has_mem_ops (g))
1449 return NULL_DEF_OPERAND_P;
1450 ops = g->gsops.opbase.def_ops;
1451 if (ops
1452 && DEF_OP_PTR (ops) == &g->gsmembase.vdef)
1453 return DEF_OP_PTR (ops);
1454 return NULL_DEF_OPERAND_P;
1458 /* Return the single VUSE operand of the statement G. */
1460 static inline tree
1461 gimple_vuse (const_gimple g)
1463 if (!gimple_has_mem_ops (g))
1464 return NULL_TREE;
1465 return g->gsmembase.vuse;
1468 /* Return the single VDEF operand of the statement G. */
1470 static inline tree
1471 gimple_vdef (const_gimple g)
1473 if (!gimple_has_mem_ops (g))
1474 return NULL_TREE;
1475 return g->gsmembase.vdef;
1478 /* Return the single VUSE operand of the statement G. */
1480 static inline tree *
1481 gimple_vuse_ptr (gimple g)
1483 if (!gimple_has_mem_ops (g))
1484 return NULL;
1485 return &g->gsmembase.vuse;
1488 /* Return the single VDEF operand of the statement G. */
1490 static inline tree *
1491 gimple_vdef_ptr (gimple g)
1493 if (!gimple_has_mem_ops (g))
1494 return NULL;
1495 return &g->gsmembase.vdef;
1498 /* Set the single VUSE operand of the statement G. */
1500 static inline void
1501 gimple_set_vuse (gimple g, tree vuse)
1503 gcc_gimple_checking_assert (gimple_has_mem_ops (g));
1504 g->gsmembase.vuse = vuse;
1507 /* Set the single VDEF operand of the statement G. */
1509 static inline void
1510 gimple_set_vdef (gimple g, tree vdef)
1512 gcc_gimple_checking_assert (gimple_has_mem_ops (g));
1513 g->gsmembase.vdef = vdef;
1517 /* Return true if statement G has operands and the modified field has
1518 been set. */
1520 static inline bool
1521 gimple_modified_p (const_gimple g)
1523 return (gimple_has_ops (g)) ? (bool) g->gsbase.modified : false;
1527 /* Return the tree code for the expression computed by STMT. This is
1528 only valid for GIMPLE_COND, GIMPLE_CALL and GIMPLE_ASSIGN. For
1529 GIMPLE_CALL, return CALL_EXPR as the expression code for
1530 consistency. This is useful when the caller needs to deal with the
1531 three kinds of computation that GIMPLE supports. */
1533 static inline enum tree_code
1534 gimple_expr_code (const_gimple stmt)
1536 enum gimple_code code = gimple_code (stmt);
1537 if (code == GIMPLE_ASSIGN || code == GIMPLE_COND)
1538 return (enum tree_code) stmt->gsbase.subcode;
1539 else
1541 gcc_gimple_checking_assert (code == GIMPLE_CALL);
1542 return CALL_EXPR;
1547 /* Mark statement S as modified, and update it. */
1549 static inline void
1550 update_stmt (gimple s)
1552 if (gimple_has_ops (s))
1554 gimple_set_modified (s, true);
1555 update_stmt_operands (s);
1559 /* Update statement S if it has been optimized. */
1561 static inline void
1562 update_stmt_if_modified (gimple s)
1564 if (gimple_modified_p (s))
1565 update_stmt_operands (s);
1568 /* Return true if statement STMT contains volatile operands. */
1570 static inline bool
1571 gimple_has_volatile_ops (const_gimple stmt)
1573 if (gimple_has_mem_ops (stmt))
1574 return stmt->gsbase.has_volatile_ops;
1575 else
1576 return false;
1580 /* Set the HAS_VOLATILE_OPS flag to VOLATILEP. */
1582 static inline void
1583 gimple_set_has_volatile_ops (gimple stmt, bool volatilep)
1585 if (gimple_has_mem_ops (stmt))
1586 stmt->gsbase.has_volatile_ops = (unsigned) volatilep;
1590 /* Return true if statement STMT may access memory. */
1592 static inline bool
1593 gimple_references_memory_p (gimple stmt)
1595 return gimple_has_mem_ops (stmt) && gimple_vuse (stmt);
1599 /* Return the subcode for OMP statement S. */
1601 static inline unsigned
1602 gimple_omp_subcode (const_gimple s)
1604 gcc_gimple_checking_assert (gimple_code (s) >= GIMPLE_OMP_ATOMIC_LOAD
1605 && gimple_code (s) <= GIMPLE_OMP_SINGLE);
1606 return s->gsbase.subcode;
1609 /* Set the subcode for OMP statement S to SUBCODE. */
1611 static inline void
1612 gimple_omp_set_subcode (gimple s, unsigned int subcode)
1614 /* We only have 16 bits for the subcode. Assert that we are not
1615 overflowing it. */
1616 gcc_gimple_checking_assert (subcode < (1 << 16));
1617 s->gsbase.subcode = subcode;
1620 /* Set the nowait flag on OMP_RETURN statement S. */
1622 static inline void
1623 gimple_omp_return_set_nowait (gimple s)
1625 GIMPLE_CHECK (s, GIMPLE_OMP_RETURN);
1626 s->gsbase.subcode |= GF_OMP_RETURN_NOWAIT;
1630 /* Return true if OMP return statement G has the GF_OMP_RETURN_NOWAIT
1631 flag set. */
1633 static inline bool
1634 gimple_omp_return_nowait_p (const_gimple g)
1636 GIMPLE_CHECK (g, GIMPLE_OMP_RETURN);
1637 return (gimple_omp_subcode (g) & GF_OMP_RETURN_NOWAIT) != 0;
1641 /* Return true if OMP section statement G has the GF_OMP_SECTION_LAST
1642 flag set. */
1644 static inline bool
1645 gimple_omp_section_last_p (const_gimple g)
1647 GIMPLE_CHECK (g, GIMPLE_OMP_SECTION);
1648 return (gimple_omp_subcode (g) & GF_OMP_SECTION_LAST) != 0;
1652 /* Set the GF_OMP_SECTION_LAST flag on G. */
1654 static inline void
1655 gimple_omp_section_set_last (gimple g)
1657 GIMPLE_CHECK (g, GIMPLE_OMP_SECTION);
1658 g->gsbase.subcode |= GF_OMP_SECTION_LAST;
1662 /* Return true if OMP parallel statement G has the
1663 GF_OMP_PARALLEL_COMBINED flag set. */
1665 static inline bool
1666 gimple_omp_parallel_combined_p (const_gimple g)
1668 GIMPLE_CHECK (g, GIMPLE_OMP_PARALLEL);
1669 return (gimple_omp_subcode (g) & GF_OMP_PARALLEL_COMBINED) != 0;
1673 /* Set the GF_OMP_PARALLEL_COMBINED field in G depending on the boolean
1674 value of COMBINED_P. */
1676 static inline void
1677 gimple_omp_parallel_set_combined_p (gimple g, bool combined_p)
1679 GIMPLE_CHECK (g, GIMPLE_OMP_PARALLEL);
1680 if (combined_p)
1681 g->gsbase.subcode |= GF_OMP_PARALLEL_COMBINED;
1682 else
1683 g->gsbase.subcode &= ~GF_OMP_PARALLEL_COMBINED;
1687 /* Return true if OMP atomic load/store statement G has the
1688 GF_OMP_ATOMIC_NEED_VALUE flag set. */
1690 static inline bool
1691 gimple_omp_atomic_need_value_p (const_gimple g)
1693 if (gimple_code (g) != GIMPLE_OMP_ATOMIC_LOAD)
1694 GIMPLE_CHECK (g, GIMPLE_OMP_ATOMIC_STORE);
1695 return (gimple_omp_subcode (g) & GF_OMP_ATOMIC_NEED_VALUE) != 0;
1699 /* Set the GF_OMP_ATOMIC_NEED_VALUE flag on G. */
1701 static inline void
1702 gimple_omp_atomic_set_need_value (gimple g)
1704 if (gimple_code (g) != GIMPLE_OMP_ATOMIC_LOAD)
1705 GIMPLE_CHECK (g, GIMPLE_OMP_ATOMIC_STORE);
1706 g->gsbase.subcode |= GF_OMP_ATOMIC_NEED_VALUE;
1710 /* Return the number of operands for statement GS. */
1712 static inline unsigned
1713 gimple_num_ops (const_gimple gs)
1715 return gs->gsbase.num_ops;
1719 /* Set the number of operands for statement GS. */
1721 static inline void
1722 gimple_set_num_ops (gimple gs, unsigned num_ops)
1724 gs->gsbase.num_ops = num_ops;
1728 /* Return the array of operands for statement GS. */
1730 static inline tree *
1731 gimple_ops (gimple gs)
1733 size_t off;
1735 /* All the tuples have their operand vector at the very bottom
1736 of the structure. Note that those structures that do not
1737 have an operand vector have a zero offset. */
1738 off = gimple_ops_offset_[gimple_statement_structure (gs)];
1739 gcc_gimple_checking_assert (off != 0);
1741 return (tree *) ((char *) gs + off);
1745 /* Return operand I for statement GS. */
1747 static inline tree
1748 gimple_op (const_gimple gs, unsigned i)
1750 if (gimple_has_ops (gs))
1752 gcc_gimple_checking_assert (i < gimple_num_ops (gs));
1753 return gimple_ops (CONST_CAST_GIMPLE (gs))[i];
1755 else
1756 return NULL_TREE;
1759 /* Return a pointer to operand I for statement GS. */
1761 static inline tree *
1762 gimple_op_ptr (const_gimple gs, unsigned i)
1764 if (gimple_has_ops (gs))
1766 gcc_gimple_checking_assert (i < gimple_num_ops (gs));
1767 return gimple_ops (CONST_CAST_GIMPLE (gs)) + i;
1769 else
1770 return NULL;
1773 /* Set operand I of statement GS to OP. */
1775 static inline void
1776 gimple_set_op (gimple gs, unsigned i, tree op)
1778 gcc_gimple_checking_assert (gimple_has_ops (gs) && i < gimple_num_ops (gs));
1780 /* Note. It may be tempting to assert that OP matches
1781 is_gimple_operand, but that would be wrong. Different tuples
1782 accept slightly different sets of tree operands. Each caller
1783 should perform its own validation. */
1784 gimple_ops (gs)[i] = op;
1787 /* Return true if GS is a GIMPLE_ASSIGN. */
1789 static inline bool
1790 is_gimple_assign (const_gimple gs)
1792 return gimple_code (gs) == GIMPLE_ASSIGN;
1795 /* Determine if expression CODE is one of the valid expressions that can
1796 be used on the RHS of GIMPLE assignments. */
1798 static inline enum gimple_rhs_class
1799 get_gimple_rhs_class (enum tree_code code)
1801 return (enum gimple_rhs_class) gimple_rhs_class_table[(int) code];
1804 /* Return the LHS of assignment statement GS. */
1806 static inline tree
1807 gimple_assign_lhs (const_gimple gs)
1809 GIMPLE_CHECK (gs, GIMPLE_ASSIGN);
1810 return gimple_op (gs, 0);
1814 /* Return a pointer to the LHS of assignment statement GS. */
1816 static inline tree *
1817 gimple_assign_lhs_ptr (const_gimple gs)
1819 GIMPLE_CHECK (gs, GIMPLE_ASSIGN);
1820 return gimple_op_ptr (gs, 0);
1824 /* Set LHS to be the LHS operand of assignment statement GS. */
1826 static inline void
1827 gimple_assign_set_lhs (gimple gs, tree lhs)
1829 GIMPLE_CHECK (gs, GIMPLE_ASSIGN);
1830 gimple_set_op (gs, 0, lhs);
1832 if (lhs && TREE_CODE (lhs) == SSA_NAME)
1833 SSA_NAME_DEF_STMT (lhs) = gs;
1837 /* Return the first operand on the RHS of assignment statement GS. */
1839 static inline tree
1840 gimple_assign_rhs1 (const_gimple gs)
1842 GIMPLE_CHECK (gs, GIMPLE_ASSIGN);
1843 return gimple_op (gs, 1);
1847 /* Return a pointer to the first operand on the RHS of assignment
1848 statement GS. */
1850 static inline tree *
1851 gimple_assign_rhs1_ptr (const_gimple gs)
1853 GIMPLE_CHECK (gs, GIMPLE_ASSIGN);
1854 return gimple_op_ptr (gs, 1);
1857 /* Set RHS to be the first operand on the RHS of assignment statement GS. */
1859 static inline void
1860 gimple_assign_set_rhs1 (gimple gs, tree rhs)
1862 GIMPLE_CHECK (gs, GIMPLE_ASSIGN);
1864 gimple_set_op (gs, 1, rhs);
1868 /* Return the second operand on the RHS of assignment statement GS.
1869 If GS does not have two operands, NULL is returned instead. */
1871 static inline tree
1872 gimple_assign_rhs2 (const_gimple gs)
1874 GIMPLE_CHECK (gs, GIMPLE_ASSIGN);
1876 if (gimple_num_ops (gs) >= 3)
1877 return gimple_op (gs, 2);
1878 else
1879 return NULL_TREE;
1883 /* Return a pointer to the second operand on the RHS of assignment
1884 statement GS. */
1886 static inline tree *
1887 gimple_assign_rhs2_ptr (const_gimple gs)
1889 GIMPLE_CHECK (gs, GIMPLE_ASSIGN);
1890 return gimple_op_ptr (gs, 2);
1894 /* Set RHS to be the second operand on the RHS of assignment statement GS. */
1896 static inline void
1897 gimple_assign_set_rhs2 (gimple gs, tree rhs)
1899 GIMPLE_CHECK (gs, GIMPLE_ASSIGN);
1901 gimple_set_op (gs, 2, rhs);
1904 /* Return the third operand on the RHS of assignment statement GS.
1905 If GS does not have two operands, NULL is returned instead. */
1907 static inline tree
1908 gimple_assign_rhs3 (const_gimple gs)
1910 GIMPLE_CHECK (gs, GIMPLE_ASSIGN);
1912 if (gimple_num_ops (gs) >= 4)
1913 return gimple_op (gs, 3);
1914 else
1915 return NULL_TREE;
1918 /* Return a pointer to the third operand on the RHS of assignment
1919 statement GS. */
1921 static inline tree *
1922 gimple_assign_rhs3_ptr (const_gimple gs)
1924 GIMPLE_CHECK (gs, GIMPLE_ASSIGN);
1925 return gimple_op_ptr (gs, 3);
1929 /* Set RHS to be the third operand on the RHS of assignment statement GS. */
1931 static inline void
1932 gimple_assign_set_rhs3 (gimple gs, tree rhs)
1934 GIMPLE_CHECK (gs, GIMPLE_ASSIGN);
1936 gimple_set_op (gs, 3, rhs);
1939 /* A wrapper around gimple_assign_set_rhs_with_ops_1, for callers which expect
1940 to see only a maximum of two operands. */
1942 static inline void
1943 gimple_assign_set_rhs_with_ops (gimple_stmt_iterator *gsi, enum tree_code code,
1944 tree op1, tree op2)
1946 gimple_assign_set_rhs_with_ops_1 (gsi, code, op1, op2, NULL);
1949 /* A wrapper around extract_ops_from_tree_1, for callers which expect
1950 to see only a maximum of two operands. */
1952 static inline void
1953 extract_ops_from_tree (tree expr, enum tree_code *code, tree *op0,
1954 tree *op1)
1956 tree op2;
1957 extract_ops_from_tree_1 (expr, code, op0, op1, &op2);
1958 gcc_assert (op2 == NULL_TREE);
1961 /* Returns true if GS is a nontemporal move. */
1963 static inline bool
1964 gimple_assign_nontemporal_move_p (const_gimple gs)
1966 GIMPLE_CHECK (gs, GIMPLE_ASSIGN);
1967 return gs->gsbase.nontemporal_move;
1970 /* Sets nontemporal move flag of GS to NONTEMPORAL. */
1972 static inline void
1973 gimple_assign_set_nontemporal_move (gimple gs, bool nontemporal)
1975 GIMPLE_CHECK (gs, GIMPLE_ASSIGN);
1976 gs->gsbase.nontemporal_move = nontemporal;
1980 /* Return the code of the expression computed on the rhs of assignment
1981 statement GS. In case that the RHS is a single object, returns the
1982 tree code of the object. */
1984 static inline enum tree_code
1985 gimple_assign_rhs_code (const_gimple gs)
1987 enum tree_code code;
1988 GIMPLE_CHECK (gs, GIMPLE_ASSIGN);
1990 code = (enum tree_code) gs->gsbase.subcode;
1991 /* While we initially set subcode to the TREE_CODE of the rhs for
1992 GIMPLE_SINGLE_RHS assigns we do not update that subcode to stay
1993 in sync when we rewrite stmts into SSA form or do SSA propagations. */
1994 if (get_gimple_rhs_class (code) == GIMPLE_SINGLE_RHS)
1995 code = TREE_CODE (gimple_assign_rhs1 (gs));
1997 return code;
2001 /* Set CODE to be the code for the expression computed on the RHS of
2002 assignment S. */
2004 static inline void
2005 gimple_assign_set_rhs_code (gimple s, enum tree_code code)
2007 GIMPLE_CHECK (s, GIMPLE_ASSIGN);
2008 s->gsbase.subcode = code;
2012 /* Return the gimple rhs class of the code of the expression computed on
2013 the rhs of assignment statement GS.
2014 This will never return GIMPLE_INVALID_RHS. */
2016 static inline enum gimple_rhs_class
2017 gimple_assign_rhs_class (const_gimple gs)
2019 return get_gimple_rhs_class (gimple_assign_rhs_code (gs));
2022 /* Return true if GS is an assignment with a singleton RHS, i.e.,
2023 there is no operator associated with the assignment itself.
2024 Unlike gimple_assign_copy_p, this predicate returns true for
2025 any RHS operand, including those that perform an operation
2026 and do not have the semantics of a copy, such as COND_EXPR. */
2028 static inline bool
2029 gimple_assign_single_p (gimple gs)
2031 return (is_gimple_assign (gs)
2032 && gimple_assign_rhs_class (gs) == GIMPLE_SINGLE_RHS);
2036 /* Return true if S is a type-cast assignment. */
2038 static inline bool
2039 gimple_assign_cast_p (gimple s)
2041 if (is_gimple_assign (s))
2043 enum tree_code sc = gimple_assign_rhs_code (s);
2044 return CONVERT_EXPR_CODE_P (sc)
2045 || sc == VIEW_CONVERT_EXPR
2046 || sc == FIX_TRUNC_EXPR;
2049 return false;
2052 /* Return true if S is a clobber statement. */
2054 static inline bool
2055 gimple_clobber_p (gimple s)
2057 return gimple_assign_single_p (s)
2058 && TREE_CLOBBER_P (gimple_assign_rhs1 (s));
2061 /* Return true if GS is a GIMPLE_CALL. */
2063 static inline bool
2064 is_gimple_call (const_gimple gs)
2066 return gimple_code (gs) == GIMPLE_CALL;
2069 /* Return the LHS of call statement GS. */
2071 static inline tree
2072 gimple_call_lhs (const_gimple gs)
2074 GIMPLE_CHECK (gs, GIMPLE_CALL);
2075 return gimple_op (gs, 0);
2079 /* Return a pointer to the LHS of call statement GS. */
2081 static inline tree *
2082 gimple_call_lhs_ptr (const_gimple gs)
2084 GIMPLE_CHECK (gs, GIMPLE_CALL);
2085 return gimple_op_ptr (gs, 0);
2089 /* Set LHS to be the LHS operand of call statement GS. */
2091 static inline void
2092 gimple_call_set_lhs (gimple gs, tree lhs)
2094 GIMPLE_CHECK (gs, GIMPLE_CALL);
2095 gimple_set_op (gs, 0, lhs);
2096 if (lhs && TREE_CODE (lhs) == SSA_NAME)
2097 SSA_NAME_DEF_STMT (lhs) = gs;
2101 /* Return true if call GS calls an internal-only function, as enumerated
2102 by internal_fn. */
2104 static inline bool
2105 gimple_call_internal_p (const_gimple gs)
2107 GIMPLE_CHECK (gs, GIMPLE_CALL);
2108 return (gs->gsbase.subcode & GF_CALL_INTERNAL) != 0;
2112 /* Return the target of internal call GS. */
2114 static inline enum internal_fn
2115 gimple_call_internal_fn (const_gimple gs)
2117 gcc_gimple_checking_assert (gimple_call_internal_p (gs));
2118 return gs->gimple_call.u.internal_fn;
2122 /* Return the function type of the function called by GS. */
2124 static inline tree
2125 gimple_call_fntype (const_gimple gs)
2127 GIMPLE_CHECK (gs, GIMPLE_CALL);
2128 if (gimple_call_internal_p (gs))
2129 return NULL_TREE;
2130 return gs->gimple_call.u.fntype;
2133 /* Set the type of the function called by GS to FNTYPE. */
2135 static inline void
2136 gimple_call_set_fntype (gimple gs, tree fntype)
2138 GIMPLE_CHECK (gs, GIMPLE_CALL);
2139 gcc_gimple_checking_assert (!gimple_call_internal_p (gs));
2140 gs->gimple_call.u.fntype = fntype;
2144 /* Return the tree node representing the function called by call
2145 statement GS. */
2147 static inline tree
2148 gimple_call_fn (const_gimple gs)
2150 GIMPLE_CHECK (gs, GIMPLE_CALL);
2151 return gimple_op (gs, 1);
2154 /* Return a pointer to the tree node representing the function called by call
2155 statement GS. */
2157 static inline tree *
2158 gimple_call_fn_ptr (const_gimple gs)
2160 GIMPLE_CHECK (gs, GIMPLE_CALL);
2161 return gimple_op_ptr (gs, 1);
2165 /* Set FN to be the function called by call statement GS. */
2167 static inline void
2168 gimple_call_set_fn (gimple gs, tree fn)
2170 GIMPLE_CHECK (gs, GIMPLE_CALL);
2171 gcc_gimple_checking_assert (!gimple_call_internal_p (gs));
2172 gimple_set_op (gs, 1, fn);
2176 /* Set FNDECL to be the function called by call statement GS. */
2178 static inline void
2179 gimple_call_set_fndecl (gimple gs, tree decl)
2181 GIMPLE_CHECK (gs, GIMPLE_CALL);
2182 gcc_gimple_checking_assert (!gimple_call_internal_p (gs));
2183 gimple_set_op (gs, 1, build_fold_addr_expr_loc (gimple_location (gs), decl));
2187 /* Set internal function FN to be the function called by call statement GS. */
2189 static inline void
2190 gimple_call_set_internal_fn (gimple gs, enum internal_fn fn)
2192 GIMPLE_CHECK (gs, GIMPLE_CALL);
2193 gcc_gimple_checking_assert (gimple_call_internal_p (gs));
2194 gs->gimple_call.u.internal_fn = fn;
2198 /* Given a valid GIMPLE_CALL function address return the FUNCTION_DECL
2199 associated with the callee if known. Otherwise return NULL_TREE. */
2201 static inline tree
2202 gimple_call_addr_fndecl (const_tree fn)
2204 if (fn && TREE_CODE (fn) == ADDR_EXPR)
2206 tree fndecl = TREE_OPERAND (fn, 0);
2207 if (TREE_CODE (fndecl) == MEM_REF
2208 && TREE_CODE (TREE_OPERAND (fndecl, 0)) == ADDR_EXPR
2209 && integer_zerop (TREE_OPERAND (fndecl, 1)))
2210 fndecl = TREE_OPERAND (TREE_OPERAND (fndecl, 0), 0);
2211 if (TREE_CODE (fndecl) == FUNCTION_DECL)
2212 return fndecl;
2214 return NULL_TREE;
2217 /* If a given GIMPLE_CALL's callee is a FUNCTION_DECL, return it.
2218 Otherwise return NULL. This function is analogous to
2219 get_callee_fndecl in tree land. */
2221 static inline tree
2222 gimple_call_fndecl (const_gimple gs)
2224 return gimple_call_addr_fndecl (gimple_call_fn (gs));
2228 /* Return the type returned by call statement GS. */
2230 static inline tree
2231 gimple_call_return_type (const_gimple gs)
2233 tree type = gimple_call_fntype (gs);
2235 if (type == NULL_TREE)
2236 return TREE_TYPE (gimple_call_lhs (gs));
2238 /* The type returned by a function is the type of its
2239 function type. */
2240 return TREE_TYPE (type);
2244 /* Return the static chain for call statement GS. */
2246 static inline tree
2247 gimple_call_chain (const_gimple gs)
2249 GIMPLE_CHECK (gs, GIMPLE_CALL);
2250 return gimple_op (gs, 2);
2254 /* Return a pointer to the static chain for call statement GS. */
2256 static inline tree *
2257 gimple_call_chain_ptr (const_gimple gs)
2259 GIMPLE_CHECK (gs, GIMPLE_CALL);
2260 return gimple_op_ptr (gs, 2);
2263 /* Set CHAIN to be the static chain for call statement GS. */
2265 static inline void
2266 gimple_call_set_chain (gimple gs, tree chain)
2268 GIMPLE_CHECK (gs, GIMPLE_CALL);
2270 gimple_set_op (gs, 2, chain);
2274 /* Return the number of arguments used by call statement GS. */
2276 static inline unsigned
2277 gimple_call_num_args (const_gimple gs)
2279 unsigned num_ops;
2280 GIMPLE_CHECK (gs, GIMPLE_CALL);
2281 num_ops = gimple_num_ops (gs);
2282 return num_ops - 3;
2286 /* Return the argument at position INDEX for call statement GS. */
2288 static inline tree
2289 gimple_call_arg (const_gimple gs, unsigned index)
2291 GIMPLE_CHECK (gs, GIMPLE_CALL);
2292 return gimple_op (gs, index + 3);
2296 /* Return a pointer to the argument at position INDEX for call
2297 statement GS. */
2299 static inline tree *
2300 gimple_call_arg_ptr (const_gimple gs, unsigned index)
2302 GIMPLE_CHECK (gs, GIMPLE_CALL);
2303 return gimple_op_ptr (gs, index + 3);
2307 /* Set ARG to be the argument at position INDEX for call statement GS. */
2309 static inline void
2310 gimple_call_set_arg (gimple gs, unsigned index, tree arg)
2312 GIMPLE_CHECK (gs, GIMPLE_CALL);
2313 gimple_set_op (gs, index + 3, arg);
2317 /* If TAIL_P is true, mark call statement S as being a tail call
2318 (i.e., a call just before the exit of a function). These calls are
2319 candidate for tail call optimization. */
2321 static inline void
2322 gimple_call_set_tail (gimple s, bool tail_p)
2324 GIMPLE_CHECK (s, GIMPLE_CALL);
2325 if (tail_p)
2326 s->gsbase.subcode |= GF_CALL_TAILCALL;
2327 else
2328 s->gsbase.subcode &= ~GF_CALL_TAILCALL;
2332 /* Return true if GIMPLE_CALL S is marked as a tail call. */
2334 static inline bool
2335 gimple_call_tail_p (gimple s)
2337 GIMPLE_CHECK (s, GIMPLE_CALL);
2338 return (s->gsbase.subcode & GF_CALL_TAILCALL) != 0;
2342 /* If RETURN_SLOT_OPT_P is true mark GIMPLE_CALL S as valid for return
2343 slot optimization. This transformation uses the target of the call
2344 expansion as the return slot for calls that return in memory. */
2346 static inline void
2347 gimple_call_set_return_slot_opt (gimple s, bool return_slot_opt_p)
2349 GIMPLE_CHECK (s, GIMPLE_CALL);
2350 if (return_slot_opt_p)
2351 s->gsbase.subcode |= GF_CALL_RETURN_SLOT_OPT;
2352 else
2353 s->gsbase.subcode &= ~GF_CALL_RETURN_SLOT_OPT;
2357 /* Return true if S is marked for return slot optimization. */
2359 static inline bool
2360 gimple_call_return_slot_opt_p (gimple s)
2362 GIMPLE_CHECK (s, GIMPLE_CALL);
2363 return (s->gsbase.subcode & GF_CALL_RETURN_SLOT_OPT) != 0;
2367 /* If FROM_THUNK_P is true, mark GIMPLE_CALL S as being the jump from a
2368 thunk to the thunked-to function. */
2370 static inline void
2371 gimple_call_set_from_thunk (gimple s, bool from_thunk_p)
2373 GIMPLE_CHECK (s, GIMPLE_CALL);
2374 if (from_thunk_p)
2375 s->gsbase.subcode |= GF_CALL_FROM_THUNK;
2376 else
2377 s->gsbase.subcode &= ~GF_CALL_FROM_THUNK;
2381 /* Return true if GIMPLE_CALL S is a jump from a thunk. */
2383 static inline bool
2384 gimple_call_from_thunk_p (gimple s)
2386 GIMPLE_CHECK (s, GIMPLE_CALL);
2387 return (s->gsbase.subcode & GF_CALL_FROM_THUNK) != 0;
2391 /* If PASS_ARG_PACK_P is true, GIMPLE_CALL S is a stdarg call that needs the
2392 argument pack in its argument list. */
2394 static inline void
2395 gimple_call_set_va_arg_pack (gimple s, bool pass_arg_pack_p)
2397 GIMPLE_CHECK (s, GIMPLE_CALL);
2398 if (pass_arg_pack_p)
2399 s->gsbase.subcode |= GF_CALL_VA_ARG_PACK;
2400 else
2401 s->gsbase.subcode &= ~GF_CALL_VA_ARG_PACK;
2405 /* Return true if GIMPLE_CALL S is a stdarg call that needs the
2406 argument pack in its argument list. */
2408 static inline bool
2409 gimple_call_va_arg_pack_p (gimple s)
2411 GIMPLE_CHECK (s, GIMPLE_CALL);
2412 return (s->gsbase.subcode & GF_CALL_VA_ARG_PACK) != 0;
2416 /* Return true if S is a noreturn call. */
2418 static inline bool
2419 gimple_call_noreturn_p (gimple s)
2421 GIMPLE_CHECK (s, GIMPLE_CALL);
2422 return (gimple_call_flags (s) & ECF_NORETURN) != 0;
2426 /* If NOTHROW_P is true, GIMPLE_CALL S is a call that is known to not throw
2427 even if the called function can throw in other cases. */
2429 static inline void
2430 gimple_call_set_nothrow (gimple s, bool nothrow_p)
2432 GIMPLE_CHECK (s, GIMPLE_CALL);
2433 if (nothrow_p)
2434 s->gsbase.subcode |= GF_CALL_NOTHROW;
2435 else
2436 s->gsbase.subcode &= ~GF_CALL_NOTHROW;
2439 /* Return true if S is a nothrow call. */
2441 static inline bool
2442 gimple_call_nothrow_p (gimple s)
2444 GIMPLE_CHECK (s, GIMPLE_CALL);
2445 return (gimple_call_flags (s) & ECF_NOTHROW) != 0;
2448 /* If FOR_VAR is true, GIMPLE_CALL S is a call to builtin_alloca that
2449 is known to be emitted for VLA objects. Those are wrapped by
2450 stack_save/stack_restore calls and hence can't lead to unbounded
2451 stack growth even when they occur in loops. */
2453 static inline void
2454 gimple_call_set_alloca_for_var (gimple s, bool for_var)
2456 GIMPLE_CHECK (s, GIMPLE_CALL);
2457 if (for_var)
2458 s->gsbase.subcode |= GF_CALL_ALLOCA_FOR_VAR;
2459 else
2460 s->gsbase.subcode &= ~GF_CALL_ALLOCA_FOR_VAR;
2463 /* Return true of S is a call to builtin_alloca emitted for VLA objects. */
2465 static inline bool
2466 gimple_call_alloca_for_var_p (gimple s)
2468 GIMPLE_CHECK (s, GIMPLE_CALL);
2469 return (s->gsbase.subcode & GF_CALL_ALLOCA_FOR_VAR) != 0;
2472 /* Copy all the GF_CALL_* flags from ORIG_CALL to DEST_CALL. */
2474 static inline void
2475 gimple_call_copy_flags (gimple dest_call, gimple orig_call)
2477 GIMPLE_CHECK (dest_call, GIMPLE_CALL);
2478 GIMPLE_CHECK (orig_call, GIMPLE_CALL);
2479 dest_call->gsbase.subcode = orig_call->gsbase.subcode;
2483 /* Return a pointer to the points-to solution for the set of call-used
2484 variables of the call CALL. */
2486 static inline struct pt_solution *
2487 gimple_call_use_set (gimple call)
2489 GIMPLE_CHECK (call, GIMPLE_CALL);
2490 return &call->gimple_call.call_used;
2494 /* Return a pointer to the points-to solution for the set of call-used
2495 variables of the call CALL. */
2497 static inline struct pt_solution *
2498 gimple_call_clobber_set (gimple call)
2500 GIMPLE_CHECK (call, GIMPLE_CALL);
2501 return &call->gimple_call.call_clobbered;
2505 /* Returns true if this is a GIMPLE_ASSIGN or a GIMPLE_CALL with a
2506 non-NULL lhs. */
2508 static inline bool
2509 gimple_has_lhs (gimple stmt)
2511 return (is_gimple_assign (stmt)
2512 || (is_gimple_call (stmt)
2513 && gimple_call_lhs (stmt) != NULL_TREE));
2517 /* Return the code of the predicate computed by conditional statement GS. */
2519 static inline enum tree_code
2520 gimple_cond_code (const_gimple gs)
2522 GIMPLE_CHECK (gs, GIMPLE_COND);
2523 return (enum tree_code) gs->gsbase.subcode;
2527 /* Set CODE to be the predicate code for the conditional statement GS. */
2529 static inline void
2530 gimple_cond_set_code (gimple gs, enum tree_code code)
2532 GIMPLE_CHECK (gs, GIMPLE_COND);
2533 gs->gsbase.subcode = code;
2537 /* Return the LHS of the predicate computed by conditional statement GS. */
2539 static inline tree
2540 gimple_cond_lhs (const_gimple gs)
2542 GIMPLE_CHECK (gs, GIMPLE_COND);
2543 return gimple_op (gs, 0);
2546 /* Return the pointer to the LHS of the predicate computed by conditional
2547 statement GS. */
2549 static inline tree *
2550 gimple_cond_lhs_ptr (const_gimple gs)
2552 GIMPLE_CHECK (gs, GIMPLE_COND);
2553 return gimple_op_ptr (gs, 0);
2556 /* Set LHS to be the LHS operand of the predicate computed by
2557 conditional statement GS. */
2559 static inline void
2560 gimple_cond_set_lhs (gimple gs, tree lhs)
2562 GIMPLE_CHECK (gs, GIMPLE_COND);
2563 gimple_set_op (gs, 0, lhs);
2567 /* Return the RHS operand of the predicate computed by conditional GS. */
2569 static inline tree
2570 gimple_cond_rhs (const_gimple gs)
2572 GIMPLE_CHECK (gs, GIMPLE_COND);
2573 return gimple_op (gs, 1);
2576 /* Return the pointer to the RHS operand of the predicate computed by
2577 conditional GS. */
2579 static inline tree *
2580 gimple_cond_rhs_ptr (const_gimple gs)
2582 GIMPLE_CHECK (gs, GIMPLE_COND);
2583 return gimple_op_ptr (gs, 1);
2587 /* Set RHS to be the RHS operand of the predicate computed by
2588 conditional statement GS. */
2590 static inline void
2591 gimple_cond_set_rhs (gimple gs, tree rhs)
2593 GIMPLE_CHECK (gs, GIMPLE_COND);
2594 gimple_set_op (gs, 1, rhs);
2598 /* Return the label used by conditional statement GS when its
2599 predicate evaluates to true. */
2601 static inline tree
2602 gimple_cond_true_label (const_gimple gs)
2604 GIMPLE_CHECK (gs, GIMPLE_COND);
2605 return gimple_op (gs, 2);
2609 /* Set LABEL to be the label used by conditional statement GS when its
2610 predicate evaluates to true. */
2612 static inline void
2613 gimple_cond_set_true_label (gimple gs, tree label)
2615 GIMPLE_CHECK (gs, GIMPLE_COND);
2616 gimple_set_op (gs, 2, label);
2620 /* Set LABEL to be the label used by conditional statement GS when its
2621 predicate evaluates to false. */
2623 static inline void
2624 gimple_cond_set_false_label (gimple gs, tree label)
2626 GIMPLE_CHECK (gs, GIMPLE_COND);
2627 gimple_set_op (gs, 3, label);
2631 /* Return the label used by conditional statement GS when its
2632 predicate evaluates to false. */
2634 static inline tree
2635 gimple_cond_false_label (const_gimple gs)
2637 GIMPLE_CHECK (gs, GIMPLE_COND);
2638 return gimple_op (gs, 3);
2642 /* Set the conditional COND_STMT to be of the form 'if (1 == 0)'. */
2644 static inline void
2645 gimple_cond_make_false (gimple gs)
2647 gimple_cond_set_lhs (gs, boolean_true_node);
2648 gimple_cond_set_rhs (gs, boolean_false_node);
2649 gs->gsbase.subcode = EQ_EXPR;
2653 /* Set the conditional COND_STMT to be of the form 'if (1 == 1)'. */
2655 static inline void
2656 gimple_cond_make_true (gimple gs)
2658 gimple_cond_set_lhs (gs, boolean_true_node);
2659 gimple_cond_set_rhs (gs, boolean_true_node);
2660 gs->gsbase.subcode = EQ_EXPR;
2663 /* Check if conditional statemente GS is of the form 'if (1 == 1)',
2664 'if (0 == 0)', 'if (1 != 0)' or 'if (0 != 1)' */
2666 static inline bool
2667 gimple_cond_true_p (const_gimple gs)
2669 tree lhs = gimple_cond_lhs (gs);
2670 tree rhs = gimple_cond_rhs (gs);
2671 enum tree_code code = gimple_cond_code (gs);
2673 if (lhs != boolean_true_node && lhs != boolean_false_node)
2674 return false;
2676 if (rhs != boolean_true_node && rhs != boolean_false_node)
2677 return false;
2679 if (code == NE_EXPR && lhs != rhs)
2680 return true;
2682 if (code == EQ_EXPR && lhs == rhs)
2683 return true;
2685 return false;
2688 /* Check if conditional statement GS is of the form 'if (1 != 1)',
2689 'if (0 != 0)', 'if (1 == 0)' or 'if (0 == 1)' */
2691 static inline bool
2692 gimple_cond_false_p (const_gimple gs)
2694 tree lhs = gimple_cond_lhs (gs);
2695 tree rhs = gimple_cond_rhs (gs);
2696 enum tree_code code = gimple_cond_code (gs);
2698 if (lhs != boolean_true_node && lhs != boolean_false_node)
2699 return false;
2701 if (rhs != boolean_true_node && rhs != boolean_false_node)
2702 return false;
2704 if (code == NE_EXPR && lhs == rhs)
2705 return true;
2707 if (code == EQ_EXPR && lhs != rhs)
2708 return true;
2710 return false;
2713 /* Check if conditional statement GS is of the form 'if (var != 0)' or
2714 'if (var == 1)' */
2716 static inline bool
2717 gimple_cond_single_var_p (gimple gs)
2719 if (gimple_cond_code (gs) == NE_EXPR
2720 && gimple_cond_rhs (gs) == boolean_false_node)
2721 return true;
2723 if (gimple_cond_code (gs) == EQ_EXPR
2724 && gimple_cond_rhs (gs) == boolean_true_node)
2725 return true;
2727 return false;
2730 /* Set the code, LHS and RHS of GIMPLE_COND STMT from CODE, LHS and RHS. */
2732 static inline void
2733 gimple_cond_set_condition (gimple stmt, enum tree_code code, tree lhs, tree rhs)
2735 gimple_cond_set_code (stmt, code);
2736 gimple_cond_set_lhs (stmt, lhs);
2737 gimple_cond_set_rhs (stmt, rhs);
2740 /* Return the LABEL_DECL node used by GIMPLE_LABEL statement GS. */
2742 static inline tree
2743 gimple_label_label (const_gimple gs)
2745 GIMPLE_CHECK (gs, GIMPLE_LABEL);
2746 return gimple_op (gs, 0);
2750 /* Set LABEL to be the LABEL_DECL node used by GIMPLE_LABEL statement
2751 GS. */
2753 static inline void
2754 gimple_label_set_label (gimple gs, tree label)
2756 GIMPLE_CHECK (gs, GIMPLE_LABEL);
2757 gimple_set_op (gs, 0, label);
2761 /* Return the destination of the unconditional jump GS. */
2763 static inline tree
2764 gimple_goto_dest (const_gimple gs)
2766 GIMPLE_CHECK (gs, GIMPLE_GOTO);
2767 return gimple_op (gs, 0);
2771 /* Set DEST to be the destination of the unconditonal jump GS. */
2773 static inline void
2774 gimple_goto_set_dest (gimple gs, tree dest)
2776 GIMPLE_CHECK (gs, GIMPLE_GOTO);
2777 gimple_set_op (gs, 0, dest);
2781 /* Return the variables declared in the GIMPLE_BIND statement GS. */
2783 static inline tree
2784 gimple_bind_vars (const_gimple gs)
2786 GIMPLE_CHECK (gs, GIMPLE_BIND);
2787 return gs->gimple_bind.vars;
2791 /* Set VARS to be the set of variables declared in the GIMPLE_BIND
2792 statement GS. */
2794 static inline void
2795 gimple_bind_set_vars (gimple gs, tree vars)
2797 GIMPLE_CHECK (gs, GIMPLE_BIND);
2798 gs->gimple_bind.vars = vars;
2802 /* Append VARS to the set of variables declared in the GIMPLE_BIND
2803 statement GS. */
2805 static inline void
2806 gimple_bind_append_vars (gimple gs, tree vars)
2808 GIMPLE_CHECK (gs, GIMPLE_BIND);
2809 gs->gimple_bind.vars = chainon (gs->gimple_bind.vars, vars);
2813 /* Return the GIMPLE sequence contained in the GIMPLE_BIND statement GS. */
2815 static inline gimple_seq
2816 gimple_bind_body (gimple gs)
2818 GIMPLE_CHECK (gs, GIMPLE_BIND);
2819 return gs->gimple_bind.body;
2823 /* Set SEQ to be the GIMPLE sequence contained in the GIMPLE_BIND
2824 statement GS. */
2826 static inline void
2827 gimple_bind_set_body (gimple gs, gimple_seq seq)
2829 GIMPLE_CHECK (gs, GIMPLE_BIND);
2830 gs->gimple_bind.body = seq;
2834 /* Append a statement to the end of a GIMPLE_BIND's body. */
2836 static inline void
2837 gimple_bind_add_stmt (gimple gs, gimple stmt)
2839 GIMPLE_CHECK (gs, GIMPLE_BIND);
2840 gimple_seq_add_stmt (&gs->gimple_bind.body, stmt);
2844 /* Append a sequence of statements to the end of a GIMPLE_BIND's body. */
2846 static inline void
2847 gimple_bind_add_seq (gimple gs, gimple_seq seq)
2849 GIMPLE_CHECK (gs, GIMPLE_BIND);
2850 gimple_seq_add_seq (&gs->gimple_bind.body, seq);
2854 /* Return the TREE_BLOCK node associated with GIMPLE_BIND statement
2855 GS. This is analogous to the BIND_EXPR_BLOCK field in trees. */
2857 static inline tree
2858 gimple_bind_block (const_gimple gs)
2860 GIMPLE_CHECK (gs, GIMPLE_BIND);
2861 return gs->gimple_bind.block;
2865 /* Set BLOCK to be the TREE_BLOCK node associated with GIMPLE_BIND
2866 statement GS. */
2868 static inline void
2869 gimple_bind_set_block (gimple gs, tree block)
2871 GIMPLE_CHECK (gs, GIMPLE_BIND);
2872 gcc_gimple_checking_assert (block == NULL_TREE
2873 || TREE_CODE (block) == BLOCK);
2874 gs->gimple_bind.block = block;
2878 /* Return the number of input operands for GIMPLE_ASM GS. */
2880 static inline unsigned
2881 gimple_asm_ninputs (const_gimple gs)
2883 GIMPLE_CHECK (gs, GIMPLE_ASM);
2884 return gs->gimple_asm.ni;
2888 /* Return the number of output operands for GIMPLE_ASM GS. */
2890 static inline unsigned
2891 gimple_asm_noutputs (const_gimple gs)
2893 GIMPLE_CHECK (gs, GIMPLE_ASM);
2894 return gs->gimple_asm.no;
2898 /* Return the number of clobber operands for GIMPLE_ASM GS. */
2900 static inline unsigned
2901 gimple_asm_nclobbers (const_gimple gs)
2903 GIMPLE_CHECK (gs, GIMPLE_ASM);
2904 return gs->gimple_asm.nc;
2907 /* Return the number of label operands for GIMPLE_ASM GS. */
2909 static inline unsigned
2910 gimple_asm_nlabels (const_gimple gs)
2912 GIMPLE_CHECK (gs, GIMPLE_ASM);
2913 return gs->gimple_asm.nl;
2916 /* Return input operand INDEX of GIMPLE_ASM GS. */
2918 static inline tree
2919 gimple_asm_input_op (const_gimple gs, unsigned index)
2921 GIMPLE_CHECK (gs, GIMPLE_ASM);
2922 gcc_gimple_checking_assert (index <= gs->gimple_asm.ni);
2923 return gimple_op (gs, index);
2926 /* Return a pointer to input operand INDEX of GIMPLE_ASM GS. */
2928 static inline tree *
2929 gimple_asm_input_op_ptr (const_gimple gs, unsigned index)
2931 GIMPLE_CHECK (gs, GIMPLE_ASM);
2932 gcc_gimple_checking_assert (index <= gs->gimple_asm.ni);
2933 return gimple_op_ptr (gs, index);
2937 /* Set IN_OP to be input operand INDEX in GIMPLE_ASM GS. */
2939 static inline void
2940 gimple_asm_set_input_op (gimple gs, unsigned index, tree in_op)
2942 GIMPLE_CHECK (gs, GIMPLE_ASM);
2943 gcc_gimple_checking_assert (index <= gs->gimple_asm.ni
2944 && TREE_CODE (in_op) == TREE_LIST);
2945 gimple_set_op (gs, index, in_op);
2949 /* Return output operand INDEX of GIMPLE_ASM GS. */
2951 static inline tree
2952 gimple_asm_output_op (const_gimple gs, unsigned index)
2954 GIMPLE_CHECK (gs, GIMPLE_ASM);
2955 gcc_gimple_checking_assert (index <= gs->gimple_asm.no);
2956 return gimple_op (gs, index + gs->gimple_asm.ni);
2959 /* Return a pointer to output operand INDEX of GIMPLE_ASM GS. */
2961 static inline tree *
2962 gimple_asm_output_op_ptr (const_gimple gs, unsigned index)
2964 GIMPLE_CHECK (gs, GIMPLE_ASM);
2965 gcc_gimple_checking_assert (index <= gs->gimple_asm.no);
2966 return gimple_op_ptr (gs, index + gs->gimple_asm.ni);
2970 /* Set OUT_OP to be output operand INDEX in GIMPLE_ASM GS. */
2972 static inline void
2973 gimple_asm_set_output_op (gimple gs, unsigned index, tree out_op)
2975 GIMPLE_CHECK (gs, GIMPLE_ASM);
2976 gcc_gimple_checking_assert (index <= gs->gimple_asm.no
2977 && TREE_CODE (out_op) == TREE_LIST);
2978 gimple_set_op (gs, index + gs->gimple_asm.ni, out_op);
2982 /* Return clobber operand INDEX of GIMPLE_ASM GS. */
2984 static inline tree
2985 gimple_asm_clobber_op (const_gimple gs, unsigned index)
2987 GIMPLE_CHECK (gs, GIMPLE_ASM);
2988 gcc_gimple_checking_assert (index <= gs->gimple_asm.nc);
2989 return gimple_op (gs, index + gs->gimple_asm.ni + gs->gimple_asm.no);
2993 /* Set CLOBBER_OP to be clobber operand INDEX in GIMPLE_ASM GS. */
2995 static inline void
2996 gimple_asm_set_clobber_op (gimple gs, unsigned index, tree clobber_op)
2998 GIMPLE_CHECK (gs, GIMPLE_ASM);
2999 gcc_gimple_checking_assert (index <= gs->gimple_asm.nc
3000 && TREE_CODE (clobber_op) == TREE_LIST);
3001 gimple_set_op (gs, index + gs->gimple_asm.ni + gs->gimple_asm.no, clobber_op);
3004 /* Return label operand INDEX of GIMPLE_ASM GS. */
3006 static inline tree
3007 gimple_asm_label_op (const_gimple gs, unsigned index)
3009 GIMPLE_CHECK (gs, GIMPLE_ASM);
3010 gcc_gimple_checking_assert (index <= gs->gimple_asm.nl);
3011 return gimple_op (gs, index + gs->gimple_asm.ni + gs->gimple_asm.nc);
3014 /* Set LABEL_OP to be label operand INDEX in GIMPLE_ASM GS. */
3016 static inline void
3017 gimple_asm_set_label_op (gimple gs, unsigned index, tree label_op)
3019 GIMPLE_CHECK (gs, GIMPLE_ASM);
3020 gcc_gimple_checking_assert (index <= gs->gimple_asm.nl
3021 && TREE_CODE (label_op) == TREE_LIST);
3022 gimple_set_op (gs, index + gs->gimple_asm.ni + gs->gimple_asm.nc, label_op);
3025 /* Return the string representing the assembly instruction in
3026 GIMPLE_ASM GS. */
3028 static inline const char *
3029 gimple_asm_string (const_gimple gs)
3031 GIMPLE_CHECK (gs, GIMPLE_ASM);
3032 return gs->gimple_asm.string;
3036 /* Return true if GS is an asm statement marked volatile. */
3038 static inline bool
3039 gimple_asm_volatile_p (const_gimple gs)
3041 GIMPLE_CHECK (gs, GIMPLE_ASM);
3042 return (gs->gsbase.subcode & GF_ASM_VOLATILE) != 0;
3046 /* If VOLATLE_P is true, mark asm statement GS as volatile. */
3048 static inline void
3049 gimple_asm_set_volatile (gimple gs, bool volatile_p)
3051 GIMPLE_CHECK (gs, GIMPLE_ASM);
3052 if (volatile_p)
3053 gs->gsbase.subcode |= GF_ASM_VOLATILE;
3054 else
3055 gs->gsbase.subcode &= ~GF_ASM_VOLATILE;
3059 /* If INPUT_P is true, mark asm GS as an ASM_INPUT. */
3061 static inline void
3062 gimple_asm_set_input (gimple gs, bool input_p)
3064 GIMPLE_CHECK (gs, GIMPLE_ASM);
3065 if (input_p)
3066 gs->gsbase.subcode |= GF_ASM_INPUT;
3067 else
3068 gs->gsbase.subcode &= ~GF_ASM_INPUT;
3072 /* Return true if asm GS is an ASM_INPUT. */
3074 static inline bool
3075 gimple_asm_input_p (const_gimple gs)
3077 GIMPLE_CHECK (gs, GIMPLE_ASM);
3078 return (gs->gsbase.subcode & GF_ASM_INPUT) != 0;
3082 /* Return the types handled by GIMPLE_CATCH statement GS. */
3084 static inline tree
3085 gimple_catch_types (const_gimple gs)
3087 GIMPLE_CHECK (gs, GIMPLE_CATCH);
3088 return gs->gimple_catch.types;
3092 /* Return a pointer to the types handled by GIMPLE_CATCH statement GS. */
3094 static inline tree *
3095 gimple_catch_types_ptr (gimple gs)
3097 GIMPLE_CHECK (gs, GIMPLE_CATCH);
3098 return &gs->gimple_catch.types;
3102 /* Return the GIMPLE sequence representing the body of the handler of
3103 GIMPLE_CATCH statement GS. */
3105 static inline gimple_seq
3106 gimple_catch_handler (gimple gs)
3108 GIMPLE_CHECK (gs, GIMPLE_CATCH);
3109 return gs->gimple_catch.handler;
3113 /* Return a pointer to the GIMPLE sequence representing the body of
3114 the handler of GIMPLE_CATCH statement GS. */
3116 static inline gimple_seq *
3117 gimple_catch_handler_ptr (gimple gs)
3119 GIMPLE_CHECK (gs, GIMPLE_CATCH);
3120 return &gs->gimple_catch.handler;
3124 /* Set T to be the set of types handled by GIMPLE_CATCH GS. */
3126 static inline void
3127 gimple_catch_set_types (gimple gs, tree t)
3129 GIMPLE_CHECK (gs, GIMPLE_CATCH);
3130 gs->gimple_catch.types = t;
3134 /* Set HANDLER to be the body of GIMPLE_CATCH GS. */
3136 static inline void
3137 gimple_catch_set_handler (gimple gs, gimple_seq handler)
3139 GIMPLE_CHECK (gs, GIMPLE_CATCH);
3140 gs->gimple_catch.handler = handler;
3144 /* Return the types handled by GIMPLE_EH_FILTER statement GS. */
3146 static inline tree
3147 gimple_eh_filter_types (const_gimple gs)
3149 GIMPLE_CHECK (gs, GIMPLE_EH_FILTER);
3150 return gs->gimple_eh_filter.types;
3154 /* Return a pointer to the types handled by GIMPLE_EH_FILTER statement
3155 GS. */
3157 static inline tree *
3158 gimple_eh_filter_types_ptr (gimple gs)
3160 GIMPLE_CHECK (gs, GIMPLE_EH_FILTER);
3161 return &gs->gimple_eh_filter.types;
3165 /* Return the sequence of statement to execute when GIMPLE_EH_FILTER
3166 statement fails. */
3168 static inline gimple_seq
3169 gimple_eh_filter_failure (gimple gs)
3171 GIMPLE_CHECK (gs, GIMPLE_EH_FILTER);
3172 return gs->gimple_eh_filter.failure;
3176 /* Set TYPES to be the set of types handled by GIMPLE_EH_FILTER GS. */
3178 static inline void
3179 gimple_eh_filter_set_types (gimple gs, tree types)
3181 GIMPLE_CHECK (gs, GIMPLE_EH_FILTER);
3182 gs->gimple_eh_filter.types = types;
3186 /* Set FAILURE to be the sequence of statements to execute on failure
3187 for GIMPLE_EH_FILTER GS. */
3189 static inline void
3190 gimple_eh_filter_set_failure (gimple gs, gimple_seq failure)
3192 GIMPLE_CHECK (gs, GIMPLE_EH_FILTER);
3193 gs->gimple_eh_filter.failure = failure;
3196 /* Get the function decl to be called by the MUST_NOT_THROW region. */
3198 static inline tree
3199 gimple_eh_must_not_throw_fndecl (gimple gs)
3201 GIMPLE_CHECK (gs, GIMPLE_EH_MUST_NOT_THROW);
3202 return gs->gimple_eh_mnt.fndecl;
3205 /* Set the function decl to be called by GS to DECL. */
3207 static inline void
3208 gimple_eh_must_not_throw_set_fndecl (gimple gs, tree decl)
3210 GIMPLE_CHECK (gs, GIMPLE_EH_MUST_NOT_THROW);
3211 gs->gimple_eh_mnt.fndecl = decl;
3214 /* GIMPLE_EH_ELSE accessors. */
3216 static inline gimple_seq
3217 gimple_eh_else_n_body (gimple gs)
3219 GIMPLE_CHECK (gs, GIMPLE_EH_ELSE);
3220 return gs->gimple_eh_else.n_body;
3223 static inline gimple_seq
3224 gimple_eh_else_e_body (gimple gs)
3226 GIMPLE_CHECK (gs, GIMPLE_EH_ELSE);
3227 return gs->gimple_eh_else.e_body;
3230 static inline void
3231 gimple_eh_else_set_n_body (gimple gs, gimple_seq seq)
3233 GIMPLE_CHECK (gs, GIMPLE_EH_ELSE);
3234 gs->gimple_eh_else.n_body = seq;
3237 static inline void
3238 gimple_eh_else_set_e_body (gimple gs, gimple_seq seq)
3240 GIMPLE_CHECK (gs, GIMPLE_EH_ELSE);
3241 gs->gimple_eh_else.e_body = seq;
3244 /* GIMPLE_TRY accessors. */
3246 /* Return the kind of try block represented by GIMPLE_TRY GS. This is
3247 either GIMPLE_TRY_CATCH or GIMPLE_TRY_FINALLY. */
3249 static inline enum gimple_try_flags
3250 gimple_try_kind (const_gimple gs)
3252 GIMPLE_CHECK (gs, GIMPLE_TRY);
3253 return (enum gimple_try_flags) (gs->gsbase.subcode & GIMPLE_TRY_KIND);
3257 /* Set the kind of try block represented by GIMPLE_TRY GS. */
3259 static inline void
3260 gimple_try_set_kind (gimple gs, enum gimple_try_flags kind)
3262 GIMPLE_CHECK (gs, GIMPLE_TRY);
3263 gcc_gimple_checking_assert (kind == GIMPLE_TRY_CATCH
3264 || kind == GIMPLE_TRY_FINALLY);
3265 if (gimple_try_kind (gs) != kind)
3266 gs->gsbase.subcode = (unsigned int) kind;
3270 /* Return the GIMPLE_TRY_CATCH_IS_CLEANUP flag. */
3272 static inline bool
3273 gimple_try_catch_is_cleanup (const_gimple gs)
3275 gcc_gimple_checking_assert (gimple_try_kind (gs) == GIMPLE_TRY_CATCH);
3276 return (gs->gsbase.subcode & GIMPLE_TRY_CATCH_IS_CLEANUP) != 0;
3280 /* Return the sequence of statements used as the body for GIMPLE_TRY GS. */
3282 static inline gimple_seq
3283 gimple_try_eval (gimple gs)
3285 GIMPLE_CHECK (gs, GIMPLE_TRY);
3286 return gs->gimple_try.eval;
3290 /* Return the sequence of statements used as the cleanup body for
3291 GIMPLE_TRY GS. */
3293 static inline gimple_seq
3294 gimple_try_cleanup (gimple gs)
3296 GIMPLE_CHECK (gs, GIMPLE_TRY);
3297 return gs->gimple_try.cleanup;
3301 /* Set the GIMPLE_TRY_CATCH_IS_CLEANUP flag. */
3303 static inline void
3304 gimple_try_set_catch_is_cleanup (gimple g, bool catch_is_cleanup)
3306 gcc_gimple_checking_assert (gimple_try_kind (g) == GIMPLE_TRY_CATCH);
3307 if (catch_is_cleanup)
3308 g->gsbase.subcode |= GIMPLE_TRY_CATCH_IS_CLEANUP;
3309 else
3310 g->gsbase.subcode &= ~GIMPLE_TRY_CATCH_IS_CLEANUP;
3314 /* Set EVAL to be the sequence of statements to use as the body for
3315 GIMPLE_TRY GS. */
3317 static inline void
3318 gimple_try_set_eval (gimple gs, gimple_seq eval)
3320 GIMPLE_CHECK (gs, GIMPLE_TRY);
3321 gs->gimple_try.eval = eval;
3325 /* Set CLEANUP to be the sequence of statements to use as the cleanup
3326 body for GIMPLE_TRY GS. */
3328 static inline void
3329 gimple_try_set_cleanup (gimple gs, gimple_seq cleanup)
3331 GIMPLE_CHECK (gs, GIMPLE_TRY);
3332 gs->gimple_try.cleanup = cleanup;
3336 /* Return the cleanup sequence for cleanup statement GS. */
3338 static inline gimple_seq
3339 gimple_wce_cleanup (gimple gs)
3341 GIMPLE_CHECK (gs, GIMPLE_WITH_CLEANUP_EXPR);
3342 return gs->gimple_wce.cleanup;
3346 /* Set CLEANUP to be the cleanup sequence for GS. */
3348 static inline void
3349 gimple_wce_set_cleanup (gimple gs, gimple_seq cleanup)
3351 GIMPLE_CHECK (gs, GIMPLE_WITH_CLEANUP_EXPR);
3352 gs->gimple_wce.cleanup = cleanup;
3356 /* Return the CLEANUP_EH_ONLY flag for a WCE tuple. */
3358 static inline bool
3359 gimple_wce_cleanup_eh_only (const_gimple gs)
3361 GIMPLE_CHECK (gs, GIMPLE_WITH_CLEANUP_EXPR);
3362 return gs->gsbase.subcode != 0;
3366 /* Set the CLEANUP_EH_ONLY flag for a WCE tuple. */
3368 static inline void
3369 gimple_wce_set_cleanup_eh_only (gimple gs, bool eh_only_p)
3371 GIMPLE_CHECK (gs, GIMPLE_WITH_CLEANUP_EXPR);
3372 gs->gsbase.subcode = (unsigned int) eh_only_p;
3376 /* Return the maximum number of arguments supported by GIMPLE_PHI GS. */
3378 static inline unsigned
3379 gimple_phi_capacity (const_gimple gs)
3381 GIMPLE_CHECK (gs, GIMPLE_PHI);
3382 return gs->gimple_phi.capacity;
3386 /* Return the number of arguments in GIMPLE_PHI GS. This must always
3387 be exactly the number of incoming edges for the basic block holding
3388 GS. */
3390 static inline unsigned
3391 gimple_phi_num_args (const_gimple gs)
3393 GIMPLE_CHECK (gs, GIMPLE_PHI);
3394 return gs->gimple_phi.nargs;
3398 /* Return the SSA name created by GIMPLE_PHI GS. */
3400 static inline tree
3401 gimple_phi_result (const_gimple gs)
3403 GIMPLE_CHECK (gs, GIMPLE_PHI);
3404 return gs->gimple_phi.result;
3407 /* Return a pointer to the SSA name created by GIMPLE_PHI GS. */
3409 static inline tree *
3410 gimple_phi_result_ptr (gimple gs)
3412 GIMPLE_CHECK (gs, GIMPLE_PHI);
3413 return &gs->gimple_phi.result;
3416 /* Set RESULT to be the SSA name created by GIMPLE_PHI GS. */
3418 static inline void
3419 gimple_phi_set_result (gimple gs, tree result)
3421 GIMPLE_CHECK (gs, GIMPLE_PHI);
3422 gs->gimple_phi.result = result;
3426 /* Return the PHI argument corresponding to incoming edge INDEX for
3427 GIMPLE_PHI GS. */
3429 static inline struct phi_arg_d *
3430 gimple_phi_arg (gimple gs, unsigned index)
3432 GIMPLE_CHECK (gs, GIMPLE_PHI);
3433 gcc_gimple_checking_assert (index <= gs->gimple_phi.capacity);
3434 return &(gs->gimple_phi.args[index]);
3437 /* Set PHIARG to be the argument corresponding to incoming edge INDEX
3438 for GIMPLE_PHI GS. */
3440 static inline void
3441 gimple_phi_set_arg (gimple gs, unsigned index, struct phi_arg_d * phiarg)
3443 GIMPLE_CHECK (gs, GIMPLE_PHI);
3444 gcc_gimple_checking_assert (index <= gs->gimple_phi.nargs);
3445 gs->gimple_phi.args[index] = *phiarg;
3448 /* Return the region number for GIMPLE_RESX GS. */
3450 static inline int
3451 gimple_resx_region (const_gimple gs)
3453 GIMPLE_CHECK (gs, GIMPLE_RESX);
3454 return gs->gimple_eh_ctrl.region;
3457 /* Set REGION to be the region number for GIMPLE_RESX GS. */
3459 static inline void
3460 gimple_resx_set_region (gimple gs, int region)
3462 GIMPLE_CHECK (gs, GIMPLE_RESX);
3463 gs->gimple_eh_ctrl.region = region;
3466 /* Return the region number for GIMPLE_EH_DISPATCH GS. */
3468 static inline int
3469 gimple_eh_dispatch_region (const_gimple gs)
3471 GIMPLE_CHECK (gs, GIMPLE_EH_DISPATCH);
3472 return gs->gimple_eh_ctrl.region;
3475 /* Set REGION to be the region number for GIMPLE_EH_DISPATCH GS. */
3477 static inline void
3478 gimple_eh_dispatch_set_region (gimple gs, int region)
3480 GIMPLE_CHECK (gs, GIMPLE_EH_DISPATCH);
3481 gs->gimple_eh_ctrl.region = region;
3484 /* Return the number of labels associated with the switch statement GS. */
3486 static inline unsigned
3487 gimple_switch_num_labels (const_gimple gs)
3489 unsigned num_ops;
3490 GIMPLE_CHECK (gs, GIMPLE_SWITCH);
3491 num_ops = gimple_num_ops (gs);
3492 gcc_gimple_checking_assert (num_ops > 1);
3493 return num_ops - 1;
3497 /* Set NLABELS to be the number of labels for the switch statement GS. */
3499 static inline void
3500 gimple_switch_set_num_labels (gimple g, unsigned nlabels)
3502 GIMPLE_CHECK (g, GIMPLE_SWITCH);
3503 gimple_set_num_ops (g, nlabels + 1);
3507 /* Return the index variable used by the switch statement GS. */
3509 static inline tree
3510 gimple_switch_index (const_gimple gs)
3512 GIMPLE_CHECK (gs, GIMPLE_SWITCH);
3513 return gimple_op (gs, 0);
3517 /* Return a pointer to the index variable for the switch statement GS. */
3519 static inline tree *
3520 gimple_switch_index_ptr (const_gimple gs)
3522 GIMPLE_CHECK (gs, GIMPLE_SWITCH);
3523 return gimple_op_ptr (gs, 0);
3527 /* Set INDEX to be the index variable for switch statement GS. */
3529 static inline void
3530 gimple_switch_set_index (gimple gs, tree index)
3532 GIMPLE_CHECK (gs, GIMPLE_SWITCH);
3533 gcc_gimple_checking_assert (SSA_VAR_P (index) || CONSTANT_CLASS_P (index));
3534 gimple_set_op (gs, 0, index);
3538 /* Return the label numbered INDEX. The default label is 0, followed by any
3539 labels in a switch statement. */
3541 static inline tree
3542 gimple_switch_label (const_gimple gs, unsigned index)
3544 GIMPLE_CHECK (gs, GIMPLE_SWITCH);
3545 gcc_gimple_checking_assert (gimple_num_ops (gs) > index + 1);
3546 return gimple_op (gs, index + 1);
3549 /* Set the label number INDEX to LABEL. 0 is always the default label. */
3551 static inline void
3552 gimple_switch_set_label (gimple gs, unsigned index, tree label)
3554 GIMPLE_CHECK (gs, GIMPLE_SWITCH);
3555 gcc_gimple_checking_assert (gimple_num_ops (gs) > index + 1
3556 && (label == NULL_TREE
3557 || TREE_CODE (label) == CASE_LABEL_EXPR));
3558 gimple_set_op (gs, index + 1, label);
3561 /* Return the default label for a switch statement. */
3563 static inline tree
3564 gimple_switch_default_label (const_gimple gs)
3566 return gimple_switch_label (gs, 0);
3569 /* Set the default label for a switch statement. */
3571 static inline void
3572 gimple_switch_set_default_label (gimple gs, tree label)
3574 gimple_switch_set_label (gs, 0, label);
3577 /* Return true if GS is a GIMPLE_DEBUG statement. */
3579 static inline bool
3580 is_gimple_debug (const_gimple gs)
3582 return gimple_code (gs) == GIMPLE_DEBUG;
3585 /* Return true if S is a GIMPLE_DEBUG BIND statement. */
3587 static inline bool
3588 gimple_debug_bind_p (const_gimple s)
3590 if (is_gimple_debug (s))
3591 return s->gsbase.subcode == GIMPLE_DEBUG_BIND;
3593 return false;
3596 /* Return the variable bound in a GIMPLE_DEBUG bind statement. */
3598 static inline tree
3599 gimple_debug_bind_get_var (gimple dbg)
3601 GIMPLE_CHECK (dbg, GIMPLE_DEBUG);
3602 gcc_gimple_checking_assert (gimple_debug_bind_p (dbg));
3603 return gimple_op (dbg, 0);
3606 /* Return the value bound to the variable in a GIMPLE_DEBUG bind
3607 statement. */
3609 static inline tree
3610 gimple_debug_bind_get_value (gimple dbg)
3612 GIMPLE_CHECK (dbg, GIMPLE_DEBUG);
3613 gcc_gimple_checking_assert (gimple_debug_bind_p (dbg));
3614 return gimple_op (dbg, 1);
3617 /* Return a pointer to the value bound to the variable in a
3618 GIMPLE_DEBUG bind statement. */
3620 static inline tree *
3621 gimple_debug_bind_get_value_ptr (gimple dbg)
3623 GIMPLE_CHECK (dbg, GIMPLE_DEBUG);
3624 gcc_gimple_checking_assert (gimple_debug_bind_p (dbg));
3625 return gimple_op_ptr (dbg, 1);
3628 /* Set the variable bound in a GIMPLE_DEBUG bind statement. */
3630 static inline void
3631 gimple_debug_bind_set_var (gimple dbg, tree var)
3633 GIMPLE_CHECK (dbg, GIMPLE_DEBUG);
3634 gcc_gimple_checking_assert (gimple_debug_bind_p (dbg));
3635 gimple_set_op (dbg, 0, var);
3638 /* Set the value bound to the variable in a GIMPLE_DEBUG bind
3639 statement. */
3641 static inline void
3642 gimple_debug_bind_set_value (gimple dbg, tree value)
3644 GIMPLE_CHECK (dbg, GIMPLE_DEBUG);
3645 gcc_gimple_checking_assert (gimple_debug_bind_p (dbg));
3646 gimple_set_op (dbg, 1, value);
3649 /* The second operand of a GIMPLE_DEBUG_BIND, when the value was
3650 optimized away. */
3651 #define GIMPLE_DEBUG_BIND_NOVALUE NULL_TREE /* error_mark_node */
3653 /* Remove the value bound to the variable in a GIMPLE_DEBUG bind
3654 statement. */
3656 static inline void
3657 gimple_debug_bind_reset_value (gimple dbg)
3659 GIMPLE_CHECK (dbg, GIMPLE_DEBUG);
3660 gcc_gimple_checking_assert (gimple_debug_bind_p (dbg));
3661 gimple_set_op (dbg, 1, GIMPLE_DEBUG_BIND_NOVALUE);
3664 /* Return true if the GIMPLE_DEBUG bind statement is bound to a
3665 value. */
3667 static inline bool
3668 gimple_debug_bind_has_value_p (gimple dbg)
3670 GIMPLE_CHECK (dbg, GIMPLE_DEBUG);
3671 gcc_gimple_checking_assert (gimple_debug_bind_p (dbg));
3672 return gimple_op (dbg, 1) != GIMPLE_DEBUG_BIND_NOVALUE;
3675 #undef GIMPLE_DEBUG_BIND_NOVALUE
3677 /* Return true if S is a GIMPLE_DEBUG SOURCE BIND statement. */
3679 static inline bool
3680 gimple_debug_source_bind_p (const_gimple s)
3682 if (is_gimple_debug (s))
3683 return s->gsbase.subcode == GIMPLE_DEBUG_SOURCE_BIND;
3685 return false;
3688 /* Return the variable bound in a GIMPLE_DEBUG source bind statement. */
3690 static inline tree
3691 gimple_debug_source_bind_get_var (gimple dbg)
3693 GIMPLE_CHECK (dbg, GIMPLE_DEBUG);
3694 gcc_gimple_checking_assert (gimple_debug_source_bind_p (dbg));
3695 return gimple_op (dbg, 0);
3698 /* Return the value bound to the variable in a GIMPLE_DEBUG source bind
3699 statement. */
3701 static inline tree
3702 gimple_debug_source_bind_get_value (gimple dbg)
3704 GIMPLE_CHECK (dbg, GIMPLE_DEBUG);
3705 gcc_gimple_checking_assert (gimple_debug_source_bind_p (dbg));
3706 return gimple_op (dbg, 1);
3709 /* Return a pointer to the value bound to the variable in a
3710 GIMPLE_DEBUG source bind statement. */
3712 static inline tree *
3713 gimple_debug_source_bind_get_value_ptr (gimple dbg)
3715 GIMPLE_CHECK (dbg, GIMPLE_DEBUG);
3716 gcc_gimple_checking_assert (gimple_debug_source_bind_p (dbg));
3717 return gimple_op_ptr (dbg, 1);
3720 /* Set the variable bound in a GIMPLE_DEBUG source bind statement. */
3722 static inline void
3723 gimple_debug_source_bind_set_var (gimple dbg, tree var)
3725 GIMPLE_CHECK (dbg, GIMPLE_DEBUG);
3726 gcc_gimple_checking_assert (gimple_debug_source_bind_p (dbg));
3727 gimple_set_op (dbg, 0, var);
3730 /* Set the value bound to the variable in a GIMPLE_DEBUG source bind
3731 statement. */
3733 static inline void
3734 gimple_debug_source_bind_set_value (gimple dbg, tree value)
3736 GIMPLE_CHECK (dbg, GIMPLE_DEBUG);
3737 gcc_gimple_checking_assert (gimple_debug_source_bind_p (dbg));
3738 gimple_set_op (dbg, 1, value);
3741 /* Return the body for the OMP statement GS. */
3743 static inline gimple_seq
3744 gimple_omp_body (gimple gs)
3746 return gs->omp.body;
3749 /* Set BODY to be the body for the OMP statement GS. */
3751 static inline void
3752 gimple_omp_set_body (gimple gs, gimple_seq body)
3754 gs->omp.body = body;
3758 /* Return the name associated with OMP_CRITICAL statement GS. */
3760 static inline tree
3761 gimple_omp_critical_name (const_gimple gs)
3763 GIMPLE_CHECK (gs, GIMPLE_OMP_CRITICAL);
3764 return gs->gimple_omp_critical.name;
3768 /* Return a pointer to the name associated with OMP critical statement GS. */
3770 static inline tree *
3771 gimple_omp_critical_name_ptr (gimple gs)
3773 GIMPLE_CHECK (gs, GIMPLE_OMP_CRITICAL);
3774 return &gs->gimple_omp_critical.name;
3778 /* Set NAME to be the name associated with OMP critical statement GS. */
3780 static inline void
3781 gimple_omp_critical_set_name (gimple gs, tree name)
3783 GIMPLE_CHECK (gs, GIMPLE_OMP_CRITICAL);
3784 gs->gimple_omp_critical.name = name;
3788 /* Return the clauses associated with OMP_FOR GS. */
3790 static inline tree
3791 gimple_omp_for_clauses (const_gimple gs)
3793 GIMPLE_CHECK (gs, GIMPLE_OMP_FOR);
3794 return gs->gimple_omp_for.clauses;
3798 /* Return a pointer to the OMP_FOR GS. */
3800 static inline tree *
3801 gimple_omp_for_clauses_ptr (gimple gs)
3803 GIMPLE_CHECK (gs, GIMPLE_OMP_FOR);
3804 return &gs->gimple_omp_for.clauses;
3808 /* Set CLAUSES to be the list of clauses associated with OMP_FOR GS. */
3810 static inline void
3811 gimple_omp_for_set_clauses (gimple gs, tree clauses)
3813 GIMPLE_CHECK (gs, GIMPLE_OMP_FOR);
3814 gs->gimple_omp_for.clauses = clauses;
3818 /* Get the collapse count of OMP_FOR GS. */
3820 static inline size_t
3821 gimple_omp_for_collapse (gimple gs)
3823 GIMPLE_CHECK (gs, GIMPLE_OMP_FOR);
3824 return gs->gimple_omp_for.collapse;
3828 /* Return the index variable for OMP_FOR GS. */
3830 static inline tree
3831 gimple_omp_for_index (const_gimple gs, size_t i)
3833 GIMPLE_CHECK (gs, GIMPLE_OMP_FOR);
3834 gcc_gimple_checking_assert (i < gs->gimple_omp_for.collapse);
3835 return gs->gimple_omp_for.iter[i].index;
3839 /* Return a pointer to the index variable for OMP_FOR GS. */
3841 static inline tree *
3842 gimple_omp_for_index_ptr (gimple gs, size_t i)
3844 GIMPLE_CHECK (gs, GIMPLE_OMP_FOR);
3845 gcc_gimple_checking_assert (i < gs->gimple_omp_for.collapse);
3846 return &gs->gimple_omp_for.iter[i].index;
3850 /* Set INDEX to be the index variable for OMP_FOR GS. */
3852 static inline void
3853 gimple_omp_for_set_index (gimple gs, size_t i, tree index)
3855 GIMPLE_CHECK (gs, GIMPLE_OMP_FOR);
3856 gcc_gimple_checking_assert (i < gs->gimple_omp_for.collapse);
3857 gs->gimple_omp_for.iter[i].index = index;
3861 /* Return the initial value for OMP_FOR GS. */
3863 static inline tree
3864 gimple_omp_for_initial (const_gimple gs, size_t i)
3866 GIMPLE_CHECK (gs, GIMPLE_OMP_FOR);
3867 gcc_gimple_checking_assert (i < gs->gimple_omp_for.collapse);
3868 return gs->gimple_omp_for.iter[i].initial;
3872 /* Return a pointer to the initial value for OMP_FOR GS. */
3874 static inline tree *
3875 gimple_omp_for_initial_ptr (gimple gs, size_t i)
3877 GIMPLE_CHECK (gs, GIMPLE_OMP_FOR);
3878 gcc_gimple_checking_assert (i < gs->gimple_omp_for.collapse);
3879 return &gs->gimple_omp_for.iter[i].initial;
3883 /* Set INITIAL to be the initial value for OMP_FOR GS. */
3885 static inline void
3886 gimple_omp_for_set_initial (gimple gs, size_t i, tree initial)
3888 GIMPLE_CHECK (gs, GIMPLE_OMP_FOR);
3889 gcc_gimple_checking_assert (i < gs->gimple_omp_for.collapse);
3890 gs->gimple_omp_for.iter[i].initial = initial;
3894 /* Return the final value for OMP_FOR GS. */
3896 static inline tree
3897 gimple_omp_for_final (const_gimple gs, size_t i)
3899 GIMPLE_CHECK (gs, GIMPLE_OMP_FOR);
3900 gcc_gimple_checking_assert (i < gs->gimple_omp_for.collapse);
3901 return gs->gimple_omp_for.iter[i].final;
3905 /* Return a pointer to the final value for OMP_FOR GS. */
3907 static inline tree *
3908 gimple_omp_for_final_ptr (gimple gs, size_t i)
3910 GIMPLE_CHECK (gs, GIMPLE_OMP_FOR);
3911 gcc_gimple_checking_assert (i < gs->gimple_omp_for.collapse);
3912 return &gs->gimple_omp_for.iter[i].final;
3916 /* Set FINAL to be the final value for OMP_FOR GS. */
3918 static inline void
3919 gimple_omp_for_set_final (gimple gs, size_t i, tree final)
3921 GIMPLE_CHECK (gs, GIMPLE_OMP_FOR);
3922 gcc_gimple_checking_assert (i < gs->gimple_omp_for.collapse);
3923 gs->gimple_omp_for.iter[i].final = final;
3927 /* Return the increment value for OMP_FOR GS. */
3929 static inline tree
3930 gimple_omp_for_incr (const_gimple gs, size_t i)
3932 GIMPLE_CHECK (gs, GIMPLE_OMP_FOR);
3933 gcc_gimple_checking_assert (i < gs->gimple_omp_for.collapse);
3934 return gs->gimple_omp_for.iter[i].incr;
3938 /* Return a pointer to the increment value for OMP_FOR GS. */
3940 static inline tree *
3941 gimple_omp_for_incr_ptr (gimple gs, size_t i)
3943 GIMPLE_CHECK (gs, GIMPLE_OMP_FOR);
3944 gcc_gimple_checking_assert (i < gs->gimple_omp_for.collapse);
3945 return &gs->gimple_omp_for.iter[i].incr;
3949 /* Set INCR to be the increment value for OMP_FOR GS. */
3951 static inline void
3952 gimple_omp_for_set_incr (gimple gs, size_t i, tree incr)
3954 GIMPLE_CHECK (gs, GIMPLE_OMP_FOR);
3955 gcc_gimple_checking_assert (i < gs->gimple_omp_for.collapse);
3956 gs->gimple_omp_for.iter[i].incr = incr;
3960 /* Return the sequence of statements to execute before the OMP_FOR
3961 statement GS starts. */
3963 static inline gimple_seq
3964 gimple_omp_for_pre_body (gimple gs)
3966 GIMPLE_CHECK (gs, GIMPLE_OMP_FOR);
3967 return gs->gimple_omp_for.pre_body;
3971 /* Set PRE_BODY to be the sequence of statements to execute before the
3972 OMP_FOR statement GS starts. */
3974 static inline void
3975 gimple_omp_for_set_pre_body (gimple gs, gimple_seq pre_body)
3977 GIMPLE_CHECK (gs, GIMPLE_OMP_FOR);
3978 gs->gimple_omp_for.pre_body = pre_body;
3982 /* Return the clauses associated with OMP_PARALLEL GS. */
3984 static inline tree
3985 gimple_omp_parallel_clauses (const_gimple gs)
3987 GIMPLE_CHECK (gs, GIMPLE_OMP_PARALLEL);
3988 return gs->gimple_omp_parallel.clauses;
3992 /* Return a pointer to the clauses associated with OMP_PARALLEL GS. */
3994 static inline tree *
3995 gimple_omp_parallel_clauses_ptr (gimple gs)
3997 GIMPLE_CHECK (gs, GIMPLE_OMP_PARALLEL);
3998 return &gs->gimple_omp_parallel.clauses;
4002 /* Set CLAUSES to be the list of clauses associated with OMP_PARALLEL
4003 GS. */
4005 static inline void
4006 gimple_omp_parallel_set_clauses (gimple gs, tree clauses)
4008 GIMPLE_CHECK (gs, GIMPLE_OMP_PARALLEL);
4009 gs->gimple_omp_parallel.clauses = clauses;
4013 /* Return the child function used to hold the body of OMP_PARALLEL GS. */
4015 static inline tree
4016 gimple_omp_parallel_child_fn (const_gimple gs)
4018 GIMPLE_CHECK (gs, GIMPLE_OMP_PARALLEL);
4019 return gs->gimple_omp_parallel.child_fn;
4022 /* Return a pointer to the child function used to hold the body of
4023 OMP_PARALLEL GS. */
4025 static inline tree *
4026 gimple_omp_parallel_child_fn_ptr (gimple gs)
4028 GIMPLE_CHECK (gs, GIMPLE_OMP_PARALLEL);
4029 return &gs->gimple_omp_parallel.child_fn;
4033 /* Set CHILD_FN to be the child function for OMP_PARALLEL GS. */
4035 static inline void
4036 gimple_omp_parallel_set_child_fn (gimple gs, tree child_fn)
4038 GIMPLE_CHECK (gs, GIMPLE_OMP_PARALLEL);
4039 gs->gimple_omp_parallel.child_fn = child_fn;
4043 /* Return the artificial argument used to send variables and values
4044 from the parent to the children threads in OMP_PARALLEL GS. */
4046 static inline tree
4047 gimple_omp_parallel_data_arg (const_gimple gs)
4049 GIMPLE_CHECK (gs, GIMPLE_OMP_PARALLEL);
4050 return gs->gimple_omp_parallel.data_arg;
4054 /* Return a pointer to the data argument for OMP_PARALLEL GS. */
4056 static inline tree *
4057 gimple_omp_parallel_data_arg_ptr (gimple gs)
4059 GIMPLE_CHECK (gs, GIMPLE_OMP_PARALLEL);
4060 return &gs->gimple_omp_parallel.data_arg;
4064 /* Set DATA_ARG to be the data argument for OMP_PARALLEL GS. */
4066 static inline void
4067 gimple_omp_parallel_set_data_arg (gimple gs, tree data_arg)
4069 GIMPLE_CHECK (gs, GIMPLE_OMP_PARALLEL);
4070 gs->gimple_omp_parallel.data_arg = data_arg;
4074 /* Return the clauses associated with OMP_TASK GS. */
4076 static inline tree
4077 gimple_omp_task_clauses (const_gimple gs)
4079 GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
4080 return gs->gimple_omp_parallel.clauses;
4084 /* Return a pointer to the clauses associated with OMP_TASK GS. */
4086 static inline tree *
4087 gimple_omp_task_clauses_ptr (gimple gs)
4089 GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
4090 return &gs->gimple_omp_parallel.clauses;
4094 /* Set CLAUSES to be the list of clauses associated with OMP_TASK
4095 GS. */
4097 static inline void
4098 gimple_omp_task_set_clauses (gimple gs, tree clauses)
4100 GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
4101 gs->gimple_omp_parallel.clauses = clauses;
4105 /* Return the child function used to hold the body of OMP_TASK GS. */
4107 static inline tree
4108 gimple_omp_task_child_fn (const_gimple gs)
4110 GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
4111 return gs->gimple_omp_parallel.child_fn;
4114 /* Return a pointer to the child function used to hold the body of
4115 OMP_TASK GS. */
4117 static inline tree *
4118 gimple_omp_task_child_fn_ptr (gimple gs)
4120 GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
4121 return &gs->gimple_omp_parallel.child_fn;
4125 /* Set CHILD_FN to be the child function for OMP_TASK GS. */
4127 static inline void
4128 gimple_omp_task_set_child_fn (gimple gs, tree child_fn)
4130 GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
4131 gs->gimple_omp_parallel.child_fn = child_fn;
4135 /* Return the artificial argument used to send variables and values
4136 from the parent to the children threads in OMP_TASK GS. */
4138 static inline tree
4139 gimple_omp_task_data_arg (const_gimple gs)
4141 GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
4142 return gs->gimple_omp_parallel.data_arg;
4146 /* Return a pointer to the data argument for OMP_TASK GS. */
4148 static inline tree *
4149 gimple_omp_task_data_arg_ptr (gimple gs)
4151 GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
4152 return &gs->gimple_omp_parallel.data_arg;
4156 /* Set DATA_ARG to be the data argument for OMP_TASK GS. */
4158 static inline void
4159 gimple_omp_task_set_data_arg (gimple gs, tree data_arg)
4161 GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
4162 gs->gimple_omp_parallel.data_arg = data_arg;
4166 /* Return the clauses associated with OMP_TASK GS. */
4168 static inline tree
4169 gimple_omp_taskreg_clauses (const_gimple gs)
4171 if (gimple_code (gs) != GIMPLE_OMP_PARALLEL)
4172 GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
4173 return gs->gimple_omp_parallel.clauses;
4177 /* Return a pointer to the clauses associated with OMP_TASK GS. */
4179 static inline tree *
4180 gimple_omp_taskreg_clauses_ptr (gimple gs)
4182 if (gimple_code (gs) != GIMPLE_OMP_PARALLEL)
4183 GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
4184 return &gs->gimple_omp_parallel.clauses;
4188 /* Set CLAUSES to be the list of clauses associated with OMP_TASK
4189 GS. */
4191 static inline void
4192 gimple_omp_taskreg_set_clauses (gimple gs, tree clauses)
4194 if (gimple_code (gs) != GIMPLE_OMP_PARALLEL)
4195 GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
4196 gs->gimple_omp_parallel.clauses = clauses;
4200 /* Return the child function used to hold the body of OMP_TASK GS. */
4202 static inline tree
4203 gimple_omp_taskreg_child_fn (const_gimple gs)
4205 if (gimple_code (gs) != GIMPLE_OMP_PARALLEL)
4206 GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
4207 return gs->gimple_omp_parallel.child_fn;
4210 /* Return a pointer to the child function used to hold the body of
4211 OMP_TASK GS. */
4213 static inline tree *
4214 gimple_omp_taskreg_child_fn_ptr (gimple gs)
4216 if (gimple_code (gs) != GIMPLE_OMP_PARALLEL)
4217 GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
4218 return &gs->gimple_omp_parallel.child_fn;
4222 /* Set CHILD_FN to be the child function for OMP_TASK GS. */
4224 static inline void
4225 gimple_omp_taskreg_set_child_fn (gimple gs, tree child_fn)
4227 if (gimple_code (gs) != GIMPLE_OMP_PARALLEL)
4228 GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
4229 gs->gimple_omp_parallel.child_fn = child_fn;
4233 /* Return the artificial argument used to send variables and values
4234 from the parent to the children threads in OMP_TASK GS. */
4236 static inline tree
4237 gimple_omp_taskreg_data_arg (const_gimple gs)
4239 if (gimple_code (gs) != GIMPLE_OMP_PARALLEL)
4240 GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
4241 return gs->gimple_omp_parallel.data_arg;
4245 /* Return a pointer to the data argument for OMP_TASK GS. */
4247 static inline tree *
4248 gimple_omp_taskreg_data_arg_ptr (gimple gs)
4250 if (gimple_code (gs) != GIMPLE_OMP_PARALLEL)
4251 GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
4252 return &gs->gimple_omp_parallel.data_arg;
4256 /* Set DATA_ARG to be the data argument for OMP_TASK GS. */
4258 static inline void
4259 gimple_omp_taskreg_set_data_arg (gimple gs, tree data_arg)
4261 if (gimple_code (gs) != GIMPLE_OMP_PARALLEL)
4262 GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
4263 gs->gimple_omp_parallel.data_arg = data_arg;
4267 /* Return the copy function used to hold the body of OMP_TASK GS. */
4269 static inline tree
4270 gimple_omp_task_copy_fn (const_gimple gs)
4272 GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
4273 return gs->gimple_omp_task.copy_fn;
4276 /* Return a pointer to the copy function used to hold the body of
4277 OMP_TASK GS. */
4279 static inline tree *
4280 gimple_omp_task_copy_fn_ptr (gimple gs)
4282 GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
4283 return &gs->gimple_omp_task.copy_fn;
4287 /* Set CHILD_FN to be the copy function for OMP_TASK GS. */
4289 static inline void
4290 gimple_omp_task_set_copy_fn (gimple gs, tree copy_fn)
4292 GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
4293 gs->gimple_omp_task.copy_fn = copy_fn;
4297 /* Return size of the data block in bytes in OMP_TASK GS. */
4299 static inline tree
4300 gimple_omp_task_arg_size (const_gimple gs)
4302 GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
4303 return gs->gimple_omp_task.arg_size;
4307 /* Return a pointer to the data block size for OMP_TASK GS. */
4309 static inline tree *
4310 gimple_omp_task_arg_size_ptr (gimple gs)
4312 GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
4313 return &gs->gimple_omp_task.arg_size;
4317 /* Set ARG_SIZE to be the data block size for OMP_TASK GS. */
4319 static inline void
4320 gimple_omp_task_set_arg_size (gimple gs, tree arg_size)
4322 GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
4323 gs->gimple_omp_task.arg_size = arg_size;
4327 /* Return align of the data block in bytes in OMP_TASK GS. */
4329 static inline tree
4330 gimple_omp_task_arg_align (const_gimple gs)
4332 GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
4333 return gs->gimple_omp_task.arg_align;
4337 /* Return a pointer to the data block align for OMP_TASK GS. */
4339 static inline tree *
4340 gimple_omp_task_arg_align_ptr (gimple gs)
4342 GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
4343 return &gs->gimple_omp_task.arg_align;
4347 /* Set ARG_SIZE to be the data block align for OMP_TASK GS. */
4349 static inline void
4350 gimple_omp_task_set_arg_align (gimple gs, tree arg_align)
4352 GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
4353 gs->gimple_omp_task.arg_align = arg_align;
4357 /* Return the clauses associated with OMP_SINGLE GS. */
4359 static inline tree
4360 gimple_omp_single_clauses (const_gimple gs)
4362 GIMPLE_CHECK (gs, GIMPLE_OMP_SINGLE);
4363 return gs->gimple_omp_single.clauses;
4367 /* Return a pointer to the clauses associated with OMP_SINGLE GS. */
4369 static inline tree *
4370 gimple_omp_single_clauses_ptr (gimple gs)
4372 GIMPLE_CHECK (gs, GIMPLE_OMP_SINGLE);
4373 return &gs->gimple_omp_single.clauses;
4377 /* Set CLAUSES to be the clauses associated with OMP_SINGLE GS. */
4379 static inline void
4380 gimple_omp_single_set_clauses (gimple gs, tree clauses)
4382 GIMPLE_CHECK (gs, GIMPLE_OMP_SINGLE);
4383 gs->gimple_omp_single.clauses = clauses;
4387 /* Return the clauses associated with OMP_SECTIONS GS. */
4389 static inline tree
4390 gimple_omp_sections_clauses (const_gimple gs)
4392 GIMPLE_CHECK (gs, GIMPLE_OMP_SECTIONS);
4393 return gs->gimple_omp_sections.clauses;
4397 /* Return a pointer to the clauses associated with OMP_SECTIONS GS. */
4399 static inline tree *
4400 gimple_omp_sections_clauses_ptr (gimple gs)
4402 GIMPLE_CHECK (gs, GIMPLE_OMP_SECTIONS);
4403 return &gs->gimple_omp_sections.clauses;
4407 /* Set CLAUSES to be the set of clauses associated with OMP_SECTIONS
4408 GS. */
4410 static inline void
4411 gimple_omp_sections_set_clauses (gimple gs, tree clauses)
4413 GIMPLE_CHECK (gs, GIMPLE_OMP_SECTIONS);
4414 gs->gimple_omp_sections.clauses = clauses;
4418 /* Return the control variable associated with the GIMPLE_OMP_SECTIONS
4419 in GS. */
4421 static inline tree
4422 gimple_omp_sections_control (const_gimple gs)
4424 GIMPLE_CHECK (gs, GIMPLE_OMP_SECTIONS);
4425 return gs->gimple_omp_sections.control;
4429 /* Return a pointer to the clauses associated with the GIMPLE_OMP_SECTIONS
4430 GS. */
4432 static inline tree *
4433 gimple_omp_sections_control_ptr (gimple gs)
4435 GIMPLE_CHECK (gs, GIMPLE_OMP_SECTIONS);
4436 return &gs->gimple_omp_sections.control;
4440 /* Set CONTROL to be the set of clauses associated with the
4441 GIMPLE_OMP_SECTIONS in GS. */
4443 static inline void
4444 gimple_omp_sections_set_control (gimple gs, tree control)
4446 GIMPLE_CHECK (gs, GIMPLE_OMP_SECTIONS);
4447 gs->gimple_omp_sections.control = control;
4451 /* Set COND to be the condition code for OMP_FOR GS. */
4453 static inline void
4454 gimple_omp_for_set_cond (gimple gs, size_t i, enum tree_code cond)
4456 GIMPLE_CHECK (gs, GIMPLE_OMP_FOR);
4457 gcc_gimple_checking_assert (TREE_CODE_CLASS (cond) == tcc_comparison
4458 && i < gs->gimple_omp_for.collapse);
4459 gs->gimple_omp_for.iter[i].cond = cond;
4463 /* Return the condition code associated with OMP_FOR GS. */
4465 static inline enum tree_code
4466 gimple_omp_for_cond (const_gimple gs, size_t i)
4468 GIMPLE_CHECK (gs, GIMPLE_OMP_FOR);
4469 gcc_gimple_checking_assert (i < gs->gimple_omp_for.collapse);
4470 return gs->gimple_omp_for.iter[i].cond;
4474 /* Set the value being stored in an atomic store. */
4476 static inline void
4477 gimple_omp_atomic_store_set_val (gimple g, tree val)
4479 GIMPLE_CHECK (g, GIMPLE_OMP_ATOMIC_STORE);
4480 g->gimple_omp_atomic_store.val = val;
4484 /* Return the value being stored in an atomic store. */
4486 static inline tree
4487 gimple_omp_atomic_store_val (const_gimple g)
4489 GIMPLE_CHECK (g, GIMPLE_OMP_ATOMIC_STORE);
4490 return g->gimple_omp_atomic_store.val;
4494 /* Return a pointer to the value being stored in an atomic store. */
4496 static inline tree *
4497 gimple_omp_atomic_store_val_ptr (gimple g)
4499 GIMPLE_CHECK (g, GIMPLE_OMP_ATOMIC_STORE);
4500 return &g->gimple_omp_atomic_store.val;
4504 /* Set the LHS of an atomic load. */
4506 static inline void
4507 gimple_omp_atomic_load_set_lhs (gimple g, tree lhs)
4509 GIMPLE_CHECK (g, GIMPLE_OMP_ATOMIC_LOAD);
4510 g->gimple_omp_atomic_load.lhs = lhs;
4514 /* Get the LHS of an atomic load. */
4516 static inline tree
4517 gimple_omp_atomic_load_lhs (const_gimple g)
4519 GIMPLE_CHECK (g, GIMPLE_OMP_ATOMIC_LOAD);
4520 return g->gimple_omp_atomic_load.lhs;
4524 /* Return a pointer to the LHS of an atomic load. */
4526 static inline tree *
4527 gimple_omp_atomic_load_lhs_ptr (gimple g)
4529 GIMPLE_CHECK (g, GIMPLE_OMP_ATOMIC_LOAD);
4530 return &g->gimple_omp_atomic_load.lhs;
4534 /* Set the RHS of an atomic load. */
4536 static inline void
4537 gimple_omp_atomic_load_set_rhs (gimple g, tree rhs)
4539 GIMPLE_CHECK (g, GIMPLE_OMP_ATOMIC_LOAD);
4540 g->gimple_omp_atomic_load.rhs = rhs;
4544 /* Get the RHS of an atomic load. */
4546 static inline tree
4547 gimple_omp_atomic_load_rhs (const_gimple g)
4549 GIMPLE_CHECK (g, GIMPLE_OMP_ATOMIC_LOAD);
4550 return g->gimple_omp_atomic_load.rhs;
4554 /* Return a pointer to the RHS of an atomic load. */
4556 static inline tree *
4557 gimple_omp_atomic_load_rhs_ptr (gimple g)
4559 GIMPLE_CHECK (g, GIMPLE_OMP_ATOMIC_LOAD);
4560 return &g->gimple_omp_atomic_load.rhs;
4564 /* Get the definition of the control variable in a GIMPLE_OMP_CONTINUE. */
4566 static inline tree
4567 gimple_omp_continue_control_def (const_gimple g)
4569 GIMPLE_CHECK (g, GIMPLE_OMP_CONTINUE);
4570 return g->gimple_omp_continue.control_def;
4573 /* The same as above, but return the address. */
4575 static inline tree *
4576 gimple_omp_continue_control_def_ptr (gimple g)
4578 GIMPLE_CHECK (g, GIMPLE_OMP_CONTINUE);
4579 return &g->gimple_omp_continue.control_def;
4582 /* Set the definition of the control variable in a GIMPLE_OMP_CONTINUE. */
4584 static inline void
4585 gimple_omp_continue_set_control_def (gimple g, tree def)
4587 GIMPLE_CHECK (g, GIMPLE_OMP_CONTINUE);
4588 g->gimple_omp_continue.control_def = def;
4592 /* Get the use of the control variable in a GIMPLE_OMP_CONTINUE. */
4594 static inline tree
4595 gimple_omp_continue_control_use (const_gimple g)
4597 GIMPLE_CHECK (g, GIMPLE_OMP_CONTINUE);
4598 return g->gimple_omp_continue.control_use;
4602 /* The same as above, but return the address. */
4604 static inline tree *
4605 gimple_omp_continue_control_use_ptr (gimple g)
4607 GIMPLE_CHECK (g, GIMPLE_OMP_CONTINUE);
4608 return &g->gimple_omp_continue.control_use;
4612 /* Set the use of the control variable in a GIMPLE_OMP_CONTINUE. */
4614 static inline void
4615 gimple_omp_continue_set_control_use (gimple g, tree use)
4617 GIMPLE_CHECK (g, GIMPLE_OMP_CONTINUE);
4618 g->gimple_omp_continue.control_use = use;
4621 /* Return the body for the GIMPLE_TRANSACTION statement GS. */
4623 static inline gimple_seq
4624 gimple_transaction_body (gimple gs)
4626 GIMPLE_CHECK (gs, GIMPLE_TRANSACTION);
4627 return gs->gimple_transaction.body;
4630 /* Return the label associated with a GIMPLE_TRANSACTION. */
4632 static inline tree
4633 gimple_transaction_label (const_gimple gs)
4635 GIMPLE_CHECK (gs, GIMPLE_TRANSACTION);
4636 return gs->gimple_transaction.label;
4639 static inline tree *
4640 gimple_transaction_label_ptr (gimple gs)
4642 GIMPLE_CHECK (gs, GIMPLE_TRANSACTION);
4643 return &gs->gimple_transaction.label;
4646 /* Return the subcode associated with a GIMPLE_TRANSACTION. */
4648 static inline unsigned int
4649 gimple_transaction_subcode (const_gimple gs)
4651 GIMPLE_CHECK (gs, GIMPLE_TRANSACTION);
4652 return gs->gsbase.subcode;
4655 /* Set BODY to be the body for the GIMPLE_TRANSACTION statement GS. */
4657 static inline void
4658 gimple_transaction_set_body (gimple gs, gimple_seq body)
4660 GIMPLE_CHECK (gs, GIMPLE_TRANSACTION);
4661 gs->gimple_transaction.body = body;
4664 /* Set the label associated with a GIMPLE_TRANSACTION. */
4666 static inline void
4667 gimple_transaction_set_label (gimple gs, tree label)
4669 GIMPLE_CHECK (gs, GIMPLE_TRANSACTION);
4670 gs->gimple_transaction.label = label;
4673 /* Set the subcode associated with a GIMPLE_TRANSACTION. */
4675 static inline void
4676 gimple_transaction_set_subcode (gimple gs, unsigned int subcode)
4678 GIMPLE_CHECK (gs, GIMPLE_TRANSACTION);
4679 gs->gsbase.subcode = subcode;
4683 /* Return a pointer to the return value for GIMPLE_RETURN GS. */
4685 static inline tree *
4686 gimple_return_retval_ptr (const_gimple gs)
4688 GIMPLE_CHECK (gs, GIMPLE_RETURN);
4689 return gimple_op_ptr (gs, 0);
4692 /* Return the return value for GIMPLE_RETURN GS. */
4694 static inline tree
4695 gimple_return_retval (const_gimple gs)
4697 GIMPLE_CHECK (gs, GIMPLE_RETURN);
4698 return gimple_op (gs, 0);
4702 /* Set RETVAL to be the return value for GIMPLE_RETURN GS. */
4704 static inline void
4705 gimple_return_set_retval (gimple gs, tree retval)
4707 GIMPLE_CHECK (gs, GIMPLE_RETURN);
4708 gimple_set_op (gs, 0, retval);
4712 /* Returns true when the gimple statment STMT is any of the OpenMP types. */
4714 #define CASE_GIMPLE_OMP \
4715 case GIMPLE_OMP_PARALLEL: \
4716 case GIMPLE_OMP_TASK: \
4717 case GIMPLE_OMP_FOR: \
4718 case GIMPLE_OMP_SECTIONS: \
4719 case GIMPLE_OMP_SECTIONS_SWITCH: \
4720 case GIMPLE_OMP_SINGLE: \
4721 case GIMPLE_OMP_SECTION: \
4722 case GIMPLE_OMP_MASTER: \
4723 case GIMPLE_OMP_ORDERED: \
4724 case GIMPLE_OMP_CRITICAL: \
4725 case GIMPLE_OMP_RETURN: \
4726 case GIMPLE_OMP_ATOMIC_LOAD: \
4727 case GIMPLE_OMP_ATOMIC_STORE: \
4728 case GIMPLE_OMP_CONTINUE
4730 static inline bool
4731 is_gimple_omp (const_gimple stmt)
4733 switch (gimple_code (stmt))
4735 CASE_GIMPLE_OMP:
4736 return true;
4737 default:
4738 return false;
4743 /* Returns TRUE if statement G is a GIMPLE_NOP. */
4745 static inline bool
4746 gimple_nop_p (const_gimple g)
4748 return gimple_code (g) == GIMPLE_NOP;
4752 /* Return true if GS is a GIMPLE_RESX. */
4754 static inline bool
4755 is_gimple_resx (const_gimple gs)
4757 return gimple_code (gs) == GIMPLE_RESX;
4760 /* Return the predictor of GIMPLE_PREDICT statement GS. */
4762 static inline enum br_predictor
4763 gimple_predict_predictor (gimple gs)
4765 GIMPLE_CHECK (gs, GIMPLE_PREDICT);
4766 return (enum br_predictor) (gs->gsbase.subcode & ~GF_PREDICT_TAKEN);
4770 /* Set the predictor of GIMPLE_PREDICT statement GS to PREDICT. */
4772 static inline void
4773 gimple_predict_set_predictor (gimple gs, enum br_predictor predictor)
4775 GIMPLE_CHECK (gs, GIMPLE_PREDICT);
4776 gs->gsbase.subcode = (gs->gsbase.subcode & GF_PREDICT_TAKEN)
4777 | (unsigned) predictor;
4781 /* Return the outcome of GIMPLE_PREDICT statement GS. */
4783 static inline enum prediction
4784 gimple_predict_outcome (gimple gs)
4786 GIMPLE_CHECK (gs, GIMPLE_PREDICT);
4787 return (gs->gsbase.subcode & GF_PREDICT_TAKEN) ? TAKEN : NOT_TAKEN;
4791 /* Set the outcome of GIMPLE_PREDICT statement GS to OUTCOME. */
4793 static inline void
4794 gimple_predict_set_outcome (gimple gs, enum prediction outcome)
4796 GIMPLE_CHECK (gs, GIMPLE_PREDICT);
4797 if (outcome == TAKEN)
4798 gs->gsbase.subcode |= GF_PREDICT_TAKEN;
4799 else
4800 gs->gsbase.subcode &= ~GF_PREDICT_TAKEN;
4804 /* Return the type of the main expression computed by STMT. Return
4805 void_type_node if the statement computes nothing. */
4807 static inline tree
4808 gimple_expr_type (const_gimple stmt)
4810 enum gimple_code code = gimple_code (stmt);
4812 if (code == GIMPLE_ASSIGN || code == GIMPLE_CALL)
4814 tree type;
4815 /* In general we want to pass out a type that can be substituted
4816 for both the RHS and the LHS types if there is a possibly
4817 useless conversion involved. That means returning the
4818 original RHS type as far as we can reconstruct it. */
4819 if (code == GIMPLE_CALL)
4820 type = gimple_call_return_type (stmt);
4821 else
4822 switch (gimple_assign_rhs_code (stmt))
4824 case POINTER_PLUS_EXPR:
4825 type = TREE_TYPE (gimple_assign_rhs1 (stmt));
4826 break;
4828 default:
4829 /* As fallback use the type of the LHS. */
4830 type = TREE_TYPE (gimple_get_lhs (stmt));
4831 break;
4833 return type;
4835 else if (code == GIMPLE_COND)
4836 return boolean_type_node;
4837 else
4838 return void_type_node;
4842 /* Return a new iterator pointing to GIMPLE_SEQ's first statement. */
4844 static inline gimple_stmt_iterator
4845 gsi_start (gimple_seq seq)
4847 gimple_stmt_iterator i;
4849 i.ptr = gimple_seq_first (seq);
4850 i.seq = seq;
4851 i.bb = (i.ptr && i.ptr->stmt) ? gimple_bb (i.ptr->stmt) : NULL;
4853 return i;
4857 /* Return a new iterator pointing to the first statement in basic block BB. */
4859 static inline gimple_stmt_iterator
4860 gsi_start_bb (basic_block bb)
4862 gimple_stmt_iterator i;
4863 gimple_seq seq;
4865 seq = bb_seq (bb);
4866 i.ptr = gimple_seq_first (seq);
4867 i.seq = seq;
4868 i.bb = bb;
4870 return i;
4874 /* Return a new iterator initially pointing to GIMPLE_SEQ's last statement. */
4876 static inline gimple_stmt_iterator
4877 gsi_last (gimple_seq seq)
4879 gimple_stmt_iterator i;
4881 i.ptr = gimple_seq_last (seq);
4882 i.seq = seq;
4883 i.bb = (i.ptr && i.ptr->stmt) ? gimple_bb (i.ptr->stmt) : NULL;
4885 return i;
4889 /* Return a new iterator pointing to the last statement in basic block BB. */
4891 static inline gimple_stmt_iterator
4892 gsi_last_bb (basic_block bb)
4894 gimple_stmt_iterator i;
4895 gimple_seq seq;
4897 seq = bb_seq (bb);
4898 i.ptr = gimple_seq_last (seq);
4899 i.seq = seq;
4900 i.bb = bb;
4902 return i;
4906 /* Return true if I is at the end of its sequence. */
4908 static inline bool
4909 gsi_end_p (gimple_stmt_iterator i)
4911 return i.ptr == NULL;
4915 /* Return true if I is one statement before the end of its sequence. */
4917 static inline bool
4918 gsi_one_before_end_p (gimple_stmt_iterator i)
4920 return i.ptr != NULL && i.ptr->next == NULL;
4924 /* Advance the iterator to the next gimple statement. */
4926 static inline void
4927 gsi_next (gimple_stmt_iterator *i)
4929 i->ptr = i->ptr->next;
4932 /* Advance the iterator to the previous gimple statement. */
4934 static inline void
4935 gsi_prev (gimple_stmt_iterator *i)
4937 i->ptr = i->ptr->prev;
4940 /* Return the current stmt. */
4942 static inline gimple
4943 gsi_stmt (gimple_stmt_iterator i)
4945 return i.ptr->stmt;
4948 /* Return a block statement iterator that points to the first non-label
4949 statement in block BB. */
4951 static inline gimple_stmt_iterator
4952 gsi_after_labels (basic_block bb)
4954 gimple_stmt_iterator gsi = gsi_start_bb (bb);
4956 while (!gsi_end_p (gsi) && gimple_code (gsi_stmt (gsi)) == GIMPLE_LABEL)
4957 gsi_next (&gsi);
4959 return gsi;
4962 /* Advance the iterator to the next non-debug gimple statement. */
4964 static inline void
4965 gsi_next_nondebug (gimple_stmt_iterator *i)
4969 gsi_next (i);
4971 while (!gsi_end_p (*i) && is_gimple_debug (gsi_stmt (*i)));
4974 /* Advance the iterator to the next non-debug gimple statement. */
4976 static inline void
4977 gsi_prev_nondebug (gimple_stmt_iterator *i)
4981 gsi_prev (i);
4983 while (!gsi_end_p (*i) && is_gimple_debug (gsi_stmt (*i)));
4986 /* Return a new iterator pointing to the first non-debug statement in
4987 basic block BB. */
4989 static inline gimple_stmt_iterator
4990 gsi_start_nondebug_bb (basic_block bb)
4992 gimple_stmt_iterator i = gsi_start_bb (bb);
4994 if (!gsi_end_p (i) && is_gimple_debug (gsi_stmt (i)))
4995 gsi_next_nondebug (&i);
4997 return i;
5000 /* Return a new iterator pointing to the last non-debug statement in
5001 basic block BB. */
5003 static inline gimple_stmt_iterator
5004 gsi_last_nondebug_bb (basic_block bb)
5006 gimple_stmt_iterator i = gsi_last_bb (bb);
5008 if (!gsi_end_p (i) && is_gimple_debug (gsi_stmt (i)))
5009 gsi_prev_nondebug (&i);
5011 return i;
5014 /* Return a pointer to the current stmt.
5016 NOTE: You may want to use gsi_replace on the iterator itself,
5017 as this performs additional bookkeeping that will not be done
5018 if you simply assign through a pointer returned by gsi_stmt_ptr. */
5020 static inline gimple *
5021 gsi_stmt_ptr (gimple_stmt_iterator *i)
5023 return &i->ptr->stmt;
5027 /* Return the basic block associated with this iterator. */
5029 static inline basic_block
5030 gsi_bb (gimple_stmt_iterator i)
5032 return i.bb;
5036 /* Return the sequence associated with this iterator. */
5038 static inline gimple_seq
5039 gsi_seq (gimple_stmt_iterator i)
5041 return i.seq;
5045 enum gsi_iterator_update
5047 GSI_NEW_STMT, /* Only valid when single statement is added, move
5048 iterator to it. */
5049 GSI_SAME_STMT, /* Leave the iterator at the same statement. */
5050 GSI_CONTINUE_LINKING /* Move iterator to whatever position is suitable
5051 for linking other statements in the same
5052 direction. */
5055 /* In gimple-iterator.c */
5056 gimple_stmt_iterator gsi_start_phis (basic_block);
5057 gimple_seq gsi_split_seq_after (gimple_stmt_iterator);
5058 gimple_seq gsi_split_seq_before (gimple_stmt_iterator *);
5059 void gsi_replace (gimple_stmt_iterator *, gimple, bool);
5060 void gsi_insert_before (gimple_stmt_iterator *, gimple,
5061 enum gsi_iterator_update);
5062 void gsi_insert_before_without_update (gimple_stmt_iterator *, gimple,
5063 enum gsi_iterator_update);
5064 void gsi_insert_seq_before (gimple_stmt_iterator *, gimple_seq,
5065 enum gsi_iterator_update);
5066 void gsi_insert_seq_before_without_update (gimple_stmt_iterator *, gimple_seq,
5067 enum gsi_iterator_update);
5068 void gsi_insert_after (gimple_stmt_iterator *, gimple,
5069 enum gsi_iterator_update);
5070 void gsi_insert_after_without_update (gimple_stmt_iterator *, gimple,
5071 enum gsi_iterator_update);
5072 void gsi_insert_seq_after (gimple_stmt_iterator *, gimple_seq,
5073 enum gsi_iterator_update);
5074 void gsi_insert_seq_after_without_update (gimple_stmt_iterator *, gimple_seq,
5075 enum gsi_iterator_update);
5076 void gsi_remove (gimple_stmt_iterator *, bool);
5077 gimple_stmt_iterator gsi_for_stmt (gimple);
5078 void gsi_move_after (gimple_stmt_iterator *, gimple_stmt_iterator *);
5079 void gsi_move_before (gimple_stmt_iterator *, gimple_stmt_iterator *);
5080 void gsi_move_to_bb_end (gimple_stmt_iterator *, struct basic_block_def *);
5081 void gsi_insert_on_edge (edge, gimple);
5082 void gsi_insert_seq_on_edge (edge, gimple_seq);
5083 basic_block gsi_insert_on_edge_immediate (edge, gimple);
5084 basic_block gsi_insert_seq_on_edge_immediate (edge, gimple_seq);
5085 void gsi_commit_one_edge_insert (edge, basic_block *);
5086 void gsi_commit_edge_inserts (void);
5087 gimple gimple_call_copy_skip_args (gimple, bitmap);
5090 /* Convenience routines to walk all statements of a gimple function.
5091 Note that this is useful exclusively before the code is converted
5092 into SSA form. Once the program is in SSA form, the standard
5093 operand interface should be used to analyze/modify statements. */
5094 struct walk_stmt_info
5096 /* Points to the current statement being walked. */
5097 gimple_stmt_iterator gsi;
5099 /* Additional data that the callback functions may want to carry
5100 through the recursion. */
5101 void *info;
5103 /* Pointer map used to mark visited tree nodes when calling
5104 walk_tree on each operand. If set to NULL, duplicate tree nodes
5105 will be visited more than once. */
5106 struct pointer_set_t *pset;
5108 /* Operand returned by the callbacks. This is set when calling
5109 walk_gimple_seq. If the walk_stmt_fn or walk_tree_fn callback
5110 returns non-NULL, this field will contain the tree returned by
5111 the last callback. */
5112 tree callback_result;
5114 /* Indicates whether the operand being examined may be replaced
5115 with something that matches is_gimple_val (if true) or something
5116 slightly more complicated (if false). "Something" technically
5117 means the common subset of is_gimple_lvalue and is_gimple_rhs,
5118 but we never try to form anything more complicated than that, so
5119 we don't bother checking.
5121 Also note that CALLBACK should update this flag while walking the
5122 sub-expressions of a statement. For instance, when walking the
5123 statement 'foo (&var)', the flag VAL_ONLY will initially be set
5124 to true, however, when walking &var, the operand of that
5125 ADDR_EXPR does not need to be a GIMPLE value. */
5126 BOOL_BITFIELD val_only : 1;
5128 /* True if we are currently walking the LHS of an assignment. */
5129 BOOL_BITFIELD is_lhs : 1;
5131 /* Optional. Set to true by the callback functions if they made any
5132 changes. */
5133 BOOL_BITFIELD changed : 1;
5135 /* True if we're interested in location information. */
5136 BOOL_BITFIELD want_locations : 1;
5138 /* True if we've removed the statement that was processed. */
5139 BOOL_BITFIELD removed_stmt : 1;
5142 /* Callback for walk_gimple_stmt. Called for every statement found
5143 during traversal. The first argument points to the statement to
5144 walk. The second argument is a flag that the callback sets to
5145 'true' if it the callback handled all the operands and
5146 sub-statements of the statement (the default value of this flag is
5147 'false'). The third argument is an anonymous pointer to data
5148 to be used by the callback. */
5149 typedef tree (*walk_stmt_fn) (gimple_stmt_iterator *, bool *,
5150 struct walk_stmt_info *);
5152 gimple walk_gimple_seq (gimple_seq, walk_stmt_fn, walk_tree_fn,
5153 struct walk_stmt_info *);
5154 tree walk_gimple_stmt (gimple_stmt_iterator *, walk_stmt_fn, walk_tree_fn,
5155 struct walk_stmt_info *);
5156 tree walk_gimple_op (gimple, walk_tree_fn, struct walk_stmt_info *);
5158 #ifdef GATHER_STATISTICS
5159 /* Enum and arrays used for allocation stats. Keep in sync with
5160 gimple.c:gimple_alloc_kind_names. */
5161 enum gimple_alloc_kind
5163 gimple_alloc_kind_assign, /* Assignments. */
5164 gimple_alloc_kind_phi, /* PHI nodes. */
5165 gimple_alloc_kind_cond, /* Conditionals. */
5166 gimple_alloc_kind_seq, /* Sequences. */
5167 gimple_alloc_kind_rest, /* Everything else. */
5168 gimple_alloc_kind_all
5171 extern int gimple_alloc_counts[];
5172 extern int gimple_alloc_sizes[];
5174 /* Return the allocation kind for a given stmt CODE. */
5175 static inline enum gimple_alloc_kind
5176 gimple_alloc_kind (enum gimple_code code)
5178 switch (code)
5180 case GIMPLE_ASSIGN:
5181 return gimple_alloc_kind_assign;
5182 case GIMPLE_PHI:
5183 return gimple_alloc_kind_phi;
5184 case GIMPLE_COND:
5185 return gimple_alloc_kind_cond;
5186 default:
5187 return gimple_alloc_kind_rest;
5190 #endif /* GATHER_STATISTICS */
5192 extern void dump_gimple_statistics (void);
5194 /* In gimple-fold.c. */
5195 void gimplify_and_update_call_from_tree (gimple_stmt_iterator *, tree);
5196 tree gimple_fold_builtin (gimple);
5197 bool fold_stmt (gimple_stmt_iterator *);
5198 bool fold_stmt_inplace (gimple_stmt_iterator *);
5199 tree get_symbol_constant_value (tree);
5200 tree canonicalize_constructor_val (tree);
5201 extern tree maybe_fold_and_comparisons (enum tree_code, tree, tree,
5202 enum tree_code, tree, tree);
5203 extern tree maybe_fold_or_comparisons (enum tree_code, tree, tree,
5204 enum tree_code, tree, tree);
5206 bool gimple_val_nonnegative_real_p (tree);
5207 #endif /* GCC_GIMPLE_H */