[PR67828] don't unswitch on default defs of non-parms
[official-gcc.git] / gcc / gimple.h
bloba456f54ed3982a20047bf4ed3d7e22a79b6d6191
1 /* Gimple IR definitions.
3 Copyright (C) 2007-2015 Free Software Foundation, Inc.
4 Contributed by Aldy Hernandez <aldyh@redhat.com>
6 This file is part of GCC.
8 GCC is free software; you can redistribute it and/or modify it under
9 the terms of the GNU General Public License as published by the Free
10 Software Foundation; either version 3, or (at your option) any later
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 "tree-ssa-alias.h"
26 #include "gimple-expr.h"
28 typedef gimple *gimple_seq_node;
30 enum gimple_code {
31 #define DEFGSCODE(SYM, STRING, STRUCT) SYM,
32 #include "gimple.def"
33 #undef DEFGSCODE
34 LAST_AND_UNUSED_GIMPLE_CODE
37 extern const char *const gimple_code_name[];
38 extern const unsigned char gimple_rhs_class_table[];
40 /* Strip the outermost pointer, from tr1/type_traits. */
41 template<typename T> struct remove_pointer { typedef T type; };
42 template<typename T> struct remove_pointer<T *> { typedef T type; };
44 /* Error out if a gimple tuple is addressed incorrectly. */
45 #if defined ENABLE_GIMPLE_CHECKING
46 #define gcc_gimple_checking_assert(EXPR) gcc_assert (EXPR)
47 extern void gimple_check_failed (const gimple *, const char *, int, \
48 const char *, enum gimple_code, \
49 enum tree_code) ATTRIBUTE_NORETURN;
51 #define GIMPLE_CHECK(GS, CODE) \
52 do { \
53 const gimple *__gs = (GS); \
54 if (gimple_code (__gs) != (CODE)) \
55 gimple_check_failed (__gs, __FILE__, __LINE__, __FUNCTION__, \
56 (CODE), ERROR_MARK); \
57 } while (0)
58 template <typename T>
59 static inline T
60 GIMPLE_CHECK2(const gimple *gs,
61 #if __GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 8)
62 const char *file = __builtin_FILE (),
63 int line = __builtin_LINE (),
64 const char *fun = __builtin_FUNCTION ())
65 #else
66 const char *file = __FILE__,
67 int line = __LINE__,
68 const char *fun = NULL)
69 #endif
71 T ret = dyn_cast <T> (gs);
72 if (!ret)
73 gimple_check_failed (gs, file, line, fun,
74 remove_pointer<T>::type::code_, ERROR_MARK);
75 return ret;
77 template <typename T>
78 static inline T
79 GIMPLE_CHECK2(gimple *gs,
80 #if __GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 8)
81 const char *file = __builtin_FILE (),
82 int line = __builtin_LINE (),
83 const char *fun = __builtin_FUNCTION ())
84 #else
85 const char *file = __FILE__,
86 int line = __LINE__,
87 const char *fun = NULL)
88 #endif
90 T ret = dyn_cast <T> (gs);
91 if (!ret)
92 gimple_check_failed (gs, file, line, fun,
93 remove_pointer<T>::type::code_, ERROR_MARK);
94 return ret;
96 #else /* not ENABLE_GIMPLE_CHECKING */
97 #define gcc_gimple_checking_assert(EXPR) ((void)(0 && (EXPR)))
98 #define GIMPLE_CHECK(GS, CODE) (void)0
99 template <typename T>
100 static inline T
101 GIMPLE_CHECK2(gimple *gs)
103 return as_a <T> (gs);
105 template <typename T>
106 static inline T
107 GIMPLE_CHECK2(const gimple *gs)
109 return as_a <T> (gs);
111 #endif
113 /* Class of GIMPLE expressions suitable for the RHS of assignments. See
114 get_gimple_rhs_class. */
115 enum gimple_rhs_class
117 GIMPLE_INVALID_RHS, /* The expression cannot be used on the RHS. */
118 GIMPLE_TERNARY_RHS, /* The expression is a ternary operation. */
119 GIMPLE_BINARY_RHS, /* The expression is a binary operation. */
120 GIMPLE_UNARY_RHS, /* The expression is a unary operation. */
121 GIMPLE_SINGLE_RHS /* The expression is a single object (an SSA
122 name, a _DECL, a _REF, etc. */
125 /* Specific flags for individual GIMPLE statements. These flags are
126 always stored in gimple.subcode and they may only be
127 defined for statement codes that do not use subcodes.
129 Values for the masks can overlap as long as the overlapping values
130 are never used in the same statement class.
132 The maximum mask value that can be defined is 1 << 15 (i.e., each
133 statement code can hold up to 16 bitflags).
135 Keep this list sorted. */
136 enum gf_mask {
137 GF_ASM_INPUT = 1 << 0,
138 GF_ASM_VOLATILE = 1 << 1,
139 GF_CALL_FROM_THUNK = 1 << 0,
140 GF_CALL_RETURN_SLOT_OPT = 1 << 1,
141 GF_CALL_TAILCALL = 1 << 2,
142 GF_CALL_VA_ARG_PACK = 1 << 3,
143 GF_CALL_NOTHROW = 1 << 4,
144 GF_CALL_ALLOCA_FOR_VAR = 1 << 5,
145 GF_CALL_INTERNAL = 1 << 6,
146 GF_CALL_CTRL_ALTERING = 1 << 7,
147 GF_CALL_WITH_BOUNDS = 1 << 8,
148 GF_OMP_PARALLEL_COMBINED = 1 << 0,
149 GF_OMP_FOR_KIND_MASK = (1 << 3) - 1,
150 GF_OMP_FOR_KIND_FOR = 0,
151 GF_OMP_FOR_KIND_DISTRIBUTE = 1,
152 GF_OMP_FOR_KIND_CILKFOR = 2,
153 GF_OMP_FOR_KIND_OACC_LOOP = 3,
154 /* Flag for SIMD variants of OMP_FOR kinds. */
155 GF_OMP_FOR_SIMD = 1 << 2,
156 GF_OMP_FOR_KIND_SIMD = GF_OMP_FOR_SIMD | 0,
157 GF_OMP_FOR_KIND_CILKSIMD = GF_OMP_FOR_SIMD | 1,
158 GF_OMP_FOR_COMBINED = 1 << 3,
159 GF_OMP_FOR_COMBINED_INTO = 1 << 4,
160 GF_OMP_TARGET_KIND_MASK = (1 << 3) - 1,
161 GF_OMP_TARGET_KIND_REGION = 0,
162 GF_OMP_TARGET_KIND_DATA = 1,
163 GF_OMP_TARGET_KIND_UPDATE = 2,
164 GF_OMP_TARGET_KIND_OACC_PARALLEL = 3,
165 GF_OMP_TARGET_KIND_OACC_KERNELS = 4,
166 GF_OMP_TARGET_KIND_OACC_DATA = 5,
167 GF_OMP_TARGET_KIND_OACC_UPDATE = 6,
168 GF_OMP_TARGET_KIND_OACC_ENTER_EXIT_DATA = 7,
170 /* True on an GIMPLE_OMP_RETURN statement if the return does not require
171 a thread synchronization via some sort of barrier. The exact barrier
172 that would otherwise be emitted is dependent on the OMP statement with
173 which this return is associated. */
174 GF_OMP_RETURN_NOWAIT = 1 << 0,
176 GF_OMP_SECTION_LAST = 1 << 0,
177 GF_OMP_ATOMIC_NEED_VALUE = 1 << 0,
178 GF_OMP_ATOMIC_SEQ_CST = 1 << 1,
179 GF_PREDICT_TAKEN = 1 << 15
182 /* Currently, there are only two types of gimple debug stmt. Others are
183 envisioned, for example, to enable the generation of is_stmt notes
184 in line number information, to mark sequence points, etc. This
185 subcode is to be used to tell them apart. */
186 enum gimple_debug_subcode {
187 GIMPLE_DEBUG_BIND = 0,
188 GIMPLE_DEBUG_SOURCE_BIND = 1
191 /* Masks for selecting a pass local flag (PLF) to work on. These
192 masks are used by gimple_set_plf and gimple_plf. */
193 enum plf_mask {
194 GF_PLF_1 = 1 << 0,
195 GF_PLF_2 = 1 << 1
198 /* Data structure definitions for GIMPLE tuples. NOTE: word markers
199 are for 64 bit hosts. */
201 struct GTY((desc ("gimple_statement_structure (&%h)"), tag ("GSS_BASE"),
202 chain_next ("%h.next"), variable_size))
203 gimple
205 /* [ WORD 1 ]
206 Main identifying code for a tuple. */
207 ENUM_BITFIELD(gimple_code) code : 8;
209 /* Nonzero if a warning should not be emitted on this tuple. */
210 unsigned int no_warning : 1;
212 /* Nonzero if this tuple has been visited. Passes are responsible
213 for clearing this bit before using it. */
214 unsigned int visited : 1;
216 /* Nonzero if this tuple represents a non-temporal move. */
217 unsigned int nontemporal_move : 1;
219 /* Pass local flags. These flags are free for any pass to use as
220 they see fit. Passes should not assume that these flags contain
221 any useful value when the pass starts. Any initial state that
222 the pass requires should be set on entry to the pass. See
223 gimple_set_plf and gimple_plf for usage. */
224 unsigned int plf : 2;
226 /* Nonzero if this statement has been modified and needs to have its
227 operands rescanned. */
228 unsigned modified : 1;
230 /* Nonzero if this statement contains volatile operands. */
231 unsigned has_volatile_ops : 1;
233 /* Padding to get subcode to 16 bit alignment. */
234 unsigned pad : 1;
236 /* The SUBCODE field can be used for tuple-specific flags for tuples
237 that do not require subcodes. Note that SUBCODE should be at
238 least as wide as tree codes, as several tuples store tree codes
239 in there. */
240 unsigned int subcode : 16;
242 /* UID of this statement. This is used by passes that want to
243 assign IDs to statements. It must be assigned and used by each
244 pass. By default it should be assumed to contain garbage. */
245 unsigned uid;
247 /* [ WORD 2 ]
248 Locus information for debug info. */
249 location_t location;
251 /* Number of operands in this tuple. */
252 unsigned num_ops;
254 /* [ WORD 3 ]
255 Basic block holding this statement. */
256 basic_block bb;
258 /* [ WORD 4-5 ]
259 Linked lists of gimple statements. The next pointers form
260 a NULL terminated list, the prev pointers are a cyclic list.
261 A gimple statement is hence also a double-ended list of
262 statements, with the pointer itself being the first element,
263 and the prev pointer being the last. */
264 gimple *next;
265 gimple *GTY((skip)) prev;
269 /* Base structure for tuples with operands. */
271 /* This gimple subclass has no tag value. */
272 struct GTY(())
273 gimple_statement_with_ops_base : public gimple
275 /* [ WORD 1-6 ] : base class */
277 /* [ WORD 7 ]
278 SSA operand vectors. NOTE: It should be possible to
279 amalgamate these vectors with the operand vector OP. However,
280 the SSA operand vectors are organized differently and contain
281 more information (like immediate use chaining). */
282 struct use_optype_d GTY((skip (""))) *use_ops;
286 /* Statements that take register operands. */
288 struct GTY((tag("GSS_WITH_OPS")))
289 gimple_statement_with_ops : public gimple_statement_with_ops_base
291 /* [ WORD 1-7 ] : base class */
293 /* [ WORD 8 ]
294 Operand vector. NOTE! This must always be the last field
295 of this structure. In particular, this means that this
296 structure cannot be embedded inside another one. */
297 tree GTY((length ("%h.num_ops"))) op[1];
301 /* Base for statements that take both memory and register operands. */
303 struct GTY((tag("GSS_WITH_MEM_OPS_BASE")))
304 gimple_statement_with_memory_ops_base : public gimple_statement_with_ops_base
306 /* [ WORD 1-7 ] : base class */
308 /* [ WORD 8-9 ]
309 Virtual operands for this statement. The GC will pick them
310 up via the ssa_names array. */
311 tree GTY((skip (""))) vdef;
312 tree GTY((skip (""))) vuse;
316 /* Statements that take both memory and register operands. */
318 struct GTY((tag("GSS_WITH_MEM_OPS")))
319 gimple_statement_with_memory_ops :
320 public gimple_statement_with_memory_ops_base
322 /* [ WORD 1-9 ] : base class */
324 /* [ WORD 10 ]
325 Operand vector. NOTE! This must always be the last field
326 of this structure. In particular, this means that this
327 structure cannot be embedded inside another one. */
328 tree GTY((length ("%h.num_ops"))) op[1];
332 /* Call statements that take both memory and register operands. */
334 struct GTY((tag("GSS_CALL")))
335 gcall : public gimple_statement_with_memory_ops_base
337 /* [ WORD 1-9 ] : base class */
339 /* [ WORD 10-13 ] */
340 struct pt_solution call_used;
341 struct pt_solution call_clobbered;
343 /* [ WORD 14 ] */
344 union GTY ((desc ("%1.subcode & GF_CALL_INTERNAL"))) {
345 tree GTY ((tag ("0"))) fntype;
346 enum internal_fn GTY ((tag ("GF_CALL_INTERNAL"))) internal_fn;
347 } u;
349 /* [ WORD 15 ]
350 Operand vector. NOTE! This must always be the last field
351 of this structure. In particular, this means that this
352 structure cannot be embedded inside another one. */
353 tree GTY((length ("%h.num_ops"))) op[1];
355 static const enum gimple_code code_ = GIMPLE_CALL;
359 /* OMP statements. */
361 struct GTY((tag("GSS_OMP")))
362 gimple_statement_omp : public gimple
364 /* [ WORD 1-6 ] : base class */
366 /* [ WORD 7 ] */
367 gimple_seq body;
371 /* GIMPLE_BIND */
373 struct GTY((tag("GSS_BIND")))
374 gbind : public gimple
376 /* [ WORD 1-6 ] : base class */
378 /* [ WORD 7 ]
379 Variables declared in this scope. */
380 tree vars;
382 /* [ WORD 8 ]
383 This is different than the BLOCK field in gimple,
384 which is analogous to TREE_BLOCK (i.e., the lexical block holding
385 this statement). This field is the equivalent of BIND_EXPR_BLOCK
386 in tree land (i.e., the lexical scope defined by this bind). See
387 gimple-low.c. */
388 tree block;
390 /* [ WORD 9 ] */
391 gimple_seq body;
395 /* GIMPLE_CATCH */
397 struct GTY((tag("GSS_CATCH")))
398 gcatch : public gimple
400 /* [ WORD 1-6 ] : base class */
402 /* [ WORD 7 ] */
403 tree types;
405 /* [ WORD 8 ] */
406 gimple_seq handler;
410 /* GIMPLE_EH_FILTER */
412 struct GTY((tag("GSS_EH_FILTER")))
413 geh_filter : public gimple
415 /* [ WORD 1-6 ] : base class */
417 /* [ WORD 7 ]
418 Filter types. */
419 tree types;
421 /* [ WORD 8 ]
422 Failure actions. */
423 gimple_seq failure;
426 /* GIMPLE_EH_ELSE */
428 struct GTY((tag("GSS_EH_ELSE")))
429 geh_else : public gimple
431 /* [ WORD 1-6 ] : base class */
433 /* [ WORD 7,8 ] */
434 gimple_seq n_body, e_body;
437 /* GIMPLE_EH_MUST_NOT_THROW */
439 struct GTY((tag("GSS_EH_MNT")))
440 geh_mnt : public gimple
442 /* [ WORD 1-6 ] : base class */
444 /* [ WORD 7 ] Abort function decl. */
445 tree fndecl;
448 /* GIMPLE_PHI */
450 struct GTY((tag("GSS_PHI")))
451 gphi : public gimple
453 /* [ WORD 1-6 ] : base class */
455 /* [ WORD 7 ] */
456 unsigned capacity;
457 unsigned nargs;
459 /* [ WORD 8 ] */
460 tree result;
462 /* [ WORD 9 ] */
463 struct phi_arg_d GTY ((length ("%h.nargs"))) args[1];
467 /* GIMPLE_RESX, GIMPLE_EH_DISPATCH */
469 struct GTY((tag("GSS_EH_CTRL")))
470 gimple_statement_eh_ctrl : public gimple
472 /* [ WORD 1-6 ] : base class */
474 /* [ WORD 7 ]
475 Exception region number. */
476 int region;
479 struct GTY((tag("GSS_EH_CTRL")))
480 gresx : public gimple_statement_eh_ctrl
482 /* No extra fields; adds invariant:
483 stmt->code == GIMPLE_RESX. */
486 struct GTY((tag("GSS_EH_CTRL")))
487 geh_dispatch : public gimple_statement_eh_ctrl
489 /* No extra fields; adds invariant:
490 stmt->code == GIMPLE_EH_DISPATH. */
494 /* GIMPLE_TRY */
496 struct GTY((tag("GSS_TRY")))
497 gtry : public gimple
499 /* [ WORD 1-6 ] : base class */
501 /* [ WORD 7 ]
502 Expression to evaluate. */
503 gimple_seq eval;
505 /* [ WORD 8 ]
506 Cleanup expression. */
507 gimple_seq cleanup;
510 /* Kind of GIMPLE_TRY statements. */
511 enum gimple_try_flags
513 /* A try/catch. */
514 GIMPLE_TRY_CATCH = 1 << 0,
516 /* A try/finally. */
517 GIMPLE_TRY_FINALLY = 1 << 1,
518 GIMPLE_TRY_KIND = GIMPLE_TRY_CATCH | GIMPLE_TRY_FINALLY,
520 /* Analogous to TRY_CATCH_IS_CLEANUP. */
521 GIMPLE_TRY_CATCH_IS_CLEANUP = 1 << 2
524 /* GIMPLE_WITH_CLEANUP_EXPR */
526 struct GTY((tag("GSS_WCE")))
527 gimple_statement_wce : public gimple
529 /* [ WORD 1-6 ] : base class */
531 /* Subcode: CLEANUP_EH_ONLY. True if the cleanup should only be
532 executed if an exception is thrown, not on normal exit of its
533 scope. This flag is analogous to the CLEANUP_EH_ONLY flag
534 in TARGET_EXPRs. */
536 /* [ WORD 7 ]
537 Cleanup expression. */
538 gimple_seq cleanup;
542 /* GIMPLE_ASM */
544 struct GTY((tag("GSS_ASM")))
545 gasm : public gimple_statement_with_memory_ops_base
547 /* [ WORD 1-9 ] : base class */
549 /* [ WORD 10 ]
550 __asm__ statement. */
551 const char *string;
553 /* [ WORD 11 ]
554 Number of inputs, outputs, clobbers, labels. */
555 unsigned char ni;
556 unsigned char no;
557 unsigned char nc;
558 unsigned char nl;
560 /* [ WORD 12 ]
561 Operand vector. NOTE! This must always be the last field
562 of this structure. In particular, this means that this
563 structure cannot be embedded inside another one. */
564 tree GTY((length ("%h.num_ops"))) op[1];
567 /* GIMPLE_OMP_CRITICAL */
569 struct GTY((tag("GSS_OMP_CRITICAL")))
570 gomp_critical : public gimple_statement_omp
572 /* [ WORD 1-7 ] : base class */
574 /* [ WORD 8 ]
575 Critical section name. */
576 tree name;
580 struct GTY(()) gimple_omp_for_iter {
581 /* Condition code. */
582 enum tree_code cond;
584 /* Index variable. */
585 tree index;
587 /* Initial value. */
588 tree initial;
590 /* Final value. */
591 tree final;
593 /* Increment. */
594 tree incr;
597 /* GIMPLE_OMP_FOR */
599 struct GTY((tag("GSS_OMP_FOR")))
600 gomp_for : public gimple_statement_omp
602 /* [ WORD 1-7 ] : base class */
604 /* [ WORD 8 ] */
605 tree clauses;
607 /* [ WORD 9 ]
608 Number of elements in iter array. */
609 size_t collapse;
611 /* [ WORD 10 ] */
612 struct gimple_omp_for_iter * GTY((length ("%h.collapse"))) iter;
614 /* [ WORD 11 ]
615 Pre-body evaluated before the loop body begins. */
616 gimple_seq pre_body;
620 /* GIMPLE_OMP_PARALLEL, GIMPLE_OMP_TARGET, GIMPLE_OMP_TASK */
622 struct GTY((tag("GSS_OMP_PARALLEL_LAYOUT")))
623 gimple_statement_omp_parallel_layout : public gimple_statement_omp
625 /* [ WORD 1-7 ] : base class */
627 /* [ WORD 8 ]
628 Clauses. */
629 tree clauses;
631 /* [ WORD 9 ]
632 Child function holding the body of the parallel region. */
633 tree child_fn;
635 /* [ WORD 10 ]
636 Shared data argument. */
637 tree data_arg;
640 /* GIMPLE_OMP_PARALLEL or GIMPLE_TASK */
641 struct GTY((tag("GSS_OMP_PARALLEL_LAYOUT")))
642 gimple_statement_omp_taskreg : public gimple_statement_omp_parallel_layout
644 /* No extra fields; adds invariant:
645 stmt->code == GIMPLE_OMP_PARALLEL
646 || stmt->code == GIMPLE_OMP_TASK. */
649 /* GIMPLE_OMP_PARALLEL */
650 struct GTY((tag("GSS_OMP_PARALLEL_LAYOUT")))
651 gomp_parallel : public gimple_statement_omp_taskreg
653 /* No extra fields; adds invariant:
654 stmt->code == GIMPLE_OMP_PARALLEL. */
657 /* GIMPLE_OMP_TARGET */
658 struct GTY((tag("GSS_OMP_PARALLEL_LAYOUT")))
659 gomp_target : public gimple_statement_omp_parallel_layout
661 /* No extra fields; adds invariant:
662 stmt->code == GIMPLE_OMP_TARGET. */
665 /* GIMPLE_OMP_TASK */
667 struct GTY((tag("GSS_OMP_TASK")))
668 gomp_task : public gimple_statement_omp_taskreg
670 /* [ WORD 1-10 ] : base class */
672 /* [ WORD 11 ]
673 Child function holding firstprivate initialization if needed. */
674 tree copy_fn;
676 /* [ WORD 12-13 ]
677 Size and alignment in bytes of the argument data block. */
678 tree arg_size;
679 tree arg_align;
683 /* GIMPLE_OMP_SECTION */
684 /* Uses struct gimple_statement_omp. */
687 /* GIMPLE_OMP_SECTIONS */
689 struct GTY((tag("GSS_OMP_SECTIONS")))
690 gomp_sections : public gimple_statement_omp
692 /* [ WORD 1-7 ] : base class */
694 /* [ WORD 8 ] */
695 tree clauses;
697 /* [ WORD 9 ]
698 The control variable used for deciding which of the sections to
699 execute. */
700 tree control;
703 /* GIMPLE_OMP_CONTINUE.
705 Note: This does not inherit from gimple_statement_omp, because we
706 do not need the body field. */
708 struct GTY((tag("GSS_OMP_CONTINUE")))
709 gomp_continue : public gimple
711 /* [ WORD 1-6 ] : base class */
713 /* [ WORD 7 ] */
714 tree control_def;
716 /* [ WORD 8 ] */
717 tree control_use;
720 /* GIMPLE_OMP_SINGLE, GIMPLE_OMP_TEAMS */
722 struct GTY((tag("GSS_OMP_SINGLE_LAYOUT")))
723 gimple_statement_omp_single_layout : public gimple_statement_omp
725 /* [ WORD 1-7 ] : base class */
727 /* [ WORD 7 ] */
728 tree clauses;
731 struct GTY((tag("GSS_OMP_SINGLE_LAYOUT")))
732 gomp_single : public gimple_statement_omp_single_layout
734 /* No extra fields; adds invariant:
735 stmt->code == GIMPLE_OMP_SINGLE. */
738 struct GTY((tag("GSS_OMP_SINGLE_LAYOUT")))
739 gomp_teams : public gimple_statement_omp_single_layout
741 /* No extra fields; adds invariant:
742 stmt->code == GIMPLE_OMP_TEAMS. */
746 /* GIMPLE_OMP_ATOMIC_LOAD.
747 Note: This is based on gimple, not g_s_omp, because g_s_omp
748 contains a sequence, which we don't need here. */
750 struct GTY((tag("GSS_OMP_ATOMIC_LOAD")))
751 gomp_atomic_load : public gimple
753 /* [ WORD 1-6 ] : base class */
755 /* [ WORD 7-8 ] */
756 tree rhs, lhs;
759 /* GIMPLE_OMP_ATOMIC_STORE.
760 See note on GIMPLE_OMP_ATOMIC_LOAD. */
762 struct GTY((tag("GSS_OMP_ATOMIC_STORE_LAYOUT")))
763 gimple_statement_omp_atomic_store_layout : public gimple
765 /* [ WORD 1-6 ] : base class */
767 /* [ WORD 7 ] */
768 tree val;
771 struct GTY((tag("GSS_OMP_ATOMIC_STORE_LAYOUT")))
772 gomp_atomic_store :
773 public gimple_statement_omp_atomic_store_layout
775 /* No extra fields; adds invariant:
776 stmt->code == GIMPLE_OMP_ATOMIC_STORE. */
779 struct GTY((tag("GSS_OMP_ATOMIC_STORE_LAYOUT")))
780 gimple_statement_omp_return :
781 public gimple_statement_omp_atomic_store_layout
783 /* No extra fields; adds invariant:
784 stmt->code == GIMPLE_OMP_RETURN. */
787 /* GIMPLE_TRANSACTION. */
789 /* Bits to be stored in the GIMPLE_TRANSACTION subcode. */
791 /* The __transaction_atomic was declared [[outer]] or it is
792 __transaction_relaxed. */
793 #define GTMA_IS_OUTER (1u << 0)
794 #define GTMA_IS_RELAXED (1u << 1)
795 #define GTMA_DECLARATION_MASK (GTMA_IS_OUTER | GTMA_IS_RELAXED)
797 /* The transaction is seen to not have an abort. */
798 #define GTMA_HAVE_ABORT (1u << 2)
799 /* The transaction is seen to have loads or stores. */
800 #define GTMA_HAVE_LOAD (1u << 3)
801 #define GTMA_HAVE_STORE (1u << 4)
802 /* The transaction MAY enter serial irrevocable mode in its dynamic scope. */
803 #define GTMA_MAY_ENTER_IRREVOCABLE (1u << 5)
804 /* The transaction WILL enter serial irrevocable mode.
805 An irrevocable block post-dominates the entire transaction, such
806 that all invocations of the transaction will go serial-irrevocable.
807 In such case, we don't bother instrumenting the transaction, and
808 tell the runtime that it should begin the transaction in
809 serial-irrevocable mode. */
810 #define GTMA_DOES_GO_IRREVOCABLE (1u << 6)
811 /* The transaction contains no instrumentation code whatsover, most
812 likely because it is guaranteed to go irrevocable upon entry. */
813 #define GTMA_HAS_NO_INSTRUMENTATION (1u << 7)
815 struct GTY((tag("GSS_TRANSACTION")))
816 gtransaction : public gimple_statement_with_memory_ops_base
818 /* [ WORD 1-9 ] : base class */
820 /* [ WORD 10 ] */
821 gimple_seq body;
823 /* [ WORD 11 ] */
824 tree label;
827 #define DEFGSSTRUCT(SYM, STRUCT, HAS_TREE_OP) SYM,
828 enum gimple_statement_structure_enum {
829 #include "gsstruct.def"
830 LAST_GSS_ENUM
832 #undef DEFGSSTRUCT
834 /* A statement with the invariant that
835 stmt->code == GIMPLE_COND
836 i.e. a conditional jump statement. */
838 struct GTY((tag("GSS_WITH_OPS")))
839 gcond : public gimple_statement_with_ops
841 /* no additional fields; this uses the layout for GSS_WITH_OPS. */
842 static const enum gimple_code code_ = GIMPLE_COND;
845 /* A statement with the invariant that
846 stmt->code == GIMPLE_DEBUG
847 i.e. a debug statement. */
849 struct GTY((tag("GSS_WITH_OPS")))
850 gdebug : public gimple_statement_with_ops
852 /* no additional fields; this uses the layout for GSS_WITH_OPS. */
855 /* A statement with the invariant that
856 stmt->code == GIMPLE_GOTO
857 i.e. a goto statement. */
859 struct GTY((tag("GSS_WITH_OPS")))
860 ggoto : public gimple_statement_with_ops
862 /* no additional fields; this uses the layout for GSS_WITH_OPS. */
865 /* A statement with the invariant that
866 stmt->code == GIMPLE_LABEL
867 i.e. a label statement. */
869 struct GTY((tag("GSS_WITH_OPS")))
870 glabel : public gimple_statement_with_ops
872 /* no additional fields; this uses the layout for GSS_WITH_OPS. */
875 /* A statement with the invariant that
876 stmt->code == GIMPLE_SWITCH
877 i.e. a switch statement. */
879 struct GTY((tag("GSS_WITH_OPS")))
880 gswitch : public gimple_statement_with_ops
882 /* no additional fields; this uses the layout for GSS_WITH_OPS. */
885 /* A statement with the invariant that
886 stmt->code == GIMPLE_ASSIGN
887 i.e. an assignment statement. */
889 struct GTY((tag("GSS_WITH_MEM_OPS")))
890 gassign : public gimple_statement_with_memory_ops
892 static const enum gimple_code code_ = GIMPLE_ASSIGN;
893 /* no additional fields; this uses the layout for GSS_WITH_MEM_OPS. */
896 /* A statement with the invariant that
897 stmt->code == GIMPLE_RETURN
898 i.e. a return statement. */
900 struct GTY((tag("GSS_WITH_MEM_OPS")))
901 greturn : public gimple_statement_with_memory_ops
903 /* no additional fields; this uses the layout for GSS_WITH_MEM_OPS. */
906 template <>
907 template <>
908 inline bool
909 is_a_helper <gasm *>::test (gimple *gs)
911 return gs->code == GIMPLE_ASM;
914 template <>
915 template <>
916 inline bool
917 is_a_helper <gassign *>::test (gimple *gs)
919 return gs->code == GIMPLE_ASSIGN;
922 template <>
923 template <>
924 inline bool
925 is_a_helper <const gassign *>::test (const gimple *gs)
927 return gs->code == GIMPLE_ASSIGN;
930 template <>
931 template <>
932 inline bool
933 is_a_helper <gbind *>::test (gimple *gs)
935 return gs->code == GIMPLE_BIND;
938 template <>
939 template <>
940 inline bool
941 is_a_helper <gcall *>::test (gimple *gs)
943 return gs->code == GIMPLE_CALL;
946 template <>
947 template <>
948 inline bool
949 is_a_helper <gcatch *>::test (gimple *gs)
951 return gs->code == GIMPLE_CATCH;
954 template <>
955 template <>
956 inline bool
957 is_a_helper <gcond *>::test (gimple *gs)
959 return gs->code == GIMPLE_COND;
962 template <>
963 template <>
964 inline bool
965 is_a_helper <const gcond *>::test (const gimple *gs)
967 return gs->code == GIMPLE_COND;
970 template <>
971 template <>
972 inline bool
973 is_a_helper <gdebug *>::test (gimple *gs)
975 return gs->code == GIMPLE_DEBUG;
978 template <>
979 template <>
980 inline bool
981 is_a_helper <ggoto *>::test (gimple *gs)
983 return gs->code == GIMPLE_GOTO;
986 template <>
987 template <>
988 inline bool
989 is_a_helper <glabel *>::test (gimple *gs)
991 return gs->code == GIMPLE_LABEL;
994 template <>
995 template <>
996 inline bool
997 is_a_helper <gresx *>::test (gimple *gs)
999 return gs->code == GIMPLE_RESX;
1002 template <>
1003 template <>
1004 inline bool
1005 is_a_helper <geh_dispatch *>::test (gimple *gs)
1007 return gs->code == GIMPLE_EH_DISPATCH;
1010 template <>
1011 template <>
1012 inline bool
1013 is_a_helper <geh_else *>::test (gimple *gs)
1015 return gs->code == GIMPLE_EH_ELSE;
1018 template <>
1019 template <>
1020 inline bool
1021 is_a_helper <geh_filter *>::test (gimple *gs)
1023 return gs->code == GIMPLE_EH_FILTER;
1026 template <>
1027 template <>
1028 inline bool
1029 is_a_helper <geh_mnt *>::test (gimple *gs)
1031 return gs->code == GIMPLE_EH_MUST_NOT_THROW;
1034 template <>
1035 template <>
1036 inline bool
1037 is_a_helper <gomp_atomic_load *>::test (gimple *gs)
1039 return gs->code == GIMPLE_OMP_ATOMIC_LOAD;
1042 template <>
1043 template <>
1044 inline bool
1045 is_a_helper <gomp_atomic_store *>::test (gimple *gs)
1047 return gs->code == GIMPLE_OMP_ATOMIC_STORE;
1050 template <>
1051 template <>
1052 inline bool
1053 is_a_helper <gimple_statement_omp_return *>::test (gimple *gs)
1055 return gs->code == GIMPLE_OMP_RETURN;
1058 template <>
1059 template <>
1060 inline bool
1061 is_a_helper <gomp_continue *>::test (gimple *gs)
1063 return gs->code == GIMPLE_OMP_CONTINUE;
1066 template <>
1067 template <>
1068 inline bool
1069 is_a_helper <gomp_critical *>::test (gimple *gs)
1071 return gs->code == GIMPLE_OMP_CRITICAL;
1074 template <>
1075 template <>
1076 inline bool
1077 is_a_helper <gomp_for *>::test (gimple *gs)
1079 return gs->code == GIMPLE_OMP_FOR;
1082 template <>
1083 template <>
1084 inline bool
1085 is_a_helper <gimple_statement_omp_taskreg *>::test (gimple *gs)
1087 return gs->code == GIMPLE_OMP_PARALLEL || gs->code == GIMPLE_OMP_TASK;
1090 template <>
1091 template <>
1092 inline bool
1093 is_a_helper <gomp_parallel *>::test (gimple *gs)
1095 return gs->code == GIMPLE_OMP_PARALLEL;
1098 template <>
1099 template <>
1100 inline bool
1101 is_a_helper <gomp_target *>::test (gimple *gs)
1103 return gs->code == GIMPLE_OMP_TARGET;
1106 template <>
1107 template <>
1108 inline bool
1109 is_a_helper <gomp_sections *>::test (gimple *gs)
1111 return gs->code == GIMPLE_OMP_SECTIONS;
1114 template <>
1115 template <>
1116 inline bool
1117 is_a_helper <gomp_single *>::test (gimple *gs)
1119 return gs->code == GIMPLE_OMP_SINGLE;
1122 template <>
1123 template <>
1124 inline bool
1125 is_a_helper <gomp_teams *>::test (gimple *gs)
1127 return gs->code == GIMPLE_OMP_TEAMS;
1130 template <>
1131 template <>
1132 inline bool
1133 is_a_helper <gomp_task *>::test (gimple *gs)
1135 return gs->code == GIMPLE_OMP_TASK;
1138 template <>
1139 template <>
1140 inline bool
1141 is_a_helper <gphi *>::test (gimple *gs)
1143 return gs->code == GIMPLE_PHI;
1146 template <>
1147 template <>
1148 inline bool
1149 is_a_helper <greturn *>::test (gimple *gs)
1151 return gs->code == GIMPLE_RETURN;
1154 template <>
1155 template <>
1156 inline bool
1157 is_a_helper <gswitch *>::test (gimple *gs)
1159 return gs->code == GIMPLE_SWITCH;
1162 template <>
1163 template <>
1164 inline bool
1165 is_a_helper <gtransaction *>::test (gimple *gs)
1167 return gs->code == GIMPLE_TRANSACTION;
1170 template <>
1171 template <>
1172 inline bool
1173 is_a_helper <gtry *>::test (gimple *gs)
1175 return gs->code == GIMPLE_TRY;
1178 template <>
1179 template <>
1180 inline bool
1181 is_a_helper <gimple_statement_wce *>::test (gimple *gs)
1183 return gs->code == GIMPLE_WITH_CLEANUP_EXPR;
1186 template <>
1187 template <>
1188 inline bool
1189 is_a_helper <const gasm *>::test (const gimple *gs)
1191 return gs->code == GIMPLE_ASM;
1194 template <>
1195 template <>
1196 inline bool
1197 is_a_helper <const gbind *>::test (const gimple *gs)
1199 return gs->code == GIMPLE_BIND;
1202 template <>
1203 template <>
1204 inline bool
1205 is_a_helper <const gcall *>::test (const gimple *gs)
1207 return gs->code == GIMPLE_CALL;
1210 template <>
1211 template <>
1212 inline bool
1213 is_a_helper <const gcatch *>::test (const gimple *gs)
1215 return gs->code == GIMPLE_CATCH;
1218 template <>
1219 template <>
1220 inline bool
1221 is_a_helper <const gresx *>::test (const gimple *gs)
1223 return gs->code == GIMPLE_RESX;
1226 template <>
1227 template <>
1228 inline bool
1229 is_a_helper <const geh_dispatch *>::test (const gimple *gs)
1231 return gs->code == GIMPLE_EH_DISPATCH;
1234 template <>
1235 template <>
1236 inline bool
1237 is_a_helper <const geh_filter *>::test (const gimple *gs)
1239 return gs->code == GIMPLE_EH_FILTER;
1242 template <>
1243 template <>
1244 inline bool
1245 is_a_helper <const gomp_atomic_load *>::test (const gimple *gs)
1247 return gs->code == GIMPLE_OMP_ATOMIC_LOAD;
1250 template <>
1251 template <>
1252 inline bool
1253 is_a_helper <const gomp_atomic_store *>::test (const gimple *gs)
1255 return gs->code == GIMPLE_OMP_ATOMIC_STORE;
1258 template <>
1259 template <>
1260 inline bool
1261 is_a_helper <const gimple_statement_omp_return *>::test (const gimple *gs)
1263 return gs->code == GIMPLE_OMP_RETURN;
1266 template <>
1267 template <>
1268 inline bool
1269 is_a_helper <const gomp_continue *>::test (const gimple *gs)
1271 return gs->code == GIMPLE_OMP_CONTINUE;
1274 template <>
1275 template <>
1276 inline bool
1277 is_a_helper <const gomp_critical *>::test (const gimple *gs)
1279 return gs->code == GIMPLE_OMP_CRITICAL;
1282 template <>
1283 template <>
1284 inline bool
1285 is_a_helper <const gomp_for *>::test (const gimple *gs)
1287 return gs->code == GIMPLE_OMP_FOR;
1290 template <>
1291 template <>
1292 inline bool
1293 is_a_helper <const gimple_statement_omp_taskreg *>::test (const gimple *gs)
1295 return gs->code == GIMPLE_OMP_PARALLEL || gs->code == GIMPLE_OMP_TASK;
1298 template <>
1299 template <>
1300 inline bool
1301 is_a_helper <const gomp_parallel *>::test (const gimple *gs)
1303 return gs->code == GIMPLE_OMP_PARALLEL;
1306 template <>
1307 template <>
1308 inline bool
1309 is_a_helper <const gomp_target *>::test (const gimple *gs)
1311 return gs->code == GIMPLE_OMP_TARGET;
1314 template <>
1315 template <>
1316 inline bool
1317 is_a_helper <const gomp_sections *>::test (const gimple *gs)
1319 return gs->code == GIMPLE_OMP_SECTIONS;
1322 template <>
1323 template <>
1324 inline bool
1325 is_a_helper <const gomp_single *>::test (const gimple *gs)
1327 return gs->code == GIMPLE_OMP_SINGLE;
1330 template <>
1331 template <>
1332 inline bool
1333 is_a_helper <const gomp_teams *>::test (const gimple *gs)
1335 return gs->code == GIMPLE_OMP_TEAMS;
1338 template <>
1339 template <>
1340 inline bool
1341 is_a_helper <const gomp_task *>::test (const gimple *gs)
1343 return gs->code == GIMPLE_OMP_TASK;
1346 template <>
1347 template <>
1348 inline bool
1349 is_a_helper <const gphi *>::test (const gimple *gs)
1351 return gs->code == GIMPLE_PHI;
1354 template <>
1355 template <>
1356 inline bool
1357 is_a_helper <const gtransaction *>::test (const gimple *gs)
1359 return gs->code == GIMPLE_TRANSACTION;
1362 /* Offset in bytes to the location of the operand vector.
1363 Zero if there is no operand vector for this tuple structure. */
1364 extern size_t const gimple_ops_offset_[];
1366 /* Map GIMPLE codes to GSS codes. */
1367 extern enum gimple_statement_structure_enum const gss_for_code_[];
1369 /* This variable holds the currently expanded gimple statement for purposes
1370 of comminucating the profile info to the builtin expanders. */
1371 extern gimple *currently_expanding_gimple_stmt;
1373 #define gimple_alloc(c, n) gimple_alloc_stat (c, n MEM_STAT_INFO)
1374 gimple *gimple_alloc_stat (enum gimple_code, unsigned MEM_STAT_DECL);
1375 greturn *gimple_build_return (tree);
1376 void gimple_call_reset_alias_info (gcall *);
1377 gcall *gimple_build_call_vec (tree, vec<tree> );
1378 gcall *gimple_build_call (tree, unsigned, ...);
1379 gcall *gimple_build_call_valist (tree, unsigned, va_list);
1380 gcall *gimple_build_call_internal (enum internal_fn, unsigned, ...);
1381 gcall *gimple_build_call_internal_vec (enum internal_fn, vec<tree> );
1382 gcall *gimple_build_call_from_tree (tree);
1383 gassign *gimple_build_assign (tree, tree CXX_MEM_STAT_INFO);
1384 gassign *gimple_build_assign (tree, enum tree_code,
1385 tree, tree, tree CXX_MEM_STAT_INFO);
1386 gassign *gimple_build_assign (tree, enum tree_code,
1387 tree, tree CXX_MEM_STAT_INFO);
1388 gassign *gimple_build_assign (tree, enum tree_code, tree CXX_MEM_STAT_INFO);
1389 gcond *gimple_build_cond (enum tree_code, tree, tree, tree, tree);
1390 gcond *gimple_build_cond_from_tree (tree, tree, tree);
1391 void gimple_cond_set_condition_from_tree (gcond *, tree);
1392 glabel *gimple_build_label (tree label);
1393 ggoto *gimple_build_goto (tree dest);
1394 gimple *gimple_build_nop (void);
1395 gbind *gimple_build_bind (tree, gimple_seq, tree);
1396 gasm *gimple_build_asm_vec (const char *, vec<tree, va_gc> *,
1397 vec<tree, va_gc> *, vec<tree, va_gc> *,
1398 vec<tree, va_gc> *);
1399 gcatch *gimple_build_catch (tree, gimple_seq);
1400 geh_filter *gimple_build_eh_filter (tree, gimple_seq);
1401 geh_mnt *gimple_build_eh_must_not_throw (tree);
1402 geh_else *gimple_build_eh_else (gimple_seq, gimple_seq);
1403 gtry *gimple_build_try (gimple_seq, gimple_seq,
1404 enum gimple_try_flags);
1405 gimple *gimple_build_wce (gimple_seq);
1406 gresx *gimple_build_resx (int);
1407 gswitch *gimple_build_switch_nlabels (unsigned, tree, tree);
1408 gswitch *gimple_build_switch (tree, tree, vec<tree> );
1409 geh_dispatch *gimple_build_eh_dispatch (int);
1410 gdebug *gimple_build_debug_bind_stat (tree, tree, gimple * MEM_STAT_DECL);
1411 #define gimple_build_debug_bind(var,val,stmt) \
1412 gimple_build_debug_bind_stat ((var), (val), (stmt) MEM_STAT_INFO)
1413 gdebug *gimple_build_debug_source_bind_stat (tree, tree, gimple * MEM_STAT_DECL);
1414 #define gimple_build_debug_source_bind(var,val,stmt) \
1415 gimple_build_debug_source_bind_stat ((var), (val), (stmt) MEM_STAT_INFO)
1416 gomp_critical *gimple_build_omp_critical (gimple_seq, tree);
1417 gomp_for *gimple_build_omp_for (gimple_seq, int, tree, size_t, gimple_seq);
1418 gomp_parallel *gimple_build_omp_parallel (gimple_seq, tree, tree, tree);
1419 gomp_task *gimple_build_omp_task (gimple_seq, tree, tree, tree, tree,
1420 tree, tree);
1421 gimple *gimple_build_omp_section (gimple_seq);
1422 gimple *gimple_build_omp_master (gimple_seq);
1423 gimple *gimple_build_omp_taskgroup (gimple_seq);
1424 gomp_continue *gimple_build_omp_continue (tree, tree);
1425 gimple *gimple_build_omp_ordered (gimple_seq);
1426 gimple *gimple_build_omp_return (bool);
1427 gomp_sections *gimple_build_omp_sections (gimple_seq, tree);
1428 gimple *gimple_build_omp_sections_switch (void);
1429 gomp_single *gimple_build_omp_single (gimple_seq, tree);
1430 gomp_target *gimple_build_omp_target (gimple_seq, int, tree);
1431 gomp_teams *gimple_build_omp_teams (gimple_seq, tree);
1432 gomp_atomic_load *gimple_build_omp_atomic_load (tree, tree);
1433 gomp_atomic_store *gimple_build_omp_atomic_store (tree);
1434 gtransaction *gimple_build_transaction (gimple_seq, tree);
1435 extern void gimple_seq_add_stmt (gimple_seq *, gimple *);
1436 extern void gimple_seq_add_stmt_without_update (gimple_seq *, gimple *);
1437 void gimple_seq_add_seq (gimple_seq *, gimple_seq);
1438 void gimple_seq_add_seq_without_update (gimple_seq *, gimple_seq);
1439 extern void annotate_all_with_location_after (gimple_seq, gimple_stmt_iterator,
1440 location_t);
1441 extern void annotate_all_with_location (gimple_seq, location_t);
1442 bool empty_body_p (gimple_seq);
1443 gimple_seq gimple_seq_copy (gimple_seq);
1444 bool gimple_call_same_target_p (const gimple *, const gimple *);
1445 int gimple_call_flags (const gimple *);
1446 int gimple_call_arg_flags (const gcall *, unsigned);
1447 int gimple_call_return_flags (const gcall *);
1448 bool gimple_assign_copy_p (gimple *);
1449 bool gimple_assign_ssa_name_copy_p (gimple *);
1450 bool gimple_assign_unary_nop_p (gimple *);
1451 void gimple_set_bb (gimple *, basic_block);
1452 void gimple_assign_set_rhs_from_tree (gimple_stmt_iterator *, tree);
1453 void gimple_assign_set_rhs_with_ops (gimple_stmt_iterator *, enum tree_code,
1454 tree, tree, tree);
1455 tree gimple_get_lhs (const gimple *);
1456 void gimple_set_lhs (gimple *, tree);
1457 gimple *gimple_copy (gimple *);
1458 bool gimple_has_side_effects (const gimple *);
1459 bool gimple_could_trap_p_1 (gimple *, bool, bool);
1460 bool gimple_could_trap_p (gimple *);
1461 bool gimple_assign_rhs_could_trap_p (gimple *);
1462 extern void dump_gimple_statistics (void);
1463 unsigned get_gimple_rhs_num_ops (enum tree_code);
1464 extern tree canonicalize_cond_expr_cond (tree);
1465 gcall *gimple_call_copy_skip_args (gcall *, bitmap);
1466 extern bool gimple_compare_field_offset (tree, tree);
1467 extern tree gimple_unsigned_type (tree);
1468 extern tree gimple_signed_type (tree);
1469 extern alias_set_type gimple_get_alias_set (tree);
1470 extern bool gimple_ior_addresses_taken (bitmap, gimple *);
1471 extern bool gimple_builtin_call_types_compatible_p (const gimple *, tree);
1472 extern bool gimple_call_builtin_p (const gimple *);
1473 extern bool gimple_call_builtin_p (const gimple *, enum built_in_class);
1474 extern bool gimple_call_builtin_p (const gimple *, enum built_in_function);
1475 extern bool gimple_asm_clobbers_memory_p (const gasm *);
1476 extern void dump_decl_set (FILE *, bitmap);
1477 extern bool nonfreeing_call_p (gimple *);
1478 extern bool infer_nonnull_range (gimple *, tree);
1479 extern bool infer_nonnull_range_by_dereference (gimple *, tree);
1480 extern bool infer_nonnull_range_by_attribute (gimple *, tree);
1481 extern void sort_case_labels (vec<tree>);
1482 extern void preprocess_case_label_vec_for_gimple (vec<tree>, tree, tree *);
1483 extern void gimple_seq_set_location (gimple_seq, location_t);
1484 extern void gimple_seq_discard (gimple_seq);
1485 extern void maybe_remove_unused_call_args (struct function *, gimple *);
1487 /* Formal (expression) temporary table handling: multiple occurrences of
1488 the same scalar expression are evaluated into the same temporary. */
1490 typedef struct gimple_temp_hash_elt
1492 tree val; /* Key */
1493 tree temp; /* Value */
1494 } elt_t;
1496 /* Get the number of the next statement uid to be allocated. */
1497 static inline unsigned int
1498 gimple_stmt_max_uid (struct function *fn)
1500 return fn->last_stmt_uid;
1503 /* Set the number of the next statement uid to be allocated. */
1504 static inline void
1505 set_gimple_stmt_max_uid (struct function *fn, unsigned int maxid)
1507 fn->last_stmt_uid = maxid;
1510 /* Set the number of the next statement uid to be allocated. */
1511 static inline unsigned int
1512 inc_gimple_stmt_max_uid (struct function *fn)
1514 return fn->last_stmt_uid++;
1517 /* Return the first node in GIMPLE sequence S. */
1519 static inline gimple_seq_node
1520 gimple_seq_first (gimple_seq s)
1522 return s;
1526 /* Return the first statement in GIMPLE sequence S. */
1528 static inline gimple *
1529 gimple_seq_first_stmt (gimple_seq s)
1531 gimple_seq_node n = gimple_seq_first (s);
1532 return n;
1535 /* Return the first statement in GIMPLE sequence S as a gbind *,
1536 verifying that it has code GIMPLE_BIND in a checked build. */
1538 static inline gbind *
1539 gimple_seq_first_stmt_as_a_bind (gimple_seq s)
1541 gimple_seq_node n = gimple_seq_first (s);
1542 return as_a <gbind *> (n);
1546 /* Return the last node in GIMPLE sequence S. */
1548 static inline gimple_seq_node
1549 gimple_seq_last (gimple_seq s)
1551 return s ? s->prev : NULL;
1555 /* Return the last statement in GIMPLE sequence S. */
1557 static inline gimple *
1558 gimple_seq_last_stmt (gimple_seq s)
1560 gimple_seq_node n = gimple_seq_last (s);
1561 return n;
1565 /* Set the last node in GIMPLE sequence *PS to LAST. */
1567 static inline void
1568 gimple_seq_set_last (gimple_seq *ps, gimple_seq_node last)
1570 (*ps)->prev = last;
1574 /* Set the first node in GIMPLE sequence *PS to FIRST. */
1576 static inline void
1577 gimple_seq_set_first (gimple_seq *ps, gimple_seq_node first)
1579 *ps = first;
1583 /* Return true if GIMPLE sequence S is empty. */
1585 static inline bool
1586 gimple_seq_empty_p (gimple_seq s)
1588 return s == NULL;
1591 /* Allocate a new sequence and initialize its first element with STMT. */
1593 static inline gimple_seq
1594 gimple_seq_alloc_with_stmt (gimple *stmt)
1596 gimple_seq seq = NULL;
1597 gimple_seq_add_stmt (&seq, stmt);
1598 return seq;
1602 /* Returns the sequence of statements in BB. */
1604 static inline gimple_seq
1605 bb_seq (const_basic_block bb)
1607 return (!(bb->flags & BB_RTL)) ? bb->il.gimple.seq : NULL;
1610 static inline gimple_seq *
1611 bb_seq_addr (basic_block bb)
1613 return (!(bb->flags & BB_RTL)) ? &bb->il.gimple.seq : NULL;
1616 /* Sets the sequence of statements in BB to SEQ. */
1618 static inline void
1619 set_bb_seq (basic_block bb, gimple_seq seq)
1621 gcc_checking_assert (!(bb->flags & BB_RTL));
1622 bb->il.gimple.seq = seq;
1626 /* Return the code for GIMPLE statement G. */
1628 static inline enum gimple_code
1629 gimple_code (const gimple *g)
1631 return g->code;
1635 /* Return the GSS code used by a GIMPLE code. */
1637 static inline enum gimple_statement_structure_enum
1638 gss_for_code (enum gimple_code code)
1640 gcc_gimple_checking_assert ((unsigned int)code < LAST_AND_UNUSED_GIMPLE_CODE);
1641 return gss_for_code_[code];
1645 /* Return which GSS code is used by GS. */
1647 static inline enum gimple_statement_structure_enum
1648 gimple_statement_structure (gimple *gs)
1650 return gss_for_code (gimple_code (gs));
1654 /* Return true if statement G has sub-statements. This is only true for
1655 High GIMPLE statements. */
1657 static inline bool
1658 gimple_has_substatements (gimple *g)
1660 switch (gimple_code (g))
1662 case GIMPLE_BIND:
1663 case GIMPLE_CATCH:
1664 case GIMPLE_EH_FILTER:
1665 case GIMPLE_EH_ELSE:
1666 case GIMPLE_TRY:
1667 case GIMPLE_OMP_FOR:
1668 case GIMPLE_OMP_MASTER:
1669 case GIMPLE_OMP_TASKGROUP:
1670 case GIMPLE_OMP_ORDERED:
1671 case GIMPLE_OMP_SECTION:
1672 case GIMPLE_OMP_PARALLEL:
1673 case GIMPLE_OMP_TASK:
1674 case GIMPLE_OMP_SECTIONS:
1675 case GIMPLE_OMP_SINGLE:
1676 case GIMPLE_OMP_TARGET:
1677 case GIMPLE_OMP_TEAMS:
1678 case GIMPLE_OMP_CRITICAL:
1679 case GIMPLE_WITH_CLEANUP_EXPR:
1680 case GIMPLE_TRANSACTION:
1681 return true;
1683 default:
1684 return false;
1689 /* Return the basic block holding statement G. */
1691 static inline basic_block
1692 gimple_bb (const gimple *g)
1694 return g->bb;
1698 /* Return the lexical scope block holding statement G. */
1700 static inline tree
1701 gimple_block (const gimple *g)
1703 return LOCATION_BLOCK (g->location);
1707 /* Set BLOCK to be the lexical scope block holding statement G. */
1709 static inline void
1710 gimple_set_block (gimple *g, tree block)
1712 if (block)
1713 g->location =
1714 COMBINE_LOCATION_DATA (line_table, g->location, block);
1715 else
1716 g->location = LOCATION_LOCUS (g->location);
1720 /* Return location information for statement G. */
1722 static inline location_t
1723 gimple_location (const gimple *g)
1725 return g->location;
1728 /* Return location information for statement G if g is not NULL.
1729 Otherwise, UNKNOWN_LOCATION is returned. */
1731 static inline location_t
1732 gimple_location_safe (const gimple *g)
1734 return g ? gimple_location (g) : UNKNOWN_LOCATION;
1737 /* Set location information for statement G. */
1739 static inline void
1740 gimple_set_location (gimple *g, location_t location)
1742 g->location = location;
1746 /* Return true if G contains location information. */
1748 static inline bool
1749 gimple_has_location (const gimple *g)
1751 return LOCATION_LOCUS (gimple_location (g)) != UNKNOWN_LOCATION;
1755 /* Return the file name of the location of STMT. */
1757 static inline const char *
1758 gimple_filename (const gimple *stmt)
1760 return LOCATION_FILE (gimple_location (stmt));
1764 /* Return the line number of the location of STMT. */
1766 static inline int
1767 gimple_lineno (const gimple *stmt)
1769 return LOCATION_LINE (gimple_location (stmt));
1773 /* Determine whether SEQ is a singleton. */
1775 static inline bool
1776 gimple_seq_singleton_p (gimple_seq seq)
1778 return ((gimple_seq_first (seq) != NULL)
1779 && (gimple_seq_first (seq) == gimple_seq_last (seq)));
1782 /* Return true if no warnings should be emitted for statement STMT. */
1784 static inline bool
1785 gimple_no_warning_p (const gimple *stmt)
1787 return stmt->no_warning;
1790 /* Set the no_warning flag of STMT to NO_WARNING. */
1792 static inline void
1793 gimple_set_no_warning (gimple *stmt, bool no_warning)
1795 stmt->no_warning = (unsigned) no_warning;
1798 /* Set the visited status on statement STMT to VISITED_P.
1800 Please note that this 'visited' property of the gimple statement is
1801 supposed to be undefined at pass boundaries. This means that a
1802 given pass should not assume it contains any useful value when the
1803 pass starts and thus can set it to any value it sees fit.
1805 You can learn more about the visited property of the gimple
1806 statement by reading the comments of the 'visited' data member of
1807 struct gimple.
1810 static inline void
1811 gimple_set_visited (gimple *stmt, bool visited_p)
1813 stmt->visited = (unsigned) visited_p;
1817 /* Return the visited status for statement STMT.
1819 Please note that this 'visited' property of the gimple statement is
1820 supposed to be undefined at pass boundaries. This means that a
1821 given pass should not assume it contains any useful value when the
1822 pass starts and thus can set it to any value it sees fit.
1824 You can learn more about the visited property of the gimple
1825 statement by reading the comments of the 'visited' data member of
1826 struct gimple. */
1828 static inline bool
1829 gimple_visited_p (gimple *stmt)
1831 return stmt->visited;
1835 /* Set pass local flag PLF on statement STMT to VAL_P.
1837 Please note that this PLF property of the gimple statement is
1838 supposed to be undefined at pass boundaries. This means that a
1839 given pass should not assume it contains any useful value when the
1840 pass starts and thus can set it to any value it sees fit.
1842 You can learn more about the PLF property by reading the comment of
1843 the 'plf' data member of struct gimple_statement_structure. */
1845 static inline void
1846 gimple_set_plf (gimple *stmt, enum plf_mask plf, bool val_p)
1848 if (val_p)
1849 stmt->plf |= (unsigned int) plf;
1850 else
1851 stmt->plf &= ~((unsigned int) plf);
1855 /* Return the value of pass local flag PLF on statement STMT.
1857 Please note that this 'plf' property of the gimple statement is
1858 supposed to be undefined at pass boundaries. This means that a
1859 given pass should not assume it contains any useful value when the
1860 pass starts and thus can set it to any value it sees fit.
1862 You can learn more about the plf property by reading the comment of
1863 the 'plf' data member of struct gimple_statement_structure. */
1865 static inline unsigned int
1866 gimple_plf (gimple *stmt, enum plf_mask plf)
1868 return stmt->plf & ((unsigned int) plf);
1872 /* Set the UID of statement.
1874 Please note that this UID property is supposed to be undefined at
1875 pass boundaries. This means that a given pass should not assume it
1876 contains any useful value when the pass starts and thus can set it
1877 to any value it sees fit. */
1879 static inline void
1880 gimple_set_uid (gimple *g, unsigned uid)
1882 g->uid = uid;
1886 /* Return the UID of statement.
1888 Please note that this UID property is supposed to be undefined at
1889 pass boundaries. This means that a given pass should not assume it
1890 contains any useful value when the pass starts and thus can set it
1891 to any value it sees fit. */
1893 static inline unsigned
1894 gimple_uid (const gimple *g)
1896 return g->uid;
1900 /* Make statement G a singleton sequence. */
1902 static inline void
1903 gimple_init_singleton (gimple *g)
1905 g->next = NULL;
1906 g->prev = g;
1910 /* Return true if GIMPLE statement G has register or memory operands. */
1912 static inline bool
1913 gimple_has_ops (const gimple *g)
1915 return gimple_code (g) >= GIMPLE_COND && gimple_code (g) <= GIMPLE_RETURN;
1918 template <>
1919 template <>
1920 inline bool
1921 is_a_helper <const gimple_statement_with_ops *>::test (const gimple *gs)
1923 return gimple_has_ops (gs);
1926 template <>
1927 template <>
1928 inline bool
1929 is_a_helper <gimple_statement_with_ops *>::test (gimple *gs)
1931 return gimple_has_ops (gs);
1934 /* Return true if GIMPLE statement G has memory operands. */
1936 static inline bool
1937 gimple_has_mem_ops (const gimple *g)
1939 return gimple_code (g) >= GIMPLE_ASSIGN && gimple_code (g) <= GIMPLE_RETURN;
1942 template <>
1943 template <>
1944 inline bool
1945 is_a_helper <const gimple_statement_with_memory_ops *>::test (const gimple *gs)
1947 return gimple_has_mem_ops (gs);
1950 template <>
1951 template <>
1952 inline bool
1953 is_a_helper <gimple_statement_with_memory_ops *>::test (gimple *gs)
1955 return gimple_has_mem_ops (gs);
1958 /* Return the set of USE operands for statement G. */
1960 static inline struct use_optype_d *
1961 gimple_use_ops (const gimple *g)
1963 const gimple_statement_with_ops *ops_stmt =
1964 dyn_cast <const gimple_statement_with_ops *> (g);
1965 if (!ops_stmt)
1966 return NULL;
1967 return ops_stmt->use_ops;
1971 /* Set USE to be the set of USE operands for statement G. */
1973 static inline void
1974 gimple_set_use_ops (gimple *g, struct use_optype_d *use)
1976 gimple_statement_with_ops *ops_stmt =
1977 as_a <gimple_statement_with_ops *> (g);
1978 ops_stmt->use_ops = use;
1982 /* Return the single VUSE operand of the statement G. */
1984 static inline tree
1985 gimple_vuse (const gimple *g)
1987 const gimple_statement_with_memory_ops *mem_ops_stmt =
1988 dyn_cast <const gimple_statement_with_memory_ops *> (g);
1989 if (!mem_ops_stmt)
1990 return NULL_TREE;
1991 return mem_ops_stmt->vuse;
1994 /* Return the single VDEF operand of the statement G. */
1996 static inline tree
1997 gimple_vdef (const gimple *g)
1999 const gimple_statement_with_memory_ops *mem_ops_stmt =
2000 dyn_cast <const gimple_statement_with_memory_ops *> (g);
2001 if (!mem_ops_stmt)
2002 return NULL_TREE;
2003 return mem_ops_stmt->vdef;
2006 /* Return the single VUSE operand of the statement G. */
2008 static inline tree *
2009 gimple_vuse_ptr (gimple *g)
2011 gimple_statement_with_memory_ops *mem_ops_stmt =
2012 dyn_cast <gimple_statement_with_memory_ops *> (g);
2013 if (!mem_ops_stmt)
2014 return NULL;
2015 return &mem_ops_stmt->vuse;
2018 /* Return the single VDEF operand of the statement G. */
2020 static inline tree *
2021 gimple_vdef_ptr (gimple *g)
2023 gimple_statement_with_memory_ops *mem_ops_stmt =
2024 dyn_cast <gimple_statement_with_memory_ops *> (g);
2025 if (!mem_ops_stmt)
2026 return NULL;
2027 return &mem_ops_stmt->vdef;
2030 /* Set the single VUSE operand of the statement G. */
2032 static inline void
2033 gimple_set_vuse (gimple *g, tree vuse)
2035 gimple_statement_with_memory_ops *mem_ops_stmt =
2036 as_a <gimple_statement_with_memory_ops *> (g);
2037 mem_ops_stmt->vuse = vuse;
2040 /* Set the single VDEF operand of the statement G. */
2042 static inline void
2043 gimple_set_vdef (gimple *g, tree vdef)
2045 gimple_statement_with_memory_ops *mem_ops_stmt =
2046 as_a <gimple_statement_with_memory_ops *> (g);
2047 mem_ops_stmt->vdef = vdef;
2051 /* Return true if statement G has operands and the modified field has
2052 been set. */
2054 static inline bool
2055 gimple_modified_p (const gimple *g)
2057 return (gimple_has_ops (g)) ? (bool) g->modified : false;
2061 /* Set the MODIFIED flag to MODIFIEDP, iff the gimple statement G has
2062 a MODIFIED field. */
2064 static inline void
2065 gimple_set_modified (gimple *s, bool modifiedp)
2067 if (gimple_has_ops (s))
2068 s->modified = (unsigned) modifiedp;
2072 /* Return the tree code for the expression computed by STMT. This is
2073 only valid for GIMPLE_COND, GIMPLE_CALL and GIMPLE_ASSIGN. For
2074 GIMPLE_CALL, return CALL_EXPR as the expression code for
2075 consistency. This is useful when the caller needs to deal with the
2076 three kinds of computation that GIMPLE supports. */
2078 static inline enum tree_code
2079 gimple_expr_code (const gimple *stmt)
2081 enum gimple_code code = gimple_code (stmt);
2082 if (code == GIMPLE_ASSIGN || code == GIMPLE_COND)
2083 return (enum tree_code) stmt->subcode;
2084 else
2086 gcc_gimple_checking_assert (code == GIMPLE_CALL);
2087 return CALL_EXPR;
2092 /* Return true if statement STMT contains volatile operands. */
2094 static inline bool
2095 gimple_has_volatile_ops (const gimple *stmt)
2097 if (gimple_has_mem_ops (stmt))
2098 return stmt->has_volatile_ops;
2099 else
2100 return false;
2104 /* Set the HAS_VOLATILE_OPS flag to VOLATILEP. */
2106 static inline void
2107 gimple_set_has_volatile_ops (gimple *stmt, bool volatilep)
2109 if (gimple_has_mem_ops (stmt))
2110 stmt->has_volatile_ops = (unsigned) volatilep;
2113 /* Return true if STMT is in a transaction. */
2115 static inline bool
2116 gimple_in_transaction (const gimple *stmt)
2118 return bb_in_transaction (gimple_bb (stmt));
2121 /* Return true if statement STMT may access memory. */
2123 static inline bool
2124 gimple_references_memory_p (gimple *stmt)
2126 return gimple_has_mem_ops (stmt) && gimple_vuse (stmt);
2130 /* Return the subcode for OMP statement S. */
2132 static inline unsigned
2133 gimple_omp_subcode (const gimple *s)
2135 gcc_gimple_checking_assert (gimple_code (s) >= GIMPLE_OMP_ATOMIC_LOAD
2136 && gimple_code (s) <= GIMPLE_OMP_TEAMS);
2137 return s->subcode;
2140 /* Set the subcode for OMP statement S to SUBCODE. */
2142 static inline void
2143 gimple_omp_set_subcode (gimple *s, unsigned int subcode)
2145 /* We only have 16 bits for the subcode. Assert that we are not
2146 overflowing it. */
2147 gcc_gimple_checking_assert (subcode < (1 << 16));
2148 s->subcode = subcode;
2151 /* Set the nowait flag on OMP_RETURN statement S. */
2153 static inline void
2154 gimple_omp_return_set_nowait (gimple *s)
2156 GIMPLE_CHECK (s, GIMPLE_OMP_RETURN);
2157 s->subcode |= GF_OMP_RETURN_NOWAIT;
2161 /* Return true if OMP return statement G has the GF_OMP_RETURN_NOWAIT
2162 flag set. */
2164 static inline bool
2165 gimple_omp_return_nowait_p (const gimple *g)
2167 GIMPLE_CHECK (g, GIMPLE_OMP_RETURN);
2168 return (gimple_omp_subcode (g) & GF_OMP_RETURN_NOWAIT) != 0;
2172 /* Set the LHS of OMP return. */
2174 static inline void
2175 gimple_omp_return_set_lhs (gimple *g, tree lhs)
2177 gimple_statement_omp_return *omp_return_stmt =
2178 as_a <gimple_statement_omp_return *> (g);
2179 omp_return_stmt->val = lhs;
2183 /* Get the LHS of OMP return. */
2185 static inline tree
2186 gimple_omp_return_lhs (const gimple *g)
2188 const gimple_statement_omp_return *omp_return_stmt =
2189 as_a <const gimple_statement_omp_return *> (g);
2190 return omp_return_stmt->val;
2194 /* Return a pointer to the LHS of OMP return. */
2196 static inline tree *
2197 gimple_omp_return_lhs_ptr (gimple *g)
2199 gimple_statement_omp_return *omp_return_stmt =
2200 as_a <gimple_statement_omp_return *> (g);
2201 return &omp_return_stmt->val;
2205 /* Return true if OMP section statement G has the GF_OMP_SECTION_LAST
2206 flag set. */
2208 static inline bool
2209 gimple_omp_section_last_p (const gimple *g)
2211 GIMPLE_CHECK (g, GIMPLE_OMP_SECTION);
2212 return (gimple_omp_subcode (g) & GF_OMP_SECTION_LAST) != 0;
2216 /* Set the GF_OMP_SECTION_LAST flag on G. */
2218 static inline void
2219 gimple_omp_section_set_last (gimple *g)
2221 GIMPLE_CHECK (g, GIMPLE_OMP_SECTION);
2222 g->subcode |= GF_OMP_SECTION_LAST;
2226 /* Return true if OMP parallel statement G has the
2227 GF_OMP_PARALLEL_COMBINED flag set. */
2229 static inline bool
2230 gimple_omp_parallel_combined_p (const gimple *g)
2232 GIMPLE_CHECK (g, GIMPLE_OMP_PARALLEL);
2233 return (gimple_omp_subcode (g) & GF_OMP_PARALLEL_COMBINED) != 0;
2237 /* Set the GF_OMP_PARALLEL_COMBINED field in G depending on the boolean
2238 value of COMBINED_P. */
2240 static inline void
2241 gimple_omp_parallel_set_combined_p (gimple *g, bool combined_p)
2243 GIMPLE_CHECK (g, GIMPLE_OMP_PARALLEL);
2244 if (combined_p)
2245 g->subcode |= GF_OMP_PARALLEL_COMBINED;
2246 else
2247 g->subcode &= ~GF_OMP_PARALLEL_COMBINED;
2251 /* Return true if OMP atomic load/store statement G has the
2252 GF_OMP_ATOMIC_NEED_VALUE flag set. */
2254 static inline bool
2255 gimple_omp_atomic_need_value_p (const gimple *g)
2257 if (gimple_code (g) != GIMPLE_OMP_ATOMIC_LOAD)
2258 GIMPLE_CHECK (g, GIMPLE_OMP_ATOMIC_STORE);
2259 return (gimple_omp_subcode (g) & GF_OMP_ATOMIC_NEED_VALUE) != 0;
2263 /* Set the GF_OMP_ATOMIC_NEED_VALUE flag on G. */
2265 static inline void
2266 gimple_omp_atomic_set_need_value (gimple *g)
2268 if (gimple_code (g) != GIMPLE_OMP_ATOMIC_LOAD)
2269 GIMPLE_CHECK (g, GIMPLE_OMP_ATOMIC_STORE);
2270 g->subcode |= GF_OMP_ATOMIC_NEED_VALUE;
2274 /* Return true if OMP atomic load/store statement G has the
2275 GF_OMP_ATOMIC_SEQ_CST flag set. */
2277 static inline bool
2278 gimple_omp_atomic_seq_cst_p (const gimple *g)
2280 if (gimple_code (g) != GIMPLE_OMP_ATOMIC_LOAD)
2281 GIMPLE_CHECK (g, GIMPLE_OMP_ATOMIC_STORE);
2282 return (gimple_omp_subcode (g) & GF_OMP_ATOMIC_SEQ_CST) != 0;
2286 /* Set the GF_OMP_ATOMIC_SEQ_CST flag on G. */
2288 static inline void
2289 gimple_omp_atomic_set_seq_cst (gimple *g)
2291 if (gimple_code (g) != GIMPLE_OMP_ATOMIC_LOAD)
2292 GIMPLE_CHECK (g, GIMPLE_OMP_ATOMIC_STORE);
2293 g->subcode |= GF_OMP_ATOMIC_SEQ_CST;
2297 /* Return the number of operands for statement GS. */
2299 static inline unsigned
2300 gimple_num_ops (const gimple *gs)
2302 return gs->num_ops;
2306 /* Set the number of operands for statement GS. */
2308 static inline void
2309 gimple_set_num_ops (gimple *gs, unsigned num_ops)
2311 gs->num_ops = num_ops;
2315 /* Return the array of operands for statement GS. */
2317 static inline tree *
2318 gimple_ops (gimple *gs)
2320 size_t off;
2322 /* All the tuples have their operand vector at the very bottom
2323 of the structure. Note that those structures that do not
2324 have an operand vector have a zero offset. */
2325 off = gimple_ops_offset_[gimple_statement_structure (gs)];
2326 gcc_gimple_checking_assert (off != 0);
2328 return (tree *) ((char *) gs + off);
2332 /* Return operand I for statement GS. */
2334 static inline tree
2335 gimple_op (const gimple *gs, unsigned i)
2337 if (gimple_has_ops (gs))
2339 gcc_gimple_checking_assert (i < gimple_num_ops (gs));
2340 return gimple_ops (CONST_CAST_GIMPLE (gs))[i];
2342 else
2343 return NULL_TREE;
2346 /* Return a pointer to operand I for statement GS. */
2348 static inline tree *
2349 gimple_op_ptr (gimple *gs, unsigned i)
2351 if (gimple_has_ops (gs))
2353 gcc_gimple_checking_assert (i < gimple_num_ops (gs));
2354 return gimple_ops (gs) + i;
2356 else
2357 return NULL;
2360 /* Set operand I of statement GS to OP. */
2362 static inline void
2363 gimple_set_op (gimple *gs, unsigned i, tree op)
2365 gcc_gimple_checking_assert (gimple_has_ops (gs) && i < gimple_num_ops (gs));
2367 /* Note. It may be tempting to assert that OP matches
2368 is_gimple_operand, but that would be wrong. Different tuples
2369 accept slightly different sets of tree operands. Each caller
2370 should perform its own validation. */
2371 gimple_ops (gs)[i] = op;
2374 /* Return true if GS is a GIMPLE_ASSIGN. */
2376 static inline bool
2377 is_gimple_assign (const gimple *gs)
2379 return gimple_code (gs) == GIMPLE_ASSIGN;
2382 /* Determine if expression CODE is one of the valid expressions that can
2383 be used on the RHS of GIMPLE assignments. */
2385 static inline enum gimple_rhs_class
2386 get_gimple_rhs_class (enum tree_code code)
2388 return (enum gimple_rhs_class) gimple_rhs_class_table[(int) code];
2391 /* Return the LHS of assignment statement GS. */
2393 static inline tree
2394 gimple_assign_lhs (const gassign *gs)
2396 return gs->op[0];
2399 static inline tree
2400 gimple_assign_lhs (const gimple *gs)
2402 const gassign *ass = GIMPLE_CHECK2<const gassign *> (gs);
2403 return gimple_assign_lhs (ass);
2407 /* Return a pointer to the LHS of assignment statement GS. */
2409 static inline tree *
2410 gimple_assign_lhs_ptr (gassign *gs)
2412 return &gs->op[0];
2415 static inline tree *
2416 gimple_assign_lhs_ptr (gimple *gs)
2418 gassign *ass = GIMPLE_CHECK2<gassign *> (gs);
2419 return gimple_assign_lhs_ptr (ass);
2423 /* Set LHS to be the LHS operand of assignment statement GS. */
2425 static inline void
2426 gimple_assign_set_lhs (gassign *gs, tree lhs)
2428 gs->op[0] = lhs;
2430 if (lhs && TREE_CODE (lhs) == SSA_NAME)
2431 SSA_NAME_DEF_STMT (lhs) = gs;
2434 static inline void
2435 gimple_assign_set_lhs (gimple *gs, tree lhs)
2437 gassign *ass = GIMPLE_CHECK2<gassign *> (gs);
2438 gimple_assign_set_lhs (ass, lhs);
2442 /* Return the first operand on the RHS of assignment statement GS. */
2444 static inline tree
2445 gimple_assign_rhs1 (const gassign *gs)
2447 return gs->op[1];
2450 static inline tree
2451 gimple_assign_rhs1 (const gimple *gs)
2453 const gassign *ass = GIMPLE_CHECK2<const gassign *> (gs);
2454 return gimple_assign_rhs1 (ass);
2458 /* Return a pointer to the first operand on the RHS of assignment
2459 statement GS. */
2461 static inline tree *
2462 gimple_assign_rhs1_ptr (gassign *gs)
2464 return &gs->op[1];
2467 static inline tree *
2468 gimple_assign_rhs1_ptr (gimple *gs)
2470 gassign *ass = GIMPLE_CHECK2<gassign *> (gs);
2471 return gimple_assign_rhs1_ptr (ass);
2474 /* Set RHS to be the first operand on the RHS of assignment statement GS. */
2476 static inline void
2477 gimple_assign_set_rhs1 (gassign *gs, tree rhs)
2479 gs->op[1] = rhs;
2482 static inline void
2483 gimple_assign_set_rhs1 (gimple *gs, tree rhs)
2485 gassign *ass = GIMPLE_CHECK2<gassign *> (gs);
2486 gimple_assign_set_rhs1 (ass, rhs);
2490 /* Return the second operand on the RHS of assignment statement GS.
2491 If GS does not have two operands, NULL is returned instead. */
2493 static inline tree
2494 gimple_assign_rhs2 (const gassign *gs)
2496 if (gimple_num_ops (gs) >= 3)
2497 return gs->op[2];
2498 else
2499 return NULL_TREE;
2502 static inline tree
2503 gimple_assign_rhs2 (const gimple *gs)
2505 const gassign *ass = GIMPLE_CHECK2<const gassign *> (gs);
2506 return gimple_assign_rhs2 (ass);
2510 /* Return a pointer to the second operand on the RHS of assignment
2511 statement GS. */
2513 static inline tree *
2514 gimple_assign_rhs2_ptr (gassign *gs)
2516 gcc_gimple_checking_assert (gimple_num_ops (gs) >= 3);
2517 return &gs->op[2];
2520 static inline tree *
2521 gimple_assign_rhs2_ptr (gimple *gs)
2523 gassign *ass = GIMPLE_CHECK2<gassign *> (gs);
2524 return gimple_assign_rhs2_ptr (ass);
2528 /* Set RHS to be the second operand on the RHS of assignment statement GS. */
2530 static inline void
2531 gimple_assign_set_rhs2 (gassign *gs, tree rhs)
2533 gcc_gimple_checking_assert (gimple_num_ops (gs) >= 3);
2534 gs->op[2] = rhs;
2537 static inline void
2538 gimple_assign_set_rhs2 (gimple *gs, tree rhs)
2540 gassign *ass = GIMPLE_CHECK2<gassign *> (gs);
2541 return gimple_assign_set_rhs2 (ass, rhs);
2544 /* Return the third operand on the RHS of assignment statement GS.
2545 If GS does not have two operands, NULL is returned instead. */
2547 static inline tree
2548 gimple_assign_rhs3 (const gassign *gs)
2550 if (gimple_num_ops (gs) >= 4)
2551 return gs->op[3];
2552 else
2553 return NULL_TREE;
2556 static inline tree
2557 gimple_assign_rhs3 (const gimple *gs)
2559 const gassign *ass = GIMPLE_CHECK2<const gassign *> (gs);
2560 return gimple_assign_rhs3 (ass);
2563 /* Return a pointer to the third operand on the RHS of assignment
2564 statement GS. */
2566 static inline tree *
2567 gimple_assign_rhs3_ptr (gimple *gs)
2569 gassign *ass = GIMPLE_CHECK2<gassign *> (gs);
2570 gcc_gimple_checking_assert (gimple_num_ops (gs) >= 4);
2571 return &ass->op[3];
2575 /* Set RHS to be the third operand on the RHS of assignment statement GS. */
2577 static inline void
2578 gimple_assign_set_rhs3 (gassign *gs, tree rhs)
2580 gcc_gimple_checking_assert (gimple_num_ops (gs) >= 4);
2581 gs->op[3] = rhs;
2584 static inline void
2585 gimple_assign_set_rhs3 (gimple *gs, tree rhs)
2587 gassign *ass = GIMPLE_CHECK2<gassign *> (gs);
2588 gimple_assign_set_rhs3 (ass, rhs);
2592 /* A wrapper around 3 operand gimple_assign_set_rhs_with_ops, for callers
2593 which expect to see only two operands. */
2595 static inline void
2596 gimple_assign_set_rhs_with_ops (gimple_stmt_iterator *gsi, enum tree_code code,
2597 tree op1, tree op2)
2599 gimple_assign_set_rhs_with_ops (gsi, code, op1, op2, NULL);
2602 /* A wrapper around 3 operand gimple_assign_set_rhs_with_ops, for callers
2603 which expect to see only one operands. */
2605 static inline void
2606 gimple_assign_set_rhs_with_ops (gimple_stmt_iterator *gsi, enum tree_code code,
2607 tree op1)
2609 gimple_assign_set_rhs_with_ops (gsi, code, op1, NULL, NULL);
2612 /* Returns true if GS is a nontemporal move. */
2614 static inline bool
2615 gimple_assign_nontemporal_move_p (const gassign *gs)
2617 return gs->nontemporal_move;
2620 /* Sets nontemporal move flag of GS to NONTEMPORAL. */
2622 static inline void
2623 gimple_assign_set_nontemporal_move (gimple *gs, bool nontemporal)
2625 GIMPLE_CHECK (gs, GIMPLE_ASSIGN);
2626 gs->nontemporal_move = nontemporal;
2630 /* Return the code of the expression computed on the rhs of assignment
2631 statement GS. In case that the RHS is a single object, returns the
2632 tree code of the object. */
2634 static inline enum tree_code
2635 gimple_assign_rhs_code (const gassign *gs)
2637 enum tree_code code = (enum tree_code) gs->subcode;
2638 /* While we initially set subcode to the TREE_CODE of the rhs for
2639 GIMPLE_SINGLE_RHS assigns we do not update that subcode to stay
2640 in sync when we rewrite stmts into SSA form or do SSA propagations. */
2641 if (get_gimple_rhs_class (code) == GIMPLE_SINGLE_RHS)
2642 code = TREE_CODE (gs->op[1]);
2644 return code;
2647 static inline enum tree_code
2648 gimple_assign_rhs_code (const gimple *gs)
2650 const gassign *ass = GIMPLE_CHECK2<const gassign *> (gs);
2651 return gimple_assign_rhs_code (ass);
2655 /* Set CODE to be the code for the expression computed on the RHS of
2656 assignment S. */
2658 static inline void
2659 gimple_assign_set_rhs_code (gimple *s, enum tree_code code)
2661 GIMPLE_CHECK (s, GIMPLE_ASSIGN);
2662 s->subcode = code;
2666 /* Return the gimple rhs class of the code of the expression computed on
2667 the rhs of assignment statement GS.
2668 This will never return GIMPLE_INVALID_RHS. */
2670 static inline enum gimple_rhs_class
2671 gimple_assign_rhs_class (const gimple *gs)
2673 return get_gimple_rhs_class (gimple_assign_rhs_code (gs));
2676 /* Return true if GS is an assignment with a singleton RHS, i.e.,
2677 there is no operator associated with the assignment itself.
2678 Unlike gimple_assign_copy_p, this predicate returns true for
2679 any RHS operand, including those that perform an operation
2680 and do not have the semantics of a copy, such as COND_EXPR. */
2682 static inline bool
2683 gimple_assign_single_p (const gimple *gs)
2685 return (is_gimple_assign (gs)
2686 && gimple_assign_rhs_class (gs) == GIMPLE_SINGLE_RHS);
2689 /* Return true if GS performs a store to its lhs. */
2691 static inline bool
2692 gimple_store_p (const gimple *gs)
2694 tree lhs = gimple_get_lhs (gs);
2695 return lhs && !is_gimple_reg (lhs);
2698 /* Return true if GS is an assignment that loads from its rhs1. */
2700 static inline bool
2701 gimple_assign_load_p (const gimple *gs)
2703 tree rhs;
2704 if (!gimple_assign_single_p (gs))
2705 return false;
2706 rhs = gimple_assign_rhs1 (gs);
2707 if (TREE_CODE (rhs) == WITH_SIZE_EXPR)
2708 return true;
2709 rhs = get_base_address (rhs);
2710 return (DECL_P (rhs)
2711 || TREE_CODE (rhs) == MEM_REF || TREE_CODE (rhs) == TARGET_MEM_REF);
2715 /* Return true if S is a type-cast assignment. */
2717 static inline bool
2718 gimple_assign_cast_p (const gimple *s)
2720 if (is_gimple_assign (s))
2722 enum tree_code sc = gimple_assign_rhs_code (s);
2723 return CONVERT_EXPR_CODE_P (sc)
2724 || sc == VIEW_CONVERT_EXPR
2725 || sc == FIX_TRUNC_EXPR;
2728 return false;
2731 /* Return true if S is a clobber statement. */
2733 static inline bool
2734 gimple_clobber_p (const gimple *s)
2736 return gimple_assign_single_p (s)
2737 && TREE_CLOBBER_P (gimple_assign_rhs1 (s));
2740 /* Return true if GS is a GIMPLE_CALL. */
2742 static inline bool
2743 is_gimple_call (const gimple *gs)
2745 return gimple_code (gs) == GIMPLE_CALL;
2748 /* Return the LHS of call statement GS. */
2750 static inline tree
2751 gimple_call_lhs (const gcall *gs)
2753 return gs->op[0];
2756 static inline tree
2757 gimple_call_lhs (const gimple *gs)
2759 const gcall *gc = GIMPLE_CHECK2<const gcall *> (gs);
2760 return gimple_call_lhs (gc);
2764 /* Return a pointer to the LHS of call statement GS. */
2766 static inline tree *
2767 gimple_call_lhs_ptr (gcall *gs)
2769 return &gs->op[0];
2772 static inline tree *
2773 gimple_call_lhs_ptr (gimple *gs)
2775 gcall *gc = GIMPLE_CHECK2<gcall *> (gs);
2776 return gimple_call_lhs_ptr (gc);
2780 /* Set LHS to be the LHS operand of call statement GS. */
2782 static inline void
2783 gimple_call_set_lhs (gcall *gs, tree lhs)
2785 gs->op[0] = lhs;
2786 if (lhs && TREE_CODE (lhs) == SSA_NAME)
2787 SSA_NAME_DEF_STMT (lhs) = gs;
2790 static inline void
2791 gimple_call_set_lhs (gimple *gs, tree lhs)
2793 gcall *gc = GIMPLE_CHECK2<gcall *> (gs);
2794 gimple_call_set_lhs (gc, lhs);
2798 /* Return true if call GS calls an internal-only function, as enumerated
2799 by internal_fn. */
2801 static inline bool
2802 gimple_call_internal_p (const gcall *gs)
2804 return (gs->subcode & GF_CALL_INTERNAL) != 0;
2807 static inline bool
2808 gimple_call_internal_p (const gimple *gs)
2810 const gcall *gc = GIMPLE_CHECK2<const gcall *> (gs);
2811 return gimple_call_internal_p (gc);
2815 /* Return true if call GS is marked as instrumented by
2816 Pointer Bounds Checker. */
2818 static inline bool
2819 gimple_call_with_bounds_p (const gcall *gs)
2821 return (gs->subcode & GF_CALL_WITH_BOUNDS) != 0;
2824 static inline bool
2825 gimple_call_with_bounds_p (const gimple *gs)
2827 const gcall *gc = GIMPLE_CHECK2<const gcall *> (gs);
2828 return gimple_call_with_bounds_p (gc);
2832 /* If INSTRUMENTED_P is true, marm statement GS as instrumented by
2833 Pointer Bounds Checker. */
2835 static inline void
2836 gimple_call_set_with_bounds (gcall *gs, bool with_bounds)
2838 if (with_bounds)
2839 gs->subcode |= GF_CALL_WITH_BOUNDS;
2840 else
2841 gs->subcode &= ~GF_CALL_WITH_BOUNDS;
2844 static inline void
2845 gimple_call_set_with_bounds (gimple *gs, bool with_bounds)
2847 gcall *gc = GIMPLE_CHECK2<gcall *> (gs);
2848 gimple_call_set_with_bounds (gc, with_bounds);
2852 /* Return the target of internal call GS. */
2854 static inline enum internal_fn
2855 gimple_call_internal_fn (const gcall *gs)
2857 gcc_gimple_checking_assert (gimple_call_internal_p (gs));
2858 return gs->u.internal_fn;
2861 static inline enum internal_fn
2862 gimple_call_internal_fn (const gimple *gs)
2864 const gcall *gc = GIMPLE_CHECK2<const gcall *> (gs);
2865 return gimple_call_internal_fn (gc);
2868 /* If CTRL_ALTERING_P is true, mark GIMPLE_CALL S to be a stmt
2869 that could alter control flow. */
2871 static inline void
2872 gimple_call_set_ctrl_altering (gcall *s, bool ctrl_altering_p)
2874 if (ctrl_altering_p)
2875 s->subcode |= GF_CALL_CTRL_ALTERING;
2876 else
2877 s->subcode &= ~GF_CALL_CTRL_ALTERING;
2880 static inline void
2881 gimple_call_set_ctrl_altering (gimple *s, bool ctrl_altering_p)
2883 gcall *gc = GIMPLE_CHECK2<gcall *> (s);
2884 gimple_call_set_ctrl_altering (gc, ctrl_altering_p);
2887 /* Return true if call GS calls an func whose GF_CALL_CTRL_ALTERING
2888 flag is set. Such call could not be a stmt in the middle of a bb. */
2890 static inline bool
2891 gimple_call_ctrl_altering_p (const gcall *gs)
2893 return (gs->subcode & GF_CALL_CTRL_ALTERING) != 0;
2896 static inline bool
2897 gimple_call_ctrl_altering_p (const gimple *gs)
2899 const gcall *gc = GIMPLE_CHECK2<const gcall *> (gs);
2900 return gimple_call_ctrl_altering_p (gc);
2904 /* Return the function type of the function called by GS. */
2906 static inline tree
2907 gimple_call_fntype (const gcall *gs)
2909 if (gimple_call_internal_p (gs))
2910 return NULL_TREE;
2911 return gs->u.fntype;
2914 static inline tree
2915 gimple_call_fntype (const gimple *gs)
2917 const gcall *call_stmt = GIMPLE_CHECK2<const gcall *> (gs);
2918 return gimple_call_fntype (call_stmt);
2921 /* Set the type of the function called by CALL_STMT to FNTYPE. */
2923 static inline void
2924 gimple_call_set_fntype (gcall *call_stmt, tree fntype)
2926 gcc_gimple_checking_assert (!gimple_call_internal_p (call_stmt));
2927 call_stmt->u.fntype = fntype;
2931 /* Return the tree node representing the function called by call
2932 statement GS. */
2934 static inline tree
2935 gimple_call_fn (const gcall *gs)
2937 return gs->op[1];
2940 static inline tree
2941 gimple_call_fn (const gimple *gs)
2943 const gcall *gc = GIMPLE_CHECK2<const gcall *> (gs);
2944 return gimple_call_fn (gc);
2947 /* Return a pointer to the tree node representing the function called by call
2948 statement GS. */
2950 static inline tree *
2951 gimple_call_fn_ptr (gcall *gs)
2953 return &gs->op[1];
2956 static inline tree *
2957 gimple_call_fn_ptr (gimple *gs)
2959 gcall *gc = GIMPLE_CHECK2<gcall *> (gs);
2960 return gimple_call_fn_ptr (gc);
2964 /* Set FN to be the function called by call statement GS. */
2966 static inline void
2967 gimple_call_set_fn (gcall *gs, tree fn)
2969 gcc_gimple_checking_assert (!gimple_call_internal_p (gs));
2970 gs->op[1] = fn;
2974 /* Set FNDECL to be the function called by call statement GS. */
2976 static inline void
2977 gimple_call_set_fndecl (gcall *gs, tree decl)
2979 gcc_gimple_checking_assert (!gimple_call_internal_p (gs));
2980 gs->op[1] = build1_loc (gimple_location (gs), ADDR_EXPR,
2981 build_pointer_type (TREE_TYPE (decl)), decl);
2984 static inline void
2985 gimple_call_set_fndecl (gimple *gs, tree decl)
2987 gcall *gc = GIMPLE_CHECK2<gcall *> (gs);
2988 gimple_call_set_fndecl (gc, decl);
2992 /* Set internal function FN to be the function called by call statement CALL_STMT. */
2994 static inline void
2995 gimple_call_set_internal_fn (gcall *call_stmt, enum internal_fn fn)
2997 gcc_gimple_checking_assert (gimple_call_internal_p (call_stmt));
2998 call_stmt->u.internal_fn = fn;
3002 /* If a given GIMPLE_CALL's callee is a FUNCTION_DECL, return it.
3003 Otherwise return NULL. This function is analogous to
3004 get_callee_fndecl in tree land. */
3006 static inline tree
3007 gimple_call_fndecl (const gcall *gs)
3009 return gimple_call_addr_fndecl (gimple_call_fn (gs));
3012 static inline tree
3013 gimple_call_fndecl (const gimple *gs)
3015 const gcall *gc = GIMPLE_CHECK2<const gcall *> (gs);
3016 return gimple_call_fndecl (gc);
3020 /* Return the type returned by call statement GS. */
3022 static inline tree
3023 gimple_call_return_type (const gcall *gs)
3025 tree type = gimple_call_fntype (gs);
3027 if (type == NULL_TREE)
3028 return TREE_TYPE (gimple_call_lhs (gs));
3030 /* The type returned by a function is the type of its
3031 function type. */
3032 return TREE_TYPE (type);
3036 /* Return the static chain for call statement GS. */
3038 static inline tree
3039 gimple_call_chain (const gcall *gs)
3041 return gs->op[2];
3044 static inline tree
3045 gimple_call_chain (const gimple *gs)
3047 const gcall *gc = GIMPLE_CHECK2<const gcall *> (gs);
3048 return gimple_call_chain (gc);
3052 /* Return a pointer to the static chain for call statement CALL_STMT. */
3054 static inline tree *
3055 gimple_call_chain_ptr (gcall *call_stmt)
3057 return &call_stmt->op[2];
3060 /* Set CHAIN to be the static chain for call statement CALL_STMT. */
3062 static inline void
3063 gimple_call_set_chain (gcall *call_stmt, tree chain)
3065 call_stmt->op[2] = chain;
3069 /* Return the number of arguments used by call statement GS. */
3071 static inline unsigned
3072 gimple_call_num_args (const gcall *gs)
3074 return gimple_num_ops (gs) - 3;
3077 static inline unsigned
3078 gimple_call_num_args (const gimple *gs)
3080 const gcall *gc = GIMPLE_CHECK2<const gcall *> (gs);
3081 return gimple_call_num_args (gc);
3085 /* Return the argument at position INDEX for call statement GS. */
3087 static inline tree
3088 gimple_call_arg (const gcall *gs, unsigned index)
3090 gcc_gimple_checking_assert (gimple_num_ops (gs) > index + 3);
3091 return gs->op[index + 3];
3094 static inline tree
3095 gimple_call_arg (const gimple *gs, unsigned index)
3097 const gcall *gc = GIMPLE_CHECK2<const gcall *> (gs);
3098 return gimple_call_arg (gc, index);
3102 /* Return a pointer to the argument at position INDEX for call
3103 statement GS. */
3105 static inline tree *
3106 gimple_call_arg_ptr (gcall *gs, unsigned index)
3108 gcc_gimple_checking_assert (gimple_num_ops (gs) > index + 3);
3109 return &gs->op[index + 3];
3112 static inline tree *
3113 gimple_call_arg_ptr (gimple *gs, unsigned index)
3115 gcall *gc = GIMPLE_CHECK2<gcall *> (gs);
3116 return gimple_call_arg_ptr (gc, index);
3120 /* Set ARG to be the argument at position INDEX for call statement GS. */
3122 static inline void
3123 gimple_call_set_arg (gcall *gs, unsigned index, tree arg)
3125 gcc_gimple_checking_assert (gimple_num_ops (gs) > index + 3);
3126 gs->op[index + 3] = arg;
3129 static inline void
3130 gimple_call_set_arg (gimple *gs, unsigned index, tree arg)
3132 gcall *gc = GIMPLE_CHECK2<gcall *> (gs);
3133 gimple_call_set_arg (gc, index, arg);
3137 /* If TAIL_P is true, mark call statement S as being a tail call
3138 (i.e., a call just before the exit of a function). These calls are
3139 candidate for tail call optimization. */
3141 static inline void
3142 gimple_call_set_tail (gcall *s, bool tail_p)
3144 if (tail_p)
3145 s->subcode |= GF_CALL_TAILCALL;
3146 else
3147 s->subcode &= ~GF_CALL_TAILCALL;
3151 /* Return true if GIMPLE_CALL S is marked as a tail call. */
3153 static inline bool
3154 gimple_call_tail_p (gcall *s)
3156 return (s->subcode & GF_CALL_TAILCALL) != 0;
3160 /* If RETURN_SLOT_OPT_P is true mark GIMPLE_CALL S as valid for return
3161 slot optimization. This transformation uses the target of the call
3162 expansion as the return slot for calls that return in memory. */
3164 static inline void
3165 gimple_call_set_return_slot_opt (gcall *s, bool return_slot_opt_p)
3167 if (return_slot_opt_p)
3168 s->subcode |= GF_CALL_RETURN_SLOT_OPT;
3169 else
3170 s->subcode &= ~GF_CALL_RETURN_SLOT_OPT;
3174 /* Return true if S is marked for return slot optimization. */
3176 static inline bool
3177 gimple_call_return_slot_opt_p (gcall *s)
3179 return (s->subcode & GF_CALL_RETURN_SLOT_OPT) != 0;
3183 /* If FROM_THUNK_P is true, mark GIMPLE_CALL S as being the jump from a
3184 thunk to the thunked-to function. */
3186 static inline void
3187 gimple_call_set_from_thunk (gcall *s, bool from_thunk_p)
3189 if (from_thunk_p)
3190 s->subcode |= GF_CALL_FROM_THUNK;
3191 else
3192 s->subcode &= ~GF_CALL_FROM_THUNK;
3196 /* Return true if GIMPLE_CALL S is a jump from a thunk. */
3198 static inline bool
3199 gimple_call_from_thunk_p (gcall *s)
3201 return (s->subcode & GF_CALL_FROM_THUNK) != 0;
3205 /* If PASS_ARG_PACK_P is true, GIMPLE_CALL S is a stdarg call that needs the
3206 argument pack in its argument list. */
3208 static inline void
3209 gimple_call_set_va_arg_pack (gcall *s, bool pass_arg_pack_p)
3211 if (pass_arg_pack_p)
3212 s->subcode |= GF_CALL_VA_ARG_PACK;
3213 else
3214 s->subcode &= ~GF_CALL_VA_ARG_PACK;
3218 /* Return true if GIMPLE_CALL S is a stdarg call that needs the
3219 argument pack in its argument list. */
3221 static inline bool
3222 gimple_call_va_arg_pack_p (gcall *s)
3224 return (s->subcode & GF_CALL_VA_ARG_PACK) != 0;
3228 /* Return true if S is a noreturn call. */
3230 static inline bool
3231 gimple_call_noreturn_p (const gcall *s)
3233 return (gimple_call_flags (s) & ECF_NORETURN) != 0;
3236 static inline bool
3237 gimple_call_noreturn_p (const gimple *s)
3239 const gcall *gc = GIMPLE_CHECK2<const gcall *> (s);
3240 return gimple_call_noreturn_p (gc);
3244 /* If NOTHROW_P is true, GIMPLE_CALL S is a call that is known to not throw
3245 even if the called function can throw in other cases. */
3247 static inline void
3248 gimple_call_set_nothrow (gcall *s, bool nothrow_p)
3250 if (nothrow_p)
3251 s->subcode |= GF_CALL_NOTHROW;
3252 else
3253 s->subcode &= ~GF_CALL_NOTHROW;
3256 /* Return true if S is a nothrow call. */
3258 static inline bool
3259 gimple_call_nothrow_p (gcall *s)
3261 return (gimple_call_flags (s) & ECF_NOTHROW) != 0;
3264 /* If FOR_VAR is true, GIMPLE_CALL S is a call to builtin_alloca that
3265 is known to be emitted for VLA objects. Those are wrapped by
3266 stack_save/stack_restore calls and hence can't lead to unbounded
3267 stack growth even when they occur in loops. */
3269 static inline void
3270 gimple_call_set_alloca_for_var (gcall *s, bool for_var)
3272 if (for_var)
3273 s->subcode |= GF_CALL_ALLOCA_FOR_VAR;
3274 else
3275 s->subcode &= ~GF_CALL_ALLOCA_FOR_VAR;
3278 /* Return true of S is a call to builtin_alloca emitted for VLA objects. */
3280 static inline bool
3281 gimple_call_alloca_for_var_p (gcall *s)
3283 return (s->subcode & GF_CALL_ALLOCA_FOR_VAR) != 0;
3286 /* Copy all the GF_CALL_* flags from ORIG_CALL to DEST_CALL. */
3288 static inline void
3289 gimple_call_copy_flags (gcall *dest_call, gcall *orig_call)
3291 dest_call->subcode = orig_call->subcode;
3295 /* Return a pointer to the points-to solution for the set of call-used
3296 variables of the call CALL_STMT. */
3298 static inline struct pt_solution *
3299 gimple_call_use_set (gcall *call_stmt)
3301 return &call_stmt->call_used;
3305 /* Return a pointer to the points-to solution for the set of call-used
3306 variables of the call CALL_STMT. */
3308 static inline struct pt_solution *
3309 gimple_call_clobber_set (gcall *call_stmt)
3311 return &call_stmt->call_clobbered;
3315 /* Returns true if this is a GIMPLE_ASSIGN or a GIMPLE_CALL with a
3316 non-NULL lhs. */
3318 static inline bool
3319 gimple_has_lhs (gimple *stmt)
3321 if (is_gimple_assign (stmt))
3322 return true;
3323 if (gcall *call = dyn_cast <gcall *> (stmt))
3324 return gimple_call_lhs (call) != NULL_TREE;
3325 return false;
3329 /* Return the code of the predicate computed by conditional statement GS. */
3331 static inline enum tree_code
3332 gimple_cond_code (const gcond *gs)
3334 return (enum tree_code) gs->subcode;
3337 static inline enum tree_code
3338 gimple_cond_code (const gimple *gs)
3340 const gcond *gc = GIMPLE_CHECK2<const gcond *> (gs);
3341 return gimple_cond_code (gc);
3345 /* Set CODE to be the predicate code for the conditional statement GS. */
3347 static inline void
3348 gimple_cond_set_code (gcond *gs, enum tree_code code)
3350 gs->subcode = code;
3354 /* Return the LHS of the predicate computed by conditional statement GS. */
3356 static inline tree
3357 gimple_cond_lhs (const gcond *gs)
3359 return gs->op[0];
3362 static inline tree
3363 gimple_cond_lhs (const gimple *gs)
3365 const gcond *gc = GIMPLE_CHECK2<const gcond *> (gs);
3366 return gimple_cond_lhs (gc);
3369 /* Return the pointer to the LHS of the predicate computed by conditional
3370 statement GS. */
3372 static inline tree *
3373 gimple_cond_lhs_ptr (gcond *gs)
3375 return &gs->op[0];
3378 /* Set LHS to be the LHS operand of the predicate computed by
3379 conditional statement GS. */
3381 static inline void
3382 gimple_cond_set_lhs (gcond *gs, tree lhs)
3384 gs->op[0] = lhs;
3388 /* Return the RHS operand of the predicate computed by conditional GS. */
3390 static inline tree
3391 gimple_cond_rhs (const gcond *gs)
3393 return gs->op[1];
3396 static inline tree
3397 gimple_cond_rhs (const gimple *gs)
3399 const gcond *gc = GIMPLE_CHECK2<const gcond *> (gs);
3400 return gimple_cond_rhs (gc);
3403 /* Return the pointer to the RHS operand of the predicate computed by
3404 conditional GS. */
3406 static inline tree *
3407 gimple_cond_rhs_ptr (gcond *gs)
3409 return &gs->op[1];
3413 /* Set RHS to be the RHS operand of the predicate computed by
3414 conditional statement GS. */
3416 static inline void
3417 gimple_cond_set_rhs (gcond *gs, tree rhs)
3419 gs->op[1] = rhs;
3423 /* Return the label used by conditional statement GS when its
3424 predicate evaluates to true. */
3426 static inline tree
3427 gimple_cond_true_label (const gcond *gs)
3429 return gs->op[2];
3433 /* Set LABEL to be the label used by conditional statement GS when its
3434 predicate evaluates to true. */
3436 static inline void
3437 gimple_cond_set_true_label (gcond *gs, tree label)
3439 gs->op[2] = label;
3443 /* Set LABEL to be the label used by conditional statement GS when its
3444 predicate evaluates to false. */
3446 static inline void
3447 gimple_cond_set_false_label (gcond *gs, tree label)
3449 gs->op[3] = label;
3453 /* Return the label used by conditional statement GS when its
3454 predicate evaluates to false. */
3456 static inline tree
3457 gimple_cond_false_label (const gcond *gs)
3459 return gs->op[3];
3463 /* Set the conditional COND_STMT to be of the form 'if (1 == 0)'. */
3465 static inline void
3466 gimple_cond_make_false (gcond *gs)
3468 gimple_cond_set_lhs (gs, boolean_false_node);
3469 gimple_cond_set_rhs (gs, boolean_false_node);
3470 gs->subcode = NE_EXPR;
3474 /* Set the conditional COND_STMT to be of the form 'if (1 == 1)'. */
3476 static inline void
3477 gimple_cond_make_true (gcond *gs)
3479 gimple_cond_set_lhs (gs, boolean_true_node);
3480 gimple_cond_set_rhs (gs, boolean_false_node);
3481 gs->subcode = NE_EXPR;
3484 /* Check if conditional statemente GS is of the form 'if (1 == 1)',
3485 'if (0 == 0)', 'if (1 != 0)' or 'if (0 != 1)' */
3487 static inline bool
3488 gimple_cond_true_p (const gcond *gs)
3490 tree lhs = gimple_cond_lhs (gs);
3491 tree rhs = gimple_cond_rhs (gs);
3492 enum tree_code code = gimple_cond_code (gs);
3494 if (lhs != boolean_true_node && lhs != boolean_false_node)
3495 return false;
3497 if (rhs != boolean_true_node && rhs != boolean_false_node)
3498 return false;
3500 if (code == NE_EXPR && lhs != rhs)
3501 return true;
3503 if (code == EQ_EXPR && lhs == rhs)
3504 return true;
3506 return false;
3509 /* Check if conditional statement GS is of the form 'if (1 != 1)',
3510 'if (0 != 0)', 'if (1 == 0)' or 'if (0 == 1)' */
3512 static inline bool
3513 gimple_cond_false_p (const gcond *gs)
3515 tree lhs = gimple_cond_lhs (gs);
3516 tree rhs = gimple_cond_rhs (gs);
3517 enum tree_code code = gimple_cond_code (gs);
3519 if (lhs != boolean_true_node && lhs != boolean_false_node)
3520 return false;
3522 if (rhs != boolean_true_node && rhs != boolean_false_node)
3523 return false;
3525 if (code == NE_EXPR && lhs == rhs)
3526 return true;
3528 if (code == EQ_EXPR && lhs != rhs)
3529 return true;
3531 return false;
3534 /* Set the code, LHS and RHS of GIMPLE_COND STMT from CODE, LHS and RHS. */
3536 static inline void
3537 gimple_cond_set_condition (gcond *stmt, enum tree_code code, tree lhs,
3538 tree rhs)
3540 gimple_cond_set_code (stmt, code);
3541 gimple_cond_set_lhs (stmt, lhs);
3542 gimple_cond_set_rhs (stmt, rhs);
3545 /* Return the LABEL_DECL node used by GIMPLE_LABEL statement GS. */
3547 static inline tree
3548 gimple_label_label (const glabel *gs)
3550 return gs->op[0];
3554 /* Set LABEL to be the LABEL_DECL node used by GIMPLE_LABEL statement
3555 GS. */
3557 static inline void
3558 gimple_label_set_label (glabel *gs, tree label)
3560 gs->op[0] = label;
3564 /* Return the destination of the unconditional jump GS. */
3566 static inline tree
3567 gimple_goto_dest (const gimple *gs)
3569 GIMPLE_CHECK (gs, GIMPLE_GOTO);
3570 return gimple_op (gs, 0);
3574 /* Set DEST to be the destination of the unconditonal jump GS. */
3576 static inline void
3577 gimple_goto_set_dest (ggoto *gs, tree dest)
3579 gs->op[0] = dest;
3583 /* Return the variables declared in the GIMPLE_BIND statement GS. */
3585 static inline tree
3586 gimple_bind_vars (const gbind *bind_stmt)
3588 return bind_stmt->vars;
3592 /* Set VARS to be the set of variables declared in the GIMPLE_BIND
3593 statement GS. */
3595 static inline void
3596 gimple_bind_set_vars (gbind *bind_stmt, tree vars)
3598 bind_stmt->vars = vars;
3602 /* Append VARS to the set of variables declared in the GIMPLE_BIND
3603 statement GS. */
3605 static inline void
3606 gimple_bind_append_vars (gbind *bind_stmt, tree vars)
3608 bind_stmt->vars = chainon (bind_stmt->vars, vars);
3612 static inline gimple_seq *
3613 gimple_bind_body_ptr (gbind *bind_stmt)
3615 return &bind_stmt->body;
3618 /* Return the GIMPLE sequence contained in the GIMPLE_BIND statement GS. */
3620 static inline gimple_seq
3621 gimple_bind_body (gbind *gs)
3623 return *gimple_bind_body_ptr (gs);
3627 /* Set SEQ to be the GIMPLE sequence contained in the GIMPLE_BIND
3628 statement GS. */
3630 static inline void
3631 gimple_bind_set_body (gbind *bind_stmt, gimple_seq seq)
3633 bind_stmt->body = seq;
3637 /* Append a statement to the end of a GIMPLE_BIND's body. */
3639 static inline void
3640 gimple_bind_add_stmt (gbind *bind_stmt, gimple *stmt)
3642 gimple_seq_add_stmt (&bind_stmt->body, stmt);
3646 /* Append a sequence of statements to the end of a GIMPLE_BIND's body. */
3648 static inline void
3649 gimple_bind_add_seq (gbind *bind_stmt, gimple_seq seq)
3651 gimple_seq_add_seq (&bind_stmt->body, seq);
3655 /* Return the TREE_BLOCK node associated with GIMPLE_BIND statement
3656 GS. This is analogous to the BIND_EXPR_BLOCK field in trees. */
3658 static inline tree
3659 gimple_bind_block (const gbind *bind_stmt)
3661 return bind_stmt->block;
3665 /* Set BLOCK to be the TREE_BLOCK node associated with GIMPLE_BIND
3666 statement GS. */
3668 static inline void
3669 gimple_bind_set_block (gbind *bind_stmt, tree block)
3671 gcc_gimple_checking_assert (block == NULL_TREE
3672 || TREE_CODE (block) == BLOCK);
3673 bind_stmt->block = block;
3677 /* Return the number of input operands for GIMPLE_ASM ASM_STMT. */
3679 static inline unsigned
3680 gimple_asm_ninputs (const gasm *asm_stmt)
3682 return asm_stmt->ni;
3686 /* Return the number of output operands for GIMPLE_ASM ASM_STMT. */
3688 static inline unsigned
3689 gimple_asm_noutputs (const gasm *asm_stmt)
3691 return asm_stmt->no;
3695 /* Return the number of clobber operands for GIMPLE_ASM ASM_STMT. */
3697 static inline unsigned
3698 gimple_asm_nclobbers (const gasm *asm_stmt)
3700 return asm_stmt->nc;
3703 /* Return the number of label operands for GIMPLE_ASM ASM_STMT. */
3705 static inline unsigned
3706 gimple_asm_nlabels (const gasm *asm_stmt)
3708 return asm_stmt->nl;
3711 /* Return input operand INDEX of GIMPLE_ASM ASM_STMT. */
3713 static inline tree
3714 gimple_asm_input_op (const gasm *asm_stmt, unsigned index)
3716 gcc_gimple_checking_assert (index < asm_stmt->ni);
3717 return asm_stmt->op[index + asm_stmt->no];
3720 /* Set IN_OP to be input operand INDEX in GIMPLE_ASM ASM_STMT. */
3722 static inline void
3723 gimple_asm_set_input_op (gasm *asm_stmt, unsigned index, tree in_op)
3725 gcc_gimple_checking_assert (index < asm_stmt->ni
3726 && TREE_CODE (in_op) == TREE_LIST);
3727 asm_stmt->op[index + asm_stmt->no] = in_op;
3731 /* Return output operand INDEX of GIMPLE_ASM ASM_STMT. */
3733 static inline tree
3734 gimple_asm_output_op (const gasm *asm_stmt, unsigned index)
3736 gcc_gimple_checking_assert (index < asm_stmt->no);
3737 return asm_stmt->op[index];
3740 /* Set OUT_OP to be output operand INDEX in GIMPLE_ASM ASM_STMT. */
3742 static inline void
3743 gimple_asm_set_output_op (gasm *asm_stmt, unsigned index, tree out_op)
3745 gcc_gimple_checking_assert (index < asm_stmt->no
3746 && TREE_CODE (out_op) == TREE_LIST);
3747 asm_stmt->op[index] = out_op;
3751 /* Return clobber operand INDEX of GIMPLE_ASM ASM_STMT. */
3753 static inline tree
3754 gimple_asm_clobber_op (const gasm *asm_stmt, unsigned index)
3756 gcc_gimple_checking_assert (index < asm_stmt->nc);
3757 return asm_stmt->op[index + asm_stmt->ni + asm_stmt->no];
3761 /* Set CLOBBER_OP to be clobber operand INDEX in GIMPLE_ASM ASM_STMT. */
3763 static inline void
3764 gimple_asm_set_clobber_op (gasm *asm_stmt, unsigned index, tree clobber_op)
3766 gcc_gimple_checking_assert (index < asm_stmt->nc
3767 && TREE_CODE (clobber_op) == TREE_LIST);
3768 asm_stmt->op[index + asm_stmt->ni + asm_stmt->no] = clobber_op;
3771 /* Return label operand INDEX of GIMPLE_ASM ASM_STMT. */
3773 static inline tree
3774 gimple_asm_label_op (const gasm *asm_stmt, unsigned index)
3776 gcc_gimple_checking_assert (index < asm_stmt->nl);
3777 return asm_stmt->op[index + asm_stmt->ni + asm_stmt->nc];
3780 /* Set LABEL_OP to be label operand INDEX in GIMPLE_ASM ASM_STMT. */
3782 static inline void
3783 gimple_asm_set_label_op (gasm *asm_stmt, unsigned index, tree label_op)
3785 gcc_gimple_checking_assert (index < asm_stmt->nl
3786 && TREE_CODE (label_op) == TREE_LIST);
3787 asm_stmt->op[index + asm_stmt->ni + asm_stmt->nc] = label_op;
3790 /* Return the string representing the assembly instruction in
3791 GIMPLE_ASM ASM_STMT. */
3793 static inline const char *
3794 gimple_asm_string (const gasm *asm_stmt)
3796 return asm_stmt->string;
3800 /* Return true ASM_STMT ASM_STMT is an asm statement marked volatile. */
3802 static inline bool
3803 gimple_asm_volatile_p (const gasm *asm_stmt)
3805 return (asm_stmt->subcode & GF_ASM_VOLATILE) != 0;
3809 /* If VOLATLE_P is true, mark asm statement ASM_STMT as volatile. */
3811 static inline void
3812 gimple_asm_set_volatile (gasm *asm_stmt, bool volatile_p)
3814 if (volatile_p)
3815 asm_stmt->subcode |= GF_ASM_VOLATILE;
3816 else
3817 asm_stmt->subcode &= ~GF_ASM_VOLATILE;
3821 /* If INPUT_P is true, mark asm ASM_STMT as an ASM_INPUT. */
3823 static inline void
3824 gimple_asm_set_input (gasm *asm_stmt, bool input_p)
3826 if (input_p)
3827 asm_stmt->subcode |= GF_ASM_INPUT;
3828 else
3829 asm_stmt->subcode &= ~GF_ASM_INPUT;
3833 /* Return true if asm ASM_STMT is an ASM_INPUT. */
3835 static inline bool
3836 gimple_asm_input_p (const gasm *asm_stmt)
3838 return (asm_stmt->subcode & GF_ASM_INPUT) != 0;
3842 /* Return the types handled by GIMPLE_CATCH statement CATCH_STMT. */
3844 static inline tree
3845 gimple_catch_types (const gcatch *catch_stmt)
3847 return catch_stmt->types;
3851 /* Return a pointer to the types handled by GIMPLE_CATCH statement CATCH_STMT. */
3853 static inline tree *
3854 gimple_catch_types_ptr (gcatch *catch_stmt)
3856 return &catch_stmt->types;
3860 /* Return a pointer to the GIMPLE sequence representing the body of
3861 the handler of GIMPLE_CATCH statement CATCH_STMT. */
3863 static inline gimple_seq *
3864 gimple_catch_handler_ptr (gcatch *catch_stmt)
3866 return &catch_stmt->handler;
3870 /* Return the GIMPLE sequence representing the body of the handler of
3871 GIMPLE_CATCH statement CATCH_STMT. */
3873 static inline gimple_seq
3874 gimple_catch_handler (gcatch *catch_stmt)
3876 return *gimple_catch_handler_ptr (catch_stmt);
3880 /* Set T to be the set of types handled by GIMPLE_CATCH CATCH_STMT. */
3882 static inline void
3883 gimple_catch_set_types (gcatch *catch_stmt, tree t)
3885 catch_stmt->types = t;
3889 /* Set HANDLER to be the body of GIMPLE_CATCH CATCH_STMT. */
3891 static inline void
3892 gimple_catch_set_handler (gcatch *catch_stmt, gimple_seq handler)
3894 catch_stmt->handler = handler;
3898 /* Return the types handled by GIMPLE_EH_FILTER statement GS. */
3900 static inline tree
3901 gimple_eh_filter_types (const gimple *gs)
3903 const geh_filter *eh_filter_stmt = as_a <const geh_filter *> (gs);
3904 return eh_filter_stmt->types;
3908 /* Return a pointer to the types handled by GIMPLE_EH_FILTER statement
3909 GS. */
3911 static inline tree *
3912 gimple_eh_filter_types_ptr (gimple *gs)
3914 geh_filter *eh_filter_stmt = as_a <geh_filter *> (gs);
3915 return &eh_filter_stmt->types;
3919 /* Return a pointer to the sequence of statement to execute when
3920 GIMPLE_EH_FILTER statement fails. */
3922 static inline gimple_seq *
3923 gimple_eh_filter_failure_ptr (gimple *gs)
3925 geh_filter *eh_filter_stmt = as_a <geh_filter *> (gs);
3926 return &eh_filter_stmt->failure;
3930 /* Return the sequence of statement to execute when GIMPLE_EH_FILTER
3931 statement fails. */
3933 static inline gimple_seq
3934 gimple_eh_filter_failure (gimple *gs)
3936 return *gimple_eh_filter_failure_ptr (gs);
3940 /* Set TYPES to be the set of types handled by GIMPLE_EH_FILTER
3941 EH_FILTER_STMT. */
3943 static inline void
3944 gimple_eh_filter_set_types (geh_filter *eh_filter_stmt, tree types)
3946 eh_filter_stmt->types = types;
3950 /* Set FAILURE to be the sequence of statements to execute on failure
3951 for GIMPLE_EH_FILTER EH_FILTER_STMT. */
3953 static inline void
3954 gimple_eh_filter_set_failure (geh_filter *eh_filter_stmt,
3955 gimple_seq failure)
3957 eh_filter_stmt->failure = failure;
3960 /* Get the function decl to be called by the MUST_NOT_THROW region. */
3962 static inline tree
3963 gimple_eh_must_not_throw_fndecl (geh_mnt *eh_mnt_stmt)
3965 return eh_mnt_stmt->fndecl;
3968 /* Set the function decl to be called by GS to DECL. */
3970 static inline void
3971 gimple_eh_must_not_throw_set_fndecl (geh_mnt *eh_mnt_stmt,
3972 tree decl)
3974 eh_mnt_stmt->fndecl = decl;
3977 /* GIMPLE_EH_ELSE accessors. */
3979 static inline gimple_seq *
3980 gimple_eh_else_n_body_ptr (geh_else *eh_else_stmt)
3982 return &eh_else_stmt->n_body;
3985 static inline gimple_seq
3986 gimple_eh_else_n_body (geh_else *eh_else_stmt)
3988 return *gimple_eh_else_n_body_ptr (eh_else_stmt);
3991 static inline gimple_seq *
3992 gimple_eh_else_e_body_ptr (geh_else *eh_else_stmt)
3994 return &eh_else_stmt->e_body;
3997 static inline gimple_seq
3998 gimple_eh_else_e_body (geh_else *eh_else_stmt)
4000 return *gimple_eh_else_e_body_ptr (eh_else_stmt);
4003 static inline void
4004 gimple_eh_else_set_n_body (geh_else *eh_else_stmt, gimple_seq seq)
4006 eh_else_stmt->n_body = seq;
4009 static inline void
4010 gimple_eh_else_set_e_body (geh_else *eh_else_stmt, gimple_seq seq)
4012 eh_else_stmt->e_body = seq;
4015 /* GIMPLE_TRY accessors. */
4017 /* Return the kind of try block represented by GIMPLE_TRY GS. This is
4018 either GIMPLE_TRY_CATCH or GIMPLE_TRY_FINALLY. */
4020 static inline enum gimple_try_flags
4021 gimple_try_kind (const gimple *gs)
4023 GIMPLE_CHECK (gs, GIMPLE_TRY);
4024 return (enum gimple_try_flags) (gs->subcode & GIMPLE_TRY_KIND);
4028 /* Set the kind of try block represented by GIMPLE_TRY GS. */
4030 static inline void
4031 gimple_try_set_kind (gtry *gs, enum gimple_try_flags kind)
4033 gcc_gimple_checking_assert (kind == GIMPLE_TRY_CATCH
4034 || kind == GIMPLE_TRY_FINALLY);
4035 if (gimple_try_kind (gs) != kind)
4036 gs->subcode = (unsigned int) kind;
4040 /* Return the GIMPLE_TRY_CATCH_IS_CLEANUP flag. */
4042 static inline bool
4043 gimple_try_catch_is_cleanup (const gimple *gs)
4045 gcc_gimple_checking_assert (gimple_try_kind (gs) == GIMPLE_TRY_CATCH);
4046 return (gs->subcode & GIMPLE_TRY_CATCH_IS_CLEANUP) != 0;
4050 /* Return a pointer to the sequence of statements used as the
4051 body for GIMPLE_TRY GS. */
4053 static inline gimple_seq *
4054 gimple_try_eval_ptr (gimple *gs)
4056 gtry *try_stmt = as_a <gtry *> (gs);
4057 return &try_stmt->eval;
4061 /* Return the sequence of statements used as the body for GIMPLE_TRY GS. */
4063 static inline gimple_seq
4064 gimple_try_eval (gimple *gs)
4066 return *gimple_try_eval_ptr (gs);
4070 /* Return a pointer to the sequence of statements used as the cleanup body for
4071 GIMPLE_TRY GS. */
4073 static inline gimple_seq *
4074 gimple_try_cleanup_ptr (gimple *gs)
4076 gtry *try_stmt = as_a <gtry *> (gs);
4077 return &try_stmt->cleanup;
4081 /* Return the sequence of statements used as the cleanup body for
4082 GIMPLE_TRY GS. */
4084 static inline gimple_seq
4085 gimple_try_cleanup (gimple *gs)
4087 return *gimple_try_cleanup_ptr (gs);
4091 /* Set the GIMPLE_TRY_CATCH_IS_CLEANUP flag. */
4093 static inline void
4094 gimple_try_set_catch_is_cleanup (gtry *g, bool catch_is_cleanup)
4096 gcc_gimple_checking_assert (gimple_try_kind (g) == GIMPLE_TRY_CATCH);
4097 if (catch_is_cleanup)
4098 g->subcode |= GIMPLE_TRY_CATCH_IS_CLEANUP;
4099 else
4100 g->subcode &= ~GIMPLE_TRY_CATCH_IS_CLEANUP;
4104 /* Set EVAL to be the sequence of statements to use as the body for
4105 GIMPLE_TRY TRY_STMT. */
4107 static inline void
4108 gimple_try_set_eval (gtry *try_stmt, gimple_seq eval)
4110 try_stmt->eval = eval;
4114 /* Set CLEANUP to be the sequence of statements to use as the cleanup
4115 body for GIMPLE_TRY TRY_STMT. */
4117 static inline void
4118 gimple_try_set_cleanup (gtry *try_stmt, gimple_seq cleanup)
4120 try_stmt->cleanup = cleanup;
4124 /* Return a pointer to the cleanup sequence for cleanup statement GS. */
4126 static inline gimple_seq *
4127 gimple_wce_cleanup_ptr (gimple *gs)
4129 gimple_statement_wce *wce_stmt = as_a <gimple_statement_wce *> (gs);
4130 return &wce_stmt->cleanup;
4134 /* Return the cleanup sequence for cleanup statement GS. */
4136 static inline gimple_seq
4137 gimple_wce_cleanup (gimple *gs)
4139 return *gimple_wce_cleanup_ptr (gs);
4143 /* Set CLEANUP to be the cleanup sequence for GS. */
4145 static inline void
4146 gimple_wce_set_cleanup (gimple *gs, gimple_seq cleanup)
4148 gimple_statement_wce *wce_stmt = as_a <gimple_statement_wce *> (gs);
4149 wce_stmt->cleanup = cleanup;
4153 /* Return the CLEANUP_EH_ONLY flag for a WCE tuple. */
4155 static inline bool
4156 gimple_wce_cleanup_eh_only (const gimple *gs)
4158 GIMPLE_CHECK (gs, GIMPLE_WITH_CLEANUP_EXPR);
4159 return gs->subcode != 0;
4163 /* Set the CLEANUP_EH_ONLY flag for a WCE tuple. */
4165 static inline void
4166 gimple_wce_set_cleanup_eh_only (gimple *gs, bool eh_only_p)
4168 GIMPLE_CHECK (gs, GIMPLE_WITH_CLEANUP_EXPR);
4169 gs->subcode = (unsigned int) eh_only_p;
4173 /* Return the maximum number of arguments supported by GIMPLE_PHI GS. */
4175 static inline unsigned
4176 gimple_phi_capacity (const gimple *gs)
4178 const gphi *phi_stmt = as_a <const gphi *> (gs);
4179 return phi_stmt->capacity;
4183 /* Return the number of arguments in GIMPLE_PHI GS. This must always
4184 be exactly the number of incoming edges for the basic block holding
4185 GS. */
4187 static inline unsigned
4188 gimple_phi_num_args (const gimple *gs)
4190 const gphi *phi_stmt = as_a <const gphi *> (gs);
4191 return phi_stmt->nargs;
4195 /* Return the SSA name created by GIMPLE_PHI GS. */
4197 static inline tree
4198 gimple_phi_result (const gimple *gs)
4200 const gphi *phi_stmt = as_a <const gphi *> (gs);
4201 return phi_stmt->result;
4204 /* Return a pointer to the SSA name created by GIMPLE_PHI GS. */
4206 static inline tree *
4207 gimple_phi_result_ptr (gimple *gs)
4209 gphi *phi_stmt = as_a <gphi *> (gs);
4210 return &phi_stmt->result;
4213 /* Set RESULT to be the SSA name created by GIMPLE_PHI PHI. */
4215 static inline void
4216 gimple_phi_set_result (gphi *phi, tree result)
4218 phi->result = result;
4219 if (result && TREE_CODE (result) == SSA_NAME)
4220 SSA_NAME_DEF_STMT (result) = phi;
4224 /* Return the PHI argument corresponding to incoming edge INDEX for
4225 GIMPLE_PHI GS. */
4227 static inline struct phi_arg_d *
4228 gimple_phi_arg (gimple *gs, unsigned index)
4230 gphi *phi_stmt = as_a <gphi *> (gs);
4231 gcc_gimple_checking_assert (index <= phi_stmt->capacity);
4232 return &(phi_stmt->args[index]);
4235 /* Set PHIARG to be the argument corresponding to incoming edge INDEX
4236 for GIMPLE_PHI PHI. */
4238 static inline void
4239 gimple_phi_set_arg (gphi *phi, unsigned index, struct phi_arg_d * phiarg)
4241 gcc_gimple_checking_assert (index <= phi->nargs);
4242 phi->args[index] = *phiarg;
4245 /* Return the PHI nodes for basic block BB, or NULL if there are no
4246 PHI nodes. */
4248 static inline gimple_seq
4249 phi_nodes (const_basic_block bb)
4251 gcc_checking_assert (!(bb->flags & BB_RTL));
4252 return bb->il.gimple.phi_nodes;
4255 /* Return a pointer to the PHI nodes for basic block BB. */
4257 static inline gimple_seq *
4258 phi_nodes_ptr (basic_block bb)
4260 gcc_checking_assert (!(bb->flags & BB_RTL));
4261 return &bb->il.gimple.phi_nodes;
4264 /* Return the tree operand for argument I of PHI node GS. */
4266 static inline tree
4267 gimple_phi_arg_def (gimple *gs, size_t index)
4269 return gimple_phi_arg (gs, index)->def;
4273 /* Return a pointer to the tree operand for argument I of phi node PHI. */
4275 static inline tree *
4276 gimple_phi_arg_def_ptr (gphi *phi, size_t index)
4278 return &gimple_phi_arg (phi, index)->def;
4281 /* Return the edge associated with argument I of phi node PHI. */
4283 static inline edge
4284 gimple_phi_arg_edge (gphi *phi, size_t i)
4286 return EDGE_PRED (gimple_bb (phi), i);
4289 /* Return the source location of gimple argument I of phi node PHI. */
4291 static inline source_location
4292 gimple_phi_arg_location (gphi *phi, size_t i)
4294 return gimple_phi_arg (phi, i)->locus;
4297 /* Return the source location of the argument on edge E of phi node PHI. */
4299 static inline source_location
4300 gimple_phi_arg_location_from_edge (gphi *phi, edge e)
4302 return gimple_phi_arg (phi, e->dest_idx)->locus;
4305 /* Set the source location of gimple argument I of phi node PHI to LOC. */
4307 static inline void
4308 gimple_phi_arg_set_location (gphi *phi, size_t i, source_location loc)
4310 gimple_phi_arg (phi, i)->locus = loc;
4313 /* Return TRUE if argument I of phi node PHI has a location record. */
4315 static inline bool
4316 gimple_phi_arg_has_location (gphi *phi, size_t i)
4318 return gimple_phi_arg_location (phi, i) != UNKNOWN_LOCATION;
4322 /* Return the region number for GIMPLE_RESX RESX_STMT. */
4324 static inline int
4325 gimple_resx_region (const gresx *resx_stmt)
4327 return resx_stmt->region;
4330 /* Set REGION to be the region number for GIMPLE_RESX RESX_STMT. */
4332 static inline void
4333 gimple_resx_set_region (gresx *resx_stmt, int region)
4335 resx_stmt->region = region;
4338 /* Return the region number for GIMPLE_EH_DISPATCH EH_DISPATCH_STMT. */
4340 static inline int
4341 gimple_eh_dispatch_region (const geh_dispatch *eh_dispatch_stmt)
4343 return eh_dispatch_stmt->region;
4346 /* Set REGION to be the region number for GIMPLE_EH_DISPATCH
4347 EH_DISPATCH_STMT. */
4349 static inline void
4350 gimple_eh_dispatch_set_region (geh_dispatch *eh_dispatch_stmt, int region)
4352 eh_dispatch_stmt->region = region;
4355 /* Return the number of labels associated with the switch statement GS. */
4357 static inline unsigned
4358 gimple_switch_num_labels (const gswitch *gs)
4360 unsigned num_ops;
4361 GIMPLE_CHECK (gs, GIMPLE_SWITCH);
4362 num_ops = gimple_num_ops (gs);
4363 gcc_gimple_checking_assert (num_ops > 1);
4364 return num_ops - 1;
4368 /* Set NLABELS to be the number of labels for the switch statement GS. */
4370 static inline void
4371 gimple_switch_set_num_labels (gswitch *g, unsigned nlabels)
4373 GIMPLE_CHECK (g, GIMPLE_SWITCH);
4374 gimple_set_num_ops (g, nlabels + 1);
4378 /* Return the index variable used by the switch statement GS. */
4380 static inline tree
4381 gimple_switch_index (const gswitch *gs)
4383 return gs->op[0];
4387 /* Return a pointer to the index variable for the switch statement GS. */
4389 static inline tree *
4390 gimple_switch_index_ptr (gswitch *gs)
4392 return &gs->op[0];
4396 /* Set INDEX to be the index variable for switch statement GS. */
4398 static inline void
4399 gimple_switch_set_index (gswitch *gs, tree index)
4401 gcc_gimple_checking_assert (SSA_VAR_P (index) || CONSTANT_CLASS_P (index));
4402 gs->op[0] = index;
4406 /* Return the label numbered INDEX. The default label is 0, followed by any
4407 labels in a switch statement. */
4409 static inline tree
4410 gimple_switch_label (const gswitch *gs, unsigned index)
4412 gcc_gimple_checking_assert (gimple_num_ops (gs) > index + 1);
4413 return gs->op[index + 1];
4416 /* Set the label number INDEX to LABEL. 0 is always the default label. */
4418 static inline void
4419 gimple_switch_set_label (gswitch *gs, unsigned index, tree label)
4421 gcc_gimple_checking_assert (gimple_num_ops (gs) > index + 1
4422 && (label == NULL_TREE
4423 || TREE_CODE (label) == CASE_LABEL_EXPR));
4424 gs->op[index + 1] = label;
4427 /* Return the default label for a switch statement. */
4429 static inline tree
4430 gimple_switch_default_label (const gswitch *gs)
4432 tree label = gimple_switch_label (gs, 0);
4433 gcc_checking_assert (!CASE_LOW (label) && !CASE_HIGH (label));
4434 return label;
4437 /* Set the default label for a switch statement. */
4439 static inline void
4440 gimple_switch_set_default_label (gswitch *gs, tree label)
4442 gcc_checking_assert (!CASE_LOW (label) && !CASE_HIGH (label));
4443 gimple_switch_set_label (gs, 0, label);
4446 /* Return true if GS is a GIMPLE_DEBUG statement. */
4448 static inline bool
4449 is_gimple_debug (const gimple *gs)
4451 return gimple_code (gs) == GIMPLE_DEBUG;
4454 /* Return true if S is a GIMPLE_DEBUG BIND statement. */
4456 static inline bool
4457 gimple_debug_bind_p (const gimple *s)
4459 if (is_gimple_debug (s))
4460 return s->subcode == GIMPLE_DEBUG_BIND;
4462 return false;
4465 /* Return the variable bound in a GIMPLE_DEBUG bind statement. */
4467 static inline tree
4468 gimple_debug_bind_get_var (gimple *dbg)
4470 GIMPLE_CHECK (dbg, GIMPLE_DEBUG);
4471 gcc_gimple_checking_assert (gimple_debug_bind_p (dbg));
4472 return gimple_op (dbg, 0);
4475 /* Return the value bound to the variable in a GIMPLE_DEBUG bind
4476 statement. */
4478 static inline tree
4479 gimple_debug_bind_get_value (gimple *dbg)
4481 GIMPLE_CHECK (dbg, GIMPLE_DEBUG);
4482 gcc_gimple_checking_assert (gimple_debug_bind_p (dbg));
4483 return gimple_op (dbg, 1);
4486 /* Return a pointer to the value bound to the variable in a
4487 GIMPLE_DEBUG bind statement. */
4489 static inline tree *
4490 gimple_debug_bind_get_value_ptr (gimple *dbg)
4492 GIMPLE_CHECK (dbg, GIMPLE_DEBUG);
4493 gcc_gimple_checking_assert (gimple_debug_bind_p (dbg));
4494 return gimple_op_ptr (dbg, 1);
4497 /* Set the variable bound in a GIMPLE_DEBUG bind statement. */
4499 static inline void
4500 gimple_debug_bind_set_var (gimple *dbg, tree var)
4502 GIMPLE_CHECK (dbg, GIMPLE_DEBUG);
4503 gcc_gimple_checking_assert (gimple_debug_bind_p (dbg));
4504 gimple_set_op (dbg, 0, var);
4507 /* Set the value bound to the variable in a GIMPLE_DEBUG bind
4508 statement. */
4510 static inline void
4511 gimple_debug_bind_set_value (gimple *dbg, tree value)
4513 GIMPLE_CHECK (dbg, GIMPLE_DEBUG);
4514 gcc_gimple_checking_assert (gimple_debug_bind_p (dbg));
4515 gimple_set_op (dbg, 1, value);
4518 /* The second operand of a GIMPLE_DEBUG_BIND, when the value was
4519 optimized away. */
4520 #define GIMPLE_DEBUG_BIND_NOVALUE NULL_TREE /* error_mark_node */
4522 /* Remove the value bound to the variable in a GIMPLE_DEBUG bind
4523 statement. */
4525 static inline void
4526 gimple_debug_bind_reset_value (gimple *dbg)
4528 GIMPLE_CHECK (dbg, GIMPLE_DEBUG);
4529 gcc_gimple_checking_assert (gimple_debug_bind_p (dbg));
4530 gimple_set_op (dbg, 1, GIMPLE_DEBUG_BIND_NOVALUE);
4533 /* Return true if the GIMPLE_DEBUG bind statement is bound to a
4534 value. */
4536 static inline bool
4537 gimple_debug_bind_has_value_p (gimple *dbg)
4539 GIMPLE_CHECK (dbg, GIMPLE_DEBUG);
4540 gcc_gimple_checking_assert (gimple_debug_bind_p (dbg));
4541 return gimple_op (dbg, 1) != GIMPLE_DEBUG_BIND_NOVALUE;
4544 #undef GIMPLE_DEBUG_BIND_NOVALUE
4546 /* Return true if S is a GIMPLE_DEBUG SOURCE BIND statement. */
4548 static inline bool
4549 gimple_debug_source_bind_p (const gimple *s)
4551 if (is_gimple_debug (s))
4552 return s->subcode == GIMPLE_DEBUG_SOURCE_BIND;
4554 return false;
4557 /* Return the variable bound in a GIMPLE_DEBUG source bind statement. */
4559 static inline tree
4560 gimple_debug_source_bind_get_var (gimple *dbg)
4562 GIMPLE_CHECK (dbg, GIMPLE_DEBUG);
4563 gcc_gimple_checking_assert (gimple_debug_source_bind_p (dbg));
4564 return gimple_op (dbg, 0);
4567 /* Return the value bound to the variable in a GIMPLE_DEBUG source bind
4568 statement. */
4570 static inline tree
4571 gimple_debug_source_bind_get_value (gimple *dbg)
4573 GIMPLE_CHECK (dbg, GIMPLE_DEBUG);
4574 gcc_gimple_checking_assert (gimple_debug_source_bind_p (dbg));
4575 return gimple_op (dbg, 1);
4578 /* Return a pointer to the value bound to the variable in a
4579 GIMPLE_DEBUG source bind statement. */
4581 static inline tree *
4582 gimple_debug_source_bind_get_value_ptr (gimple *dbg)
4584 GIMPLE_CHECK (dbg, GIMPLE_DEBUG);
4585 gcc_gimple_checking_assert (gimple_debug_source_bind_p (dbg));
4586 return gimple_op_ptr (dbg, 1);
4589 /* Set the variable bound in a GIMPLE_DEBUG source bind statement. */
4591 static inline void
4592 gimple_debug_source_bind_set_var (gimple *dbg, tree var)
4594 GIMPLE_CHECK (dbg, GIMPLE_DEBUG);
4595 gcc_gimple_checking_assert (gimple_debug_source_bind_p (dbg));
4596 gimple_set_op (dbg, 0, var);
4599 /* Set the value bound to the variable in a GIMPLE_DEBUG source bind
4600 statement. */
4602 static inline void
4603 gimple_debug_source_bind_set_value (gimple *dbg, tree value)
4605 GIMPLE_CHECK (dbg, GIMPLE_DEBUG);
4606 gcc_gimple_checking_assert (gimple_debug_source_bind_p (dbg));
4607 gimple_set_op (dbg, 1, value);
4610 /* Return the line number for EXPR, or return -1 if we have no line
4611 number information for it. */
4612 static inline int
4613 get_lineno (const gimple *stmt)
4615 location_t loc;
4617 if (!stmt)
4618 return -1;
4620 loc = gimple_location (stmt);
4621 if (loc == UNKNOWN_LOCATION)
4622 return -1;
4624 return LOCATION_LINE (loc);
4627 /* Return a pointer to the body for the OMP statement GS. */
4629 static inline gimple_seq *
4630 gimple_omp_body_ptr (gimple *gs)
4632 return &static_cast <gimple_statement_omp *> (gs)->body;
4635 /* Return the body for the OMP statement GS. */
4637 static inline gimple_seq
4638 gimple_omp_body (gimple *gs)
4640 return *gimple_omp_body_ptr (gs);
4643 /* Set BODY to be the body for the OMP statement GS. */
4645 static inline void
4646 gimple_omp_set_body (gimple *gs, gimple_seq body)
4648 static_cast <gimple_statement_omp *> (gs)->body = body;
4652 /* Return the name associated with OMP_CRITICAL statement CRIT_STMT. */
4654 static inline tree
4655 gimple_omp_critical_name (const gomp_critical *crit_stmt)
4657 return crit_stmt->name;
4661 /* Return a pointer to the name associated with OMP critical statement GS. */
4663 static inline tree *
4664 gimple_omp_critical_name_ptr (gomp_critical *crit_stmt)
4666 return &crit_stmt->name;
4670 /* Set NAME to be the name associated with OMP critical statement GS. */
4672 static inline void
4673 gimple_omp_critical_set_name (gomp_critical *crit_stmt, tree name)
4675 crit_stmt->name = name;
4679 /* Return the kind of the OMP_FOR statemement G. */
4681 static inline int
4682 gimple_omp_for_kind (const gimple *g)
4684 GIMPLE_CHECK (g, GIMPLE_OMP_FOR);
4685 return (gimple_omp_subcode (g) & GF_OMP_FOR_KIND_MASK);
4689 /* Set the kind of the OMP_FOR statement G. */
4691 static inline void
4692 gimple_omp_for_set_kind (gomp_for *g, int kind)
4694 g->subcode = (g->subcode & ~GF_OMP_FOR_KIND_MASK)
4695 | (kind & GF_OMP_FOR_KIND_MASK);
4699 /* Return true if OMP_FOR statement G has the
4700 GF_OMP_FOR_COMBINED flag set. */
4702 static inline bool
4703 gimple_omp_for_combined_p (const gimple *g)
4705 GIMPLE_CHECK (g, GIMPLE_OMP_FOR);
4706 return (gimple_omp_subcode (g) & GF_OMP_FOR_COMBINED) != 0;
4710 /* Set the GF_OMP_FOR_COMBINED field in the OMP_FOR statement G depending on
4711 the boolean value of COMBINED_P. */
4713 static inline void
4714 gimple_omp_for_set_combined_p (gomp_for *g, bool combined_p)
4716 if (combined_p)
4717 g->subcode |= GF_OMP_FOR_COMBINED;
4718 else
4719 g->subcode &= ~GF_OMP_FOR_COMBINED;
4723 /* Return true if the OMP_FOR statement G has the
4724 GF_OMP_FOR_COMBINED_INTO flag set. */
4726 static inline bool
4727 gimple_omp_for_combined_into_p (const gimple *g)
4729 GIMPLE_CHECK (g, GIMPLE_OMP_FOR);
4730 return (gimple_omp_subcode (g) & GF_OMP_FOR_COMBINED_INTO) != 0;
4734 /* Set the GF_OMP_FOR_COMBINED_INTO field in the OMP_FOR statement G depending
4735 on the boolean value of COMBINED_P. */
4737 static inline void
4738 gimple_omp_for_set_combined_into_p (gomp_for *g, bool combined_p)
4740 if (combined_p)
4741 g->subcode |= GF_OMP_FOR_COMBINED_INTO;
4742 else
4743 g->subcode &= ~GF_OMP_FOR_COMBINED_INTO;
4747 /* Return the clauses associated with the OMP_FOR statement GS. */
4749 static inline tree
4750 gimple_omp_for_clauses (const gimple *gs)
4752 const gomp_for *omp_for_stmt = as_a <const gomp_for *> (gs);
4753 return omp_for_stmt->clauses;
4757 /* Return a pointer to the clauses associated with the OMP_FOR statement
4758 GS. */
4760 static inline tree *
4761 gimple_omp_for_clauses_ptr (gimple *gs)
4763 gomp_for *omp_for_stmt = as_a <gomp_for *> (gs);
4764 return &omp_for_stmt->clauses;
4768 /* Set CLAUSES to be the list of clauses associated with the OMP_FOR statement
4769 GS. */
4771 static inline void
4772 gimple_omp_for_set_clauses (gimple *gs, tree clauses)
4774 gomp_for *omp_for_stmt = as_a <gomp_for *> (gs);
4775 omp_for_stmt->clauses = clauses;
4779 /* Get the collapse count of the OMP_FOR statement GS. */
4781 static inline size_t
4782 gimple_omp_for_collapse (gimple *gs)
4784 gomp_for *omp_for_stmt = as_a <gomp_for *> (gs);
4785 return omp_for_stmt->collapse;
4789 /* Return the condition code associated with the OMP_FOR statement GS. */
4791 static inline enum tree_code
4792 gimple_omp_for_cond (const gimple *gs, size_t i)
4794 const gomp_for *omp_for_stmt = as_a <const gomp_for *> (gs);
4795 gcc_gimple_checking_assert (i < omp_for_stmt->collapse);
4796 return omp_for_stmt->iter[i].cond;
4800 /* Set COND to be the condition code for the OMP_FOR statement GS. */
4802 static inline void
4803 gimple_omp_for_set_cond (gimple *gs, size_t i, enum tree_code cond)
4805 gomp_for *omp_for_stmt = as_a <gomp_for *> (gs);
4806 gcc_gimple_checking_assert (TREE_CODE_CLASS (cond) == tcc_comparison
4807 && i < omp_for_stmt->collapse);
4808 omp_for_stmt->iter[i].cond = cond;
4812 /* Return the index variable for the OMP_FOR statement GS. */
4814 static inline tree
4815 gimple_omp_for_index (const gimple *gs, size_t i)
4817 const gomp_for *omp_for_stmt = as_a <const gomp_for *> (gs);
4818 gcc_gimple_checking_assert (i < omp_for_stmt->collapse);
4819 return omp_for_stmt->iter[i].index;
4823 /* Return a pointer to the index variable for the OMP_FOR statement GS. */
4825 static inline tree *
4826 gimple_omp_for_index_ptr (gimple *gs, size_t i)
4828 gomp_for *omp_for_stmt = as_a <gomp_for *> (gs);
4829 gcc_gimple_checking_assert (i < omp_for_stmt->collapse);
4830 return &omp_for_stmt->iter[i].index;
4834 /* Set INDEX to be the index variable for the OMP_FOR statement GS. */
4836 static inline void
4837 gimple_omp_for_set_index (gimple *gs, size_t i, tree index)
4839 gomp_for *omp_for_stmt = as_a <gomp_for *> (gs);
4840 gcc_gimple_checking_assert (i < omp_for_stmt->collapse);
4841 omp_for_stmt->iter[i].index = index;
4845 /* Return the initial value for the OMP_FOR statement GS. */
4847 static inline tree
4848 gimple_omp_for_initial (const gimple *gs, size_t i)
4850 const gomp_for *omp_for_stmt = as_a <const gomp_for *> (gs);
4851 gcc_gimple_checking_assert (i < omp_for_stmt->collapse);
4852 return omp_for_stmt->iter[i].initial;
4856 /* Return a pointer to the initial value for the OMP_FOR statement GS. */
4858 static inline tree *
4859 gimple_omp_for_initial_ptr (gimple *gs, size_t i)
4861 gomp_for *omp_for_stmt = as_a <gomp_for *> (gs);
4862 gcc_gimple_checking_assert (i < omp_for_stmt->collapse);
4863 return &omp_for_stmt->iter[i].initial;
4867 /* Set INITIAL to be the initial value for the OMP_FOR statement GS. */
4869 static inline void
4870 gimple_omp_for_set_initial (gimple *gs, size_t i, tree initial)
4872 gomp_for *omp_for_stmt = as_a <gomp_for *> (gs);
4873 gcc_gimple_checking_assert (i < omp_for_stmt->collapse);
4874 omp_for_stmt->iter[i].initial = initial;
4878 /* Return the final value for the OMP_FOR statement GS. */
4880 static inline tree
4881 gimple_omp_for_final (const gimple *gs, size_t i)
4883 const gomp_for *omp_for_stmt = as_a <const gomp_for *> (gs);
4884 gcc_gimple_checking_assert (i < omp_for_stmt->collapse);
4885 return omp_for_stmt->iter[i].final;
4889 /* Return a pointer to the final value for the OMP_FOR statement GS. */
4891 static inline tree *
4892 gimple_omp_for_final_ptr (gimple *gs, size_t i)
4894 gomp_for *omp_for_stmt = as_a <gomp_for *> (gs);
4895 gcc_gimple_checking_assert (i < omp_for_stmt->collapse);
4896 return &omp_for_stmt->iter[i].final;
4900 /* Set FINAL to be the final value for the OMP_FOR statement GS. */
4902 static inline void
4903 gimple_omp_for_set_final (gimple *gs, size_t i, tree final)
4905 gomp_for *omp_for_stmt = as_a <gomp_for *> (gs);
4906 gcc_gimple_checking_assert (i < omp_for_stmt->collapse);
4907 omp_for_stmt->iter[i].final = final;
4911 /* Return the increment value for the OMP_FOR statement GS. */
4913 static inline tree
4914 gimple_omp_for_incr (const gimple *gs, size_t i)
4916 const gomp_for *omp_for_stmt = as_a <const gomp_for *> (gs);
4917 gcc_gimple_checking_assert (i < omp_for_stmt->collapse);
4918 return omp_for_stmt->iter[i].incr;
4922 /* Return a pointer to the increment value for the OMP_FOR statement GS. */
4924 static inline tree *
4925 gimple_omp_for_incr_ptr (gimple *gs, size_t i)
4927 gomp_for *omp_for_stmt = as_a <gomp_for *> (gs);
4928 gcc_gimple_checking_assert (i < omp_for_stmt->collapse);
4929 return &omp_for_stmt->iter[i].incr;
4933 /* Set INCR to be the increment value for the OMP_FOR statement GS. */
4935 static inline void
4936 gimple_omp_for_set_incr (gimple *gs, size_t i, tree incr)
4938 gomp_for *omp_for_stmt = as_a <gomp_for *> (gs);
4939 gcc_gimple_checking_assert (i < omp_for_stmt->collapse);
4940 omp_for_stmt->iter[i].incr = incr;
4944 /* Return a pointer to the sequence of statements to execute before the OMP_FOR
4945 statement GS starts. */
4947 static inline gimple_seq *
4948 gimple_omp_for_pre_body_ptr (gimple *gs)
4950 gomp_for *omp_for_stmt = as_a <gomp_for *> (gs);
4951 return &omp_for_stmt->pre_body;
4955 /* Return the sequence of statements to execute before the OMP_FOR
4956 statement GS starts. */
4958 static inline gimple_seq
4959 gimple_omp_for_pre_body (gimple *gs)
4961 return *gimple_omp_for_pre_body_ptr (gs);
4965 /* Set PRE_BODY to be the sequence of statements to execute before the
4966 OMP_FOR statement GS starts. */
4968 static inline void
4969 gimple_omp_for_set_pre_body (gimple *gs, gimple_seq pre_body)
4971 gomp_for *omp_for_stmt = as_a <gomp_for *> (gs);
4972 omp_for_stmt->pre_body = pre_body;
4976 /* Return the clauses associated with OMP_PARALLEL GS. */
4978 static inline tree
4979 gimple_omp_parallel_clauses (const gimple *gs)
4981 const gomp_parallel *omp_parallel_stmt = as_a <const gomp_parallel *> (gs);
4982 return omp_parallel_stmt->clauses;
4986 /* Return a pointer to the clauses associated with OMP_PARALLEL_STMT. */
4988 static inline tree *
4989 gimple_omp_parallel_clauses_ptr (gomp_parallel *omp_parallel_stmt)
4991 return &omp_parallel_stmt->clauses;
4995 /* Set CLAUSES to be the list of clauses associated with OMP_PARALLEL_STMT. */
4997 static inline void
4998 gimple_omp_parallel_set_clauses (gomp_parallel *omp_parallel_stmt,
4999 tree clauses)
5001 omp_parallel_stmt->clauses = clauses;
5005 /* Return the child function used to hold the body of OMP_PARALLEL_STMT. */
5007 static inline tree
5008 gimple_omp_parallel_child_fn (const gomp_parallel *omp_parallel_stmt)
5010 return omp_parallel_stmt->child_fn;
5013 /* Return a pointer to the child function used to hold the body of
5014 OMP_PARALLEL_STMT. */
5016 static inline tree *
5017 gimple_omp_parallel_child_fn_ptr (gomp_parallel *omp_parallel_stmt)
5019 return &omp_parallel_stmt->child_fn;
5023 /* Set CHILD_FN to be the child function for OMP_PARALLEL_STMT. */
5025 static inline void
5026 gimple_omp_parallel_set_child_fn (gomp_parallel *omp_parallel_stmt,
5027 tree child_fn)
5029 omp_parallel_stmt->child_fn = child_fn;
5033 /* Return the artificial argument used to send variables and values
5034 from the parent to the children threads in OMP_PARALLEL_STMT. */
5036 static inline tree
5037 gimple_omp_parallel_data_arg (const gomp_parallel *omp_parallel_stmt)
5039 return omp_parallel_stmt->data_arg;
5043 /* Return a pointer to the data argument for OMP_PARALLEL_STMT. */
5045 static inline tree *
5046 gimple_omp_parallel_data_arg_ptr (gomp_parallel *omp_parallel_stmt)
5048 return &omp_parallel_stmt->data_arg;
5052 /* Set DATA_ARG to be the data argument for OMP_PARALLEL_STMT. */
5054 static inline void
5055 gimple_omp_parallel_set_data_arg (gomp_parallel *omp_parallel_stmt,
5056 tree data_arg)
5058 omp_parallel_stmt->data_arg = data_arg;
5062 /* Return the clauses associated with OMP_TASK GS. */
5064 static inline tree
5065 gimple_omp_task_clauses (const gimple *gs)
5067 const gomp_task *omp_task_stmt = as_a <const gomp_task *> (gs);
5068 return omp_task_stmt->clauses;
5072 /* Return a pointer to the clauses associated with OMP_TASK GS. */
5074 static inline tree *
5075 gimple_omp_task_clauses_ptr (gimple *gs)
5077 gomp_task *omp_task_stmt = as_a <gomp_task *> (gs);
5078 return &omp_task_stmt->clauses;
5082 /* Set CLAUSES to be the list of clauses associated with OMP_TASK
5083 GS. */
5085 static inline void
5086 gimple_omp_task_set_clauses (gimple *gs, tree clauses)
5088 gomp_task *omp_task_stmt = as_a <gomp_task *> (gs);
5089 omp_task_stmt->clauses = clauses;
5093 /* Return the child function used to hold the body of OMP_TASK GS. */
5095 static inline tree
5096 gimple_omp_task_child_fn (const gimple *gs)
5098 const gomp_task *omp_task_stmt = as_a <const gomp_task *> (gs);
5099 return omp_task_stmt->child_fn;
5102 /* Return a pointer to the child function used to hold the body of
5103 OMP_TASK GS. */
5105 static inline tree *
5106 gimple_omp_task_child_fn_ptr (gimple *gs)
5108 gomp_task *omp_task_stmt = as_a <gomp_task *> (gs);
5109 return &omp_task_stmt->child_fn;
5113 /* Set CHILD_FN to be the child function for OMP_TASK GS. */
5115 static inline void
5116 gimple_omp_task_set_child_fn (gimple *gs, tree child_fn)
5118 gomp_task *omp_task_stmt = as_a <gomp_task *> (gs);
5119 omp_task_stmt->child_fn = child_fn;
5123 /* Return the artificial argument used to send variables and values
5124 from the parent to the children threads in OMP_TASK GS. */
5126 static inline tree
5127 gimple_omp_task_data_arg (const gimple *gs)
5129 const gomp_task *omp_task_stmt = as_a <const gomp_task *> (gs);
5130 return omp_task_stmt->data_arg;
5134 /* Return a pointer to the data argument for OMP_TASK GS. */
5136 static inline tree *
5137 gimple_omp_task_data_arg_ptr (gimple *gs)
5139 gomp_task *omp_task_stmt = as_a <gomp_task *> (gs);
5140 return &omp_task_stmt->data_arg;
5144 /* Set DATA_ARG to be the data argument for OMP_TASK GS. */
5146 static inline void
5147 gimple_omp_task_set_data_arg (gimple *gs, tree data_arg)
5149 gomp_task *omp_task_stmt = as_a <gomp_task *> (gs);
5150 omp_task_stmt->data_arg = data_arg;
5154 /* Return the clauses associated with OMP_TASK GS. */
5156 static inline tree
5157 gimple_omp_taskreg_clauses (const gimple *gs)
5159 const gimple_statement_omp_taskreg *omp_taskreg_stmt
5160 = as_a <const gimple_statement_omp_taskreg *> (gs);
5161 return omp_taskreg_stmt->clauses;
5165 /* Return a pointer to the clauses associated with OMP_TASK GS. */
5167 static inline tree *
5168 gimple_omp_taskreg_clauses_ptr (gimple *gs)
5170 gimple_statement_omp_taskreg *omp_taskreg_stmt
5171 = as_a <gimple_statement_omp_taskreg *> (gs);
5172 return &omp_taskreg_stmt->clauses;
5176 /* Set CLAUSES to be the list of clauses associated with OMP_TASK
5177 GS. */
5179 static inline void
5180 gimple_omp_taskreg_set_clauses (gimple *gs, tree clauses)
5182 gimple_statement_omp_taskreg *omp_taskreg_stmt
5183 = as_a <gimple_statement_omp_taskreg *> (gs);
5184 omp_taskreg_stmt->clauses = clauses;
5188 /* Return the child function used to hold the body of OMP_TASK GS. */
5190 static inline tree
5191 gimple_omp_taskreg_child_fn (const gimple *gs)
5193 const gimple_statement_omp_taskreg *omp_taskreg_stmt
5194 = as_a <const gimple_statement_omp_taskreg *> (gs);
5195 return omp_taskreg_stmt->child_fn;
5198 /* Return a pointer to the child function used to hold the body of
5199 OMP_TASK GS. */
5201 static inline tree *
5202 gimple_omp_taskreg_child_fn_ptr (gimple *gs)
5204 gimple_statement_omp_taskreg *omp_taskreg_stmt
5205 = as_a <gimple_statement_omp_taskreg *> (gs);
5206 return &omp_taskreg_stmt->child_fn;
5210 /* Set CHILD_FN to be the child function for OMP_TASK GS. */
5212 static inline void
5213 gimple_omp_taskreg_set_child_fn (gimple *gs, tree child_fn)
5215 gimple_statement_omp_taskreg *omp_taskreg_stmt
5216 = as_a <gimple_statement_omp_taskreg *> (gs);
5217 omp_taskreg_stmt->child_fn = child_fn;
5221 /* Return the artificial argument used to send variables and values
5222 from the parent to the children threads in OMP_TASK GS. */
5224 static inline tree
5225 gimple_omp_taskreg_data_arg (const gimple *gs)
5227 const gimple_statement_omp_taskreg *omp_taskreg_stmt
5228 = as_a <const gimple_statement_omp_taskreg *> (gs);
5229 return omp_taskreg_stmt->data_arg;
5233 /* Return a pointer to the data argument for OMP_TASK GS. */
5235 static inline tree *
5236 gimple_omp_taskreg_data_arg_ptr (gimple *gs)
5238 gimple_statement_omp_taskreg *omp_taskreg_stmt
5239 = as_a <gimple_statement_omp_taskreg *> (gs);
5240 return &omp_taskreg_stmt->data_arg;
5244 /* Set DATA_ARG to be the data argument for OMP_TASK GS. */
5246 static inline void
5247 gimple_omp_taskreg_set_data_arg (gimple *gs, tree data_arg)
5249 gimple_statement_omp_taskreg *omp_taskreg_stmt
5250 = as_a <gimple_statement_omp_taskreg *> (gs);
5251 omp_taskreg_stmt->data_arg = data_arg;
5255 /* Return the copy function used to hold the body of OMP_TASK GS. */
5257 static inline tree
5258 gimple_omp_task_copy_fn (const gimple *gs)
5260 const gomp_task *omp_task_stmt = as_a <const gomp_task *> (gs);
5261 return omp_task_stmt->copy_fn;
5264 /* Return a pointer to the copy function used to hold the body of
5265 OMP_TASK GS. */
5267 static inline tree *
5268 gimple_omp_task_copy_fn_ptr (gimple *gs)
5270 gomp_task *omp_task_stmt = as_a <gomp_task *> (gs);
5271 return &omp_task_stmt->copy_fn;
5275 /* Set CHILD_FN to be the copy function for OMP_TASK GS. */
5277 static inline void
5278 gimple_omp_task_set_copy_fn (gimple *gs, tree copy_fn)
5280 gomp_task *omp_task_stmt = as_a <gomp_task *> (gs);
5281 omp_task_stmt->copy_fn = copy_fn;
5285 /* Return size of the data block in bytes in OMP_TASK GS. */
5287 static inline tree
5288 gimple_omp_task_arg_size (const gimple *gs)
5290 const gomp_task *omp_task_stmt = as_a <const gomp_task *> (gs);
5291 return omp_task_stmt->arg_size;
5295 /* Return a pointer to the data block size for OMP_TASK GS. */
5297 static inline tree *
5298 gimple_omp_task_arg_size_ptr (gimple *gs)
5300 gomp_task *omp_task_stmt = as_a <gomp_task *> (gs);
5301 return &omp_task_stmt->arg_size;
5305 /* Set ARG_SIZE to be the data block size for OMP_TASK GS. */
5307 static inline void
5308 gimple_omp_task_set_arg_size (gimple *gs, tree arg_size)
5310 gomp_task *omp_task_stmt = as_a <gomp_task *> (gs);
5311 omp_task_stmt->arg_size = arg_size;
5315 /* Return align of the data block in bytes in OMP_TASK GS. */
5317 static inline tree
5318 gimple_omp_task_arg_align (const gimple *gs)
5320 const gomp_task *omp_task_stmt = as_a <const gomp_task *> (gs);
5321 return omp_task_stmt->arg_align;
5325 /* Return a pointer to the data block align for OMP_TASK GS. */
5327 static inline tree *
5328 gimple_omp_task_arg_align_ptr (gimple *gs)
5330 gomp_task *omp_task_stmt = as_a <gomp_task *> (gs);
5331 return &omp_task_stmt->arg_align;
5335 /* Set ARG_SIZE to be the data block align for OMP_TASK GS. */
5337 static inline void
5338 gimple_omp_task_set_arg_align (gimple *gs, tree arg_align)
5340 gomp_task *omp_task_stmt = as_a <gomp_task *> (gs);
5341 omp_task_stmt->arg_align = arg_align;
5345 /* Return the clauses associated with OMP_SINGLE GS. */
5347 static inline tree
5348 gimple_omp_single_clauses (const gimple *gs)
5350 const gomp_single *omp_single_stmt = as_a <const gomp_single *> (gs);
5351 return omp_single_stmt->clauses;
5355 /* Return a pointer to the clauses associated with OMP_SINGLE GS. */
5357 static inline tree *
5358 gimple_omp_single_clauses_ptr (gimple *gs)
5360 gomp_single *omp_single_stmt = as_a <gomp_single *> (gs);
5361 return &omp_single_stmt->clauses;
5365 /* Set CLAUSES to be the clauses associated with OMP_SINGLE_STMT. */
5367 static inline void
5368 gimple_omp_single_set_clauses (gomp_single *omp_single_stmt, tree clauses)
5370 omp_single_stmt->clauses = clauses;
5374 /* Return the clauses associated with OMP_TARGET GS. */
5376 static inline tree
5377 gimple_omp_target_clauses (const gimple *gs)
5379 const gomp_target *omp_target_stmt = as_a <const gomp_target *> (gs);
5380 return omp_target_stmt->clauses;
5384 /* Return a pointer to the clauses associated with OMP_TARGET GS. */
5386 static inline tree *
5387 gimple_omp_target_clauses_ptr (gimple *gs)
5389 gomp_target *omp_target_stmt = as_a <gomp_target *> (gs);
5390 return &omp_target_stmt->clauses;
5394 /* Set CLAUSES to be the clauses associated with OMP_TARGET_STMT. */
5396 static inline void
5397 gimple_omp_target_set_clauses (gomp_target *omp_target_stmt,
5398 tree clauses)
5400 omp_target_stmt->clauses = clauses;
5404 /* Return the kind of the OMP_TARGET G. */
5406 static inline int
5407 gimple_omp_target_kind (const gimple *g)
5409 GIMPLE_CHECK (g, GIMPLE_OMP_TARGET);
5410 return (gimple_omp_subcode (g) & GF_OMP_TARGET_KIND_MASK);
5414 /* Set the kind of the OMP_TARGET G. */
5416 static inline void
5417 gimple_omp_target_set_kind (gomp_target *g, int kind)
5419 g->subcode = (g->subcode & ~GF_OMP_TARGET_KIND_MASK)
5420 | (kind & GF_OMP_TARGET_KIND_MASK);
5424 /* Return the child function used to hold the body of OMP_TARGET_STMT. */
5426 static inline tree
5427 gimple_omp_target_child_fn (const gomp_target *omp_target_stmt)
5429 return omp_target_stmt->child_fn;
5432 /* Return a pointer to the child function used to hold the body of
5433 OMP_TARGET_STMT. */
5435 static inline tree *
5436 gimple_omp_target_child_fn_ptr (gomp_target *omp_target_stmt)
5438 return &omp_target_stmt->child_fn;
5442 /* Set CHILD_FN to be the child function for OMP_TARGET_STMT. */
5444 static inline void
5445 gimple_omp_target_set_child_fn (gomp_target *omp_target_stmt,
5446 tree child_fn)
5448 omp_target_stmt->child_fn = child_fn;
5452 /* Return the artificial argument used to send variables and values
5453 from the parent to the children threads in OMP_TARGET_STMT. */
5455 static inline tree
5456 gimple_omp_target_data_arg (const gomp_target *omp_target_stmt)
5458 return omp_target_stmt->data_arg;
5462 /* Return a pointer to the data argument for OMP_TARGET GS. */
5464 static inline tree *
5465 gimple_omp_target_data_arg_ptr (gomp_target *omp_target_stmt)
5467 return &omp_target_stmt->data_arg;
5471 /* Set DATA_ARG to be the data argument for OMP_TARGET_STMT. */
5473 static inline void
5474 gimple_omp_target_set_data_arg (gomp_target *omp_target_stmt,
5475 tree data_arg)
5477 omp_target_stmt->data_arg = data_arg;
5481 /* Return the clauses associated with OMP_TEAMS GS. */
5483 static inline tree
5484 gimple_omp_teams_clauses (const gimple *gs)
5486 const gomp_teams *omp_teams_stmt = as_a <const gomp_teams *> (gs);
5487 return omp_teams_stmt->clauses;
5491 /* Return a pointer to the clauses associated with OMP_TEAMS GS. */
5493 static inline tree *
5494 gimple_omp_teams_clauses_ptr (gimple *gs)
5496 gomp_teams *omp_teams_stmt = as_a <gomp_teams *> (gs);
5497 return &omp_teams_stmt->clauses;
5501 /* Set CLAUSES to be the clauses associated with OMP_TEAMS_STMT. */
5503 static inline void
5504 gimple_omp_teams_set_clauses (gomp_teams *omp_teams_stmt, tree clauses)
5506 omp_teams_stmt->clauses = clauses;
5510 /* Return the clauses associated with OMP_SECTIONS GS. */
5512 static inline tree
5513 gimple_omp_sections_clauses (const gimple *gs)
5515 const gomp_sections *omp_sections_stmt = as_a <const gomp_sections *> (gs);
5516 return omp_sections_stmt->clauses;
5520 /* Return a pointer to the clauses associated with OMP_SECTIONS GS. */
5522 static inline tree *
5523 gimple_omp_sections_clauses_ptr (gimple *gs)
5525 gomp_sections *omp_sections_stmt = as_a <gomp_sections *> (gs);
5526 return &omp_sections_stmt->clauses;
5530 /* Set CLAUSES to be the set of clauses associated with OMP_SECTIONS
5531 GS. */
5533 static inline void
5534 gimple_omp_sections_set_clauses (gimple *gs, tree clauses)
5536 gomp_sections *omp_sections_stmt = as_a <gomp_sections *> (gs);
5537 omp_sections_stmt->clauses = clauses;
5541 /* Return the control variable associated with the GIMPLE_OMP_SECTIONS
5542 in GS. */
5544 static inline tree
5545 gimple_omp_sections_control (const gimple *gs)
5547 const gomp_sections *omp_sections_stmt = as_a <const gomp_sections *> (gs);
5548 return omp_sections_stmt->control;
5552 /* Return a pointer to the clauses associated with the GIMPLE_OMP_SECTIONS
5553 GS. */
5555 static inline tree *
5556 gimple_omp_sections_control_ptr (gimple *gs)
5558 gomp_sections *omp_sections_stmt = as_a <gomp_sections *> (gs);
5559 return &omp_sections_stmt->control;
5563 /* Set CONTROL to be the set of clauses associated with the
5564 GIMPLE_OMP_SECTIONS in GS. */
5566 static inline void
5567 gimple_omp_sections_set_control (gimple *gs, tree control)
5569 gomp_sections *omp_sections_stmt = as_a <gomp_sections *> (gs);
5570 omp_sections_stmt->control = control;
5574 /* Set the value being stored in an atomic store. */
5576 static inline void
5577 gimple_omp_atomic_store_set_val (gomp_atomic_store *store_stmt, tree val)
5579 store_stmt->val = val;
5583 /* Return the value being stored in an atomic store. */
5585 static inline tree
5586 gimple_omp_atomic_store_val (const gomp_atomic_store *store_stmt)
5588 return store_stmt->val;
5592 /* Return a pointer to the value being stored in an atomic store. */
5594 static inline tree *
5595 gimple_omp_atomic_store_val_ptr (gomp_atomic_store *store_stmt)
5597 return &store_stmt->val;
5601 /* Set the LHS of an atomic load. */
5603 static inline void
5604 gimple_omp_atomic_load_set_lhs (gomp_atomic_load *load_stmt, tree lhs)
5606 load_stmt->lhs = lhs;
5610 /* Get the LHS of an atomic load. */
5612 static inline tree
5613 gimple_omp_atomic_load_lhs (const gomp_atomic_load *load_stmt)
5615 return load_stmt->lhs;
5619 /* Return a pointer to the LHS of an atomic load. */
5621 static inline tree *
5622 gimple_omp_atomic_load_lhs_ptr (gomp_atomic_load *load_stmt)
5624 return &load_stmt->lhs;
5628 /* Set the RHS of an atomic load. */
5630 static inline void
5631 gimple_omp_atomic_load_set_rhs (gomp_atomic_load *load_stmt, tree rhs)
5633 load_stmt->rhs = rhs;
5637 /* Get the RHS of an atomic load. */
5639 static inline tree
5640 gimple_omp_atomic_load_rhs (const gomp_atomic_load *load_stmt)
5642 return load_stmt->rhs;
5646 /* Return a pointer to the RHS of an atomic load. */
5648 static inline tree *
5649 gimple_omp_atomic_load_rhs_ptr (gomp_atomic_load *load_stmt)
5651 return &load_stmt->rhs;
5655 /* Get the definition of the control variable in a GIMPLE_OMP_CONTINUE. */
5657 static inline tree
5658 gimple_omp_continue_control_def (const gomp_continue *cont_stmt)
5660 return cont_stmt->control_def;
5663 /* The same as above, but return the address. */
5665 static inline tree *
5666 gimple_omp_continue_control_def_ptr (gomp_continue *cont_stmt)
5668 return &cont_stmt->control_def;
5671 /* Set the definition of the control variable in a GIMPLE_OMP_CONTINUE. */
5673 static inline void
5674 gimple_omp_continue_set_control_def (gomp_continue *cont_stmt, tree def)
5676 cont_stmt->control_def = def;
5680 /* Get the use of the control variable in a GIMPLE_OMP_CONTINUE. */
5682 static inline tree
5683 gimple_omp_continue_control_use (const gomp_continue *cont_stmt)
5685 return cont_stmt->control_use;
5689 /* The same as above, but return the address. */
5691 static inline tree *
5692 gimple_omp_continue_control_use_ptr (gomp_continue *cont_stmt)
5694 return &cont_stmt->control_use;
5698 /* Set the use of the control variable in a GIMPLE_OMP_CONTINUE. */
5700 static inline void
5701 gimple_omp_continue_set_control_use (gomp_continue *cont_stmt, tree use)
5703 cont_stmt->control_use = use;
5706 /* Return a pointer to the body for the GIMPLE_TRANSACTION statement
5707 TRANSACTION_STMT. */
5709 static inline gimple_seq *
5710 gimple_transaction_body_ptr (gtransaction *transaction_stmt)
5712 return &transaction_stmt->body;
5715 /* Return the body for the GIMPLE_TRANSACTION statement TRANSACTION_STMT. */
5717 static inline gimple_seq
5718 gimple_transaction_body (gtransaction *transaction_stmt)
5720 return *gimple_transaction_body_ptr (transaction_stmt);
5723 /* Return the label associated with a GIMPLE_TRANSACTION. */
5725 static inline tree
5726 gimple_transaction_label (const gtransaction *transaction_stmt)
5728 return transaction_stmt->label;
5731 static inline tree *
5732 gimple_transaction_label_ptr (gtransaction *transaction_stmt)
5734 return &transaction_stmt->label;
5737 /* Return the subcode associated with a GIMPLE_TRANSACTION. */
5739 static inline unsigned int
5740 gimple_transaction_subcode (const gtransaction *transaction_stmt)
5742 return transaction_stmt->subcode;
5745 /* Set BODY to be the body for the GIMPLE_TRANSACTION statement
5746 TRANSACTION_STMT. */
5748 static inline void
5749 gimple_transaction_set_body (gtransaction *transaction_stmt,
5750 gimple_seq body)
5752 transaction_stmt->body = body;
5755 /* Set the label associated with a GIMPLE_TRANSACTION. */
5757 static inline void
5758 gimple_transaction_set_label (gtransaction *transaction_stmt, tree label)
5760 transaction_stmt->label = label;
5763 /* Set the subcode associated with a GIMPLE_TRANSACTION. */
5765 static inline void
5766 gimple_transaction_set_subcode (gtransaction *transaction_stmt,
5767 unsigned int subcode)
5769 transaction_stmt->subcode = subcode;
5773 /* Return a pointer to the return value for GIMPLE_RETURN GS. */
5775 static inline tree *
5776 gimple_return_retval_ptr (greturn *gs)
5778 return &gs->op[0];
5781 /* Return the return value for GIMPLE_RETURN GS. */
5783 static inline tree
5784 gimple_return_retval (const greturn *gs)
5786 return gs->op[0];
5790 /* Set RETVAL to be the return value for GIMPLE_RETURN GS. */
5792 static inline void
5793 gimple_return_set_retval (greturn *gs, tree retval)
5795 gs->op[0] = retval;
5799 /* Return the return bounds for GIMPLE_RETURN GS. */
5801 static inline tree
5802 gimple_return_retbnd (const gimple *gs)
5804 GIMPLE_CHECK (gs, GIMPLE_RETURN);
5805 return gimple_op (gs, 1);
5809 /* Set RETVAL to be the return bounds for GIMPLE_RETURN GS. */
5811 static inline void
5812 gimple_return_set_retbnd (gimple *gs, tree retval)
5814 GIMPLE_CHECK (gs, GIMPLE_RETURN);
5815 gimple_set_op (gs, 1, retval);
5819 /* Returns true when the gimple statement STMT is any of the OMP types. */
5821 #define CASE_GIMPLE_OMP \
5822 case GIMPLE_OMP_PARALLEL: \
5823 case GIMPLE_OMP_TASK: \
5824 case GIMPLE_OMP_FOR: \
5825 case GIMPLE_OMP_SECTIONS: \
5826 case GIMPLE_OMP_SECTIONS_SWITCH: \
5827 case GIMPLE_OMP_SINGLE: \
5828 case GIMPLE_OMP_TARGET: \
5829 case GIMPLE_OMP_TEAMS: \
5830 case GIMPLE_OMP_SECTION: \
5831 case GIMPLE_OMP_MASTER: \
5832 case GIMPLE_OMP_TASKGROUP: \
5833 case GIMPLE_OMP_ORDERED: \
5834 case GIMPLE_OMP_CRITICAL: \
5835 case GIMPLE_OMP_RETURN: \
5836 case GIMPLE_OMP_ATOMIC_LOAD: \
5837 case GIMPLE_OMP_ATOMIC_STORE: \
5838 case GIMPLE_OMP_CONTINUE
5840 static inline bool
5841 is_gimple_omp (const gimple *stmt)
5843 switch (gimple_code (stmt))
5845 CASE_GIMPLE_OMP:
5846 return true;
5847 default:
5848 return false;
5852 /* Return true if the OMP gimple statement STMT is any of the OpenACC types
5853 specifically. */
5855 static inline bool
5856 is_gimple_omp_oacc (const gimple *stmt)
5858 gcc_assert (is_gimple_omp (stmt));
5859 switch (gimple_code (stmt))
5861 case GIMPLE_OMP_FOR:
5862 switch (gimple_omp_for_kind (stmt))
5864 case GF_OMP_FOR_KIND_OACC_LOOP:
5865 return true;
5866 default:
5867 return false;
5869 case GIMPLE_OMP_TARGET:
5870 switch (gimple_omp_target_kind (stmt))
5872 case GF_OMP_TARGET_KIND_OACC_PARALLEL:
5873 case GF_OMP_TARGET_KIND_OACC_KERNELS:
5874 case GF_OMP_TARGET_KIND_OACC_DATA:
5875 case GF_OMP_TARGET_KIND_OACC_UPDATE:
5876 case GF_OMP_TARGET_KIND_OACC_ENTER_EXIT_DATA:
5877 return true;
5878 default:
5879 return false;
5881 default:
5882 return false;
5887 /* Return true if the OMP gimple statement STMT is offloaded. */
5889 static inline bool
5890 is_gimple_omp_offloaded (const gimple *stmt)
5892 gcc_assert (is_gimple_omp (stmt));
5893 switch (gimple_code (stmt))
5895 case GIMPLE_OMP_TARGET:
5896 switch (gimple_omp_target_kind (stmt))
5898 case GF_OMP_TARGET_KIND_REGION:
5899 case GF_OMP_TARGET_KIND_OACC_PARALLEL:
5900 case GF_OMP_TARGET_KIND_OACC_KERNELS:
5901 return true;
5902 default:
5903 return false;
5905 default:
5906 return false;
5911 /* Returns TRUE if statement G is a GIMPLE_NOP. */
5913 static inline bool
5914 gimple_nop_p (const gimple *g)
5916 return gimple_code (g) == GIMPLE_NOP;
5920 /* Return true if GS is a GIMPLE_RESX. */
5922 static inline bool
5923 is_gimple_resx (const gimple *gs)
5925 return gimple_code (gs) == GIMPLE_RESX;
5928 /* Return the type of the main expression computed by STMT. Return
5929 void_type_node if the statement computes nothing. */
5931 static inline tree
5932 gimple_expr_type (const gimple *stmt)
5934 enum gimple_code code = gimple_code (stmt);
5935 /* In general we want to pass out a type that can be substituted
5936 for both the RHS and the LHS types if there is a possibly
5937 useless conversion involved. That means returning the
5938 original RHS type as far as we can reconstruct it. */
5939 if (code == GIMPLE_CALL)
5941 const gcall *call_stmt = as_a <const gcall *> (stmt);
5942 if (gimple_call_internal_p (call_stmt)
5943 && gimple_call_internal_fn (call_stmt) == IFN_MASK_STORE)
5944 return TREE_TYPE (gimple_call_arg (call_stmt, 3));
5945 else
5946 return gimple_call_return_type (call_stmt);
5948 else if (code == GIMPLE_ASSIGN)
5950 if (gimple_assign_rhs_code (stmt) == POINTER_PLUS_EXPR)
5951 return TREE_TYPE (gimple_assign_rhs1 (stmt));
5952 else
5953 /* As fallback use the type of the LHS. */
5954 return TREE_TYPE (gimple_get_lhs (stmt));
5956 else if (code == GIMPLE_COND)
5957 return boolean_type_node;
5958 else
5959 return void_type_node;
5962 /* Enum and arrays used for allocation stats. Keep in sync with
5963 gimple.c:gimple_alloc_kind_names. */
5964 enum gimple_alloc_kind
5966 gimple_alloc_kind_assign, /* Assignments. */
5967 gimple_alloc_kind_phi, /* PHI nodes. */
5968 gimple_alloc_kind_cond, /* Conditionals. */
5969 gimple_alloc_kind_rest, /* Everything else. */
5970 gimple_alloc_kind_all
5973 extern int gimple_alloc_counts[];
5974 extern int gimple_alloc_sizes[];
5976 /* Return the allocation kind for a given stmt CODE. */
5977 static inline enum gimple_alloc_kind
5978 gimple_alloc_kind (enum gimple_code code)
5980 switch (code)
5982 case GIMPLE_ASSIGN:
5983 return gimple_alloc_kind_assign;
5984 case GIMPLE_PHI:
5985 return gimple_alloc_kind_phi;
5986 case GIMPLE_COND:
5987 return gimple_alloc_kind_cond;
5988 default:
5989 return gimple_alloc_kind_rest;
5993 /* Return true if a location should not be emitted for this statement
5994 by annotate_all_with_location. */
5996 static inline bool
5997 gimple_do_not_emit_location_p (gimple *g)
5999 return gimple_plf (g, GF_PLF_1);
6002 /* Mark statement G so a location will not be emitted by
6003 annotate_one_with_location. */
6005 static inline void
6006 gimple_set_do_not_emit_location (gimple *g)
6008 /* The PLF flags are initialized to 0 when a new tuple is created,
6009 so no need to initialize it anywhere. */
6010 gimple_set_plf (g, GF_PLF_1, true);
6014 /* Macros for showing usage statistics. */
6015 #define SCALE(x) ((unsigned long) ((x) < 1024*10 \
6016 ? (x) \
6017 : ((x) < 1024*1024*10 \
6018 ? (x) / 1024 \
6019 : (x) / (1024*1024))))
6021 #define LABEL(x) ((x) < 1024*10 ? 'b' : ((x) < 1024*1024*10 ? 'k' : 'M'))
6023 #endif /* GCC_GIMPLE_H */