2015-12-05 Juoko Orava <jouko.orava@iki.fi>
[official-gcc.git] / gcc / gimple.h
blobdc61043fafca15297ad758018a1b24a5162c5977
1 /* Gimple IR definitions.
3 Copyright (C) 2007-2015 Free Software Foundation, Inc.
4 Contributed by Aldy Hernandez <aldyh@redhat.com>
6 This file is part of GCC.
8 GCC is free software; you can redistribute it and/or modify it under
9 the terms of the GNU General Public License as published by the Free
10 Software Foundation; either version 3, or (at your option) any later
11 version.
13 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
14 WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16 for more details.
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING3. If not see
20 <http://www.gnu.org/licenses/>. */
22 #ifndef GCC_GIMPLE_H
23 #define GCC_GIMPLE_H
25 #include "tree-ssa-alias.h"
26 #include "gimple-expr.h"
28 typedef gimple *gimple_seq_node;
30 enum gimple_code {
31 #define DEFGSCODE(SYM, STRING, STRUCT) SYM,
32 #include "gimple.def"
33 #undef DEFGSCODE
34 LAST_AND_UNUSED_GIMPLE_CODE
37 extern const char *const gimple_code_name[];
38 extern const unsigned char gimple_rhs_class_table[];
40 /* Strip the outermost pointer, from tr1/type_traits. */
41 template<typename T> struct remove_pointer { typedef T type; };
42 template<typename T> struct remove_pointer<T *> { typedef T type; };
44 /* Error out if a gimple tuple is addressed incorrectly. */
45 #if defined ENABLE_GIMPLE_CHECKING
46 #define gcc_gimple_checking_assert(EXPR) gcc_assert (EXPR)
47 extern void gimple_check_failed (const gimple *, const char *, int, \
48 const char *, enum gimple_code, \
49 enum tree_code) ATTRIBUTE_NORETURN;
51 #define GIMPLE_CHECK(GS, CODE) \
52 do { \
53 const gimple *__gs = (GS); \
54 if (gimple_code (__gs) != (CODE)) \
55 gimple_check_failed (__gs, __FILE__, __LINE__, __FUNCTION__, \
56 (CODE), ERROR_MARK); \
57 } while (0)
58 template <typename T>
59 static inline T
60 GIMPLE_CHECK2(const gimple *gs,
61 #if __GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 8)
62 const char *file = __builtin_FILE (),
63 int line = __builtin_LINE (),
64 const char *fun = __builtin_FUNCTION ())
65 #else
66 const char *file = __FILE__,
67 int line = __LINE__,
68 const char *fun = NULL)
69 #endif
71 T ret = dyn_cast <T> (gs);
72 if (!ret)
73 gimple_check_failed (gs, file, line, fun,
74 remove_pointer<T>::type::code_, ERROR_MARK);
75 return ret;
77 template <typename T>
78 static inline T
79 GIMPLE_CHECK2(gimple *gs,
80 #if __GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 8)
81 const char *file = __builtin_FILE (),
82 int line = __builtin_LINE (),
83 const char *fun = __builtin_FUNCTION ())
84 #else
85 const char *file = __FILE__,
86 int line = __LINE__,
87 const char *fun = NULL)
88 #endif
90 T ret = dyn_cast <T> (gs);
91 if (!ret)
92 gimple_check_failed (gs, file, line, fun,
93 remove_pointer<T>::type::code_, ERROR_MARK);
94 return ret;
96 #else /* not ENABLE_GIMPLE_CHECKING */
97 #define gcc_gimple_checking_assert(EXPR) ((void)(0 && (EXPR)))
98 #define GIMPLE_CHECK(GS, CODE) (void)0
99 template <typename T>
100 static inline T
101 GIMPLE_CHECK2(gimple *gs)
103 return as_a <T> (gs);
105 template <typename T>
106 static inline T
107 GIMPLE_CHECK2(const gimple *gs)
109 return as_a <T> (gs);
111 #endif
113 /* Class of GIMPLE expressions suitable for the RHS of assignments. See
114 get_gimple_rhs_class. */
115 enum gimple_rhs_class
117 GIMPLE_INVALID_RHS, /* The expression cannot be used on the RHS. */
118 GIMPLE_TERNARY_RHS, /* The expression is a ternary operation. */
119 GIMPLE_BINARY_RHS, /* The expression is a binary operation. */
120 GIMPLE_UNARY_RHS, /* The expression is a unary operation. */
121 GIMPLE_SINGLE_RHS /* The expression is a single object (an SSA
122 name, a _DECL, a _REF, etc. */
125 /* Specific flags for individual GIMPLE statements. These flags are
126 always stored in gimple.subcode and they may only be
127 defined for statement codes that do not use subcodes.
129 Values for the masks can overlap as long as the overlapping values
130 are never used in the same statement class.
132 The maximum mask value that can be defined is 1 << 15 (i.e., each
133 statement code can hold up to 16 bitflags).
135 Keep this list sorted. */
136 enum gf_mask {
137 GF_ASM_INPUT = 1 << 0,
138 GF_ASM_VOLATILE = 1 << 1,
139 GF_CALL_FROM_THUNK = 1 << 0,
140 GF_CALL_RETURN_SLOT_OPT = 1 << 1,
141 GF_CALL_TAILCALL = 1 << 2,
142 GF_CALL_VA_ARG_PACK = 1 << 3,
143 GF_CALL_NOTHROW = 1 << 4,
144 GF_CALL_ALLOCA_FOR_VAR = 1 << 5,
145 GF_CALL_INTERNAL = 1 << 6,
146 GF_CALL_CTRL_ALTERING = 1 << 7,
147 GF_CALL_WITH_BOUNDS = 1 << 8,
148 GF_OMP_PARALLEL_COMBINED = 1 << 0,
149 GF_OMP_TASK_TASKLOOP = 1 << 0,
150 GF_OMP_FOR_KIND_MASK = (1 << 4) - 1,
151 GF_OMP_FOR_KIND_FOR = 0,
152 GF_OMP_FOR_KIND_DISTRIBUTE = 1,
153 GF_OMP_FOR_KIND_TASKLOOP = 2,
154 GF_OMP_FOR_KIND_CILKFOR = 3,
155 GF_OMP_FOR_KIND_OACC_LOOP = 4,
156 /* Flag for SIMD variants of OMP_FOR kinds. */
157 GF_OMP_FOR_SIMD = 1 << 3,
158 GF_OMP_FOR_KIND_SIMD = GF_OMP_FOR_SIMD | 0,
159 GF_OMP_FOR_KIND_CILKSIMD = GF_OMP_FOR_SIMD | 1,
160 GF_OMP_FOR_COMBINED = 1 << 4,
161 GF_OMP_FOR_COMBINED_INTO = 1 << 5,
162 GF_OMP_TARGET_KIND_MASK = (1 << 4) - 1,
163 GF_OMP_TARGET_KIND_REGION = 0,
164 GF_OMP_TARGET_KIND_DATA = 1,
165 GF_OMP_TARGET_KIND_UPDATE = 2,
166 GF_OMP_TARGET_KIND_ENTER_DATA = 3,
167 GF_OMP_TARGET_KIND_EXIT_DATA = 4,
168 GF_OMP_TARGET_KIND_OACC_PARALLEL = 5,
169 GF_OMP_TARGET_KIND_OACC_KERNELS = 6,
170 GF_OMP_TARGET_KIND_OACC_DATA = 7,
171 GF_OMP_TARGET_KIND_OACC_UPDATE = 8,
172 GF_OMP_TARGET_KIND_OACC_ENTER_EXIT_DATA = 9,
173 GF_OMP_TARGET_KIND_OACC_DECLARE = 10,
174 GF_OMP_TARGET_KIND_OACC_HOST_DATA = 11,
176 /* True on an GIMPLE_OMP_RETURN statement if the return does not require
177 a thread synchronization via some sort of barrier. The exact barrier
178 that would otherwise be emitted is dependent on the OMP statement with
179 which this return is associated. */
180 GF_OMP_RETURN_NOWAIT = 1 << 0,
182 GF_OMP_SECTION_LAST = 1 << 0,
183 GF_OMP_ATOMIC_NEED_VALUE = 1 << 0,
184 GF_OMP_ATOMIC_SEQ_CST = 1 << 1,
185 GF_PREDICT_TAKEN = 1 << 15
188 /* Currently, there are only two types of gimple debug stmt. Others are
189 envisioned, for example, to enable the generation of is_stmt notes
190 in line number information, to mark sequence points, etc. This
191 subcode is to be used to tell them apart. */
192 enum gimple_debug_subcode {
193 GIMPLE_DEBUG_BIND = 0,
194 GIMPLE_DEBUG_SOURCE_BIND = 1
197 /* Masks for selecting a pass local flag (PLF) to work on. These
198 masks are used by gimple_set_plf and gimple_plf. */
199 enum plf_mask {
200 GF_PLF_1 = 1 << 0,
201 GF_PLF_2 = 1 << 1
204 /* Data structure definitions for GIMPLE tuples. NOTE: word markers
205 are for 64 bit hosts. */
207 struct GTY((desc ("gimple_statement_structure (&%h)"), tag ("GSS_BASE"),
208 chain_next ("%h.next"), variable_size))
209 gimple
211 /* [ WORD 1 ]
212 Main identifying code for a tuple. */
213 ENUM_BITFIELD(gimple_code) code : 8;
215 /* Nonzero if a warning should not be emitted on this tuple. */
216 unsigned int no_warning : 1;
218 /* Nonzero if this tuple has been visited. Passes are responsible
219 for clearing this bit before using it. */
220 unsigned int visited : 1;
222 /* Nonzero if this tuple represents a non-temporal move. */
223 unsigned int nontemporal_move : 1;
225 /* Pass local flags. These flags are free for any pass to use as
226 they see fit. Passes should not assume that these flags contain
227 any useful value when the pass starts. Any initial state that
228 the pass requires should be set on entry to the pass. See
229 gimple_set_plf and gimple_plf for usage. */
230 unsigned int plf : 2;
232 /* Nonzero if this statement has been modified and needs to have its
233 operands rescanned. */
234 unsigned modified : 1;
236 /* Nonzero if this statement contains volatile operands. */
237 unsigned has_volatile_ops : 1;
239 /* Padding to get subcode to 16 bit alignment. */
240 unsigned pad : 1;
242 /* The SUBCODE field can be used for tuple-specific flags for tuples
243 that do not require subcodes. Note that SUBCODE should be at
244 least as wide as tree codes, as several tuples store tree codes
245 in there. */
246 unsigned int subcode : 16;
248 /* UID of this statement. This is used by passes that want to
249 assign IDs to statements. It must be assigned and used by each
250 pass. By default it should be assumed to contain garbage. */
251 unsigned uid;
253 /* [ WORD 2 ]
254 Locus information for debug info. */
255 location_t location;
257 /* Number of operands in this tuple. */
258 unsigned num_ops;
260 /* [ WORD 3 ]
261 Basic block holding this statement. */
262 basic_block bb;
264 /* [ WORD 4-5 ]
265 Linked lists of gimple statements. The next pointers form
266 a NULL terminated list, the prev pointers are a cyclic list.
267 A gimple statement is hence also a double-ended list of
268 statements, with the pointer itself being the first element,
269 and the prev pointer being the last. */
270 gimple *next;
271 gimple *GTY((skip)) prev;
275 /* Base structure for tuples with operands. */
277 /* This gimple subclass has no tag value. */
278 struct GTY(())
279 gimple_statement_with_ops_base : public gimple
281 /* [ WORD 1-6 ] : base class */
283 /* [ WORD 7 ]
284 SSA operand vectors. NOTE: It should be possible to
285 amalgamate these vectors with the operand vector OP. However,
286 the SSA operand vectors are organized differently and contain
287 more information (like immediate use chaining). */
288 struct use_optype_d GTY((skip (""))) *use_ops;
292 /* Statements that take register operands. */
294 struct GTY((tag("GSS_WITH_OPS")))
295 gimple_statement_with_ops : public gimple_statement_with_ops_base
297 /* [ WORD 1-7 ] : base class */
299 /* [ WORD 8 ]
300 Operand vector. NOTE! This must always be the last field
301 of this structure. In particular, this means that this
302 structure cannot be embedded inside another one. */
303 tree GTY((length ("%h.num_ops"))) op[1];
307 /* Base for statements that take both memory and register operands. */
309 struct GTY((tag("GSS_WITH_MEM_OPS_BASE")))
310 gimple_statement_with_memory_ops_base : public gimple_statement_with_ops_base
312 /* [ WORD 1-7 ] : base class */
314 /* [ WORD 8-9 ]
315 Virtual operands for this statement. The GC will pick them
316 up via the ssa_names array. */
317 tree GTY((skip (""))) vdef;
318 tree GTY((skip (""))) vuse;
322 /* Statements that take both memory and register operands. */
324 struct GTY((tag("GSS_WITH_MEM_OPS")))
325 gimple_statement_with_memory_ops :
326 public gimple_statement_with_memory_ops_base
328 /* [ WORD 1-9 ] : base class */
330 /* [ WORD 10 ]
331 Operand vector. NOTE! This must always be the last field
332 of this structure. In particular, this means that this
333 structure cannot be embedded inside another one. */
334 tree GTY((length ("%h.num_ops"))) op[1];
338 /* Call statements that take both memory and register operands. */
340 struct GTY((tag("GSS_CALL")))
341 gcall : public gimple_statement_with_memory_ops_base
343 /* [ WORD 1-9 ] : base class */
345 /* [ WORD 10-13 ] */
346 struct pt_solution call_used;
347 struct pt_solution call_clobbered;
349 /* [ WORD 14 ] */
350 union GTY ((desc ("%1.subcode & GF_CALL_INTERNAL"))) {
351 tree GTY ((tag ("0"))) fntype;
352 enum internal_fn GTY ((tag ("GF_CALL_INTERNAL"))) internal_fn;
353 } u;
355 /* [ WORD 15 ]
356 Operand vector. NOTE! This must always be the last field
357 of this structure. In particular, this means that this
358 structure cannot be embedded inside another one. */
359 tree GTY((length ("%h.num_ops"))) op[1];
361 static const enum gimple_code code_ = GIMPLE_CALL;
365 /* OMP statements. */
367 struct GTY((tag("GSS_OMP")))
368 gimple_statement_omp : public gimple
370 /* [ WORD 1-6 ] : base class */
372 /* [ WORD 7 ] */
373 gimple_seq body;
377 /* GIMPLE_BIND */
379 struct GTY((tag("GSS_BIND")))
380 gbind : public gimple
382 /* [ WORD 1-6 ] : base class */
384 /* [ WORD 7 ]
385 Variables declared in this scope. */
386 tree vars;
388 /* [ WORD 8 ]
389 This is different than the BLOCK field in gimple,
390 which is analogous to TREE_BLOCK (i.e., the lexical block holding
391 this statement). This field is the equivalent of BIND_EXPR_BLOCK
392 in tree land (i.e., the lexical scope defined by this bind). See
393 gimple-low.c. */
394 tree block;
396 /* [ WORD 9 ] */
397 gimple_seq body;
401 /* GIMPLE_CATCH */
403 struct GTY((tag("GSS_CATCH")))
404 gcatch : public gimple
406 /* [ WORD 1-6 ] : base class */
408 /* [ WORD 7 ] */
409 tree types;
411 /* [ WORD 8 ] */
412 gimple_seq handler;
416 /* GIMPLE_EH_FILTER */
418 struct GTY((tag("GSS_EH_FILTER")))
419 geh_filter : public gimple
421 /* [ WORD 1-6 ] : base class */
423 /* [ WORD 7 ]
424 Filter types. */
425 tree types;
427 /* [ WORD 8 ]
428 Failure actions. */
429 gimple_seq failure;
432 /* GIMPLE_EH_ELSE */
434 struct GTY((tag("GSS_EH_ELSE")))
435 geh_else : public gimple
437 /* [ WORD 1-6 ] : base class */
439 /* [ WORD 7,8 ] */
440 gimple_seq n_body, e_body;
443 /* GIMPLE_EH_MUST_NOT_THROW */
445 struct GTY((tag("GSS_EH_MNT")))
446 geh_mnt : public gimple
448 /* [ WORD 1-6 ] : base class */
450 /* [ WORD 7 ] Abort function decl. */
451 tree fndecl;
454 /* GIMPLE_PHI */
456 struct GTY((tag("GSS_PHI")))
457 gphi : public gimple
459 /* [ WORD 1-6 ] : base class */
461 /* [ WORD 7 ] */
462 unsigned capacity;
463 unsigned nargs;
465 /* [ WORD 8 ] */
466 tree result;
468 /* [ WORD 9 ] */
469 struct phi_arg_d GTY ((length ("%h.nargs"))) args[1];
473 /* GIMPLE_RESX, GIMPLE_EH_DISPATCH */
475 struct GTY((tag("GSS_EH_CTRL")))
476 gimple_statement_eh_ctrl : public gimple
478 /* [ WORD 1-6 ] : base class */
480 /* [ WORD 7 ]
481 Exception region number. */
482 int region;
485 struct GTY((tag("GSS_EH_CTRL")))
486 gresx : public gimple_statement_eh_ctrl
488 /* No extra fields; adds invariant:
489 stmt->code == GIMPLE_RESX. */
492 struct GTY((tag("GSS_EH_CTRL")))
493 geh_dispatch : public gimple_statement_eh_ctrl
495 /* No extra fields; adds invariant:
496 stmt->code == GIMPLE_EH_DISPATH. */
500 /* GIMPLE_TRY */
502 struct GTY((tag("GSS_TRY")))
503 gtry : public gimple
505 /* [ WORD 1-6 ] : base class */
507 /* [ WORD 7 ]
508 Expression to evaluate. */
509 gimple_seq eval;
511 /* [ WORD 8 ]
512 Cleanup expression. */
513 gimple_seq cleanup;
516 /* Kind of GIMPLE_TRY statements. */
517 enum gimple_try_flags
519 /* A try/catch. */
520 GIMPLE_TRY_CATCH = 1 << 0,
522 /* A try/finally. */
523 GIMPLE_TRY_FINALLY = 1 << 1,
524 GIMPLE_TRY_KIND = GIMPLE_TRY_CATCH | GIMPLE_TRY_FINALLY,
526 /* Analogous to TRY_CATCH_IS_CLEANUP. */
527 GIMPLE_TRY_CATCH_IS_CLEANUP = 1 << 2
530 /* GIMPLE_WITH_CLEANUP_EXPR */
532 struct GTY((tag("GSS_WCE")))
533 gimple_statement_wce : public gimple
535 /* [ WORD 1-6 ] : base class */
537 /* Subcode: CLEANUP_EH_ONLY. True if the cleanup should only be
538 executed if an exception is thrown, not on normal exit of its
539 scope. This flag is analogous to the CLEANUP_EH_ONLY flag
540 in TARGET_EXPRs. */
542 /* [ WORD 7 ]
543 Cleanup expression. */
544 gimple_seq cleanup;
548 /* GIMPLE_ASM */
550 struct GTY((tag("GSS_ASM")))
551 gasm : public gimple_statement_with_memory_ops_base
553 /* [ WORD 1-9 ] : base class */
555 /* [ WORD 10 ]
556 __asm__ statement. */
557 const char *string;
559 /* [ WORD 11 ]
560 Number of inputs, outputs, clobbers, labels. */
561 unsigned char ni;
562 unsigned char no;
563 unsigned char nc;
564 unsigned char nl;
566 /* [ WORD 12 ]
567 Operand vector. NOTE! This must always be the last field
568 of this structure. In particular, this means that this
569 structure cannot be embedded inside another one. */
570 tree GTY((length ("%h.num_ops"))) op[1];
573 /* GIMPLE_OMP_CRITICAL */
575 struct GTY((tag("GSS_OMP_CRITICAL")))
576 gomp_critical : public gimple_statement_omp
578 /* [ WORD 1-7 ] : base class */
580 /* [ WORD 8 ] */
581 tree clauses;
583 /* [ WORD 9 ]
584 Critical section name. */
585 tree name;
589 struct GTY(()) gimple_omp_for_iter {
590 /* Condition code. */
591 enum tree_code cond;
593 /* Index variable. */
594 tree index;
596 /* Initial value. */
597 tree initial;
599 /* Final value. */
600 tree final;
602 /* Increment. */
603 tree incr;
606 /* GIMPLE_OMP_FOR */
608 struct GTY((tag("GSS_OMP_FOR")))
609 gomp_for : public gimple_statement_omp
611 /* [ WORD 1-7 ] : base class */
613 /* [ WORD 8 ] */
614 tree clauses;
616 /* [ WORD 9 ]
617 Number of elements in iter array. */
618 size_t collapse;
620 /* [ WORD 10 ] */
621 struct gimple_omp_for_iter * GTY((length ("%h.collapse"))) iter;
623 /* [ WORD 11 ]
624 Pre-body evaluated before the loop body begins. */
625 gimple_seq pre_body;
629 /* GIMPLE_OMP_PARALLEL, GIMPLE_OMP_TARGET, GIMPLE_OMP_TASK */
631 struct GTY((tag("GSS_OMP_PARALLEL_LAYOUT")))
632 gimple_statement_omp_parallel_layout : public gimple_statement_omp
634 /* [ WORD 1-7 ] : base class */
636 /* [ WORD 8 ]
637 Clauses. */
638 tree clauses;
640 /* [ WORD 9 ]
641 Child function holding the body of the parallel region. */
642 tree child_fn;
644 /* [ WORD 10 ]
645 Shared data argument. */
646 tree data_arg;
649 /* GIMPLE_OMP_PARALLEL or GIMPLE_TASK */
650 struct GTY((tag("GSS_OMP_PARALLEL_LAYOUT")))
651 gimple_statement_omp_taskreg : public gimple_statement_omp_parallel_layout
653 /* No extra fields; adds invariant:
654 stmt->code == GIMPLE_OMP_PARALLEL
655 || stmt->code == GIMPLE_OMP_TASK. */
658 /* GIMPLE_OMP_PARALLEL */
659 struct GTY((tag("GSS_OMP_PARALLEL_LAYOUT")))
660 gomp_parallel : public gimple_statement_omp_taskreg
662 /* No extra fields; adds invariant:
663 stmt->code == GIMPLE_OMP_PARALLEL. */
666 /* GIMPLE_OMP_TARGET */
667 struct GTY((tag("GSS_OMP_PARALLEL_LAYOUT")))
668 gomp_target : public gimple_statement_omp_parallel_layout
670 /* No extra fields; adds invariant:
671 stmt->code == GIMPLE_OMP_TARGET. */
674 /* GIMPLE_OMP_TASK */
676 struct GTY((tag("GSS_OMP_TASK")))
677 gomp_task : public gimple_statement_omp_taskreg
679 /* [ WORD 1-10 ] : base class */
681 /* [ WORD 11 ]
682 Child function holding firstprivate initialization if needed. */
683 tree copy_fn;
685 /* [ WORD 12-13 ]
686 Size and alignment in bytes of the argument data block. */
687 tree arg_size;
688 tree arg_align;
692 /* GIMPLE_OMP_SECTION */
693 /* Uses struct gimple_statement_omp. */
696 /* GIMPLE_OMP_SECTIONS */
698 struct GTY((tag("GSS_OMP_SECTIONS")))
699 gomp_sections : public gimple_statement_omp
701 /* [ WORD 1-7 ] : base class */
703 /* [ WORD 8 ] */
704 tree clauses;
706 /* [ WORD 9 ]
707 The control variable used for deciding which of the sections to
708 execute. */
709 tree control;
712 /* GIMPLE_OMP_CONTINUE.
714 Note: This does not inherit from gimple_statement_omp, because we
715 do not need the body field. */
717 struct GTY((tag("GSS_OMP_CONTINUE")))
718 gomp_continue : public gimple
720 /* [ WORD 1-6 ] : base class */
722 /* [ WORD 7 ] */
723 tree control_def;
725 /* [ WORD 8 ] */
726 tree control_use;
729 /* GIMPLE_OMP_SINGLE, GIMPLE_OMP_TEAMS, GIMPLE_OMP_ORDERED */
731 struct GTY((tag("GSS_OMP_SINGLE_LAYOUT")))
732 gimple_statement_omp_single_layout : public gimple_statement_omp
734 /* [ WORD 1-7 ] : base class */
736 /* [ WORD 7 ] */
737 tree clauses;
740 struct GTY((tag("GSS_OMP_SINGLE_LAYOUT")))
741 gomp_single : public gimple_statement_omp_single_layout
743 /* No extra fields; adds invariant:
744 stmt->code == GIMPLE_OMP_SINGLE. */
747 struct GTY((tag("GSS_OMP_SINGLE_LAYOUT")))
748 gomp_teams : public gimple_statement_omp_single_layout
750 /* No extra fields; adds invariant:
751 stmt->code == GIMPLE_OMP_TEAMS. */
754 struct GTY((tag("GSS_OMP_SINGLE_LAYOUT")))
755 gomp_ordered : public gimple_statement_omp_single_layout
757 /* No extra fields; adds invariant:
758 stmt->code == GIMPLE_OMP_ORDERED. */
762 /* GIMPLE_OMP_ATOMIC_LOAD.
763 Note: This is based on gimple, not g_s_omp, because g_s_omp
764 contains a sequence, which we don't need here. */
766 struct GTY((tag("GSS_OMP_ATOMIC_LOAD")))
767 gomp_atomic_load : public gimple
769 /* [ WORD 1-6 ] : base class */
771 /* [ WORD 7-8 ] */
772 tree rhs, lhs;
775 /* GIMPLE_OMP_ATOMIC_STORE.
776 See note on GIMPLE_OMP_ATOMIC_LOAD. */
778 struct GTY((tag("GSS_OMP_ATOMIC_STORE_LAYOUT")))
779 gimple_statement_omp_atomic_store_layout : public gimple
781 /* [ WORD 1-6 ] : base class */
783 /* [ WORD 7 ] */
784 tree val;
787 struct GTY((tag("GSS_OMP_ATOMIC_STORE_LAYOUT")))
788 gomp_atomic_store :
789 public gimple_statement_omp_atomic_store_layout
791 /* No extra fields; adds invariant:
792 stmt->code == GIMPLE_OMP_ATOMIC_STORE. */
795 struct GTY((tag("GSS_OMP_ATOMIC_STORE_LAYOUT")))
796 gimple_statement_omp_return :
797 public gimple_statement_omp_atomic_store_layout
799 /* No extra fields; adds invariant:
800 stmt->code == GIMPLE_OMP_RETURN. */
803 /* GIMPLE_TRANSACTION. */
805 /* Bits to be stored in the GIMPLE_TRANSACTION subcode. */
807 /* The __transaction_atomic was declared [[outer]] or it is
808 __transaction_relaxed. */
809 #define GTMA_IS_OUTER (1u << 0)
810 #define GTMA_IS_RELAXED (1u << 1)
811 #define GTMA_DECLARATION_MASK (GTMA_IS_OUTER | GTMA_IS_RELAXED)
813 /* The transaction is seen to not have an abort. */
814 #define GTMA_HAVE_ABORT (1u << 2)
815 /* The transaction is seen to have loads or stores. */
816 #define GTMA_HAVE_LOAD (1u << 3)
817 #define GTMA_HAVE_STORE (1u << 4)
818 /* The transaction MAY enter serial irrevocable mode in its dynamic scope. */
819 #define GTMA_MAY_ENTER_IRREVOCABLE (1u << 5)
820 /* The transaction WILL enter serial irrevocable mode.
821 An irrevocable block post-dominates the entire transaction, such
822 that all invocations of the transaction will go serial-irrevocable.
823 In such case, we don't bother instrumenting the transaction, and
824 tell the runtime that it should begin the transaction in
825 serial-irrevocable mode. */
826 #define GTMA_DOES_GO_IRREVOCABLE (1u << 6)
827 /* The transaction contains no instrumentation code whatsover, most
828 likely because it is guaranteed to go irrevocable upon entry. */
829 #define GTMA_HAS_NO_INSTRUMENTATION (1u << 7)
831 struct GTY((tag("GSS_TRANSACTION")))
832 gtransaction : public gimple_statement_with_memory_ops_base
834 /* [ WORD 1-9 ] : base class */
836 /* [ WORD 10 ] */
837 gimple_seq body;
839 /* [ WORD 11 ] */
840 tree label;
843 #define DEFGSSTRUCT(SYM, STRUCT, HAS_TREE_OP) SYM,
844 enum gimple_statement_structure_enum {
845 #include "gsstruct.def"
846 LAST_GSS_ENUM
848 #undef DEFGSSTRUCT
850 /* A statement with the invariant that
851 stmt->code == GIMPLE_COND
852 i.e. a conditional jump statement. */
854 struct GTY((tag("GSS_WITH_OPS")))
855 gcond : public gimple_statement_with_ops
857 /* no additional fields; this uses the layout for GSS_WITH_OPS. */
858 static const enum gimple_code code_ = GIMPLE_COND;
861 /* A statement with the invariant that
862 stmt->code == GIMPLE_DEBUG
863 i.e. a debug statement. */
865 struct GTY((tag("GSS_WITH_OPS")))
866 gdebug : public gimple_statement_with_ops
868 /* no additional fields; this uses the layout for GSS_WITH_OPS. */
871 /* A statement with the invariant that
872 stmt->code == GIMPLE_GOTO
873 i.e. a goto statement. */
875 struct GTY((tag("GSS_WITH_OPS")))
876 ggoto : public gimple_statement_with_ops
878 /* no additional fields; this uses the layout for GSS_WITH_OPS. */
881 /* A statement with the invariant that
882 stmt->code == GIMPLE_LABEL
883 i.e. a label statement. */
885 struct GTY((tag("GSS_WITH_OPS")))
886 glabel : public gimple_statement_with_ops
888 /* no additional fields; this uses the layout for GSS_WITH_OPS. */
891 /* A statement with the invariant that
892 stmt->code == GIMPLE_SWITCH
893 i.e. a switch statement. */
895 struct GTY((tag("GSS_WITH_OPS")))
896 gswitch : public gimple_statement_with_ops
898 /* no additional fields; this uses the layout for GSS_WITH_OPS. */
901 /* A statement with the invariant that
902 stmt->code == GIMPLE_ASSIGN
903 i.e. an assignment statement. */
905 struct GTY((tag("GSS_WITH_MEM_OPS")))
906 gassign : public gimple_statement_with_memory_ops
908 static const enum gimple_code code_ = GIMPLE_ASSIGN;
909 /* no additional fields; this uses the layout for GSS_WITH_MEM_OPS. */
912 /* A statement with the invariant that
913 stmt->code == GIMPLE_RETURN
914 i.e. a return statement. */
916 struct GTY((tag("GSS_WITH_MEM_OPS")))
917 greturn : public gimple_statement_with_memory_ops
919 /* no additional fields; this uses the layout for GSS_WITH_MEM_OPS. */
922 template <>
923 template <>
924 inline bool
925 is_a_helper <gasm *>::test (gimple *gs)
927 return gs->code == GIMPLE_ASM;
930 template <>
931 template <>
932 inline bool
933 is_a_helper <gassign *>::test (gimple *gs)
935 return gs->code == GIMPLE_ASSIGN;
938 template <>
939 template <>
940 inline bool
941 is_a_helper <const gassign *>::test (const gimple *gs)
943 return gs->code == GIMPLE_ASSIGN;
946 template <>
947 template <>
948 inline bool
949 is_a_helper <gbind *>::test (gimple *gs)
951 return gs->code == GIMPLE_BIND;
954 template <>
955 template <>
956 inline bool
957 is_a_helper <gcall *>::test (gimple *gs)
959 return gs->code == GIMPLE_CALL;
962 template <>
963 template <>
964 inline bool
965 is_a_helper <gcatch *>::test (gimple *gs)
967 return gs->code == GIMPLE_CATCH;
970 template <>
971 template <>
972 inline bool
973 is_a_helper <gcond *>::test (gimple *gs)
975 return gs->code == GIMPLE_COND;
978 template <>
979 template <>
980 inline bool
981 is_a_helper <const gcond *>::test (const gimple *gs)
983 return gs->code == GIMPLE_COND;
986 template <>
987 template <>
988 inline bool
989 is_a_helper <gdebug *>::test (gimple *gs)
991 return gs->code == GIMPLE_DEBUG;
994 template <>
995 template <>
996 inline bool
997 is_a_helper <ggoto *>::test (gimple *gs)
999 return gs->code == GIMPLE_GOTO;
1002 template <>
1003 template <>
1004 inline bool
1005 is_a_helper <glabel *>::test (gimple *gs)
1007 return gs->code == GIMPLE_LABEL;
1010 template <>
1011 template <>
1012 inline bool
1013 is_a_helper <gresx *>::test (gimple *gs)
1015 return gs->code == GIMPLE_RESX;
1018 template <>
1019 template <>
1020 inline bool
1021 is_a_helper <geh_dispatch *>::test (gimple *gs)
1023 return gs->code == GIMPLE_EH_DISPATCH;
1026 template <>
1027 template <>
1028 inline bool
1029 is_a_helper <geh_else *>::test (gimple *gs)
1031 return gs->code == GIMPLE_EH_ELSE;
1034 template <>
1035 template <>
1036 inline bool
1037 is_a_helper <geh_filter *>::test (gimple *gs)
1039 return gs->code == GIMPLE_EH_FILTER;
1042 template <>
1043 template <>
1044 inline bool
1045 is_a_helper <geh_mnt *>::test (gimple *gs)
1047 return gs->code == GIMPLE_EH_MUST_NOT_THROW;
1050 template <>
1051 template <>
1052 inline bool
1053 is_a_helper <gomp_atomic_load *>::test (gimple *gs)
1055 return gs->code == GIMPLE_OMP_ATOMIC_LOAD;
1058 template <>
1059 template <>
1060 inline bool
1061 is_a_helper <gomp_atomic_store *>::test (gimple *gs)
1063 return gs->code == GIMPLE_OMP_ATOMIC_STORE;
1066 template <>
1067 template <>
1068 inline bool
1069 is_a_helper <gimple_statement_omp_return *>::test (gimple *gs)
1071 return gs->code == GIMPLE_OMP_RETURN;
1074 template <>
1075 template <>
1076 inline bool
1077 is_a_helper <gomp_continue *>::test (gimple *gs)
1079 return gs->code == GIMPLE_OMP_CONTINUE;
1082 template <>
1083 template <>
1084 inline bool
1085 is_a_helper <gomp_critical *>::test (gimple *gs)
1087 return gs->code == GIMPLE_OMP_CRITICAL;
1090 template <>
1091 template <>
1092 inline bool
1093 is_a_helper <gomp_ordered *>::test (gimple *gs)
1095 return gs->code == GIMPLE_OMP_ORDERED;
1098 template <>
1099 template <>
1100 inline bool
1101 is_a_helper <gomp_for *>::test (gimple *gs)
1103 return gs->code == GIMPLE_OMP_FOR;
1106 template <>
1107 template <>
1108 inline bool
1109 is_a_helper <gimple_statement_omp_taskreg *>::test (gimple *gs)
1111 return gs->code == GIMPLE_OMP_PARALLEL || gs->code == GIMPLE_OMP_TASK;
1114 template <>
1115 template <>
1116 inline bool
1117 is_a_helper <gomp_parallel *>::test (gimple *gs)
1119 return gs->code == GIMPLE_OMP_PARALLEL;
1122 template <>
1123 template <>
1124 inline bool
1125 is_a_helper <gomp_target *>::test (gimple *gs)
1127 return gs->code == GIMPLE_OMP_TARGET;
1130 template <>
1131 template <>
1132 inline bool
1133 is_a_helper <gomp_sections *>::test (gimple *gs)
1135 return gs->code == GIMPLE_OMP_SECTIONS;
1138 template <>
1139 template <>
1140 inline bool
1141 is_a_helper <gomp_single *>::test (gimple *gs)
1143 return gs->code == GIMPLE_OMP_SINGLE;
1146 template <>
1147 template <>
1148 inline bool
1149 is_a_helper <gomp_teams *>::test (gimple *gs)
1151 return gs->code == GIMPLE_OMP_TEAMS;
1154 template <>
1155 template <>
1156 inline bool
1157 is_a_helper <gomp_task *>::test (gimple *gs)
1159 return gs->code == GIMPLE_OMP_TASK;
1162 template <>
1163 template <>
1164 inline bool
1165 is_a_helper <gphi *>::test (gimple *gs)
1167 return gs->code == GIMPLE_PHI;
1170 template <>
1171 template <>
1172 inline bool
1173 is_a_helper <greturn *>::test (gimple *gs)
1175 return gs->code == GIMPLE_RETURN;
1178 template <>
1179 template <>
1180 inline bool
1181 is_a_helper <gswitch *>::test (gimple *gs)
1183 return gs->code == GIMPLE_SWITCH;
1186 template <>
1187 template <>
1188 inline bool
1189 is_a_helper <gtransaction *>::test (gimple *gs)
1191 return gs->code == GIMPLE_TRANSACTION;
1194 template <>
1195 template <>
1196 inline bool
1197 is_a_helper <gtry *>::test (gimple *gs)
1199 return gs->code == GIMPLE_TRY;
1202 template <>
1203 template <>
1204 inline bool
1205 is_a_helper <gimple_statement_wce *>::test (gimple *gs)
1207 return gs->code == GIMPLE_WITH_CLEANUP_EXPR;
1210 template <>
1211 template <>
1212 inline bool
1213 is_a_helper <const gasm *>::test (const gimple *gs)
1215 return gs->code == GIMPLE_ASM;
1218 template <>
1219 template <>
1220 inline bool
1221 is_a_helper <const gbind *>::test (const gimple *gs)
1223 return gs->code == GIMPLE_BIND;
1226 template <>
1227 template <>
1228 inline bool
1229 is_a_helper <const gcall *>::test (const gimple *gs)
1231 return gs->code == GIMPLE_CALL;
1234 template <>
1235 template <>
1236 inline bool
1237 is_a_helper <const gcatch *>::test (const gimple *gs)
1239 return gs->code == GIMPLE_CATCH;
1242 template <>
1243 template <>
1244 inline bool
1245 is_a_helper <const gresx *>::test (const gimple *gs)
1247 return gs->code == GIMPLE_RESX;
1250 template <>
1251 template <>
1252 inline bool
1253 is_a_helper <const geh_dispatch *>::test (const gimple *gs)
1255 return gs->code == GIMPLE_EH_DISPATCH;
1258 template <>
1259 template <>
1260 inline bool
1261 is_a_helper <const geh_filter *>::test (const gimple *gs)
1263 return gs->code == GIMPLE_EH_FILTER;
1266 template <>
1267 template <>
1268 inline bool
1269 is_a_helper <const gomp_atomic_load *>::test (const gimple *gs)
1271 return gs->code == GIMPLE_OMP_ATOMIC_LOAD;
1274 template <>
1275 template <>
1276 inline bool
1277 is_a_helper <const gomp_atomic_store *>::test (const gimple *gs)
1279 return gs->code == GIMPLE_OMP_ATOMIC_STORE;
1282 template <>
1283 template <>
1284 inline bool
1285 is_a_helper <const gimple_statement_omp_return *>::test (const gimple *gs)
1287 return gs->code == GIMPLE_OMP_RETURN;
1290 template <>
1291 template <>
1292 inline bool
1293 is_a_helper <const gomp_continue *>::test (const gimple *gs)
1295 return gs->code == GIMPLE_OMP_CONTINUE;
1298 template <>
1299 template <>
1300 inline bool
1301 is_a_helper <const gomp_critical *>::test (const gimple *gs)
1303 return gs->code == GIMPLE_OMP_CRITICAL;
1306 template <>
1307 template <>
1308 inline bool
1309 is_a_helper <const gomp_ordered *>::test (const gimple *gs)
1311 return gs->code == GIMPLE_OMP_ORDERED;
1314 template <>
1315 template <>
1316 inline bool
1317 is_a_helper <const gomp_for *>::test (const gimple *gs)
1319 return gs->code == GIMPLE_OMP_FOR;
1322 template <>
1323 template <>
1324 inline bool
1325 is_a_helper <const gimple_statement_omp_taskreg *>::test (const gimple *gs)
1327 return gs->code == GIMPLE_OMP_PARALLEL || gs->code == GIMPLE_OMP_TASK;
1330 template <>
1331 template <>
1332 inline bool
1333 is_a_helper <const gomp_parallel *>::test (const gimple *gs)
1335 return gs->code == GIMPLE_OMP_PARALLEL;
1338 template <>
1339 template <>
1340 inline bool
1341 is_a_helper <const gomp_target *>::test (const gimple *gs)
1343 return gs->code == GIMPLE_OMP_TARGET;
1346 template <>
1347 template <>
1348 inline bool
1349 is_a_helper <const gomp_sections *>::test (const gimple *gs)
1351 return gs->code == GIMPLE_OMP_SECTIONS;
1354 template <>
1355 template <>
1356 inline bool
1357 is_a_helper <const gomp_single *>::test (const gimple *gs)
1359 return gs->code == GIMPLE_OMP_SINGLE;
1362 template <>
1363 template <>
1364 inline bool
1365 is_a_helper <const gomp_teams *>::test (const gimple *gs)
1367 return gs->code == GIMPLE_OMP_TEAMS;
1370 template <>
1371 template <>
1372 inline bool
1373 is_a_helper <const gomp_task *>::test (const gimple *gs)
1375 return gs->code == GIMPLE_OMP_TASK;
1378 template <>
1379 template <>
1380 inline bool
1381 is_a_helper <const gphi *>::test (const gimple *gs)
1383 return gs->code == GIMPLE_PHI;
1386 template <>
1387 template <>
1388 inline bool
1389 is_a_helper <const gtransaction *>::test (const gimple *gs)
1391 return gs->code == GIMPLE_TRANSACTION;
1394 /* Offset in bytes to the location of the operand vector.
1395 Zero if there is no operand vector for this tuple structure. */
1396 extern size_t const gimple_ops_offset_[];
1398 /* Map GIMPLE codes to GSS codes. */
1399 extern enum gimple_statement_structure_enum const gss_for_code_[];
1401 /* This variable holds the currently expanded gimple statement for purposes
1402 of comminucating the profile info to the builtin expanders. */
1403 extern gimple *currently_expanding_gimple_stmt;
1405 #define gimple_alloc(c, n) gimple_alloc_stat (c, n MEM_STAT_INFO)
1406 gimple *gimple_alloc_stat (enum gimple_code, unsigned MEM_STAT_DECL);
1407 greturn *gimple_build_return (tree);
1408 void gimple_call_reset_alias_info (gcall *);
1409 gcall *gimple_build_call_vec (tree, vec<tree> );
1410 gcall *gimple_build_call (tree, unsigned, ...);
1411 gcall *gimple_build_call_valist (tree, unsigned, va_list);
1412 gcall *gimple_build_call_internal (enum internal_fn, unsigned, ...);
1413 gcall *gimple_build_call_internal_vec (enum internal_fn, vec<tree> );
1414 gcall *gimple_build_call_from_tree (tree);
1415 gassign *gimple_build_assign (tree, tree CXX_MEM_STAT_INFO);
1416 gassign *gimple_build_assign (tree, enum tree_code,
1417 tree, tree, tree CXX_MEM_STAT_INFO);
1418 gassign *gimple_build_assign (tree, enum tree_code,
1419 tree, tree CXX_MEM_STAT_INFO);
1420 gassign *gimple_build_assign (tree, enum tree_code, tree CXX_MEM_STAT_INFO);
1421 gcond *gimple_build_cond (enum tree_code, tree, tree, tree, tree);
1422 gcond *gimple_build_cond_from_tree (tree, tree, tree);
1423 void gimple_cond_set_condition_from_tree (gcond *, tree);
1424 glabel *gimple_build_label (tree label);
1425 ggoto *gimple_build_goto (tree dest);
1426 gimple *gimple_build_nop (void);
1427 gbind *gimple_build_bind (tree, gimple_seq, tree);
1428 gasm *gimple_build_asm_vec (const char *, vec<tree, va_gc> *,
1429 vec<tree, va_gc> *, vec<tree, va_gc> *,
1430 vec<tree, va_gc> *);
1431 gcatch *gimple_build_catch (tree, gimple_seq);
1432 geh_filter *gimple_build_eh_filter (tree, gimple_seq);
1433 geh_mnt *gimple_build_eh_must_not_throw (tree);
1434 geh_else *gimple_build_eh_else (gimple_seq, gimple_seq);
1435 gtry *gimple_build_try (gimple_seq, gimple_seq,
1436 enum gimple_try_flags);
1437 gimple *gimple_build_wce (gimple_seq);
1438 gresx *gimple_build_resx (int);
1439 gswitch *gimple_build_switch_nlabels (unsigned, tree, tree);
1440 gswitch *gimple_build_switch (tree, tree, vec<tree> );
1441 geh_dispatch *gimple_build_eh_dispatch (int);
1442 gdebug *gimple_build_debug_bind_stat (tree, tree, gimple * MEM_STAT_DECL);
1443 #define gimple_build_debug_bind(var,val,stmt) \
1444 gimple_build_debug_bind_stat ((var), (val), (stmt) MEM_STAT_INFO)
1445 gdebug *gimple_build_debug_source_bind_stat (tree, tree, gimple * MEM_STAT_DECL);
1446 #define gimple_build_debug_source_bind(var,val,stmt) \
1447 gimple_build_debug_source_bind_stat ((var), (val), (stmt) MEM_STAT_INFO)
1448 gomp_critical *gimple_build_omp_critical (gimple_seq, tree, tree);
1449 gomp_for *gimple_build_omp_for (gimple_seq, int, tree, size_t, gimple_seq);
1450 gomp_parallel *gimple_build_omp_parallel (gimple_seq, tree, tree, tree);
1451 gomp_task *gimple_build_omp_task (gimple_seq, tree, tree, tree, tree,
1452 tree, tree);
1453 gimple *gimple_build_omp_section (gimple_seq);
1454 gimple *gimple_build_omp_master (gimple_seq);
1455 gimple *gimple_build_omp_taskgroup (gimple_seq);
1456 gomp_continue *gimple_build_omp_continue (tree, tree);
1457 gomp_ordered *gimple_build_omp_ordered (gimple_seq, tree);
1458 gimple *gimple_build_omp_return (bool);
1459 gomp_sections *gimple_build_omp_sections (gimple_seq, tree);
1460 gimple *gimple_build_omp_sections_switch (void);
1461 gomp_single *gimple_build_omp_single (gimple_seq, tree);
1462 gomp_target *gimple_build_omp_target (gimple_seq, int, tree);
1463 gomp_teams *gimple_build_omp_teams (gimple_seq, tree);
1464 gomp_atomic_load *gimple_build_omp_atomic_load (tree, tree);
1465 gomp_atomic_store *gimple_build_omp_atomic_store (tree);
1466 gtransaction *gimple_build_transaction (gimple_seq, tree);
1467 extern void gimple_seq_add_stmt (gimple_seq *, gimple *);
1468 extern void gimple_seq_add_stmt_without_update (gimple_seq *, gimple *);
1469 void gimple_seq_add_seq (gimple_seq *, gimple_seq);
1470 void gimple_seq_add_seq_without_update (gimple_seq *, gimple_seq);
1471 extern void annotate_all_with_location_after (gimple_seq, gimple_stmt_iterator,
1472 location_t);
1473 extern void annotate_all_with_location (gimple_seq, location_t);
1474 bool empty_body_p (gimple_seq);
1475 gimple_seq gimple_seq_copy (gimple_seq);
1476 bool gimple_call_same_target_p (const gimple *, const gimple *);
1477 int gimple_call_flags (const gimple *);
1478 int gimple_call_arg_flags (const gcall *, unsigned);
1479 int gimple_call_return_flags (const gcall *);
1480 bool gimple_assign_copy_p (gimple *);
1481 bool gimple_assign_ssa_name_copy_p (gimple *);
1482 bool gimple_assign_unary_nop_p (gimple *);
1483 void gimple_set_bb (gimple *, basic_block);
1484 void gimple_assign_set_rhs_from_tree (gimple_stmt_iterator *, tree);
1485 void gimple_assign_set_rhs_with_ops (gimple_stmt_iterator *, enum tree_code,
1486 tree, tree, tree);
1487 tree gimple_get_lhs (const gimple *);
1488 void gimple_set_lhs (gimple *, tree);
1489 gimple *gimple_copy (gimple *);
1490 bool gimple_has_side_effects (const gimple *);
1491 bool gimple_could_trap_p_1 (gimple *, bool, bool);
1492 bool gimple_could_trap_p (gimple *);
1493 bool gimple_assign_rhs_could_trap_p (gimple *);
1494 extern void dump_gimple_statistics (void);
1495 unsigned get_gimple_rhs_num_ops (enum tree_code);
1496 extern tree canonicalize_cond_expr_cond (tree);
1497 gcall *gimple_call_copy_skip_args (gcall *, bitmap);
1498 extern bool gimple_compare_field_offset (tree, tree);
1499 extern tree gimple_unsigned_type (tree);
1500 extern tree gimple_signed_type (tree);
1501 extern alias_set_type gimple_get_alias_set (tree);
1502 extern bool gimple_ior_addresses_taken (bitmap, gimple *);
1503 extern bool gimple_builtin_call_types_compatible_p (const gimple *, tree);
1504 extern combined_fn gimple_call_combined_fn (const gimple *);
1505 extern bool gimple_call_builtin_p (const gimple *);
1506 extern bool gimple_call_builtin_p (const gimple *, enum built_in_class);
1507 extern bool gimple_call_builtin_p (const gimple *, enum built_in_function);
1508 extern bool gimple_asm_clobbers_memory_p (const gasm *);
1509 extern void dump_decl_set (FILE *, bitmap);
1510 extern bool nonfreeing_call_p (gimple *);
1511 extern bool nonbarrier_call_p (gimple *);
1512 extern bool infer_nonnull_range (gimple *, tree);
1513 extern bool infer_nonnull_range_by_dereference (gimple *, tree);
1514 extern bool infer_nonnull_range_by_attribute (gimple *, tree);
1515 extern void sort_case_labels (vec<tree>);
1516 extern void preprocess_case_label_vec_for_gimple (vec<tree>, tree, tree *);
1517 extern void gimple_seq_set_location (gimple_seq, location_t);
1518 extern void gimple_seq_discard (gimple_seq);
1519 extern void maybe_remove_unused_call_args (struct function *, gimple *);
1521 /* Formal (expression) temporary table handling: multiple occurrences of
1522 the same scalar expression are evaluated into the same temporary. */
1524 typedef struct gimple_temp_hash_elt
1526 tree val; /* Key */
1527 tree temp; /* Value */
1528 } elt_t;
1530 /* Get the number of the next statement uid to be allocated. */
1531 static inline unsigned int
1532 gimple_stmt_max_uid (struct function *fn)
1534 return fn->last_stmt_uid;
1537 /* Set the number of the next statement uid to be allocated. */
1538 static inline void
1539 set_gimple_stmt_max_uid (struct function *fn, unsigned int maxid)
1541 fn->last_stmt_uid = maxid;
1544 /* Set the number of the next statement uid to be allocated. */
1545 static inline unsigned int
1546 inc_gimple_stmt_max_uid (struct function *fn)
1548 return fn->last_stmt_uid++;
1551 /* Return the first node in GIMPLE sequence S. */
1553 static inline gimple_seq_node
1554 gimple_seq_first (gimple_seq s)
1556 return s;
1560 /* Return the first statement in GIMPLE sequence S. */
1562 static inline gimple *
1563 gimple_seq_first_stmt (gimple_seq s)
1565 gimple_seq_node n = gimple_seq_first (s);
1566 return n;
1569 /* Return the first statement in GIMPLE sequence S as a gbind *,
1570 verifying that it has code GIMPLE_BIND in a checked build. */
1572 static inline gbind *
1573 gimple_seq_first_stmt_as_a_bind (gimple_seq s)
1575 gimple_seq_node n = gimple_seq_first (s);
1576 return as_a <gbind *> (n);
1580 /* Return the last node in GIMPLE sequence S. */
1582 static inline gimple_seq_node
1583 gimple_seq_last (gimple_seq s)
1585 return s ? s->prev : NULL;
1589 /* Return the last statement in GIMPLE sequence S. */
1591 static inline gimple *
1592 gimple_seq_last_stmt (gimple_seq s)
1594 gimple_seq_node n = gimple_seq_last (s);
1595 return n;
1599 /* Set the last node in GIMPLE sequence *PS to LAST. */
1601 static inline void
1602 gimple_seq_set_last (gimple_seq *ps, gimple_seq_node last)
1604 (*ps)->prev = last;
1608 /* Set the first node in GIMPLE sequence *PS to FIRST. */
1610 static inline void
1611 gimple_seq_set_first (gimple_seq *ps, gimple_seq_node first)
1613 *ps = first;
1617 /* Return true if GIMPLE sequence S is empty. */
1619 static inline bool
1620 gimple_seq_empty_p (gimple_seq s)
1622 return s == NULL;
1625 /* Allocate a new sequence and initialize its first element with STMT. */
1627 static inline gimple_seq
1628 gimple_seq_alloc_with_stmt (gimple *stmt)
1630 gimple_seq seq = NULL;
1631 gimple_seq_add_stmt (&seq, stmt);
1632 return seq;
1636 /* Returns the sequence of statements in BB. */
1638 static inline gimple_seq
1639 bb_seq (const_basic_block bb)
1641 return (!(bb->flags & BB_RTL)) ? bb->il.gimple.seq : NULL;
1644 static inline gimple_seq *
1645 bb_seq_addr (basic_block bb)
1647 return (!(bb->flags & BB_RTL)) ? &bb->il.gimple.seq : NULL;
1650 /* Sets the sequence of statements in BB to SEQ. */
1652 static inline void
1653 set_bb_seq (basic_block bb, gimple_seq seq)
1655 gcc_checking_assert (!(bb->flags & BB_RTL));
1656 bb->il.gimple.seq = seq;
1660 /* Return the code for GIMPLE statement G. */
1662 static inline enum gimple_code
1663 gimple_code (const gimple *g)
1665 return g->code;
1669 /* Return the GSS code used by a GIMPLE code. */
1671 static inline enum gimple_statement_structure_enum
1672 gss_for_code (enum gimple_code code)
1674 gcc_gimple_checking_assert ((unsigned int)code < LAST_AND_UNUSED_GIMPLE_CODE);
1675 return gss_for_code_[code];
1679 /* Return which GSS code is used by GS. */
1681 static inline enum gimple_statement_structure_enum
1682 gimple_statement_structure (gimple *gs)
1684 return gss_for_code (gimple_code (gs));
1688 /* Return true if statement G has sub-statements. This is only true for
1689 High GIMPLE statements. */
1691 static inline bool
1692 gimple_has_substatements (gimple *g)
1694 switch (gimple_code (g))
1696 case GIMPLE_BIND:
1697 case GIMPLE_CATCH:
1698 case GIMPLE_EH_FILTER:
1699 case GIMPLE_EH_ELSE:
1700 case GIMPLE_TRY:
1701 case GIMPLE_OMP_FOR:
1702 case GIMPLE_OMP_MASTER:
1703 case GIMPLE_OMP_TASKGROUP:
1704 case GIMPLE_OMP_ORDERED:
1705 case GIMPLE_OMP_SECTION:
1706 case GIMPLE_OMP_PARALLEL:
1707 case GIMPLE_OMP_TASK:
1708 case GIMPLE_OMP_SECTIONS:
1709 case GIMPLE_OMP_SINGLE:
1710 case GIMPLE_OMP_TARGET:
1711 case GIMPLE_OMP_TEAMS:
1712 case GIMPLE_OMP_CRITICAL:
1713 case GIMPLE_WITH_CLEANUP_EXPR:
1714 case GIMPLE_TRANSACTION:
1715 return true;
1717 default:
1718 return false;
1723 /* Return the basic block holding statement G. */
1725 static inline basic_block
1726 gimple_bb (const gimple *g)
1728 return g->bb;
1732 /* Return the lexical scope block holding statement G. */
1734 static inline tree
1735 gimple_block (const gimple *g)
1737 return LOCATION_BLOCK (g->location);
1741 /* Set BLOCK to be the lexical scope block holding statement G. */
1743 static inline void
1744 gimple_set_block (gimple *g, tree block)
1746 g->location = set_block (g->location, block);
1750 /* Return location information for statement G. */
1752 static inline location_t
1753 gimple_location (const gimple *g)
1755 return g->location;
1758 /* Return location information for statement G if g is not NULL.
1759 Otherwise, UNKNOWN_LOCATION is returned. */
1761 static inline location_t
1762 gimple_location_safe (const gimple *g)
1764 return g ? gimple_location (g) : UNKNOWN_LOCATION;
1767 /* Set location information for statement G. */
1769 static inline void
1770 gimple_set_location (gimple *g, location_t location)
1772 g->location = location;
1776 /* Return true if G contains location information. */
1778 static inline bool
1779 gimple_has_location (const gimple *g)
1781 return LOCATION_LOCUS (gimple_location (g)) != UNKNOWN_LOCATION;
1785 /* Return the file name of the location of STMT. */
1787 static inline const char *
1788 gimple_filename (const gimple *stmt)
1790 return LOCATION_FILE (gimple_location (stmt));
1794 /* Return the line number of the location of STMT. */
1796 static inline int
1797 gimple_lineno (const gimple *stmt)
1799 return LOCATION_LINE (gimple_location (stmt));
1803 /* Determine whether SEQ is a singleton. */
1805 static inline bool
1806 gimple_seq_singleton_p (gimple_seq seq)
1808 return ((gimple_seq_first (seq) != NULL)
1809 && (gimple_seq_first (seq) == gimple_seq_last (seq)));
1812 /* Return true if no warnings should be emitted for statement STMT. */
1814 static inline bool
1815 gimple_no_warning_p (const gimple *stmt)
1817 return stmt->no_warning;
1820 /* Set the no_warning flag of STMT to NO_WARNING. */
1822 static inline void
1823 gimple_set_no_warning (gimple *stmt, bool no_warning)
1825 stmt->no_warning = (unsigned) no_warning;
1828 /* Set the visited status on statement STMT to VISITED_P.
1830 Please note that this 'visited' property of the gimple statement is
1831 supposed to be undefined at pass boundaries. This means that a
1832 given pass should not assume it contains any useful value when the
1833 pass starts and thus can set it to any value it sees fit.
1835 You can learn more about the visited property of the gimple
1836 statement by reading the comments of the 'visited' data member of
1837 struct gimple.
1840 static inline void
1841 gimple_set_visited (gimple *stmt, bool visited_p)
1843 stmt->visited = (unsigned) visited_p;
1847 /* Return the visited status for statement STMT.
1849 Please note that this 'visited' property of the gimple statement is
1850 supposed to be undefined at pass boundaries. This means that a
1851 given pass should not assume it contains any useful value when the
1852 pass starts and thus can set it to any value it sees fit.
1854 You can learn more about the visited property of the gimple
1855 statement by reading the comments of the 'visited' data member of
1856 struct gimple. */
1858 static inline bool
1859 gimple_visited_p (gimple *stmt)
1861 return stmt->visited;
1865 /* Set pass local flag PLF on statement STMT to VAL_P.
1867 Please note that this PLF property of the gimple statement is
1868 supposed to be undefined at pass boundaries. This means that a
1869 given pass should not assume it contains any useful value when the
1870 pass starts and thus can set it to any value it sees fit.
1872 You can learn more about the PLF property by reading the comment of
1873 the 'plf' data member of struct gimple_statement_structure. */
1875 static inline void
1876 gimple_set_plf (gimple *stmt, enum plf_mask plf, bool val_p)
1878 if (val_p)
1879 stmt->plf |= (unsigned int) plf;
1880 else
1881 stmt->plf &= ~((unsigned int) plf);
1885 /* Return the value of pass local flag PLF on statement STMT.
1887 Please note that this 'plf' property of the gimple statement is
1888 supposed to be undefined at pass boundaries. This means that a
1889 given pass should not assume it contains any useful value when the
1890 pass starts and thus can set it to any value it sees fit.
1892 You can learn more about the plf property by reading the comment of
1893 the 'plf' data member of struct gimple_statement_structure. */
1895 static inline unsigned int
1896 gimple_plf (gimple *stmt, enum plf_mask plf)
1898 return stmt->plf & ((unsigned int) plf);
1902 /* Set the UID of statement.
1904 Please note that this UID property is supposed to be undefined at
1905 pass boundaries. This means that a given pass should not assume it
1906 contains any useful value when the pass starts and thus can set it
1907 to any value it sees fit. */
1909 static inline void
1910 gimple_set_uid (gimple *g, unsigned uid)
1912 g->uid = uid;
1916 /* Return the UID of statement.
1918 Please note that this UID property is supposed to be undefined at
1919 pass boundaries. This means that a given pass should not assume it
1920 contains any useful value when the pass starts and thus can set it
1921 to any value it sees fit. */
1923 static inline unsigned
1924 gimple_uid (const gimple *g)
1926 return g->uid;
1930 /* Make statement G a singleton sequence. */
1932 static inline void
1933 gimple_init_singleton (gimple *g)
1935 g->next = NULL;
1936 g->prev = g;
1940 /* Return true if GIMPLE statement G has register or memory operands. */
1942 static inline bool
1943 gimple_has_ops (const gimple *g)
1945 return gimple_code (g) >= GIMPLE_COND && gimple_code (g) <= GIMPLE_RETURN;
1948 template <>
1949 template <>
1950 inline bool
1951 is_a_helper <const gimple_statement_with_ops *>::test (const gimple *gs)
1953 return gimple_has_ops (gs);
1956 template <>
1957 template <>
1958 inline bool
1959 is_a_helper <gimple_statement_with_ops *>::test (gimple *gs)
1961 return gimple_has_ops (gs);
1964 /* Return true if GIMPLE statement G has memory operands. */
1966 static inline bool
1967 gimple_has_mem_ops (const gimple *g)
1969 return gimple_code (g) >= GIMPLE_ASSIGN && gimple_code (g) <= GIMPLE_RETURN;
1972 template <>
1973 template <>
1974 inline bool
1975 is_a_helper <const gimple_statement_with_memory_ops *>::test (const gimple *gs)
1977 return gimple_has_mem_ops (gs);
1980 template <>
1981 template <>
1982 inline bool
1983 is_a_helper <gimple_statement_with_memory_ops *>::test (gimple *gs)
1985 return gimple_has_mem_ops (gs);
1988 /* Return the set of USE operands for statement G. */
1990 static inline struct use_optype_d *
1991 gimple_use_ops (const gimple *g)
1993 const gimple_statement_with_ops *ops_stmt =
1994 dyn_cast <const gimple_statement_with_ops *> (g);
1995 if (!ops_stmt)
1996 return NULL;
1997 return ops_stmt->use_ops;
2001 /* Set USE to be the set of USE operands for statement G. */
2003 static inline void
2004 gimple_set_use_ops (gimple *g, struct use_optype_d *use)
2006 gimple_statement_with_ops *ops_stmt =
2007 as_a <gimple_statement_with_ops *> (g);
2008 ops_stmt->use_ops = use;
2012 /* Return the single VUSE operand of the statement G. */
2014 static inline tree
2015 gimple_vuse (const gimple *g)
2017 const gimple_statement_with_memory_ops *mem_ops_stmt =
2018 dyn_cast <const gimple_statement_with_memory_ops *> (g);
2019 if (!mem_ops_stmt)
2020 return NULL_TREE;
2021 return mem_ops_stmt->vuse;
2024 /* Return the single VDEF operand of the statement G. */
2026 static inline tree
2027 gimple_vdef (const gimple *g)
2029 const gimple_statement_with_memory_ops *mem_ops_stmt =
2030 dyn_cast <const gimple_statement_with_memory_ops *> (g);
2031 if (!mem_ops_stmt)
2032 return NULL_TREE;
2033 return mem_ops_stmt->vdef;
2036 /* Return the single VUSE operand of the statement G. */
2038 static inline tree *
2039 gimple_vuse_ptr (gimple *g)
2041 gimple_statement_with_memory_ops *mem_ops_stmt =
2042 dyn_cast <gimple_statement_with_memory_ops *> (g);
2043 if (!mem_ops_stmt)
2044 return NULL;
2045 return &mem_ops_stmt->vuse;
2048 /* Return the single VDEF operand of the statement G. */
2050 static inline tree *
2051 gimple_vdef_ptr (gimple *g)
2053 gimple_statement_with_memory_ops *mem_ops_stmt =
2054 dyn_cast <gimple_statement_with_memory_ops *> (g);
2055 if (!mem_ops_stmt)
2056 return NULL;
2057 return &mem_ops_stmt->vdef;
2060 /* Set the single VUSE operand of the statement G. */
2062 static inline void
2063 gimple_set_vuse (gimple *g, tree vuse)
2065 gimple_statement_with_memory_ops *mem_ops_stmt =
2066 as_a <gimple_statement_with_memory_ops *> (g);
2067 mem_ops_stmt->vuse = vuse;
2070 /* Set the single VDEF operand of the statement G. */
2072 static inline void
2073 gimple_set_vdef (gimple *g, tree vdef)
2075 gimple_statement_with_memory_ops *mem_ops_stmt =
2076 as_a <gimple_statement_with_memory_ops *> (g);
2077 mem_ops_stmt->vdef = vdef;
2081 /* Return true if statement G has operands and the modified field has
2082 been set. */
2084 static inline bool
2085 gimple_modified_p (const gimple *g)
2087 return (gimple_has_ops (g)) ? (bool) g->modified : false;
2091 /* Set the MODIFIED flag to MODIFIEDP, iff the gimple statement G has
2092 a MODIFIED field. */
2094 static inline void
2095 gimple_set_modified (gimple *s, bool modifiedp)
2097 if (gimple_has_ops (s))
2098 s->modified = (unsigned) modifiedp;
2102 /* Return the tree code for the expression computed by STMT. This is
2103 only valid for GIMPLE_COND, GIMPLE_CALL and GIMPLE_ASSIGN. For
2104 GIMPLE_CALL, return CALL_EXPR as the expression code for
2105 consistency. This is useful when the caller needs to deal with the
2106 three kinds of computation that GIMPLE supports. */
2108 static inline enum tree_code
2109 gimple_expr_code (const gimple *stmt)
2111 enum gimple_code code = gimple_code (stmt);
2112 if (code == GIMPLE_ASSIGN || code == GIMPLE_COND)
2113 return (enum tree_code) stmt->subcode;
2114 else
2116 gcc_gimple_checking_assert (code == GIMPLE_CALL);
2117 return CALL_EXPR;
2122 /* Return true if statement STMT contains volatile operands. */
2124 static inline bool
2125 gimple_has_volatile_ops (const gimple *stmt)
2127 if (gimple_has_mem_ops (stmt))
2128 return stmt->has_volatile_ops;
2129 else
2130 return false;
2134 /* Set the HAS_VOLATILE_OPS flag to VOLATILEP. */
2136 static inline void
2137 gimple_set_has_volatile_ops (gimple *stmt, bool volatilep)
2139 if (gimple_has_mem_ops (stmt))
2140 stmt->has_volatile_ops = (unsigned) volatilep;
2143 /* Return true if STMT is in a transaction. */
2145 static inline bool
2146 gimple_in_transaction (const gimple *stmt)
2148 return bb_in_transaction (gimple_bb (stmt));
2151 /* Return true if statement STMT may access memory. */
2153 static inline bool
2154 gimple_references_memory_p (gimple *stmt)
2156 return gimple_has_mem_ops (stmt) && gimple_vuse (stmt);
2160 /* Return the subcode for OMP statement S. */
2162 static inline unsigned
2163 gimple_omp_subcode (const gimple *s)
2165 gcc_gimple_checking_assert (gimple_code (s) >= GIMPLE_OMP_ATOMIC_LOAD
2166 && gimple_code (s) <= GIMPLE_OMP_TEAMS);
2167 return s->subcode;
2170 /* Set the subcode for OMP statement S to SUBCODE. */
2172 static inline void
2173 gimple_omp_set_subcode (gimple *s, unsigned int subcode)
2175 /* We only have 16 bits for the subcode. Assert that we are not
2176 overflowing it. */
2177 gcc_gimple_checking_assert (subcode < (1 << 16));
2178 s->subcode = subcode;
2181 /* Set the nowait flag on OMP_RETURN statement S. */
2183 static inline void
2184 gimple_omp_return_set_nowait (gimple *s)
2186 GIMPLE_CHECK (s, GIMPLE_OMP_RETURN);
2187 s->subcode |= GF_OMP_RETURN_NOWAIT;
2191 /* Return true if OMP return statement G has the GF_OMP_RETURN_NOWAIT
2192 flag set. */
2194 static inline bool
2195 gimple_omp_return_nowait_p (const gimple *g)
2197 GIMPLE_CHECK (g, GIMPLE_OMP_RETURN);
2198 return (gimple_omp_subcode (g) & GF_OMP_RETURN_NOWAIT) != 0;
2202 /* Set the LHS of OMP return. */
2204 static inline void
2205 gimple_omp_return_set_lhs (gimple *g, tree lhs)
2207 gimple_statement_omp_return *omp_return_stmt =
2208 as_a <gimple_statement_omp_return *> (g);
2209 omp_return_stmt->val = lhs;
2213 /* Get the LHS of OMP return. */
2215 static inline tree
2216 gimple_omp_return_lhs (const gimple *g)
2218 const gimple_statement_omp_return *omp_return_stmt =
2219 as_a <const gimple_statement_omp_return *> (g);
2220 return omp_return_stmt->val;
2224 /* Return a pointer to the LHS of OMP return. */
2226 static inline tree *
2227 gimple_omp_return_lhs_ptr (gimple *g)
2229 gimple_statement_omp_return *omp_return_stmt =
2230 as_a <gimple_statement_omp_return *> (g);
2231 return &omp_return_stmt->val;
2235 /* Return true if OMP section statement G has the GF_OMP_SECTION_LAST
2236 flag set. */
2238 static inline bool
2239 gimple_omp_section_last_p (const gimple *g)
2241 GIMPLE_CHECK (g, GIMPLE_OMP_SECTION);
2242 return (gimple_omp_subcode (g) & GF_OMP_SECTION_LAST) != 0;
2246 /* Set the GF_OMP_SECTION_LAST flag on G. */
2248 static inline void
2249 gimple_omp_section_set_last (gimple *g)
2251 GIMPLE_CHECK (g, GIMPLE_OMP_SECTION);
2252 g->subcode |= GF_OMP_SECTION_LAST;
2256 /* Return true if OMP parallel statement G has the
2257 GF_OMP_PARALLEL_COMBINED flag set. */
2259 static inline bool
2260 gimple_omp_parallel_combined_p (const gimple *g)
2262 GIMPLE_CHECK (g, GIMPLE_OMP_PARALLEL);
2263 return (gimple_omp_subcode (g) & GF_OMP_PARALLEL_COMBINED) != 0;
2267 /* Set the GF_OMP_PARALLEL_COMBINED field in G depending on the boolean
2268 value of COMBINED_P. */
2270 static inline void
2271 gimple_omp_parallel_set_combined_p (gimple *g, bool combined_p)
2273 GIMPLE_CHECK (g, GIMPLE_OMP_PARALLEL);
2274 if (combined_p)
2275 g->subcode |= GF_OMP_PARALLEL_COMBINED;
2276 else
2277 g->subcode &= ~GF_OMP_PARALLEL_COMBINED;
2281 /* Return true if OMP atomic load/store statement G has the
2282 GF_OMP_ATOMIC_NEED_VALUE flag set. */
2284 static inline bool
2285 gimple_omp_atomic_need_value_p (const gimple *g)
2287 if (gimple_code (g) != GIMPLE_OMP_ATOMIC_LOAD)
2288 GIMPLE_CHECK (g, GIMPLE_OMP_ATOMIC_STORE);
2289 return (gimple_omp_subcode (g) & GF_OMP_ATOMIC_NEED_VALUE) != 0;
2293 /* Set the GF_OMP_ATOMIC_NEED_VALUE flag on G. */
2295 static inline void
2296 gimple_omp_atomic_set_need_value (gimple *g)
2298 if (gimple_code (g) != GIMPLE_OMP_ATOMIC_LOAD)
2299 GIMPLE_CHECK (g, GIMPLE_OMP_ATOMIC_STORE);
2300 g->subcode |= GF_OMP_ATOMIC_NEED_VALUE;
2304 /* Return true if OMP atomic load/store statement G has the
2305 GF_OMP_ATOMIC_SEQ_CST flag set. */
2307 static inline bool
2308 gimple_omp_atomic_seq_cst_p (const gimple *g)
2310 if (gimple_code (g) != GIMPLE_OMP_ATOMIC_LOAD)
2311 GIMPLE_CHECK (g, GIMPLE_OMP_ATOMIC_STORE);
2312 return (gimple_omp_subcode (g) & GF_OMP_ATOMIC_SEQ_CST) != 0;
2316 /* Set the GF_OMP_ATOMIC_SEQ_CST flag on G. */
2318 static inline void
2319 gimple_omp_atomic_set_seq_cst (gimple *g)
2321 if (gimple_code (g) != GIMPLE_OMP_ATOMIC_LOAD)
2322 GIMPLE_CHECK (g, GIMPLE_OMP_ATOMIC_STORE);
2323 g->subcode |= GF_OMP_ATOMIC_SEQ_CST;
2327 /* Return the number of operands for statement GS. */
2329 static inline unsigned
2330 gimple_num_ops (const gimple *gs)
2332 return gs->num_ops;
2336 /* Set the number of operands for statement GS. */
2338 static inline void
2339 gimple_set_num_ops (gimple *gs, unsigned num_ops)
2341 gs->num_ops = num_ops;
2345 /* Return the array of operands for statement GS. */
2347 static inline tree *
2348 gimple_ops (gimple *gs)
2350 size_t off;
2352 /* All the tuples have their operand vector at the very bottom
2353 of the structure. Note that those structures that do not
2354 have an operand vector have a zero offset. */
2355 off = gimple_ops_offset_[gimple_statement_structure (gs)];
2356 gcc_gimple_checking_assert (off != 0);
2358 return (tree *) ((char *) gs + off);
2362 /* Return operand I for statement GS. */
2364 static inline tree
2365 gimple_op (const gimple *gs, unsigned i)
2367 if (gimple_has_ops (gs))
2369 gcc_gimple_checking_assert (i < gimple_num_ops (gs));
2370 return gimple_ops (CONST_CAST_GIMPLE (gs))[i];
2372 else
2373 return NULL_TREE;
2376 /* Return a pointer to operand I for statement GS. */
2378 static inline tree *
2379 gimple_op_ptr (gimple *gs, unsigned i)
2381 if (gimple_has_ops (gs))
2383 gcc_gimple_checking_assert (i < gimple_num_ops (gs));
2384 return gimple_ops (gs) + i;
2386 else
2387 return NULL;
2390 /* Set operand I of statement GS to OP. */
2392 static inline void
2393 gimple_set_op (gimple *gs, unsigned i, tree op)
2395 gcc_gimple_checking_assert (gimple_has_ops (gs) && i < gimple_num_ops (gs));
2397 /* Note. It may be tempting to assert that OP matches
2398 is_gimple_operand, but that would be wrong. Different tuples
2399 accept slightly different sets of tree operands. Each caller
2400 should perform its own validation. */
2401 gimple_ops (gs)[i] = op;
2404 /* Return true if GS is a GIMPLE_ASSIGN. */
2406 static inline bool
2407 is_gimple_assign (const gimple *gs)
2409 return gimple_code (gs) == GIMPLE_ASSIGN;
2412 /* Determine if expression CODE is one of the valid expressions that can
2413 be used on the RHS of GIMPLE assignments. */
2415 static inline enum gimple_rhs_class
2416 get_gimple_rhs_class (enum tree_code code)
2418 return (enum gimple_rhs_class) gimple_rhs_class_table[(int) code];
2421 /* Return the LHS of assignment statement GS. */
2423 static inline tree
2424 gimple_assign_lhs (const gassign *gs)
2426 return gs->op[0];
2429 static inline tree
2430 gimple_assign_lhs (const gimple *gs)
2432 const gassign *ass = GIMPLE_CHECK2<const gassign *> (gs);
2433 return gimple_assign_lhs (ass);
2437 /* Return a pointer to the LHS of assignment statement GS. */
2439 static inline tree *
2440 gimple_assign_lhs_ptr (gassign *gs)
2442 return &gs->op[0];
2445 static inline tree *
2446 gimple_assign_lhs_ptr (gimple *gs)
2448 gassign *ass = GIMPLE_CHECK2<gassign *> (gs);
2449 return gimple_assign_lhs_ptr (ass);
2453 /* Set LHS to be the LHS operand of assignment statement GS. */
2455 static inline void
2456 gimple_assign_set_lhs (gassign *gs, tree lhs)
2458 gs->op[0] = lhs;
2460 if (lhs && TREE_CODE (lhs) == SSA_NAME)
2461 SSA_NAME_DEF_STMT (lhs) = gs;
2464 static inline void
2465 gimple_assign_set_lhs (gimple *gs, tree lhs)
2467 gassign *ass = GIMPLE_CHECK2<gassign *> (gs);
2468 gimple_assign_set_lhs (ass, lhs);
2472 /* Return the first operand on the RHS of assignment statement GS. */
2474 static inline tree
2475 gimple_assign_rhs1 (const gassign *gs)
2477 return gs->op[1];
2480 static inline tree
2481 gimple_assign_rhs1 (const gimple *gs)
2483 const gassign *ass = GIMPLE_CHECK2<const gassign *> (gs);
2484 return gimple_assign_rhs1 (ass);
2488 /* Return a pointer to the first operand on the RHS of assignment
2489 statement GS. */
2491 static inline tree *
2492 gimple_assign_rhs1_ptr (gassign *gs)
2494 return &gs->op[1];
2497 static inline tree *
2498 gimple_assign_rhs1_ptr (gimple *gs)
2500 gassign *ass = GIMPLE_CHECK2<gassign *> (gs);
2501 return gimple_assign_rhs1_ptr (ass);
2504 /* Set RHS to be the first operand on the RHS of assignment statement GS. */
2506 static inline void
2507 gimple_assign_set_rhs1 (gassign *gs, tree rhs)
2509 gs->op[1] = rhs;
2512 static inline void
2513 gimple_assign_set_rhs1 (gimple *gs, tree rhs)
2515 gassign *ass = GIMPLE_CHECK2<gassign *> (gs);
2516 gimple_assign_set_rhs1 (ass, rhs);
2520 /* Return the second operand on the RHS of assignment statement GS.
2521 If GS does not have two operands, NULL is returned instead. */
2523 static inline tree
2524 gimple_assign_rhs2 (const gassign *gs)
2526 if (gimple_num_ops (gs) >= 3)
2527 return gs->op[2];
2528 else
2529 return NULL_TREE;
2532 static inline tree
2533 gimple_assign_rhs2 (const gimple *gs)
2535 const gassign *ass = GIMPLE_CHECK2<const gassign *> (gs);
2536 return gimple_assign_rhs2 (ass);
2540 /* Return a pointer to the second operand on the RHS of assignment
2541 statement GS. */
2543 static inline tree *
2544 gimple_assign_rhs2_ptr (gassign *gs)
2546 gcc_gimple_checking_assert (gimple_num_ops (gs) >= 3);
2547 return &gs->op[2];
2550 static inline tree *
2551 gimple_assign_rhs2_ptr (gimple *gs)
2553 gassign *ass = GIMPLE_CHECK2<gassign *> (gs);
2554 return gimple_assign_rhs2_ptr (ass);
2558 /* Set RHS to be the second operand on the RHS of assignment statement GS. */
2560 static inline void
2561 gimple_assign_set_rhs2 (gassign *gs, tree rhs)
2563 gcc_gimple_checking_assert (gimple_num_ops (gs) >= 3);
2564 gs->op[2] = rhs;
2567 static inline void
2568 gimple_assign_set_rhs2 (gimple *gs, tree rhs)
2570 gassign *ass = GIMPLE_CHECK2<gassign *> (gs);
2571 return gimple_assign_set_rhs2 (ass, rhs);
2574 /* Return the third operand on the RHS of assignment statement GS.
2575 If GS does not have two operands, NULL is returned instead. */
2577 static inline tree
2578 gimple_assign_rhs3 (const gassign *gs)
2580 if (gimple_num_ops (gs) >= 4)
2581 return gs->op[3];
2582 else
2583 return NULL_TREE;
2586 static inline tree
2587 gimple_assign_rhs3 (const gimple *gs)
2589 const gassign *ass = GIMPLE_CHECK2<const gassign *> (gs);
2590 return gimple_assign_rhs3 (ass);
2593 /* Return a pointer to the third operand on the RHS of assignment
2594 statement GS. */
2596 static inline tree *
2597 gimple_assign_rhs3_ptr (gimple *gs)
2599 gassign *ass = GIMPLE_CHECK2<gassign *> (gs);
2600 gcc_gimple_checking_assert (gimple_num_ops (gs) >= 4);
2601 return &ass->op[3];
2605 /* Set RHS to be the third operand on the RHS of assignment statement GS. */
2607 static inline void
2608 gimple_assign_set_rhs3 (gassign *gs, tree rhs)
2610 gcc_gimple_checking_assert (gimple_num_ops (gs) >= 4);
2611 gs->op[3] = rhs;
2614 static inline void
2615 gimple_assign_set_rhs3 (gimple *gs, tree rhs)
2617 gassign *ass = GIMPLE_CHECK2<gassign *> (gs);
2618 gimple_assign_set_rhs3 (ass, rhs);
2622 /* A wrapper around 3 operand gimple_assign_set_rhs_with_ops, for callers
2623 which expect to see only two operands. */
2625 static inline void
2626 gimple_assign_set_rhs_with_ops (gimple_stmt_iterator *gsi, enum tree_code code,
2627 tree op1, tree op2)
2629 gimple_assign_set_rhs_with_ops (gsi, code, op1, op2, NULL);
2632 /* A wrapper around 3 operand gimple_assign_set_rhs_with_ops, for callers
2633 which expect to see only one operands. */
2635 static inline void
2636 gimple_assign_set_rhs_with_ops (gimple_stmt_iterator *gsi, enum tree_code code,
2637 tree op1)
2639 gimple_assign_set_rhs_with_ops (gsi, code, op1, NULL, NULL);
2642 /* Returns true if GS is a nontemporal move. */
2644 static inline bool
2645 gimple_assign_nontemporal_move_p (const gassign *gs)
2647 return gs->nontemporal_move;
2650 /* Sets nontemporal move flag of GS to NONTEMPORAL. */
2652 static inline void
2653 gimple_assign_set_nontemporal_move (gimple *gs, bool nontemporal)
2655 GIMPLE_CHECK (gs, GIMPLE_ASSIGN);
2656 gs->nontemporal_move = nontemporal;
2660 /* Return the code of the expression computed on the rhs of assignment
2661 statement GS. In case that the RHS is a single object, returns the
2662 tree code of the object. */
2664 static inline enum tree_code
2665 gimple_assign_rhs_code (const gassign *gs)
2667 enum tree_code code = (enum tree_code) gs->subcode;
2668 /* While we initially set subcode to the TREE_CODE of the rhs for
2669 GIMPLE_SINGLE_RHS assigns we do not update that subcode to stay
2670 in sync when we rewrite stmts into SSA form or do SSA propagations. */
2671 if (get_gimple_rhs_class (code) == GIMPLE_SINGLE_RHS)
2672 code = TREE_CODE (gs->op[1]);
2674 return code;
2677 static inline enum tree_code
2678 gimple_assign_rhs_code (const gimple *gs)
2680 const gassign *ass = GIMPLE_CHECK2<const gassign *> (gs);
2681 return gimple_assign_rhs_code (ass);
2685 /* Set CODE to be the code for the expression computed on the RHS of
2686 assignment S. */
2688 static inline void
2689 gimple_assign_set_rhs_code (gimple *s, enum tree_code code)
2691 GIMPLE_CHECK (s, GIMPLE_ASSIGN);
2692 s->subcode = code;
2696 /* Return the gimple rhs class of the code of the expression computed on
2697 the rhs of assignment statement GS.
2698 This will never return GIMPLE_INVALID_RHS. */
2700 static inline enum gimple_rhs_class
2701 gimple_assign_rhs_class (const gimple *gs)
2703 return get_gimple_rhs_class (gimple_assign_rhs_code (gs));
2706 /* Return true if GS is an assignment with a singleton RHS, i.e.,
2707 there is no operator associated with the assignment itself.
2708 Unlike gimple_assign_copy_p, this predicate returns true for
2709 any RHS operand, including those that perform an operation
2710 and do not have the semantics of a copy, such as COND_EXPR. */
2712 static inline bool
2713 gimple_assign_single_p (const gimple *gs)
2715 return (is_gimple_assign (gs)
2716 && gimple_assign_rhs_class (gs) == GIMPLE_SINGLE_RHS);
2719 /* Return true if GS performs a store to its lhs. */
2721 static inline bool
2722 gimple_store_p (const gimple *gs)
2724 tree lhs = gimple_get_lhs (gs);
2725 return lhs && !is_gimple_reg (lhs);
2728 /* Return true if GS is an assignment that loads from its rhs1. */
2730 static inline bool
2731 gimple_assign_load_p (const gimple *gs)
2733 tree rhs;
2734 if (!gimple_assign_single_p (gs))
2735 return false;
2736 rhs = gimple_assign_rhs1 (gs);
2737 if (TREE_CODE (rhs) == WITH_SIZE_EXPR)
2738 return true;
2739 rhs = get_base_address (rhs);
2740 return (DECL_P (rhs)
2741 || TREE_CODE (rhs) == MEM_REF || TREE_CODE (rhs) == TARGET_MEM_REF);
2745 /* Return true if S is a type-cast assignment. */
2747 static inline bool
2748 gimple_assign_cast_p (const gimple *s)
2750 if (is_gimple_assign (s))
2752 enum tree_code sc = gimple_assign_rhs_code (s);
2753 return CONVERT_EXPR_CODE_P (sc)
2754 || sc == VIEW_CONVERT_EXPR
2755 || sc == FIX_TRUNC_EXPR;
2758 return false;
2761 /* Return true if S is a clobber statement. */
2763 static inline bool
2764 gimple_clobber_p (const gimple *s)
2766 return gimple_assign_single_p (s)
2767 && TREE_CLOBBER_P (gimple_assign_rhs1 (s));
2770 /* Return true if GS is a GIMPLE_CALL. */
2772 static inline bool
2773 is_gimple_call (const gimple *gs)
2775 return gimple_code (gs) == GIMPLE_CALL;
2778 /* Return the LHS of call statement GS. */
2780 static inline tree
2781 gimple_call_lhs (const gcall *gs)
2783 return gs->op[0];
2786 static inline tree
2787 gimple_call_lhs (const gimple *gs)
2789 const gcall *gc = GIMPLE_CHECK2<const gcall *> (gs);
2790 return gimple_call_lhs (gc);
2794 /* Return a pointer to the LHS of call statement GS. */
2796 static inline tree *
2797 gimple_call_lhs_ptr (gcall *gs)
2799 return &gs->op[0];
2802 static inline tree *
2803 gimple_call_lhs_ptr (gimple *gs)
2805 gcall *gc = GIMPLE_CHECK2<gcall *> (gs);
2806 return gimple_call_lhs_ptr (gc);
2810 /* Set LHS to be the LHS operand of call statement GS. */
2812 static inline void
2813 gimple_call_set_lhs (gcall *gs, tree lhs)
2815 gs->op[0] = lhs;
2816 if (lhs && TREE_CODE (lhs) == SSA_NAME)
2817 SSA_NAME_DEF_STMT (lhs) = gs;
2820 static inline void
2821 gimple_call_set_lhs (gimple *gs, tree lhs)
2823 gcall *gc = GIMPLE_CHECK2<gcall *> (gs);
2824 gimple_call_set_lhs (gc, lhs);
2828 /* Return true if call GS calls an internal-only function, as enumerated
2829 by internal_fn. */
2831 static inline bool
2832 gimple_call_internal_p (const gcall *gs)
2834 return (gs->subcode & GF_CALL_INTERNAL) != 0;
2837 static inline bool
2838 gimple_call_internal_p (const gimple *gs)
2840 const gcall *gc = GIMPLE_CHECK2<const gcall *> (gs);
2841 return gimple_call_internal_p (gc);
2845 /* Return true if call GS is marked as instrumented by
2846 Pointer Bounds Checker. */
2848 static inline bool
2849 gimple_call_with_bounds_p (const gcall *gs)
2851 return (gs->subcode & GF_CALL_WITH_BOUNDS) != 0;
2854 static inline bool
2855 gimple_call_with_bounds_p (const gimple *gs)
2857 const gcall *gc = GIMPLE_CHECK2<const gcall *> (gs);
2858 return gimple_call_with_bounds_p (gc);
2862 /* If INSTRUMENTED_P is true, marm statement GS as instrumented by
2863 Pointer Bounds Checker. */
2865 static inline void
2866 gimple_call_set_with_bounds (gcall *gs, bool with_bounds)
2868 if (with_bounds)
2869 gs->subcode |= GF_CALL_WITH_BOUNDS;
2870 else
2871 gs->subcode &= ~GF_CALL_WITH_BOUNDS;
2874 static inline void
2875 gimple_call_set_with_bounds (gimple *gs, bool with_bounds)
2877 gcall *gc = GIMPLE_CHECK2<gcall *> (gs);
2878 gimple_call_set_with_bounds (gc, with_bounds);
2882 /* Return the target of internal call GS. */
2884 static inline enum internal_fn
2885 gimple_call_internal_fn (const gcall *gs)
2887 gcc_gimple_checking_assert (gimple_call_internal_p (gs));
2888 return gs->u.internal_fn;
2891 static inline enum internal_fn
2892 gimple_call_internal_fn (const gimple *gs)
2894 const gcall *gc = GIMPLE_CHECK2<const gcall *> (gs);
2895 return gimple_call_internal_fn (gc);
2898 /* Return true, if this internal gimple call is unique. */
2900 static inline bool
2901 gimple_call_internal_unique_p (const gcall *gs)
2903 return gimple_call_internal_fn (gs) == IFN_UNIQUE;
2906 static inline bool
2907 gimple_call_internal_unique_p (const gimple *gs)
2909 const gcall *gc = GIMPLE_CHECK2<const gcall *> (gs);
2910 return gimple_call_internal_unique_p (gc);
2913 /* If CTRL_ALTERING_P is true, mark GIMPLE_CALL S to be a stmt
2914 that could alter control flow. */
2916 static inline void
2917 gimple_call_set_ctrl_altering (gcall *s, bool ctrl_altering_p)
2919 if (ctrl_altering_p)
2920 s->subcode |= GF_CALL_CTRL_ALTERING;
2921 else
2922 s->subcode &= ~GF_CALL_CTRL_ALTERING;
2925 static inline void
2926 gimple_call_set_ctrl_altering (gimple *s, bool ctrl_altering_p)
2928 gcall *gc = GIMPLE_CHECK2<gcall *> (s);
2929 gimple_call_set_ctrl_altering (gc, ctrl_altering_p);
2932 /* Return true if call GS calls an func whose GF_CALL_CTRL_ALTERING
2933 flag is set. Such call could not be a stmt in the middle of a bb. */
2935 static inline bool
2936 gimple_call_ctrl_altering_p (const gcall *gs)
2938 return (gs->subcode & GF_CALL_CTRL_ALTERING) != 0;
2941 static inline bool
2942 gimple_call_ctrl_altering_p (const gimple *gs)
2944 const gcall *gc = GIMPLE_CHECK2<const gcall *> (gs);
2945 return gimple_call_ctrl_altering_p (gc);
2949 /* Return the function type of the function called by GS. */
2951 static inline tree
2952 gimple_call_fntype (const gcall *gs)
2954 if (gimple_call_internal_p (gs))
2955 return NULL_TREE;
2956 return gs->u.fntype;
2959 static inline tree
2960 gimple_call_fntype (const gimple *gs)
2962 const gcall *call_stmt = GIMPLE_CHECK2<const gcall *> (gs);
2963 return gimple_call_fntype (call_stmt);
2966 /* Set the type of the function called by CALL_STMT to FNTYPE. */
2968 static inline void
2969 gimple_call_set_fntype (gcall *call_stmt, tree fntype)
2971 gcc_gimple_checking_assert (!gimple_call_internal_p (call_stmt));
2972 call_stmt->u.fntype = fntype;
2976 /* Return the tree node representing the function called by call
2977 statement GS. */
2979 static inline tree
2980 gimple_call_fn (const gcall *gs)
2982 return gs->op[1];
2985 static inline tree
2986 gimple_call_fn (const gimple *gs)
2988 const gcall *gc = GIMPLE_CHECK2<const gcall *> (gs);
2989 return gimple_call_fn (gc);
2992 /* Return a pointer to the tree node representing the function called by call
2993 statement GS. */
2995 static inline tree *
2996 gimple_call_fn_ptr (gcall *gs)
2998 return &gs->op[1];
3001 static inline tree *
3002 gimple_call_fn_ptr (gimple *gs)
3004 gcall *gc = GIMPLE_CHECK2<gcall *> (gs);
3005 return gimple_call_fn_ptr (gc);
3009 /* Set FN to be the function called by call statement GS. */
3011 static inline void
3012 gimple_call_set_fn (gcall *gs, tree fn)
3014 gcc_gimple_checking_assert (!gimple_call_internal_p (gs));
3015 gs->op[1] = fn;
3019 /* Set FNDECL to be the function called by call statement GS. */
3021 static inline void
3022 gimple_call_set_fndecl (gcall *gs, tree decl)
3024 gcc_gimple_checking_assert (!gimple_call_internal_p (gs));
3025 gs->op[1] = build1_loc (gimple_location (gs), ADDR_EXPR,
3026 build_pointer_type (TREE_TYPE (decl)), decl);
3029 static inline void
3030 gimple_call_set_fndecl (gimple *gs, tree decl)
3032 gcall *gc = GIMPLE_CHECK2<gcall *> (gs);
3033 gimple_call_set_fndecl (gc, decl);
3037 /* Set internal function FN to be the function called by call statement CALL_STMT. */
3039 static inline void
3040 gimple_call_set_internal_fn (gcall *call_stmt, enum internal_fn fn)
3042 gcc_gimple_checking_assert (gimple_call_internal_p (call_stmt));
3043 call_stmt->u.internal_fn = fn;
3047 /* If a given GIMPLE_CALL's callee is a FUNCTION_DECL, return it.
3048 Otherwise return NULL. This function is analogous to
3049 get_callee_fndecl in tree land. */
3051 static inline tree
3052 gimple_call_fndecl (const gcall *gs)
3054 return gimple_call_addr_fndecl (gimple_call_fn (gs));
3057 static inline tree
3058 gimple_call_fndecl (const gimple *gs)
3060 const gcall *gc = GIMPLE_CHECK2<const gcall *> (gs);
3061 return gimple_call_fndecl (gc);
3065 /* Return the type returned by call statement GS. */
3067 static inline tree
3068 gimple_call_return_type (const gcall *gs)
3070 tree type = gimple_call_fntype (gs);
3072 if (type == NULL_TREE)
3073 return TREE_TYPE (gimple_call_lhs (gs));
3075 /* The type returned by a function is the type of its
3076 function type. */
3077 return TREE_TYPE (type);
3081 /* Return the static chain for call statement GS. */
3083 static inline tree
3084 gimple_call_chain (const gcall *gs)
3086 return gs->op[2];
3089 static inline tree
3090 gimple_call_chain (const gimple *gs)
3092 const gcall *gc = GIMPLE_CHECK2<const gcall *> (gs);
3093 return gimple_call_chain (gc);
3097 /* Return a pointer to the static chain for call statement CALL_STMT. */
3099 static inline tree *
3100 gimple_call_chain_ptr (gcall *call_stmt)
3102 return &call_stmt->op[2];
3105 /* Set CHAIN to be the static chain for call statement CALL_STMT. */
3107 static inline void
3108 gimple_call_set_chain (gcall *call_stmt, tree chain)
3110 call_stmt->op[2] = chain;
3114 /* Return the number of arguments used by call statement GS. */
3116 static inline unsigned
3117 gimple_call_num_args (const gcall *gs)
3119 return gimple_num_ops (gs) - 3;
3122 static inline unsigned
3123 gimple_call_num_args (const gimple *gs)
3125 const gcall *gc = GIMPLE_CHECK2<const gcall *> (gs);
3126 return gimple_call_num_args (gc);
3130 /* Return the argument at position INDEX for call statement GS. */
3132 static inline tree
3133 gimple_call_arg (const gcall *gs, unsigned index)
3135 gcc_gimple_checking_assert (gimple_num_ops (gs) > index + 3);
3136 return gs->op[index + 3];
3139 static inline tree
3140 gimple_call_arg (const gimple *gs, unsigned index)
3142 const gcall *gc = GIMPLE_CHECK2<const gcall *> (gs);
3143 return gimple_call_arg (gc, index);
3147 /* Return a pointer to the argument at position INDEX for call
3148 statement GS. */
3150 static inline tree *
3151 gimple_call_arg_ptr (gcall *gs, unsigned index)
3153 gcc_gimple_checking_assert (gimple_num_ops (gs) > index + 3);
3154 return &gs->op[index + 3];
3157 static inline tree *
3158 gimple_call_arg_ptr (gimple *gs, unsigned index)
3160 gcall *gc = GIMPLE_CHECK2<gcall *> (gs);
3161 return gimple_call_arg_ptr (gc, index);
3165 /* Set ARG to be the argument at position INDEX for call statement GS. */
3167 static inline void
3168 gimple_call_set_arg (gcall *gs, unsigned index, tree arg)
3170 gcc_gimple_checking_assert (gimple_num_ops (gs) > index + 3);
3171 gs->op[index + 3] = arg;
3174 static inline void
3175 gimple_call_set_arg (gimple *gs, unsigned index, tree arg)
3177 gcall *gc = GIMPLE_CHECK2<gcall *> (gs);
3178 gimple_call_set_arg (gc, index, arg);
3182 /* If TAIL_P is true, mark call statement S as being a tail call
3183 (i.e., a call just before the exit of a function). These calls are
3184 candidate for tail call optimization. */
3186 static inline void
3187 gimple_call_set_tail (gcall *s, bool tail_p)
3189 if (tail_p)
3190 s->subcode |= GF_CALL_TAILCALL;
3191 else
3192 s->subcode &= ~GF_CALL_TAILCALL;
3196 /* Return true if GIMPLE_CALL S is marked as a tail call. */
3198 static inline bool
3199 gimple_call_tail_p (gcall *s)
3201 return (s->subcode & GF_CALL_TAILCALL) != 0;
3205 /* If RETURN_SLOT_OPT_P is true mark GIMPLE_CALL S as valid for return
3206 slot optimization. This transformation uses the target of the call
3207 expansion as the return slot for calls that return in memory. */
3209 static inline void
3210 gimple_call_set_return_slot_opt (gcall *s, bool return_slot_opt_p)
3212 if (return_slot_opt_p)
3213 s->subcode |= GF_CALL_RETURN_SLOT_OPT;
3214 else
3215 s->subcode &= ~GF_CALL_RETURN_SLOT_OPT;
3219 /* Return true if S is marked for return slot optimization. */
3221 static inline bool
3222 gimple_call_return_slot_opt_p (gcall *s)
3224 return (s->subcode & GF_CALL_RETURN_SLOT_OPT) != 0;
3228 /* If FROM_THUNK_P is true, mark GIMPLE_CALL S as being the jump from a
3229 thunk to the thunked-to function. */
3231 static inline void
3232 gimple_call_set_from_thunk (gcall *s, bool from_thunk_p)
3234 if (from_thunk_p)
3235 s->subcode |= GF_CALL_FROM_THUNK;
3236 else
3237 s->subcode &= ~GF_CALL_FROM_THUNK;
3241 /* Return true if GIMPLE_CALL S is a jump from a thunk. */
3243 static inline bool
3244 gimple_call_from_thunk_p (gcall *s)
3246 return (s->subcode & GF_CALL_FROM_THUNK) != 0;
3250 /* If PASS_ARG_PACK_P is true, GIMPLE_CALL S is a stdarg call that needs the
3251 argument pack in its argument list. */
3253 static inline void
3254 gimple_call_set_va_arg_pack (gcall *s, bool pass_arg_pack_p)
3256 if (pass_arg_pack_p)
3257 s->subcode |= GF_CALL_VA_ARG_PACK;
3258 else
3259 s->subcode &= ~GF_CALL_VA_ARG_PACK;
3263 /* Return true if GIMPLE_CALL S is a stdarg call that needs the
3264 argument pack in its argument list. */
3266 static inline bool
3267 gimple_call_va_arg_pack_p (gcall *s)
3269 return (s->subcode & GF_CALL_VA_ARG_PACK) != 0;
3273 /* Return true if S is a noreturn call. */
3275 static inline bool
3276 gimple_call_noreturn_p (const gcall *s)
3278 return (gimple_call_flags (s) & ECF_NORETURN) != 0;
3281 static inline bool
3282 gimple_call_noreturn_p (const gimple *s)
3284 const gcall *gc = GIMPLE_CHECK2<const gcall *> (s);
3285 return gimple_call_noreturn_p (gc);
3289 /* If NOTHROW_P is true, GIMPLE_CALL S is a call that is known to not throw
3290 even if the called function can throw in other cases. */
3292 static inline void
3293 gimple_call_set_nothrow (gcall *s, bool nothrow_p)
3295 if (nothrow_p)
3296 s->subcode |= GF_CALL_NOTHROW;
3297 else
3298 s->subcode &= ~GF_CALL_NOTHROW;
3301 /* Return true if S is a nothrow call. */
3303 static inline bool
3304 gimple_call_nothrow_p (gcall *s)
3306 return (gimple_call_flags (s) & ECF_NOTHROW) != 0;
3309 /* If FOR_VAR is true, GIMPLE_CALL S is a call to builtin_alloca that
3310 is known to be emitted for VLA objects. Those are wrapped by
3311 stack_save/stack_restore calls and hence can't lead to unbounded
3312 stack growth even when they occur in loops. */
3314 static inline void
3315 gimple_call_set_alloca_for_var (gcall *s, bool for_var)
3317 if (for_var)
3318 s->subcode |= GF_CALL_ALLOCA_FOR_VAR;
3319 else
3320 s->subcode &= ~GF_CALL_ALLOCA_FOR_VAR;
3323 /* Return true of S is a call to builtin_alloca emitted for VLA objects. */
3325 static inline bool
3326 gimple_call_alloca_for_var_p (gcall *s)
3328 return (s->subcode & GF_CALL_ALLOCA_FOR_VAR) != 0;
3331 /* Copy all the GF_CALL_* flags from ORIG_CALL to DEST_CALL. */
3333 static inline void
3334 gimple_call_copy_flags (gcall *dest_call, gcall *orig_call)
3336 dest_call->subcode = orig_call->subcode;
3340 /* Return a pointer to the points-to solution for the set of call-used
3341 variables of the call CALL_STMT. */
3343 static inline struct pt_solution *
3344 gimple_call_use_set (gcall *call_stmt)
3346 return &call_stmt->call_used;
3350 /* Return a pointer to the points-to solution for the set of call-used
3351 variables of the call CALL_STMT. */
3353 static inline struct pt_solution *
3354 gimple_call_clobber_set (gcall *call_stmt)
3356 return &call_stmt->call_clobbered;
3360 /* Returns true if this is a GIMPLE_ASSIGN or a GIMPLE_CALL with a
3361 non-NULL lhs. */
3363 static inline bool
3364 gimple_has_lhs (gimple *stmt)
3366 if (is_gimple_assign (stmt))
3367 return true;
3368 if (gcall *call = dyn_cast <gcall *> (stmt))
3369 return gimple_call_lhs (call) != NULL_TREE;
3370 return false;
3374 /* Return the code of the predicate computed by conditional statement GS. */
3376 static inline enum tree_code
3377 gimple_cond_code (const gcond *gs)
3379 return (enum tree_code) gs->subcode;
3382 static inline enum tree_code
3383 gimple_cond_code (const gimple *gs)
3385 const gcond *gc = GIMPLE_CHECK2<const gcond *> (gs);
3386 return gimple_cond_code (gc);
3390 /* Set CODE to be the predicate code for the conditional statement GS. */
3392 static inline void
3393 gimple_cond_set_code (gcond *gs, enum tree_code code)
3395 gs->subcode = code;
3399 /* Return the LHS of the predicate computed by conditional statement GS. */
3401 static inline tree
3402 gimple_cond_lhs (const gcond *gs)
3404 return gs->op[0];
3407 static inline tree
3408 gimple_cond_lhs (const gimple *gs)
3410 const gcond *gc = GIMPLE_CHECK2<const gcond *> (gs);
3411 return gimple_cond_lhs (gc);
3414 /* Return the pointer to the LHS of the predicate computed by conditional
3415 statement GS. */
3417 static inline tree *
3418 gimple_cond_lhs_ptr (gcond *gs)
3420 return &gs->op[0];
3423 /* Set LHS to be the LHS operand of the predicate computed by
3424 conditional statement GS. */
3426 static inline void
3427 gimple_cond_set_lhs (gcond *gs, tree lhs)
3429 gs->op[0] = lhs;
3433 /* Return the RHS operand of the predicate computed by conditional GS. */
3435 static inline tree
3436 gimple_cond_rhs (const gcond *gs)
3438 return gs->op[1];
3441 static inline tree
3442 gimple_cond_rhs (const gimple *gs)
3444 const gcond *gc = GIMPLE_CHECK2<const gcond *> (gs);
3445 return gimple_cond_rhs (gc);
3448 /* Return the pointer to the RHS operand of the predicate computed by
3449 conditional GS. */
3451 static inline tree *
3452 gimple_cond_rhs_ptr (gcond *gs)
3454 return &gs->op[1];
3458 /* Set RHS to be the RHS operand of the predicate computed by
3459 conditional statement GS. */
3461 static inline void
3462 gimple_cond_set_rhs (gcond *gs, tree rhs)
3464 gs->op[1] = rhs;
3468 /* Return the label used by conditional statement GS when its
3469 predicate evaluates to true. */
3471 static inline tree
3472 gimple_cond_true_label (const gcond *gs)
3474 return gs->op[2];
3478 /* Set LABEL to be the label used by conditional statement GS when its
3479 predicate evaluates to true. */
3481 static inline void
3482 gimple_cond_set_true_label (gcond *gs, tree label)
3484 gs->op[2] = label;
3488 /* Set LABEL to be the label used by conditional statement GS when its
3489 predicate evaluates to false. */
3491 static inline void
3492 gimple_cond_set_false_label (gcond *gs, tree label)
3494 gs->op[3] = label;
3498 /* Return the label used by conditional statement GS when its
3499 predicate evaluates to false. */
3501 static inline tree
3502 gimple_cond_false_label (const gcond *gs)
3504 return gs->op[3];
3508 /* Set the conditional COND_STMT to be of the form 'if (1 == 0)'. */
3510 static inline void
3511 gimple_cond_make_false (gcond *gs)
3513 gimple_cond_set_lhs (gs, boolean_false_node);
3514 gimple_cond_set_rhs (gs, boolean_false_node);
3515 gs->subcode = NE_EXPR;
3519 /* Set the conditional COND_STMT to be of the form 'if (1 == 1)'. */
3521 static inline void
3522 gimple_cond_make_true (gcond *gs)
3524 gimple_cond_set_lhs (gs, boolean_true_node);
3525 gimple_cond_set_rhs (gs, boolean_false_node);
3526 gs->subcode = NE_EXPR;
3529 /* Check if conditional statemente GS is of the form 'if (1 == 1)',
3530 'if (0 == 0)', 'if (1 != 0)' or 'if (0 != 1)' */
3532 static inline bool
3533 gimple_cond_true_p (const gcond *gs)
3535 tree lhs = gimple_cond_lhs (gs);
3536 tree rhs = gimple_cond_rhs (gs);
3537 enum tree_code code = gimple_cond_code (gs);
3539 if (lhs != boolean_true_node && lhs != boolean_false_node)
3540 return false;
3542 if (rhs != boolean_true_node && rhs != boolean_false_node)
3543 return false;
3545 if (code == NE_EXPR && lhs != rhs)
3546 return true;
3548 if (code == EQ_EXPR && lhs == rhs)
3549 return true;
3551 return false;
3554 /* Check if conditional statement GS is of the form 'if (1 != 1)',
3555 'if (0 != 0)', 'if (1 == 0)' or 'if (0 == 1)' */
3557 static inline bool
3558 gimple_cond_false_p (const gcond *gs)
3560 tree lhs = gimple_cond_lhs (gs);
3561 tree rhs = gimple_cond_rhs (gs);
3562 enum tree_code code = gimple_cond_code (gs);
3564 if (lhs != boolean_true_node && lhs != boolean_false_node)
3565 return false;
3567 if (rhs != boolean_true_node && rhs != boolean_false_node)
3568 return false;
3570 if (code == NE_EXPR && lhs == rhs)
3571 return true;
3573 if (code == EQ_EXPR && lhs != rhs)
3574 return true;
3576 return false;
3579 /* Set the code, LHS and RHS of GIMPLE_COND STMT from CODE, LHS and RHS. */
3581 static inline void
3582 gimple_cond_set_condition (gcond *stmt, enum tree_code code, tree lhs,
3583 tree rhs)
3585 gimple_cond_set_code (stmt, code);
3586 gimple_cond_set_lhs (stmt, lhs);
3587 gimple_cond_set_rhs (stmt, rhs);
3590 /* Return the LABEL_DECL node used by GIMPLE_LABEL statement GS. */
3592 static inline tree
3593 gimple_label_label (const glabel *gs)
3595 return gs->op[0];
3599 /* Set LABEL to be the LABEL_DECL node used by GIMPLE_LABEL statement
3600 GS. */
3602 static inline void
3603 gimple_label_set_label (glabel *gs, tree label)
3605 gs->op[0] = label;
3609 /* Return the destination of the unconditional jump GS. */
3611 static inline tree
3612 gimple_goto_dest (const gimple *gs)
3614 GIMPLE_CHECK (gs, GIMPLE_GOTO);
3615 return gimple_op (gs, 0);
3619 /* Set DEST to be the destination of the unconditonal jump GS. */
3621 static inline void
3622 gimple_goto_set_dest (ggoto *gs, tree dest)
3624 gs->op[0] = dest;
3628 /* Return the variables declared in the GIMPLE_BIND statement GS. */
3630 static inline tree
3631 gimple_bind_vars (const gbind *bind_stmt)
3633 return bind_stmt->vars;
3637 /* Set VARS to be the set of variables declared in the GIMPLE_BIND
3638 statement GS. */
3640 static inline void
3641 gimple_bind_set_vars (gbind *bind_stmt, tree vars)
3643 bind_stmt->vars = vars;
3647 /* Append VARS to the set of variables declared in the GIMPLE_BIND
3648 statement GS. */
3650 static inline void
3651 gimple_bind_append_vars (gbind *bind_stmt, tree vars)
3653 bind_stmt->vars = chainon (bind_stmt->vars, vars);
3657 static inline gimple_seq *
3658 gimple_bind_body_ptr (gbind *bind_stmt)
3660 return &bind_stmt->body;
3663 /* Return the GIMPLE sequence contained in the GIMPLE_BIND statement GS. */
3665 static inline gimple_seq
3666 gimple_bind_body (gbind *gs)
3668 return *gimple_bind_body_ptr (gs);
3672 /* Set SEQ to be the GIMPLE sequence contained in the GIMPLE_BIND
3673 statement GS. */
3675 static inline void
3676 gimple_bind_set_body (gbind *bind_stmt, gimple_seq seq)
3678 bind_stmt->body = seq;
3682 /* Append a statement to the end of a GIMPLE_BIND's body. */
3684 static inline void
3685 gimple_bind_add_stmt (gbind *bind_stmt, gimple *stmt)
3687 gimple_seq_add_stmt (&bind_stmt->body, stmt);
3691 /* Append a sequence of statements to the end of a GIMPLE_BIND's body. */
3693 static inline void
3694 gimple_bind_add_seq (gbind *bind_stmt, gimple_seq seq)
3696 gimple_seq_add_seq (&bind_stmt->body, seq);
3700 /* Return the TREE_BLOCK node associated with GIMPLE_BIND statement
3701 GS. This is analogous to the BIND_EXPR_BLOCK field in trees. */
3703 static inline tree
3704 gimple_bind_block (const gbind *bind_stmt)
3706 return bind_stmt->block;
3710 /* Set BLOCK to be the TREE_BLOCK node associated with GIMPLE_BIND
3711 statement GS. */
3713 static inline void
3714 gimple_bind_set_block (gbind *bind_stmt, tree block)
3716 gcc_gimple_checking_assert (block == NULL_TREE
3717 || TREE_CODE (block) == BLOCK);
3718 bind_stmt->block = block;
3722 /* Return the number of input operands for GIMPLE_ASM ASM_STMT. */
3724 static inline unsigned
3725 gimple_asm_ninputs (const gasm *asm_stmt)
3727 return asm_stmt->ni;
3731 /* Return the number of output operands for GIMPLE_ASM ASM_STMT. */
3733 static inline unsigned
3734 gimple_asm_noutputs (const gasm *asm_stmt)
3736 return asm_stmt->no;
3740 /* Return the number of clobber operands for GIMPLE_ASM ASM_STMT. */
3742 static inline unsigned
3743 gimple_asm_nclobbers (const gasm *asm_stmt)
3745 return asm_stmt->nc;
3748 /* Return the number of label operands for GIMPLE_ASM ASM_STMT. */
3750 static inline unsigned
3751 gimple_asm_nlabels (const gasm *asm_stmt)
3753 return asm_stmt->nl;
3756 /* Return input operand INDEX of GIMPLE_ASM ASM_STMT. */
3758 static inline tree
3759 gimple_asm_input_op (const gasm *asm_stmt, unsigned index)
3761 gcc_gimple_checking_assert (index < asm_stmt->ni);
3762 return asm_stmt->op[index + asm_stmt->no];
3765 /* Set IN_OP to be input operand INDEX in GIMPLE_ASM ASM_STMT. */
3767 static inline void
3768 gimple_asm_set_input_op (gasm *asm_stmt, unsigned index, tree in_op)
3770 gcc_gimple_checking_assert (index < asm_stmt->ni
3771 && TREE_CODE (in_op) == TREE_LIST);
3772 asm_stmt->op[index + asm_stmt->no] = in_op;
3776 /* Return output operand INDEX of GIMPLE_ASM ASM_STMT. */
3778 static inline tree
3779 gimple_asm_output_op (const gasm *asm_stmt, unsigned index)
3781 gcc_gimple_checking_assert (index < asm_stmt->no);
3782 return asm_stmt->op[index];
3785 /* Set OUT_OP to be output operand INDEX in GIMPLE_ASM ASM_STMT. */
3787 static inline void
3788 gimple_asm_set_output_op (gasm *asm_stmt, unsigned index, tree out_op)
3790 gcc_gimple_checking_assert (index < asm_stmt->no
3791 && TREE_CODE (out_op) == TREE_LIST);
3792 asm_stmt->op[index] = out_op;
3796 /* Return clobber operand INDEX of GIMPLE_ASM ASM_STMT. */
3798 static inline tree
3799 gimple_asm_clobber_op (const gasm *asm_stmt, unsigned index)
3801 gcc_gimple_checking_assert (index < asm_stmt->nc);
3802 return asm_stmt->op[index + asm_stmt->ni + asm_stmt->no];
3806 /* Set CLOBBER_OP to be clobber operand INDEX in GIMPLE_ASM ASM_STMT. */
3808 static inline void
3809 gimple_asm_set_clobber_op (gasm *asm_stmt, unsigned index, tree clobber_op)
3811 gcc_gimple_checking_assert (index < asm_stmt->nc
3812 && TREE_CODE (clobber_op) == TREE_LIST);
3813 asm_stmt->op[index + asm_stmt->ni + asm_stmt->no] = clobber_op;
3816 /* Return label operand INDEX of GIMPLE_ASM ASM_STMT. */
3818 static inline tree
3819 gimple_asm_label_op (const gasm *asm_stmt, unsigned index)
3821 gcc_gimple_checking_assert (index < asm_stmt->nl);
3822 return asm_stmt->op[index + asm_stmt->ni + asm_stmt->nc];
3825 /* Set LABEL_OP to be label operand INDEX in GIMPLE_ASM ASM_STMT. */
3827 static inline void
3828 gimple_asm_set_label_op (gasm *asm_stmt, unsigned index, tree label_op)
3830 gcc_gimple_checking_assert (index < asm_stmt->nl
3831 && TREE_CODE (label_op) == TREE_LIST);
3832 asm_stmt->op[index + asm_stmt->ni + asm_stmt->nc] = label_op;
3835 /* Return the string representing the assembly instruction in
3836 GIMPLE_ASM ASM_STMT. */
3838 static inline const char *
3839 gimple_asm_string (const gasm *asm_stmt)
3841 return asm_stmt->string;
3845 /* Return true ASM_STMT ASM_STMT is an asm statement marked volatile. */
3847 static inline bool
3848 gimple_asm_volatile_p (const gasm *asm_stmt)
3850 return (asm_stmt->subcode & GF_ASM_VOLATILE) != 0;
3854 /* If VOLATLE_P is true, mark asm statement ASM_STMT as volatile. */
3856 static inline void
3857 gimple_asm_set_volatile (gasm *asm_stmt, bool volatile_p)
3859 if (volatile_p)
3860 asm_stmt->subcode |= GF_ASM_VOLATILE;
3861 else
3862 asm_stmt->subcode &= ~GF_ASM_VOLATILE;
3866 /* If INPUT_P is true, mark asm ASM_STMT as an ASM_INPUT. */
3868 static inline void
3869 gimple_asm_set_input (gasm *asm_stmt, bool input_p)
3871 if (input_p)
3872 asm_stmt->subcode |= GF_ASM_INPUT;
3873 else
3874 asm_stmt->subcode &= ~GF_ASM_INPUT;
3878 /* Return true if asm ASM_STMT is an ASM_INPUT. */
3880 static inline bool
3881 gimple_asm_input_p (const gasm *asm_stmt)
3883 return (asm_stmt->subcode & GF_ASM_INPUT) != 0;
3887 /* Return the types handled by GIMPLE_CATCH statement CATCH_STMT. */
3889 static inline tree
3890 gimple_catch_types (const gcatch *catch_stmt)
3892 return catch_stmt->types;
3896 /* Return a pointer to the types handled by GIMPLE_CATCH statement CATCH_STMT. */
3898 static inline tree *
3899 gimple_catch_types_ptr (gcatch *catch_stmt)
3901 return &catch_stmt->types;
3905 /* Return a pointer to the GIMPLE sequence representing the body of
3906 the handler of GIMPLE_CATCH statement CATCH_STMT. */
3908 static inline gimple_seq *
3909 gimple_catch_handler_ptr (gcatch *catch_stmt)
3911 return &catch_stmt->handler;
3915 /* Return the GIMPLE sequence representing the body of the handler of
3916 GIMPLE_CATCH statement CATCH_STMT. */
3918 static inline gimple_seq
3919 gimple_catch_handler (gcatch *catch_stmt)
3921 return *gimple_catch_handler_ptr (catch_stmt);
3925 /* Set T to be the set of types handled by GIMPLE_CATCH CATCH_STMT. */
3927 static inline void
3928 gimple_catch_set_types (gcatch *catch_stmt, tree t)
3930 catch_stmt->types = t;
3934 /* Set HANDLER to be the body of GIMPLE_CATCH CATCH_STMT. */
3936 static inline void
3937 gimple_catch_set_handler (gcatch *catch_stmt, gimple_seq handler)
3939 catch_stmt->handler = handler;
3943 /* Return the types handled by GIMPLE_EH_FILTER statement GS. */
3945 static inline tree
3946 gimple_eh_filter_types (const gimple *gs)
3948 const geh_filter *eh_filter_stmt = as_a <const geh_filter *> (gs);
3949 return eh_filter_stmt->types;
3953 /* Return a pointer to the types handled by GIMPLE_EH_FILTER statement
3954 GS. */
3956 static inline tree *
3957 gimple_eh_filter_types_ptr (gimple *gs)
3959 geh_filter *eh_filter_stmt = as_a <geh_filter *> (gs);
3960 return &eh_filter_stmt->types;
3964 /* Return a pointer to the sequence of statement to execute when
3965 GIMPLE_EH_FILTER statement fails. */
3967 static inline gimple_seq *
3968 gimple_eh_filter_failure_ptr (gimple *gs)
3970 geh_filter *eh_filter_stmt = as_a <geh_filter *> (gs);
3971 return &eh_filter_stmt->failure;
3975 /* Return the sequence of statement to execute when GIMPLE_EH_FILTER
3976 statement fails. */
3978 static inline gimple_seq
3979 gimple_eh_filter_failure (gimple *gs)
3981 return *gimple_eh_filter_failure_ptr (gs);
3985 /* Set TYPES to be the set of types handled by GIMPLE_EH_FILTER
3986 EH_FILTER_STMT. */
3988 static inline void
3989 gimple_eh_filter_set_types (geh_filter *eh_filter_stmt, tree types)
3991 eh_filter_stmt->types = types;
3995 /* Set FAILURE to be the sequence of statements to execute on failure
3996 for GIMPLE_EH_FILTER EH_FILTER_STMT. */
3998 static inline void
3999 gimple_eh_filter_set_failure (geh_filter *eh_filter_stmt,
4000 gimple_seq failure)
4002 eh_filter_stmt->failure = failure;
4005 /* Get the function decl to be called by the MUST_NOT_THROW region. */
4007 static inline tree
4008 gimple_eh_must_not_throw_fndecl (geh_mnt *eh_mnt_stmt)
4010 return eh_mnt_stmt->fndecl;
4013 /* Set the function decl to be called by GS to DECL. */
4015 static inline void
4016 gimple_eh_must_not_throw_set_fndecl (geh_mnt *eh_mnt_stmt,
4017 tree decl)
4019 eh_mnt_stmt->fndecl = decl;
4022 /* GIMPLE_EH_ELSE accessors. */
4024 static inline gimple_seq *
4025 gimple_eh_else_n_body_ptr (geh_else *eh_else_stmt)
4027 return &eh_else_stmt->n_body;
4030 static inline gimple_seq
4031 gimple_eh_else_n_body (geh_else *eh_else_stmt)
4033 return *gimple_eh_else_n_body_ptr (eh_else_stmt);
4036 static inline gimple_seq *
4037 gimple_eh_else_e_body_ptr (geh_else *eh_else_stmt)
4039 return &eh_else_stmt->e_body;
4042 static inline gimple_seq
4043 gimple_eh_else_e_body (geh_else *eh_else_stmt)
4045 return *gimple_eh_else_e_body_ptr (eh_else_stmt);
4048 static inline void
4049 gimple_eh_else_set_n_body (geh_else *eh_else_stmt, gimple_seq seq)
4051 eh_else_stmt->n_body = seq;
4054 static inline void
4055 gimple_eh_else_set_e_body (geh_else *eh_else_stmt, gimple_seq seq)
4057 eh_else_stmt->e_body = seq;
4060 /* GIMPLE_TRY accessors. */
4062 /* Return the kind of try block represented by GIMPLE_TRY GS. This is
4063 either GIMPLE_TRY_CATCH or GIMPLE_TRY_FINALLY. */
4065 static inline enum gimple_try_flags
4066 gimple_try_kind (const gimple *gs)
4068 GIMPLE_CHECK (gs, GIMPLE_TRY);
4069 return (enum gimple_try_flags) (gs->subcode & GIMPLE_TRY_KIND);
4073 /* Set the kind of try block represented by GIMPLE_TRY GS. */
4075 static inline void
4076 gimple_try_set_kind (gtry *gs, enum gimple_try_flags kind)
4078 gcc_gimple_checking_assert (kind == GIMPLE_TRY_CATCH
4079 || kind == GIMPLE_TRY_FINALLY);
4080 if (gimple_try_kind (gs) != kind)
4081 gs->subcode = (unsigned int) kind;
4085 /* Return the GIMPLE_TRY_CATCH_IS_CLEANUP flag. */
4087 static inline bool
4088 gimple_try_catch_is_cleanup (const gimple *gs)
4090 gcc_gimple_checking_assert (gimple_try_kind (gs) == GIMPLE_TRY_CATCH);
4091 return (gs->subcode & GIMPLE_TRY_CATCH_IS_CLEANUP) != 0;
4095 /* Return a pointer to the sequence of statements used as the
4096 body for GIMPLE_TRY GS. */
4098 static inline gimple_seq *
4099 gimple_try_eval_ptr (gimple *gs)
4101 gtry *try_stmt = as_a <gtry *> (gs);
4102 return &try_stmt->eval;
4106 /* Return the sequence of statements used as the body for GIMPLE_TRY GS. */
4108 static inline gimple_seq
4109 gimple_try_eval (gimple *gs)
4111 return *gimple_try_eval_ptr (gs);
4115 /* Return a pointer to the sequence of statements used as the cleanup body for
4116 GIMPLE_TRY GS. */
4118 static inline gimple_seq *
4119 gimple_try_cleanup_ptr (gimple *gs)
4121 gtry *try_stmt = as_a <gtry *> (gs);
4122 return &try_stmt->cleanup;
4126 /* Return the sequence of statements used as the cleanup body for
4127 GIMPLE_TRY GS. */
4129 static inline gimple_seq
4130 gimple_try_cleanup (gimple *gs)
4132 return *gimple_try_cleanup_ptr (gs);
4136 /* Set the GIMPLE_TRY_CATCH_IS_CLEANUP flag. */
4138 static inline void
4139 gimple_try_set_catch_is_cleanup (gtry *g, bool catch_is_cleanup)
4141 gcc_gimple_checking_assert (gimple_try_kind (g) == GIMPLE_TRY_CATCH);
4142 if (catch_is_cleanup)
4143 g->subcode |= GIMPLE_TRY_CATCH_IS_CLEANUP;
4144 else
4145 g->subcode &= ~GIMPLE_TRY_CATCH_IS_CLEANUP;
4149 /* Set EVAL to be the sequence of statements to use as the body for
4150 GIMPLE_TRY TRY_STMT. */
4152 static inline void
4153 gimple_try_set_eval (gtry *try_stmt, gimple_seq eval)
4155 try_stmt->eval = eval;
4159 /* Set CLEANUP to be the sequence of statements to use as the cleanup
4160 body for GIMPLE_TRY TRY_STMT. */
4162 static inline void
4163 gimple_try_set_cleanup (gtry *try_stmt, gimple_seq cleanup)
4165 try_stmt->cleanup = cleanup;
4169 /* Return a pointer to the cleanup sequence for cleanup statement GS. */
4171 static inline gimple_seq *
4172 gimple_wce_cleanup_ptr (gimple *gs)
4174 gimple_statement_wce *wce_stmt = as_a <gimple_statement_wce *> (gs);
4175 return &wce_stmt->cleanup;
4179 /* Return the cleanup sequence for cleanup statement GS. */
4181 static inline gimple_seq
4182 gimple_wce_cleanup (gimple *gs)
4184 return *gimple_wce_cleanup_ptr (gs);
4188 /* Set CLEANUP to be the cleanup sequence for GS. */
4190 static inline void
4191 gimple_wce_set_cleanup (gimple *gs, gimple_seq cleanup)
4193 gimple_statement_wce *wce_stmt = as_a <gimple_statement_wce *> (gs);
4194 wce_stmt->cleanup = cleanup;
4198 /* Return the CLEANUP_EH_ONLY flag for a WCE tuple. */
4200 static inline bool
4201 gimple_wce_cleanup_eh_only (const gimple *gs)
4203 GIMPLE_CHECK (gs, GIMPLE_WITH_CLEANUP_EXPR);
4204 return gs->subcode != 0;
4208 /* Set the CLEANUP_EH_ONLY flag for a WCE tuple. */
4210 static inline void
4211 gimple_wce_set_cleanup_eh_only (gimple *gs, bool eh_only_p)
4213 GIMPLE_CHECK (gs, GIMPLE_WITH_CLEANUP_EXPR);
4214 gs->subcode = (unsigned int) eh_only_p;
4218 /* Return the maximum number of arguments supported by GIMPLE_PHI GS. */
4220 static inline unsigned
4221 gimple_phi_capacity (const gimple *gs)
4223 const gphi *phi_stmt = as_a <const gphi *> (gs);
4224 return phi_stmt->capacity;
4228 /* Return the number of arguments in GIMPLE_PHI GS. This must always
4229 be exactly the number of incoming edges for the basic block holding
4230 GS. */
4232 static inline unsigned
4233 gimple_phi_num_args (const gimple *gs)
4235 const gphi *phi_stmt = as_a <const gphi *> (gs);
4236 return phi_stmt->nargs;
4240 /* Return the SSA name created by GIMPLE_PHI GS. */
4242 static inline tree
4243 gimple_phi_result (const gimple *gs)
4245 const gphi *phi_stmt = as_a <const gphi *> (gs);
4246 return phi_stmt->result;
4249 /* Return a pointer to the SSA name created by GIMPLE_PHI GS. */
4251 static inline tree *
4252 gimple_phi_result_ptr (gimple *gs)
4254 gphi *phi_stmt = as_a <gphi *> (gs);
4255 return &phi_stmt->result;
4258 /* Set RESULT to be the SSA name created by GIMPLE_PHI PHI. */
4260 static inline void
4261 gimple_phi_set_result (gphi *phi, tree result)
4263 phi->result = result;
4264 if (result && TREE_CODE (result) == SSA_NAME)
4265 SSA_NAME_DEF_STMT (result) = phi;
4269 /* Return the PHI argument corresponding to incoming edge INDEX for
4270 GIMPLE_PHI GS. */
4272 static inline struct phi_arg_d *
4273 gimple_phi_arg (gimple *gs, unsigned index)
4275 gphi *phi_stmt = as_a <gphi *> (gs);
4276 gcc_gimple_checking_assert (index <= phi_stmt->capacity);
4277 return &(phi_stmt->args[index]);
4280 /* Set PHIARG to be the argument corresponding to incoming edge INDEX
4281 for GIMPLE_PHI PHI. */
4283 static inline void
4284 gimple_phi_set_arg (gphi *phi, unsigned index, struct phi_arg_d * phiarg)
4286 gcc_gimple_checking_assert (index <= phi->nargs);
4287 phi->args[index] = *phiarg;
4290 /* Return the PHI nodes for basic block BB, or NULL if there are no
4291 PHI nodes. */
4293 static inline gimple_seq
4294 phi_nodes (const_basic_block bb)
4296 gcc_checking_assert (!(bb->flags & BB_RTL));
4297 return bb->il.gimple.phi_nodes;
4300 /* Return a pointer to the PHI nodes for basic block BB. */
4302 static inline gimple_seq *
4303 phi_nodes_ptr (basic_block bb)
4305 gcc_checking_assert (!(bb->flags & BB_RTL));
4306 return &bb->il.gimple.phi_nodes;
4309 /* Return the tree operand for argument I of PHI node GS. */
4311 static inline tree
4312 gimple_phi_arg_def (gimple *gs, size_t index)
4314 return gimple_phi_arg (gs, index)->def;
4318 /* Return a pointer to the tree operand for argument I of phi node PHI. */
4320 static inline tree *
4321 gimple_phi_arg_def_ptr (gphi *phi, size_t index)
4323 return &gimple_phi_arg (phi, index)->def;
4326 /* Return the edge associated with argument I of phi node PHI. */
4328 static inline edge
4329 gimple_phi_arg_edge (gphi *phi, size_t i)
4331 return EDGE_PRED (gimple_bb (phi), i);
4334 /* Return the source location of gimple argument I of phi node PHI. */
4336 static inline source_location
4337 gimple_phi_arg_location (gphi *phi, size_t i)
4339 return gimple_phi_arg (phi, i)->locus;
4342 /* Return the source location of the argument on edge E of phi node PHI. */
4344 static inline source_location
4345 gimple_phi_arg_location_from_edge (gphi *phi, edge e)
4347 return gimple_phi_arg (phi, e->dest_idx)->locus;
4350 /* Set the source location of gimple argument I of phi node PHI to LOC. */
4352 static inline void
4353 gimple_phi_arg_set_location (gphi *phi, size_t i, source_location loc)
4355 gimple_phi_arg (phi, i)->locus = loc;
4358 /* Return TRUE if argument I of phi node PHI has a location record. */
4360 static inline bool
4361 gimple_phi_arg_has_location (gphi *phi, size_t i)
4363 return gimple_phi_arg_location (phi, i) != UNKNOWN_LOCATION;
4367 /* Return the region number for GIMPLE_RESX RESX_STMT. */
4369 static inline int
4370 gimple_resx_region (const gresx *resx_stmt)
4372 return resx_stmt->region;
4375 /* Set REGION to be the region number for GIMPLE_RESX RESX_STMT. */
4377 static inline void
4378 gimple_resx_set_region (gresx *resx_stmt, int region)
4380 resx_stmt->region = region;
4383 /* Return the region number for GIMPLE_EH_DISPATCH EH_DISPATCH_STMT. */
4385 static inline int
4386 gimple_eh_dispatch_region (const geh_dispatch *eh_dispatch_stmt)
4388 return eh_dispatch_stmt->region;
4391 /* Set REGION to be the region number for GIMPLE_EH_DISPATCH
4392 EH_DISPATCH_STMT. */
4394 static inline void
4395 gimple_eh_dispatch_set_region (geh_dispatch *eh_dispatch_stmt, int region)
4397 eh_dispatch_stmt->region = region;
4400 /* Return the number of labels associated with the switch statement GS. */
4402 static inline unsigned
4403 gimple_switch_num_labels (const gswitch *gs)
4405 unsigned num_ops;
4406 GIMPLE_CHECK (gs, GIMPLE_SWITCH);
4407 num_ops = gimple_num_ops (gs);
4408 gcc_gimple_checking_assert (num_ops > 1);
4409 return num_ops - 1;
4413 /* Set NLABELS to be the number of labels for the switch statement GS. */
4415 static inline void
4416 gimple_switch_set_num_labels (gswitch *g, unsigned nlabels)
4418 GIMPLE_CHECK (g, GIMPLE_SWITCH);
4419 gimple_set_num_ops (g, nlabels + 1);
4423 /* Return the index variable used by the switch statement GS. */
4425 static inline tree
4426 gimple_switch_index (const gswitch *gs)
4428 return gs->op[0];
4432 /* Return a pointer to the index variable for the switch statement GS. */
4434 static inline tree *
4435 gimple_switch_index_ptr (gswitch *gs)
4437 return &gs->op[0];
4441 /* Set INDEX to be the index variable for switch statement GS. */
4443 static inline void
4444 gimple_switch_set_index (gswitch *gs, tree index)
4446 gcc_gimple_checking_assert (SSA_VAR_P (index) || CONSTANT_CLASS_P (index));
4447 gs->op[0] = index;
4451 /* Return the label numbered INDEX. The default label is 0, followed by any
4452 labels in a switch statement. */
4454 static inline tree
4455 gimple_switch_label (const gswitch *gs, unsigned index)
4457 gcc_gimple_checking_assert (gimple_num_ops (gs) > index + 1);
4458 return gs->op[index + 1];
4461 /* Set the label number INDEX to LABEL. 0 is always the default label. */
4463 static inline void
4464 gimple_switch_set_label (gswitch *gs, unsigned index, tree label)
4466 gcc_gimple_checking_assert (gimple_num_ops (gs) > index + 1
4467 && (label == NULL_TREE
4468 || TREE_CODE (label) == CASE_LABEL_EXPR));
4469 gs->op[index + 1] = label;
4472 /* Return the default label for a switch statement. */
4474 static inline tree
4475 gimple_switch_default_label (const gswitch *gs)
4477 tree label = gimple_switch_label (gs, 0);
4478 gcc_checking_assert (!CASE_LOW (label) && !CASE_HIGH (label));
4479 return label;
4482 /* Set the default label for a switch statement. */
4484 static inline void
4485 gimple_switch_set_default_label (gswitch *gs, tree label)
4487 gcc_checking_assert (!CASE_LOW (label) && !CASE_HIGH (label));
4488 gimple_switch_set_label (gs, 0, label);
4491 /* Return true if GS is a GIMPLE_DEBUG statement. */
4493 static inline bool
4494 is_gimple_debug (const gimple *gs)
4496 return gimple_code (gs) == GIMPLE_DEBUG;
4499 /* Return true if S is a GIMPLE_DEBUG BIND statement. */
4501 static inline bool
4502 gimple_debug_bind_p (const gimple *s)
4504 if (is_gimple_debug (s))
4505 return s->subcode == GIMPLE_DEBUG_BIND;
4507 return false;
4510 /* Return the variable bound in a GIMPLE_DEBUG bind statement. */
4512 static inline tree
4513 gimple_debug_bind_get_var (gimple *dbg)
4515 GIMPLE_CHECK (dbg, GIMPLE_DEBUG);
4516 gcc_gimple_checking_assert (gimple_debug_bind_p (dbg));
4517 return gimple_op (dbg, 0);
4520 /* Return the value bound to the variable in a GIMPLE_DEBUG bind
4521 statement. */
4523 static inline tree
4524 gimple_debug_bind_get_value (gimple *dbg)
4526 GIMPLE_CHECK (dbg, GIMPLE_DEBUG);
4527 gcc_gimple_checking_assert (gimple_debug_bind_p (dbg));
4528 return gimple_op (dbg, 1);
4531 /* Return a pointer to the value bound to the variable in a
4532 GIMPLE_DEBUG bind statement. */
4534 static inline tree *
4535 gimple_debug_bind_get_value_ptr (gimple *dbg)
4537 GIMPLE_CHECK (dbg, GIMPLE_DEBUG);
4538 gcc_gimple_checking_assert (gimple_debug_bind_p (dbg));
4539 return gimple_op_ptr (dbg, 1);
4542 /* Set the variable bound in a GIMPLE_DEBUG bind statement. */
4544 static inline void
4545 gimple_debug_bind_set_var (gimple *dbg, tree var)
4547 GIMPLE_CHECK (dbg, GIMPLE_DEBUG);
4548 gcc_gimple_checking_assert (gimple_debug_bind_p (dbg));
4549 gimple_set_op (dbg, 0, var);
4552 /* Set the value bound to the variable in a GIMPLE_DEBUG bind
4553 statement. */
4555 static inline void
4556 gimple_debug_bind_set_value (gimple *dbg, tree value)
4558 GIMPLE_CHECK (dbg, GIMPLE_DEBUG);
4559 gcc_gimple_checking_assert (gimple_debug_bind_p (dbg));
4560 gimple_set_op (dbg, 1, value);
4563 /* The second operand of a GIMPLE_DEBUG_BIND, when the value was
4564 optimized away. */
4565 #define GIMPLE_DEBUG_BIND_NOVALUE NULL_TREE /* error_mark_node */
4567 /* Remove the value bound to the variable in a GIMPLE_DEBUG bind
4568 statement. */
4570 static inline void
4571 gimple_debug_bind_reset_value (gimple *dbg)
4573 GIMPLE_CHECK (dbg, GIMPLE_DEBUG);
4574 gcc_gimple_checking_assert (gimple_debug_bind_p (dbg));
4575 gimple_set_op (dbg, 1, GIMPLE_DEBUG_BIND_NOVALUE);
4578 /* Return true if the GIMPLE_DEBUG bind statement is bound to a
4579 value. */
4581 static inline bool
4582 gimple_debug_bind_has_value_p (gimple *dbg)
4584 GIMPLE_CHECK (dbg, GIMPLE_DEBUG);
4585 gcc_gimple_checking_assert (gimple_debug_bind_p (dbg));
4586 return gimple_op (dbg, 1) != GIMPLE_DEBUG_BIND_NOVALUE;
4589 #undef GIMPLE_DEBUG_BIND_NOVALUE
4591 /* Return true if S is a GIMPLE_DEBUG SOURCE BIND statement. */
4593 static inline bool
4594 gimple_debug_source_bind_p (const gimple *s)
4596 if (is_gimple_debug (s))
4597 return s->subcode == GIMPLE_DEBUG_SOURCE_BIND;
4599 return false;
4602 /* Return the variable bound in a GIMPLE_DEBUG source bind statement. */
4604 static inline tree
4605 gimple_debug_source_bind_get_var (gimple *dbg)
4607 GIMPLE_CHECK (dbg, GIMPLE_DEBUG);
4608 gcc_gimple_checking_assert (gimple_debug_source_bind_p (dbg));
4609 return gimple_op (dbg, 0);
4612 /* Return the value bound to the variable in a GIMPLE_DEBUG source bind
4613 statement. */
4615 static inline tree
4616 gimple_debug_source_bind_get_value (gimple *dbg)
4618 GIMPLE_CHECK (dbg, GIMPLE_DEBUG);
4619 gcc_gimple_checking_assert (gimple_debug_source_bind_p (dbg));
4620 return gimple_op (dbg, 1);
4623 /* Return a pointer to the value bound to the variable in a
4624 GIMPLE_DEBUG source bind statement. */
4626 static inline tree *
4627 gimple_debug_source_bind_get_value_ptr (gimple *dbg)
4629 GIMPLE_CHECK (dbg, GIMPLE_DEBUG);
4630 gcc_gimple_checking_assert (gimple_debug_source_bind_p (dbg));
4631 return gimple_op_ptr (dbg, 1);
4634 /* Set the variable bound in a GIMPLE_DEBUG source bind statement. */
4636 static inline void
4637 gimple_debug_source_bind_set_var (gimple *dbg, tree var)
4639 GIMPLE_CHECK (dbg, GIMPLE_DEBUG);
4640 gcc_gimple_checking_assert (gimple_debug_source_bind_p (dbg));
4641 gimple_set_op (dbg, 0, var);
4644 /* Set the value bound to the variable in a GIMPLE_DEBUG source bind
4645 statement. */
4647 static inline void
4648 gimple_debug_source_bind_set_value (gimple *dbg, tree value)
4650 GIMPLE_CHECK (dbg, GIMPLE_DEBUG);
4651 gcc_gimple_checking_assert (gimple_debug_source_bind_p (dbg));
4652 gimple_set_op (dbg, 1, value);
4655 /* Return the line number for EXPR, or return -1 if we have no line
4656 number information for it. */
4657 static inline int
4658 get_lineno (const gimple *stmt)
4660 location_t loc;
4662 if (!stmt)
4663 return -1;
4665 loc = gimple_location (stmt);
4666 if (loc == UNKNOWN_LOCATION)
4667 return -1;
4669 return LOCATION_LINE (loc);
4672 /* Return a pointer to the body for the OMP statement GS. */
4674 static inline gimple_seq *
4675 gimple_omp_body_ptr (gimple *gs)
4677 return &static_cast <gimple_statement_omp *> (gs)->body;
4680 /* Return the body for the OMP statement GS. */
4682 static inline gimple_seq
4683 gimple_omp_body (gimple *gs)
4685 return *gimple_omp_body_ptr (gs);
4688 /* Set BODY to be the body for the OMP statement GS. */
4690 static inline void
4691 gimple_omp_set_body (gimple *gs, gimple_seq body)
4693 static_cast <gimple_statement_omp *> (gs)->body = body;
4697 /* Return the name associated with OMP_CRITICAL statement CRIT_STMT. */
4699 static inline tree
4700 gimple_omp_critical_name (const gomp_critical *crit_stmt)
4702 return crit_stmt->name;
4706 /* Return a pointer to the name associated with OMP critical statement
4707 CRIT_STMT. */
4709 static inline tree *
4710 gimple_omp_critical_name_ptr (gomp_critical *crit_stmt)
4712 return &crit_stmt->name;
4716 /* Set NAME to be the name associated with OMP critical statement
4717 CRIT_STMT. */
4719 static inline void
4720 gimple_omp_critical_set_name (gomp_critical *crit_stmt, tree name)
4722 crit_stmt->name = name;
4726 /* Return the clauses associated with OMP_CRITICAL statement CRIT_STMT. */
4728 static inline tree
4729 gimple_omp_critical_clauses (const gomp_critical *crit_stmt)
4731 return crit_stmt->clauses;
4735 /* Return a pointer to the clauses associated with OMP critical statement
4736 CRIT_STMT. */
4738 static inline tree *
4739 gimple_omp_critical_clauses_ptr (gomp_critical *crit_stmt)
4741 return &crit_stmt->clauses;
4745 /* Set CLAUSES to be the clauses associated with OMP critical statement
4746 CRIT_STMT. */
4748 static inline void
4749 gimple_omp_critical_set_clauses (gomp_critical *crit_stmt, tree clauses)
4751 crit_stmt->clauses = clauses;
4755 /* Return the clauses associated with OMP_ORDERED statement ORD_STMT. */
4757 static inline tree
4758 gimple_omp_ordered_clauses (const gomp_ordered *ord_stmt)
4760 return ord_stmt->clauses;
4764 /* Return a pointer to the clauses associated with OMP ordered statement
4765 ORD_STMT. */
4767 static inline tree *
4768 gimple_omp_ordered_clauses_ptr (gomp_ordered *ord_stmt)
4770 return &ord_stmt->clauses;
4774 /* Set CLAUSES to be the clauses associated with OMP ordered statement
4775 ORD_STMT. */
4777 static inline void
4778 gimple_omp_ordered_set_clauses (gomp_ordered *ord_stmt, tree clauses)
4780 ord_stmt->clauses = clauses;
4784 /* Return the kind of the OMP_FOR statemement G. */
4786 static inline int
4787 gimple_omp_for_kind (const gimple *g)
4789 GIMPLE_CHECK (g, GIMPLE_OMP_FOR);
4790 return (gimple_omp_subcode (g) & GF_OMP_FOR_KIND_MASK);
4794 /* Set the kind of the OMP_FOR statement G. */
4796 static inline void
4797 gimple_omp_for_set_kind (gomp_for *g, int kind)
4799 g->subcode = (g->subcode & ~GF_OMP_FOR_KIND_MASK)
4800 | (kind & GF_OMP_FOR_KIND_MASK);
4804 /* Return true if OMP_FOR statement G has the
4805 GF_OMP_FOR_COMBINED flag set. */
4807 static inline bool
4808 gimple_omp_for_combined_p (const gimple *g)
4810 GIMPLE_CHECK (g, GIMPLE_OMP_FOR);
4811 return (gimple_omp_subcode (g) & GF_OMP_FOR_COMBINED) != 0;
4815 /* Set the GF_OMP_FOR_COMBINED field in the OMP_FOR statement G depending on
4816 the boolean value of COMBINED_P. */
4818 static inline void
4819 gimple_omp_for_set_combined_p (gomp_for *g, bool combined_p)
4821 if (combined_p)
4822 g->subcode |= GF_OMP_FOR_COMBINED;
4823 else
4824 g->subcode &= ~GF_OMP_FOR_COMBINED;
4828 /* Return true if the OMP_FOR statement G has the
4829 GF_OMP_FOR_COMBINED_INTO flag set. */
4831 static inline bool
4832 gimple_omp_for_combined_into_p (const gimple *g)
4834 GIMPLE_CHECK (g, GIMPLE_OMP_FOR);
4835 return (gimple_omp_subcode (g) & GF_OMP_FOR_COMBINED_INTO) != 0;
4839 /* Set the GF_OMP_FOR_COMBINED_INTO field in the OMP_FOR statement G depending
4840 on the boolean value of COMBINED_P. */
4842 static inline void
4843 gimple_omp_for_set_combined_into_p (gomp_for *g, bool combined_p)
4845 if (combined_p)
4846 g->subcode |= GF_OMP_FOR_COMBINED_INTO;
4847 else
4848 g->subcode &= ~GF_OMP_FOR_COMBINED_INTO;
4852 /* Return the clauses associated with the OMP_FOR statement GS. */
4854 static inline tree
4855 gimple_omp_for_clauses (const gimple *gs)
4857 const gomp_for *omp_for_stmt = as_a <const gomp_for *> (gs);
4858 return omp_for_stmt->clauses;
4862 /* Return a pointer to the clauses associated with the OMP_FOR statement
4863 GS. */
4865 static inline tree *
4866 gimple_omp_for_clauses_ptr (gimple *gs)
4868 gomp_for *omp_for_stmt = as_a <gomp_for *> (gs);
4869 return &omp_for_stmt->clauses;
4873 /* Set CLAUSES to be the list of clauses associated with the OMP_FOR statement
4874 GS. */
4876 static inline void
4877 gimple_omp_for_set_clauses (gimple *gs, tree clauses)
4879 gomp_for *omp_for_stmt = as_a <gomp_for *> (gs);
4880 omp_for_stmt->clauses = clauses;
4884 /* Get the collapse count of the OMP_FOR statement GS. */
4886 static inline size_t
4887 gimple_omp_for_collapse (gimple *gs)
4889 gomp_for *omp_for_stmt = as_a <gomp_for *> (gs);
4890 return omp_for_stmt->collapse;
4894 /* Return the condition code associated with the OMP_FOR statement GS. */
4896 static inline enum tree_code
4897 gimple_omp_for_cond (const gimple *gs, size_t i)
4899 const gomp_for *omp_for_stmt = as_a <const gomp_for *> (gs);
4900 gcc_gimple_checking_assert (i < omp_for_stmt->collapse);
4901 return omp_for_stmt->iter[i].cond;
4905 /* Set COND to be the condition code for the OMP_FOR statement GS. */
4907 static inline void
4908 gimple_omp_for_set_cond (gimple *gs, size_t i, enum tree_code cond)
4910 gomp_for *omp_for_stmt = as_a <gomp_for *> (gs);
4911 gcc_gimple_checking_assert (TREE_CODE_CLASS (cond) == tcc_comparison
4912 && i < omp_for_stmt->collapse);
4913 omp_for_stmt->iter[i].cond = cond;
4917 /* Return the index variable for the OMP_FOR statement GS. */
4919 static inline tree
4920 gimple_omp_for_index (const gimple *gs, size_t i)
4922 const gomp_for *omp_for_stmt = as_a <const gomp_for *> (gs);
4923 gcc_gimple_checking_assert (i < omp_for_stmt->collapse);
4924 return omp_for_stmt->iter[i].index;
4928 /* Return a pointer to the index variable for the OMP_FOR statement GS. */
4930 static inline tree *
4931 gimple_omp_for_index_ptr (gimple *gs, size_t i)
4933 gomp_for *omp_for_stmt = as_a <gomp_for *> (gs);
4934 gcc_gimple_checking_assert (i < omp_for_stmt->collapse);
4935 return &omp_for_stmt->iter[i].index;
4939 /* Set INDEX to be the index variable for the OMP_FOR statement GS. */
4941 static inline void
4942 gimple_omp_for_set_index (gimple *gs, size_t i, tree index)
4944 gomp_for *omp_for_stmt = as_a <gomp_for *> (gs);
4945 gcc_gimple_checking_assert (i < omp_for_stmt->collapse);
4946 omp_for_stmt->iter[i].index = index;
4950 /* Return the initial value for the OMP_FOR statement GS. */
4952 static inline tree
4953 gimple_omp_for_initial (const gimple *gs, size_t i)
4955 const gomp_for *omp_for_stmt = as_a <const gomp_for *> (gs);
4956 gcc_gimple_checking_assert (i < omp_for_stmt->collapse);
4957 return omp_for_stmt->iter[i].initial;
4961 /* Return a pointer to the initial value for the OMP_FOR statement GS. */
4963 static inline tree *
4964 gimple_omp_for_initial_ptr (gimple *gs, size_t i)
4966 gomp_for *omp_for_stmt = as_a <gomp_for *> (gs);
4967 gcc_gimple_checking_assert (i < omp_for_stmt->collapse);
4968 return &omp_for_stmt->iter[i].initial;
4972 /* Set INITIAL to be the initial value for the OMP_FOR statement GS. */
4974 static inline void
4975 gimple_omp_for_set_initial (gimple *gs, size_t i, tree initial)
4977 gomp_for *omp_for_stmt = as_a <gomp_for *> (gs);
4978 gcc_gimple_checking_assert (i < omp_for_stmt->collapse);
4979 omp_for_stmt->iter[i].initial = initial;
4983 /* Return the final value for the OMP_FOR statement GS. */
4985 static inline tree
4986 gimple_omp_for_final (const gimple *gs, size_t i)
4988 const gomp_for *omp_for_stmt = as_a <const gomp_for *> (gs);
4989 gcc_gimple_checking_assert (i < omp_for_stmt->collapse);
4990 return omp_for_stmt->iter[i].final;
4994 /* Return a pointer to the final value for the OMP_FOR statement GS. */
4996 static inline tree *
4997 gimple_omp_for_final_ptr (gimple *gs, size_t i)
4999 gomp_for *omp_for_stmt = as_a <gomp_for *> (gs);
5000 gcc_gimple_checking_assert (i < omp_for_stmt->collapse);
5001 return &omp_for_stmt->iter[i].final;
5005 /* Set FINAL to be the final value for the OMP_FOR statement GS. */
5007 static inline void
5008 gimple_omp_for_set_final (gimple *gs, size_t i, tree final)
5010 gomp_for *omp_for_stmt = as_a <gomp_for *> (gs);
5011 gcc_gimple_checking_assert (i < omp_for_stmt->collapse);
5012 omp_for_stmt->iter[i].final = final;
5016 /* Return the increment value for the OMP_FOR statement GS. */
5018 static inline tree
5019 gimple_omp_for_incr (const gimple *gs, size_t i)
5021 const gomp_for *omp_for_stmt = as_a <const gomp_for *> (gs);
5022 gcc_gimple_checking_assert (i < omp_for_stmt->collapse);
5023 return omp_for_stmt->iter[i].incr;
5027 /* Return a pointer to the increment value for the OMP_FOR statement GS. */
5029 static inline tree *
5030 gimple_omp_for_incr_ptr (gimple *gs, size_t i)
5032 gomp_for *omp_for_stmt = as_a <gomp_for *> (gs);
5033 gcc_gimple_checking_assert (i < omp_for_stmt->collapse);
5034 return &omp_for_stmt->iter[i].incr;
5038 /* Set INCR to be the increment value for the OMP_FOR statement GS. */
5040 static inline void
5041 gimple_omp_for_set_incr (gimple *gs, size_t i, tree incr)
5043 gomp_for *omp_for_stmt = as_a <gomp_for *> (gs);
5044 gcc_gimple_checking_assert (i < omp_for_stmt->collapse);
5045 omp_for_stmt->iter[i].incr = incr;
5049 /* Return a pointer to the sequence of statements to execute before the OMP_FOR
5050 statement GS starts. */
5052 static inline gimple_seq *
5053 gimple_omp_for_pre_body_ptr (gimple *gs)
5055 gomp_for *omp_for_stmt = as_a <gomp_for *> (gs);
5056 return &omp_for_stmt->pre_body;
5060 /* Return the sequence of statements to execute before the OMP_FOR
5061 statement GS starts. */
5063 static inline gimple_seq
5064 gimple_omp_for_pre_body (gimple *gs)
5066 return *gimple_omp_for_pre_body_ptr (gs);
5070 /* Set PRE_BODY to be the sequence of statements to execute before the
5071 OMP_FOR statement GS starts. */
5073 static inline void
5074 gimple_omp_for_set_pre_body (gimple *gs, gimple_seq pre_body)
5076 gomp_for *omp_for_stmt = as_a <gomp_for *> (gs);
5077 omp_for_stmt->pre_body = pre_body;
5081 /* Return the clauses associated with OMP_PARALLEL GS. */
5083 static inline tree
5084 gimple_omp_parallel_clauses (const gimple *gs)
5086 const gomp_parallel *omp_parallel_stmt = as_a <const gomp_parallel *> (gs);
5087 return omp_parallel_stmt->clauses;
5091 /* Return a pointer to the clauses associated with OMP_PARALLEL_STMT. */
5093 static inline tree *
5094 gimple_omp_parallel_clauses_ptr (gomp_parallel *omp_parallel_stmt)
5096 return &omp_parallel_stmt->clauses;
5100 /* Set CLAUSES to be the list of clauses associated with OMP_PARALLEL_STMT. */
5102 static inline void
5103 gimple_omp_parallel_set_clauses (gomp_parallel *omp_parallel_stmt,
5104 tree clauses)
5106 omp_parallel_stmt->clauses = clauses;
5110 /* Return the child function used to hold the body of OMP_PARALLEL_STMT. */
5112 static inline tree
5113 gimple_omp_parallel_child_fn (const gomp_parallel *omp_parallel_stmt)
5115 return omp_parallel_stmt->child_fn;
5118 /* Return a pointer to the child function used to hold the body of
5119 OMP_PARALLEL_STMT. */
5121 static inline tree *
5122 gimple_omp_parallel_child_fn_ptr (gomp_parallel *omp_parallel_stmt)
5124 return &omp_parallel_stmt->child_fn;
5128 /* Set CHILD_FN to be the child function for OMP_PARALLEL_STMT. */
5130 static inline void
5131 gimple_omp_parallel_set_child_fn (gomp_parallel *omp_parallel_stmt,
5132 tree child_fn)
5134 omp_parallel_stmt->child_fn = child_fn;
5138 /* Return the artificial argument used to send variables and values
5139 from the parent to the children threads in OMP_PARALLEL_STMT. */
5141 static inline tree
5142 gimple_omp_parallel_data_arg (const gomp_parallel *omp_parallel_stmt)
5144 return omp_parallel_stmt->data_arg;
5148 /* Return a pointer to the data argument for OMP_PARALLEL_STMT. */
5150 static inline tree *
5151 gimple_omp_parallel_data_arg_ptr (gomp_parallel *omp_parallel_stmt)
5153 return &omp_parallel_stmt->data_arg;
5157 /* Set DATA_ARG to be the data argument for OMP_PARALLEL_STMT. */
5159 static inline void
5160 gimple_omp_parallel_set_data_arg (gomp_parallel *omp_parallel_stmt,
5161 tree data_arg)
5163 omp_parallel_stmt->data_arg = data_arg;
5167 /* Return the clauses associated with OMP_TASK GS. */
5169 static inline tree
5170 gimple_omp_task_clauses (const gimple *gs)
5172 const gomp_task *omp_task_stmt = as_a <const gomp_task *> (gs);
5173 return omp_task_stmt->clauses;
5177 /* Return a pointer to the clauses associated with OMP_TASK GS. */
5179 static inline tree *
5180 gimple_omp_task_clauses_ptr (gimple *gs)
5182 gomp_task *omp_task_stmt = as_a <gomp_task *> (gs);
5183 return &omp_task_stmt->clauses;
5187 /* Set CLAUSES to be the list of clauses associated with OMP_TASK
5188 GS. */
5190 static inline void
5191 gimple_omp_task_set_clauses (gimple *gs, tree clauses)
5193 gomp_task *omp_task_stmt = as_a <gomp_task *> (gs);
5194 omp_task_stmt->clauses = clauses;
5198 /* Return true if OMP task statement G has the
5199 GF_OMP_TASK_TASKLOOP flag set. */
5201 static inline bool
5202 gimple_omp_task_taskloop_p (const gimple *g)
5204 GIMPLE_CHECK (g, GIMPLE_OMP_TASK);
5205 return (gimple_omp_subcode (g) & GF_OMP_TASK_TASKLOOP) != 0;
5209 /* Set the GF_OMP_TASK_TASKLOOP field in G depending on the boolean
5210 value of TASKLOOP_P. */
5212 static inline void
5213 gimple_omp_task_set_taskloop_p (gimple *g, bool taskloop_p)
5215 GIMPLE_CHECK (g, GIMPLE_OMP_TASK);
5216 if (taskloop_p)
5217 g->subcode |= GF_OMP_TASK_TASKLOOP;
5218 else
5219 g->subcode &= ~GF_OMP_TASK_TASKLOOP;
5223 /* Return the child function used to hold the body of OMP_TASK GS. */
5225 static inline tree
5226 gimple_omp_task_child_fn (const gimple *gs)
5228 const gomp_task *omp_task_stmt = as_a <const gomp_task *> (gs);
5229 return omp_task_stmt->child_fn;
5232 /* Return a pointer to the child function used to hold the body of
5233 OMP_TASK GS. */
5235 static inline tree *
5236 gimple_omp_task_child_fn_ptr (gimple *gs)
5238 gomp_task *omp_task_stmt = as_a <gomp_task *> (gs);
5239 return &omp_task_stmt->child_fn;
5243 /* Set CHILD_FN to be the child function for OMP_TASK GS. */
5245 static inline void
5246 gimple_omp_task_set_child_fn (gimple *gs, tree child_fn)
5248 gomp_task *omp_task_stmt = as_a <gomp_task *> (gs);
5249 omp_task_stmt->child_fn = child_fn;
5253 /* Return the artificial argument used to send variables and values
5254 from the parent to the children threads in OMP_TASK GS. */
5256 static inline tree
5257 gimple_omp_task_data_arg (const gimple *gs)
5259 const gomp_task *omp_task_stmt = as_a <const gomp_task *> (gs);
5260 return omp_task_stmt->data_arg;
5264 /* Return a pointer to the data argument for OMP_TASK GS. */
5266 static inline tree *
5267 gimple_omp_task_data_arg_ptr (gimple *gs)
5269 gomp_task *omp_task_stmt = as_a <gomp_task *> (gs);
5270 return &omp_task_stmt->data_arg;
5274 /* Set DATA_ARG to be the data argument for OMP_TASK GS. */
5276 static inline void
5277 gimple_omp_task_set_data_arg (gimple *gs, tree data_arg)
5279 gomp_task *omp_task_stmt = as_a <gomp_task *> (gs);
5280 omp_task_stmt->data_arg = data_arg;
5284 /* Return the clauses associated with OMP_TASK GS. */
5286 static inline tree
5287 gimple_omp_taskreg_clauses (const gimple *gs)
5289 const gimple_statement_omp_taskreg *omp_taskreg_stmt
5290 = as_a <const gimple_statement_omp_taskreg *> (gs);
5291 return omp_taskreg_stmt->clauses;
5295 /* Return a pointer to the clauses associated with OMP_TASK GS. */
5297 static inline tree *
5298 gimple_omp_taskreg_clauses_ptr (gimple *gs)
5300 gimple_statement_omp_taskreg *omp_taskreg_stmt
5301 = as_a <gimple_statement_omp_taskreg *> (gs);
5302 return &omp_taskreg_stmt->clauses;
5306 /* Set CLAUSES to be the list of clauses associated with OMP_TASK
5307 GS. */
5309 static inline void
5310 gimple_omp_taskreg_set_clauses (gimple *gs, tree clauses)
5312 gimple_statement_omp_taskreg *omp_taskreg_stmt
5313 = as_a <gimple_statement_omp_taskreg *> (gs);
5314 omp_taskreg_stmt->clauses = clauses;
5318 /* Return the child function used to hold the body of OMP_TASK GS. */
5320 static inline tree
5321 gimple_omp_taskreg_child_fn (const gimple *gs)
5323 const gimple_statement_omp_taskreg *omp_taskreg_stmt
5324 = as_a <const gimple_statement_omp_taskreg *> (gs);
5325 return omp_taskreg_stmt->child_fn;
5328 /* Return a pointer to the child function used to hold the body of
5329 OMP_TASK GS. */
5331 static inline tree *
5332 gimple_omp_taskreg_child_fn_ptr (gimple *gs)
5334 gimple_statement_omp_taskreg *omp_taskreg_stmt
5335 = as_a <gimple_statement_omp_taskreg *> (gs);
5336 return &omp_taskreg_stmt->child_fn;
5340 /* Set CHILD_FN to be the child function for OMP_TASK GS. */
5342 static inline void
5343 gimple_omp_taskreg_set_child_fn (gimple *gs, tree child_fn)
5345 gimple_statement_omp_taskreg *omp_taskreg_stmt
5346 = as_a <gimple_statement_omp_taskreg *> (gs);
5347 omp_taskreg_stmt->child_fn = child_fn;
5351 /* Return the artificial argument used to send variables and values
5352 from the parent to the children threads in OMP_TASK GS. */
5354 static inline tree
5355 gimple_omp_taskreg_data_arg (const gimple *gs)
5357 const gimple_statement_omp_taskreg *omp_taskreg_stmt
5358 = as_a <const gimple_statement_omp_taskreg *> (gs);
5359 return omp_taskreg_stmt->data_arg;
5363 /* Return a pointer to the data argument for OMP_TASK GS. */
5365 static inline tree *
5366 gimple_omp_taskreg_data_arg_ptr (gimple *gs)
5368 gimple_statement_omp_taskreg *omp_taskreg_stmt
5369 = as_a <gimple_statement_omp_taskreg *> (gs);
5370 return &omp_taskreg_stmt->data_arg;
5374 /* Set DATA_ARG to be the data argument for OMP_TASK GS. */
5376 static inline void
5377 gimple_omp_taskreg_set_data_arg (gimple *gs, tree data_arg)
5379 gimple_statement_omp_taskreg *omp_taskreg_stmt
5380 = as_a <gimple_statement_omp_taskreg *> (gs);
5381 omp_taskreg_stmt->data_arg = data_arg;
5385 /* Return the copy function used to hold the body of OMP_TASK GS. */
5387 static inline tree
5388 gimple_omp_task_copy_fn (const gimple *gs)
5390 const gomp_task *omp_task_stmt = as_a <const gomp_task *> (gs);
5391 return omp_task_stmt->copy_fn;
5394 /* Return a pointer to the copy function used to hold the body of
5395 OMP_TASK GS. */
5397 static inline tree *
5398 gimple_omp_task_copy_fn_ptr (gimple *gs)
5400 gomp_task *omp_task_stmt = as_a <gomp_task *> (gs);
5401 return &omp_task_stmt->copy_fn;
5405 /* Set CHILD_FN to be the copy function for OMP_TASK GS. */
5407 static inline void
5408 gimple_omp_task_set_copy_fn (gimple *gs, tree copy_fn)
5410 gomp_task *omp_task_stmt = as_a <gomp_task *> (gs);
5411 omp_task_stmt->copy_fn = copy_fn;
5415 /* Return size of the data block in bytes in OMP_TASK GS. */
5417 static inline tree
5418 gimple_omp_task_arg_size (const gimple *gs)
5420 const gomp_task *omp_task_stmt = as_a <const gomp_task *> (gs);
5421 return omp_task_stmt->arg_size;
5425 /* Return a pointer to the data block size for OMP_TASK GS. */
5427 static inline tree *
5428 gimple_omp_task_arg_size_ptr (gimple *gs)
5430 gomp_task *omp_task_stmt = as_a <gomp_task *> (gs);
5431 return &omp_task_stmt->arg_size;
5435 /* Set ARG_SIZE to be the data block size for OMP_TASK GS. */
5437 static inline void
5438 gimple_omp_task_set_arg_size (gimple *gs, tree arg_size)
5440 gomp_task *omp_task_stmt = as_a <gomp_task *> (gs);
5441 omp_task_stmt->arg_size = arg_size;
5445 /* Return align of the data block in bytes in OMP_TASK GS. */
5447 static inline tree
5448 gimple_omp_task_arg_align (const gimple *gs)
5450 const gomp_task *omp_task_stmt = as_a <const gomp_task *> (gs);
5451 return omp_task_stmt->arg_align;
5455 /* Return a pointer to the data block align for OMP_TASK GS. */
5457 static inline tree *
5458 gimple_omp_task_arg_align_ptr (gimple *gs)
5460 gomp_task *omp_task_stmt = as_a <gomp_task *> (gs);
5461 return &omp_task_stmt->arg_align;
5465 /* Set ARG_SIZE to be the data block align for OMP_TASK GS. */
5467 static inline void
5468 gimple_omp_task_set_arg_align (gimple *gs, tree arg_align)
5470 gomp_task *omp_task_stmt = as_a <gomp_task *> (gs);
5471 omp_task_stmt->arg_align = arg_align;
5475 /* Return the clauses associated with OMP_SINGLE GS. */
5477 static inline tree
5478 gimple_omp_single_clauses (const gimple *gs)
5480 const gomp_single *omp_single_stmt = as_a <const gomp_single *> (gs);
5481 return omp_single_stmt->clauses;
5485 /* Return a pointer to the clauses associated with OMP_SINGLE GS. */
5487 static inline tree *
5488 gimple_omp_single_clauses_ptr (gimple *gs)
5490 gomp_single *omp_single_stmt = as_a <gomp_single *> (gs);
5491 return &omp_single_stmt->clauses;
5495 /* Set CLAUSES to be the clauses associated with OMP_SINGLE_STMT. */
5497 static inline void
5498 gimple_omp_single_set_clauses (gomp_single *omp_single_stmt, tree clauses)
5500 omp_single_stmt->clauses = clauses;
5504 /* Return the clauses associated with OMP_TARGET GS. */
5506 static inline tree
5507 gimple_omp_target_clauses (const gimple *gs)
5509 const gomp_target *omp_target_stmt = as_a <const gomp_target *> (gs);
5510 return omp_target_stmt->clauses;
5514 /* Return a pointer to the clauses associated with OMP_TARGET GS. */
5516 static inline tree *
5517 gimple_omp_target_clauses_ptr (gimple *gs)
5519 gomp_target *omp_target_stmt = as_a <gomp_target *> (gs);
5520 return &omp_target_stmt->clauses;
5524 /* Set CLAUSES to be the clauses associated with OMP_TARGET_STMT. */
5526 static inline void
5527 gimple_omp_target_set_clauses (gomp_target *omp_target_stmt,
5528 tree clauses)
5530 omp_target_stmt->clauses = clauses;
5534 /* Return the kind of the OMP_TARGET G. */
5536 static inline int
5537 gimple_omp_target_kind (const gimple *g)
5539 GIMPLE_CHECK (g, GIMPLE_OMP_TARGET);
5540 return (gimple_omp_subcode (g) & GF_OMP_TARGET_KIND_MASK);
5544 /* Set the kind of the OMP_TARGET G. */
5546 static inline void
5547 gimple_omp_target_set_kind (gomp_target *g, int kind)
5549 g->subcode = (g->subcode & ~GF_OMP_TARGET_KIND_MASK)
5550 | (kind & GF_OMP_TARGET_KIND_MASK);
5554 /* Return the child function used to hold the body of OMP_TARGET_STMT. */
5556 static inline tree
5557 gimple_omp_target_child_fn (const gomp_target *omp_target_stmt)
5559 return omp_target_stmt->child_fn;
5562 /* Return a pointer to the child function used to hold the body of
5563 OMP_TARGET_STMT. */
5565 static inline tree *
5566 gimple_omp_target_child_fn_ptr (gomp_target *omp_target_stmt)
5568 return &omp_target_stmt->child_fn;
5572 /* Set CHILD_FN to be the child function for OMP_TARGET_STMT. */
5574 static inline void
5575 gimple_omp_target_set_child_fn (gomp_target *omp_target_stmt,
5576 tree child_fn)
5578 omp_target_stmt->child_fn = child_fn;
5582 /* Return the artificial argument used to send variables and values
5583 from the parent to the children threads in OMP_TARGET_STMT. */
5585 static inline tree
5586 gimple_omp_target_data_arg (const gomp_target *omp_target_stmt)
5588 return omp_target_stmt->data_arg;
5592 /* Return a pointer to the data argument for OMP_TARGET GS. */
5594 static inline tree *
5595 gimple_omp_target_data_arg_ptr (gomp_target *omp_target_stmt)
5597 return &omp_target_stmt->data_arg;
5601 /* Set DATA_ARG to be the data argument for OMP_TARGET_STMT. */
5603 static inline void
5604 gimple_omp_target_set_data_arg (gomp_target *omp_target_stmt,
5605 tree data_arg)
5607 omp_target_stmt->data_arg = data_arg;
5611 /* Return the clauses associated with OMP_TEAMS GS. */
5613 static inline tree
5614 gimple_omp_teams_clauses (const gimple *gs)
5616 const gomp_teams *omp_teams_stmt = as_a <const gomp_teams *> (gs);
5617 return omp_teams_stmt->clauses;
5621 /* Return a pointer to the clauses associated with OMP_TEAMS GS. */
5623 static inline tree *
5624 gimple_omp_teams_clauses_ptr (gimple *gs)
5626 gomp_teams *omp_teams_stmt = as_a <gomp_teams *> (gs);
5627 return &omp_teams_stmt->clauses;
5631 /* Set CLAUSES to be the clauses associated with OMP_TEAMS_STMT. */
5633 static inline void
5634 gimple_omp_teams_set_clauses (gomp_teams *omp_teams_stmt, tree clauses)
5636 omp_teams_stmt->clauses = clauses;
5640 /* Return the clauses associated with OMP_SECTIONS GS. */
5642 static inline tree
5643 gimple_omp_sections_clauses (const gimple *gs)
5645 const gomp_sections *omp_sections_stmt = as_a <const gomp_sections *> (gs);
5646 return omp_sections_stmt->clauses;
5650 /* Return a pointer to the clauses associated with OMP_SECTIONS GS. */
5652 static inline tree *
5653 gimple_omp_sections_clauses_ptr (gimple *gs)
5655 gomp_sections *omp_sections_stmt = as_a <gomp_sections *> (gs);
5656 return &omp_sections_stmt->clauses;
5660 /* Set CLAUSES to be the set of clauses associated with OMP_SECTIONS
5661 GS. */
5663 static inline void
5664 gimple_omp_sections_set_clauses (gimple *gs, tree clauses)
5666 gomp_sections *omp_sections_stmt = as_a <gomp_sections *> (gs);
5667 omp_sections_stmt->clauses = clauses;
5671 /* Return the control variable associated with the GIMPLE_OMP_SECTIONS
5672 in GS. */
5674 static inline tree
5675 gimple_omp_sections_control (const gimple *gs)
5677 const gomp_sections *omp_sections_stmt = as_a <const gomp_sections *> (gs);
5678 return omp_sections_stmt->control;
5682 /* Return a pointer to the clauses associated with the GIMPLE_OMP_SECTIONS
5683 GS. */
5685 static inline tree *
5686 gimple_omp_sections_control_ptr (gimple *gs)
5688 gomp_sections *omp_sections_stmt = as_a <gomp_sections *> (gs);
5689 return &omp_sections_stmt->control;
5693 /* Set CONTROL to be the set of clauses associated with the
5694 GIMPLE_OMP_SECTIONS in GS. */
5696 static inline void
5697 gimple_omp_sections_set_control (gimple *gs, tree control)
5699 gomp_sections *omp_sections_stmt = as_a <gomp_sections *> (gs);
5700 omp_sections_stmt->control = control;
5704 /* Set the value being stored in an atomic store. */
5706 static inline void
5707 gimple_omp_atomic_store_set_val (gomp_atomic_store *store_stmt, tree val)
5709 store_stmt->val = val;
5713 /* Return the value being stored in an atomic store. */
5715 static inline tree
5716 gimple_omp_atomic_store_val (const gomp_atomic_store *store_stmt)
5718 return store_stmt->val;
5722 /* Return a pointer to the value being stored in an atomic store. */
5724 static inline tree *
5725 gimple_omp_atomic_store_val_ptr (gomp_atomic_store *store_stmt)
5727 return &store_stmt->val;
5731 /* Set the LHS of an atomic load. */
5733 static inline void
5734 gimple_omp_atomic_load_set_lhs (gomp_atomic_load *load_stmt, tree lhs)
5736 load_stmt->lhs = lhs;
5740 /* Get the LHS of an atomic load. */
5742 static inline tree
5743 gimple_omp_atomic_load_lhs (const gomp_atomic_load *load_stmt)
5745 return load_stmt->lhs;
5749 /* Return a pointer to the LHS of an atomic load. */
5751 static inline tree *
5752 gimple_omp_atomic_load_lhs_ptr (gomp_atomic_load *load_stmt)
5754 return &load_stmt->lhs;
5758 /* Set the RHS of an atomic load. */
5760 static inline void
5761 gimple_omp_atomic_load_set_rhs (gomp_atomic_load *load_stmt, tree rhs)
5763 load_stmt->rhs = rhs;
5767 /* Get the RHS of an atomic load. */
5769 static inline tree
5770 gimple_omp_atomic_load_rhs (const gomp_atomic_load *load_stmt)
5772 return load_stmt->rhs;
5776 /* Return a pointer to the RHS of an atomic load. */
5778 static inline tree *
5779 gimple_omp_atomic_load_rhs_ptr (gomp_atomic_load *load_stmt)
5781 return &load_stmt->rhs;
5785 /* Get the definition of the control variable in a GIMPLE_OMP_CONTINUE. */
5787 static inline tree
5788 gimple_omp_continue_control_def (const gomp_continue *cont_stmt)
5790 return cont_stmt->control_def;
5793 /* The same as above, but return the address. */
5795 static inline tree *
5796 gimple_omp_continue_control_def_ptr (gomp_continue *cont_stmt)
5798 return &cont_stmt->control_def;
5801 /* Set the definition of the control variable in a GIMPLE_OMP_CONTINUE. */
5803 static inline void
5804 gimple_omp_continue_set_control_def (gomp_continue *cont_stmt, tree def)
5806 cont_stmt->control_def = def;
5810 /* Get the use of the control variable in a GIMPLE_OMP_CONTINUE. */
5812 static inline tree
5813 gimple_omp_continue_control_use (const gomp_continue *cont_stmt)
5815 return cont_stmt->control_use;
5819 /* The same as above, but return the address. */
5821 static inline tree *
5822 gimple_omp_continue_control_use_ptr (gomp_continue *cont_stmt)
5824 return &cont_stmt->control_use;
5828 /* Set the use of the control variable in a GIMPLE_OMP_CONTINUE. */
5830 static inline void
5831 gimple_omp_continue_set_control_use (gomp_continue *cont_stmt, tree use)
5833 cont_stmt->control_use = use;
5836 /* Return a pointer to the body for the GIMPLE_TRANSACTION statement
5837 TRANSACTION_STMT. */
5839 static inline gimple_seq *
5840 gimple_transaction_body_ptr (gtransaction *transaction_stmt)
5842 return &transaction_stmt->body;
5845 /* Return the body for the GIMPLE_TRANSACTION statement TRANSACTION_STMT. */
5847 static inline gimple_seq
5848 gimple_transaction_body (gtransaction *transaction_stmt)
5850 return *gimple_transaction_body_ptr (transaction_stmt);
5853 /* Return the label associated with a GIMPLE_TRANSACTION. */
5855 static inline tree
5856 gimple_transaction_label (const gtransaction *transaction_stmt)
5858 return transaction_stmt->label;
5861 static inline tree *
5862 gimple_transaction_label_ptr (gtransaction *transaction_stmt)
5864 return &transaction_stmt->label;
5867 /* Return the subcode associated with a GIMPLE_TRANSACTION. */
5869 static inline unsigned int
5870 gimple_transaction_subcode (const gtransaction *transaction_stmt)
5872 return transaction_stmt->subcode;
5875 /* Set BODY to be the body for the GIMPLE_TRANSACTION statement
5876 TRANSACTION_STMT. */
5878 static inline void
5879 gimple_transaction_set_body (gtransaction *transaction_stmt,
5880 gimple_seq body)
5882 transaction_stmt->body = body;
5885 /* Set the label associated with a GIMPLE_TRANSACTION. */
5887 static inline void
5888 gimple_transaction_set_label (gtransaction *transaction_stmt, tree label)
5890 transaction_stmt->label = label;
5893 /* Set the subcode associated with a GIMPLE_TRANSACTION. */
5895 static inline void
5896 gimple_transaction_set_subcode (gtransaction *transaction_stmt,
5897 unsigned int subcode)
5899 transaction_stmt->subcode = subcode;
5903 /* Return a pointer to the return value for GIMPLE_RETURN GS. */
5905 static inline tree *
5906 gimple_return_retval_ptr (greturn *gs)
5908 return &gs->op[0];
5911 /* Return the return value for GIMPLE_RETURN GS. */
5913 static inline tree
5914 gimple_return_retval (const greturn *gs)
5916 return gs->op[0];
5920 /* Set RETVAL to be the return value for GIMPLE_RETURN GS. */
5922 static inline void
5923 gimple_return_set_retval (greturn *gs, tree retval)
5925 gs->op[0] = retval;
5929 /* Return the return bounds for GIMPLE_RETURN GS. */
5931 static inline tree
5932 gimple_return_retbnd (const gimple *gs)
5934 GIMPLE_CHECK (gs, GIMPLE_RETURN);
5935 return gimple_op (gs, 1);
5939 /* Set RETVAL to be the return bounds for GIMPLE_RETURN GS. */
5941 static inline void
5942 gimple_return_set_retbnd (gimple *gs, tree retval)
5944 GIMPLE_CHECK (gs, GIMPLE_RETURN);
5945 gimple_set_op (gs, 1, retval);
5949 /* Returns true when the gimple statement STMT is any of the OMP types. */
5951 #define CASE_GIMPLE_OMP \
5952 case GIMPLE_OMP_PARALLEL: \
5953 case GIMPLE_OMP_TASK: \
5954 case GIMPLE_OMP_FOR: \
5955 case GIMPLE_OMP_SECTIONS: \
5956 case GIMPLE_OMP_SECTIONS_SWITCH: \
5957 case GIMPLE_OMP_SINGLE: \
5958 case GIMPLE_OMP_TARGET: \
5959 case GIMPLE_OMP_TEAMS: \
5960 case GIMPLE_OMP_SECTION: \
5961 case GIMPLE_OMP_MASTER: \
5962 case GIMPLE_OMP_TASKGROUP: \
5963 case GIMPLE_OMP_ORDERED: \
5964 case GIMPLE_OMP_CRITICAL: \
5965 case GIMPLE_OMP_RETURN: \
5966 case GIMPLE_OMP_ATOMIC_LOAD: \
5967 case GIMPLE_OMP_ATOMIC_STORE: \
5968 case GIMPLE_OMP_CONTINUE
5970 static inline bool
5971 is_gimple_omp (const gimple *stmt)
5973 switch (gimple_code (stmt))
5975 CASE_GIMPLE_OMP:
5976 return true;
5977 default:
5978 return false;
5982 /* Return true if the OMP gimple statement STMT is any of the OpenACC types
5983 specifically. */
5985 static inline bool
5986 is_gimple_omp_oacc (const gimple *stmt)
5988 gcc_assert (is_gimple_omp (stmt));
5989 switch (gimple_code (stmt))
5991 case GIMPLE_OMP_FOR:
5992 switch (gimple_omp_for_kind (stmt))
5994 case GF_OMP_FOR_KIND_OACC_LOOP:
5995 return true;
5996 default:
5997 return false;
5999 case GIMPLE_OMP_TARGET:
6000 switch (gimple_omp_target_kind (stmt))
6002 case GF_OMP_TARGET_KIND_OACC_PARALLEL:
6003 case GF_OMP_TARGET_KIND_OACC_KERNELS:
6004 case GF_OMP_TARGET_KIND_OACC_DATA:
6005 case GF_OMP_TARGET_KIND_OACC_UPDATE:
6006 case GF_OMP_TARGET_KIND_OACC_ENTER_EXIT_DATA:
6007 case GF_OMP_TARGET_KIND_OACC_DECLARE:
6008 case GF_OMP_TARGET_KIND_OACC_HOST_DATA:
6009 return true;
6010 default:
6011 return false;
6013 default:
6014 return false;
6019 /* Return true if the OMP gimple statement STMT is offloaded. */
6021 static inline bool
6022 is_gimple_omp_offloaded (const gimple *stmt)
6024 gcc_assert (is_gimple_omp (stmt));
6025 switch (gimple_code (stmt))
6027 case GIMPLE_OMP_TARGET:
6028 switch (gimple_omp_target_kind (stmt))
6030 case GF_OMP_TARGET_KIND_REGION:
6031 case GF_OMP_TARGET_KIND_OACC_PARALLEL:
6032 case GF_OMP_TARGET_KIND_OACC_KERNELS:
6033 return true;
6034 default:
6035 return false;
6037 default:
6038 return false;
6043 /* Returns TRUE if statement G is a GIMPLE_NOP. */
6045 static inline bool
6046 gimple_nop_p (const gimple *g)
6048 return gimple_code (g) == GIMPLE_NOP;
6052 /* Return true if GS is a GIMPLE_RESX. */
6054 static inline bool
6055 is_gimple_resx (const gimple *gs)
6057 return gimple_code (gs) == GIMPLE_RESX;
6060 /* Return the type of the main expression computed by STMT. Return
6061 void_type_node if the statement computes nothing. */
6063 static inline tree
6064 gimple_expr_type (const gimple *stmt)
6066 enum gimple_code code = gimple_code (stmt);
6067 /* In general we want to pass out a type that can be substituted
6068 for both the RHS and the LHS types if there is a possibly
6069 useless conversion involved. That means returning the
6070 original RHS type as far as we can reconstruct it. */
6071 if (code == GIMPLE_CALL)
6073 const gcall *call_stmt = as_a <const gcall *> (stmt);
6074 if (gimple_call_internal_p (call_stmt)
6075 && gimple_call_internal_fn (call_stmt) == IFN_MASK_STORE)
6076 return TREE_TYPE (gimple_call_arg (call_stmt, 3));
6077 else
6078 return gimple_call_return_type (call_stmt);
6080 else if (code == GIMPLE_ASSIGN)
6082 if (gimple_assign_rhs_code (stmt) == POINTER_PLUS_EXPR)
6083 return TREE_TYPE (gimple_assign_rhs1 (stmt));
6084 else
6085 /* As fallback use the type of the LHS. */
6086 return TREE_TYPE (gimple_get_lhs (stmt));
6088 else if (code == GIMPLE_COND)
6089 return boolean_type_node;
6090 else
6091 return void_type_node;
6094 /* Enum and arrays used for allocation stats. Keep in sync with
6095 gimple.c:gimple_alloc_kind_names. */
6096 enum gimple_alloc_kind
6098 gimple_alloc_kind_assign, /* Assignments. */
6099 gimple_alloc_kind_phi, /* PHI nodes. */
6100 gimple_alloc_kind_cond, /* Conditionals. */
6101 gimple_alloc_kind_rest, /* Everything else. */
6102 gimple_alloc_kind_all
6105 extern int gimple_alloc_counts[];
6106 extern int gimple_alloc_sizes[];
6108 /* Return the allocation kind for a given stmt CODE. */
6109 static inline enum gimple_alloc_kind
6110 gimple_alloc_kind (enum gimple_code code)
6112 switch (code)
6114 case GIMPLE_ASSIGN:
6115 return gimple_alloc_kind_assign;
6116 case GIMPLE_PHI:
6117 return gimple_alloc_kind_phi;
6118 case GIMPLE_COND:
6119 return gimple_alloc_kind_cond;
6120 default:
6121 return gimple_alloc_kind_rest;
6125 /* Return true if a location should not be emitted for this statement
6126 by annotate_all_with_location. */
6128 static inline bool
6129 gimple_do_not_emit_location_p (gimple *g)
6131 return gimple_plf (g, GF_PLF_1);
6134 /* Mark statement G so a location will not be emitted by
6135 annotate_one_with_location. */
6137 static inline void
6138 gimple_set_do_not_emit_location (gimple *g)
6140 /* The PLF flags are initialized to 0 when a new tuple is created,
6141 so no need to initialize it anywhere. */
6142 gimple_set_plf (g, GF_PLF_1, true);
6146 /* Macros for showing usage statistics. */
6147 #define SCALE(x) ((unsigned long) ((x) < 1024*10 \
6148 ? (x) \
6149 : ((x) < 1024*1024*10 \
6150 ? (x) / 1024 \
6151 : (x) / (1024*1024))))
6153 #define LABEL(x) ((x) < 1024*10 ? 'b' : ((x) < 1024*1024*10 ? 'k' : 'M'))
6155 #endif /* GCC_GIMPLE_H */