[RTL-ifcvt] PR rtl-optimization/68506: Fix emitting order of insns in IF-THEN-JOIN...
[official-gcc.git] / gcc / gimple.h
blob6eb22de1e5e42abba5b2cae14e4c69efab418522
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_TASK_TASKLOOP = 1 << 0,
150 GF_OMP_FOR_KIND_MASK = (1 << 4) - 1,
151 GF_OMP_FOR_KIND_FOR = 0,
152 GF_OMP_FOR_KIND_DISTRIBUTE = 1,
153 GF_OMP_FOR_KIND_TASKLOOP = 2,
154 GF_OMP_FOR_KIND_CILKFOR = 3,
155 GF_OMP_FOR_KIND_OACC_LOOP = 4,
156 /* Flag for SIMD variants of OMP_FOR kinds. */
157 GF_OMP_FOR_SIMD = 1 << 3,
158 GF_OMP_FOR_KIND_SIMD = GF_OMP_FOR_SIMD | 0,
159 GF_OMP_FOR_KIND_CILKSIMD = GF_OMP_FOR_SIMD | 1,
160 GF_OMP_FOR_COMBINED = 1 << 4,
161 GF_OMP_FOR_COMBINED_INTO = 1 << 5,
162 GF_OMP_TARGET_KIND_MASK = (1 << 4) - 1,
163 GF_OMP_TARGET_KIND_REGION = 0,
164 GF_OMP_TARGET_KIND_DATA = 1,
165 GF_OMP_TARGET_KIND_UPDATE = 2,
166 GF_OMP_TARGET_KIND_ENTER_DATA = 3,
167 GF_OMP_TARGET_KIND_EXIT_DATA = 4,
168 GF_OMP_TARGET_KIND_OACC_PARALLEL = 5,
169 GF_OMP_TARGET_KIND_OACC_KERNELS = 6,
170 GF_OMP_TARGET_KIND_OACC_DATA = 7,
171 GF_OMP_TARGET_KIND_OACC_UPDATE = 8,
172 GF_OMP_TARGET_KIND_OACC_ENTER_EXIT_DATA = 9,
173 GF_OMP_TARGET_KIND_OACC_DECLARE = 10,
175 /* True on an GIMPLE_OMP_RETURN statement if the return does not require
176 a thread synchronization via some sort of barrier. The exact barrier
177 that would otherwise be emitted is dependent on the OMP statement with
178 which this return is associated. */
179 GF_OMP_RETURN_NOWAIT = 1 << 0,
181 GF_OMP_SECTION_LAST = 1 << 0,
182 GF_OMP_ATOMIC_NEED_VALUE = 1 << 0,
183 GF_OMP_ATOMIC_SEQ_CST = 1 << 1,
184 GF_PREDICT_TAKEN = 1 << 15
187 /* Currently, there are only two types of gimple debug stmt. Others are
188 envisioned, for example, to enable the generation of is_stmt notes
189 in line number information, to mark sequence points, etc. This
190 subcode is to be used to tell them apart. */
191 enum gimple_debug_subcode {
192 GIMPLE_DEBUG_BIND = 0,
193 GIMPLE_DEBUG_SOURCE_BIND = 1
196 /* Masks for selecting a pass local flag (PLF) to work on. These
197 masks are used by gimple_set_plf and gimple_plf. */
198 enum plf_mask {
199 GF_PLF_1 = 1 << 0,
200 GF_PLF_2 = 1 << 1
203 /* Data structure definitions for GIMPLE tuples. NOTE: word markers
204 are for 64 bit hosts. */
206 struct GTY((desc ("gimple_statement_structure (&%h)"), tag ("GSS_BASE"),
207 chain_next ("%h.next"), variable_size))
208 gimple
210 /* [ WORD 1 ]
211 Main identifying code for a tuple. */
212 ENUM_BITFIELD(gimple_code) code : 8;
214 /* Nonzero if a warning should not be emitted on this tuple. */
215 unsigned int no_warning : 1;
217 /* Nonzero if this tuple has been visited. Passes are responsible
218 for clearing this bit before using it. */
219 unsigned int visited : 1;
221 /* Nonzero if this tuple represents a non-temporal move. */
222 unsigned int nontemporal_move : 1;
224 /* Pass local flags. These flags are free for any pass to use as
225 they see fit. Passes should not assume that these flags contain
226 any useful value when the pass starts. Any initial state that
227 the pass requires should be set on entry to the pass. See
228 gimple_set_plf and gimple_plf for usage. */
229 unsigned int plf : 2;
231 /* Nonzero if this statement has been modified and needs to have its
232 operands rescanned. */
233 unsigned modified : 1;
235 /* Nonzero if this statement contains volatile operands. */
236 unsigned has_volatile_ops : 1;
238 /* Padding to get subcode to 16 bit alignment. */
239 unsigned pad : 1;
241 /* The SUBCODE field can be used for tuple-specific flags for tuples
242 that do not require subcodes. Note that SUBCODE should be at
243 least as wide as tree codes, as several tuples store tree codes
244 in there. */
245 unsigned int subcode : 16;
247 /* UID of this statement. This is used by passes that want to
248 assign IDs to statements. It must be assigned and used by each
249 pass. By default it should be assumed to contain garbage. */
250 unsigned uid;
252 /* [ WORD 2 ]
253 Locus information for debug info. */
254 location_t location;
256 /* Number of operands in this tuple. */
257 unsigned num_ops;
259 /* [ WORD 3 ]
260 Basic block holding this statement. */
261 basic_block bb;
263 /* [ WORD 4-5 ]
264 Linked lists of gimple statements. The next pointers form
265 a NULL terminated list, the prev pointers are a cyclic list.
266 A gimple statement is hence also a double-ended list of
267 statements, with the pointer itself being the first element,
268 and the prev pointer being the last. */
269 gimple *next;
270 gimple *GTY((skip)) prev;
274 /* Base structure for tuples with operands. */
276 /* This gimple subclass has no tag value. */
277 struct GTY(())
278 gimple_statement_with_ops_base : public gimple
280 /* [ WORD 1-6 ] : base class */
282 /* [ WORD 7 ]
283 SSA operand vectors. NOTE: It should be possible to
284 amalgamate these vectors with the operand vector OP. However,
285 the SSA operand vectors are organized differently and contain
286 more information (like immediate use chaining). */
287 struct use_optype_d GTY((skip (""))) *use_ops;
291 /* Statements that take register operands. */
293 struct GTY((tag("GSS_WITH_OPS")))
294 gimple_statement_with_ops : public gimple_statement_with_ops_base
296 /* [ WORD 1-7 ] : base class */
298 /* [ WORD 8 ]
299 Operand vector. NOTE! This must always be the last field
300 of this structure. In particular, this means that this
301 structure cannot be embedded inside another one. */
302 tree GTY((length ("%h.num_ops"))) op[1];
306 /* Base for statements that take both memory and register operands. */
308 struct GTY((tag("GSS_WITH_MEM_OPS_BASE")))
309 gimple_statement_with_memory_ops_base : public gimple_statement_with_ops_base
311 /* [ WORD 1-7 ] : base class */
313 /* [ WORD 8-9 ]
314 Virtual operands for this statement. The GC will pick them
315 up via the ssa_names array. */
316 tree GTY((skip (""))) vdef;
317 tree GTY((skip (""))) vuse;
321 /* Statements that take both memory and register operands. */
323 struct GTY((tag("GSS_WITH_MEM_OPS")))
324 gimple_statement_with_memory_ops :
325 public gimple_statement_with_memory_ops_base
327 /* [ WORD 1-9 ] : base class */
329 /* [ WORD 10 ]
330 Operand vector. NOTE! This must always be the last field
331 of this structure. In particular, this means that this
332 structure cannot be embedded inside another one. */
333 tree GTY((length ("%h.num_ops"))) op[1];
337 /* Call statements that take both memory and register operands. */
339 struct GTY((tag("GSS_CALL")))
340 gcall : public gimple_statement_with_memory_ops_base
342 /* [ WORD 1-9 ] : base class */
344 /* [ WORD 10-13 ] */
345 struct pt_solution call_used;
346 struct pt_solution call_clobbered;
348 /* [ WORD 14 ] */
349 union GTY ((desc ("%1.subcode & GF_CALL_INTERNAL"))) {
350 tree GTY ((tag ("0"))) fntype;
351 enum internal_fn GTY ((tag ("GF_CALL_INTERNAL"))) internal_fn;
352 } u;
354 /* [ WORD 15 ]
355 Operand vector. NOTE! This must always be the last field
356 of this structure. In particular, this means that this
357 structure cannot be embedded inside another one. */
358 tree GTY((length ("%h.num_ops"))) op[1];
360 static const enum gimple_code code_ = GIMPLE_CALL;
364 /* OMP statements. */
366 struct GTY((tag("GSS_OMP")))
367 gimple_statement_omp : public gimple
369 /* [ WORD 1-6 ] : base class */
371 /* [ WORD 7 ] */
372 gimple_seq body;
376 /* GIMPLE_BIND */
378 struct GTY((tag("GSS_BIND")))
379 gbind : public gimple
381 /* [ WORD 1-6 ] : base class */
383 /* [ WORD 7 ]
384 Variables declared in this scope. */
385 tree vars;
387 /* [ WORD 8 ]
388 This is different than the BLOCK field in gimple,
389 which is analogous to TREE_BLOCK (i.e., the lexical block holding
390 this statement). This field is the equivalent of BIND_EXPR_BLOCK
391 in tree land (i.e., the lexical scope defined by this bind). See
392 gimple-low.c. */
393 tree block;
395 /* [ WORD 9 ] */
396 gimple_seq body;
400 /* GIMPLE_CATCH */
402 struct GTY((tag("GSS_CATCH")))
403 gcatch : public gimple
405 /* [ WORD 1-6 ] : base class */
407 /* [ WORD 7 ] */
408 tree types;
410 /* [ WORD 8 ] */
411 gimple_seq handler;
415 /* GIMPLE_EH_FILTER */
417 struct GTY((tag("GSS_EH_FILTER")))
418 geh_filter : public gimple
420 /* [ WORD 1-6 ] : base class */
422 /* [ WORD 7 ]
423 Filter types. */
424 tree types;
426 /* [ WORD 8 ]
427 Failure actions. */
428 gimple_seq failure;
431 /* GIMPLE_EH_ELSE */
433 struct GTY((tag("GSS_EH_ELSE")))
434 geh_else : public gimple
436 /* [ WORD 1-6 ] : base class */
438 /* [ WORD 7,8 ] */
439 gimple_seq n_body, e_body;
442 /* GIMPLE_EH_MUST_NOT_THROW */
444 struct GTY((tag("GSS_EH_MNT")))
445 geh_mnt : public gimple
447 /* [ WORD 1-6 ] : base class */
449 /* [ WORD 7 ] Abort function decl. */
450 tree fndecl;
453 /* GIMPLE_PHI */
455 struct GTY((tag("GSS_PHI")))
456 gphi : public gimple
458 /* [ WORD 1-6 ] : base class */
460 /* [ WORD 7 ] */
461 unsigned capacity;
462 unsigned nargs;
464 /* [ WORD 8 ] */
465 tree result;
467 /* [ WORD 9 ] */
468 struct phi_arg_d GTY ((length ("%h.nargs"))) args[1];
472 /* GIMPLE_RESX, GIMPLE_EH_DISPATCH */
474 struct GTY((tag("GSS_EH_CTRL")))
475 gimple_statement_eh_ctrl : public gimple
477 /* [ WORD 1-6 ] : base class */
479 /* [ WORD 7 ]
480 Exception region number. */
481 int region;
484 struct GTY((tag("GSS_EH_CTRL")))
485 gresx : public gimple_statement_eh_ctrl
487 /* No extra fields; adds invariant:
488 stmt->code == GIMPLE_RESX. */
491 struct GTY((tag("GSS_EH_CTRL")))
492 geh_dispatch : public gimple_statement_eh_ctrl
494 /* No extra fields; adds invariant:
495 stmt->code == GIMPLE_EH_DISPATH. */
499 /* GIMPLE_TRY */
501 struct GTY((tag("GSS_TRY")))
502 gtry : public gimple
504 /* [ WORD 1-6 ] : base class */
506 /* [ WORD 7 ]
507 Expression to evaluate. */
508 gimple_seq eval;
510 /* [ WORD 8 ]
511 Cleanup expression. */
512 gimple_seq cleanup;
515 /* Kind of GIMPLE_TRY statements. */
516 enum gimple_try_flags
518 /* A try/catch. */
519 GIMPLE_TRY_CATCH = 1 << 0,
521 /* A try/finally. */
522 GIMPLE_TRY_FINALLY = 1 << 1,
523 GIMPLE_TRY_KIND = GIMPLE_TRY_CATCH | GIMPLE_TRY_FINALLY,
525 /* Analogous to TRY_CATCH_IS_CLEANUP. */
526 GIMPLE_TRY_CATCH_IS_CLEANUP = 1 << 2
529 /* GIMPLE_WITH_CLEANUP_EXPR */
531 struct GTY((tag("GSS_WCE")))
532 gimple_statement_wce : public gimple
534 /* [ WORD 1-6 ] : base class */
536 /* Subcode: CLEANUP_EH_ONLY. True if the cleanup should only be
537 executed if an exception is thrown, not on normal exit of its
538 scope. This flag is analogous to the CLEANUP_EH_ONLY flag
539 in TARGET_EXPRs. */
541 /* [ WORD 7 ]
542 Cleanup expression. */
543 gimple_seq cleanup;
547 /* GIMPLE_ASM */
549 struct GTY((tag("GSS_ASM")))
550 gasm : public gimple_statement_with_memory_ops_base
552 /* [ WORD 1-9 ] : base class */
554 /* [ WORD 10 ]
555 __asm__ statement. */
556 const char *string;
558 /* [ WORD 11 ]
559 Number of inputs, outputs, clobbers, labels. */
560 unsigned char ni;
561 unsigned char no;
562 unsigned char nc;
563 unsigned char nl;
565 /* [ WORD 12 ]
566 Operand vector. NOTE! This must always be the last field
567 of this structure. In particular, this means that this
568 structure cannot be embedded inside another one. */
569 tree GTY((length ("%h.num_ops"))) op[1];
572 /* GIMPLE_OMP_CRITICAL */
574 struct GTY((tag("GSS_OMP_CRITICAL")))
575 gomp_critical : public gimple_statement_omp
577 /* [ WORD 1-7 ] : base class */
579 /* [ WORD 8 ] */
580 tree clauses;
582 /* [ WORD 9 ]
583 Critical section name. */
584 tree name;
588 struct GTY(()) gimple_omp_for_iter {
589 /* Condition code. */
590 enum tree_code cond;
592 /* Index variable. */
593 tree index;
595 /* Initial value. */
596 tree initial;
598 /* Final value. */
599 tree final;
601 /* Increment. */
602 tree incr;
605 /* GIMPLE_OMP_FOR */
607 struct GTY((tag("GSS_OMP_FOR")))
608 gomp_for : public gimple_statement_omp
610 /* [ WORD 1-7 ] : base class */
612 /* [ WORD 8 ] */
613 tree clauses;
615 /* [ WORD 9 ]
616 Number of elements in iter array. */
617 size_t collapse;
619 /* [ WORD 10 ] */
620 struct gimple_omp_for_iter * GTY((length ("%h.collapse"))) iter;
622 /* [ WORD 11 ]
623 Pre-body evaluated before the loop body begins. */
624 gimple_seq pre_body;
628 /* GIMPLE_OMP_PARALLEL, GIMPLE_OMP_TARGET, GIMPLE_OMP_TASK */
630 struct GTY((tag("GSS_OMP_PARALLEL_LAYOUT")))
631 gimple_statement_omp_parallel_layout : public gimple_statement_omp
633 /* [ WORD 1-7 ] : base class */
635 /* [ WORD 8 ]
636 Clauses. */
637 tree clauses;
639 /* [ WORD 9 ]
640 Child function holding the body of the parallel region. */
641 tree child_fn;
643 /* [ WORD 10 ]
644 Shared data argument. */
645 tree data_arg;
648 /* GIMPLE_OMP_PARALLEL or GIMPLE_TASK */
649 struct GTY((tag("GSS_OMP_PARALLEL_LAYOUT")))
650 gimple_statement_omp_taskreg : public gimple_statement_omp_parallel_layout
652 /* No extra fields; adds invariant:
653 stmt->code == GIMPLE_OMP_PARALLEL
654 || stmt->code == GIMPLE_OMP_TASK. */
657 /* GIMPLE_OMP_PARALLEL */
658 struct GTY((tag("GSS_OMP_PARALLEL_LAYOUT")))
659 gomp_parallel : public gimple_statement_omp_taskreg
661 /* No extra fields; adds invariant:
662 stmt->code == GIMPLE_OMP_PARALLEL. */
665 /* GIMPLE_OMP_TARGET */
666 struct GTY((tag("GSS_OMP_PARALLEL_LAYOUT")))
667 gomp_target : public gimple_statement_omp_parallel_layout
669 /* No extra fields; adds invariant:
670 stmt->code == GIMPLE_OMP_TARGET. */
673 /* GIMPLE_OMP_TASK */
675 struct GTY((tag("GSS_OMP_TASK")))
676 gomp_task : public gimple_statement_omp_taskreg
678 /* [ WORD 1-10 ] : base class */
680 /* [ WORD 11 ]
681 Child function holding firstprivate initialization if needed. */
682 tree copy_fn;
684 /* [ WORD 12-13 ]
685 Size and alignment in bytes of the argument data block. */
686 tree arg_size;
687 tree arg_align;
691 /* GIMPLE_OMP_SECTION */
692 /* Uses struct gimple_statement_omp. */
695 /* GIMPLE_OMP_SECTIONS */
697 struct GTY((tag("GSS_OMP_SECTIONS")))
698 gomp_sections : public gimple_statement_omp
700 /* [ WORD 1-7 ] : base class */
702 /* [ WORD 8 ] */
703 tree clauses;
705 /* [ WORD 9 ]
706 The control variable used for deciding which of the sections to
707 execute. */
708 tree control;
711 /* GIMPLE_OMP_CONTINUE.
713 Note: This does not inherit from gimple_statement_omp, because we
714 do not need the body field. */
716 struct GTY((tag("GSS_OMP_CONTINUE")))
717 gomp_continue : public gimple
719 /* [ WORD 1-6 ] : base class */
721 /* [ WORD 7 ] */
722 tree control_def;
724 /* [ WORD 8 ] */
725 tree control_use;
728 /* GIMPLE_OMP_SINGLE, GIMPLE_OMP_TEAMS, GIMPLE_OMP_ORDERED */
730 struct GTY((tag("GSS_OMP_SINGLE_LAYOUT")))
731 gimple_statement_omp_single_layout : public gimple_statement_omp
733 /* [ WORD 1-7 ] : base class */
735 /* [ WORD 7 ] */
736 tree clauses;
739 struct GTY((tag("GSS_OMP_SINGLE_LAYOUT")))
740 gomp_single : public gimple_statement_omp_single_layout
742 /* No extra fields; adds invariant:
743 stmt->code == GIMPLE_OMP_SINGLE. */
746 struct GTY((tag("GSS_OMP_SINGLE_LAYOUT")))
747 gomp_teams : public gimple_statement_omp_single_layout
749 /* No extra fields; adds invariant:
750 stmt->code == GIMPLE_OMP_TEAMS. */
753 struct GTY((tag("GSS_OMP_SINGLE_LAYOUT")))
754 gomp_ordered : public gimple_statement_omp_single_layout
756 /* No extra fields; adds invariant:
757 stmt->code == GIMPLE_OMP_ORDERED. */
761 /* GIMPLE_OMP_ATOMIC_LOAD.
762 Note: This is based on gimple, not g_s_omp, because g_s_omp
763 contains a sequence, which we don't need here. */
765 struct GTY((tag("GSS_OMP_ATOMIC_LOAD")))
766 gomp_atomic_load : public gimple
768 /* [ WORD 1-6 ] : base class */
770 /* [ WORD 7-8 ] */
771 tree rhs, lhs;
774 /* GIMPLE_OMP_ATOMIC_STORE.
775 See note on GIMPLE_OMP_ATOMIC_LOAD. */
777 struct GTY((tag("GSS_OMP_ATOMIC_STORE_LAYOUT")))
778 gimple_statement_omp_atomic_store_layout : public gimple
780 /* [ WORD 1-6 ] : base class */
782 /* [ WORD 7 ] */
783 tree val;
786 struct GTY((tag("GSS_OMP_ATOMIC_STORE_LAYOUT")))
787 gomp_atomic_store :
788 public gimple_statement_omp_atomic_store_layout
790 /* No extra fields; adds invariant:
791 stmt->code == GIMPLE_OMP_ATOMIC_STORE. */
794 struct GTY((tag("GSS_OMP_ATOMIC_STORE_LAYOUT")))
795 gimple_statement_omp_return :
796 public gimple_statement_omp_atomic_store_layout
798 /* No extra fields; adds invariant:
799 stmt->code == GIMPLE_OMP_RETURN. */
802 /* GIMPLE_TRANSACTION. */
804 /* Bits to be stored in the GIMPLE_TRANSACTION subcode. */
806 /* The __transaction_atomic was declared [[outer]] or it is
807 __transaction_relaxed. */
808 #define GTMA_IS_OUTER (1u << 0)
809 #define GTMA_IS_RELAXED (1u << 1)
810 #define GTMA_DECLARATION_MASK (GTMA_IS_OUTER | GTMA_IS_RELAXED)
812 /* The transaction is seen to not have an abort. */
813 #define GTMA_HAVE_ABORT (1u << 2)
814 /* The transaction is seen to have loads or stores. */
815 #define GTMA_HAVE_LOAD (1u << 3)
816 #define GTMA_HAVE_STORE (1u << 4)
817 /* The transaction MAY enter serial irrevocable mode in its dynamic scope. */
818 #define GTMA_MAY_ENTER_IRREVOCABLE (1u << 5)
819 /* The transaction WILL enter serial irrevocable mode.
820 An irrevocable block post-dominates the entire transaction, such
821 that all invocations of the transaction will go serial-irrevocable.
822 In such case, we don't bother instrumenting the transaction, and
823 tell the runtime that it should begin the transaction in
824 serial-irrevocable mode. */
825 #define GTMA_DOES_GO_IRREVOCABLE (1u << 6)
826 /* The transaction contains no instrumentation code whatsover, most
827 likely because it is guaranteed to go irrevocable upon entry. */
828 #define GTMA_HAS_NO_INSTRUMENTATION (1u << 7)
830 struct GTY((tag("GSS_TRANSACTION")))
831 gtransaction : public gimple_statement_with_memory_ops_base
833 /* [ WORD 1-9 ] : base class */
835 /* [ WORD 10 ] */
836 gimple_seq body;
838 /* [ WORD 11 ] */
839 tree label;
842 #define DEFGSSTRUCT(SYM, STRUCT, HAS_TREE_OP) SYM,
843 enum gimple_statement_structure_enum {
844 #include "gsstruct.def"
845 LAST_GSS_ENUM
847 #undef DEFGSSTRUCT
849 /* A statement with the invariant that
850 stmt->code == GIMPLE_COND
851 i.e. a conditional jump statement. */
853 struct GTY((tag("GSS_WITH_OPS")))
854 gcond : public gimple_statement_with_ops
856 /* no additional fields; this uses the layout for GSS_WITH_OPS. */
857 static const enum gimple_code code_ = GIMPLE_COND;
860 /* A statement with the invariant that
861 stmt->code == GIMPLE_DEBUG
862 i.e. a debug statement. */
864 struct GTY((tag("GSS_WITH_OPS")))
865 gdebug : public gimple_statement_with_ops
867 /* no additional fields; this uses the layout for GSS_WITH_OPS. */
870 /* A statement with the invariant that
871 stmt->code == GIMPLE_GOTO
872 i.e. a goto statement. */
874 struct GTY((tag("GSS_WITH_OPS")))
875 ggoto : public gimple_statement_with_ops
877 /* no additional fields; this uses the layout for GSS_WITH_OPS. */
880 /* A statement with the invariant that
881 stmt->code == GIMPLE_LABEL
882 i.e. a label statement. */
884 struct GTY((tag("GSS_WITH_OPS")))
885 glabel : public gimple_statement_with_ops
887 /* no additional fields; this uses the layout for GSS_WITH_OPS. */
890 /* A statement with the invariant that
891 stmt->code == GIMPLE_SWITCH
892 i.e. a switch statement. */
894 struct GTY((tag("GSS_WITH_OPS")))
895 gswitch : public gimple_statement_with_ops
897 /* no additional fields; this uses the layout for GSS_WITH_OPS. */
900 /* A statement with the invariant that
901 stmt->code == GIMPLE_ASSIGN
902 i.e. an assignment statement. */
904 struct GTY((tag("GSS_WITH_MEM_OPS")))
905 gassign : public gimple_statement_with_memory_ops
907 static const enum gimple_code code_ = GIMPLE_ASSIGN;
908 /* no additional fields; this uses the layout for GSS_WITH_MEM_OPS. */
911 /* A statement with the invariant that
912 stmt->code == GIMPLE_RETURN
913 i.e. a return statement. */
915 struct GTY((tag("GSS_WITH_MEM_OPS")))
916 greturn : public gimple_statement_with_memory_ops
918 /* no additional fields; this uses the layout for GSS_WITH_MEM_OPS. */
921 template <>
922 template <>
923 inline bool
924 is_a_helper <gasm *>::test (gimple *gs)
926 return gs->code == GIMPLE_ASM;
929 template <>
930 template <>
931 inline bool
932 is_a_helper <gassign *>::test (gimple *gs)
934 return gs->code == GIMPLE_ASSIGN;
937 template <>
938 template <>
939 inline bool
940 is_a_helper <const gassign *>::test (const gimple *gs)
942 return gs->code == GIMPLE_ASSIGN;
945 template <>
946 template <>
947 inline bool
948 is_a_helper <gbind *>::test (gimple *gs)
950 return gs->code == GIMPLE_BIND;
953 template <>
954 template <>
955 inline bool
956 is_a_helper <gcall *>::test (gimple *gs)
958 return gs->code == GIMPLE_CALL;
961 template <>
962 template <>
963 inline bool
964 is_a_helper <gcatch *>::test (gimple *gs)
966 return gs->code == GIMPLE_CATCH;
969 template <>
970 template <>
971 inline bool
972 is_a_helper <gcond *>::test (gimple *gs)
974 return gs->code == GIMPLE_COND;
977 template <>
978 template <>
979 inline bool
980 is_a_helper <const gcond *>::test (const gimple *gs)
982 return gs->code == GIMPLE_COND;
985 template <>
986 template <>
987 inline bool
988 is_a_helper <gdebug *>::test (gimple *gs)
990 return gs->code == GIMPLE_DEBUG;
993 template <>
994 template <>
995 inline bool
996 is_a_helper <ggoto *>::test (gimple *gs)
998 return gs->code == GIMPLE_GOTO;
1001 template <>
1002 template <>
1003 inline bool
1004 is_a_helper <glabel *>::test (gimple *gs)
1006 return gs->code == GIMPLE_LABEL;
1009 template <>
1010 template <>
1011 inline bool
1012 is_a_helper <gresx *>::test (gimple *gs)
1014 return gs->code == GIMPLE_RESX;
1017 template <>
1018 template <>
1019 inline bool
1020 is_a_helper <geh_dispatch *>::test (gimple *gs)
1022 return gs->code == GIMPLE_EH_DISPATCH;
1025 template <>
1026 template <>
1027 inline bool
1028 is_a_helper <geh_else *>::test (gimple *gs)
1030 return gs->code == GIMPLE_EH_ELSE;
1033 template <>
1034 template <>
1035 inline bool
1036 is_a_helper <geh_filter *>::test (gimple *gs)
1038 return gs->code == GIMPLE_EH_FILTER;
1041 template <>
1042 template <>
1043 inline bool
1044 is_a_helper <geh_mnt *>::test (gimple *gs)
1046 return gs->code == GIMPLE_EH_MUST_NOT_THROW;
1049 template <>
1050 template <>
1051 inline bool
1052 is_a_helper <gomp_atomic_load *>::test (gimple *gs)
1054 return gs->code == GIMPLE_OMP_ATOMIC_LOAD;
1057 template <>
1058 template <>
1059 inline bool
1060 is_a_helper <gomp_atomic_store *>::test (gimple *gs)
1062 return gs->code == GIMPLE_OMP_ATOMIC_STORE;
1065 template <>
1066 template <>
1067 inline bool
1068 is_a_helper <gimple_statement_omp_return *>::test (gimple *gs)
1070 return gs->code == GIMPLE_OMP_RETURN;
1073 template <>
1074 template <>
1075 inline bool
1076 is_a_helper <gomp_continue *>::test (gimple *gs)
1078 return gs->code == GIMPLE_OMP_CONTINUE;
1081 template <>
1082 template <>
1083 inline bool
1084 is_a_helper <gomp_critical *>::test (gimple *gs)
1086 return gs->code == GIMPLE_OMP_CRITICAL;
1089 template <>
1090 template <>
1091 inline bool
1092 is_a_helper <gomp_ordered *>::test (gimple *gs)
1094 return gs->code == GIMPLE_OMP_ORDERED;
1097 template <>
1098 template <>
1099 inline bool
1100 is_a_helper <gomp_for *>::test (gimple *gs)
1102 return gs->code == GIMPLE_OMP_FOR;
1105 template <>
1106 template <>
1107 inline bool
1108 is_a_helper <gimple_statement_omp_taskreg *>::test (gimple *gs)
1110 return gs->code == GIMPLE_OMP_PARALLEL || gs->code == GIMPLE_OMP_TASK;
1113 template <>
1114 template <>
1115 inline bool
1116 is_a_helper <gomp_parallel *>::test (gimple *gs)
1118 return gs->code == GIMPLE_OMP_PARALLEL;
1121 template <>
1122 template <>
1123 inline bool
1124 is_a_helper <gomp_target *>::test (gimple *gs)
1126 return gs->code == GIMPLE_OMP_TARGET;
1129 template <>
1130 template <>
1131 inline bool
1132 is_a_helper <gomp_sections *>::test (gimple *gs)
1134 return gs->code == GIMPLE_OMP_SECTIONS;
1137 template <>
1138 template <>
1139 inline bool
1140 is_a_helper <gomp_single *>::test (gimple *gs)
1142 return gs->code == GIMPLE_OMP_SINGLE;
1145 template <>
1146 template <>
1147 inline bool
1148 is_a_helper <gomp_teams *>::test (gimple *gs)
1150 return gs->code == GIMPLE_OMP_TEAMS;
1153 template <>
1154 template <>
1155 inline bool
1156 is_a_helper <gomp_task *>::test (gimple *gs)
1158 return gs->code == GIMPLE_OMP_TASK;
1161 template <>
1162 template <>
1163 inline bool
1164 is_a_helper <gphi *>::test (gimple *gs)
1166 return gs->code == GIMPLE_PHI;
1169 template <>
1170 template <>
1171 inline bool
1172 is_a_helper <greturn *>::test (gimple *gs)
1174 return gs->code == GIMPLE_RETURN;
1177 template <>
1178 template <>
1179 inline bool
1180 is_a_helper <gswitch *>::test (gimple *gs)
1182 return gs->code == GIMPLE_SWITCH;
1185 template <>
1186 template <>
1187 inline bool
1188 is_a_helper <gtransaction *>::test (gimple *gs)
1190 return gs->code == GIMPLE_TRANSACTION;
1193 template <>
1194 template <>
1195 inline bool
1196 is_a_helper <gtry *>::test (gimple *gs)
1198 return gs->code == GIMPLE_TRY;
1201 template <>
1202 template <>
1203 inline bool
1204 is_a_helper <gimple_statement_wce *>::test (gimple *gs)
1206 return gs->code == GIMPLE_WITH_CLEANUP_EXPR;
1209 template <>
1210 template <>
1211 inline bool
1212 is_a_helper <const gasm *>::test (const gimple *gs)
1214 return gs->code == GIMPLE_ASM;
1217 template <>
1218 template <>
1219 inline bool
1220 is_a_helper <const gbind *>::test (const gimple *gs)
1222 return gs->code == GIMPLE_BIND;
1225 template <>
1226 template <>
1227 inline bool
1228 is_a_helper <const gcall *>::test (const gimple *gs)
1230 return gs->code == GIMPLE_CALL;
1233 template <>
1234 template <>
1235 inline bool
1236 is_a_helper <const gcatch *>::test (const gimple *gs)
1238 return gs->code == GIMPLE_CATCH;
1241 template <>
1242 template <>
1243 inline bool
1244 is_a_helper <const gresx *>::test (const gimple *gs)
1246 return gs->code == GIMPLE_RESX;
1249 template <>
1250 template <>
1251 inline bool
1252 is_a_helper <const geh_dispatch *>::test (const gimple *gs)
1254 return gs->code == GIMPLE_EH_DISPATCH;
1257 template <>
1258 template <>
1259 inline bool
1260 is_a_helper <const geh_filter *>::test (const gimple *gs)
1262 return gs->code == GIMPLE_EH_FILTER;
1265 template <>
1266 template <>
1267 inline bool
1268 is_a_helper <const gomp_atomic_load *>::test (const gimple *gs)
1270 return gs->code == GIMPLE_OMP_ATOMIC_LOAD;
1273 template <>
1274 template <>
1275 inline bool
1276 is_a_helper <const gomp_atomic_store *>::test (const gimple *gs)
1278 return gs->code == GIMPLE_OMP_ATOMIC_STORE;
1281 template <>
1282 template <>
1283 inline bool
1284 is_a_helper <const gimple_statement_omp_return *>::test (const gimple *gs)
1286 return gs->code == GIMPLE_OMP_RETURN;
1289 template <>
1290 template <>
1291 inline bool
1292 is_a_helper <const gomp_continue *>::test (const gimple *gs)
1294 return gs->code == GIMPLE_OMP_CONTINUE;
1297 template <>
1298 template <>
1299 inline bool
1300 is_a_helper <const gomp_critical *>::test (const gimple *gs)
1302 return gs->code == GIMPLE_OMP_CRITICAL;
1305 template <>
1306 template <>
1307 inline bool
1308 is_a_helper <const gomp_ordered *>::test (const gimple *gs)
1310 return gs->code == GIMPLE_OMP_ORDERED;
1313 template <>
1314 template <>
1315 inline bool
1316 is_a_helper <const gomp_for *>::test (const gimple *gs)
1318 return gs->code == GIMPLE_OMP_FOR;
1321 template <>
1322 template <>
1323 inline bool
1324 is_a_helper <const gimple_statement_omp_taskreg *>::test (const gimple *gs)
1326 return gs->code == GIMPLE_OMP_PARALLEL || gs->code == GIMPLE_OMP_TASK;
1329 template <>
1330 template <>
1331 inline bool
1332 is_a_helper <const gomp_parallel *>::test (const gimple *gs)
1334 return gs->code == GIMPLE_OMP_PARALLEL;
1337 template <>
1338 template <>
1339 inline bool
1340 is_a_helper <const gomp_target *>::test (const gimple *gs)
1342 return gs->code == GIMPLE_OMP_TARGET;
1345 template <>
1346 template <>
1347 inline bool
1348 is_a_helper <const gomp_sections *>::test (const gimple *gs)
1350 return gs->code == GIMPLE_OMP_SECTIONS;
1353 template <>
1354 template <>
1355 inline bool
1356 is_a_helper <const gomp_single *>::test (const gimple *gs)
1358 return gs->code == GIMPLE_OMP_SINGLE;
1361 template <>
1362 template <>
1363 inline bool
1364 is_a_helper <const gomp_teams *>::test (const gimple *gs)
1366 return gs->code == GIMPLE_OMP_TEAMS;
1369 template <>
1370 template <>
1371 inline bool
1372 is_a_helper <const gomp_task *>::test (const gimple *gs)
1374 return gs->code == GIMPLE_OMP_TASK;
1377 template <>
1378 template <>
1379 inline bool
1380 is_a_helper <const gphi *>::test (const gimple *gs)
1382 return gs->code == GIMPLE_PHI;
1385 template <>
1386 template <>
1387 inline bool
1388 is_a_helper <const gtransaction *>::test (const gimple *gs)
1390 return gs->code == GIMPLE_TRANSACTION;
1393 /* Offset in bytes to the location of the operand vector.
1394 Zero if there is no operand vector for this tuple structure. */
1395 extern size_t const gimple_ops_offset_[];
1397 /* Map GIMPLE codes to GSS codes. */
1398 extern enum gimple_statement_structure_enum const gss_for_code_[];
1400 /* This variable holds the currently expanded gimple statement for purposes
1401 of comminucating the profile info to the builtin expanders. */
1402 extern gimple *currently_expanding_gimple_stmt;
1404 #define gimple_alloc(c, n) gimple_alloc_stat (c, n MEM_STAT_INFO)
1405 gimple *gimple_alloc_stat (enum gimple_code, unsigned MEM_STAT_DECL);
1406 greturn *gimple_build_return (tree);
1407 void gimple_call_reset_alias_info (gcall *);
1408 gcall *gimple_build_call_vec (tree, vec<tree> );
1409 gcall *gimple_build_call (tree, unsigned, ...);
1410 gcall *gimple_build_call_valist (tree, unsigned, va_list);
1411 gcall *gimple_build_call_internal (enum internal_fn, unsigned, ...);
1412 gcall *gimple_build_call_internal_vec (enum internal_fn, vec<tree> );
1413 gcall *gimple_build_call_from_tree (tree);
1414 gassign *gimple_build_assign (tree, tree CXX_MEM_STAT_INFO);
1415 gassign *gimple_build_assign (tree, enum tree_code,
1416 tree, tree, tree CXX_MEM_STAT_INFO);
1417 gassign *gimple_build_assign (tree, enum tree_code,
1418 tree, tree CXX_MEM_STAT_INFO);
1419 gassign *gimple_build_assign (tree, enum tree_code, tree CXX_MEM_STAT_INFO);
1420 gcond *gimple_build_cond (enum tree_code, tree, tree, tree, tree);
1421 gcond *gimple_build_cond_from_tree (tree, tree, tree);
1422 void gimple_cond_set_condition_from_tree (gcond *, tree);
1423 glabel *gimple_build_label (tree label);
1424 ggoto *gimple_build_goto (tree dest);
1425 gimple *gimple_build_nop (void);
1426 gbind *gimple_build_bind (tree, gimple_seq, tree);
1427 gasm *gimple_build_asm_vec (const char *, vec<tree, va_gc> *,
1428 vec<tree, va_gc> *, vec<tree, va_gc> *,
1429 vec<tree, va_gc> *);
1430 gcatch *gimple_build_catch (tree, gimple_seq);
1431 geh_filter *gimple_build_eh_filter (tree, gimple_seq);
1432 geh_mnt *gimple_build_eh_must_not_throw (tree);
1433 geh_else *gimple_build_eh_else (gimple_seq, gimple_seq);
1434 gtry *gimple_build_try (gimple_seq, gimple_seq,
1435 enum gimple_try_flags);
1436 gimple *gimple_build_wce (gimple_seq);
1437 gresx *gimple_build_resx (int);
1438 gswitch *gimple_build_switch_nlabels (unsigned, tree, tree);
1439 gswitch *gimple_build_switch (tree, tree, vec<tree> );
1440 geh_dispatch *gimple_build_eh_dispatch (int);
1441 gdebug *gimple_build_debug_bind_stat (tree, tree, gimple * MEM_STAT_DECL);
1442 #define gimple_build_debug_bind(var,val,stmt) \
1443 gimple_build_debug_bind_stat ((var), (val), (stmt) MEM_STAT_INFO)
1444 gdebug *gimple_build_debug_source_bind_stat (tree, tree, gimple * MEM_STAT_DECL);
1445 #define gimple_build_debug_source_bind(var,val,stmt) \
1446 gimple_build_debug_source_bind_stat ((var), (val), (stmt) MEM_STAT_INFO)
1447 gomp_critical *gimple_build_omp_critical (gimple_seq, tree, tree);
1448 gomp_for *gimple_build_omp_for (gimple_seq, int, tree, size_t, gimple_seq);
1449 gomp_parallel *gimple_build_omp_parallel (gimple_seq, tree, tree, tree);
1450 gomp_task *gimple_build_omp_task (gimple_seq, tree, tree, tree, tree,
1451 tree, tree);
1452 gimple *gimple_build_omp_section (gimple_seq);
1453 gimple *gimple_build_omp_master (gimple_seq);
1454 gimple *gimple_build_omp_taskgroup (gimple_seq);
1455 gomp_continue *gimple_build_omp_continue (tree, tree);
1456 gomp_ordered *gimple_build_omp_ordered (gimple_seq, tree);
1457 gimple *gimple_build_omp_return (bool);
1458 gomp_sections *gimple_build_omp_sections (gimple_seq, tree);
1459 gimple *gimple_build_omp_sections_switch (void);
1460 gomp_single *gimple_build_omp_single (gimple_seq, tree);
1461 gomp_target *gimple_build_omp_target (gimple_seq, int, tree);
1462 gomp_teams *gimple_build_omp_teams (gimple_seq, tree);
1463 gomp_atomic_load *gimple_build_omp_atomic_load (tree, tree);
1464 gomp_atomic_store *gimple_build_omp_atomic_store (tree);
1465 gtransaction *gimple_build_transaction (gimple_seq, tree);
1466 extern void gimple_seq_add_stmt (gimple_seq *, gimple *);
1467 extern void gimple_seq_add_stmt_without_update (gimple_seq *, gimple *);
1468 void gimple_seq_add_seq (gimple_seq *, gimple_seq);
1469 void gimple_seq_add_seq_without_update (gimple_seq *, gimple_seq);
1470 extern void annotate_all_with_location_after (gimple_seq, gimple_stmt_iterator,
1471 location_t);
1472 extern void annotate_all_with_location (gimple_seq, location_t);
1473 bool empty_body_p (gimple_seq);
1474 gimple_seq gimple_seq_copy (gimple_seq);
1475 bool gimple_call_same_target_p (const gimple *, const gimple *);
1476 int gimple_call_flags (const gimple *);
1477 int gimple_call_arg_flags (const gcall *, unsigned);
1478 int gimple_call_return_flags (const gcall *);
1479 bool gimple_assign_copy_p (gimple *);
1480 bool gimple_assign_ssa_name_copy_p (gimple *);
1481 bool gimple_assign_unary_nop_p (gimple *);
1482 void gimple_set_bb (gimple *, basic_block);
1483 void gimple_assign_set_rhs_from_tree (gimple_stmt_iterator *, tree);
1484 void gimple_assign_set_rhs_with_ops (gimple_stmt_iterator *, enum tree_code,
1485 tree, tree, tree);
1486 tree gimple_get_lhs (const gimple *);
1487 void gimple_set_lhs (gimple *, tree);
1488 gimple *gimple_copy (gimple *);
1489 bool gimple_has_side_effects (const gimple *);
1490 bool gimple_could_trap_p_1 (gimple *, bool, bool);
1491 bool gimple_could_trap_p (gimple *);
1492 bool gimple_assign_rhs_could_trap_p (gimple *);
1493 extern void dump_gimple_statistics (void);
1494 unsigned get_gimple_rhs_num_ops (enum tree_code);
1495 extern tree canonicalize_cond_expr_cond (tree);
1496 gcall *gimple_call_copy_skip_args (gcall *, bitmap);
1497 extern bool gimple_compare_field_offset (tree, tree);
1498 extern tree gimple_unsigned_type (tree);
1499 extern tree gimple_signed_type (tree);
1500 extern alias_set_type gimple_get_alias_set (tree);
1501 extern bool gimple_ior_addresses_taken (bitmap, gimple *);
1502 extern bool gimple_builtin_call_types_compatible_p (const gimple *, tree);
1503 extern combined_fn gimple_call_combined_fn (const gimple *);
1504 extern bool gimple_call_builtin_p (const gimple *);
1505 extern bool gimple_call_builtin_p (const gimple *, enum built_in_class);
1506 extern bool gimple_call_builtin_p (const gimple *, enum built_in_function);
1507 extern bool gimple_asm_clobbers_memory_p (const gasm *);
1508 extern void dump_decl_set (FILE *, bitmap);
1509 extern bool nonfreeing_call_p (gimple *);
1510 extern bool infer_nonnull_range (gimple *, tree);
1511 extern bool infer_nonnull_range_by_dereference (gimple *, tree);
1512 extern bool infer_nonnull_range_by_attribute (gimple *, tree);
1513 extern void sort_case_labels (vec<tree>);
1514 extern void preprocess_case_label_vec_for_gimple (vec<tree>, tree, tree *);
1515 extern void gimple_seq_set_location (gimple_seq, location_t);
1516 extern void gimple_seq_discard (gimple_seq);
1517 extern void maybe_remove_unused_call_args (struct function *, gimple *);
1519 /* Formal (expression) temporary table handling: multiple occurrences of
1520 the same scalar expression are evaluated into the same temporary. */
1522 typedef struct gimple_temp_hash_elt
1524 tree val; /* Key */
1525 tree temp; /* Value */
1526 } elt_t;
1528 /* Get the number of the next statement uid to be allocated. */
1529 static inline unsigned int
1530 gimple_stmt_max_uid (struct function *fn)
1532 return fn->last_stmt_uid;
1535 /* Set the number of the next statement uid to be allocated. */
1536 static inline void
1537 set_gimple_stmt_max_uid (struct function *fn, unsigned int maxid)
1539 fn->last_stmt_uid = maxid;
1542 /* Set the number of the next statement uid to be allocated. */
1543 static inline unsigned int
1544 inc_gimple_stmt_max_uid (struct function *fn)
1546 return fn->last_stmt_uid++;
1549 /* Return the first node in GIMPLE sequence S. */
1551 static inline gimple_seq_node
1552 gimple_seq_first (gimple_seq s)
1554 return s;
1558 /* Return the first statement in GIMPLE sequence S. */
1560 static inline gimple *
1561 gimple_seq_first_stmt (gimple_seq s)
1563 gimple_seq_node n = gimple_seq_first (s);
1564 return n;
1567 /* Return the first statement in GIMPLE sequence S as a gbind *,
1568 verifying that it has code GIMPLE_BIND in a checked build. */
1570 static inline gbind *
1571 gimple_seq_first_stmt_as_a_bind (gimple_seq s)
1573 gimple_seq_node n = gimple_seq_first (s);
1574 return as_a <gbind *> (n);
1578 /* Return the last node in GIMPLE sequence S. */
1580 static inline gimple_seq_node
1581 gimple_seq_last (gimple_seq s)
1583 return s ? s->prev : NULL;
1587 /* Return the last statement in GIMPLE sequence S. */
1589 static inline gimple *
1590 gimple_seq_last_stmt (gimple_seq s)
1592 gimple_seq_node n = gimple_seq_last (s);
1593 return n;
1597 /* Set the last node in GIMPLE sequence *PS to LAST. */
1599 static inline void
1600 gimple_seq_set_last (gimple_seq *ps, gimple_seq_node last)
1602 (*ps)->prev = last;
1606 /* Set the first node in GIMPLE sequence *PS to FIRST. */
1608 static inline void
1609 gimple_seq_set_first (gimple_seq *ps, gimple_seq_node first)
1611 *ps = first;
1615 /* Return true if GIMPLE sequence S is empty. */
1617 static inline bool
1618 gimple_seq_empty_p (gimple_seq s)
1620 return s == NULL;
1623 /* Allocate a new sequence and initialize its first element with STMT. */
1625 static inline gimple_seq
1626 gimple_seq_alloc_with_stmt (gimple *stmt)
1628 gimple_seq seq = NULL;
1629 gimple_seq_add_stmt (&seq, stmt);
1630 return seq;
1634 /* Returns the sequence of statements in BB. */
1636 static inline gimple_seq
1637 bb_seq (const_basic_block bb)
1639 return (!(bb->flags & BB_RTL)) ? bb->il.gimple.seq : NULL;
1642 static inline gimple_seq *
1643 bb_seq_addr (basic_block bb)
1645 return (!(bb->flags & BB_RTL)) ? &bb->il.gimple.seq : NULL;
1648 /* Sets the sequence of statements in BB to SEQ. */
1650 static inline void
1651 set_bb_seq (basic_block bb, gimple_seq seq)
1653 gcc_checking_assert (!(bb->flags & BB_RTL));
1654 bb->il.gimple.seq = seq;
1658 /* Return the code for GIMPLE statement G. */
1660 static inline enum gimple_code
1661 gimple_code (const gimple *g)
1663 return g->code;
1667 /* Return the GSS code used by a GIMPLE code. */
1669 static inline enum gimple_statement_structure_enum
1670 gss_for_code (enum gimple_code code)
1672 gcc_gimple_checking_assert ((unsigned int)code < LAST_AND_UNUSED_GIMPLE_CODE);
1673 return gss_for_code_[code];
1677 /* Return which GSS code is used by GS. */
1679 static inline enum gimple_statement_structure_enum
1680 gimple_statement_structure (gimple *gs)
1682 return gss_for_code (gimple_code (gs));
1686 /* Return true if statement G has sub-statements. This is only true for
1687 High GIMPLE statements. */
1689 static inline bool
1690 gimple_has_substatements (gimple *g)
1692 switch (gimple_code (g))
1694 case GIMPLE_BIND:
1695 case GIMPLE_CATCH:
1696 case GIMPLE_EH_FILTER:
1697 case GIMPLE_EH_ELSE:
1698 case GIMPLE_TRY:
1699 case GIMPLE_OMP_FOR:
1700 case GIMPLE_OMP_MASTER:
1701 case GIMPLE_OMP_TASKGROUP:
1702 case GIMPLE_OMP_ORDERED:
1703 case GIMPLE_OMP_SECTION:
1704 case GIMPLE_OMP_PARALLEL:
1705 case GIMPLE_OMP_TASK:
1706 case GIMPLE_OMP_SECTIONS:
1707 case GIMPLE_OMP_SINGLE:
1708 case GIMPLE_OMP_TARGET:
1709 case GIMPLE_OMP_TEAMS:
1710 case GIMPLE_OMP_CRITICAL:
1711 case GIMPLE_WITH_CLEANUP_EXPR:
1712 case GIMPLE_TRANSACTION:
1713 return true;
1715 default:
1716 return false;
1721 /* Return the basic block holding statement G. */
1723 static inline basic_block
1724 gimple_bb (const gimple *g)
1726 return g->bb;
1730 /* Return the lexical scope block holding statement G. */
1732 static inline tree
1733 gimple_block (const gimple *g)
1735 return LOCATION_BLOCK (g->location);
1739 /* Set BLOCK to be the lexical scope block holding statement G. */
1741 static inline void
1742 gimple_set_block (gimple *g, tree block)
1744 g->location = set_block (g->location, block);
1748 /* Return location information for statement G. */
1750 static inline location_t
1751 gimple_location (const gimple *g)
1753 return g->location;
1756 /* Return location information for statement G if g is not NULL.
1757 Otherwise, UNKNOWN_LOCATION is returned. */
1759 static inline location_t
1760 gimple_location_safe (const gimple *g)
1762 return g ? gimple_location (g) : UNKNOWN_LOCATION;
1765 /* Set location information for statement G. */
1767 static inline void
1768 gimple_set_location (gimple *g, location_t location)
1770 g->location = location;
1774 /* Return true if G contains location information. */
1776 static inline bool
1777 gimple_has_location (const gimple *g)
1779 return LOCATION_LOCUS (gimple_location (g)) != UNKNOWN_LOCATION;
1783 /* Return the file name of the location of STMT. */
1785 static inline const char *
1786 gimple_filename (const gimple *stmt)
1788 return LOCATION_FILE (gimple_location (stmt));
1792 /* Return the line number of the location of STMT. */
1794 static inline int
1795 gimple_lineno (const gimple *stmt)
1797 return LOCATION_LINE (gimple_location (stmt));
1801 /* Determine whether SEQ is a singleton. */
1803 static inline bool
1804 gimple_seq_singleton_p (gimple_seq seq)
1806 return ((gimple_seq_first (seq) != NULL)
1807 && (gimple_seq_first (seq) == gimple_seq_last (seq)));
1810 /* Return true if no warnings should be emitted for statement STMT. */
1812 static inline bool
1813 gimple_no_warning_p (const gimple *stmt)
1815 return stmt->no_warning;
1818 /* Set the no_warning flag of STMT to NO_WARNING. */
1820 static inline void
1821 gimple_set_no_warning (gimple *stmt, bool no_warning)
1823 stmt->no_warning = (unsigned) no_warning;
1826 /* Set the visited status on statement STMT to VISITED_P.
1828 Please note that this 'visited' property of the gimple statement is
1829 supposed to be undefined at pass boundaries. This means that a
1830 given pass should not assume it contains any useful value when the
1831 pass starts and thus can set it to any value it sees fit.
1833 You can learn more about the visited property of the gimple
1834 statement by reading the comments of the 'visited' data member of
1835 struct gimple.
1838 static inline void
1839 gimple_set_visited (gimple *stmt, bool visited_p)
1841 stmt->visited = (unsigned) visited_p;
1845 /* Return the visited status for statement STMT.
1847 Please note that this 'visited' property of the gimple statement is
1848 supposed to be undefined at pass boundaries. This means that a
1849 given pass should not assume it contains any useful value when the
1850 pass starts and thus can set it to any value it sees fit.
1852 You can learn more about the visited property of the gimple
1853 statement by reading the comments of the 'visited' data member of
1854 struct gimple. */
1856 static inline bool
1857 gimple_visited_p (gimple *stmt)
1859 return stmt->visited;
1863 /* Set pass local flag PLF on statement STMT to VAL_P.
1865 Please note that this PLF property of the gimple statement is
1866 supposed to be undefined at pass boundaries. This means that a
1867 given pass should not assume it contains any useful value when the
1868 pass starts and thus can set it to any value it sees fit.
1870 You can learn more about the PLF property by reading the comment of
1871 the 'plf' data member of struct gimple_statement_structure. */
1873 static inline void
1874 gimple_set_plf (gimple *stmt, enum plf_mask plf, bool val_p)
1876 if (val_p)
1877 stmt->plf |= (unsigned int) plf;
1878 else
1879 stmt->plf &= ~((unsigned int) plf);
1883 /* Return the value of pass local flag PLF on statement STMT.
1885 Please note that this 'plf' property of the gimple statement is
1886 supposed to be undefined at pass boundaries. This means that a
1887 given pass should not assume it contains any useful value when the
1888 pass starts and thus can set it to any value it sees fit.
1890 You can learn more about the plf property by reading the comment of
1891 the 'plf' data member of struct gimple_statement_structure. */
1893 static inline unsigned int
1894 gimple_plf (gimple *stmt, enum plf_mask plf)
1896 return stmt->plf & ((unsigned int) plf);
1900 /* Set the UID of statement.
1902 Please note that this UID property is supposed to be undefined at
1903 pass boundaries. This means that a given pass should not assume it
1904 contains any useful value when the pass starts and thus can set it
1905 to any value it sees fit. */
1907 static inline void
1908 gimple_set_uid (gimple *g, unsigned uid)
1910 g->uid = uid;
1914 /* Return the UID of statement.
1916 Please note that this UID property is supposed to be undefined at
1917 pass boundaries. This means that a given pass should not assume it
1918 contains any useful value when the pass starts and thus can set it
1919 to any value it sees fit. */
1921 static inline unsigned
1922 gimple_uid (const gimple *g)
1924 return g->uid;
1928 /* Make statement G a singleton sequence. */
1930 static inline void
1931 gimple_init_singleton (gimple *g)
1933 g->next = NULL;
1934 g->prev = g;
1938 /* Return true if GIMPLE statement G has register or memory operands. */
1940 static inline bool
1941 gimple_has_ops (const gimple *g)
1943 return gimple_code (g) >= GIMPLE_COND && gimple_code (g) <= GIMPLE_RETURN;
1946 template <>
1947 template <>
1948 inline bool
1949 is_a_helper <const gimple_statement_with_ops *>::test (const gimple *gs)
1951 return gimple_has_ops (gs);
1954 template <>
1955 template <>
1956 inline bool
1957 is_a_helper <gimple_statement_with_ops *>::test (gimple *gs)
1959 return gimple_has_ops (gs);
1962 /* Return true if GIMPLE statement G has memory operands. */
1964 static inline bool
1965 gimple_has_mem_ops (const gimple *g)
1967 return gimple_code (g) >= GIMPLE_ASSIGN && gimple_code (g) <= GIMPLE_RETURN;
1970 template <>
1971 template <>
1972 inline bool
1973 is_a_helper <const gimple_statement_with_memory_ops *>::test (const gimple *gs)
1975 return gimple_has_mem_ops (gs);
1978 template <>
1979 template <>
1980 inline bool
1981 is_a_helper <gimple_statement_with_memory_ops *>::test (gimple *gs)
1983 return gimple_has_mem_ops (gs);
1986 /* Return the set of USE operands for statement G. */
1988 static inline struct use_optype_d *
1989 gimple_use_ops (const gimple *g)
1991 const gimple_statement_with_ops *ops_stmt =
1992 dyn_cast <const gimple_statement_with_ops *> (g);
1993 if (!ops_stmt)
1994 return NULL;
1995 return ops_stmt->use_ops;
1999 /* Set USE to be the set of USE operands for statement G. */
2001 static inline void
2002 gimple_set_use_ops (gimple *g, struct use_optype_d *use)
2004 gimple_statement_with_ops *ops_stmt =
2005 as_a <gimple_statement_with_ops *> (g);
2006 ops_stmt->use_ops = use;
2010 /* Return the single VUSE operand of the statement G. */
2012 static inline tree
2013 gimple_vuse (const gimple *g)
2015 const gimple_statement_with_memory_ops *mem_ops_stmt =
2016 dyn_cast <const gimple_statement_with_memory_ops *> (g);
2017 if (!mem_ops_stmt)
2018 return NULL_TREE;
2019 return mem_ops_stmt->vuse;
2022 /* Return the single VDEF operand of the statement G. */
2024 static inline tree
2025 gimple_vdef (const gimple *g)
2027 const gimple_statement_with_memory_ops *mem_ops_stmt =
2028 dyn_cast <const gimple_statement_with_memory_ops *> (g);
2029 if (!mem_ops_stmt)
2030 return NULL_TREE;
2031 return mem_ops_stmt->vdef;
2034 /* Return the single VUSE operand of the statement G. */
2036 static inline tree *
2037 gimple_vuse_ptr (gimple *g)
2039 gimple_statement_with_memory_ops *mem_ops_stmt =
2040 dyn_cast <gimple_statement_with_memory_ops *> (g);
2041 if (!mem_ops_stmt)
2042 return NULL;
2043 return &mem_ops_stmt->vuse;
2046 /* Return the single VDEF operand of the statement G. */
2048 static inline tree *
2049 gimple_vdef_ptr (gimple *g)
2051 gimple_statement_with_memory_ops *mem_ops_stmt =
2052 dyn_cast <gimple_statement_with_memory_ops *> (g);
2053 if (!mem_ops_stmt)
2054 return NULL;
2055 return &mem_ops_stmt->vdef;
2058 /* Set the single VUSE operand of the statement G. */
2060 static inline void
2061 gimple_set_vuse (gimple *g, tree vuse)
2063 gimple_statement_with_memory_ops *mem_ops_stmt =
2064 as_a <gimple_statement_with_memory_ops *> (g);
2065 mem_ops_stmt->vuse = vuse;
2068 /* Set the single VDEF operand of the statement G. */
2070 static inline void
2071 gimple_set_vdef (gimple *g, tree vdef)
2073 gimple_statement_with_memory_ops *mem_ops_stmt =
2074 as_a <gimple_statement_with_memory_ops *> (g);
2075 mem_ops_stmt->vdef = vdef;
2079 /* Return true if statement G has operands and the modified field has
2080 been set. */
2082 static inline bool
2083 gimple_modified_p (const gimple *g)
2085 return (gimple_has_ops (g)) ? (bool) g->modified : false;
2089 /* Set the MODIFIED flag to MODIFIEDP, iff the gimple statement G has
2090 a MODIFIED field. */
2092 static inline void
2093 gimple_set_modified (gimple *s, bool modifiedp)
2095 if (gimple_has_ops (s))
2096 s->modified = (unsigned) modifiedp;
2100 /* Return the tree code for the expression computed by STMT. This is
2101 only valid for GIMPLE_COND, GIMPLE_CALL and GIMPLE_ASSIGN. For
2102 GIMPLE_CALL, return CALL_EXPR as the expression code for
2103 consistency. This is useful when the caller needs to deal with the
2104 three kinds of computation that GIMPLE supports. */
2106 static inline enum tree_code
2107 gimple_expr_code (const gimple *stmt)
2109 enum gimple_code code = gimple_code (stmt);
2110 if (code == GIMPLE_ASSIGN || code == GIMPLE_COND)
2111 return (enum tree_code) stmt->subcode;
2112 else
2114 gcc_gimple_checking_assert (code == GIMPLE_CALL);
2115 return CALL_EXPR;
2120 /* Return true if statement STMT contains volatile operands. */
2122 static inline bool
2123 gimple_has_volatile_ops (const gimple *stmt)
2125 if (gimple_has_mem_ops (stmt))
2126 return stmt->has_volatile_ops;
2127 else
2128 return false;
2132 /* Set the HAS_VOLATILE_OPS flag to VOLATILEP. */
2134 static inline void
2135 gimple_set_has_volatile_ops (gimple *stmt, bool volatilep)
2137 if (gimple_has_mem_ops (stmt))
2138 stmt->has_volatile_ops = (unsigned) volatilep;
2141 /* Return true if STMT is in a transaction. */
2143 static inline bool
2144 gimple_in_transaction (const gimple *stmt)
2146 return bb_in_transaction (gimple_bb (stmt));
2149 /* Return true if statement STMT may access memory. */
2151 static inline bool
2152 gimple_references_memory_p (gimple *stmt)
2154 return gimple_has_mem_ops (stmt) && gimple_vuse (stmt);
2158 /* Return the subcode for OMP statement S. */
2160 static inline unsigned
2161 gimple_omp_subcode (const gimple *s)
2163 gcc_gimple_checking_assert (gimple_code (s) >= GIMPLE_OMP_ATOMIC_LOAD
2164 && gimple_code (s) <= GIMPLE_OMP_TEAMS);
2165 return s->subcode;
2168 /* Set the subcode for OMP statement S to SUBCODE. */
2170 static inline void
2171 gimple_omp_set_subcode (gimple *s, unsigned int subcode)
2173 /* We only have 16 bits for the subcode. Assert that we are not
2174 overflowing it. */
2175 gcc_gimple_checking_assert (subcode < (1 << 16));
2176 s->subcode = subcode;
2179 /* Set the nowait flag on OMP_RETURN statement S. */
2181 static inline void
2182 gimple_omp_return_set_nowait (gimple *s)
2184 GIMPLE_CHECK (s, GIMPLE_OMP_RETURN);
2185 s->subcode |= GF_OMP_RETURN_NOWAIT;
2189 /* Return true if OMP return statement G has the GF_OMP_RETURN_NOWAIT
2190 flag set. */
2192 static inline bool
2193 gimple_omp_return_nowait_p (const gimple *g)
2195 GIMPLE_CHECK (g, GIMPLE_OMP_RETURN);
2196 return (gimple_omp_subcode (g) & GF_OMP_RETURN_NOWAIT) != 0;
2200 /* Set the LHS of OMP return. */
2202 static inline void
2203 gimple_omp_return_set_lhs (gimple *g, tree lhs)
2205 gimple_statement_omp_return *omp_return_stmt =
2206 as_a <gimple_statement_omp_return *> (g);
2207 omp_return_stmt->val = lhs;
2211 /* Get the LHS of OMP return. */
2213 static inline tree
2214 gimple_omp_return_lhs (const gimple *g)
2216 const gimple_statement_omp_return *omp_return_stmt =
2217 as_a <const gimple_statement_omp_return *> (g);
2218 return omp_return_stmt->val;
2222 /* Return a pointer to the LHS of OMP return. */
2224 static inline tree *
2225 gimple_omp_return_lhs_ptr (gimple *g)
2227 gimple_statement_omp_return *omp_return_stmt =
2228 as_a <gimple_statement_omp_return *> (g);
2229 return &omp_return_stmt->val;
2233 /* Return true if OMP section statement G has the GF_OMP_SECTION_LAST
2234 flag set. */
2236 static inline bool
2237 gimple_omp_section_last_p (const gimple *g)
2239 GIMPLE_CHECK (g, GIMPLE_OMP_SECTION);
2240 return (gimple_omp_subcode (g) & GF_OMP_SECTION_LAST) != 0;
2244 /* Set the GF_OMP_SECTION_LAST flag on G. */
2246 static inline void
2247 gimple_omp_section_set_last (gimple *g)
2249 GIMPLE_CHECK (g, GIMPLE_OMP_SECTION);
2250 g->subcode |= GF_OMP_SECTION_LAST;
2254 /* Return true if OMP parallel statement G has the
2255 GF_OMP_PARALLEL_COMBINED flag set. */
2257 static inline bool
2258 gimple_omp_parallel_combined_p (const gimple *g)
2260 GIMPLE_CHECK (g, GIMPLE_OMP_PARALLEL);
2261 return (gimple_omp_subcode (g) & GF_OMP_PARALLEL_COMBINED) != 0;
2265 /* Set the GF_OMP_PARALLEL_COMBINED field in G depending on the boolean
2266 value of COMBINED_P. */
2268 static inline void
2269 gimple_omp_parallel_set_combined_p (gimple *g, bool combined_p)
2271 GIMPLE_CHECK (g, GIMPLE_OMP_PARALLEL);
2272 if (combined_p)
2273 g->subcode |= GF_OMP_PARALLEL_COMBINED;
2274 else
2275 g->subcode &= ~GF_OMP_PARALLEL_COMBINED;
2279 /* Return true if OMP atomic load/store statement G has the
2280 GF_OMP_ATOMIC_NEED_VALUE flag set. */
2282 static inline bool
2283 gimple_omp_atomic_need_value_p (const gimple *g)
2285 if (gimple_code (g) != GIMPLE_OMP_ATOMIC_LOAD)
2286 GIMPLE_CHECK (g, GIMPLE_OMP_ATOMIC_STORE);
2287 return (gimple_omp_subcode (g) & GF_OMP_ATOMIC_NEED_VALUE) != 0;
2291 /* Set the GF_OMP_ATOMIC_NEED_VALUE flag on G. */
2293 static inline void
2294 gimple_omp_atomic_set_need_value (gimple *g)
2296 if (gimple_code (g) != GIMPLE_OMP_ATOMIC_LOAD)
2297 GIMPLE_CHECK (g, GIMPLE_OMP_ATOMIC_STORE);
2298 g->subcode |= GF_OMP_ATOMIC_NEED_VALUE;
2302 /* Return true if OMP atomic load/store statement G has the
2303 GF_OMP_ATOMIC_SEQ_CST flag set. */
2305 static inline bool
2306 gimple_omp_atomic_seq_cst_p (const gimple *g)
2308 if (gimple_code (g) != GIMPLE_OMP_ATOMIC_LOAD)
2309 GIMPLE_CHECK (g, GIMPLE_OMP_ATOMIC_STORE);
2310 return (gimple_omp_subcode (g) & GF_OMP_ATOMIC_SEQ_CST) != 0;
2314 /* Set the GF_OMP_ATOMIC_SEQ_CST flag on G. */
2316 static inline void
2317 gimple_omp_atomic_set_seq_cst (gimple *g)
2319 if (gimple_code (g) != GIMPLE_OMP_ATOMIC_LOAD)
2320 GIMPLE_CHECK (g, GIMPLE_OMP_ATOMIC_STORE);
2321 g->subcode |= GF_OMP_ATOMIC_SEQ_CST;
2325 /* Return the number of operands for statement GS. */
2327 static inline unsigned
2328 gimple_num_ops (const gimple *gs)
2330 return gs->num_ops;
2334 /* Set the number of operands for statement GS. */
2336 static inline void
2337 gimple_set_num_ops (gimple *gs, unsigned num_ops)
2339 gs->num_ops = num_ops;
2343 /* Return the array of operands for statement GS. */
2345 static inline tree *
2346 gimple_ops (gimple *gs)
2348 size_t off;
2350 /* All the tuples have their operand vector at the very bottom
2351 of the structure. Note that those structures that do not
2352 have an operand vector have a zero offset. */
2353 off = gimple_ops_offset_[gimple_statement_structure (gs)];
2354 gcc_gimple_checking_assert (off != 0);
2356 return (tree *) ((char *) gs + off);
2360 /* Return operand I for statement GS. */
2362 static inline tree
2363 gimple_op (const gimple *gs, unsigned i)
2365 if (gimple_has_ops (gs))
2367 gcc_gimple_checking_assert (i < gimple_num_ops (gs));
2368 return gimple_ops (CONST_CAST_GIMPLE (gs))[i];
2370 else
2371 return NULL_TREE;
2374 /* Return a pointer to operand I for statement GS. */
2376 static inline tree *
2377 gimple_op_ptr (gimple *gs, unsigned i)
2379 if (gimple_has_ops (gs))
2381 gcc_gimple_checking_assert (i < gimple_num_ops (gs));
2382 return gimple_ops (gs) + i;
2384 else
2385 return NULL;
2388 /* Set operand I of statement GS to OP. */
2390 static inline void
2391 gimple_set_op (gimple *gs, unsigned i, tree op)
2393 gcc_gimple_checking_assert (gimple_has_ops (gs) && i < gimple_num_ops (gs));
2395 /* Note. It may be tempting to assert that OP matches
2396 is_gimple_operand, but that would be wrong. Different tuples
2397 accept slightly different sets of tree operands. Each caller
2398 should perform its own validation. */
2399 gimple_ops (gs)[i] = op;
2402 /* Return true if GS is a GIMPLE_ASSIGN. */
2404 static inline bool
2405 is_gimple_assign (const gimple *gs)
2407 return gimple_code (gs) == GIMPLE_ASSIGN;
2410 /* Determine if expression CODE is one of the valid expressions that can
2411 be used on the RHS of GIMPLE assignments. */
2413 static inline enum gimple_rhs_class
2414 get_gimple_rhs_class (enum tree_code code)
2416 return (enum gimple_rhs_class) gimple_rhs_class_table[(int) code];
2419 /* Return the LHS of assignment statement GS. */
2421 static inline tree
2422 gimple_assign_lhs (const gassign *gs)
2424 return gs->op[0];
2427 static inline tree
2428 gimple_assign_lhs (const gimple *gs)
2430 const gassign *ass = GIMPLE_CHECK2<const gassign *> (gs);
2431 return gimple_assign_lhs (ass);
2435 /* Return a pointer to the LHS of assignment statement GS. */
2437 static inline tree *
2438 gimple_assign_lhs_ptr (gassign *gs)
2440 return &gs->op[0];
2443 static inline tree *
2444 gimple_assign_lhs_ptr (gimple *gs)
2446 gassign *ass = GIMPLE_CHECK2<gassign *> (gs);
2447 return gimple_assign_lhs_ptr (ass);
2451 /* Set LHS to be the LHS operand of assignment statement GS. */
2453 static inline void
2454 gimple_assign_set_lhs (gassign *gs, tree lhs)
2456 gs->op[0] = lhs;
2458 if (lhs && TREE_CODE (lhs) == SSA_NAME)
2459 SSA_NAME_DEF_STMT (lhs) = gs;
2462 static inline void
2463 gimple_assign_set_lhs (gimple *gs, tree lhs)
2465 gassign *ass = GIMPLE_CHECK2<gassign *> (gs);
2466 gimple_assign_set_lhs (ass, lhs);
2470 /* Return the first operand on the RHS of assignment statement GS. */
2472 static inline tree
2473 gimple_assign_rhs1 (const gassign *gs)
2475 return gs->op[1];
2478 static inline tree
2479 gimple_assign_rhs1 (const gimple *gs)
2481 const gassign *ass = GIMPLE_CHECK2<const gassign *> (gs);
2482 return gimple_assign_rhs1 (ass);
2486 /* Return a pointer to the first operand on the RHS of assignment
2487 statement GS. */
2489 static inline tree *
2490 gimple_assign_rhs1_ptr (gassign *gs)
2492 return &gs->op[1];
2495 static inline tree *
2496 gimple_assign_rhs1_ptr (gimple *gs)
2498 gassign *ass = GIMPLE_CHECK2<gassign *> (gs);
2499 return gimple_assign_rhs1_ptr (ass);
2502 /* Set RHS to be the first operand on the RHS of assignment statement GS. */
2504 static inline void
2505 gimple_assign_set_rhs1 (gassign *gs, tree rhs)
2507 gs->op[1] = rhs;
2510 static inline void
2511 gimple_assign_set_rhs1 (gimple *gs, tree rhs)
2513 gassign *ass = GIMPLE_CHECK2<gassign *> (gs);
2514 gimple_assign_set_rhs1 (ass, rhs);
2518 /* Return the second operand on the RHS of assignment statement GS.
2519 If GS does not have two operands, NULL is returned instead. */
2521 static inline tree
2522 gimple_assign_rhs2 (const gassign *gs)
2524 if (gimple_num_ops (gs) >= 3)
2525 return gs->op[2];
2526 else
2527 return NULL_TREE;
2530 static inline tree
2531 gimple_assign_rhs2 (const gimple *gs)
2533 const gassign *ass = GIMPLE_CHECK2<const gassign *> (gs);
2534 return gimple_assign_rhs2 (ass);
2538 /* Return a pointer to the second operand on the RHS of assignment
2539 statement GS. */
2541 static inline tree *
2542 gimple_assign_rhs2_ptr (gassign *gs)
2544 gcc_gimple_checking_assert (gimple_num_ops (gs) >= 3);
2545 return &gs->op[2];
2548 static inline tree *
2549 gimple_assign_rhs2_ptr (gimple *gs)
2551 gassign *ass = GIMPLE_CHECK2<gassign *> (gs);
2552 return gimple_assign_rhs2_ptr (ass);
2556 /* Set RHS to be the second operand on the RHS of assignment statement GS. */
2558 static inline void
2559 gimple_assign_set_rhs2 (gassign *gs, tree rhs)
2561 gcc_gimple_checking_assert (gimple_num_ops (gs) >= 3);
2562 gs->op[2] = rhs;
2565 static inline void
2566 gimple_assign_set_rhs2 (gimple *gs, tree rhs)
2568 gassign *ass = GIMPLE_CHECK2<gassign *> (gs);
2569 return gimple_assign_set_rhs2 (ass, rhs);
2572 /* Return the third operand on the RHS of assignment statement GS.
2573 If GS does not have two operands, NULL is returned instead. */
2575 static inline tree
2576 gimple_assign_rhs3 (const gassign *gs)
2578 if (gimple_num_ops (gs) >= 4)
2579 return gs->op[3];
2580 else
2581 return NULL_TREE;
2584 static inline tree
2585 gimple_assign_rhs3 (const gimple *gs)
2587 const gassign *ass = GIMPLE_CHECK2<const gassign *> (gs);
2588 return gimple_assign_rhs3 (ass);
2591 /* Return a pointer to the third operand on the RHS of assignment
2592 statement GS. */
2594 static inline tree *
2595 gimple_assign_rhs3_ptr (gimple *gs)
2597 gassign *ass = GIMPLE_CHECK2<gassign *> (gs);
2598 gcc_gimple_checking_assert (gimple_num_ops (gs) >= 4);
2599 return &ass->op[3];
2603 /* Set RHS to be the third operand on the RHS of assignment statement GS. */
2605 static inline void
2606 gimple_assign_set_rhs3 (gassign *gs, tree rhs)
2608 gcc_gimple_checking_assert (gimple_num_ops (gs) >= 4);
2609 gs->op[3] = rhs;
2612 static inline void
2613 gimple_assign_set_rhs3 (gimple *gs, tree rhs)
2615 gassign *ass = GIMPLE_CHECK2<gassign *> (gs);
2616 gimple_assign_set_rhs3 (ass, rhs);
2620 /* A wrapper around 3 operand gimple_assign_set_rhs_with_ops, for callers
2621 which expect to see only two operands. */
2623 static inline void
2624 gimple_assign_set_rhs_with_ops (gimple_stmt_iterator *gsi, enum tree_code code,
2625 tree op1, tree op2)
2627 gimple_assign_set_rhs_with_ops (gsi, code, op1, op2, NULL);
2630 /* A wrapper around 3 operand gimple_assign_set_rhs_with_ops, for callers
2631 which expect to see only one operands. */
2633 static inline void
2634 gimple_assign_set_rhs_with_ops (gimple_stmt_iterator *gsi, enum tree_code code,
2635 tree op1)
2637 gimple_assign_set_rhs_with_ops (gsi, code, op1, NULL, NULL);
2640 /* Returns true if GS is a nontemporal move. */
2642 static inline bool
2643 gimple_assign_nontemporal_move_p (const gassign *gs)
2645 return gs->nontemporal_move;
2648 /* Sets nontemporal move flag of GS to NONTEMPORAL. */
2650 static inline void
2651 gimple_assign_set_nontemporal_move (gimple *gs, bool nontemporal)
2653 GIMPLE_CHECK (gs, GIMPLE_ASSIGN);
2654 gs->nontemporal_move = nontemporal;
2658 /* Return the code of the expression computed on the rhs of assignment
2659 statement GS. In case that the RHS is a single object, returns the
2660 tree code of the object. */
2662 static inline enum tree_code
2663 gimple_assign_rhs_code (const gassign *gs)
2665 enum tree_code code = (enum tree_code) gs->subcode;
2666 /* While we initially set subcode to the TREE_CODE of the rhs for
2667 GIMPLE_SINGLE_RHS assigns we do not update that subcode to stay
2668 in sync when we rewrite stmts into SSA form or do SSA propagations. */
2669 if (get_gimple_rhs_class (code) == GIMPLE_SINGLE_RHS)
2670 code = TREE_CODE (gs->op[1]);
2672 return code;
2675 static inline enum tree_code
2676 gimple_assign_rhs_code (const gimple *gs)
2678 const gassign *ass = GIMPLE_CHECK2<const gassign *> (gs);
2679 return gimple_assign_rhs_code (ass);
2683 /* Set CODE to be the code for the expression computed on the RHS of
2684 assignment S. */
2686 static inline void
2687 gimple_assign_set_rhs_code (gimple *s, enum tree_code code)
2689 GIMPLE_CHECK (s, GIMPLE_ASSIGN);
2690 s->subcode = code;
2694 /* Return the gimple rhs class of the code of the expression computed on
2695 the rhs of assignment statement GS.
2696 This will never return GIMPLE_INVALID_RHS. */
2698 static inline enum gimple_rhs_class
2699 gimple_assign_rhs_class (const gimple *gs)
2701 return get_gimple_rhs_class (gimple_assign_rhs_code (gs));
2704 /* Return true if GS is an assignment with a singleton RHS, i.e.,
2705 there is no operator associated with the assignment itself.
2706 Unlike gimple_assign_copy_p, this predicate returns true for
2707 any RHS operand, including those that perform an operation
2708 and do not have the semantics of a copy, such as COND_EXPR. */
2710 static inline bool
2711 gimple_assign_single_p (const gimple *gs)
2713 return (is_gimple_assign (gs)
2714 && gimple_assign_rhs_class (gs) == GIMPLE_SINGLE_RHS);
2717 /* Return true if GS performs a store to its lhs. */
2719 static inline bool
2720 gimple_store_p (const gimple *gs)
2722 tree lhs = gimple_get_lhs (gs);
2723 return lhs && !is_gimple_reg (lhs);
2726 /* Return true if GS is an assignment that loads from its rhs1. */
2728 static inline bool
2729 gimple_assign_load_p (const gimple *gs)
2731 tree rhs;
2732 if (!gimple_assign_single_p (gs))
2733 return false;
2734 rhs = gimple_assign_rhs1 (gs);
2735 if (TREE_CODE (rhs) == WITH_SIZE_EXPR)
2736 return true;
2737 rhs = get_base_address (rhs);
2738 return (DECL_P (rhs)
2739 || TREE_CODE (rhs) == MEM_REF || TREE_CODE (rhs) == TARGET_MEM_REF);
2743 /* Return true if S is a type-cast assignment. */
2745 static inline bool
2746 gimple_assign_cast_p (const gimple *s)
2748 if (is_gimple_assign (s))
2750 enum tree_code sc = gimple_assign_rhs_code (s);
2751 return CONVERT_EXPR_CODE_P (sc)
2752 || sc == VIEW_CONVERT_EXPR
2753 || sc == FIX_TRUNC_EXPR;
2756 return false;
2759 /* Return true if S is a clobber statement. */
2761 static inline bool
2762 gimple_clobber_p (const gimple *s)
2764 return gimple_assign_single_p (s)
2765 && TREE_CLOBBER_P (gimple_assign_rhs1 (s));
2768 /* Return true if GS is a GIMPLE_CALL. */
2770 static inline bool
2771 is_gimple_call (const gimple *gs)
2773 return gimple_code (gs) == GIMPLE_CALL;
2776 /* Return the LHS of call statement GS. */
2778 static inline tree
2779 gimple_call_lhs (const gcall *gs)
2781 return gs->op[0];
2784 static inline tree
2785 gimple_call_lhs (const gimple *gs)
2787 const gcall *gc = GIMPLE_CHECK2<const gcall *> (gs);
2788 return gimple_call_lhs (gc);
2792 /* Return a pointer to the LHS of call statement GS. */
2794 static inline tree *
2795 gimple_call_lhs_ptr (gcall *gs)
2797 return &gs->op[0];
2800 static inline tree *
2801 gimple_call_lhs_ptr (gimple *gs)
2803 gcall *gc = GIMPLE_CHECK2<gcall *> (gs);
2804 return gimple_call_lhs_ptr (gc);
2808 /* Set LHS to be the LHS operand of call statement GS. */
2810 static inline void
2811 gimple_call_set_lhs (gcall *gs, tree lhs)
2813 gs->op[0] = lhs;
2814 if (lhs && TREE_CODE (lhs) == SSA_NAME)
2815 SSA_NAME_DEF_STMT (lhs) = gs;
2818 static inline void
2819 gimple_call_set_lhs (gimple *gs, tree lhs)
2821 gcall *gc = GIMPLE_CHECK2<gcall *> (gs);
2822 gimple_call_set_lhs (gc, lhs);
2826 /* Return true if call GS calls an internal-only function, as enumerated
2827 by internal_fn. */
2829 static inline bool
2830 gimple_call_internal_p (const gcall *gs)
2832 return (gs->subcode & GF_CALL_INTERNAL) != 0;
2835 static inline bool
2836 gimple_call_internal_p (const gimple *gs)
2838 const gcall *gc = GIMPLE_CHECK2<const gcall *> (gs);
2839 return gimple_call_internal_p (gc);
2843 /* Return true if call GS is marked as instrumented by
2844 Pointer Bounds Checker. */
2846 static inline bool
2847 gimple_call_with_bounds_p (const gcall *gs)
2849 return (gs->subcode & GF_CALL_WITH_BOUNDS) != 0;
2852 static inline bool
2853 gimple_call_with_bounds_p (const gimple *gs)
2855 const gcall *gc = GIMPLE_CHECK2<const gcall *> (gs);
2856 return gimple_call_with_bounds_p (gc);
2860 /* If INSTRUMENTED_P is true, marm statement GS as instrumented by
2861 Pointer Bounds Checker. */
2863 static inline void
2864 gimple_call_set_with_bounds (gcall *gs, bool with_bounds)
2866 if (with_bounds)
2867 gs->subcode |= GF_CALL_WITH_BOUNDS;
2868 else
2869 gs->subcode &= ~GF_CALL_WITH_BOUNDS;
2872 static inline void
2873 gimple_call_set_with_bounds (gimple *gs, bool with_bounds)
2875 gcall *gc = GIMPLE_CHECK2<gcall *> (gs);
2876 gimple_call_set_with_bounds (gc, with_bounds);
2880 /* Return the target of internal call GS. */
2882 static inline enum internal_fn
2883 gimple_call_internal_fn (const gcall *gs)
2885 gcc_gimple_checking_assert (gimple_call_internal_p (gs));
2886 return gs->u.internal_fn;
2889 static inline enum internal_fn
2890 gimple_call_internal_fn (const gimple *gs)
2892 const gcall *gc = GIMPLE_CHECK2<const gcall *> (gs);
2893 return gimple_call_internal_fn (gc);
2896 /* Return true, if this internal gimple call is unique. */
2898 static inline bool
2899 gimple_call_internal_unique_p (const gcall *gs)
2901 return gimple_call_internal_fn (gs) == IFN_UNIQUE;
2904 static inline bool
2905 gimple_call_internal_unique_p (const gimple *gs)
2907 const gcall *gc = GIMPLE_CHECK2<const gcall *> (gs);
2908 return gimple_call_internal_unique_p (gc);
2911 /* If CTRL_ALTERING_P is true, mark GIMPLE_CALL S to be a stmt
2912 that could alter control flow. */
2914 static inline void
2915 gimple_call_set_ctrl_altering (gcall *s, bool ctrl_altering_p)
2917 if (ctrl_altering_p)
2918 s->subcode |= GF_CALL_CTRL_ALTERING;
2919 else
2920 s->subcode &= ~GF_CALL_CTRL_ALTERING;
2923 static inline void
2924 gimple_call_set_ctrl_altering (gimple *s, bool ctrl_altering_p)
2926 gcall *gc = GIMPLE_CHECK2<gcall *> (s);
2927 gimple_call_set_ctrl_altering (gc, ctrl_altering_p);
2930 /* Return true if call GS calls an func whose GF_CALL_CTRL_ALTERING
2931 flag is set. Such call could not be a stmt in the middle of a bb. */
2933 static inline bool
2934 gimple_call_ctrl_altering_p (const gcall *gs)
2936 return (gs->subcode & GF_CALL_CTRL_ALTERING) != 0;
2939 static inline bool
2940 gimple_call_ctrl_altering_p (const gimple *gs)
2942 const gcall *gc = GIMPLE_CHECK2<const gcall *> (gs);
2943 return gimple_call_ctrl_altering_p (gc);
2947 /* Return the function type of the function called by GS. */
2949 static inline tree
2950 gimple_call_fntype (const gcall *gs)
2952 if (gimple_call_internal_p (gs))
2953 return NULL_TREE;
2954 return gs->u.fntype;
2957 static inline tree
2958 gimple_call_fntype (const gimple *gs)
2960 const gcall *call_stmt = GIMPLE_CHECK2<const gcall *> (gs);
2961 return gimple_call_fntype (call_stmt);
2964 /* Set the type of the function called by CALL_STMT to FNTYPE. */
2966 static inline void
2967 gimple_call_set_fntype (gcall *call_stmt, tree fntype)
2969 gcc_gimple_checking_assert (!gimple_call_internal_p (call_stmt));
2970 call_stmt->u.fntype = fntype;
2974 /* Return the tree node representing the function called by call
2975 statement GS. */
2977 static inline tree
2978 gimple_call_fn (const gcall *gs)
2980 return gs->op[1];
2983 static inline tree
2984 gimple_call_fn (const gimple *gs)
2986 const gcall *gc = GIMPLE_CHECK2<const gcall *> (gs);
2987 return gimple_call_fn (gc);
2990 /* Return a pointer to the tree node representing the function called by call
2991 statement GS. */
2993 static inline tree *
2994 gimple_call_fn_ptr (gcall *gs)
2996 return &gs->op[1];
2999 static inline tree *
3000 gimple_call_fn_ptr (gimple *gs)
3002 gcall *gc = GIMPLE_CHECK2<gcall *> (gs);
3003 return gimple_call_fn_ptr (gc);
3007 /* Set FN to be the function called by call statement GS. */
3009 static inline void
3010 gimple_call_set_fn (gcall *gs, tree fn)
3012 gcc_gimple_checking_assert (!gimple_call_internal_p (gs));
3013 gs->op[1] = fn;
3017 /* Set FNDECL to be the function called by call statement GS. */
3019 static inline void
3020 gimple_call_set_fndecl (gcall *gs, tree decl)
3022 gcc_gimple_checking_assert (!gimple_call_internal_p (gs));
3023 gs->op[1] = build1_loc (gimple_location (gs), ADDR_EXPR,
3024 build_pointer_type (TREE_TYPE (decl)), decl);
3027 static inline void
3028 gimple_call_set_fndecl (gimple *gs, tree decl)
3030 gcall *gc = GIMPLE_CHECK2<gcall *> (gs);
3031 gimple_call_set_fndecl (gc, decl);
3035 /* Set internal function FN to be the function called by call statement CALL_STMT. */
3037 static inline void
3038 gimple_call_set_internal_fn (gcall *call_stmt, enum internal_fn fn)
3040 gcc_gimple_checking_assert (gimple_call_internal_p (call_stmt));
3041 call_stmt->u.internal_fn = fn;
3045 /* If a given GIMPLE_CALL's callee is a FUNCTION_DECL, return it.
3046 Otherwise return NULL. This function is analogous to
3047 get_callee_fndecl in tree land. */
3049 static inline tree
3050 gimple_call_fndecl (const gcall *gs)
3052 return gimple_call_addr_fndecl (gimple_call_fn (gs));
3055 static inline tree
3056 gimple_call_fndecl (const gimple *gs)
3058 const gcall *gc = GIMPLE_CHECK2<const gcall *> (gs);
3059 return gimple_call_fndecl (gc);
3063 /* Return the type returned by call statement GS. */
3065 static inline tree
3066 gimple_call_return_type (const gcall *gs)
3068 tree type = gimple_call_fntype (gs);
3070 if (type == NULL_TREE)
3071 return TREE_TYPE (gimple_call_lhs (gs));
3073 /* The type returned by a function is the type of its
3074 function type. */
3075 return TREE_TYPE (type);
3079 /* Return the static chain for call statement GS. */
3081 static inline tree
3082 gimple_call_chain (const gcall *gs)
3084 return gs->op[2];
3087 static inline tree
3088 gimple_call_chain (const gimple *gs)
3090 const gcall *gc = GIMPLE_CHECK2<const gcall *> (gs);
3091 return gimple_call_chain (gc);
3095 /* Return a pointer to the static chain for call statement CALL_STMT. */
3097 static inline tree *
3098 gimple_call_chain_ptr (gcall *call_stmt)
3100 return &call_stmt->op[2];
3103 /* Set CHAIN to be the static chain for call statement CALL_STMT. */
3105 static inline void
3106 gimple_call_set_chain (gcall *call_stmt, tree chain)
3108 call_stmt->op[2] = chain;
3112 /* Return the number of arguments used by call statement GS. */
3114 static inline unsigned
3115 gimple_call_num_args (const gcall *gs)
3117 return gimple_num_ops (gs) - 3;
3120 static inline unsigned
3121 gimple_call_num_args (const gimple *gs)
3123 const gcall *gc = GIMPLE_CHECK2<const gcall *> (gs);
3124 return gimple_call_num_args (gc);
3128 /* Return the argument at position INDEX for call statement GS. */
3130 static inline tree
3131 gimple_call_arg (const gcall *gs, unsigned index)
3133 gcc_gimple_checking_assert (gimple_num_ops (gs) > index + 3);
3134 return gs->op[index + 3];
3137 static inline tree
3138 gimple_call_arg (const gimple *gs, unsigned index)
3140 const gcall *gc = GIMPLE_CHECK2<const gcall *> (gs);
3141 return gimple_call_arg (gc, index);
3145 /* Return a pointer to the argument at position INDEX for call
3146 statement GS. */
3148 static inline tree *
3149 gimple_call_arg_ptr (gcall *gs, unsigned index)
3151 gcc_gimple_checking_assert (gimple_num_ops (gs) > index + 3);
3152 return &gs->op[index + 3];
3155 static inline tree *
3156 gimple_call_arg_ptr (gimple *gs, unsigned index)
3158 gcall *gc = GIMPLE_CHECK2<gcall *> (gs);
3159 return gimple_call_arg_ptr (gc, index);
3163 /* Set ARG to be the argument at position INDEX for call statement GS. */
3165 static inline void
3166 gimple_call_set_arg (gcall *gs, unsigned index, tree arg)
3168 gcc_gimple_checking_assert (gimple_num_ops (gs) > index + 3);
3169 gs->op[index + 3] = arg;
3172 static inline void
3173 gimple_call_set_arg (gimple *gs, unsigned index, tree arg)
3175 gcall *gc = GIMPLE_CHECK2<gcall *> (gs);
3176 gimple_call_set_arg (gc, index, arg);
3180 /* If TAIL_P is true, mark call statement S as being a tail call
3181 (i.e., a call just before the exit of a function). These calls are
3182 candidate for tail call optimization. */
3184 static inline void
3185 gimple_call_set_tail (gcall *s, bool tail_p)
3187 if (tail_p)
3188 s->subcode |= GF_CALL_TAILCALL;
3189 else
3190 s->subcode &= ~GF_CALL_TAILCALL;
3194 /* Return true if GIMPLE_CALL S is marked as a tail call. */
3196 static inline bool
3197 gimple_call_tail_p (gcall *s)
3199 return (s->subcode & GF_CALL_TAILCALL) != 0;
3203 /* If RETURN_SLOT_OPT_P is true mark GIMPLE_CALL S as valid for return
3204 slot optimization. This transformation uses the target of the call
3205 expansion as the return slot for calls that return in memory. */
3207 static inline void
3208 gimple_call_set_return_slot_opt (gcall *s, bool return_slot_opt_p)
3210 if (return_slot_opt_p)
3211 s->subcode |= GF_CALL_RETURN_SLOT_OPT;
3212 else
3213 s->subcode &= ~GF_CALL_RETURN_SLOT_OPT;
3217 /* Return true if S is marked for return slot optimization. */
3219 static inline bool
3220 gimple_call_return_slot_opt_p (gcall *s)
3222 return (s->subcode & GF_CALL_RETURN_SLOT_OPT) != 0;
3226 /* If FROM_THUNK_P is true, mark GIMPLE_CALL S as being the jump from a
3227 thunk to the thunked-to function. */
3229 static inline void
3230 gimple_call_set_from_thunk (gcall *s, bool from_thunk_p)
3232 if (from_thunk_p)
3233 s->subcode |= GF_CALL_FROM_THUNK;
3234 else
3235 s->subcode &= ~GF_CALL_FROM_THUNK;
3239 /* Return true if GIMPLE_CALL S is a jump from a thunk. */
3241 static inline bool
3242 gimple_call_from_thunk_p (gcall *s)
3244 return (s->subcode & GF_CALL_FROM_THUNK) != 0;
3248 /* If PASS_ARG_PACK_P is true, GIMPLE_CALL S is a stdarg call that needs the
3249 argument pack in its argument list. */
3251 static inline void
3252 gimple_call_set_va_arg_pack (gcall *s, bool pass_arg_pack_p)
3254 if (pass_arg_pack_p)
3255 s->subcode |= GF_CALL_VA_ARG_PACK;
3256 else
3257 s->subcode &= ~GF_CALL_VA_ARG_PACK;
3261 /* Return true if GIMPLE_CALL S is a stdarg call that needs the
3262 argument pack in its argument list. */
3264 static inline bool
3265 gimple_call_va_arg_pack_p (gcall *s)
3267 return (s->subcode & GF_CALL_VA_ARG_PACK) != 0;
3271 /* Return true if S is a noreturn call. */
3273 static inline bool
3274 gimple_call_noreturn_p (const gcall *s)
3276 return (gimple_call_flags (s) & ECF_NORETURN) != 0;
3279 static inline bool
3280 gimple_call_noreturn_p (const gimple *s)
3282 const gcall *gc = GIMPLE_CHECK2<const gcall *> (s);
3283 return gimple_call_noreturn_p (gc);
3287 /* If NOTHROW_P is true, GIMPLE_CALL S is a call that is known to not throw
3288 even if the called function can throw in other cases. */
3290 static inline void
3291 gimple_call_set_nothrow (gcall *s, bool nothrow_p)
3293 if (nothrow_p)
3294 s->subcode |= GF_CALL_NOTHROW;
3295 else
3296 s->subcode &= ~GF_CALL_NOTHROW;
3299 /* Return true if S is a nothrow call. */
3301 static inline bool
3302 gimple_call_nothrow_p (gcall *s)
3304 return (gimple_call_flags (s) & ECF_NOTHROW) != 0;
3307 /* If FOR_VAR is true, GIMPLE_CALL S is a call to builtin_alloca that
3308 is known to be emitted for VLA objects. Those are wrapped by
3309 stack_save/stack_restore calls and hence can't lead to unbounded
3310 stack growth even when they occur in loops. */
3312 static inline void
3313 gimple_call_set_alloca_for_var (gcall *s, bool for_var)
3315 if (for_var)
3316 s->subcode |= GF_CALL_ALLOCA_FOR_VAR;
3317 else
3318 s->subcode &= ~GF_CALL_ALLOCA_FOR_VAR;
3321 /* Return true of S is a call to builtin_alloca emitted for VLA objects. */
3323 static inline bool
3324 gimple_call_alloca_for_var_p (gcall *s)
3326 return (s->subcode & GF_CALL_ALLOCA_FOR_VAR) != 0;
3329 /* Copy all the GF_CALL_* flags from ORIG_CALL to DEST_CALL. */
3331 static inline void
3332 gimple_call_copy_flags (gcall *dest_call, gcall *orig_call)
3334 dest_call->subcode = orig_call->subcode;
3338 /* Return a pointer to the points-to solution for the set of call-used
3339 variables of the call CALL_STMT. */
3341 static inline struct pt_solution *
3342 gimple_call_use_set (gcall *call_stmt)
3344 return &call_stmt->call_used;
3348 /* Return a pointer to the points-to solution for the set of call-used
3349 variables of the call CALL_STMT. */
3351 static inline struct pt_solution *
3352 gimple_call_clobber_set (gcall *call_stmt)
3354 return &call_stmt->call_clobbered;
3358 /* Returns true if this is a GIMPLE_ASSIGN or a GIMPLE_CALL with a
3359 non-NULL lhs. */
3361 static inline bool
3362 gimple_has_lhs (gimple *stmt)
3364 if (is_gimple_assign (stmt))
3365 return true;
3366 if (gcall *call = dyn_cast <gcall *> (stmt))
3367 return gimple_call_lhs (call) != NULL_TREE;
3368 return false;
3372 /* Return the code of the predicate computed by conditional statement GS. */
3374 static inline enum tree_code
3375 gimple_cond_code (const gcond *gs)
3377 return (enum tree_code) gs->subcode;
3380 static inline enum tree_code
3381 gimple_cond_code (const gimple *gs)
3383 const gcond *gc = GIMPLE_CHECK2<const gcond *> (gs);
3384 return gimple_cond_code (gc);
3388 /* Set CODE to be the predicate code for the conditional statement GS. */
3390 static inline void
3391 gimple_cond_set_code (gcond *gs, enum tree_code code)
3393 gs->subcode = code;
3397 /* Return the LHS of the predicate computed by conditional statement GS. */
3399 static inline tree
3400 gimple_cond_lhs (const gcond *gs)
3402 return gs->op[0];
3405 static inline tree
3406 gimple_cond_lhs (const gimple *gs)
3408 const gcond *gc = GIMPLE_CHECK2<const gcond *> (gs);
3409 return gimple_cond_lhs (gc);
3412 /* Return the pointer to the LHS of the predicate computed by conditional
3413 statement GS. */
3415 static inline tree *
3416 gimple_cond_lhs_ptr (gcond *gs)
3418 return &gs->op[0];
3421 /* Set LHS to be the LHS operand of the predicate computed by
3422 conditional statement GS. */
3424 static inline void
3425 gimple_cond_set_lhs (gcond *gs, tree lhs)
3427 gs->op[0] = lhs;
3431 /* Return the RHS operand of the predicate computed by conditional GS. */
3433 static inline tree
3434 gimple_cond_rhs (const gcond *gs)
3436 return gs->op[1];
3439 static inline tree
3440 gimple_cond_rhs (const gimple *gs)
3442 const gcond *gc = GIMPLE_CHECK2<const gcond *> (gs);
3443 return gimple_cond_rhs (gc);
3446 /* Return the pointer to the RHS operand of the predicate computed by
3447 conditional GS. */
3449 static inline tree *
3450 gimple_cond_rhs_ptr (gcond *gs)
3452 return &gs->op[1];
3456 /* Set RHS to be the RHS operand of the predicate computed by
3457 conditional statement GS. */
3459 static inline void
3460 gimple_cond_set_rhs (gcond *gs, tree rhs)
3462 gs->op[1] = rhs;
3466 /* Return the label used by conditional statement GS when its
3467 predicate evaluates to true. */
3469 static inline tree
3470 gimple_cond_true_label (const gcond *gs)
3472 return gs->op[2];
3476 /* Set LABEL to be the label used by conditional statement GS when its
3477 predicate evaluates to true. */
3479 static inline void
3480 gimple_cond_set_true_label (gcond *gs, tree label)
3482 gs->op[2] = label;
3486 /* Set LABEL to be the label used by conditional statement GS when its
3487 predicate evaluates to false. */
3489 static inline void
3490 gimple_cond_set_false_label (gcond *gs, tree label)
3492 gs->op[3] = label;
3496 /* Return the label used by conditional statement GS when its
3497 predicate evaluates to false. */
3499 static inline tree
3500 gimple_cond_false_label (const gcond *gs)
3502 return gs->op[3];
3506 /* Set the conditional COND_STMT to be of the form 'if (1 == 0)'. */
3508 static inline void
3509 gimple_cond_make_false (gcond *gs)
3511 gimple_cond_set_lhs (gs, boolean_false_node);
3512 gimple_cond_set_rhs (gs, boolean_false_node);
3513 gs->subcode = NE_EXPR;
3517 /* Set the conditional COND_STMT to be of the form 'if (1 == 1)'. */
3519 static inline void
3520 gimple_cond_make_true (gcond *gs)
3522 gimple_cond_set_lhs (gs, boolean_true_node);
3523 gimple_cond_set_rhs (gs, boolean_false_node);
3524 gs->subcode = NE_EXPR;
3527 /* Check if conditional statemente GS is of the form 'if (1 == 1)',
3528 'if (0 == 0)', 'if (1 != 0)' or 'if (0 != 1)' */
3530 static inline bool
3531 gimple_cond_true_p (const gcond *gs)
3533 tree lhs = gimple_cond_lhs (gs);
3534 tree rhs = gimple_cond_rhs (gs);
3535 enum tree_code code = gimple_cond_code (gs);
3537 if (lhs != boolean_true_node && lhs != boolean_false_node)
3538 return false;
3540 if (rhs != boolean_true_node && rhs != boolean_false_node)
3541 return false;
3543 if (code == NE_EXPR && lhs != rhs)
3544 return true;
3546 if (code == EQ_EXPR && lhs == rhs)
3547 return true;
3549 return false;
3552 /* Check if conditional statement GS is of the form 'if (1 != 1)',
3553 'if (0 != 0)', 'if (1 == 0)' or 'if (0 == 1)' */
3555 static inline bool
3556 gimple_cond_false_p (const gcond *gs)
3558 tree lhs = gimple_cond_lhs (gs);
3559 tree rhs = gimple_cond_rhs (gs);
3560 enum tree_code code = gimple_cond_code (gs);
3562 if (lhs != boolean_true_node && lhs != boolean_false_node)
3563 return false;
3565 if (rhs != boolean_true_node && rhs != boolean_false_node)
3566 return false;
3568 if (code == NE_EXPR && lhs == rhs)
3569 return true;
3571 if (code == EQ_EXPR && lhs != rhs)
3572 return true;
3574 return false;
3577 /* Set the code, LHS and RHS of GIMPLE_COND STMT from CODE, LHS and RHS. */
3579 static inline void
3580 gimple_cond_set_condition (gcond *stmt, enum tree_code code, tree lhs,
3581 tree rhs)
3583 gimple_cond_set_code (stmt, code);
3584 gimple_cond_set_lhs (stmt, lhs);
3585 gimple_cond_set_rhs (stmt, rhs);
3588 /* Return the LABEL_DECL node used by GIMPLE_LABEL statement GS. */
3590 static inline tree
3591 gimple_label_label (const glabel *gs)
3593 return gs->op[0];
3597 /* Set LABEL to be the LABEL_DECL node used by GIMPLE_LABEL statement
3598 GS. */
3600 static inline void
3601 gimple_label_set_label (glabel *gs, tree label)
3603 gs->op[0] = label;
3607 /* Return the destination of the unconditional jump GS. */
3609 static inline tree
3610 gimple_goto_dest (const gimple *gs)
3612 GIMPLE_CHECK (gs, GIMPLE_GOTO);
3613 return gimple_op (gs, 0);
3617 /* Set DEST to be the destination of the unconditonal jump GS. */
3619 static inline void
3620 gimple_goto_set_dest (ggoto *gs, tree dest)
3622 gs->op[0] = dest;
3626 /* Return the variables declared in the GIMPLE_BIND statement GS. */
3628 static inline tree
3629 gimple_bind_vars (const gbind *bind_stmt)
3631 return bind_stmt->vars;
3635 /* Set VARS to be the set of variables declared in the GIMPLE_BIND
3636 statement GS. */
3638 static inline void
3639 gimple_bind_set_vars (gbind *bind_stmt, tree vars)
3641 bind_stmt->vars = vars;
3645 /* Append VARS to the set of variables declared in the GIMPLE_BIND
3646 statement GS. */
3648 static inline void
3649 gimple_bind_append_vars (gbind *bind_stmt, tree vars)
3651 bind_stmt->vars = chainon (bind_stmt->vars, vars);
3655 static inline gimple_seq *
3656 gimple_bind_body_ptr (gbind *bind_stmt)
3658 return &bind_stmt->body;
3661 /* Return the GIMPLE sequence contained in the GIMPLE_BIND statement GS. */
3663 static inline gimple_seq
3664 gimple_bind_body (gbind *gs)
3666 return *gimple_bind_body_ptr (gs);
3670 /* Set SEQ to be the GIMPLE sequence contained in the GIMPLE_BIND
3671 statement GS. */
3673 static inline void
3674 gimple_bind_set_body (gbind *bind_stmt, gimple_seq seq)
3676 bind_stmt->body = seq;
3680 /* Append a statement to the end of a GIMPLE_BIND's body. */
3682 static inline void
3683 gimple_bind_add_stmt (gbind *bind_stmt, gimple *stmt)
3685 gimple_seq_add_stmt (&bind_stmt->body, stmt);
3689 /* Append a sequence of statements to the end of a GIMPLE_BIND's body. */
3691 static inline void
3692 gimple_bind_add_seq (gbind *bind_stmt, gimple_seq seq)
3694 gimple_seq_add_seq (&bind_stmt->body, seq);
3698 /* Return the TREE_BLOCK node associated with GIMPLE_BIND statement
3699 GS. This is analogous to the BIND_EXPR_BLOCK field in trees. */
3701 static inline tree
3702 gimple_bind_block (const gbind *bind_stmt)
3704 return bind_stmt->block;
3708 /* Set BLOCK to be the TREE_BLOCK node associated with GIMPLE_BIND
3709 statement GS. */
3711 static inline void
3712 gimple_bind_set_block (gbind *bind_stmt, tree block)
3714 gcc_gimple_checking_assert (block == NULL_TREE
3715 || TREE_CODE (block) == BLOCK);
3716 bind_stmt->block = block;
3720 /* Return the number of input operands for GIMPLE_ASM ASM_STMT. */
3722 static inline unsigned
3723 gimple_asm_ninputs (const gasm *asm_stmt)
3725 return asm_stmt->ni;
3729 /* Return the number of output operands for GIMPLE_ASM ASM_STMT. */
3731 static inline unsigned
3732 gimple_asm_noutputs (const gasm *asm_stmt)
3734 return asm_stmt->no;
3738 /* Return the number of clobber operands for GIMPLE_ASM ASM_STMT. */
3740 static inline unsigned
3741 gimple_asm_nclobbers (const gasm *asm_stmt)
3743 return asm_stmt->nc;
3746 /* Return the number of label operands for GIMPLE_ASM ASM_STMT. */
3748 static inline unsigned
3749 gimple_asm_nlabels (const gasm *asm_stmt)
3751 return asm_stmt->nl;
3754 /* Return input operand INDEX of GIMPLE_ASM ASM_STMT. */
3756 static inline tree
3757 gimple_asm_input_op (const gasm *asm_stmt, unsigned index)
3759 gcc_gimple_checking_assert (index < asm_stmt->ni);
3760 return asm_stmt->op[index + asm_stmt->no];
3763 /* Set IN_OP to be input operand INDEX in GIMPLE_ASM ASM_STMT. */
3765 static inline void
3766 gimple_asm_set_input_op (gasm *asm_stmt, unsigned index, tree in_op)
3768 gcc_gimple_checking_assert (index < asm_stmt->ni
3769 && TREE_CODE (in_op) == TREE_LIST);
3770 asm_stmt->op[index + asm_stmt->no] = in_op;
3774 /* Return output operand INDEX of GIMPLE_ASM ASM_STMT. */
3776 static inline tree
3777 gimple_asm_output_op (const gasm *asm_stmt, unsigned index)
3779 gcc_gimple_checking_assert (index < asm_stmt->no);
3780 return asm_stmt->op[index];
3783 /* Set OUT_OP to be output operand INDEX in GIMPLE_ASM ASM_STMT. */
3785 static inline void
3786 gimple_asm_set_output_op (gasm *asm_stmt, unsigned index, tree out_op)
3788 gcc_gimple_checking_assert (index < asm_stmt->no
3789 && TREE_CODE (out_op) == TREE_LIST);
3790 asm_stmt->op[index] = out_op;
3794 /* Return clobber operand INDEX of GIMPLE_ASM ASM_STMT. */
3796 static inline tree
3797 gimple_asm_clobber_op (const gasm *asm_stmt, unsigned index)
3799 gcc_gimple_checking_assert (index < asm_stmt->nc);
3800 return asm_stmt->op[index + asm_stmt->ni + asm_stmt->no];
3804 /* Set CLOBBER_OP to be clobber operand INDEX in GIMPLE_ASM ASM_STMT. */
3806 static inline void
3807 gimple_asm_set_clobber_op (gasm *asm_stmt, unsigned index, tree clobber_op)
3809 gcc_gimple_checking_assert (index < asm_stmt->nc
3810 && TREE_CODE (clobber_op) == TREE_LIST);
3811 asm_stmt->op[index + asm_stmt->ni + asm_stmt->no] = clobber_op;
3814 /* Return label operand INDEX of GIMPLE_ASM ASM_STMT. */
3816 static inline tree
3817 gimple_asm_label_op (const gasm *asm_stmt, unsigned index)
3819 gcc_gimple_checking_assert (index < asm_stmt->nl);
3820 return asm_stmt->op[index + asm_stmt->ni + asm_stmt->nc];
3823 /* Set LABEL_OP to be label operand INDEX in GIMPLE_ASM ASM_STMT. */
3825 static inline void
3826 gimple_asm_set_label_op (gasm *asm_stmt, unsigned index, tree label_op)
3828 gcc_gimple_checking_assert (index < asm_stmt->nl
3829 && TREE_CODE (label_op) == TREE_LIST);
3830 asm_stmt->op[index + asm_stmt->ni + asm_stmt->nc] = label_op;
3833 /* Return the string representing the assembly instruction in
3834 GIMPLE_ASM ASM_STMT. */
3836 static inline const char *
3837 gimple_asm_string (const gasm *asm_stmt)
3839 return asm_stmt->string;
3843 /* Return true ASM_STMT ASM_STMT is an asm statement marked volatile. */
3845 static inline bool
3846 gimple_asm_volatile_p (const gasm *asm_stmt)
3848 return (asm_stmt->subcode & GF_ASM_VOLATILE) != 0;
3852 /* If VOLATLE_P is true, mark asm statement ASM_STMT as volatile. */
3854 static inline void
3855 gimple_asm_set_volatile (gasm *asm_stmt, bool volatile_p)
3857 if (volatile_p)
3858 asm_stmt->subcode |= GF_ASM_VOLATILE;
3859 else
3860 asm_stmt->subcode &= ~GF_ASM_VOLATILE;
3864 /* If INPUT_P is true, mark asm ASM_STMT as an ASM_INPUT. */
3866 static inline void
3867 gimple_asm_set_input (gasm *asm_stmt, bool input_p)
3869 if (input_p)
3870 asm_stmt->subcode |= GF_ASM_INPUT;
3871 else
3872 asm_stmt->subcode &= ~GF_ASM_INPUT;
3876 /* Return true if asm ASM_STMT is an ASM_INPUT. */
3878 static inline bool
3879 gimple_asm_input_p (const gasm *asm_stmt)
3881 return (asm_stmt->subcode & GF_ASM_INPUT) != 0;
3885 /* Return the types handled by GIMPLE_CATCH statement CATCH_STMT. */
3887 static inline tree
3888 gimple_catch_types (const gcatch *catch_stmt)
3890 return catch_stmt->types;
3894 /* Return a pointer to the types handled by GIMPLE_CATCH statement CATCH_STMT. */
3896 static inline tree *
3897 gimple_catch_types_ptr (gcatch *catch_stmt)
3899 return &catch_stmt->types;
3903 /* Return a pointer to the GIMPLE sequence representing the body of
3904 the handler of GIMPLE_CATCH statement CATCH_STMT. */
3906 static inline gimple_seq *
3907 gimple_catch_handler_ptr (gcatch *catch_stmt)
3909 return &catch_stmt->handler;
3913 /* Return the GIMPLE sequence representing the body of the handler of
3914 GIMPLE_CATCH statement CATCH_STMT. */
3916 static inline gimple_seq
3917 gimple_catch_handler (gcatch *catch_stmt)
3919 return *gimple_catch_handler_ptr (catch_stmt);
3923 /* Set T to be the set of types handled by GIMPLE_CATCH CATCH_STMT. */
3925 static inline void
3926 gimple_catch_set_types (gcatch *catch_stmt, tree t)
3928 catch_stmt->types = t;
3932 /* Set HANDLER to be the body of GIMPLE_CATCH CATCH_STMT. */
3934 static inline void
3935 gimple_catch_set_handler (gcatch *catch_stmt, gimple_seq handler)
3937 catch_stmt->handler = handler;
3941 /* Return the types handled by GIMPLE_EH_FILTER statement GS. */
3943 static inline tree
3944 gimple_eh_filter_types (const gimple *gs)
3946 const geh_filter *eh_filter_stmt = as_a <const geh_filter *> (gs);
3947 return eh_filter_stmt->types;
3951 /* Return a pointer to the types handled by GIMPLE_EH_FILTER statement
3952 GS. */
3954 static inline tree *
3955 gimple_eh_filter_types_ptr (gimple *gs)
3957 geh_filter *eh_filter_stmt = as_a <geh_filter *> (gs);
3958 return &eh_filter_stmt->types;
3962 /* Return a pointer to the sequence of statement to execute when
3963 GIMPLE_EH_FILTER statement fails. */
3965 static inline gimple_seq *
3966 gimple_eh_filter_failure_ptr (gimple *gs)
3968 geh_filter *eh_filter_stmt = as_a <geh_filter *> (gs);
3969 return &eh_filter_stmt->failure;
3973 /* Return the sequence of statement to execute when GIMPLE_EH_FILTER
3974 statement fails. */
3976 static inline gimple_seq
3977 gimple_eh_filter_failure (gimple *gs)
3979 return *gimple_eh_filter_failure_ptr (gs);
3983 /* Set TYPES to be the set of types handled by GIMPLE_EH_FILTER
3984 EH_FILTER_STMT. */
3986 static inline void
3987 gimple_eh_filter_set_types (geh_filter *eh_filter_stmt, tree types)
3989 eh_filter_stmt->types = types;
3993 /* Set FAILURE to be the sequence of statements to execute on failure
3994 for GIMPLE_EH_FILTER EH_FILTER_STMT. */
3996 static inline void
3997 gimple_eh_filter_set_failure (geh_filter *eh_filter_stmt,
3998 gimple_seq failure)
4000 eh_filter_stmt->failure = failure;
4003 /* Get the function decl to be called by the MUST_NOT_THROW region. */
4005 static inline tree
4006 gimple_eh_must_not_throw_fndecl (geh_mnt *eh_mnt_stmt)
4008 return eh_mnt_stmt->fndecl;
4011 /* Set the function decl to be called by GS to DECL. */
4013 static inline void
4014 gimple_eh_must_not_throw_set_fndecl (geh_mnt *eh_mnt_stmt,
4015 tree decl)
4017 eh_mnt_stmt->fndecl = decl;
4020 /* GIMPLE_EH_ELSE accessors. */
4022 static inline gimple_seq *
4023 gimple_eh_else_n_body_ptr (geh_else *eh_else_stmt)
4025 return &eh_else_stmt->n_body;
4028 static inline gimple_seq
4029 gimple_eh_else_n_body (geh_else *eh_else_stmt)
4031 return *gimple_eh_else_n_body_ptr (eh_else_stmt);
4034 static inline gimple_seq *
4035 gimple_eh_else_e_body_ptr (geh_else *eh_else_stmt)
4037 return &eh_else_stmt->e_body;
4040 static inline gimple_seq
4041 gimple_eh_else_e_body (geh_else *eh_else_stmt)
4043 return *gimple_eh_else_e_body_ptr (eh_else_stmt);
4046 static inline void
4047 gimple_eh_else_set_n_body (geh_else *eh_else_stmt, gimple_seq seq)
4049 eh_else_stmt->n_body = seq;
4052 static inline void
4053 gimple_eh_else_set_e_body (geh_else *eh_else_stmt, gimple_seq seq)
4055 eh_else_stmt->e_body = seq;
4058 /* GIMPLE_TRY accessors. */
4060 /* Return the kind of try block represented by GIMPLE_TRY GS. This is
4061 either GIMPLE_TRY_CATCH or GIMPLE_TRY_FINALLY. */
4063 static inline enum gimple_try_flags
4064 gimple_try_kind (const gimple *gs)
4066 GIMPLE_CHECK (gs, GIMPLE_TRY);
4067 return (enum gimple_try_flags) (gs->subcode & GIMPLE_TRY_KIND);
4071 /* Set the kind of try block represented by GIMPLE_TRY GS. */
4073 static inline void
4074 gimple_try_set_kind (gtry *gs, enum gimple_try_flags kind)
4076 gcc_gimple_checking_assert (kind == GIMPLE_TRY_CATCH
4077 || kind == GIMPLE_TRY_FINALLY);
4078 if (gimple_try_kind (gs) != kind)
4079 gs->subcode = (unsigned int) kind;
4083 /* Return the GIMPLE_TRY_CATCH_IS_CLEANUP flag. */
4085 static inline bool
4086 gimple_try_catch_is_cleanup (const gimple *gs)
4088 gcc_gimple_checking_assert (gimple_try_kind (gs) == GIMPLE_TRY_CATCH);
4089 return (gs->subcode & GIMPLE_TRY_CATCH_IS_CLEANUP) != 0;
4093 /* Return a pointer to the sequence of statements used as the
4094 body for GIMPLE_TRY GS. */
4096 static inline gimple_seq *
4097 gimple_try_eval_ptr (gimple *gs)
4099 gtry *try_stmt = as_a <gtry *> (gs);
4100 return &try_stmt->eval;
4104 /* Return the sequence of statements used as the body for GIMPLE_TRY GS. */
4106 static inline gimple_seq
4107 gimple_try_eval (gimple *gs)
4109 return *gimple_try_eval_ptr (gs);
4113 /* Return a pointer to the sequence of statements used as the cleanup body for
4114 GIMPLE_TRY GS. */
4116 static inline gimple_seq *
4117 gimple_try_cleanup_ptr (gimple *gs)
4119 gtry *try_stmt = as_a <gtry *> (gs);
4120 return &try_stmt->cleanup;
4124 /* Return the sequence of statements used as the cleanup body for
4125 GIMPLE_TRY GS. */
4127 static inline gimple_seq
4128 gimple_try_cleanup (gimple *gs)
4130 return *gimple_try_cleanup_ptr (gs);
4134 /* Set the GIMPLE_TRY_CATCH_IS_CLEANUP flag. */
4136 static inline void
4137 gimple_try_set_catch_is_cleanup (gtry *g, bool catch_is_cleanup)
4139 gcc_gimple_checking_assert (gimple_try_kind (g) == GIMPLE_TRY_CATCH);
4140 if (catch_is_cleanup)
4141 g->subcode |= GIMPLE_TRY_CATCH_IS_CLEANUP;
4142 else
4143 g->subcode &= ~GIMPLE_TRY_CATCH_IS_CLEANUP;
4147 /* Set EVAL to be the sequence of statements to use as the body for
4148 GIMPLE_TRY TRY_STMT. */
4150 static inline void
4151 gimple_try_set_eval (gtry *try_stmt, gimple_seq eval)
4153 try_stmt->eval = eval;
4157 /* Set CLEANUP to be the sequence of statements to use as the cleanup
4158 body for GIMPLE_TRY TRY_STMT. */
4160 static inline void
4161 gimple_try_set_cleanup (gtry *try_stmt, gimple_seq cleanup)
4163 try_stmt->cleanup = cleanup;
4167 /* Return a pointer to the cleanup sequence for cleanup statement GS. */
4169 static inline gimple_seq *
4170 gimple_wce_cleanup_ptr (gimple *gs)
4172 gimple_statement_wce *wce_stmt = as_a <gimple_statement_wce *> (gs);
4173 return &wce_stmt->cleanup;
4177 /* Return the cleanup sequence for cleanup statement GS. */
4179 static inline gimple_seq
4180 gimple_wce_cleanup (gimple *gs)
4182 return *gimple_wce_cleanup_ptr (gs);
4186 /* Set CLEANUP to be the cleanup sequence for GS. */
4188 static inline void
4189 gimple_wce_set_cleanup (gimple *gs, gimple_seq cleanup)
4191 gimple_statement_wce *wce_stmt = as_a <gimple_statement_wce *> (gs);
4192 wce_stmt->cleanup = cleanup;
4196 /* Return the CLEANUP_EH_ONLY flag for a WCE tuple. */
4198 static inline bool
4199 gimple_wce_cleanup_eh_only (const gimple *gs)
4201 GIMPLE_CHECK (gs, GIMPLE_WITH_CLEANUP_EXPR);
4202 return gs->subcode != 0;
4206 /* Set the CLEANUP_EH_ONLY flag for a WCE tuple. */
4208 static inline void
4209 gimple_wce_set_cleanup_eh_only (gimple *gs, bool eh_only_p)
4211 GIMPLE_CHECK (gs, GIMPLE_WITH_CLEANUP_EXPR);
4212 gs->subcode = (unsigned int) eh_only_p;
4216 /* Return the maximum number of arguments supported by GIMPLE_PHI GS. */
4218 static inline unsigned
4219 gimple_phi_capacity (const gimple *gs)
4221 const gphi *phi_stmt = as_a <const gphi *> (gs);
4222 return phi_stmt->capacity;
4226 /* Return the number of arguments in GIMPLE_PHI GS. This must always
4227 be exactly the number of incoming edges for the basic block holding
4228 GS. */
4230 static inline unsigned
4231 gimple_phi_num_args (const gimple *gs)
4233 const gphi *phi_stmt = as_a <const gphi *> (gs);
4234 return phi_stmt->nargs;
4238 /* Return the SSA name created by GIMPLE_PHI GS. */
4240 static inline tree
4241 gimple_phi_result (const gimple *gs)
4243 const gphi *phi_stmt = as_a <const gphi *> (gs);
4244 return phi_stmt->result;
4247 /* Return a pointer to the SSA name created by GIMPLE_PHI GS. */
4249 static inline tree *
4250 gimple_phi_result_ptr (gimple *gs)
4252 gphi *phi_stmt = as_a <gphi *> (gs);
4253 return &phi_stmt->result;
4256 /* Set RESULT to be the SSA name created by GIMPLE_PHI PHI. */
4258 static inline void
4259 gimple_phi_set_result (gphi *phi, tree result)
4261 phi->result = result;
4262 if (result && TREE_CODE (result) == SSA_NAME)
4263 SSA_NAME_DEF_STMT (result) = phi;
4267 /* Return the PHI argument corresponding to incoming edge INDEX for
4268 GIMPLE_PHI GS. */
4270 static inline struct phi_arg_d *
4271 gimple_phi_arg (gimple *gs, unsigned index)
4273 gphi *phi_stmt = as_a <gphi *> (gs);
4274 gcc_gimple_checking_assert (index <= phi_stmt->capacity);
4275 return &(phi_stmt->args[index]);
4278 /* Set PHIARG to be the argument corresponding to incoming edge INDEX
4279 for GIMPLE_PHI PHI. */
4281 static inline void
4282 gimple_phi_set_arg (gphi *phi, unsigned index, struct phi_arg_d * phiarg)
4284 gcc_gimple_checking_assert (index <= phi->nargs);
4285 phi->args[index] = *phiarg;
4288 /* Return the PHI nodes for basic block BB, or NULL if there are no
4289 PHI nodes. */
4291 static inline gimple_seq
4292 phi_nodes (const_basic_block bb)
4294 gcc_checking_assert (!(bb->flags & BB_RTL));
4295 return bb->il.gimple.phi_nodes;
4298 /* Return a pointer to the PHI nodes for basic block BB. */
4300 static inline gimple_seq *
4301 phi_nodes_ptr (basic_block bb)
4303 gcc_checking_assert (!(bb->flags & BB_RTL));
4304 return &bb->il.gimple.phi_nodes;
4307 /* Return the tree operand for argument I of PHI node GS. */
4309 static inline tree
4310 gimple_phi_arg_def (gimple *gs, size_t index)
4312 return gimple_phi_arg (gs, index)->def;
4316 /* Return a pointer to the tree operand for argument I of phi node PHI. */
4318 static inline tree *
4319 gimple_phi_arg_def_ptr (gphi *phi, size_t index)
4321 return &gimple_phi_arg (phi, index)->def;
4324 /* Return the edge associated with argument I of phi node PHI. */
4326 static inline edge
4327 gimple_phi_arg_edge (gphi *phi, size_t i)
4329 return EDGE_PRED (gimple_bb (phi), i);
4332 /* Return the source location of gimple argument I of phi node PHI. */
4334 static inline source_location
4335 gimple_phi_arg_location (gphi *phi, size_t i)
4337 return gimple_phi_arg (phi, i)->locus;
4340 /* Return the source location of the argument on edge E of phi node PHI. */
4342 static inline source_location
4343 gimple_phi_arg_location_from_edge (gphi *phi, edge e)
4345 return gimple_phi_arg (phi, e->dest_idx)->locus;
4348 /* Set the source location of gimple argument I of phi node PHI to LOC. */
4350 static inline void
4351 gimple_phi_arg_set_location (gphi *phi, size_t i, source_location loc)
4353 gimple_phi_arg (phi, i)->locus = loc;
4356 /* Return TRUE if argument I of phi node PHI has a location record. */
4358 static inline bool
4359 gimple_phi_arg_has_location (gphi *phi, size_t i)
4361 return gimple_phi_arg_location (phi, i) != UNKNOWN_LOCATION;
4365 /* Return the region number for GIMPLE_RESX RESX_STMT. */
4367 static inline int
4368 gimple_resx_region (const gresx *resx_stmt)
4370 return resx_stmt->region;
4373 /* Set REGION to be the region number for GIMPLE_RESX RESX_STMT. */
4375 static inline void
4376 gimple_resx_set_region (gresx *resx_stmt, int region)
4378 resx_stmt->region = region;
4381 /* Return the region number for GIMPLE_EH_DISPATCH EH_DISPATCH_STMT. */
4383 static inline int
4384 gimple_eh_dispatch_region (const geh_dispatch *eh_dispatch_stmt)
4386 return eh_dispatch_stmt->region;
4389 /* Set REGION to be the region number for GIMPLE_EH_DISPATCH
4390 EH_DISPATCH_STMT. */
4392 static inline void
4393 gimple_eh_dispatch_set_region (geh_dispatch *eh_dispatch_stmt, int region)
4395 eh_dispatch_stmt->region = region;
4398 /* Return the number of labels associated with the switch statement GS. */
4400 static inline unsigned
4401 gimple_switch_num_labels (const gswitch *gs)
4403 unsigned num_ops;
4404 GIMPLE_CHECK (gs, GIMPLE_SWITCH);
4405 num_ops = gimple_num_ops (gs);
4406 gcc_gimple_checking_assert (num_ops > 1);
4407 return num_ops - 1;
4411 /* Set NLABELS to be the number of labels for the switch statement GS. */
4413 static inline void
4414 gimple_switch_set_num_labels (gswitch *g, unsigned nlabels)
4416 GIMPLE_CHECK (g, GIMPLE_SWITCH);
4417 gimple_set_num_ops (g, nlabels + 1);
4421 /* Return the index variable used by the switch statement GS. */
4423 static inline tree
4424 gimple_switch_index (const gswitch *gs)
4426 return gs->op[0];
4430 /* Return a pointer to the index variable for the switch statement GS. */
4432 static inline tree *
4433 gimple_switch_index_ptr (gswitch *gs)
4435 return &gs->op[0];
4439 /* Set INDEX to be the index variable for switch statement GS. */
4441 static inline void
4442 gimple_switch_set_index (gswitch *gs, tree index)
4444 gcc_gimple_checking_assert (SSA_VAR_P (index) || CONSTANT_CLASS_P (index));
4445 gs->op[0] = index;
4449 /* Return the label numbered INDEX. The default label is 0, followed by any
4450 labels in a switch statement. */
4452 static inline tree
4453 gimple_switch_label (const gswitch *gs, unsigned index)
4455 gcc_gimple_checking_assert (gimple_num_ops (gs) > index + 1);
4456 return gs->op[index + 1];
4459 /* Set the label number INDEX to LABEL. 0 is always the default label. */
4461 static inline void
4462 gimple_switch_set_label (gswitch *gs, unsigned index, tree label)
4464 gcc_gimple_checking_assert (gimple_num_ops (gs) > index + 1
4465 && (label == NULL_TREE
4466 || TREE_CODE (label) == CASE_LABEL_EXPR));
4467 gs->op[index + 1] = label;
4470 /* Return the default label for a switch statement. */
4472 static inline tree
4473 gimple_switch_default_label (const gswitch *gs)
4475 tree label = gimple_switch_label (gs, 0);
4476 gcc_checking_assert (!CASE_LOW (label) && !CASE_HIGH (label));
4477 return label;
4480 /* Set the default label for a switch statement. */
4482 static inline void
4483 gimple_switch_set_default_label (gswitch *gs, tree label)
4485 gcc_checking_assert (!CASE_LOW (label) && !CASE_HIGH (label));
4486 gimple_switch_set_label (gs, 0, label);
4489 /* Return true if GS is a GIMPLE_DEBUG statement. */
4491 static inline bool
4492 is_gimple_debug (const gimple *gs)
4494 return gimple_code (gs) == GIMPLE_DEBUG;
4497 /* Return true if S is a GIMPLE_DEBUG BIND statement. */
4499 static inline bool
4500 gimple_debug_bind_p (const gimple *s)
4502 if (is_gimple_debug (s))
4503 return s->subcode == GIMPLE_DEBUG_BIND;
4505 return false;
4508 /* Return the variable bound in a GIMPLE_DEBUG bind statement. */
4510 static inline tree
4511 gimple_debug_bind_get_var (gimple *dbg)
4513 GIMPLE_CHECK (dbg, GIMPLE_DEBUG);
4514 gcc_gimple_checking_assert (gimple_debug_bind_p (dbg));
4515 return gimple_op (dbg, 0);
4518 /* Return the value bound to the variable in a GIMPLE_DEBUG bind
4519 statement. */
4521 static inline tree
4522 gimple_debug_bind_get_value (gimple *dbg)
4524 GIMPLE_CHECK (dbg, GIMPLE_DEBUG);
4525 gcc_gimple_checking_assert (gimple_debug_bind_p (dbg));
4526 return gimple_op (dbg, 1);
4529 /* Return a pointer to the value bound to the variable in a
4530 GIMPLE_DEBUG bind statement. */
4532 static inline tree *
4533 gimple_debug_bind_get_value_ptr (gimple *dbg)
4535 GIMPLE_CHECK (dbg, GIMPLE_DEBUG);
4536 gcc_gimple_checking_assert (gimple_debug_bind_p (dbg));
4537 return gimple_op_ptr (dbg, 1);
4540 /* Set the variable bound in a GIMPLE_DEBUG bind statement. */
4542 static inline void
4543 gimple_debug_bind_set_var (gimple *dbg, tree var)
4545 GIMPLE_CHECK (dbg, GIMPLE_DEBUG);
4546 gcc_gimple_checking_assert (gimple_debug_bind_p (dbg));
4547 gimple_set_op (dbg, 0, var);
4550 /* Set the value bound to the variable in a GIMPLE_DEBUG bind
4551 statement. */
4553 static inline void
4554 gimple_debug_bind_set_value (gimple *dbg, tree value)
4556 GIMPLE_CHECK (dbg, GIMPLE_DEBUG);
4557 gcc_gimple_checking_assert (gimple_debug_bind_p (dbg));
4558 gimple_set_op (dbg, 1, value);
4561 /* The second operand of a GIMPLE_DEBUG_BIND, when the value was
4562 optimized away. */
4563 #define GIMPLE_DEBUG_BIND_NOVALUE NULL_TREE /* error_mark_node */
4565 /* Remove the value bound to the variable in a GIMPLE_DEBUG bind
4566 statement. */
4568 static inline void
4569 gimple_debug_bind_reset_value (gimple *dbg)
4571 GIMPLE_CHECK (dbg, GIMPLE_DEBUG);
4572 gcc_gimple_checking_assert (gimple_debug_bind_p (dbg));
4573 gimple_set_op (dbg, 1, GIMPLE_DEBUG_BIND_NOVALUE);
4576 /* Return true if the GIMPLE_DEBUG bind statement is bound to a
4577 value. */
4579 static inline bool
4580 gimple_debug_bind_has_value_p (gimple *dbg)
4582 GIMPLE_CHECK (dbg, GIMPLE_DEBUG);
4583 gcc_gimple_checking_assert (gimple_debug_bind_p (dbg));
4584 return gimple_op (dbg, 1) != GIMPLE_DEBUG_BIND_NOVALUE;
4587 #undef GIMPLE_DEBUG_BIND_NOVALUE
4589 /* Return true if S is a GIMPLE_DEBUG SOURCE BIND statement. */
4591 static inline bool
4592 gimple_debug_source_bind_p (const gimple *s)
4594 if (is_gimple_debug (s))
4595 return s->subcode == GIMPLE_DEBUG_SOURCE_BIND;
4597 return false;
4600 /* Return the variable bound in a GIMPLE_DEBUG source bind statement. */
4602 static inline tree
4603 gimple_debug_source_bind_get_var (gimple *dbg)
4605 GIMPLE_CHECK (dbg, GIMPLE_DEBUG);
4606 gcc_gimple_checking_assert (gimple_debug_source_bind_p (dbg));
4607 return gimple_op (dbg, 0);
4610 /* Return the value bound to the variable in a GIMPLE_DEBUG source bind
4611 statement. */
4613 static inline tree
4614 gimple_debug_source_bind_get_value (gimple *dbg)
4616 GIMPLE_CHECK (dbg, GIMPLE_DEBUG);
4617 gcc_gimple_checking_assert (gimple_debug_source_bind_p (dbg));
4618 return gimple_op (dbg, 1);
4621 /* Return a pointer to the value bound to the variable in a
4622 GIMPLE_DEBUG source bind statement. */
4624 static inline tree *
4625 gimple_debug_source_bind_get_value_ptr (gimple *dbg)
4627 GIMPLE_CHECK (dbg, GIMPLE_DEBUG);
4628 gcc_gimple_checking_assert (gimple_debug_source_bind_p (dbg));
4629 return gimple_op_ptr (dbg, 1);
4632 /* Set the variable bound in a GIMPLE_DEBUG source bind statement. */
4634 static inline void
4635 gimple_debug_source_bind_set_var (gimple *dbg, tree var)
4637 GIMPLE_CHECK (dbg, GIMPLE_DEBUG);
4638 gcc_gimple_checking_assert (gimple_debug_source_bind_p (dbg));
4639 gimple_set_op (dbg, 0, var);
4642 /* Set the value bound to the variable in a GIMPLE_DEBUG source bind
4643 statement. */
4645 static inline void
4646 gimple_debug_source_bind_set_value (gimple *dbg, tree value)
4648 GIMPLE_CHECK (dbg, GIMPLE_DEBUG);
4649 gcc_gimple_checking_assert (gimple_debug_source_bind_p (dbg));
4650 gimple_set_op (dbg, 1, value);
4653 /* Return the line number for EXPR, or return -1 if we have no line
4654 number information for it. */
4655 static inline int
4656 get_lineno (const gimple *stmt)
4658 location_t loc;
4660 if (!stmt)
4661 return -1;
4663 loc = gimple_location (stmt);
4664 if (loc == UNKNOWN_LOCATION)
4665 return -1;
4667 return LOCATION_LINE (loc);
4670 /* Return a pointer to the body for the OMP statement GS. */
4672 static inline gimple_seq *
4673 gimple_omp_body_ptr (gimple *gs)
4675 return &static_cast <gimple_statement_omp *> (gs)->body;
4678 /* Return the body for the OMP statement GS. */
4680 static inline gimple_seq
4681 gimple_omp_body (gimple *gs)
4683 return *gimple_omp_body_ptr (gs);
4686 /* Set BODY to be the body for the OMP statement GS. */
4688 static inline void
4689 gimple_omp_set_body (gimple *gs, gimple_seq body)
4691 static_cast <gimple_statement_omp *> (gs)->body = body;
4695 /* Return the name associated with OMP_CRITICAL statement CRIT_STMT. */
4697 static inline tree
4698 gimple_omp_critical_name (const gomp_critical *crit_stmt)
4700 return crit_stmt->name;
4704 /* Return a pointer to the name associated with OMP critical statement
4705 CRIT_STMT. */
4707 static inline tree *
4708 gimple_omp_critical_name_ptr (gomp_critical *crit_stmt)
4710 return &crit_stmt->name;
4714 /* Set NAME to be the name associated with OMP critical statement
4715 CRIT_STMT. */
4717 static inline void
4718 gimple_omp_critical_set_name (gomp_critical *crit_stmt, tree name)
4720 crit_stmt->name = name;
4724 /* Return the clauses associated with OMP_CRITICAL statement CRIT_STMT. */
4726 static inline tree
4727 gimple_omp_critical_clauses (const gomp_critical *crit_stmt)
4729 return crit_stmt->clauses;
4733 /* Return a pointer to the clauses associated with OMP critical statement
4734 CRIT_STMT. */
4736 static inline tree *
4737 gimple_omp_critical_clauses_ptr (gomp_critical *crit_stmt)
4739 return &crit_stmt->clauses;
4743 /* Set CLAUSES to be the clauses associated with OMP critical statement
4744 CRIT_STMT. */
4746 static inline void
4747 gimple_omp_critical_set_clauses (gomp_critical *crit_stmt, tree clauses)
4749 crit_stmt->clauses = clauses;
4753 /* Return the clauses associated with OMP_ORDERED statement ORD_STMT. */
4755 static inline tree
4756 gimple_omp_ordered_clauses (const gomp_ordered *ord_stmt)
4758 return ord_stmt->clauses;
4762 /* Return a pointer to the clauses associated with OMP ordered statement
4763 ORD_STMT. */
4765 static inline tree *
4766 gimple_omp_ordered_clauses_ptr (gomp_ordered *ord_stmt)
4768 return &ord_stmt->clauses;
4772 /* Set CLAUSES to be the clauses associated with OMP ordered statement
4773 ORD_STMT. */
4775 static inline void
4776 gimple_omp_ordered_set_clauses (gomp_ordered *ord_stmt, tree clauses)
4778 ord_stmt->clauses = clauses;
4782 /* Return the kind of the OMP_FOR statemement G. */
4784 static inline int
4785 gimple_omp_for_kind (const gimple *g)
4787 GIMPLE_CHECK (g, GIMPLE_OMP_FOR);
4788 return (gimple_omp_subcode (g) & GF_OMP_FOR_KIND_MASK);
4792 /* Set the kind of the OMP_FOR statement G. */
4794 static inline void
4795 gimple_omp_for_set_kind (gomp_for *g, int kind)
4797 g->subcode = (g->subcode & ~GF_OMP_FOR_KIND_MASK)
4798 | (kind & GF_OMP_FOR_KIND_MASK);
4802 /* Return true if OMP_FOR statement G has the
4803 GF_OMP_FOR_COMBINED flag set. */
4805 static inline bool
4806 gimple_omp_for_combined_p (const gimple *g)
4808 GIMPLE_CHECK (g, GIMPLE_OMP_FOR);
4809 return (gimple_omp_subcode (g) & GF_OMP_FOR_COMBINED) != 0;
4813 /* Set the GF_OMP_FOR_COMBINED field in the OMP_FOR statement G depending on
4814 the boolean value of COMBINED_P. */
4816 static inline void
4817 gimple_omp_for_set_combined_p (gomp_for *g, bool combined_p)
4819 if (combined_p)
4820 g->subcode |= GF_OMP_FOR_COMBINED;
4821 else
4822 g->subcode &= ~GF_OMP_FOR_COMBINED;
4826 /* Return true if the OMP_FOR statement G has the
4827 GF_OMP_FOR_COMBINED_INTO flag set. */
4829 static inline bool
4830 gimple_omp_for_combined_into_p (const gimple *g)
4832 GIMPLE_CHECK (g, GIMPLE_OMP_FOR);
4833 return (gimple_omp_subcode (g) & GF_OMP_FOR_COMBINED_INTO) != 0;
4837 /* Set the GF_OMP_FOR_COMBINED_INTO field in the OMP_FOR statement G depending
4838 on the boolean value of COMBINED_P. */
4840 static inline void
4841 gimple_omp_for_set_combined_into_p (gomp_for *g, bool combined_p)
4843 if (combined_p)
4844 g->subcode |= GF_OMP_FOR_COMBINED_INTO;
4845 else
4846 g->subcode &= ~GF_OMP_FOR_COMBINED_INTO;
4850 /* Return the clauses associated with the OMP_FOR statement GS. */
4852 static inline tree
4853 gimple_omp_for_clauses (const gimple *gs)
4855 const gomp_for *omp_for_stmt = as_a <const gomp_for *> (gs);
4856 return omp_for_stmt->clauses;
4860 /* Return a pointer to the clauses associated with the OMP_FOR statement
4861 GS. */
4863 static inline tree *
4864 gimple_omp_for_clauses_ptr (gimple *gs)
4866 gomp_for *omp_for_stmt = as_a <gomp_for *> (gs);
4867 return &omp_for_stmt->clauses;
4871 /* Set CLAUSES to be the list of clauses associated with the OMP_FOR statement
4872 GS. */
4874 static inline void
4875 gimple_omp_for_set_clauses (gimple *gs, tree clauses)
4877 gomp_for *omp_for_stmt = as_a <gomp_for *> (gs);
4878 omp_for_stmt->clauses = clauses;
4882 /* Get the collapse count of the OMP_FOR statement GS. */
4884 static inline size_t
4885 gimple_omp_for_collapse (gimple *gs)
4887 gomp_for *omp_for_stmt = as_a <gomp_for *> (gs);
4888 return omp_for_stmt->collapse;
4892 /* Return the condition code associated with the OMP_FOR statement GS. */
4894 static inline enum tree_code
4895 gimple_omp_for_cond (const gimple *gs, size_t i)
4897 const gomp_for *omp_for_stmt = as_a <const gomp_for *> (gs);
4898 gcc_gimple_checking_assert (i < omp_for_stmt->collapse);
4899 return omp_for_stmt->iter[i].cond;
4903 /* Set COND to be the condition code for the OMP_FOR statement GS. */
4905 static inline void
4906 gimple_omp_for_set_cond (gimple *gs, size_t i, enum tree_code cond)
4908 gomp_for *omp_for_stmt = as_a <gomp_for *> (gs);
4909 gcc_gimple_checking_assert (TREE_CODE_CLASS (cond) == tcc_comparison
4910 && i < omp_for_stmt->collapse);
4911 omp_for_stmt->iter[i].cond = cond;
4915 /* Return the index variable for the OMP_FOR statement GS. */
4917 static inline tree
4918 gimple_omp_for_index (const gimple *gs, size_t i)
4920 const gomp_for *omp_for_stmt = as_a <const gomp_for *> (gs);
4921 gcc_gimple_checking_assert (i < omp_for_stmt->collapse);
4922 return omp_for_stmt->iter[i].index;
4926 /* Return a pointer to the index variable for the OMP_FOR statement GS. */
4928 static inline tree *
4929 gimple_omp_for_index_ptr (gimple *gs, size_t i)
4931 gomp_for *omp_for_stmt = as_a <gomp_for *> (gs);
4932 gcc_gimple_checking_assert (i < omp_for_stmt->collapse);
4933 return &omp_for_stmt->iter[i].index;
4937 /* Set INDEX to be the index variable for the OMP_FOR statement GS. */
4939 static inline void
4940 gimple_omp_for_set_index (gimple *gs, size_t i, tree index)
4942 gomp_for *omp_for_stmt = as_a <gomp_for *> (gs);
4943 gcc_gimple_checking_assert (i < omp_for_stmt->collapse);
4944 omp_for_stmt->iter[i].index = index;
4948 /* Return the initial value for the OMP_FOR statement GS. */
4950 static inline tree
4951 gimple_omp_for_initial (const gimple *gs, size_t i)
4953 const gomp_for *omp_for_stmt = as_a <const gomp_for *> (gs);
4954 gcc_gimple_checking_assert (i < omp_for_stmt->collapse);
4955 return omp_for_stmt->iter[i].initial;
4959 /* Return a pointer to the initial value for the OMP_FOR statement GS. */
4961 static inline tree *
4962 gimple_omp_for_initial_ptr (gimple *gs, size_t i)
4964 gomp_for *omp_for_stmt = as_a <gomp_for *> (gs);
4965 gcc_gimple_checking_assert (i < omp_for_stmt->collapse);
4966 return &omp_for_stmt->iter[i].initial;
4970 /* Set INITIAL to be the initial value for the OMP_FOR statement GS. */
4972 static inline void
4973 gimple_omp_for_set_initial (gimple *gs, size_t i, tree initial)
4975 gomp_for *omp_for_stmt = as_a <gomp_for *> (gs);
4976 gcc_gimple_checking_assert (i < omp_for_stmt->collapse);
4977 omp_for_stmt->iter[i].initial = initial;
4981 /* Return the final value for the OMP_FOR statement GS. */
4983 static inline tree
4984 gimple_omp_for_final (const gimple *gs, size_t i)
4986 const gomp_for *omp_for_stmt = as_a <const gomp_for *> (gs);
4987 gcc_gimple_checking_assert (i < omp_for_stmt->collapse);
4988 return omp_for_stmt->iter[i].final;
4992 /* Return a pointer to the final value for the OMP_FOR statement GS. */
4994 static inline tree *
4995 gimple_omp_for_final_ptr (gimple *gs, size_t i)
4997 gomp_for *omp_for_stmt = as_a <gomp_for *> (gs);
4998 gcc_gimple_checking_assert (i < omp_for_stmt->collapse);
4999 return &omp_for_stmt->iter[i].final;
5003 /* Set FINAL to be the final value for the OMP_FOR statement GS. */
5005 static inline void
5006 gimple_omp_for_set_final (gimple *gs, size_t i, tree final)
5008 gomp_for *omp_for_stmt = as_a <gomp_for *> (gs);
5009 gcc_gimple_checking_assert (i < omp_for_stmt->collapse);
5010 omp_for_stmt->iter[i].final = final;
5014 /* Return the increment value for the OMP_FOR statement GS. */
5016 static inline tree
5017 gimple_omp_for_incr (const gimple *gs, size_t i)
5019 const gomp_for *omp_for_stmt = as_a <const gomp_for *> (gs);
5020 gcc_gimple_checking_assert (i < omp_for_stmt->collapse);
5021 return omp_for_stmt->iter[i].incr;
5025 /* Return a pointer to the increment value for the OMP_FOR statement GS. */
5027 static inline tree *
5028 gimple_omp_for_incr_ptr (gimple *gs, size_t i)
5030 gomp_for *omp_for_stmt = as_a <gomp_for *> (gs);
5031 gcc_gimple_checking_assert (i < omp_for_stmt->collapse);
5032 return &omp_for_stmt->iter[i].incr;
5036 /* Set INCR to be the increment value for the OMP_FOR statement GS. */
5038 static inline void
5039 gimple_omp_for_set_incr (gimple *gs, size_t i, tree incr)
5041 gomp_for *omp_for_stmt = as_a <gomp_for *> (gs);
5042 gcc_gimple_checking_assert (i < omp_for_stmt->collapse);
5043 omp_for_stmt->iter[i].incr = incr;
5047 /* Return a pointer to the sequence of statements to execute before the OMP_FOR
5048 statement GS starts. */
5050 static inline gimple_seq *
5051 gimple_omp_for_pre_body_ptr (gimple *gs)
5053 gomp_for *omp_for_stmt = as_a <gomp_for *> (gs);
5054 return &omp_for_stmt->pre_body;
5058 /* Return the sequence of statements to execute before the OMP_FOR
5059 statement GS starts. */
5061 static inline gimple_seq
5062 gimple_omp_for_pre_body (gimple *gs)
5064 return *gimple_omp_for_pre_body_ptr (gs);
5068 /* Set PRE_BODY to be the sequence of statements to execute before the
5069 OMP_FOR statement GS starts. */
5071 static inline void
5072 gimple_omp_for_set_pre_body (gimple *gs, gimple_seq pre_body)
5074 gomp_for *omp_for_stmt = as_a <gomp_for *> (gs);
5075 omp_for_stmt->pre_body = pre_body;
5079 /* Return the clauses associated with OMP_PARALLEL GS. */
5081 static inline tree
5082 gimple_omp_parallel_clauses (const gimple *gs)
5084 const gomp_parallel *omp_parallel_stmt = as_a <const gomp_parallel *> (gs);
5085 return omp_parallel_stmt->clauses;
5089 /* Return a pointer to the clauses associated with OMP_PARALLEL_STMT. */
5091 static inline tree *
5092 gimple_omp_parallel_clauses_ptr (gomp_parallel *omp_parallel_stmt)
5094 return &omp_parallel_stmt->clauses;
5098 /* Set CLAUSES to be the list of clauses associated with OMP_PARALLEL_STMT. */
5100 static inline void
5101 gimple_omp_parallel_set_clauses (gomp_parallel *omp_parallel_stmt,
5102 tree clauses)
5104 omp_parallel_stmt->clauses = clauses;
5108 /* Return the child function used to hold the body of OMP_PARALLEL_STMT. */
5110 static inline tree
5111 gimple_omp_parallel_child_fn (const gomp_parallel *omp_parallel_stmt)
5113 return omp_parallel_stmt->child_fn;
5116 /* Return a pointer to the child function used to hold the body of
5117 OMP_PARALLEL_STMT. */
5119 static inline tree *
5120 gimple_omp_parallel_child_fn_ptr (gomp_parallel *omp_parallel_stmt)
5122 return &omp_parallel_stmt->child_fn;
5126 /* Set CHILD_FN to be the child function for OMP_PARALLEL_STMT. */
5128 static inline void
5129 gimple_omp_parallel_set_child_fn (gomp_parallel *omp_parallel_stmt,
5130 tree child_fn)
5132 omp_parallel_stmt->child_fn = child_fn;
5136 /* Return the artificial argument used to send variables and values
5137 from the parent to the children threads in OMP_PARALLEL_STMT. */
5139 static inline tree
5140 gimple_omp_parallel_data_arg (const gomp_parallel *omp_parallel_stmt)
5142 return omp_parallel_stmt->data_arg;
5146 /* Return a pointer to the data argument for OMP_PARALLEL_STMT. */
5148 static inline tree *
5149 gimple_omp_parallel_data_arg_ptr (gomp_parallel *omp_parallel_stmt)
5151 return &omp_parallel_stmt->data_arg;
5155 /* Set DATA_ARG to be the data argument for OMP_PARALLEL_STMT. */
5157 static inline void
5158 gimple_omp_parallel_set_data_arg (gomp_parallel *omp_parallel_stmt,
5159 tree data_arg)
5161 omp_parallel_stmt->data_arg = data_arg;
5165 /* Return the clauses associated with OMP_TASK GS. */
5167 static inline tree
5168 gimple_omp_task_clauses (const gimple *gs)
5170 const gomp_task *omp_task_stmt = as_a <const gomp_task *> (gs);
5171 return omp_task_stmt->clauses;
5175 /* Return a pointer to the clauses associated with OMP_TASK GS. */
5177 static inline tree *
5178 gimple_omp_task_clauses_ptr (gimple *gs)
5180 gomp_task *omp_task_stmt = as_a <gomp_task *> (gs);
5181 return &omp_task_stmt->clauses;
5185 /* Set CLAUSES to be the list of clauses associated with OMP_TASK
5186 GS. */
5188 static inline void
5189 gimple_omp_task_set_clauses (gimple *gs, tree clauses)
5191 gomp_task *omp_task_stmt = as_a <gomp_task *> (gs);
5192 omp_task_stmt->clauses = clauses;
5196 /* Return true if OMP task statement G has the
5197 GF_OMP_TASK_TASKLOOP flag set. */
5199 static inline bool
5200 gimple_omp_task_taskloop_p (const gimple *g)
5202 GIMPLE_CHECK (g, GIMPLE_OMP_TASK);
5203 return (gimple_omp_subcode (g) & GF_OMP_TASK_TASKLOOP) != 0;
5207 /* Set the GF_OMP_TASK_TASKLOOP field in G depending on the boolean
5208 value of TASKLOOP_P. */
5210 static inline void
5211 gimple_omp_task_set_taskloop_p (gimple *g, bool taskloop_p)
5213 GIMPLE_CHECK (g, GIMPLE_OMP_TASK);
5214 if (taskloop_p)
5215 g->subcode |= GF_OMP_TASK_TASKLOOP;
5216 else
5217 g->subcode &= ~GF_OMP_TASK_TASKLOOP;
5221 /* Return the child function used to hold the body of OMP_TASK GS. */
5223 static inline tree
5224 gimple_omp_task_child_fn (const gimple *gs)
5226 const gomp_task *omp_task_stmt = as_a <const gomp_task *> (gs);
5227 return omp_task_stmt->child_fn;
5230 /* Return a pointer to the child function used to hold the body of
5231 OMP_TASK GS. */
5233 static inline tree *
5234 gimple_omp_task_child_fn_ptr (gimple *gs)
5236 gomp_task *omp_task_stmt = as_a <gomp_task *> (gs);
5237 return &omp_task_stmt->child_fn;
5241 /* Set CHILD_FN to be the child function for OMP_TASK GS. */
5243 static inline void
5244 gimple_omp_task_set_child_fn (gimple *gs, tree child_fn)
5246 gomp_task *omp_task_stmt = as_a <gomp_task *> (gs);
5247 omp_task_stmt->child_fn = child_fn;
5251 /* Return the artificial argument used to send variables and values
5252 from the parent to the children threads in OMP_TASK GS. */
5254 static inline tree
5255 gimple_omp_task_data_arg (const gimple *gs)
5257 const gomp_task *omp_task_stmt = as_a <const gomp_task *> (gs);
5258 return omp_task_stmt->data_arg;
5262 /* Return a pointer to the data argument for OMP_TASK GS. */
5264 static inline tree *
5265 gimple_omp_task_data_arg_ptr (gimple *gs)
5267 gomp_task *omp_task_stmt = as_a <gomp_task *> (gs);
5268 return &omp_task_stmt->data_arg;
5272 /* Set DATA_ARG to be the data argument for OMP_TASK GS. */
5274 static inline void
5275 gimple_omp_task_set_data_arg (gimple *gs, tree data_arg)
5277 gomp_task *omp_task_stmt = as_a <gomp_task *> (gs);
5278 omp_task_stmt->data_arg = data_arg;
5282 /* Return the clauses associated with OMP_TASK GS. */
5284 static inline tree
5285 gimple_omp_taskreg_clauses (const gimple *gs)
5287 const gimple_statement_omp_taskreg *omp_taskreg_stmt
5288 = as_a <const gimple_statement_omp_taskreg *> (gs);
5289 return omp_taskreg_stmt->clauses;
5293 /* Return a pointer to the clauses associated with OMP_TASK GS. */
5295 static inline tree *
5296 gimple_omp_taskreg_clauses_ptr (gimple *gs)
5298 gimple_statement_omp_taskreg *omp_taskreg_stmt
5299 = as_a <gimple_statement_omp_taskreg *> (gs);
5300 return &omp_taskreg_stmt->clauses;
5304 /* Set CLAUSES to be the list of clauses associated with OMP_TASK
5305 GS. */
5307 static inline void
5308 gimple_omp_taskreg_set_clauses (gimple *gs, tree clauses)
5310 gimple_statement_omp_taskreg *omp_taskreg_stmt
5311 = as_a <gimple_statement_omp_taskreg *> (gs);
5312 omp_taskreg_stmt->clauses = clauses;
5316 /* Return the child function used to hold the body of OMP_TASK GS. */
5318 static inline tree
5319 gimple_omp_taskreg_child_fn (const gimple *gs)
5321 const gimple_statement_omp_taskreg *omp_taskreg_stmt
5322 = as_a <const gimple_statement_omp_taskreg *> (gs);
5323 return omp_taskreg_stmt->child_fn;
5326 /* Return a pointer to the child function used to hold the body of
5327 OMP_TASK GS. */
5329 static inline tree *
5330 gimple_omp_taskreg_child_fn_ptr (gimple *gs)
5332 gimple_statement_omp_taskreg *omp_taskreg_stmt
5333 = as_a <gimple_statement_omp_taskreg *> (gs);
5334 return &omp_taskreg_stmt->child_fn;
5338 /* Set CHILD_FN to be the child function for OMP_TASK GS. */
5340 static inline void
5341 gimple_omp_taskreg_set_child_fn (gimple *gs, tree child_fn)
5343 gimple_statement_omp_taskreg *omp_taskreg_stmt
5344 = as_a <gimple_statement_omp_taskreg *> (gs);
5345 omp_taskreg_stmt->child_fn = child_fn;
5349 /* Return the artificial argument used to send variables and values
5350 from the parent to the children threads in OMP_TASK GS. */
5352 static inline tree
5353 gimple_omp_taskreg_data_arg (const gimple *gs)
5355 const gimple_statement_omp_taskreg *omp_taskreg_stmt
5356 = as_a <const gimple_statement_omp_taskreg *> (gs);
5357 return omp_taskreg_stmt->data_arg;
5361 /* Return a pointer to the data argument for OMP_TASK GS. */
5363 static inline tree *
5364 gimple_omp_taskreg_data_arg_ptr (gimple *gs)
5366 gimple_statement_omp_taskreg *omp_taskreg_stmt
5367 = as_a <gimple_statement_omp_taskreg *> (gs);
5368 return &omp_taskreg_stmt->data_arg;
5372 /* Set DATA_ARG to be the data argument for OMP_TASK GS. */
5374 static inline void
5375 gimple_omp_taskreg_set_data_arg (gimple *gs, tree data_arg)
5377 gimple_statement_omp_taskreg *omp_taskreg_stmt
5378 = as_a <gimple_statement_omp_taskreg *> (gs);
5379 omp_taskreg_stmt->data_arg = data_arg;
5383 /* Return the copy function used to hold the body of OMP_TASK GS. */
5385 static inline tree
5386 gimple_omp_task_copy_fn (const gimple *gs)
5388 const gomp_task *omp_task_stmt = as_a <const gomp_task *> (gs);
5389 return omp_task_stmt->copy_fn;
5392 /* Return a pointer to the copy function used to hold the body of
5393 OMP_TASK GS. */
5395 static inline tree *
5396 gimple_omp_task_copy_fn_ptr (gimple *gs)
5398 gomp_task *omp_task_stmt = as_a <gomp_task *> (gs);
5399 return &omp_task_stmt->copy_fn;
5403 /* Set CHILD_FN to be the copy function for OMP_TASK GS. */
5405 static inline void
5406 gimple_omp_task_set_copy_fn (gimple *gs, tree copy_fn)
5408 gomp_task *omp_task_stmt = as_a <gomp_task *> (gs);
5409 omp_task_stmt->copy_fn = copy_fn;
5413 /* Return size of the data block in bytes in OMP_TASK GS. */
5415 static inline tree
5416 gimple_omp_task_arg_size (const gimple *gs)
5418 const gomp_task *omp_task_stmt = as_a <const gomp_task *> (gs);
5419 return omp_task_stmt->arg_size;
5423 /* Return a pointer to the data block size for OMP_TASK GS. */
5425 static inline tree *
5426 gimple_omp_task_arg_size_ptr (gimple *gs)
5428 gomp_task *omp_task_stmt = as_a <gomp_task *> (gs);
5429 return &omp_task_stmt->arg_size;
5433 /* Set ARG_SIZE to be the data block size for OMP_TASK GS. */
5435 static inline void
5436 gimple_omp_task_set_arg_size (gimple *gs, tree arg_size)
5438 gomp_task *omp_task_stmt = as_a <gomp_task *> (gs);
5439 omp_task_stmt->arg_size = arg_size;
5443 /* Return align of the data block in bytes in OMP_TASK GS. */
5445 static inline tree
5446 gimple_omp_task_arg_align (const gimple *gs)
5448 const gomp_task *omp_task_stmt = as_a <const gomp_task *> (gs);
5449 return omp_task_stmt->arg_align;
5453 /* Return a pointer to the data block align for OMP_TASK GS. */
5455 static inline tree *
5456 gimple_omp_task_arg_align_ptr (gimple *gs)
5458 gomp_task *omp_task_stmt = as_a <gomp_task *> (gs);
5459 return &omp_task_stmt->arg_align;
5463 /* Set ARG_SIZE to be the data block align for OMP_TASK GS. */
5465 static inline void
5466 gimple_omp_task_set_arg_align (gimple *gs, tree arg_align)
5468 gomp_task *omp_task_stmt = as_a <gomp_task *> (gs);
5469 omp_task_stmt->arg_align = arg_align;
5473 /* Return the clauses associated with OMP_SINGLE GS. */
5475 static inline tree
5476 gimple_omp_single_clauses (const gimple *gs)
5478 const gomp_single *omp_single_stmt = as_a <const gomp_single *> (gs);
5479 return omp_single_stmt->clauses;
5483 /* Return a pointer to the clauses associated with OMP_SINGLE GS. */
5485 static inline tree *
5486 gimple_omp_single_clauses_ptr (gimple *gs)
5488 gomp_single *omp_single_stmt = as_a <gomp_single *> (gs);
5489 return &omp_single_stmt->clauses;
5493 /* Set CLAUSES to be the clauses associated with OMP_SINGLE_STMT. */
5495 static inline void
5496 gimple_omp_single_set_clauses (gomp_single *omp_single_stmt, tree clauses)
5498 omp_single_stmt->clauses = clauses;
5502 /* Return the clauses associated with OMP_TARGET GS. */
5504 static inline tree
5505 gimple_omp_target_clauses (const gimple *gs)
5507 const gomp_target *omp_target_stmt = as_a <const gomp_target *> (gs);
5508 return omp_target_stmt->clauses;
5512 /* Return a pointer to the clauses associated with OMP_TARGET GS. */
5514 static inline tree *
5515 gimple_omp_target_clauses_ptr (gimple *gs)
5517 gomp_target *omp_target_stmt = as_a <gomp_target *> (gs);
5518 return &omp_target_stmt->clauses;
5522 /* Set CLAUSES to be the clauses associated with OMP_TARGET_STMT. */
5524 static inline void
5525 gimple_omp_target_set_clauses (gomp_target *omp_target_stmt,
5526 tree clauses)
5528 omp_target_stmt->clauses = clauses;
5532 /* Return the kind of the OMP_TARGET G. */
5534 static inline int
5535 gimple_omp_target_kind (const gimple *g)
5537 GIMPLE_CHECK (g, GIMPLE_OMP_TARGET);
5538 return (gimple_omp_subcode (g) & GF_OMP_TARGET_KIND_MASK);
5542 /* Set the kind of the OMP_TARGET G. */
5544 static inline void
5545 gimple_omp_target_set_kind (gomp_target *g, int kind)
5547 g->subcode = (g->subcode & ~GF_OMP_TARGET_KIND_MASK)
5548 | (kind & GF_OMP_TARGET_KIND_MASK);
5552 /* Return the child function used to hold the body of OMP_TARGET_STMT. */
5554 static inline tree
5555 gimple_omp_target_child_fn (const gomp_target *omp_target_stmt)
5557 return omp_target_stmt->child_fn;
5560 /* Return a pointer to the child function used to hold the body of
5561 OMP_TARGET_STMT. */
5563 static inline tree *
5564 gimple_omp_target_child_fn_ptr (gomp_target *omp_target_stmt)
5566 return &omp_target_stmt->child_fn;
5570 /* Set CHILD_FN to be the child function for OMP_TARGET_STMT. */
5572 static inline void
5573 gimple_omp_target_set_child_fn (gomp_target *omp_target_stmt,
5574 tree child_fn)
5576 omp_target_stmt->child_fn = child_fn;
5580 /* Return the artificial argument used to send variables and values
5581 from the parent to the children threads in OMP_TARGET_STMT. */
5583 static inline tree
5584 gimple_omp_target_data_arg (const gomp_target *omp_target_stmt)
5586 return omp_target_stmt->data_arg;
5590 /* Return a pointer to the data argument for OMP_TARGET GS. */
5592 static inline tree *
5593 gimple_omp_target_data_arg_ptr (gomp_target *omp_target_stmt)
5595 return &omp_target_stmt->data_arg;
5599 /* Set DATA_ARG to be the data argument for OMP_TARGET_STMT. */
5601 static inline void
5602 gimple_omp_target_set_data_arg (gomp_target *omp_target_stmt,
5603 tree data_arg)
5605 omp_target_stmt->data_arg = data_arg;
5609 /* Return the clauses associated with OMP_TEAMS GS. */
5611 static inline tree
5612 gimple_omp_teams_clauses (const gimple *gs)
5614 const gomp_teams *omp_teams_stmt = as_a <const gomp_teams *> (gs);
5615 return omp_teams_stmt->clauses;
5619 /* Return a pointer to the clauses associated with OMP_TEAMS GS. */
5621 static inline tree *
5622 gimple_omp_teams_clauses_ptr (gimple *gs)
5624 gomp_teams *omp_teams_stmt = as_a <gomp_teams *> (gs);
5625 return &omp_teams_stmt->clauses;
5629 /* Set CLAUSES to be the clauses associated with OMP_TEAMS_STMT. */
5631 static inline void
5632 gimple_omp_teams_set_clauses (gomp_teams *omp_teams_stmt, tree clauses)
5634 omp_teams_stmt->clauses = clauses;
5638 /* Return the clauses associated with OMP_SECTIONS GS. */
5640 static inline tree
5641 gimple_omp_sections_clauses (const gimple *gs)
5643 const gomp_sections *omp_sections_stmt = as_a <const gomp_sections *> (gs);
5644 return omp_sections_stmt->clauses;
5648 /* Return a pointer to the clauses associated with OMP_SECTIONS GS. */
5650 static inline tree *
5651 gimple_omp_sections_clauses_ptr (gimple *gs)
5653 gomp_sections *omp_sections_stmt = as_a <gomp_sections *> (gs);
5654 return &omp_sections_stmt->clauses;
5658 /* Set CLAUSES to be the set of clauses associated with OMP_SECTIONS
5659 GS. */
5661 static inline void
5662 gimple_omp_sections_set_clauses (gimple *gs, tree clauses)
5664 gomp_sections *omp_sections_stmt = as_a <gomp_sections *> (gs);
5665 omp_sections_stmt->clauses = clauses;
5669 /* Return the control variable associated with the GIMPLE_OMP_SECTIONS
5670 in GS. */
5672 static inline tree
5673 gimple_omp_sections_control (const gimple *gs)
5675 const gomp_sections *omp_sections_stmt = as_a <const gomp_sections *> (gs);
5676 return omp_sections_stmt->control;
5680 /* Return a pointer to the clauses associated with the GIMPLE_OMP_SECTIONS
5681 GS. */
5683 static inline tree *
5684 gimple_omp_sections_control_ptr (gimple *gs)
5686 gomp_sections *omp_sections_stmt = as_a <gomp_sections *> (gs);
5687 return &omp_sections_stmt->control;
5691 /* Set CONTROL to be the set of clauses associated with the
5692 GIMPLE_OMP_SECTIONS in GS. */
5694 static inline void
5695 gimple_omp_sections_set_control (gimple *gs, tree control)
5697 gomp_sections *omp_sections_stmt = as_a <gomp_sections *> (gs);
5698 omp_sections_stmt->control = control;
5702 /* Set the value being stored in an atomic store. */
5704 static inline void
5705 gimple_omp_atomic_store_set_val (gomp_atomic_store *store_stmt, tree val)
5707 store_stmt->val = val;
5711 /* Return the value being stored in an atomic store. */
5713 static inline tree
5714 gimple_omp_atomic_store_val (const gomp_atomic_store *store_stmt)
5716 return store_stmt->val;
5720 /* Return a pointer to the value being stored in an atomic store. */
5722 static inline tree *
5723 gimple_omp_atomic_store_val_ptr (gomp_atomic_store *store_stmt)
5725 return &store_stmt->val;
5729 /* Set the LHS of an atomic load. */
5731 static inline void
5732 gimple_omp_atomic_load_set_lhs (gomp_atomic_load *load_stmt, tree lhs)
5734 load_stmt->lhs = lhs;
5738 /* Get the LHS of an atomic load. */
5740 static inline tree
5741 gimple_omp_atomic_load_lhs (const gomp_atomic_load *load_stmt)
5743 return load_stmt->lhs;
5747 /* Return a pointer to the LHS of an atomic load. */
5749 static inline tree *
5750 gimple_omp_atomic_load_lhs_ptr (gomp_atomic_load *load_stmt)
5752 return &load_stmt->lhs;
5756 /* Set the RHS of an atomic load. */
5758 static inline void
5759 gimple_omp_atomic_load_set_rhs (gomp_atomic_load *load_stmt, tree rhs)
5761 load_stmt->rhs = rhs;
5765 /* Get the RHS of an atomic load. */
5767 static inline tree
5768 gimple_omp_atomic_load_rhs (const gomp_atomic_load *load_stmt)
5770 return load_stmt->rhs;
5774 /* Return a pointer to the RHS of an atomic load. */
5776 static inline tree *
5777 gimple_omp_atomic_load_rhs_ptr (gomp_atomic_load *load_stmt)
5779 return &load_stmt->rhs;
5783 /* Get the definition of the control variable in a GIMPLE_OMP_CONTINUE. */
5785 static inline tree
5786 gimple_omp_continue_control_def (const gomp_continue *cont_stmt)
5788 return cont_stmt->control_def;
5791 /* The same as above, but return the address. */
5793 static inline tree *
5794 gimple_omp_continue_control_def_ptr (gomp_continue *cont_stmt)
5796 return &cont_stmt->control_def;
5799 /* Set the definition of the control variable in a GIMPLE_OMP_CONTINUE. */
5801 static inline void
5802 gimple_omp_continue_set_control_def (gomp_continue *cont_stmt, tree def)
5804 cont_stmt->control_def = def;
5808 /* Get the use of the control variable in a GIMPLE_OMP_CONTINUE. */
5810 static inline tree
5811 gimple_omp_continue_control_use (const gomp_continue *cont_stmt)
5813 return cont_stmt->control_use;
5817 /* The same as above, but return the address. */
5819 static inline tree *
5820 gimple_omp_continue_control_use_ptr (gomp_continue *cont_stmt)
5822 return &cont_stmt->control_use;
5826 /* Set the use of the control variable in a GIMPLE_OMP_CONTINUE. */
5828 static inline void
5829 gimple_omp_continue_set_control_use (gomp_continue *cont_stmt, tree use)
5831 cont_stmt->control_use = use;
5834 /* Return a pointer to the body for the GIMPLE_TRANSACTION statement
5835 TRANSACTION_STMT. */
5837 static inline gimple_seq *
5838 gimple_transaction_body_ptr (gtransaction *transaction_stmt)
5840 return &transaction_stmt->body;
5843 /* Return the body for the GIMPLE_TRANSACTION statement TRANSACTION_STMT. */
5845 static inline gimple_seq
5846 gimple_transaction_body (gtransaction *transaction_stmt)
5848 return *gimple_transaction_body_ptr (transaction_stmt);
5851 /* Return the label associated with a GIMPLE_TRANSACTION. */
5853 static inline tree
5854 gimple_transaction_label (const gtransaction *transaction_stmt)
5856 return transaction_stmt->label;
5859 static inline tree *
5860 gimple_transaction_label_ptr (gtransaction *transaction_stmt)
5862 return &transaction_stmt->label;
5865 /* Return the subcode associated with a GIMPLE_TRANSACTION. */
5867 static inline unsigned int
5868 gimple_transaction_subcode (const gtransaction *transaction_stmt)
5870 return transaction_stmt->subcode;
5873 /* Set BODY to be the body for the GIMPLE_TRANSACTION statement
5874 TRANSACTION_STMT. */
5876 static inline void
5877 gimple_transaction_set_body (gtransaction *transaction_stmt,
5878 gimple_seq body)
5880 transaction_stmt->body = body;
5883 /* Set the label associated with a GIMPLE_TRANSACTION. */
5885 static inline void
5886 gimple_transaction_set_label (gtransaction *transaction_stmt, tree label)
5888 transaction_stmt->label = label;
5891 /* Set the subcode associated with a GIMPLE_TRANSACTION. */
5893 static inline void
5894 gimple_transaction_set_subcode (gtransaction *transaction_stmt,
5895 unsigned int subcode)
5897 transaction_stmt->subcode = subcode;
5901 /* Return a pointer to the return value for GIMPLE_RETURN GS. */
5903 static inline tree *
5904 gimple_return_retval_ptr (greturn *gs)
5906 return &gs->op[0];
5909 /* Return the return value for GIMPLE_RETURN GS. */
5911 static inline tree
5912 gimple_return_retval (const greturn *gs)
5914 return gs->op[0];
5918 /* Set RETVAL to be the return value for GIMPLE_RETURN GS. */
5920 static inline void
5921 gimple_return_set_retval (greturn *gs, tree retval)
5923 gs->op[0] = retval;
5927 /* Return the return bounds for GIMPLE_RETURN GS. */
5929 static inline tree
5930 gimple_return_retbnd (const gimple *gs)
5932 GIMPLE_CHECK (gs, GIMPLE_RETURN);
5933 return gimple_op (gs, 1);
5937 /* Set RETVAL to be the return bounds for GIMPLE_RETURN GS. */
5939 static inline void
5940 gimple_return_set_retbnd (gimple *gs, tree retval)
5942 GIMPLE_CHECK (gs, GIMPLE_RETURN);
5943 gimple_set_op (gs, 1, retval);
5947 /* Returns true when the gimple statement STMT is any of the OMP types. */
5949 #define CASE_GIMPLE_OMP \
5950 case GIMPLE_OMP_PARALLEL: \
5951 case GIMPLE_OMP_TASK: \
5952 case GIMPLE_OMP_FOR: \
5953 case GIMPLE_OMP_SECTIONS: \
5954 case GIMPLE_OMP_SECTIONS_SWITCH: \
5955 case GIMPLE_OMP_SINGLE: \
5956 case GIMPLE_OMP_TARGET: \
5957 case GIMPLE_OMP_TEAMS: \
5958 case GIMPLE_OMP_SECTION: \
5959 case GIMPLE_OMP_MASTER: \
5960 case GIMPLE_OMP_TASKGROUP: \
5961 case GIMPLE_OMP_ORDERED: \
5962 case GIMPLE_OMP_CRITICAL: \
5963 case GIMPLE_OMP_RETURN: \
5964 case GIMPLE_OMP_ATOMIC_LOAD: \
5965 case GIMPLE_OMP_ATOMIC_STORE: \
5966 case GIMPLE_OMP_CONTINUE
5968 static inline bool
5969 is_gimple_omp (const gimple *stmt)
5971 switch (gimple_code (stmt))
5973 CASE_GIMPLE_OMP:
5974 return true;
5975 default:
5976 return false;
5980 /* Return true if the OMP gimple statement STMT is any of the OpenACC types
5981 specifically. */
5983 static inline bool
5984 is_gimple_omp_oacc (const gimple *stmt)
5986 gcc_assert (is_gimple_omp (stmt));
5987 switch (gimple_code (stmt))
5989 case GIMPLE_OMP_FOR:
5990 switch (gimple_omp_for_kind (stmt))
5992 case GF_OMP_FOR_KIND_OACC_LOOP:
5993 return true;
5994 default:
5995 return false;
5997 case GIMPLE_OMP_TARGET:
5998 switch (gimple_omp_target_kind (stmt))
6000 case GF_OMP_TARGET_KIND_OACC_PARALLEL:
6001 case GF_OMP_TARGET_KIND_OACC_KERNELS:
6002 case GF_OMP_TARGET_KIND_OACC_DATA:
6003 case GF_OMP_TARGET_KIND_OACC_UPDATE:
6004 case GF_OMP_TARGET_KIND_OACC_ENTER_EXIT_DATA:
6005 case GF_OMP_TARGET_KIND_OACC_DECLARE:
6006 return true;
6007 default:
6008 return false;
6010 default:
6011 return false;
6016 /* Return true if the OMP gimple statement STMT is offloaded. */
6018 static inline bool
6019 is_gimple_omp_offloaded (const gimple *stmt)
6021 gcc_assert (is_gimple_omp (stmt));
6022 switch (gimple_code (stmt))
6024 case GIMPLE_OMP_TARGET:
6025 switch (gimple_omp_target_kind (stmt))
6027 case GF_OMP_TARGET_KIND_REGION:
6028 case GF_OMP_TARGET_KIND_OACC_PARALLEL:
6029 case GF_OMP_TARGET_KIND_OACC_KERNELS:
6030 return true;
6031 default:
6032 return false;
6034 default:
6035 return false;
6040 /* Returns TRUE if statement G is a GIMPLE_NOP. */
6042 static inline bool
6043 gimple_nop_p (const gimple *g)
6045 return gimple_code (g) == GIMPLE_NOP;
6049 /* Return true if GS is a GIMPLE_RESX. */
6051 static inline bool
6052 is_gimple_resx (const gimple *gs)
6054 return gimple_code (gs) == GIMPLE_RESX;
6057 /* Return the type of the main expression computed by STMT. Return
6058 void_type_node if the statement computes nothing. */
6060 static inline tree
6061 gimple_expr_type (const gimple *stmt)
6063 enum gimple_code code = gimple_code (stmt);
6064 /* In general we want to pass out a type that can be substituted
6065 for both the RHS and the LHS types if there is a possibly
6066 useless conversion involved. That means returning the
6067 original RHS type as far as we can reconstruct it. */
6068 if (code == GIMPLE_CALL)
6070 const gcall *call_stmt = as_a <const gcall *> (stmt);
6071 if (gimple_call_internal_p (call_stmt)
6072 && gimple_call_internal_fn (call_stmt) == IFN_MASK_STORE)
6073 return TREE_TYPE (gimple_call_arg (call_stmt, 3));
6074 else
6075 return gimple_call_return_type (call_stmt);
6077 else if (code == GIMPLE_ASSIGN)
6079 if (gimple_assign_rhs_code (stmt) == POINTER_PLUS_EXPR)
6080 return TREE_TYPE (gimple_assign_rhs1 (stmt));
6081 else
6082 /* As fallback use the type of the LHS. */
6083 return TREE_TYPE (gimple_get_lhs (stmt));
6085 else if (code == GIMPLE_COND)
6086 return boolean_type_node;
6087 else
6088 return void_type_node;
6091 /* Enum and arrays used for allocation stats. Keep in sync with
6092 gimple.c:gimple_alloc_kind_names. */
6093 enum gimple_alloc_kind
6095 gimple_alloc_kind_assign, /* Assignments. */
6096 gimple_alloc_kind_phi, /* PHI nodes. */
6097 gimple_alloc_kind_cond, /* Conditionals. */
6098 gimple_alloc_kind_rest, /* Everything else. */
6099 gimple_alloc_kind_all
6102 extern int gimple_alloc_counts[];
6103 extern int gimple_alloc_sizes[];
6105 /* Return the allocation kind for a given stmt CODE. */
6106 static inline enum gimple_alloc_kind
6107 gimple_alloc_kind (enum gimple_code code)
6109 switch (code)
6111 case GIMPLE_ASSIGN:
6112 return gimple_alloc_kind_assign;
6113 case GIMPLE_PHI:
6114 return gimple_alloc_kind_phi;
6115 case GIMPLE_COND:
6116 return gimple_alloc_kind_cond;
6117 default:
6118 return gimple_alloc_kind_rest;
6122 /* Return true if a location should not be emitted for this statement
6123 by annotate_all_with_location. */
6125 static inline bool
6126 gimple_do_not_emit_location_p (gimple *g)
6128 return gimple_plf (g, GF_PLF_1);
6131 /* Mark statement G so a location will not be emitted by
6132 annotate_one_with_location. */
6134 static inline void
6135 gimple_set_do_not_emit_location (gimple *g)
6137 /* The PLF flags are initialized to 0 when a new tuple is created,
6138 so no need to initialize it anywhere. */
6139 gimple_set_plf (g, GF_PLF_1, true);
6143 /* Macros for showing usage statistics. */
6144 #define SCALE(x) ((unsigned long) ((x) < 1024*10 \
6145 ? (x) \
6146 : ((x) < 1024*1024*10 \
6147 ? (x) / 1024 \
6148 : (x) / (1024*1024))))
6150 #define LABEL(x) ((x) < 1024*10 ? 'b' : ((x) < 1024*1024*10 ? 'k' : 'M'))
6152 #endif /* GCC_GIMPLE_H */