2013-10-31 Steve Ellcey <sellcey@mips.com>
[official-gcc.git] / gcc / gimple.h
blobb34424c18d3560aa2a410fb57e44953255c3d7fc
1 /* Gimple IR definitions.
3 Copyright (C) 2007-2013 Free Software Foundation, Inc.
4 Contributed by Aldy Hernandez <aldyh@redhat.com>
6 This file is part of GCC.
8 GCC is free software; you can redistribute it and/or modify it under
9 the terms of the GNU General Public License as published by the Free
10 Software Foundation; either version 3, or (at your option) any later
11 version.
13 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
14 WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16 for more details.
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING3. If not see
20 <http://www.gnu.org/licenses/>. */
22 #ifndef GCC_GIMPLE_H
23 #define GCC_GIMPLE_H
25 #include "pointer-set.h"
26 #include "hash-table.h"
27 #include "vec.h"
28 #include "ggc.h"
29 #include "basic-block.h"
30 #include "tree-ssa-alias.h"
31 #include "internal-fn.h"
32 #include "gimple-fold.h"
33 #include "tree-eh.h"
35 typedef gimple gimple_seq_node;
37 /* For each block, the PHI nodes that need to be rewritten are stored into
38 these vectors. */
39 typedef vec<gimple> gimple_vec;
41 enum gimple_code {
42 #define DEFGSCODE(SYM, STRING, STRUCT) SYM,
43 #include "gimple.def"
44 #undef DEFGSCODE
45 LAST_AND_UNUSED_GIMPLE_CODE
48 extern const char *const gimple_code_name[];
49 extern const unsigned char gimple_rhs_class_table[];
51 /* Error out if a gimple tuple is addressed incorrectly. */
52 #if defined ENABLE_GIMPLE_CHECKING
53 #define gcc_gimple_checking_assert(EXPR) gcc_assert (EXPR)
54 extern void gimple_check_failed (const_gimple, const char *, int, \
55 const char *, enum gimple_code, \
56 enum tree_code) ATTRIBUTE_NORETURN;
58 #define GIMPLE_CHECK(GS, CODE) \
59 do { \
60 const_gimple __gs = (GS); \
61 if (gimple_code (__gs) != (CODE)) \
62 gimple_check_failed (__gs, __FILE__, __LINE__, __FUNCTION__, \
63 (CODE), ERROR_MARK); \
64 } while (0)
65 #else /* not ENABLE_GIMPLE_CHECKING */
66 #define gcc_gimple_checking_assert(EXPR) ((void)(0 && (EXPR)))
67 #define GIMPLE_CHECK(GS, CODE) (void)0
68 #endif
70 /* Class of GIMPLE expressions suitable for the RHS of assignments. See
71 get_gimple_rhs_class. */
72 enum gimple_rhs_class
74 GIMPLE_INVALID_RHS, /* The expression cannot be used on the RHS. */
75 GIMPLE_TERNARY_RHS, /* The expression is a ternary operation. */
76 GIMPLE_BINARY_RHS, /* The expression is a binary operation. */
77 GIMPLE_UNARY_RHS, /* The expression is a unary operation. */
78 GIMPLE_SINGLE_RHS /* The expression is a single object (an SSA
79 name, a _DECL, a _REF, etc. */
82 /* Specific flags for individual GIMPLE statements. These flags are
83 always stored in gimple_statement_base.subcode and they may only be
84 defined for statement codes that do not use subcodes.
86 Values for the masks can overlap as long as the overlapping values
87 are never used in the same statement class.
89 The maximum mask value that can be defined is 1 << 15 (i.e., each
90 statement code can hold up to 16 bitflags).
92 Keep this list sorted. */
93 enum gf_mask {
94 GF_ASM_INPUT = 1 << 0,
95 GF_ASM_VOLATILE = 1 << 1,
96 GF_CALL_FROM_THUNK = 1 << 0,
97 GF_CALL_RETURN_SLOT_OPT = 1 << 1,
98 GF_CALL_TAILCALL = 1 << 2,
99 GF_CALL_VA_ARG_PACK = 1 << 3,
100 GF_CALL_NOTHROW = 1 << 4,
101 GF_CALL_ALLOCA_FOR_VAR = 1 << 5,
102 GF_CALL_INTERNAL = 1 << 6,
103 GF_OMP_PARALLEL_COMBINED = 1 << 0,
104 GF_OMP_FOR_KIND_MASK = 3 << 0,
105 GF_OMP_FOR_KIND_FOR = 0 << 0,
106 GF_OMP_FOR_KIND_SIMD = 1 << 0,
107 GF_OMP_FOR_KIND_DISTRIBUTE = 2 << 0,
108 GF_OMP_FOR_COMBINED = 1 << 2,
109 GF_OMP_FOR_COMBINED_INTO = 1 << 3,
110 GF_OMP_TARGET_KIND_MASK = 3 << 0,
111 GF_OMP_TARGET_KIND_REGION = 0 << 0,
112 GF_OMP_TARGET_KIND_DATA = 1 << 0,
113 GF_OMP_TARGET_KIND_UPDATE = 2 << 0,
115 /* True on an GIMPLE_OMP_RETURN statement if the return does not require
116 a thread synchronization via some sort of barrier. The exact barrier
117 that would otherwise be emitted is dependent on the OMP statement with
118 which this return is associated. */
119 GF_OMP_RETURN_NOWAIT = 1 << 0,
121 GF_OMP_SECTION_LAST = 1 << 0,
122 GF_OMP_ATOMIC_NEED_VALUE = 1 << 0,
123 GF_OMP_ATOMIC_SEQ_CST = 1 << 1,
124 GF_PREDICT_TAKEN = 1 << 15
127 /* Currently, there are only two types of gimple debug stmt. Others are
128 envisioned, for example, to enable the generation of is_stmt notes
129 in line number information, to mark sequence points, etc. This
130 subcode is to be used to tell them apart. */
131 enum gimple_debug_subcode {
132 GIMPLE_DEBUG_BIND = 0,
133 GIMPLE_DEBUG_SOURCE_BIND = 1
136 /* Masks for selecting a pass local flag (PLF) to work on. These
137 masks are used by gimple_set_plf and gimple_plf. */
138 enum plf_mask {
139 GF_PLF_1 = 1 << 0,
140 GF_PLF_2 = 1 << 1
143 /* Iterator object for GIMPLE statement sequences. */
145 struct gimple_stmt_iterator_d
147 /* Sequence node holding the current statement. */
148 gimple_seq_node ptr;
150 /* Sequence and basic block holding the statement. These fields
151 are necessary to handle edge cases such as when statement is
152 added to an empty basic block or when the last statement of a
153 block/sequence is removed. */
154 gimple_seq *seq;
155 basic_block bb;
158 /* Data structure definitions for GIMPLE tuples. NOTE: word markers
159 are for 64 bit hosts. */
161 struct GTY((chain_next ("%h.next"))) gimple_statement_base {
162 /* [ WORD 1 ]
163 Main identifying code for a tuple. */
164 ENUM_BITFIELD(gimple_code) code : 8;
166 /* Nonzero if a warning should not be emitted on this tuple. */
167 unsigned int no_warning : 1;
169 /* Nonzero if this tuple has been visited. Passes are responsible
170 for clearing this bit before using it. */
171 unsigned int visited : 1;
173 /* Nonzero if this tuple represents a non-temporal move. */
174 unsigned int nontemporal_move : 1;
176 /* Pass local flags. These flags are free for any pass to use as
177 they see fit. Passes should not assume that these flags contain
178 any useful value when the pass starts. Any initial state that
179 the pass requires should be set on entry to the pass. See
180 gimple_set_plf and gimple_plf for usage. */
181 unsigned int plf : 2;
183 /* Nonzero if this statement has been modified and needs to have its
184 operands rescanned. */
185 unsigned modified : 1;
187 /* Nonzero if this statement contains volatile operands. */
188 unsigned has_volatile_ops : 1;
190 /* The SUBCODE field can be used for tuple-specific flags for tuples
191 that do not require subcodes. Note that SUBCODE should be at
192 least as wide as tree codes, as several tuples store tree codes
193 in there. */
194 unsigned int subcode : 16;
196 /* UID of this statement. This is used by passes that want to
197 assign IDs to statements. It must be assigned and used by each
198 pass. By default it should be assumed to contain garbage. */
199 unsigned uid;
201 /* [ WORD 2 ]
202 Locus information for debug info. */
203 location_t location;
205 /* Number of operands in this tuple. */
206 unsigned num_ops;
208 /* [ WORD 3 ]
209 Basic block holding this statement. */
210 basic_block bb;
212 /* [ WORD 4-5 ]
213 Linked lists of gimple statements. The next pointers form
214 a NULL terminated list, the prev pointers are a cyclic list.
215 A gimple statement is hence also a double-ended list of
216 statements, with the pointer itself being the first element,
217 and the prev pointer being the last. */
218 gimple next;
219 gimple GTY((skip)) prev;
223 /* Base structure for tuples with operands. */
225 struct GTY(()) gimple_statement_with_ops_base
227 /* [ WORD 1-6 ] */
228 struct gimple_statement_base gsbase;
230 /* [ WORD 7 ]
231 SSA operand vectors. NOTE: It should be possible to
232 amalgamate these vectors with the operand vector OP. However,
233 the SSA operand vectors are organized differently and contain
234 more information (like immediate use chaining). */
235 struct use_optype_d GTY((skip (""))) *use_ops;
239 /* Statements that take register operands. */
241 struct GTY(()) gimple_statement_with_ops
243 /* [ WORD 1-7 ] */
244 struct gimple_statement_with_ops_base opbase;
246 /* [ WORD 8 ]
247 Operand vector. NOTE! This must always be the last field
248 of this structure. In particular, this means that this
249 structure cannot be embedded inside another one. */
250 tree GTY((length ("%h.opbase.gsbase.num_ops"))) op[1];
254 /* Base for statements that take both memory and register operands. */
256 struct GTY(()) gimple_statement_with_memory_ops_base
258 /* [ WORD 1-7 ] */
259 struct gimple_statement_with_ops_base opbase;
261 /* [ WORD 8-9 ]
262 Virtual operands for this statement. The GC will pick them
263 up via the ssa_names array. */
264 tree GTY((skip (""))) vdef;
265 tree GTY((skip (""))) vuse;
269 /* Statements that take both memory and register operands. */
271 struct GTY(()) gimple_statement_with_memory_ops
273 /* [ WORD 1-9 ] */
274 struct gimple_statement_with_memory_ops_base membase;
276 /* [ WORD 10 ]
277 Operand vector. NOTE! This must always be the last field
278 of this structure. In particular, this means that this
279 structure cannot be embedded inside another one. */
280 tree GTY((length ("%h.membase.opbase.gsbase.num_ops"))) op[1];
284 /* Call statements that take both memory and register operands. */
286 struct GTY(()) gimple_statement_call
288 /* [ WORD 1-9 ] */
289 struct gimple_statement_with_memory_ops_base membase;
291 /* [ WORD 10-13 ] */
292 struct pt_solution call_used;
293 struct pt_solution call_clobbered;
295 /* [ WORD 14 ] */
296 union GTY ((desc ("%1.membase.opbase.gsbase.subcode & GF_CALL_INTERNAL"))) {
297 tree GTY ((tag ("0"))) fntype;
298 enum internal_fn GTY ((tag ("GF_CALL_INTERNAL"))) internal_fn;
299 } u;
301 /* [ WORD 15 ]
302 Operand vector. NOTE! This must always be the last field
303 of this structure. In particular, this means that this
304 structure cannot be embedded inside another one. */
305 tree GTY((length ("%h.membase.opbase.gsbase.num_ops"))) op[1];
309 /* OpenMP statements (#pragma omp). */
311 struct GTY(()) gimple_statement_omp {
312 /* [ WORD 1-6 ] */
313 struct gimple_statement_base gsbase;
315 /* [ WORD 7 ] */
316 gimple_seq body;
320 /* GIMPLE_BIND */
322 struct GTY(()) gimple_statement_bind {
323 /* [ WORD 1-6 ] */
324 struct gimple_statement_base gsbase;
326 /* [ WORD 7 ]
327 Variables declared in this scope. */
328 tree vars;
330 /* [ WORD 8 ]
331 This is different than the BLOCK field in gimple_statement_base,
332 which is analogous to TREE_BLOCK (i.e., the lexical block holding
333 this statement). This field is the equivalent of BIND_EXPR_BLOCK
334 in tree land (i.e., the lexical scope defined by this bind). See
335 gimple-low.c. */
336 tree block;
338 /* [ WORD 9 ] */
339 gimple_seq body;
343 /* GIMPLE_CATCH */
345 struct GTY(()) gimple_statement_catch {
346 /* [ WORD 1-6 ] */
347 struct gimple_statement_base gsbase;
349 /* [ WORD 7 ] */
350 tree types;
352 /* [ WORD 8 ] */
353 gimple_seq handler;
357 /* GIMPLE_EH_FILTER */
359 struct GTY(()) gimple_statement_eh_filter {
360 /* [ WORD 1-6 ] */
361 struct gimple_statement_base gsbase;
363 /* [ WORD 7 ]
364 Filter types. */
365 tree types;
367 /* [ WORD 8 ]
368 Failure actions. */
369 gimple_seq failure;
372 /* GIMPLE_EH_ELSE */
374 struct GTY(()) gimple_statement_eh_else {
375 /* [ WORD 1-6 ] */
376 struct gimple_statement_base gsbase;
378 /* [ WORD 7,8 ] */
379 gimple_seq n_body, e_body;
382 /* GIMPLE_EH_MUST_NOT_THROW */
384 struct GTY(()) gimple_statement_eh_mnt {
385 /* [ WORD 1-6 ] */
386 struct gimple_statement_base gsbase;
388 /* [ WORD 7 ] Abort function decl. */
389 tree fndecl;
392 /* GIMPLE_PHI */
394 struct GTY(()) gimple_statement_phi {
395 /* [ WORD 1-6 ] */
396 struct gimple_statement_base gsbase;
398 /* [ WORD 7 ] */
399 unsigned capacity;
400 unsigned nargs;
402 /* [ WORD 8 ] */
403 tree result;
405 /* [ WORD 9 ] */
406 struct phi_arg_d GTY ((length ("%h.nargs"))) args[1];
410 /* GIMPLE_RESX, GIMPLE_EH_DISPATCH */
412 struct GTY(()) gimple_statement_eh_ctrl
414 /* [ WORD 1-6 ] */
415 struct gimple_statement_base gsbase;
417 /* [ WORD 7 ]
418 Exception region number. */
419 int region;
423 /* GIMPLE_TRY */
425 struct GTY(()) gimple_statement_try {
426 /* [ WORD 1-6 ] */
427 struct gimple_statement_base gsbase;
429 /* [ WORD 7 ]
430 Expression to evaluate. */
431 gimple_seq eval;
433 /* [ WORD 8 ]
434 Cleanup expression. */
435 gimple_seq cleanup;
438 /* Kind of GIMPLE_TRY statements. */
439 enum gimple_try_flags
441 /* A try/catch. */
442 GIMPLE_TRY_CATCH = 1 << 0,
444 /* A try/finally. */
445 GIMPLE_TRY_FINALLY = 1 << 1,
446 GIMPLE_TRY_KIND = GIMPLE_TRY_CATCH | GIMPLE_TRY_FINALLY,
448 /* Analogous to TRY_CATCH_IS_CLEANUP. */
449 GIMPLE_TRY_CATCH_IS_CLEANUP = 1 << 2
452 /* GIMPLE_WITH_CLEANUP_EXPR */
454 struct GTY(()) gimple_statement_wce {
455 /* [ WORD 1-6 ] */
456 struct gimple_statement_base gsbase;
458 /* Subcode: CLEANUP_EH_ONLY. True if the cleanup should only be
459 executed if an exception is thrown, not on normal exit of its
460 scope. This flag is analogous to the CLEANUP_EH_ONLY flag
461 in TARGET_EXPRs. */
463 /* [ WORD 7 ]
464 Cleanup expression. */
465 gimple_seq cleanup;
469 /* GIMPLE_ASM */
471 struct GTY(()) gimple_statement_asm
473 /* [ WORD 1-9 ] */
474 struct gimple_statement_with_memory_ops_base membase;
476 /* [ WORD 10 ]
477 __asm__ statement. */
478 const char *string;
480 /* [ WORD 11 ]
481 Number of inputs, outputs, clobbers, labels. */
482 unsigned char ni;
483 unsigned char no;
484 unsigned char nc;
485 unsigned char nl;
487 /* [ WORD 12 ]
488 Operand vector. NOTE! This must always be the last field
489 of this structure. In particular, this means that this
490 structure cannot be embedded inside another one. */
491 tree GTY((length ("%h.membase.opbase.gsbase.num_ops"))) op[1];
494 /* GIMPLE_OMP_CRITICAL */
496 struct GTY(()) gimple_statement_omp_critical {
497 /* [ WORD 1-7 ] */
498 struct gimple_statement_omp omp;
500 /* [ WORD 8 ]
501 Critical section name. */
502 tree name;
506 struct GTY(()) gimple_omp_for_iter {
507 /* Condition code. */
508 enum tree_code cond;
510 /* Index variable. */
511 tree index;
513 /* Initial value. */
514 tree initial;
516 /* Final value. */
517 tree final;
519 /* Increment. */
520 tree incr;
523 /* GIMPLE_OMP_FOR */
525 struct GTY(()) gimple_statement_omp_for {
526 /* [ WORD 1-7 ] */
527 struct gimple_statement_omp omp;
529 /* [ WORD 8 ] */
530 tree clauses;
532 /* [ WORD 9 ]
533 Number of elements in iter array. */
534 size_t collapse;
536 /* [ WORD 10 ] */
537 struct gimple_omp_for_iter * GTY((length ("%h.collapse"))) iter;
539 /* [ WORD 11 ]
540 Pre-body evaluated before the loop body begins. */
541 gimple_seq pre_body;
545 /* GIMPLE_OMP_PARALLEL */
547 struct GTY(()) gimple_statement_omp_parallel {
548 /* [ WORD 1-7 ] */
549 struct gimple_statement_omp omp;
551 /* [ WORD 8 ]
552 Clauses. */
553 tree clauses;
555 /* [ WORD 9 ]
556 Child function holding the body of the parallel region. */
557 tree child_fn;
559 /* [ WORD 10 ]
560 Shared data argument. */
561 tree data_arg;
565 /* GIMPLE_OMP_TASK */
567 struct GTY(()) gimple_statement_omp_task {
568 /* [ WORD 1-10 ] */
569 struct gimple_statement_omp_parallel par;
571 /* [ WORD 11 ]
572 Child function holding firstprivate initialization if needed. */
573 tree copy_fn;
575 /* [ WORD 12-13 ]
576 Size and alignment in bytes of the argument data block. */
577 tree arg_size;
578 tree arg_align;
582 /* GIMPLE_OMP_SECTION */
583 /* Uses struct gimple_statement_omp. */
586 /* GIMPLE_OMP_SECTIONS */
588 struct GTY(()) gimple_statement_omp_sections {
589 /* [ WORD 1-7 ] */
590 struct gimple_statement_omp omp;
592 /* [ WORD 8 ] */
593 tree clauses;
595 /* [ WORD 9 ]
596 The control variable used for deciding which of the sections to
597 execute. */
598 tree control;
601 /* GIMPLE_OMP_CONTINUE.
603 Note: This does not inherit from gimple_statement_omp, because we
604 do not need the body field. */
606 struct GTY(()) gimple_statement_omp_continue {
607 /* [ WORD 1-6 ] */
608 struct gimple_statement_base gsbase;
610 /* [ WORD 7 ] */
611 tree control_def;
613 /* [ WORD 8 ] */
614 tree control_use;
617 /* GIMPLE_OMP_SINGLE, GIMPLE_OMP_TARGET, GIMPLE_OMP_TEAMS */
619 struct GTY(()) gimple_statement_omp_single {
620 /* [ WORD 1-7 ] */
621 struct gimple_statement_omp omp;
623 /* [ WORD 7 ] */
624 tree clauses;
628 /* GIMPLE_OMP_ATOMIC_LOAD.
629 Note: This is based on gimple_statement_base, not g_s_omp, because g_s_omp
630 contains a sequence, which we don't need here. */
632 struct GTY(()) gimple_statement_omp_atomic_load {
633 /* [ WORD 1-6 ] */
634 struct gimple_statement_base gsbase;
636 /* [ WORD 7-8 ] */
637 tree rhs, lhs;
640 /* GIMPLE_OMP_ATOMIC_STORE.
641 See note on GIMPLE_OMP_ATOMIC_LOAD. */
643 struct GTY(()) gimple_statement_omp_atomic_store {
644 /* [ WORD 1-6 ] */
645 struct gimple_statement_base gsbase;
647 /* [ WORD 7 ] */
648 tree val;
651 /* GIMPLE_TRANSACTION. */
653 /* Bits to be stored in the GIMPLE_TRANSACTION subcode. */
655 /* The __transaction_atomic was declared [[outer]] or it is
656 __transaction_relaxed. */
657 #define GTMA_IS_OUTER (1u << 0)
658 #define GTMA_IS_RELAXED (1u << 1)
659 #define GTMA_DECLARATION_MASK (GTMA_IS_OUTER | GTMA_IS_RELAXED)
661 /* The transaction is seen to not have an abort. */
662 #define GTMA_HAVE_ABORT (1u << 2)
663 /* The transaction is seen to have loads or stores. */
664 #define GTMA_HAVE_LOAD (1u << 3)
665 #define GTMA_HAVE_STORE (1u << 4)
666 /* The transaction MAY enter serial irrevocable mode in its dynamic scope. */
667 #define GTMA_MAY_ENTER_IRREVOCABLE (1u << 5)
668 /* The transaction WILL enter serial irrevocable mode.
669 An irrevocable block post-dominates the entire transaction, such
670 that all invocations of the transaction will go serial-irrevocable.
671 In such case, we don't bother instrumenting the transaction, and
672 tell the runtime that it should begin the transaction in
673 serial-irrevocable mode. */
674 #define GTMA_DOES_GO_IRREVOCABLE (1u << 6)
675 /* The transaction contains no instrumentation code whatsover, most
676 likely because it is guaranteed to go irrevocable upon entry. */
677 #define GTMA_HAS_NO_INSTRUMENTATION (1u << 7)
679 struct GTY(()) gimple_statement_transaction
681 /* [ WORD 1-9 ] */
682 struct gimple_statement_with_memory_ops_base gsbase;
684 /* [ WORD 10 ] */
685 gimple_seq body;
687 /* [ WORD 11 ] */
688 tree label;
691 #define DEFGSSTRUCT(SYM, STRUCT, HAS_TREE_OP) SYM,
692 enum gimple_statement_structure_enum {
693 #include "gsstruct.def"
694 LAST_GSS_ENUM
696 #undef DEFGSSTRUCT
699 /* Define the overall contents of a gimple tuple. It may be any of the
700 structures declared above for various types of tuples. */
702 union GTY ((desc ("gimple_statement_structure (&%h)"),
703 chain_next ("%h.gsbase.next"), variable_size)) gimple_statement_d {
704 struct gimple_statement_base GTY ((tag ("GSS_BASE"))) gsbase;
705 struct gimple_statement_with_ops GTY ((tag ("GSS_WITH_OPS"))) gsops;
706 struct gimple_statement_with_memory_ops_base GTY ((tag ("GSS_WITH_MEM_OPS_BASE"))) gsmembase;
707 struct gimple_statement_with_memory_ops GTY ((tag ("GSS_WITH_MEM_OPS"))) gsmem;
708 struct gimple_statement_call GTY ((tag ("GSS_CALL"))) gimple_call;
709 struct gimple_statement_omp GTY ((tag ("GSS_OMP"))) omp;
710 struct gimple_statement_bind GTY ((tag ("GSS_BIND"))) gimple_bind;
711 struct gimple_statement_catch GTY ((tag ("GSS_CATCH"))) gimple_catch;
712 struct gimple_statement_eh_filter GTY ((tag ("GSS_EH_FILTER"))) gimple_eh_filter;
713 struct gimple_statement_eh_mnt GTY ((tag ("GSS_EH_MNT"))) gimple_eh_mnt;
714 struct gimple_statement_eh_else GTY ((tag ("GSS_EH_ELSE"))) gimple_eh_else;
715 struct gimple_statement_phi GTY ((tag ("GSS_PHI"))) gimple_phi;
716 struct gimple_statement_eh_ctrl GTY ((tag ("GSS_EH_CTRL"))) gimple_eh_ctrl;
717 struct gimple_statement_try GTY ((tag ("GSS_TRY"))) gimple_try;
718 struct gimple_statement_wce GTY ((tag ("GSS_WCE"))) gimple_wce;
719 struct gimple_statement_asm GTY ((tag ("GSS_ASM"))) gimple_asm;
720 struct gimple_statement_omp_critical GTY ((tag ("GSS_OMP_CRITICAL"))) gimple_omp_critical;
721 struct gimple_statement_omp_for GTY ((tag ("GSS_OMP_FOR"))) gimple_omp_for;
722 struct gimple_statement_omp_parallel GTY ((tag ("GSS_OMP_PARALLEL"))) gimple_omp_parallel;
723 struct gimple_statement_omp_task GTY ((tag ("GSS_OMP_TASK"))) gimple_omp_task;
724 struct gimple_statement_omp_sections GTY ((tag ("GSS_OMP_SECTIONS"))) gimple_omp_sections;
725 struct gimple_statement_omp_single GTY ((tag ("GSS_OMP_SINGLE"))) gimple_omp_single;
726 struct gimple_statement_omp_continue GTY ((tag ("GSS_OMP_CONTINUE"))) gimple_omp_continue;
727 struct gimple_statement_omp_atomic_load GTY ((tag ("GSS_OMP_ATOMIC_LOAD"))) gimple_omp_atomic_load;
728 struct gimple_statement_omp_atomic_store GTY ((tag ("GSS_OMP_ATOMIC_STORE"))) gimple_omp_atomic_store;
729 struct gimple_statement_transaction GTY((tag ("GSS_TRANSACTION"))) gimple_transaction;
732 /* Offset in bytes to the location of the operand vector.
733 Zero if there is no operand vector for this tuple structure. */
734 extern size_t const gimple_ops_offset_[];
736 /* Map GIMPLE codes to GSS codes. */
737 extern enum gimple_statement_structure_enum const gss_for_code_[];
739 /* This variable holds the currently expanded gimple statement for purposes
740 of comminucating the profile info to the builtin expanders. */
741 extern gimple currently_expanding_gimple_stmt;
743 gimple gimple_build_return (tree);
745 gimple gimple_build_assign_stat (tree, tree MEM_STAT_DECL);
746 #define gimple_build_assign(l,r) gimple_build_assign_stat (l, r MEM_STAT_INFO)
748 void extract_ops_from_tree_1 (tree, enum tree_code *, tree *, tree *, tree *);
750 gimple
751 gimple_build_assign_with_ops (enum tree_code, tree,
752 tree, tree CXX_MEM_STAT_INFO);
753 gimple
754 gimple_build_assign_with_ops (enum tree_code, tree,
755 tree, tree, tree CXX_MEM_STAT_INFO);
757 gimple gimple_build_debug_bind_stat (tree, tree, gimple MEM_STAT_DECL);
758 #define gimple_build_debug_bind(var,val,stmt) \
759 gimple_build_debug_bind_stat ((var), (val), (stmt) MEM_STAT_INFO)
760 gimple gimple_build_debug_source_bind_stat (tree, tree, gimple MEM_STAT_DECL);
761 #define gimple_build_debug_source_bind(var,val,stmt) \
762 gimple_build_debug_source_bind_stat ((var), (val), (stmt) MEM_STAT_INFO)
764 gimple gimple_build_call_vec (tree, vec<tree> );
765 gimple gimple_build_call (tree, unsigned, ...);
766 gimple gimple_build_call_valist (tree, unsigned, va_list);
767 gimple gimple_build_call_internal (enum internal_fn, unsigned, ...);
768 gimple gimple_build_call_internal_vec (enum internal_fn, vec<tree> );
769 gimple gimple_build_call_from_tree (tree);
770 gimple gimplify_assign (tree, tree, gimple_seq *);
771 gimple gimple_build_cond (enum tree_code, tree, tree, tree, tree);
772 gimple gimple_build_label (tree label);
773 gimple gimple_build_goto (tree dest);
774 gimple gimple_build_nop (void);
775 gimple gimple_build_bind (tree, gimple_seq, tree);
776 gimple gimple_build_asm_vec (const char *, vec<tree, va_gc> *,
777 vec<tree, va_gc> *, vec<tree, va_gc> *,
778 vec<tree, va_gc> *);
779 gimple gimple_build_catch (tree, gimple_seq);
780 gimple gimple_build_eh_filter (tree, gimple_seq);
781 gimple gimple_build_eh_must_not_throw (tree);
782 gimple gimple_build_eh_else (gimple_seq, gimple_seq);
783 gimple gimple_build_try (gimple_seq, gimple_seq, enum gimple_try_flags);
784 gimple gimple_build_wce (gimple_seq);
785 gimple gimple_build_resx (int);
786 gimple gimple_build_eh_dispatch (int);
787 gimple gimple_build_switch_nlabels (unsigned, tree, tree);
788 gimple gimple_build_switch (tree, tree, vec<tree> );
789 gimple gimple_build_omp_parallel (gimple_seq, tree, tree, tree);
790 gimple gimple_build_omp_task (gimple_seq, tree, tree, tree, tree, tree, tree);
791 gimple gimple_build_omp_for (gimple_seq, int, tree, size_t, gimple_seq);
792 gimple gimple_build_omp_critical (gimple_seq, tree);
793 gimple gimple_build_omp_section (gimple_seq);
794 gimple gimple_build_omp_continue (tree, tree);
795 gimple gimple_build_omp_master (gimple_seq);
796 gimple gimple_build_omp_taskgroup (gimple_seq);
797 gimple gimple_build_omp_return (bool);
798 gimple gimple_build_omp_ordered (gimple_seq);
799 gimple gimple_build_omp_sections (gimple_seq, tree);
800 gimple gimple_build_omp_sections_switch (void);
801 gimple gimple_build_omp_single (gimple_seq, tree);
802 gimple gimple_build_omp_target (gimple_seq, int, tree);
803 gimple gimple_build_omp_teams (gimple_seq, tree);
804 gimple gimple_build_cdt (tree, tree);
805 gimple gimple_build_omp_atomic_load (tree, tree);
806 gimple gimple_build_omp_atomic_store (tree);
807 gimple gimple_build_transaction (gimple_seq, tree);
808 gimple gimple_build_predict (enum br_predictor, enum prediction);
809 enum gimple_statement_structure_enum gss_for_assign (enum tree_code);
810 void sort_case_labels (vec<tree> );
811 void preprocess_case_label_vec_for_gimple (vec<tree> , tree, tree *);
812 void gimple_set_body (tree, gimple_seq);
813 gimple_seq gimple_body (tree);
814 bool gimple_has_body_p (tree);
815 gimple_seq gimple_seq_alloc (void);
816 void gimple_seq_free (gimple_seq);
817 void gimple_seq_add_seq (gimple_seq *, gimple_seq);
818 gimple_seq gimple_seq_copy (gimple_seq);
819 bool gimple_call_same_target_p (const_gimple, const_gimple);
820 int gimple_call_flags (const_gimple);
821 int gimple_call_return_flags (const_gimple);
822 int gimple_call_arg_flags (const_gimple, unsigned);
823 void gimple_call_reset_alias_info (gimple);
824 bool gimple_assign_copy_p (gimple);
825 bool gimple_assign_ssa_name_copy_p (gimple);
826 bool gimple_assign_unary_nop_p (gimple);
827 void gimple_set_bb (gimple, basic_block);
828 void gimple_assign_set_rhs_from_tree (gimple_stmt_iterator *, tree);
829 void gimple_assign_set_rhs_with_ops_1 (gimple_stmt_iterator *, enum tree_code,
830 tree, tree, tree);
831 tree gimple_get_lhs (const_gimple);
832 void gimple_set_lhs (gimple, tree);
833 void gimple_replace_lhs (gimple, tree);
834 gimple gimple_copy (gimple);
835 void gimple_cond_get_ops_from_tree (tree, enum tree_code *, tree *, tree *);
836 gimple gimple_build_cond_from_tree (tree, tree, tree);
837 void gimple_cond_set_condition_from_tree (gimple, tree);
838 bool gimple_has_side_effects (const_gimple);
839 bool gimple_could_trap_p (gimple);
840 bool gimple_could_trap_p_1 (gimple, bool, bool);
841 bool gimple_assign_rhs_could_trap_p (gimple);
842 void gimple_regimplify_operands (gimple, gimple_stmt_iterator *);
843 bool empty_body_p (gimple_seq);
844 unsigned get_gimple_rhs_num_ops (enum tree_code);
845 #define gimple_alloc(c, n) gimple_alloc_stat (c, n MEM_STAT_INFO)
846 gimple gimple_alloc_stat (enum gimple_code, unsigned MEM_STAT_DECL);
847 const char *gimple_decl_printable_name (tree, int);
849 /* Returns true iff T is a virtual ssa name decl. */
850 extern bool virtual_operand_p (tree);
851 /* Returns true iff T is a scalar register variable. */
852 extern bool is_gimple_reg (tree);
853 /* Returns true iff T is any sort of variable. */
854 extern bool is_gimple_variable (tree);
855 /* Returns true iff T is any sort of symbol. */
856 extern bool is_gimple_id (tree);
857 /* Returns true iff T is a variable or an INDIRECT_REF (of a variable). */
858 extern bool is_gimple_min_lval (tree);
859 /* Returns true iff T is something whose address can be taken. */
860 extern bool is_gimple_addressable (tree);
861 /* Returns true iff T is any valid GIMPLE lvalue. */
862 extern bool is_gimple_lvalue (tree);
864 /* Returns true iff T is a GIMPLE address. */
865 bool is_gimple_address (const_tree);
866 /* Returns true iff T is a GIMPLE invariant address. */
867 bool is_gimple_invariant_address (const_tree);
868 /* Returns true iff T is a GIMPLE invariant address at interprocedural
869 level. */
870 bool is_gimple_ip_invariant_address (const_tree);
871 /* Returns true iff T is a valid GIMPLE constant. */
872 bool is_gimple_constant (const_tree);
873 /* Returns true iff T is a GIMPLE restricted function invariant. */
874 extern bool is_gimple_min_invariant (const_tree);
875 /* Returns true iff T is a GIMPLE restricted interprecodural invariant. */
876 extern bool is_gimple_ip_invariant (const_tree);
877 /* Returns true iff T is a GIMPLE rvalue. */
878 extern bool is_gimple_val (tree);
879 /* Returns true iff T is a GIMPLE asm statement input. */
880 extern bool is_gimple_asm_val (tree);
881 /* Returns true iff T is a valid address operand of a MEM_REF. */
882 bool is_gimple_mem_ref_addr (tree);
884 /* Returns true iff T is a valid if-statement condition. */
885 extern bool is_gimple_condexpr (tree);
887 /* Returns true iff T is a valid call address expression. */
888 extern bool is_gimple_call_addr (tree);
890 /* Return TRUE iff stmt is a call to a built-in function. */
891 extern bool is_gimple_builtin_call (gimple stmt);
893 extern void recalculate_side_effects (tree);
894 extern bool gimple_compare_field_offset (tree, tree);
895 extern tree gimple_unsigned_type (tree);
896 extern tree gimple_signed_type (tree);
897 extern alias_set_type gimple_get_alias_set (tree);
898 extern bool walk_stmt_load_store_addr_ops (gimple, void *,
899 bool (*)(gimple, tree, void *),
900 bool (*)(gimple, tree, void *),
901 bool (*)(gimple, tree, void *));
902 extern bool walk_stmt_load_store_ops (gimple, void *,
903 bool (*)(gimple, tree, void *),
904 bool (*)(gimple, tree, void *));
905 extern bool gimple_ior_addresses_taken (bitmap, gimple);
906 extern bool gimple_call_builtin_p (gimple, enum built_in_class);
907 extern bool gimple_call_builtin_p (gimple, enum built_in_function);
908 extern bool gimple_asm_clobbers_memory_p (const_gimple);
909 extern bool useless_type_conversion_p (tree, tree);
910 extern bool types_compatible_p (tree, tree);
912 /* In gimplify.c */
913 extern tree create_tmp_var_raw (tree, const char *);
914 extern tree create_tmp_var_name (const char *);
915 extern tree create_tmp_var (tree, const char *);
916 extern tree create_tmp_reg (tree, const char *);
917 extern tree get_initialized_tmp_var (tree, gimple_seq *, gimple_seq *);
918 extern tree get_formal_tmp_var (tree, gimple_seq *);
919 extern void declare_vars (tree, gimple, bool);
920 extern void annotate_all_with_location (gimple_seq, location_t);
921 extern unsigned gimple_call_get_nobnd_arg_index (const_gimple, unsigned);
923 /* Validation of GIMPLE expressions. Note that these predicates only check
924 the basic form of the expression, they don't recurse to make sure that
925 underlying nodes are also of the right form. */
926 typedef bool (*gimple_predicate)(tree);
929 /* FIXME we should deduce this from the predicate. */
930 enum fallback {
931 fb_none = 0, /* Do not generate a temporary. */
933 fb_rvalue = 1, /* Generate an rvalue to hold the result of a
934 gimplified expression. */
936 fb_lvalue = 2, /* Generate an lvalue to hold the result of a
937 gimplified expression. */
939 fb_mayfail = 4, /* Gimplification may fail. Error issued
940 afterwards. */
941 fb_either= fb_rvalue | fb_lvalue
944 typedef int fallback_t;
946 enum gimplify_status {
947 GS_ERROR = -2, /* Something Bad Seen. */
948 GS_UNHANDLED = -1, /* A langhook result for "I dunno". */
949 GS_OK = 0, /* We did something, maybe more to do. */
950 GS_ALL_DONE = 1 /* The expression is fully gimplified. */
953 /* Formal (expression) temporary table handling: multiple occurrences of
954 the same scalar expression are evaluated into the same temporary. */
956 typedef struct gimple_temp_hash_elt
958 tree val; /* Key */
959 tree temp; /* Value */
960 } elt_t;
962 /* Gimplify hashtable helper. */
964 struct gimplify_hasher : typed_free_remove <elt_t>
966 typedef elt_t value_type;
967 typedef elt_t compare_type;
968 static inline hashval_t hash (const value_type *);
969 static inline bool equal (const value_type *, const compare_type *);
972 inline hashval_t
973 gimplify_hasher::hash (const value_type *p)
975 tree t = p->val;
976 return iterative_hash_expr (t, 0);
979 inline bool
980 gimplify_hasher::equal (const value_type *p1, const compare_type *p2)
982 tree t1 = p1->val;
983 tree t2 = p2->val;
984 enum tree_code code = TREE_CODE (t1);
986 if (TREE_CODE (t2) != code
987 || TREE_TYPE (t1) != TREE_TYPE (t2))
988 return false;
990 if (!operand_equal_p (t1, t2, 0))
991 return false;
993 #ifdef ENABLE_CHECKING
994 /* Only allow them to compare equal if they also hash equal; otherwise
995 results are nondeterminate, and we fail bootstrap comparison. */
996 gcc_assert (hash (p1) == hash (p2));
997 #endif
999 return true;
1002 struct gimplify_ctx
1004 struct gimplify_ctx *prev_context;
1006 vec<gimple> bind_expr_stack;
1007 tree temps;
1008 gimple_seq conditional_cleanups;
1009 tree exit_label;
1010 tree return_temp;
1012 vec<tree> case_labels;
1013 /* The formal temporary table. Should this be persistent? */
1014 hash_table <gimplify_hasher> temp_htab;
1016 int conditions;
1017 bool save_stack;
1018 bool into_ssa;
1019 bool allow_rhs_cond_expr;
1020 bool in_cleanup_point_expr;
1023 /* Return true if gimplify_one_sizepos doesn't need to gimplify
1024 expr (when in TYPE_SIZE{,_UNIT} and similar type/decl size/bitsize
1025 fields). */
1026 static inline bool
1027 is_gimple_sizepos (tree expr)
1029 /* gimplify_one_sizepos doesn't need to do anything if the value isn't there,
1030 is constant, or contains A PLACEHOLDER_EXPR. We also don't want to do
1031 anything if it's already a VAR_DECL. If it's a VAR_DECL from another
1032 function, the gimplifier will want to replace it with a new variable,
1033 but that will cause problems if this type is from outside the function.
1034 It's OK to have that here. */
1035 return (expr == NULL_TREE
1036 || TREE_CONSTANT (expr)
1037 || TREE_CODE (expr) == VAR_DECL
1038 || CONTAINS_PLACEHOLDER_P (expr));
1041 /* Get the number of the next statement uid to be allocated. */
1042 static inline unsigned int
1043 gimple_stmt_max_uid (struct function *fn)
1045 return fn->last_stmt_uid;
1048 /* Set the number of the next statement uid to be allocated. */
1049 static inline void
1050 set_gimple_stmt_max_uid (struct function *fn, unsigned int maxid)
1052 fn->last_stmt_uid = maxid;
1055 /* Set the number of the next statement uid to be allocated. */
1056 static inline unsigned int
1057 inc_gimple_stmt_max_uid (struct function *fn)
1059 return fn->last_stmt_uid++;
1062 extern enum gimplify_status gimplify_expr (tree *, gimple_seq *, gimple_seq *,
1063 bool (*) (tree), fallback_t);
1064 extern void gimplify_type_sizes (tree, gimple_seq *);
1065 extern void gimplify_one_sizepos (tree *, gimple_seq *);
1066 enum gimplify_status gimplify_self_mod_expr (tree *, gimple_seq *, gimple_seq *,
1067 bool, tree);
1068 extern bool gimplify_stmt (tree *, gimple_seq *);
1069 extern gimple gimplify_body (tree, bool);
1070 extern void push_gimplify_context (struct gimplify_ctx *);
1071 extern void pop_gimplify_context (gimple);
1072 extern void gimplify_and_add (tree, gimple_seq *);
1074 /* Miscellaneous helpers. */
1075 extern void gimple_add_tmp_var (tree);
1076 extern gimple gimple_current_bind_expr (void);
1077 extern vec<gimple> gimple_bind_expr_stack (void);
1078 extern tree voidify_wrapper_expr (tree, tree);
1079 extern tree build_and_jump (tree *);
1080 extern tree force_labels_r (tree *, int *, void *);
1081 extern enum gimplify_status gimplify_va_arg_expr (tree *, gimple_seq *,
1082 gimple_seq *);
1083 struct gimplify_omp_ctx;
1084 extern void omp_firstprivatize_variable (struct gimplify_omp_ctx *, tree);
1085 extern tree gimple_boolify (tree);
1086 extern gimple_predicate rhs_predicate_for (tree);
1087 extern tree canonicalize_cond_expr_cond (tree);
1088 extern void dump_decl_set (FILE *, bitmap);
1089 extern bool gimple_can_coalesce_p (tree, tree);
1090 extern bool nonfreeing_call_p (gimple);
1091 extern tree copy_var_decl (tree, tree, tree);
1093 /* In trans-mem.c. */
1094 extern void diagnose_tm_safe_errors (tree);
1095 extern void compute_transaction_bits (void);
1097 /* In tree-nested.c. */
1098 extern void lower_nested_functions (tree);
1099 extern void insert_field_into_struct (tree, tree);
1101 /* In gimplify.c. */
1102 extern void gimplify_function_tree (tree);
1104 /* In cfgexpand.c. */
1105 extern tree gimple_assign_rhs_to_tree (gimple);
1107 /* In builtins.c */
1108 extern bool validate_gimple_arglist (const_gimple, ...);
1110 /* Return the first node in GIMPLE sequence S. */
1112 static inline gimple_seq_node
1113 gimple_seq_first (gimple_seq s)
1115 return s;
1119 /* Return the first statement in GIMPLE sequence S. */
1121 static inline gimple
1122 gimple_seq_first_stmt (gimple_seq s)
1124 gimple_seq_node n = gimple_seq_first (s);
1125 return n;
1129 /* Return the last node in GIMPLE sequence S. */
1131 static inline gimple_seq_node
1132 gimple_seq_last (gimple_seq s)
1134 return s ? s->gsbase.prev : NULL;
1138 /* Return the last statement in GIMPLE sequence S. */
1140 static inline gimple
1141 gimple_seq_last_stmt (gimple_seq s)
1143 gimple_seq_node n = gimple_seq_last (s);
1144 return n;
1148 /* Set the last node in GIMPLE sequence *PS to LAST. */
1150 static inline void
1151 gimple_seq_set_last (gimple_seq *ps, gimple_seq_node last)
1153 (*ps)->gsbase.prev = last;
1157 /* Set the first node in GIMPLE sequence *PS to FIRST. */
1159 static inline void
1160 gimple_seq_set_first (gimple_seq *ps, gimple_seq_node first)
1162 *ps = first;
1166 /* Return true if GIMPLE sequence S is empty. */
1168 static inline bool
1169 gimple_seq_empty_p (gimple_seq s)
1171 return s == NULL;
1174 void gimple_seq_add_stmt (gimple_seq *, gimple);
1176 /* Link gimple statement GS to the end of the sequence *SEQ_P. If
1177 *SEQ_P is NULL, a new sequence is allocated. This function is
1178 similar to gimple_seq_add_stmt, but does not scan the operands.
1179 During gimplification, we need to manipulate statement sequences
1180 before the def/use vectors have been constructed. */
1181 void gimple_seq_add_stmt_without_update (gimple_seq *, gimple);
1183 /* Allocate a new sequence and initialize its first element with STMT. */
1185 static inline gimple_seq
1186 gimple_seq_alloc_with_stmt (gimple stmt)
1188 gimple_seq seq = NULL;
1189 gimple_seq_add_stmt (&seq, stmt);
1190 return seq;
1194 /* Returns the sequence of statements in BB. */
1196 static inline gimple_seq
1197 bb_seq (const_basic_block bb)
1199 return (!(bb->flags & BB_RTL)) ? bb->il.gimple.seq : NULL;
1202 static inline gimple_seq *
1203 bb_seq_addr (basic_block bb)
1205 return (!(bb->flags & BB_RTL)) ? &bb->il.gimple.seq : NULL;
1208 /* Sets the sequence of statements in BB to SEQ. */
1210 static inline void
1211 set_bb_seq (basic_block bb, gimple_seq seq)
1213 gcc_checking_assert (!(bb->flags & BB_RTL));
1214 bb->il.gimple.seq = seq;
1218 /* Return the code for GIMPLE statement G. */
1220 static inline enum gimple_code
1221 gimple_code (const_gimple g)
1223 return g->gsbase.code;
1227 /* Return the GSS code used by a GIMPLE code. */
1229 static inline enum gimple_statement_structure_enum
1230 gss_for_code (enum gimple_code code)
1232 gcc_gimple_checking_assert ((unsigned int)code < LAST_AND_UNUSED_GIMPLE_CODE);
1233 return gss_for_code_[code];
1237 /* Return which GSS code is used by GS. */
1239 static inline enum gimple_statement_structure_enum
1240 gimple_statement_structure (gimple gs)
1242 return gss_for_code (gimple_code (gs));
1246 /* Return true if statement G has sub-statements. This is only true for
1247 High GIMPLE statements. */
1249 static inline bool
1250 gimple_has_substatements (gimple g)
1252 switch (gimple_code (g))
1254 case GIMPLE_BIND:
1255 case GIMPLE_CATCH:
1256 case GIMPLE_EH_FILTER:
1257 case GIMPLE_EH_ELSE:
1258 case GIMPLE_TRY:
1259 case GIMPLE_OMP_FOR:
1260 case GIMPLE_OMP_MASTER:
1261 case GIMPLE_OMP_TASKGROUP:
1262 case GIMPLE_OMP_ORDERED:
1263 case GIMPLE_OMP_SECTION:
1264 case GIMPLE_OMP_PARALLEL:
1265 case GIMPLE_OMP_TASK:
1266 case GIMPLE_OMP_SECTIONS:
1267 case GIMPLE_OMP_SINGLE:
1268 case GIMPLE_OMP_TARGET:
1269 case GIMPLE_OMP_TEAMS:
1270 case GIMPLE_OMP_CRITICAL:
1271 case GIMPLE_WITH_CLEANUP_EXPR:
1272 case GIMPLE_TRANSACTION:
1273 return true;
1275 default:
1276 return false;
1281 /* Return the basic block holding statement G. */
1283 static inline basic_block
1284 gimple_bb (const_gimple g)
1286 return g->gsbase.bb;
1290 /* Return the lexical scope block holding statement G. */
1292 static inline tree
1293 gimple_block (const_gimple g)
1295 return LOCATION_BLOCK (g->gsbase.location);
1299 /* Set BLOCK to be the lexical scope block holding statement G. */
1301 static inline void
1302 gimple_set_block (gimple g, tree block)
1304 if (block)
1305 g->gsbase.location =
1306 COMBINE_LOCATION_DATA (line_table, g->gsbase.location, block);
1307 else
1308 g->gsbase.location = LOCATION_LOCUS (g->gsbase.location);
1312 /* Return location information for statement G. */
1314 static inline location_t
1315 gimple_location (const_gimple g)
1317 return g->gsbase.location;
1320 /* Return pointer to location information for statement G. */
1322 static inline const location_t *
1323 gimple_location_ptr (const_gimple g)
1325 return &g->gsbase.location;
1329 /* Set location information for statement G. */
1331 static inline void
1332 gimple_set_location (gimple g, location_t location)
1334 g->gsbase.location = location;
1338 /* Return true if G contains location information. */
1340 static inline bool
1341 gimple_has_location (const_gimple g)
1343 return LOCATION_LOCUS (gimple_location (g)) != UNKNOWN_LOCATION;
1347 /* Return the file name of the location of STMT. */
1349 static inline const char *
1350 gimple_filename (const_gimple stmt)
1352 return LOCATION_FILE (gimple_location (stmt));
1356 /* Return the line number of the location of STMT. */
1358 static inline int
1359 gimple_lineno (const_gimple stmt)
1361 return LOCATION_LINE (gimple_location (stmt));
1365 /* Determine whether SEQ is a singleton. */
1367 static inline bool
1368 gimple_seq_singleton_p (gimple_seq seq)
1370 return ((gimple_seq_first (seq) != NULL)
1371 && (gimple_seq_first (seq) == gimple_seq_last (seq)));
1374 /* Return true if no warnings should be emitted for statement STMT. */
1376 static inline bool
1377 gimple_no_warning_p (const_gimple stmt)
1379 return stmt->gsbase.no_warning;
1382 /* Set the no_warning flag of STMT to NO_WARNING. */
1384 static inline void
1385 gimple_set_no_warning (gimple stmt, bool no_warning)
1387 stmt->gsbase.no_warning = (unsigned) no_warning;
1390 /* Set the visited status on statement STMT to VISITED_P. */
1392 static inline void
1393 gimple_set_visited (gimple stmt, bool visited_p)
1395 stmt->gsbase.visited = (unsigned) visited_p;
1399 /* Return the visited status for statement STMT. */
1401 static inline bool
1402 gimple_visited_p (gimple stmt)
1404 return stmt->gsbase.visited;
1408 /* Set pass local flag PLF on statement STMT to VAL_P. */
1410 static inline void
1411 gimple_set_plf (gimple stmt, enum plf_mask plf, bool val_p)
1413 if (val_p)
1414 stmt->gsbase.plf |= (unsigned int) plf;
1415 else
1416 stmt->gsbase.plf &= ~((unsigned int) plf);
1420 /* Return the value of pass local flag PLF on statement STMT. */
1422 static inline unsigned int
1423 gimple_plf (gimple stmt, enum plf_mask plf)
1425 return stmt->gsbase.plf & ((unsigned int) plf);
1429 /* Set the UID of statement. */
1431 static inline void
1432 gimple_set_uid (gimple g, unsigned uid)
1434 g->gsbase.uid = uid;
1438 /* Return the UID of statement. */
1440 static inline unsigned
1441 gimple_uid (const_gimple g)
1443 return g->gsbase.uid;
1447 /* Make statement G a singleton sequence. */
1449 static inline void
1450 gimple_init_singleton (gimple g)
1452 g->gsbase.next = NULL;
1453 g->gsbase.prev = g;
1457 /* Return true if GIMPLE statement G has register or memory operands. */
1459 static inline bool
1460 gimple_has_ops (const_gimple g)
1462 return gimple_code (g) >= GIMPLE_COND && gimple_code (g) <= GIMPLE_RETURN;
1466 /* Return true if GIMPLE statement G has memory operands. */
1468 static inline bool
1469 gimple_has_mem_ops (const_gimple g)
1471 return gimple_code (g) >= GIMPLE_ASSIGN && gimple_code (g) <= GIMPLE_RETURN;
1475 /* Return the set of USE operands for statement G. */
1477 static inline struct use_optype_d *
1478 gimple_use_ops (const_gimple g)
1480 if (!gimple_has_ops (g))
1481 return NULL;
1482 return g->gsops.opbase.use_ops;
1486 /* Set USE to be the set of USE operands for statement G. */
1488 static inline void
1489 gimple_set_use_ops (gimple g, struct use_optype_d *use)
1491 gcc_gimple_checking_assert (gimple_has_ops (g));
1492 g->gsops.opbase.use_ops = use;
1496 /* Return the single VUSE operand of the statement G. */
1498 static inline tree
1499 gimple_vuse (const_gimple g)
1501 if (!gimple_has_mem_ops (g))
1502 return NULL_TREE;
1503 return g->gsmembase.vuse;
1506 /* Return the single VDEF operand of the statement G. */
1508 static inline tree
1509 gimple_vdef (const_gimple g)
1511 if (!gimple_has_mem_ops (g))
1512 return NULL_TREE;
1513 return g->gsmembase.vdef;
1516 /* Return the single VUSE operand of the statement G. */
1518 static inline tree *
1519 gimple_vuse_ptr (gimple g)
1521 if (!gimple_has_mem_ops (g))
1522 return NULL;
1523 return &g->gsmembase.vuse;
1526 /* Return the single VDEF operand of the statement G. */
1528 static inline tree *
1529 gimple_vdef_ptr (gimple g)
1531 if (!gimple_has_mem_ops (g))
1532 return NULL;
1533 return &g->gsmembase.vdef;
1536 /* Set the single VUSE operand of the statement G. */
1538 static inline void
1539 gimple_set_vuse (gimple g, tree vuse)
1541 gcc_gimple_checking_assert (gimple_has_mem_ops (g));
1542 g->gsmembase.vuse = vuse;
1545 /* Set the single VDEF operand of the statement G. */
1547 static inline void
1548 gimple_set_vdef (gimple g, tree vdef)
1550 gcc_gimple_checking_assert (gimple_has_mem_ops (g));
1551 g->gsmembase.vdef = vdef;
1555 /* Return true if statement G has operands and the modified field has
1556 been set. */
1558 static inline bool
1559 gimple_modified_p (const_gimple g)
1561 return (gimple_has_ops (g)) ? (bool) g->gsbase.modified : false;
1565 /* Set the MODIFIED flag to MODIFIEDP, iff the gimple statement G has
1566 a MODIFIED field. */
1568 static inline void
1569 gimple_set_modified (gimple s, bool modifiedp)
1571 if (gimple_has_ops (s))
1572 s->gsbase.modified = (unsigned) modifiedp;
1576 /* Return the tree code for the expression computed by STMT. This is
1577 only valid for GIMPLE_COND, GIMPLE_CALL and GIMPLE_ASSIGN. For
1578 GIMPLE_CALL, return CALL_EXPR as the expression code for
1579 consistency. This is useful when the caller needs to deal with the
1580 three kinds of computation that GIMPLE supports. */
1582 static inline enum tree_code
1583 gimple_expr_code (const_gimple stmt)
1585 enum gimple_code code = gimple_code (stmt);
1586 if (code == GIMPLE_ASSIGN || code == GIMPLE_COND)
1587 return (enum tree_code) stmt->gsbase.subcode;
1588 else
1590 gcc_gimple_checking_assert (code == GIMPLE_CALL);
1591 return CALL_EXPR;
1596 /* Return true if statement STMT contains volatile operands. */
1598 static inline bool
1599 gimple_has_volatile_ops (const_gimple stmt)
1601 if (gimple_has_mem_ops (stmt))
1602 return stmt->gsbase.has_volatile_ops;
1603 else
1604 return false;
1608 /* Set the HAS_VOLATILE_OPS flag to VOLATILEP. */
1610 static inline void
1611 gimple_set_has_volatile_ops (gimple stmt, bool volatilep)
1613 if (gimple_has_mem_ops (stmt))
1614 stmt->gsbase.has_volatile_ops = (unsigned) volatilep;
1617 /* Return true if BB is in a transaction. */
1619 static inline bool
1620 block_in_transaction (basic_block bb)
1622 return flag_tm && bb->flags & BB_IN_TRANSACTION;
1625 /* Return true if STMT is in a transaction. */
1627 static inline bool
1628 gimple_in_transaction (gimple stmt)
1630 return block_in_transaction (gimple_bb (stmt));
1633 /* Return true if statement STMT may access memory. */
1635 static inline bool
1636 gimple_references_memory_p (gimple stmt)
1638 return gimple_has_mem_ops (stmt) && gimple_vuse (stmt);
1642 /* Return the subcode for OMP statement S. */
1644 static inline unsigned
1645 gimple_omp_subcode (const_gimple s)
1647 gcc_gimple_checking_assert (gimple_code (s) >= GIMPLE_OMP_ATOMIC_LOAD
1648 && gimple_code (s) <= GIMPLE_OMP_TEAMS);
1649 return s->gsbase.subcode;
1652 /* Set the subcode for OMP statement S to SUBCODE. */
1654 static inline void
1655 gimple_omp_set_subcode (gimple s, unsigned int subcode)
1657 /* We only have 16 bits for the subcode. Assert that we are not
1658 overflowing it. */
1659 gcc_gimple_checking_assert (subcode < (1 << 16));
1660 s->gsbase.subcode = subcode;
1663 /* Set the nowait flag on OMP_RETURN statement S. */
1665 static inline void
1666 gimple_omp_return_set_nowait (gimple s)
1668 GIMPLE_CHECK (s, GIMPLE_OMP_RETURN);
1669 s->gsbase.subcode |= GF_OMP_RETURN_NOWAIT;
1673 /* Return true if OMP return statement G has the GF_OMP_RETURN_NOWAIT
1674 flag set. */
1676 static inline bool
1677 gimple_omp_return_nowait_p (const_gimple g)
1679 GIMPLE_CHECK (g, GIMPLE_OMP_RETURN);
1680 return (gimple_omp_subcode (g) & GF_OMP_RETURN_NOWAIT) != 0;
1684 /* Set the LHS of OMP return. */
1686 static inline void
1687 gimple_omp_return_set_lhs (gimple g, tree lhs)
1689 GIMPLE_CHECK (g, GIMPLE_OMP_RETURN);
1690 g->gimple_omp_atomic_store.val = lhs;
1694 /* Get the LHS of OMP return. */
1696 static inline tree
1697 gimple_omp_return_lhs (const_gimple g)
1699 GIMPLE_CHECK (g, GIMPLE_OMP_RETURN);
1700 return g->gimple_omp_atomic_store.val;
1704 /* Return a pointer to the LHS of OMP return. */
1706 static inline tree *
1707 gimple_omp_return_lhs_ptr (gimple g)
1709 GIMPLE_CHECK (g, GIMPLE_OMP_RETURN);
1710 return &g->gimple_omp_atomic_store.val;
1714 /* Return true if OMP section statement G has the GF_OMP_SECTION_LAST
1715 flag set. */
1717 static inline bool
1718 gimple_omp_section_last_p (const_gimple g)
1720 GIMPLE_CHECK (g, GIMPLE_OMP_SECTION);
1721 return (gimple_omp_subcode (g) & GF_OMP_SECTION_LAST) != 0;
1725 /* Set the GF_OMP_SECTION_LAST flag on G. */
1727 static inline void
1728 gimple_omp_section_set_last (gimple g)
1730 GIMPLE_CHECK (g, GIMPLE_OMP_SECTION);
1731 g->gsbase.subcode |= GF_OMP_SECTION_LAST;
1735 /* Return true if OMP parallel statement G has the
1736 GF_OMP_PARALLEL_COMBINED flag set. */
1738 static inline bool
1739 gimple_omp_parallel_combined_p (const_gimple g)
1741 GIMPLE_CHECK (g, GIMPLE_OMP_PARALLEL);
1742 return (gimple_omp_subcode (g) & GF_OMP_PARALLEL_COMBINED) != 0;
1746 /* Set the GF_OMP_PARALLEL_COMBINED field in G depending on the boolean
1747 value of COMBINED_P. */
1749 static inline void
1750 gimple_omp_parallel_set_combined_p (gimple g, bool combined_p)
1752 GIMPLE_CHECK (g, GIMPLE_OMP_PARALLEL);
1753 if (combined_p)
1754 g->gsbase.subcode |= GF_OMP_PARALLEL_COMBINED;
1755 else
1756 g->gsbase.subcode &= ~GF_OMP_PARALLEL_COMBINED;
1760 /* Return true if OMP atomic load/store statement G has the
1761 GF_OMP_ATOMIC_NEED_VALUE flag set. */
1763 static inline bool
1764 gimple_omp_atomic_need_value_p (const_gimple g)
1766 if (gimple_code (g) != GIMPLE_OMP_ATOMIC_LOAD)
1767 GIMPLE_CHECK (g, GIMPLE_OMP_ATOMIC_STORE);
1768 return (gimple_omp_subcode (g) & GF_OMP_ATOMIC_NEED_VALUE) != 0;
1772 /* Set the GF_OMP_ATOMIC_NEED_VALUE flag on G. */
1774 static inline void
1775 gimple_omp_atomic_set_need_value (gimple g)
1777 if (gimple_code (g) != GIMPLE_OMP_ATOMIC_LOAD)
1778 GIMPLE_CHECK (g, GIMPLE_OMP_ATOMIC_STORE);
1779 g->gsbase.subcode |= GF_OMP_ATOMIC_NEED_VALUE;
1783 /* Return true if OMP atomic load/store statement G has the
1784 GF_OMP_ATOMIC_SEQ_CST flag set. */
1786 static inline bool
1787 gimple_omp_atomic_seq_cst_p (const_gimple g)
1789 if (gimple_code (g) != GIMPLE_OMP_ATOMIC_LOAD)
1790 GIMPLE_CHECK (g, GIMPLE_OMP_ATOMIC_STORE);
1791 return (gimple_omp_subcode (g) & GF_OMP_ATOMIC_SEQ_CST) != 0;
1795 /* Set the GF_OMP_ATOMIC_SEQ_CST flag on G. */
1797 static inline void
1798 gimple_omp_atomic_set_seq_cst (gimple g)
1800 if (gimple_code (g) != GIMPLE_OMP_ATOMIC_LOAD)
1801 GIMPLE_CHECK (g, GIMPLE_OMP_ATOMIC_STORE);
1802 g->gsbase.subcode |= GF_OMP_ATOMIC_SEQ_CST;
1806 /* Return the number of operands for statement GS. */
1808 static inline unsigned
1809 gimple_num_ops (const_gimple gs)
1811 return gs->gsbase.num_ops;
1815 /* Set the number of operands for statement GS. */
1817 static inline void
1818 gimple_set_num_ops (gimple gs, unsigned num_ops)
1820 gs->gsbase.num_ops = num_ops;
1824 /* Return the array of operands for statement GS. */
1826 static inline tree *
1827 gimple_ops (gimple gs)
1829 size_t off;
1831 /* All the tuples have their operand vector at the very bottom
1832 of the structure. Note that those structures that do not
1833 have an operand vector have a zero offset. */
1834 off = gimple_ops_offset_[gimple_statement_structure (gs)];
1835 gcc_gimple_checking_assert (off != 0);
1837 return (tree *) ((char *) gs + off);
1841 /* Return operand I for statement GS. */
1843 static inline tree
1844 gimple_op (const_gimple gs, unsigned i)
1846 if (gimple_has_ops (gs))
1848 gcc_gimple_checking_assert (i < gimple_num_ops (gs));
1849 return gimple_ops (CONST_CAST_GIMPLE (gs))[i];
1851 else
1852 return NULL_TREE;
1855 /* Return a pointer to operand I for statement GS. */
1857 static inline tree *
1858 gimple_op_ptr (const_gimple gs, unsigned i)
1860 if (gimple_has_ops (gs))
1862 gcc_gimple_checking_assert (i < gimple_num_ops (gs));
1863 return gimple_ops (CONST_CAST_GIMPLE (gs)) + i;
1865 else
1866 return NULL;
1869 /* Set operand I of statement GS to OP. */
1871 static inline void
1872 gimple_set_op (gimple gs, unsigned i, tree op)
1874 gcc_gimple_checking_assert (gimple_has_ops (gs) && i < gimple_num_ops (gs));
1876 /* Note. It may be tempting to assert that OP matches
1877 is_gimple_operand, but that would be wrong. Different tuples
1878 accept slightly different sets of tree operands. Each caller
1879 should perform its own validation. */
1880 gimple_ops (gs)[i] = op;
1883 /* Return true if GS is a GIMPLE_ASSIGN. */
1885 static inline bool
1886 is_gimple_assign (const_gimple gs)
1888 return gimple_code (gs) == GIMPLE_ASSIGN;
1891 /* Determine if expression CODE is one of the valid expressions that can
1892 be used on the RHS of GIMPLE assignments. */
1894 static inline enum gimple_rhs_class
1895 get_gimple_rhs_class (enum tree_code code)
1897 return (enum gimple_rhs_class) gimple_rhs_class_table[(int) code];
1900 /* Return the LHS of assignment statement GS. */
1902 static inline tree
1903 gimple_assign_lhs (const_gimple gs)
1905 GIMPLE_CHECK (gs, GIMPLE_ASSIGN);
1906 return gimple_op (gs, 0);
1910 /* Return a pointer to the LHS of assignment statement GS. */
1912 static inline tree *
1913 gimple_assign_lhs_ptr (const_gimple gs)
1915 GIMPLE_CHECK (gs, GIMPLE_ASSIGN);
1916 return gimple_op_ptr (gs, 0);
1920 /* Set LHS to be the LHS operand of assignment statement GS. */
1922 static inline void
1923 gimple_assign_set_lhs (gimple gs, tree lhs)
1925 GIMPLE_CHECK (gs, GIMPLE_ASSIGN);
1926 gimple_set_op (gs, 0, lhs);
1928 if (lhs && TREE_CODE (lhs) == SSA_NAME)
1929 SSA_NAME_DEF_STMT (lhs) = gs;
1933 /* Return the first operand on the RHS of assignment statement GS. */
1935 static inline tree
1936 gimple_assign_rhs1 (const_gimple gs)
1938 GIMPLE_CHECK (gs, GIMPLE_ASSIGN);
1939 return gimple_op (gs, 1);
1943 /* Return a pointer to the first operand on the RHS of assignment
1944 statement GS. */
1946 static inline tree *
1947 gimple_assign_rhs1_ptr (const_gimple gs)
1949 GIMPLE_CHECK (gs, GIMPLE_ASSIGN);
1950 return gimple_op_ptr (gs, 1);
1953 /* Set RHS to be the first operand on the RHS of assignment statement GS. */
1955 static inline void
1956 gimple_assign_set_rhs1 (gimple gs, tree rhs)
1958 GIMPLE_CHECK (gs, GIMPLE_ASSIGN);
1960 gimple_set_op (gs, 1, rhs);
1964 /* Return the second operand on the RHS of assignment statement GS.
1965 If GS does not have two operands, NULL is returned instead. */
1967 static inline tree
1968 gimple_assign_rhs2 (const_gimple gs)
1970 GIMPLE_CHECK (gs, GIMPLE_ASSIGN);
1972 if (gimple_num_ops (gs) >= 3)
1973 return gimple_op (gs, 2);
1974 else
1975 return NULL_TREE;
1979 /* Return a pointer to the second operand on the RHS of assignment
1980 statement GS. */
1982 static inline tree *
1983 gimple_assign_rhs2_ptr (const_gimple gs)
1985 GIMPLE_CHECK (gs, GIMPLE_ASSIGN);
1986 return gimple_op_ptr (gs, 2);
1990 /* Set RHS to be the second operand on the RHS of assignment statement GS. */
1992 static inline void
1993 gimple_assign_set_rhs2 (gimple gs, tree rhs)
1995 GIMPLE_CHECK (gs, GIMPLE_ASSIGN);
1997 gimple_set_op (gs, 2, rhs);
2000 /* Return the third operand on the RHS of assignment statement GS.
2001 If GS does not have two operands, NULL is returned instead. */
2003 static inline tree
2004 gimple_assign_rhs3 (const_gimple gs)
2006 GIMPLE_CHECK (gs, GIMPLE_ASSIGN);
2008 if (gimple_num_ops (gs) >= 4)
2009 return gimple_op (gs, 3);
2010 else
2011 return NULL_TREE;
2014 /* Return a pointer to the third operand on the RHS of assignment
2015 statement GS. */
2017 static inline tree *
2018 gimple_assign_rhs3_ptr (const_gimple gs)
2020 GIMPLE_CHECK (gs, GIMPLE_ASSIGN);
2021 return gimple_op_ptr (gs, 3);
2025 /* Set RHS to be the third operand on the RHS of assignment statement GS. */
2027 static inline void
2028 gimple_assign_set_rhs3 (gimple gs, tree rhs)
2030 GIMPLE_CHECK (gs, GIMPLE_ASSIGN);
2032 gimple_set_op (gs, 3, rhs);
2035 /* A wrapper around gimple_assign_set_rhs_with_ops_1, for callers which expect
2036 to see only a maximum of two operands. */
2038 static inline void
2039 gimple_assign_set_rhs_with_ops (gimple_stmt_iterator *gsi, enum tree_code code,
2040 tree op1, tree op2)
2042 gimple_assign_set_rhs_with_ops_1 (gsi, code, op1, op2, NULL);
2045 /* A wrapper around extract_ops_from_tree_1, for callers which expect
2046 to see only a maximum of two operands. */
2048 static inline void
2049 extract_ops_from_tree (tree expr, enum tree_code *code, tree *op0,
2050 tree *op1)
2052 tree op2;
2053 extract_ops_from_tree_1 (expr, code, op0, op1, &op2);
2054 gcc_assert (op2 == NULL_TREE);
2057 /* Returns true if GS is a nontemporal move. */
2059 static inline bool
2060 gimple_assign_nontemporal_move_p (const_gimple gs)
2062 GIMPLE_CHECK (gs, GIMPLE_ASSIGN);
2063 return gs->gsbase.nontemporal_move;
2066 /* Sets nontemporal move flag of GS to NONTEMPORAL. */
2068 static inline void
2069 gimple_assign_set_nontemporal_move (gimple gs, bool nontemporal)
2071 GIMPLE_CHECK (gs, GIMPLE_ASSIGN);
2072 gs->gsbase.nontemporal_move = nontemporal;
2076 /* Return the code of the expression computed on the rhs of assignment
2077 statement GS. In case that the RHS is a single object, returns the
2078 tree code of the object. */
2080 static inline enum tree_code
2081 gimple_assign_rhs_code (const_gimple gs)
2083 enum tree_code code;
2084 GIMPLE_CHECK (gs, GIMPLE_ASSIGN);
2086 code = (enum tree_code) gs->gsbase.subcode;
2087 /* While we initially set subcode to the TREE_CODE of the rhs for
2088 GIMPLE_SINGLE_RHS assigns we do not update that subcode to stay
2089 in sync when we rewrite stmts into SSA form or do SSA propagations. */
2090 if (get_gimple_rhs_class (code) == GIMPLE_SINGLE_RHS)
2091 code = TREE_CODE (gimple_assign_rhs1 (gs));
2093 return code;
2097 /* Set CODE to be the code for the expression computed on the RHS of
2098 assignment S. */
2100 static inline void
2101 gimple_assign_set_rhs_code (gimple s, enum tree_code code)
2103 GIMPLE_CHECK (s, GIMPLE_ASSIGN);
2104 s->gsbase.subcode = code;
2108 /* Return the gimple rhs class of the code of the expression computed on
2109 the rhs of assignment statement GS.
2110 This will never return GIMPLE_INVALID_RHS. */
2112 static inline enum gimple_rhs_class
2113 gimple_assign_rhs_class (const_gimple gs)
2115 return get_gimple_rhs_class (gimple_assign_rhs_code (gs));
2118 /* Return true if GS is an assignment with a singleton RHS, i.e.,
2119 there is no operator associated with the assignment itself.
2120 Unlike gimple_assign_copy_p, this predicate returns true for
2121 any RHS operand, including those that perform an operation
2122 and do not have the semantics of a copy, such as COND_EXPR. */
2124 static inline bool
2125 gimple_assign_single_p (gimple gs)
2127 return (is_gimple_assign (gs)
2128 && gimple_assign_rhs_class (gs) == GIMPLE_SINGLE_RHS);
2131 /* Return true if GS performs a store to its lhs. */
2133 static inline bool
2134 gimple_store_p (gimple gs)
2136 tree lhs = gimple_get_lhs (gs);
2137 return lhs && !is_gimple_reg (lhs);
2140 /* Return true if GS is an assignment that loads from its rhs1. */
2142 static inline bool
2143 gimple_assign_load_p (gimple gs)
2145 tree rhs;
2146 if (!gimple_assign_single_p (gs))
2147 return false;
2148 rhs = gimple_assign_rhs1 (gs);
2149 if (TREE_CODE (rhs) == WITH_SIZE_EXPR)
2150 return true;
2151 rhs = get_base_address (rhs);
2152 return (DECL_P (rhs)
2153 || TREE_CODE (rhs) == MEM_REF || TREE_CODE (rhs) == TARGET_MEM_REF);
2157 /* Return true if S is a type-cast assignment. */
2159 static inline bool
2160 gimple_assign_cast_p (gimple s)
2162 if (is_gimple_assign (s))
2164 enum tree_code sc = gimple_assign_rhs_code (s);
2165 return CONVERT_EXPR_CODE_P (sc)
2166 || sc == VIEW_CONVERT_EXPR
2167 || sc == FIX_TRUNC_EXPR;
2170 return false;
2173 /* Return true if S is a clobber statement. */
2175 static inline bool
2176 gimple_clobber_p (gimple s)
2178 return gimple_assign_single_p (s)
2179 && TREE_CLOBBER_P (gimple_assign_rhs1 (s));
2182 /* Return true if GS is a GIMPLE_CALL. */
2184 static inline bool
2185 is_gimple_call (const_gimple gs)
2187 return gimple_code (gs) == GIMPLE_CALL;
2190 /* Return the LHS of call statement GS. */
2192 static inline tree
2193 gimple_call_lhs (const_gimple gs)
2195 GIMPLE_CHECK (gs, GIMPLE_CALL);
2196 return gimple_op (gs, 0);
2200 /* Return a pointer to the LHS of call statement GS. */
2202 static inline tree *
2203 gimple_call_lhs_ptr (const_gimple gs)
2205 GIMPLE_CHECK (gs, GIMPLE_CALL);
2206 return gimple_op_ptr (gs, 0);
2210 /* Set LHS to be the LHS operand of call statement GS. */
2212 static inline void
2213 gimple_call_set_lhs (gimple gs, tree lhs)
2215 GIMPLE_CHECK (gs, GIMPLE_CALL);
2216 gimple_set_op (gs, 0, lhs);
2217 if (lhs && TREE_CODE (lhs) == SSA_NAME)
2218 SSA_NAME_DEF_STMT (lhs) = gs;
2222 /* Return true if call GS calls an internal-only function, as enumerated
2223 by internal_fn. */
2225 static inline bool
2226 gimple_call_internal_p (const_gimple gs)
2228 GIMPLE_CHECK (gs, GIMPLE_CALL);
2229 return (gs->gsbase.subcode & GF_CALL_INTERNAL) != 0;
2233 /* Return the target of internal call GS. */
2235 static inline enum internal_fn
2236 gimple_call_internal_fn (const_gimple gs)
2238 gcc_gimple_checking_assert (gimple_call_internal_p (gs));
2239 return gs->gimple_call.u.internal_fn;
2243 /* Return the function type of the function called by GS. */
2245 static inline tree
2246 gimple_call_fntype (const_gimple gs)
2248 GIMPLE_CHECK (gs, GIMPLE_CALL);
2249 if (gimple_call_internal_p (gs))
2250 return NULL_TREE;
2251 return gs->gimple_call.u.fntype;
2254 /* Set the type of the function called by GS to FNTYPE. */
2256 static inline void
2257 gimple_call_set_fntype (gimple gs, tree fntype)
2259 GIMPLE_CHECK (gs, GIMPLE_CALL);
2260 gcc_gimple_checking_assert (!gimple_call_internal_p (gs));
2261 gs->gimple_call.u.fntype = fntype;
2265 /* Return the tree node representing the function called by call
2266 statement GS. */
2268 static inline tree
2269 gimple_call_fn (const_gimple gs)
2271 GIMPLE_CHECK (gs, GIMPLE_CALL);
2272 return gimple_op (gs, 1);
2275 /* Return a pointer to the tree node representing the function called by call
2276 statement GS. */
2278 static inline tree *
2279 gimple_call_fn_ptr (const_gimple gs)
2281 GIMPLE_CHECK (gs, GIMPLE_CALL);
2282 return gimple_op_ptr (gs, 1);
2286 /* Set FN to be the function called by call statement GS. */
2288 static inline void
2289 gimple_call_set_fn (gimple gs, tree fn)
2291 GIMPLE_CHECK (gs, GIMPLE_CALL);
2292 gcc_gimple_checking_assert (!gimple_call_internal_p (gs));
2293 gimple_set_op (gs, 1, fn);
2297 /* Set FNDECL to be the function called by call statement GS. */
2299 static inline void
2300 gimple_call_set_fndecl (gimple gs, tree decl)
2302 GIMPLE_CHECK (gs, GIMPLE_CALL);
2303 gcc_gimple_checking_assert (!gimple_call_internal_p (gs));
2304 gimple_set_op (gs, 1, build_fold_addr_expr_loc (gimple_location (gs), decl));
2308 /* Set internal function FN to be the function called by call statement GS. */
2310 static inline void
2311 gimple_call_set_internal_fn (gimple gs, enum internal_fn fn)
2313 GIMPLE_CHECK (gs, GIMPLE_CALL);
2314 gcc_gimple_checking_assert (gimple_call_internal_p (gs));
2315 gs->gimple_call.u.internal_fn = fn;
2319 /* Given a valid GIMPLE_CALL function address return the FUNCTION_DECL
2320 associated with the callee if known. Otherwise return NULL_TREE. */
2322 static inline tree
2323 gimple_call_addr_fndecl (const_tree fn)
2325 if (fn && TREE_CODE (fn) == ADDR_EXPR)
2327 tree fndecl = TREE_OPERAND (fn, 0);
2328 if (TREE_CODE (fndecl) == MEM_REF
2329 && TREE_CODE (TREE_OPERAND (fndecl, 0)) == ADDR_EXPR
2330 && integer_zerop (TREE_OPERAND (fndecl, 1)))
2331 fndecl = TREE_OPERAND (TREE_OPERAND (fndecl, 0), 0);
2332 if (TREE_CODE (fndecl) == FUNCTION_DECL)
2333 return fndecl;
2335 return NULL_TREE;
2338 /* If a given GIMPLE_CALL's callee is a FUNCTION_DECL, return it.
2339 Otherwise return NULL. This function is analogous to
2340 get_callee_fndecl in tree land. */
2342 static inline tree
2343 gimple_call_fndecl (const_gimple gs)
2345 return gimple_call_addr_fndecl (gimple_call_fn (gs));
2349 /* Return the type returned by call statement GS. */
2351 static inline tree
2352 gimple_call_return_type (const_gimple gs)
2354 tree type = gimple_call_fntype (gs);
2356 if (type == NULL_TREE)
2357 return TREE_TYPE (gimple_call_lhs (gs));
2359 /* The type returned by a function is the type of its
2360 function type. */
2361 return TREE_TYPE (type);
2365 /* Return the static chain for call statement GS. */
2367 static inline tree
2368 gimple_call_chain (const_gimple gs)
2370 GIMPLE_CHECK (gs, GIMPLE_CALL);
2371 return gimple_op (gs, 2);
2375 /* Return a pointer to the static chain for call statement GS. */
2377 static inline tree *
2378 gimple_call_chain_ptr (const_gimple gs)
2380 GIMPLE_CHECK (gs, GIMPLE_CALL);
2381 return gimple_op_ptr (gs, 2);
2384 /* Set CHAIN to be the static chain for call statement GS. */
2386 static inline void
2387 gimple_call_set_chain (gimple gs, tree chain)
2389 GIMPLE_CHECK (gs, GIMPLE_CALL);
2391 gimple_set_op (gs, 2, chain);
2395 /* Return the number of arguments used by call statement GS. */
2397 static inline unsigned
2398 gimple_call_num_args (const_gimple gs)
2400 unsigned num_ops;
2401 GIMPLE_CHECK (gs, GIMPLE_CALL);
2402 num_ops = gimple_num_ops (gs);
2403 return num_ops - 3;
2407 /* Return the argument at position INDEX for call statement GS. */
2409 static inline tree
2410 gimple_call_arg (const_gimple gs, unsigned index)
2412 GIMPLE_CHECK (gs, GIMPLE_CALL);
2413 return gimple_op (gs, index + 3);
2417 /* Return the number of arguments used by call statement GS
2418 ignoring bound ones. */
2420 static inline unsigned
2421 gimple_call_num_nobnd_args (const_gimple gs)
2423 unsigned num_args = gimple_call_num_args (gs);
2424 unsigned res = num_args;
2425 for (unsigned n = 0; n < num_args; n++)
2426 if (POINTER_BOUNDS_P (gimple_call_arg (gs, n)))
2427 res--;
2428 return res;
2432 /* Return INDEX's call argument ignoring bound ones. */
2433 static inline tree
2434 gimple_call_nobnd_arg (const_gimple gs, unsigned index)
2436 /* No bound args may exist if pointers checker is off. */
2437 if (!flag_check_pointer_bounds)
2438 return gimple_call_arg (gs, index);
2439 return gimple_call_arg (gs, gimple_call_get_nobnd_arg_index (gs, index));
2443 /* Return a pointer to the argument at position INDEX for call
2444 statement GS. */
2446 static inline tree *
2447 gimple_call_arg_ptr (const_gimple gs, unsigned index)
2449 GIMPLE_CHECK (gs, GIMPLE_CALL);
2450 return gimple_op_ptr (gs, index + 3);
2454 /* Set ARG to be the argument at position INDEX for call statement GS. */
2456 static inline void
2457 gimple_call_set_arg (gimple gs, unsigned index, tree arg)
2459 GIMPLE_CHECK (gs, GIMPLE_CALL);
2460 gimple_set_op (gs, index + 3, arg);
2464 /* If TAIL_P is true, mark call statement S as being a tail call
2465 (i.e., a call just before the exit of a function). These calls are
2466 candidate for tail call optimization. */
2468 static inline void
2469 gimple_call_set_tail (gimple s, bool tail_p)
2471 GIMPLE_CHECK (s, GIMPLE_CALL);
2472 if (tail_p)
2473 s->gsbase.subcode |= GF_CALL_TAILCALL;
2474 else
2475 s->gsbase.subcode &= ~GF_CALL_TAILCALL;
2479 /* Return true if GIMPLE_CALL S is marked as a tail call. */
2481 static inline bool
2482 gimple_call_tail_p (gimple s)
2484 GIMPLE_CHECK (s, GIMPLE_CALL);
2485 return (s->gsbase.subcode & GF_CALL_TAILCALL) != 0;
2489 /* If RETURN_SLOT_OPT_P is true mark GIMPLE_CALL S as valid for return
2490 slot optimization. This transformation uses the target of the call
2491 expansion as the return slot for calls that return in memory. */
2493 static inline void
2494 gimple_call_set_return_slot_opt (gimple s, bool return_slot_opt_p)
2496 GIMPLE_CHECK (s, GIMPLE_CALL);
2497 if (return_slot_opt_p)
2498 s->gsbase.subcode |= GF_CALL_RETURN_SLOT_OPT;
2499 else
2500 s->gsbase.subcode &= ~GF_CALL_RETURN_SLOT_OPT;
2504 /* Return true if S is marked for return slot optimization. */
2506 static inline bool
2507 gimple_call_return_slot_opt_p (gimple s)
2509 GIMPLE_CHECK (s, GIMPLE_CALL);
2510 return (s->gsbase.subcode & GF_CALL_RETURN_SLOT_OPT) != 0;
2514 /* If FROM_THUNK_P is true, mark GIMPLE_CALL S as being the jump from a
2515 thunk to the thunked-to function. */
2517 static inline void
2518 gimple_call_set_from_thunk (gimple s, bool from_thunk_p)
2520 GIMPLE_CHECK (s, GIMPLE_CALL);
2521 if (from_thunk_p)
2522 s->gsbase.subcode |= GF_CALL_FROM_THUNK;
2523 else
2524 s->gsbase.subcode &= ~GF_CALL_FROM_THUNK;
2528 /* Return true if GIMPLE_CALL S is a jump from a thunk. */
2530 static inline bool
2531 gimple_call_from_thunk_p (gimple s)
2533 GIMPLE_CHECK (s, GIMPLE_CALL);
2534 return (s->gsbase.subcode & GF_CALL_FROM_THUNK) != 0;
2538 /* If PASS_ARG_PACK_P is true, GIMPLE_CALL S is a stdarg call that needs the
2539 argument pack in its argument list. */
2541 static inline void
2542 gimple_call_set_va_arg_pack (gimple s, bool pass_arg_pack_p)
2544 GIMPLE_CHECK (s, GIMPLE_CALL);
2545 if (pass_arg_pack_p)
2546 s->gsbase.subcode |= GF_CALL_VA_ARG_PACK;
2547 else
2548 s->gsbase.subcode &= ~GF_CALL_VA_ARG_PACK;
2552 /* Return true if GIMPLE_CALL S is a stdarg call that needs the
2553 argument pack in its argument list. */
2555 static inline bool
2556 gimple_call_va_arg_pack_p (gimple s)
2558 GIMPLE_CHECK (s, GIMPLE_CALL);
2559 return (s->gsbase.subcode & GF_CALL_VA_ARG_PACK) != 0;
2563 /* Return true if S is a noreturn call. */
2565 static inline bool
2566 gimple_call_noreturn_p (gimple s)
2568 GIMPLE_CHECK (s, GIMPLE_CALL);
2569 return (gimple_call_flags (s) & ECF_NORETURN) != 0;
2573 /* If NOTHROW_P is true, GIMPLE_CALL S is a call that is known to not throw
2574 even if the called function can throw in other cases. */
2576 static inline void
2577 gimple_call_set_nothrow (gimple s, bool nothrow_p)
2579 GIMPLE_CHECK (s, GIMPLE_CALL);
2580 if (nothrow_p)
2581 s->gsbase.subcode |= GF_CALL_NOTHROW;
2582 else
2583 s->gsbase.subcode &= ~GF_CALL_NOTHROW;
2586 /* Return true if S is a nothrow call. */
2588 static inline bool
2589 gimple_call_nothrow_p (gimple s)
2591 GIMPLE_CHECK (s, GIMPLE_CALL);
2592 return (gimple_call_flags (s) & ECF_NOTHROW) != 0;
2595 /* If FOR_VAR is true, GIMPLE_CALL S is a call to builtin_alloca that
2596 is known to be emitted for VLA objects. Those are wrapped by
2597 stack_save/stack_restore calls and hence can't lead to unbounded
2598 stack growth even when they occur in loops. */
2600 static inline void
2601 gimple_call_set_alloca_for_var (gimple s, bool for_var)
2603 GIMPLE_CHECK (s, GIMPLE_CALL);
2604 if (for_var)
2605 s->gsbase.subcode |= GF_CALL_ALLOCA_FOR_VAR;
2606 else
2607 s->gsbase.subcode &= ~GF_CALL_ALLOCA_FOR_VAR;
2610 /* Return true of S is a call to builtin_alloca emitted for VLA objects. */
2612 static inline bool
2613 gimple_call_alloca_for_var_p (gimple s)
2615 GIMPLE_CHECK (s, GIMPLE_CALL);
2616 return (s->gsbase.subcode & GF_CALL_ALLOCA_FOR_VAR) != 0;
2619 /* Copy all the GF_CALL_* flags from ORIG_CALL to DEST_CALL. */
2621 static inline void
2622 gimple_call_copy_flags (gimple dest_call, gimple orig_call)
2624 GIMPLE_CHECK (dest_call, GIMPLE_CALL);
2625 GIMPLE_CHECK (orig_call, GIMPLE_CALL);
2626 dest_call->gsbase.subcode = orig_call->gsbase.subcode;
2630 /* Return a pointer to the points-to solution for the set of call-used
2631 variables of the call CALL. */
2633 static inline struct pt_solution *
2634 gimple_call_use_set (gimple call)
2636 GIMPLE_CHECK (call, GIMPLE_CALL);
2637 return &call->gimple_call.call_used;
2641 /* Return a pointer to the points-to solution for the set of call-used
2642 variables of the call CALL. */
2644 static inline struct pt_solution *
2645 gimple_call_clobber_set (gimple call)
2647 GIMPLE_CHECK (call, GIMPLE_CALL);
2648 return &call->gimple_call.call_clobbered;
2652 /* Returns true if this is a GIMPLE_ASSIGN or a GIMPLE_CALL with a
2653 non-NULL lhs. */
2655 static inline bool
2656 gimple_has_lhs (gimple stmt)
2658 return (is_gimple_assign (stmt)
2659 || (is_gimple_call (stmt)
2660 && gimple_call_lhs (stmt) != NULL_TREE));
2664 /* Return the code of the predicate computed by conditional statement GS. */
2666 static inline enum tree_code
2667 gimple_cond_code (const_gimple gs)
2669 GIMPLE_CHECK (gs, GIMPLE_COND);
2670 return (enum tree_code) gs->gsbase.subcode;
2674 /* Set CODE to be the predicate code for the conditional statement GS. */
2676 static inline void
2677 gimple_cond_set_code (gimple gs, enum tree_code code)
2679 GIMPLE_CHECK (gs, GIMPLE_COND);
2680 gs->gsbase.subcode = code;
2684 /* Return the LHS of the predicate computed by conditional statement GS. */
2686 static inline tree
2687 gimple_cond_lhs (const_gimple gs)
2689 GIMPLE_CHECK (gs, GIMPLE_COND);
2690 return gimple_op (gs, 0);
2693 /* Return the pointer to the LHS of the predicate computed by conditional
2694 statement GS. */
2696 static inline tree *
2697 gimple_cond_lhs_ptr (const_gimple gs)
2699 GIMPLE_CHECK (gs, GIMPLE_COND);
2700 return gimple_op_ptr (gs, 0);
2703 /* Set LHS to be the LHS operand of the predicate computed by
2704 conditional statement GS. */
2706 static inline void
2707 gimple_cond_set_lhs (gimple gs, tree lhs)
2709 GIMPLE_CHECK (gs, GIMPLE_COND);
2710 gimple_set_op (gs, 0, lhs);
2714 /* Return the RHS operand of the predicate computed by conditional GS. */
2716 static inline tree
2717 gimple_cond_rhs (const_gimple gs)
2719 GIMPLE_CHECK (gs, GIMPLE_COND);
2720 return gimple_op (gs, 1);
2723 /* Return the pointer to the RHS operand of the predicate computed by
2724 conditional GS. */
2726 static inline tree *
2727 gimple_cond_rhs_ptr (const_gimple gs)
2729 GIMPLE_CHECK (gs, GIMPLE_COND);
2730 return gimple_op_ptr (gs, 1);
2734 /* Set RHS to be the RHS operand of the predicate computed by
2735 conditional statement GS. */
2737 static inline void
2738 gimple_cond_set_rhs (gimple gs, tree rhs)
2740 GIMPLE_CHECK (gs, GIMPLE_COND);
2741 gimple_set_op (gs, 1, rhs);
2745 /* Return the label used by conditional statement GS when its
2746 predicate evaluates to true. */
2748 static inline tree
2749 gimple_cond_true_label (const_gimple gs)
2751 GIMPLE_CHECK (gs, GIMPLE_COND);
2752 return gimple_op (gs, 2);
2756 /* Set LABEL to be the label used by conditional statement GS when its
2757 predicate evaluates to true. */
2759 static inline void
2760 gimple_cond_set_true_label (gimple gs, tree label)
2762 GIMPLE_CHECK (gs, GIMPLE_COND);
2763 gimple_set_op (gs, 2, label);
2767 /* Set LABEL to be the label used by conditional statement GS when its
2768 predicate evaluates to false. */
2770 static inline void
2771 gimple_cond_set_false_label (gimple gs, tree label)
2773 GIMPLE_CHECK (gs, GIMPLE_COND);
2774 gimple_set_op (gs, 3, label);
2778 /* Return the label used by conditional statement GS when its
2779 predicate evaluates to false. */
2781 static inline tree
2782 gimple_cond_false_label (const_gimple gs)
2784 GIMPLE_CHECK (gs, GIMPLE_COND);
2785 return gimple_op (gs, 3);
2789 /* Set the conditional COND_STMT to be of the form 'if (1 == 0)'. */
2791 static inline void
2792 gimple_cond_make_false (gimple gs)
2794 gimple_cond_set_lhs (gs, boolean_true_node);
2795 gimple_cond_set_rhs (gs, boolean_false_node);
2796 gs->gsbase.subcode = EQ_EXPR;
2800 /* Set the conditional COND_STMT to be of the form 'if (1 == 1)'. */
2802 static inline void
2803 gimple_cond_make_true (gimple gs)
2805 gimple_cond_set_lhs (gs, boolean_true_node);
2806 gimple_cond_set_rhs (gs, boolean_true_node);
2807 gs->gsbase.subcode = EQ_EXPR;
2810 /* Check if conditional statemente GS is of the form 'if (1 == 1)',
2811 'if (0 == 0)', 'if (1 != 0)' or 'if (0 != 1)' */
2813 static inline bool
2814 gimple_cond_true_p (const_gimple gs)
2816 tree lhs = gimple_cond_lhs (gs);
2817 tree rhs = gimple_cond_rhs (gs);
2818 enum tree_code code = gimple_cond_code (gs);
2820 if (lhs != boolean_true_node && lhs != boolean_false_node)
2821 return false;
2823 if (rhs != boolean_true_node && rhs != boolean_false_node)
2824 return false;
2826 if (code == NE_EXPR && lhs != rhs)
2827 return true;
2829 if (code == EQ_EXPR && lhs == rhs)
2830 return true;
2832 return false;
2835 /* Check if conditional statement GS is of the form 'if (1 != 1)',
2836 'if (0 != 0)', 'if (1 == 0)' or 'if (0 == 1)' */
2838 static inline bool
2839 gimple_cond_false_p (const_gimple gs)
2841 tree lhs = gimple_cond_lhs (gs);
2842 tree rhs = gimple_cond_rhs (gs);
2843 enum tree_code code = gimple_cond_code (gs);
2845 if (lhs != boolean_true_node && lhs != boolean_false_node)
2846 return false;
2848 if (rhs != boolean_true_node && rhs != boolean_false_node)
2849 return false;
2851 if (code == NE_EXPR && lhs == rhs)
2852 return true;
2854 if (code == EQ_EXPR && lhs != rhs)
2855 return true;
2857 return false;
2860 /* Set the code, LHS and RHS of GIMPLE_COND STMT from CODE, LHS and RHS. */
2862 static inline void
2863 gimple_cond_set_condition (gimple stmt, enum tree_code code, tree lhs, tree rhs)
2865 gimple_cond_set_code (stmt, code);
2866 gimple_cond_set_lhs (stmt, lhs);
2867 gimple_cond_set_rhs (stmt, rhs);
2870 /* Return the LABEL_DECL node used by GIMPLE_LABEL statement GS. */
2872 static inline tree
2873 gimple_label_label (const_gimple gs)
2875 GIMPLE_CHECK (gs, GIMPLE_LABEL);
2876 return gimple_op (gs, 0);
2880 /* Set LABEL to be the LABEL_DECL node used by GIMPLE_LABEL statement
2881 GS. */
2883 static inline void
2884 gimple_label_set_label (gimple gs, tree label)
2886 GIMPLE_CHECK (gs, GIMPLE_LABEL);
2887 gimple_set_op (gs, 0, label);
2891 /* Return the destination of the unconditional jump GS. */
2893 static inline tree
2894 gimple_goto_dest (const_gimple gs)
2896 GIMPLE_CHECK (gs, GIMPLE_GOTO);
2897 return gimple_op (gs, 0);
2901 /* Set DEST to be the destination of the unconditonal jump GS. */
2903 static inline void
2904 gimple_goto_set_dest (gimple gs, tree dest)
2906 GIMPLE_CHECK (gs, GIMPLE_GOTO);
2907 gimple_set_op (gs, 0, dest);
2911 /* Return the variables declared in the GIMPLE_BIND statement GS. */
2913 static inline tree
2914 gimple_bind_vars (const_gimple gs)
2916 GIMPLE_CHECK (gs, GIMPLE_BIND);
2917 return gs->gimple_bind.vars;
2921 /* Set VARS to be the set of variables declared in the GIMPLE_BIND
2922 statement GS. */
2924 static inline void
2925 gimple_bind_set_vars (gimple gs, tree vars)
2927 GIMPLE_CHECK (gs, GIMPLE_BIND);
2928 gs->gimple_bind.vars = vars;
2932 /* Append VARS to the set of variables declared in the GIMPLE_BIND
2933 statement GS. */
2935 static inline void
2936 gimple_bind_append_vars (gimple gs, tree vars)
2938 GIMPLE_CHECK (gs, GIMPLE_BIND);
2939 gs->gimple_bind.vars = chainon (gs->gimple_bind.vars, vars);
2943 static inline gimple_seq *
2944 gimple_bind_body_ptr (gimple gs)
2946 GIMPLE_CHECK (gs, GIMPLE_BIND);
2947 return &gs->gimple_bind.body;
2950 /* Return the GIMPLE sequence contained in the GIMPLE_BIND statement GS. */
2952 static inline gimple_seq
2953 gimple_bind_body (gimple gs)
2955 return *gimple_bind_body_ptr (gs);
2959 /* Set SEQ to be the GIMPLE sequence contained in the GIMPLE_BIND
2960 statement GS. */
2962 static inline void
2963 gimple_bind_set_body (gimple gs, gimple_seq seq)
2965 GIMPLE_CHECK (gs, GIMPLE_BIND);
2966 gs->gimple_bind.body = seq;
2970 /* Append a statement to the end of a GIMPLE_BIND's body. */
2972 static inline void
2973 gimple_bind_add_stmt (gimple gs, gimple stmt)
2975 GIMPLE_CHECK (gs, GIMPLE_BIND);
2976 gimple_seq_add_stmt (&gs->gimple_bind.body, stmt);
2980 /* Append a sequence of statements to the end of a GIMPLE_BIND's body. */
2982 static inline void
2983 gimple_bind_add_seq (gimple gs, gimple_seq seq)
2985 GIMPLE_CHECK (gs, GIMPLE_BIND);
2986 gimple_seq_add_seq (&gs->gimple_bind.body, seq);
2990 /* Return the TREE_BLOCK node associated with GIMPLE_BIND statement
2991 GS. This is analogous to the BIND_EXPR_BLOCK field in trees. */
2993 static inline tree
2994 gimple_bind_block (const_gimple gs)
2996 GIMPLE_CHECK (gs, GIMPLE_BIND);
2997 return gs->gimple_bind.block;
3001 /* Set BLOCK to be the TREE_BLOCK node associated with GIMPLE_BIND
3002 statement GS. */
3004 static inline void
3005 gimple_bind_set_block (gimple gs, tree block)
3007 GIMPLE_CHECK (gs, GIMPLE_BIND);
3008 gcc_gimple_checking_assert (block == NULL_TREE
3009 || TREE_CODE (block) == BLOCK);
3010 gs->gimple_bind.block = block;
3014 /* Return the number of input operands for GIMPLE_ASM GS. */
3016 static inline unsigned
3017 gimple_asm_ninputs (const_gimple gs)
3019 GIMPLE_CHECK (gs, GIMPLE_ASM);
3020 return gs->gimple_asm.ni;
3024 /* Return the number of output operands for GIMPLE_ASM GS. */
3026 static inline unsigned
3027 gimple_asm_noutputs (const_gimple gs)
3029 GIMPLE_CHECK (gs, GIMPLE_ASM);
3030 return gs->gimple_asm.no;
3034 /* Return the number of clobber operands for GIMPLE_ASM GS. */
3036 static inline unsigned
3037 gimple_asm_nclobbers (const_gimple gs)
3039 GIMPLE_CHECK (gs, GIMPLE_ASM);
3040 return gs->gimple_asm.nc;
3043 /* Return the number of label operands for GIMPLE_ASM GS. */
3045 static inline unsigned
3046 gimple_asm_nlabels (const_gimple gs)
3048 GIMPLE_CHECK (gs, GIMPLE_ASM);
3049 return gs->gimple_asm.nl;
3052 /* Return input operand INDEX of GIMPLE_ASM GS. */
3054 static inline tree
3055 gimple_asm_input_op (const_gimple gs, unsigned index)
3057 GIMPLE_CHECK (gs, GIMPLE_ASM);
3058 gcc_gimple_checking_assert (index < gs->gimple_asm.ni);
3059 return gimple_op (gs, index + gs->gimple_asm.no);
3062 /* Return a pointer to input operand INDEX of GIMPLE_ASM GS. */
3064 static inline tree *
3065 gimple_asm_input_op_ptr (const_gimple gs, unsigned index)
3067 GIMPLE_CHECK (gs, GIMPLE_ASM);
3068 gcc_gimple_checking_assert (index < gs->gimple_asm.ni);
3069 return gimple_op_ptr (gs, index + gs->gimple_asm.no);
3073 /* Set IN_OP to be input operand INDEX in GIMPLE_ASM GS. */
3075 static inline void
3076 gimple_asm_set_input_op (gimple gs, unsigned index, tree in_op)
3078 GIMPLE_CHECK (gs, GIMPLE_ASM);
3079 gcc_gimple_checking_assert (index < gs->gimple_asm.ni
3080 && TREE_CODE (in_op) == TREE_LIST);
3081 gimple_set_op (gs, index + gs->gimple_asm.no, in_op);
3085 /* Return output operand INDEX of GIMPLE_ASM GS. */
3087 static inline tree
3088 gimple_asm_output_op (const_gimple gs, unsigned index)
3090 GIMPLE_CHECK (gs, GIMPLE_ASM);
3091 gcc_gimple_checking_assert (index < gs->gimple_asm.no);
3092 return gimple_op (gs, index);
3095 /* Return a pointer to output operand INDEX of GIMPLE_ASM GS. */
3097 static inline tree *
3098 gimple_asm_output_op_ptr (const_gimple gs, unsigned index)
3100 GIMPLE_CHECK (gs, GIMPLE_ASM);
3101 gcc_gimple_checking_assert (index < gs->gimple_asm.no);
3102 return gimple_op_ptr (gs, index);
3106 /* Set OUT_OP to be output operand INDEX in GIMPLE_ASM GS. */
3108 static inline void
3109 gimple_asm_set_output_op (gimple gs, unsigned index, tree out_op)
3111 GIMPLE_CHECK (gs, GIMPLE_ASM);
3112 gcc_gimple_checking_assert (index < gs->gimple_asm.no
3113 && TREE_CODE (out_op) == TREE_LIST);
3114 gimple_set_op (gs, index, out_op);
3118 /* Return clobber operand INDEX of GIMPLE_ASM GS. */
3120 static inline tree
3121 gimple_asm_clobber_op (const_gimple gs, unsigned index)
3123 GIMPLE_CHECK (gs, GIMPLE_ASM);
3124 gcc_gimple_checking_assert (index < gs->gimple_asm.nc);
3125 return gimple_op (gs, index + gs->gimple_asm.ni + gs->gimple_asm.no);
3129 /* Set CLOBBER_OP to be clobber operand INDEX in GIMPLE_ASM GS. */
3131 static inline void
3132 gimple_asm_set_clobber_op (gimple gs, unsigned index, tree clobber_op)
3134 GIMPLE_CHECK (gs, GIMPLE_ASM);
3135 gcc_gimple_checking_assert (index < gs->gimple_asm.nc
3136 && TREE_CODE (clobber_op) == TREE_LIST);
3137 gimple_set_op (gs, index + gs->gimple_asm.ni + gs->gimple_asm.no, clobber_op);
3140 /* Return label operand INDEX of GIMPLE_ASM GS. */
3142 static inline tree
3143 gimple_asm_label_op (const_gimple gs, unsigned index)
3145 GIMPLE_CHECK (gs, GIMPLE_ASM);
3146 gcc_gimple_checking_assert (index < gs->gimple_asm.nl);
3147 return gimple_op (gs, index + gs->gimple_asm.ni + gs->gimple_asm.nc);
3150 /* Set LABEL_OP to be label operand INDEX in GIMPLE_ASM GS. */
3152 static inline void
3153 gimple_asm_set_label_op (gimple gs, unsigned index, tree label_op)
3155 GIMPLE_CHECK (gs, GIMPLE_ASM);
3156 gcc_gimple_checking_assert (index < gs->gimple_asm.nl
3157 && TREE_CODE (label_op) == TREE_LIST);
3158 gimple_set_op (gs, index + gs->gimple_asm.ni + gs->gimple_asm.nc, label_op);
3161 /* Return the string representing the assembly instruction in
3162 GIMPLE_ASM GS. */
3164 static inline const char *
3165 gimple_asm_string (const_gimple gs)
3167 GIMPLE_CHECK (gs, GIMPLE_ASM);
3168 return gs->gimple_asm.string;
3172 /* Return true if GS is an asm statement marked volatile. */
3174 static inline bool
3175 gimple_asm_volatile_p (const_gimple gs)
3177 GIMPLE_CHECK (gs, GIMPLE_ASM);
3178 return (gs->gsbase.subcode & GF_ASM_VOLATILE) != 0;
3182 /* If VOLATLE_P is true, mark asm statement GS as volatile. */
3184 static inline void
3185 gimple_asm_set_volatile (gimple gs, bool volatile_p)
3187 GIMPLE_CHECK (gs, GIMPLE_ASM);
3188 if (volatile_p)
3189 gs->gsbase.subcode |= GF_ASM_VOLATILE;
3190 else
3191 gs->gsbase.subcode &= ~GF_ASM_VOLATILE;
3195 /* If INPUT_P is true, mark asm GS as an ASM_INPUT. */
3197 static inline void
3198 gimple_asm_set_input (gimple gs, bool input_p)
3200 GIMPLE_CHECK (gs, GIMPLE_ASM);
3201 if (input_p)
3202 gs->gsbase.subcode |= GF_ASM_INPUT;
3203 else
3204 gs->gsbase.subcode &= ~GF_ASM_INPUT;
3208 /* Return true if asm GS is an ASM_INPUT. */
3210 static inline bool
3211 gimple_asm_input_p (const_gimple gs)
3213 GIMPLE_CHECK (gs, GIMPLE_ASM);
3214 return (gs->gsbase.subcode & GF_ASM_INPUT) != 0;
3218 /* Return the types handled by GIMPLE_CATCH statement GS. */
3220 static inline tree
3221 gimple_catch_types (const_gimple gs)
3223 GIMPLE_CHECK (gs, GIMPLE_CATCH);
3224 return gs->gimple_catch.types;
3228 /* Return a pointer to the types handled by GIMPLE_CATCH statement GS. */
3230 static inline tree *
3231 gimple_catch_types_ptr (gimple gs)
3233 GIMPLE_CHECK (gs, GIMPLE_CATCH);
3234 return &gs->gimple_catch.types;
3238 /* Return a pointer to the GIMPLE sequence representing the body of
3239 the handler of GIMPLE_CATCH statement GS. */
3241 static inline gimple_seq *
3242 gimple_catch_handler_ptr (gimple gs)
3244 GIMPLE_CHECK (gs, GIMPLE_CATCH);
3245 return &gs->gimple_catch.handler;
3249 /* Return the GIMPLE sequence representing the body of the handler of
3250 GIMPLE_CATCH statement GS. */
3252 static inline gimple_seq
3253 gimple_catch_handler (gimple gs)
3255 return *gimple_catch_handler_ptr (gs);
3259 /* Set T to be the set of types handled by GIMPLE_CATCH GS. */
3261 static inline void
3262 gimple_catch_set_types (gimple gs, tree t)
3264 GIMPLE_CHECK (gs, GIMPLE_CATCH);
3265 gs->gimple_catch.types = t;
3269 /* Set HANDLER to be the body of GIMPLE_CATCH GS. */
3271 static inline void
3272 gimple_catch_set_handler (gimple gs, gimple_seq handler)
3274 GIMPLE_CHECK (gs, GIMPLE_CATCH);
3275 gs->gimple_catch.handler = handler;
3279 /* Return the types handled by GIMPLE_EH_FILTER statement GS. */
3281 static inline tree
3282 gimple_eh_filter_types (const_gimple gs)
3284 GIMPLE_CHECK (gs, GIMPLE_EH_FILTER);
3285 return gs->gimple_eh_filter.types;
3289 /* Return a pointer to the types handled by GIMPLE_EH_FILTER statement
3290 GS. */
3292 static inline tree *
3293 gimple_eh_filter_types_ptr (gimple gs)
3295 GIMPLE_CHECK (gs, GIMPLE_EH_FILTER);
3296 return &gs->gimple_eh_filter.types;
3300 /* Return a pointer to the sequence of statement to execute when
3301 GIMPLE_EH_FILTER statement fails. */
3303 static inline gimple_seq *
3304 gimple_eh_filter_failure_ptr (gimple gs)
3306 GIMPLE_CHECK (gs, GIMPLE_EH_FILTER);
3307 return &gs->gimple_eh_filter.failure;
3311 /* Return the sequence of statement to execute when GIMPLE_EH_FILTER
3312 statement fails. */
3314 static inline gimple_seq
3315 gimple_eh_filter_failure (gimple gs)
3317 return *gimple_eh_filter_failure_ptr (gs);
3321 /* Set TYPES to be the set of types handled by GIMPLE_EH_FILTER GS. */
3323 static inline void
3324 gimple_eh_filter_set_types (gimple gs, tree types)
3326 GIMPLE_CHECK (gs, GIMPLE_EH_FILTER);
3327 gs->gimple_eh_filter.types = types;
3331 /* Set FAILURE to be the sequence of statements to execute on failure
3332 for GIMPLE_EH_FILTER GS. */
3334 static inline void
3335 gimple_eh_filter_set_failure (gimple gs, gimple_seq failure)
3337 GIMPLE_CHECK (gs, GIMPLE_EH_FILTER);
3338 gs->gimple_eh_filter.failure = failure;
3341 /* Get the function decl to be called by the MUST_NOT_THROW region. */
3343 static inline tree
3344 gimple_eh_must_not_throw_fndecl (gimple gs)
3346 GIMPLE_CHECK (gs, GIMPLE_EH_MUST_NOT_THROW);
3347 return gs->gimple_eh_mnt.fndecl;
3350 /* Set the function decl to be called by GS to DECL. */
3352 static inline void
3353 gimple_eh_must_not_throw_set_fndecl (gimple gs, tree decl)
3355 GIMPLE_CHECK (gs, GIMPLE_EH_MUST_NOT_THROW);
3356 gs->gimple_eh_mnt.fndecl = decl;
3359 /* GIMPLE_EH_ELSE accessors. */
3361 static inline gimple_seq *
3362 gimple_eh_else_n_body_ptr (gimple gs)
3364 GIMPLE_CHECK (gs, GIMPLE_EH_ELSE);
3365 return &gs->gimple_eh_else.n_body;
3368 static inline gimple_seq
3369 gimple_eh_else_n_body (gimple gs)
3371 return *gimple_eh_else_n_body_ptr (gs);
3374 static inline gimple_seq *
3375 gimple_eh_else_e_body_ptr (gimple gs)
3377 GIMPLE_CHECK (gs, GIMPLE_EH_ELSE);
3378 return &gs->gimple_eh_else.e_body;
3381 static inline gimple_seq
3382 gimple_eh_else_e_body (gimple gs)
3384 return *gimple_eh_else_e_body_ptr (gs);
3387 static inline void
3388 gimple_eh_else_set_n_body (gimple gs, gimple_seq seq)
3390 GIMPLE_CHECK (gs, GIMPLE_EH_ELSE);
3391 gs->gimple_eh_else.n_body = seq;
3394 static inline void
3395 gimple_eh_else_set_e_body (gimple gs, gimple_seq seq)
3397 GIMPLE_CHECK (gs, GIMPLE_EH_ELSE);
3398 gs->gimple_eh_else.e_body = seq;
3401 /* GIMPLE_TRY accessors. */
3403 /* Return the kind of try block represented by GIMPLE_TRY GS. This is
3404 either GIMPLE_TRY_CATCH or GIMPLE_TRY_FINALLY. */
3406 static inline enum gimple_try_flags
3407 gimple_try_kind (const_gimple gs)
3409 GIMPLE_CHECK (gs, GIMPLE_TRY);
3410 return (enum gimple_try_flags) (gs->gsbase.subcode & GIMPLE_TRY_KIND);
3414 /* Set the kind of try block represented by GIMPLE_TRY GS. */
3416 static inline void
3417 gimple_try_set_kind (gimple gs, enum gimple_try_flags kind)
3419 GIMPLE_CHECK (gs, GIMPLE_TRY);
3420 gcc_gimple_checking_assert (kind == GIMPLE_TRY_CATCH
3421 || kind == GIMPLE_TRY_FINALLY);
3422 if (gimple_try_kind (gs) != kind)
3423 gs->gsbase.subcode = (unsigned int) kind;
3427 /* Return the GIMPLE_TRY_CATCH_IS_CLEANUP flag. */
3429 static inline bool
3430 gimple_try_catch_is_cleanup (const_gimple gs)
3432 gcc_gimple_checking_assert (gimple_try_kind (gs) == GIMPLE_TRY_CATCH);
3433 return (gs->gsbase.subcode & GIMPLE_TRY_CATCH_IS_CLEANUP) != 0;
3437 /* Return a pointer to the sequence of statements used as the
3438 body for GIMPLE_TRY GS. */
3440 static inline gimple_seq *
3441 gimple_try_eval_ptr (gimple gs)
3443 GIMPLE_CHECK (gs, GIMPLE_TRY);
3444 return &gs->gimple_try.eval;
3448 /* Return the sequence of statements used as the body for GIMPLE_TRY GS. */
3450 static inline gimple_seq
3451 gimple_try_eval (gimple gs)
3453 return *gimple_try_eval_ptr (gs);
3457 /* Return a pointer to the sequence of statements used as the cleanup body for
3458 GIMPLE_TRY GS. */
3460 static inline gimple_seq *
3461 gimple_try_cleanup_ptr (gimple gs)
3463 GIMPLE_CHECK (gs, GIMPLE_TRY);
3464 return &gs->gimple_try.cleanup;
3468 /* Return the sequence of statements used as the cleanup body for
3469 GIMPLE_TRY GS. */
3471 static inline gimple_seq
3472 gimple_try_cleanup (gimple gs)
3474 return *gimple_try_cleanup_ptr (gs);
3478 /* Set the GIMPLE_TRY_CATCH_IS_CLEANUP flag. */
3480 static inline void
3481 gimple_try_set_catch_is_cleanup (gimple g, bool catch_is_cleanup)
3483 gcc_gimple_checking_assert (gimple_try_kind (g) == GIMPLE_TRY_CATCH);
3484 if (catch_is_cleanup)
3485 g->gsbase.subcode |= GIMPLE_TRY_CATCH_IS_CLEANUP;
3486 else
3487 g->gsbase.subcode &= ~GIMPLE_TRY_CATCH_IS_CLEANUP;
3491 /* Set EVAL to be the sequence of statements to use as the body for
3492 GIMPLE_TRY GS. */
3494 static inline void
3495 gimple_try_set_eval (gimple gs, gimple_seq eval)
3497 GIMPLE_CHECK (gs, GIMPLE_TRY);
3498 gs->gimple_try.eval = eval;
3502 /* Set CLEANUP to be the sequence of statements to use as the cleanup
3503 body for GIMPLE_TRY GS. */
3505 static inline void
3506 gimple_try_set_cleanup (gimple gs, gimple_seq cleanup)
3508 GIMPLE_CHECK (gs, GIMPLE_TRY);
3509 gs->gimple_try.cleanup = cleanup;
3513 /* Return a pointer to the cleanup sequence for cleanup statement GS. */
3515 static inline gimple_seq *
3516 gimple_wce_cleanup_ptr (gimple gs)
3518 GIMPLE_CHECK (gs, GIMPLE_WITH_CLEANUP_EXPR);
3519 return &gs->gimple_wce.cleanup;
3523 /* Return the cleanup sequence for cleanup statement GS. */
3525 static inline gimple_seq
3526 gimple_wce_cleanup (gimple gs)
3528 return *gimple_wce_cleanup_ptr (gs);
3532 /* Set CLEANUP to be the cleanup sequence for GS. */
3534 static inline void
3535 gimple_wce_set_cleanup (gimple gs, gimple_seq cleanup)
3537 GIMPLE_CHECK (gs, GIMPLE_WITH_CLEANUP_EXPR);
3538 gs->gimple_wce.cleanup = cleanup;
3542 /* Return the CLEANUP_EH_ONLY flag for a WCE tuple. */
3544 static inline bool
3545 gimple_wce_cleanup_eh_only (const_gimple gs)
3547 GIMPLE_CHECK (gs, GIMPLE_WITH_CLEANUP_EXPR);
3548 return gs->gsbase.subcode != 0;
3552 /* Set the CLEANUP_EH_ONLY flag for a WCE tuple. */
3554 static inline void
3555 gimple_wce_set_cleanup_eh_only (gimple gs, bool eh_only_p)
3557 GIMPLE_CHECK (gs, GIMPLE_WITH_CLEANUP_EXPR);
3558 gs->gsbase.subcode = (unsigned int) eh_only_p;
3562 /* Return the maximum number of arguments supported by GIMPLE_PHI GS. */
3564 static inline unsigned
3565 gimple_phi_capacity (const_gimple gs)
3567 GIMPLE_CHECK (gs, GIMPLE_PHI);
3568 return gs->gimple_phi.capacity;
3572 /* Return the number of arguments in GIMPLE_PHI GS. This must always
3573 be exactly the number of incoming edges for the basic block holding
3574 GS. */
3576 static inline unsigned
3577 gimple_phi_num_args (const_gimple gs)
3579 GIMPLE_CHECK (gs, GIMPLE_PHI);
3580 return gs->gimple_phi.nargs;
3584 /* Return the SSA name created by GIMPLE_PHI GS. */
3586 static inline tree
3587 gimple_phi_result (const_gimple gs)
3589 GIMPLE_CHECK (gs, GIMPLE_PHI);
3590 return gs->gimple_phi.result;
3593 /* Return a pointer to the SSA name created by GIMPLE_PHI GS. */
3595 static inline tree *
3596 gimple_phi_result_ptr (gimple gs)
3598 GIMPLE_CHECK (gs, GIMPLE_PHI);
3599 return &gs->gimple_phi.result;
3602 /* Set RESULT to be the SSA name created by GIMPLE_PHI GS. */
3604 static inline void
3605 gimple_phi_set_result (gimple gs, tree result)
3607 GIMPLE_CHECK (gs, GIMPLE_PHI);
3608 gs->gimple_phi.result = result;
3609 if (result && TREE_CODE (result) == SSA_NAME)
3610 SSA_NAME_DEF_STMT (result) = gs;
3614 /* Return the PHI argument corresponding to incoming edge INDEX for
3615 GIMPLE_PHI GS. */
3617 static inline struct phi_arg_d *
3618 gimple_phi_arg (gimple gs, unsigned index)
3620 GIMPLE_CHECK (gs, GIMPLE_PHI);
3621 gcc_gimple_checking_assert (index <= gs->gimple_phi.capacity);
3622 return &(gs->gimple_phi.args[index]);
3625 /* Set PHIARG to be the argument corresponding to incoming edge INDEX
3626 for GIMPLE_PHI GS. */
3628 static inline void
3629 gimple_phi_set_arg (gimple gs, unsigned index, struct phi_arg_d * phiarg)
3631 GIMPLE_CHECK (gs, GIMPLE_PHI);
3632 gcc_gimple_checking_assert (index <= gs->gimple_phi.nargs);
3633 gs->gimple_phi.args[index] = *phiarg;
3636 /* PHI nodes should contain only ssa_names and invariants. A test
3637 for ssa_name is definitely simpler; don't let invalid contents
3638 slip in in the meantime. */
3640 static inline bool
3641 phi_ssa_name_p (const_tree t)
3643 if (TREE_CODE (t) == SSA_NAME)
3644 return true;
3645 gcc_checking_assert (is_gimple_min_invariant (t));
3646 return false;
3649 /* Return the PHI nodes for basic block BB, or NULL if there are no
3650 PHI nodes. */
3652 static inline gimple_seq
3653 phi_nodes (const_basic_block bb)
3655 gcc_checking_assert (!(bb->flags & BB_RTL));
3656 return bb->il.gimple.phi_nodes;
3659 /* Return a pointer to the PHI nodes for basic block BB. */
3661 static inline gimple_seq *
3662 phi_nodes_ptr (basic_block bb)
3664 gcc_checking_assert (!(bb->flags & BB_RTL));
3665 return &bb->il.gimple.phi_nodes;
3668 /* Return the tree operand for argument I of PHI node GS. */
3670 static inline tree
3671 gimple_phi_arg_def (gimple gs, size_t index)
3673 return gimple_phi_arg (gs, index)->def;
3677 /* Return a pointer to the tree operand for argument I of PHI node GS. */
3679 static inline tree *
3680 gimple_phi_arg_def_ptr (gimple gs, size_t index)
3682 return &gimple_phi_arg (gs, index)->def;
3685 /* Return the edge associated with argument I of phi node GS. */
3687 static inline edge
3688 gimple_phi_arg_edge (gimple gs, size_t i)
3690 return EDGE_PRED (gimple_bb (gs), i);
3693 /* Return the source location of gimple argument I of phi node GS. */
3695 static inline source_location
3696 gimple_phi_arg_location (gimple gs, size_t i)
3698 return gimple_phi_arg (gs, i)->locus;
3701 /* Return the source location of the argument on edge E of phi node GS. */
3703 static inline source_location
3704 gimple_phi_arg_location_from_edge (gimple gs, edge e)
3706 return gimple_phi_arg (gs, e->dest_idx)->locus;
3709 /* Set the source location of gimple argument I of phi node GS to LOC. */
3711 static inline void
3712 gimple_phi_arg_set_location (gimple gs, size_t i, source_location loc)
3714 gimple_phi_arg (gs, i)->locus = loc;
3717 /* Return TRUE if argument I of phi node GS has a location record. */
3719 static inline bool
3720 gimple_phi_arg_has_location (gimple gs, size_t i)
3722 return gimple_phi_arg_location (gs, i) != UNKNOWN_LOCATION;
3726 /* Return the region number for GIMPLE_RESX GS. */
3728 static inline int
3729 gimple_resx_region (const_gimple gs)
3731 GIMPLE_CHECK (gs, GIMPLE_RESX);
3732 return gs->gimple_eh_ctrl.region;
3735 /* Set REGION to be the region number for GIMPLE_RESX GS. */
3737 static inline void
3738 gimple_resx_set_region (gimple gs, int region)
3740 GIMPLE_CHECK (gs, GIMPLE_RESX);
3741 gs->gimple_eh_ctrl.region = region;
3744 /* Return the region number for GIMPLE_EH_DISPATCH GS. */
3746 static inline int
3747 gimple_eh_dispatch_region (const_gimple gs)
3749 GIMPLE_CHECK (gs, GIMPLE_EH_DISPATCH);
3750 return gs->gimple_eh_ctrl.region;
3753 /* Set REGION to be the region number for GIMPLE_EH_DISPATCH GS. */
3755 static inline void
3756 gimple_eh_dispatch_set_region (gimple gs, int region)
3758 GIMPLE_CHECK (gs, GIMPLE_EH_DISPATCH);
3759 gs->gimple_eh_ctrl.region = region;
3762 /* Return the number of labels associated with the switch statement GS. */
3764 static inline unsigned
3765 gimple_switch_num_labels (const_gimple gs)
3767 unsigned num_ops;
3768 GIMPLE_CHECK (gs, GIMPLE_SWITCH);
3769 num_ops = gimple_num_ops (gs);
3770 gcc_gimple_checking_assert (num_ops > 1);
3771 return num_ops - 1;
3775 /* Set NLABELS to be the number of labels for the switch statement GS. */
3777 static inline void
3778 gimple_switch_set_num_labels (gimple g, unsigned nlabels)
3780 GIMPLE_CHECK (g, GIMPLE_SWITCH);
3781 gimple_set_num_ops (g, nlabels + 1);
3785 /* Return the index variable used by the switch statement GS. */
3787 static inline tree
3788 gimple_switch_index (const_gimple gs)
3790 GIMPLE_CHECK (gs, GIMPLE_SWITCH);
3791 return gimple_op (gs, 0);
3795 /* Return a pointer to the index variable for the switch statement GS. */
3797 static inline tree *
3798 gimple_switch_index_ptr (const_gimple gs)
3800 GIMPLE_CHECK (gs, GIMPLE_SWITCH);
3801 return gimple_op_ptr (gs, 0);
3805 /* Set INDEX to be the index variable for switch statement GS. */
3807 static inline void
3808 gimple_switch_set_index (gimple gs, tree index)
3810 GIMPLE_CHECK (gs, GIMPLE_SWITCH);
3811 gcc_gimple_checking_assert (SSA_VAR_P (index) || CONSTANT_CLASS_P (index));
3812 gimple_set_op (gs, 0, index);
3816 /* Return the label numbered INDEX. The default label is 0, followed by any
3817 labels in a switch statement. */
3819 static inline tree
3820 gimple_switch_label (const_gimple gs, unsigned index)
3822 GIMPLE_CHECK (gs, GIMPLE_SWITCH);
3823 gcc_gimple_checking_assert (gimple_num_ops (gs) > index + 1);
3824 return gimple_op (gs, index + 1);
3827 /* Set the label number INDEX to LABEL. 0 is always the default label. */
3829 static inline void
3830 gimple_switch_set_label (gimple gs, unsigned index, tree label)
3832 GIMPLE_CHECK (gs, GIMPLE_SWITCH);
3833 gcc_gimple_checking_assert (gimple_num_ops (gs) > index + 1
3834 && (label == NULL_TREE
3835 || TREE_CODE (label) == CASE_LABEL_EXPR));
3836 gimple_set_op (gs, index + 1, label);
3839 /* Return the default label for a switch statement. */
3841 static inline tree
3842 gimple_switch_default_label (const_gimple gs)
3844 tree label = gimple_switch_label (gs, 0);
3845 gcc_checking_assert (!CASE_LOW (label) && !CASE_HIGH (label));
3846 return label;
3849 /* Set the default label for a switch statement. */
3851 static inline void
3852 gimple_switch_set_default_label (gimple gs, tree label)
3854 gcc_checking_assert (!CASE_LOW (label) && !CASE_HIGH (label));
3855 gimple_switch_set_label (gs, 0, label);
3858 /* Return true if GS is a GIMPLE_DEBUG statement. */
3860 static inline bool
3861 is_gimple_debug (const_gimple gs)
3863 return gimple_code (gs) == GIMPLE_DEBUG;
3866 /* Return true if S is a GIMPLE_DEBUG BIND statement. */
3868 static inline bool
3869 gimple_debug_bind_p (const_gimple s)
3871 if (is_gimple_debug (s))
3872 return s->gsbase.subcode == GIMPLE_DEBUG_BIND;
3874 return false;
3877 /* Return the variable bound in a GIMPLE_DEBUG bind statement. */
3879 static inline tree
3880 gimple_debug_bind_get_var (gimple dbg)
3882 GIMPLE_CHECK (dbg, GIMPLE_DEBUG);
3883 gcc_gimple_checking_assert (gimple_debug_bind_p (dbg));
3884 return gimple_op (dbg, 0);
3887 /* Return the value bound to the variable in a GIMPLE_DEBUG bind
3888 statement. */
3890 static inline tree
3891 gimple_debug_bind_get_value (gimple dbg)
3893 GIMPLE_CHECK (dbg, GIMPLE_DEBUG);
3894 gcc_gimple_checking_assert (gimple_debug_bind_p (dbg));
3895 return gimple_op (dbg, 1);
3898 /* Return a pointer to the value bound to the variable in a
3899 GIMPLE_DEBUG bind statement. */
3901 static inline tree *
3902 gimple_debug_bind_get_value_ptr (gimple dbg)
3904 GIMPLE_CHECK (dbg, GIMPLE_DEBUG);
3905 gcc_gimple_checking_assert (gimple_debug_bind_p (dbg));
3906 return gimple_op_ptr (dbg, 1);
3909 /* Set the variable bound in a GIMPLE_DEBUG bind statement. */
3911 static inline void
3912 gimple_debug_bind_set_var (gimple dbg, tree var)
3914 GIMPLE_CHECK (dbg, GIMPLE_DEBUG);
3915 gcc_gimple_checking_assert (gimple_debug_bind_p (dbg));
3916 gimple_set_op (dbg, 0, var);
3919 /* Set the value bound to the variable in a GIMPLE_DEBUG bind
3920 statement. */
3922 static inline void
3923 gimple_debug_bind_set_value (gimple dbg, tree value)
3925 GIMPLE_CHECK (dbg, GIMPLE_DEBUG);
3926 gcc_gimple_checking_assert (gimple_debug_bind_p (dbg));
3927 gimple_set_op (dbg, 1, value);
3930 /* The second operand of a GIMPLE_DEBUG_BIND, when the value was
3931 optimized away. */
3932 #define GIMPLE_DEBUG_BIND_NOVALUE NULL_TREE /* error_mark_node */
3934 /* Remove the value bound to the variable in a GIMPLE_DEBUG bind
3935 statement. */
3937 static inline void
3938 gimple_debug_bind_reset_value (gimple dbg)
3940 GIMPLE_CHECK (dbg, GIMPLE_DEBUG);
3941 gcc_gimple_checking_assert (gimple_debug_bind_p (dbg));
3942 gimple_set_op (dbg, 1, GIMPLE_DEBUG_BIND_NOVALUE);
3945 /* Return true if the GIMPLE_DEBUG bind statement is bound to a
3946 value. */
3948 static inline bool
3949 gimple_debug_bind_has_value_p (gimple dbg)
3951 GIMPLE_CHECK (dbg, GIMPLE_DEBUG);
3952 gcc_gimple_checking_assert (gimple_debug_bind_p (dbg));
3953 return gimple_op (dbg, 1) != GIMPLE_DEBUG_BIND_NOVALUE;
3956 #undef GIMPLE_DEBUG_BIND_NOVALUE
3958 /* Return true if S is a GIMPLE_DEBUG SOURCE BIND statement. */
3960 static inline bool
3961 gimple_debug_source_bind_p (const_gimple s)
3963 if (is_gimple_debug (s))
3964 return s->gsbase.subcode == GIMPLE_DEBUG_SOURCE_BIND;
3966 return false;
3969 /* Return the variable bound in a GIMPLE_DEBUG source bind statement. */
3971 static inline tree
3972 gimple_debug_source_bind_get_var (gimple dbg)
3974 GIMPLE_CHECK (dbg, GIMPLE_DEBUG);
3975 gcc_gimple_checking_assert (gimple_debug_source_bind_p (dbg));
3976 return gimple_op (dbg, 0);
3979 /* Return the value bound to the variable in a GIMPLE_DEBUG source bind
3980 statement. */
3982 static inline tree
3983 gimple_debug_source_bind_get_value (gimple dbg)
3985 GIMPLE_CHECK (dbg, GIMPLE_DEBUG);
3986 gcc_gimple_checking_assert (gimple_debug_source_bind_p (dbg));
3987 return gimple_op (dbg, 1);
3990 /* Return a pointer to the value bound to the variable in a
3991 GIMPLE_DEBUG source bind statement. */
3993 static inline tree *
3994 gimple_debug_source_bind_get_value_ptr (gimple dbg)
3996 GIMPLE_CHECK (dbg, GIMPLE_DEBUG);
3997 gcc_gimple_checking_assert (gimple_debug_source_bind_p (dbg));
3998 return gimple_op_ptr (dbg, 1);
4001 /* Set the variable bound in a GIMPLE_DEBUG source bind statement. */
4003 static inline void
4004 gimple_debug_source_bind_set_var (gimple dbg, tree var)
4006 GIMPLE_CHECK (dbg, GIMPLE_DEBUG);
4007 gcc_gimple_checking_assert (gimple_debug_source_bind_p (dbg));
4008 gimple_set_op (dbg, 0, var);
4011 /* Set the value bound to the variable in a GIMPLE_DEBUG source bind
4012 statement. */
4014 static inline void
4015 gimple_debug_source_bind_set_value (gimple dbg, tree value)
4017 GIMPLE_CHECK (dbg, GIMPLE_DEBUG);
4018 gcc_gimple_checking_assert (gimple_debug_source_bind_p (dbg));
4019 gimple_set_op (dbg, 1, value);
4022 /* Return the line number for EXPR, or return -1 if we have no line
4023 number information for it. */
4024 static inline int
4025 get_lineno (const_gimple stmt)
4027 location_t loc;
4029 if (!stmt)
4030 return -1;
4032 loc = gimple_location (stmt);
4033 if (loc == UNKNOWN_LOCATION)
4034 return -1;
4036 return LOCATION_LINE (loc);
4039 /* Return a pointer to the body for the OMP statement GS. */
4041 static inline gimple_seq *
4042 gimple_omp_body_ptr (gimple gs)
4044 return &gs->omp.body;
4047 /* Return the body for the OMP statement GS. */
4049 static inline gimple_seq
4050 gimple_omp_body (gimple gs)
4052 return *gimple_omp_body_ptr (gs);
4055 /* Set BODY to be the body for the OMP statement GS. */
4057 static inline void
4058 gimple_omp_set_body (gimple gs, gimple_seq body)
4060 gs->omp.body = body;
4064 /* Return the name associated with OMP_CRITICAL statement GS. */
4066 static inline tree
4067 gimple_omp_critical_name (const_gimple gs)
4069 GIMPLE_CHECK (gs, GIMPLE_OMP_CRITICAL);
4070 return gs->gimple_omp_critical.name;
4074 /* Return a pointer to the name associated with OMP critical statement GS. */
4076 static inline tree *
4077 gimple_omp_critical_name_ptr (gimple gs)
4079 GIMPLE_CHECK (gs, GIMPLE_OMP_CRITICAL);
4080 return &gs->gimple_omp_critical.name;
4084 /* Set NAME to be the name associated with OMP critical statement GS. */
4086 static inline void
4087 gimple_omp_critical_set_name (gimple gs, tree name)
4089 GIMPLE_CHECK (gs, GIMPLE_OMP_CRITICAL);
4090 gs->gimple_omp_critical.name = name;
4094 /* Return the kind of OMP for statemement. */
4096 static inline int
4097 gimple_omp_for_kind (const_gimple g)
4099 GIMPLE_CHECK (g, GIMPLE_OMP_FOR);
4100 return (gimple_omp_subcode (g) & GF_OMP_FOR_KIND_MASK);
4104 /* Set the OMP for kind. */
4106 static inline void
4107 gimple_omp_for_set_kind (gimple g, int kind)
4109 GIMPLE_CHECK (g, GIMPLE_OMP_FOR);
4110 g->gsbase.subcode = (g->gsbase.subcode & ~GF_OMP_FOR_KIND_MASK)
4111 | (kind & GF_OMP_FOR_KIND_MASK);
4115 /* Return true if OMP for statement G has the
4116 GF_OMP_FOR_COMBINED flag set. */
4118 static inline bool
4119 gimple_omp_for_combined_p (const_gimple g)
4121 GIMPLE_CHECK (g, GIMPLE_OMP_FOR);
4122 return (gimple_omp_subcode (g) & GF_OMP_FOR_COMBINED) != 0;
4126 /* Set the GF_OMP_FOR_COMBINED field in G depending on the boolean
4127 value of COMBINED_P. */
4129 static inline void
4130 gimple_omp_for_set_combined_p (gimple g, bool combined_p)
4132 GIMPLE_CHECK (g, GIMPLE_OMP_FOR);
4133 if (combined_p)
4134 g->gsbase.subcode |= GF_OMP_FOR_COMBINED;
4135 else
4136 g->gsbase.subcode &= ~GF_OMP_FOR_COMBINED;
4140 /* Return true if OMP for statement G has the
4141 GF_OMP_FOR_COMBINED_INTO flag set. */
4143 static inline bool
4144 gimple_omp_for_combined_into_p (const_gimple g)
4146 GIMPLE_CHECK (g, GIMPLE_OMP_FOR);
4147 return (gimple_omp_subcode (g) & GF_OMP_FOR_COMBINED_INTO) != 0;
4151 /* Set the GF_OMP_FOR_COMBINED_INTO field in G depending on the boolean
4152 value of COMBINED_P. */
4154 static inline void
4155 gimple_omp_for_set_combined_into_p (gimple g, bool combined_p)
4157 GIMPLE_CHECK (g, GIMPLE_OMP_FOR);
4158 if (combined_p)
4159 g->gsbase.subcode |= GF_OMP_FOR_COMBINED_INTO;
4160 else
4161 g->gsbase.subcode &= ~GF_OMP_FOR_COMBINED_INTO;
4165 /* Return the clauses associated with OMP_FOR GS. */
4167 static inline tree
4168 gimple_omp_for_clauses (const_gimple gs)
4170 GIMPLE_CHECK (gs, GIMPLE_OMP_FOR);
4171 return gs->gimple_omp_for.clauses;
4175 /* Return a pointer to the OMP_FOR GS. */
4177 static inline tree *
4178 gimple_omp_for_clauses_ptr (gimple gs)
4180 GIMPLE_CHECK (gs, GIMPLE_OMP_FOR);
4181 return &gs->gimple_omp_for.clauses;
4185 /* Set CLAUSES to be the list of clauses associated with OMP_FOR GS. */
4187 static inline void
4188 gimple_omp_for_set_clauses (gimple gs, tree clauses)
4190 GIMPLE_CHECK (gs, GIMPLE_OMP_FOR);
4191 gs->gimple_omp_for.clauses = clauses;
4195 /* Get the collapse count of OMP_FOR GS. */
4197 static inline size_t
4198 gimple_omp_for_collapse (gimple gs)
4200 GIMPLE_CHECK (gs, GIMPLE_OMP_FOR);
4201 return gs->gimple_omp_for.collapse;
4205 /* Return the index variable for OMP_FOR GS. */
4207 static inline tree
4208 gimple_omp_for_index (const_gimple gs, size_t i)
4210 GIMPLE_CHECK (gs, GIMPLE_OMP_FOR);
4211 gcc_gimple_checking_assert (i < gs->gimple_omp_for.collapse);
4212 return gs->gimple_omp_for.iter[i].index;
4216 /* Return a pointer to the index variable for OMP_FOR GS. */
4218 static inline tree *
4219 gimple_omp_for_index_ptr (gimple gs, size_t i)
4221 GIMPLE_CHECK (gs, GIMPLE_OMP_FOR);
4222 gcc_gimple_checking_assert (i < gs->gimple_omp_for.collapse);
4223 return &gs->gimple_omp_for.iter[i].index;
4227 /* Set INDEX to be the index variable for OMP_FOR GS. */
4229 static inline void
4230 gimple_omp_for_set_index (gimple gs, size_t i, tree index)
4232 GIMPLE_CHECK (gs, GIMPLE_OMP_FOR);
4233 gcc_gimple_checking_assert (i < gs->gimple_omp_for.collapse);
4234 gs->gimple_omp_for.iter[i].index = index;
4238 /* Return the initial value for OMP_FOR GS. */
4240 static inline tree
4241 gimple_omp_for_initial (const_gimple gs, size_t i)
4243 GIMPLE_CHECK (gs, GIMPLE_OMP_FOR);
4244 gcc_gimple_checking_assert (i < gs->gimple_omp_for.collapse);
4245 return gs->gimple_omp_for.iter[i].initial;
4249 /* Return a pointer to the initial value for OMP_FOR GS. */
4251 static inline tree *
4252 gimple_omp_for_initial_ptr (gimple gs, size_t i)
4254 GIMPLE_CHECK (gs, GIMPLE_OMP_FOR);
4255 gcc_gimple_checking_assert (i < gs->gimple_omp_for.collapse);
4256 return &gs->gimple_omp_for.iter[i].initial;
4260 /* Set INITIAL to be the initial value for OMP_FOR GS. */
4262 static inline void
4263 gimple_omp_for_set_initial (gimple gs, size_t i, tree initial)
4265 GIMPLE_CHECK (gs, GIMPLE_OMP_FOR);
4266 gcc_gimple_checking_assert (i < gs->gimple_omp_for.collapse);
4267 gs->gimple_omp_for.iter[i].initial = initial;
4271 /* Return the final value for OMP_FOR GS. */
4273 static inline tree
4274 gimple_omp_for_final (const_gimple gs, size_t i)
4276 GIMPLE_CHECK (gs, GIMPLE_OMP_FOR);
4277 gcc_gimple_checking_assert (i < gs->gimple_omp_for.collapse);
4278 return gs->gimple_omp_for.iter[i].final;
4282 /* Return a pointer to the final value for OMP_FOR GS. */
4284 static inline tree *
4285 gimple_omp_for_final_ptr (gimple gs, size_t i)
4287 GIMPLE_CHECK (gs, GIMPLE_OMP_FOR);
4288 gcc_gimple_checking_assert (i < gs->gimple_omp_for.collapse);
4289 return &gs->gimple_omp_for.iter[i].final;
4293 /* Set FINAL to be the final value for OMP_FOR GS. */
4295 static inline void
4296 gimple_omp_for_set_final (gimple gs, size_t i, tree final)
4298 GIMPLE_CHECK (gs, GIMPLE_OMP_FOR);
4299 gcc_gimple_checking_assert (i < gs->gimple_omp_for.collapse);
4300 gs->gimple_omp_for.iter[i].final = final;
4304 /* Return the increment value for OMP_FOR GS. */
4306 static inline tree
4307 gimple_omp_for_incr (const_gimple gs, size_t i)
4309 GIMPLE_CHECK (gs, GIMPLE_OMP_FOR);
4310 gcc_gimple_checking_assert (i < gs->gimple_omp_for.collapse);
4311 return gs->gimple_omp_for.iter[i].incr;
4315 /* Return a pointer to the increment value for OMP_FOR GS. */
4317 static inline tree *
4318 gimple_omp_for_incr_ptr (gimple gs, size_t i)
4320 GIMPLE_CHECK (gs, GIMPLE_OMP_FOR);
4321 gcc_gimple_checking_assert (i < gs->gimple_omp_for.collapse);
4322 return &gs->gimple_omp_for.iter[i].incr;
4326 /* Set INCR to be the increment value for OMP_FOR GS. */
4328 static inline void
4329 gimple_omp_for_set_incr (gimple gs, size_t i, tree incr)
4331 GIMPLE_CHECK (gs, GIMPLE_OMP_FOR);
4332 gcc_gimple_checking_assert (i < gs->gimple_omp_for.collapse);
4333 gs->gimple_omp_for.iter[i].incr = incr;
4337 /* Return a pointer to the sequence of statements to execute before the OMP_FOR
4338 statement GS starts. */
4340 static inline gimple_seq *
4341 gimple_omp_for_pre_body_ptr (gimple gs)
4343 GIMPLE_CHECK (gs, GIMPLE_OMP_FOR);
4344 return &gs->gimple_omp_for.pre_body;
4348 /* Return the sequence of statements to execute before the OMP_FOR
4349 statement GS starts. */
4351 static inline gimple_seq
4352 gimple_omp_for_pre_body (gimple gs)
4354 return *gimple_omp_for_pre_body_ptr (gs);
4358 /* Set PRE_BODY to be the sequence of statements to execute before the
4359 OMP_FOR statement GS starts. */
4361 static inline void
4362 gimple_omp_for_set_pre_body (gimple gs, gimple_seq pre_body)
4364 GIMPLE_CHECK (gs, GIMPLE_OMP_FOR);
4365 gs->gimple_omp_for.pre_body = pre_body;
4369 /* Return the clauses associated with OMP_PARALLEL GS. */
4371 static inline tree
4372 gimple_omp_parallel_clauses (const_gimple gs)
4374 GIMPLE_CHECK (gs, GIMPLE_OMP_PARALLEL);
4375 return gs->gimple_omp_parallel.clauses;
4379 /* Return a pointer to the clauses associated with OMP_PARALLEL GS. */
4381 static inline tree *
4382 gimple_omp_parallel_clauses_ptr (gimple gs)
4384 GIMPLE_CHECK (gs, GIMPLE_OMP_PARALLEL);
4385 return &gs->gimple_omp_parallel.clauses;
4389 /* Set CLAUSES to be the list of clauses associated with OMP_PARALLEL
4390 GS. */
4392 static inline void
4393 gimple_omp_parallel_set_clauses (gimple gs, tree clauses)
4395 GIMPLE_CHECK (gs, GIMPLE_OMP_PARALLEL);
4396 gs->gimple_omp_parallel.clauses = clauses;
4400 /* Return the child function used to hold the body of OMP_PARALLEL GS. */
4402 static inline tree
4403 gimple_omp_parallel_child_fn (const_gimple gs)
4405 GIMPLE_CHECK (gs, GIMPLE_OMP_PARALLEL);
4406 return gs->gimple_omp_parallel.child_fn;
4409 /* Return a pointer to the child function used to hold the body of
4410 OMP_PARALLEL GS. */
4412 static inline tree *
4413 gimple_omp_parallel_child_fn_ptr (gimple gs)
4415 GIMPLE_CHECK (gs, GIMPLE_OMP_PARALLEL);
4416 return &gs->gimple_omp_parallel.child_fn;
4420 /* Set CHILD_FN to be the child function for OMP_PARALLEL GS. */
4422 static inline void
4423 gimple_omp_parallel_set_child_fn (gimple gs, tree child_fn)
4425 GIMPLE_CHECK (gs, GIMPLE_OMP_PARALLEL);
4426 gs->gimple_omp_parallel.child_fn = child_fn;
4430 /* Return the artificial argument used to send variables and values
4431 from the parent to the children threads in OMP_PARALLEL GS. */
4433 static inline tree
4434 gimple_omp_parallel_data_arg (const_gimple gs)
4436 GIMPLE_CHECK (gs, GIMPLE_OMP_PARALLEL);
4437 return gs->gimple_omp_parallel.data_arg;
4441 /* Return a pointer to the data argument for OMP_PARALLEL GS. */
4443 static inline tree *
4444 gimple_omp_parallel_data_arg_ptr (gimple gs)
4446 GIMPLE_CHECK (gs, GIMPLE_OMP_PARALLEL);
4447 return &gs->gimple_omp_parallel.data_arg;
4451 /* Set DATA_ARG to be the data argument for OMP_PARALLEL GS. */
4453 static inline void
4454 gimple_omp_parallel_set_data_arg (gimple gs, tree data_arg)
4456 GIMPLE_CHECK (gs, GIMPLE_OMP_PARALLEL);
4457 gs->gimple_omp_parallel.data_arg = data_arg;
4461 /* Return the clauses associated with OMP_TASK GS. */
4463 static inline tree
4464 gimple_omp_task_clauses (const_gimple gs)
4466 GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
4467 return gs->gimple_omp_parallel.clauses;
4471 /* Return a pointer to the clauses associated with OMP_TASK GS. */
4473 static inline tree *
4474 gimple_omp_task_clauses_ptr (gimple gs)
4476 GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
4477 return &gs->gimple_omp_parallel.clauses;
4481 /* Set CLAUSES to be the list of clauses associated with OMP_TASK
4482 GS. */
4484 static inline void
4485 gimple_omp_task_set_clauses (gimple gs, tree clauses)
4487 GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
4488 gs->gimple_omp_parallel.clauses = clauses;
4492 /* Return the child function used to hold the body of OMP_TASK GS. */
4494 static inline tree
4495 gimple_omp_task_child_fn (const_gimple gs)
4497 GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
4498 return gs->gimple_omp_parallel.child_fn;
4501 /* Return a pointer to the child function used to hold the body of
4502 OMP_TASK GS. */
4504 static inline tree *
4505 gimple_omp_task_child_fn_ptr (gimple gs)
4507 GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
4508 return &gs->gimple_omp_parallel.child_fn;
4512 /* Set CHILD_FN to be the child function for OMP_TASK GS. */
4514 static inline void
4515 gimple_omp_task_set_child_fn (gimple gs, tree child_fn)
4517 GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
4518 gs->gimple_omp_parallel.child_fn = child_fn;
4522 /* Return the artificial argument used to send variables and values
4523 from the parent to the children threads in OMP_TASK GS. */
4525 static inline tree
4526 gimple_omp_task_data_arg (const_gimple gs)
4528 GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
4529 return gs->gimple_omp_parallel.data_arg;
4533 /* Return a pointer to the data argument for OMP_TASK GS. */
4535 static inline tree *
4536 gimple_omp_task_data_arg_ptr (gimple gs)
4538 GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
4539 return &gs->gimple_omp_parallel.data_arg;
4543 /* Set DATA_ARG to be the data argument for OMP_TASK GS. */
4545 static inline void
4546 gimple_omp_task_set_data_arg (gimple gs, tree data_arg)
4548 GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
4549 gs->gimple_omp_parallel.data_arg = data_arg;
4553 /* Return the clauses associated with OMP_TASK GS. */
4555 static inline tree
4556 gimple_omp_taskreg_clauses (const_gimple gs)
4558 if (gimple_code (gs) != GIMPLE_OMP_PARALLEL)
4559 GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
4560 return gs->gimple_omp_parallel.clauses;
4564 /* Return a pointer to the clauses associated with OMP_TASK GS. */
4566 static inline tree *
4567 gimple_omp_taskreg_clauses_ptr (gimple gs)
4569 if (gimple_code (gs) != GIMPLE_OMP_PARALLEL)
4570 GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
4571 return &gs->gimple_omp_parallel.clauses;
4575 /* Set CLAUSES to be the list of clauses associated with OMP_TASK
4576 GS. */
4578 static inline void
4579 gimple_omp_taskreg_set_clauses (gimple gs, tree clauses)
4581 if (gimple_code (gs) != GIMPLE_OMP_PARALLEL)
4582 GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
4583 gs->gimple_omp_parallel.clauses = clauses;
4587 /* Return the child function used to hold the body of OMP_TASK GS. */
4589 static inline tree
4590 gimple_omp_taskreg_child_fn (const_gimple gs)
4592 if (gimple_code (gs) != GIMPLE_OMP_PARALLEL)
4593 GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
4594 return gs->gimple_omp_parallel.child_fn;
4597 /* Return a pointer to the child function used to hold the body of
4598 OMP_TASK GS. */
4600 static inline tree *
4601 gimple_omp_taskreg_child_fn_ptr (gimple gs)
4603 if (gimple_code (gs) != GIMPLE_OMP_PARALLEL)
4604 GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
4605 return &gs->gimple_omp_parallel.child_fn;
4609 /* Set CHILD_FN to be the child function for OMP_TASK GS. */
4611 static inline void
4612 gimple_omp_taskreg_set_child_fn (gimple gs, tree child_fn)
4614 if (gimple_code (gs) != GIMPLE_OMP_PARALLEL)
4615 GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
4616 gs->gimple_omp_parallel.child_fn = child_fn;
4620 /* Return the artificial argument used to send variables and values
4621 from the parent to the children threads in OMP_TASK GS. */
4623 static inline tree
4624 gimple_omp_taskreg_data_arg (const_gimple gs)
4626 if (gimple_code (gs) != GIMPLE_OMP_PARALLEL)
4627 GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
4628 return gs->gimple_omp_parallel.data_arg;
4632 /* Return a pointer to the data argument for OMP_TASK GS. */
4634 static inline tree *
4635 gimple_omp_taskreg_data_arg_ptr (gimple gs)
4637 if (gimple_code (gs) != GIMPLE_OMP_PARALLEL)
4638 GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
4639 return &gs->gimple_omp_parallel.data_arg;
4643 /* Set DATA_ARG to be the data argument for OMP_TASK GS. */
4645 static inline void
4646 gimple_omp_taskreg_set_data_arg (gimple gs, tree data_arg)
4648 if (gimple_code (gs) != GIMPLE_OMP_PARALLEL)
4649 GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
4650 gs->gimple_omp_parallel.data_arg = data_arg;
4654 /* Return the copy function used to hold the body of OMP_TASK GS. */
4656 static inline tree
4657 gimple_omp_task_copy_fn (const_gimple gs)
4659 GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
4660 return gs->gimple_omp_task.copy_fn;
4663 /* Return a pointer to the copy function used to hold the body of
4664 OMP_TASK GS. */
4666 static inline tree *
4667 gimple_omp_task_copy_fn_ptr (gimple gs)
4669 GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
4670 return &gs->gimple_omp_task.copy_fn;
4674 /* Set CHILD_FN to be the copy function for OMP_TASK GS. */
4676 static inline void
4677 gimple_omp_task_set_copy_fn (gimple gs, tree copy_fn)
4679 GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
4680 gs->gimple_omp_task.copy_fn = copy_fn;
4684 /* Return size of the data block in bytes in OMP_TASK GS. */
4686 static inline tree
4687 gimple_omp_task_arg_size (const_gimple gs)
4689 GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
4690 return gs->gimple_omp_task.arg_size;
4694 /* Return a pointer to the data block size for OMP_TASK GS. */
4696 static inline tree *
4697 gimple_omp_task_arg_size_ptr (gimple gs)
4699 GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
4700 return &gs->gimple_omp_task.arg_size;
4704 /* Set ARG_SIZE to be the data block size for OMP_TASK GS. */
4706 static inline void
4707 gimple_omp_task_set_arg_size (gimple gs, tree arg_size)
4709 GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
4710 gs->gimple_omp_task.arg_size = arg_size;
4714 /* Return align of the data block in bytes in OMP_TASK GS. */
4716 static inline tree
4717 gimple_omp_task_arg_align (const_gimple gs)
4719 GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
4720 return gs->gimple_omp_task.arg_align;
4724 /* Return a pointer to the data block align for OMP_TASK GS. */
4726 static inline tree *
4727 gimple_omp_task_arg_align_ptr (gimple gs)
4729 GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
4730 return &gs->gimple_omp_task.arg_align;
4734 /* Set ARG_SIZE to be the data block align for OMP_TASK GS. */
4736 static inline void
4737 gimple_omp_task_set_arg_align (gimple gs, tree arg_align)
4739 GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
4740 gs->gimple_omp_task.arg_align = arg_align;
4744 /* Return the clauses associated with OMP_SINGLE GS. */
4746 static inline tree
4747 gimple_omp_single_clauses (const_gimple gs)
4749 GIMPLE_CHECK (gs, GIMPLE_OMP_SINGLE);
4750 return gs->gimple_omp_single.clauses;
4754 /* Return a pointer to the clauses associated with OMP_SINGLE GS. */
4756 static inline tree *
4757 gimple_omp_single_clauses_ptr (gimple gs)
4759 GIMPLE_CHECK (gs, GIMPLE_OMP_SINGLE);
4760 return &gs->gimple_omp_single.clauses;
4764 /* Set CLAUSES to be the clauses associated with OMP_SINGLE GS. */
4766 static inline void
4767 gimple_omp_single_set_clauses (gimple gs, tree clauses)
4769 GIMPLE_CHECK (gs, GIMPLE_OMP_SINGLE);
4770 gs->gimple_omp_single.clauses = clauses;
4774 /* Return the clauses associated with OMP_TARGET GS. */
4776 static inline tree
4777 gimple_omp_target_clauses (const_gimple gs)
4779 GIMPLE_CHECK (gs, GIMPLE_OMP_TARGET);
4780 return gs->gimple_omp_parallel.clauses;
4784 /* Return a pointer to the clauses associated with OMP_TARGET GS. */
4786 static inline tree *
4787 gimple_omp_target_clauses_ptr (gimple gs)
4789 GIMPLE_CHECK (gs, GIMPLE_OMP_TARGET);
4790 return &gs->gimple_omp_parallel.clauses;
4794 /* Set CLAUSES to be the clauses associated with OMP_TARGET GS. */
4796 static inline void
4797 gimple_omp_target_set_clauses (gimple gs, tree clauses)
4799 GIMPLE_CHECK (gs, GIMPLE_OMP_TARGET);
4800 gs->gimple_omp_parallel.clauses = clauses;
4804 /* Return the kind of OMP target statemement. */
4806 static inline int
4807 gimple_omp_target_kind (const_gimple g)
4809 GIMPLE_CHECK (g, GIMPLE_OMP_TARGET);
4810 return (gimple_omp_subcode (g) & GF_OMP_TARGET_KIND_MASK);
4814 /* Set the OMP target kind. */
4816 static inline void
4817 gimple_omp_target_set_kind (gimple g, int kind)
4819 GIMPLE_CHECK (g, GIMPLE_OMP_TARGET);
4820 g->gsbase.subcode = (g->gsbase.subcode & ~GF_OMP_TARGET_KIND_MASK)
4821 | (kind & GF_OMP_TARGET_KIND_MASK);
4825 /* Return the child function used to hold the body of OMP_TARGET GS. */
4827 static inline tree
4828 gimple_omp_target_child_fn (const_gimple gs)
4830 GIMPLE_CHECK (gs, GIMPLE_OMP_TARGET);
4831 return gs->gimple_omp_parallel.child_fn;
4834 /* Return a pointer to the child function used to hold the body of
4835 OMP_TARGET GS. */
4837 static inline tree *
4838 gimple_omp_target_child_fn_ptr (gimple gs)
4840 GIMPLE_CHECK (gs, GIMPLE_OMP_TARGET);
4841 return &gs->gimple_omp_parallel.child_fn;
4845 /* Set CHILD_FN to be the child function for OMP_TARGET GS. */
4847 static inline void
4848 gimple_omp_target_set_child_fn (gimple gs, tree child_fn)
4850 GIMPLE_CHECK (gs, GIMPLE_OMP_TARGET);
4851 gs->gimple_omp_parallel.child_fn = child_fn;
4855 /* Return the artificial argument used to send variables and values
4856 from the parent to the children threads in OMP_TARGET GS. */
4858 static inline tree
4859 gimple_omp_target_data_arg (const_gimple gs)
4861 GIMPLE_CHECK (gs, GIMPLE_OMP_TARGET);
4862 return gs->gimple_omp_parallel.data_arg;
4866 /* Return a pointer to the data argument for OMP_TARGET GS. */
4868 static inline tree *
4869 gimple_omp_target_data_arg_ptr (gimple gs)
4871 GIMPLE_CHECK (gs, GIMPLE_OMP_TARGET);
4872 return &gs->gimple_omp_parallel.data_arg;
4876 /* Set DATA_ARG to be the data argument for OMP_TARGET GS. */
4878 static inline void
4879 gimple_omp_target_set_data_arg (gimple gs, tree data_arg)
4881 GIMPLE_CHECK (gs, GIMPLE_OMP_TARGET);
4882 gs->gimple_omp_parallel.data_arg = data_arg;
4886 /* Return the clauses associated with OMP_TEAMS GS. */
4888 static inline tree
4889 gimple_omp_teams_clauses (const_gimple gs)
4891 GIMPLE_CHECK (gs, GIMPLE_OMP_TEAMS);
4892 return gs->gimple_omp_single.clauses;
4896 /* Return a pointer to the clauses associated with OMP_TEAMS GS. */
4898 static inline tree *
4899 gimple_omp_teams_clauses_ptr (gimple gs)
4901 GIMPLE_CHECK (gs, GIMPLE_OMP_TEAMS);
4902 return &gs->gimple_omp_single.clauses;
4906 /* Set CLAUSES to be the clauses associated with OMP_TEAMS GS. */
4908 static inline void
4909 gimple_omp_teams_set_clauses (gimple gs, tree clauses)
4911 GIMPLE_CHECK (gs, GIMPLE_OMP_TEAMS);
4912 gs->gimple_omp_single.clauses = clauses;
4916 /* Return the clauses associated with OMP_SECTIONS GS. */
4918 static inline tree
4919 gimple_omp_sections_clauses (const_gimple gs)
4921 GIMPLE_CHECK (gs, GIMPLE_OMP_SECTIONS);
4922 return gs->gimple_omp_sections.clauses;
4926 /* Return a pointer to the clauses associated with OMP_SECTIONS GS. */
4928 static inline tree *
4929 gimple_omp_sections_clauses_ptr (gimple gs)
4931 GIMPLE_CHECK (gs, GIMPLE_OMP_SECTIONS);
4932 return &gs->gimple_omp_sections.clauses;
4936 /* Set CLAUSES to be the set of clauses associated with OMP_SECTIONS
4937 GS. */
4939 static inline void
4940 gimple_omp_sections_set_clauses (gimple gs, tree clauses)
4942 GIMPLE_CHECK (gs, GIMPLE_OMP_SECTIONS);
4943 gs->gimple_omp_sections.clauses = clauses;
4947 /* Return the control variable associated with the GIMPLE_OMP_SECTIONS
4948 in GS. */
4950 static inline tree
4951 gimple_omp_sections_control (const_gimple gs)
4953 GIMPLE_CHECK (gs, GIMPLE_OMP_SECTIONS);
4954 return gs->gimple_omp_sections.control;
4958 /* Return a pointer to the clauses associated with the GIMPLE_OMP_SECTIONS
4959 GS. */
4961 static inline tree *
4962 gimple_omp_sections_control_ptr (gimple gs)
4964 GIMPLE_CHECK (gs, GIMPLE_OMP_SECTIONS);
4965 return &gs->gimple_omp_sections.control;
4969 /* Set CONTROL to be the set of clauses associated with the
4970 GIMPLE_OMP_SECTIONS in GS. */
4972 static inline void
4973 gimple_omp_sections_set_control (gimple gs, tree control)
4975 GIMPLE_CHECK (gs, GIMPLE_OMP_SECTIONS);
4976 gs->gimple_omp_sections.control = control;
4980 /* Set COND to be the condition code for OMP_FOR GS. */
4982 static inline void
4983 gimple_omp_for_set_cond (gimple gs, size_t i, enum tree_code cond)
4985 GIMPLE_CHECK (gs, GIMPLE_OMP_FOR);
4986 gcc_gimple_checking_assert (TREE_CODE_CLASS (cond) == tcc_comparison
4987 && i < gs->gimple_omp_for.collapse);
4988 gs->gimple_omp_for.iter[i].cond = cond;
4992 /* Return the condition code associated with OMP_FOR GS. */
4994 static inline enum tree_code
4995 gimple_omp_for_cond (const_gimple gs, size_t i)
4997 GIMPLE_CHECK (gs, GIMPLE_OMP_FOR);
4998 gcc_gimple_checking_assert (i < gs->gimple_omp_for.collapse);
4999 return gs->gimple_omp_for.iter[i].cond;
5003 /* Set the value being stored in an atomic store. */
5005 static inline void
5006 gimple_omp_atomic_store_set_val (gimple g, tree val)
5008 GIMPLE_CHECK (g, GIMPLE_OMP_ATOMIC_STORE);
5009 g->gimple_omp_atomic_store.val = val;
5013 /* Return the value being stored in an atomic store. */
5015 static inline tree
5016 gimple_omp_atomic_store_val (const_gimple g)
5018 GIMPLE_CHECK (g, GIMPLE_OMP_ATOMIC_STORE);
5019 return g->gimple_omp_atomic_store.val;
5023 /* Return a pointer to the value being stored in an atomic store. */
5025 static inline tree *
5026 gimple_omp_atomic_store_val_ptr (gimple g)
5028 GIMPLE_CHECK (g, GIMPLE_OMP_ATOMIC_STORE);
5029 return &g->gimple_omp_atomic_store.val;
5033 /* Set the LHS of an atomic load. */
5035 static inline void
5036 gimple_omp_atomic_load_set_lhs (gimple g, tree lhs)
5038 GIMPLE_CHECK (g, GIMPLE_OMP_ATOMIC_LOAD);
5039 g->gimple_omp_atomic_load.lhs = lhs;
5043 /* Get the LHS of an atomic load. */
5045 static inline tree
5046 gimple_omp_atomic_load_lhs (const_gimple g)
5048 GIMPLE_CHECK (g, GIMPLE_OMP_ATOMIC_LOAD);
5049 return g->gimple_omp_atomic_load.lhs;
5053 /* Return a pointer to the LHS of an atomic load. */
5055 static inline tree *
5056 gimple_omp_atomic_load_lhs_ptr (gimple g)
5058 GIMPLE_CHECK (g, GIMPLE_OMP_ATOMIC_LOAD);
5059 return &g->gimple_omp_atomic_load.lhs;
5063 /* Set the RHS of an atomic load. */
5065 static inline void
5066 gimple_omp_atomic_load_set_rhs (gimple g, tree rhs)
5068 GIMPLE_CHECK (g, GIMPLE_OMP_ATOMIC_LOAD);
5069 g->gimple_omp_atomic_load.rhs = rhs;
5073 /* Get the RHS of an atomic load. */
5075 static inline tree
5076 gimple_omp_atomic_load_rhs (const_gimple g)
5078 GIMPLE_CHECK (g, GIMPLE_OMP_ATOMIC_LOAD);
5079 return g->gimple_omp_atomic_load.rhs;
5083 /* Return a pointer to the RHS of an atomic load. */
5085 static inline tree *
5086 gimple_omp_atomic_load_rhs_ptr (gimple g)
5088 GIMPLE_CHECK (g, GIMPLE_OMP_ATOMIC_LOAD);
5089 return &g->gimple_omp_atomic_load.rhs;
5093 /* Get the definition of the control variable in a GIMPLE_OMP_CONTINUE. */
5095 static inline tree
5096 gimple_omp_continue_control_def (const_gimple g)
5098 GIMPLE_CHECK (g, GIMPLE_OMP_CONTINUE);
5099 return g->gimple_omp_continue.control_def;
5102 /* The same as above, but return the address. */
5104 static inline tree *
5105 gimple_omp_continue_control_def_ptr (gimple g)
5107 GIMPLE_CHECK (g, GIMPLE_OMP_CONTINUE);
5108 return &g->gimple_omp_continue.control_def;
5111 /* Set the definition of the control variable in a GIMPLE_OMP_CONTINUE. */
5113 static inline void
5114 gimple_omp_continue_set_control_def (gimple g, tree def)
5116 GIMPLE_CHECK (g, GIMPLE_OMP_CONTINUE);
5117 g->gimple_omp_continue.control_def = def;
5121 /* Get the use of the control variable in a GIMPLE_OMP_CONTINUE. */
5123 static inline tree
5124 gimple_omp_continue_control_use (const_gimple g)
5126 GIMPLE_CHECK (g, GIMPLE_OMP_CONTINUE);
5127 return g->gimple_omp_continue.control_use;
5131 /* The same as above, but return the address. */
5133 static inline tree *
5134 gimple_omp_continue_control_use_ptr (gimple g)
5136 GIMPLE_CHECK (g, GIMPLE_OMP_CONTINUE);
5137 return &g->gimple_omp_continue.control_use;
5141 /* Set the use of the control variable in a GIMPLE_OMP_CONTINUE. */
5143 static inline void
5144 gimple_omp_continue_set_control_use (gimple g, tree use)
5146 GIMPLE_CHECK (g, GIMPLE_OMP_CONTINUE);
5147 g->gimple_omp_continue.control_use = use;
5150 /* Return a pointer to the body for the GIMPLE_TRANSACTION statement GS. */
5152 static inline gimple_seq *
5153 gimple_transaction_body_ptr (gimple gs)
5155 GIMPLE_CHECK (gs, GIMPLE_TRANSACTION);
5156 return &gs->gimple_transaction.body;
5159 /* Return the body for the GIMPLE_TRANSACTION statement GS. */
5161 static inline gimple_seq
5162 gimple_transaction_body (gimple gs)
5164 return *gimple_transaction_body_ptr (gs);
5167 /* Return the label associated with a GIMPLE_TRANSACTION. */
5169 static inline tree
5170 gimple_transaction_label (const_gimple gs)
5172 GIMPLE_CHECK (gs, GIMPLE_TRANSACTION);
5173 return gs->gimple_transaction.label;
5176 static inline tree *
5177 gimple_transaction_label_ptr (gimple gs)
5179 GIMPLE_CHECK (gs, GIMPLE_TRANSACTION);
5180 return &gs->gimple_transaction.label;
5183 /* Return the subcode associated with a GIMPLE_TRANSACTION. */
5185 static inline unsigned int
5186 gimple_transaction_subcode (const_gimple gs)
5188 GIMPLE_CHECK (gs, GIMPLE_TRANSACTION);
5189 return gs->gsbase.subcode;
5192 /* Set BODY to be the body for the GIMPLE_TRANSACTION statement GS. */
5194 static inline void
5195 gimple_transaction_set_body (gimple gs, gimple_seq body)
5197 GIMPLE_CHECK (gs, GIMPLE_TRANSACTION);
5198 gs->gimple_transaction.body = body;
5201 /* Set the label associated with a GIMPLE_TRANSACTION. */
5203 static inline void
5204 gimple_transaction_set_label (gimple gs, tree label)
5206 GIMPLE_CHECK (gs, GIMPLE_TRANSACTION);
5207 gs->gimple_transaction.label = label;
5210 /* Set the subcode associated with a GIMPLE_TRANSACTION. */
5212 static inline void
5213 gimple_transaction_set_subcode (gimple gs, unsigned int subcode)
5215 GIMPLE_CHECK (gs, GIMPLE_TRANSACTION);
5216 gs->gsbase.subcode = subcode;
5220 /* Return a pointer to the return value for GIMPLE_RETURN GS. */
5222 static inline tree *
5223 gimple_return_retval_ptr (const_gimple gs)
5225 GIMPLE_CHECK (gs, GIMPLE_RETURN);
5226 return gimple_op_ptr (gs, 0);
5229 /* Return the return value for GIMPLE_RETURN GS. */
5231 static inline tree
5232 gimple_return_retval (const_gimple gs)
5234 GIMPLE_CHECK (gs, GIMPLE_RETURN);
5235 return gimple_op (gs, 0);
5239 /* Set RETVAL to be the return value for GIMPLE_RETURN GS. */
5241 static inline void
5242 gimple_return_set_retval (gimple gs, tree retval)
5244 GIMPLE_CHECK (gs, GIMPLE_RETURN);
5245 gimple_set_op (gs, 0, retval);
5249 /* Return the return bounds for GIMPLE_RETURN GS. */
5251 static inline tree
5252 gimple_return_retbnd (const_gimple gs)
5254 GIMPLE_CHECK (gs, GIMPLE_RETURN);
5255 return gimple_op (gs, 1);
5259 /* Set RETVAL to be the return bounds for GIMPLE_RETURN GS. */
5261 static inline void
5262 gimple_return_set_retbnd (gimple gs, tree retval)
5264 GIMPLE_CHECK (gs, GIMPLE_RETURN);
5265 gimple_set_op (gs, 1, retval);
5269 /* Returns true when the gimple statement STMT is any of the OpenMP types. */
5271 #define CASE_GIMPLE_OMP \
5272 case GIMPLE_OMP_PARALLEL: \
5273 case GIMPLE_OMP_TASK: \
5274 case GIMPLE_OMP_FOR: \
5275 case GIMPLE_OMP_SECTIONS: \
5276 case GIMPLE_OMP_SECTIONS_SWITCH: \
5277 case GIMPLE_OMP_SINGLE: \
5278 case GIMPLE_OMP_TARGET: \
5279 case GIMPLE_OMP_TEAMS: \
5280 case GIMPLE_OMP_SECTION: \
5281 case GIMPLE_OMP_MASTER: \
5282 case GIMPLE_OMP_TASKGROUP: \
5283 case GIMPLE_OMP_ORDERED: \
5284 case GIMPLE_OMP_CRITICAL: \
5285 case GIMPLE_OMP_RETURN: \
5286 case GIMPLE_OMP_ATOMIC_LOAD: \
5287 case GIMPLE_OMP_ATOMIC_STORE: \
5288 case GIMPLE_OMP_CONTINUE
5290 static inline bool
5291 is_gimple_omp (const_gimple stmt)
5293 switch (gimple_code (stmt))
5295 CASE_GIMPLE_OMP:
5296 return true;
5297 default:
5298 return false;
5303 /* Returns TRUE if statement G is a GIMPLE_NOP. */
5305 static inline bool
5306 gimple_nop_p (const_gimple g)
5308 return gimple_code (g) == GIMPLE_NOP;
5312 /* Return true if GS is a GIMPLE_RESX. */
5314 static inline bool
5315 is_gimple_resx (const_gimple gs)
5317 return gimple_code (gs) == GIMPLE_RESX;
5320 /* Return the predictor of GIMPLE_PREDICT statement GS. */
5322 static inline enum br_predictor
5323 gimple_predict_predictor (gimple gs)
5325 GIMPLE_CHECK (gs, GIMPLE_PREDICT);
5326 return (enum br_predictor) (gs->gsbase.subcode & ~GF_PREDICT_TAKEN);
5330 /* Set the predictor of GIMPLE_PREDICT statement GS to PREDICT. */
5332 static inline void
5333 gimple_predict_set_predictor (gimple gs, enum br_predictor predictor)
5335 GIMPLE_CHECK (gs, GIMPLE_PREDICT);
5336 gs->gsbase.subcode = (gs->gsbase.subcode & GF_PREDICT_TAKEN)
5337 | (unsigned) predictor;
5341 /* Return the outcome of GIMPLE_PREDICT statement GS. */
5343 static inline enum prediction
5344 gimple_predict_outcome (gimple gs)
5346 GIMPLE_CHECK (gs, GIMPLE_PREDICT);
5347 return (gs->gsbase.subcode & GF_PREDICT_TAKEN) ? TAKEN : NOT_TAKEN;
5351 /* Set the outcome of GIMPLE_PREDICT statement GS to OUTCOME. */
5353 static inline void
5354 gimple_predict_set_outcome (gimple gs, enum prediction outcome)
5356 GIMPLE_CHECK (gs, GIMPLE_PREDICT);
5357 if (outcome == TAKEN)
5358 gs->gsbase.subcode |= GF_PREDICT_TAKEN;
5359 else
5360 gs->gsbase.subcode &= ~GF_PREDICT_TAKEN;
5364 /* Return the type of the main expression computed by STMT. Return
5365 void_type_node if the statement computes nothing. */
5367 static inline tree
5368 gimple_expr_type (const_gimple stmt)
5370 enum gimple_code code = gimple_code (stmt);
5372 if (code == GIMPLE_ASSIGN || code == GIMPLE_CALL)
5374 tree type;
5375 /* In general we want to pass out a type that can be substituted
5376 for both the RHS and the LHS types if there is a possibly
5377 useless conversion involved. That means returning the
5378 original RHS type as far as we can reconstruct it. */
5379 if (code == GIMPLE_CALL)
5380 type = gimple_call_return_type (stmt);
5381 else
5382 switch (gimple_assign_rhs_code (stmt))
5384 case POINTER_PLUS_EXPR:
5385 type = TREE_TYPE (gimple_assign_rhs1 (stmt));
5386 break;
5388 default:
5389 /* As fallback use the type of the LHS. */
5390 type = TREE_TYPE (gimple_get_lhs (stmt));
5391 break;
5393 return type;
5395 else if (code == GIMPLE_COND)
5396 return boolean_type_node;
5397 else
5398 return void_type_node;
5401 /* Return true if TYPE is a suitable type for a scalar register variable. */
5403 static inline bool
5404 is_gimple_reg_type (tree type)
5406 return !AGGREGATE_TYPE_P (type);
5409 /* Return a new iterator pointing to GIMPLE_SEQ's first statement. */
5411 static inline gimple_stmt_iterator
5412 gsi_start_1 (gimple_seq *seq)
5414 gimple_stmt_iterator i;
5416 i.ptr = gimple_seq_first (*seq);
5417 i.seq = seq;
5418 i.bb = i.ptr ? gimple_bb (i.ptr) : NULL;
5420 return i;
5423 #define gsi_start(x) gsi_start_1 (&(x))
5425 static inline gimple_stmt_iterator
5426 gsi_none (void)
5428 gimple_stmt_iterator i;
5429 i.ptr = NULL;
5430 i.seq = NULL;
5431 i.bb = NULL;
5432 return i;
5435 /* Return a new iterator pointing to the first statement in basic block BB. */
5437 static inline gimple_stmt_iterator
5438 gsi_start_bb (basic_block bb)
5440 gimple_stmt_iterator i;
5441 gimple_seq *seq;
5443 seq = bb_seq_addr (bb);
5444 i.ptr = gimple_seq_first (*seq);
5445 i.seq = seq;
5446 i.bb = bb;
5448 return i;
5452 /* Return a new iterator initially pointing to GIMPLE_SEQ's last statement. */
5454 static inline gimple_stmt_iterator
5455 gsi_last_1 (gimple_seq *seq)
5457 gimple_stmt_iterator i;
5459 i.ptr = gimple_seq_last (*seq);
5460 i.seq = seq;
5461 i.bb = i.ptr ? gimple_bb (i.ptr) : NULL;
5463 return i;
5466 #define gsi_last(x) gsi_last_1 (&(x))
5468 /* Return a new iterator pointing to the last statement in basic block BB. */
5470 static inline gimple_stmt_iterator
5471 gsi_last_bb (basic_block bb)
5473 gimple_stmt_iterator i;
5474 gimple_seq *seq;
5476 seq = bb_seq_addr (bb);
5477 i.ptr = gimple_seq_last (*seq);
5478 i.seq = seq;
5479 i.bb = bb;
5481 return i;
5485 /* Return true if I is at the end of its sequence. */
5487 static inline bool
5488 gsi_end_p (gimple_stmt_iterator i)
5490 return i.ptr == NULL;
5494 /* Return true if I is one statement before the end of its sequence. */
5496 static inline bool
5497 gsi_one_before_end_p (gimple_stmt_iterator i)
5499 return i.ptr != NULL && i.ptr->gsbase.next == NULL;
5503 /* Advance the iterator to the next gimple statement. */
5505 static inline void
5506 gsi_next (gimple_stmt_iterator *i)
5508 i->ptr = i->ptr->gsbase.next;
5511 /* Advance the iterator to the previous gimple statement. */
5513 static inline void
5514 gsi_prev (gimple_stmt_iterator *i)
5516 gimple prev = i->ptr->gsbase.prev;
5517 if (prev->gsbase.next)
5518 i->ptr = prev;
5519 else
5520 i->ptr = NULL;
5523 /* Return the current stmt. */
5525 static inline gimple
5526 gsi_stmt (gimple_stmt_iterator i)
5528 return i.ptr;
5531 /* Return a block statement iterator that points to the first non-label
5532 statement in block BB. */
5534 static inline gimple_stmt_iterator
5535 gsi_after_labels (basic_block bb)
5537 gimple_stmt_iterator gsi = gsi_start_bb (bb);
5539 while (!gsi_end_p (gsi) && gimple_code (gsi_stmt (gsi)) == GIMPLE_LABEL)
5540 gsi_next (&gsi);
5542 return gsi;
5545 /* Advance the iterator to the next non-debug gimple statement. */
5547 static inline void
5548 gsi_next_nondebug (gimple_stmt_iterator *i)
5552 gsi_next (i);
5554 while (!gsi_end_p (*i) && is_gimple_debug (gsi_stmt (*i)));
5557 /* Advance the iterator to the next non-debug gimple statement. */
5559 static inline void
5560 gsi_prev_nondebug (gimple_stmt_iterator *i)
5564 gsi_prev (i);
5566 while (!gsi_end_p (*i) && is_gimple_debug (gsi_stmt (*i)));
5569 /* Return a new iterator pointing to the first non-debug statement in
5570 basic block BB. */
5572 static inline gimple_stmt_iterator
5573 gsi_start_nondebug_bb (basic_block bb)
5575 gimple_stmt_iterator i = gsi_start_bb (bb);
5577 if (!gsi_end_p (i) && is_gimple_debug (gsi_stmt (i)))
5578 gsi_next_nondebug (&i);
5580 return i;
5583 /* Return a new iterator pointing to the first non-debug non-label statement in
5584 basic block BB. */
5586 static inline gimple_stmt_iterator
5587 gsi_start_nondebug_after_labels_bb (basic_block bb)
5589 gimple_stmt_iterator i = gsi_after_labels (bb);
5591 if (!gsi_end_p (i) && is_gimple_debug (gsi_stmt (i)))
5592 gsi_next_nondebug (&i);
5594 return i;
5597 /* Return a new iterator pointing to the last non-debug statement in
5598 basic block BB. */
5600 static inline gimple_stmt_iterator
5601 gsi_last_nondebug_bb (basic_block bb)
5603 gimple_stmt_iterator i = gsi_last_bb (bb);
5605 if (!gsi_end_p (i) && is_gimple_debug (gsi_stmt (i)))
5606 gsi_prev_nondebug (&i);
5608 return i;
5612 /* Return the basic block associated with this iterator. */
5614 static inline basic_block
5615 gsi_bb (gimple_stmt_iterator i)
5617 return i.bb;
5621 /* Return the sequence associated with this iterator. */
5623 static inline gimple_seq
5624 gsi_seq (gimple_stmt_iterator i)
5626 return *i.seq;
5630 enum gsi_iterator_update
5632 GSI_NEW_STMT, /* Only valid when single statement is added, move
5633 iterator to it. */
5634 GSI_SAME_STMT, /* Leave the iterator at the same statement. */
5635 GSI_CONTINUE_LINKING /* Move iterator to whatever position is suitable
5636 for linking other statements in the same
5637 direction. */
5640 /* In gimple-iterator.c */
5641 gimple_stmt_iterator gsi_start_phis (basic_block);
5642 gimple_seq gsi_split_seq_after (gimple_stmt_iterator);
5643 void gsi_split_seq_before (gimple_stmt_iterator *, gimple_seq *);
5644 void gsi_set_stmt (gimple_stmt_iterator *, gimple);
5645 void gsi_replace (gimple_stmt_iterator *, gimple, bool);
5646 void gsi_replace_with_seq (gimple_stmt_iterator *, gimple_seq, bool);
5647 void gsi_insert_before (gimple_stmt_iterator *, gimple,
5648 enum gsi_iterator_update);
5649 void gsi_insert_before_without_update (gimple_stmt_iterator *, gimple,
5650 enum gsi_iterator_update);
5651 void gsi_insert_seq_before (gimple_stmt_iterator *, gimple_seq,
5652 enum gsi_iterator_update);
5653 void gsi_insert_seq_before_without_update (gimple_stmt_iterator *, gimple_seq,
5654 enum gsi_iterator_update);
5655 void gsi_insert_after (gimple_stmt_iterator *, gimple,
5656 enum gsi_iterator_update);
5657 void gsi_insert_after_without_update (gimple_stmt_iterator *, gimple,
5658 enum gsi_iterator_update);
5659 void gsi_insert_seq_after (gimple_stmt_iterator *, gimple_seq,
5660 enum gsi_iterator_update);
5661 void gsi_insert_seq_after_without_update (gimple_stmt_iterator *, gimple_seq,
5662 enum gsi_iterator_update);
5663 bool gsi_remove (gimple_stmt_iterator *, bool);
5664 gimple_stmt_iterator gsi_for_stmt (gimple);
5665 void gsi_move_after (gimple_stmt_iterator *, gimple_stmt_iterator *);
5666 void gsi_move_before (gimple_stmt_iterator *, gimple_stmt_iterator *);
5667 void gsi_move_to_bb_end (gimple_stmt_iterator *, basic_block);
5668 void gsi_insert_on_edge (edge, gimple);
5669 void gsi_insert_seq_on_edge (edge, gimple_seq);
5670 basic_block gsi_insert_on_edge_immediate (edge, gimple);
5671 basic_block gsi_insert_seq_on_edge_immediate (edge, gimple_seq);
5672 void gsi_commit_one_edge_insert (edge, basic_block *);
5673 void gsi_commit_edge_inserts (void);
5674 gimple gimple_call_copy_skip_args (gimple, bitmap);
5676 /* In gimplify.c. */
5677 tree force_gimple_operand_1 (tree, gimple_seq *, gimple_predicate, tree);
5678 tree force_gimple_operand (tree, gimple_seq *, bool, tree);
5679 tree force_gimple_operand_gsi_1 (gimple_stmt_iterator *, tree,
5680 gimple_predicate, tree,
5681 bool, enum gsi_iterator_update);
5682 tree force_gimple_operand_gsi (gimple_stmt_iterator *, tree, bool, tree,
5683 bool, enum gsi_iterator_update);
5685 /* Convenience routines to walk all statements of a gimple function.
5686 Note that this is useful exclusively before the code is converted
5687 into SSA form. Once the program is in SSA form, the standard
5688 operand interface should be used to analyze/modify statements. */
5689 struct walk_stmt_info
5691 /* Points to the current statement being walked. */
5692 gimple_stmt_iterator gsi;
5694 /* Additional data that the callback functions may want to carry
5695 through the recursion. */
5696 void *info;
5698 /* Pointer map used to mark visited tree nodes when calling
5699 walk_tree on each operand. If set to NULL, duplicate tree nodes
5700 will be visited more than once. */
5701 struct pointer_set_t *pset;
5703 /* Operand returned by the callbacks. This is set when calling
5704 walk_gimple_seq. If the walk_stmt_fn or walk_tree_fn callback
5705 returns non-NULL, this field will contain the tree returned by
5706 the last callback. */
5707 tree callback_result;
5709 /* Indicates whether the operand being examined may be replaced
5710 with something that matches is_gimple_val (if true) or something
5711 slightly more complicated (if false). "Something" technically
5712 means the common subset of is_gimple_lvalue and is_gimple_rhs,
5713 but we never try to form anything more complicated than that, so
5714 we don't bother checking.
5716 Also note that CALLBACK should update this flag while walking the
5717 sub-expressions of a statement. For instance, when walking the
5718 statement 'foo (&var)', the flag VAL_ONLY will initially be set
5719 to true, however, when walking &var, the operand of that
5720 ADDR_EXPR does not need to be a GIMPLE value. */
5721 BOOL_BITFIELD val_only : 1;
5723 /* True if we are currently walking the LHS of an assignment. */
5724 BOOL_BITFIELD is_lhs : 1;
5726 /* Optional. Set to true by the callback functions if they made any
5727 changes. */
5728 BOOL_BITFIELD changed : 1;
5730 /* True if we're interested in location information. */
5731 BOOL_BITFIELD want_locations : 1;
5733 /* True if we've removed the statement that was processed. */
5734 BOOL_BITFIELD removed_stmt : 1;
5737 /* Callback for walk_gimple_stmt. Called for every statement found
5738 during traversal. The first argument points to the statement to
5739 walk. The second argument is a flag that the callback sets to
5740 'true' if it the callback handled all the operands and
5741 sub-statements of the statement (the default value of this flag is
5742 'false'). The third argument is an anonymous pointer to data
5743 to be used by the callback. */
5744 typedef tree (*walk_stmt_fn) (gimple_stmt_iterator *, bool *,
5745 struct walk_stmt_info *);
5747 gimple walk_gimple_seq (gimple_seq, walk_stmt_fn, walk_tree_fn,
5748 struct walk_stmt_info *);
5749 gimple walk_gimple_seq_mod (gimple_seq *, walk_stmt_fn, walk_tree_fn,
5750 struct walk_stmt_info *);
5751 tree walk_gimple_stmt (gimple_stmt_iterator *, walk_stmt_fn, walk_tree_fn,
5752 struct walk_stmt_info *);
5753 tree walk_gimple_op (gimple, walk_tree_fn, struct walk_stmt_info *);
5755 /* Enum and arrays used for allocation stats. Keep in sync with
5756 gimple.c:gimple_alloc_kind_names. */
5757 enum gimple_alloc_kind
5759 gimple_alloc_kind_assign, /* Assignments. */
5760 gimple_alloc_kind_phi, /* PHI nodes. */
5761 gimple_alloc_kind_cond, /* Conditionals. */
5762 gimple_alloc_kind_rest, /* Everything else. */
5763 gimple_alloc_kind_all
5766 extern int gimple_alloc_counts[];
5767 extern int gimple_alloc_sizes[];
5769 /* Return the allocation kind for a given stmt CODE. */
5770 static inline enum gimple_alloc_kind
5771 gimple_alloc_kind (enum gimple_code code)
5773 switch (code)
5775 case GIMPLE_ASSIGN:
5776 return gimple_alloc_kind_assign;
5777 case GIMPLE_PHI:
5778 return gimple_alloc_kind_phi;
5779 case GIMPLE_COND:
5780 return gimple_alloc_kind_cond;
5781 default:
5782 return gimple_alloc_kind_rest;
5786 extern void dump_gimple_statistics (void);
5788 /* Set the location of all statements in SEQ to LOC. */
5790 static inline void
5791 gimple_seq_set_location (gimple_seq seq, location_t loc)
5793 for (gimple_stmt_iterator i = gsi_start (seq); !gsi_end_p (i); gsi_next (&i))
5794 gimple_set_location (gsi_stmt (i), loc);
5797 /* Macros for showing usage statistics. */
5798 #define SCALE(x) ((unsigned long) ((x) < 1024*10 \
5799 ? (x) \
5800 : ((x) < 1024*1024*10 \
5801 ? (x) / 1024 \
5802 : (x) / (1024*1024))))
5804 #define LABEL(x) ((x) < 1024*10 ? 'b' : ((x) < 1024*1024*10 ? 'k' : 'M'))
5806 #define PERCENT(x,y) ((float)(x) * 100.0 / (float)(y))
5808 #endif /* GCC_GIMPLE_H */