jit: document union types
[official-gcc.git] / gcc / gimple.h
blob253f4385dec5b0bd6a38995c94e0952f194df6ba
1 /* Gimple IR definitions.
3 Copyright (C) 2007-2015 Free Software Foundation, Inc.
4 Contributed by Aldy Hernandez <aldyh@redhat.com>
6 This file is part of GCC.
8 GCC is free software; you can redistribute it and/or modify it under
9 the terms of the GNU General Public License as published by the Free
10 Software Foundation; either version 3, or (at your option) any later
11 version.
13 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
14 WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16 for more details.
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING3. If not see
20 <http://www.gnu.org/licenses/>. */
22 #ifndef GCC_GIMPLE_H
23 #define GCC_GIMPLE_H
25 typedef gimple gimple_seq_node;
27 enum gimple_code {
28 #define DEFGSCODE(SYM, STRING, STRUCT) SYM,
29 #include "gimple.def"
30 #undef DEFGSCODE
31 LAST_AND_UNUSED_GIMPLE_CODE
34 extern const char *const gimple_code_name[];
35 extern const unsigned char gimple_rhs_class_table[];
37 /* Error out if a gimple tuple is addressed incorrectly. */
38 #if defined ENABLE_GIMPLE_CHECKING
39 #define gcc_gimple_checking_assert(EXPR) gcc_assert (EXPR)
40 extern void gimple_check_failed (const_gimple, const char *, int, \
41 const char *, enum gimple_code, \
42 enum tree_code) ATTRIBUTE_NORETURN;
44 #define GIMPLE_CHECK(GS, CODE) \
45 do { \
46 const_gimple __gs = (GS); \
47 if (gimple_code (__gs) != (CODE)) \
48 gimple_check_failed (__gs, __FILE__, __LINE__, __FUNCTION__, \
49 (CODE), ERROR_MARK); \
50 } while (0)
51 #else /* not ENABLE_GIMPLE_CHECKING */
52 #define gcc_gimple_checking_assert(EXPR) ((void)(0 && (EXPR)))
53 #define GIMPLE_CHECK(GS, CODE) (void)0
54 #endif
56 /* Class of GIMPLE expressions suitable for the RHS of assignments. See
57 get_gimple_rhs_class. */
58 enum gimple_rhs_class
60 GIMPLE_INVALID_RHS, /* The expression cannot be used on the RHS. */
61 GIMPLE_TERNARY_RHS, /* The expression is a ternary operation. */
62 GIMPLE_BINARY_RHS, /* The expression is a binary operation. */
63 GIMPLE_UNARY_RHS, /* The expression is a unary operation. */
64 GIMPLE_SINGLE_RHS /* The expression is a single object (an SSA
65 name, a _DECL, a _REF, etc. */
68 /* Specific flags for individual GIMPLE statements. These flags are
69 always stored in gimple_statement_base.subcode and they may only be
70 defined for statement codes that do not use subcodes.
72 Values for the masks can overlap as long as the overlapping values
73 are never used in the same statement class.
75 The maximum mask value that can be defined is 1 << 15 (i.e., each
76 statement code can hold up to 16 bitflags).
78 Keep this list sorted. */
79 enum gf_mask {
80 GF_ASM_INPUT = 1 << 0,
81 GF_ASM_VOLATILE = 1 << 1,
82 GF_CALL_FROM_THUNK = 1 << 0,
83 GF_CALL_RETURN_SLOT_OPT = 1 << 1,
84 GF_CALL_TAILCALL = 1 << 2,
85 GF_CALL_VA_ARG_PACK = 1 << 3,
86 GF_CALL_NOTHROW = 1 << 4,
87 GF_CALL_ALLOCA_FOR_VAR = 1 << 5,
88 GF_CALL_INTERNAL = 1 << 6,
89 GF_CALL_CTRL_ALTERING = 1 << 7,
90 GF_CALL_WITH_BOUNDS = 1 << 8,
91 GF_OMP_PARALLEL_COMBINED = 1 << 0,
92 GF_OMP_FOR_KIND_MASK = (1 << 3) - 1,
93 GF_OMP_FOR_KIND_FOR = 0,
94 GF_OMP_FOR_KIND_DISTRIBUTE = 1,
95 GF_OMP_FOR_KIND_CILKFOR = 2,
96 GF_OMP_FOR_KIND_OACC_LOOP = 3,
97 /* Flag for SIMD variants of OMP_FOR kinds. */
98 GF_OMP_FOR_SIMD = 1 << 2,
99 GF_OMP_FOR_KIND_SIMD = GF_OMP_FOR_SIMD | 0,
100 GF_OMP_FOR_KIND_CILKSIMD = GF_OMP_FOR_SIMD | 1,
101 GF_OMP_FOR_COMBINED = 1 << 3,
102 GF_OMP_FOR_COMBINED_INTO = 1 << 4,
103 GF_OMP_TARGET_KIND_MASK = (1 << 3) - 1,
104 GF_OMP_TARGET_KIND_REGION = 0,
105 GF_OMP_TARGET_KIND_DATA = 1,
106 GF_OMP_TARGET_KIND_UPDATE = 2,
107 GF_OMP_TARGET_KIND_OACC_PARALLEL = 3,
108 GF_OMP_TARGET_KIND_OACC_KERNELS = 4,
109 GF_OMP_TARGET_KIND_OACC_DATA = 5,
110 GF_OMP_TARGET_KIND_OACC_UPDATE = 6,
111 GF_OMP_TARGET_KIND_OACC_ENTER_EXIT_DATA = 7,
113 /* True on an GIMPLE_OMP_RETURN statement if the return does not require
114 a thread synchronization via some sort of barrier. The exact barrier
115 that would otherwise be emitted is dependent on the OMP statement with
116 which this return is associated. */
117 GF_OMP_RETURN_NOWAIT = 1 << 0,
119 GF_OMP_SECTION_LAST = 1 << 0,
120 GF_OMP_ATOMIC_NEED_VALUE = 1 << 0,
121 GF_OMP_ATOMIC_SEQ_CST = 1 << 1,
122 GF_PREDICT_TAKEN = 1 << 15
125 /* Currently, there are only two types of gimple debug stmt. Others are
126 envisioned, for example, to enable the generation of is_stmt notes
127 in line number information, to mark sequence points, etc. This
128 subcode is to be used to tell them apart. */
129 enum gimple_debug_subcode {
130 GIMPLE_DEBUG_BIND = 0,
131 GIMPLE_DEBUG_SOURCE_BIND = 1
134 /* Masks for selecting a pass local flag (PLF) to work on. These
135 masks are used by gimple_set_plf and gimple_plf. */
136 enum plf_mask {
137 GF_PLF_1 = 1 << 0,
138 GF_PLF_2 = 1 << 1
141 /* Data structure definitions for GIMPLE tuples. NOTE: word markers
142 are for 64 bit hosts. */
144 struct GTY((desc ("gimple_statement_structure (&%h)"), tag ("GSS_BASE"),
145 chain_next ("%h.next"), variable_size))
146 gimple_statement_base
148 /* [ WORD 1 ]
149 Main identifying code for a tuple. */
150 ENUM_BITFIELD(gimple_code) code : 8;
152 /* Nonzero if a warning should not be emitted on this tuple. */
153 unsigned int no_warning : 1;
155 /* Nonzero if this tuple has been visited. Passes are responsible
156 for clearing this bit before using it. */
157 unsigned int visited : 1;
159 /* Nonzero if this tuple represents a non-temporal move. */
160 unsigned int nontemporal_move : 1;
162 /* Pass local flags. These flags are free for any pass to use as
163 they see fit. Passes should not assume that these flags contain
164 any useful value when the pass starts. Any initial state that
165 the pass requires should be set on entry to the pass. See
166 gimple_set_plf and gimple_plf for usage. */
167 unsigned int plf : 2;
169 /* Nonzero if this statement has been modified and needs to have its
170 operands rescanned. */
171 unsigned modified : 1;
173 /* Nonzero if this statement contains volatile operands. */
174 unsigned has_volatile_ops : 1;
176 /* Padding to get subcode to 16 bit alignment. */
177 unsigned pad : 1;
179 /* The SUBCODE field can be used for tuple-specific flags for tuples
180 that do not require subcodes. Note that SUBCODE should be at
181 least as wide as tree codes, as several tuples store tree codes
182 in there. */
183 unsigned int subcode : 16;
185 /* UID of this statement. This is used by passes that want to
186 assign IDs to statements. It must be assigned and used by each
187 pass. By default it should be assumed to contain garbage. */
188 unsigned uid;
190 /* [ WORD 2 ]
191 Locus information for debug info. */
192 location_t location;
194 /* Number of operands in this tuple. */
195 unsigned num_ops;
197 /* [ WORD 3 ]
198 Basic block holding this statement. */
199 basic_block bb;
201 /* [ WORD 4-5 ]
202 Linked lists of gimple statements. The next pointers form
203 a NULL terminated list, the prev pointers are a cyclic list.
204 A gimple statement is hence also a double-ended list of
205 statements, with the pointer itself being the first element,
206 and the prev pointer being the last. */
207 gimple next;
208 gimple GTY((skip)) prev;
212 /* Base structure for tuples with operands. */
214 /* This gimple subclass has no tag value. */
215 struct GTY(())
216 gimple_statement_with_ops_base : public gimple_statement_base
218 /* [ WORD 1-6 ] : base class */
220 /* [ WORD 7 ]
221 SSA operand vectors. NOTE: It should be possible to
222 amalgamate these vectors with the operand vector OP. However,
223 the SSA operand vectors are organized differently and contain
224 more information (like immediate use chaining). */
225 struct use_optype_d GTY((skip (""))) *use_ops;
229 /* Statements that take register operands. */
231 struct GTY((tag("GSS_WITH_OPS")))
232 gimple_statement_with_ops : public gimple_statement_with_ops_base
234 /* [ WORD 1-7 ] : base class */
236 /* [ WORD 8 ]
237 Operand vector. NOTE! This must always be the last field
238 of this structure. In particular, this means that this
239 structure cannot be embedded inside another one. */
240 tree GTY((length ("%h.num_ops"))) op[1];
244 /* Base for statements that take both memory and register operands. */
246 struct GTY((tag("GSS_WITH_MEM_OPS_BASE")))
247 gimple_statement_with_memory_ops_base : public gimple_statement_with_ops_base
249 /* [ WORD 1-7 ] : base class */
251 /* [ WORD 8-9 ]
252 Virtual operands for this statement. The GC will pick them
253 up via the ssa_names array. */
254 tree GTY((skip (""))) vdef;
255 tree GTY((skip (""))) vuse;
259 /* Statements that take both memory and register operands. */
261 struct GTY((tag("GSS_WITH_MEM_OPS")))
262 gimple_statement_with_memory_ops :
263 public gimple_statement_with_memory_ops_base
265 /* [ WORD 1-9 ] : base class */
267 /* [ WORD 10 ]
268 Operand vector. NOTE! This must always be the last field
269 of this structure. In particular, this means that this
270 structure cannot be embedded inside another one. */
271 tree GTY((length ("%h.num_ops"))) op[1];
275 /* Call statements that take both memory and register operands. */
277 struct GTY((tag("GSS_CALL")))
278 gcall : public gimple_statement_with_memory_ops_base
280 /* [ WORD 1-9 ] : base class */
282 /* [ WORD 10-13 ] */
283 struct pt_solution call_used;
284 struct pt_solution call_clobbered;
286 /* [ WORD 14 ] */
287 union GTY ((desc ("%1.subcode & GF_CALL_INTERNAL"))) {
288 tree GTY ((tag ("0"))) fntype;
289 enum internal_fn GTY ((tag ("GF_CALL_INTERNAL"))) internal_fn;
290 } u;
292 /* [ WORD 15 ]
293 Operand vector. NOTE! This must always be the last field
294 of this structure. In particular, this means that this
295 structure cannot be embedded inside another one. */
296 tree GTY((length ("%h.num_ops"))) op[1];
300 /* OMP statements. */
302 struct GTY((tag("GSS_OMP")))
303 gimple_statement_omp : public gimple_statement_base
305 /* [ WORD 1-6 ] : base class */
307 /* [ WORD 7 ] */
308 gimple_seq body;
312 /* GIMPLE_BIND */
314 struct GTY((tag("GSS_BIND")))
315 gbind : public gimple_statement_base
317 /* [ WORD 1-6 ] : base class */
319 /* [ WORD 7 ]
320 Variables declared in this scope. */
321 tree vars;
323 /* [ WORD 8 ]
324 This is different than the BLOCK field in gimple_statement_base,
325 which is analogous to TREE_BLOCK (i.e., the lexical block holding
326 this statement). This field is the equivalent of BIND_EXPR_BLOCK
327 in tree land (i.e., the lexical scope defined by this bind). See
328 gimple-low.c. */
329 tree block;
331 /* [ WORD 9 ] */
332 gimple_seq body;
336 /* GIMPLE_CATCH */
338 struct GTY((tag("GSS_CATCH")))
339 gcatch : public gimple_statement_base
341 /* [ WORD 1-6 ] : base class */
343 /* [ WORD 7 ] */
344 tree types;
346 /* [ WORD 8 ] */
347 gimple_seq handler;
351 /* GIMPLE_EH_FILTER */
353 struct GTY((tag("GSS_EH_FILTER")))
354 geh_filter : public gimple_statement_base
356 /* [ WORD 1-6 ] : base class */
358 /* [ WORD 7 ]
359 Filter types. */
360 tree types;
362 /* [ WORD 8 ]
363 Failure actions. */
364 gimple_seq failure;
367 /* GIMPLE_EH_ELSE */
369 struct GTY((tag("GSS_EH_ELSE")))
370 geh_else : public gimple_statement_base
372 /* [ WORD 1-6 ] : base class */
374 /* [ WORD 7,8 ] */
375 gimple_seq n_body, e_body;
378 /* GIMPLE_EH_MUST_NOT_THROW */
380 struct GTY((tag("GSS_EH_MNT")))
381 geh_mnt : public gimple_statement_base
383 /* [ WORD 1-6 ] : base class */
385 /* [ WORD 7 ] Abort function decl. */
386 tree fndecl;
389 /* GIMPLE_PHI */
391 struct GTY((tag("GSS_PHI")))
392 gphi : public gimple_statement_base
394 /* [ WORD 1-6 ] : base class */
396 /* [ WORD 7 ] */
397 unsigned capacity;
398 unsigned nargs;
400 /* [ WORD 8 ] */
401 tree result;
403 /* [ WORD 9 ] */
404 struct phi_arg_d GTY ((length ("%h.nargs"))) args[1];
408 /* GIMPLE_RESX, GIMPLE_EH_DISPATCH */
410 struct GTY((tag("GSS_EH_CTRL")))
411 gimple_statement_eh_ctrl : public gimple_statement_base
413 /* [ WORD 1-6 ] : base class */
415 /* [ WORD 7 ]
416 Exception region number. */
417 int region;
420 struct GTY((tag("GSS_EH_CTRL")))
421 gresx : public gimple_statement_eh_ctrl
423 /* No extra fields; adds invariant:
424 stmt->code == GIMPLE_RESX. */
427 struct GTY((tag("GSS_EH_CTRL")))
428 geh_dispatch : public gimple_statement_eh_ctrl
430 /* No extra fields; adds invariant:
431 stmt->code == GIMPLE_EH_DISPATH. */
435 /* GIMPLE_TRY */
437 struct GTY((tag("GSS_TRY")))
438 gtry : public gimple_statement_base
440 /* [ WORD 1-6 ] : base class */
442 /* [ WORD 7 ]
443 Expression to evaluate. */
444 gimple_seq eval;
446 /* [ WORD 8 ]
447 Cleanup expression. */
448 gimple_seq cleanup;
451 /* Kind of GIMPLE_TRY statements. */
452 enum gimple_try_flags
454 /* A try/catch. */
455 GIMPLE_TRY_CATCH = 1 << 0,
457 /* A try/finally. */
458 GIMPLE_TRY_FINALLY = 1 << 1,
459 GIMPLE_TRY_KIND = GIMPLE_TRY_CATCH | GIMPLE_TRY_FINALLY,
461 /* Analogous to TRY_CATCH_IS_CLEANUP. */
462 GIMPLE_TRY_CATCH_IS_CLEANUP = 1 << 2
465 /* GIMPLE_WITH_CLEANUP_EXPR */
467 struct GTY((tag("GSS_WCE")))
468 gimple_statement_wce : public gimple_statement_base
470 /* [ WORD 1-6 ] : base class */
472 /* Subcode: CLEANUP_EH_ONLY. True if the cleanup should only be
473 executed if an exception is thrown, not on normal exit of its
474 scope. This flag is analogous to the CLEANUP_EH_ONLY flag
475 in TARGET_EXPRs. */
477 /* [ WORD 7 ]
478 Cleanup expression. */
479 gimple_seq cleanup;
483 /* GIMPLE_ASM */
485 struct GTY((tag("GSS_ASM")))
486 gasm : public gimple_statement_with_memory_ops_base
488 /* [ WORD 1-9 ] : base class */
490 /* [ WORD 10 ]
491 __asm__ statement. */
492 const char *string;
494 /* [ WORD 11 ]
495 Number of inputs, outputs, clobbers, labels. */
496 unsigned char ni;
497 unsigned char no;
498 unsigned char nc;
499 unsigned char nl;
501 /* [ WORD 12 ]
502 Operand vector. NOTE! This must always be the last field
503 of this structure. In particular, this means that this
504 structure cannot be embedded inside another one. */
505 tree GTY((length ("%h.num_ops"))) op[1];
508 /* GIMPLE_OMP_CRITICAL */
510 struct GTY((tag("GSS_OMP_CRITICAL")))
511 gomp_critical : public gimple_statement_omp
513 /* [ WORD 1-7 ] : base class */
515 /* [ WORD 8 ]
516 Critical section name. */
517 tree name;
521 struct GTY(()) gimple_omp_for_iter {
522 /* Condition code. */
523 enum tree_code cond;
525 /* Index variable. */
526 tree index;
528 /* Initial value. */
529 tree initial;
531 /* Final value. */
532 tree final;
534 /* Increment. */
535 tree incr;
538 /* GIMPLE_OMP_FOR */
540 struct GTY((tag("GSS_OMP_FOR")))
541 gomp_for : public gimple_statement_omp
543 /* [ WORD 1-7 ] : base class */
545 /* [ WORD 8 ] */
546 tree clauses;
548 /* [ WORD 9 ]
549 Number of elements in iter array. */
550 size_t collapse;
552 /* [ WORD 10 ] */
553 struct gimple_omp_for_iter * GTY((length ("%h.collapse"))) iter;
555 /* [ WORD 11 ]
556 Pre-body evaluated before the loop body begins. */
557 gimple_seq pre_body;
561 /* GIMPLE_OMP_PARALLEL, GIMPLE_OMP_TARGET, GIMPLE_OMP_TASK */
563 struct GTY((tag("GSS_OMP_PARALLEL_LAYOUT")))
564 gimple_statement_omp_parallel_layout : public gimple_statement_omp
566 /* [ WORD 1-7 ] : base class */
568 /* [ WORD 8 ]
569 Clauses. */
570 tree clauses;
572 /* [ WORD 9 ]
573 Child function holding the body of the parallel region. */
574 tree child_fn;
576 /* [ WORD 10 ]
577 Shared data argument. */
578 tree data_arg;
581 /* GIMPLE_OMP_PARALLEL or GIMPLE_TASK */
582 struct GTY((tag("GSS_OMP_PARALLEL_LAYOUT")))
583 gimple_statement_omp_taskreg : public gimple_statement_omp_parallel_layout
585 /* No extra fields; adds invariant:
586 stmt->code == GIMPLE_OMP_PARALLEL
587 || stmt->code == GIMPLE_OMP_TASK. */
590 /* GIMPLE_OMP_PARALLEL */
591 struct GTY((tag("GSS_OMP_PARALLEL_LAYOUT")))
592 gomp_parallel : public gimple_statement_omp_taskreg
594 /* No extra fields; adds invariant:
595 stmt->code == GIMPLE_OMP_PARALLEL. */
598 /* GIMPLE_OMP_TARGET */
599 struct GTY((tag("GSS_OMP_PARALLEL_LAYOUT")))
600 gomp_target : public gimple_statement_omp_parallel_layout
602 /* No extra fields; adds invariant:
603 stmt->code == GIMPLE_OMP_TARGET. */
606 /* GIMPLE_OMP_TASK */
608 struct GTY((tag("GSS_OMP_TASK")))
609 gomp_task : public gimple_statement_omp_taskreg
611 /* [ WORD 1-10 ] : base class */
613 /* [ WORD 11 ]
614 Child function holding firstprivate initialization if needed. */
615 tree copy_fn;
617 /* [ WORD 12-13 ]
618 Size and alignment in bytes of the argument data block. */
619 tree arg_size;
620 tree arg_align;
624 /* GIMPLE_OMP_SECTION */
625 /* Uses struct gimple_statement_omp. */
628 /* GIMPLE_OMP_SECTIONS */
630 struct GTY((tag("GSS_OMP_SECTIONS")))
631 gomp_sections : public gimple_statement_omp
633 /* [ WORD 1-7 ] : base class */
635 /* [ WORD 8 ] */
636 tree clauses;
638 /* [ WORD 9 ]
639 The control variable used for deciding which of the sections to
640 execute. */
641 tree control;
644 /* GIMPLE_OMP_CONTINUE.
646 Note: This does not inherit from gimple_statement_omp, because we
647 do not need the body field. */
649 struct GTY((tag("GSS_OMP_CONTINUE")))
650 gomp_continue : public gimple_statement_base
652 /* [ WORD 1-6 ] : base class */
654 /* [ WORD 7 ] */
655 tree control_def;
657 /* [ WORD 8 ] */
658 tree control_use;
661 /* GIMPLE_OMP_SINGLE, GIMPLE_OMP_TEAMS */
663 struct GTY((tag("GSS_OMP_SINGLE_LAYOUT")))
664 gimple_statement_omp_single_layout : public gimple_statement_omp
666 /* [ WORD 1-7 ] : base class */
668 /* [ WORD 7 ] */
669 tree clauses;
672 struct GTY((tag("GSS_OMP_SINGLE_LAYOUT")))
673 gomp_single : public gimple_statement_omp_single_layout
675 /* No extra fields; adds invariant:
676 stmt->code == GIMPLE_OMP_SINGLE. */
679 struct GTY((tag("GSS_OMP_SINGLE_LAYOUT")))
680 gomp_teams : public gimple_statement_omp_single_layout
682 /* No extra fields; adds invariant:
683 stmt->code == GIMPLE_OMP_TEAMS. */
687 /* GIMPLE_OMP_ATOMIC_LOAD.
688 Note: This is based on gimple_statement_base, not g_s_omp, because g_s_omp
689 contains a sequence, which we don't need here. */
691 struct GTY((tag("GSS_OMP_ATOMIC_LOAD")))
692 gomp_atomic_load : public gimple_statement_base
694 /* [ WORD 1-6 ] : base class */
696 /* [ WORD 7-8 ] */
697 tree rhs, lhs;
700 /* GIMPLE_OMP_ATOMIC_STORE.
701 See note on GIMPLE_OMP_ATOMIC_LOAD. */
703 struct GTY((tag("GSS_OMP_ATOMIC_STORE_LAYOUT")))
704 gimple_statement_omp_atomic_store_layout : public gimple_statement_base
706 /* [ WORD 1-6 ] : base class */
708 /* [ WORD 7 ] */
709 tree val;
712 struct GTY((tag("GSS_OMP_ATOMIC_STORE_LAYOUT")))
713 gomp_atomic_store :
714 public gimple_statement_omp_atomic_store_layout
716 /* No extra fields; adds invariant:
717 stmt->code == GIMPLE_OMP_ATOMIC_STORE. */
720 struct GTY((tag("GSS_OMP_ATOMIC_STORE_LAYOUT")))
721 gimple_statement_omp_return :
722 public gimple_statement_omp_atomic_store_layout
724 /* No extra fields; adds invariant:
725 stmt->code == GIMPLE_OMP_RETURN. */
728 /* GIMPLE_TRANSACTION. */
730 /* Bits to be stored in the GIMPLE_TRANSACTION subcode. */
732 /* The __transaction_atomic was declared [[outer]] or it is
733 __transaction_relaxed. */
734 #define GTMA_IS_OUTER (1u << 0)
735 #define GTMA_IS_RELAXED (1u << 1)
736 #define GTMA_DECLARATION_MASK (GTMA_IS_OUTER | GTMA_IS_RELAXED)
738 /* The transaction is seen to not have an abort. */
739 #define GTMA_HAVE_ABORT (1u << 2)
740 /* The transaction is seen to have loads or stores. */
741 #define GTMA_HAVE_LOAD (1u << 3)
742 #define GTMA_HAVE_STORE (1u << 4)
743 /* The transaction MAY enter serial irrevocable mode in its dynamic scope. */
744 #define GTMA_MAY_ENTER_IRREVOCABLE (1u << 5)
745 /* The transaction WILL enter serial irrevocable mode.
746 An irrevocable block post-dominates the entire transaction, such
747 that all invocations of the transaction will go serial-irrevocable.
748 In such case, we don't bother instrumenting the transaction, and
749 tell the runtime that it should begin the transaction in
750 serial-irrevocable mode. */
751 #define GTMA_DOES_GO_IRREVOCABLE (1u << 6)
752 /* The transaction contains no instrumentation code whatsover, most
753 likely because it is guaranteed to go irrevocable upon entry. */
754 #define GTMA_HAS_NO_INSTRUMENTATION (1u << 7)
756 struct GTY((tag("GSS_TRANSACTION")))
757 gtransaction : public gimple_statement_with_memory_ops_base
759 /* [ WORD 1-9 ] : base class */
761 /* [ WORD 10 ] */
762 gimple_seq body;
764 /* [ WORD 11 ] */
765 tree label;
768 #define DEFGSSTRUCT(SYM, STRUCT, HAS_TREE_OP) SYM,
769 enum gimple_statement_structure_enum {
770 #include "gsstruct.def"
771 LAST_GSS_ENUM
773 #undef DEFGSSTRUCT
775 /* A statement with the invariant that
776 stmt->code == GIMPLE_COND
777 i.e. a conditional jump statement. */
779 struct GTY((tag("GSS_WITH_OPS")))
780 gcond : public gimple_statement_with_ops
782 /* no additional fields; this uses the layout for GSS_WITH_OPS. */
785 /* A statement with the invariant that
786 stmt->code == GIMPLE_DEBUG
787 i.e. a debug statement. */
789 struct GTY((tag("GSS_WITH_OPS")))
790 gdebug : public gimple_statement_with_ops
792 /* no additional fields; this uses the layout for GSS_WITH_OPS. */
795 /* A statement with the invariant that
796 stmt->code == GIMPLE_GOTO
797 i.e. a goto statement. */
799 struct GTY((tag("GSS_WITH_OPS")))
800 ggoto : public gimple_statement_with_ops
802 /* no additional fields; this uses the layout for GSS_WITH_OPS. */
805 /* A statement with the invariant that
806 stmt->code == GIMPLE_LABEL
807 i.e. a label statement. */
809 struct GTY((tag("GSS_WITH_OPS")))
810 glabel : public gimple_statement_with_ops
812 /* no additional fields; this uses the layout for GSS_WITH_OPS. */
815 /* A statement with the invariant that
816 stmt->code == GIMPLE_SWITCH
817 i.e. a switch statement. */
819 struct GTY((tag("GSS_WITH_OPS")))
820 gswitch : public gimple_statement_with_ops
822 /* no additional fields; this uses the layout for GSS_WITH_OPS. */
825 /* A statement with the invariant that
826 stmt->code == GIMPLE_ASSIGN
827 i.e. an assignment statement. */
829 struct GTY((tag("GSS_WITH_MEM_OPS")))
830 gassign : public gimple_statement_with_memory_ops
832 /* no additional fields; this uses the layout for GSS_WITH_MEM_OPS. */
835 /* A statement with the invariant that
836 stmt->code == GIMPLE_RETURN
837 i.e. a return statement. */
839 struct GTY((tag("GSS_WITH_MEM_OPS")))
840 greturn : public gimple_statement_with_memory_ops
842 /* no additional fields; this uses the layout for GSS_WITH_MEM_OPS. */
845 template <>
846 template <>
847 inline bool
848 is_a_helper <gasm *>::test (gimple gs)
850 return gs->code == GIMPLE_ASM;
853 template <>
854 template <>
855 inline bool
856 is_a_helper <gassign *>::test (gimple gs)
858 return gs->code == GIMPLE_ASSIGN;
861 template <>
862 template <>
863 inline bool
864 is_a_helper <gbind *>::test (gimple gs)
866 return gs->code == GIMPLE_BIND;
869 template <>
870 template <>
871 inline bool
872 is_a_helper <gcall *>::test (gimple gs)
874 return gs->code == GIMPLE_CALL;
877 template <>
878 template <>
879 inline bool
880 is_a_helper <gcatch *>::test (gimple gs)
882 return gs->code == GIMPLE_CATCH;
885 template <>
886 template <>
887 inline bool
888 is_a_helper <gcond *>::test (gimple gs)
890 return gs->code == GIMPLE_COND;
893 template <>
894 template <>
895 inline bool
896 is_a_helper <gdebug *>::test (gimple gs)
898 return gs->code == GIMPLE_DEBUG;
901 template <>
902 template <>
903 inline bool
904 is_a_helper <ggoto *>::test (gimple gs)
906 return gs->code == GIMPLE_GOTO;
909 template <>
910 template <>
911 inline bool
912 is_a_helper <glabel *>::test (gimple gs)
914 return gs->code == GIMPLE_LABEL;
917 template <>
918 template <>
919 inline bool
920 is_a_helper <gresx *>::test (gimple gs)
922 return gs->code == GIMPLE_RESX;
925 template <>
926 template <>
927 inline bool
928 is_a_helper <geh_dispatch *>::test (gimple gs)
930 return gs->code == GIMPLE_EH_DISPATCH;
933 template <>
934 template <>
935 inline bool
936 is_a_helper <geh_else *>::test (gimple gs)
938 return gs->code == GIMPLE_EH_ELSE;
941 template <>
942 template <>
943 inline bool
944 is_a_helper <geh_filter *>::test (gimple gs)
946 return gs->code == GIMPLE_EH_FILTER;
949 template <>
950 template <>
951 inline bool
952 is_a_helper <geh_mnt *>::test (gimple gs)
954 return gs->code == GIMPLE_EH_MUST_NOT_THROW;
957 template <>
958 template <>
959 inline bool
960 is_a_helper <gomp_atomic_load *>::test (gimple gs)
962 return gs->code == GIMPLE_OMP_ATOMIC_LOAD;
965 template <>
966 template <>
967 inline bool
968 is_a_helper <gomp_atomic_store *>::test (gimple gs)
970 return gs->code == GIMPLE_OMP_ATOMIC_STORE;
973 template <>
974 template <>
975 inline bool
976 is_a_helper <gimple_statement_omp_return *>::test (gimple gs)
978 return gs->code == GIMPLE_OMP_RETURN;
981 template <>
982 template <>
983 inline bool
984 is_a_helper <gomp_continue *>::test (gimple gs)
986 return gs->code == GIMPLE_OMP_CONTINUE;
989 template <>
990 template <>
991 inline bool
992 is_a_helper <gomp_critical *>::test (gimple gs)
994 return gs->code == GIMPLE_OMP_CRITICAL;
997 template <>
998 template <>
999 inline bool
1000 is_a_helper <gomp_for *>::test (gimple gs)
1002 return gs->code == GIMPLE_OMP_FOR;
1005 template <>
1006 template <>
1007 inline bool
1008 is_a_helper <gimple_statement_omp_taskreg *>::test (gimple gs)
1010 return gs->code == GIMPLE_OMP_PARALLEL || gs->code == GIMPLE_OMP_TASK;
1013 template <>
1014 template <>
1015 inline bool
1016 is_a_helper <gomp_parallel *>::test (gimple gs)
1018 return gs->code == GIMPLE_OMP_PARALLEL;
1021 template <>
1022 template <>
1023 inline bool
1024 is_a_helper <gomp_target *>::test (gimple gs)
1026 return gs->code == GIMPLE_OMP_TARGET;
1029 template <>
1030 template <>
1031 inline bool
1032 is_a_helper <gomp_sections *>::test (gimple gs)
1034 return gs->code == GIMPLE_OMP_SECTIONS;
1037 template <>
1038 template <>
1039 inline bool
1040 is_a_helper <gomp_single *>::test (gimple gs)
1042 return gs->code == GIMPLE_OMP_SINGLE;
1045 template <>
1046 template <>
1047 inline bool
1048 is_a_helper <gomp_teams *>::test (gimple gs)
1050 return gs->code == GIMPLE_OMP_TEAMS;
1053 template <>
1054 template <>
1055 inline bool
1056 is_a_helper <gomp_task *>::test (gimple gs)
1058 return gs->code == GIMPLE_OMP_TASK;
1061 template <>
1062 template <>
1063 inline bool
1064 is_a_helper <gphi *>::test (gimple gs)
1066 return gs->code == GIMPLE_PHI;
1069 template <>
1070 template <>
1071 inline bool
1072 is_a_helper <greturn *>::test (gimple gs)
1074 return gs->code == GIMPLE_RETURN;
1077 template <>
1078 template <>
1079 inline bool
1080 is_a_helper <gswitch *>::test (gimple gs)
1082 return gs->code == GIMPLE_SWITCH;
1085 template <>
1086 template <>
1087 inline bool
1088 is_a_helper <gtransaction *>::test (gimple gs)
1090 return gs->code == GIMPLE_TRANSACTION;
1093 template <>
1094 template <>
1095 inline bool
1096 is_a_helper <gtry *>::test (gimple gs)
1098 return gs->code == GIMPLE_TRY;
1101 template <>
1102 template <>
1103 inline bool
1104 is_a_helper <gimple_statement_wce *>::test (gimple gs)
1106 return gs->code == GIMPLE_WITH_CLEANUP_EXPR;
1109 template <>
1110 template <>
1111 inline bool
1112 is_a_helper <const gasm *>::test (const_gimple gs)
1114 return gs->code == GIMPLE_ASM;
1117 template <>
1118 template <>
1119 inline bool
1120 is_a_helper <const gbind *>::test (const_gimple gs)
1122 return gs->code == GIMPLE_BIND;
1125 template <>
1126 template <>
1127 inline bool
1128 is_a_helper <const gcall *>::test (const_gimple gs)
1130 return gs->code == GIMPLE_CALL;
1133 template <>
1134 template <>
1135 inline bool
1136 is_a_helper <const gcatch *>::test (const_gimple gs)
1138 return gs->code == GIMPLE_CATCH;
1141 template <>
1142 template <>
1143 inline bool
1144 is_a_helper <const gresx *>::test (const_gimple gs)
1146 return gs->code == GIMPLE_RESX;
1149 template <>
1150 template <>
1151 inline bool
1152 is_a_helper <const geh_dispatch *>::test (const_gimple gs)
1154 return gs->code == GIMPLE_EH_DISPATCH;
1157 template <>
1158 template <>
1159 inline bool
1160 is_a_helper <const geh_filter *>::test (const_gimple gs)
1162 return gs->code == GIMPLE_EH_FILTER;
1165 template <>
1166 template <>
1167 inline bool
1168 is_a_helper <const gomp_atomic_load *>::test (const_gimple gs)
1170 return gs->code == GIMPLE_OMP_ATOMIC_LOAD;
1173 template <>
1174 template <>
1175 inline bool
1176 is_a_helper <const gomp_atomic_store *>::test (const_gimple gs)
1178 return gs->code == GIMPLE_OMP_ATOMIC_STORE;
1181 template <>
1182 template <>
1183 inline bool
1184 is_a_helper <const gimple_statement_omp_return *>::test (const_gimple gs)
1186 return gs->code == GIMPLE_OMP_RETURN;
1189 template <>
1190 template <>
1191 inline bool
1192 is_a_helper <const gomp_continue *>::test (const_gimple gs)
1194 return gs->code == GIMPLE_OMP_CONTINUE;
1197 template <>
1198 template <>
1199 inline bool
1200 is_a_helper <const gomp_critical *>::test (const_gimple gs)
1202 return gs->code == GIMPLE_OMP_CRITICAL;
1205 template <>
1206 template <>
1207 inline bool
1208 is_a_helper <const gomp_for *>::test (const_gimple gs)
1210 return gs->code == GIMPLE_OMP_FOR;
1213 template <>
1214 template <>
1215 inline bool
1216 is_a_helper <const gimple_statement_omp_taskreg *>::test (const_gimple gs)
1218 return gs->code == GIMPLE_OMP_PARALLEL || gs->code == GIMPLE_OMP_TASK;
1221 template <>
1222 template <>
1223 inline bool
1224 is_a_helper <const gomp_parallel *>::test (const_gimple gs)
1226 return gs->code == GIMPLE_OMP_PARALLEL;
1229 template <>
1230 template <>
1231 inline bool
1232 is_a_helper <const gomp_target *>::test (const_gimple gs)
1234 return gs->code == GIMPLE_OMP_TARGET;
1237 template <>
1238 template <>
1239 inline bool
1240 is_a_helper <const gomp_sections *>::test (const_gimple gs)
1242 return gs->code == GIMPLE_OMP_SECTIONS;
1245 template <>
1246 template <>
1247 inline bool
1248 is_a_helper <const gomp_single *>::test (const_gimple gs)
1250 return gs->code == GIMPLE_OMP_SINGLE;
1253 template <>
1254 template <>
1255 inline bool
1256 is_a_helper <const gomp_teams *>::test (const_gimple gs)
1258 return gs->code == GIMPLE_OMP_TEAMS;
1261 template <>
1262 template <>
1263 inline bool
1264 is_a_helper <const gomp_task *>::test (const_gimple gs)
1266 return gs->code == GIMPLE_OMP_TASK;
1269 template <>
1270 template <>
1271 inline bool
1272 is_a_helper <const gphi *>::test (const_gimple gs)
1274 return gs->code == GIMPLE_PHI;
1277 template <>
1278 template <>
1279 inline bool
1280 is_a_helper <const gtransaction *>::test (const_gimple gs)
1282 return gs->code == GIMPLE_TRANSACTION;
1285 /* Offset in bytes to the location of the operand vector.
1286 Zero if there is no operand vector for this tuple structure. */
1287 extern size_t const gimple_ops_offset_[];
1289 /* Map GIMPLE codes to GSS codes. */
1290 extern enum gimple_statement_structure_enum const gss_for_code_[];
1292 /* This variable holds the currently expanded gimple statement for purposes
1293 of comminucating the profile info to the builtin expanders. */
1294 extern gimple currently_expanding_gimple_stmt;
1296 #define gimple_alloc(c, n) gimple_alloc_stat (c, n MEM_STAT_INFO)
1297 gimple gimple_alloc_stat (enum gimple_code, unsigned MEM_STAT_DECL);
1298 greturn *gimple_build_return (tree);
1299 void gimple_call_reset_alias_info (gcall *);
1300 gcall *gimple_build_call_vec (tree, vec<tree> );
1301 gcall *gimple_build_call (tree, unsigned, ...);
1302 gcall *gimple_build_call_valist (tree, unsigned, va_list);
1303 gcall *gimple_build_call_internal (enum internal_fn, unsigned, ...);
1304 gcall *gimple_build_call_internal_vec (enum internal_fn, vec<tree> );
1305 gcall *gimple_build_call_from_tree (tree);
1306 gassign *gimple_build_assign (tree, tree CXX_MEM_STAT_INFO);
1307 gassign *gimple_build_assign (tree, enum tree_code,
1308 tree, tree, tree CXX_MEM_STAT_INFO);
1309 gassign *gimple_build_assign (tree, enum tree_code,
1310 tree, tree CXX_MEM_STAT_INFO);
1311 gassign *gimple_build_assign (tree, enum tree_code, tree CXX_MEM_STAT_INFO);
1312 gcond *gimple_build_cond (enum tree_code, tree, tree, tree, tree);
1313 gcond *gimple_build_cond_from_tree (tree, tree, tree);
1314 void gimple_cond_set_condition_from_tree (gcond *, tree);
1315 glabel *gimple_build_label (tree label);
1316 ggoto *gimple_build_goto (tree dest);
1317 gimple gimple_build_nop (void);
1318 gbind *gimple_build_bind (tree, gimple_seq, tree);
1319 gasm *gimple_build_asm_vec (const char *, vec<tree, va_gc> *,
1320 vec<tree, va_gc> *, vec<tree, va_gc> *,
1321 vec<tree, va_gc> *);
1322 gcatch *gimple_build_catch (tree, gimple_seq);
1323 geh_filter *gimple_build_eh_filter (tree, gimple_seq);
1324 geh_mnt *gimple_build_eh_must_not_throw (tree);
1325 geh_else *gimple_build_eh_else (gimple_seq, gimple_seq);
1326 gtry *gimple_build_try (gimple_seq, gimple_seq,
1327 enum gimple_try_flags);
1328 gimple gimple_build_wce (gimple_seq);
1329 gresx *gimple_build_resx (int);
1330 gswitch *gimple_build_switch_nlabels (unsigned, tree, tree);
1331 gswitch *gimple_build_switch (tree, tree, vec<tree> );
1332 geh_dispatch *gimple_build_eh_dispatch (int);
1333 gdebug *gimple_build_debug_bind_stat (tree, tree, gimple MEM_STAT_DECL);
1334 #define gimple_build_debug_bind(var,val,stmt) \
1335 gimple_build_debug_bind_stat ((var), (val), (stmt) MEM_STAT_INFO)
1336 gdebug *gimple_build_debug_source_bind_stat (tree, tree, gimple MEM_STAT_DECL);
1337 #define gimple_build_debug_source_bind(var,val,stmt) \
1338 gimple_build_debug_source_bind_stat ((var), (val), (stmt) MEM_STAT_INFO)
1339 gomp_critical *gimple_build_omp_critical (gimple_seq, tree);
1340 gomp_for *gimple_build_omp_for (gimple_seq, int, tree, size_t, gimple_seq);
1341 gomp_parallel *gimple_build_omp_parallel (gimple_seq, tree, tree, tree);
1342 gomp_task *gimple_build_omp_task (gimple_seq, tree, tree, tree, tree,
1343 tree, tree);
1344 gimple gimple_build_omp_section (gimple_seq);
1345 gimple gimple_build_omp_master (gimple_seq);
1346 gimple gimple_build_omp_taskgroup (gimple_seq);
1347 gomp_continue *gimple_build_omp_continue (tree, tree);
1348 gimple gimple_build_omp_ordered (gimple_seq);
1349 gimple gimple_build_omp_return (bool);
1350 gomp_sections *gimple_build_omp_sections (gimple_seq, tree);
1351 gimple gimple_build_omp_sections_switch (void);
1352 gomp_single *gimple_build_omp_single (gimple_seq, tree);
1353 gomp_target *gimple_build_omp_target (gimple_seq, int, tree);
1354 gomp_teams *gimple_build_omp_teams (gimple_seq, tree);
1355 gomp_atomic_load *gimple_build_omp_atomic_load (tree, tree);
1356 gomp_atomic_store *gimple_build_omp_atomic_store (tree);
1357 gtransaction *gimple_build_transaction (gimple_seq, tree);
1358 gimple gimple_build_predict (enum br_predictor, enum prediction);
1359 extern void gimple_seq_add_stmt (gimple_seq *, gimple);
1360 extern void gimple_seq_add_stmt_without_update (gimple_seq *, gimple);
1361 void gimple_seq_add_seq (gimple_seq *, gimple_seq);
1362 void gimple_seq_add_seq_without_update (gimple_seq *, gimple_seq);
1363 extern void annotate_all_with_location_after (gimple_seq, gimple_stmt_iterator,
1364 location_t);
1365 extern void annotate_all_with_location (gimple_seq, location_t);
1366 bool empty_body_p (gimple_seq);
1367 gimple_seq gimple_seq_copy (gimple_seq);
1368 bool gimple_call_same_target_p (const_gimple, const_gimple);
1369 int gimple_call_flags (const_gimple);
1370 int gimple_call_arg_flags (const gcall *, unsigned);
1371 int gimple_call_return_flags (const gcall *);
1372 bool gimple_assign_copy_p (gimple);
1373 bool gimple_assign_ssa_name_copy_p (gimple);
1374 bool gimple_assign_unary_nop_p (gimple);
1375 void gimple_set_bb (gimple, basic_block);
1376 void gimple_assign_set_rhs_from_tree (gimple_stmt_iterator *, tree);
1377 void gimple_assign_set_rhs_with_ops (gimple_stmt_iterator *, enum tree_code,
1378 tree, tree, tree);
1379 tree gimple_get_lhs (const_gimple);
1380 void gimple_set_lhs (gimple, tree);
1381 gimple gimple_copy (gimple);
1382 bool gimple_has_side_effects (const_gimple);
1383 bool gimple_could_trap_p_1 (gimple, bool, bool);
1384 bool gimple_could_trap_p (gimple);
1385 bool gimple_assign_rhs_could_trap_p (gimple);
1386 extern void dump_gimple_statistics (void);
1387 unsigned get_gimple_rhs_num_ops (enum tree_code);
1388 extern tree canonicalize_cond_expr_cond (tree);
1389 gcall *gimple_call_copy_skip_args (gcall *, bitmap);
1390 extern bool gimple_compare_field_offset (tree, tree);
1391 extern tree gimple_unsigned_type (tree);
1392 extern tree gimple_signed_type (tree);
1393 extern alias_set_type gimple_get_alias_set (tree);
1394 extern bool gimple_ior_addresses_taken (bitmap, gimple);
1395 extern bool gimple_builtin_call_types_compatible_p (const_gimple, tree);
1396 extern bool gimple_call_builtin_p (const_gimple);
1397 extern bool gimple_call_builtin_p (const_gimple, enum built_in_class);
1398 extern bool gimple_call_builtin_p (const_gimple, enum built_in_function);
1399 extern bool gimple_asm_clobbers_memory_p (const gasm *);
1400 extern void dump_decl_set (FILE *, bitmap);
1401 extern bool nonfreeing_call_p (gimple);
1402 extern bool infer_nonnull_range (gimple, tree, bool, bool);
1403 extern void sort_case_labels (vec<tree>);
1404 extern void preprocess_case_label_vec_for_gimple (vec<tree>, tree, tree *);
1405 extern void gimple_seq_set_location (gimple_seq, location_t);
1406 extern void gimple_seq_discard (gimple_seq);
1407 extern void maybe_remove_unused_call_args (struct function *, gimple);
1409 /* Formal (expression) temporary table handling: multiple occurrences of
1410 the same scalar expression are evaluated into the same temporary. */
1412 typedef struct gimple_temp_hash_elt
1414 tree val; /* Key */
1415 tree temp; /* Value */
1416 } elt_t;
1418 /* Get the number of the next statement uid to be allocated. */
1419 static inline unsigned int
1420 gimple_stmt_max_uid (struct function *fn)
1422 return fn->last_stmt_uid;
1425 /* Set the number of the next statement uid to be allocated. */
1426 static inline void
1427 set_gimple_stmt_max_uid (struct function *fn, unsigned int maxid)
1429 fn->last_stmt_uid = maxid;
1432 /* Set the number of the next statement uid to be allocated. */
1433 static inline unsigned int
1434 inc_gimple_stmt_max_uid (struct function *fn)
1436 return fn->last_stmt_uid++;
1439 /* Return the first node in GIMPLE sequence S. */
1441 static inline gimple_seq_node
1442 gimple_seq_first (gimple_seq s)
1444 return s;
1448 /* Return the first statement in GIMPLE sequence S. */
1450 static inline gimple
1451 gimple_seq_first_stmt (gimple_seq s)
1453 gimple_seq_node n = gimple_seq_first (s);
1454 return n;
1457 /* Return the first statement in GIMPLE sequence S as a gbind *,
1458 verifying that it has code GIMPLE_BIND in a checked build. */
1460 static inline gbind *
1461 gimple_seq_first_stmt_as_a_bind (gimple_seq s)
1463 gimple_seq_node n = gimple_seq_first (s);
1464 return as_a <gbind *> (n);
1468 /* Return the last node in GIMPLE sequence S. */
1470 static inline gimple_seq_node
1471 gimple_seq_last (gimple_seq s)
1473 return s ? s->prev : NULL;
1477 /* Return the last statement in GIMPLE sequence S. */
1479 static inline gimple
1480 gimple_seq_last_stmt (gimple_seq s)
1482 gimple_seq_node n = gimple_seq_last (s);
1483 return n;
1487 /* Set the last node in GIMPLE sequence *PS to LAST. */
1489 static inline void
1490 gimple_seq_set_last (gimple_seq *ps, gimple_seq_node last)
1492 (*ps)->prev = last;
1496 /* Set the first node in GIMPLE sequence *PS to FIRST. */
1498 static inline void
1499 gimple_seq_set_first (gimple_seq *ps, gimple_seq_node first)
1501 *ps = first;
1505 /* Return true if GIMPLE sequence S is empty. */
1507 static inline bool
1508 gimple_seq_empty_p (gimple_seq s)
1510 return s == NULL;
1513 /* Allocate a new sequence and initialize its first element with STMT. */
1515 static inline gimple_seq
1516 gimple_seq_alloc_with_stmt (gimple stmt)
1518 gimple_seq seq = NULL;
1519 gimple_seq_add_stmt (&seq, stmt);
1520 return seq;
1524 /* Returns the sequence of statements in BB. */
1526 static inline gimple_seq
1527 bb_seq (const_basic_block bb)
1529 return (!(bb->flags & BB_RTL)) ? bb->il.gimple.seq : NULL;
1532 static inline gimple_seq *
1533 bb_seq_addr (basic_block bb)
1535 return (!(bb->flags & BB_RTL)) ? &bb->il.gimple.seq : NULL;
1538 /* Sets the sequence of statements in BB to SEQ. */
1540 static inline void
1541 set_bb_seq (basic_block bb, gimple_seq seq)
1543 gcc_checking_assert (!(bb->flags & BB_RTL));
1544 bb->il.gimple.seq = seq;
1548 /* Return the code for GIMPLE statement G. */
1550 static inline enum gimple_code
1551 gimple_code (const_gimple g)
1553 return g->code;
1557 /* Return the GSS code used by a GIMPLE code. */
1559 static inline enum gimple_statement_structure_enum
1560 gss_for_code (enum gimple_code code)
1562 gcc_gimple_checking_assert ((unsigned int)code < LAST_AND_UNUSED_GIMPLE_CODE);
1563 return gss_for_code_[code];
1567 /* Return which GSS code is used by GS. */
1569 static inline enum gimple_statement_structure_enum
1570 gimple_statement_structure (gimple gs)
1572 return gss_for_code (gimple_code (gs));
1576 /* Return true if statement G has sub-statements. This is only true for
1577 High GIMPLE statements. */
1579 static inline bool
1580 gimple_has_substatements (gimple g)
1582 switch (gimple_code (g))
1584 case GIMPLE_BIND:
1585 case GIMPLE_CATCH:
1586 case GIMPLE_EH_FILTER:
1587 case GIMPLE_EH_ELSE:
1588 case GIMPLE_TRY:
1589 case GIMPLE_OMP_FOR:
1590 case GIMPLE_OMP_MASTER:
1591 case GIMPLE_OMP_TASKGROUP:
1592 case GIMPLE_OMP_ORDERED:
1593 case GIMPLE_OMP_SECTION:
1594 case GIMPLE_OMP_PARALLEL:
1595 case GIMPLE_OMP_TASK:
1596 case GIMPLE_OMP_SECTIONS:
1597 case GIMPLE_OMP_SINGLE:
1598 case GIMPLE_OMP_TARGET:
1599 case GIMPLE_OMP_TEAMS:
1600 case GIMPLE_OMP_CRITICAL:
1601 case GIMPLE_WITH_CLEANUP_EXPR:
1602 case GIMPLE_TRANSACTION:
1603 return true;
1605 default:
1606 return false;
1611 /* Return the basic block holding statement G. */
1613 static inline basic_block
1614 gimple_bb (const_gimple g)
1616 return g->bb;
1620 /* Return the lexical scope block holding statement G. */
1622 static inline tree
1623 gimple_block (const_gimple g)
1625 return LOCATION_BLOCK (g->location);
1629 /* Set BLOCK to be the lexical scope block holding statement G. */
1631 static inline void
1632 gimple_set_block (gimple g, tree block)
1634 if (block)
1635 g->location =
1636 COMBINE_LOCATION_DATA (line_table, g->location, block);
1637 else
1638 g->location = LOCATION_LOCUS (g->location);
1642 /* Return location information for statement G. */
1644 static inline location_t
1645 gimple_location (const_gimple g)
1647 return g->location;
1650 /* Return location information for statement G if g is not NULL.
1651 Otherwise, UNKNOWN_LOCATION is returned. */
1653 static inline location_t
1654 gimple_location_safe (const_gimple g)
1656 return g ? gimple_location (g) : UNKNOWN_LOCATION;
1659 /* Return pointer to location information for statement G. */
1661 static inline const location_t *
1662 gimple_location_ptr (const_gimple g)
1664 return &g->location;
1668 /* Set location information for statement G. */
1670 static inline void
1671 gimple_set_location (gimple g, location_t location)
1673 g->location = location;
1677 /* Return true if G contains location information. */
1679 static inline bool
1680 gimple_has_location (const_gimple g)
1682 return LOCATION_LOCUS (gimple_location (g)) != UNKNOWN_LOCATION;
1686 /* Return the file name of the location of STMT. */
1688 static inline const char *
1689 gimple_filename (const_gimple stmt)
1691 return LOCATION_FILE (gimple_location (stmt));
1695 /* Return the line number of the location of STMT. */
1697 static inline int
1698 gimple_lineno (const_gimple stmt)
1700 return LOCATION_LINE (gimple_location (stmt));
1704 /* Determine whether SEQ is a singleton. */
1706 static inline bool
1707 gimple_seq_singleton_p (gimple_seq seq)
1709 return ((gimple_seq_first (seq) != NULL)
1710 && (gimple_seq_first (seq) == gimple_seq_last (seq)));
1713 /* Return true if no warnings should be emitted for statement STMT. */
1715 static inline bool
1716 gimple_no_warning_p (const_gimple stmt)
1718 return stmt->no_warning;
1721 /* Set the no_warning flag of STMT to NO_WARNING. */
1723 static inline void
1724 gimple_set_no_warning (gimple stmt, bool no_warning)
1726 stmt->no_warning = (unsigned) no_warning;
1729 /* Set the visited status on statement STMT to VISITED_P.
1731 Please note that this 'visited' property of the gimple statement is
1732 supposed to be undefined at pass boundaries. This means that a
1733 given pass should not assume it contains any useful value when the
1734 pass starts and thus can set it to any value it sees fit.
1736 You can learn more about the visited property of the gimple
1737 statement by reading the comments of the 'visited' data member of
1738 struct gimple statement_base.
1741 static inline void
1742 gimple_set_visited (gimple stmt, bool visited_p)
1744 stmt->visited = (unsigned) visited_p;
1748 /* Return the visited status for statement STMT.
1750 Please note that this 'visited' property of the gimple statement is
1751 supposed to be undefined at pass boundaries. This means that a
1752 given pass should not assume it contains any useful value when the
1753 pass starts and thus can set it to any value it sees fit.
1755 You can learn more about the visited property of the gimple
1756 statement by reading the comments of the 'visited' data member of
1757 struct gimple statement_base. */
1759 static inline bool
1760 gimple_visited_p (gimple stmt)
1762 return stmt->visited;
1766 /* Set pass local flag PLF on statement STMT to VAL_P.
1768 Please note that this PLF property of the gimple statement is
1769 supposed to be undefined at pass boundaries. This means that a
1770 given pass should not assume it contains any useful value when the
1771 pass starts and thus can set it to any value it sees fit.
1773 You can learn more about the PLF property by reading the comment of
1774 the 'plf' data member of struct gimple_statement_structure. */
1776 static inline void
1777 gimple_set_plf (gimple stmt, enum plf_mask plf, bool val_p)
1779 if (val_p)
1780 stmt->plf |= (unsigned int) plf;
1781 else
1782 stmt->plf &= ~((unsigned int) plf);
1786 /* Return the value of pass local flag PLF on statement STMT.
1788 Please note that this 'plf' property of the gimple statement is
1789 supposed to be undefined at pass boundaries. This means that a
1790 given pass should not assume it contains any useful value when the
1791 pass starts and thus can set it to any value it sees fit.
1793 You can learn more about the plf property by reading the comment of
1794 the 'plf' data member of struct gimple_statement_structure. */
1796 static inline unsigned int
1797 gimple_plf (gimple stmt, enum plf_mask plf)
1799 return stmt->plf & ((unsigned int) plf);
1803 /* Set the UID of statement.
1805 Please note that this UID property is supposed to be undefined at
1806 pass boundaries. This means that a given pass should not assume it
1807 contains any useful value when the pass starts and thus can set it
1808 to any value it sees fit. */
1810 static inline void
1811 gimple_set_uid (gimple g, unsigned uid)
1813 g->uid = uid;
1817 /* Return the UID of statement.
1819 Please note that this UID property is supposed to be undefined at
1820 pass boundaries. This means that a given pass should not assume it
1821 contains any useful value when the pass starts and thus can set it
1822 to any value it sees fit. */
1824 static inline unsigned
1825 gimple_uid (const_gimple g)
1827 return g->uid;
1831 /* Make statement G a singleton sequence. */
1833 static inline void
1834 gimple_init_singleton (gimple g)
1836 g->next = NULL;
1837 g->prev = g;
1841 /* Return true if GIMPLE statement G has register or memory operands. */
1843 static inline bool
1844 gimple_has_ops (const_gimple g)
1846 return gimple_code (g) >= GIMPLE_COND && gimple_code (g) <= GIMPLE_RETURN;
1849 template <>
1850 template <>
1851 inline bool
1852 is_a_helper <const gimple_statement_with_ops *>::test (const_gimple gs)
1854 return gimple_has_ops (gs);
1857 template <>
1858 template <>
1859 inline bool
1860 is_a_helper <gimple_statement_with_ops *>::test (gimple gs)
1862 return gimple_has_ops (gs);
1865 /* Return true if GIMPLE statement G has memory operands. */
1867 static inline bool
1868 gimple_has_mem_ops (const_gimple g)
1870 return gimple_code (g) >= GIMPLE_ASSIGN && gimple_code (g) <= GIMPLE_RETURN;
1873 template <>
1874 template <>
1875 inline bool
1876 is_a_helper <const gimple_statement_with_memory_ops *>::test (const_gimple gs)
1878 return gimple_has_mem_ops (gs);
1881 template <>
1882 template <>
1883 inline bool
1884 is_a_helper <gimple_statement_with_memory_ops *>::test (gimple gs)
1886 return gimple_has_mem_ops (gs);
1889 /* Return the set of USE operands for statement G. */
1891 static inline struct use_optype_d *
1892 gimple_use_ops (const_gimple g)
1894 const gimple_statement_with_ops *ops_stmt =
1895 dyn_cast <const gimple_statement_with_ops *> (g);
1896 if (!ops_stmt)
1897 return NULL;
1898 return ops_stmt->use_ops;
1902 /* Set USE to be the set of USE operands for statement G. */
1904 static inline void
1905 gimple_set_use_ops (gimple g, struct use_optype_d *use)
1907 gimple_statement_with_ops *ops_stmt =
1908 as_a <gimple_statement_with_ops *> (g);
1909 ops_stmt->use_ops = use;
1913 /* Return the single VUSE operand of the statement G. */
1915 static inline tree
1916 gimple_vuse (const_gimple g)
1918 const gimple_statement_with_memory_ops *mem_ops_stmt =
1919 dyn_cast <const gimple_statement_with_memory_ops *> (g);
1920 if (!mem_ops_stmt)
1921 return NULL_TREE;
1922 return mem_ops_stmt->vuse;
1925 /* Return the single VDEF operand of the statement G. */
1927 static inline tree
1928 gimple_vdef (const_gimple g)
1930 const gimple_statement_with_memory_ops *mem_ops_stmt =
1931 dyn_cast <const gimple_statement_with_memory_ops *> (g);
1932 if (!mem_ops_stmt)
1933 return NULL_TREE;
1934 return mem_ops_stmt->vdef;
1937 /* Return the single VUSE operand of the statement G. */
1939 static inline tree *
1940 gimple_vuse_ptr (gimple g)
1942 gimple_statement_with_memory_ops *mem_ops_stmt =
1943 dyn_cast <gimple_statement_with_memory_ops *> (g);
1944 if (!mem_ops_stmt)
1945 return NULL;
1946 return &mem_ops_stmt->vuse;
1949 /* Return the single VDEF operand of the statement G. */
1951 static inline tree *
1952 gimple_vdef_ptr (gimple g)
1954 gimple_statement_with_memory_ops *mem_ops_stmt =
1955 dyn_cast <gimple_statement_with_memory_ops *> (g);
1956 if (!mem_ops_stmt)
1957 return NULL;
1958 return &mem_ops_stmt->vdef;
1961 /* Set the single VUSE operand of the statement G. */
1963 static inline void
1964 gimple_set_vuse (gimple g, tree vuse)
1966 gimple_statement_with_memory_ops *mem_ops_stmt =
1967 as_a <gimple_statement_with_memory_ops *> (g);
1968 mem_ops_stmt->vuse = vuse;
1971 /* Set the single VDEF operand of the statement G. */
1973 static inline void
1974 gimple_set_vdef (gimple g, tree vdef)
1976 gimple_statement_with_memory_ops *mem_ops_stmt =
1977 as_a <gimple_statement_with_memory_ops *> (g);
1978 mem_ops_stmt->vdef = vdef;
1982 /* Return true if statement G has operands and the modified field has
1983 been set. */
1985 static inline bool
1986 gimple_modified_p (const_gimple g)
1988 return (gimple_has_ops (g)) ? (bool) g->modified : false;
1992 /* Set the MODIFIED flag to MODIFIEDP, iff the gimple statement G has
1993 a MODIFIED field. */
1995 static inline void
1996 gimple_set_modified (gimple s, bool modifiedp)
1998 if (gimple_has_ops (s))
1999 s->modified = (unsigned) modifiedp;
2003 /* Return the tree code for the expression computed by STMT. This is
2004 only valid for GIMPLE_COND, GIMPLE_CALL and GIMPLE_ASSIGN. For
2005 GIMPLE_CALL, return CALL_EXPR as the expression code for
2006 consistency. This is useful when the caller needs to deal with the
2007 three kinds of computation that GIMPLE supports. */
2009 static inline enum tree_code
2010 gimple_expr_code (const_gimple stmt)
2012 enum gimple_code code = gimple_code (stmt);
2013 if (code == GIMPLE_ASSIGN || code == GIMPLE_COND)
2014 return (enum tree_code) stmt->subcode;
2015 else
2017 gcc_gimple_checking_assert (code == GIMPLE_CALL);
2018 return CALL_EXPR;
2023 /* Return true if statement STMT contains volatile operands. */
2025 static inline bool
2026 gimple_has_volatile_ops (const_gimple stmt)
2028 if (gimple_has_mem_ops (stmt))
2029 return stmt->has_volatile_ops;
2030 else
2031 return false;
2035 /* Set the HAS_VOLATILE_OPS flag to VOLATILEP. */
2037 static inline void
2038 gimple_set_has_volatile_ops (gimple stmt, bool volatilep)
2040 if (gimple_has_mem_ops (stmt))
2041 stmt->has_volatile_ops = (unsigned) volatilep;
2044 /* Return true if STMT is in a transaction. */
2046 static inline bool
2047 gimple_in_transaction (gimple stmt)
2049 return bb_in_transaction (gimple_bb (stmt));
2052 /* Return true if statement STMT may access memory. */
2054 static inline bool
2055 gimple_references_memory_p (gimple stmt)
2057 return gimple_has_mem_ops (stmt) && gimple_vuse (stmt);
2061 /* Return the subcode for OMP statement S. */
2063 static inline unsigned
2064 gimple_omp_subcode (const_gimple s)
2066 gcc_gimple_checking_assert (gimple_code (s) >= GIMPLE_OMP_ATOMIC_LOAD
2067 && gimple_code (s) <= GIMPLE_OMP_TEAMS);
2068 return s->subcode;
2071 /* Set the subcode for OMP statement S to SUBCODE. */
2073 static inline void
2074 gimple_omp_set_subcode (gimple s, unsigned int subcode)
2076 /* We only have 16 bits for the subcode. Assert that we are not
2077 overflowing it. */
2078 gcc_gimple_checking_assert (subcode < (1 << 16));
2079 s->subcode = subcode;
2082 /* Set the nowait flag on OMP_RETURN statement S. */
2084 static inline void
2085 gimple_omp_return_set_nowait (gimple s)
2087 GIMPLE_CHECK (s, GIMPLE_OMP_RETURN);
2088 s->subcode |= GF_OMP_RETURN_NOWAIT;
2092 /* Return true if OMP return statement G has the GF_OMP_RETURN_NOWAIT
2093 flag set. */
2095 static inline bool
2096 gimple_omp_return_nowait_p (const_gimple g)
2098 GIMPLE_CHECK (g, GIMPLE_OMP_RETURN);
2099 return (gimple_omp_subcode (g) & GF_OMP_RETURN_NOWAIT) != 0;
2103 /* Set the LHS of OMP return. */
2105 static inline void
2106 gimple_omp_return_set_lhs (gimple g, tree lhs)
2108 gimple_statement_omp_return *omp_return_stmt =
2109 as_a <gimple_statement_omp_return *> (g);
2110 omp_return_stmt->val = lhs;
2114 /* Get the LHS of OMP return. */
2116 static inline tree
2117 gimple_omp_return_lhs (const_gimple g)
2119 const gimple_statement_omp_return *omp_return_stmt =
2120 as_a <const gimple_statement_omp_return *> (g);
2121 return omp_return_stmt->val;
2125 /* Return a pointer to the LHS of OMP return. */
2127 static inline tree *
2128 gimple_omp_return_lhs_ptr (gimple g)
2130 gimple_statement_omp_return *omp_return_stmt =
2131 as_a <gimple_statement_omp_return *> (g);
2132 return &omp_return_stmt->val;
2136 /* Return true if OMP section statement G has the GF_OMP_SECTION_LAST
2137 flag set. */
2139 static inline bool
2140 gimple_omp_section_last_p (const_gimple g)
2142 GIMPLE_CHECK (g, GIMPLE_OMP_SECTION);
2143 return (gimple_omp_subcode (g) & GF_OMP_SECTION_LAST) != 0;
2147 /* Set the GF_OMP_SECTION_LAST flag on G. */
2149 static inline void
2150 gimple_omp_section_set_last (gimple g)
2152 GIMPLE_CHECK (g, GIMPLE_OMP_SECTION);
2153 g->subcode |= GF_OMP_SECTION_LAST;
2157 /* Return true if OMP parallel statement G has the
2158 GF_OMP_PARALLEL_COMBINED flag set. */
2160 static inline bool
2161 gimple_omp_parallel_combined_p (const_gimple g)
2163 GIMPLE_CHECK (g, GIMPLE_OMP_PARALLEL);
2164 return (gimple_omp_subcode (g) & GF_OMP_PARALLEL_COMBINED) != 0;
2168 /* Set the GF_OMP_PARALLEL_COMBINED field in G depending on the boolean
2169 value of COMBINED_P. */
2171 static inline void
2172 gimple_omp_parallel_set_combined_p (gimple g, bool combined_p)
2174 GIMPLE_CHECK (g, GIMPLE_OMP_PARALLEL);
2175 if (combined_p)
2176 g->subcode |= GF_OMP_PARALLEL_COMBINED;
2177 else
2178 g->subcode &= ~GF_OMP_PARALLEL_COMBINED;
2182 /* Return true if OMP atomic load/store statement G has the
2183 GF_OMP_ATOMIC_NEED_VALUE flag set. */
2185 static inline bool
2186 gimple_omp_atomic_need_value_p (const_gimple g)
2188 if (gimple_code (g) != GIMPLE_OMP_ATOMIC_LOAD)
2189 GIMPLE_CHECK (g, GIMPLE_OMP_ATOMIC_STORE);
2190 return (gimple_omp_subcode (g) & GF_OMP_ATOMIC_NEED_VALUE) != 0;
2194 /* Set the GF_OMP_ATOMIC_NEED_VALUE flag on G. */
2196 static inline void
2197 gimple_omp_atomic_set_need_value (gimple g)
2199 if (gimple_code (g) != GIMPLE_OMP_ATOMIC_LOAD)
2200 GIMPLE_CHECK (g, GIMPLE_OMP_ATOMIC_STORE);
2201 g->subcode |= GF_OMP_ATOMIC_NEED_VALUE;
2205 /* Return true if OMP atomic load/store statement G has the
2206 GF_OMP_ATOMIC_SEQ_CST flag set. */
2208 static inline bool
2209 gimple_omp_atomic_seq_cst_p (const_gimple g)
2211 if (gimple_code (g) != GIMPLE_OMP_ATOMIC_LOAD)
2212 GIMPLE_CHECK (g, GIMPLE_OMP_ATOMIC_STORE);
2213 return (gimple_omp_subcode (g) & GF_OMP_ATOMIC_SEQ_CST) != 0;
2217 /* Set the GF_OMP_ATOMIC_SEQ_CST flag on G. */
2219 static inline void
2220 gimple_omp_atomic_set_seq_cst (gimple g)
2222 if (gimple_code (g) != GIMPLE_OMP_ATOMIC_LOAD)
2223 GIMPLE_CHECK (g, GIMPLE_OMP_ATOMIC_STORE);
2224 g->subcode |= GF_OMP_ATOMIC_SEQ_CST;
2228 /* Return the number of operands for statement GS. */
2230 static inline unsigned
2231 gimple_num_ops (const_gimple gs)
2233 return gs->num_ops;
2237 /* Set the number of operands for statement GS. */
2239 static inline void
2240 gimple_set_num_ops (gimple gs, unsigned num_ops)
2242 gs->num_ops = num_ops;
2246 /* Return the array of operands for statement GS. */
2248 static inline tree *
2249 gimple_ops (gimple gs)
2251 size_t off;
2253 /* All the tuples have their operand vector at the very bottom
2254 of the structure. Note that those structures that do not
2255 have an operand vector have a zero offset. */
2256 off = gimple_ops_offset_[gimple_statement_structure (gs)];
2257 gcc_gimple_checking_assert (off != 0);
2259 return (tree *) ((char *) gs + off);
2263 /* Return operand I for statement GS. */
2265 static inline tree
2266 gimple_op (const_gimple gs, unsigned i)
2268 if (gimple_has_ops (gs))
2270 gcc_gimple_checking_assert (i < gimple_num_ops (gs));
2271 return gimple_ops (CONST_CAST_GIMPLE (gs))[i];
2273 else
2274 return NULL_TREE;
2277 /* Return a pointer to operand I for statement GS. */
2279 static inline tree *
2280 gimple_op_ptr (const_gimple gs, unsigned i)
2282 if (gimple_has_ops (gs))
2284 gcc_gimple_checking_assert (i < gimple_num_ops (gs));
2285 return gimple_ops (CONST_CAST_GIMPLE (gs)) + i;
2287 else
2288 return NULL;
2291 /* Set operand I of statement GS to OP. */
2293 static inline void
2294 gimple_set_op (gimple gs, unsigned i, tree op)
2296 gcc_gimple_checking_assert (gimple_has_ops (gs) && i < gimple_num_ops (gs));
2298 /* Note. It may be tempting to assert that OP matches
2299 is_gimple_operand, but that would be wrong. Different tuples
2300 accept slightly different sets of tree operands. Each caller
2301 should perform its own validation. */
2302 gimple_ops (gs)[i] = op;
2305 /* Return true if GS is a GIMPLE_ASSIGN. */
2307 static inline bool
2308 is_gimple_assign (const_gimple gs)
2310 return gimple_code (gs) == GIMPLE_ASSIGN;
2313 /* Determine if expression CODE is one of the valid expressions that can
2314 be used on the RHS of GIMPLE assignments. */
2316 static inline enum gimple_rhs_class
2317 get_gimple_rhs_class (enum tree_code code)
2319 return (enum gimple_rhs_class) gimple_rhs_class_table[(int) code];
2322 /* Return the LHS of assignment statement GS. */
2324 static inline tree
2325 gimple_assign_lhs (const_gimple gs)
2327 GIMPLE_CHECK (gs, GIMPLE_ASSIGN);
2328 return gimple_op (gs, 0);
2332 /* Return a pointer to the LHS of assignment statement GS. */
2334 static inline tree *
2335 gimple_assign_lhs_ptr (const_gimple gs)
2337 GIMPLE_CHECK (gs, GIMPLE_ASSIGN);
2338 return gimple_op_ptr (gs, 0);
2342 /* Set LHS to be the LHS operand of assignment statement GS. */
2344 static inline void
2345 gimple_assign_set_lhs (gimple gs, tree lhs)
2347 GIMPLE_CHECK (gs, GIMPLE_ASSIGN);
2348 gimple_set_op (gs, 0, lhs);
2350 if (lhs && TREE_CODE (lhs) == SSA_NAME)
2351 SSA_NAME_DEF_STMT (lhs) = gs;
2355 /* Return the first operand on the RHS of assignment statement GS. */
2357 static inline tree
2358 gimple_assign_rhs1 (const_gimple gs)
2360 GIMPLE_CHECK (gs, GIMPLE_ASSIGN);
2361 return gimple_op (gs, 1);
2365 /* Return a pointer to the first operand on the RHS of assignment
2366 statement GS. */
2368 static inline tree *
2369 gimple_assign_rhs1_ptr (const_gimple gs)
2371 GIMPLE_CHECK (gs, GIMPLE_ASSIGN);
2372 return gimple_op_ptr (gs, 1);
2375 /* Set RHS to be the first operand on the RHS of assignment statement GS. */
2377 static inline void
2378 gimple_assign_set_rhs1 (gimple gs, tree rhs)
2380 GIMPLE_CHECK (gs, GIMPLE_ASSIGN);
2382 gimple_set_op (gs, 1, rhs);
2386 /* Return the second operand on the RHS of assignment statement GS.
2387 If GS does not have two operands, NULL is returned instead. */
2389 static inline tree
2390 gimple_assign_rhs2 (const_gimple gs)
2392 GIMPLE_CHECK (gs, GIMPLE_ASSIGN);
2394 if (gimple_num_ops (gs) >= 3)
2395 return gimple_op (gs, 2);
2396 else
2397 return NULL_TREE;
2401 /* Return a pointer to the second operand on the RHS of assignment
2402 statement GS. */
2404 static inline tree *
2405 gimple_assign_rhs2_ptr (const_gimple gs)
2407 GIMPLE_CHECK (gs, GIMPLE_ASSIGN);
2408 return gimple_op_ptr (gs, 2);
2412 /* Set RHS to be the second operand on the RHS of assignment statement GS. */
2414 static inline void
2415 gimple_assign_set_rhs2 (gimple gs, tree rhs)
2417 GIMPLE_CHECK (gs, GIMPLE_ASSIGN);
2419 gimple_set_op (gs, 2, rhs);
2422 /* Return the third operand on the RHS of assignment statement GS.
2423 If GS does not have two operands, NULL is returned instead. */
2425 static inline tree
2426 gimple_assign_rhs3 (const_gimple gs)
2428 GIMPLE_CHECK (gs, GIMPLE_ASSIGN);
2430 if (gimple_num_ops (gs) >= 4)
2431 return gimple_op (gs, 3);
2432 else
2433 return NULL_TREE;
2436 /* Return a pointer to the third operand on the RHS of assignment
2437 statement GS. */
2439 static inline tree *
2440 gimple_assign_rhs3_ptr (const_gimple gs)
2442 GIMPLE_CHECK (gs, GIMPLE_ASSIGN);
2443 return gimple_op_ptr (gs, 3);
2447 /* Set RHS to be the third operand on the RHS of assignment statement GS. */
2449 static inline void
2450 gimple_assign_set_rhs3 (gimple gs, tree rhs)
2452 GIMPLE_CHECK (gs, GIMPLE_ASSIGN);
2454 gimple_set_op (gs, 3, rhs);
2457 /* A wrapper around 3 operand gimple_assign_set_rhs_with_ops, for callers
2458 which expect to see only two operands. */
2460 static inline void
2461 gimple_assign_set_rhs_with_ops (gimple_stmt_iterator *gsi, enum tree_code code,
2462 tree op1, tree op2)
2464 gimple_assign_set_rhs_with_ops (gsi, code, op1, op2, NULL);
2467 /* A wrapper around 3 operand gimple_assign_set_rhs_with_ops, for callers
2468 which expect to see only one operands. */
2470 static inline void
2471 gimple_assign_set_rhs_with_ops (gimple_stmt_iterator *gsi, enum tree_code code,
2472 tree op1)
2474 gimple_assign_set_rhs_with_ops (gsi, code, op1, NULL, NULL);
2477 /* Returns true if GS is a nontemporal move. */
2479 static inline bool
2480 gimple_assign_nontemporal_move_p (const gassign *gs)
2482 return gs->nontemporal_move;
2485 /* Sets nontemporal move flag of GS to NONTEMPORAL. */
2487 static inline void
2488 gimple_assign_set_nontemporal_move (gimple gs, bool nontemporal)
2490 GIMPLE_CHECK (gs, GIMPLE_ASSIGN);
2491 gs->nontemporal_move = nontemporal;
2495 /* Return the code of the expression computed on the rhs of assignment
2496 statement GS. In case that the RHS is a single object, returns the
2497 tree code of the object. */
2499 static inline enum tree_code
2500 gimple_assign_rhs_code (const_gimple gs)
2502 enum tree_code code;
2503 GIMPLE_CHECK (gs, GIMPLE_ASSIGN);
2505 code = (enum tree_code) gs->subcode;
2506 /* While we initially set subcode to the TREE_CODE of the rhs for
2507 GIMPLE_SINGLE_RHS assigns we do not update that subcode to stay
2508 in sync when we rewrite stmts into SSA form or do SSA propagations. */
2509 if (get_gimple_rhs_class (code) == GIMPLE_SINGLE_RHS)
2510 code = TREE_CODE (gimple_assign_rhs1 (gs));
2512 return code;
2516 /* Set CODE to be the code for the expression computed on the RHS of
2517 assignment S. */
2519 static inline void
2520 gimple_assign_set_rhs_code (gimple s, enum tree_code code)
2522 GIMPLE_CHECK (s, GIMPLE_ASSIGN);
2523 s->subcode = code;
2527 /* Return the gimple rhs class of the code of the expression computed on
2528 the rhs of assignment statement GS.
2529 This will never return GIMPLE_INVALID_RHS. */
2531 static inline enum gimple_rhs_class
2532 gimple_assign_rhs_class (const_gimple gs)
2534 return get_gimple_rhs_class (gimple_assign_rhs_code (gs));
2537 /* Return true if GS is an assignment with a singleton RHS, i.e.,
2538 there is no operator associated with the assignment itself.
2539 Unlike gimple_assign_copy_p, this predicate returns true for
2540 any RHS operand, including those that perform an operation
2541 and do not have the semantics of a copy, such as COND_EXPR. */
2543 static inline bool
2544 gimple_assign_single_p (const_gimple gs)
2546 return (is_gimple_assign (gs)
2547 && gimple_assign_rhs_class (gs) == GIMPLE_SINGLE_RHS);
2550 /* Return true if GS performs a store to its lhs. */
2552 static inline bool
2553 gimple_store_p (const_gimple gs)
2555 tree lhs = gimple_get_lhs (gs);
2556 return lhs && !is_gimple_reg (lhs);
2559 /* Return true if GS is an assignment that loads from its rhs1. */
2561 static inline bool
2562 gimple_assign_load_p (const_gimple gs)
2564 tree rhs;
2565 if (!gimple_assign_single_p (gs))
2566 return false;
2567 rhs = gimple_assign_rhs1 (gs);
2568 if (TREE_CODE (rhs) == WITH_SIZE_EXPR)
2569 return true;
2570 rhs = get_base_address (rhs);
2571 return (DECL_P (rhs)
2572 || TREE_CODE (rhs) == MEM_REF || TREE_CODE (rhs) == TARGET_MEM_REF);
2576 /* Return true if S is a type-cast assignment. */
2578 static inline bool
2579 gimple_assign_cast_p (const_gimple s)
2581 if (is_gimple_assign (s))
2583 enum tree_code sc = gimple_assign_rhs_code (s);
2584 return CONVERT_EXPR_CODE_P (sc)
2585 || sc == VIEW_CONVERT_EXPR
2586 || sc == FIX_TRUNC_EXPR;
2589 return false;
2592 /* Return true if S is a clobber statement. */
2594 static inline bool
2595 gimple_clobber_p (const_gimple s)
2597 return gimple_assign_single_p (s)
2598 && TREE_CLOBBER_P (gimple_assign_rhs1 (s));
2601 /* Return true if GS is a GIMPLE_CALL. */
2603 static inline bool
2604 is_gimple_call (const_gimple gs)
2606 return gimple_code (gs) == GIMPLE_CALL;
2609 /* Return the LHS of call statement GS. */
2611 static inline tree
2612 gimple_call_lhs (const_gimple gs)
2614 GIMPLE_CHECK (gs, GIMPLE_CALL);
2615 return gimple_op (gs, 0);
2619 /* Return a pointer to the LHS of call statement GS. */
2621 static inline tree *
2622 gimple_call_lhs_ptr (const_gimple gs)
2624 GIMPLE_CHECK (gs, GIMPLE_CALL);
2625 return gimple_op_ptr (gs, 0);
2629 /* Set LHS to be the LHS operand of call statement GS. */
2631 static inline void
2632 gimple_call_set_lhs (gimple gs, tree lhs)
2634 GIMPLE_CHECK (gs, GIMPLE_CALL);
2635 gimple_set_op (gs, 0, lhs);
2636 if (lhs && TREE_CODE (lhs) == SSA_NAME)
2637 SSA_NAME_DEF_STMT (lhs) = gs;
2641 /* Return true if call GS calls an internal-only function, as enumerated
2642 by internal_fn. */
2644 static inline bool
2645 gimple_call_internal_p (const_gimple gs)
2647 GIMPLE_CHECK (gs, GIMPLE_CALL);
2648 return (gs->subcode & GF_CALL_INTERNAL) != 0;
2652 /* Return true if call GS is marked as instrumented by
2653 Pointer Bounds Checker. */
2655 static inline bool
2656 gimple_call_with_bounds_p (const_gimple gs)
2658 GIMPLE_CHECK (gs, GIMPLE_CALL);
2659 return (gs->subcode & GF_CALL_WITH_BOUNDS) != 0;
2663 /* If INSTRUMENTED_P is true, marm statement GS as instrumented by
2664 Pointer Bounds Checker. */
2666 static inline void
2667 gimple_call_set_with_bounds (gimple gs, bool with_bounds)
2669 GIMPLE_CHECK (gs, GIMPLE_CALL);
2670 if (with_bounds)
2671 gs->subcode |= GF_CALL_WITH_BOUNDS;
2672 else
2673 gs->subcode &= ~GF_CALL_WITH_BOUNDS;
2677 /* Return the target of internal call GS. */
2679 static inline enum internal_fn
2680 gimple_call_internal_fn (const_gimple gs)
2682 gcc_gimple_checking_assert (gimple_call_internal_p (gs));
2683 return static_cast <const gcall *> (gs)->u.internal_fn;
2686 /* If CTRL_ALTERING_P is true, mark GIMPLE_CALL S to be a stmt
2687 that could alter control flow. */
2689 static inline void
2690 gimple_call_set_ctrl_altering (gimple s, bool ctrl_altering_p)
2692 GIMPLE_CHECK (s, GIMPLE_CALL);
2693 if (ctrl_altering_p)
2694 s->subcode |= GF_CALL_CTRL_ALTERING;
2695 else
2696 s->subcode &= ~GF_CALL_CTRL_ALTERING;
2699 /* Return true if call GS calls an func whose GF_CALL_CTRL_ALTERING
2700 flag is set. Such call could not be a stmt in the middle of a bb. */
2702 static inline bool
2703 gimple_call_ctrl_altering_p (const_gimple gs)
2705 GIMPLE_CHECK (gs, GIMPLE_CALL);
2706 return (gs->subcode & GF_CALL_CTRL_ALTERING) != 0;
2710 /* Return the function type of the function called by GS. */
2712 static inline tree
2713 gimple_call_fntype (const_gimple gs)
2715 const gcall *call_stmt = as_a <const gcall *> (gs);
2716 if (gimple_call_internal_p (gs))
2717 return NULL_TREE;
2718 return call_stmt->u.fntype;
2721 /* Set the type of the function called by CALL_STMT to FNTYPE. */
2723 static inline void
2724 gimple_call_set_fntype (gcall *call_stmt, tree fntype)
2726 gcc_gimple_checking_assert (!gimple_call_internal_p (call_stmt));
2727 call_stmt->u.fntype = fntype;
2731 /* Return the tree node representing the function called by call
2732 statement GS. */
2734 static inline tree
2735 gimple_call_fn (const_gimple gs)
2737 GIMPLE_CHECK (gs, GIMPLE_CALL);
2738 return gimple_op (gs, 1);
2741 /* Return a pointer to the tree node representing the function called by call
2742 statement GS. */
2744 static inline tree *
2745 gimple_call_fn_ptr (const_gimple gs)
2747 GIMPLE_CHECK (gs, GIMPLE_CALL);
2748 return gimple_op_ptr (gs, 1);
2752 /* Set FN to be the function called by call statement GS. */
2754 static inline void
2755 gimple_call_set_fn (gcall *gs, tree fn)
2757 gcc_gimple_checking_assert (!gimple_call_internal_p (gs));
2758 gimple_set_op (gs, 1, fn);
2762 /* Set FNDECL to be the function called by call statement GS. */
2764 static inline void
2765 gimple_call_set_fndecl (gimple gs, tree decl)
2767 GIMPLE_CHECK (gs, GIMPLE_CALL);
2768 gcc_gimple_checking_assert (!gimple_call_internal_p (gs));
2769 gimple_set_op (gs, 1, build1_loc (gimple_location (gs), ADDR_EXPR,
2770 build_pointer_type (TREE_TYPE (decl)),
2771 decl));
2775 /* Set internal function FN to be the function called by call statement CALL_STMT. */
2777 static inline void
2778 gimple_call_set_internal_fn (gcall *call_stmt, enum internal_fn fn)
2780 gcc_gimple_checking_assert (gimple_call_internal_p (call_stmt));
2781 call_stmt->u.internal_fn = fn;
2785 /* If a given GIMPLE_CALL's callee is a FUNCTION_DECL, return it.
2786 Otherwise return NULL. This function is analogous to
2787 get_callee_fndecl in tree land. */
2789 static inline tree
2790 gimple_call_fndecl (const_gimple gs)
2792 return gimple_call_addr_fndecl (gimple_call_fn (gs));
2796 /* Return the type returned by call statement GS. */
2798 static inline tree
2799 gimple_call_return_type (const gcall *gs)
2801 tree type = gimple_call_fntype (gs);
2803 if (type == NULL_TREE)
2804 return TREE_TYPE (gimple_call_lhs (gs));
2806 /* The type returned by a function is the type of its
2807 function type. */
2808 return TREE_TYPE (type);
2812 /* Return the static chain for call statement GS. */
2814 static inline tree
2815 gimple_call_chain (const_gimple gs)
2817 GIMPLE_CHECK (gs, GIMPLE_CALL);
2818 return gimple_op (gs, 2);
2822 /* Return a pointer to the static chain for call statement CALL_STMT. */
2824 static inline tree *
2825 gimple_call_chain_ptr (const gcall *call_stmt)
2827 return gimple_op_ptr (call_stmt, 2);
2830 /* Set CHAIN to be the static chain for call statement CALL_STMT. */
2832 static inline void
2833 gimple_call_set_chain (gcall *call_stmt, tree chain)
2835 gimple_set_op (call_stmt, 2, chain);
2839 /* Return the number of arguments used by call statement GS. */
2841 static inline unsigned
2842 gimple_call_num_args (const_gimple gs)
2844 unsigned num_ops;
2845 GIMPLE_CHECK (gs, GIMPLE_CALL);
2846 num_ops = gimple_num_ops (gs);
2847 return num_ops - 3;
2851 /* Return the argument at position INDEX for call statement GS. */
2853 static inline tree
2854 gimple_call_arg (const_gimple gs, unsigned index)
2856 GIMPLE_CHECK (gs, GIMPLE_CALL);
2857 return gimple_op (gs, index + 3);
2861 /* Return a pointer to the argument at position INDEX for call
2862 statement GS. */
2864 static inline tree *
2865 gimple_call_arg_ptr (const_gimple gs, unsigned index)
2867 GIMPLE_CHECK (gs, GIMPLE_CALL);
2868 return gimple_op_ptr (gs, index + 3);
2872 /* Set ARG to be the argument at position INDEX for call statement GS. */
2874 static inline void
2875 gimple_call_set_arg (gimple gs, unsigned index, tree arg)
2877 GIMPLE_CHECK (gs, GIMPLE_CALL);
2878 gimple_set_op (gs, index + 3, arg);
2882 /* If TAIL_P is true, mark call statement S as being a tail call
2883 (i.e., a call just before the exit of a function). These calls are
2884 candidate for tail call optimization. */
2886 static inline void
2887 gimple_call_set_tail (gcall *s, bool tail_p)
2889 if (tail_p)
2890 s->subcode |= GF_CALL_TAILCALL;
2891 else
2892 s->subcode &= ~GF_CALL_TAILCALL;
2896 /* Return true if GIMPLE_CALL S is marked as a tail call. */
2898 static inline bool
2899 gimple_call_tail_p (gcall *s)
2901 return (s->subcode & GF_CALL_TAILCALL) != 0;
2905 /* If RETURN_SLOT_OPT_P is true mark GIMPLE_CALL S as valid for return
2906 slot optimization. This transformation uses the target of the call
2907 expansion as the return slot for calls that return in memory. */
2909 static inline void
2910 gimple_call_set_return_slot_opt (gcall *s, bool return_slot_opt_p)
2912 if (return_slot_opt_p)
2913 s->subcode |= GF_CALL_RETURN_SLOT_OPT;
2914 else
2915 s->subcode &= ~GF_CALL_RETURN_SLOT_OPT;
2919 /* Return true if S is marked for return slot optimization. */
2921 static inline bool
2922 gimple_call_return_slot_opt_p (gcall *s)
2924 return (s->subcode & GF_CALL_RETURN_SLOT_OPT) != 0;
2928 /* If FROM_THUNK_P is true, mark GIMPLE_CALL S as being the jump from a
2929 thunk to the thunked-to function. */
2931 static inline void
2932 gimple_call_set_from_thunk (gcall *s, bool from_thunk_p)
2934 if (from_thunk_p)
2935 s->subcode |= GF_CALL_FROM_THUNK;
2936 else
2937 s->subcode &= ~GF_CALL_FROM_THUNK;
2941 /* Return true if GIMPLE_CALL S is a jump from a thunk. */
2943 static inline bool
2944 gimple_call_from_thunk_p (gcall *s)
2946 return (s->subcode & GF_CALL_FROM_THUNK) != 0;
2950 /* If PASS_ARG_PACK_P is true, GIMPLE_CALL S is a stdarg call that needs the
2951 argument pack in its argument list. */
2953 static inline void
2954 gimple_call_set_va_arg_pack (gcall *s, bool pass_arg_pack_p)
2956 if (pass_arg_pack_p)
2957 s->subcode |= GF_CALL_VA_ARG_PACK;
2958 else
2959 s->subcode &= ~GF_CALL_VA_ARG_PACK;
2963 /* Return true if GIMPLE_CALL S is a stdarg call that needs the
2964 argument pack in its argument list. */
2966 static inline bool
2967 gimple_call_va_arg_pack_p (gcall *s)
2969 return (s->subcode & GF_CALL_VA_ARG_PACK) != 0;
2973 /* Return true if S is a noreturn call. */
2975 static inline bool
2976 gimple_call_noreturn_p (gimple s)
2978 GIMPLE_CHECK (s, GIMPLE_CALL);
2979 return (gimple_call_flags (s) & ECF_NORETURN) != 0;
2983 /* If NOTHROW_P is true, GIMPLE_CALL S is a call that is known to not throw
2984 even if the called function can throw in other cases. */
2986 static inline void
2987 gimple_call_set_nothrow (gcall *s, bool nothrow_p)
2989 if (nothrow_p)
2990 s->subcode |= GF_CALL_NOTHROW;
2991 else
2992 s->subcode &= ~GF_CALL_NOTHROW;
2995 /* Return true if S is a nothrow call. */
2997 static inline bool
2998 gimple_call_nothrow_p (gcall *s)
3000 return (gimple_call_flags (s) & ECF_NOTHROW) != 0;
3003 /* If FOR_VAR is true, GIMPLE_CALL S is a call to builtin_alloca that
3004 is known to be emitted for VLA objects. Those are wrapped by
3005 stack_save/stack_restore calls and hence can't lead to unbounded
3006 stack growth even when they occur in loops. */
3008 static inline void
3009 gimple_call_set_alloca_for_var (gcall *s, bool for_var)
3011 if (for_var)
3012 s->subcode |= GF_CALL_ALLOCA_FOR_VAR;
3013 else
3014 s->subcode &= ~GF_CALL_ALLOCA_FOR_VAR;
3017 /* Return true of S is a call to builtin_alloca emitted for VLA objects. */
3019 static inline bool
3020 gimple_call_alloca_for_var_p (gcall *s)
3022 return (s->subcode & GF_CALL_ALLOCA_FOR_VAR) != 0;
3025 /* Copy all the GF_CALL_* flags from ORIG_CALL to DEST_CALL. */
3027 static inline void
3028 gimple_call_copy_flags (gcall *dest_call, gcall *orig_call)
3030 dest_call->subcode = orig_call->subcode;
3034 /* Return a pointer to the points-to solution for the set of call-used
3035 variables of the call CALL_STMT. */
3037 static inline struct pt_solution *
3038 gimple_call_use_set (gcall *call_stmt)
3040 return &call_stmt->call_used;
3044 /* Return a pointer to the points-to solution for the set of call-used
3045 variables of the call CALL_STMT. */
3047 static inline struct pt_solution *
3048 gimple_call_clobber_set (gcall *call_stmt)
3050 return &call_stmt->call_clobbered;
3054 /* Returns true if this is a GIMPLE_ASSIGN or a GIMPLE_CALL with a
3055 non-NULL lhs. */
3057 static inline bool
3058 gimple_has_lhs (gimple stmt)
3060 return (is_gimple_assign (stmt)
3061 || (is_gimple_call (stmt)
3062 && gimple_call_lhs (stmt) != NULL_TREE));
3066 /* Return the code of the predicate computed by conditional statement GS. */
3068 static inline enum tree_code
3069 gimple_cond_code (const_gimple gs)
3071 GIMPLE_CHECK (gs, GIMPLE_COND);
3072 return (enum tree_code) gs->subcode;
3076 /* Set CODE to be the predicate code for the conditional statement GS. */
3078 static inline void
3079 gimple_cond_set_code (gcond *gs, enum tree_code code)
3081 gs->subcode = code;
3085 /* Return the LHS of the predicate computed by conditional statement GS. */
3087 static inline tree
3088 gimple_cond_lhs (const_gimple gs)
3090 GIMPLE_CHECK (gs, GIMPLE_COND);
3091 return gimple_op (gs, 0);
3094 /* Return the pointer to the LHS of the predicate computed by conditional
3095 statement GS. */
3097 static inline tree *
3098 gimple_cond_lhs_ptr (const gcond *gs)
3100 return gimple_op_ptr (gs, 0);
3103 /* Set LHS to be the LHS operand of the predicate computed by
3104 conditional statement GS. */
3106 static inline void
3107 gimple_cond_set_lhs (gcond *gs, tree lhs)
3109 gimple_set_op (gs, 0, lhs);
3113 /* Return the RHS operand of the predicate computed by conditional GS. */
3115 static inline tree
3116 gimple_cond_rhs (const_gimple gs)
3118 GIMPLE_CHECK (gs, GIMPLE_COND);
3119 return gimple_op (gs, 1);
3122 /* Return the pointer to the RHS operand of the predicate computed by
3123 conditional GS. */
3125 static inline tree *
3126 gimple_cond_rhs_ptr (const gcond *gs)
3128 return gimple_op_ptr (gs, 1);
3132 /* Set RHS to be the RHS operand of the predicate computed by
3133 conditional statement GS. */
3135 static inline void
3136 gimple_cond_set_rhs (gcond *gs, tree rhs)
3138 gimple_set_op (gs, 1, rhs);
3142 /* Return the label used by conditional statement GS when its
3143 predicate evaluates to true. */
3145 static inline tree
3146 gimple_cond_true_label (const gcond *gs)
3148 return gimple_op (gs, 2);
3152 /* Set LABEL to be the label used by conditional statement GS when its
3153 predicate evaluates to true. */
3155 static inline void
3156 gimple_cond_set_true_label (gcond *gs, tree label)
3158 gimple_set_op (gs, 2, label);
3162 /* Set LABEL to be the label used by conditional statement GS when its
3163 predicate evaluates to false. */
3165 static inline void
3166 gimple_cond_set_false_label (gcond *gs, tree label)
3168 gimple_set_op (gs, 3, label);
3172 /* Return the label used by conditional statement GS when its
3173 predicate evaluates to false. */
3175 static inline tree
3176 gimple_cond_false_label (const gcond *gs)
3179 return gimple_op (gs, 3);
3183 /* Set the conditional COND_STMT to be of the form 'if (1 == 0)'. */
3185 static inline void
3186 gimple_cond_make_false (gcond *gs)
3188 gimple_cond_set_lhs (gs, boolean_true_node);
3189 gimple_cond_set_rhs (gs, boolean_false_node);
3190 gs->subcode = EQ_EXPR;
3194 /* Set the conditional COND_STMT to be of the form 'if (1 == 1)'. */
3196 static inline void
3197 gimple_cond_make_true (gcond *gs)
3199 gimple_cond_set_lhs (gs, boolean_true_node);
3200 gimple_cond_set_rhs (gs, boolean_true_node);
3201 gs->subcode = EQ_EXPR;
3204 /* Check if conditional statemente GS is of the form 'if (1 == 1)',
3205 'if (0 == 0)', 'if (1 != 0)' or 'if (0 != 1)' */
3207 static inline bool
3208 gimple_cond_true_p (const gcond *gs)
3210 tree lhs = gimple_cond_lhs (gs);
3211 tree rhs = gimple_cond_rhs (gs);
3212 enum tree_code code = gimple_cond_code (gs);
3214 if (lhs != boolean_true_node && lhs != boolean_false_node)
3215 return false;
3217 if (rhs != boolean_true_node && rhs != boolean_false_node)
3218 return false;
3220 if (code == NE_EXPR && lhs != rhs)
3221 return true;
3223 if (code == EQ_EXPR && lhs == rhs)
3224 return true;
3226 return false;
3229 /* Check if conditional statement GS is of the form 'if (1 != 1)',
3230 'if (0 != 0)', 'if (1 == 0)' or 'if (0 == 1)' */
3232 static inline bool
3233 gimple_cond_false_p (const gcond *gs)
3235 tree lhs = gimple_cond_lhs (gs);
3236 tree rhs = gimple_cond_rhs (gs);
3237 enum tree_code code = gimple_cond_code (gs);
3239 if (lhs != boolean_true_node && lhs != boolean_false_node)
3240 return false;
3242 if (rhs != boolean_true_node && rhs != boolean_false_node)
3243 return false;
3245 if (code == NE_EXPR && lhs == rhs)
3246 return true;
3248 if (code == EQ_EXPR && lhs != rhs)
3249 return true;
3251 return false;
3254 /* Set the code, LHS and RHS of GIMPLE_COND STMT from CODE, LHS and RHS. */
3256 static inline void
3257 gimple_cond_set_condition (gcond *stmt, enum tree_code code, tree lhs,
3258 tree rhs)
3260 gimple_cond_set_code (stmt, code);
3261 gimple_cond_set_lhs (stmt, lhs);
3262 gimple_cond_set_rhs (stmt, rhs);
3265 /* Return the LABEL_DECL node used by GIMPLE_LABEL statement GS. */
3267 static inline tree
3268 gimple_label_label (const glabel *gs)
3270 return gimple_op (gs, 0);
3274 /* Set LABEL to be the LABEL_DECL node used by GIMPLE_LABEL statement
3275 GS. */
3277 static inline void
3278 gimple_label_set_label (glabel *gs, tree label)
3280 gimple_set_op (gs, 0, label);
3284 /* Return the destination of the unconditional jump GS. */
3286 static inline tree
3287 gimple_goto_dest (const_gimple gs)
3289 GIMPLE_CHECK (gs, GIMPLE_GOTO);
3290 return gimple_op (gs, 0);
3294 /* Set DEST to be the destination of the unconditonal jump GS. */
3296 static inline void
3297 gimple_goto_set_dest (ggoto *gs, tree dest)
3299 gimple_set_op (gs, 0, dest);
3303 /* Return the variables declared in the GIMPLE_BIND statement GS. */
3305 static inline tree
3306 gimple_bind_vars (const gbind *bind_stmt)
3308 return bind_stmt->vars;
3312 /* Set VARS to be the set of variables declared in the GIMPLE_BIND
3313 statement GS. */
3315 static inline void
3316 gimple_bind_set_vars (gbind *bind_stmt, tree vars)
3318 bind_stmt->vars = vars;
3322 /* Append VARS to the set of variables declared in the GIMPLE_BIND
3323 statement GS. */
3325 static inline void
3326 gimple_bind_append_vars (gbind *bind_stmt, tree vars)
3328 bind_stmt->vars = chainon (bind_stmt->vars, vars);
3332 static inline gimple_seq *
3333 gimple_bind_body_ptr (gbind *bind_stmt)
3335 return &bind_stmt->body;
3338 /* Return the GIMPLE sequence contained in the GIMPLE_BIND statement GS. */
3340 static inline gimple_seq
3341 gimple_bind_body (gbind *gs)
3343 return *gimple_bind_body_ptr (gs);
3347 /* Set SEQ to be the GIMPLE sequence contained in the GIMPLE_BIND
3348 statement GS. */
3350 static inline void
3351 gimple_bind_set_body (gbind *bind_stmt, gimple_seq seq)
3353 bind_stmt->body = seq;
3357 /* Append a statement to the end of a GIMPLE_BIND's body. */
3359 static inline void
3360 gimple_bind_add_stmt (gbind *bind_stmt, gimple stmt)
3362 gimple_seq_add_stmt (&bind_stmt->body, stmt);
3366 /* Append a sequence of statements to the end of a GIMPLE_BIND's body. */
3368 static inline void
3369 gimple_bind_add_seq (gbind *bind_stmt, gimple_seq seq)
3371 gimple_seq_add_seq (&bind_stmt->body, seq);
3375 /* Return the TREE_BLOCK node associated with GIMPLE_BIND statement
3376 GS. This is analogous to the BIND_EXPR_BLOCK field in trees. */
3378 static inline tree
3379 gimple_bind_block (const gbind *bind_stmt)
3381 return bind_stmt->block;
3385 /* Set BLOCK to be the TREE_BLOCK node associated with GIMPLE_BIND
3386 statement GS. */
3388 static inline void
3389 gimple_bind_set_block (gbind *bind_stmt, tree block)
3391 gcc_gimple_checking_assert (block == NULL_TREE
3392 || TREE_CODE (block) == BLOCK);
3393 bind_stmt->block = block;
3397 /* Return the number of input operands for GIMPLE_ASM ASM_STMT. */
3399 static inline unsigned
3400 gimple_asm_ninputs (const gasm *asm_stmt)
3402 return asm_stmt->ni;
3406 /* Return the number of output operands for GIMPLE_ASM ASM_STMT. */
3408 static inline unsigned
3409 gimple_asm_noutputs (const gasm *asm_stmt)
3411 return asm_stmt->no;
3415 /* Return the number of clobber operands for GIMPLE_ASM ASM_STMT. */
3417 static inline unsigned
3418 gimple_asm_nclobbers (const gasm *asm_stmt)
3420 return asm_stmt->nc;
3423 /* Return the number of label operands for GIMPLE_ASM ASM_STMT. */
3425 static inline unsigned
3426 gimple_asm_nlabels (const gasm *asm_stmt)
3428 return asm_stmt->nl;
3431 /* Return input operand INDEX of GIMPLE_ASM ASM_STMT. */
3433 static inline tree
3434 gimple_asm_input_op (const gasm *asm_stmt, unsigned index)
3436 gcc_gimple_checking_assert (index < asm_stmt->ni);
3437 return gimple_op (asm_stmt, index + asm_stmt->no);
3440 /* Return a pointer to input operand INDEX of GIMPLE_ASM ASM_STMT. */
3442 static inline tree *
3443 gimple_asm_input_op_ptr (const gasm *asm_stmt, unsigned index)
3445 gcc_gimple_checking_assert (index < asm_stmt->ni);
3446 return gimple_op_ptr (asm_stmt, index + asm_stmt->no);
3450 /* Set IN_OP to be input operand INDEX in GIMPLE_ASM ASM_STMT. */
3452 static inline void
3453 gimple_asm_set_input_op (gasm *asm_stmt, unsigned index, tree in_op)
3455 gcc_gimple_checking_assert (index < asm_stmt->ni
3456 && TREE_CODE (in_op) == TREE_LIST);
3457 gimple_set_op (asm_stmt, index + asm_stmt->no, in_op);
3461 /* Return output operand INDEX of GIMPLE_ASM ASM_STMT. */
3463 static inline tree
3464 gimple_asm_output_op (const gasm *asm_stmt, unsigned index)
3466 gcc_gimple_checking_assert (index < asm_stmt->no);
3467 return gimple_op (asm_stmt, index);
3470 /* Return a pointer to output operand INDEX of GIMPLE_ASM ASM_STMT. */
3472 static inline tree *
3473 gimple_asm_output_op_ptr (const gasm *asm_stmt, unsigned index)
3475 gcc_gimple_checking_assert (index < asm_stmt->no);
3476 return gimple_op_ptr (asm_stmt, index);
3480 /* Set OUT_OP to be output operand INDEX in GIMPLE_ASM ASM_STMT. */
3482 static inline void
3483 gimple_asm_set_output_op (gasm *asm_stmt, unsigned index, tree out_op)
3485 gcc_gimple_checking_assert (index < asm_stmt->no
3486 && TREE_CODE (out_op) == TREE_LIST);
3487 gimple_set_op (asm_stmt, index, out_op);
3491 /* Return clobber operand INDEX of GIMPLE_ASM ASM_STMT. */
3493 static inline tree
3494 gimple_asm_clobber_op (const gasm *asm_stmt, unsigned index)
3496 gcc_gimple_checking_assert (index < asm_stmt->nc);
3497 return gimple_op (asm_stmt, index + asm_stmt->ni + asm_stmt->no);
3501 /* Set CLOBBER_OP to be clobber operand INDEX in GIMPLE_ASM ASM_STMT. */
3503 static inline void
3504 gimple_asm_set_clobber_op (gasm *asm_stmt, unsigned index, tree clobber_op)
3506 gcc_gimple_checking_assert (index < asm_stmt->nc
3507 && TREE_CODE (clobber_op) == TREE_LIST);
3508 gimple_set_op (asm_stmt, index + asm_stmt->ni + asm_stmt->no, clobber_op);
3511 /* Return label operand INDEX of GIMPLE_ASM ASM_STMT. */
3513 static inline tree
3514 gimple_asm_label_op (const gasm *asm_stmt, unsigned index)
3516 gcc_gimple_checking_assert (index < asm_stmt->nl);
3517 return gimple_op (asm_stmt, index + asm_stmt->ni + asm_stmt->nc);
3520 /* Set LABEL_OP to be label operand INDEX in GIMPLE_ASM ASM_STMT. */
3522 static inline void
3523 gimple_asm_set_label_op (gasm *asm_stmt, unsigned index, tree label_op)
3525 gcc_gimple_checking_assert (index < asm_stmt->nl
3526 && TREE_CODE (label_op) == TREE_LIST);
3527 gimple_set_op (asm_stmt, index + asm_stmt->ni + asm_stmt->nc, label_op);
3530 /* Return the string representing the assembly instruction in
3531 GIMPLE_ASM ASM_STMT. */
3533 static inline const char *
3534 gimple_asm_string (const gasm *asm_stmt)
3536 return asm_stmt->string;
3540 /* Return true ASM_STMT ASM_STMT is an asm statement marked volatile. */
3542 static inline bool
3543 gimple_asm_volatile_p (const gasm *asm_stmt)
3545 return (asm_stmt->subcode & GF_ASM_VOLATILE) != 0;
3549 /* If VOLATLE_P is true, mark asm statement ASM_STMT as volatile. */
3551 static inline void
3552 gimple_asm_set_volatile (gasm *asm_stmt, bool volatile_p)
3554 if (volatile_p)
3555 asm_stmt->subcode |= GF_ASM_VOLATILE;
3556 else
3557 asm_stmt->subcode &= ~GF_ASM_VOLATILE;
3561 /* If INPUT_P is true, mark asm ASM_STMT as an ASM_INPUT. */
3563 static inline void
3564 gimple_asm_set_input (gasm *asm_stmt, bool input_p)
3566 if (input_p)
3567 asm_stmt->subcode |= GF_ASM_INPUT;
3568 else
3569 asm_stmt->subcode &= ~GF_ASM_INPUT;
3573 /* Return true if asm ASM_STMT is an ASM_INPUT. */
3575 static inline bool
3576 gimple_asm_input_p (const gasm *asm_stmt)
3578 return (asm_stmt->subcode & GF_ASM_INPUT) != 0;
3582 /* Return the types handled by GIMPLE_CATCH statement CATCH_STMT. */
3584 static inline tree
3585 gimple_catch_types (const gcatch *catch_stmt)
3587 return catch_stmt->types;
3591 /* Return a pointer to the types handled by GIMPLE_CATCH statement CATCH_STMT. */
3593 static inline tree *
3594 gimple_catch_types_ptr (gcatch *catch_stmt)
3596 return &catch_stmt->types;
3600 /* Return a pointer to the GIMPLE sequence representing the body of
3601 the handler of GIMPLE_CATCH statement CATCH_STMT. */
3603 static inline gimple_seq *
3604 gimple_catch_handler_ptr (gcatch *catch_stmt)
3606 return &catch_stmt->handler;
3610 /* Return the GIMPLE sequence representing the body of the handler of
3611 GIMPLE_CATCH statement CATCH_STMT. */
3613 static inline gimple_seq
3614 gimple_catch_handler (gcatch *catch_stmt)
3616 return *gimple_catch_handler_ptr (catch_stmt);
3620 /* Set T to be the set of types handled by GIMPLE_CATCH CATCH_STMT. */
3622 static inline void
3623 gimple_catch_set_types (gcatch *catch_stmt, tree t)
3625 catch_stmt->types = t;
3629 /* Set HANDLER to be the body of GIMPLE_CATCH CATCH_STMT. */
3631 static inline void
3632 gimple_catch_set_handler (gcatch *catch_stmt, gimple_seq handler)
3634 catch_stmt->handler = handler;
3638 /* Return the types handled by GIMPLE_EH_FILTER statement GS. */
3640 static inline tree
3641 gimple_eh_filter_types (const_gimple gs)
3643 const geh_filter *eh_filter_stmt = as_a <const geh_filter *> (gs);
3644 return eh_filter_stmt->types;
3648 /* Return a pointer to the types handled by GIMPLE_EH_FILTER statement
3649 GS. */
3651 static inline tree *
3652 gimple_eh_filter_types_ptr (gimple gs)
3654 geh_filter *eh_filter_stmt = as_a <geh_filter *> (gs);
3655 return &eh_filter_stmt->types;
3659 /* Return a pointer to the sequence of statement to execute when
3660 GIMPLE_EH_FILTER statement fails. */
3662 static inline gimple_seq *
3663 gimple_eh_filter_failure_ptr (gimple gs)
3665 geh_filter *eh_filter_stmt = as_a <geh_filter *> (gs);
3666 return &eh_filter_stmt->failure;
3670 /* Return the sequence of statement to execute when GIMPLE_EH_FILTER
3671 statement fails. */
3673 static inline gimple_seq
3674 gimple_eh_filter_failure (gimple gs)
3676 return *gimple_eh_filter_failure_ptr (gs);
3680 /* Set TYPES to be the set of types handled by GIMPLE_EH_FILTER
3681 EH_FILTER_STMT. */
3683 static inline void
3684 gimple_eh_filter_set_types (geh_filter *eh_filter_stmt, tree types)
3686 eh_filter_stmt->types = types;
3690 /* Set FAILURE to be the sequence of statements to execute on failure
3691 for GIMPLE_EH_FILTER EH_FILTER_STMT. */
3693 static inline void
3694 gimple_eh_filter_set_failure (geh_filter *eh_filter_stmt,
3695 gimple_seq failure)
3697 eh_filter_stmt->failure = failure;
3700 /* Get the function decl to be called by the MUST_NOT_THROW region. */
3702 static inline tree
3703 gimple_eh_must_not_throw_fndecl (geh_mnt *eh_mnt_stmt)
3705 return eh_mnt_stmt->fndecl;
3708 /* Set the function decl to be called by GS to DECL. */
3710 static inline void
3711 gimple_eh_must_not_throw_set_fndecl (geh_mnt *eh_mnt_stmt,
3712 tree decl)
3714 eh_mnt_stmt->fndecl = decl;
3717 /* GIMPLE_EH_ELSE accessors. */
3719 static inline gimple_seq *
3720 gimple_eh_else_n_body_ptr (geh_else *eh_else_stmt)
3722 return &eh_else_stmt->n_body;
3725 static inline gimple_seq
3726 gimple_eh_else_n_body (geh_else *eh_else_stmt)
3728 return *gimple_eh_else_n_body_ptr (eh_else_stmt);
3731 static inline gimple_seq *
3732 gimple_eh_else_e_body_ptr (geh_else *eh_else_stmt)
3734 return &eh_else_stmt->e_body;
3737 static inline gimple_seq
3738 gimple_eh_else_e_body (geh_else *eh_else_stmt)
3740 return *gimple_eh_else_e_body_ptr (eh_else_stmt);
3743 static inline void
3744 gimple_eh_else_set_n_body (geh_else *eh_else_stmt, gimple_seq seq)
3746 eh_else_stmt->n_body = seq;
3749 static inline void
3750 gimple_eh_else_set_e_body (geh_else *eh_else_stmt, gimple_seq seq)
3752 eh_else_stmt->e_body = seq;
3755 /* GIMPLE_TRY accessors. */
3757 /* Return the kind of try block represented by GIMPLE_TRY GS. This is
3758 either GIMPLE_TRY_CATCH or GIMPLE_TRY_FINALLY. */
3760 static inline enum gimple_try_flags
3761 gimple_try_kind (const_gimple gs)
3763 GIMPLE_CHECK (gs, GIMPLE_TRY);
3764 return (enum gimple_try_flags) (gs->subcode & GIMPLE_TRY_KIND);
3768 /* Set the kind of try block represented by GIMPLE_TRY GS. */
3770 static inline void
3771 gimple_try_set_kind (gtry *gs, enum gimple_try_flags kind)
3773 gcc_gimple_checking_assert (kind == GIMPLE_TRY_CATCH
3774 || kind == GIMPLE_TRY_FINALLY);
3775 if (gimple_try_kind (gs) != kind)
3776 gs->subcode = (unsigned int) kind;
3780 /* Return the GIMPLE_TRY_CATCH_IS_CLEANUP flag. */
3782 static inline bool
3783 gimple_try_catch_is_cleanup (const_gimple gs)
3785 gcc_gimple_checking_assert (gimple_try_kind (gs) == GIMPLE_TRY_CATCH);
3786 return (gs->subcode & GIMPLE_TRY_CATCH_IS_CLEANUP) != 0;
3790 /* Return a pointer to the sequence of statements used as the
3791 body for GIMPLE_TRY GS. */
3793 static inline gimple_seq *
3794 gimple_try_eval_ptr (gimple gs)
3796 gtry *try_stmt = as_a <gtry *> (gs);
3797 return &try_stmt->eval;
3801 /* Return the sequence of statements used as the body for GIMPLE_TRY GS. */
3803 static inline gimple_seq
3804 gimple_try_eval (gimple gs)
3806 return *gimple_try_eval_ptr (gs);
3810 /* Return a pointer to the sequence of statements used as the cleanup body for
3811 GIMPLE_TRY GS. */
3813 static inline gimple_seq *
3814 gimple_try_cleanup_ptr (gimple gs)
3816 gtry *try_stmt = as_a <gtry *> (gs);
3817 return &try_stmt->cleanup;
3821 /* Return the sequence of statements used as the cleanup body for
3822 GIMPLE_TRY GS. */
3824 static inline gimple_seq
3825 gimple_try_cleanup (gimple gs)
3827 return *gimple_try_cleanup_ptr (gs);
3831 /* Set the GIMPLE_TRY_CATCH_IS_CLEANUP flag. */
3833 static inline void
3834 gimple_try_set_catch_is_cleanup (gtry *g, bool catch_is_cleanup)
3836 gcc_gimple_checking_assert (gimple_try_kind (g) == GIMPLE_TRY_CATCH);
3837 if (catch_is_cleanup)
3838 g->subcode |= GIMPLE_TRY_CATCH_IS_CLEANUP;
3839 else
3840 g->subcode &= ~GIMPLE_TRY_CATCH_IS_CLEANUP;
3844 /* Set EVAL to be the sequence of statements to use as the body for
3845 GIMPLE_TRY TRY_STMT. */
3847 static inline void
3848 gimple_try_set_eval (gtry *try_stmt, gimple_seq eval)
3850 try_stmt->eval = eval;
3854 /* Set CLEANUP to be the sequence of statements to use as the cleanup
3855 body for GIMPLE_TRY TRY_STMT. */
3857 static inline void
3858 gimple_try_set_cleanup (gtry *try_stmt, gimple_seq cleanup)
3860 try_stmt->cleanup = cleanup;
3864 /* Return a pointer to the cleanup sequence for cleanup statement GS. */
3866 static inline gimple_seq *
3867 gimple_wce_cleanup_ptr (gimple gs)
3869 gimple_statement_wce *wce_stmt = as_a <gimple_statement_wce *> (gs);
3870 return &wce_stmt->cleanup;
3874 /* Return the cleanup sequence for cleanup statement GS. */
3876 static inline gimple_seq
3877 gimple_wce_cleanup (gimple gs)
3879 return *gimple_wce_cleanup_ptr (gs);
3883 /* Set CLEANUP to be the cleanup sequence for GS. */
3885 static inline void
3886 gimple_wce_set_cleanup (gimple gs, gimple_seq cleanup)
3888 gimple_statement_wce *wce_stmt = as_a <gimple_statement_wce *> (gs);
3889 wce_stmt->cleanup = cleanup;
3893 /* Return the CLEANUP_EH_ONLY flag for a WCE tuple. */
3895 static inline bool
3896 gimple_wce_cleanup_eh_only (const_gimple gs)
3898 GIMPLE_CHECK (gs, GIMPLE_WITH_CLEANUP_EXPR);
3899 return gs->subcode != 0;
3903 /* Set the CLEANUP_EH_ONLY flag for a WCE tuple. */
3905 static inline void
3906 gimple_wce_set_cleanup_eh_only (gimple gs, bool eh_only_p)
3908 GIMPLE_CHECK (gs, GIMPLE_WITH_CLEANUP_EXPR);
3909 gs->subcode = (unsigned int) eh_only_p;
3913 /* Return the maximum number of arguments supported by GIMPLE_PHI GS. */
3915 static inline unsigned
3916 gimple_phi_capacity (const_gimple gs)
3918 const gphi *phi_stmt = as_a <const gphi *> (gs);
3919 return phi_stmt->capacity;
3923 /* Return the number of arguments in GIMPLE_PHI GS. This must always
3924 be exactly the number of incoming edges for the basic block holding
3925 GS. */
3927 static inline unsigned
3928 gimple_phi_num_args (const_gimple gs)
3930 const gphi *phi_stmt = as_a <const gphi *> (gs);
3931 return phi_stmt->nargs;
3935 /* Return the SSA name created by GIMPLE_PHI GS. */
3937 static inline tree
3938 gimple_phi_result (const_gimple gs)
3940 const gphi *phi_stmt = as_a <const gphi *> (gs);
3941 return phi_stmt->result;
3944 /* Return a pointer to the SSA name created by GIMPLE_PHI GS. */
3946 static inline tree *
3947 gimple_phi_result_ptr (gimple gs)
3949 gphi *phi_stmt = as_a <gphi *> (gs);
3950 return &phi_stmt->result;
3953 /* Set RESULT to be the SSA name created by GIMPLE_PHI PHI. */
3955 static inline void
3956 gimple_phi_set_result (gphi *phi, tree result)
3958 phi->result = result;
3959 if (result && TREE_CODE (result) == SSA_NAME)
3960 SSA_NAME_DEF_STMT (result) = phi;
3964 /* Return the PHI argument corresponding to incoming edge INDEX for
3965 GIMPLE_PHI GS. */
3967 static inline struct phi_arg_d *
3968 gimple_phi_arg (gimple gs, unsigned index)
3970 gphi *phi_stmt = as_a <gphi *> (gs);
3971 gcc_gimple_checking_assert (index <= phi_stmt->capacity);
3972 return &(phi_stmt->args[index]);
3975 /* Set PHIARG to be the argument corresponding to incoming edge INDEX
3976 for GIMPLE_PHI PHI. */
3978 static inline void
3979 gimple_phi_set_arg (gphi *phi, unsigned index, struct phi_arg_d * phiarg)
3981 gcc_gimple_checking_assert (index <= phi->nargs);
3982 phi->args[index] = *phiarg;
3985 /* Return the PHI nodes for basic block BB, or NULL if there are no
3986 PHI nodes. */
3988 static inline gimple_seq
3989 phi_nodes (const_basic_block bb)
3991 gcc_checking_assert (!(bb->flags & BB_RTL));
3992 return bb->il.gimple.phi_nodes;
3995 /* Return a pointer to the PHI nodes for basic block BB. */
3997 static inline gimple_seq *
3998 phi_nodes_ptr (basic_block bb)
4000 gcc_checking_assert (!(bb->flags & BB_RTL));
4001 return &bb->il.gimple.phi_nodes;
4004 /* Return the tree operand for argument I of PHI node GS. */
4006 static inline tree
4007 gimple_phi_arg_def (gimple gs, size_t index)
4009 return gimple_phi_arg (gs, index)->def;
4013 /* Return a pointer to the tree operand for argument I of phi node PHI. */
4015 static inline tree *
4016 gimple_phi_arg_def_ptr (gphi *phi, size_t index)
4018 return &gimple_phi_arg (phi, index)->def;
4021 /* Return the edge associated with argument I of phi node PHI. */
4023 static inline edge
4024 gimple_phi_arg_edge (gphi *phi, size_t i)
4026 return EDGE_PRED (gimple_bb (phi), i);
4029 /* Return the source location of gimple argument I of phi node PHI. */
4031 static inline source_location
4032 gimple_phi_arg_location (gphi *phi, size_t i)
4034 return gimple_phi_arg (phi, i)->locus;
4037 /* Return the source location of the argument on edge E of phi node PHI. */
4039 static inline source_location
4040 gimple_phi_arg_location_from_edge (gphi *phi, edge e)
4042 return gimple_phi_arg (phi, e->dest_idx)->locus;
4045 /* Set the source location of gimple argument I of phi node PHI to LOC. */
4047 static inline void
4048 gimple_phi_arg_set_location (gphi *phi, size_t i, source_location loc)
4050 gimple_phi_arg (phi, i)->locus = loc;
4053 /* Return TRUE if argument I of phi node PHI has a location record. */
4055 static inline bool
4056 gimple_phi_arg_has_location (gphi *phi, size_t i)
4058 return gimple_phi_arg_location (phi, i) != UNKNOWN_LOCATION;
4062 /* Return the region number for GIMPLE_RESX RESX_STMT. */
4064 static inline int
4065 gimple_resx_region (const gresx *resx_stmt)
4067 return resx_stmt->region;
4070 /* Set REGION to be the region number for GIMPLE_RESX RESX_STMT. */
4072 static inline void
4073 gimple_resx_set_region (gresx *resx_stmt, int region)
4075 resx_stmt->region = region;
4078 /* Return the region number for GIMPLE_EH_DISPATCH EH_DISPATCH_STMT. */
4080 static inline int
4081 gimple_eh_dispatch_region (const geh_dispatch *eh_dispatch_stmt)
4083 return eh_dispatch_stmt->region;
4086 /* Set REGION to be the region number for GIMPLE_EH_DISPATCH
4087 EH_DISPATCH_STMT. */
4089 static inline void
4090 gimple_eh_dispatch_set_region (geh_dispatch *eh_dispatch_stmt, int region)
4092 eh_dispatch_stmt->region = region;
4095 /* Return the number of labels associated with the switch statement GS. */
4097 static inline unsigned
4098 gimple_switch_num_labels (const gswitch *gs)
4100 unsigned num_ops;
4101 GIMPLE_CHECK (gs, GIMPLE_SWITCH);
4102 num_ops = gimple_num_ops (gs);
4103 gcc_gimple_checking_assert (num_ops > 1);
4104 return num_ops - 1;
4108 /* Set NLABELS to be the number of labels for the switch statement GS. */
4110 static inline void
4111 gimple_switch_set_num_labels (gswitch *g, unsigned nlabels)
4113 GIMPLE_CHECK (g, GIMPLE_SWITCH);
4114 gimple_set_num_ops (g, nlabels + 1);
4118 /* Return the index variable used by the switch statement GS. */
4120 static inline tree
4121 gimple_switch_index (const gswitch *gs)
4123 return gimple_op (gs, 0);
4127 /* Return a pointer to the index variable for the switch statement GS. */
4129 static inline tree *
4130 gimple_switch_index_ptr (const gswitch *gs)
4132 return gimple_op_ptr (gs, 0);
4136 /* Set INDEX to be the index variable for switch statement GS. */
4138 static inline void
4139 gimple_switch_set_index (gswitch *gs, tree index)
4141 GIMPLE_CHECK (gs, GIMPLE_SWITCH);
4142 gcc_gimple_checking_assert (SSA_VAR_P (index) || CONSTANT_CLASS_P (index));
4143 gimple_set_op (gs, 0, index);
4147 /* Return the label numbered INDEX. The default label is 0, followed by any
4148 labels in a switch statement. */
4150 static inline tree
4151 gimple_switch_label (const gswitch *gs, unsigned index)
4153 GIMPLE_CHECK (gs, GIMPLE_SWITCH);
4154 gcc_gimple_checking_assert (gimple_num_ops (gs) > index + 1);
4155 return gimple_op (gs, index + 1);
4158 /* Set the label number INDEX to LABEL. 0 is always the default label. */
4160 static inline void
4161 gimple_switch_set_label (gswitch *gs, unsigned index, tree label)
4163 GIMPLE_CHECK (gs, GIMPLE_SWITCH);
4164 gcc_gimple_checking_assert (gimple_num_ops (gs) > index + 1
4165 && (label == NULL_TREE
4166 || TREE_CODE (label) == CASE_LABEL_EXPR));
4167 gimple_set_op (gs, index + 1, label);
4170 /* Return the default label for a switch statement. */
4172 static inline tree
4173 gimple_switch_default_label (const gswitch *gs)
4175 tree label = gimple_switch_label (gs, 0);
4176 gcc_checking_assert (!CASE_LOW (label) && !CASE_HIGH (label));
4177 return label;
4180 /* Set the default label for a switch statement. */
4182 static inline void
4183 gimple_switch_set_default_label (gswitch *gs, tree label)
4185 gcc_checking_assert (!CASE_LOW (label) && !CASE_HIGH (label));
4186 gimple_switch_set_label (gs, 0, label);
4189 /* Return true if GS is a GIMPLE_DEBUG statement. */
4191 static inline bool
4192 is_gimple_debug (const_gimple gs)
4194 return gimple_code (gs) == GIMPLE_DEBUG;
4197 /* Return true if S is a GIMPLE_DEBUG BIND statement. */
4199 static inline bool
4200 gimple_debug_bind_p (const_gimple s)
4202 if (is_gimple_debug (s))
4203 return s->subcode == GIMPLE_DEBUG_BIND;
4205 return false;
4208 /* Return the variable bound in a GIMPLE_DEBUG bind statement. */
4210 static inline tree
4211 gimple_debug_bind_get_var (gimple dbg)
4213 GIMPLE_CHECK (dbg, GIMPLE_DEBUG);
4214 gcc_gimple_checking_assert (gimple_debug_bind_p (dbg));
4215 return gimple_op (dbg, 0);
4218 /* Return the value bound to the variable in a GIMPLE_DEBUG bind
4219 statement. */
4221 static inline tree
4222 gimple_debug_bind_get_value (gimple dbg)
4224 GIMPLE_CHECK (dbg, GIMPLE_DEBUG);
4225 gcc_gimple_checking_assert (gimple_debug_bind_p (dbg));
4226 return gimple_op (dbg, 1);
4229 /* Return a pointer to the value bound to the variable in a
4230 GIMPLE_DEBUG bind statement. */
4232 static inline tree *
4233 gimple_debug_bind_get_value_ptr (gimple dbg)
4235 GIMPLE_CHECK (dbg, GIMPLE_DEBUG);
4236 gcc_gimple_checking_assert (gimple_debug_bind_p (dbg));
4237 return gimple_op_ptr (dbg, 1);
4240 /* Set the variable bound in a GIMPLE_DEBUG bind statement. */
4242 static inline void
4243 gimple_debug_bind_set_var (gimple dbg, tree var)
4245 GIMPLE_CHECK (dbg, GIMPLE_DEBUG);
4246 gcc_gimple_checking_assert (gimple_debug_bind_p (dbg));
4247 gimple_set_op (dbg, 0, var);
4250 /* Set the value bound to the variable in a GIMPLE_DEBUG bind
4251 statement. */
4253 static inline void
4254 gimple_debug_bind_set_value (gimple dbg, tree value)
4256 GIMPLE_CHECK (dbg, GIMPLE_DEBUG);
4257 gcc_gimple_checking_assert (gimple_debug_bind_p (dbg));
4258 gimple_set_op (dbg, 1, value);
4261 /* The second operand of a GIMPLE_DEBUG_BIND, when the value was
4262 optimized away. */
4263 #define GIMPLE_DEBUG_BIND_NOVALUE NULL_TREE /* error_mark_node */
4265 /* Remove the value bound to the variable in a GIMPLE_DEBUG bind
4266 statement. */
4268 static inline void
4269 gimple_debug_bind_reset_value (gimple dbg)
4271 GIMPLE_CHECK (dbg, GIMPLE_DEBUG);
4272 gcc_gimple_checking_assert (gimple_debug_bind_p (dbg));
4273 gimple_set_op (dbg, 1, GIMPLE_DEBUG_BIND_NOVALUE);
4276 /* Return true if the GIMPLE_DEBUG bind statement is bound to a
4277 value. */
4279 static inline bool
4280 gimple_debug_bind_has_value_p (gimple dbg)
4282 GIMPLE_CHECK (dbg, GIMPLE_DEBUG);
4283 gcc_gimple_checking_assert (gimple_debug_bind_p (dbg));
4284 return gimple_op (dbg, 1) != GIMPLE_DEBUG_BIND_NOVALUE;
4287 #undef GIMPLE_DEBUG_BIND_NOVALUE
4289 /* Return true if S is a GIMPLE_DEBUG SOURCE BIND statement. */
4291 static inline bool
4292 gimple_debug_source_bind_p (const_gimple s)
4294 if (is_gimple_debug (s))
4295 return s->subcode == GIMPLE_DEBUG_SOURCE_BIND;
4297 return false;
4300 /* Return the variable bound in a GIMPLE_DEBUG source bind statement. */
4302 static inline tree
4303 gimple_debug_source_bind_get_var (gimple dbg)
4305 GIMPLE_CHECK (dbg, GIMPLE_DEBUG);
4306 gcc_gimple_checking_assert (gimple_debug_source_bind_p (dbg));
4307 return gimple_op (dbg, 0);
4310 /* Return the value bound to the variable in a GIMPLE_DEBUG source bind
4311 statement. */
4313 static inline tree
4314 gimple_debug_source_bind_get_value (gimple dbg)
4316 GIMPLE_CHECK (dbg, GIMPLE_DEBUG);
4317 gcc_gimple_checking_assert (gimple_debug_source_bind_p (dbg));
4318 return gimple_op (dbg, 1);
4321 /* Return a pointer to the value bound to the variable in a
4322 GIMPLE_DEBUG source bind statement. */
4324 static inline tree *
4325 gimple_debug_source_bind_get_value_ptr (gimple dbg)
4327 GIMPLE_CHECK (dbg, GIMPLE_DEBUG);
4328 gcc_gimple_checking_assert (gimple_debug_source_bind_p (dbg));
4329 return gimple_op_ptr (dbg, 1);
4332 /* Set the variable bound in a GIMPLE_DEBUG source bind statement. */
4334 static inline void
4335 gimple_debug_source_bind_set_var (gimple dbg, tree var)
4337 GIMPLE_CHECK (dbg, GIMPLE_DEBUG);
4338 gcc_gimple_checking_assert (gimple_debug_source_bind_p (dbg));
4339 gimple_set_op (dbg, 0, var);
4342 /* Set the value bound to the variable in a GIMPLE_DEBUG source bind
4343 statement. */
4345 static inline void
4346 gimple_debug_source_bind_set_value (gimple dbg, tree value)
4348 GIMPLE_CHECK (dbg, GIMPLE_DEBUG);
4349 gcc_gimple_checking_assert (gimple_debug_source_bind_p (dbg));
4350 gimple_set_op (dbg, 1, value);
4353 /* Return the line number for EXPR, or return -1 if we have no line
4354 number information for it. */
4355 static inline int
4356 get_lineno (const_gimple stmt)
4358 location_t loc;
4360 if (!stmt)
4361 return -1;
4363 loc = gimple_location (stmt);
4364 if (loc == UNKNOWN_LOCATION)
4365 return -1;
4367 return LOCATION_LINE (loc);
4370 /* Return a pointer to the body for the OMP statement GS. */
4372 static inline gimple_seq *
4373 gimple_omp_body_ptr (gimple gs)
4375 return &static_cast <gimple_statement_omp *> (gs)->body;
4378 /* Return the body for the OMP statement GS. */
4380 static inline gimple_seq
4381 gimple_omp_body (gimple gs)
4383 return *gimple_omp_body_ptr (gs);
4386 /* Set BODY to be the body for the OMP statement GS. */
4388 static inline void
4389 gimple_omp_set_body (gimple gs, gimple_seq body)
4391 static_cast <gimple_statement_omp *> (gs)->body = body;
4395 /* Return the name associated with OMP_CRITICAL statement CRIT_STMT. */
4397 static inline tree
4398 gimple_omp_critical_name (const gomp_critical *crit_stmt)
4400 return crit_stmt->name;
4404 /* Return a pointer to the name associated with OMP critical statement GS. */
4406 static inline tree *
4407 gimple_omp_critical_name_ptr (gomp_critical *crit_stmt)
4409 return &crit_stmt->name;
4413 /* Set NAME to be the name associated with OMP critical statement GS. */
4415 static inline void
4416 gimple_omp_critical_set_name (gomp_critical *crit_stmt, tree name)
4418 crit_stmt->name = name;
4422 /* Return the kind of the OMP_FOR statemement G. */
4424 static inline int
4425 gimple_omp_for_kind (const_gimple g)
4427 GIMPLE_CHECK (g, GIMPLE_OMP_FOR);
4428 return (gimple_omp_subcode (g) & GF_OMP_FOR_KIND_MASK);
4432 /* Set the kind of the OMP_FOR statement G. */
4434 static inline void
4435 gimple_omp_for_set_kind (gomp_for *g, int kind)
4437 g->subcode = (g->subcode & ~GF_OMP_FOR_KIND_MASK)
4438 | (kind & GF_OMP_FOR_KIND_MASK);
4442 /* Return true if OMP_FOR statement G has the
4443 GF_OMP_FOR_COMBINED flag set. */
4445 static inline bool
4446 gimple_omp_for_combined_p (const_gimple g)
4448 GIMPLE_CHECK (g, GIMPLE_OMP_FOR);
4449 return (gimple_omp_subcode (g) & GF_OMP_FOR_COMBINED) != 0;
4453 /* Set the GF_OMP_FOR_COMBINED field in the OMP_FOR statement G depending on
4454 the boolean value of COMBINED_P. */
4456 static inline void
4457 gimple_omp_for_set_combined_p (gomp_for *g, bool combined_p)
4459 if (combined_p)
4460 g->subcode |= GF_OMP_FOR_COMBINED;
4461 else
4462 g->subcode &= ~GF_OMP_FOR_COMBINED;
4466 /* Return true if the OMP_FOR statement G has the
4467 GF_OMP_FOR_COMBINED_INTO flag set. */
4469 static inline bool
4470 gimple_omp_for_combined_into_p (const_gimple g)
4472 GIMPLE_CHECK (g, GIMPLE_OMP_FOR);
4473 return (gimple_omp_subcode (g) & GF_OMP_FOR_COMBINED_INTO) != 0;
4477 /* Set the GF_OMP_FOR_COMBINED_INTO field in the OMP_FOR statement G depending
4478 on the boolean value of COMBINED_P. */
4480 static inline void
4481 gimple_omp_for_set_combined_into_p (gomp_for *g, bool combined_p)
4483 if (combined_p)
4484 g->subcode |= GF_OMP_FOR_COMBINED_INTO;
4485 else
4486 g->subcode &= ~GF_OMP_FOR_COMBINED_INTO;
4490 /* Return the clauses associated with the OMP_FOR statement GS. */
4492 static inline tree
4493 gimple_omp_for_clauses (const_gimple gs)
4495 const gomp_for *omp_for_stmt = as_a <const gomp_for *> (gs);
4496 return omp_for_stmt->clauses;
4500 /* Return a pointer to the clauses associated with the OMP_FOR statement
4501 GS. */
4503 static inline tree *
4504 gimple_omp_for_clauses_ptr (gimple gs)
4506 gomp_for *omp_for_stmt = as_a <gomp_for *> (gs);
4507 return &omp_for_stmt->clauses;
4511 /* Set CLAUSES to be the list of clauses associated with the OMP_FOR statement
4512 GS. */
4514 static inline void
4515 gimple_omp_for_set_clauses (gimple gs, tree clauses)
4517 gomp_for *omp_for_stmt = as_a <gomp_for *> (gs);
4518 omp_for_stmt->clauses = clauses;
4522 /* Get the collapse count of the OMP_FOR statement GS. */
4524 static inline size_t
4525 gimple_omp_for_collapse (gimple gs)
4527 gomp_for *omp_for_stmt = as_a <gomp_for *> (gs);
4528 return omp_for_stmt->collapse;
4532 /* Return the condition code associated with the OMP_FOR statement GS. */
4534 static inline enum tree_code
4535 gimple_omp_for_cond (const_gimple gs, size_t i)
4537 const gomp_for *omp_for_stmt = as_a <const gomp_for *> (gs);
4538 gcc_gimple_checking_assert (i < omp_for_stmt->collapse);
4539 return omp_for_stmt->iter[i].cond;
4543 /* Set COND to be the condition code for the OMP_FOR statement GS. */
4545 static inline void
4546 gimple_omp_for_set_cond (gimple gs, size_t i, enum tree_code cond)
4548 gomp_for *omp_for_stmt = as_a <gomp_for *> (gs);
4549 gcc_gimple_checking_assert (TREE_CODE_CLASS (cond) == tcc_comparison
4550 && i < omp_for_stmt->collapse);
4551 omp_for_stmt->iter[i].cond = cond;
4555 /* Return the index variable for the OMP_FOR statement GS. */
4557 static inline tree
4558 gimple_omp_for_index (const_gimple gs, size_t i)
4560 const gomp_for *omp_for_stmt = as_a <const gomp_for *> (gs);
4561 gcc_gimple_checking_assert (i < omp_for_stmt->collapse);
4562 return omp_for_stmt->iter[i].index;
4566 /* Return a pointer to the index variable for the OMP_FOR statement GS. */
4568 static inline tree *
4569 gimple_omp_for_index_ptr (gimple gs, size_t i)
4571 gomp_for *omp_for_stmt = as_a <gomp_for *> (gs);
4572 gcc_gimple_checking_assert (i < omp_for_stmt->collapse);
4573 return &omp_for_stmt->iter[i].index;
4577 /* Set INDEX to be the index variable for the OMP_FOR statement GS. */
4579 static inline void
4580 gimple_omp_for_set_index (gimple gs, size_t i, tree index)
4582 gomp_for *omp_for_stmt = as_a <gomp_for *> (gs);
4583 gcc_gimple_checking_assert (i < omp_for_stmt->collapse);
4584 omp_for_stmt->iter[i].index = index;
4588 /* Return the initial value for the OMP_FOR statement GS. */
4590 static inline tree
4591 gimple_omp_for_initial (const_gimple gs, size_t i)
4593 const gomp_for *omp_for_stmt = as_a <const gomp_for *> (gs);
4594 gcc_gimple_checking_assert (i < omp_for_stmt->collapse);
4595 return omp_for_stmt->iter[i].initial;
4599 /* Return a pointer to the initial value for the OMP_FOR statement GS. */
4601 static inline tree *
4602 gimple_omp_for_initial_ptr (gimple gs, size_t i)
4604 gomp_for *omp_for_stmt = as_a <gomp_for *> (gs);
4605 gcc_gimple_checking_assert (i < omp_for_stmt->collapse);
4606 return &omp_for_stmt->iter[i].initial;
4610 /* Set INITIAL to be the initial value for the OMP_FOR statement GS. */
4612 static inline void
4613 gimple_omp_for_set_initial (gimple gs, size_t i, tree initial)
4615 gomp_for *omp_for_stmt = as_a <gomp_for *> (gs);
4616 gcc_gimple_checking_assert (i < omp_for_stmt->collapse);
4617 omp_for_stmt->iter[i].initial = initial;
4621 /* Return the final value for the OMP_FOR statement GS. */
4623 static inline tree
4624 gimple_omp_for_final (const_gimple gs, size_t i)
4626 const gomp_for *omp_for_stmt = as_a <const gomp_for *> (gs);
4627 gcc_gimple_checking_assert (i < omp_for_stmt->collapse);
4628 return omp_for_stmt->iter[i].final;
4632 /* Return a pointer to the final value for the OMP_FOR statement GS. */
4634 static inline tree *
4635 gimple_omp_for_final_ptr (gimple gs, size_t i)
4637 gomp_for *omp_for_stmt = as_a <gomp_for *> (gs);
4638 gcc_gimple_checking_assert (i < omp_for_stmt->collapse);
4639 return &omp_for_stmt->iter[i].final;
4643 /* Set FINAL to be the final value for the OMP_FOR statement GS. */
4645 static inline void
4646 gimple_omp_for_set_final (gimple gs, size_t i, tree final)
4648 gomp_for *omp_for_stmt = as_a <gomp_for *> (gs);
4649 gcc_gimple_checking_assert (i < omp_for_stmt->collapse);
4650 omp_for_stmt->iter[i].final = final;
4654 /* Return the increment value for the OMP_FOR statement GS. */
4656 static inline tree
4657 gimple_omp_for_incr (const_gimple gs, size_t i)
4659 const gomp_for *omp_for_stmt = as_a <const gomp_for *> (gs);
4660 gcc_gimple_checking_assert (i < omp_for_stmt->collapse);
4661 return omp_for_stmt->iter[i].incr;
4665 /* Return a pointer to the increment value for the OMP_FOR statement GS. */
4667 static inline tree *
4668 gimple_omp_for_incr_ptr (gimple gs, size_t i)
4670 gomp_for *omp_for_stmt = as_a <gomp_for *> (gs);
4671 gcc_gimple_checking_assert (i < omp_for_stmt->collapse);
4672 return &omp_for_stmt->iter[i].incr;
4676 /* Set INCR to be the increment value for the OMP_FOR statement GS. */
4678 static inline void
4679 gimple_omp_for_set_incr (gimple gs, size_t i, tree incr)
4681 gomp_for *omp_for_stmt = as_a <gomp_for *> (gs);
4682 gcc_gimple_checking_assert (i < omp_for_stmt->collapse);
4683 omp_for_stmt->iter[i].incr = incr;
4687 /* Return a pointer to the sequence of statements to execute before the OMP_FOR
4688 statement GS starts. */
4690 static inline gimple_seq *
4691 gimple_omp_for_pre_body_ptr (gimple gs)
4693 gomp_for *omp_for_stmt = as_a <gomp_for *> (gs);
4694 return &omp_for_stmt->pre_body;
4698 /* Return the sequence of statements to execute before the OMP_FOR
4699 statement GS starts. */
4701 static inline gimple_seq
4702 gimple_omp_for_pre_body (gimple gs)
4704 return *gimple_omp_for_pre_body_ptr (gs);
4708 /* Set PRE_BODY to be the sequence of statements to execute before the
4709 OMP_FOR statement GS starts. */
4711 static inline void
4712 gimple_omp_for_set_pre_body (gimple gs, gimple_seq pre_body)
4714 gomp_for *omp_for_stmt = as_a <gomp_for *> (gs);
4715 omp_for_stmt->pre_body = pre_body;
4719 /* Return the clauses associated with OMP_PARALLEL GS. */
4721 static inline tree
4722 gimple_omp_parallel_clauses (const_gimple gs)
4724 const gomp_parallel *omp_parallel_stmt = as_a <const gomp_parallel *> (gs);
4725 return omp_parallel_stmt->clauses;
4729 /* Return a pointer to the clauses associated with OMP_PARALLEL_STMT. */
4731 static inline tree *
4732 gimple_omp_parallel_clauses_ptr (gomp_parallel *omp_parallel_stmt)
4734 return &omp_parallel_stmt->clauses;
4738 /* Set CLAUSES to be the list of clauses associated with OMP_PARALLEL_STMT. */
4740 static inline void
4741 gimple_omp_parallel_set_clauses (gomp_parallel *omp_parallel_stmt,
4742 tree clauses)
4744 omp_parallel_stmt->clauses = clauses;
4748 /* Return the child function used to hold the body of OMP_PARALLEL_STMT. */
4750 static inline tree
4751 gimple_omp_parallel_child_fn (const gomp_parallel *omp_parallel_stmt)
4753 return omp_parallel_stmt->child_fn;
4756 /* Return a pointer to the child function used to hold the body of
4757 OMP_PARALLEL_STMT. */
4759 static inline tree *
4760 gimple_omp_parallel_child_fn_ptr (gomp_parallel *omp_parallel_stmt)
4762 return &omp_parallel_stmt->child_fn;
4766 /* Set CHILD_FN to be the child function for OMP_PARALLEL_STMT. */
4768 static inline void
4769 gimple_omp_parallel_set_child_fn (gomp_parallel *omp_parallel_stmt,
4770 tree child_fn)
4772 omp_parallel_stmt->child_fn = child_fn;
4776 /* Return the artificial argument used to send variables and values
4777 from the parent to the children threads in OMP_PARALLEL_STMT. */
4779 static inline tree
4780 gimple_omp_parallel_data_arg (const gomp_parallel *omp_parallel_stmt)
4782 return omp_parallel_stmt->data_arg;
4786 /* Return a pointer to the data argument for OMP_PARALLEL_STMT. */
4788 static inline tree *
4789 gimple_omp_parallel_data_arg_ptr (gomp_parallel *omp_parallel_stmt)
4791 return &omp_parallel_stmt->data_arg;
4795 /* Set DATA_ARG to be the data argument for OMP_PARALLEL_STMT. */
4797 static inline void
4798 gimple_omp_parallel_set_data_arg (gomp_parallel *omp_parallel_stmt,
4799 tree data_arg)
4801 omp_parallel_stmt->data_arg = data_arg;
4805 /* Return the clauses associated with OMP_TASK GS. */
4807 static inline tree
4808 gimple_omp_task_clauses (const_gimple gs)
4810 const gomp_task *omp_task_stmt = as_a <const gomp_task *> (gs);
4811 return omp_task_stmt->clauses;
4815 /* Return a pointer to the clauses associated with OMP_TASK GS. */
4817 static inline tree *
4818 gimple_omp_task_clauses_ptr (gimple gs)
4820 gomp_task *omp_task_stmt = as_a <gomp_task *> (gs);
4821 return &omp_task_stmt->clauses;
4825 /* Set CLAUSES to be the list of clauses associated with OMP_TASK
4826 GS. */
4828 static inline void
4829 gimple_omp_task_set_clauses (gimple gs, tree clauses)
4831 gomp_task *omp_task_stmt = as_a <gomp_task *> (gs);
4832 omp_task_stmt->clauses = clauses;
4836 /* Return the child function used to hold the body of OMP_TASK GS. */
4838 static inline tree
4839 gimple_omp_task_child_fn (const_gimple gs)
4841 const gomp_task *omp_task_stmt = as_a <const gomp_task *> (gs);
4842 return omp_task_stmt->child_fn;
4845 /* Return a pointer to the child function used to hold the body of
4846 OMP_TASK GS. */
4848 static inline tree *
4849 gimple_omp_task_child_fn_ptr (gimple gs)
4851 gomp_task *omp_task_stmt = as_a <gomp_task *> (gs);
4852 return &omp_task_stmt->child_fn;
4856 /* Set CHILD_FN to be the child function for OMP_TASK GS. */
4858 static inline void
4859 gimple_omp_task_set_child_fn (gimple gs, tree child_fn)
4861 gomp_task *omp_task_stmt = as_a <gomp_task *> (gs);
4862 omp_task_stmt->child_fn = child_fn;
4866 /* Return the artificial argument used to send variables and values
4867 from the parent to the children threads in OMP_TASK GS. */
4869 static inline tree
4870 gimple_omp_task_data_arg (const_gimple gs)
4872 const gomp_task *omp_task_stmt = as_a <const gomp_task *> (gs);
4873 return omp_task_stmt->data_arg;
4877 /* Return a pointer to the data argument for OMP_TASK GS. */
4879 static inline tree *
4880 gimple_omp_task_data_arg_ptr (gimple gs)
4882 gomp_task *omp_task_stmt = as_a <gomp_task *> (gs);
4883 return &omp_task_stmt->data_arg;
4887 /* Set DATA_ARG to be the data argument for OMP_TASK GS. */
4889 static inline void
4890 gimple_omp_task_set_data_arg (gimple gs, tree data_arg)
4892 gomp_task *omp_task_stmt = as_a <gomp_task *> (gs);
4893 omp_task_stmt->data_arg = data_arg;
4897 /* Return the clauses associated with OMP_TASK GS. */
4899 static inline tree
4900 gimple_omp_taskreg_clauses (const_gimple gs)
4902 const gimple_statement_omp_taskreg *omp_taskreg_stmt
4903 = as_a <const gimple_statement_omp_taskreg *> (gs);
4904 return omp_taskreg_stmt->clauses;
4908 /* Return a pointer to the clauses associated with OMP_TASK GS. */
4910 static inline tree *
4911 gimple_omp_taskreg_clauses_ptr (gimple gs)
4913 gimple_statement_omp_taskreg *omp_taskreg_stmt
4914 = as_a <gimple_statement_omp_taskreg *> (gs);
4915 return &omp_taskreg_stmt->clauses;
4919 /* Set CLAUSES to be the list of clauses associated with OMP_TASK
4920 GS. */
4922 static inline void
4923 gimple_omp_taskreg_set_clauses (gimple gs, tree clauses)
4925 gimple_statement_omp_taskreg *omp_taskreg_stmt
4926 = as_a <gimple_statement_omp_taskreg *> (gs);
4927 omp_taskreg_stmt->clauses = clauses;
4931 /* Return the child function used to hold the body of OMP_TASK GS. */
4933 static inline tree
4934 gimple_omp_taskreg_child_fn (const_gimple gs)
4936 const gimple_statement_omp_taskreg *omp_taskreg_stmt
4937 = as_a <const gimple_statement_omp_taskreg *> (gs);
4938 return omp_taskreg_stmt->child_fn;
4941 /* Return a pointer to the child function used to hold the body of
4942 OMP_TASK GS. */
4944 static inline tree *
4945 gimple_omp_taskreg_child_fn_ptr (gimple gs)
4947 gimple_statement_omp_taskreg *omp_taskreg_stmt
4948 = as_a <gimple_statement_omp_taskreg *> (gs);
4949 return &omp_taskreg_stmt->child_fn;
4953 /* Set CHILD_FN to be the child function for OMP_TASK GS. */
4955 static inline void
4956 gimple_omp_taskreg_set_child_fn (gimple gs, tree child_fn)
4958 gimple_statement_omp_taskreg *omp_taskreg_stmt
4959 = as_a <gimple_statement_omp_taskreg *> (gs);
4960 omp_taskreg_stmt->child_fn = child_fn;
4964 /* Return the artificial argument used to send variables and values
4965 from the parent to the children threads in OMP_TASK GS. */
4967 static inline tree
4968 gimple_omp_taskreg_data_arg (const_gimple gs)
4970 const gimple_statement_omp_taskreg *omp_taskreg_stmt
4971 = as_a <const gimple_statement_omp_taskreg *> (gs);
4972 return omp_taskreg_stmt->data_arg;
4976 /* Return a pointer to the data argument for OMP_TASK GS. */
4978 static inline tree *
4979 gimple_omp_taskreg_data_arg_ptr (gimple gs)
4981 gimple_statement_omp_taskreg *omp_taskreg_stmt
4982 = as_a <gimple_statement_omp_taskreg *> (gs);
4983 return &omp_taskreg_stmt->data_arg;
4987 /* Set DATA_ARG to be the data argument for OMP_TASK GS. */
4989 static inline void
4990 gimple_omp_taskreg_set_data_arg (gimple gs, tree data_arg)
4992 gimple_statement_omp_taskreg *omp_taskreg_stmt
4993 = as_a <gimple_statement_omp_taskreg *> (gs);
4994 omp_taskreg_stmt->data_arg = data_arg;
4998 /* Return the copy function used to hold the body of OMP_TASK GS. */
5000 static inline tree
5001 gimple_omp_task_copy_fn (const_gimple gs)
5003 const gomp_task *omp_task_stmt = as_a <const gomp_task *> (gs);
5004 return omp_task_stmt->copy_fn;
5007 /* Return a pointer to the copy function used to hold the body of
5008 OMP_TASK GS. */
5010 static inline tree *
5011 gimple_omp_task_copy_fn_ptr (gimple gs)
5013 gomp_task *omp_task_stmt = as_a <gomp_task *> (gs);
5014 return &omp_task_stmt->copy_fn;
5018 /* Set CHILD_FN to be the copy function for OMP_TASK GS. */
5020 static inline void
5021 gimple_omp_task_set_copy_fn (gimple gs, tree copy_fn)
5023 gomp_task *omp_task_stmt = as_a <gomp_task *> (gs);
5024 omp_task_stmt->copy_fn = copy_fn;
5028 /* Return size of the data block in bytes in OMP_TASK GS. */
5030 static inline tree
5031 gimple_omp_task_arg_size (const_gimple gs)
5033 const gomp_task *omp_task_stmt = as_a <const gomp_task *> (gs);
5034 return omp_task_stmt->arg_size;
5038 /* Return a pointer to the data block size for OMP_TASK GS. */
5040 static inline tree *
5041 gimple_omp_task_arg_size_ptr (gimple gs)
5043 gomp_task *omp_task_stmt = as_a <gomp_task *> (gs);
5044 return &omp_task_stmt->arg_size;
5048 /* Set ARG_SIZE to be the data block size for OMP_TASK GS. */
5050 static inline void
5051 gimple_omp_task_set_arg_size (gimple gs, tree arg_size)
5053 gomp_task *omp_task_stmt = as_a <gomp_task *> (gs);
5054 omp_task_stmt->arg_size = arg_size;
5058 /* Return align of the data block in bytes in OMP_TASK GS. */
5060 static inline tree
5061 gimple_omp_task_arg_align (const_gimple gs)
5063 const gomp_task *omp_task_stmt = as_a <const gomp_task *> (gs);
5064 return omp_task_stmt->arg_align;
5068 /* Return a pointer to the data block align for OMP_TASK GS. */
5070 static inline tree *
5071 gimple_omp_task_arg_align_ptr (gimple gs)
5073 gomp_task *omp_task_stmt = as_a <gomp_task *> (gs);
5074 return &omp_task_stmt->arg_align;
5078 /* Set ARG_SIZE to be the data block align for OMP_TASK GS. */
5080 static inline void
5081 gimple_omp_task_set_arg_align (gimple gs, tree arg_align)
5083 gomp_task *omp_task_stmt = as_a <gomp_task *> (gs);
5084 omp_task_stmt->arg_align = arg_align;
5088 /* Return the clauses associated with OMP_SINGLE GS. */
5090 static inline tree
5091 gimple_omp_single_clauses (const_gimple gs)
5093 const gomp_single *omp_single_stmt = as_a <const gomp_single *> (gs);
5094 return omp_single_stmt->clauses;
5098 /* Return a pointer to the clauses associated with OMP_SINGLE GS. */
5100 static inline tree *
5101 gimple_omp_single_clauses_ptr (gimple gs)
5103 gomp_single *omp_single_stmt = as_a <gomp_single *> (gs);
5104 return &omp_single_stmt->clauses;
5108 /* Set CLAUSES to be the clauses associated with OMP_SINGLE_STMT. */
5110 static inline void
5111 gimple_omp_single_set_clauses (gomp_single *omp_single_stmt, tree clauses)
5113 omp_single_stmt->clauses = clauses;
5117 /* Return the clauses associated with OMP_TARGET GS. */
5119 static inline tree
5120 gimple_omp_target_clauses (const_gimple gs)
5122 const gomp_target *omp_target_stmt = as_a <const gomp_target *> (gs);
5123 return omp_target_stmt->clauses;
5127 /* Return a pointer to the clauses associated with OMP_TARGET GS. */
5129 static inline tree *
5130 gimple_omp_target_clauses_ptr (gimple gs)
5132 gomp_target *omp_target_stmt = as_a <gomp_target *> (gs);
5133 return &omp_target_stmt->clauses;
5137 /* Set CLAUSES to be the clauses associated with OMP_TARGET_STMT. */
5139 static inline void
5140 gimple_omp_target_set_clauses (gomp_target *omp_target_stmt,
5141 tree clauses)
5143 omp_target_stmt->clauses = clauses;
5147 /* Return the kind of the OMP_TARGET G. */
5149 static inline int
5150 gimple_omp_target_kind (const_gimple g)
5152 GIMPLE_CHECK (g, GIMPLE_OMP_TARGET);
5153 return (gimple_omp_subcode (g) & GF_OMP_TARGET_KIND_MASK);
5157 /* Set the kind of the OMP_TARGET G. */
5159 static inline void
5160 gimple_omp_target_set_kind (gomp_target *g, int kind)
5162 g->subcode = (g->subcode & ~GF_OMP_TARGET_KIND_MASK)
5163 | (kind & GF_OMP_TARGET_KIND_MASK);
5167 /* Return the child function used to hold the body of OMP_TARGET_STMT. */
5169 static inline tree
5170 gimple_omp_target_child_fn (const gomp_target *omp_target_stmt)
5172 return omp_target_stmt->child_fn;
5175 /* Return a pointer to the child function used to hold the body of
5176 OMP_TARGET_STMT. */
5178 static inline tree *
5179 gimple_omp_target_child_fn_ptr (gomp_target *omp_target_stmt)
5181 return &omp_target_stmt->child_fn;
5185 /* Set CHILD_FN to be the child function for OMP_TARGET_STMT. */
5187 static inline void
5188 gimple_omp_target_set_child_fn (gomp_target *omp_target_stmt,
5189 tree child_fn)
5191 omp_target_stmt->child_fn = child_fn;
5195 /* Return the artificial argument used to send variables and values
5196 from the parent to the children threads in OMP_TARGET_STMT. */
5198 static inline tree
5199 gimple_omp_target_data_arg (const gomp_target *omp_target_stmt)
5201 return omp_target_stmt->data_arg;
5205 /* Return a pointer to the data argument for OMP_TARGET GS. */
5207 static inline tree *
5208 gimple_omp_target_data_arg_ptr (gomp_target *omp_target_stmt)
5210 return &omp_target_stmt->data_arg;
5214 /* Set DATA_ARG to be the data argument for OMP_TARGET_STMT. */
5216 static inline void
5217 gimple_omp_target_set_data_arg (gomp_target *omp_target_stmt,
5218 tree data_arg)
5220 omp_target_stmt->data_arg = data_arg;
5224 /* Return the clauses associated with OMP_TEAMS GS. */
5226 static inline tree
5227 gimple_omp_teams_clauses (const_gimple gs)
5229 const gomp_teams *omp_teams_stmt = as_a <const gomp_teams *> (gs);
5230 return omp_teams_stmt->clauses;
5234 /* Return a pointer to the clauses associated with OMP_TEAMS GS. */
5236 static inline tree *
5237 gimple_omp_teams_clauses_ptr (gimple gs)
5239 gomp_teams *omp_teams_stmt = as_a <gomp_teams *> (gs);
5240 return &omp_teams_stmt->clauses;
5244 /* Set CLAUSES to be the clauses associated with OMP_TEAMS_STMT. */
5246 static inline void
5247 gimple_omp_teams_set_clauses (gomp_teams *omp_teams_stmt, tree clauses)
5249 omp_teams_stmt->clauses = clauses;
5253 /* Return the clauses associated with OMP_SECTIONS GS. */
5255 static inline tree
5256 gimple_omp_sections_clauses (const_gimple gs)
5258 const gomp_sections *omp_sections_stmt = as_a <const gomp_sections *> (gs);
5259 return omp_sections_stmt->clauses;
5263 /* Return a pointer to the clauses associated with OMP_SECTIONS GS. */
5265 static inline tree *
5266 gimple_omp_sections_clauses_ptr (gimple gs)
5268 gomp_sections *omp_sections_stmt = as_a <gomp_sections *> (gs);
5269 return &omp_sections_stmt->clauses;
5273 /* Set CLAUSES to be the set of clauses associated with OMP_SECTIONS
5274 GS. */
5276 static inline void
5277 gimple_omp_sections_set_clauses (gimple gs, tree clauses)
5279 gomp_sections *omp_sections_stmt = as_a <gomp_sections *> (gs);
5280 omp_sections_stmt->clauses = clauses;
5284 /* Return the control variable associated with the GIMPLE_OMP_SECTIONS
5285 in GS. */
5287 static inline tree
5288 gimple_omp_sections_control (const_gimple gs)
5290 const gomp_sections *omp_sections_stmt = as_a <const gomp_sections *> (gs);
5291 return omp_sections_stmt->control;
5295 /* Return a pointer to the clauses associated with the GIMPLE_OMP_SECTIONS
5296 GS. */
5298 static inline tree *
5299 gimple_omp_sections_control_ptr (gimple gs)
5301 gomp_sections *omp_sections_stmt = as_a <gomp_sections *> (gs);
5302 return &omp_sections_stmt->control;
5306 /* Set CONTROL to be the set of clauses associated with the
5307 GIMPLE_OMP_SECTIONS in GS. */
5309 static inline void
5310 gimple_omp_sections_set_control (gimple gs, tree control)
5312 gomp_sections *omp_sections_stmt = as_a <gomp_sections *> (gs);
5313 omp_sections_stmt->control = control;
5317 /* Set the value being stored in an atomic store. */
5319 static inline void
5320 gimple_omp_atomic_store_set_val (gomp_atomic_store *store_stmt, tree val)
5322 store_stmt->val = val;
5326 /* Return the value being stored in an atomic store. */
5328 static inline tree
5329 gimple_omp_atomic_store_val (const gomp_atomic_store *store_stmt)
5331 return store_stmt->val;
5335 /* Return a pointer to the value being stored in an atomic store. */
5337 static inline tree *
5338 gimple_omp_atomic_store_val_ptr (gomp_atomic_store *store_stmt)
5340 return &store_stmt->val;
5344 /* Set the LHS of an atomic load. */
5346 static inline void
5347 gimple_omp_atomic_load_set_lhs (gomp_atomic_load *load_stmt, tree lhs)
5349 load_stmt->lhs = lhs;
5353 /* Get the LHS of an atomic load. */
5355 static inline tree
5356 gimple_omp_atomic_load_lhs (const gomp_atomic_load *load_stmt)
5358 return load_stmt->lhs;
5362 /* Return a pointer to the LHS of an atomic load. */
5364 static inline tree *
5365 gimple_omp_atomic_load_lhs_ptr (gomp_atomic_load *load_stmt)
5367 return &load_stmt->lhs;
5371 /* Set the RHS of an atomic load. */
5373 static inline void
5374 gimple_omp_atomic_load_set_rhs (gomp_atomic_load *load_stmt, tree rhs)
5376 load_stmt->rhs = rhs;
5380 /* Get the RHS of an atomic load. */
5382 static inline tree
5383 gimple_omp_atomic_load_rhs (const gomp_atomic_load *load_stmt)
5385 return load_stmt->rhs;
5389 /* Return a pointer to the RHS of an atomic load. */
5391 static inline tree *
5392 gimple_omp_atomic_load_rhs_ptr (gomp_atomic_load *load_stmt)
5394 return &load_stmt->rhs;
5398 /* Get the definition of the control variable in a GIMPLE_OMP_CONTINUE. */
5400 static inline tree
5401 gimple_omp_continue_control_def (const gomp_continue *cont_stmt)
5403 return cont_stmt->control_def;
5406 /* The same as above, but return the address. */
5408 static inline tree *
5409 gimple_omp_continue_control_def_ptr (gomp_continue *cont_stmt)
5411 return &cont_stmt->control_def;
5414 /* Set the definition of the control variable in a GIMPLE_OMP_CONTINUE. */
5416 static inline void
5417 gimple_omp_continue_set_control_def (gomp_continue *cont_stmt, tree def)
5419 cont_stmt->control_def = def;
5423 /* Get the use of the control variable in a GIMPLE_OMP_CONTINUE. */
5425 static inline tree
5426 gimple_omp_continue_control_use (const gomp_continue *cont_stmt)
5428 return cont_stmt->control_use;
5432 /* The same as above, but return the address. */
5434 static inline tree *
5435 gimple_omp_continue_control_use_ptr (gomp_continue *cont_stmt)
5437 return &cont_stmt->control_use;
5441 /* Set the use of the control variable in a GIMPLE_OMP_CONTINUE. */
5443 static inline void
5444 gimple_omp_continue_set_control_use (gomp_continue *cont_stmt, tree use)
5446 cont_stmt->control_use = use;
5449 /* Return a pointer to the body for the GIMPLE_TRANSACTION statement
5450 TRANSACTION_STMT. */
5452 static inline gimple_seq *
5453 gimple_transaction_body_ptr (gtransaction *transaction_stmt)
5455 return &transaction_stmt->body;
5458 /* Return the body for the GIMPLE_TRANSACTION statement TRANSACTION_STMT. */
5460 static inline gimple_seq
5461 gimple_transaction_body (gtransaction *transaction_stmt)
5463 return *gimple_transaction_body_ptr (transaction_stmt);
5466 /* Return the label associated with a GIMPLE_TRANSACTION. */
5468 static inline tree
5469 gimple_transaction_label (const gtransaction *transaction_stmt)
5471 return transaction_stmt->label;
5474 static inline tree *
5475 gimple_transaction_label_ptr (gtransaction *transaction_stmt)
5477 return &transaction_stmt->label;
5480 /* Return the subcode associated with a GIMPLE_TRANSACTION. */
5482 static inline unsigned int
5483 gimple_transaction_subcode (const gtransaction *transaction_stmt)
5485 return transaction_stmt->subcode;
5488 /* Set BODY to be the body for the GIMPLE_TRANSACTION statement
5489 TRANSACTION_STMT. */
5491 static inline void
5492 gimple_transaction_set_body (gtransaction *transaction_stmt,
5493 gimple_seq body)
5495 transaction_stmt->body = body;
5498 /* Set the label associated with a GIMPLE_TRANSACTION. */
5500 static inline void
5501 gimple_transaction_set_label (gtransaction *transaction_stmt, tree label)
5503 transaction_stmt->label = label;
5506 /* Set the subcode associated with a GIMPLE_TRANSACTION. */
5508 static inline void
5509 gimple_transaction_set_subcode (gtransaction *transaction_stmt,
5510 unsigned int subcode)
5512 transaction_stmt->subcode = subcode;
5516 /* Return a pointer to the return value for GIMPLE_RETURN GS. */
5518 static inline tree *
5519 gimple_return_retval_ptr (const greturn *gs)
5521 return gimple_op_ptr (gs, 0);
5524 /* Return the return value for GIMPLE_RETURN GS. */
5526 static inline tree
5527 gimple_return_retval (const greturn *gs)
5529 return gimple_op (gs, 0);
5533 /* Set RETVAL to be the return value for GIMPLE_RETURN GS. */
5535 static inline void
5536 gimple_return_set_retval (greturn *gs, tree retval)
5538 gimple_set_op (gs, 0, retval);
5542 /* Return the return bounds for GIMPLE_RETURN GS. */
5544 static inline tree
5545 gimple_return_retbnd (const_gimple gs)
5547 GIMPLE_CHECK (gs, GIMPLE_RETURN);
5548 return gimple_op (gs, 1);
5552 /* Set RETVAL to be the return bounds for GIMPLE_RETURN GS. */
5554 static inline void
5555 gimple_return_set_retbnd (gimple gs, tree retval)
5557 GIMPLE_CHECK (gs, GIMPLE_RETURN);
5558 gimple_set_op (gs, 1, retval);
5562 /* Returns true when the gimple statement STMT is any of the OMP types. */
5564 #define CASE_GIMPLE_OMP \
5565 case GIMPLE_OMP_PARALLEL: \
5566 case GIMPLE_OMP_TASK: \
5567 case GIMPLE_OMP_FOR: \
5568 case GIMPLE_OMP_SECTIONS: \
5569 case GIMPLE_OMP_SECTIONS_SWITCH: \
5570 case GIMPLE_OMP_SINGLE: \
5571 case GIMPLE_OMP_TARGET: \
5572 case GIMPLE_OMP_TEAMS: \
5573 case GIMPLE_OMP_SECTION: \
5574 case GIMPLE_OMP_MASTER: \
5575 case GIMPLE_OMP_TASKGROUP: \
5576 case GIMPLE_OMP_ORDERED: \
5577 case GIMPLE_OMP_CRITICAL: \
5578 case GIMPLE_OMP_RETURN: \
5579 case GIMPLE_OMP_ATOMIC_LOAD: \
5580 case GIMPLE_OMP_ATOMIC_STORE: \
5581 case GIMPLE_OMP_CONTINUE
5583 static inline bool
5584 is_gimple_omp (const_gimple stmt)
5586 switch (gimple_code (stmt))
5588 CASE_GIMPLE_OMP:
5589 return true;
5590 default:
5591 return false;
5595 /* Return true if the OMP gimple statement STMT is any of the OpenACC types
5596 specifically. */
5598 static inline bool
5599 is_gimple_omp_oacc (const_gimple stmt)
5601 gcc_assert (is_gimple_omp (stmt));
5602 switch (gimple_code (stmt))
5604 case GIMPLE_OMP_FOR:
5605 switch (gimple_omp_for_kind (stmt))
5607 case GF_OMP_FOR_KIND_OACC_LOOP:
5608 return true;
5609 default:
5610 return false;
5612 case GIMPLE_OMP_TARGET:
5613 switch (gimple_omp_target_kind (stmt))
5615 case GF_OMP_TARGET_KIND_OACC_PARALLEL:
5616 case GF_OMP_TARGET_KIND_OACC_KERNELS:
5617 case GF_OMP_TARGET_KIND_OACC_DATA:
5618 case GF_OMP_TARGET_KIND_OACC_UPDATE:
5619 case GF_OMP_TARGET_KIND_OACC_ENTER_EXIT_DATA:
5620 return true;
5621 default:
5622 return false;
5624 default:
5625 return false;
5630 /* Return true if the OMP gimple statement STMT is offloaded. */
5632 static inline bool
5633 is_gimple_omp_offloaded (const_gimple stmt)
5635 gcc_assert (is_gimple_omp (stmt));
5636 switch (gimple_code (stmt))
5638 case GIMPLE_OMP_TARGET:
5639 switch (gimple_omp_target_kind (stmt))
5641 case GF_OMP_TARGET_KIND_REGION:
5642 case GF_OMP_TARGET_KIND_OACC_PARALLEL:
5643 case GF_OMP_TARGET_KIND_OACC_KERNELS:
5644 return true;
5645 default:
5646 return false;
5648 default:
5649 return false;
5654 /* Returns TRUE if statement G is a GIMPLE_NOP. */
5656 static inline bool
5657 gimple_nop_p (const_gimple g)
5659 return gimple_code (g) == GIMPLE_NOP;
5663 /* Return true if GS is a GIMPLE_RESX. */
5665 static inline bool
5666 is_gimple_resx (const_gimple gs)
5668 return gimple_code (gs) == GIMPLE_RESX;
5671 /* Return the predictor of GIMPLE_PREDICT statement GS. */
5673 static inline enum br_predictor
5674 gimple_predict_predictor (gimple gs)
5676 GIMPLE_CHECK (gs, GIMPLE_PREDICT);
5677 return (enum br_predictor) (gs->subcode & ~GF_PREDICT_TAKEN);
5681 /* Set the predictor of GIMPLE_PREDICT statement GS to PREDICT. */
5683 static inline void
5684 gimple_predict_set_predictor (gimple gs, enum br_predictor predictor)
5686 GIMPLE_CHECK (gs, GIMPLE_PREDICT);
5687 gs->subcode = (gs->subcode & GF_PREDICT_TAKEN)
5688 | (unsigned) predictor;
5692 /* Return the outcome of GIMPLE_PREDICT statement GS. */
5694 static inline enum prediction
5695 gimple_predict_outcome (gimple gs)
5697 GIMPLE_CHECK (gs, GIMPLE_PREDICT);
5698 return (gs->subcode & GF_PREDICT_TAKEN) ? TAKEN : NOT_TAKEN;
5702 /* Set the outcome of GIMPLE_PREDICT statement GS to OUTCOME. */
5704 static inline void
5705 gimple_predict_set_outcome (gimple gs, enum prediction outcome)
5707 GIMPLE_CHECK (gs, GIMPLE_PREDICT);
5708 if (outcome == TAKEN)
5709 gs->subcode |= GF_PREDICT_TAKEN;
5710 else
5711 gs->subcode &= ~GF_PREDICT_TAKEN;
5715 /* Return the type of the main expression computed by STMT. Return
5716 void_type_node if the statement computes nothing. */
5718 static inline tree
5719 gimple_expr_type (const_gimple stmt)
5721 enum gimple_code code = gimple_code (stmt);
5722 /* In general we want to pass out a type that can be substituted
5723 for both the RHS and the LHS types if there is a possibly
5724 useless conversion involved. That means returning the
5725 original RHS type as far as we can reconstruct it. */
5726 if (code == GIMPLE_CALL)
5728 const gcall *call_stmt = as_a <const gcall *> (stmt);
5729 if (gimple_call_internal_p (call_stmt)
5730 && gimple_call_internal_fn (call_stmt) == IFN_MASK_STORE)
5731 return TREE_TYPE (gimple_call_arg (call_stmt, 3));
5732 else
5733 return gimple_call_return_type (call_stmt);
5735 else if (code == GIMPLE_ASSIGN)
5737 if (gimple_assign_rhs_code (stmt) == POINTER_PLUS_EXPR)
5738 return TREE_TYPE (gimple_assign_rhs1 (stmt));
5739 else
5740 /* As fallback use the type of the LHS. */
5741 return TREE_TYPE (gimple_get_lhs (stmt));
5743 else if (code == GIMPLE_COND)
5744 return boolean_type_node;
5745 else
5746 return void_type_node;
5749 /* Enum and arrays used for allocation stats. Keep in sync with
5750 gimple.c:gimple_alloc_kind_names. */
5751 enum gimple_alloc_kind
5753 gimple_alloc_kind_assign, /* Assignments. */
5754 gimple_alloc_kind_phi, /* PHI nodes. */
5755 gimple_alloc_kind_cond, /* Conditionals. */
5756 gimple_alloc_kind_rest, /* Everything else. */
5757 gimple_alloc_kind_all
5760 extern int gimple_alloc_counts[];
5761 extern int gimple_alloc_sizes[];
5763 /* Return the allocation kind for a given stmt CODE. */
5764 static inline enum gimple_alloc_kind
5765 gimple_alloc_kind (enum gimple_code code)
5767 switch (code)
5769 case GIMPLE_ASSIGN:
5770 return gimple_alloc_kind_assign;
5771 case GIMPLE_PHI:
5772 return gimple_alloc_kind_phi;
5773 case GIMPLE_COND:
5774 return gimple_alloc_kind_cond;
5775 default:
5776 return gimple_alloc_kind_rest;
5780 /* Return true if a location should not be emitted for this statement
5781 by annotate_all_with_location. */
5783 static inline bool
5784 gimple_do_not_emit_location_p (gimple g)
5786 return gimple_plf (g, GF_PLF_1);
5789 /* Mark statement G so a location will not be emitted by
5790 annotate_one_with_location. */
5792 static inline void
5793 gimple_set_do_not_emit_location (gimple g)
5795 /* The PLF flags are initialized to 0 when a new tuple is created,
5796 so no need to initialize it anywhere. */
5797 gimple_set_plf (g, GF_PLF_1, true);
5801 /* Macros for showing usage statistics. */
5802 #define SCALE(x) ((unsigned long) ((x) < 1024*10 \
5803 ? (x) \
5804 : ((x) < 1024*1024*10 \
5805 ? (x) / 1024 \
5806 : (x) / (1024*1024))))
5808 #define LABEL(x) ((x) < 1024*10 ? 'b' : ((x) < 1024*1024*10 ? 'k' : 'M'))
5810 #endif /* GCC_GIMPLE_H */