Update ChangeLog and version files for release
[official-gcc.git] / gcc / gimple.h
blob95e4fc8fb33d679916f68291f7e6276a8cc71515
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, build_fold_addr_expr_loc (gimple_location (gs), decl));
2773 /* Set internal function FN to be the function called by call statement CALL_STMT. */
2775 static inline void
2776 gimple_call_set_internal_fn (gcall *call_stmt, enum internal_fn fn)
2778 gcc_gimple_checking_assert (gimple_call_internal_p (call_stmt));
2779 call_stmt->u.internal_fn = fn;
2783 /* If a given GIMPLE_CALL's callee is a FUNCTION_DECL, return it.
2784 Otherwise return NULL. This function is analogous to
2785 get_callee_fndecl in tree land. */
2787 static inline tree
2788 gimple_call_fndecl (const_gimple gs)
2790 return gimple_call_addr_fndecl (gimple_call_fn (gs));
2794 /* Return the type returned by call statement GS. */
2796 static inline tree
2797 gimple_call_return_type (const gcall *gs)
2799 tree type = gimple_call_fntype (gs);
2801 if (type == NULL_TREE)
2802 return TREE_TYPE (gimple_call_lhs (gs));
2804 /* The type returned by a function is the type of its
2805 function type. */
2806 return TREE_TYPE (type);
2810 /* Return the static chain for call statement GS. */
2812 static inline tree
2813 gimple_call_chain (const_gimple gs)
2815 GIMPLE_CHECK (gs, GIMPLE_CALL);
2816 return gimple_op (gs, 2);
2820 /* Return a pointer to the static chain for call statement CALL_STMT. */
2822 static inline tree *
2823 gimple_call_chain_ptr (const gcall *call_stmt)
2825 return gimple_op_ptr (call_stmt, 2);
2828 /* Set CHAIN to be the static chain for call statement CALL_STMT. */
2830 static inline void
2831 gimple_call_set_chain (gcall *call_stmt, tree chain)
2833 gimple_set_op (call_stmt, 2, chain);
2837 /* Return the number of arguments used by call statement GS. */
2839 static inline unsigned
2840 gimple_call_num_args (const_gimple gs)
2842 unsigned num_ops;
2843 GIMPLE_CHECK (gs, GIMPLE_CALL);
2844 num_ops = gimple_num_ops (gs);
2845 return num_ops - 3;
2849 /* Return the argument at position INDEX for call statement GS. */
2851 static inline tree
2852 gimple_call_arg (const_gimple gs, unsigned index)
2854 GIMPLE_CHECK (gs, GIMPLE_CALL);
2855 return gimple_op (gs, index + 3);
2859 /* Return a pointer to the argument at position INDEX for call
2860 statement GS. */
2862 static inline tree *
2863 gimple_call_arg_ptr (const_gimple gs, unsigned index)
2865 GIMPLE_CHECK (gs, GIMPLE_CALL);
2866 return gimple_op_ptr (gs, index + 3);
2870 /* Set ARG to be the argument at position INDEX for call statement GS. */
2872 static inline void
2873 gimple_call_set_arg (gimple gs, unsigned index, tree arg)
2875 GIMPLE_CHECK (gs, GIMPLE_CALL);
2876 gimple_set_op (gs, index + 3, arg);
2880 /* If TAIL_P is true, mark call statement S as being a tail call
2881 (i.e., a call just before the exit of a function). These calls are
2882 candidate for tail call optimization. */
2884 static inline void
2885 gimple_call_set_tail (gcall *s, bool tail_p)
2887 if (tail_p)
2888 s->subcode |= GF_CALL_TAILCALL;
2889 else
2890 s->subcode &= ~GF_CALL_TAILCALL;
2894 /* Return true if GIMPLE_CALL S is marked as a tail call. */
2896 static inline bool
2897 gimple_call_tail_p (gcall *s)
2899 return (s->subcode & GF_CALL_TAILCALL) != 0;
2903 /* If RETURN_SLOT_OPT_P is true mark GIMPLE_CALL S as valid for return
2904 slot optimization. This transformation uses the target of the call
2905 expansion as the return slot for calls that return in memory. */
2907 static inline void
2908 gimple_call_set_return_slot_opt (gcall *s, bool return_slot_opt_p)
2910 if (return_slot_opt_p)
2911 s->subcode |= GF_CALL_RETURN_SLOT_OPT;
2912 else
2913 s->subcode &= ~GF_CALL_RETURN_SLOT_OPT;
2917 /* Return true if S is marked for return slot optimization. */
2919 static inline bool
2920 gimple_call_return_slot_opt_p (gcall *s)
2922 return (s->subcode & GF_CALL_RETURN_SLOT_OPT) != 0;
2926 /* If FROM_THUNK_P is true, mark GIMPLE_CALL S as being the jump from a
2927 thunk to the thunked-to function. */
2929 static inline void
2930 gimple_call_set_from_thunk (gcall *s, bool from_thunk_p)
2932 if (from_thunk_p)
2933 s->subcode |= GF_CALL_FROM_THUNK;
2934 else
2935 s->subcode &= ~GF_CALL_FROM_THUNK;
2939 /* Return true if GIMPLE_CALL S is a jump from a thunk. */
2941 static inline bool
2942 gimple_call_from_thunk_p (gcall *s)
2944 return (s->subcode & GF_CALL_FROM_THUNK) != 0;
2948 /* If PASS_ARG_PACK_P is true, GIMPLE_CALL S is a stdarg call that needs the
2949 argument pack in its argument list. */
2951 static inline void
2952 gimple_call_set_va_arg_pack (gcall *s, bool pass_arg_pack_p)
2954 if (pass_arg_pack_p)
2955 s->subcode |= GF_CALL_VA_ARG_PACK;
2956 else
2957 s->subcode &= ~GF_CALL_VA_ARG_PACK;
2961 /* Return true if GIMPLE_CALL S is a stdarg call that needs the
2962 argument pack in its argument list. */
2964 static inline bool
2965 gimple_call_va_arg_pack_p (gcall *s)
2967 return (s->subcode & GF_CALL_VA_ARG_PACK) != 0;
2971 /* Return true if S is a noreturn call. */
2973 static inline bool
2974 gimple_call_noreturn_p (gimple s)
2976 GIMPLE_CHECK (s, GIMPLE_CALL);
2977 return (gimple_call_flags (s) & ECF_NORETURN) != 0;
2981 /* If NOTHROW_P is true, GIMPLE_CALL S is a call that is known to not throw
2982 even if the called function can throw in other cases. */
2984 static inline void
2985 gimple_call_set_nothrow (gcall *s, bool nothrow_p)
2987 if (nothrow_p)
2988 s->subcode |= GF_CALL_NOTHROW;
2989 else
2990 s->subcode &= ~GF_CALL_NOTHROW;
2993 /* Return true if S is a nothrow call. */
2995 static inline bool
2996 gimple_call_nothrow_p (gcall *s)
2998 return (gimple_call_flags (s) & ECF_NOTHROW) != 0;
3001 /* If FOR_VAR is true, GIMPLE_CALL S is a call to builtin_alloca that
3002 is known to be emitted for VLA objects. Those are wrapped by
3003 stack_save/stack_restore calls and hence can't lead to unbounded
3004 stack growth even when they occur in loops. */
3006 static inline void
3007 gimple_call_set_alloca_for_var (gcall *s, bool for_var)
3009 if (for_var)
3010 s->subcode |= GF_CALL_ALLOCA_FOR_VAR;
3011 else
3012 s->subcode &= ~GF_CALL_ALLOCA_FOR_VAR;
3015 /* Return true of S is a call to builtin_alloca emitted for VLA objects. */
3017 static inline bool
3018 gimple_call_alloca_for_var_p (gcall *s)
3020 return (s->subcode & GF_CALL_ALLOCA_FOR_VAR) != 0;
3023 /* Copy all the GF_CALL_* flags from ORIG_CALL to DEST_CALL. */
3025 static inline void
3026 gimple_call_copy_flags (gcall *dest_call, gcall *orig_call)
3028 dest_call->subcode = orig_call->subcode;
3032 /* Return a pointer to the points-to solution for the set of call-used
3033 variables of the call CALL_STMT. */
3035 static inline struct pt_solution *
3036 gimple_call_use_set (gcall *call_stmt)
3038 return &call_stmt->call_used;
3042 /* Return a pointer to the points-to solution for the set of call-used
3043 variables of the call CALL_STMT. */
3045 static inline struct pt_solution *
3046 gimple_call_clobber_set (gcall *call_stmt)
3048 return &call_stmt->call_clobbered;
3052 /* Returns true if this is a GIMPLE_ASSIGN or a GIMPLE_CALL with a
3053 non-NULL lhs. */
3055 static inline bool
3056 gimple_has_lhs (gimple stmt)
3058 return (is_gimple_assign (stmt)
3059 || (is_gimple_call (stmt)
3060 && gimple_call_lhs (stmt) != NULL_TREE));
3064 /* Return the code of the predicate computed by conditional statement GS. */
3066 static inline enum tree_code
3067 gimple_cond_code (const_gimple gs)
3069 GIMPLE_CHECK (gs, GIMPLE_COND);
3070 return (enum tree_code) gs->subcode;
3074 /* Set CODE to be the predicate code for the conditional statement GS. */
3076 static inline void
3077 gimple_cond_set_code (gcond *gs, enum tree_code code)
3079 gs->subcode = code;
3083 /* Return the LHS of the predicate computed by conditional statement GS. */
3085 static inline tree
3086 gimple_cond_lhs (const_gimple gs)
3088 GIMPLE_CHECK (gs, GIMPLE_COND);
3089 return gimple_op (gs, 0);
3092 /* Return the pointer to the LHS of the predicate computed by conditional
3093 statement GS. */
3095 static inline tree *
3096 gimple_cond_lhs_ptr (const gcond *gs)
3098 return gimple_op_ptr (gs, 0);
3101 /* Set LHS to be the LHS operand of the predicate computed by
3102 conditional statement GS. */
3104 static inline void
3105 gimple_cond_set_lhs (gcond *gs, tree lhs)
3107 gimple_set_op (gs, 0, lhs);
3111 /* Return the RHS operand of the predicate computed by conditional GS. */
3113 static inline tree
3114 gimple_cond_rhs (const_gimple gs)
3116 GIMPLE_CHECK (gs, GIMPLE_COND);
3117 return gimple_op (gs, 1);
3120 /* Return the pointer to the RHS operand of the predicate computed by
3121 conditional GS. */
3123 static inline tree *
3124 gimple_cond_rhs_ptr (const gcond *gs)
3126 return gimple_op_ptr (gs, 1);
3130 /* Set RHS to be the RHS operand of the predicate computed by
3131 conditional statement GS. */
3133 static inline void
3134 gimple_cond_set_rhs (gcond *gs, tree rhs)
3136 gimple_set_op (gs, 1, rhs);
3140 /* Return the label used by conditional statement GS when its
3141 predicate evaluates to true. */
3143 static inline tree
3144 gimple_cond_true_label (const gcond *gs)
3146 return gimple_op (gs, 2);
3150 /* Set LABEL to be the label used by conditional statement GS when its
3151 predicate evaluates to true. */
3153 static inline void
3154 gimple_cond_set_true_label (gcond *gs, tree label)
3156 gimple_set_op (gs, 2, label);
3160 /* Set LABEL to be the label used by conditional statement GS when its
3161 predicate evaluates to false. */
3163 static inline void
3164 gimple_cond_set_false_label (gcond *gs, tree label)
3166 gimple_set_op (gs, 3, label);
3170 /* Return the label used by conditional statement GS when its
3171 predicate evaluates to false. */
3173 static inline tree
3174 gimple_cond_false_label (const gcond *gs)
3177 return gimple_op (gs, 3);
3181 /* Set the conditional COND_STMT to be of the form 'if (1 == 0)'. */
3183 static inline void
3184 gimple_cond_make_false (gcond *gs)
3186 gimple_cond_set_lhs (gs, boolean_true_node);
3187 gimple_cond_set_rhs (gs, boolean_false_node);
3188 gs->subcode = EQ_EXPR;
3192 /* Set the conditional COND_STMT to be of the form 'if (1 == 1)'. */
3194 static inline void
3195 gimple_cond_make_true (gcond *gs)
3197 gimple_cond_set_lhs (gs, boolean_true_node);
3198 gimple_cond_set_rhs (gs, boolean_true_node);
3199 gs->subcode = EQ_EXPR;
3202 /* Check if conditional statemente GS is of the form 'if (1 == 1)',
3203 'if (0 == 0)', 'if (1 != 0)' or 'if (0 != 1)' */
3205 static inline bool
3206 gimple_cond_true_p (const gcond *gs)
3208 tree lhs = gimple_cond_lhs (gs);
3209 tree rhs = gimple_cond_rhs (gs);
3210 enum tree_code code = gimple_cond_code (gs);
3212 if (lhs != boolean_true_node && lhs != boolean_false_node)
3213 return false;
3215 if (rhs != boolean_true_node && rhs != boolean_false_node)
3216 return false;
3218 if (code == NE_EXPR && lhs != rhs)
3219 return true;
3221 if (code == EQ_EXPR && lhs == rhs)
3222 return true;
3224 return false;
3227 /* Check if conditional statement GS is of the form 'if (1 != 1)',
3228 'if (0 != 0)', 'if (1 == 0)' or 'if (0 == 1)' */
3230 static inline bool
3231 gimple_cond_false_p (const gcond *gs)
3233 tree lhs = gimple_cond_lhs (gs);
3234 tree rhs = gimple_cond_rhs (gs);
3235 enum tree_code code = gimple_cond_code (gs);
3237 if (lhs != boolean_true_node && lhs != boolean_false_node)
3238 return false;
3240 if (rhs != boolean_true_node && rhs != boolean_false_node)
3241 return false;
3243 if (code == NE_EXPR && lhs == rhs)
3244 return true;
3246 if (code == EQ_EXPR && lhs != rhs)
3247 return true;
3249 return false;
3252 /* Set the code, LHS and RHS of GIMPLE_COND STMT from CODE, LHS and RHS. */
3254 static inline void
3255 gimple_cond_set_condition (gcond *stmt, enum tree_code code, tree lhs,
3256 tree rhs)
3258 gimple_cond_set_code (stmt, code);
3259 gimple_cond_set_lhs (stmt, lhs);
3260 gimple_cond_set_rhs (stmt, rhs);
3263 /* Return the LABEL_DECL node used by GIMPLE_LABEL statement GS. */
3265 static inline tree
3266 gimple_label_label (const glabel *gs)
3268 return gimple_op (gs, 0);
3272 /* Set LABEL to be the LABEL_DECL node used by GIMPLE_LABEL statement
3273 GS. */
3275 static inline void
3276 gimple_label_set_label (glabel *gs, tree label)
3278 gimple_set_op (gs, 0, label);
3282 /* Return the destination of the unconditional jump GS. */
3284 static inline tree
3285 gimple_goto_dest (const_gimple gs)
3287 GIMPLE_CHECK (gs, GIMPLE_GOTO);
3288 return gimple_op (gs, 0);
3292 /* Set DEST to be the destination of the unconditonal jump GS. */
3294 static inline void
3295 gimple_goto_set_dest (ggoto *gs, tree dest)
3297 gimple_set_op (gs, 0, dest);
3301 /* Return the variables declared in the GIMPLE_BIND statement GS. */
3303 static inline tree
3304 gimple_bind_vars (const gbind *bind_stmt)
3306 return bind_stmt->vars;
3310 /* Set VARS to be the set of variables declared in the GIMPLE_BIND
3311 statement GS. */
3313 static inline void
3314 gimple_bind_set_vars (gbind *bind_stmt, tree vars)
3316 bind_stmt->vars = vars;
3320 /* Append VARS to the set of variables declared in the GIMPLE_BIND
3321 statement GS. */
3323 static inline void
3324 gimple_bind_append_vars (gbind *bind_stmt, tree vars)
3326 bind_stmt->vars = chainon (bind_stmt->vars, vars);
3330 static inline gimple_seq *
3331 gimple_bind_body_ptr (gbind *bind_stmt)
3333 return &bind_stmt->body;
3336 /* Return the GIMPLE sequence contained in the GIMPLE_BIND statement GS. */
3338 static inline gimple_seq
3339 gimple_bind_body (gbind *gs)
3341 return *gimple_bind_body_ptr (gs);
3345 /* Set SEQ to be the GIMPLE sequence contained in the GIMPLE_BIND
3346 statement GS. */
3348 static inline void
3349 gimple_bind_set_body (gbind *bind_stmt, gimple_seq seq)
3351 bind_stmt->body = seq;
3355 /* Append a statement to the end of a GIMPLE_BIND's body. */
3357 static inline void
3358 gimple_bind_add_stmt (gbind *bind_stmt, gimple stmt)
3360 gimple_seq_add_stmt (&bind_stmt->body, stmt);
3364 /* Append a sequence of statements to the end of a GIMPLE_BIND's body. */
3366 static inline void
3367 gimple_bind_add_seq (gbind *bind_stmt, gimple_seq seq)
3369 gimple_seq_add_seq (&bind_stmt->body, seq);
3373 /* Return the TREE_BLOCK node associated with GIMPLE_BIND statement
3374 GS. This is analogous to the BIND_EXPR_BLOCK field in trees. */
3376 static inline tree
3377 gimple_bind_block (const gbind *bind_stmt)
3379 return bind_stmt->block;
3383 /* Set BLOCK to be the TREE_BLOCK node associated with GIMPLE_BIND
3384 statement GS. */
3386 static inline void
3387 gimple_bind_set_block (gbind *bind_stmt, tree block)
3389 gcc_gimple_checking_assert (block == NULL_TREE
3390 || TREE_CODE (block) == BLOCK);
3391 bind_stmt->block = block;
3395 /* Return the number of input operands for GIMPLE_ASM ASM_STMT. */
3397 static inline unsigned
3398 gimple_asm_ninputs (const gasm *asm_stmt)
3400 return asm_stmt->ni;
3404 /* Return the number of output operands for GIMPLE_ASM ASM_STMT. */
3406 static inline unsigned
3407 gimple_asm_noutputs (const gasm *asm_stmt)
3409 return asm_stmt->no;
3413 /* Return the number of clobber operands for GIMPLE_ASM ASM_STMT. */
3415 static inline unsigned
3416 gimple_asm_nclobbers (const gasm *asm_stmt)
3418 return asm_stmt->nc;
3421 /* Return the number of label operands for GIMPLE_ASM ASM_STMT. */
3423 static inline unsigned
3424 gimple_asm_nlabels (const gasm *asm_stmt)
3426 return asm_stmt->nl;
3429 /* Return input operand INDEX of GIMPLE_ASM ASM_STMT. */
3431 static inline tree
3432 gimple_asm_input_op (const gasm *asm_stmt, unsigned index)
3434 gcc_gimple_checking_assert (index < asm_stmt->ni);
3435 return gimple_op (asm_stmt, index + asm_stmt->no);
3438 /* Return a pointer to input operand INDEX of GIMPLE_ASM ASM_STMT. */
3440 static inline tree *
3441 gimple_asm_input_op_ptr (const gasm *asm_stmt, unsigned index)
3443 gcc_gimple_checking_assert (index < asm_stmt->ni);
3444 return gimple_op_ptr (asm_stmt, index + asm_stmt->no);
3448 /* Set IN_OP to be input operand INDEX in GIMPLE_ASM ASM_STMT. */
3450 static inline void
3451 gimple_asm_set_input_op (gasm *asm_stmt, unsigned index, tree in_op)
3453 gcc_gimple_checking_assert (index < asm_stmt->ni
3454 && TREE_CODE (in_op) == TREE_LIST);
3455 gimple_set_op (asm_stmt, index + asm_stmt->no, in_op);
3459 /* Return output operand INDEX of GIMPLE_ASM ASM_STMT. */
3461 static inline tree
3462 gimple_asm_output_op (const gasm *asm_stmt, unsigned index)
3464 gcc_gimple_checking_assert (index < asm_stmt->no);
3465 return gimple_op (asm_stmt, index);
3468 /* Return a pointer to output operand INDEX of GIMPLE_ASM ASM_STMT. */
3470 static inline tree *
3471 gimple_asm_output_op_ptr (const gasm *asm_stmt, unsigned index)
3473 gcc_gimple_checking_assert (index < asm_stmt->no);
3474 return gimple_op_ptr (asm_stmt, index);
3478 /* Set OUT_OP to be output operand INDEX in GIMPLE_ASM ASM_STMT. */
3480 static inline void
3481 gimple_asm_set_output_op (gasm *asm_stmt, unsigned index, tree out_op)
3483 gcc_gimple_checking_assert (index < asm_stmt->no
3484 && TREE_CODE (out_op) == TREE_LIST);
3485 gimple_set_op (asm_stmt, index, out_op);
3489 /* Return clobber operand INDEX of GIMPLE_ASM ASM_STMT. */
3491 static inline tree
3492 gimple_asm_clobber_op (const gasm *asm_stmt, unsigned index)
3494 gcc_gimple_checking_assert (index < asm_stmt->nc);
3495 return gimple_op (asm_stmt, index + asm_stmt->ni + asm_stmt->no);
3499 /* Set CLOBBER_OP to be clobber operand INDEX in GIMPLE_ASM ASM_STMT. */
3501 static inline void
3502 gimple_asm_set_clobber_op (gasm *asm_stmt, unsigned index, tree clobber_op)
3504 gcc_gimple_checking_assert (index < asm_stmt->nc
3505 && TREE_CODE (clobber_op) == TREE_LIST);
3506 gimple_set_op (asm_stmt, index + asm_stmt->ni + asm_stmt->no, clobber_op);
3509 /* Return label operand INDEX of GIMPLE_ASM ASM_STMT. */
3511 static inline tree
3512 gimple_asm_label_op (const gasm *asm_stmt, unsigned index)
3514 gcc_gimple_checking_assert (index < asm_stmt->nl);
3515 return gimple_op (asm_stmt, index + asm_stmt->ni + asm_stmt->nc);
3518 /* Set LABEL_OP to be label operand INDEX in GIMPLE_ASM ASM_STMT. */
3520 static inline void
3521 gimple_asm_set_label_op (gasm *asm_stmt, unsigned index, tree label_op)
3523 gcc_gimple_checking_assert (index < asm_stmt->nl
3524 && TREE_CODE (label_op) == TREE_LIST);
3525 gimple_set_op (asm_stmt, index + asm_stmt->ni + asm_stmt->nc, label_op);
3528 /* Return the string representing the assembly instruction in
3529 GIMPLE_ASM ASM_STMT. */
3531 static inline const char *
3532 gimple_asm_string (const gasm *asm_stmt)
3534 return asm_stmt->string;
3538 /* Return true ASM_STMT ASM_STMT is an asm statement marked volatile. */
3540 static inline bool
3541 gimple_asm_volatile_p (const gasm *asm_stmt)
3543 return (asm_stmt->subcode & GF_ASM_VOLATILE) != 0;
3547 /* If VOLATLE_P is true, mark asm statement ASM_STMT as volatile. */
3549 static inline void
3550 gimple_asm_set_volatile (gasm *asm_stmt, bool volatile_p)
3552 if (volatile_p)
3553 asm_stmt->subcode |= GF_ASM_VOLATILE;
3554 else
3555 asm_stmt->subcode &= ~GF_ASM_VOLATILE;
3559 /* If INPUT_P is true, mark asm ASM_STMT as an ASM_INPUT. */
3561 static inline void
3562 gimple_asm_set_input (gasm *asm_stmt, bool input_p)
3564 if (input_p)
3565 asm_stmt->subcode |= GF_ASM_INPUT;
3566 else
3567 asm_stmt->subcode &= ~GF_ASM_INPUT;
3571 /* Return true if asm ASM_STMT is an ASM_INPUT. */
3573 static inline bool
3574 gimple_asm_input_p (const gasm *asm_stmt)
3576 return (asm_stmt->subcode & GF_ASM_INPUT) != 0;
3580 /* Return the types handled by GIMPLE_CATCH statement CATCH_STMT. */
3582 static inline tree
3583 gimple_catch_types (const gcatch *catch_stmt)
3585 return catch_stmt->types;
3589 /* Return a pointer to the types handled by GIMPLE_CATCH statement CATCH_STMT. */
3591 static inline tree *
3592 gimple_catch_types_ptr (gcatch *catch_stmt)
3594 return &catch_stmt->types;
3598 /* Return a pointer to the GIMPLE sequence representing the body of
3599 the handler of GIMPLE_CATCH statement CATCH_STMT. */
3601 static inline gimple_seq *
3602 gimple_catch_handler_ptr (gcatch *catch_stmt)
3604 return &catch_stmt->handler;
3608 /* Return the GIMPLE sequence representing the body of the handler of
3609 GIMPLE_CATCH statement CATCH_STMT. */
3611 static inline gimple_seq
3612 gimple_catch_handler (gcatch *catch_stmt)
3614 return *gimple_catch_handler_ptr (catch_stmt);
3618 /* Set T to be the set of types handled by GIMPLE_CATCH CATCH_STMT. */
3620 static inline void
3621 gimple_catch_set_types (gcatch *catch_stmt, tree t)
3623 catch_stmt->types = t;
3627 /* Set HANDLER to be the body of GIMPLE_CATCH CATCH_STMT. */
3629 static inline void
3630 gimple_catch_set_handler (gcatch *catch_stmt, gimple_seq handler)
3632 catch_stmt->handler = handler;
3636 /* Return the types handled by GIMPLE_EH_FILTER statement GS. */
3638 static inline tree
3639 gimple_eh_filter_types (const_gimple gs)
3641 const geh_filter *eh_filter_stmt = as_a <const geh_filter *> (gs);
3642 return eh_filter_stmt->types;
3646 /* Return a pointer to the types handled by GIMPLE_EH_FILTER statement
3647 GS. */
3649 static inline tree *
3650 gimple_eh_filter_types_ptr (gimple gs)
3652 geh_filter *eh_filter_stmt = as_a <geh_filter *> (gs);
3653 return &eh_filter_stmt->types;
3657 /* Return a pointer to the sequence of statement to execute when
3658 GIMPLE_EH_FILTER statement fails. */
3660 static inline gimple_seq *
3661 gimple_eh_filter_failure_ptr (gimple gs)
3663 geh_filter *eh_filter_stmt = as_a <geh_filter *> (gs);
3664 return &eh_filter_stmt->failure;
3668 /* Return the sequence of statement to execute when GIMPLE_EH_FILTER
3669 statement fails. */
3671 static inline gimple_seq
3672 gimple_eh_filter_failure (gimple gs)
3674 return *gimple_eh_filter_failure_ptr (gs);
3678 /* Set TYPES to be the set of types handled by GIMPLE_EH_FILTER
3679 EH_FILTER_STMT. */
3681 static inline void
3682 gimple_eh_filter_set_types (geh_filter *eh_filter_stmt, tree types)
3684 eh_filter_stmt->types = types;
3688 /* Set FAILURE to be the sequence of statements to execute on failure
3689 for GIMPLE_EH_FILTER EH_FILTER_STMT. */
3691 static inline void
3692 gimple_eh_filter_set_failure (geh_filter *eh_filter_stmt,
3693 gimple_seq failure)
3695 eh_filter_stmt->failure = failure;
3698 /* Get the function decl to be called by the MUST_NOT_THROW region. */
3700 static inline tree
3701 gimple_eh_must_not_throw_fndecl (geh_mnt *eh_mnt_stmt)
3703 return eh_mnt_stmt->fndecl;
3706 /* Set the function decl to be called by GS to DECL. */
3708 static inline void
3709 gimple_eh_must_not_throw_set_fndecl (geh_mnt *eh_mnt_stmt,
3710 tree decl)
3712 eh_mnt_stmt->fndecl = decl;
3715 /* GIMPLE_EH_ELSE accessors. */
3717 static inline gimple_seq *
3718 gimple_eh_else_n_body_ptr (geh_else *eh_else_stmt)
3720 return &eh_else_stmt->n_body;
3723 static inline gimple_seq
3724 gimple_eh_else_n_body (geh_else *eh_else_stmt)
3726 return *gimple_eh_else_n_body_ptr (eh_else_stmt);
3729 static inline gimple_seq *
3730 gimple_eh_else_e_body_ptr (geh_else *eh_else_stmt)
3732 return &eh_else_stmt->e_body;
3735 static inline gimple_seq
3736 gimple_eh_else_e_body (geh_else *eh_else_stmt)
3738 return *gimple_eh_else_e_body_ptr (eh_else_stmt);
3741 static inline void
3742 gimple_eh_else_set_n_body (geh_else *eh_else_stmt, gimple_seq seq)
3744 eh_else_stmt->n_body = seq;
3747 static inline void
3748 gimple_eh_else_set_e_body (geh_else *eh_else_stmt, gimple_seq seq)
3750 eh_else_stmt->e_body = seq;
3753 /* GIMPLE_TRY accessors. */
3755 /* Return the kind of try block represented by GIMPLE_TRY GS. This is
3756 either GIMPLE_TRY_CATCH or GIMPLE_TRY_FINALLY. */
3758 static inline enum gimple_try_flags
3759 gimple_try_kind (const_gimple gs)
3761 GIMPLE_CHECK (gs, GIMPLE_TRY);
3762 return (enum gimple_try_flags) (gs->subcode & GIMPLE_TRY_KIND);
3766 /* Set the kind of try block represented by GIMPLE_TRY GS. */
3768 static inline void
3769 gimple_try_set_kind (gtry *gs, enum gimple_try_flags kind)
3771 gcc_gimple_checking_assert (kind == GIMPLE_TRY_CATCH
3772 || kind == GIMPLE_TRY_FINALLY);
3773 if (gimple_try_kind (gs) != kind)
3774 gs->subcode = (unsigned int) kind;
3778 /* Return the GIMPLE_TRY_CATCH_IS_CLEANUP flag. */
3780 static inline bool
3781 gimple_try_catch_is_cleanup (const_gimple gs)
3783 gcc_gimple_checking_assert (gimple_try_kind (gs) == GIMPLE_TRY_CATCH);
3784 return (gs->subcode & GIMPLE_TRY_CATCH_IS_CLEANUP) != 0;
3788 /* Return a pointer to the sequence of statements used as the
3789 body for GIMPLE_TRY GS. */
3791 static inline gimple_seq *
3792 gimple_try_eval_ptr (gimple gs)
3794 gtry *try_stmt = as_a <gtry *> (gs);
3795 return &try_stmt->eval;
3799 /* Return the sequence of statements used as the body for GIMPLE_TRY GS. */
3801 static inline gimple_seq
3802 gimple_try_eval (gimple gs)
3804 return *gimple_try_eval_ptr (gs);
3808 /* Return a pointer to the sequence of statements used as the cleanup body for
3809 GIMPLE_TRY GS. */
3811 static inline gimple_seq *
3812 gimple_try_cleanup_ptr (gimple gs)
3814 gtry *try_stmt = as_a <gtry *> (gs);
3815 return &try_stmt->cleanup;
3819 /* Return the sequence of statements used as the cleanup body for
3820 GIMPLE_TRY GS. */
3822 static inline gimple_seq
3823 gimple_try_cleanup (gimple gs)
3825 return *gimple_try_cleanup_ptr (gs);
3829 /* Set the GIMPLE_TRY_CATCH_IS_CLEANUP flag. */
3831 static inline void
3832 gimple_try_set_catch_is_cleanup (gtry *g, bool catch_is_cleanup)
3834 gcc_gimple_checking_assert (gimple_try_kind (g) == GIMPLE_TRY_CATCH);
3835 if (catch_is_cleanup)
3836 g->subcode |= GIMPLE_TRY_CATCH_IS_CLEANUP;
3837 else
3838 g->subcode &= ~GIMPLE_TRY_CATCH_IS_CLEANUP;
3842 /* Set EVAL to be the sequence of statements to use as the body for
3843 GIMPLE_TRY TRY_STMT. */
3845 static inline void
3846 gimple_try_set_eval (gtry *try_stmt, gimple_seq eval)
3848 try_stmt->eval = eval;
3852 /* Set CLEANUP to be the sequence of statements to use as the cleanup
3853 body for GIMPLE_TRY TRY_STMT. */
3855 static inline void
3856 gimple_try_set_cleanup (gtry *try_stmt, gimple_seq cleanup)
3858 try_stmt->cleanup = cleanup;
3862 /* Return a pointer to the cleanup sequence for cleanup statement GS. */
3864 static inline gimple_seq *
3865 gimple_wce_cleanup_ptr (gimple gs)
3867 gimple_statement_wce *wce_stmt = as_a <gimple_statement_wce *> (gs);
3868 return &wce_stmt->cleanup;
3872 /* Return the cleanup sequence for cleanup statement GS. */
3874 static inline gimple_seq
3875 gimple_wce_cleanup (gimple gs)
3877 return *gimple_wce_cleanup_ptr (gs);
3881 /* Set CLEANUP to be the cleanup sequence for GS. */
3883 static inline void
3884 gimple_wce_set_cleanup (gimple gs, gimple_seq cleanup)
3886 gimple_statement_wce *wce_stmt = as_a <gimple_statement_wce *> (gs);
3887 wce_stmt->cleanup = cleanup;
3891 /* Return the CLEANUP_EH_ONLY flag for a WCE tuple. */
3893 static inline bool
3894 gimple_wce_cleanup_eh_only (const_gimple gs)
3896 GIMPLE_CHECK (gs, GIMPLE_WITH_CLEANUP_EXPR);
3897 return gs->subcode != 0;
3901 /* Set the CLEANUP_EH_ONLY flag for a WCE tuple. */
3903 static inline void
3904 gimple_wce_set_cleanup_eh_only (gimple gs, bool eh_only_p)
3906 GIMPLE_CHECK (gs, GIMPLE_WITH_CLEANUP_EXPR);
3907 gs->subcode = (unsigned int) eh_only_p;
3911 /* Return the maximum number of arguments supported by GIMPLE_PHI GS. */
3913 static inline unsigned
3914 gimple_phi_capacity (const_gimple gs)
3916 const gphi *phi_stmt = as_a <const gphi *> (gs);
3917 return phi_stmt->capacity;
3921 /* Return the number of arguments in GIMPLE_PHI GS. This must always
3922 be exactly the number of incoming edges for the basic block holding
3923 GS. */
3925 static inline unsigned
3926 gimple_phi_num_args (const_gimple gs)
3928 const gphi *phi_stmt = as_a <const gphi *> (gs);
3929 return phi_stmt->nargs;
3933 /* Return the SSA name created by GIMPLE_PHI GS. */
3935 static inline tree
3936 gimple_phi_result (const_gimple gs)
3938 const gphi *phi_stmt = as_a <const gphi *> (gs);
3939 return phi_stmt->result;
3942 /* Return a pointer to the SSA name created by GIMPLE_PHI GS. */
3944 static inline tree *
3945 gimple_phi_result_ptr (gimple gs)
3947 gphi *phi_stmt = as_a <gphi *> (gs);
3948 return &phi_stmt->result;
3951 /* Set RESULT to be the SSA name created by GIMPLE_PHI PHI. */
3953 static inline void
3954 gimple_phi_set_result (gphi *phi, tree result)
3956 phi->result = result;
3957 if (result && TREE_CODE (result) == SSA_NAME)
3958 SSA_NAME_DEF_STMT (result) = phi;
3962 /* Return the PHI argument corresponding to incoming edge INDEX for
3963 GIMPLE_PHI GS. */
3965 static inline struct phi_arg_d *
3966 gimple_phi_arg (gimple gs, unsigned index)
3968 gphi *phi_stmt = as_a <gphi *> (gs);
3969 gcc_gimple_checking_assert (index <= phi_stmt->capacity);
3970 return &(phi_stmt->args[index]);
3973 /* Set PHIARG to be the argument corresponding to incoming edge INDEX
3974 for GIMPLE_PHI PHI. */
3976 static inline void
3977 gimple_phi_set_arg (gphi *phi, unsigned index, struct phi_arg_d * phiarg)
3979 gcc_gimple_checking_assert (index <= phi->nargs);
3980 phi->args[index] = *phiarg;
3983 /* Return the PHI nodes for basic block BB, or NULL if there are no
3984 PHI nodes. */
3986 static inline gimple_seq
3987 phi_nodes (const_basic_block bb)
3989 gcc_checking_assert (!(bb->flags & BB_RTL));
3990 return bb->il.gimple.phi_nodes;
3993 /* Return a pointer to the PHI nodes for basic block BB. */
3995 static inline gimple_seq *
3996 phi_nodes_ptr (basic_block bb)
3998 gcc_checking_assert (!(bb->flags & BB_RTL));
3999 return &bb->il.gimple.phi_nodes;
4002 /* Return the tree operand for argument I of PHI node GS. */
4004 static inline tree
4005 gimple_phi_arg_def (gimple gs, size_t index)
4007 return gimple_phi_arg (gs, index)->def;
4011 /* Return a pointer to the tree operand for argument I of phi node PHI. */
4013 static inline tree *
4014 gimple_phi_arg_def_ptr (gphi *phi, size_t index)
4016 return &gimple_phi_arg (phi, index)->def;
4019 /* Return the edge associated with argument I of phi node PHI. */
4021 static inline edge
4022 gimple_phi_arg_edge (gphi *phi, size_t i)
4024 return EDGE_PRED (gimple_bb (phi), i);
4027 /* Return the source location of gimple argument I of phi node PHI. */
4029 static inline source_location
4030 gimple_phi_arg_location (gphi *phi, size_t i)
4032 return gimple_phi_arg (phi, i)->locus;
4035 /* Return the source location of the argument on edge E of phi node PHI. */
4037 static inline source_location
4038 gimple_phi_arg_location_from_edge (gphi *phi, edge e)
4040 return gimple_phi_arg (phi, e->dest_idx)->locus;
4043 /* Set the source location of gimple argument I of phi node PHI to LOC. */
4045 static inline void
4046 gimple_phi_arg_set_location (gphi *phi, size_t i, source_location loc)
4048 gimple_phi_arg (phi, i)->locus = loc;
4051 /* Return TRUE if argument I of phi node PHI has a location record. */
4053 static inline bool
4054 gimple_phi_arg_has_location (gphi *phi, size_t i)
4056 return gimple_phi_arg_location (phi, i) != UNKNOWN_LOCATION;
4060 /* Return the region number for GIMPLE_RESX RESX_STMT. */
4062 static inline int
4063 gimple_resx_region (const gresx *resx_stmt)
4065 return resx_stmt->region;
4068 /* Set REGION to be the region number for GIMPLE_RESX RESX_STMT. */
4070 static inline void
4071 gimple_resx_set_region (gresx *resx_stmt, int region)
4073 resx_stmt->region = region;
4076 /* Return the region number for GIMPLE_EH_DISPATCH EH_DISPATCH_STMT. */
4078 static inline int
4079 gimple_eh_dispatch_region (const geh_dispatch *eh_dispatch_stmt)
4081 return eh_dispatch_stmt->region;
4084 /* Set REGION to be the region number for GIMPLE_EH_DISPATCH
4085 EH_DISPATCH_STMT. */
4087 static inline void
4088 gimple_eh_dispatch_set_region (geh_dispatch *eh_dispatch_stmt, int region)
4090 eh_dispatch_stmt->region = region;
4093 /* Return the number of labels associated with the switch statement GS. */
4095 static inline unsigned
4096 gimple_switch_num_labels (const gswitch *gs)
4098 unsigned num_ops;
4099 GIMPLE_CHECK (gs, GIMPLE_SWITCH);
4100 num_ops = gimple_num_ops (gs);
4101 gcc_gimple_checking_assert (num_ops > 1);
4102 return num_ops - 1;
4106 /* Set NLABELS to be the number of labels for the switch statement GS. */
4108 static inline void
4109 gimple_switch_set_num_labels (gswitch *g, unsigned nlabels)
4111 GIMPLE_CHECK (g, GIMPLE_SWITCH);
4112 gimple_set_num_ops (g, nlabels + 1);
4116 /* Return the index variable used by the switch statement GS. */
4118 static inline tree
4119 gimple_switch_index (const gswitch *gs)
4121 return gimple_op (gs, 0);
4125 /* Return a pointer to the index variable for the switch statement GS. */
4127 static inline tree *
4128 gimple_switch_index_ptr (const gswitch *gs)
4130 return gimple_op_ptr (gs, 0);
4134 /* Set INDEX to be the index variable for switch statement GS. */
4136 static inline void
4137 gimple_switch_set_index (gswitch *gs, tree index)
4139 GIMPLE_CHECK (gs, GIMPLE_SWITCH);
4140 gcc_gimple_checking_assert (SSA_VAR_P (index) || CONSTANT_CLASS_P (index));
4141 gimple_set_op (gs, 0, index);
4145 /* Return the label numbered INDEX. The default label is 0, followed by any
4146 labels in a switch statement. */
4148 static inline tree
4149 gimple_switch_label (const gswitch *gs, unsigned index)
4151 GIMPLE_CHECK (gs, GIMPLE_SWITCH);
4152 gcc_gimple_checking_assert (gimple_num_ops (gs) > index + 1);
4153 return gimple_op (gs, index + 1);
4156 /* Set the label number INDEX to LABEL. 0 is always the default label. */
4158 static inline void
4159 gimple_switch_set_label (gswitch *gs, unsigned index, tree label)
4161 GIMPLE_CHECK (gs, GIMPLE_SWITCH);
4162 gcc_gimple_checking_assert (gimple_num_ops (gs) > index + 1
4163 && (label == NULL_TREE
4164 || TREE_CODE (label) == CASE_LABEL_EXPR));
4165 gimple_set_op (gs, index + 1, label);
4168 /* Return the default label for a switch statement. */
4170 static inline tree
4171 gimple_switch_default_label (const gswitch *gs)
4173 tree label = gimple_switch_label (gs, 0);
4174 gcc_checking_assert (!CASE_LOW (label) && !CASE_HIGH (label));
4175 return label;
4178 /* Set the default label for a switch statement. */
4180 static inline void
4181 gimple_switch_set_default_label (gswitch *gs, tree label)
4183 gcc_checking_assert (!CASE_LOW (label) && !CASE_HIGH (label));
4184 gimple_switch_set_label (gs, 0, label);
4187 /* Return true if GS is a GIMPLE_DEBUG statement. */
4189 static inline bool
4190 is_gimple_debug (const_gimple gs)
4192 return gimple_code (gs) == GIMPLE_DEBUG;
4195 /* Return true if S is a GIMPLE_DEBUG BIND statement. */
4197 static inline bool
4198 gimple_debug_bind_p (const_gimple s)
4200 if (is_gimple_debug (s))
4201 return s->subcode == GIMPLE_DEBUG_BIND;
4203 return false;
4206 /* Return the variable bound in a GIMPLE_DEBUG bind statement. */
4208 static inline tree
4209 gimple_debug_bind_get_var (gimple dbg)
4211 GIMPLE_CHECK (dbg, GIMPLE_DEBUG);
4212 gcc_gimple_checking_assert (gimple_debug_bind_p (dbg));
4213 return gimple_op (dbg, 0);
4216 /* Return the value bound to the variable in a GIMPLE_DEBUG bind
4217 statement. */
4219 static inline tree
4220 gimple_debug_bind_get_value (gimple dbg)
4222 GIMPLE_CHECK (dbg, GIMPLE_DEBUG);
4223 gcc_gimple_checking_assert (gimple_debug_bind_p (dbg));
4224 return gimple_op (dbg, 1);
4227 /* Return a pointer to the value bound to the variable in a
4228 GIMPLE_DEBUG bind statement. */
4230 static inline tree *
4231 gimple_debug_bind_get_value_ptr (gimple dbg)
4233 GIMPLE_CHECK (dbg, GIMPLE_DEBUG);
4234 gcc_gimple_checking_assert (gimple_debug_bind_p (dbg));
4235 return gimple_op_ptr (dbg, 1);
4238 /* Set the variable bound in a GIMPLE_DEBUG bind statement. */
4240 static inline void
4241 gimple_debug_bind_set_var (gimple dbg, tree var)
4243 GIMPLE_CHECK (dbg, GIMPLE_DEBUG);
4244 gcc_gimple_checking_assert (gimple_debug_bind_p (dbg));
4245 gimple_set_op (dbg, 0, var);
4248 /* Set the value bound to the variable in a GIMPLE_DEBUG bind
4249 statement. */
4251 static inline void
4252 gimple_debug_bind_set_value (gimple dbg, tree value)
4254 GIMPLE_CHECK (dbg, GIMPLE_DEBUG);
4255 gcc_gimple_checking_assert (gimple_debug_bind_p (dbg));
4256 gimple_set_op (dbg, 1, value);
4259 /* The second operand of a GIMPLE_DEBUG_BIND, when the value was
4260 optimized away. */
4261 #define GIMPLE_DEBUG_BIND_NOVALUE NULL_TREE /* error_mark_node */
4263 /* Remove the value bound to the variable in a GIMPLE_DEBUG bind
4264 statement. */
4266 static inline void
4267 gimple_debug_bind_reset_value (gimple dbg)
4269 GIMPLE_CHECK (dbg, GIMPLE_DEBUG);
4270 gcc_gimple_checking_assert (gimple_debug_bind_p (dbg));
4271 gimple_set_op (dbg, 1, GIMPLE_DEBUG_BIND_NOVALUE);
4274 /* Return true if the GIMPLE_DEBUG bind statement is bound to a
4275 value. */
4277 static inline bool
4278 gimple_debug_bind_has_value_p (gimple dbg)
4280 GIMPLE_CHECK (dbg, GIMPLE_DEBUG);
4281 gcc_gimple_checking_assert (gimple_debug_bind_p (dbg));
4282 return gimple_op (dbg, 1) != GIMPLE_DEBUG_BIND_NOVALUE;
4285 #undef GIMPLE_DEBUG_BIND_NOVALUE
4287 /* Return true if S is a GIMPLE_DEBUG SOURCE BIND statement. */
4289 static inline bool
4290 gimple_debug_source_bind_p (const_gimple s)
4292 if (is_gimple_debug (s))
4293 return s->subcode == GIMPLE_DEBUG_SOURCE_BIND;
4295 return false;
4298 /* Return the variable bound in a GIMPLE_DEBUG source bind statement. */
4300 static inline tree
4301 gimple_debug_source_bind_get_var (gimple dbg)
4303 GIMPLE_CHECK (dbg, GIMPLE_DEBUG);
4304 gcc_gimple_checking_assert (gimple_debug_source_bind_p (dbg));
4305 return gimple_op (dbg, 0);
4308 /* Return the value bound to the variable in a GIMPLE_DEBUG source bind
4309 statement. */
4311 static inline tree
4312 gimple_debug_source_bind_get_value (gimple dbg)
4314 GIMPLE_CHECK (dbg, GIMPLE_DEBUG);
4315 gcc_gimple_checking_assert (gimple_debug_source_bind_p (dbg));
4316 return gimple_op (dbg, 1);
4319 /* Return a pointer to the value bound to the variable in a
4320 GIMPLE_DEBUG source bind statement. */
4322 static inline tree *
4323 gimple_debug_source_bind_get_value_ptr (gimple dbg)
4325 GIMPLE_CHECK (dbg, GIMPLE_DEBUG);
4326 gcc_gimple_checking_assert (gimple_debug_source_bind_p (dbg));
4327 return gimple_op_ptr (dbg, 1);
4330 /* Set the variable bound in a GIMPLE_DEBUG source bind statement. */
4332 static inline void
4333 gimple_debug_source_bind_set_var (gimple dbg, tree var)
4335 GIMPLE_CHECK (dbg, GIMPLE_DEBUG);
4336 gcc_gimple_checking_assert (gimple_debug_source_bind_p (dbg));
4337 gimple_set_op (dbg, 0, var);
4340 /* Set the value bound to the variable in a GIMPLE_DEBUG source bind
4341 statement. */
4343 static inline void
4344 gimple_debug_source_bind_set_value (gimple dbg, tree value)
4346 GIMPLE_CHECK (dbg, GIMPLE_DEBUG);
4347 gcc_gimple_checking_assert (gimple_debug_source_bind_p (dbg));
4348 gimple_set_op (dbg, 1, value);
4351 /* Return the line number for EXPR, or return -1 if we have no line
4352 number information for it. */
4353 static inline int
4354 get_lineno (const_gimple stmt)
4356 location_t loc;
4358 if (!stmt)
4359 return -1;
4361 loc = gimple_location (stmt);
4362 if (loc == UNKNOWN_LOCATION)
4363 return -1;
4365 return LOCATION_LINE (loc);
4368 /* Return a pointer to the body for the OMP statement GS. */
4370 static inline gimple_seq *
4371 gimple_omp_body_ptr (gimple gs)
4373 return &static_cast <gimple_statement_omp *> (gs)->body;
4376 /* Return the body for the OMP statement GS. */
4378 static inline gimple_seq
4379 gimple_omp_body (gimple gs)
4381 return *gimple_omp_body_ptr (gs);
4384 /* Set BODY to be the body for the OMP statement GS. */
4386 static inline void
4387 gimple_omp_set_body (gimple gs, gimple_seq body)
4389 static_cast <gimple_statement_omp *> (gs)->body = body;
4393 /* Return the name associated with OMP_CRITICAL statement CRIT_STMT. */
4395 static inline tree
4396 gimple_omp_critical_name (const gomp_critical *crit_stmt)
4398 return crit_stmt->name;
4402 /* Return a pointer to the name associated with OMP critical statement GS. */
4404 static inline tree *
4405 gimple_omp_critical_name_ptr (gomp_critical *crit_stmt)
4407 return &crit_stmt->name;
4411 /* Set NAME to be the name associated with OMP critical statement GS. */
4413 static inline void
4414 gimple_omp_critical_set_name (gomp_critical *crit_stmt, tree name)
4416 crit_stmt->name = name;
4420 /* Return the kind of the OMP_FOR statemement G. */
4422 static inline int
4423 gimple_omp_for_kind (const_gimple g)
4425 GIMPLE_CHECK (g, GIMPLE_OMP_FOR);
4426 return (gimple_omp_subcode (g) & GF_OMP_FOR_KIND_MASK);
4430 /* Set the kind of the OMP_FOR statement G. */
4432 static inline void
4433 gimple_omp_for_set_kind (gomp_for *g, int kind)
4435 g->subcode = (g->subcode & ~GF_OMP_FOR_KIND_MASK)
4436 | (kind & GF_OMP_FOR_KIND_MASK);
4440 /* Return true if OMP_FOR statement G has the
4441 GF_OMP_FOR_COMBINED flag set. */
4443 static inline bool
4444 gimple_omp_for_combined_p (const_gimple g)
4446 GIMPLE_CHECK (g, GIMPLE_OMP_FOR);
4447 return (gimple_omp_subcode (g) & GF_OMP_FOR_COMBINED) != 0;
4451 /* Set the GF_OMP_FOR_COMBINED field in the OMP_FOR statement G depending on
4452 the boolean value of COMBINED_P. */
4454 static inline void
4455 gimple_omp_for_set_combined_p (gomp_for *g, bool combined_p)
4457 if (combined_p)
4458 g->subcode |= GF_OMP_FOR_COMBINED;
4459 else
4460 g->subcode &= ~GF_OMP_FOR_COMBINED;
4464 /* Return true if the OMP_FOR statement G has the
4465 GF_OMP_FOR_COMBINED_INTO flag set. */
4467 static inline bool
4468 gimple_omp_for_combined_into_p (const_gimple g)
4470 GIMPLE_CHECK (g, GIMPLE_OMP_FOR);
4471 return (gimple_omp_subcode (g) & GF_OMP_FOR_COMBINED_INTO) != 0;
4475 /* Set the GF_OMP_FOR_COMBINED_INTO field in the OMP_FOR statement G depending
4476 on the boolean value of COMBINED_P. */
4478 static inline void
4479 gimple_omp_for_set_combined_into_p (gomp_for *g, bool combined_p)
4481 if (combined_p)
4482 g->subcode |= GF_OMP_FOR_COMBINED_INTO;
4483 else
4484 g->subcode &= ~GF_OMP_FOR_COMBINED_INTO;
4488 /* Return the clauses associated with the OMP_FOR statement GS. */
4490 static inline tree
4491 gimple_omp_for_clauses (const_gimple gs)
4493 const gomp_for *omp_for_stmt = as_a <const gomp_for *> (gs);
4494 return omp_for_stmt->clauses;
4498 /* Return a pointer to the clauses associated with the OMP_FOR statement
4499 GS. */
4501 static inline tree *
4502 gimple_omp_for_clauses_ptr (gimple gs)
4504 gomp_for *omp_for_stmt = as_a <gomp_for *> (gs);
4505 return &omp_for_stmt->clauses;
4509 /* Set CLAUSES to be the list of clauses associated with the OMP_FOR statement
4510 GS. */
4512 static inline void
4513 gimple_omp_for_set_clauses (gimple gs, tree clauses)
4515 gomp_for *omp_for_stmt = as_a <gomp_for *> (gs);
4516 omp_for_stmt->clauses = clauses;
4520 /* Get the collapse count of the OMP_FOR statement GS. */
4522 static inline size_t
4523 gimple_omp_for_collapse (gimple gs)
4525 gomp_for *omp_for_stmt = as_a <gomp_for *> (gs);
4526 return omp_for_stmt->collapse;
4530 /* Return the condition code associated with the OMP_FOR statement GS. */
4532 static inline enum tree_code
4533 gimple_omp_for_cond (const_gimple gs, size_t i)
4535 const gomp_for *omp_for_stmt = as_a <const gomp_for *> (gs);
4536 gcc_gimple_checking_assert (i < omp_for_stmt->collapse);
4537 return omp_for_stmt->iter[i].cond;
4541 /* Set COND to be the condition code for the OMP_FOR statement GS. */
4543 static inline void
4544 gimple_omp_for_set_cond (gimple gs, size_t i, enum tree_code cond)
4546 gomp_for *omp_for_stmt = as_a <gomp_for *> (gs);
4547 gcc_gimple_checking_assert (TREE_CODE_CLASS (cond) == tcc_comparison
4548 && i < omp_for_stmt->collapse);
4549 omp_for_stmt->iter[i].cond = cond;
4553 /* Return the index variable for the OMP_FOR statement GS. */
4555 static inline tree
4556 gimple_omp_for_index (const_gimple gs, size_t i)
4558 const gomp_for *omp_for_stmt = as_a <const gomp_for *> (gs);
4559 gcc_gimple_checking_assert (i < omp_for_stmt->collapse);
4560 return omp_for_stmt->iter[i].index;
4564 /* Return a pointer to the index variable for the OMP_FOR statement GS. */
4566 static inline tree *
4567 gimple_omp_for_index_ptr (gimple gs, size_t i)
4569 gomp_for *omp_for_stmt = as_a <gomp_for *> (gs);
4570 gcc_gimple_checking_assert (i < omp_for_stmt->collapse);
4571 return &omp_for_stmt->iter[i].index;
4575 /* Set INDEX to be the index variable for the OMP_FOR statement GS. */
4577 static inline void
4578 gimple_omp_for_set_index (gimple gs, size_t i, tree index)
4580 gomp_for *omp_for_stmt = as_a <gomp_for *> (gs);
4581 gcc_gimple_checking_assert (i < omp_for_stmt->collapse);
4582 omp_for_stmt->iter[i].index = index;
4586 /* Return the initial value for the OMP_FOR statement GS. */
4588 static inline tree
4589 gimple_omp_for_initial (const_gimple gs, size_t i)
4591 const gomp_for *omp_for_stmt = as_a <const gomp_for *> (gs);
4592 gcc_gimple_checking_assert (i < omp_for_stmt->collapse);
4593 return omp_for_stmt->iter[i].initial;
4597 /* Return a pointer to the initial value for the OMP_FOR statement GS. */
4599 static inline tree *
4600 gimple_omp_for_initial_ptr (gimple gs, size_t i)
4602 gomp_for *omp_for_stmt = as_a <gomp_for *> (gs);
4603 gcc_gimple_checking_assert (i < omp_for_stmt->collapse);
4604 return &omp_for_stmt->iter[i].initial;
4608 /* Set INITIAL to be the initial value for the OMP_FOR statement GS. */
4610 static inline void
4611 gimple_omp_for_set_initial (gimple gs, size_t i, tree initial)
4613 gomp_for *omp_for_stmt = as_a <gomp_for *> (gs);
4614 gcc_gimple_checking_assert (i < omp_for_stmt->collapse);
4615 omp_for_stmt->iter[i].initial = initial;
4619 /* Return the final value for the OMP_FOR statement GS. */
4621 static inline tree
4622 gimple_omp_for_final (const_gimple gs, size_t i)
4624 const gomp_for *omp_for_stmt = as_a <const gomp_for *> (gs);
4625 gcc_gimple_checking_assert (i < omp_for_stmt->collapse);
4626 return omp_for_stmt->iter[i].final;
4630 /* Return a pointer to the final value for the OMP_FOR statement GS. */
4632 static inline tree *
4633 gimple_omp_for_final_ptr (gimple gs, size_t i)
4635 gomp_for *omp_for_stmt = as_a <gomp_for *> (gs);
4636 gcc_gimple_checking_assert (i < omp_for_stmt->collapse);
4637 return &omp_for_stmt->iter[i].final;
4641 /* Set FINAL to be the final value for the OMP_FOR statement GS. */
4643 static inline void
4644 gimple_omp_for_set_final (gimple gs, size_t i, tree final)
4646 gomp_for *omp_for_stmt = as_a <gomp_for *> (gs);
4647 gcc_gimple_checking_assert (i < omp_for_stmt->collapse);
4648 omp_for_stmt->iter[i].final = final;
4652 /* Return the increment value for the OMP_FOR statement GS. */
4654 static inline tree
4655 gimple_omp_for_incr (const_gimple gs, size_t i)
4657 const gomp_for *omp_for_stmt = as_a <const gomp_for *> (gs);
4658 gcc_gimple_checking_assert (i < omp_for_stmt->collapse);
4659 return omp_for_stmt->iter[i].incr;
4663 /* Return a pointer to the increment value for the OMP_FOR statement GS. */
4665 static inline tree *
4666 gimple_omp_for_incr_ptr (gimple gs, size_t i)
4668 gomp_for *omp_for_stmt = as_a <gomp_for *> (gs);
4669 gcc_gimple_checking_assert (i < omp_for_stmt->collapse);
4670 return &omp_for_stmt->iter[i].incr;
4674 /* Set INCR to be the increment value for the OMP_FOR statement GS. */
4676 static inline void
4677 gimple_omp_for_set_incr (gimple gs, size_t i, tree incr)
4679 gomp_for *omp_for_stmt = as_a <gomp_for *> (gs);
4680 gcc_gimple_checking_assert (i < omp_for_stmt->collapse);
4681 omp_for_stmt->iter[i].incr = incr;
4685 /* Return a pointer to the sequence of statements to execute before the OMP_FOR
4686 statement GS starts. */
4688 static inline gimple_seq *
4689 gimple_omp_for_pre_body_ptr (gimple gs)
4691 gomp_for *omp_for_stmt = as_a <gomp_for *> (gs);
4692 return &omp_for_stmt->pre_body;
4696 /* Return the sequence of statements to execute before the OMP_FOR
4697 statement GS starts. */
4699 static inline gimple_seq
4700 gimple_omp_for_pre_body (gimple gs)
4702 return *gimple_omp_for_pre_body_ptr (gs);
4706 /* Set PRE_BODY to be the sequence of statements to execute before the
4707 OMP_FOR statement GS starts. */
4709 static inline void
4710 gimple_omp_for_set_pre_body (gimple gs, gimple_seq pre_body)
4712 gomp_for *omp_for_stmt = as_a <gomp_for *> (gs);
4713 omp_for_stmt->pre_body = pre_body;
4717 /* Return the clauses associated with OMP_PARALLEL GS. */
4719 static inline tree
4720 gimple_omp_parallel_clauses (const_gimple gs)
4722 const gomp_parallel *omp_parallel_stmt = as_a <const gomp_parallel *> (gs);
4723 return omp_parallel_stmt->clauses;
4727 /* Return a pointer to the clauses associated with OMP_PARALLEL_STMT. */
4729 static inline tree *
4730 gimple_omp_parallel_clauses_ptr (gomp_parallel *omp_parallel_stmt)
4732 return &omp_parallel_stmt->clauses;
4736 /* Set CLAUSES to be the list of clauses associated with OMP_PARALLEL_STMT. */
4738 static inline void
4739 gimple_omp_parallel_set_clauses (gomp_parallel *omp_parallel_stmt,
4740 tree clauses)
4742 omp_parallel_stmt->clauses = clauses;
4746 /* Return the child function used to hold the body of OMP_PARALLEL_STMT. */
4748 static inline tree
4749 gimple_omp_parallel_child_fn (const gomp_parallel *omp_parallel_stmt)
4751 return omp_parallel_stmt->child_fn;
4754 /* Return a pointer to the child function used to hold the body of
4755 OMP_PARALLEL_STMT. */
4757 static inline tree *
4758 gimple_omp_parallel_child_fn_ptr (gomp_parallel *omp_parallel_stmt)
4760 return &omp_parallel_stmt->child_fn;
4764 /* Set CHILD_FN to be the child function for OMP_PARALLEL_STMT. */
4766 static inline void
4767 gimple_omp_parallel_set_child_fn (gomp_parallel *omp_parallel_stmt,
4768 tree child_fn)
4770 omp_parallel_stmt->child_fn = child_fn;
4774 /* Return the artificial argument used to send variables and values
4775 from the parent to the children threads in OMP_PARALLEL_STMT. */
4777 static inline tree
4778 gimple_omp_parallel_data_arg (const gomp_parallel *omp_parallel_stmt)
4780 return omp_parallel_stmt->data_arg;
4784 /* Return a pointer to the data argument for OMP_PARALLEL_STMT. */
4786 static inline tree *
4787 gimple_omp_parallel_data_arg_ptr (gomp_parallel *omp_parallel_stmt)
4789 return &omp_parallel_stmt->data_arg;
4793 /* Set DATA_ARG to be the data argument for OMP_PARALLEL_STMT. */
4795 static inline void
4796 gimple_omp_parallel_set_data_arg (gomp_parallel *omp_parallel_stmt,
4797 tree data_arg)
4799 omp_parallel_stmt->data_arg = data_arg;
4803 /* Return the clauses associated with OMP_TASK GS. */
4805 static inline tree
4806 gimple_omp_task_clauses (const_gimple gs)
4808 const gomp_task *omp_task_stmt = as_a <const gomp_task *> (gs);
4809 return omp_task_stmt->clauses;
4813 /* Return a pointer to the clauses associated with OMP_TASK GS. */
4815 static inline tree *
4816 gimple_omp_task_clauses_ptr (gimple gs)
4818 gomp_task *omp_task_stmt = as_a <gomp_task *> (gs);
4819 return &omp_task_stmt->clauses;
4823 /* Set CLAUSES to be the list of clauses associated with OMP_TASK
4824 GS. */
4826 static inline void
4827 gimple_omp_task_set_clauses (gimple gs, tree clauses)
4829 gomp_task *omp_task_stmt = as_a <gomp_task *> (gs);
4830 omp_task_stmt->clauses = clauses;
4834 /* Return the child function used to hold the body of OMP_TASK GS. */
4836 static inline tree
4837 gimple_omp_task_child_fn (const_gimple gs)
4839 const gomp_task *omp_task_stmt = as_a <const gomp_task *> (gs);
4840 return omp_task_stmt->child_fn;
4843 /* Return a pointer to the child function used to hold the body of
4844 OMP_TASK GS. */
4846 static inline tree *
4847 gimple_omp_task_child_fn_ptr (gimple gs)
4849 gomp_task *omp_task_stmt = as_a <gomp_task *> (gs);
4850 return &omp_task_stmt->child_fn;
4854 /* Set CHILD_FN to be the child function for OMP_TASK GS. */
4856 static inline void
4857 gimple_omp_task_set_child_fn (gimple gs, tree child_fn)
4859 gomp_task *omp_task_stmt = as_a <gomp_task *> (gs);
4860 omp_task_stmt->child_fn = child_fn;
4864 /* Return the artificial argument used to send variables and values
4865 from the parent to the children threads in OMP_TASK GS. */
4867 static inline tree
4868 gimple_omp_task_data_arg (const_gimple gs)
4870 const gomp_task *omp_task_stmt = as_a <const gomp_task *> (gs);
4871 return omp_task_stmt->data_arg;
4875 /* Return a pointer to the data argument for OMP_TASK GS. */
4877 static inline tree *
4878 gimple_omp_task_data_arg_ptr (gimple gs)
4880 gomp_task *omp_task_stmt = as_a <gomp_task *> (gs);
4881 return &omp_task_stmt->data_arg;
4885 /* Set DATA_ARG to be the data argument for OMP_TASK GS. */
4887 static inline void
4888 gimple_omp_task_set_data_arg (gimple gs, tree data_arg)
4890 gomp_task *omp_task_stmt = as_a <gomp_task *> (gs);
4891 omp_task_stmt->data_arg = data_arg;
4895 /* Return the clauses associated with OMP_TASK GS. */
4897 static inline tree
4898 gimple_omp_taskreg_clauses (const_gimple gs)
4900 const gimple_statement_omp_taskreg *omp_taskreg_stmt
4901 = as_a <const gimple_statement_omp_taskreg *> (gs);
4902 return omp_taskreg_stmt->clauses;
4906 /* Return a pointer to the clauses associated with OMP_TASK GS. */
4908 static inline tree *
4909 gimple_omp_taskreg_clauses_ptr (gimple gs)
4911 gimple_statement_omp_taskreg *omp_taskreg_stmt
4912 = as_a <gimple_statement_omp_taskreg *> (gs);
4913 return &omp_taskreg_stmt->clauses;
4917 /* Set CLAUSES to be the list of clauses associated with OMP_TASK
4918 GS. */
4920 static inline void
4921 gimple_omp_taskreg_set_clauses (gimple gs, tree clauses)
4923 gimple_statement_omp_taskreg *omp_taskreg_stmt
4924 = as_a <gimple_statement_omp_taskreg *> (gs);
4925 omp_taskreg_stmt->clauses = clauses;
4929 /* Return the child function used to hold the body of OMP_TASK GS. */
4931 static inline tree
4932 gimple_omp_taskreg_child_fn (const_gimple gs)
4934 const gimple_statement_omp_taskreg *omp_taskreg_stmt
4935 = as_a <const gimple_statement_omp_taskreg *> (gs);
4936 return omp_taskreg_stmt->child_fn;
4939 /* Return a pointer to the child function used to hold the body of
4940 OMP_TASK GS. */
4942 static inline tree *
4943 gimple_omp_taskreg_child_fn_ptr (gimple gs)
4945 gimple_statement_omp_taskreg *omp_taskreg_stmt
4946 = as_a <gimple_statement_omp_taskreg *> (gs);
4947 return &omp_taskreg_stmt->child_fn;
4951 /* Set CHILD_FN to be the child function for OMP_TASK GS. */
4953 static inline void
4954 gimple_omp_taskreg_set_child_fn (gimple gs, tree child_fn)
4956 gimple_statement_omp_taskreg *omp_taskreg_stmt
4957 = as_a <gimple_statement_omp_taskreg *> (gs);
4958 omp_taskreg_stmt->child_fn = child_fn;
4962 /* Return the artificial argument used to send variables and values
4963 from the parent to the children threads in OMP_TASK GS. */
4965 static inline tree
4966 gimple_omp_taskreg_data_arg (const_gimple gs)
4968 const gimple_statement_omp_taskreg *omp_taskreg_stmt
4969 = as_a <const gimple_statement_omp_taskreg *> (gs);
4970 return omp_taskreg_stmt->data_arg;
4974 /* Return a pointer to the data argument for OMP_TASK GS. */
4976 static inline tree *
4977 gimple_omp_taskreg_data_arg_ptr (gimple gs)
4979 gimple_statement_omp_taskreg *omp_taskreg_stmt
4980 = as_a <gimple_statement_omp_taskreg *> (gs);
4981 return &omp_taskreg_stmt->data_arg;
4985 /* Set DATA_ARG to be the data argument for OMP_TASK GS. */
4987 static inline void
4988 gimple_omp_taskreg_set_data_arg (gimple gs, tree data_arg)
4990 gimple_statement_omp_taskreg *omp_taskreg_stmt
4991 = as_a <gimple_statement_omp_taskreg *> (gs);
4992 omp_taskreg_stmt->data_arg = data_arg;
4996 /* Return the copy function used to hold the body of OMP_TASK GS. */
4998 static inline tree
4999 gimple_omp_task_copy_fn (const_gimple gs)
5001 const gomp_task *omp_task_stmt = as_a <const gomp_task *> (gs);
5002 return omp_task_stmt->copy_fn;
5005 /* Return a pointer to the copy function used to hold the body of
5006 OMP_TASK GS. */
5008 static inline tree *
5009 gimple_omp_task_copy_fn_ptr (gimple gs)
5011 gomp_task *omp_task_stmt = as_a <gomp_task *> (gs);
5012 return &omp_task_stmt->copy_fn;
5016 /* Set CHILD_FN to be the copy function for OMP_TASK GS. */
5018 static inline void
5019 gimple_omp_task_set_copy_fn (gimple gs, tree copy_fn)
5021 gomp_task *omp_task_stmt = as_a <gomp_task *> (gs);
5022 omp_task_stmt->copy_fn = copy_fn;
5026 /* Return size of the data block in bytes in OMP_TASK GS. */
5028 static inline tree
5029 gimple_omp_task_arg_size (const_gimple gs)
5031 const gomp_task *omp_task_stmt = as_a <const gomp_task *> (gs);
5032 return omp_task_stmt->arg_size;
5036 /* Return a pointer to the data block size for OMP_TASK GS. */
5038 static inline tree *
5039 gimple_omp_task_arg_size_ptr (gimple gs)
5041 gomp_task *omp_task_stmt = as_a <gomp_task *> (gs);
5042 return &omp_task_stmt->arg_size;
5046 /* Set ARG_SIZE to be the data block size for OMP_TASK GS. */
5048 static inline void
5049 gimple_omp_task_set_arg_size (gimple gs, tree arg_size)
5051 gomp_task *omp_task_stmt = as_a <gomp_task *> (gs);
5052 omp_task_stmt->arg_size = arg_size;
5056 /* Return align of the data block in bytes in OMP_TASK GS. */
5058 static inline tree
5059 gimple_omp_task_arg_align (const_gimple gs)
5061 const gomp_task *omp_task_stmt = as_a <const gomp_task *> (gs);
5062 return omp_task_stmt->arg_align;
5066 /* Return a pointer to the data block align for OMP_TASK GS. */
5068 static inline tree *
5069 gimple_omp_task_arg_align_ptr (gimple gs)
5071 gomp_task *omp_task_stmt = as_a <gomp_task *> (gs);
5072 return &omp_task_stmt->arg_align;
5076 /* Set ARG_SIZE to be the data block align for OMP_TASK GS. */
5078 static inline void
5079 gimple_omp_task_set_arg_align (gimple gs, tree arg_align)
5081 gomp_task *omp_task_stmt = as_a <gomp_task *> (gs);
5082 omp_task_stmt->arg_align = arg_align;
5086 /* Return the clauses associated with OMP_SINGLE GS. */
5088 static inline tree
5089 gimple_omp_single_clauses (const_gimple gs)
5091 const gomp_single *omp_single_stmt = as_a <const gomp_single *> (gs);
5092 return omp_single_stmt->clauses;
5096 /* Return a pointer to the clauses associated with OMP_SINGLE GS. */
5098 static inline tree *
5099 gimple_omp_single_clauses_ptr (gimple gs)
5101 gomp_single *omp_single_stmt = as_a <gomp_single *> (gs);
5102 return &omp_single_stmt->clauses;
5106 /* Set CLAUSES to be the clauses associated with OMP_SINGLE_STMT. */
5108 static inline void
5109 gimple_omp_single_set_clauses (gomp_single *omp_single_stmt, tree clauses)
5111 omp_single_stmt->clauses = clauses;
5115 /* Return the clauses associated with OMP_TARGET GS. */
5117 static inline tree
5118 gimple_omp_target_clauses (const_gimple gs)
5120 const gomp_target *omp_target_stmt = as_a <const gomp_target *> (gs);
5121 return omp_target_stmt->clauses;
5125 /* Return a pointer to the clauses associated with OMP_TARGET GS. */
5127 static inline tree *
5128 gimple_omp_target_clauses_ptr (gimple gs)
5130 gomp_target *omp_target_stmt = as_a <gomp_target *> (gs);
5131 return &omp_target_stmt->clauses;
5135 /* Set CLAUSES to be the clauses associated with OMP_TARGET_STMT. */
5137 static inline void
5138 gimple_omp_target_set_clauses (gomp_target *omp_target_stmt,
5139 tree clauses)
5141 omp_target_stmt->clauses = clauses;
5145 /* Return the kind of the OMP_TARGET G. */
5147 static inline int
5148 gimple_omp_target_kind (const_gimple g)
5150 GIMPLE_CHECK (g, GIMPLE_OMP_TARGET);
5151 return (gimple_omp_subcode (g) & GF_OMP_TARGET_KIND_MASK);
5155 /* Set the kind of the OMP_TARGET G. */
5157 static inline void
5158 gimple_omp_target_set_kind (gomp_target *g, int kind)
5160 g->subcode = (g->subcode & ~GF_OMP_TARGET_KIND_MASK)
5161 | (kind & GF_OMP_TARGET_KIND_MASK);
5165 /* Return the child function used to hold the body of OMP_TARGET_STMT. */
5167 static inline tree
5168 gimple_omp_target_child_fn (const gomp_target *omp_target_stmt)
5170 return omp_target_stmt->child_fn;
5173 /* Return a pointer to the child function used to hold the body of
5174 OMP_TARGET_STMT. */
5176 static inline tree *
5177 gimple_omp_target_child_fn_ptr (gomp_target *omp_target_stmt)
5179 return &omp_target_stmt->child_fn;
5183 /* Set CHILD_FN to be the child function for OMP_TARGET_STMT. */
5185 static inline void
5186 gimple_omp_target_set_child_fn (gomp_target *omp_target_stmt,
5187 tree child_fn)
5189 omp_target_stmt->child_fn = child_fn;
5193 /* Return the artificial argument used to send variables and values
5194 from the parent to the children threads in OMP_TARGET_STMT. */
5196 static inline tree
5197 gimple_omp_target_data_arg (const gomp_target *omp_target_stmt)
5199 return omp_target_stmt->data_arg;
5203 /* Return a pointer to the data argument for OMP_TARGET GS. */
5205 static inline tree *
5206 gimple_omp_target_data_arg_ptr (gomp_target *omp_target_stmt)
5208 return &omp_target_stmt->data_arg;
5212 /* Set DATA_ARG to be the data argument for OMP_TARGET_STMT. */
5214 static inline void
5215 gimple_omp_target_set_data_arg (gomp_target *omp_target_stmt,
5216 tree data_arg)
5218 omp_target_stmt->data_arg = data_arg;
5222 /* Return the clauses associated with OMP_TEAMS GS. */
5224 static inline tree
5225 gimple_omp_teams_clauses (const_gimple gs)
5227 const gomp_teams *omp_teams_stmt = as_a <const gomp_teams *> (gs);
5228 return omp_teams_stmt->clauses;
5232 /* Return a pointer to the clauses associated with OMP_TEAMS GS. */
5234 static inline tree *
5235 gimple_omp_teams_clauses_ptr (gimple gs)
5237 gomp_teams *omp_teams_stmt = as_a <gomp_teams *> (gs);
5238 return &omp_teams_stmt->clauses;
5242 /* Set CLAUSES to be the clauses associated with OMP_TEAMS_STMT. */
5244 static inline void
5245 gimple_omp_teams_set_clauses (gomp_teams *omp_teams_stmt, tree clauses)
5247 omp_teams_stmt->clauses = clauses;
5251 /* Return the clauses associated with OMP_SECTIONS GS. */
5253 static inline tree
5254 gimple_omp_sections_clauses (const_gimple gs)
5256 const gomp_sections *omp_sections_stmt = as_a <const gomp_sections *> (gs);
5257 return omp_sections_stmt->clauses;
5261 /* Return a pointer to the clauses associated with OMP_SECTIONS GS. */
5263 static inline tree *
5264 gimple_omp_sections_clauses_ptr (gimple gs)
5266 gomp_sections *omp_sections_stmt = as_a <gomp_sections *> (gs);
5267 return &omp_sections_stmt->clauses;
5271 /* Set CLAUSES to be the set of clauses associated with OMP_SECTIONS
5272 GS. */
5274 static inline void
5275 gimple_omp_sections_set_clauses (gimple gs, tree clauses)
5277 gomp_sections *omp_sections_stmt = as_a <gomp_sections *> (gs);
5278 omp_sections_stmt->clauses = clauses;
5282 /* Return the control variable associated with the GIMPLE_OMP_SECTIONS
5283 in GS. */
5285 static inline tree
5286 gimple_omp_sections_control (const_gimple gs)
5288 const gomp_sections *omp_sections_stmt = as_a <const gomp_sections *> (gs);
5289 return omp_sections_stmt->control;
5293 /* Return a pointer to the clauses associated with the GIMPLE_OMP_SECTIONS
5294 GS. */
5296 static inline tree *
5297 gimple_omp_sections_control_ptr (gimple gs)
5299 gomp_sections *omp_sections_stmt = as_a <gomp_sections *> (gs);
5300 return &omp_sections_stmt->control;
5304 /* Set CONTROL to be the set of clauses associated with the
5305 GIMPLE_OMP_SECTIONS in GS. */
5307 static inline void
5308 gimple_omp_sections_set_control (gimple gs, tree control)
5310 gomp_sections *omp_sections_stmt = as_a <gomp_sections *> (gs);
5311 omp_sections_stmt->control = control;
5315 /* Set the value being stored in an atomic store. */
5317 static inline void
5318 gimple_omp_atomic_store_set_val (gomp_atomic_store *store_stmt, tree val)
5320 store_stmt->val = val;
5324 /* Return the value being stored in an atomic store. */
5326 static inline tree
5327 gimple_omp_atomic_store_val (const gomp_atomic_store *store_stmt)
5329 return store_stmt->val;
5333 /* Return a pointer to the value being stored in an atomic store. */
5335 static inline tree *
5336 gimple_omp_atomic_store_val_ptr (gomp_atomic_store *store_stmt)
5338 return &store_stmt->val;
5342 /* Set the LHS of an atomic load. */
5344 static inline void
5345 gimple_omp_atomic_load_set_lhs (gomp_atomic_load *load_stmt, tree lhs)
5347 load_stmt->lhs = lhs;
5351 /* Get the LHS of an atomic load. */
5353 static inline tree
5354 gimple_omp_atomic_load_lhs (const gomp_atomic_load *load_stmt)
5356 return load_stmt->lhs;
5360 /* Return a pointer to the LHS of an atomic load. */
5362 static inline tree *
5363 gimple_omp_atomic_load_lhs_ptr (gomp_atomic_load *load_stmt)
5365 return &load_stmt->lhs;
5369 /* Set the RHS of an atomic load. */
5371 static inline void
5372 gimple_omp_atomic_load_set_rhs (gomp_atomic_load *load_stmt, tree rhs)
5374 load_stmt->rhs = rhs;
5378 /* Get the RHS of an atomic load. */
5380 static inline tree
5381 gimple_omp_atomic_load_rhs (const gomp_atomic_load *load_stmt)
5383 return load_stmt->rhs;
5387 /* Return a pointer to the RHS of an atomic load. */
5389 static inline tree *
5390 gimple_omp_atomic_load_rhs_ptr (gomp_atomic_load *load_stmt)
5392 return &load_stmt->rhs;
5396 /* Get the definition of the control variable in a GIMPLE_OMP_CONTINUE. */
5398 static inline tree
5399 gimple_omp_continue_control_def (const gomp_continue *cont_stmt)
5401 return cont_stmt->control_def;
5404 /* The same as above, but return the address. */
5406 static inline tree *
5407 gimple_omp_continue_control_def_ptr (gomp_continue *cont_stmt)
5409 return &cont_stmt->control_def;
5412 /* Set the definition of the control variable in a GIMPLE_OMP_CONTINUE. */
5414 static inline void
5415 gimple_omp_continue_set_control_def (gomp_continue *cont_stmt, tree def)
5417 cont_stmt->control_def = def;
5421 /* Get the use of the control variable in a GIMPLE_OMP_CONTINUE. */
5423 static inline tree
5424 gimple_omp_continue_control_use (const gomp_continue *cont_stmt)
5426 return cont_stmt->control_use;
5430 /* The same as above, but return the address. */
5432 static inline tree *
5433 gimple_omp_continue_control_use_ptr (gomp_continue *cont_stmt)
5435 return &cont_stmt->control_use;
5439 /* Set the use of the control variable in a GIMPLE_OMP_CONTINUE. */
5441 static inline void
5442 gimple_omp_continue_set_control_use (gomp_continue *cont_stmt, tree use)
5444 cont_stmt->control_use = use;
5447 /* Return a pointer to the body for the GIMPLE_TRANSACTION statement
5448 TRANSACTION_STMT. */
5450 static inline gimple_seq *
5451 gimple_transaction_body_ptr (gtransaction *transaction_stmt)
5453 return &transaction_stmt->body;
5456 /* Return the body for the GIMPLE_TRANSACTION statement TRANSACTION_STMT. */
5458 static inline gimple_seq
5459 gimple_transaction_body (gtransaction *transaction_stmt)
5461 return *gimple_transaction_body_ptr (transaction_stmt);
5464 /* Return the label associated with a GIMPLE_TRANSACTION. */
5466 static inline tree
5467 gimple_transaction_label (const gtransaction *transaction_stmt)
5469 return transaction_stmt->label;
5472 static inline tree *
5473 gimple_transaction_label_ptr (gtransaction *transaction_stmt)
5475 return &transaction_stmt->label;
5478 /* Return the subcode associated with a GIMPLE_TRANSACTION. */
5480 static inline unsigned int
5481 gimple_transaction_subcode (const gtransaction *transaction_stmt)
5483 return transaction_stmt->subcode;
5486 /* Set BODY to be the body for the GIMPLE_TRANSACTION statement
5487 TRANSACTION_STMT. */
5489 static inline void
5490 gimple_transaction_set_body (gtransaction *transaction_stmt,
5491 gimple_seq body)
5493 transaction_stmt->body = body;
5496 /* Set the label associated with a GIMPLE_TRANSACTION. */
5498 static inline void
5499 gimple_transaction_set_label (gtransaction *transaction_stmt, tree label)
5501 transaction_stmt->label = label;
5504 /* Set the subcode associated with a GIMPLE_TRANSACTION. */
5506 static inline void
5507 gimple_transaction_set_subcode (gtransaction *transaction_stmt,
5508 unsigned int subcode)
5510 transaction_stmt->subcode = subcode;
5514 /* Return a pointer to the return value for GIMPLE_RETURN GS. */
5516 static inline tree *
5517 gimple_return_retval_ptr (const greturn *gs)
5519 return gimple_op_ptr (gs, 0);
5522 /* Return the return value for GIMPLE_RETURN GS. */
5524 static inline tree
5525 gimple_return_retval (const greturn *gs)
5527 return gimple_op (gs, 0);
5531 /* Set RETVAL to be the return value for GIMPLE_RETURN GS. */
5533 static inline void
5534 gimple_return_set_retval (greturn *gs, tree retval)
5536 gimple_set_op (gs, 0, retval);
5540 /* Return the return bounds for GIMPLE_RETURN GS. */
5542 static inline tree
5543 gimple_return_retbnd (const_gimple gs)
5545 GIMPLE_CHECK (gs, GIMPLE_RETURN);
5546 return gimple_op (gs, 1);
5550 /* Set RETVAL to be the return bounds for GIMPLE_RETURN GS. */
5552 static inline void
5553 gimple_return_set_retbnd (gimple gs, tree retval)
5555 GIMPLE_CHECK (gs, GIMPLE_RETURN);
5556 gimple_set_op (gs, 1, retval);
5560 /* Returns true when the gimple statement STMT is any of the OMP types. */
5562 #define CASE_GIMPLE_OMP \
5563 case GIMPLE_OMP_PARALLEL: \
5564 case GIMPLE_OMP_TASK: \
5565 case GIMPLE_OMP_FOR: \
5566 case GIMPLE_OMP_SECTIONS: \
5567 case GIMPLE_OMP_SECTIONS_SWITCH: \
5568 case GIMPLE_OMP_SINGLE: \
5569 case GIMPLE_OMP_TARGET: \
5570 case GIMPLE_OMP_TEAMS: \
5571 case GIMPLE_OMP_SECTION: \
5572 case GIMPLE_OMP_MASTER: \
5573 case GIMPLE_OMP_TASKGROUP: \
5574 case GIMPLE_OMP_ORDERED: \
5575 case GIMPLE_OMP_CRITICAL: \
5576 case GIMPLE_OMP_RETURN: \
5577 case GIMPLE_OMP_ATOMIC_LOAD: \
5578 case GIMPLE_OMP_ATOMIC_STORE: \
5579 case GIMPLE_OMP_CONTINUE
5581 static inline bool
5582 is_gimple_omp (const_gimple stmt)
5584 switch (gimple_code (stmt))
5586 CASE_GIMPLE_OMP:
5587 return true;
5588 default:
5589 return false;
5593 /* Return true if the OMP gimple statement STMT is any of the OpenACC types
5594 specifically. */
5596 static inline bool
5597 is_gimple_omp_oacc (const_gimple stmt)
5599 gcc_assert (is_gimple_omp (stmt));
5600 switch (gimple_code (stmt))
5602 case GIMPLE_OMP_FOR:
5603 switch (gimple_omp_for_kind (stmt))
5605 case GF_OMP_FOR_KIND_OACC_LOOP:
5606 return true;
5607 default:
5608 return false;
5610 case GIMPLE_OMP_TARGET:
5611 switch (gimple_omp_target_kind (stmt))
5613 case GF_OMP_TARGET_KIND_OACC_PARALLEL:
5614 case GF_OMP_TARGET_KIND_OACC_KERNELS:
5615 case GF_OMP_TARGET_KIND_OACC_DATA:
5616 case GF_OMP_TARGET_KIND_OACC_UPDATE:
5617 case GF_OMP_TARGET_KIND_OACC_ENTER_EXIT_DATA:
5618 return true;
5619 default:
5620 return false;
5622 default:
5623 return false;
5628 /* Return true if the OMP gimple statement STMT is offloaded. */
5630 static inline bool
5631 is_gimple_omp_offloaded (const_gimple stmt)
5633 gcc_assert (is_gimple_omp (stmt));
5634 switch (gimple_code (stmt))
5636 case GIMPLE_OMP_TARGET:
5637 switch (gimple_omp_target_kind (stmt))
5639 case GF_OMP_TARGET_KIND_REGION:
5640 case GF_OMP_TARGET_KIND_OACC_PARALLEL:
5641 case GF_OMP_TARGET_KIND_OACC_KERNELS:
5642 return true;
5643 default:
5644 return false;
5646 default:
5647 return false;
5652 /* Returns TRUE if statement G is a GIMPLE_NOP. */
5654 static inline bool
5655 gimple_nop_p (const_gimple g)
5657 return gimple_code (g) == GIMPLE_NOP;
5661 /* Return true if GS is a GIMPLE_RESX. */
5663 static inline bool
5664 is_gimple_resx (const_gimple gs)
5666 return gimple_code (gs) == GIMPLE_RESX;
5669 /* Return the predictor of GIMPLE_PREDICT statement GS. */
5671 static inline enum br_predictor
5672 gimple_predict_predictor (gimple gs)
5674 GIMPLE_CHECK (gs, GIMPLE_PREDICT);
5675 return (enum br_predictor) (gs->subcode & ~GF_PREDICT_TAKEN);
5679 /* Set the predictor of GIMPLE_PREDICT statement GS to PREDICT. */
5681 static inline void
5682 gimple_predict_set_predictor (gimple gs, enum br_predictor predictor)
5684 GIMPLE_CHECK (gs, GIMPLE_PREDICT);
5685 gs->subcode = (gs->subcode & GF_PREDICT_TAKEN)
5686 | (unsigned) predictor;
5690 /* Return the outcome of GIMPLE_PREDICT statement GS. */
5692 static inline enum prediction
5693 gimple_predict_outcome (gimple gs)
5695 GIMPLE_CHECK (gs, GIMPLE_PREDICT);
5696 return (gs->subcode & GF_PREDICT_TAKEN) ? TAKEN : NOT_TAKEN;
5700 /* Set the outcome of GIMPLE_PREDICT statement GS to OUTCOME. */
5702 static inline void
5703 gimple_predict_set_outcome (gimple gs, enum prediction outcome)
5705 GIMPLE_CHECK (gs, GIMPLE_PREDICT);
5706 if (outcome == TAKEN)
5707 gs->subcode |= GF_PREDICT_TAKEN;
5708 else
5709 gs->subcode &= ~GF_PREDICT_TAKEN;
5713 /* Return the type of the main expression computed by STMT. Return
5714 void_type_node if the statement computes nothing. */
5716 static inline tree
5717 gimple_expr_type (const_gimple stmt)
5719 enum gimple_code code = gimple_code (stmt);
5721 if (code == GIMPLE_ASSIGN || code == GIMPLE_CALL)
5723 tree type;
5724 /* In general we want to pass out a type that can be substituted
5725 for both the RHS and the LHS types if there is a possibly
5726 useless conversion involved. That means returning the
5727 original RHS type as far as we can reconstruct it. */
5728 if (code == GIMPLE_CALL)
5730 const gcall *call_stmt = as_a <const gcall *> (stmt);
5731 if (gimple_call_internal_p (call_stmt)
5732 && gimple_call_internal_fn (call_stmt) == IFN_MASK_STORE)
5733 type = TREE_TYPE (gimple_call_arg (call_stmt, 3));
5734 else
5735 type = gimple_call_return_type (call_stmt);
5737 else
5738 switch (gimple_assign_rhs_code (stmt))
5740 case POINTER_PLUS_EXPR:
5741 type = TREE_TYPE (gimple_assign_rhs1 (stmt));
5742 break;
5744 default:
5745 /* As fallback use the type of the LHS. */
5746 type = TREE_TYPE (gimple_get_lhs (stmt));
5747 break;
5749 return type;
5751 else if (code == GIMPLE_COND)
5752 return boolean_type_node;
5753 else
5754 return void_type_node;
5757 /* Enum and arrays used for allocation stats. Keep in sync with
5758 gimple.c:gimple_alloc_kind_names. */
5759 enum gimple_alloc_kind
5761 gimple_alloc_kind_assign, /* Assignments. */
5762 gimple_alloc_kind_phi, /* PHI nodes. */
5763 gimple_alloc_kind_cond, /* Conditionals. */
5764 gimple_alloc_kind_rest, /* Everything else. */
5765 gimple_alloc_kind_all
5768 extern int gimple_alloc_counts[];
5769 extern int gimple_alloc_sizes[];
5771 /* Return the allocation kind for a given stmt CODE. */
5772 static inline enum gimple_alloc_kind
5773 gimple_alloc_kind (enum gimple_code code)
5775 switch (code)
5777 case GIMPLE_ASSIGN:
5778 return gimple_alloc_kind_assign;
5779 case GIMPLE_PHI:
5780 return gimple_alloc_kind_phi;
5781 case GIMPLE_COND:
5782 return gimple_alloc_kind_cond;
5783 default:
5784 return gimple_alloc_kind_rest;
5788 /* Return true if a location should not be emitted for this statement
5789 by annotate_all_with_location. */
5791 static inline bool
5792 gimple_do_not_emit_location_p (gimple g)
5794 return gimple_plf (g, GF_PLF_1);
5797 /* Mark statement G so a location will not be emitted by
5798 annotate_one_with_location. */
5800 static inline void
5801 gimple_set_do_not_emit_location (gimple g)
5803 /* The PLF flags are initialized to 0 when a new tuple is created,
5804 so no need to initialize it anywhere. */
5805 gimple_set_plf (g, GF_PLF_1, true);
5809 /* Macros for showing usage statistics. */
5810 #define SCALE(x) ((unsigned long) ((x) < 1024*10 \
5811 ? (x) \
5812 : ((x) < 1024*1024*10 \
5813 ? (x) / 1024 \
5814 : (x) / (1024*1024))))
5816 #define LABEL(x) ((x) < 1024*10 ? 'b' : ((x) < 1024*1024*10 ? 'k' : 'M'))
5818 #endif /* GCC_GIMPLE_H */