testsuite: Correct vec-rlmi-rlnm.c testsuite expected result
[official-gcc.git] / gcc / gimple.h
blob3c9b9965f5a11093d6113f4950a1375dd7d591eb
1 /* Gimple IR definitions.
3 Copyright (C) 2007-2020 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 \
50 ATTRIBUTE_COLD;
52 #define GIMPLE_CHECK(GS, CODE) \
53 do { \
54 const gimple *__gs = (GS); \
55 if (gimple_code (__gs) != (CODE)) \
56 gimple_check_failed (__gs, __FILE__, __LINE__, __FUNCTION__, \
57 (CODE), ERROR_MARK); \
58 } while (0)
59 template <typename T>
60 static inline T
61 GIMPLE_CHECK2(const gimple *gs,
62 #if __GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 8)
63 const char *file = __builtin_FILE (),
64 int line = __builtin_LINE (),
65 const char *fun = __builtin_FUNCTION ())
66 #else
67 const char *file = __FILE__,
68 int line = __LINE__,
69 const char *fun = NULL)
70 #endif
72 T ret = dyn_cast <T> (gs);
73 if (!ret)
74 gimple_check_failed (gs, file, line, fun,
75 remove_pointer<T>::type::code_, ERROR_MARK);
76 return ret;
78 template <typename T>
79 static inline T
80 GIMPLE_CHECK2(gimple *gs,
81 #if __GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 8)
82 const char *file = __builtin_FILE (),
83 int line = __builtin_LINE (),
84 const char *fun = __builtin_FUNCTION ())
85 #else
86 const char *file = __FILE__,
87 int line = __LINE__,
88 const char *fun = NULL)
89 #endif
91 T ret = dyn_cast <T> (gs);
92 if (!ret)
93 gimple_check_failed (gs, file, line, fun,
94 remove_pointer<T>::type::code_, ERROR_MARK);
95 return ret;
97 #else /* not ENABLE_GIMPLE_CHECKING */
98 #define gcc_gimple_checking_assert(EXPR) ((void)(0 && (EXPR)))
99 #define GIMPLE_CHECK(GS, CODE) (void)0
100 template <typename T>
101 static inline T
102 GIMPLE_CHECK2(gimple *gs)
104 return as_a <T> (gs);
106 template <typename T>
107 static inline T
108 GIMPLE_CHECK2(const gimple *gs)
110 return as_a <T> (gs);
112 #endif
114 /* Class of GIMPLE expressions suitable for the RHS of assignments. See
115 get_gimple_rhs_class. */
116 enum gimple_rhs_class
118 GIMPLE_INVALID_RHS, /* The expression cannot be used on the RHS. */
119 GIMPLE_TERNARY_RHS, /* The expression is a ternary operation. */
120 GIMPLE_BINARY_RHS, /* The expression is a binary operation. */
121 GIMPLE_UNARY_RHS, /* The expression is a unary operation. */
122 GIMPLE_SINGLE_RHS /* The expression is a single object (an SSA
123 name, a _DECL, a _REF, etc. */
126 /* Specific flags for individual GIMPLE statements. These flags are
127 always stored in gimple.subcode and they may only be
128 defined for statement codes that do not use subcodes.
130 Values for the masks can overlap as long as the overlapping values
131 are never used in the same statement class.
133 The maximum mask value that can be defined is 1 << 15 (i.e., each
134 statement code can hold up to 16 bitflags).
136 Keep this list sorted. */
137 enum gf_mask {
138 GF_ASM_INPUT = 1 << 0,
139 GF_ASM_VOLATILE = 1 << 1,
140 GF_ASM_INLINE = 1 << 2,
141 GF_CALL_FROM_THUNK = 1 << 0,
142 GF_CALL_RETURN_SLOT_OPT = 1 << 1,
143 GF_CALL_TAILCALL = 1 << 2,
144 GF_CALL_VA_ARG_PACK = 1 << 3,
145 GF_CALL_NOTHROW = 1 << 4,
146 GF_CALL_ALLOCA_FOR_VAR = 1 << 5,
147 GF_CALL_INTERNAL = 1 << 6,
148 GF_CALL_CTRL_ALTERING = 1 << 7,
149 GF_CALL_MUST_TAIL_CALL = 1 << 9,
150 GF_CALL_BY_DESCRIPTOR = 1 << 10,
151 GF_CALL_NOCF_CHECK = 1 << 11,
152 GF_CALL_FROM_NEW_OR_DELETE = 1 << 12,
153 GF_OMP_PARALLEL_COMBINED = 1 << 0,
154 GF_OMP_TASK_TASKLOOP = 1 << 0,
155 GF_OMP_TASK_TASKWAIT = 1 << 1,
156 GF_OMP_FOR_KIND_MASK = (1 << 3) - 1,
157 GF_OMP_FOR_KIND_FOR = 0,
158 GF_OMP_FOR_KIND_DISTRIBUTE = 1,
159 GF_OMP_FOR_KIND_TASKLOOP = 2,
160 GF_OMP_FOR_KIND_OACC_LOOP = 4,
161 GF_OMP_FOR_KIND_SIMD = 5,
162 GF_OMP_FOR_COMBINED = 1 << 3,
163 GF_OMP_FOR_COMBINED_INTO = 1 << 4,
164 GF_OMP_TARGET_KIND_MASK = (1 << 4) - 1,
165 GF_OMP_TARGET_KIND_REGION = 0,
166 GF_OMP_TARGET_KIND_DATA = 1,
167 GF_OMP_TARGET_KIND_UPDATE = 2,
168 GF_OMP_TARGET_KIND_ENTER_DATA = 3,
169 GF_OMP_TARGET_KIND_EXIT_DATA = 4,
170 GF_OMP_TARGET_KIND_OACC_PARALLEL = 5,
171 GF_OMP_TARGET_KIND_OACC_KERNELS = 6,
172 GF_OMP_TARGET_KIND_OACC_SERIAL = 7,
173 GF_OMP_TARGET_KIND_OACC_DATA = 8,
174 GF_OMP_TARGET_KIND_OACC_UPDATE = 9,
175 GF_OMP_TARGET_KIND_OACC_ENTER_EXIT_DATA = 10,
176 GF_OMP_TARGET_KIND_OACC_DECLARE = 11,
177 GF_OMP_TARGET_KIND_OACC_HOST_DATA = 12,
178 GF_OMP_TEAMS_HOST = 1 << 0,
180 /* True on an GIMPLE_OMP_RETURN statement if the return does not require
181 a thread synchronization via some sort of barrier. The exact barrier
182 that would otherwise be emitted is dependent on the OMP statement with
183 which this return is associated. */
184 GF_OMP_RETURN_NOWAIT = 1 << 0,
186 GF_OMP_SECTION_LAST = 1 << 0,
187 GF_OMP_ATOMIC_MEMORY_ORDER = (1 << 3) - 1,
188 GF_OMP_ATOMIC_NEED_VALUE = 1 << 3,
189 GF_PREDICT_TAKEN = 1 << 15
192 /* This subcode tells apart different kinds of stmts that are not used
193 for codegen, but rather to retain debug information. */
194 enum gimple_debug_subcode {
195 GIMPLE_DEBUG_BIND = 0,
196 GIMPLE_DEBUG_SOURCE_BIND = 1,
197 GIMPLE_DEBUG_BEGIN_STMT = 2,
198 GIMPLE_DEBUG_INLINE_ENTRY = 3
201 /* Masks for selecting a pass local flag (PLF) to work on. These
202 masks are used by gimple_set_plf and gimple_plf. */
203 enum plf_mask {
204 GF_PLF_1 = 1 << 0,
205 GF_PLF_2 = 1 << 1
208 /* Data structure definitions for GIMPLE tuples. NOTE: word markers
209 are for 64 bit hosts. */
211 struct GTY((desc ("gimple_statement_structure (&%h)"), tag ("GSS_BASE"),
212 chain_next ("%h.next"), variable_size))
213 gimple
215 /* [ WORD 1 ]
216 Main identifying code for a tuple. */
217 ENUM_BITFIELD(gimple_code) code : 8;
219 /* Nonzero if a warning should not be emitted on this tuple. */
220 unsigned int no_warning : 1;
222 /* Nonzero if this tuple has been visited. Passes are responsible
223 for clearing this bit before using it. */
224 unsigned int visited : 1;
226 /* Nonzero if this tuple represents a non-temporal move. */
227 unsigned int nontemporal_move : 1;
229 /* Pass local flags. These flags are free for any pass to use as
230 they see fit. Passes should not assume that these flags contain
231 any useful value when the pass starts. Any initial state that
232 the pass requires should be set on entry to the pass. See
233 gimple_set_plf and gimple_plf for usage. */
234 unsigned int plf : 2;
236 /* Nonzero if this statement has been modified and needs to have its
237 operands rescanned. */
238 unsigned modified : 1;
240 /* Nonzero if this statement contains volatile operands. */
241 unsigned has_volatile_ops : 1;
243 /* Padding to get subcode to 16 bit alignment. */
244 unsigned pad : 1;
246 /* The SUBCODE field can be used for tuple-specific flags for tuples
247 that do not require subcodes. Note that SUBCODE should be at
248 least as wide as tree codes, as several tuples store tree codes
249 in there. */
250 unsigned int subcode : 16;
252 /* UID of this statement. This is used by passes that want to
253 assign IDs to statements. It must be assigned and used by each
254 pass. By default it should be assumed to contain garbage. */
255 unsigned uid;
257 /* [ WORD 2 ]
258 Locus information for debug info. */
259 location_t location;
261 /* Number of operands in this tuple. */
262 unsigned num_ops;
264 /* [ WORD 3 ]
265 Basic block holding this statement. */
266 basic_block bb;
268 /* [ WORD 4-5 ]
269 Linked lists of gimple statements. The next pointers form
270 a NULL terminated list, the prev pointers are a cyclic list.
271 A gimple statement is hence also a double-ended list of
272 statements, with the pointer itself being the first element,
273 and the prev pointer being the last. */
274 gimple *next;
275 gimple *GTY((skip)) prev;
279 /* Base structure for tuples with operands. */
281 /* This gimple subclass has no tag value. */
282 struct GTY(())
283 gimple_statement_with_ops_base : public gimple
285 /* [ WORD 1-6 ] : base class */
287 /* [ WORD 7 ]
288 SSA operand vectors. NOTE: It should be possible to
289 amalgamate these vectors with the operand vector OP. However,
290 the SSA operand vectors are organized differently and contain
291 more information (like immediate use chaining). */
292 struct use_optype_d GTY((skip (""))) *use_ops;
296 /* Statements that take register operands. */
298 struct GTY((tag("GSS_WITH_OPS")))
299 gimple_statement_with_ops : public gimple_statement_with_ops_base
301 /* [ WORD 1-7 ] : base class */
303 /* [ WORD 8 ]
304 Operand vector. NOTE! This must always be the last field
305 of this structure. In particular, this means that this
306 structure cannot be embedded inside another one. */
307 tree GTY((length ("%h.num_ops"))) op[1];
311 /* Base for statements that take both memory and register operands. */
313 struct GTY((tag("GSS_WITH_MEM_OPS_BASE")))
314 gimple_statement_with_memory_ops_base : public gimple_statement_with_ops_base
316 /* [ WORD 1-7 ] : base class */
318 /* [ WORD 8-9 ]
319 Virtual operands for this statement. The GC will pick them
320 up via the ssa_names array. */
321 tree GTY((skip (""))) vdef;
322 tree GTY((skip (""))) vuse;
326 /* Statements that take both memory and register operands. */
328 struct GTY((tag("GSS_WITH_MEM_OPS")))
329 gimple_statement_with_memory_ops :
330 public gimple_statement_with_memory_ops_base
332 /* [ WORD 1-9 ] : base class */
334 /* [ WORD 10 ]
335 Operand vector. NOTE! This must always be the last field
336 of this structure. In particular, this means that this
337 structure cannot be embedded inside another one. */
338 tree GTY((length ("%h.num_ops"))) op[1];
342 /* Call statements that take both memory and register operands. */
344 struct GTY((tag("GSS_CALL")))
345 gcall : public gimple_statement_with_memory_ops_base
347 /* [ WORD 1-9 ] : base class */
349 /* [ WORD 10-13 ] */
350 struct pt_solution call_used;
351 struct pt_solution call_clobbered;
353 /* [ WORD 14 ] */
354 union GTY ((desc ("%1.subcode & GF_CALL_INTERNAL"))) {
355 tree GTY ((tag ("0"))) fntype;
356 enum internal_fn GTY ((tag ("GF_CALL_INTERNAL"))) internal_fn;
357 } u;
359 /* [ WORD 15 ]
360 Operand vector. NOTE! This must always be the last field
361 of this structure. In particular, this means that this
362 structure cannot be embedded inside another one. */
363 tree GTY((length ("%h.num_ops"))) op[1];
365 static const enum gimple_code code_ = GIMPLE_CALL;
369 /* OMP statements. */
371 struct GTY((tag("GSS_OMP")))
372 gimple_statement_omp : public gimple
374 /* [ WORD 1-6 ] : base class */
376 /* [ WORD 7 ] */
377 gimple_seq body;
381 /* GIMPLE_BIND */
383 struct GTY((tag("GSS_BIND")))
384 gbind : public gimple
386 /* [ WORD 1-6 ] : base class */
388 /* [ WORD 7 ]
389 Variables declared in this scope. */
390 tree vars;
392 /* [ WORD 8 ]
393 This is different than the BLOCK field in gimple,
394 which is analogous to TREE_BLOCK (i.e., the lexical block holding
395 this statement). This field is the equivalent of BIND_EXPR_BLOCK
396 in tree land (i.e., the lexical scope defined by this bind). See
397 gimple-low.c. */
398 tree block;
400 /* [ WORD 9 ] */
401 gimple_seq body;
405 /* GIMPLE_CATCH */
407 struct GTY((tag("GSS_CATCH")))
408 gcatch : public gimple
410 /* [ WORD 1-6 ] : base class */
412 /* [ WORD 7 ] */
413 tree types;
415 /* [ WORD 8 ] */
416 gimple_seq handler;
420 /* GIMPLE_EH_FILTER */
422 struct GTY((tag("GSS_EH_FILTER")))
423 geh_filter : public gimple
425 /* [ WORD 1-6 ] : base class */
427 /* [ WORD 7 ]
428 Filter types. */
429 tree types;
431 /* [ WORD 8 ]
432 Failure actions. */
433 gimple_seq failure;
436 /* GIMPLE_EH_ELSE */
438 struct GTY((tag("GSS_EH_ELSE")))
439 geh_else : public gimple
441 /* [ WORD 1-6 ] : base class */
443 /* [ WORD 7,8 ] */
444 gimple_seq n_body, e_body;
447 /* GIMPLE_EH_MUST_NOT_THROW */
449 struct GTY((tag("GSS_EH_MNT")))
450 geh_mnt : public gimple
452 /* [ WORD 1-6 ] : base class */
454 /* [ WORD 7 ] Abort function decl. */
455 tree fndecl;
458 /* GIMPLE_PHI */
460 struct GTY((tag("GSS_PHI")))
461 gphi : public gimple
463 /* [ WORD 1-6 ] : base class */
465 /* [ WORD 7 ] */
466 unsigned capacity;
467 unsigned nargs;
469 /* [ WORD 8 ] */
470 tree result;
472 /* [ WORD 9 ] */
473 struct phi_arg_d GTY ((length ("%h.nargs"))) args[1];
477 /* GIMPLE_RESX, GIMPLE_EH_DISPATCH */
479 struct GTY((tag("GSS_EH_CTRL")))
480 gimple_statement_eh_ctrl : public gimple
482 /* [ WORD 1-6 ] : base class */
484 /* [ WORD 7 ]
485 Exception region number. */
486 int region;
489 struct GTY((tag("GSS_EH_CTRL")))
490 gresx : public gimple_statement_eh_ctrl
492 /* No extra fields; adds invariant:
493 stmt->code == GIMPLE_RESX. */
496 struct GTY((tag("GSS_EH_CTRL")))
497 geh_dispatch : public gimple_statement_eh_ctrl
499 /* No extra fields; adds invariant:
500 stmt->code == GIMPLE_EH_DISPATH. */
504 /* GIMPLE_TRY */
506 struct GTY((tag("GSS_TRY")))
507 gtry : public gimple
509 /* [ WORD 1-6 ] : base class */
511 /* [ WORD 7 ]
512 Expression to evaluate. */
513 gimple_seq eval;
515 /* [ WORD 8 ]
516 Cleanup expression. */
517 gimple_seq cleanup;
520 /* Kind of GIMPLE_TRY statements. */
521 enum gimple_try_flags
523 /* A try/catch. */
524 GIMPLE_TRY_CATCH = 1 << 0,
526 /* A try/finally. */
527 GIMPLE_TRY_FINALLY = 1 << 1,
528 GIMPLE_TRY_KIND = GIMPLE_TRY_CATCH | GIMPLE_TRY_FINALLY,
530 /* Analogous to TRY_CATCH_IS_CLEANUP. */
531 GIMPLE_TRY_CATCH_IS_CLEANUP = 1 << 2
534 /* GIMPLE_WITH_CLEANUP_EXPR */
536 struct GTY((tag("GSS_WCE")))
537 gimple_statement_wce : public gimple
539 /* [ WORD 1-6 ] : base class */
541 /* Subcode: CLEANUP_EH_ONLY. True if the cleanup should only be
542 executed if an exception is thrown, not on normal exit of its
543 scope. This flag is analogous to the CLEANUP_EH_ONLY flag
544 in TARGET_EXPRs. */
546 /* [ WORD 7 ]
547 Cleanup expression. */
548 gimple_seq cleanup;
552 /* GIMPLE_ASM */
554 struct GTY((tag("GSS_ASM")))
555 gasm : public gimple_statement_with_memory_ops_base
557 /* [ WORD 1-9 ] : base class */
559 /* [ WORD 10 ]
560 __asm__ statement. */
561 const char *string;
563 /* [ WORD 11 ]
564 Number of inputs, outputs, clobbers, labels. */
565 unsigned char ni;
566 unsigned char no;
567 unsigned char nc;
568 unsigned char nl;
570 /* [ WORD 12 ]
571 Operand vector. NOTE! This must always be the last field
572 of this structure. In particular, this means that this
573 structure cannot be embedded inside another one. */
574 tree GTY((length ("%h.num_ops"))) op[1];
577 /* GIMPLE_OMP_CRITICAL */
579 struct GTY((tag("GSS_OMP_CRITICAL")))
580 gomp_critical : public gimple_statement_omp
582 /* [ WORD 1-7 ] : base class */
584 /* [ WORD 8 ] */
585 tree clauses;
587 /* [ WORD 9 ]
588 Critical section name. */
589 tree name;
593 struct GTY(()) gimple_omp_for_iter {
594 /* Condition code. */
595 enum tree_code cond;
597 /* Index variable. */
598 tree index;
600 /* Initial value. */
601 tree initial;
603 /* Final value. */
604 tree final;
606 /* Increment. */
607 tree incr;
610 /* GIMPLE_OMP_FOR */
612 struct GTY((tag("GSS_OMP_FOR")))
613 gomp_for : public gimple_statement_omp
615 /* [ WORD 1-7 ] : base class */
617 /* [ WORD 8 ] */
618 tree clauses;
620 /* [ WORD 9 ]
621 Number of elements in iter array. */
622 size_t collapse;
624 /* [ WORD 10 ] */
625 struct gimple_omp_for_iter * GTY((length ("%h.collapse"))) iter;
627 /* [ WORD 11 ]
628 Pre-body evaluated before the loop body begins. */
629 gimple_seq pre_body;
633 /* GIMPLE_OMP_PARALLEL, GIMPLE_OMP_TARGET, GIMPLE_OMP_TASK, GIMPLE_OMP_TEAMS */
635 struct GTY((tag("GSS_OMP_PARALLEL_LAYOUT")))
636 gimple_statement_omp_parallel_layout : public gimple_statement_omp
638 /* [ WORD 1-7 ] : base class */
640 /* [ WORD 8 ]
641 Clauses. */
642 tree clauses;
644 /* [ WORD 9 ]
645 Child function holding the body of the parallel region. */
646 tree child_fn;
648 /* [ WORD 10 ]
649 Shared data argument. */
650 tree data_arg;
653 /* GIMPLE_OMP_PARALLEL or GIMPLE_TASK */
654 struct GTY((tag("GSS_OMP_PARALLEL_LAYOUT")))
655 gimple_statement_omp_taskreg : public gimple_statement_omp_parallel_layout
657 /* No extra fields; adds invariant:
658 stmt->code == GIMPLE_OMP_PARALLEL
659 || stmt->code == GIMPLE_OMP_TASK
660 || stmt->code == GIMPLE_OMP_TEAMS. */
663 /* GIMPLE_OMP_PARALLEL */
664 struct GTY((tag("GSS_OMP_PARALLEL_LAYOUT")))
665 gomp_parallel : public gimple_statement_omp_taskreg
667 /* No extra fields; adds invariant:
668 stmt->code == GIMPLE_OMP_PARALLEL. */
671 /* GIMPLE_OMP_TARGET */
672 struct GTY((tag("GSS_OMP_PARALLEL_LAYOUT")))
673 gomp_target : public gimple_statement_omp_parallel_layout
675 /* No extra fields; adds invariant:
676 stmt->code == GIMPLE_OMP_TARGET. */
679 /* GIMPLE_OMP_TASK */
681 struct GTY((tag("GSS_OMP_TASK")))
682 gomp_task : public gimple_statement_omp_taskreg
684 /* [ WORD 1-10 ] : base class */
686 /* [ WORD 11 ]
687 Child function holding firstprivate initialization if needed. */
688 tree copy_fn;
690 /* [ WORD 12-13 ]
691 Size and alignment in bytes of the argument data block. */
692 tree arg_size;
693 tree arg_align;
697 /* GIMPLE_OMP_SECTION */
698 /* Uses struct gimple_statement_omp. */
701 /* GIMPLE_OMP_SECTIONS */
703 struct GTY((tag("GSS_OMP_SECTIONS")))
704 gomp_sections : public gimple_statement_omp
706 /* [ WORD 1-7 ] : base class */
708 /* [ WORD 8 ] */
709 tree clauses;
711 /* [ WORD 9 ]
712 The control variable used for deciding which of the sections to
713 execute. */
714 tree control;
717 /* GIMPLE_OMP_CONTINUE.
719 Note: This does not inherit from gimple_statement_omp, because we
720 do not need the body field. */
722 struct GTY((tag("GSS_OMP_CONTINUE")))
723 gomp_continue : public gimple
725 /* [ WORD 1-6 ] : base class */
727 /* [ WORD 7 ] */
728 tree control_def;
730 /* [ WORD 8 ] */
731 tree control_use;
734 /* GIMPLE_OMP_SINGLE, GIMPLE_OMP_ORDERED, GIMPLE_OMP_TASKGROUP,
735 GIMPLE_OMP_SCAN. */
737 struct GTY((tag("GSS_OMP_SINGLE_LAYOUT")))
738 gimple_statement_omp_single_layout : public gimple_statement_omp
740 /* [ WORD 1-7 ] : base class */
742 /* [ WORD 8 ] */
743 tree clauses;
746 struct GTY((tag("GSS_OMP_SINGLE_LAYOUT")))
747 gomp_single : public gimple_statement_omp_single_layout
749 /* No extra fields; adds invariant:
750 stmt->code == GIMPLE_OMP_SINGLE. */
753 struct GTY((tag("GSS_OMP_PARALLEL_LAYOUT")))
754 gomp_teams : public gimple_statement_omp_taskreg
756 /* No extra fields; adds invariant:
757 stmt->code == GIMPLE_OMP_TEAMS. */
760 struct GTY((tag("GSS_OMP_SINGLE_LAYOUT")))
761 gomp_ordered : public gimple_statement_omp_single_layout
763 /* No extra fields; adds invariant:
764 stmt->code == GIMPLE_OMP_ORDERED. */
767 struct GTY((tag("GSS_OMP_SINGLE_LAYOUT")))
768 gomp_scan : public gimple_statement_omp_single_layout
770 /* No extra fields; adds invariant:
771 stmt->code == GIMPLE_OMP_SCAN. */
775 /* GIMPLE_OMP_ATOMIC_LOAD.
776 Note: This is based on gimple, not g_s_omp, because g_s_omp
777 contains a sequence, which we don't need here. */
779 struct GTY((tag("GSS_OMP_ATOMIC_LOAD")))
780 gomp_atomic_load : public gimple
782 /* [ WORD 1-6 ] : base class */
784 /* [ WORD 7-8 ] */
785 tree rhs, lhs;
788 /* GIMPLE_OMP_ATOMIC_STORE.
789 See note on GIMPLE_OMP_ATOMIC_LOAD. */
791 struct GTY((tag("GSS_OMP_ATOMIC_STORE_LAYOUT")))
792 gimple_statement_omp_atomic_store_layout : public gimple
794 /* [ WORD 1-6 ] : base class */
796 /* [ WORD 7 ] */
797 tree val;
800 struct GTY((tag("GSS_OMP_ATOMIC_STORE_LAYOUT")))
801 gomp_atomic_store :
802 public gimple_statement_omp_atomic_store_layout
804 /* No extra fields; adds invariant:
805 stmt->code == GIMPLE_OMP_ATOMIC_STORE. */
808 struct GTY((tag("GSS_OMP_ATOMIC_STORE_LAYOUT")))
809 gimple_statement_omp_return :
810 public gimple_statement_omp_atomic_store_layout
812 /* No extra fields; adds invariant:
813 stmt->code == GIMPLE_OMP_RETURN. */
816 /* GIMPLE_TRANSACTION. */
818 /* Bits to be stored in the GIMPLE_TRANSACTION subcode. */
820 /* The __transaction_atomic was declared [[outer]] or it is
821 __transaction_relaxed. */
822 #define GTMA_IS_OUTER (1u << 0)
823 #define GTMA_IS_RELAXED (1u << 1)
824 #define GTMA_DECLARATION_MASK (GTMA_IS_OUTER | GTMA_IS_RELAXED)
826 /* The transaction is seen to not have an abort. */
827 #define GTMA_HAVE_ABORT (1u << 2)
828 /* The transaction is seen to have loads or stores. */
829 #define GTMA_HAVE_LOAD (1u << 3)
830 #define GTMA_HAVE_STORE (1u << 4)
831 /* The transaction MAY enter serial irrevocable mode in its dynamic scope. */
832 #define GTMA_MAY_ENTER_IRREVOCABLE (1u << 5)
833 /* The transaction WILL enter serial irrevocable mode.
834 An irrevocable block post-dominates the entire transaction, such
835 that all invocations of the transaction will go serial-irrevocable.
836 In such case, we don't bother instrumenting the transaction, and
837 tell the runtime that it should begin the transaction in
838 serial-irrevocable mode. */
839 #define GTMA_DOES_GO_IRREVOCABLE (1u << 6)
840 /* The transaction contains no instrumentation code whatsover, most
841 likely because it is guaranteed to go irrevocable upon entry. */
842 #define GTMA_HAS_NO_INSTRUMENTATION (1u << 7)
844 struct GTY((tag("GSS_TRANSACTION")))
845 gtransaction : public gimple_statement_with_memory_ops_base
847 /* [ WORD 1-9 ] : base class */
849 /* [ WORD 10 ] */
850 gimple_seq body;
852 /* [ WORD 11-13 ] */
853 tree label_norm;
854 tree label_uninst;
855 tree label_over;
858 #define DEFGSSTRUCT(SYM, STRUCT, HAS_TREE_OP) SYM,
859 enum gimple_statement_structure_enum {
860 #include "gsstruct.def"
861 LAST_GSS_ENUM
863 #undef DEFGSSTRUCT
865 /* A statement with the invariant that
866 stmt->code == GIMPLE_COND
867 i.e. a conditional jump statement. */
869 struct GTY((tag("GSS_WITH_OPS")))
870 gcond : public gimple_statement_with_ops
872 /* no additional fields; this uses the layout for GSS_WITH_OPS. */
873 static const enum gimple_code code_ = GIMPLE_COND;
876 /* A statement with the invariant that
877 stmt->code == GIMPLE_DEBUG
878 i.e. a debug statement. */
880 struct GTY((tag("GSS_WITH_OPS")))
881 gdebug : public gimple_statement_with_ops
883 /* no additional fields; this uses the layout for GSS_WITH_OPS. */
886 /* A statement with the invariant that
887 stmt->code == GIMPLE_GOTO
888 i.e. a goto statement. */
890 struct GTY((tag("GSS_WITH_OPS")))
891 ggoto : public gimple_statement_with_ops
893 /* no additional fields; this uses the layout for GSS_WITH_OPS. */
896 /* A statement with the invariant that
897 stmt->code == GIMPLE_LABEL
898 i.e. a label statement. */
900 struct GTY((tag("GSS_WITH_OPS")))
901 glabel : public gimple_statement_with_ops
903 /* no additional fields; this uses the layout for GSS_WITH_OPS. */
906 /* A statement with the invariant that
907 stmt->code == GIMPLE_SWITCH
908 i.e. a switch statement. */
910 struct GTY((tag("GSS_WITH_OPS")))
911 gswitch : public gimple_statement_with_ops
913 /* no additional fields; this uses the layout for GSS_WITH_OPS. */
916 /* A statement with the invariant that
917 stmt->code == GIMPLE_ASSIGN
918 i.e. an assignment statement. */
920 struct GTY((tag("GSS_WITH_MEM_OPS")))
921 gassign : public gimple_statement_with_memory_ops
923 static const enum gimple_code code_ = GIMPLE_ASSIGN;
924 /* no additional fields; this uses the layout for GSS_WITH_MEM_OPS. */
927 /* A statement with the invariant that
928 stmt->code == GIMPLE_RETURN
929 i.e. a return statement. */
931 struct GTY((tag("GSS_WITH_MEM_OPS")))
932 greturn : public gimple_statement_with_memory_ops
934 /* no additional fields; this uses the layout for GSS_WITH_MEM_OPS. */
937 template <>
938 template <>
939 inline bool
940 is_a_helper <gasm *>::test (gimple *gs)
942 return gs->code == GIMPLE_ASM;
945 template <>
946 template <>
947 inline bool
948 is_a_helper <gassign *>::test (gimple *gs)
950 return gs->code == GIMPLE_ASSIGN;
953 template <>
954 template <>
955 inline bool
956 is_a_helper <const gassign *>::test (const gimple *gs)
958 return gs->code == GIMPLE_ASSIGN;
961 template <>
962 template <>
963 inline bool
964 is_a_helper <gbind *>::test (gimple *gs)
966 return gs->code == GIMPLE_BIND;
969 template <>
970 template <>
971 inline bool
972 is_a_helper <gcall *>::test (gimple *gs)
974 return gs->code == GIMPLE_CALL;
977 template <>
978 template <>
979 inline bool
980 is_a_helper <gcatch *>::test (gimple *gs)
982 return gs->code == GIMPLE_CATCH;
985 template <>
986 template <>
987 inline bool
988 is_a_helper <gcond *>::test (gimple *gs)
990 return gs->code == GIMPLE_COND;
993 template <>
994 template <>
995 inline bool
996 is_a_helper <const gcond *>::test (const gimple *gs)
998 return gs->code == GIMPLE_COND;
1001 template <>
1002 template <>
1003 inline bool
1004 is_a_helper <gdebug *>::test (gimple *gs)
1006 return gs->code == GIMPLE_DEBUG;
1009 template <>
1010 template <>
1011 inline bool
1012 is_a_helper <const gdebug *>::test (const gimple *gs)
1014 return gs->code == GIMPLE_DEBUG;
1017 template <>
1018 template <>
1019 inline bool
1020 is_a_helper <ggoto *>::test (gimple *gs)
1022 return gs->code == GIMPLE_GOTO;
1025 template <>
1026 template <>
1027 inline bool
1028 is_a_helper <const ggoto *>::test (const gimple *gs)
1030 return gs->code == GIMPLE_GOTO;
1033 template <>
1034 template <>
1035 inline bool
1036 is_a_helper <glabel *>::test (gimple *gs)
1038 return gs->code == GIMPLE_LABEL;
1041 template <>
1042 template <>
1043 inline bool
1044 is_a_helper <const glabel *>::test (const gimple *gs)
1046 return gs->code == GIMPLE_LABEL;
1049 template <>
1050 template <>
1051 inline bool
1052 is_a_helper <gresx *>::test (gimple *gs)
1054 return gs->code == GIMPLE_RESX;
1057 template <>
1058 template <>
1059 inline bool
1060 is_a_helper <geh_dispatch *>::test (gimple *gs)
1062 return gs->code == GIMPLE_EH_DISPATCH;
1065 template <>
1066 template <>
1067 inline bool
1068 is_a_helper <geh_else *>::test (gimple *gs)
1070 return gs->code == GIMPLE_EH_ELSE;
1073 template <>
1074 template <>
1075 inline bool
1076 is_a_helper <const geh_else *>::test (const gimple *gs)
1078 return gs->code == GIMPLE_EH_ELSE;
1081 template <>
1082 template <>
1083 inline bool
1084 is_a_helper <geh_filter *>::test (gimple *gs)
1086 return gs->code == GIMPLE_EH_FILTER;
1089 template <>
1090 template <>
1091 inline bool
1092 is_a_helper <geh_mnt *>::test (gimple *gs)
1094 return gs->code == GIMPLE_EH_MUST_NOT_THROW;
1097 template <>
1098 template <>
1099 inline bool
1100 is_a_helper <const geh_mnt *>::test (const gimple *gs)
1102 return gs->code == GIMPLE_EH_MUST_NOT_THROW;
1105 template <>
1106 template <>
1107 inline bool
1108 is_a_helper <gomp_atomic_load *>::test (gimple *gs)
1110 return gs->code == GIMPLE_OMP_ATOMIC_LOAD;
1113 template <>
1114 template <>
1115 inline bool
1116 is_a_helper <gomp_atomic_store *>::test (gimple *gs)
1118 return gs->code == GIMPLE_OMP_ATOMIC_STORE;
1121 template <>
1122 template <>
1123 inline bool
1124 is_a_helper <gimple_statement_omp_return *>::test (gimple *gs)
1126 return gs->code == GIMPLE_OMP_RETURN;
1129 template <>
1130 template <>
1131 inline bool
1132 is_a_helper <gomp_continue *>::test (gimple *gs)
1134 return gs->code == GIMPLE_OMP_CONTINUE;
1137 template <>
1138 template <>
1139 inline bool
1140 is_a_helper <gomp_critical *>::test (gimple *gs)
1142 return gs->code == GIMPLE_OMP_CRITICAL;
1145 template <>
1146 template <>
1147 inline bool
1148 is_a_helper <gomp_ordered *>::test (gimple *gs)
1150 return gs->code == GIMPLE_OMP_ORDERED;
1153 template <>
1154 template <>
1155 inline bool
1156 is_a_helper <gomp_scan *>::test (gimple *gs)
1158 return gs->code == GIMPLE_OMP_SCAN;
1161 template <>
1162 template <>
1163 inline bool
1164 is_a_helper <gomp_for *>::test (gimple *gs)
1166 return gs->code == GIMPLE_OMP_FOR;
1169 template <>
1170 template <>
1171 inline bool
1172 is_a_helper <gimple_statement_omp_taskreg *>::test (gimple *gs)
1174 return (gs->code == GIMPLE_OMP_PARALLEL
1175 || gs->code == GIMPLE_OMP_TASK
1176 || gs->code == GIMPLE_OMP_TEAMS);
1179 template <>
1180 template <>
1181 inline bool
1182 is_a_helper <gomp_parallel *>::test (gimple *gs)
1184 return gs->code == GIMPLE_OMP_PARALLEL;
1187 template <>
1188 template <>
1189 inline bool
1190 is_a_helper <gomp_target *>::test (gimple *gs)
1192 return gs->code == GIMPLE_OMP_TARGET;
1195 template <>
1196 template <>
1197 inline bool
1198 is_a_helper <gomp_sections *>::test (gimple *gs)
1200 return gs->code == GIMPLE_OMP_SECTIONS;
1203 template <>
1204 template <>
1205 inline bool
1206 is_a_helper <gomp_single *>::test (gimple *gs)
1208 return gs->code == GIMPLE_OMP_SINGLE;
1211 template <>
1212 template <>
1213 inline bool
1214 is_a_helper <gomp_teams *>::test (gimple *gs)
1216 return gs->code == GIMPLE_OMP_TEAMS;
1219 template <>
1220 template <>
1221 inline bool
1222 is_a_helper <gomp_task *>::test (gimple *gs)
1224 return gs->code == GIMPLE_OMP_TASK;
1227 template <>
1228 template <>
1229 inline bool
1230 is_a_helper <gphi *>::test (gimple *gs)
1232 return gs->code == GIMPLE_PHI;
1235 template <>
1236 template <>
1237 inline bool
1238 is_a_helper <greturn *>::test (gimple *gs)
1240 return gs->code == GIMPLE_RETURN;
1243 template <>
1244 template <>
1245 inline bool
1246 is_a_helper <gswitch *>::test (gimple *gs)
1248 return gs->code == GIMPLE_SWITCH;
1251 template <>
1252 template <>
1253 inline bool
1254 is_a_helper <const gswitch *>::test (const gimple *gs)
1256 return gs->code == GIMPLE_SWITCH;
1259 template <>
1260 template <>
1261 inline bool
1262 is_a_helper <gtransaction *>::test (gimple *gs)
1264 return gs->code == GIMPLE_TRANSACTION;
1267 template <>
1268 template <>
1269 inline bool
1270 is_a_helper <gtry *>::test (gimple *gs)
1272 return gs->code == GIMPLE_TRY;
1275 template <>
1276 template <>
1277 inline bool
1278 is_a_helper <const gtry *>::test (const gimple *gs)
1280 return gs->code == GIMPLE_TRY;
1283 template <>
1284 template <>
1285 inline bool
1286 is_a_helper <gimple_statement_wce *>::test (gimple *gs)
1288 return gs->code == GIMPLE_WITH_CLEANUP_EXPR;
1291 template <>
1292 template <>
1293 inline bool
1294 is_a_helper <const gasm *>::test (const gimple *gs)
1296 return gs->code == GIMPLE_ASM;
1299 template <>
1300 template <>
1301 inline bool
1302 is_a_helper <const gbind *>::test (const gimple *gs)
1304 return gs->code == GIMPLE_BIND;
1307 template <>
1308 template <>
1309 inline bool
1310 is_a_helper <const gcall *>::test (const gimple *gs)
1312 return gs->code == GIMPLE_CALL;
1315 template <>
1316 template <>
1317 inline bool
1318 is_a_helper <const gcatch *>::test (const gimple *gs)
1320 return gs->code == GIMPLE_CATCH;
1323 template <>
1324 template <>
1325 inline bool
1326 is_a_helper <const gresx *>::test (const gimple *gs)
1328 return gs->code == GIMPLE_RESX;
1331 template <>
1332 template <>
1333 inline bool
1334 is_a_helper <const geh_dispatch *>::test (const gimple *gs)
1336 return gs->code == GIMPLE_EH_DISPATCH;
1339 template <>
1340 template <>
1341 inline bool
1342 is_a_helper <const geh_filter *>::test (const gimple *gs)
1344 return gs->code == GIMPLE_EH_FILTER;
1347 template <>
1348 template <>
1349 inline bool
1350 is_a_helper <const gomp_atomic_load *>::test (const gimple *gs)
1352 return gs->code == GIMPLE_OMP_ATOMIC_LOAD;
1355 template <>
1356 template <>
1357 inline bool
1358 is_a_helper <const gomp_atomic_store *>::test (const gimple *gs)
1360 return gs->code == GIMPLE_OMP_ATOMIC_STORE;
1363 template <>
1364 template <>
1365 inline bool
1366 is_a_helper <const gimple_statement_omp_return *>::test (const gimple *gs)
1368 return gs->code == GIMPLE_OMP_RETURN;
1371 template <>
1372 template <>
1373 inline bool
1374 is_a_helper <const gomp_continue *>::test (const gimple *gs)
1376 return gs->code == GIMPLE_OMP_CONTINUE;
1379 template <>
1380 template <>
1381 inline bool
1382 is_a_helper <const gomp_critical *>::test (const gimple *gs)
1384 return gs->code == GIMPLE_OMP_CRITICAL;
1387 template <>
1388 template <>
1389 inline bool
1390 is_a_helper <const gomp_ordered *>::test (const gimple *gs)
1392 return gs->code == GIMPLE_OMP_ORDERED;
1395 template <>
1396 template <>
1397 inline bool
1398 is_a_helper <const gomp_scan *>::test (const gimple *gs)
1400 return gs->code == GIMPLE_OMP_SCAN;
1403 template <>
1404 template <>
1405 inline bool
1406 is_a_helper <const gomp_for *>::test (const gimple *gs)
1408 return gs->code == GIMPLE_OMP_FOR;
1411 template <>
1412 template <>
1413 inline bool
1414 is_a_helper <const gimple_statement_omp_taskreg *>::test (const gimple *gs)
1416 return (gs->code == GIMPLE_OMP_PARALLEL
1417 || gs->code == GIMPLE_OMP_TASK
1418 || gs->code == GIMPLE_OMP_TEAMS);
1421 template <>
1422 template <>
1423 inline bool
1424 is_a_helper <const gomp_parallel *>::test (const gimple *gs)
1426 return gs->code == GIMPLE_OMP_PARALLEL;
1429 template <>
1430 template <>
1431 inline bool
1432 is_a_helper <const gomp_target *>::test (const gimple *gs)
1434 return gs->code == GIMPLE_OMP_TARGET;
1437 template <>
1438 template <>
1439 inline bool
1440 is_a_helper <const gomp_sections *>::test (const gimple *gs)
1442 return gs->code == GIMPLE_OMP_SECTIONS;
1445 template <>
1446 template <>
1447 inline bool
1448 is_a_helper <const gomp_single *>::test (const gimple *gs)
1450 return gs->code == GIMPLE_OMP_SINGLE;
1453 template <>
1454 template <>
1455 inline bool
1456 is_a_helper <const gomp_teams *>::test (const gimple *gs)
1458 return gs->code == GIMPLE_OMP_TEAMS;
1461 template <>
1462 template <>
1463 inline bool
1464 is_a_helper <const gomp_task *>::test (const gimple *gs)
1466 return gs->code == GIMPLE_OMP_TASK;
1469 template <>
1470 template <>
1471 inline bool
1472 is_a_helper <const gphi *>::test (const gimple *gs)
1474 return gs->code == GIMPLE_PHI;
1477 template <>
1478 template <>
1479 inline bool
1480 is_a_helper <const greturn *>::test (const gimple *gs)
1482 return gs->code == GIMPLE_RETURN;
1485 template <>
1486 template <>
1487 inline bool
1488 is_a_helper <const gtransaction *>::test (const gimple *gs)
1490 return gs->code == GIMPLE_TRANSACTION;
1493 /* Offset in bytes to the location of the operand vector.
1494 Zero if there is no operand vector for this tuple structure. */
1495 extern size_t const gimple_ops_offset_[];
1497 /* Map GIMPLE codes to GSS codes. */
1498 extern enum gimple_statement_structure_enum const gss_for_code_[];
1500 /* This variable holds the currently expanded gimple statement for purposes
1501 of comminucating the profile info to the builtin expanders. */
1502 extern gimple *currently_expanding_gimple_stmt;
1504 size_t gimple_size (enum gimple_code code, unsigned num_ops = 0);
1505 void gimple_init (gimple *g, enum gimple_code code, unsigned num_ops);
1506 gimple *gimple_alloc (enum gimple_code, unsigned CXX_MEM_STAT_INFO);
1507 greturn *gimple_build_return (tree);
1508 void gimple_call_reset_alias_info (gcall *);
1509 gcall *gimple_build_call_vec (tree, vec<tree> );
1510 gcall *gimple_build_call (tree, unsigned, ...);
1511 gcall *gimple_build_call_valist (tree, unsigned, va_list);
1512 gcall *gimple_build_call_internal (enum internal_fn, unsigned, ...);
1513 gcall *gimple_build_call_internal_vec (enum internal_fn, vec<tree> );
1514 gcall *gimple_build_call_from_tree (tree, tree);
1515 gassign *gimple_build_assign (tree, tree CXX_MEM_STAT_INFO);
1516 gassign *gimple_build_assign (tree, enum tree_code,
1517 tree, tree, tree CXX_MEM_STAT_INFO);
1518 gassign *gimple_build_assign (tree, enum tree_code,
1519 tree, tree CXX_MEM_STAT_INFO);
1520 gassign *gimple_build_assign (tree, enum tree_code, tree CXX_MEM_STAT_INFO);
1521 gcond *gimple_build_cond (enum tree_code, tree, tree, tree, tree);
1522 gcond *gimple_build_cond_from_tree (tree, tree, tree);
1523 void gimple_cond_set_condition_from_tree (gcond *, tree);
1524 glabel *gimple_build_label (tree label);
1525 ggoto *gimple_build_goto (tree dest);
1526 gimple *gimple_build_nop (void);
1527 gbind *gimple_build_bind (tree, gimple_seq, tree);
1528 gasm *gimple_build_asm_vec (const char *, vec<tree, va_gc> *,
1529 vec<tree, va_gc> *, vec<tree, va_gc> *,
1530 vec<tree, va_gc> *);
1531 gcatch *gimple_build_catch (tree, gimple_seq);
1532 geh_filter *gimple_build_eh_filter (tree, gimple_seq);
1533 geh_mnt *gimple_build_eh_must_not_throw (tree);
1534 geh_else *gimple_build_eh_else (gimple_seq, gimple_seq);
1535 gtry *gimple_build_try (gimple_seq, gimple_seq,
1536 enum gimple_try_flags);
1537 gimple *gimple_build_wce (gimple_seq);
1538 gresx *gimple_build_resx (int);
1539 gswitch *gimple_build_switch_nlabels (unsigned, tree, tree);
1540 gswitch *gimple_build_switch (tree, tree, vec<tree> );
1541 geh_dispatch *gimple_build_eh_dispatch (int);
1542 gdebug *gimple_build_debug_bind (tree, tree, gimple * CXX_MEM_STAT_INFO);
1543 gdebug *gimple_build_debug_source_bind (tree, tree, gimple * CXX_MEM_STAT_INFO);
1544 gdebug *gimple_build_debug_begin_stmt (tree, location_t CXX_MEM_STAT_INFO);
1545 gdebug *gimple_build_debug_inline_entry (tree, location_t CXX_MEM_STAT_INFO);
1546 gomp_critical *gimple_build_omp_critical (gimple_seq, tree, tree);
1547 gomp_for *gimple_build_omp_for (gimple_seq, int, tree, size_t, gimple_seq);
1548 gomp_parallel *gimple_build_omp_parallel (gimple_seq, tree, tree, tree);
1549 gomp_task *gimple_build_omp_task (gimple_seq, tree, tree, tree, tree,
1550 tree, tree);
1551 gimple *gimple_build_omp_section (gimple_seq);
1552 gimple *gimple_build_omp_master (gimple_seq);
1553 gimple *gimple_build_omp_taskgroup (gimple_seq, tree);
1554 gomp_continue *gimple_build_omp_continue (tree, tree);
1555 gomp_ordered *gimple_build_omp_ordered (gimple_seq, tree);
1556 gimple *gimple_build_omp_return (bool);
1557 gomp_scan *gimple_build_omp_scan (gimple_seq, tree);
1558 gomp_sections *gimple_build_omp_sections (gimple_seq, tree);
1559 gimple *gimple_build_omp_sections_switch (void);
1560 gomp_single *gimple_build_omp_single (gimple_seq, tree);
1561 gomp_target *gimple_build_omp_target (gimple_seq, int, tree);
1562 gomp_teams *gimple_build_omp_teams (gimple_seq, tree);
1563 gomp_atomic_load *gimple_build_omp_atomic_load (tree, tree,
1564 enum omp_memory_order);
1565 gomp_atomic_store *gimple_build_omp_atomic_store (tree, enum omp_memory_order);
1566 gtransaction *gimple_build_transaction (gimple_seq);
1567 extern void gimple_seq_add_stmt (gimple_seq *, gimple *);
1568 extern void gimple_seq_add_stmt_without_update (gimple_seq *, gimple *);
1569 void gimple_seq_add_seq (gimple_seq *, gimple_seq);
1570 void gimple_seq_add_seq_without_update (gimple_seq *, gimple_seq);
1571 extern void annotate_all_with_location_after (gimple_seq, gimple_stmt_iterator,
1572 location_t);
1573 extern void annotate_all_with_location (gimple_seq, location_t);
1574 bool empty_body_p (gimple_seq);
1575 gimple_seq gimple_seq_copy (gimple_seq);
1576 bool gimple_call_same_target_p (const gimple *, const gimple *);
1577 int gimple_call_flags (const gimple *);
1578 int gimple_call_arg_flags (const gcall *, unsigned);
1579 int gimple_call_return_flags (const gcall *);
1580 bool gimple_call_nonnull_result_p (gcall *);
1581 tree gimple_call_nonnull_arg (gcall *);
1582 bool gimple_assign_copy_p (gimple *);
1583 bool gimple_assign_ssa_name_copy_p (gimple *);
1584 bool gimple_assign_unary_nop_p (gimple *);
1585 void gimple_set_bb (gimple *, basic_block);
1586 void gimple_assign_set_rhs_from_tree (gimple_stmt_iterator *, tree);
1587 void gimple_assign_set_rhs_with_ops (gimple_stmt_iterator *, enum tree_code,
1588 tree, tree, tree);
1589 tree gimple_get_lhs (const gimple *);
1590 void gimple_set_lhs (gimple *, tree);
1591 gimple *gimple_copy (gimple *);
1592 void gimple_move_vops (gimple *, gimple *);
1593 bool gimple_has_side_effects (const gimple *);
1594 bool gimple_could_trap_p_1 (gimple *, bool, bool);
1595 bool gimple_could_trap_p (gimple *);
1596 bool gimple_assign_rhs_could_trap_p (gimple *);
1597 extern void dump_gimple_statistics (void);
1598 unsigned get_gimple_rhs_num_ops (enum tree_code);
1599 extern tree canonicalize_cond_expr_cond (tree);
1600 gcall *gimple_call_copy_skip_args (gcall *, bitmap);
1601 extern bool gimple_compare_field_offset (tree, tree);
1602 extern tree gimple_unsigned_type (tree);
1603 extern tree gimple_signed_type (tree);
1604 extern alias_set_type gimple_get_alias_set (tree);
1605 extern bool gimple_ior_addresses_taken (bitmap, gimple *);
1606 extern bool gimple_builtin_call_types_compatible_p (const gimple *, tree);
1607 extern combined_fn gimple_call_combined_fn (const gimple *);
1608 extern bool gimple_call_operator_delete_p (const gcall *);
1609 extern bool gimple_call_builtin_p (const gimple *);
1610 extern bool gimple_call_builtin_p (const gimple *, enum built_in_class);
1611 extern bool gimple_call_builtin_p (const gimple *, enum built_in_function);
1612 extern bool gimple_asm_clobbers_memory_p (const gasm *);
1613 extern void dump_decl_set (FILE *, bitmap);
1614 extern bool nonfreeing_call_p (gimple *);
1615 extern bool nonbarrier_call_p (gimple *);
1616 extern bool infer_nonnull_range (gimple *, tree);
1617 extern bool infer_nonnull_range_by_dereference (gimple *, tree);
1618 extern bool infer_nonnull_range_by_attribute (gimple *, tree);
1619 extern void sort_case_labels (vec<tree>);
1620 extern void preprocess_case_label_vec_for_gimple (vec<tree>, tree, tree *);
1621 extern void gimple_seq_set_location (gimple_seq, location_t);
1622 extern void gimple_seq_discard (gimple_seq);
1623 extern void maybe_remove_unused_call_args (struct function *, gimple *);
1624 extern bool gimple_inexpensive_call_p (gcall *);
1625 extern bool stmt_can_terminate_bb_p (gimple *);
1626 extern location_t gimple_or_expr_nonartificial_location (gimple *, tree);
1629 /* Formal (expression) temporary table handling: multiple occurrences of
1630 the same scalar expression are evaluated into the same temporary. */
1632 typedef struct gimple_temp_hash_elt
1634 tree val; /* Key */
1635 tree temp; /* Value */
1636 } elt_t;
1638 /* Get the number of the next statement uid to be allocated. */
1639 static inline unsigned int
1640 gimple_stmt_max_uid (struct function *fn)
1642 return fn->last_stmt_uid;
1645 /* Set the number of the next statement uid to be allocated. */
1646 static inline void
1647 set_gimple_stmt_max_uid (struct function *fn, unsigned int maxid)
1649 fn->last_stmt_uid = maxid;
1652 /* Set the number of the next statement uid to be allocated. */
1653 static inline unsigned int
1654 inc_gimple_stmt_max_uid (struct function *fn)
1656 return fn->last_stmt_uid++;
1659 /* Return the first node in GIMPLE sequence S. */
1661 static inline gimple_seq_node
1662 gimple_seq_first (gimple_seq s)
1664 return s;
1668 /* Return the first statement in GIMPLE sequence S. */
1670 static inline gimple *
1671 gimple_seq_first_stmt (gimple_seq s)
1673 gimple_seq_node n = gimple_seq_first (s);
1674 return n;
1677 /* Return the first statement in GIMPLE sequence S as a gbind *,
1678 verifying that it has code GIMPLE_BIND in a checked build. */
1680 static inline gbind *
1681 gimple_seq_first_stmt_as_a_bind (gimple_seq s)
1683 gimple_seq_node n = gimple_seq_first (s);
1684 return as_a <gbind *> (n);
1688 /* Return the last node in GIMPLE sequence S. */
1690 static inline gimple_seq_node
1691 gimple_seq_last (gimple_seq s)
1693 return s ? s->prev : NULL;
1697 /* Return the last statement in GIMPLE sequence S. */
1699 static inline gimple *
1700 gimple_seq_last_stmt (gimple_seq s)
1702 gimple_seq_node n = gimple_seq_last (s);
1703 return n;
1707 /* Set the last node in GIMPLE sequence *PS to LAST. */
1709 static inline void
1710 gimple_seq_set_last (gimple_seq *ps, gimple_seq_node last)
1712 (*ps)->prev = last;
1716 /* Set the first node in GIMPLE sequence *PS to FIRST. */
1718 static inline void
1719 gimple_seq_set_first (gimple_seq *ps, gimple_seq_node first)
1721 *ps = first;
1725 /* Return true if GIMPLE sequence S is empty. */
1727 static inline bool
1728 gimple_seq_empty_p (gimple_seq s)
1730 return s == NULL;
1733 /* Allocate a new sequence and initialize its first element with STMT. */
1735 static inline gimple_seq
1736 gimple_seq_alloc_with_stmt (gimple *stmt)
1738 gimple_seq seq = NULL;
1739 gimple_seq_add_stmt (&seq, stmt);
1740 return seq;
1744 /* Returns the sequence of statements in BB. */
1746 static inline gimple_seq
1747 bb_seq (const_basic_block bb)
1749 return (!(bb->flags & BB_RTL)) ? bb->il.gimple.seq : NULL;
1752 static inline gimple_seq *
1753 bb_seq_addr (basic_block bb)
1755 return (!(bb->flags & BB_RTL)) ? &bb->il.gimple.seq : NULL;
1758 /* Sets the sequence of statements in BB to SEQ. */
1760 static inline void
1761 set_bb_seq (basic_block bb, gimple_seq seq)
1763 gcc_checking_assert (!(bb->flags & BB_RTL));
1764 bb->il.gimple.seq = seq;
1768 /* Return the code for GIMPLE statement G. */
1770 static inline enum gimple_code
1771 gimple_code (const gimple *g)
1773 return g->code;
1777 /* Return the GSS code used by a GIMPLE code. */
1779 static inline enum gimple_statement_structure_enum
1780 gss_for_code (enum gimple_code code)
1782 gcc_gimple_checking_assert ((unsigned int)code < LAST_AND_UNUSED_GIMPLE_CODE);
1783 return gss_for_code_[code];
1787 /* Return which GSS code is used by GS. */
1789 static inline enum gimple_statement_structure_enum
1790 gimple_statement_structure (gimple *gs)
1792 return gss_for_code (gimple_code (gs));
1796 /* Return true if statement G has sub-statements. This is only true for
1797 High GIMPLE statements. */
1799 static inline bool
1800 gimple_has_substatements (gimple *g)
1802 switch (gimple_code (g))
1804 case GIMPLE_BIND:
1805 case GIMPLE_CATCH:
1806 case GIMPLE_EH_FILTER:
1807 case GIMPLE_EH_ELSE:
1808 case GIMPLE_TRY:
1809 case GIMPLE_OMP_FOR:
1810 case GIMPLE_OMP_MASTER:
1811 case GIMPLE_OMP_TASKGROUP:
1812 case GIMPLE_OMP_ORDERED:
1813 case GIMPLE_OMP_SECTION:
1814 case GIMPLE_OMP_PARALLEL:
1815 case GIMPLE_OMP_TASK:
1816 case GIMPLE_OMP_SECTIONS:
1817 case GIMPLE_OMP_SINGLE:
1818 case GIMPLE_OMP_TARGET:
1819 case GIMPLE_OMP_TEAMS:
1820 case GIMPLE_OMP_CRITICAL:
1821 case GIMPLE_WITH_CLEANUP_EXPR:
1822 case GIMPLE_TRANSACTION:
1823 return true;
1825 default:
1826 return false;
1831 /* Return the basic block holding statement G. */
1833 static inline basic_block
1834 gimple_bb (const gimple *g)
1836 return g->bb;
1840 /* Return the lexical scope block holding statement G. */
1842 static inline tree
1843 gimple_block (const gimple *g)
1845 return LOCATION_BLOCK (g->location);
1849 /* Set BLOCK to be the lexical scope block holding statement G. */
1851 static inline void
1852 gimple_set_block (gimple *g, tree block)
1854 g->location = set_block (g->location, block);
1858 /* Return location information for statement G. */
1860 static inline location_t
1861 gimple_location (const gimple *g)
1863 return g->location;
1866 /* Return location information for statement G if g is not NULL.
1867 Otherwise, UNKNOWN_LOCATION is returned. */
1869 static inline location_t
1870 gimple_location_safe (const gimple *g)
1872 return g ? gimple_location (g) : UNKNOWN_LOCATION;
1875 /* Set location information for statement G. */
1877 static inline void
1878 gimple_set_location (gimple *g, location_t location)
1880 g->location = location;
1883 /* Return address of the location information for statement G. */
1885 static inline location_t *
1886 gimple_location_ptr (gimple *g)
1888 return &g->location;
1892 /* Return true if G contains location information. */
1894 static inline bool
1895 gimple_has_location (const gimple *g)
1897 return LOCATION_LOCUS (gimple_location (g)) != UNKNOWN_LOCATION;
1901 /* Return non-artificial location information for statement G. */
1903 static inline location_t
1904 gimple_nonartificial_location (const gimple *g)
1906 location_t *ploc = NULL;
1908 if (tree block = gimple_block (g))
1909 ploc = block_nonartificial_location (block);
1911 return ploc ? *ploc : gimple_location (g);
1915 /* Return the file name of the location of STMT. */
1917 static inline const char *
1918 gimple_filename (const gimple *stmt)
1920 return LOCATION_FILE (gimple_location (stmt));
1924 /* Return the line number of the location of STMT. */
1926 static inline int
1927 gimple_lineno (const gimple *stmt)
1929 return LOCATION_LINE (gimple_location (stmt));
1933 /* Determine whether SEQ is a singleton. */
1935 static inline bool
1936 gimple_seq_singleton_p (gimple_seq seq)
1938 return ((gimple_seq_first (seq) != NULL)
1939 && (gimple_seq_first (seq) == gimple_seq_last (seq)));
1942 /* Return true if no warnings should be emitted for statement STMT. */
1944 static inline bool
1945 gimple_no_warning_p (const gimple *stmt)
1947 return stmt->no_warning;
1950 /* Set the no_warning flag of STMT to NO_WARNING. */
1952 static inline void
1953 gimple_set_no_warning (gimple *stmt, bool no_warning)
1955 stmt->no_warning = (unsigned) no_warning;
1958 /* Set the visited status on statement STMT to VISITED_P.
1960 Please note that this 'visited' property of the gimple statement is
1961 supposed to be undefined at pass boundaries. This means that a
1962 given pass should not assume it contains any useful value when the
1963 pass starts and thus can set it to any value it sees fit.
1965 You can learn more about the visited property of the gimple
1966 statement by reading the comments of the 'visited' data member of
1967 struct gimple.
1970 static inline void
1971 gimple_set_visited (gimple *stmt, bool visited_p)
1973 stmt->visited = (unsigned) visited_p;
1977 /* Return the visited status for statement STMT.
1979 Please note that this 'visited' property of the gimple statement is
1980 supposed to be undefined at pass boundaries. This means that a
1981 given pass should not assume it contains any useful value when the
1982 pass starts and thus can set it to any value it sees fit.
1984 You can learn more about the visited property of the gimple
1985 statement by reading the comments of the 'visited' data member of
1986 struct gimple. */
1988 static inline bool
1989 gimple_visited_p (gimple *stmt)
1991 return stmt->visited;
1995 /* Set pass local flag PLF on statement STMT to VAL_P.
1997 Please note that this PLF property of the gimple statement is
1998 supposed to be undefined at pass boundaries. This means that a
1999 given pass should not assume it contains any useful value when the
2000 pass starts and thus can set it to any value it sees fit.
2002 You can learn more about the PLF property by reading the comment of
2003 the 'plf' data member of struct gimple_statement_structure. */
2005 static inline void
2006 gimple_set_plf (gimple *stmt, enum plf_mask plf, bool val_p)
2008 if (val_p)
2009 stmt->plf |= (unsigned int) plf;
2010 else
2011 stmt->plf &= ~((unsigned int) plf);
2015 /* Return the value of pass local flag PLF on statement STMT.
2017 Please note that this 'plf' property of the gimple statement is
2018 supposed to be undefined at pass boundaries. This means that a
2019 given pass should not assume it contains any useful value when the
2020 pass starts and thus can set it to any value it sees fit.
2022 You can learn more about the plf property by reading the comment of
2023 the 'plf' data member of struct gimple_statement_structure. */
2025 static inline unsigned int
2026 gimple_plf (gimple *stmt, enum plf_mask plf)
2028 return stmt->plf & ((unsigned int) plf);
2032 /* Set the UID of statement.
2034 Please note that this UID property is supposed to be undefined at
2035 pass boundaries. This means that a given pass should not assume it
2036 contains any useful value when the pass starts and thus can set it
2037 to any value it sees fit. */
2039 static inline void
2040 gimple_set_uid (gimple *g, unsigned uid)
2042 g->uid = uid;
2046 /* Return the UID of statement.
2048 Please note that this UID property is supposed to be undefined at
2049 pass boundaries. This means that a given pass should not assume it
2050 contains any useful value when the pass starts and thus can set it
2051 to any value it sees fit. */
2053 static inline unsigned
2054 gimple_uid (const gimple *g)
2056 return g->uid;
2060 /* Make statement G a singleton sequence. */
2062 static inline void
2063 gimple_init_singleton (gimple *g)
2065 g->next = NULL;
2066 g->prev = g;
2070 /* Return true if GIMPLE statement G has register or memory operands. */
2072 static inline bool
2073 gimple_has_ops (const gimple *g)
2075 return gimple_code (g) >= GIMPLE_COND && gimple_code (g) <= GIMPLE_RETURN;
2078 template <>
2079 template <>
2080 inline bool
2081 is_a_helper <const gimple_statement_with_ops *>::test (const gimple *gs)
2083 return gimple_has_ops (gs);
2086 template <>
2087 template <>
2088 inline bool
2089 is_a_helper <gimple_statement_with_ops *>::test (gimple *gs)
2091 return gimple_has_ops (gs);
2094 /* Return true if GIMPLE statement G has memory operands. */
2096 static inline bool
2097 gimple_has_mem_ops (const gimple *g)
2099 return gimple_code (g) >= GIMPLE_ASSIGN && gimple_code (g) <= GIMPLE_RETURN;
2102 template <>
2103 template <>
2104 inline bool
2105 is_a_helper <const gimple_statement_with_memory_ops *>::test (const gimple *gs)
2107 return gimple_has_mem_ops (gs);
2110 template <>
2111 template <>
2112 inline bool
2113 is_a_helper <gimple_statement_with_memory_ops *>::test (gimple *gs)
2115 return gimple_has_mem_ops (gs);
2118 /* Return the set of USE operands for statement G. */
2120 static inline struct use_optype_d *
2121 gimple_use_ops (const gimple *g)
2123 const gimple_statement_with_ops *ops_stmt =
2124 dyn_cast <const gimple_statement_with_ops *> (g);
2125 if (!ops_stmt)
2126 return NULL;
2127 return ops_stmt->use_ops;
2131 /* Set USE to be the set of USE operands for statement G. */
2133 static inline void
2134 gimple_set_use_ops (gimple *g, struct use_optype_d *use)
2136 gimple_statement_with_ops *ops_stmt =
2137 as_a <gimple_statement_with_ops *> (g);
2138 ops_stmt->use_ops = use;
2142 /* Return the single VUSE operand of the statement G. */
2144 static inline tree
2145 gimple_vuse (const gimple *g)
2147 const gimple_statement_with_memory_ops *mem_ops_stmt =
2148 dyn_cast <const gimple_statement_with_memory_ops *> (g);
2149 if (!mem_ops_stmt)
2150 return NULL_TREE;
2151 return mem_ops_stmt->vuse;
2154 /* Return the single VDEF operand of the statement G. */
2156 static inline tree
2157 gimple_vdef (const gimple *g)
2159 const gimple_statement_with_memory_ops *mem_ops_stmt =
2160 dyn_cast <const gimple_statement_with_memory_ops *> (g);
2161 if (!mem_ops_stmt)
2162 return NULL_TREE;
2163 return mem_ops_stmt->vdef;
2166 /* Return the single VUSE operand of the statement G. */
2168 static inline tree *
2169 gimple_vuse_ptr (gimple *g)
2171 gimple_statement_with_memory_ops *mem_ops_stmt =
2172 dyn_cast <gimple_statement_with_memory_ops *> (g);
2173 if (!mem_ops_stmt)
2174 return NULL;
2175 return &mem_ops_stmt->vuse;
2178 /* Return the single VDEF operand of the statement G. */
2180 static inline tree *
2181 gimple_vdef_ptr (gimple *g)
2183 gimple_statement_with_memory_ops *mem_ops_stmt =
2184 dyn_cast <gimple_statement_with_memory_ops *> (g);
2185 if (!mem_ops_stmt)
2186 return NULL;
2187 return &mem_ops_stmt->vdef;
2190 /* Set the single VUSE operand of the statement G. */
2192 static inline void
2193 gimple_set_vuse (gimple *g, tree vuse)
2195 gimple_statement_with_memory_ops *mem_ops_stmt =
2196 as_a <gimple_statement_with_memory_ops *> (g);
2197 mem_ops_stmt->vuse = vuse;
2200 /* Set the single VDEF operand of the statement G. */
2202 static inline void
2203 gimple_set_vdef (gimple *g, tree vdef)
2205 gimple_statement_with_memory_ops *mem_ops_stmt =
2206 as_a <gimple_statement_with_memory_ops *> (g);
2207 mem_ops_stmt->vdef = vdef;
2211 /* Return true if statement G has operands and the modified field has
2212 been set. */
2214 static inline bool
2215 gimple_modified_p (const gimple *g)
2217 return (gimple_has_ops (g)) ? (bool) g->modified : false;
2221 /* Set the MODIFIED flag to MODIFIEDP, iff the gimple statement G has
2222 a MODIFIED field. */
2224 static inline void
2225 gimple_set_modified (gimple *s, bool modifiedp)
2227 if (gimple_has_ops (s))
2228 s->modified = (unsigned) modifiedp;
2232 /* Return the tree code for the expression computed by STMT. This is
2233 only valid for GIMPLE_COND, GIMPLE_CALL and GIMPLE_ASSIGN. For
2234 GIMPLE_CALL, return CALL_EXPR as the expression code for
2235 consistency. This is useful when the caller needs to deal with the
2236 three kinds of computation that GIMPLE supports. */
2238 static inline enum tree_code
2239 gimple_expr_code (const gimple *stmt)
2241 enum gimple_code code = gimple_code (stmt);
2242 if (code == GIMPLE_ASSIGN || code == GIMPLE_COND)
2243 return (enum tree_code) stmt->subcode;
2244 else
2246 gcc_gimple_checking_assert (code == GIMPLE_CALL);
2247 return CALL_EXPR;
2252 /* Return true if statement STMT contains volatile operands. */
2254 static inline bool
2255 gimple_has_volatile_ops (const gimple *stmt)
2257 if (gimple_has_mem_ops (stmt))
2258 return stmt->has_volatile_ops;
2259 else
2260 return false;
2264 /* Set the HAS_VOLATILE_OPS flag to VOLATILEP. */
2266 static inline void
2267 gimple_set_has_volatile_ops (gimple *stmt, bool volatilep)
2269 if (gimple_has_mem_ops (stmt))
2270 stmt->has_volatile_ops = (unsigned) volatilep;
2273 /* Return true if STMT is in a transaction. */
2275 static inline bool
2276 gimple_in_transaction (const gimple *stmt)
2278 return bb_in_transaction (gimple_bb (stmt));
2281 /* Return true if statement STMT may access memory. */
2283 static inline bool
2284 gimple_references_memory_p (gimple *stmt)
2286 return gimple_has_mem_ops (stmt) && gimple_vuse (stmt);
2290 /* Return the subcode for OMP statement S. */
2292 static inline unsigned
2293 gimple_omp_subcode (const gimple *s)
2295 gcc_gimple_checking_assert (gimple_code (s) >= GIMPLE_OMP_ATOMIC_LOAD
2296 && gimple_code (s) <= GIMPLE_OMP_TEAMS);
2297 return s->subcode;
2300 /* Set the subcode for OMP statement S to SUBCODE. */
2302 static inline void
2303 gimple_omp_set_subcode (gimple *s, unsigned int subcode)
2305 /* We only have 16 bits for the subcode. Assert that we are not
2306 overflowing it. */
2307 gcc_gimple_checking_assert (subcode < (1 << 16));
2308 s->subcode = subcode;
2311 /* Set the nowait flag on OMP_RETURN statement S. */
2313 static inline void
2314 gimple_omp_return_set_nowait (gimple *s)
2316 GIMPLE_CHECK (s, GIMPLE_OMP_RETURN);
2317 s->subcode |= GF_OMP_RETURN_NOWAIT;
2321 /* Return true if OMP return statement G has the GF_OMP_RETURN_NOWAIT
2322 flag set. */
2324 static inline bool
2325 gimple_omp_return_nowait_p (const gimple *g)
2327 GIMPLE_CHECK (g, GIMPLE_OMP_RETURN);
2328 return (gimple_omp_subcode (g) & GF_OMP_RETURN_NOWAIT) != 0;
2332 /* Set the LHS of OMP return. */
2334 static inline void
2335 gimple_omp_return_set_lhs (gimple *g, tree lhs)
2337 gimple_statement_omp_return *omp_return_stmt =
2338 as_a <gimple_statement_omp_return *> (g);
2339 omp_return_stmt->val = lhs;
2343 /* Get the LHS of OMP return. */
2345 static inline tree
2346 gimple_omp_return_lhs (const gimple *g)
2348 const gimple_statement_omp_return *omp_return_stmt =
2349 as_a <const gimple_statement_omp_return *> (g);
2350 return omp_return_stmt->val;
2354 /* Return a pointer to the LHS of OMP return. */
2356 static inline tree *
2357 gimple_omp_return_lhs_ptr (gimple *g)
2359 gimple_statement_omp_return *omp_return_stmt =
2360 as_a <gimple_statement_omp_return *> (g);
2361 return &omp_return_stmt->val;
2365 /* Return true if OMP section statement G has the GF_OMP_SECTION_LAST
2366 flag set. */
2368 static inline bool
2369 gimple_omp_section_last_p (const gimple *g)
2371 GIMPLE_CHECK (g, GIMPLE_OMP_SECTION);
2372 return (gimple_omp_subcode (g) & GF_OMP_SECTION_LAST) != 0;
2376 /* Set the GF_OMP_SECTION_LAST flag on G. */
2378 static inline void
2379 gimple_omp_section_set_last (gimple *g)
2381 GIMPLE_CHECK (g, GIMPLE_OMP_SECTION);
2382 g->subcode |= GF_OMP_SECTION_LAST;
2386 /* Return true if OMP parallel statement G has the
2387 GF_OMP_PARALLEL_COMBINED flag set. */
2389 static inline bool
2390 gimple_omp_parallel_combined_p (const gimple *g)
2392 GIMPLE_CHECK (g, GIMPLE_OMP_PARALLEL);
2393 return (gimple_omp_subcode (g) & GF_OMP_PARALLEL_COMBINED) != 0;
2397 /* Set the GF_OMP_PARALLEL_COMBINED field in G depending on the boolean
2398 value of COMBINED_P. */
2400 static inline void
2401 gimple_omp_parallel_set_combined_p (gimple *g, bool combined_p)
2403 GIMPLE_CHECK (g, GIMPLE_OMP_PARALLEL);
2404 if (combined_p)
2405 g->subcode |= GF_OMP_PARALLEL_COMBINED;
2406 else
2407 g->subcode &= ~GF_OMP_PARALLEL_COMBINED;
2411 /* Return true if OMP atomic load/store statement G has the
2412 GF_OMP_ATOMIC_NEED_VALUE flag set. */
2414 static inline bool
2415 gimple_omp_atomic_need_value_p (const gimple *g)
2417 if (gimple_code (g) != GIMPLE_OMP_ATOMIC_LOAD)
2418 GIMPLE_CHECK (g, GIMPLE_OMP_ATOMIC_STORE);
2419 return (gimple_omp_subcode (g) & GF_OMP_ATOMIC_NEED_VALUE) != 0;
2423 /* Set the GF_OMP_ATOMIC_NEED_VALUE flag on G. */
2425 static inline void
2426 gimple_omp_atomic_set_need_value (gimple *g)
2428 if (gimple_code (g) != GIMPLE_OMP_ATOMIC_LOAD)
2429 GIMPLE_CHECK (g, GIMPLE_OMP_ATOMIC_STORE);
2430 g->subcode |= GF_OMP_ATOMIC_NEED_VALUE;
2434 /* Return the memory order of the OMP atomic load/store statement G. */
2436 static inline enum omp_memory_order
2437 gimple_omp_atomic_memory_order (const gimple *g)
2439 if (gimple_code (g) != GIMPLE_OMP_ATOMIC_LOAD)
2440 GIMPLE_CHECK (g, GIMPLE_OMP_ATOMIC_STORE);
2441 return (enum omp_memory_order)
2442 (gimple_omp_subcode (g) & GF_OMP_ATOMIC_MEMORY_ORDER);
2446 /* Set the memory order on G. */
2448 static inline void
2449 gimple_omp_atomic_set_memory_order (gimple *g, enum omp_memory_order mo)
2451 if (gimple_code (g) != GIMPLE_OMP_ATOMIC_LOAD)
2452 GIMPLE_CHECK (g, GIMPLE_OMP_ATOMIC_STORE);
2453 g->subcode = ((g->subcode & ~GF_OMP_ATOMIC_MEMORY_ORDER)
2454 | (mo & GF_OMP_ATOMIC_MEMORY_ORDER));
2458 /* Return the number of operands for statement GS. */
2460 static inline unsigned
2461 gimple_num_ops (const gimple *gs)
2463 return gs->num_ops;
2467 /* Set the number of operands for statement GS. */
2469 static inline void
2470 gimple_set_num_ops (gimple *gs, unsigned num_ops)
2472 gs->num_ops = num_ops;
2476 /* Return the array of operands for statement GS. */
2478 static inline tree *
2479 gimple_ops (gimple *gs)
2481 size_t off;
2483 /* All the tuples have their operand vector at the very bottom
2484 of the structure. Note that those structures that do not
2485 have an operand vector have a zero offset. */
2486 off = gimple_ops_offset_[gimple_statement_structure (gs)];
2487 gcc_gimple_checking_assert (off != 0);
2489 return (tree *) ((char *) gs + off);
2493 /* Return operand I for statement GS. */
2495 static inline tree
2496 gimple_op (const gimple *gs, unsigned i)
2498 if (gimple_has_ops (gs))
2500 gcc_gimple_checking_assert (i < gimple_num_ops (gs));
2501 return gimple_ops (CONST_CAST_GIMPLE (gs))[i];
2503 else
2504 return NULL_TREE;
2507 /* Return a pointer to operand I for statement GS. */
2509 static inline tree *
2510 gimple_op_ptr (gimple *gs, unsigned i)
2512 if (gimple_has_ops (gs))
2514 gcc_gimple_checking_assert (i < gimple_num_ops (gs));
2515 return gimple_ops (gs) + i;
2517 else
2518 return NULL;
2521 /* Set operand I of statement GS to OP. */
2523 static inline void
2524 gimple_set_op (gimple *gs, unsigned i, tree op)
2526 gcc_gimple_checking_assert (gimple_has_ops (gs) && i < gimple_num_ops (gs));
2528 /* Note. It may be tempting to assert that OP matches
2529 is_gimple_operand, but that would be wrong. Different tuples
2530 accept slightly different sets of tree operands. Each caller
2531 should perform its own validation. */
2532 gimple_ops (gs)[i] = op;
2535 /* Return true if GS is a GIMPLE_ASSIGN. */
2537 static inline bool
2538 is_gimple_assign (const gimple *gs)
2540 return gimple_code (gs) == GIMPLE_ASSIGN;
2543 /* Determine if expression CODE is one of the valid expressions that can
2544 be used on the RHS of GIMPLE assignments. */
2546 static inline enum gimple_rhs_class
2547 get_gimple_rhs_class (enum tree_code code)
2549 return (enum gimple_rhs_class) gimple_rhs_class_table[(int) code];
2552 /* Return the LHS of assignment statement GS. */
2554 static inline tree
2555 gimple_assign_lhs (const gassign *gs)
2557 return gs->op[0];
2560 static inline tree
2561 gimple_assign_lhs (const gimple *gs)
2563 const gassign *ass = GIMPLE_CHECK2<const gassign *> (gs);
2564 return gimple_assign_lhs (ass);
2568 /* Return a pointer to the LHS of assignment statement GS. */
2570 static inline tree *
2571 gimple_assign_lhs_ptr (gassign *gs)
2573 return &gs->op[0];
2576 static inline tree *
2577 gimple_assign_lhs_ptr (gimple *gs)
2579 gassign *ass = GIMPLE_CHECK2<gassign *> (gs);
2580 return gimple_assign_lhs_ptr (ass);
2584 /* Set LHS to be the LHS operand of assignment statement GS. */
2586 static inline void
2587 gimple_assign_set_lhs (gassign *gs, tree lhs)
2589 gs->op[0] = lhs;
2591 if (lhs && TREE_CODE (lhs) == SSA_NAME)
2592 SSA_NAME_DEF_STMT (lhs) = gs;
2595 static inline void
2596 gimple_assign_set_lhs (gimple *gs, tree lhs)
2598 gassign *ass = GIMPLE_CHECK2<gassign *> (gs);
2599 gimple_assign_set_lhs (ass, lhs);
2603 /* Return the first operand on the RHS of assignment statement GS. */
2605 static inline tree
2606 gimple_assign_rhs1 (const gassign *gs)
2608 return gs->op[1];
2611 static inline tree
2612 gimple_assign_rhs1 (const gimple *gs)
2614 const gassign *ass = GIMPLE_CHECK2<const gassign *> (gs);
2615 return gimple_assign_rhs1 (ass);
2619 /* Return a pointer to the first operand on the RHS of assignment
2620 statement GS. */
2622 static inline tree *
2623 gimple_assign_rhs1_ptr (gassign *gs)
2625 return &gs->op[1];
2628 static inline tree *
2629 gimple_assign_rhs1_ptr (gimple *gs)
2631 gassign *ass = GIMPLE_CHECK2<gassign *> (gs);
2632 return gimple_assign_rhs1_ptr (ass);
2635 /* Set RHS to be the first operand on the RHS of assignment statement GS. */
2637 static inline void
2638 gimple_assign_set_rhs1 (gassign *gs, tree rhs)
2640 gs->op[1] = rhs;
2643 static inline void
2644 gimple_assign_set_rhs1 (gimple *gs, tree rhs)
2646 gassign *ass = GIMPLE_CHECK2<gassign *> (gs);
2647 gimple_assign_set_rhs1 (ass, rhs);
2651 /* Return the second operand on the RHS of assignment statement GS.
2652 If GS does not have two operands, NULL is returned instead. */
2654 static inline tree
2655 gimple_assign_rhs2 (const gassign *gs)
2657 if (gimple_num_ops (gs) >= 3)
2658 return gs->op[2];
2659 else
2660 return NULL_TREE;
2663 static inline tree
2664 gimple_assign_rhs2 (const gimple *gs)
2666 const gassign *ass = GIMPLE_CHECK2<const gassign *> (gs);
2667 return gimple_assign_rhs2 (ass);
2671 /* Return a pointer to the second operand on the RHS of assignment
2672 statement GS. */
2674 static inline tree *
2675 gimple_assign_rhs2_ptr (gassign *gs)
2677 gcc_gimple_checking_assert (gimple_num_ops (gs) >= 3);
2678 return &gs->op[2];
2681 static inline tree *
2682 gimple_assign_rhs2_ptr (gimple *gs)
2684 gassign *ass = GIMPLE_CHECK2<gassign *> (gs);
2685 return gimple_assign_rhs2_ptr (ass);
2689 /* Set RHS to be the second operand on the RHS of assignment statement GS. */
2691 static inline void
2692 gimple_assign_set_rhs2 (gassign *gs, tree rhs)
2694 gcc_gimple_checking_assert (gimple_num_ops (gs) >= 3);
2695 gs->op[2] = rhs;
2698 static inline void
2699 gimple_assign_set_rhs2 (gimple *gs, tree rhs)
2701 gassign *ass = GIMPLE_CHECK2<gassign *> (gs);
2702 return gimple_assign_set_rhs2 (ass, rhs);
2705 /* Return the third operand on the RHS of assignment statement GS.
2706 If GS does not have two operands, NULL is returned instead. */
2708 static inline tree
2709 gimple_assign_rhs3 (const gassign *gs)
2711 if (gimple_num_ops (gs) >= 4)
2712 return gs->op[3];
2713 else
2714 return NULL_TREE;
2717 static inline tree
2718 gimple_assign_rhs3 (const gimple *gs)
2720 const gassign *ass = GIMPLE_CHECK2<const gassign *> (gs);
2721 return gimple_assign_rhs3 (ass);
2724 /* Return a pointer to the third operand on the RHS of assignment
2725 statement GS. */
2727 static inline tree *
2728 gimple_assign_rhs3_ptr (gimple *gs)
2730 gassign *ass = GIMPLE_CHECK2<gassign *> (gs);
2731 gcc_gimple_checking_assert (gimple_num_ops (gs) >= 4);
2732 return &ass->op[3];
2736 /* Set RHS to be the third operand on the RHS of assignment statement GS. */
2738 static inline void
2739 gimple_assign_set_rhs3 (gassign *gs, tree rhs)
2741 gcc_gimple_checking_assert (gimple_num_ops (gs) >= 4);
2742 gs->op[3] = rhs;
2745 static inline void
2746 gimple_assign_set_rhs3 (gimple *gs, tree rhs)
2748 gassign *ass = GIMPLE_CHECK2<gassign *> (gs);
2749 gimple_assign_set_rhs3 (ass, rhs);
2753 /* A wrapper around 3 operand gimple_assign_set_rhs_with_ops, for callers
2754 which expect to see only two operands. */
2756 static inline void
2757 gimple_assign_set_rhs_with_ops (gimple_stmt_iterator *gsi, enum tree_code code,
2758 tree op1, tree op2)
2760 gimple_assign_set_rhs_with_ops (gsi, code, op1, op2, NULL);
2763 /* A wrapper around 3 operand gimple_assign_set_rhs_with_ops, for callers
2764 which expect to see only one operands. */
2766 static inline void
2767 gimple_assign_set_rhs_with_ops (gimple_stmt_iterator *gsi, enum tree_code code,
2768 tree op1)
2770 gimple_assign_set_rhs_with_ops (gsi, code, op1, NULL, NULL);
2773 /* Returns true if GS is a nontemporal move. */
2775 static inline bool
2776 gimple_assign_nontemporal_move_p (const gassign *gs)
2778 return gs->nontemporal_move;
2781 /* Sets nontemporal move flag of GS to NONTEMPORAL. */
2783 static inline void
2784 gimple_assign_set_nontemporal_move (gimple *gs, bool nontemporal)
2786 GIMPLE_CHECK (gs, GIMPLE_ASSIGN);
2787 gs->nontemporal_move = nontemporal;
2791 /* Return the code of the expression computed on the rhs of assignment
2792 statement GS. In case that the RHS is a single object, returns the
2793 tree code of the object. */
2795 static inline enum tree_code
2796 gimple_assign_rhs_code (const gassign *gs)
2798 enum tree_code code = (enum tree_code) gs->subcode;
2799 /* While we initially set subcode to the TREE_CODE of the rhs for
2800 GIMPLE_SINGLE_RHS assigns we do not update that subcode to stay
2801 in sync when we rewrite stmts into SSA form or do SSA propagations. */
2802 if (get_gimple_rhs_class (code) == GIMPLE_SINGLE_RHS)
2803 code = TREE_CODE (gs->op[1]);
2805 return code;
2808 static inline enum tree_code
2809 gimple_assign_rhs_code (const gimple *gs)
2811 const gassign *ass = GIMPLE_CHECK2<const gassign *> (gs);
2812 return gimple_assign_rhs_code (ass);
2816 /* Set CODE to be the code for the expression computed on the RHS of
2817 assignment S. */
2819 static inline void
2820 gimple_assign_set_rhs_code (gimple *s, enum tree_code code)
2822 GIMPLE_CHECK (s, GIMPLE_ASSIGN);
2823 s->subcode = code;
2827 /* Return the gimple rhs class of the code of the expression computed on
2828 the rhs of assignment statement GS.
2829 This will never return GIMPLE_INVALID_RHS. */
2831 static inline enum gimple_rhs_class
2832 gimple_assign_rhs_class (const gimple *gs)
2834 return get_gimple_rhs_class (gimple_assign_rhs_code (gs));
2837 /* Return true if GS is an assignment with a singleton RHS, i.e.,
2838 there is no operator associated with the assignment itself.
2839 Unlike gimple_assign_copy_p, this predicate returns true for
2840 any RHS operand, including those that perform an operation
2841 and do not have the semantics of a copy, such as COND_EXPR. */
2843 static inline bool
2844 gimple_assign_single_p (const gimple *gs)
2846 return (is_gimple_assign (gs)
2847 && gimple_assign_rhs_class (gs) == GIMPLE_SINGLE_RHS);
2850 /* Return true if GS performs a store to its lhs. */
2852 static inline bool
2853 gimple_store_p (const gimple *gs)
2855 tree lhs = gimple_get_lhs (gs);
2856 return lhs && !is_gimple_reg (lhs);
2859 /* Return true if GS is an assignment that loads from its rhs1. */
2861 static inline bool
2862 gimple_assign_load_p (const gimple *gs)
2864 tree rhs;
2865 if (!gimple_assign_single_p (gs))
2866 return false;
2867 rhs = gimple_assign_rhs1 (gs);
2868 if (TREE_CODE (rhs) == WITH_SIZE_EXPR)
2869 return true;
2870 rhs = get_base_address (rhs);
2871 return (DECL_P (rhs)
2872 || TREE_CODE (rhs) == MEM_REF || TREE_CODE (rhs) == TARGET_MEM_REF);
2876 /* Return true if S is a type-cast assignment. */
2878 static inline bool
2879 gimple_assign_cast_p (const gimple *s)
2881 if (is_gimple_assign (s))
2883 enum tree_code sc = gimple_assign_rhs_code (s);
2884 return CONVERT_EXPR_CODE_P (sc)
2885 || sc == VIEW_CONVERT_EXPR
2886 || sc == FIX_TRUNC_EXPR;
2889 return false;
2892 /* Return true if S is a clobber statement. */
2894 static inline bool
2895 gimple_clobber_p (const gimple *s)
2897 return gimple_assign_single_p (s)
2898 && TREE_CLOBBER_P (gimple_assign_rhs1 (s));
2901 /* Return true if GS is a GIMPLE_CALL. */
2903 static inline bool
2904 is_gimple_call (const gimple *gs)
2906 return gimple_code (gs) == GIMPLE_CALL;
2909 /* Return the LHS of call statement GS. */
2911 static inline tree
2912 gimple_call_lhs (const gcall *gs)
2914 return gs->op[0];
2917 static inline tree
2918 gimple_call_lhs (const gimple *gs)
2920 const gcall *gc = GIMPLE_CHECK2<const gcall *> (gs);
2921 return gimple_call_lhs (gc);
2925 /* Return a pointer to the LHS of call statement GS. */
2927 static inline tree *
2928 gimple_call_lhs_ptr (gcall *gs)
2930 return &gs->op[0];
2933 static inline tree *
2934 gimple_call_lhs_ptr (gimple *gs)
2936 gcall *gc = GIMPLE_CHECK2<gcall *> (gs);
2937 return gimple_call_lhs_ptr (gc);
2941 /* Set LHS to be the LHS operand of call statement GS. */
2943 static inline void
2944 gimple_call_set_lhs (gcall *gs, tree lhs)
2946 gs->op[0] = lhs;
2947 if (lhs && TREE_CODE (lhs) == SSA_NAME)
2948 SSA_NAME_DEF_STMT (lhs) = gs;
2951 static inline void
2952 gimple_call_set_lhs (gimple *gs, tree lhs)
2954 gcall *gc = GIMPLE_CHECK2<gcall *> (gs);
2955 gimple_call_set_lhs (gc, lhs);
2959 /* Return true if call GS calls an internal-only function, as enumerated
2960 by internal_fn. */
2962 static inline bool
2963 gimple_call_internal_p (const gcall *gs)
2965 return (gs->subcode & GF_CALL_INTERNAL) != 0;
2968 static inline bool
2969 gimple_call_internal_p (const gimple *gs)
2971 const gcall *gc = GIMPLE_CHECK2<const gcall *> (gs);
2972 return gimple_call_internal_p (gc);
2975 /* Return true if call GS is marked as nocf_check. */
2977 static inline bool
2978 gimple_call_nocf_check_p (const gcall *gs)
2980 return (gs->subcode & GF_CALL_NOCF_CHECK) != 0;
2983 /* Mark statement GS as nocf_check call. */
2985 static inline void
2986 gimple_call_set_nocf_check (gcall *gs, bool nocf_check)
2988 if (nocf_check)
2989 gs->subcode |= GF_CALL_NOCF_CHECK;
2990 else
2991 gs->subcode &= ~GF_CALL_NOCF_CHECK;
2994 /* Return the target of internal call GS. */
2996 static inline enum internal_fn
2997 gimple_call_internal_fn (const gcall *gs)
2999 gcc_gimple_checking_assert (gimple_call_internal_p (gs));
3000 return gs->u.internal_fn;
3003 static inline enum internal_fn
3004 gimple_call_internal_fn (const gimple *gs)
3006 const gcall *gc = GIMPLE_CHECK2<const gcall *> (gs);
3007 return gimple_call_internal_fn (gc);
3010 /* Return true, if this internal gimple call is unique. */
3012 static inline bool
3013 gimple_call_internal_unique_p (const gcall *gs)
3015 return gimple_call_internal_fn (gs) == IFN_UNIQUE;
3018 static inline bool
3019 gimple_call_internal_unique_p (const gimple *gs)
3021 const gcall *gc = GIMPLE_CHECK2<const gcall *> (gs);
3022 return gimple_call_internal_unique_p (gc);
3025 /* Return true if GS is an internal function FN. */
3027 static inline bool
3028 gimple_call_internal_p (const gimple *gs, internal_fn fn)
3030 return (is_gimple_call (gs)
3031 && gimple_call_internal_p (gs)
3032 && gimple_call_internal_fn (gs) == fn);
3035 /* If CTRL_ALTERING_P is true, mark GIMPLE_CALL S to be a stmt
3036 that could alter control flow. */
3038 static inline void
3039 gimple_call_set_ctrl_altering (gcall *s, bool ctrl_altering_p)
3041 if (ctrl_altering_p)
3042 s->subcode |= GF_CALL_CTRL_ALTERING;
3043 else
3044 s->subcode &= ~GF_CALL_CTRL_ALTERING;
3047 static inline void
3048 gimple_call_set_ctrl_altering (gimple *s, bool ctrl_altering_p)
3050 gcall *gc = GIMPLE_CHECK2<gcall *> (s);
3051 gimple_call_set_ctrl_altering (gc, ctrl_altering_p);
3054 /* Return true if call GS calls an func whose GF_CALL_CTRL_ALTERING
3055 flag is set. Such call could not be a stmt in the middle of a bb. */
3057 static inline bool
3058 gimple_call_ctrl_altering_p (const gcall *gs)
3060 return (gs->subcode & GF_CALL_CTRL_ALTERING) != 0;
3063 static inline bool
3064 gimple_call_ctrl_altering_p (const gimple *gs)
3066 const gcall *gc = GIMPLE_CHECK2<const gcall *> (gs);
3067 return gimple_call_ctrl_altering_p (gc);
3071 /* Return the function type of the function called by GS. */
3073 static inline tree
3074 gimple_call_fntype (const gcall *gs)
3076 if (gimple_call_internal_p (gs))
3077 return NULL_TREE;
3078 return gs->u.fntype;
3081 static inline tree
3082 gimple_call_fntype (const gimple *gs)
3084 const gcall *call_stmt = GIMPLE_CHECK2<const gcall *> (gs);
3085 return gimple_call_fntype (call_stmt);
3088 /* Set the type of the function called by CALL_STMT to FNTYPE. */
3090 static inline void
3091 gimple_call_set_fntype (gcall *call_stmt, tree fntype)
3093 gcc_gimple_checking_assert (!gimple_call_internal_p (call_stmt));
3094 call_stmt->u.fntype = fntype;
3098 /* Return the tree node representing the function called by call
3099 statement GS. */
3101 static inline tree
3102 gimple_call_fn (const gcall *gs)
3104 return gs->op[1];
3107 static inline tree
3108 gimple_call_fn (const gimple *gs)
3110 const gcall *gc = GIMPLE_CHECK2<const gcall *> (gs);
3111 return gimple_call_fn (gc);
3114 /* Return a pointer to the tree node representing the function called by call
3115 statement GS. */
3117 static inline tree *
3118 gimple_call_fn_ptr (gcall *gs)
3120 return &gs->op[1];
3123 static inline tree *
3124 gimple_call_fn_ptr (gimple *gs)
3126 gcall *gc = GIMPLE_CHECK2<gcall *> (gs);
3127 return gimple_call_fn_ptr (gc);
3131 /* Set FN to be the function called by call statement GS. */
3133 static inline void
3134 gimple_call_set_fn (gcall *gs, tree fn)
3136 gcc_gimple_checking_assert (!gimple_call_internal_p (gs));
3137 gs->op[1] = fn;
3141 /* Set FNDECL to be the function called by call statement GS. */
3143 static inline void
3144 gimple_call_set_fndecl (gcall *gs, tree decl)
3146 gcc_gimple_checking_assert (!gimple_call_internal_p (gs));
3147 gs->op[1] = build1_loc (gimple_location (gs), ADDR_EXPR,
3148 build_pointer_type (TREE_TYPE (decl)), decl);
3151 static inline void
3152 gimple_call_set_fndecl (gimple *gs, tree decl)
3154 gcall *gc = GIMPLE_CHECK2<gcall *> (gs);
3155 gimple_call_set_fndecl (gc, decl);
3159 /* Set internal function FN to be the function called by call statement CALL_STMT. */
3161 static inline void
3162 gimple_call_set_internal_fn (gcall *call_stmt, enum internal_fn fn)
3164 gcc_gimple_checking_assert (gimple_call_internal_p (call_stmt));
3165 call_stmt->u.internal_fn = fn;
3169 /* If a given GIMPLE_CALL's callee is a FUNCTION_DECL, return it.
3170 Otherwise return NULL. This function is analogous to
3171 get_callee_fndecl in tree land. */
3173 static inline tree
3174 gimple_call_fndecl (const gcall *gs)
3176 return gimple_call_addr_fndecl (gimple_call_fn (gs));
3179 static inline tree
3180 gimple_call_fndecl (const gimple *gs)
3182 const gcall *gc = GIMPLE_CHECK2<const gcall *> (gs);
3183 return gimple_call_fndecl (gc);
3187 /* Return the type returned by call statement GS. */
3189 static inline tree
3190 gimple_call_return_type (const gcall *gs)
3192 tree type = gimple_call_fntype (gs);
3194 if (type == NULL_TREE)
3195 return TREE_TYPE (gimple_call_lhs (gs));
3197 /* The type returned by a function is the type of its
3198 function type. */
3199 return TREE_TYPE (type);
3203 /* Return the static chain for call statement GS. */
3205 static inline tree
3206 gimple_call_chain (const gcall *gs)
3208 return gs->op[2];
3211 static inline tree
3212 gimple_call_chain (const gimple *gs)
3214 const gcall *gc = GIMPLE_CHECK2<const gcall *> (gs);
3215 return gimple_call_chain (gc);
3219 /* Return a pointer to the static chain for call statement CALL_STMT. */
3221 static inline tree *
3222 gimple_call_chain_ptr (gcall *call_stmt)
3224 return &call_stmt->op[2];
3227 /* Set CHAIN to be the static chain for call statement CALL_STMT. */
3229 static inline void
3230 gimple_call_set_chain (gcall *call_stmt, tree chain)
3232 call_stmt->op[2] = chain;
3236 /* Return the number of arguments used by call statement GS. */
3238 static inline unsigned
3239 gimple_call_num_args (const gcall *gs)
3241 return gimple_num_ops (gs) - 3;
3244 static inline unsigned
3245 gimple_call_num_args (const gimple *gs)
3247 const gcall *gc = GIMPLE_CHECK2<const gcall *> (gs);
3248 return gimple_call_num_args (gc);
3252 /* Return the argument at position INDEX for call statement GS. */
3254 static inline tree
3255 gimple_call_arg (const gcall *gs, unsigned index)
3257 gcc_gimple_checking_assert (gimple_num_ops (gs) > index + 3);
3258 return gs->op[index + 3];
3261 static inline tree
3262 gimple_call_arg (const gimple *gs, unsigned index)
3264 const gcall *gc = GIMPLE_CHECK2<const gcall *> (gs);
3265 return gimple_call_arg (gc, index);
3269 /* Return a pointer to the argument at position INDEX for call
3270 statement GS. */
3272 static inline tree *
3273 gimple_call_arg_ptr (gcall *gs, unsigned index)
3275 gcc_gimple_checking_assert (gimple_num_ops (gs) > index + 3);
3276 return &gs->op[index + 3];
3279 static inline tree *
3280 gimple_call_arg_ptr (gimple *gs, unsigned index)
3282 gcall *gc = GIMPLE_CHECK2<gcall *> (gs);
3283 return gimple_call_arg_ptr (gc, index);
3287 /* Set ARG to be the argument at position INDEX for call statement GS. */
3289 static inline void
3290 gimple_call_set_arg (gcall *gs, unsigned index, tree arg)
3292 gcc_gimple_checking_assert (gimple_num_ops (gs) > index + 3);
3293 gs->op[index + 3] = arg;
3296 static inline void
3297 gimple_call_set_arg (gimple *gs, unsigned index, tree arg)
3299 gcall *gc = GIMPLE_CHECK2<gcall *> (gs);
3300 gimple_call_set_arg (gc, index, arg);
3304 /* If TAIL_P is true, mark call statement S as being a tail call
3305 (i.e., a call just before the exit of a function). These calls are
3306 candidate for tail call optimization. */
3308 static inline void
3309 gimple_call_set_tail (gcall *s, bool tail_p)
3311 if (tail_p)
3312 s->subcode |= GF_CALL_TAILCALL;
3313 else
3314 s->subcode &= ~GF_CALL_TAILCALL;
3318 /* Return true if GIMPLE_CALL S is marked as a tail call. */
3320 static inline bool
3321 gimple_call_tail_p (const gcall *s)
3323 return (s->subcode & GF_CALL_TAILCALL) != 0;
3326 /* Mark (or clear) call statement S as requiring tail call optimization. */
3328 static inline void
3329 gimple_call_set_must_tail (gcall *s, bool must_tail_p)
3331 if (must_tail_p)
3332 s->subcode |= GF_CALL_MUST_TAIL_CALL;
3333 else
3334 s->subcode &= ~GF_CALL_MUST_TAIL_CALL;
3337 /* Return true if call statement has been marked as requiring
3338 tail call optimization. */
3340 static inline bool
3341 gimple_call_must_tail_p (const gcall *s)
3343 return (s->subcode & GF_CALL_MUST_TAIL_CALL) != 0;
3346 /* If RETURN_SLOT_OPT_P is true mark GIMPLE_CALL S as valid for return
3347 slot optimization. This transformation uses the target of the call
3348 expansion as the return slot for calls that return in memory. */
3350 static inline void
3351 gimple_call_set_return_slot_opt (gcall *s, bool return_slot_opt_p)
3353 if (return_slot_opt_p)
3354 s->subcode |= GF_CALL_RETURN_SLOT_OPT;
3355 else
3356 s->subcode &= ~GF_CALL_RETURN_SLOT_OPT;
3360 /* Return true if S is marked for return slot optimization. */
3362 static inline bool
3363 gimple_call_return_slot_opt_p (const gcall *s)
3365 return (s->subcode & GF_CALL_RETURN_SLOT_OPT) != 0;
3369 /* If FROM_THUNK_P is true, mark GIMPLE_CALL S as being the jump from a
3370 thunk to the thunked-to function. */
3372 static inline void
3373 gimple_call_set_from_thunk (gcall *s, bool from_thunk_p)
3375 if (from_thunk_p)
3376 s->subcode |= GF_CALL_FROM_THUNK;
3377 else
3378 s->subcode &= ~GF_CALL_FROM_THUNK;
3382 /* Return true if GIMPLE_CALL S is a jump from a thunk. */
3384 static inline bool
3385 gimple_call_from_thunk_p (gcall *s)
3387 return (s->subcode & GF_CALL_FROM_THUNK) != 0;
3391 /* If FROM_NEW_OR_DELETE_P is true, mark GIMPLE_CALL S as being a call
3392 to operator new or delete created from a new or delete expression. */
3394 static inline void
3395 gimple_call_set_from_new_or_delete (gcall *s, bool from_new_or_delete_p)
3397 if (from_new_or_delete_p)
3398 s->subcode |= GF_CALL_FROM_NEW_OR_DELETE;
3399 else
3400 s->subcode &= ~GF_CALL_FROM_NEW_OR_DELETE;
3404 /* Return true if GIMPLE_CALL S is a call to operator new or delete from
3405 from a new or delete expression. */
3407 static inline bool
3408 gimple_call_from_new_or_delete (gcall *s)
3410 return (s->subcode & GF_CALL_FROM_NEW_OR_DELETE) != 0;
3414 /* If PASS_ARG_PACK_P is true, GIMPLE_CALL S is a stdarg call that needs the
3415 argument pack in its argument list. */
3417 static inline void
3418 gimple_call_set_va_arg_pack (gcall *s, bool pass_arg_pack_p)
3420 if (pass_arg_pack_p)
3421 s->subcode |= GF_CALL_VA_ARG_PACK;
3422 else
3423 s->subcode &= ~GF_CALL_VA_ARG_PACK;
3427 /* Return true if GIMPLE_CALL S is a stdarg call that needs the
3428 argument pack in its argument list. */
3430 static inline bool
3431 gimple_call_va_arg_pack_p (const gcall *s)
3433 return (s->subcode & GF_CALL_VA_ARG_PACK) != 0;
3437 /* Return true if S is a noreturn call. */
3439 static inline bool
3440 gimple_call_noreturn_p (const gcall *s)
3442 return (gimple_call_flags (s) & ECF_NORETURN) != 0;
3445 static inline bool
3446 gimple_call_noreturn_p (const gimple *s)
3448 const gcall *gc = GIMPLE_CHECK2<const gcall *> (s);
3449 return gimple_call_noreturn_p (gc);
3453 /* If NOTHROW_P is true, GIMPLE_CALL S is a call that is known to not throw
3454 even if the called function can throw in other cases. */
3456 static inline void
3457 gimple_call_set_nothrow (gcall *s, bool nothrow_p)
3459 if (nothrow_p)
3460 s->subcode |= GF_CALL_NOTHROW;
3461 else
3462 s->subcode &= ~GF_CALL_NOTHROW;
3465 /* Return true if S is a nothrow call. */
3467 static inline bool
3468 gimple_call_nothrow_p (gcall *s)
3470 return (gimple_call_flags (s) & ECF_NOTHROW) != 0;
3473 /* If FOR_VAR is true, GIMPLE_CALL S is a call to builtin_alloca that
3474 is known to be emitted for VLA objects. Those are wrapped by
3475 stack_save/stack_restore calls and hence can't lead to unbounded
3476 stack growth even when they occur in loops. */
3478 static inline void
3479 gimple_call_set_alloca_for_var (gcall *s, bool for_var)
3481 if (for_var)
3482 s->subcode |= GF_CALL_ALLOCA_FOR_VAR;
3483 else
3484 s->subcode &= ~GF_CALL_ALLOCA_FOR_VAR;
3487 /* Return true of S is a call to builtin_alloca emitted for VLA objects. */
3489 static inline bool
3490 gimple_call_alloca_for_var_p (gcall *s)
3492 return (s->subcode & GF_CALL_ALLOCA_FOR_VAR) != 0;
3495 static inline bool
3496 gimple_call_alloca_for_var_p (gimple *s)
3498 const gcall *gc = GIMPLE_CHECK2<gcall *> (s);
3499 return (gc->subcode & GF_CALL_ALLOCA_FOR_VAR) != 0;
3502 /* If BY_DESCRIPTOR_P is true, GIMPLE_CALL S is an indirect call for which
3503 pointers to nested function are descriptors instead of trampolines. */
3505 static inline void
3506 gimple_call_set_by_descriptor (gcall *s, bool by_descriptor_p)
3508 if (by_descriptor_p)
3509 s->subcode |= GF_CALL_BY_DESCRIPTOR;
3510 else
3511 s->subcode &= ~GF_CALL_BY_DESCRIPTOR;
3514 /* Return true if S is a by-descriptor call. */
3516 static inline bool
3517 gimple_call_by_descriptor_p (gcall *s)
3519 return (s->subcode & GF_CALL_BY_DESCRIPTOR) != 0;
3522 /* Copy all the GF_CALL_* flags from ORIG_CALL to DEST_CALL. */
3524 static inline void
3525 gimple_call_copy_flags (gcall *dest_call, gcall *orig_call)
3527 dest_call->subcode = orig_call->subcode;
3531 /* Return a pointer to the points-to solution for the set of call-used
3532 variables of the call CALL_STMT. */
3534 static inline struct pt_solution *
3535 gimple_call_use_set (gcall *call_stmt)
3537 return &call_stmt->call_used;
3540 /* As above, but const. */
3542 static inline const pt_solution *
3543 gimple_call_use_set (const gcall *call_stmt)
3545 return &call_stmt->call_used;
3548 /* Return a pointer to the points-to solution for the set of call-used
3549 variables of the call CALL_STMT. */
3551 static inline struct pt_solution *
3552 gimple_call_clobber_set (gcall *call_stmt)
3554 return &call_stmt->call_clobbered;
3557 /* As above, but const. */
3559 static inline const pt_solution *
3560 gimple_call_clobber_set (const gcall *call_stmt)
3562 return &call_stmt->call_clobbered;
3566 /* Returns true if this is a GIMPLE_ASSIGN or a GIMPLE_CALL with a
3567 non-NULL lhs. */
3569 static inline bool
3570 gimple_has_lhs (const gimple *stmt)
3572 if (is_gimple_assign (stmt))
3573 return true;
3574 if (const gcall *call = dyn_cast <const gcall *> (stmt))
3575 return gimple_call_lhs (call) != NULL_TREE;
3576 return false;
3580 /* Return the code of the predicate computed by conditional statement GS. */
3582 static inline enum tree_code
3583 gimple_cond_code (const gcond *gs)
3585 return (enum tree_code) gs->subcode;
3588 static inline enum tree_code
3589 gimple_cond_code (const gimple *gs)
3591 const gcond *gc = GIMPLE_CHECK2<const gcond *> (gs);
3592 return gimple_cond_code (gc);
3596 /* Set CODE to be the predicate code for the conditional statement GS. */
3598 static inline void
3599 gimple_cond_set_code (gcond *gs, enum tree_code code)
3601 gs->subcode = code;
3605 /* Return the LHS of the predicate computed by conditional statement GS. */
3607 static inline tree
3608 gimple_cond_lhs (const gcond *gs)
3610 return gs->op[0];
3613 static inline tree
3614 gimple_cond_lhs (const gimple *gs)
3616 const gcond *gc = GIMPLE_CHECK2<const gcond *> (gs);
3617 return gimple_cond_lhs (gc);
3620 /* Return the pointer to the LHS of the predicate computed by conditional
3621 statement GS. */
3623 static inline tree *
3624 gimple_cond_lhs_ptr (gcond *gs)
3626 return &gs->op[0];
3629 /* Set LHS to be the LHS operand of the predicate computed by
3630 conditional statement GS. */
3632 static inline void
3633 gimple_cond_set_lhs (gcond *gs, tree lhs)
3635 gs->op[0] = lhs;
3639 /* Return the RHS operand of the predicate computed by conditional GS. */
3641 static inline tree
3642 gimple_cond_rhs (const gcond *gs)
3644 return gs->op[1];
3647 static inline tree
3648 gimple_cond_rhs (const gimple *gs)
3650 const gcond *gc = GIMPLE_CHECK2<const gcond *> (gs);
3651 return gimple_cond_rhs (gc);
3654 /* Return the pointer to the RHS operand of the predicate computed by
3655 conditional GS. */
3657 static inline tree *
3658 gimple_cond_rhs_ptr (gcond *gs)
3660 return &gs->op[1];
3664 /* Set RHS to be the RHS operand of the predicate computed by
3665 conditional statement GS. */
3667 static inline void
3668 gimple_cond_set_rhs (gcond *gs, tree rhs)
3670 gs->op[1] = rhs;
3674 /* Return the label used by conditional statement GS when its
3675 predicate evaluates to true. */
3677 static inline tree
3678 gimple_cond_true_label (const gcond *gs)
3680 return gs->op[2];
3684 /* Set LABEL to be the label used by conditional statement GS when its
3685 predicate evaluates to true. */
3687 static inline void
3688 gimple_cond_set_true_label (gcond *gs, tree label)
3690 gs->op[2] = label;
3694 /* Set LABEL to be the label used by conditional statement GS when its
3695 predicate evaluates to false. */
3697 static inline void
3698 gimple_cond_set_false_label (gcond *gs, tree label)
3700 gs->op[3] = label;
3704 /* Return the label used by conditional statement GS when its
3705 predicate evaluates to false. */
3707 static inline tree
3708 gimple_cond_false_label (const gcond *gs)
3710 return gs->op[3];
3714 /* Set the conditional COND_STMT to be of the form 'if (1 == 0)'. */
3716 static inline void
3717 gimple_cond_make_false (gcond *gs)
3719 gimple_cond_set_lhs (gs, boolean_false_node);
3720 gimple_cond_set_rhs (gs, boolean_false_node);
3721 gs->subcode = NE_EXPR;
3725 /* Set the conditional COND_STMT to be of the form 'if (1 == 1)'. */
3727 static inline void
3728 gimple_cond_make_true (gcond *gs)
3730 gimple_cond_set_lhs (gs, boolean_true_node);
3731 gimple_cond_set_rhs (gs, boolean_false_node);
3732 gs->subcode = NE_EXPR;
3735 /* Check if conditional statemente GS is of the form 'if (1 == 1)',
3736 'if (0 == 0)', 'if (1 != 0)' or 'if (0 != 1)' */
3738 static inline bool
3739 gimple_cond_true_p (const gcond *gs)
3741 tree lhs = gimple_cond_lhs (gs);
3742 tree rhs = gimple_cond_rhs (gs);
3743 enum tree_code code = gimple_cond_code (gs);
3745 if (lhs != boolean_true_node && lhs != boolean_false_node)
3746 return false;
3748 if (rhs != boolean_true_node && rhs != boolean_false_node)
3749 return false;
3751 if (code == NE_EXPR && lhs != rhs)
3752 return true;
3754 if (code == EQ_EXPR && lhs == rhs)
3755 return true;
3757 return false;
3760 /* Check if conditional statement GS is of the form 'if (1 != 1)',
3761 'if (0 != 0)', 'if (1 == 0)' or 'if (0 == 1)' */
3763 static inline bool
3764 gimple_cond_false_p (const gcond *gs)
3766 tree lhs = gimple_cond_lhs (gs);
3767 tree rhs = gimple_cond_rhs (gs);
3768 enum tree_code code = gimple_cond_code (gs);
3770 if (lhs != boolean_true_node && lhs != boolean_false_node)
3771 return false;
3773 if (rhs != boolean_true_node && rhs != boolean_false_node)
3774 return false;
3776 if (code == NE_EXPR && lhs == rhs)
3777 return true;
3779 if (code == EQ_EXPR && lhs != rhs)
3780 return true;
3782 return false;
3785 /* Set the code, LHS and RHS of GIMPLE_COND STMT from CODE, LHS and RHS. */
3787 static inline void
3788 gimple_cond_set_condition (gcond *stmt, enum tree_code code, tree lhs,
3789 tree rhs)
3791 gimple_cond_set_code (stmt, code);
3792 gimple_cond_set_lhs (stmt, lhs);
3793 gimple_cond_set_rhs (stmt, rhs);
3796 /* Return the LABEL_DECL node used by GIMPLE_LABEL statement GS. */
3798 static inline tree
3799 gimple_label_label (const glabel *gs)
3801 return gs->op[0];
3805 /* Set LABEL to be the LABEL_DECL node used by GIMPLE_LABEL statement
3806 GS. */
3808 static inline void
3809 gimple_label_set_label (glabel *gs, tree label)
3811 gs->op[0] = label;
3815 /* Return the destination of the unconditional jump GS. */
3817 static inline tree
3818 gimple_goto_dest (const gimple *gs)
3820 GIMPLE_CHECK (gs, GIMPLE_GOTO);
3821 return gimple_op (gs, 0);
3825 /* Set DEST to be the destination of the unconditonal jump GS. */
3827 static inline void
3828 gimple_goto_set_dest (ggoto *gs, tree dest)
3830 gs->op[0] = dest;
3834 /* Return the variables declared in the GIMPLE_BIND statement GS. */
3836 static inline tree
3837 gimple_bind_vars (const gbind *bind_stmt)
3839 return bind_stmt->vars;
3843 /* Set VARS to be the set of variables declared in the GIMPLE_BIND
3844 statement GS. */
3846 static inline void
3847 gimple_bind_set_vars (gbind *bind_stmt, tree vars)
3849 bind_stmt->vars = vars;
3853 /* Append VARS to the set of variables declared in the GIMPLE_BIND
3854 statement GS. */
3856 static inline void
3857 gimple_bind_append_vars (gbind *bind_stmt, tree vars)
3859 bind_stmt->vars = chainon (bind_stmt->vars, vars);
3863 static inline gimple_seq *
3864 gimple_bind_body_ptr (gbind *bind_stmt)
3866 return &bind_stmt->body;
3869 /* Return the GIMPLE sequence contained in the GIMPLE_BIND statement GS. */
3871 static inline gimple_seq
3872 gimple_bind_body (const gbind *gs)
3874 return *gimple_bind_body_ptr (const_cast <gbind *> (gs));
3878 /* Set SEQ to be the GIMPLE sequence contained in the GIMPLE_BIND
3879 statement GS. */
3881 static inline void
3882 gimple_bind_set_body (gbind *bind_stmt, gimple_seq seq)
3884 bind_stmt->body = seq;
3888 /* Append a statement to the end of a GIMPLE_BIND's body. */
3890 static inline void
3891 gimple_bind_add_stmt (gbind *bind_stmt, gimple *stmt)
3893 gimple_seq_add_stmt (&bind_stmt->body, stmt);
3897 /* Append a sequence of statements to the end of a GIMPLE_BIND's body. */
3899 static inline void
3900 gimple_bind_add_seq (gbind *bind_stmt, gimple_seq seq)
3902 gimple_seq_add_seq (&bind_stmt->body, seq);
3906 /* Return the TREE_BLOCK node associated with GIMPLE_BIND statement
3907 GS. This is analogous to the BIND_EXPR_BLOCK field in trees. */
3909 static inline tree
3910 gimple_bind_block (const gbind *bind_stmt)
3912 return bind_stmt->block;
3916 /* Set BLOCK to be the TREE_BLOCK node associated with GIMPLE_BIND
3917 statement GS. */
3919 static inline void
3920 gimple_bind_set_block (gbind *bind_stmt, tree block)
3922 gcc_gimple_checking_assert (block == NULL_TREE
3923 || TREE_CODE (block) == BLOCK);
3924 bind_stmt->block = block;
3928 /* Return the number of input operands for GIMPLE_ASM ASM_STMT. */
3930 static inline unsigned
3931 gimple_asm_ninputs (const gasm *asm_stmt)
3933 return asm_stmt->ni;
3937 /* Return the number of output operands for GIMPLE_ASM ASM_STMT. */
3939 static inline unsigned
3940 gimple_asm_noutputs (const gasm *asm_stmt)
3942 return asm_stmt->no;
3946 /* Return the number of clobber operands for GIMPLE_ASM ASM_STMT. */
3948 static inline unsigned
3949 gimple_asm_nclobbers (const gasm *asm_stmt)
3951 return asm_stmt->nc;
3954 /* Return the number of label operands for GIMPLE_ASM ASM_STMT. */
3956 static inline unsigned
3957 gimple_asm_nlabels (const gasm *asm_stmt)
3959 return asm_stmt->nl;
3962 /* Return input operand INDEX of GIMPLE_ASM ASM_STMT. */
3964 static inline tree
3965 gimple_asm_input_op (const gasm *asm_stmt, unsigned index)
3967 gcc_gimple_checking_assert (index < asm_stmt->ni);
3968 return asm_stmt->op[index + asm_stmt->no];
3971 /* Set IN_OP to be input operand INDEX in GIMPLE_ASM ASM_STMT. */
3973 static inline void
3974 gimple_asm_set_input_op (gasm *asm_stmt, unsigned index, tree in_op)
3976 gcc_gimple_checking_assert (index < asm_stmt->ni
3977 && TREE_CODE (in_op) == TREE_LIST);
3978 asm_stmt->op[index + asm_stmt->no] = in_op;
3982 /* Return output operand INDEX of GIMPLE_ASM ASM_STMT. */
3984 static inline tree
3985 gimple_asm_output_op (const gasm *asm_stmt, unsigned index)
3987 gcc_gimple_checking_assert (index < asm_stmt->no);
3988 return asm_stmt->op[index];
3991 /* Set OUT_OP to be output operand INDEX in GIMPLE_ASM ASM_STMT. */
3993 static inline void
3994 gimple_asm_set_output_op (gasm *asm_stmt, unsigned index, tree out_op)
3996 gcc_gimple_checking_assert (index < asm_stmt->no
3997 && TREE_CODE (out_op) == TREE_LIST);
3998 asm_stmt->op[index] = out_op;
4002 /* Return clobber operand INDEX of GIMPLE_ASM ASM_STMT. */
4004 static inline tree
4005 gimple_asm_clobber_op (const gasm *asm_stmt, unsigned index)
4007 gcc_gimple_checking_assert (index < asm_stmt->nc);
4008 return asm_stmt->op[index + asm_stmt->ni + asm_stmt->no];
4012 /* Set CLOBBER_OP to be clobber operand INDEX in GIMPLE_ASM ASM_STMT. */
4014 static inline void
4015 gimple_asm_set_clobber_op (gasm *asm_stmt, unsigned index, tree clobber_op)
4017 gcc_gimple_checking_assert (index < asm_stmt->nc
4018 && TREE_CODE (clobber_op) == TREE_LIST);
4019 asm_stmt->op[index + asm_stmt->ni + asm_stmt->no] = clobber_op;
4022 /* Return label operand INDEX of GIMPLE_ASM ASM_STMT. */
4024 static inline tree
4025 gimple_asm_label_op (const gasm *asm_stmt, unsigned index)
4027 gcc_gimple_checking_assert (index < asm_stmt->nl);
4028 return asm_stmt->op[index + asm_stmt->ni + asm_stmt->nc];
4031 /* Set LABEL_OP to be label operand INDEX in GIMPLE_ASM ASM_STMT. */
4033 static inline void
4034 gimple_asm_set_label_op (gasm *asm_stmt, unsigned index, tree label_op)
4036 gcc_gimple_checking_assert (index < asm_stmt->nl
4037 && TREE_CODE (label_op) == TREE_LIST);
4038 asm_stmt->op[index + asm_stmt->ni + asm_stmt->nc] = label_op;
4041 /* Return the string representing the assembly instruction in
4042 GIMPLE_ASM ASM_STMT. */
4044 static inline const char *
4045 gimple_asm_string (const gasm *asm_stmt)
4047 return asm_stmt->string;
4051 /* Return true if ASM_STMT is marked volatile. */
4053 static inline bool
4054 gimple_asm_volatile_p (const gasm *asm_stmt)
4056 return (asm_stmt->subcode & GF_ASM_VOLATILE) != 0;
4060 /* If VOLATILE_P is true, mark asm statement ASM_STMT as volatile. */
4062 static inline void
4063 gimple_asm_set_volatile (gasm *asm_stmt, bool volatile_p)
4065 if (volatile_p)
4066 asm_stmt->subcode |= GF_ASM_VOLATILE;
4067 else
4068 asm_stmt->subcode &= ~GF_ASM_VOLATILE;
4072 /* Return true if ASM_STMT is marked inline. */
4074 static inline bool
4075 gimple_asm_inline_p (const gasm *asm_stmt)
4077 return (asm_stmt->subcode & GF_ASM_INLINE) != 0;
4081 /* If INLINE_P is true, mark asm statement ASM_STMT as inline. */
4083 static inline void
4084 gimple_asm_set_inline (gasm *asm_stmt, bool inline_p)
4086 if (inline_p)
4087 asm_stmt->subcode |= GF_ASM_INLINE;
4088 else
4089 asm_stmt->subcode &= ~GF_ASM_INLINE;
4093 /* If INPUT_P is true, mark asm ASM_STMT as an ASM_INPUT. */
4095 static inline void
4096 gimple_asm_set_input (gasm *asm_stmt, bool input_p)
4098 if (input_p)
4099 asm_stmt->subcode |= GF_ASM_INPUT;
4100 else
4101 asm_stmt->subcode &= ~GF_ASM_INPUT;
4105 /* Return true if asm ASM_STMT is an ASM_INPUT. */
4107 static inline bool
4108 gimple_asm_input_p (const gasm *asm_stmt)
4110 return (asm_stmt->subcode & GF_ASM_INPUT) != 0;
4114 /* Return the types handled by GIMPLE_CATCH statement CATCH_STMT. */
4116 static inline tree
4117 gimple_catch_types (const gcatch *catch_stmt)
4119 return catch_stmt->types;
4123 /* Return a pointer to the types handled by GIMPLE_CATCH statement CATCH_STMT. */
4125 static inline tree *
4126 gimple_catch_types_ptr (gcatch *catch_stmt)
4128 return &catch_stmt->types;
4132 /* Return a pointer to the GIMPLE sequence representing the body of
4133 the handler of GIMPLE_CATCH statement CATCH_STMT. */
4135 static inline gimple_seq *
4136 gimple_catch_handler_ptr (gcatch *catch_stmt)
4138 return &catch_stmt->handler;
4142 /* Return the GIMPLE sequence representing the body of the handler of
4143 GIMPLE_CATCH statement CATCH_STMT. */
4145 static inline gimple_seq
4146 gimple_catch_handler (const gcatch *catch_stmt)
4148 return *gimple_catch_handler_ptr (const_cast <gcatch *> (catch_stmt));
4152 /* Set T to be the set of types handled by GIMPLE_CATCH CATCH_STMT. */
4154 static inline void
4155 gimple_catch_set_types (gcatch *catch_stmt, tree t)
4157 catch_stmt->types = t;
4161 /* Set HANDLER to be the body of GIMPLE_CATCH CATCH_STMT. */
4163 static inline void
4164 gimple_catch_set_handler (gcatch *catch_stmt, gimple_seq handler)
4166 catch_stmt->handler = handler;
4170 /* Return the types handled by GIMPLE_EH_FILTER statement GS. */
4172 static inline tree
4173 gimple_eh_filter_types (const gimple *gs)
4175 const geh_filter *eh_filter_stmt = as_a <const geh_filter *> (gs);
4176 return eh_filter_stmt->types;
4180 /* Return a pointer to the types handled by GIMPLE_EH_FILTER statement
4181 GS. */
4183 static inline tree *
4184 gimple_eh_filter_types_ptr (gimple *gs)
4186 geh_filter *eh_filter_stmt = as_a <geh_filter *> (gs);
4187 return &eh_filter_stmt->types;
4191 /* Return a pointer to the sequence of statement to execute when
4192 GIMPLE_EH_FILTER statement fails. */
4194 static inline gimple_seq *
4195 gimple_eh_filter_failure_ptr (gimple *gs)
4197 geh_filter *eh_filter_stmt = as_a <geh_filter *> (gs);
4198 return &eh_filter_stmt->failure;
4202 /* Return the sequence of statement to execute when GIMPLE_EH_FILTER
4203 statement fails. */
4205 static inline gimple_seq
4206 gimple_eh_filter_failure (const gimple *gs)
4208 return *gimple_eh_filter_failure_ptr (const_cast <gimple *> (gs));
4212 /* Set TYPES to be the set of types handled by GIMPLE_EH_FILTER
4213 EH_FILTER_STMT. */
4215 static inline void
4216 gimple_eh_filter_set_types (geh_filter *eh_filter_stmt, tree types)
4218 eh_filter_stmt->types = types;
4222 /* Set FAILURE to be the sequence of statements to execute on failure
4223 for GIMPLE_EH_FILTER EH_FILTER_STMT. */
4225 static inline void
4226 gimple_eh_filter_set_failure (geh_filter *eh_filter_stmt,
4227 gimple_seq failure)
4229 eh_filter_stmt->failure = failure;
4232 /* Get the function decl to be called by the MUST_NOT_THROW region. */
4234 static inline tree
4235 gimple_eh_must_not_throw_fndecl (const geh_mnt *eh_mnt_stmt)
4237 return eh_mnt_stmt->fndecl;
4240 /* Set the function decl to be called by GS to DECL. */
4242 static inline void
4243 gimple_eh_must_not_throw_set_fndecl (geh_mnt *eh_mnt_stmt,
4244 tree decl)
4246 eh_mnt_stmt->fndecl = decl;
4249 /* GIMPLE_EH_ELSE accessors. */
4251 static inline gimple_seq *
4252 gimple_eh_else_n_body_ptr (geh_else *eh_else_stmt)
4254 return &eh_else_stmt->n_body;
4257 static inline gimple_seq
4258 gimple_eh_else_n_body (const geh_else *eh_else_stmt)
4260 return *gimple_eh_else_n_body_ptr (const_cast <geh_else *> (eh_else_stmt));
4263 static inline gimple_seq *
4264 gimple_eh_else_e_body_ptr (geh_else *eh_else_stmt)
4266 return &eh_else_stmt->e_body;
4269 static inline gimple_seq
4270 gimple_eh_else_e_body (const geh_else *eh_else_stmt)
4272 return *gimple_eh_else_e_body_ptr (const_cast <geh_else *> (eh_else_stmt));
4275 static inline void
4276 gimple_eh_else_set_n_body (geh_else *eh_else_stmt, gimple_seq seq)
4278 eh_else_stmt->n_body = seq;
4281 static inline void
4282 gimple_eh_else_set_e_body (geh_else *eh_else_stmt, gimple_seq seq)
4284 eh_else_stmt->e_body = seq;
4287 /* GIMPLE_TRY accessors. */
4289 /* Return the kind of try block represented by GIMPLE_TRY GS. This is
4290 either GIMPLE_TRY_CATCH or GIMPLE_TRY_FINALLY. */
4292 static inline enum gimple_try_flags
4293 gimple_try_kind (const gimple *gs)
4295 GIMPLE_CHECK (gs, GIMPLE_TRY);
4296 return (enum gimple_try_flags) (gs->subcode & GIMPLE_TRY_KIND);
4300 /* Set the kind of try block represented by GIMPLE_TRY GS. */
4302 static inline void
4303 gimple_try_set_kind (gtry *gs, enum gimple_try_flags kind)
4305 gcc_gimple_checking_assert (kind == GIMPLE_TRY_CATCH
4306 || kind == GIMPLE_TRY_FINALLY);
4307 if (gimple_try_kind (gs) != kind)
4308 gs->subcode = (unsigned int) kind;
4312 /* Return the GIMPLE_TRY_CATCH_IS_CLEANUP flag. */
4314 static inline bool
4315 gimple_try_catch_is_cleanup (const gimple *gs)
4317 gcc_gimple_checking_assert (gimple_try_kind (gs) == GIMPLE_TRY_CATCH);
4318 return (gs->subcode & GIMPLE_TRY_CATCH_IS_CLEANUP) != 0;
4322 /* Return a pointer to the sequence of statements used as the
4323 body for GIMPLE_TRY GS. */
4325 static inline gimple_seq *
4326 gimple_try_eval_ptr (gimple *gs)
4328 gtry *try_stmt = as_a <gtry *> (gs);
4329 return &try_stmt->eval;
4333 /* Return the sequence of statements used as the body for GIMPLE_TRY GS. */
4335 static inline gimple_seq
4336 gimple_try_eval (const gimple *gs)
4338 return *gimple_try_eval_ptr (const_cast <gimple *> (gs));
4342 /* Return a pointer to the sequence of statements used as the cleanup body for
4343 GIMPLE_TRY GS. */
4345 static inline gimple_seq *
4346 gimple_try_cleanup_ptr (gimple *gs)
4348 gtry *try_stmt = as_a <gtry *> (gs);
4349 return &try_stmt->cleanup;
4353 /* Return the sequence of statements used as the cleanup body for
4354 GIMPLE_TRY GS. */
4356 static inline gimple_seq
4357 gimple_try_cleanup (const gimple *gs)
4359 return *gimple_try_cleanup_ptr (const_cast <gimple *> (gs));
4363 /* Set the GIMPLE_TRY_CATCH_IS_CLEANUP flag. */
4365 static inline void
4366 gimple_try_set_catch_is_cleanup (gtry *g, bool catch_is_cleanup)
4368 gcc_gimple_checking_assert (gimple_try_kind (g) == GIMPLE_TRY_CATCH);
4369 if (catch_is_cleanup)
4370 g->subcode |= GIMPLE_TRY_CATCH_IS_CLEANUP;
4371 else
4372 g->subcode &= ~GIMPLE_TRY_CATCH_IS_CLEANUP;
4376 /* Set EVAL to be the sequence of statements to use as the body for
4377 GIMPLE_TRY TRY_STMT. */
4379 static inline void
4380 gimple_try_set_eval (gtry *try_stmt, gimple_seq eval)
4382 try_stmt->eval = eval;
4386 /* Set CLEANUP to be the sequence of statements to use as the cleanup
4387 body for GIMPLE_TRY TRY_STMT. */
4389 static inline void
4390 gimple_try_set_cleanup (gtry *try_stmt, gimple_seq cleanup)
4392 try_stmt->cleanup = cleanup;
4396 /* Return a pointer to the cleanup sequence for cleanup statement GS. */
4398 static inline gimple_seq *
4399 gimple_wce_cleanup_ptr (gimple *gs)
4401 gimple_statement_wce *wce_stmt = as_a <gimple_statement_wce *> (gs);
4402 return &wce_stmt->cleanup;
4406 /* Return the cleanup sequence for cleanup statement GS. */
4408 static inline gimple_seq
4409 gimple_wce_cleanup (gimple *gs)
4411 return *gimple_wce_cleanup_ptr (gs);
4415 /* Set CLEANUP to be the cleanup sequence for GS. */
4417 static inline void
4418 gimple_wce_set_cleanup (gimple *gs, gimple_seq cleanup)
4420 gimple_statement_wce *wce_stmt = as_a <gimple_statement_wce *> (gs);
4421 wce_stmt->cleanup = cleanup;
4425 /* Return the CLEANUP_EH_ONLY flag for a WCE tuple. */
4427 static inline bool
4428 gimple_wce_cleanup_eh_only (const gimple *gs)
4430 GIMPLE_CHECK (gs, GIMPLE_WITH_CLEANUP_EXPR);
4431 return gs->subcode != 0;
4435 /* Set the CLEANUP_EH_ONLY flag for a WCE tuple. */
4437 static inline void
4438 gimple_wce_set_cleanup_eh_only (gimple *gs, bool eh_only_p)
4440 GIMPLE_CHECK (gs, GIMPLE_WITH_CLEANUP_EXPR);
4441 gs->subcode = (unsigned int) eh_only_p;
4445 /* Return the maximum number of arguments supported by GIMPLE_PHI GS. */
4447 static inline unsigned
4448 gimple_phi_capacity (const gimple *gs)
4450 const gphi *phi_stmt = as_a <const gphi *> (gs);
4451 return phi_stmt->capacity;
4455 /* Return the number of arguments in GIMPLE_PHI GS. This must always
4456 be exactly the number of incoming edges for the basic block holding
4457 GS. */
4459 static inline unsigned
4460 gimple_phi_num_args (const gimple *gs)
4462 const gphi *phi_stmt = as_a <const gphi *> (gs);
4463 return phi_stmt->nargs;
4467 /* Return the SSA name created by GIMPLE_PHI GS. */
4469 static inline tree
4470 gimple_phi_result (const gphi *gs)
4472 return gs->result;
4475 static inline tree
4476 gimple_phi_result (const gimple *gs)
4478 const gphi *phi_stmt = as_a <const gphi *> (gs);
4479 return gimple_phi_result (phi_stmt);
4482 /* Return a pointer to the SSA name created by GIMPLE_PHI GS. */
4484 static inline tree *
4485 gimple_phi_result_ptr (gphi *gs)
4487 return &gs->result;
4490 static inline tree *
4491 gimple_phi_result_ptr (gimple *gs)
4493 gphi *phi_stmt = as_a <gphi *> (gs);
4494 return gimple_phi_result_ptr (phi_stmt);
4497 /* Set RESULT to be the SSA name created by GIMPLE_PHI PHI. */
4499 static inline void
4500 gimple_phi_set_result (gphi *phi, tree result)
4502 phi->result = result;
4503 if (result && TREE_CODE (result) == SSA_NAME)
4504 SSA_NAME_DEF_STMT (result) = phi;
4508 /* Return the PHI argument corresponding to incoming edge INDEX for
4509 GIMPLE_PHI GS. */
4511 static inline struct phi_arg_d *
4512 gimple_phi_arg (gphi *gs, unsigned index)
4514 gcc_gimple_checking_assert (index < gs->nargs);
4515 return &(gs->args[index]);
4518 static inline const phi_arg_d *
4519 gimple_phi_arg (const gphi *gs, unsigned index)
4521 gcc_gimple_checking_assert (index < gs->nargs);
4522 return &(gs->args[index]);
4525 static inline struct phi_arg_d *
4526 gimple_phi_arg (gimple *gs, unsigned index)
4528 gphi *phi_stmt = as_a <gphi *> (gs);
4529 return gimple_phi_arg (phi_stmt, index);
4532 /* Set PHIARG to be the argument corresponding to incoming edge INDEX
4533 for GIMPLE_PHI PHI. */
4535 static inline void
4536 gimple_phi_set_arg (gphi *phi, unsigned index, struct phi_arg_d * phiarg)
4538 gcc_gimple_checking_assert (index < phi->nargs);
4539 phi->args[index] = *phiarg;
4542 /* Return the PHI nodes for basic block BB, or NULL if there are no
4543 PHI nodes. */
4545 static inline gimple_seq
4546 phi_nodes (const_basic_block bb)
4548 gcc_checking_assert (!(bb->flags & BB_RTL));
4549 return bb->il.gimple.phi_nodes;
4552 /* Return a pointer to the PHI nodes for basic block BB. */
4554 static inline gimple_seq *
4555 phi_nodes_ptr (basic_block bb)
4557 gcc_checking_assert (!(bb->flags & BB_RTL));
4558 return &bb->il.gimple.phi_nodes;
4561 /* Return the tree operand for argument I of PHI node GS. */
4563 static inline tree
4564 gimple_phi_arg_def (const gphi *gs, size_t index)
4566 return gimple_phi_arg (gs, index)->def;
4569 static inline tree
4570 gimple_phi_arg_def (gimple *gs, size_t index)
4572 return gimple_phi_arg (gs, index)->def;
4576 /* Return a pointer to the tree operand for argument I of phi node PHI. */
4578 static inline tree *
4579 gimple_phi_arg_def_ptr (gphi *phi, size_t index)
4581 return &gimple_phi_arg (phi, index)->def;
4584 /* Return the edge associated with argument I of phi node PHI. */
4586 static inline edge
4587 gimple_phi_arg_edge (const gphi *phi, size_t i)
4589 return EDGE_PRED (gimple_bb (phi), i);
4592 /* Return the source location of gimple argument I of phi node PHI. */
4594 static inline location_t
4595 gimple_phi_arg_location (const gphi *phi, size_t i)
4597 return gimple_phi_arg (phi, i)->locus;
4600 /* Return the source location of the argument on edge E of phi node PHI. */
4602 static inline location_t
4603 gimple_phi_arg_location_from_edge (gphi *phi, edge e)
4605 return gimple_phi_arg (phi, e->dest_idx)->locus;
4608 /* Set the source location of gimple argument I of phi node PHI to LOC. */
4610 static inline void
4611 gimple_phi_arg_set_location (gphi *phi, size_t i, location_t loc)
4613 gimple_phi_arg (phi, i)->locus = loc;
4616 /* Return address of source location of gimple argument I of phi node PHI. */
4618 static inline location_t *
4619 gimple_phi_arg_location_ptr (gphi *phi, size_t i)
4621 return &gimple_phi_arg (phi, i)->locus;
4624 /* Return TRUE if argument I of phi node PHI has a location record. */
4626 static inline bool
4627 gimple_phi_arg_has_location (const gphi *phi, size_t i)
4629 return gimple_phi_arg_location (phi, i) != UNKNOWN_LOCATION;
4633 /* Return the region number for GIMPLE_RESX RESX_STMT. */
4635 static inline int
4636 gimple_resx_region (const gresx *resx_stmt)
4638 return resx_stmt->region;
4641 /* Set REGION to be the region number for GIMPLE_RESX RESX_STMT. */
4643 static inline void
4644 gimple_resx_set_region (gresx *resx_stmt, int region)
4646 resx_stmt->region = region;
4649 /* Return the region number for GIMPLE_EH_DISPATCH EH_DISPATCH_STMT. */
4651 static inline int
4652 gimple_eh_dispatch_region (const geh_dispatch *eh_dispatch_stmt)
4654 return eh_dispatch_stmt->region;
4657 /* Set REGION to be the region number for GIMPLE_EH_DISPATCH
4658 EH_DISPATCH_STMT. */
4660 static inline void
4661 gimple_eh_dispatch_set_region (geh_dispatch *eh_dispatch_stmt, int region)
4663 eh_dispatch_stmt->region = region;
4666 /* Return the number of labels associated with the switch statement GS. */
4668 static inline unsigned
4669 gimple_switch_num_labels (const gswitch *gs)
4671 unsigned num_ops;
4672 GIMPLE_CHECK (gs, GIMPLE_SWITCH);
4673 num_ops = gimple_num_ops (gs);
4674 gcc_gimple_checking_assert (num_ops > 1);
4675 return num_ops - 1;
4679 /* Set NLABELS to be the number of labels for the switch statement GS. */
4681 static inline void
4682 gimple_switch_set_num_labels (gswitch *g, unsigned nlabels)
4684 GIMPLE_CHECK (g, GIMPLE_SWITCH);
4685 gimple_set_num_ops (g, nlabels + 1);
4689 /* Return the index variable used by the switch statement GS. */
4691 static inline tree
4692 gimple_switch_index (const gswitch *gs)
4694 return gs->op[0];
4698 /* Return a pointer to the index variable for the switch statement GS. */
4700 static inline tree *
4701 gimple_switch_index_ptr (gswitch *gs)
4703 return &gs->op[0];
4707 /* Set INDEX to be the index variable for switch statement GS. */
4709 static inline void
4710 gimple_switch_set_index (gswitch *gs, tree index)
4712 gcc_gimple_checking_assert (SSA_VAR_P (index) || CONSTANT_CLASS_P (index));
4713 gs->op[0] = index;
4717 /* Return the label numbered INDEX. The default label is 0, followed by any
4718 labels in a switch statement. */
4720 static inline tree
4721 gimple_switch_label (const gswitch *gs, unsigned index)
4723 gcc_gimple_checking_assert (gimple_num_ops (gs) > index + 1);
4724 return gs->op[index + 1];
4727 /* Set the label number INDEX to LABEL. 0 is always the default label. */
4729 static inline void
4730 gimple_switch_set_label (gswitch *gs, unsigned index, tree label)
4732 gcc_gimple_checking_assert (gimple_num_ops (gs) > index + 1
4733 && (label == NULL_TREE
4734 || TREE_CODE (label) == CASE_LABEL_EXPR));
4735 gs->op[index + 1] = label;
4738 /* Return the default label for a switch statement. */
4740 static inline tree
4741 gimple_switch_default_label (const gswitch *gs)
4743 tree label = gimple_switch_label (gs, 0);
4744 gcc_checking_assert (!CASE_LOW (label) && !CASE_HIGH (label));
4745 return label;
4748 /* Set the default label for a switch statement. */
4750 static inline void
4751 gimple_switch_set_default_label (gswitch *gs, tree label)
4753 gcc_checking_assert (!CASE_LOW (label) && !CASE_HIGH (label));
4754 gimple_switch_set_label (gs, 0, label);
4757 /* Return true if GS is a GIMPLE_DEBUG statement. */
4759 static inline bool
4760 is_gimple_debug (const gimple *gs)
4762 return gimple_code (gs) == GIMPLE_DEBUG;
4766 /* Return the first nondebug statement in GIMPLE sequence S. */
4768 static inline gimple *
4769 gimple_seq_first_nondebug_stmt (gimple_seq s)
4771 gimple_seq_node n = gimple_seq_first (s);
4772 while (n && is_gimple_debug (n))
4773 n = n->next;
4774 return n;
4778 /* Return the last nondebug statement in GIMPLE sequence S. */
4780 static inline gimple *
4781 gimple_seq_last_nondebug_stmt (gimple_seq s)
4783 gimple_seq_node n;
4784 for (n = gimple_seq_last (s);
4785 n && is_gimple_debug (n);
4786 n = n->prev)
4787 if (n == s)
4788 return NULL;
4789 return n;
4793 /* Return true if S is a GIMPLE_DEBUG BIND statement. */
4795 static inline bool
4796 gimple_debug_bind_p (const gimple *s)
4798 if (is_gimple_debug (s))
4799 return s->subcode == GIMPLE_DEBUG_BIND;
4801 return false;
4804 /* Return the variable bound in a GIMPLE_DEBUG bind statement. */
4806 static inline tree
4807 gimple_debug_bind_get_var (const gimple *dbg)
4809 GIMPLE_CHECK (dbg, GIMPLE_DEBUG);
4810 gcc_gimple_checking_assert (gimple_debug_bind_p (dbg));
4811 return gimple_op (dbg, 0);
4814 /* Return the value bound to the variable in a GIMPLE_DEBUG bind
4815 statement. */
4817 static inline tree
4818 gimple_debug_bind_get_value (const gimple *dbg)
4820 GIMPLE_CHECK (dbg, GIMPLE_DEBUG);
4821 gcc_gimple_checking_assert (gimple_debug_bind_p (dbg));
4822 return gimple_op (dbg, 1);
4825 /* Return a pointer to the value bound to the variable in a
4826 GIMPLE_DEBUG bind statement. */
4828 static inline tree *
4829 gimple_debug_bind_get_value_ptr (gimple *dbg)
4831 GIMPLE_CHECK (dbg, GIMPLE_DEBUG);
4832 gcc_gimple_checking_assert (gimple_debug_bind_p (dbg));
4833 return gimple_op_ptr (dbg, 1);
4836 /* Set the variable bound in a GIMPLE_DEBUG bind statement. */
4838 static inline void
4839 gimple_debug_bind_set_var (gimple *dbg, tree var)
4841 GIMPLE_CHECK (dbg, GIMPLE_DEBUG);
4842 gcc_gimple_checking_assert (gimple_debug_bind_p (dbg));
4843 gimple_set_op (dbg, 0, var);
4846 /* Set the value bound to the variable in a GIMPLE_DEBUG bind
4847 statement. */
4849 static inline void
4850 gimple_debug_bind_set_value (gimple *dbg, tree value)
4852 GIMPLE_CHECK (dbg, GIMPLE_DEBUG);
4853 gcc_gimple_checking_assert (gimple_debug_bind_p (dbg));
4854 gimple_set_op (dbg, 1, value);
4857 /* The second operand of a GIMPLE_DEBUG_BIND, when the value was
4858 optimized away. */
4859 #define GIMPLE_DEBUG_BIND_NOVALUE NULL_TREE /* error_mark_node */
4861 /* Remove the value bound to the variable in a GIMPLE_DEBUG bind
4862 statement. */
4864 static inline void
4865 gimple_debug_bind_reset_value (gimple *dbg)
4867 GIMPLE_CHECK (dbg, GIMPLE_DEBUG);
4868 gcc_gimple_checking_assert (gimple_debug_bind_p (dbg));
4869 gimple_set_op (dbg, 1, GIMPLE_DEBUG_BIND_NOVALUE);
4872 /* Return true if the GIMPLE_DEBUG bind statement is bound to a
4873 value. */
4875 static inline bool
4876 gimple_debug_bind_has_value_p (gimple *dbg)
4878 GIMPLE_CHECK (dbg, GIMPLE_DEBUG);
4879 gcc_gimple_checking_assert (gimple_debug_bind_p (dbg));
4880 return gimple_op (dbg, 1) != GIMPLE_DEBUG_BIND_NOVALUE;
4883 #undef GIMPLE_DEBUG_BIND_NOVALUE
4885 /* Return true if S is a GIMPLE_DEBUG SOURCE BIND statement. */
4887 static inline bool
4888 gimple_debug_source_bind_p (const gimple *s)
4890 if (is_gimple_debug (s))
4891 return s->subcode == GIMPLE_DEBUG_SOURCE_BIND;
4893 return false;
4896 /* Return the variable bound in a GIMPLE_DEBUG source bind statement. */
4898 static inline tree
4899 gimple_debug_source_bind_get_var (const gimple *dbg)
4901 GIMPLE_CHECK (dbg, GIMPLE_DEBUG);
4902 gcc_gimple_checking_assert (gimple_debug_source_bind_p (dbg));
4903 return gimple_op (dbg, 0);
4906 /* Return the value bound to the variable in a GIMPLE_DEBUG source bind
4907 statement. */
4909 static inline tree
4910 gimple_debug_source_bind_get_value (const gimple *dbg)
4912 GIMPLE_CHECK (dbg, GIMPLE_DEBUG);
4913 gcc_gimple_checking_assert (gimple_debug_source_bind_p (dbg));
4914 return gimple_op (dbg, 1);
4917 /* Return a pointer to the value bound to the variable in a
4918 GIMPLE_DEBUG source bind statement. */
4920 static inline tree *
4921 gimple_debug_source_bind_get_value_ptr (gimple *dbg)
4923 GIMPLE_CHECK (dbg, GIMPLE_DEBUG);
4924 gcc_gimple_checking_assert (gimple_debug_source_bind_p (dbg));
4925 return gimple_op_ptr (dbg, 1);
4928 /* Set the variable bound in a GIMPLE_DEBUG source bind statement. */
4930 static inline void
4931 gimple_debug_source_bind_set_var (gimple *dbg, tree var)
4933 GIMPLE_CHECK (dbg, GIMPLE_DEBUG);
4934 gcc_gimple_checking_assert (gimple_debug_source_bind_p (dbg));
4935 gimple_set_op (dbg, 0, var);
4938 /* Set the value bound to the variable in a GIMPLE_DEBUG source bind
4939 statement. */
4941 static inline void
4942 gimple_debug_source_bind_set_value (gimple *dbg, tree value)
4944 GIMPLE_CHECK (dbg, GIMPLE_DEBUG);
4945 gcc_gimple_checking_assert (gimple_debug_source_bind_p (dbg));
4946 gimple_set_op (dbg, 1, value);
4949 /* Return true if S is a GIMPLE_DEBUG BEGIN_STMT statement. */
4951 static inline bool
4952 gimple_debug_begin_stmt_p (const gimple *s)
4954 if (is_gimple_debug (s))
4955 return s->subcode == GIMPLE_DEBUG_BEGIN_STMT;
4957 return false;
4960 /* Return true if S is a GIMPLE_DEBUG INLINE_ENTRY statement. */
4962 static inline bool
4963 gimple_debug_inline_entry_p (const gimple *s)
4965 if (is_gimple_debug (s))
4966 return s->subcode == GIMPLE_DEBUG_INLINE_ENTRY;
4968 return false;
4971 /* Return true if S is a GIMPLE_DEBUG non-binding marker statement. */
4973 static inline bool
4974 gimple_debug_nonbind_marker_p (const gimple *s)
4976 if (is_gimple_debug (s))
4977 return s->subcode == GIMPLE_DEBUG_BEGIN_STMT
4978 || s->subcode == GIMPLE_DEBUG_INLINE_ENTRY;
4980 return false;
4983 /* Return the line number for EXPR, or return -1 if we have no line
4984 number information for it. */
4985 static inline int
4986 get_lineno (const gimple *stmt)
4988 location_t loc;
4990 if (!stmt)
4991 return -1;
4993 loc = gimple_location (stmt);
4994 if (loc == UNKNOWN_LOCATION)
4995 return -1;
4997 return LOCATION_LINE (loc);
5000 /* Return a pointer to the body for the OMP statement GS. */
5002 static inline gimple_seq *
5003 gimple_omp_body_ptr (gimple *gs)
5005 return &static_cast <gimple_statement_omp *> (gs)->body;
5008 /* Return the body for the OMP statement GS. */
5010 static inline gimple_seq
5011 gimple_omp_body (const gimple *gs)
5013 return *gimple_omp_body_ptr (const_cast <gimple *> (gs));
5016 /* Set BODY to be the body for the OMP statement GS. */
5018 static inline void
5019 gimple_omp_set_body (gimple *gs, gimple_seq body)
5021 static_cast <gimple_statement_omp *> (gs)->body = body;
5025 /* Return the name associated with OMP_CRITICAL statement CRIT_STMT. */
5027 static inline tree
5028 gimple_omp_critical_name (const gomp_critical *crit_stmt)
5030 return crit_stmt->name;
5034 /* Return a pointer to the name associated with OMP critical statement
5035 CRIT_STMT. */
5037 static inline tree *
5038 gimple_omp_critical_name_ptr (gomp_critical *crit_stmt)
5040 return &crit_stmt->name;
5044 /* Set NAME to be the name associated with OMP critical statement
5045 CRIT_STMT. */
5047 static inline void
5048 gimple_omp_critical_set_name (gomp_critical *crit_stmt, tree name)
5050 crit_stmt->name = name;
5054 /* Return the clauses associated with OMP_CRITICAL statement CRIT_STMT. */
5056 static inline tree
5057 gimple_omp_critical_clauses (const gomp_critical *crit_stmt)
5059 return crit_stmt->clauses;
5063 /* Return a pointer to the clauses associated with OMP critical statement
5064 CRIT_STMT. */
5066 static inline tree *
5067 gimple_omp_critical_clauses_ptr (gomp_critical *crit_stmt)
5069 return &crit_stmt->clauses;
5073 /* Set CLAUSES to be the clauses associated with OMP critical statement
5074 CRIT_STMT. */
5076 static inline void
5077 gimple_omp_critical_set_clauses (gomp_critical *crit_stmt, tree clauses)
5079 crit_stmt->clauses = clauses;
5083 /* Return the clauses associated with OMP_ORDERED statement ORD_STMT. */
5085 static inline tree
5086 gimple_omp_ordered_clauses (const gomp_ordered *ord_stmt)
5088 return ord_stmt->clauses;
5092 /* Return a pointer to the clauses associated with OMP ordered statement
5093 ORD_STMT. */
5095 static inline tree *
5096 gimple_omp_ordered_clauses_ptr (gomp_ordered *ord_stmt)
5098 return &ord_stmt->clauses;
5102 /* Set CLAUSES to be the clauses associated with OMP ordered statement
5103 ORD_STMT. */
5105 static inline void
5106 gimple_omp_ordered_set_clauses (gomp_ordered *ord_stmt, tree clauses)
5108 ord_stmt->clauses = clauses;
5112 /* Return the clauses associated with OMP_SCAN statement SCAN_STMT. */
5114 static inline tree
5115 gimple_omp_scan_clauses (const gomp_scan *scan_stmt)
5117 return scan_stmt->clauses;
5121 /* Return a pointer to the clauses associated with OMP scan statement
5122 ORD_STMT. */
5124 static inline tree *
5125 gimple_omp_scan_clauses_ptr (gomp_scan *scan_stmt)
5127 return &scan_stmt->clauses;
5131 /* Set CLAUSES to be the clauses associated with OMP scan statement
5132 ORD_STMT. */
5134 static inline void
5135 gimple_omp_scan_set_clauses (gomp_scan *scan_stmt, tree clauses)
5137 scan_stmt->clauses = clauses;
5141 /* Return the clauses associated with OMP_TASKGROUP statement GS. */
5143 static inline tree
5144 gimple_omp_taskgroup_clauses (const gimple *gs)
5146 GIMPLE_CHECK (gs, GIMPLE_OMP_TASKGROUP);
5147 return
5148 static_cast <const gimple_statement_omp_single_layout *> (gs)->clauses;
5152 /* Return a pointer to the clauses associated with OMP taskgroup statement
5153 GS. */
5155 static inline tree *
5156 gimple_omp_taskgroup_clauses_ptr (gimple *gs)
5158 GIMPLE_CHECK (gs, GIMPLE_OMP_TASKGROUP);
5159 return &static_cast <gimple_statement_omp_single_layout *> (gs)->clauses;
5163 /* Set CLAUSES to be the clauses associated with OMP taskgroup statement
5164 GS. */
5166 static inline void
5167 gimple_omp_taskgroup_set_clauses (gimple *gs, tree clauses)
5169 GIMPLE_CHECK (gs, GIMPLE_OMP_TASKGROUP);
5170 static_cast <gimple_statement_omp_single_layout *> (gs)->clauses
5171 = clauses;
5175 /* Return the kind of the OMP_FOR statemement G. */
5177 static inline int
5178 gimple_omp_for_kind (const gimple *g)
5180 GIMPLE_CHECK (g, GIMPLE_OMP_FOR);
5181 return (gimple_omp_subcode (g) & GF_OMP_FOR_KIND_MASK);
5185 /* Set the kind of the OMP_FOR statement G. */
5187 static inline void
5188 gimple_omp_for_set_kind (gomp_for *g, int kind)
5190 g->subcode = (g->subcode & ~GF_OMP_FOR_KIND_MASK)
5191 | (kind & GF_OMP_FOR_KIND_MASK);
5195 /* Return true if OMP_FOR statement G has the
5196 GF_OMP_FOR_COMBINED flag set. */
5198 static inline bool
5199 gimple_omp_for_combined_p (const gimple *g)
5201 GIMPLE_CHECK (g, GIMPLE_OMP_FOR);
5202 return (gimple_omp_subcode (g) & GF_OMP_FOR_COMBINED) != 0;
5206 /* Set the GF_OMP_FOR_COMBINED field in the OMP_FOR statement G depending on
5207 the boolean value of COMBINED_P. */
5209 static inline void
5210 gimple_omp_for_set_combined_p (gomp_for *g, bool combined_p)
5212 if (combined_p)
5213 g->subcode |= GF_OMP_FOR_COMBINED;
5214 else
5215 g->subcode &= ~GF_OMP_FOR_COMBINED;
5219 /* Return true if the OMP_FOR statement G has the
5220 GF_OMP_FOR_COMBINED_INTO flag set. */
5222 static inline bool
5223 gimple_omp_for_combined_into_p (const gimple *g)
5225 GIMPLE_CHECK (g, GIMPLE_OMP_FOR);
5226 return (gimple_omp_subcode (g) & GF_OMP_FOR_COMBINED_INTO) != 0;
5230 /* Set the GF_OMP_FOR_COMBINED_INTO field in the OMP_FOR statement G depending
5231 on the boolean value of COMBINED_P. */
5233 static inline void
5234 gimple_omp_for_set_combined_into_p (gomp_for *g, bool combined_p)
5236 if (combined_p)
5237 g->subcode |= GF_OMP_FOR_COMBINED_INTO;
5238 else
5239 g->subcode &= ~GF_OMP_FOR_COMBINED_INTO;
5243 /* Return the clauses associated with the OMP_FOR statement GS. */
5245 static inline tree
5246 gimple_omp_for_clauses (const gimple *gs)
5248 const gomp_for *omp_for_stmt = as_a <const gomp_for *> (gs);
5249 return omp_for_stmt->clauses;
5253 /* Return a pointer to the clauses associated with the OMP_FOR statement
5254 GS. */
5256 static inline tree *
5257 gimple_omp_for_clauses_ptr (gimple *gs)
5259 gomp_for *omp_for_stmt = as_a <gomp_for *> (gs);
5260 return &omp_for_stmt->clauses;
5264 /* Set CLAUSES to be the list of clauses associated with the OMP_FOR statement
5265 GS. */
5267 static inline void
5268 gimple_omp_for_set_clauses (gimple *gs, tree clauses)
5270 gomp_for *omp_for_stmt = as_a <gomp_for *> (gs);
5271 omp_for_stmt->clauses = clauses;
5275 /* Get the collapse count of the OMP_FOR statement GS. */
5277 static inline size_t
5278 gimple_omp_for_collapse (const gimple *gs)
5280 const gomp_for *omp_for_stmt = as_a <const gomp_for *> (gs);
5281 return omp_for_stmt->collapse;
5285 /* Return the condition code associated with the OMP_FOR statement GS. */
5287 static inline enum tree_code
5288 gimple_omp_for_cond (const gimple *gs, size_t i)
5290 const gomp_for *omp_for_stmt = as_a <const gomp_for *> (gs);
5291 gcc_gimple_checking_assert (i < omp_for_stmt->collapse);
5292 return omp_for_stmt->iter[i].cond;
5296 /* Set COND to be the condition code for the OMP_FOR statement GS. */
5298 static inline void
5299 gimple_omp_for_set_cond (gimple *gs, size_t i, enum tree_code cond)
5301 gomp_for *omp_for_stmt = as_a <gomp_for *> (gs);
5302 gcc_gimple_checking_assert (TREE_CODE_CLASS (cond) == tcc_comparison
5303 && i < omp_for_stmt->collapse);
5304 omp_for_stmt->iter[i].cond = cond;
5308 /* Return the index variable for the OMP_FOR statement GS. */
5310 static inline tree
5311 gimple_omp_for_index (const gimple *gs, size_t i)
5313 const gomp_for *omp_for_stmt = as_a <const gomp_for *> (gs);
5314 gcc_gimple_checking_assert (i < omp_for_stmt->collapse);
5315 return omp_for_stmt->iter[i].index;
5319 /* Return a pointer to the index variable for the OMP_FOR statement GS. */
5321 static inline tree *
5322 gimple_omp_for_index_ptr (gimple *gs, size_t i)
5324 gomp_for *omp_for_stmt = as_a <gomp_for *> (gs);
5325 gcc_gimple_checking_assert (i < omp_for_stmt->collapse);
5326 return &omp_for_stmt->iter[i].index;
5330 /* Set INDEX to be the index variable for the OMP_FOR statement GS. */
5332 static inline void
5333 gimple_omp_for_set_index (gimple *gs, size_t i, tree index)
5335 gomp_for *omp_for_stmt = as_a <gomp_for *> (gs);
5336 gcc_gimple_checking_assert (i < omp_for_stmt->collapse);
5337 omp_for_stmt->iter[i].index = index;
5341 /* Return the initial value for the OMP_FOR statement GS. */
5343 static inline tree
5344 gimple_omp_for_initial (const gimple *gs, size_t i)
5346 const gomp_for *omp_for_stmt = as_a <const gomp_for *> (gs);
5347 gcc_gimple_checking_assert (i < omp_for_stmt->collapse);
5348 return omp_for_stmt->iter[i].initial;
5352 /* Return a pointer to the initial value for the OMP_FOR statement GS. */
5354 static inline tree *
5355 gimple_omp_for_initial_ptr (gimple *gs, size_t i)
5357 gomp_for *omp_for_stmt = as_a <gomp_for *> (gs);
5358 gcc_gimple_checking_assert (i < omp_for_stmt->collapse);
5359 return &omp_for_stmt->iter[i].initial;
5363 /* Set INITIAL to be the initial value for the OMP_FOR statement GS. */
5365 static inline void
5366 gimple_omp_for_set_initial (gimple *gs, size_t i, tree initial)
5368 gomp_for *omp_for_stmt = as_a <gomp_for *> (gs);
5369 gcc_gimple_checking_assert (i < omp_for_stmt->collapse);
5370 omp_for_stmt->iter[i].initial = initial;
5374 /* Return the final value for the OMP_FOR statement GS. */
5376 static inline tree
5377 gimple_omp_for_final (const gimple *gs, size_t i)
5379 const gomp_for *omp_for_stmt = as_a <const gomp_for *> (gs);
5380 gcc_gimple_checking_assert (i < omp_for_stmt->collapse);
5381 return omp_for_stmt->iter[i].final;
5385 /* Return a pointer to the final value for the OMP_FOR statement GS. */
5387 static inline tree *
5388 gimple_omp_for_final_ptr (gimple *gs, size_t i)
5390 gomp_for *omp_for_stmt = as_a <gomp_for *> (gs);
5391 gcc_gimple_checking_assert (i < omp_for_stmt->collapse);
5392 return &omp_for_stmt->iter[i].final;
5396 /* Set FINAL to be the final value for the OMP_FOR statement GS. */
5398 static inline void
5399 gimple_omp_for_set_final (gimple *gs, size_t i, tree final)
5401 gomp_for *omp_for_stmt = as_a <gomp_for *> (gs);
5402 gcc_gimple_checking_assert (i < omp_for_stmt->collapse);
5403 omp_for_stmt->iter[i].final = final;
5407 /* Return the increment value for the OMP_FOR statement GS. */
5409 static inline tree
5410 gimple_omp_for_incr (const gimple *gs, size_t i)
5412 const gomp_for *omp_for_stmt = as_a <const gomp_for *> (gs);
5413 gcc_gimple_checking_assert (i < omp_for_stmt->collapse);
5414 return omp_for_stmt->iter[i].incr;
5418 /* Return a pointer to the increment value for the OMP_FOR statement GS. */
5420 static inline tree *
5421 gimple_omp_for_incr_ptr (gimple *gs, size_t i)
5423 gomp_for *omp_for_stmt = as_a <gomp_for *> (gs);
5424 gcc_gimple_checking_assert (i < omp_for_stmt->collapse);
5425 return &omp_for_stmt->iter[i].incr;
5429 /* Set INCR to be the increment value for the OMP_FOR statement GS. */
5431 static inline void
5432 gimple_omp_for_set_incr (gimple *gs, size_t i, tree incr)
5434 gomp_for *omp_for_stmt = as_a <gomp_for *> (gs);
5435 gcc_gimple_checking_assert (i < omp_for_stmt->collapse);
5436 omp_for_stmt->iter[i].incr = incr;
5440 /* Return a pointer to the sequence of statements to execute before the OMP_FOR
5441 statement GS starts. */
5443 static inline gimple_seq *
5444 gimple_omp_for_pre_body_ptr (gimple *gs)
5446 gomp_for *omp_for_stmt = as_a <gomp_for *> (gs);
5447 return &omp_for_stmt->pre_body;
5451 /* Return the sequence of statements to execute before the OMP_FOR
5452 statement GS starts. */
5454 static inline gimple_seq
5455 gimple_omp_for_pre_body (const gimple *gs)
5457 return *gimple_omp_for_pre_body_ptr (const_cast <gimple *> (gs));
5461 /* Set PRE_BODY to be the sequence of statements to execute before the
5462 OMP_FOR statement GS starts. */
5464 static inline void
5465 gimple_omp_for_set_pre_body (gimple *gs, gimple_seq pre_body)
5467 gomp_for *omp_for_stmt = as_a <gomp_for *> (gs);
5468 omp_for_stmt->pre_body = pre_body;
5471 /* Return the clauses associated with OMP_PARALLEL GS. */
5473 static inline tree
5474 gimple_omp_parallel_clauses (const gimple *gs)
5476 const gomp_parallel *omp_parallel_stmt = as_a <const gomp_parallel *> (gs);
5477 return omp_parallel_stmt->clauses;
5481 /* Return a pointer to the clauses associated with OMP_PARALLEL_STMT. */
5483 static inline tree *
5484 gimple_omp_parallel_clauses_ptr (gomp_parallel *omp_parallel_stmt)
5486 return &omp_parallel_stmt->clauses;
5490 /* Set CLAUSES to be the list of clauses associated with OMP_PARALLEL_STMT. */
5492 static inline void
5493 gimple_omp_parallel_set_clauses (gomp_parallel *omp_parallel_stmt,
5494 tree clauses)
5496 omp_parallel_stmt->clauses = clauses;
5500 /* Return the child function used to hold the body of OMP_PARALLEL_STMT. */
5502 static inline tree
5503 gimple_omp_parallel_child_fn (const gomp_parallel *omp_parallel_stmt)
5505 return omp_parallel_stmt->child_fn;
5508 /* Return a pointer to the child function used to hold the body of
5509 OMP_PARALLEL_STMT. */
5511 static inline tree *
5512 gimple_omp_parallel_child_fn_ptr (gomp_parallel *omp_parallel_stmt)
5514 return &omp_parallel_stmt->child_fn;
5518 /* Set CHILD_FN to be the child function for OMP_PARALLEL_STMT. */
5520 static inline void
5521 gimple_omp_parallel_set_child_fn (gomp_parallel *omp_parallel_stmt,
5522 tree child_fn)
5524 omp_parallel_stmt->child_fn = child_fn;
5528 /* Return the artificial argument used to send variables and values
5529 from the parent to the children threads in OMP_PARALLEL_STMT. */
5531 static inline tree
5532 gimple_omp_parallel_data_arg (const gomp_parallel *omp_parallel_stmt)
5534 return omp_parallel_stmt->data_arg;
5538 /* Return a pointer to the data argument for OMP_PARALLEL_STMT. */
5540 static inline tree *
5541 gimple_omp_parallel_data_arg_ptr (gomp_parallel *omp_parallel_stmt)
5543 return &omp_parallel_stmt->data_arg;
5547 /* Set DATA_ARG to be the data argument for OMP_PARALLEL_STMT. */
5549 static inline void
5550 gimple_omp_parallel_set_data_arg (gomp_parallel *omp_parallel_stmt,
5551 tree data_arg)
5553 omp_parallel_stmt->data_arg = data_arg;
5556 /* Return the clauses associated with OMP_TASK GS. */
5558 static inline tree
5559 gimple_omp_task_clauses (const gimple *gs)
5561 const gomp_task *omp_task_stmt = as_a <const gomp_task *> (gs);
5562 return omp_task_stmt->clauses;
5566 /* Return a pointer to the clauses associated with OMP_TASK GS. */
5568 static inline tree *
5569 gimple_omp_task_clauses_ptr (gimple *gs)
5571 gomp_task *omp_task_stmt = as_a <gomp_task *> (gs);
5572 return &omp_task_stmt->clauses;
5576 /* Set CLAUSES to be the list of clauses associated with OMP_TASK
5577 GS. */
5579 static inline void
5580 gimple_omp_task_set_clauses (gimple *gs, tree clauses)
5582 gomp_task *omp_task_stmt = as_a <gomp_task *> (gs);
5583 omp_task_stmt->clauses = clauses;
5587 /* Return true if OMP task statement G has the
5588 GF_OMP_TASK_TASKLOOP flag set. */
5590 static inline bool
5591 gimple_omp_task_taskloop_p (const gimple *g)
5593 GIMPLE_CHECK (g, GIMPLE_OMP_TASK);
5594 return (gimple_omp_subcode (g) & GF_OMP_TASK_TASKLOOP) != 0;
5598 /* Set the GF_OMP_TASK_TASKLOOP field in G depending on the boolean
5599 value of TASKLOOP_P. */
5601 static inline void
5602 gimple_omp_task_set_taskloop_p (gimple *g, bool taskloop_p)
5604 GIMPLE_CHECK (g, GIMPLE_OMP_TASK);
5605 if (taskloop_p)
5606 g->subcode |= GF_OMP_TASK_TASKLOOP;
5607 else
5608 g->subcode &= ~GF_OMP_TASK_TASKLOOP;
5612 /* Return true if OMP task statement G has the
5613 GF_OMP_TASK_TASKWAIT flag set. */
5615 static inline bool
5616 gimple_omp_task_taskwait_p (const gimple *g)
5618 GIMPLE_CHECK (g, GIMPLE_OMP_TASK);
5619 return (gimple_omp_subcode (g) & GF_OMP_TASK_TASKWAIT) != 0;
5623 /* Set the GF_OMP_TASK_TASKWAIT field in G depending on the boolean
5624 value of TASKWAIT_P. */
5626 static inline void
5627 gimple_omp_task_set_taskwait_p (gimple *g, bool taskwait_p)
5629 GIMPLE_CHECK (g, GIMPLE_OMP_TASK);
5630 if (taskwait_p)
5631 g->subcode |= GF_OMP_TASK_TASKWAIT;
5632 else
5633 g->subcode &= ~GF_OMP_TASK_TASKWAIT;
5637 /* Return the child function used to hold the body of OMP_TASK GS. */
5639 static inline tree
5640 gimple_omp_task_child_fn (const gimple *gs)
5642 const gomp_task *omp_task_stmt = as_a <const gomp_task *> (gs);
5643 return omp_task_stmt->child_fn;
5646 /* Return a pointer to the child function used to hold the body of
5647 OMP_TASK GS. */
5649 static inline tree *
5650 gimple_omp_task_child_fn_ptr (gimple *gs)
5652 gomp_task *omp_task_stmt = as_a <gomp_task *> (gs);
5653 return &omp_task_stmt->child_fn;
5657 /* Set CHILD_FN to be the child function for OMP_TASK GS. */
5659 static inline void
5660 gimple_omp_task_set_child_fn (gimple *gs, tree child_fn)
5662 gomp_task *omp_task_stmt = as_a <gomp_task *> (gs);
5663 omp_task_stmt->child_fn = child_fn;
5667 /* Return the artificial argument used to send variables and values
5668 from the parent to the children threads in OMP_TASK GS. */
5670 static inline tree
5671 gimple_omp_task_data_arg (const gimple *gs)
5673 const gomp_task *omp_task_stmt = as_a <const gomp_task *> (gs);
5674 return omp_task_stmt->data_arg;
5678 /* Return a pointer to the data argument for OMP_TASK GS. */
5680 static inline tree *
5681 gimple_omp_task_data_arg_ptr (gimple *gs)
5683 gomp_task *omp_task_stmt = as_a <gomp_task *> (gs);
5684 return &omp_task_stmt->data_arg;
5688 /* Set DATA_ARG to be the data argument for OMP_TASK GS. */
5690 static inline void
5691 gimple_omp_task_set_data_arg (gimple *gs, tree data_arg)
5693 gomp_task *omp_task_stmt = as_a <gomp_task *> (gs);
5694 omp_task_stmt->data_arg = data_arg;
5698 /* Return the clauses associated with OMP_TASK GS. */
5700 static inline tree
5701 gimple_omp_taskreg_clauses (const gimple *gs)
5703 const gimple_statement_omp_taskreg *omp_taskreg_stmt
5704 = as_a <const gimple_statement_omp_taskreg *> (gs);
5705 return omp_taskreg_stmt->clauses;
5709 /* Return a pointer to the clauses associated with OMP_TASK GS. */
5711 static inline tree *
5712 gimple_omp_taskreg_clauses_ptr (gimple *gs)
5714 gimple_statement_omp_taskreg *omp_taskreg_stmt
5715 = as_a <gimple_statement_omp_taskreg *> (gs);
5716 return &omp_taskreg_stmt->clauses;
5720 /* Set CLAUSES to be the list of clauses associated with OMP_TASK
5721 GS. */
5723 static inline void
5724 gimple_omp_taskreg_set_clauses (gimple *gs, tree clauses)
5726 gimple_statement_omp_taskreg *omp_taskreg_stmt
5727 = as_a <gimple_statement_omp_taskreg *> (gs);
5728 omp_taskreg_stmt->clauses = clauses;
5732 /* Return the child function used to hold the body of OMP_TASK GS. */
5734 static inline tree
5735 gimple_omp_taskreg_child_fn (const gimple *gs)
5737 const gimple_statement_omp_taskreg *omp_taskreg_stmt
5738 = as_a <const gimple_statement_omp_taskreg *> (gs);
5739 return omp_taskreg_stmt->child_fn;
5742 /* Return a pointer to the child function used to hold the body of
5743 OMP_TASK GS. */
5745 static inline tree *
5746 gimple_omp_taskreg_child_fn_ptr (gimple *gs)
5748 gimple_statement_omp_taskreg *omp_taskreg_stmt
5749 = as_a <gimple_statement_omp_taskreg *> (gs);
5750 return &omp_taskreg_stmt->child_fn;
5754 /* Set CHILD_FN to be the child function for OMP_TASK GS. */
5756 static inline void
5757 gimple_omp_taskreg_set_child_fn (gimple *gs, tree child_fn)
5759 gimple_statement_omp_taskreg *omp_taskreg_stmt
5760 = as_a <gimple_statement_omp_taskreg *> (gs);
5761 omp_taskreg_stmt->child_fn = child_fn;
5765 /* Return the artificial argument used to send variables and values
5766 from the parent to the children threads in OMP_TASK GS. */
5768 static inline tree
5769 gimple_omp_taskreg_data_arg (const gimple *gs)
5771 const gimple_statement_omp_taskreg *omp_taskreg_stmt
5772 = as_a <const gimple_statement_omp_taskreg *> (gs);
5773 return omp_taskreg_stmt->data_arg;
5777 /* Return a pointer to the data argument for OMP_TASK GS. */
5779 static inline tree *
5780 gimple_omp_taskreg_data_arg_ptr (gimple *gs)
5782 gimple_statement_omp_taskreg *omp_taskreg_stmt
5783 = as_a <gimple_statement_omp_taskreg *> (gs);
5784 return &omp_taskreg_stmt->data_arg;
5788 /* Set DATA_ARG to be the data argument for OMP_TASK GS. */
5790 static inline void
5791 gimple_omp_taskreg_set_data_arg (gimple *gs, tree data_arg)
5793 gimple_statement_omp_taskreg *omp_taskreg_stmt
5794 = as_a <gimple_statement_omp_taskreg *> (gs);
5795 omp_taskreg_stmt->data_arg = data_arg;
5799 /* Return the copy function used to hold the body of OMP_TASK GS. */
5801 static inline tree
5802 gimple_omp_task_copy_fn (const gimple *gs)
5804 const gomp_task *omp_task_stmt = as_a <const gomp_task *> (gs);
5805 return omp_task_stmt->copy_fn;
5808 /* Return a pointer to the copy function used to hold the body of
5809 OMP_TASK GS. */
5811 static inline tree *
5812 gimple_omp_task_copy_fn_ptr (gimple *gs)
5814 gomp_task *omp_task_stmt = as_a <gomp_task *> (gs);
5815 return &omp_task_stmt->copy_fn;
5819 /* Set CHILD_FN to be the copy function for OMP_TASK GS. */
5821 static inline void
5822 gimple_omp_task_set_copy_fn (gimple *gs, tree copy_fn)
5824 gomp_task *omp_task_stmt = as_a <gomp_task *> (gs);
5825 omp_task_stmt->copy_fn = copy_fn;
5829 /* Return size of the data block in bytes in OMP_TASK GS. */
5831 static inline tree
5832 gimple_omp_task_arg_size (const gimple *gs)
5834 const gomp_task *omp_task_stmt = as_a <const gomp_task *> (gs);
5835 return omp_task_stmt->arg_size;
5839 /* Return a pointer to the data block size for OMP_TASK GS. */
5841 static inline tree *
5842 gimple_omp_task_arg_size_ptr (gimple *gs)
5844 gomp_task *omp_task_stmt = as_a <gomp_task *> (gs);
5845 return &omp_task_stmt->arg_size;
5849 /* Set ARG_SIZE to be the data block size for OMP_TASK GS. */
5851 static inline void
5852 gimple_omp_task_set_arg_size (gimple *gs, tree arg_size)
5854 gomp_task *omp_task_stmt = as_a <gomp_task *> (gs);
5855 omp_task_stmt->arg_size = arg_size;
5859 /* Return align of the data block in bytes in OMP_TASK GS. */
5861 static inline tree
5862 gimple_omp_task_arg_align (const gimple *gs)
5864 const gomp_task *omp_task_stmt = as_a <const gomp_task *> (gs);
5865 return omp_task_stmt->arg_align;
5869 /* Return a pointer to the data block align for OMP_TASK GS. */
5871 static inline tree *
5872 gimple_omp_task_arg_align_ptr (gimple *gs)
5874 gomp_task *omp_task_stmt = as_a <gomp_task *> (gs);
5875 return &omp_task_stmt->arg_align;
5879 /* Set ARG_SIZE to be the data block align for OMP_TASK GS. */
5881 static inline void
5882 gimple_omp_task_set_arg_align (gimple *gs, tree arg_align)
5884 gomp_task *omp_task_stmt = as_a <gomp_task *> (gs);
5885 omp_task_stmt->arg_align = arg_align;
5889 /* Return the clauses associated with OMP_SINGLE GS. */
5891 static inline tree
5892 gimple_omp_single_clauses (const gimple *gs)
5894 const gomp_single *omp_single_stmt = as_a <const gomp_single *> (gs);
5895 return omp_single_stmt->clauses;
5899 /* Return a pointer to the clauses associated with OMP_SINGLE GS. */
5901 static inline tree *
5902 gimple_omp_single_clauses_ptr (gimple *gs)
5904 gomp_single *omp_single_stmt = as_a <gomp_single *> (gs);
5905 return &omp_single_stmt->clauses;
5909 /* Set CLAUSES to be the clauses associated with OMP_SINGLE_STMT. */
5911 static inline void
5912 gimple_omp_single_set_clauses (gomp_single *omp_single_stmt, tree clauses)
5914 omp_single_stmt->clauses = clauses;
5918 /* Return the clauses associated with OMP_TARGET GS. */
5920 static inline tree
5921 gimple_omp_target_clauses (const gimple *gs)
5923 const gomp_target *omp_target_stmt = as_a <const gomp_target *> (gs);
5924 return omp_target_stmt->clauses;
5928 /* Return a pointer to the clauses associated with OMP_TARGET GS. */
5930 static inline tree *
5931 gimple_omp_target_clauses_ptr (gimple *gs)
5933 gomp_target *omp_target_stmt = as_a <gomp_target *> (gs);
5934 return &omp_target_stmt->clauses;
5938 /* Set CLAUSES to be the clauses associated with OMP_TARGET_STMT. */
5940 static inline void
5941 gimple_omp_target_set_clauses (gomp_target *omp_target_stmt,
5942 tree clauses)
5944 omp_target_stmt->clauses = clauses;
5948 /* Return the kind of the OMP_TARGET G. */
5950 static inline int
5951 gimple_omp_target_kind (const gimple *g)
5953 GIMPLE_CHECK (g, GIMPLE_OMP_TARGET);
5954 return (gimple_omp_subcode (g) & GF_OMP_TARGET_KIND_MASK);
5958 /* Set the kind of the OMP_TARGET G. */
5960 static inline void
5961 gimple_omp_target_set_kind (gomp_target *g, int kind)
5963 g->subcode = (g->subcode & ~GF_OMP_TARGET_KIND_MASK)
5964 | (kind & GF_OMP_TARGET_KIND_MASK);
5968 /* Return the child function used to hold the body of OMP_TARGET_STMT. */
5970 static inline tree
5971 gimple_omp_target_child_fn (const gomp_target *omp_target_stmt)
5973 return omp_target_stmt->child_fn;
5976 /* Return a pointer to the child function used to hold the body of
5977 OMP_TARGET_STMT. */
5979 static inline tree *
5980 gimple_omp_target_child_fn_ptr (gomp_target *omp_target_stmt)
5982 return &omp_target_stmt->child_fn;
5986 /* Set CHILD_FN to be the child function for OMP_TARGET_STMT. */
5988 static inline void
5989 gimple_omp_target_set_child_fn (gomp_target *omp_target_stmt,
5990 tree child_fn)
5992 omp_target_stmt->child_fn = child_fn;
5996 /* Return the artificial argument used to send variables and values
5997 from the parent to the children threads in OMP_TARGET_STMT. */
5999 static inline tree
6000 gimple_omp_target_data_arg (const gomp_target *omp_target_stmt)
6002 return omp_target_stmt->data_arg;
6006 /* Return a pointer to the data argument for OMP_TARGET GS. */
6008 static inline tree *
6009 gimple_omp_target_data_arg_ptr (gomp_target *omp_target_stmt)
6011 return &omp_target_stmt->data_arg;
6015 /* Set DATA_ARG to be the data argument for OMP_TARGET_STMT. */
6017 static inline void
6018 gimple_omp_target_set_data_arg (gomp_target *omp_target_stmt,
6019 tree data_arg)
6021 omp_target_stmt->data_arg = data_arg;
6025 /* Return the clauses associated with OMP_TEAMS GS. */
6027 static inline tree
6028 gimple_omp_teams_clauses (const gimple *gs)
6030 const gomp_teams *omp_teams_stmt = as_a <const gomp_teams *> (gs);
6031 return omp_teams_stmt->clauses;
6035 /* Return a pointer to the clauses associated with OMP_TEAMS GS. */
6037 static inline tree *
6038 gimple_omp_teams_clauses_ptr (gimple *gs)
6040 gomp_teams *omp_teams_stmt = as_a <gomp_teams *> (gs);
6041 return &omp_teams_stmt->clauses;
6045 /* Set CLAUSES to be the clauses associated with OMP_TEAMS_STMT. */
6047 static inline void
6048 gimple_omp_teams_set_clauses (gomp_teams *omp_teams_stmt, tree clauses)
6050 omp_teams_stmt->clauses = clauses;
6053 /* Return the child function used to hold the body of OMP_TEAMS_STMT. */
6055 static inline tree
6056 gimple_omp_teams_child_fn (const gomp_teams *omp_teams_stmt)
6058 return omp_teams_stmt->child_fn;
6061 /* Return a pointer to the child function used to hold the body of
6062 OMP_TEAMS_STMT. */
6064 static inline tree *
6065 gimple_omp_teams_child_fn_ptr (gomp_teams *omp_teams_stmt)
6067 return &omp_teams_stmt->child_fn;
6071 /* Set CHILD_FN to be the child function for OMP_TEAMS_STMT. */
6073 static inline void
6074 gimple_omp_teams_set_child_fn (gomp_teams *omp_teams_stmt, tree child_fn)
6076 omp_teams_stmt->child_fn = child_fn;
6080 /* Return the artificial argument used to send variables and values
6081 from the parent to the children threads in OMP_TEAMS_STMT. */
6083 static inline tree
6084 gimple_omp_teams_data_arg (const gomp_teams *omp_teams_stmt)
6086 return omp_teams_stmt->data_arg;
6090 /* Return a pointer to the data argument for OMP_TEAMS_STMT. */
6092 static inline tree *
6093 gimple_omp_teams_data_arg_ptr (gomp_teams *omp_teams_stmt)
6095 return &omp_teams_stmt->data_arg;
6099 /* Set DATA_ARG to be the data argument for OMP_TEAMS_STMT. */
6101 static inline void
6102 gimple_omp_teams_set_data_arg (gomp_teams *omp_teams_stmt, tree data_arg)
6104 omp_teams_stmt->data_arg = data_arg;
6107 /* Return the host flag of an OMP_TEAMS_STMT. */
6109 static inline bool
6110 gimple_omp_teams_host (const gomp_teams *omp_teams_stmt)
6112 return (gimple_omp_subcode (omp_teams_stmt) & GF_OMP_TEAMS_HOST) != 0;
6115 /* Set host flag of an OMP_TEAMS_STMT to VALUE. */
6117 static inline void
6118 gimple_omp_teams_set_host (gomp_teams *omp_teams_stmt, bool value)
6120 if (value)
6121 omp_teams_stmt->subcode |= GF_OMP_TEAMS_HOST;
6122 else
6123 omp_teams_stmt->subcode &= ~GF_OMP_TEAMS_HOST;
6126 /* Return the clauses associated with OMP_SECTIONS GS. */
6128 static inline tree
6129 gimple_omp_sections_clauses (const gimple *gs)
6131 const gomp_sections *omp_sections_stmt = as_a <const gomp_sections *> (gs);
6132 return omp_sections_stmt->clauses;
6136 /* Return a pointer to the clauses associated with OMP_SECTIONS GS. */
6138 static inline tree *
6139 gimple_omp_sections_clauses_ptr (gimple *gs)
6141 gomp_sections *omp_sections_stmt = as_a <gomp_sections *> (gs);
6142 return &omp_sections_stmt->clauses;
6146 /* Set CLAUSES to be the set of clauses associated with OMP_SECTIONS
6147 GS. */
6149 static inline void
6150 gimple_omp_sections_set_clauses (gimple *gs, tree clauses)
6152 gomp_sections *omp_sections_stmt = as_a <gomp_sections *> (gs);
6153 omp_sections_stmt->clauses = clauses;
6157 /* Return the control variable associated with the GIMPLE_OMP_SECTIONS
6158 in GS. */
6160 static inline tree
6161 gimple_omp_sections_control (const gimple *gs)
6163 const gomp_sections *omp_sections_stmt = as_a <const gomp_sections *> (gs);
6164 return omp_sections_stmt->control;
6168 /* Return a pointer to the clauses associated with the GIMPLE_OMP_SECTIONS
6169 GS. */
6171 static inline tree *
6172 gimple_omp_sections_control_ptr (gimple *gs)
6174 gomp_sections *omp_sections_stmt = as_a <gomp_sections *> (gs);
6175 return &omp_sections_stmt->control;
6179 /* Set CONTROL to be the set of clauses associated with the
6180 GIMPLE_OMP_SECTIONS in GS. */
6182 static inline void
6183 gimple_omp_sections_set_control (gimple *gs, tree control)
6185 gomp_sections *omp_sections_stmt = as_a <gomp_sections *> (gs);
6186 omp_sections_stmt->control = control;
6190 /* Set the value being stored in an atomic store. */
6192 static inline void
6193 gimple_omp_atomic_store_set_val (gomp_atomic_store *store_stmt, tree val)
6195 store_stmt->val = val;
6199 /* Return the value being stored in an atomic store. */
6201 static inline tree
6202 gimple_omp_atomic_store_val (const gomp_atomic_store *store_stmt)
6204 return store_stmt->val;
6208 /* Return a pointer to the value being stored in an atomic store. */
6210 static inline tree *
6211 gimple_omp_atomic_store_val_ptr (gomp_atomic_store *store_stmt)
6213 return &store_stmt->val;
6217 /* Set the LHS of an atomic load. */
6219 static inline void
6220 gimple_omp_atomic_load_set_lhs (gomp_atomic_load *load_stmt, tree lhs)
6222 load_stmt->lhs = lhs;
6226 /* Get the LHS of an atomic load. */
6228 static inline tree
6229 gimple_omp_atomic_load_lhs (const gomp_atomic_load *load_stmt)
6231 return load_stmt->lhs;
6235 /* Return a pointer to the LHS of an atomic load. */
6237 static inline tree *
6238 gimple_omp_atomic_load_lhs_ptr (gomp_atomic_load *load_stmt)
6240 return &load_stmt->lhs;
6244 /* Set the RHS of an atomic load. */
6246 static inline void
6247 gimple_omp_atomic_load_set_rhs (gomp_atomic_load *load_stmt, tree rhs)
6249 load_stmt->rhs = rhs;
6253 /* Get the RHS of an atomic load. */
6255 static inline tree
6256 gimple_omp_atomic_load_rhs (const gomp_atomic_load *load_stmt)
6258 return load_stmt->rhs;
6262 /* Return a pointer to the RHS of an atomic load. */
6264 static inline tree *
6265 gimple_omp_atomic_load_rhs_ptr (gomp_atomic_load *load_stmt)
6267 return &load_stmt->rhs;
6271 /* Get the definition of the control variable in a GIMPLE_OMP_CONTINUE. */
6273 static inline tree
6274 gimple_omp_continue_control_def (const gomp_continue *cont_stmt)
6276 return cont_stmt->control_def;
6279 /* The same as above, but return the address. */
6281 static inline tree *
6282 gimple_omp_continue_control_def_ptr (gomp_continue *cont_stmt)
6284 return &cont_stmt->control_def;
6287 /* Set the definition of the control variable in a GIMPLE_OMP_CONTINUE. */
6289 static inline void
6290 gimple_omp_continue_set_control_def (gomp_continue *cont_stmt, tree def)
6292 cont_stmt->control_def = def;
6296 /* Get the use of the control variable in a GIMPLE_OMP_CONTINUE. */
6298 static inline tree
6299 gimple_omp_continue_control_use (const gomp_continue *cont_stmt)
6301 return cont_stmt->control_use;
6305 /* The same as above, but return the address. */
6307 static inline tree *
6308 gimple_omp_continue_control_use_ptr (gomp_continue *cont_stmt)
6310 return &cont_stmt->control_use;
6314 /* Set the use of the control variable in a GIMPLE_OMP_CONTINUE. */
6316 static inline void
6317 gimple_omp_continue_set_control_use (gomp_continue *cont_stmt, tree use)
6319 cont_stmt->control_use = use;
6322 /* Return a pointer to the body for the GIMPLE_TRANSACTION statement
6323 TRANSACTION_STMT. */
6325 static inline gimple_seq *
6326 gimple_transaction_body_ptr (gtransaction *transaction_stmt)
6328 return &transaction_stmt->body;
6331 /* Return the body for the GIMPLE_TRANSACTION statement TRANSACTION_STMT. */
6333 static inline gimple_seq
6334 gimple_transaction_body (const gtransaction *transaction_stmt)
6336 return transaction_stmt->body;
6339 /* Return the label associated with a GIMPLE_TRANSACTION. */
6341 static inline tree
6342 gimple_transaction_label_norm (const gtransaction *transaction_stmt)
6344 return transaction_stmt->label_norm;
6347 static inline tree *
6348 gimple_transaction_label_norm_ptr (gtransaction *transaction_stmt)
6350 return &transaction_stmt->label_norm;
6353 static inline tree
6354 gimple_transaction_label_uninst (const gtransaction *transaction_stmt)
6356 return transaction_stmt->label_uninst;
6359 static inline tree *
6360 gimple_transaction_label_uninst_ptr (gtransaction *transaction_stmt)
6362 return &transaction_stmt->label_uninst;
6365 static inline tree
6366 gimple_transaction_label_over (const gtransaction *transaction_stmt)
6368 return transaction_stmt->label_over;
6371 static inline tree *
6372 gimple_transaction_label_over_ptr (gtransaction *transaction_stmt)
6374 return &transaction_stmt->label_over;
6377 /* Return the subcode associated with a GIMPLE_TRANSACTION. */
6379 static inline unsigned int
6380 gimple_transaction_subcode (const gtransaction *transaction_stmt)
6382 return transaction_stmt->subcode;
6385 /* Set BODY to be the body for the GIMPLE_TRANSACTION statement
6386 TRANSACTION_STMT. */
6388 static inline void
6389 gimple_transaction_set_body (gtransaction *transaction_stmt,
6390 gimple_seq body)
6392 transaction_stmt->body = body;
6395 /* Set the label associated with a GIMPLE_TRANSACTION. */
6397 static inline void
6398 gimple_transaction_set_label_norm (gtransaction *transaction_stmt, tree label)
6400 transaction_stmt->label_norm = label;
6403 static inline void
6404 gimple_transaction_set_label_uninst (gtransaction *transaction_stmt, tree label)
6406 transaction_stmt->label_uninst = label;
6409 static inline void
6410 gimple_transaction_set_label_over (gtransaction *transaction_stmt, tree label)
6412 transaction_stmt->label_over = label;
6415 /* Set the subcode associated with a GIMPLE_TRANSACTION. */
6417 static inline void
6418 gimple_transaction_set_subcode (gtransaction *transaction_stmt,
6419 unsigned int subcode)
6421 transaction_stmt->subcode = subcode;
6424 /* Return a pointer to the return value for GIMPLE_RETURN GS. */
6426 static inline tree *
6427 gimple_return_retval_ptr (greturn *gs)
6429 return &gs->op[0];
6432 /* Return the return value for GIMPLE_RETURN GS. */
6434 static inline tree
6435 gimple_return_retval (const greturn *gs)
6437 return gs->op[0];
6441 /* Set RETVAL to be the return value for GIMPLE_RETURN GS. */
6443 static inline void
6444 gimple_return_set_retval (greturn *gs, tree retval)
6446 gs->op[0] = retval;
6450 /* Returns true when the gimple statement STMT is any of the OMP types. */
6452 #define CASE_GIMPLE_OMP \
6453 case GIMPLE_OMP_PARALLEL: \
6454 case GIMPLE_OMP_TASK: \
6455 case GIMPLE_OMP_FOR: \
6456 case GIMPLE_OMP_SECTIONS: \
6457 case GIMPLE_OMP_SECTIONS_SWITCH: \
6458 case GIMPLE_OMP_SINGLE: \
6459 case GIMPLE_OMP_TARGET: \
6460 case GIMPLE_OMP_TEAMS: \
6461 case GIMPLE_OMP_SECTION: \
6462 case GIMPLE_OMP_MASTER: \
6463 case GIMPLE_OMP_TASKGROUP: \
6464 case GIMPLE_OMP_ORDERED: \
6465 case GIMPLE_OMP_CRITICAL: \
6466 case GIMPLE_OMP_SCAN: \
6467 case GIMPLE_OMP_RETURN: \
6468 case GIMPLE_OMP_ATOMIC_LOAD: \
6469 case GIMPLE_OMP_ATOMIC_STORE: \
6470 case GIMPLE_OMP_CONTINUE
6472 static inline bool
6473 is_gimple_omp (const gimple *stmt)
6475 switch (gimple_code (stmt))
6477 CASE_GIMPLE_OMP:
6478 return true;
6479 default:
6480 return false;
6484 /* Return true if the OMP gimple statement STMT is any of the OpenACC types
6485 specifically. */
6487 static inline bool
6488 is_gimple_omp_oacc (const gimple *stmt)
6490 gcc_assert (is_gimple_omp (stmt));
6491 switch (gimple_code (stmt))
6493 case GIMPLE_OMP_FOR:
6494 switch (gimple_omp_for_kind (stmt))
6496 case GF_OMP_FOR_KIND_OACC_LOOP:
6497 return true;
6498 default:
6499 return false;
6501 case GIMPLE_OMP_TARGET:
6502 switch (gimple_omp_target_kind (stmt))
6504 case GF_OMP_TARGET_KIND_OACC_PARALLEL:
6505 case GF_OMP_TARGET_KIND_OACC_KERNELS:
6506 case GF_OMP_TARGET_KIND_OACC_SERIAL:
6507 case GF_OMP_TARGET_KIND_OACC_DATA:
6508 case GF_OMP_TARGET_KIND_OACC_UPDATE:
6509 case GF_OMP_TARGET_KIND_OACC_ENTER_EXIT_DATA:
6510 case GF_OMP_TARGET_KIND_OACC_DECLARE:
6511 case GF_OMP_TARGET_KIND_OACC_HOST_DATA:
6512 return true;
6513 default:
6514 return false;
6516 default:
6517 return false;
6522 /* Return true if the OMP gimple statement STMT is offloaded. */
6524 static inline bool
6525 is_gimple_omp_offloaded (const gimple *stmt)
6527 gcc_assert (is_gimple_omp (stmt));
6528 switch (gimple_code (stmt))
6530 case GIMPLE_OMP_TARGET:
6531 switch (gimple_omp_target_kind (stmt))
6533 case GF_OMP_TARGET_KIND_REGION:
6534 case GF_OMP_TARGET_KIND_OACC_PARALLEL:
6535 case GF_OMP_TARGET_KIND_OACC_KERNELS:
6536 case GF_OMP_TARGET_KIND_OACC_SERIAL:
6537 return true;
6538 default:
6539 return false;
6541 default:
6542 return false;
6547 /* Returns TRUE if statement G is a GIMPLE_NOP. */
6549 static inline bool
6550 gimple_nop_p (const gimple *g)
6552 return gimple_code (g) == GIMPLE_NOP;
6556 /* Return true if GS is a GIMPLE_RESX. */
6558 static inline bool
6559 is_gimple_resx (const gimple *gs)
6561 return gimple_code (gs) == GIMPLE_RESX;
6564 /* Return the type of the main expression computed by STMT. Return
6565 void_type_node if the statement computes nothing. */
6567 static inline tree
6568 gimple_expr_type (const gimple *stmt)
6570 enum gimple_code code = gimple_code (stmt);
6571 /* In general we want to pass out a type that can be substituted
6572 for both the RHS and the LHS types if there is a possibly
6573 useless conversion involved. That means returning the
6574 original RHS type as far as we can reconstruct it. */
6575 if (code == GIMPLE_CALL)
6577 const gcall *call_stmt = as_a <const gcall *> (stmt);
6578 if (gimple_call_internal_p (call_stmt))
6579 switch (gimple_call_internal_fn (call_stmt))
6581 case IFN_MASK_STORE:
6582 case IFN_SCATTER_STORE:
6583 return TREE_TYPE (gimple_call_arg (call_stmt, 3));
6584 case IFN_MASK_SCATTER_STORE:
6585 return TREE_TYPE (gimple_call_arg (call_stmt, 4));
6586 default:
6587 break;
6589 return gimple_call_return_type (call_stmt);
6591 else if (code == GIMPLE_ASSIGN)
6593 if (gimple_assign_rhs_code (stmt) == POINTER_PLUS_EXPR)
6594 return TREE_TYPE (gimple_assign_rhs1 (stmt));
6595 else
6596 /* As fallback use the type of the LHS. */
6597 return TREE_TYPE (gimple_get_lhs (stmt));
6599 else if (code == GIMPLE_COND)
6600 return boolean_type_node;
6601 else
6602 return void_type_node;
6605 /* Enum and arrays used for allocation stats. Keep in sync with
6606 gimple.c:gimple_alloc_kind_names. */
6607 enum gimple_alloc_kind
6609 gimple_alloc_kind_assign, /* Assignments. */
6610 gimple_alloc_kind_phi, /* PHI nodes. */
6611 gimple_alloc_kind_cond, /* Conditionals. */
6612 gimple_alloc_kind_rest, /* Everything else. */
6613 gimple_alloc_kind_all
6616 extern uint64_t gimple_alloc_counts[];
6617 extern uint64_t gimple_alloc_sizes[];
6619 /* Return the allocation kind for a given stmt CODE. */
6620 static inline enum gimple_alloc_kind
6621 gimple_alloc_kind (enum gimple_code code)
6623 switch (code)
6625 case GIMPLE_ASSIGN:
6626 return gimple_alloc_kind_assign;
6627 case GIMPLE_PHI:
6628 return gimple_alloc_kind_phi;
6629 case GIMPLE_COND:
6630 return gimple_alloc_kind_cond;
6631 default:
6632 return gimple_alloc_kind_rest;
6636 /* Return true if a location should not be emitted for this statement
6637 by annotate_all_with_location. */
6639 static inline bool
6640 gimple_do_not_emit_location_p (gimple *g)
6642 return gimple_plf (g, GF_PLF_1);
6645 /* Mark statement G so a location will not be emitted by
6646 annotate_one_with_location. */
6648 static inline void
6649 gimple_set_do_not_emit_location (gimple *g)
6651 /* The PLF flags are initialized to 0 when a new tuple is created,
6652 so no need to initialize it anywhere. */
6653 gimple_set_plf (g, GF_PLF_1, true);
6656 #endif /* GCC_GIMPLE_H */