1/* Gimple IR definitions.
2
3 Copyright (C) 2007-2023 Free Software Foundation, Inc.
4 Contributed by Aldy Hernandez <aldyh@redhat.com>
5
6This file is part of GCC.
7
8GCC is free software; you can redistribute it and/or modify it under
9the terms of the GNU General Public License as published by the Free
10Software Foundation; either version 3, or (at your option) any later
11version.
12
13GCC is distributed in the hope that it will be useful, but WITHOUT ANY
14WARRANTY; without even the implied warranty of MERCHANTABILITY or
15FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16for more details.
17
18You should have received a copy of the GNU General Public License
19along with GCC; see the file COPYING3. If not see
20<http://www.gnu.org/licenses/>. */
21
22#ifndef GCC_GIMPLE_H
23#define GCC_GIMPLE_H
24
25#include "tree-ssa-alias.h"
26#include "gimple-expr.h"
27
28typedef gimple *gimple_seq_node;
29
30enum gimple_code {
31#define DEFGSCODE(SYM, STRING, STRUCT) SYM,
32#include "gimple.def"
33#undef DEFGSCODE
34 LAST_AND_UNUSED_GIMPLE_CODE
35};
36
37extern const char *const gimple_code_name[];
38extern const unsigned char gimple_rhs_class_table[];
39
40/* Strip the outermost pointer, from tr1/type_traits. */
41template<typename T> struct remove_pointer { typedef T type; };
42template<typename T> struct remove_pointer<T *> { typedef T type; };
43
44/* Error out if a gimple tuple is addressed incorrectly. */
45#if defined ENABLE_GIMPLE_CHECKING
46#define gcc_gimple_checking_assert(EXPR) gcc_assert (EXPR)
47extern void gimple_check_failed (const gimple *, const char *, int, \
48 const char *, enum gimple_code, \
49 enum tree_code) ATTRIBUTE_NORETURN \
50 ATTRIBUTE_COLD;
51
52#define GIMPLE_CHECK(GS, CODE) \
53 do { \
54 const gimple *__gs = (GS); \
55 if (gimple_code (__gs) != (CODE)) \
56 gimple_check_failed (__gs, __FILE__, __LINE__, __FUNCTION__, \
57 (CODE), ERROR_MARK); \
58 } while (0)
59template <typename T>
60inline T
61GIMPLE_CHECK2(const gimple *gs,
62#if __GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 8)
63 const char *file = __builtin_FILE (),
64 int line = __builtin_LINE (),
65 const char *fun = __builtin_FUNCTION ())
66#else
67 const char *file = __FILE__,
68 int line = __LINE__,
69 const char *fun = NULL)
70#endif
71{
72 T ret = dyn_cast <T> (gs);
73 if (!ret)
74 gimple_check_failed (gs, file, line, fun,
75 remove_pointer<T>::type::code_, ERROR_MARK);
76 return ret;
77}
78template <typename T>
79inline T
80GIMPLE_CHECK2(gimple *gs,
81#if __GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 8)
82 const char *file = __builtin_FILE (),
83 int line = __builtin_LINE (),
84 const char *fun = __builtin_FUNCTION ())
85#else
86 const char *file = __FILE__,
87 int line = __LINE__,
88 const char *fun = NULL)
89#endif
90{
91 T ret = dyn_cast <T> (gs);
92 if (!ret)
93 gimple_check_failed (gs, file, line, fun,
94 remove_pointer<T>::type::code_, ERROR_MARK);
95 return ret;
96}
97#else /* not ENABLE_GIMPLE_CHECKING */
98#define gcc_gimple_checking_assert(EXPR) ((void)(0 && (EXPR)))
99#define GIMPLE_CHECK(GS, CODE) (void)0
100template <typename T>
101inline T
102GIMPLE_CHECK2(gimple *gs)
103{
104 return as_a <T> (gs);
105}
106template <typename T>
107inline T
108GIMPLE_CHECK2(const gimple *gs)
109{
110 return as_a <T> (gs);
111}
112#endif
113
114/* Class of GIMPLE expressions suitable for the RHS of assignments. See
115 get_gimple_rhs_class. */
116enum gimple_rhs_class
117{
118 GIMPLE_INVALID_RHS, /* The expression cannot be used on the RHS. */
119 GIMPLE_TERNARY_RHS, /* The expression is a ternary operation. */
120 GIMPLE_BINARY_RHS, /* The expression is a binary operation. */
121 GIMPLE_UNARY_RHS, /* The expression is a unary operation. */
122 GIMPLE_SINGLE_RHS /* The expression is a single object (an SSA
123 name, a _DECL, a _REF, etc. */
124};
125
126/* Specific flags for individual GIMPLE statements. These flags are
127 always stored in gimple.subcode and they may only be
128 defined for statement codes that do not use subcodes.
129
130 Values for the masks can overlap as long as the overlapping values
131 are never used in the same statement class.
132
133 The maximum mask value that can be defined is 1 << 15 (i.e., each
134 statement code can hold up to 16 bitflags).
135
136 Keep this list sorted. */
137enum gf_mask {
138 GF_ASM_INPUT = 1 << 0,
139 GF_ASM_VOLATILE = 1 << 1,
140 GF_ASM_INLINE = 1 << 2,
141 GF_CALL_FROM_THUNK = 1 << 0,
142 GF_CALL_RETURN_SLOT_OPT = 1 << 1,
143 GF_CALL_TAILCALL = 1 << 2,
144 GF_CALL_VA_ARG_PACK = 1 << 3,
145 GF_CALL_NOTHROW = 1 << 4,
146 GF_CALL_ALLOCA_FOR_VAR = 1 << 5,
147 GF_CALL_INTERNAL = 1 << 6,
148 GF_CALL_CTRL_ALTERING = 1 << 7,
149 GF_CALL_MUST_TAIL_CALL = 1 << 9,
150 GF_CALL_BY_DESCRIPTOR = 1 << 10,
151 GF_CALL_NOCF_CHECK = 1 << 11,
152 GF_CALL_FROM_NEW_OR_DELETE = 1 << 12,
153 GF_CALL_XTHROW = 1 << 13,
154 GF_OMP_PARALLEL_COMBINED = 1 << 0,
155 GF_OMP_TASK_TASKLOOP = 1 << 0,
156 GF_OMP_TASK_TASKWAIT = 1 << 1,
157 GF_OMP_FOR_KIND_MASK = (1 << 3) - 1,
158 GF_OMP_FOR_KIND_FOR = 0,
159 GF_OMP_FOR_KIND_DISTRIBUTE = 1,
160 GF_OMP_FOR_KIND_TASKLOOP = 2,
161 GF_OMP_FOR_KIND_OACC_LOOP = 4,
162 GF_OMP_FOR_KIND_SIMD = 5,
163 GF_OMP_FOR_COMBINED = 1 << 3,
164 GF_OMP_FOR_COMBINED_INTO = 1 << 4,
165 GF_OMP_TARGET_KIND_MASK = (1 << 5) - 1,
166 GF_OMP_TARGET_KIND_REGION = 0,
167 GF_OMP_TARGET_KIND_DATA = 1,
168 GF_OMP_TARGET_KIND_UPDATE = 2,
169 GF_OMP_TARGET_KIND_ENTER_DATA = 3,
170 GF_OMP_TARGET_KIND_EXIT_DATA = 4,
171 GF_OMP_TARGET_KIND_OACC_PARALLEL = 5,
172 GF_OMP_TARGET_KIND_OACC_KERNELS = 6,
173 GF_OMP_TARGET_KIND_OACC_SERIAL = 7,
174 GF_OMP_TARGET_KIND_OACC_DATA = 8,
175 GF_OMP_TARGET_KIND_OACC_UPDATE = 9,
176 GF_OMP_TARGET_KIND_OACC_ENTER_DATA = 10,
177 GF_OMP_TARGET_KIND_OACC_EXIT_DATA = 11,
178 GF_OMP_TARGET_KIND_OACC_DECLARE = 12,
179 GF_OMP_TARGET_KIND_OACC_HOST_DATA = 13,
180 /* A 'GF_OMP_TARGET_KIND_OACC_PARALLEL' representing an OpenACC 'kernels'
181 decomposed part, parallelized. */
182 GF_OMP_TARGET_KIND_OACC_PARALLEL_KERNELS_PARALLELIZED = 14,
183 /* A 'GF_OMP_TARGET_KIND_OACC_PARALLEL' representing an OpenACC 'kernels'
184 decomposed part, "gang-single". */
185 GF_OMP_TARGET_KIND_OACC_PARALLEL_KERNELS_GANG_SINGLE = 15,
186 /* A 'GF_OMP_TARGET_KIND_OACC_DATA' representing an OpenACC 'kernels'
187 decomposed parts' 'data' construct. */
188 GF_OMP_TARGET_KIND_OACC_DATA_KERNELS = 16,
189 GF_OMP_TEAMS_HOST = 1 << 0,
190
191 /* True on an GIMPLE_OMP_RETURN statement if the return does not require
192 a thread synchronization via some sort of barrier. The exact barrier
193 that would otherwise be emitted is dependent on the OMP statement with
194 which this return is associated. */
195 GF_OMP_RETURN_NOWAIT = 1 << 0,
196
197 GF_OMP_SECTION_LAST = 1 << 0,
198 GF_OMP_ORDERED_STANDALONE = 1 << 0,
199 GF_OMP_ATOMIC_MEMORY_ORDER = (1 << 6) - 1,
200 GF_OMP_ATOMIC_NEED_VALUE = 1 << 6,
201 GF_OMP_ATOMIC_WEAK = 1 << 7,
202 GF_PREDICT_TAKEN = 1 << 15
203};
204
205/* This subcode tells apart different kinds of stmts that are not used
206 for codegen, but rather to retain debug information. */
207enum gimple_debug_subcode {
208 GIMPLE_DEBUG_BIND = 0,
209 GIMPLE_DEBUG_SOURCE_BIND = 1,
210 GIMPLE_DEBUG_BEGIN_STMT = 2,
211 GIMPLE_DEBUG_INLINE_ENTRY = 3
212};
213
214/* Masks for selecting a pass local flag (PLF) to work on. These
215 masks are used by gimple_set_plf and gimple_plf. */
216enum plf_mask {
217 GF_PLF_1 = 1 << 0,
218 GF_PLF_2 = 1 << 1
219};
220
221/* Data structure definitions for GIMPLE tuples. NOTE: word markers
222 are for 64 bit hosts. */
223
224struct GTY((desc ("gimple_statement_structure (&%h)"), tag ("GSS_BASE"),
225 chain_next ("%h.next"), variable_size))
226 gimple
227{
228 /* [ WORD 1 ]
229 Main identifying code for a tuple. */
230 ENUM_BITFIELD(gimple_code) code : 8;
231
232 /* Nonzero if a warning should not be emitted on this tuple. */
233 unsigned int no_warning : 1;
234
235 /* Nonzero if this tuple has been visited. Passes are responsible
236 for clearing this bit before using it. */
237 unsigned int visited : 1;
238
239 /* Nonzero if this tuple represents a non-temporal move. */
240 unsigned int nontemporal_move : 1;
241
242 /* Pass local flags. These flags are free for any pass to use as
243 they see fit. Passes should not assume that these flags contain
244 any useful value when the pass starts. Any initial state that
245 the pass requires should be set on entry to the pass. See
246 gimple_set_plf and gimple_plf for usage. */
247 unsigned int plf : 2;
248
249 /* Nonzero if this statement has been modified and needs to have its
250 operands rescanned. */
251 unsigned modified : 1;
252
253 /* Nonzero if this statement contains volatile operands. */
254 unsigned has_volatile_ops : 1;
255
256 /* Padding to get subcode to 16 bit alignment. */
257 unsigned pad : 1;
258
259 /* The SUBCODE field can be used for tuple-specific flags for tuples
260 that do not require subcodes. Note that SUBCODE should be at
261 least as wide as tree codes, as several tuples store tree codes
262 in there. */
263 unsigned int subcode : 16;
264
265 /* UID of this statement. This is used by passes that want to
266 assign IDs to statements. It must be assigned and used by each
267 pass. By default it should be assumed to contain garbage. */
268 unsigned uid;
269
270 /* [ WORD 2 ]
271 Locus information for debug info. */
272 location_t location;
273
274 /* Number of operands in this tuple. */
275 unsigned num_ops;
276
277 /* [ WORD 3 ]
278 Basic block holding this statement. */
279 basic_block bb;
280
281 /* [ WORD 4-5 ]
282 Linked lists of gimple statements. The next pointers form
283 a NULL terminated list, the prev pointers are a cyclic list.
284 A gimple statement is hence also a double-ended list of
285 statements, with the pointer itself being the first element,
286 and the prev pointer being the last. */
287 gimple *next;
288 gimple *GTY((skip)) prev;
289};
290
291
292/* Base structure for tuples with operands. */
293
294/* This gimple subclass has no tag value. */
295struct GTY(())
296 gimple_statement_with_ops_base : public gimple
297{
298 /* [ WORD 1-6 ] : base class */
299
300 /* [ WORD 7 ]
301 SSA operand vectors. NOTE: It should be possible to
302 amalgamate these vectors with the operand vector OP. However,
303 the SSA operand vectors are organized differently and contain
304 more information (like immediate use chaining). */
305 struct use_optype_d GTY((skip (""))) *use_ops;
306};
307
308
309/* Statements that take register operands. */
310
311struct GTY((tag("GSS_WITH_OPS")))
312 gimple_statement_with_ops : public gimple_statement_with_ops_base
313{
314 /* [ WORD 1-7 ] : base class */
315
316 /* [ WORD 8 ]
317 Operand vector. NOTE! This must always be the last field
318 of this structure. In particular, this means that this
319 structure cannot be embedded inside another one. */
320 tree GTY((length ("%h.num_ops"))) op[1];
321};
322
323
324/* Base for statements that take both memory and register operands. */
325
326struct GTY((tag("GSS_WITH_MEM_OPS_BASE")))
327 gimple_statement_with_memory_ops_base : public gimple_statement_with_ops_base
328{
329 /* [ WORD 1-7 ] : base class */
330
331 /* [ WORD 8-9 ]
332 Virtual operands for this statement. The GC will pick them
333 up via the ssa_names array. */
334 tree GTY((skip (""))) vdef;
335 tree GTY((skip (""))) vuse;
336};
337
338
339/* Statements that take both memory and register operands. */
340
341struct GTY((tag("GSS_WITH_MEM_OPS")))
342 gimple_statement_with_memory_ops :
343 public gimple_statement_with_memory_ops_base
344{
345 /* [ WORD 1-9 ] : base class */
346
347 /* [ WORD 10 ]
348 Operand vector. NOTE! This must always be the last field
349 of this structure. In particular, this means that this
350 structure cannot be embedded inside another one. */
351 tree GTY((length ("%h.num_ops"))) op[1];
352};
353
354
355/* Call statements that take both memory and register operands. */
356
357struct GTY((tag("GSS_CALL")))
358 gcall : public gimple_statement_with_memory_ops_base
359{
360 /* [ WORD 1-9 ] : base class */
361
362 /* [ WORD 10-13 ] */
363 struct pt_solution call_used;
364 struct pt_solution call_clobbered;
365
366 /* [ WORD 14 ] */
367 union GTY ((desc ("%1.subcode & GF_CALL_INTERNAL"))) {
368 tree GTY ((tag ("0"))) fntype;
369 enum internal_fn GTY ((tag ("GF_CALL_INTERNAL"))) internal_fn;
370 } u;
371
372 /* [ WORD 15 ]
373 Operand vector. NOTE! This must always be the last field
374 of this structure. In particular, this means that this
375 structure cannot be embedded inside another one. */
376 tree GTY((length ("%h.num_ops"))) op[1];
377
378 static const enum gimple_code code_ = GIMPLE_CALL;
379};
380
381
382/* OMP statements. */
383
384struct GTY((tag("GSS_OMP")))
385 gimple_statement_omp : public gimple
386{
387 /* [ WORD 1-6 ] : base class */
388
389 /* [ WORD 7 ] */
390 gimple_seq body;
391};
392
393
394/* GIMPLE_BIND */
395
396struct GTY((tag("GSS_BIND")))
397 gbind : public gimple
398{
399 /* [ WORD 1-6 ] : base class */
400
401 /* [ WORD 7 ]
402 Variables declared in this scope. */
403 tree vars;
404
405 /* [ WORD 8 ]
406 This is different than the BLOCK field in gimple,
407 which is analogous to TREE_BLOCK (i.e., the lexical block holding
408 this statement). This field is the equivalent of BIND_EXPR_BLOCK
409 in tree land (i.e., the lexical scope defined by this bind). See
410 gimple-low.cc. */
411 tree block;
412
413 /* [ WORD 9 ] */
414 gimple_seq body;
415};
416
417
418/* GIMPLE_CATCH */
419
420struct GTY((tag("GSS_CATCH")))
421 gcatch : public gimple
422{
423 /* [ WORD 1-6 ] : base class */
424
425 /* [ WORD 7 ] */
426 tree types;
427
428 /* [ WORD 8 ] */
429 gimple_seq handler;
430};
431
432
433/* GIMPLE_EH_FILTER */
434
435struct GTY((tag("GSS_EH_FILTER")))
436 geh_filter : public gimple
437{
438 /* [ WORD 1-6 ] : base class */
439
440 /* [ WORD 7 ]
441 Filter types. */
442 tree types;
443
444 /* [ WORD 8 ]
445 Failure actions. */
446 gimple_seq failure;
447};
448
449/* GIMPLE_EH_ELSE */
450
451struct GTY((tag("GSS_EH_ELSE")))
452 geh_else : public gimple
453{
454 /* [ WORD 1-6 ] : base class */
455
456 /* [ WORD 7,8 ] */
457 gimple_seq n_body, e_body;
458};
459
460/* GIMPLE_EH_MUST_NOT_THROW */
461
462struct GTY((tag("GSS_EH_MNT")))
463 geh_mnt : public gimple
464{
465 /* [ WORD 1-6 ] : base class */
466
467 /* [ WORD 7 ] Abort function decl. */
468 tree fndecl;
469};
470
471/* GIMPLE_PHI */
472
473struct GTY((tag("GSS_PHI")))
474 gphi : public gimple
475{
476 /* [ WORD 1-6 ] : base class */
477
478 /* [ WORD 7 ] */
479 unsigned capacity;
480 unsigned nargs;
481
482 /* [ WORD 8 ] */
483 tree result;
484
485 /* [ WORD 9 ] */
486 struct phi_arg_d GTY ((length ("%h.nargs"))) args[1];
487};
488
489
490/* GIMPLE_RESX, GIMPLE_EH_DISPATCH */
491
492struct GTY((tag("GSS_EH_CTRL")))
493 gimple_statement_eh_ctrl : public gimple
494{
495 /* [ WORD 1-6 ] : base class */
496
497 /* [ WORD 7 ]
498 Exception region number. */
499 int region;
500};
501
502struct GTY((tag("GSS_EH_CTRL")))
503 gresx : public gimple_statement_eh_ctrl
504{
505 /* No extra fields; adds invariant:
506 stmt->code == GIMPLE_RESX. */
507};
508
509struct GTY((tag("GSS_EH_CTRL")))
510 geh_dispatch : public gimple_statement_eh_ctrl
511{
512 /* No extra fields; adds invariant:
513 stmt->code == GIMPLE_EH_DISPATH. */
514};
515
516
517/* GIMPLE_TRY */
518
519struct GTY((tag("GSS_TRY")))
520 gtry : public gimple
521{
522 /* [ WORD 1-6 ] : base class */
523
524 /* [ WORD 7 ]
525 Expression to evaluate. */
526 gimple_seq eval;
527
528 /* [ WORD 8 ]
529 Cleanup expression. */
530 gimple_seq cleanup;
531};
532
533/* Kind of GIMPLE_TRY statements. */
534enum gimple_try_flags
535{
536 /* A try/catch. */
537 GIMPLE_TRY_CATCH = 1 << 0,
538
539 /* A try/finally. */
540 GIMPLE_TRY_FINALLY = 1 << 1,
541 GIMPLE_TRY_KIND = GIMPLE_TRY_CATCH | GIMPLE_TRY_FINALLY,
542
543 /* Analogous to TRY_CATCH_IS_CLEANUP. */
544 GIMPLE_TRY_CATCH_IS_CLEANUP = 1 << 2
545};
546
547/* GIMPLE_WITH_CLEANUP_EXPR */
548
549struct GTY((tag("GSS_WCE")))
550 gimple_statement_wce : public gimple
551{
552 /* [ WORD 1-6 ] : base class */
553
554 /* Subcode: CLEANUP_EH_ONLY. True if the cleanup should only be
555 executed if an exception is thrown, not on normal exit of its
556 scope. This flag is analogous to the CLEANUP_EH_ONLY flag
557 in TARGET_EXPRs. */
558
559 /* [ WORD 7 ]
560 Cleanup expression. */
561 gimple_seq cleanup;
562};
563
564
565/* GIMPLE_ASM */
566
567struct GTY((tag("GSS_ASM")))
568 gasm : public gimple_statement_with_memory_ops_base
569{
570 /* [ WORD 1-9 ] : base class */
571
572 /* [ WORD 10 ]
573 __asm__ statement. */
574 const char *string;
575
576 /* [ WORD 11 ]
577 Number of inputs, outputs, clobbers, labels. */
578 unsigned char ni;
579 unsigned char no;
580 unsigned char nc;
581 unsigned char nl;
582
583 /* [ WORD 12 ]
584 Operand vector. NOTE! This must always be the last field
585 of this structure. In particular, this means that this
586 structure cannot be embedded inside another one. */
587 tree GTY((length ("%h.num_ops"))) op[1];
588};
589
590/* GIMPLE_OMP_CRITICAL */
591
592struct GTY((tag("GSS_OMP_CRITICAL")))
593 gomp_critical : public gimple_statement_omp
594{
595 /* [ WORD 1-7 ] : base class */
596
597 /* [ WORD 8 ] */
598 tree clauses;
599
600 /* [ WORD 9 ]
601 Critical section name. */
602 tree name;
603};
604
605
606struct GTY(()) gimple_omp_for_iter {
607 /* Condition code. */
608 enum tree_code cond;
609
610 /* Index variable. */
611 tree index;
612
613 /* Initial value. */
614 tree initial;
615
616 /* Final value. */
617 tree final;
618
619 /* Increment. */
620 tree incr;
621};
622
623/* GIMPLE_OMP_FOR */
624
625struct GTY((tag("GSS_OMP_FOR")))
626 gomp_for : public gimple_statement_omp
627{
628 /* [ WORD 1-7 ] : base class */
629
630 /* [ WORD 8 ] */
631 tree clauses;
632
633 /* [ WORD 9 ]
634 Number of elements in iter array. */
635 size_t collapse;
636
637 /* [ WORD 10 ] */
638 struct gimple_omp_for_iter * GTY((length ("%h.collapse"))) iter;
639
640 /* [ WORD 11 ]
641 Pre-body evaluated before the loop body begins. */
642 gimple_seq pre_body;
643};
644
645
646/* GIMPLE_OMP_PARALLEL, GIMPLE_OMP_TARGET, GIMPLE_OMP_TASK, GIMPLE_OMP_TEAMS */
647
648struct GTY((tag("GSS_OMP_PARALLEL_LAYOUT")))
649 gimple_statement_omp_parallel_layout : public gimple_statement_omp
650{
651 /* [ WORD 1-7 ] : base class */
652
653 /* [ WORD 8 ]
654 Clauses. */
655 tree clauses;
656
657 /* [ WORD 9 ]
658 Child function holding the body of the parallel region. */
659 tree child_fn;
660
661 /* [ WORD 10 ]
662 Shared data argument. */
663 tree data_arg;
664};
665
666/* GIMPLE_OMP_PARALLEL or GIMPLE_TASK */
667struct GTY((tag("GSS_OMP_PARALLEL_LAYOUT")))
668 gimple_statement_omp_taskreg : public gimple_statement_omp_parallel_layout
669{
670 /* No extra fields; adds invariant:
671 stmt->code == GIMPLE_OMP_PARALLEL
672 || stmt->code == GIMPLE_OMP_TASK
673 || stmt->code == GIMPLE_OMP_TEAMS. */
674};
675
676/* GIMPLE_OMP_PARALLEL */
677struct GTY((tag("GSS_OMP_PARALLEL_LAYOUT")))
678 gomp_parallel : public gimple_statement_omp_taskreg
679{
680 /* No extra fields; adds invariant:
681 stmt->code == GIMPLE_OMP_PARALLEL. */
682};
683
684/* GIMPLE_OMP_TARGET */
685struct GTY((tag("GSS_OMP_PARALLEL_LAYOUT")))
686 gomp_target : public gimple_statement_omp_parallel_layout
687{
688 /* No extra fields; adds invariant:
689 stmt->code == GIMPLE_OMP_TARGET. */
690};
691
692/* GIMPLE_OMP_TASK */
693
694struct GTY((tag("GSS_OMP_TASK")))
695 gomp_task : public gimple_statement_omp_taskreg
696{
697 /* [ WORD 1-10 ] : base class */
698
699 /* [ WORD 11 ]
700 Child function holding firstprivate initialization if needed. */
701 tree copy_fn;
702
703 /* [ WORD 12-13 ]
704 Size and alignment in bytes of the argument data block. */
705 tree arg_size;
706 tree arg_align;
707};
708
709
710/* GIMPLE_OMP_SECTION */
711/* Uses struct gimple_statement_omp. */
712
713
714/* GIMPLE_OMP_SECTIONS */
715
716struct GTY((tag("GSS_OMP_SECTIONS")))
717 gomp_sections : public gimple_statement_omp
718{
719 /* [ WORD 1-7 ] : base class */
720
721 /* [ WORD 8 ] */
722 tree clauses;
723
724 /* [ WORD 9 ]
725 The control variable used for deciding which of the sections to
726 execute. */
727 tree control;
728};
729
730/* GIMPLE_OMP_CONTINUE.
731
732 Note: This does not inherit from gimple_statement_omp, because we
733 do not need the body field. */
734
735struct GTY((tag("GSS_OMP_CONTINUE")))
736 gomp_continue : public gimple
737{
738 /* [ WORD 1-6 ] : base class */
739
740 /* [ WORD 7 ] */
741 tree control_def;
742
743 /* [ WORD 8 ] */
744 tree control_use;
745};
746
747/* GIMPLE_OMP_SINGLE, GIMPLE_OMP_ORDERED, GIMPLE_OMP_TASKGROUP,
748 GIMPLE_OMP_SCAN, GIMPLE_OMP_MASKED, GIMPLE_OMP_SCOPE. */
749
750struct GTY((tag("GSS_OMP_SINGLE_LAYOUT")))
751 gimple_statement_omp_single_layout : public gimple_statement_omp
752{
753 /* [ WORD 1-7 ] : base class */
754
755 /* [ WORD 8 ] */
756 tree clauses;
757};
758
759struct GTY((tag("GSS_OMP_SINGLE_LAYOUT")))
760 gomp_single : public gimple_statement_omp_single_layout
761{
762 /* No extra fields; adds invariant:
763 stmt->code == GIMPLE_OMP_SINGLE. */
764};
765
766struct GTY((tag("GSS_OMP_PARALLEL_LAYOUT")))
767 gomp_teams : public gimple_statement_omp_taskreg
768{
769 /* No extra fields; adds invariant:
770 stmt->code == GIMPLE_OMP_TEAMS. */
771};
772
773struct GTY((tag("GSS_OMP_SINGLE_LAYOUT")))
774 gomp_ordered : public gimple_statement_omp_single_layout
775{
776 /* No extra fields; adds invariant:
777 stmt->code == GIMPLE_OMP_ORDERED. */
778};
779
780struct GTY((tag("GSS_OMP_SINGLE_LAYOUT")))
781 gomp_scan : public gimple_statement_omp_single_layout
782{
783 /* No extra fields; adds invariant:
784 stmt->code == GIMPLE_OMP_SCAN. */
785};
786
787
788/* GIMPLE_OMP_ATOMIC_LOAD.
789 Note: This is based on gimple, not g_s_omp, because g_s_omp
790 contains a sequence, which we don't need here. */
791
792struct GTY((tag("GSS_OMP_ATOMIC_LOAD")))
793 gomp_atomic_load : public gimple
794{
795 /* [ WORD 1-6 ] : base class */
796
797 /* [ WORD 7-8 ] */
798 tree rhs, lhs;
799};
800
801/* GIMPLE_OMP_ATOMIC_STORE.
802 See note on GIMPLE_OMP_ATOMIC_LOAD. */
803
804struct GTY((tag("GSS_OMP_ATOMIC_STORE_LAYOUT")))
805 gimple_statement_omp_atomic_store_layout : public gimple
806{
807 /* [ WORD 1-6 ] : base class */
808
809 /* [ WORD 7 ] */
810 tree val;
811};
812
813struct GTY((tag("GSS_OMP_ATOMIC_STORE_LAYOUT")))
814 gomp_atomic_store :
815 public gimple_statement_omp_atomic_store_layout
816{
817 /* No extra fields; adds invariant:
818 stmt->code == GIMPLE_OMP_ATOMIC_STORE. */
819};
820
821struct GTY((tag("GSS_OMP_ATOMIC_STORE_LAYOUT")))
822 gimple_statement_omp_return :
823 public gimple_statement_omp_atomic_store_layout
824{
825 /* No extra fields; adds invariant:
826 stmt->code == GIMPLE_OMP_RETURN. */
827};
828
829/* Assumptions. */
830
831struct GTY((tag("GSS_ASSUME")))
832 gimple_statement_assume : public gimple
833{
834 /* [ WORD 1-6 ] : base class */
835
836 /* [ WORD 7 ] */
837 tree guard;
838
839 /* [ WORD 8 ] */
840 gimple_seq body;
841};
842
843/* GIMPLE_TRANSACTION. */
844
845/* Bits to be stored in the GIMPLE_TRANSACTION subcode. */
846
847/* The __transaction_atomic was declared [[outer]] or it is
848 __transaction_relaxed. */
849#define GTMA_IS_OUTER (1u << 0)
850#define GTMA_IS_RELAXED (1u << 1)
851#define GTMA_DECLARATION_MASK (GTMA_IS_OUTER | GTMA_IS_RELAXED)
852
853/* The transaction is seen to not have an abort. */
854#define GTMA_HAVE_ABORT (1u << 2)
855/* The transaction is seen to have loads or stores. */
856#define GTMA_HAVE_LOAD (1u << 3)
857#define GTMA_HAVE_STORE (1u << 4)
858/* The transaction MAY enter serial irrevocable mode in its dynamic scope. */
859#define GTMA_MAY_ENTER_IRREVOCABLE (1u << 5)
860/* The transaction WILL enter serial irrevocable mode.
861 An irrevocable block post-dominates the entire transaction, such
862 that all invocations of the transaction will go serial-irrevocable.
863 In such case, we don't bother instrumenting the transaction, and
864 tell the runtime that it should begin the transaction in
865 serial-irrevocable mode. */
866#define GTMA_DOES_GO_IRREVOCABLE (1u << 6)
867/* The transaction contains no instrumentation code whatsover, most
868 likely because it is guaranteed to go irrevocable upon entry. */
869#define GTMA_HAS_NO_INSTRUMENTATION (1u << 7)
870
871struct GTY((tag("GSS_TRANSACTION")))
872 gtransaction : public gimple_statement_with_memory_ops_base
873{
874 /* [ WORD 1-9 ] : base class */
875
876 /* [ WORD 10 ] */
877 gimple_seq body;
878
879 /* [ WORD 11-13 ] */
880 tree label_norm;
881 tree label_uninst;
882 tree label_over;
883};
884
885#define DEFGSSTRUCT(SYM, STRUCT, HAS_TREE_OP) SYM,
886enum gimple_statement_structure_enum {
887#include "gsstruct.def"
888 LAST_GSS_ENUM
889};
890#undef DEFGSSTRUCT
891
892/* A statement with the invariant that
893 stmt->code == GIMPLE_COND
894 i.e. a conditional jump statement. */
895
896struct GTY((tag("GSS_WITH_OPS")))
897 gcond : public gimple_statement_with_ops
898{
899 /* no additional fields; this uses the layout for GSS_WITH_OPS. */
900 static const enum gimple_code code_ = GIMPLE_COND;
901};
902
903/* A statement with the invariant that
904 stmt->code == GIMPLE_DEBUG
905 i.e. a debug statement. */
906
907struct GTY((tag("GSS_WITH_OPS")))
908 gdebug : public gimple_statement_with_ops
909{
910 /* no additional fields; this uses the layout for GSS_WITH_OPS. */
911};
912
913/* A statement with the invariant that
914 stmt->code == GIMPLE_GOTO
915 i.e. a goto statement. */
916
917struct GTY((tag("GSS_WITH_OPS")))
918 ggoto : public gimple_statement_with_ops
919{
920 /* no additional fields; this uses the layout for GSS_WITH_OPS. */
921};
922
923/* A statement with the invariant that
924 stmt->code == GIMPLE_LABEL
925 i.e. a label statement. */
926
927struct GTY((tag("GSS_WITH_OPS")))
928 glabel : public gimple_statement_with_ops
929{
930 /* no additional fields; this uses the layout for GSS_WITH_OPS. */
931};
932
933/* A statement with the invariant that
934 stmt->code == GIMPLE_SWITCH
935 i.e. a switch statement. */
936
937struct GTY((tag("GSS_WITH_OPS")))
938 gswitch : public gimple_statement_with_ops
939{
940 /* no additional fields; this uses the layout for GSS_WITH_OPS. */
941};
942
943/* A statement with the invariant that
944 stmt->code == GIMPLE_ASSIGN
945 i.e. an assignment statement. */
946
947struct GTY((tag("GSS_WITH_MEM_OPS")))
948 gassign : public gimple_statement_with_memory_ops
949{
950 static const enum gimple_code code_ = GIMPLE_ASSIGN;
951 /* no additional fields; this uses the layout for GSS_WITH_MEM_OPS. */
952};
953
954/* A statement with the invariant that
955 stmt->code == GIMPLE_RETURN
956 i.e. a return statement. */
957
958struct GTY((tag("GSS_WITH_MEM_OPS")))
959 greturn : public gimple_statement_with_memory_ops
960{
961 /* no additional fields; this uses the layout for GSS_WITH_MEM_OPS. */
962};
963
964template <>
965template <>
966inline bool
967is_a_helper <gasm *>::test (gimple *gs)
968{
969 return gs->code == GIMPLE_ASM;
970}
971
972template <>
973template <>
974inline bool
975is_a_helper <gassign *>::test (gimple *gs)
976{
977 return gs->code == GIMPLE_ASSIGN;
978}
979
980template <>
981template <>
982inline bool
983is_a_helper <const gassign *>::test (const gimple *gs)
984{
985 return gs->code == GIMPLE_ASSIGN;
986}
987
988template <>
989template <>
990inline bool
991is_a_helper <gbind *>::test (gimple *gs)
992{
993 return gs->code == GIMPLE_BIND;
994}
995
996template <>
997template <>
998inline bool
999is_a_helper <gcall *>::test (gimple *gs)
1000{
1001 return gs->code == GIMPLE_CALL;
1002}
1003
1004template <>
1005template <>
1006inline bool
1007is_a_helper <gcatch *>::test (gimple *gs)
1008{
1009 return gs->code == GIMPLE_CATCH;
1010}
1011
1012template <>
1013template <>
1014inline bool
1015is_a_helper <gcond *>::test (gimple *gs)
1016{
1017 return gs->code == GIMPLE_COND;
1018}
1019
1020template <>
1021template <>
1022inline bool
1023is_a_helper <const gcond *>::test (const gimple *gs)
1024{
1025 return gs->code == GIMPLE_COND;
1026}
1027
1028template <>
1029template <>
1030inline bool
1031is_a_helper <gdebug *>::test (gimple *gs)
1032{
1033 return gs->code == GIMPLE_DEBUG;
1034}
1035
1036template <>
1037template <>
1038inline bool
1039is_a_helper <const gdebug *>::test (const gimple *gs)
1040{
1041 return gs->code == GIMPLE_DEBUG;
1042}
1043
1044template <>
1045template <>
1046inline bool
1047is_a_helper <ggoto *>::test (gimple *gs)
1048{
1049 return gs->code == GIMPLE_GOTO;
1050}
1051
1052template <>
1053template <>
1054inline bool
1055is_a_helper <const ggoto *>::test (const gimple *gs)
1056{
1057 return gs->code == GIMPLE_GOTO;
1058}
1059
1060template <>
1061template <>
1062inline bool
1063is_a_helper <glabel *>::test (gimple *gs)
1064{
1065 return gs->code == GIMPLE_LABEL;
1066}
1067
1068template <>
1069template <>
1070inline bool
1071is_a_helper <const glabel *>::test (const gimple *gs)
1072{
1073 return gs->code == GIMPLE_LABEL;
1074}
1075
1076template <>
1077template <>
1078inline bool
1079is_a_helper <gresx *>::test (gimple *gs)
1080{
1081 return gs->code == GIMPLE_RESX;
1082}
1083
1084template <>
1085template <>
1086inline bool
1087is_a_helper <geh_dispatch *>::test (gimple *gs)
1088{
1089 return gs->code == GIMPLE_EH_DISPATCH;
1090}
1091
1092template <>
1093template <>
1094inline bool
1095is_a_helper <geh_else *>::test (gimple *gs)
1096{
1097 return gs->code == GIMPLE_EH_ELSE;
1098}
1099
1100template <>
1101template <>
1102inline bool
1103is_a_helper <const geh_else *>::test (const gimple *gs)
1104{
1105 return gs->code == GIMPLE_EH_ELSE;
1106}
1107
1108template <>
1109template <>
1110inline bool
1111is_a_helper <geh_filter *>::test (gimple *gs)
1112{
1113 return gs->code == GIMPLE_EH_FILTER;
1114}
1115
1116template <>
1117template <>
1118inline bool
1119is_a_helper <geh_mnt *>::test (gimple *gs)
1120{
1121 return gs->code == GIMPLE_EH_MUST_NOT_THROW;
1122}
1123
1124template <>
1125template <>
1126inline bool
1127is_a_helper <const geh_mnt *>::test (const gimple *gs)
1128{
1129 return gs->code == GIMPLE_EH_MUST_NOT_THROW;
1130}
1131
1132template <>
1133template <>
1134inline bool
1135is_a_helper <gomp_atomic_load *>::test (gimple *gs)
1136{
1137 return gs->code == GIMPLE_OMP_ATOMIC_LOAD;
1138}
1139
1140template <>
1141template <>
1142inline bool
1143is_a_helper <gomp_atomic_store *>::test (gimple *gs)
1144{
1145 return gs->code == GIMPLE_OMP_ATOMIC_STORE;
1146}
1147
1148template <>
1149template <>
1150inline bool
1151is_a_helper <gimple_statement_omp_return *>::test (gimple *gs)
1152{
1153 return gs->code == GIMPLE_OMP_RETURN;
1154}
1155
1156template <>
1157template <>
1158inline bool
1159is_a_helper <gomp_continue *>::test (gimple *gs)
1160{
1161 return gs->code == GIMPLE_OMP_CONTINUE;
1162}
1163
1164template <>
1165template <>
1166inline bool
1167is_a_helper <gomp_critical *>::test (gimple *gs)
1168{
1169 return gs->code == GIMPLE_OMP_CRITICAL;
1170}
1171
1172template <>
1173template <>
1174inline bool
1175is_a_helper <gomp_ordered *>::test (gimple *gs)
1176{
1177 return gs->code == GIMPLE_OMP_ORDERED;
1178}
1179
1180template <>
1181template <>
1182inline bool
1183is_a_helper <gomp_scan *>::test (gimple *gs)
1184{
1185 return gs->code == GIMPLE_OMP_SCAN;
1186}
1187
1188template <>
1189template <>
1190inline bool
1191is_a_helper <gomp_for *>::test (gimple *gs)
1192{
1193 return gs->code == GIMPLE_OMP_FOR;
1194}
1195
1196template <>
1197template <>
1198inline bool
1199is_a_helper <gimple_statement_omp_taskreg *>::test (gimple *gs)
1200{
1201 return (gs->code == GIMPLE_OMP_PARALLEL
1202 || gs->code == GIMPLE_OMP_TASK
1203 || gs->code == GIMPLE_OMP_TEAMS);
1204}
1205
1206template <>
1207template <>
1208inline bool
1209is_a_helper <gomp_parallel *>::test (gimple *gs)
1210{
1211 return gs->code == GIMPLE_OMP_PARALLEL;
1212}
1213
1214template <>
1215template <>
1216inline bool
1217is_a_helper <gomp_target *>::test (gimple *gs)
1218{
1219 return gs->code == GIMPLE_OMP_TARGET;
1220}
1221
1222template <>
1223template <>
1224inline bool
1225is_a_helper <gomp_sections *>::test (gimple *gs)
1226{
1227 return gs->code == GIMPLE_OMP_SECTIONS;
1228}
1229
1230template <>
1231template <>
1232inline bool
1233is_a_helper <gomp_single *>::test (gimple *gs)
1234{
1235 return gs->code == GIMPLE_OMP_SINGLE;
1236}
1237
1238template <>
1239template <>
1240inline bool
1241is_a_helper <gomp_teams *>::test (gimple *gs)
1242{
1243 return gs->code == GIMPLE_OMP_TEAMS;
1244}
1245
1246template <>
1247template <>
1248inline bool
1249is_a_helper <gomp_task *>::test (gimple *gs)
1250{
1251 return gs->code == GIMPLE_OMP_TASK;
1252}
1253
1254template <>
1255template <>
1256inline bool
1257is_a_helper <gphi *>::test (gimple *gs)
1258{
1259 return gs->code == GIMPLE_PHI;
1260}
1261
1262template <>
1263template <>
1264inline bool
1265is_a_helper <greturn *>::test (gimple *gs)
1266{
1267 return gs->code == GIMPLE_RETURN;
1268}
1269
1270template <>
1271template <>
1272inline bool
1273is_a_helper <gswitch *>::test (gimple *gs)
1274{
1275 return gs->code == GIMPLE_SWITCH;
1276}
1277
1278template <>
1279template <>
1280inline bool
1281is_a_helper <const gswitch *>::test (const gimple *gs)
1282{
1283 return gs->code == GIMPLE_SWITCH;
1284}
1285
1286template <>
1287template <>
1288inline bool
1289is_a_helper <gimple_statement_assume *>::test (gimple *gs)
1290{
1291 return gs->code == GIMPLE_ASSUME;
1292}
1293
1294template <>
1295template <>
1296inline bool
1297is_a_helper <gtransaction *>::test (gimple *gs)
1298{
1299 return gs->code == GIMPLE_TRANSACTION;
1300}
1301
1302template <>
1303template <>
1304inline bool
1305is_a_helper <gtry *>::test (gimple *gs)
1306{
1307 return gs->code == GIMPLE_TRY;
1308}
1309
1310template <>
1311template <>
1312inline bool
1313is_a_helper <const gtry *>::test (const gimple *gs)
1314{
1315 return gs->code == GIMPLE_TRY;
1316}
1317
1318template <>
1319template <>
1320inline bool
1321is_a_helper <gimple_statement_wce *>::test (gimple *gs)
1322{
1323 return gs->code == GIMPLE_WITH_CLEANUP_EXPR;
1324}
1325
1326template <>
1327template <>
1328inline bool
1329is_a_helper <const gasm *>::test (const gimple *gs)
1330{
1331 return gs->code == GIMPLE_ASM;
1332}
1333
1334template <>
1335template <>
1336inline bool
1337is_a_helper <const gbind *>::test (const gimple *gs)
1338{
1339 return gs->code == GIMPLE_BIND;
1340}
1341
1342template <>
1343template <>
1344inline bool
1345is_a_helper <const gcall *>::test (const gimple *gs)
1346{
1347 return gs->code == GIMPLE_CALL;
1348}
1349
1350template <>
1351template <>
1352inline bool
1353is_a_helper <const gcatch *>::test (const gimple *gs)
1354{
1355 return gs->code == GIMPLE_CATCH;
1356}
1357
1358template <>
1359template <>
1360inline bool
1361is_a_helper <const gresx *>::test (const gimple *gs)
1362{
1363 return gs->code == GIMPLE_RESX;
1364}
1365
1366template <>
1367template <>
1368inline bool
1369is_a_helper <const geh_dispatch *>::test (const gimple *gs)
1370{
1371 return gs->code == GIMPLE_EH_DISPATCH;
1372}
1373
1374template <>
1375template <>
1376inline bool
1377is_a_helper <const geh_filter *>::test (const gimple *gs)
1378{
1379 return gs->code == GIMPLE_EH_FILTER;
1380}
1381
1382template <>
1383template <>
1384inline bool
1385is_a_helper <const gomp_atomic_load *>::test (const gimple *gs)
1386{
1387 return gs->code == GIMPLE_OMP_ATOMIC_LOAD;
1388}
1389
1390template <>
1391template <>
1392inline bool
1393is_a_helper <const gomp_atomic_store *>::test (const gimple *gs)
1394{
1395 return gs->code == GIMPLE_OMP_ATOMIC_STORE;
1396}
1397
1398template <>
1399template <>
1400inline bool
1401is_a_helper <const gimple_statement_omp_return *>::test (const gimple *gs)
1402{
1403 return gs->code == GIMPLE_OMP_RETURN;
1404}
1405
1406template <>
1407template <>
1408inline bool
1409is_a_helper <const gomp_continue *>::test (const gimple *gs)
1410{
1411 return gs->code == GIMPLE_OMP_CONTINUE;
1412}
1413
1414template <>
1415template <>
1416inline bool
1417is_a_helper <const gomp_critical *>::test (const gimple *gs)
1418{
1419 return gs->code == GIMPLE_OMP_CRITICAL;
1420}
1421
1422template <>
1423template <>
1424inline bool
1425is_a_helper <const gomp_ordered *>::test (const gimple *gs)
1426{
1427 return gs->code == GIMPLE_OMP_ORDERED;
1428}
1429
1430template <>
1431template <>
1432inline bool
1433is_a_helper <const gomp_scan *>::test (const gimple *gs)
1434{
1435 return gs->code == GIMPLE_OMP_SCAN;
1436}
1437
1438template <>
1439template <>
1440inline bool
1441is_a_helper <const gomp_for *>::test (const gimple *gs)
1442{
1443 return gs->code == GIMPLE_OMP_FOR;
1444}
1445
1446template <>
1447template <>
1448inline bool
1449is_a_helper <const gimple_statement_omp_taskreg *>::test (const gimple *gs)
1450{
1451 return (gs->code == GIMPLE_OMP_PARALLEL
1452 || gs->code == GIMPLE_OMP_TASK
1453 || gs->code == GIMPLE_OMP_TEAMS);
1454}
1455
1456template <>
1457template <>
1458inline bool
1459is_a_helper <const gomp_parallel *>::test (const gimple *gs)
1460{
1461 return gs->code == GIMPLE_OMP_PARALLEL;
1462}
1463
1464template <>
1465template <>
1466inline bool
1467is_a_helper <const gomp_target *>::test (const gimple *gs)
1468{
1469 return gs->code == GIMPLE_OMP_TARGET;
1470}
1471
1472template <>
1473template <>
1474inline bool
1475is_a_helper <const gomp_sections *>::test (const gimple *gs)
1476{
1477 return gs->code == GIMPLE_OMP_SECTIONS;
1478}
1479
1480template <>
1481template <>
1482inline bool
1483is_a_helper <const gomp_single *>::test (const gimple *gs)
1484{
1485 return gs->code == GIMPLE_OMP_SINGLE;
1486}
1487
1488template <>
1489template <>
1490inline bool
1491is_a_helper <const gomp_teams *>::test (const gimple *gs)
1492{
1493 return gs->code == GIMPLE_OMP_TEAMS;
1494}
1495
1496template <>
1497template <>
1498inline bool
1499is_a_helper <const gomp_task *>::test (const gimple *gs)
1500{
1501 return gs->code == GIMPLE_OMP_TASK;
1502}
1503
1504template <>
1505template <>
1506inline bool
1507is_a_helper <const gphi *>::test (const gimple *gs)
1508{
1509 return gs->code == GIMPLE_PHI;
1510}
1511
1512template <>
1513template <>
1514inline bool
1515is_a_helper <const greturn *>::test (const gimple *gs)
1516{
1517 return gs->code == GIMPLE_RETURN;
1518}
1519
1520template <>
1521template <>
1522inline bool
1523is_a_helper <const gimple_statement_assume *>::test (const gimple *gs)
1524{
1525 return gs->code == GIMPLE_ASSUME;
1526}
1527
1528template <>
1529template <>
1530inline bool
1531is_a_helper <const gtransaction *>::test (const gimple *gs)
1532{
1533 return gs->code == GIMPLE_TRANSACTION;
1534}
1535
1536/* Offset in bytes to the location of the operand vector.
1537 Zero if there is no operand vector for this tuple structure. */
1538extern size_t const gimple_ops_offset_[];
1539
1540/* Map GIMPLE codes to GSS codes. */
1541extern enum gimple_statement_structure_enum const gss_for_code_[];
1542
1543/* This variable holds the currently expanded gimple statement for purposes
1544 of comminucating the profile info to the builtin expanders. */
1545extern gimple *currently_expanding_gimple_stmt;
1546
1547size_t gimple_size (enum gimple_code code, unsigned num_ops = 0);
1548void gimple_init (gimple *g, enum gimple_code code, unsigned num_ops);
1549gimple *gimple_alloc (enum gimple_code, unsigned CXX_MEM_STAT_INFO);
1550greturn *gimple_build_return (tree);
1551void gimple_call_reset_alias_info (gcall *);
1552gcall *gimple_build_call_vec (tree, const vec<tree> &);
1553gcall *gimple_build_call (tree, unsigned, ...);
1554gcall *gimple_build_call_valist (tree, unsigned, va_list);
1555gcall *gimple_build_call_internal (enum internal_fn, unsigned, ...);
1556gcall *gimple_build_call_internal_vec (enum internal_fn, const vec<tree> &);
1557gcall *gimple_build_call_from_tree (tree, tree);
1558gassign *gimple_build_assign (tree, tree CXX_MEM_STAT_INFO);
1559gassign *gimple_build_assign (tree, enum tree_code,
1560 tree, tree, tree CXX_MEM_STAT_INFO);
1561gassign *gimple_build_assign (tree, enum tree_code,
1562 tree, tree CXX_MEM_STAT_INFO);
1563gassign *gimple_build_assign (tree, enum tree_code, tree CXX_MEM_STAT_INFO);
1564gcond *gimple_build_cond (enum tree_code, tree, tree, tree, tree);
1565gcond *gimple_build_cond_from_tree (tree, tree, tree);
1566void gimple_cond_set_condition_from_tree (gcond *, tree);
1567glabel *gimple_build_label (tree label);
1568ggoto *gimple_build_goto (tree dest);
1569gimple *gimple_build_nop (void);
1570gbind *gimple_build_bind (tree, gimple_seq, tree);
1571gasm *gimple_build_asm_vec (const char *, vec<tree, va_gc> *,
1572 vec<tree, va_gc> *, vec<tree, va_gc> *,
1573 vec<tree, va_gc> *);
1574gcatch *gimple_build_catch (tree, gimple_seq);
1575geh_filter *gimple_build_eh_filter (tree, gimple_seq);
1576geh_mnt *gimple_build_eh_must_not_throw (tree);
1577geh_else *gimple_build_eh_else (gimple_seq, gimple_seq);
1578gtry *gimple_build_try (gimple_seq, gimple_seq,
1579 enum gimple_try_flags);
1580gimple *gimple_build_wce (gimple_seq);
1581gresx *gimple_build_resx (int);
1582gswitch *gimple_build_switch_nlabels (unsigned, tree, tree);
1583gswitch *gimple_build_switch (tree, tree, const vec<tree> &);
1584geh_dispatch *gimple_build_eh_dispatch (int);
1585gdebug *gimple_build_debug_bind (tree, tree, gimple * CXX_MEM_STAT_INFO);
1586gdebug *gimple_build_debug_source_bind (tree, tree, gimple * CXX_MEM_STAT_INFO);
1587gdebug *gimple_build_debug_begin_stmt (tree, location_t CXX_MEM_STAT_INFO);
1588gdebug *gimple_build_debug_inline_entry (tree, location_t CXX_MEM_STAT_INFO);
1589gomp_critical *gimple_build_omp_critical (gimple_seq, tree, tree);
1590gomp_for *gimple_build_omp_for (gimple_seq, int, tree, size_t, gimple_seq);
1591gomp_parallel *gimple_build_omp_parallel (gimple_seq, tree, tree, tree);
1592gomp_task *gimple_build_omp_task (gimple_seq, tree, tree, tree, tree,
1593 tree, tree);
1594gimple *gimple_build_omp_section (gimple_seq);
1595gimple *gimple_build_omp_structured_block (gimple_seq);
1596gimple *gimple_build_omp_scope (gimple_seq, tree);
1597gimple *gimple_build_omp_master (gimple_seq);
1598gimple *gimple_build_omp_masked (gimple_seq, tree);
1599gimple *gimple_build_omp_taskgroup (gimple_seq, tree);
1600gomp_continue *gimple_build_omp_continue (tree, tree);
1601gomp_ordered *gimple_build_omp_ordered (gimple_seq, tree);
1602gimple *gimple_build_omp_return (bool);
1603gomp_scan *gimple_build_omp_scan (gimple_seq, tree);
1604gomp_sections *gimple_build_omp_sections (gimple_seq, tree);
1605gimple *gimple_build_omp_sections_switch (void);
1606gomp_single *gimple_build_omp_single (gimple_seq, tree);
1607gomp_target *gimple_build_omp_target (gimple_seq, int, tree);
1608gomp_teams *gimple_build_omp_teams (gimple_seq, tree);
1609gomp_atomic_load *gimple_build_omp_atomic_load (tree, tree,
1610 enum omp_memory_order);
1611gomp_atomic_store *gimple_build_omp_atomic_store (tree, enum omp_memory_order);
1612gimple *gimple_build_assume (tree, gimple_seq);
1613gtransaction *gimple_build_transaction (gimple_seq);
1614extern void gimple_seq_add_stmt (gimple_seq *, gimple *);
1615extern void gimple_seq_add_stmt_without_update (gimple_seq *, gimple *);
1616void gimple_seq_add_seq (gimple_seq *, gimple_seq);
1617void gimple_seq_add_seq_without_update (gimple_seq *, gimple_seq);
1618extern void annotate_all_with_location_after (gimple_seq, gimple_stmt_iterator,
1619 location_t);
1620extern void annotate_all_with_location (gimple_seq, location_t);
1621bool empty_body_p (gimple_seq);
1622gimple_seq gimple_seq_copy (gimple_seq);
1623bool gimple_call_same_target_p (const gimple *, const gimple *);
1624int gimple_call_flags (const gimple *);
1625int gimple_call_arg_flags (const gcall *, unsigned);
1626int gimple_call_retslot_flags (const gcall *);
1627int gimple_call_static_chain_flags (const gcall *);
1628int gimple_call_return_flags (const gcall *);
1629bool gimple_call_nonnull_result_p (gcall *);
1630tree gimple_call_nonnull_arg (gcall *);
1631bool gimple_assign_copy_p (gimple *);
1632bool gimple_assign_ssa_name_copy_p (gimple *);
1633bool gimple_assign_unary_nop_p (gimple *);
1634bool gimple_assign_load_p (const gimple *);
1635void gimple_set_bb (gimple *, basic_block);
1636void gimple_assign_set_rhs_from_tree (gimple_stmt_iterator *, tree);
1637void gimple_assign_set_rhs_with_ops (gimple_stmt_iterator *, enum tree_code,
1638 tree, tree, tree);
1639tree gimple_get_lhs (const gimple *);
1640void gimple_set_lhs (gimple *, tree);
1641gimple *gimple_copy (gimple *);
1642void gimple_move_vops (gimple *, gimple *);
1643bool gimple_has_side_effects (const gimple *);
1644bool gimple_could_trap_p_1 (const gimple *, bool, bool);
1645bool gimple_could_trap_p (const gimple *);
1646bool gimple_assign_rhs_could_trap_p (gimple *);
1647extern void dump_gimple_statistics (void);
1648unsigned get_gimple_rhs_num_ops (enum tree_code);
1649gcall *gimple_call_copy_skip_args (gcall *, bitmap);
1650extern bool gimple_compare_field_offset (tree, tree);
1651extern tree gimple_unsigned_type (tree);
1652extern tree gimple_signed_type (tree);
1653extern alias_set_type gimple_get_alias_set (tree);
1654extern bool gimple_ior_addresses_taken (bitmap, gimple *);
1655extern bool gimple_builtin_call_types_compatible_p (const gimple *, tree);
1656extern combined_fn gimple_call_combined_fn (const gimple *);
1657extern bool gimple_call_operator_delete_p (const gcall *);
1658extern bool gimple_call_builtin_p (const gimple *);
1659extern bool gimple_call_builtin_p (const gimple *, enum built_in_class);
1660extern bool gimple_call_builtin_p (const gimple *, enum built_in_function);
1661extern bool gimple_asm_clobbers_memory_p (const gasm *);
1662extern void dump_decl_set (FILE *, bitmap);
1663extern bool nonfreeing_call_p (gimple *);
1664extern bool nonbarrier_call_p (gimple *);
1665extern bool infer_nonnull_range (gimple *, tree);
1666extern bool infer_nonnull_range_by_dereference (gimple *, tree);
1667extern bool infer_nonnull_range_by_attribute (gimple *, tree);
1668extern void sort_case_labels (vec<tree> &);
1669extern void preprocess_case_label_vec_for_gimple (vec<tree> &, tree, tree *);
1670extern void gimple_seq_set_location (gimple_seq, location_t);
1671extern void gimple_seq_discard (gimple_seq);
1672extern void maybe_remove_unused_call_args (struct function *, gimple *);
1673extern bool gimple_inexpensive_call_p (gcall *);
1674extern bool stmt_can_terminate_bb_p (gimple *);
1675extern location_t gimple_or_expr_nonartificial_location (gimple *, tree);
1676gcall *gimple_build_builtin_unreachable (location_t);
1677
1678/* Return the disposition for a warning (or all warnings by default)
1679 for a statement. */
1680extern bool warning_suppressed_p (const gimple *, opt_code = all_warnings)
1681 ATTRIBUTE_NONNULL (1);
1682/* Set the disposition for a warning (or all warnings by default)
1683 at a location to enabled by default. */
1684extern void suppress_warning (gimple *, opt_code = all_warnings,
1685 bool = true) ATTRIBUTE_NONNULL (1);
1686
1687/* Copy the warning disposition mapping from one statement to another. */
1688extern void copy_warning (gimple *, const gimple *)
1689 ATTRIBUTE_NONNULL (1) ATTRIBUTE_NONNULL (2);
1690/* Copy the warning disposition mapping from an expression to a statement. */
1691extern void copy_warning (gimple *, const_tree)
1692 ATTRIBUTE_NONNULL (1) ATTRIBUTE_NONNULL (2);
1693/* Copy the warning disposition mapping from a statement to an expression. */
1694extern void copy_warning (tree, const gimple *)
1695 ATTRIBUTE_NONNULL (1) ATTRIBUTE_NONNULL (2);
1696
1697/* Formal (expression) temporary table handling: multiple occurrences of
1698 the same scalar expression are evaluated into the same temporary. */
1699
1700typedef struct gimple_temp_hash_elt
1701{
1702 tree val; /* Key */
1703 tree temp; /* Value */
1704} elt_t;
1705
1706/* Get the number of the next statement uid to be allocated. */
1707inline unsigned int
1708gimple_stmt_max_uid (struct function *fn)
1709{
1710 return fn->last_stmt_uid;
1711}
1712
1713/* Set the number of the next statement uid to be allocated. */
1714inline void
1715set_gimple_stmt_max_uid (struct function *fn, unsigned int maxid)
1716{
1717 fn->last_stmt_uid = maxid;
1718}
1719
1720/* Set the number of the next statement uid to be allocated. */
1721inline unsigned int
1722inc_gimple_stmt_max_uid (struct function *fn)
1723{
1724 return fn->last_stmt_uid++;
1725}
1726
1727/* Return the first node in GIMPLE sequence S. */
1728
1729inline gimple_seq_node
1730gimple_seq_first (gimple_seq s)
1731{
1732 return s;
1733}
1734
1735
1736/* Return the first statement in GIMPLE sequence S. */
1737
1738inline gimple *
1739gimple_seq_first_stmt (gimple_seq s)
1740{
1741 gimple_seq_node n = gimple_seq_first (s);
1742 return n;
1743}
1744
1745/* Return the first statement in GIMPLE sequence S as a gbind *,
1746 verifying that it has code GIMPLE_BIND in a checked build. */
1747
1748inline gbind *
1749gimple_seq_first_stmt_as_a_bind (gimple_seq s)
1750{
1751 gimple_seq_node n = gimple_seq_first (s);
1752 return as_a <gbind *> (p: n);
1753}
1754
1755
1756/* Return the last node in GIMPLE sequence S. */
1757
1758inline gimple_seq_node
1759gimple_seq_last (gimple_seq s)
1760{
1761 return s ? s->prev : NULL;
1762}
1763
1764
1765/* Return the last statement in GIMPLE sequence S. */
1766
1767inline gimple *
1768gimple_seq_last_stmt (gimple_seq s)
1769{
1770 gimple_seq_node n = gimple_seq_last (s);
1771 return n;
1772}
1773
1774
1775/* Set the last node in GIMPLE sequence *PS to LAST. */
1776
1777inline void
1778gimple_seq_set_last (gimple_seq *ps, gimple_seq_node last)
1779{
1780 (*ps)->prev = last;
1781}
1782
1783
1784/* Set the first node in GIMPLE sequence *PS to FIRST. */
1785
1786inline void
1787gimple_seq_set_first (gimple_seq *ps, gimple_seq_node first)
1788{
1789 *ps = first;
1790}
1791
1792
1793/* Return true if GIMPLE sequence S is empty. */
1794
1795inline bool
1796gimple_seq_empty_p (gimple_seq s)
1797{
1798 return s == NULL;
1799}
1800
1801/* Allocate a new sequence and initialize its first element with STMT. */
1802
1803inline gimple_seq
1804gimple_seq_alloc_with_stmt (gimple *stmt)
1805{
1806 gimple_seq seq = NULL;
1807 gimple_seq_add_stmt (&seq, stmt);
1808 return seq;
1809}
1810
1811
1812/* Returns the sequence of statements in BB. */
1813
1814inline gimple_seq
1815bb_seq (const_basic_block bb)
1816{
1817 return (!(bb->flags & BB_RTL)) ? bb->il.gimple.seq : NULL;
1818}
1819
1820inline gimple_seq *
1821bb_seq_addr (basic_block bb)
1822{
1823 return (!(bb->flags & BB_RTL)) ? &bb->il.gimple.seq : NULL;
1824}
1825
1826/* Sets the sequence of statements in BB to SEQ. */
1827
1828inline void
1829set_bb_seq (basic_block bb, gimple_seq seq)
1830{
1831 gcc_checking_assert (!(bb->flags & BB_RTL));
1832 bb->il.gimple.seq = seq;
1833}
1834
1835
1836/* Return the code for GIMPLE statement G. */
1837
1838inline enum gimple_code
1839gimple_code (const gimple *g)
1840{
1841 return g->code;
1842}
1843
1844
1845/* Return the GSS code used by a GIMPLE code. */
1846
1847inline enum gimple_statement_structure_enum
1848gss_for_code (enum gimple_code code)
1849{
1850 gcc_gimple_checking_assert ((unsigned int)code < LAST_AND_UNUSED_GIMPLE_CODE);
1851 return gss_for_code_[code];
1852}
1853
1854
1855/* Return which GSS code is used by GS. */
1856
1857inline enum gimple_statement_structure_enum
1858gimple_statement_structure (gimple *gs)
1859{
1860 return gss_for_code (code: gimple_code (g: gs));
1861}
1862
1863
1864/* Return true if statement G has sub-statements. This is only true for
1865 High GIMPLE statements. */
1866
1867inline bool
1868gimple_has_substatements (gimple *g)
1869{
1870 switch (gimple_code (g))
1871 {
1872 case GIMPLE_ASSUME:
1873 case GIMPLE_BIND:
1874 case GIMPLE_CATCH:
1875 case GIMPLE_EH_FILTER:
1876 case GIMPLE_EH_ELSE:
1877 case GIMPLE_TRY:
1878 case GIMPLE_OMP_FOR:
1879 case GIMPLE_OMP_MASTER:
1880 case GIMPLE_OMP_MASKED:
1881 case GIMPLE_OMP_TASKGROUP:
1882 case GIMPLE_OMP_ORDERED:
1883 case GIMPLE_OMP_SECTION:
1884 case GIMPLE_OMP_STRUCTURED_BLOCK:
1885 case GIMPLE_OMP_PARALLEL:
1886 case GIMPLE_OMP_TASK:
1887 case GIMPLE_OMP_SCOPE:
1888 case GIMPLE_OMP_SECTIONS:
1889 case GIMPLE_OMP_SINGLE:
1890 case GIMPLE_OMP_TARGET:
1891 case GIMPLE_OMP_TEAMS:
1892 case GIMPLE_OMP_CRITICAL:
1893 case GIMPLE_WITH_CLEANUP_EXPR:
1894 case GIMPLE_TRANSACTION:
1895 return true;
1896
1897 default:
1898 return false;
1899 }
1900}
1901
1902
1903/* Return the basic block holding statement G. */
1904
1905inline basic_block
1906gimple_bb (const gimple *g)
1907{
1908 return g->bb;
1909}
1910
1911
1912/* Return the lexical scope block holding statement G. */
1913
1914inline tree
1915gimple_block (const gimple *g)
1916{
1917 return LOCATION_BLOCK (g->location);
1918}
1919
1920/* Forward declare. */
1921inline void gimple_set_location (gimple *, location_t);
1922
1923/* Set BLOCK to be the lexical scope block holding statement G. */
1924
1925inline void
1926gimple_set_block (gimple *g, tree block)
1927{
1928 gimple_set_location (g, set_block (loc: g->location, block));
1929}
1930
1931/* Return location information for statement G. */
1932
1933inline location_t
1934gimple_location (const gimple *g)
1935{
1936 return g->location;
1937}
1938
1939/* Return location information for statement G if g is not NULL.
1940 Otherwise, UNKNOWN_LOCATION is returned. */
1941
1942inline location_t
1943gimple_location_safe (const gimple *g)
1944{
1945 return g ? gimple_location (g) : UNKNOWN_LOCATION;
1946}
1947
1948/* Set location information for statement G. */
1949
1950inline void
1951gimple_set_location (gimple *g, location_t location)
1952{
1953 /* Copy the no-warning data to the statement location. */
1954 if (g->location != UNKNOWN_LOCATION)
1955 copy_warning (location, g->location);
1956 g->location = location;
1957}
1958
1959/* Return address of the location information for statement G. */
1960
1961inline location_t *
1962gimple_location_ptr (gimple *g)
1963{
1964 return &g->location;
1965}
1966
1967
1968/* Return true if G contains location information. */
1969
1970inline bool
1971gimple_has_location (const gimple *g)
1972{
1973 return LOCATION_LOCUS (gimple_location (g)) != UNKNOWN_LOCATION;
1974}
1975
1976
1977/* Return non-artificial location information for statement G. */
1978
1979inline location_t
1980gimple_nonartificial_location (const gimple *g)
1981{
1982 location_t *ploc = NULL;
1983
1984 if (tree block = gimple_block (g))
1985 ploc = block_nonartificial_location (block);
1986
1987 return ploc ? *ploc : gimple_location (g);
1988}
1989
1990
1991/* Return the file name of the location of STMT. */
1992
1993inline const char *
1994gimple_filename (const gimple *stmt)
1995{
1996 return LOCATION_FILE (gimple_location (stmt));
1997}
1998
1999
2000/* Return the line number of the location of STMT. */
2001
2002inline int
2003gimple_lineno (const gimple *stmt)
2004{
2005 return LOCATION_LINE (gimple_location (stmt));
2006}
2007
2008
2009/* Determine whether SEQ is a singleton. */
2010
2011inline bool
2012gimple_seq_singleton_p (gimple_seq seq)
2013{
2014 return ((gimple_seq_first (s: seq) != NULL)
2015 && (gimple_seq_first (s: seq) == gimple_seq_last (s: seq)));
2016}
2017
2018/* Return true if no warnings should be emitted for statement STMT. */
2019
2020inline bool
2021gimple_no_warning_p (const gimple *stmt)
2022{
2023 return stmt->no_warning;
2024}
2025
2026/* Set the no_warning flag of STMT to NO_WARNING. */
2027
2028inline void
2029gimple_set_no_warning (gimple *stmt, bool no_warning)
2030{
2031 stmt->no_warning = (unsigned) no_warning;
2032}
2033
2034/* Set the visited status on statement STMT to VISITED_P.
2035
2036 Please note that this 'visited' property of the gimple statement is
2037 supposed to be undefined at pass boundaries. This means that a
2038 given pass should not assume it contains any useful value when the
2039 pass starts and thus can set it to any value it sees fit.
2040
2041 You can learn more about the visited property of the gimple
2042 statement by reading the comments of the 'visited' data member of
2043 struct gimple.
2044 */
2045
2046inline void
2047gimple_set_visited (gimple *stmt, bool visited_p)
2048{
2049 stmt->visited = (unsigned) visited_p;
2050}
2051
2052
2053/* Return the visited status for statement STMT.
2054
2055 Please note that this 'visited' property of the gimple statement is
2056 supposed to be undefined at pass boundaries. This means that a
2057 given pass should not assume it contains any useful value when the
2058 pass starts and thus can set it to any value it sees fit.
2059
2060 You can learn more about the visited property of the gimple
2061 statement by reading the comments of the 'visited' data member of
2062 struct gimple. */
2063
2064inline bool
2065gimple_visited_p (gimple *stmt)
2066{
2067 return stmt->visited;
2068}
2069
2070
2071/* Set pass local flag PLF on statement STMT to VAL_P.
2072
2073 Please note that this PLF property of the gimple statement is
2074 supposed to be undefined at pass boundaries. This means that a
2075 given pass should not assume it contains any useful value when the
2076 pass starts and thus can set it to any value it sees fit.
2077
2078 You can learn more about the PLF property by reading the comment of
2079 the 'plf' data member of struct gimple_statement_structure. */
2080
2081inline void
2082gimple_set_plf (gimple *stmt, enum plf_mask plf, bool val_p)
2083{
2084 if (val_p)
2085 stmt->plf |= (unsigned int) plf;
2086 else
2087 stmt->plf &= ~((unsigned int) plf);
2088}
2089
2090
2091/* Return the value of pass local flag PLF on statement STMT.
2092
2093 Please note that this 'plf' property of the gimple statement is
2094 supposed to be undefined at pass boundaries. This means that a
2095 given pass should not assume it contains any useful value when the
2096 pass starts and thus can set it to any value it sees fit.
2097
2098 You can learn more about the plf property by reading the comment of
2099 the 'plf' data member of struct gimple_statement_structure. */
2100
2101inline unsigned int
2102gimple_plf (gimple *stmt, enum plf_mask plf)
2103{
2104 return stmt->plf & ((unsigned int) plf);
2105}
2106
2107
2108/* Set the UID of statement.
2109
2110 Please note that this UID property is supposed to be undefined at
2111 pass boundaries. This means that a given pass should not assume it
2112 contains any useful value when the pass starts and thus can set it
2113 to any value it sees fit. */
2114
2115inline void
2116gimple_set_uid (gimple *g, unsigned uid)
2117{
2118 g->uid = uid;
2119}
2120
2121
2122/* Return the UID of statement.
2123
2124 Please note that this UID property is supposed to be undefined at
2125 pass boundaries. This means that a given pass should not assume it
2126 contains any useful value when the pass starts and thus can set it
2127 to any value it sees fit. */
2128
2129inline unsigned
2130gimple_uid (const gimple *g)
2131{
2132 return g->uid;
2133}
2134
2135
2136/* Make statement G a singleton sequence. */
2137
2138inline void
2139gimple_init_singleton (gimple *g)
2140{
2141 g->next = NULL;
2142 g->prev = g;
2143}
2144
2145
2146/* Return true if GIMPLE statement G has register or memory operands. */
2147
2148inline bool
2149gimple_has_ops (const gimple *g)
2150{
2151 return gimple_code (g) >= GIMPLE_COND && gimple_code (g) <= GIMPLE_RETURN;
2152}
2153
2154template <>
2155template <>
2156inline bool
2157is_a_helper <const gimple_statement_with_ops *>::test (const gimple *gs)
2158{
2159 return gimple_has_ops (g: gs);
2160}
2161
2162template <>
2163template <>
2164inline bool
2165is_a_helper <gimple_statement_with_ops *>::test (gimple *gs)
2166{
2167 return gimple_has_ops (g: gs);
2168}
2169
2170/* Return true if GIMPLE statement G has memory operands. */
2171
2172inline bool
2173gimple_has_mem_ops (const gimple *g)
2174{
2175 return gimple_code (g) >= GIMPLE_ASSIGN && gimple_code (g) <= GIMPLE_RETURN;
2176}
2177
2178template <>
2179template <>
2180inline bool
2181is_a_helper <const gimple_statement_with_memory_ops *>::test (const gimple *gs)
2182{
2183 return gimple_has_mem_ops (g: gs);
2184}
2185
2186template <>
2187template <>
2188inline bool
2189is_a_helper <gimple_statement_with_memory_ops *>::test (gimple *gs)
2190{
2191 return gimple_has_mem_ops (g: gs);
2192}
2193
2194/* Return the set of USE operands for statement G. */
2195
2196inline struct use_optype_d *
2197gimple_use_ops (const gimple *g)
2198{
2199 const gimple_statement_with_ops *ops_stmt =
2200 dyn_cast <const gimple_statement_with_ops *> (p: g);
2201 if (!ops_stmt)
2202 return NULL;
2203 return ops_stmt->use_ops;
2204}
2205
2206
2207/* Set USE to be the set of USE operands for statement G. */
2208
2209inline void
2210gimple_set_use_ops (gimple *g, struct use_optype_d *use)
2211{
2212 gimple_statement_with_ops *ops_stmt =
2213 as_a <gimple_statement_with_ops *> (p: g);
2214 ops_stmt->use_ops = use;
2215}
2216
2217
2218/* Return the single VUSE operand of the statement G. */
2219
2220inline tree
2221gimple_vuse (const gimple *g)
2222{
2223 const gimple_statement_with_memory_ops *mem_ops_stmt =
2224 dyn_cast <const gimple_statement_with_memory_ops *> (p: g);
2225 if (!mem_ops_stmt)
2226 return NULL_TREE;
2227 return mem_ops_stmt->vuse;
2228}
2229
2230/* Return the single VDEF operand of the statement G. */
2231
2232inline tree
2233gimple_vdef (const gimple *g)
2234{
2235 const gimple_statement_with_memory_ops *mem_ops_stmt =
2236 dyn_cast <const gimple_statement_with_memory_ops *> (p: g);
2237 if (!mem_ops_stmt)
2238 return NULL_TREE;
2239 return mem_ops_stmt->vdef;
2240}
2241
2242/* Return the single VUSE operand of the statement G. */
2243
2244inline tree *
2245gimple_vuse_ptr (gimple *g)
2246{
2247 gimple_statement_with_memory_ops *mem_ops_stmt =
2248 dyn_cast <gimple_statement_with_memory_ops *> (p: g);
2249 if (!mem_ops_stmt)
2250 return NULL;
2251 return &mem_ops_stmt->vuse;
2252}
2253
2254/* Return the single VDEF operand of the statement G. */
2255
2256inline tree *
2257gimple_vdef_ptr (gimple *g)
2258{
2259 gimple_statement_with_memory_ops *mem_ops_stmt =
2260 dyn_cast <gimple_statement_with_memory_ops *> (p: g);
2261 if (!mem_ops_stmt)
2262 return NULL;
2263 return &mem_ops_stmt->vdef;
2264}
2265
2266/* Set the single VUSE operand of the statement G. */
2267
2268inline void
2269gimple_set_vuse (gimple *g, tree vuse)
2270{
2271 gimple_statement_with_memory_ops *mem_ops_stmt =
2272 as_a <gimple_statement_with_memory_ops *> (p: g);
2273 mem_ops_stmt->vuse = vuse;
2274}
2275
2276/* Set the single VDEF operand of the statement G. */
2277
2278inline void
2279gimple_set_vdef (gimple *g, tree vdef)
2280{
2281 gimple_statement_with_memory_ops *mem_ops_stmt =
2282 as_a <gimple_statement_with_memory_ops *> (p: g);
2283 mem_ops_stmt->vdef = vdef;
2284}
2285
2286
2287/* Return true if statement G has operands and the modified field has
2288 been set. */
2289
2290inline bool
2291gimple_modified_p (const gimple *g)
2292{
2293 return (gimple_has_ops (g)) ? (bool) g->modified : false;
2294}
2295
2296
2297/* Set the MODIFIED flag to MODIFIEDP, iff the gimple statement G has
2298 a MODIFIED field. */
2299
2300inline void
2301gimple_set_modified (gimple *s, bool modifiedp)
2302{
2303 if (gimple_has_ops (g: s))
2304 s->modified = (unsigned) modifiedp;
2305}
2306
2307
2308/* Return true if statement STMT contains volatile operands. */
2309
2310inline bool
2311gimple_has_volatile_ops (const gimple *stmt)
2312{
2313 if (gimple_has_mem_ops (g: stmt))
2314 return stmt->has_volatile_ops;
2315 else
2316 return false;
2317}
2318
2319
2320/* Set the HAS_VOLATILE_OPS flag to VOLATILEP. */
2321
2322inline void
2323gimple_set_has_volatile_ops (gimple *stmt, bool volatilep)
2324{
2325 if (gimple_has_mem_ops (g: stmt))
2326 stmt->has_volatile_ops = (unsigned) volatilep;
2327}
2328
2329/* Return true if STMT is in a transaction. */
2330
2331inline bool
2332gimple_in_transaction (const gimple *stmt)
2333{
2334 return bb_in_transaction (bb: gimple_bb (g: stmt));
2335}
2336
2337/* Return true if statement STMT may access memory. */
2338
2339inline bool
2340gimple_references_memory_p (gimple *stmt)
2341{
2342 return gimple_has_mem_ops (g: stmt) && gimple_vuse (g: stmt);
2343}
2344
2345
2346/* Return the subcode for OMP statement S. */
2347
2348inline unsigned
2349gimple_omp_subcode (const gimple *s)
2350{
2351 gcc_gimple_checking_assert (gimple_code (s) >= GIMPLE_OMP_ATOMIC_LOAD
2352 && gimple_code (s) <= GIMPLE_OMP_ORDERED);
2353 return s->subcode;
2354}
2355
2356/* Set the subcode for OMP statement S to SUBCODE. */
2357
2358inline void
2359gimple_omp_set_subcode (gimple *s, unsigned int subcode)
2360{
2361 /* We only have 16 bits for the subcode. Assert that we are not
2362 overflowing it. */
2363 gcc_gimple_checking_assert (subcode < (1 << 16));
2364 s->subcode = subcode;
2365}
2366
2367/* Set the nowait flag on OMP_RETURN statement S. */
2368
2369inline void
2370gimple_omp_return_set_nowait (gimple *s)
2371{
2372 GIMPLE_CHECK (s, GIMPLE_OMP_RETURN);
2373 s->subcode |= GF_OMP_RETURN_NOWAIT;
2374}
2375
2376
2377/* Return true if OMP return statement G has the GF_OMP_RETURN_NOWAIT
2378 flag set. */
2379
2380inline bool
2381gimple_omp_return_nowait_p (const gimple *g)
2382{
2383 GIMPLE_CHECK (g, GIMPLE_OMP_RETURN);
2384 return (gimple_omp_subcode (s: g) & GF_OMP_RETURN_NOWAIT) != 0;
2385}
2386
2387
2388/* Set the LHS of OMP return. */
2389
2390inline void
2391gimple_omp_return_set_lhs (gimple *g, tree lhs)
2392{
2393 gimple_statement_omp_return *omp_return_stmt =
2394 as_a <gimple_statement_omp_return *> (p: g);
2395 omp_return_stmt->val = lhs;
2396}
2397
2398
2399/* Get the LHS of OMP return. */
2400
2401inline tree
2402gimple_omp_return_lhs (const gimple *g)
2403{
2404 const gimple_statement_omp_return *omp_return_stmt =
2405 as_a <const gimple_statement_omp_return *> (p: g);
2406 return omp_return_stmt->val;
2407}
2408
2409
2410/* Return a pointer to the LHS of OMP return. */
2411
2412inline tree *
2413gimple_omp_return_lhs_ptr (gimple *g)
2414{
2415 gimple_statement_omp_return *omp_return_stmt =
2416 as_a <gimple_statement_omp_return *> (p: g);
2417 return &omp_return_stmt->val;
2418}
2419
2420
2421/* Return true if OMP section statement G has the GF_OMP_SECTION_LAST
2422 flag set. */
2423
2424inline bool
2425gimple_omp_section_last_p (const gimple *g)
2426{
2427 GIMPLE_CHECK (g, GIMPLE_OMP_SECTION);
2428 return (gimple_omp_subcode (s: g) & GF_OMP_SECTION_LAST) != 0;
2429}
2430
2431
2432/* Set the GF_OMP_SECTION_LAST flag on G. */
2433
2434inline void
2435gimple_omp_section_set_last (gimple *g)
2436{
2437 GIMPLE_CHECK (g, GIMPLE_OMP_SECTION);
2438 g->subcode |= GF_OMP_SECTION_LAST;
2439}
2440
2441
2442/* Return true if OMP ordered construct is stand-alone
2443 (G has the GF_OMP_ORDERED_STANDALONE flag set). */
2444
2445inline bool
2446gimple_omp_ordered_standalone_p (const gimple *g)
2447{
2448 GIMPLE_CHECK (g, GIMPLE_OMP_ORDERED);
2449 return (gimple_omp_subcode (s: g) & GF_OMP_ORDERED_STANDALONE) != 0;
2450}
2451
2452
2453/* Set the GF_OMP_ORDERED_STANDALONE flag on G. */
2454
2455inline void
2456gimple_omp_ordered_standalone (gimple *g)
2457{
2458 GIMPLE_CHECK (g, GIMPLE_OMP_ORDERED);
2459 g->subcode |= GF_OMP_ORDERED_STANDALONE;
2460}
2461
2462
2463/* Return true if OMP parallel statement G has the
2464 GF_OMP_PARALLEL_COMBINED flag set. */
2465
2466inline bool
2467gimple_omp_parallel_combined_p (const gimple *g)
2468{
2469 GIMPLE_CHECK (g, GIMPLE_OMP_PARALLEL);
2470 return (gimple_omp_subcode (s: g) & GF_OMP_PARALLEL_COMBINED) != 0;
2471}
2472
2473
2474/* Set the GF_OMP_PARALLEL_COMBINED field in G depending on the boolean
2475 value of COMBINED_P. */
2476
2477inline void
2478gimple_omp_parallel_set_combined_p (gimple *g, bool combined_p)
2479{
2480 GIMPLE_CHECK (g, GIMPLE_OMP_PARALLEL);
2481 if (combined_p)
2482 g->subcode |= GF_OMP_PARALLEL_COMBINED;
2483 else
2484 g->subcode &= ~GF_OMP_PARALLEL_COMBINED;
2485}
2486
2487
2488/* Return true if OMP atomic load/store statement G has the
2489 GF_OMP_ATOMIC_NEED_VALUE flag set. */
2490
2491inline bool
2492gimple_omp_atomic_need_value_p (const gimple *g)
2493{
2494 if (gimple_code (g) != GIMPLE_OMP_ATOMIC_LOAD)
2495 GIMPLE_CHECK (g, GIMPLE_OMP_ATOMIC_STORE);
2496 return (gimple_omp_subcode (s: g) & GF_OMP_ATOMIC_NEED_VALUE) != 0;
2497}
2498
2499
2500/* Set the GF_OMP_ATOMIC_NEED_VALUE flag on G. */
2501
2502inline void
2503gimple_omp_atomic_set_need_value (gimple *g)
2504{
2505 if (gimple_code (g) != GIMPLE_OMP_ATOMIC_LOAD)
2506 GIMPLE_CHECK (g, GIMPLE_OMP_ATOMIC_STORE);
2507 g->subcode |= GF_OMP_ATOMIC_NEED_VALUE;
2508}
2509
2510
2511/* Return true if OMP atomic load/store statement G has the
2512 GF_OMP_ATOMIC_WEAK flag set. */
2513
2514inline bool
2515gimple_omp_atomic_weak_p (const gimple *g)
2516{
2517 if (gimple_code (g) != GIMPLE_OMP_ATOMIC_LOAD)
2518 GIMPLE_CHECK (g, GIMPLE_OMP_ATOMIC_STORE);
2519 return (gimple_omp_subcode (s: g) & GF_OMP_ATOMIC_WEAK) != 0;
2520}
2521
2522
2523/* Set the GF_OMP_ATOMIC_WEAK flag on G. */
2524
2525inline void
2526gimple_omp_atomic_set_weak (gimple *g)
2527{
2528 if (gimple_code (g) != GIMPLE_OMP_ATOMIC_LOAD)
2529 GIMPLE_CHECK (g, GIMPLE_OMP_ATOMIC_STORE);
2530 g->subcode |= GF_OMP_ATOMIC_WEAK;
2531}
2532
2533
2534/* Return the memory order of the OMP atomic load/store statement G. */
2535
2536inline enum omp_memory_order
2537gimple_omp_atomic_memory_order (const gimple *g)
2538{
2539 if (gimple_code (g) != GIMPLE_OMP_ATOMIC_LOAD)
2540 GIMPLE_CHECK (g, GIMPLE_OMP_ATOMIC_STORE);
2541 return (enum omp_memory_order)
2542 (gimple_omp_subcode (s: g) & GF_OMP_ATOMIC_MEMORY_ORDER);
2543}
2544
2545
2546/* Set the memory order on G. */
2547
2548inline void
2549gimple_omp_atomic_set_memory_order (gimple *g, enum omp_memory_order mo)
2550{
2551 if (gimple_code (g) != GIMPLE_OMP_ATOMIC_LOAD)
2552 GIMPLE_CHECK (g, GIMPLE_OMP_ATOMIC_STORE);
2553 g->subcode = ((g->subcode & ~GF_OMP_ATOMIC_MEMORY_ORDER)
2554 | (mo & GF_OMP_ATOMIC_MEMORY_ORDER));
2555}
2556
2557
2558/* Return the number of operands for statement GS. */
2559
2560inline unsigned
2561gimple_num_ops (const gimple *gs)
2562{
2563 return gs->num_ops;
2564}
2565
2566
2567/* Set the number of operands for statement GS. */
2568
2569inline void
2570gimple_set_num_ops (gimple *gs, unsigned num_ops)
2571{
2572 gs->num_ops = num_ops;
2573}
2574
2575
2576/* Return the array of operands for statement GS. */
2577
2578inline tree *
2579gimple_ops (gimple *gs)
2580{
2581 size_t off;
2582
2583 /* All the tuples have their operand vector at the very bottom
2584 of the structure. Note that those structures that do not
2585 have an operand vector have a zero offset. */
2586 off = gimple_ops_offset_[gimple_statement_structure (gs)];
2587 gcc_gimple_checking_assert (off != 0);
2588
2589 return (tree *) ((char *) gs + off);
2590}
2591
2592
2593/* Return operand I for statement GS. */
2594
2595inline tree
2596gimple_op (const gimple *gs, unsigned i)
2597{
2598 if (gimple_has_ops (g: gs))
2599 {
2600 gcc_gimple_checking_assert (i < gimple_num_ops (gs));
2601 return gimple_ops (CONST_CAST_GIMPLE (gs))[i];
2602 }
2603 else
2604 return NULL_TREE;
2605}
2606
2607/* Return a pointer to operand I for statement GS. */
2608
2609inline tree *
2610gimple_op_ptr (gimple *gs, unsigned i)
2611{
2612 if (gimple_has_ops (g: gs))
2613 {
2614 gcc_gimple_checking_assert (i < gimple_num_ops (gs));
2615 return gimple_ops (gs) + i;
2616 }
2617 else
2618 return NULL;
2619}
2620
2621/* Set operand I of statement GS to OP. */
2622
2623inline void
2624gimple_set_op (gimple *gs, unsigned i, tree op)
2625{
2626 gcc_gimple_checking_assert (gimple_has_ops (gs) && i < gimple_num_ops (gs));
2627
2628 /* Note. It may be tempting to assert that OP matches
2629 is_gimple_operand, but that would be wrong. Different tuples
2630 accept slightly different sets of tree operands. Each caller
2631 should perform its own validation. */
2632 gimple_ops (gs)[i] = op;
2633}
2634
2635/* Return true if GS is a GIMPLE_ASSIGN. */
2636
2637inline bool
2638is_gimple_assign (const gimple *gs)
2639{
2640 return gimple_code (g: gs) == GIMPLE_ASSIGN;
2641}
2642
2643/* Determine if expression CODE is one of the valid expressions that can
2644 be used on the RHS of GIMPLE assignments. */
2645
2646inline enum gimple_rhs_class
2647get_gimple_rhs_class (enum tree_code code)
2648{
2649 return (enum gimple_rhs_class) gimple_rhs_class_table[(int) code];
2650}
2651
2652/* Return the LHS of assignment statement GS. */
2653
2654inline tree
2655gimple_assign_lhs (const gassign *gs)
2656{
2657 return gs->op[0];
2658}
2659
2660inline tree
2661gimple_assign_lhs (const gimple *gs)
2662{
2663 const gassign *ass = GIMPLE_CHECK2<const gassign *> (gs);
2664 return gimple_assign_lhs (gs: ass);
2665}
2666
2667
2668/* Return a pointer to the LHS of assignment statement GS. */
2669
2670inline tree *
2671gimple_assign_lhs_ptr (gassign *gs)
2672{
2673 return &gs->op[0];
2674}
2675
2676inline tree *
2677gimple_assign_lhs_ptr (gimple *gs)
2678{
2679 gassign *ass = GIMPLE_CHECK2<gassign *> (gs);
2680 return gimple_assign_lhs_ptr (gs: ass);
2681}
2682
2683
2684/* Set LHS to be the LHS operand of assignment statement GS. */
2685
2686inline void
2687gimple_assign_set_lhs (gassign *gs, tree lhs)
2688{
2689 gs->op[0] = lhs;
2690
2691 if (lhs && TREE_CODE (lhs) == SSA_NAME)
2692 SSA_NAME_DEF_STMT (lhs) = gs;
2693}
2694
2695inline void
2696gimple_assign_set_lhs (gimple *gs, tree lhs)
2697{
2698 gassign *ass = GIMPLE_CHECK2<gassign *> (gs);
2699 gimple_assign_set_lhs (gs: ass, lhs);
2700}
2701
2702
2703/* Return the first operand on the RHS of assignment statement GS. */
2704
2705inline tree
2706gimple_assign_rhs1 (const gassign *gs)
2707{
2708 return gs->op[1];
2709}
2710
2711inline tree
2712gimple_assign_rhs1 (const gimple *gs)
2713{
2714 const gassign *ass = GIMPLE_CHECK2<const gassign *> (gs);
2715 return gimple_assign_rhs1 (gs: ass);
2716}
2717
2718
2719/* Return a pointer to the first operand on the RHS of assignment
2720 statement GS. */
2721
2722inline tree *
2723gimple_assign_rhs1_ptr (gassign *gs)
2724{
2725 return &gs->op[1];
2726}
2727
2728inline tree *
2729gimple_assign_rhs1_ptr (gimple *gs)
2730{
2731 gassign *ass = GIMPLE_CHECK2<gassign *> (gs);
2732 return gimple_assign_rhs1_ptr (gs: ass);
2733}
2734
2735/* Set RHS to be the first operand on the RHS of assignment statement GS. */
2736
2737inline void
2738gimple_assign_set_rhs1 (gassign *gs, tree rhs)
2739{
2740 gs->op[1] = rhs;
2741}
2742
2743inline void
2744gimple_assign_set_rhs1 (gimple *gs, tree rhs)
2745{
2746 gassign *ass = GIMPLE_CHECK2<gassign *> (gs);
2747 gimple_assign_set_rhs1 (gs: ass, rhs);
2748}
2749
2750
2751/* Return the second operand on the RHS of assignment statement GS.
2752 If GS does not have two operands, NULL is returned instead. */
2753
2754inline tree
2755gimple_assign_rhs2 (const gassign *gs)
2756{
2757 if (gimple_num_ops (gs) >= 3)
2758 return gs->op[2];
2759 else
2760 return NULL_TREE;
2761}
2762
2763inline tree
2764gimple_assign_rhs2 (const gimple *gs)
2765{
2766 const gassign *ass = GIMPLE_CHECK2<const gassign *> (gs);
2767 return gimple_assign_rhs2 (gs: ass);
2768}
2769
2770
2771/* Return a pointer to the second operand on the RHS of assignment
2772 statement GS. */
2773
2774inline tree *
2775gimple_assign_rhs2_ptr (gassign *gs)
2776{
2777 gcc_gimple_checking_assert (gimple_num_ops (gs) >= 3);
2778 return &gs->op[2];
2779}
2780
2781inline tree *
2782gimple_assign_rhs2_ptr (gimple *gs)
2783{
2784 gassign *ass = GIMPLE_CHECK2<gassign *> (gs);
2785 return gimple_assign_rhs2_ptr (gs: ass);
2786}
2787
2788
2789/* Set RHS to be the second operand on the RHS of assignment statement GS. */
2790
2791inline void
2792gimple_assign_set_rhs2 (gassign *gs, tree rhs)
2793{
2794 gcc_gimple_checking_assert (gimple_num_ops (gs) >= 3);
2795 gs->op[2] = rhs;
2796}
2797
2798inline void
2799gimple_assign_set_rhs2 (gimple *gs, tree rhs)
2800{
2801 gassign *ass = GIMPLE_CHECK2<gassign *> (gs);
2802 return gimple_assign_set_rhs2 (gs: ass, rhs);
2803}
2804
2805/* Return the third operand on the RHS of assignment statement GS.
2806 If GS does not have two operands, NULL is returned instead. */
2807
2808inline tree
2809gimple_assign_rhs3 (const gassign *gs)
2810{
2811 if (gimple_num_ops (gs) >= 4)
2812 return gs->op[3];
2813 else
2814 return NULL_TREE;
2815}
2816
2817inline tree
2818gimple_assign_rhs3 (const gimple *gs)
2819{
2820 const gassign *ass = GIMPLE_CHECK2<const gassign *> (gs);
2821 return gimple_assign_rhs3 (gs: ass);
2822}
2823
2824/* Return a pointer to the third operand on the RHS of assignment
2825 statement GS. */
2826
2827inline tree *
2828gimple_assign_rhs3_ptr (gimple *gs)
2829{
2830 gassign *ass = GIMPLE_CHECK2<gassign *> (gs);
2831 gcc_gimple_checking_assert (gimple_num_ops (gs) >= 4);
2832 return &ass->op[3];
2833}
2834
2835
2836/* Set RHS to be the third operand on the RHS of assignment statement GS. */
2837
2838inline void
2839gimple_assign_set_rhs3 (gassign *gs, tree rhs)
2840{
2841 gcc_gimple_checking_assert (gimple_num_ops (gs) >= 4);
2842 gs->op[3] = rhs;
2843}
2844
2845inline void
2846gimple_assign_set_rhs3 (gimple *gs, tree rhs)
2847{
2848 gassign *ass = GIMPLE_CHECK2<gassign *> (gs);
2849 gimple_assign_set_rhs3 (gs: ass, rhs);
2850}
2851
2852
2853/* A wrapper around 3 operand gimple_assign_set_rhs_with_ops, for callers
2854 which expect to see only two operands. */
2855
2856inline void
2857gimple_assign_set_rhs_with_ops (gimple_stmt_iterator *gsi, enum tree_code code,
2858 tree op1, tree op2)
2859{
2860 gimple_assign_set_rhs_with_ops (gsi, code, op1, op2, NULL);
2861}
2862
2863/* A wrapper around 3 operand gimple_assign_set_rhs_with_ops, for callers
2864 which expect to see only one operands. */
2865
2866inline void
2867gimple_assign_set_rhs_with_ops (gimple_stmt_iterator *gsi, enum tree_code code,
2868 tree op1)
2869{
2870 gimple_assign_set_rhs_with_ops (gsi, code, op1, NULL, NULL);
2871}
2872
2873/* Returns true if GS is a nontemporal move. */
2874
2875inline bool
2876gimple_assign_nontemporal_move_p (const gassign *gs)
2877{
2878 return gs->nontemporal_move;
2879}
2880
2881/* Sets nontemporal move flag of GS to NONTEMPORAL. */
2882
2883inline void
2884gimple_assign_set_nontemporal_move (gimple *gs, bool nontemporal)
2885{
2886 GIMPLE_CHECK (gs, GIMPLE_ASSIGN);
2887 gs->nontemporal_move = nontemporal;
2888}
2889
2890
2891/* Return the code of the expression computed on the rhs of assignment
2892 statement GS. In case that the RHS is a single object, returns the
2893 tree code of the object. */
2894
2895inline enum tree_code
2896gimple_assign_rhs_code (const gassign *gs)
2897{
2898 enum tree_code code = (enum tree_code) gs->subcode;
2899 /* While we initially set subcode to the TREE_CODE of the rhs for
2900 GIMPLE_SINGLE_RHS assigns we do not update that subcode to stay
2901 in sync when we rewrite stmts into SSA form or do SSA propagations. */
2902 if (get_gimple_rhs_class (code) == GIMPLE_SINGLE_RHS)
2903 code = TREE_CODE (gs->op[1]);
2904
2905 return code;
2906}
2907
2908inline enum tree_code
2909gimple_assign_rhs_code (const gimple *gs)
2910{
2911 const gassign *ass = GIMPLE_CHECK2<const gassign *> (gs);
2912 return gimple_assign_rhs_code (gs: ass);
2913}
2914
2915
2916/* Set CODE to be the code for the expression computed on the RHS of
2917 assignment S. */
2918
2919inline void
2920gimple_assign_set_rhs_code (gimple *s, enum tree_code code)
2921{
2922 GIMPLE_CHECK (s, GIMPLE_ASSIGN);
2923 s->subcode = code;
2924}
2925
2926
2927/* Return the gimple rhs class of the code of the expression computed on
2928 the rhs of assignment statement GS.
2929 This will never return GIMPLE_INVALID_RHS. */
2930
2931inline enum gimple_rhs_class
2932gimple_assign_rhs_class (const gimple *gs)
2933{
2934 return get_gimple_rhs_class (code: gimple_assign_rhs_code (gs));
2935}
2936
2937/* Return true if GS is an assignment with a singleton RHS, i.e.,
2938 there is no operator associated with the assignment itself.
2939 Unlike gimple_assign_copy_p, this predicate returns true for
2940 any RHS operand, including those that perform an operation
2941 and do not have the semantics of a copy, such as COND_EXPR. */
2942
2943inline bool
2944gimple_assign_single_p (const gimple *gs)
2945{
2946 return (is_gimple_assign (gs)
2947 && gimple_assign_rhs_class (gs) == GIMPLE_SINGLE_RHS);
2948}
2949
2950/* Return true if GS performs a store to its lhs. */
2951
2952inline bool
2953gimple_store_p (const gimple *gs)
2954{
2955 tree lhs = gimple_get_lhs (gs);
2956 return lhs && !is_gimple_reg (lhs);
2957}
2958
2959/* Return true if S is a type-cast assignment. */
2960
2961inline bool
2962gimple_assign_cast_p (const gimple *s)
2963{
2964 if (is_gimple_assign (gs: s))
2965 {
2966 enum tree_code sc = gimple_assign_rhs_code (gs: s);
2967 return CONVERT_EXPR_CODE_P (sc)
2968 || sc == VIEW_CONVERT_EXPR
2969 || sc == FIX_TRUNC_EXPR;
2970 }
2971
2972 return false;
2973}
2974
2975/* Return true if S is a clobber statement. */
2976
2977inline bool
2978gimple_clobber_p (const gimple *s)
2979{
2980 return gimple_assign_single_p (gs: s)
2981 && TREE_CLOBBER_P (gimple_assign_rhs1 (s));
2982}
2983
2984/* Return true if S is a clobber statement. */
2985
2986inline bool
2987gimple_clobber_p (const gimple *s, enum clobber_kind kind)
2988{
2989 return gimple_clobber_p (s)
2990 && CLOBBER_KIND (gimple_assign_rhs1 (s)) == kind;
2991}
2992
2993/* Return true if GS is a GIMPLE_CALL. */
2994
2995inline bool
2996is_gimple_call (const gimple *gs)
2997{
2998 return gimple_code (g: gs) == GIMPLE_CALL;
2999}
3000
3001/* Return the LHS of call statement GS. */
3002
3003inline tree
3004gimple_call_lhs (const gcall *gs)
3005{
3006 return gs->op[0];
3007}
3008
3009inline tree
3010gimple_call_lhs (const gimple *gs)
3011{
3012 const gcall *gc = GIMPLE_CHECK2<const gcall *> (gs);
3013 return gimple_call_lhs (gs: gc);
3014}
3015
3016
3017/* Return a pointer to the LHS of call statement GS. */
3018
3019inline tree *
3020gimple_call_lhs_ptr (gcall *gs)
3021{
3022 return &gs->op[0];
3023}
3024
3025inline tree *
3026gimple_call_lhs_ptr (gimple *gs)
3027{
3028 gcall *gc = GIMPLE_CHECK2<gcall *> (gs);
3029 return gimple_call_lhs_ptr (gs: gc);
3030}
3031
3032
3033/* Set LHS to be the LHS operand of call statement GS. */
3034
3035inline void
3036gimple_call_set_lhs (gcall *gs, tree lhs)
3037{
3038 gs->op[0] = lhs;
3039 if (lhs && TREE_CODE (lhs) == SSA_NAME)
3040 SSA_NAME_DEF_STMT (lhs) = gs;
3041}
3042
3043inline void
3044gimple_call_set_lhs (gimple *gs, tree lhs)
3045{
3046 gcall *gc = GIMPLE_CHECK2<gcall *> (gs);
3047 gimple_call_set_lhs (gs: gc, lhs);
3048}
3049
3050
3051/* Return true if call GS calls an internal-only function, as enumerated
3052 by internal_fn. */
3053
3054inline bool
3055gimple_call_internal_p (const gcall *gs)
3056{
3057 return (gs->subcode & GF_CALL_INTERNAL) != 0;
3058}
3059
3060inline bool
3061gimple_call_internal_p (const gimple *gs)
3062{
3063 const gcall *gc = GIMPLE_CHECK2<const gcall *> (gs);
3064 return gimple_call_internal_p (gs: gc);
3065}
3066
3067/* Return true if call GS is marked as nocf_check. */
3068
3069inline bool
3070gimple_call_nocf_check_p (const gcall *gs)
3071{
3072 return (gs->subcode & GF_CALL_NOCF_CHECK) != 0;
3073}
3074
3075/* Mark statement GS as nocf_check call. */
3076
3077inline void
3078gimple_call_set_nocf_check (gcall *gs, bool nocf_check)
3079{
3080 if (nocf_check)
3081 gs->subcode |= GF_CALL_NOCF_CHECK;
3082 else
3083 gs->subcode &= ~GF_CALL_NOCF_CHECK;
3084}
3085
3086/* Return the target of internal call GS. */
3087
3088inline enum internal_fn
3089gimple_call_internal_fn (const gcall *gs)
3090{
3091 gcc_gimple_checking_assert (gimple_call_internal_p (gs));
3092 return gs->u.internal_fn;
3093}
3094
3095inline enum internal_fn
3096gimple_call_internal_fn (const gimple *gs)
3097{
3098 const gcall *gc = GIMPLE_CHECK2<const gcall *> (gs);
3099 return gimple_call_internal_fn (gs: gc);
3100}
3101
3102/* Return true, if this internal gimple call is unique. */
3103
3104inline bool
3105gimple_call_internal_unique_p (const gcall *gs)
3106{
3107 return gimple_call_internal_fn (gs) == IFN_UNIQUE;
3108}
3109
3110inline bool
3111gimple_call_internal_unique_p (const gimple *gs)
3112{
3113 const gcall *gc = GIMPLE_CHECK2<const gcall *> (gs);
3114 return gimple_call_internal_unique_p (gs: gc);
3115}
3116
3117/* Return true if GS is an internal function FN. */
3118
3119inline bool
3120gimple_call_internal_p (const gimple *gs, internal_fn fn)
3121{
3122 return (is_gimple_call (gs)
3123 && gimple_call_internal_p (gs)
3124 && gimple_call_internal_fn (gs) == fn);
3125}
3126
3127/* If CTRL_ALTERING_P is true, mark GIMPLE_CALL S to be a stmt
3128 that could alter control flow. */
3129
3130inline void
3131gimple_call_set_ctrl_altering (gcall *s, bool ctrl_altering_p)
3132{
3133 if (ctrl_altering_p)
3134 s->subcode |= GF_CALL_CTRL_ALTERING;
3135 else
3136 s->subcode &= ~GF_CALL_CTRL_ALTERING;
3137}
3138
3139inline void
3140gimple_call_set_ctrl_altering (gimple *s, bool ctrl_altering_p)
3141{
3142 gcall *gc = GIMPLE_CHECK2<gcall *> (gs: s);
3143 gimple_call_set_ctrl_altering (s: gc, ctrl_altering_p);
3144}
3145
3146/* Return true if call GS calls an func whose GF_CALL_CTRL_ALTERING
3147 flag is set. Such call could not be a stmt in the middle of a bb. */
3148
3149inline bool
3150gimple_call_ctrl_altering_p (const gcall *gs)
3151{
3152 return (gs->subcode & GF_CALL_CTRL_ALTERING) != 0;
3153}
3154
3155inline bool
3156gimple_call_ctrl_altering_p (const gimple *gs)
3157{
3158 const gcall *gc = GIMPLE_CHECK2<const gcall *> (gs);
3159 return gimple_call_ctrl_altering_p (gs: gc);
3160}
3161
3162
3163/* Return the function type of the function called by GS. */
3164
3165inline tree
3166gimple_call_fntype (const gcall *gs)
3167{
3168 if (gimple_call_internal_p (gs))
3169 return NULL_TREE;
3170 return gs->u.fntype;
3171}
3172
3173inline tree
3174gimple_call_fntype (const gimple *gs)
3175{
3176 const gcall *call_stmt = GIMPLE_CHECK2<const gcall *> (gs);
3177 return gimple_call_fntype (gs: call_stmt);
3178}
3179
3180/* Set the type of the function called by CALL_STMT to FNTYPE. */
3181
3182inline void
3183gimple_call_set_fntype (gcall *call_stmt, tree fntype)
3184{
3185 gcc_gimple_checking_assert (!gimple_call_internal_p (call_stmt));
3186 call_stmt->u.fntype = fntype;
3187}
3188
3189
3190/* Return the tree node representing the function called by call
3191 statement GS. */
3192
3193inline tree
3194gimple_call_fn (const gcall *gs)
3195{
3196 return gs->op[1];
3197}
3198
3199inline tree
3200gimple_call_fn (const gimple *gs)
3201{
3202 const gcall *gc = GIMPLE_CHECK2<const gcall *> (gs);
3203 return gimple_call_fn (gs: gc);
3204}
3205
3206/* Return a pointer to the tree node representing the function called by call
3207 statement GS. */
3208
3209inline tree *
3210gimple_call_fn_ptr (gcall *gs)
3211{
3212 return &gs->op[1];
3213}
3214
3215inline tree *
3216gimple_call_fn_ptr (gimple *gs)
3217{
3218 gcall *gc = GIMPLE_CHECK2<gcall *> (gs);
3219 return gimple_call_fn_ptr (gs: gc);
3220}
3221
3222
3223/* Set FN to be the function called by call statement GS. */
3224
3225inline void
3226gimple_call_set_fn (gcall *gs, tree fn)
3227{
3228 gcc_gimple_checking_assert (!gimple_call_internal_p (gs));
3229 gs->op[1] = fn;
3230}
3231
3232
3233/* Set FNDECL to be the function called by call statement GS. */
3234
3235inline void
3236gimple_call_set_fndecl (gcall *gs, tree decl)
3237{
3238 gcc_gimple_checking_assert (!gimple_call_internal_p (gs));
3239 gs->op[1] = build1_loc (loc: gimple_location (g: gs), code: ADDR_EXPR,
3240 type: build_pointer_type (TREE_TYPE (decl)), arg1: decl);
3241}
3242
3243inline void
3244gimple_call_set_fndecl (gimple *gs, tree decl)
3245{
3246 gcall *gc = GIMPLE_CHECK2<gcall *> (gs);
3247 gimple_call_set_fndecl (gs: gc, decl);
3248}
3249
3250
3251/* Set internal function FN to be the function called by call statement CALL_STMT. */
3252
3253inline void
3254gimple_call_set_internal_fn (gcall *call_stmt, enum internal_fn fn)
3255{
3256 gcc_gimple_checking_assert (gimple_call_internal_p (call_stmt));
3257 call_stmt->u.internal_fn = fn;
3258}
3259
3260
3261/* If a given GIMPLE_CALL's callee is a FUNCTION_DECL, return it.
3262 Otherwise return NULL. This function is analogous to
3263 get_callee_fndecl in tree land. */
3264
3265inline tree
3266gimple_call_fndecl (const gcall *gs)
3267{
3268 return gimple_call_addr_fndecl (fn: gimple_call_fn (gs));
3269}
3270
3271inline tree
3272gimple_call_fndecl (const gimple *gs)
3273{
3274 const gcall *gc = GIMPLE_CHECK2<const gcall *> (gs);
3275 return gimple_call_fndecl (gs: gc);
3276}
3277
3278
3279/* Return the type returned by call statement GS. */
3280
3281inline tree
3282gimple_call_return_type (const gcall *gs)
3283{
3284 tree type = gimple_call_fntype (gs);
3285
3286 if (type == NULL_TREE)
3287 return TREE_TYPE (gimple_call_lhs (gs));
3288
3289 /* The type returned by a function is the type of its
3290 function type. */
3291 return TREE_TYPE (type);
3292}
3293
3294
3295/* Return the static chain for call statement GS. */
3296
3297inline tree
3298gimple_call_chain (const gcall *gs)
3299{
3300 return gs->op[2];
3301}
3302
3303inline tree
3304gimple_call_chain (const gimple *gs)
3305{
3306 const gcall *gc = GIMPLE_CHECK2<const gcall *> (gs);
3307 return gimple_call_chain (gs: gc);
3308}
3309
3310
3311/* Return a pointer to the static chain for call statement CALL_STMT. */
3312
3313inline tree *
3314gimple_call_chain_ptr (gcall *call_stmt)
3315{
3316 return &call_stmt->op[2];
3317}
3318
3319/* Set CHAIN to be the static chain for call statement CALL_STMT. */
3320
3321inline void
3322gimple_call_set_chain (gcall *call_stmt, tree chain)
3323{
3324 call_stmt->op[2] = chain;
3325}
3326
3327
3328/* Return the number of arguments used by call statement GS. */
3329
3330inline unsigned
3331gimple_call_num_args (const gcall *gs)
3332{
3333 return gimple_num_ops (gs) - 3;
3334}
3335
3336inline unsigned
3337gimple_call_num_args (const gimple *gs)
3338{
3339 const gcall *gc = GIMPLE_CHECK2<const gcall *> (gs);
3340 return gimple_call_num_args (gs: gc);
3341}
3342
3343
3344/* Return the argument at position INDEX for call statement GS. */
3345
3346inline tree
3347gimple_call_arg (const gcall *gs, unsigned index)
3348{
3349 gcc_gimple_checking_assert (gimple_num_ops (gs) > index + 3);
3350 return gs->op[index + 3];
3351}
3352
3353inline tree
3354gimple_call_arg (const gimple *gs, unsigned index)
3355{
3356 const gcall *gc = GIMPLE_CHECK2<const gcall *> (gs);
3357 return gimple_call_arg (gs: gc, index);
3358}
3359
3360
3361/* Return a pointer to the argument at position INDEX for call
3362 statement GS. */
3363
3364inline tree *
3365gimple_call_arg_ptr (gcall *gs, unsigned index)
3366{
3367 gcc_gimple_checking_assert (gimple_num_ops (gs) > index + 3);
3368 return &gs->op[index + 3];
3369}
3370
3371inline tree *
3372gimple_call_arg_ptr (gimple *gs, unsigned index)
3373{
3374 gcall *gc = GIMPLE_CHECK2<gcall *> (gs);
3375 return gimple_call_arg_ptr (gs: gc, index);
3376}
3377
3378
3379/* Set ARG to be the argument at position INDEX for call statement GS. */
3380
3381inline void
3382gimple_call_set_arg (gcall *gs, unsigned index, tree arg)
3383{
3384 gcc_gimple_checking_assert (gimple_num_ops (gs) > index + 3);
3385 gs->op[index + 3] = arg;
3386}
3387
3388inline void
3389gimple_call_set_arg (gimple *gs, unsigned index, tree arg)
3390{
3391 gcall *gc = GIMPLE_CHECK2<gcall *> (gs);
3392 gimple_call_set_arg (gs: gc, index, arg);
3393}
3394
3395
3396/* If TAIL_P is true, mark call statement S as being a tail call
3397 (i.e., a call just before the exit of a function). These calls are
3398 candidate for tail call optimization. */
3399
3400inline void
3401gimple_call_set_tail (gcall *s, bool tail_p)
3402{
3403 if (tail_p)
3404 s->subcode |= GF_CALL_TAILCALL;
3405 else
3406 s->subcode &= ~GF_CALL_TAILCALL;
3407}
3408
3409
3410/* Return true if GIMPLE_CALL S is marked as a tail call. */
3411
3412inline bool
3413gimple_call_tail_p (const gcall *s)
3414{
3415 return (s->subcode & GF_CALL_TAILCALL) != 0;
3416}
3417
3418/* Mark (or clear) call statement S as requiring tail call optimization. */
3419
3420inline void
3421gimple_call_set_must_tail (gcall *s, bool must_tail_p)
3422{
3423 if (must_tail_p)
3424 s->subcode |= GF_CALL_MUST_TAIL_CALL;
3425 else
3426 s->subcode &= ~GF_CALL_MUST_TAIL_CALL;
3427}
3428
3429/* Return true if call statement has been marked as requiring
3430 tail call optimization. */
3431
3432inline bool
3433gimple_call_must_tail_p (const gcall *s)
3434{
3435 return (s->subcode & GF_CALL_MUST_TAIL_CALL) != 0;
3436}
3437
3438/* If RETURN_SLOT_OPT_P is true mark GIMPLE_CALL S as valid for return
3439 slot optimization. This transformation uses the target of the call
3440 expansion as the return slot for calls that return in memory. */
3441
3442inline void
3443gimple_call_set_return_slot_opt (gcall *s, bool return_slot_opt_p)
3444{
3445 if (return_slot_opt_p)
3446 s->subcode |= GF_CALL_RETURN_SLOT_OPT;
3447 else
3448 s->subcode &= ~GF_CALL_RETURN_SLOT_OPT;
3449}
3450
3451
3452/* Return true if S is marked for return slot optimization. */
3453
3454inline bool
3455gimple_call_return_slot_opt_p (const gcall *s)
3456{
3457 return (s->subcode & GF_CALL_RETURN_SLOT_OPT) != 0;
3458}
3459
3460
3461/* If FROM_THUNK_P is true, mark GIMPLE_CALL S as being the jump from a
3462 thunk to the thunked-to function. */
3463
3464inline void
3465gimple_call_set_from_thunk (gcall *s, bool from_thunk_p)
3466{
3467 if (from_thunk_p)
3468 s->subcode |= GF_CALL_FROM_THUNK;
3469 else
3470 s->subcode &= ~GF_CALL_FROM_THUNK;
3471}
3472
3473
3474/* Return true if GIMPLE_CALL S is a jump from a thunk. */
3475
3476inline bool
3477gimple_call_from_thunk_p (gcall *s)
3478{
3479 return (s->subcode & GF_CALL_FROM_THUNK) != 0;
3480}
3481
3482
3483/* If FROM_NEW_OR_DELETE_P is true, mark GIMPLE_CALL S as being a call
3484 to operator new or delete created from a new or delete expression. */
3485
3486inline void
3487gimple_call_set_from_new_or_delete (gcall *s, bool from_new_or_delete_p)
3488{
3489 if (from_new_or_delete_p)
3490 s->subcode |= GF_CALL_FROM_NEW_OR_DELETE;
3491 else
3492 s->subcode &= ~GF_CALL_FROM_NEW_OR_DELETE;
3493}
3494
3495
3496/* Return true if GIMPLE_CALL S is a call to operator new or delete from
3497 from a new or delete expression. */
3498
3499inline bool
3500gimple_call_from_new_or_delete (const gcall *s)
3501{
3502 return (s->subcode & GF_CALL_FROM_NEW_OR_DELETE) != 0;
3503}
3504
3505
3506/* If PASS_ARG_PACK_P is true, GIMPLE_CALL S is a stdarg call that needs the
3507 argument pack in its argument list. */
3508
3509inline void
3510gimple_call_set_va_arg_pack (gcall *s, bool pass_arg_pack_p)
3511{
3512 if (pass_arg_pack_p)
3513 s->subcode |= GF_CALL_VA_ARG_PACK;
3514 else
3515 s->subcode &= ~GF_CALL_VA_ARG_PACK;
3516}
3517
3518
3519/* Return true if GIMPLE_CALL S is a stdarg call that needs the
3520 argument pack in its argument list. */
3521
3522inline bool
3523gimple_call_va_arg_pack_p (const gcall *s)
3524{
3525 return (s->subcode & GF_CALL_VA_ARG_PACK) != 0;
3526}
3527
3528
3529/* Return true if S is a noreturn call. */
3530
3531inline bool
3532gimple_call_noreturn_p (const gcall *s)
3533{
3534 return (gimple_call_flags (s) & ECF_NORETURN) != 0;
3535}
3536
3537inline bool
3538gimple_call_noreturn_p (const gimple *s)
3539{
3540 const gcall *gc = GIMPLE_CHECK2<const gcall *> (gs: s);
3541 return gimple_call_noreturn_p (s: gc);
3542}
3543
3544
3545/* If NOTHROW_P is true, GIMPLE_CALL S is a call that is known to not throw
3546 even if the called function can throw in other cases. */
3547
3548inline void
3549gimple_call_set_nothrow (gcall *s, bool nothrow_p)
3550{
3551 if (nothrow_p)
3552 s->subcode |= GF_CALL_NOTHROW;
3553 else
3554 s->subcode &= ~GF_CALL_NOTHROW;
3555}
3556
3557/* Return true if S is a nothrow call. */
3558
3559inline bool
3560gimple_call_nothrow_p (gcall *s)
3561{
3562 return (gimple_call_flags (s) & ECF_NOTHROW) != 0;
3563}
3564
3565/* If EXPECTED_THROW_P is true, GIMPLE_CALL S is a call that is known
3566 to be more likely to throw than to run forever, terminate the
3567 program or return by other means. */
3568
3569static inline void
3570gimple_call_set_expected_throw (gcall *s, bool expected_throw_p)
3571{
3572 if (expected_throw_p)
3573 s->subcode |= GF_CALL_XTHROW;
3574 else
3575 s->subcode &= ~GF_CALL_XTHROW;
3576}
3577
3578/* Return true if S is a call that is more likely to end by
3579 propagating an exception than by other means. */
3580
3581static inline bool
3582gimple_call_expected_throw_p (gcall *s)
3583{
3584 return (gimple_call_flags (s) & ECF_XTHROW) != 0;
3585}
3586
3587/* If FOR_VAR is true, GIMPLE_CALL S is a call to builtin_alloca that
3588 is known to be emitted for VLA objects. Those are wrapped by
3589 stack_save/stack_restore calls and hence can't lead to unbounded
3590 stack growth even when they occur in loops. */
3591
3592inline void
3593gimple_call_set_alloca_for_var (gcall *s, bool for_var)
3594{
3595 if (for_var)
3596 s->subcode |= GF_CALL_ALLOCA_FOR_VAR;
3597 else
3598 s->subcode &= ~GF_CALL_ALLOCA_FOR_VAR;
3599}
3600
3601/* Return true of S is a call to builtin_alloca emitted for VLA objects. */
3602
3603inline bool
3604gimple_call_alloca_for_var_p (gcall *s)
3605{
3606 return (s->subcode & GF_CALL_ALLOCA_FOR_VAR) != 0;
3607}
3608
3609inline bool
3610gimple_call_alloca_for_var_p (gimple *s)
3611{
3612 const gcall *gc = GIMPLE_CHECK2<gcall *> (gs: s);
3613 return (gc->subcode & GF_CALL_ALLOCA_FOR_VAR) != 0;
3614}
3615
3616/* If BY_DESCRIPTOR_P is true, GIMPLE_CALL S is an indirect call for which
3617 pointers to nested function are descriptors instead of trampolines. */
3618
3619inline void
3620gimple_call_set_by_descriptor (gcall *s, bool by_descriptor_p)
3621{
3622 if (by_descriptor_p)
3623 s->subcode |= GF_CALL_BY_DESCRIPTOR;
3624 else
3625 s->subcode &= ~GF_CALL_BY_DESCRIPTOR;
3626}
3627
3628/* Return true if S is a by-descriptor call. */
3629
3630inline bool
3631gimple_call_by_descriptor_p (gcall *s)
3632{
3633 return (s->subcode & GF_CALL_BY_DESCRIPTOR) != 0;
3634}
3635
3636/* Copy all the GF_CALL_* flags from ORIG_CALL to DEST_CALL. */
3637
3638inline void
3639gimple_call_copy_flags (gcall *dest_call, gcall *orig_call)
3640{
3641 dest_call->subcode = orig_call->subcode;
3642}
3643
3644
3645/* Return a pointer to the points-to solution for the set of call-used
3646 variables of the call CALL_STMT. */
3647
3648inline struct pt_solution *
3649gimple_call_use_set (gcall *call_stmt)
3650{
3651 return &call_stmt->call_used;
3652}
3653
3654/* As above, but const. */
3655
3656inline const pt_solution *
3657gimple_call_use_set (const gcall *call_stmt)
3658{
3659 return &call_stmt->call_used;
3660}
3661
3662/* Return a pointer to the points-to solution for the set of call-used
3663 variables of the call CALL_STMT. */
3664
3665inline struct pt_solution *
3666gimple_call_clobber_set (gcall *call_stmt)
3667{
3668 return &call_stmt->call_clobbered;
3669}
3670
3671/* As above, but const. */
3672
3673inline const pt_solution *
3674gimple_call_clobber_set (const gcall *call_stmt)
3675{
3676 return &call_stmt->call_clobbered;
3677}
3678
3679
3680/* Returns true if this is a GIMPLE_ASSIGN or a GIMPLE_CALL with a
3681 non-NULL lhs. */
3682
3683inline bool
3684gimple_has_lhs (const gimple *stmt)
3685{
3686 if (is_gimple_assign (gs: stmt))
3687 return true;
3688 if (const gcall *call = dyn_cast <const gcall *> (p: stmt))
3689 return gimple_call_lhs (gs: call) != NULL_TREE;
3690 return false;
3691}
3692
3693
3694/* Return the code of the predicate computed by conditional statement GS. */
3695
3696inline enum tree_code
3697gimple_cond_code (const gcond *gs)
3698{
3699 return (enum tree_code) gs->subcode;
3700}
3701
3702inline enum tree_code
3703gimple_cond_code (const gimple *gs)
3704{
3705 const gcond *gc = GIMPLE_CHECK2<const gcond *> (gs);
3706 return gimple_cond_code (gs: gc);
3707}
3708
3709
3710/* Set CODE to be the predicate code for the conditional statement GS. */
3711
3712inline void
3713gimple_cond_set_code (gcond *gs, enum tree_code code)
3714{
3715 gs->subcode = code;
3716}
3717
3718
3719/* Return the LHS of the predicate computed by conditional statement GS. */
3720
3721inline tree
3722gimple_cond_lhs (const gcond *gs)
3723{
3724 return gs->op[0];
3725}
3726
3727inline tree
3728gimple_cond_lhs (const gimple *gs)
3729{
3730 const gcond *gc = GIMPLE_CHECK2<const gcond *> (gs);
3731 return gimple_cond_lhs (gs: gc);
3732}
3733
3734/* Return the pointer to the LHS of the predicate computed by conditional
3735 statement GS. */
3736
3737inline tree *
3738gimple_cond_lhs_ptr (gcond *gs)
3739{
3740 return &gs->op[0];
3741}
3742
3743/* Set LHS to be the LHS operand of the predicate computed by
3744 conditional statement GS. */
3745
3746inline void
3747gimple_cond_set_lhs (gcond *gs, tree lhs)
3748{
3749 gs->op[0] = lhs;
3750}
3751
3752
3753/* Return the RHS operand of the predicate computed by conditional GS. */
3754
3755inline tree
3756gimple_cond_rhs (const gcond *gs)
3757{
3758 return gs->op[1];
3759}
3760
3761inline tree
3762gimple_cond_rhs (const gimple *gs)
3763{
3764 const gcond *gc = GIMPLE_CHECK2<const gcond *> (gs);
3765 return gimple_cond_rhs (gs: gc);
3766}
3767
3768/* Return the pointer to the RHS operand of the predicate computed by
3769 conditional GS. */
3770
3771inline tree *
3772gimple_cond_rhs_ptr (gcond *gs)
3773{
3774 return &gs->op[1];
3775}
3776
3777
3778/* Set RHS to be the RHS operand of the predicate computed by
3779 conditional statement GS. */
3780
3781inline void
3782gimple_cond_set_rhs (gcond *gs, tree rhs)
3783{
3784 gs->op[1] = rhs;
3785}
3786
3787
3788/* Return the label used by conditional statement GS when its
3789 predicate evaluates to true. */
3790
3791inline tree
3792gimple_cond_true_label (const gcond *gs)
3793{
3794 return gs->op[2];
3795}
3796
3797
3798/* Set LABEL to be the label used by conditional statement GS when its
3799 predicate evaluates to true. */
3800
3801inline void
3802gimple_cond_set_true_label (gcond *gs, tree label)
3803{
3804 gs->op[2] = label;
3805}
3806
3807
3808/* Set LABEL to be the label used by conditional statement GS when its
3809 predicate evaluates to false. */
3810
3811inline void
3812gimple_cond_set_false_label (gcond *gs, tree label)
3813{
3814 gs->op[3] = label;
3815}
3816
3817
3818/* Return the label used by conditional statement GS when its
3819 predicate evaluates to false. */
3820
3821inline tree
3822gimple_cond_false_label (const gcond *gs)
3823{
3824 return gs->op[3];
3825}
3826
3827
3828/* Set the conditional COND_STMT to be of the form 'if (1 == 0)'. */
3829
3830inline void
3831gimple_cond_make_false (gcond *gs)
3832{
3833 gimple_cond_set_lhs (gs, boolean_false_node);
3834 gimple_cond_set_rhs (gs, boolean_false_node);
3835 gs->subcode = NE_EXPR;
3836}
3837
3838
3839/* Set the conditional COND_STMT to be of the form 'if (1 == 1)'. */
3840
3841inline void
3842gimple_cond_make_true (gcond *gs)
3843{
3844 gimple_cond_set_lhs (gs, boolean_true_node);
3845 gimple_cond_set_rhs (gs, boolean_false_node);
3846 gs->subcode = NE_EXPR;
3847}
3848
3849/* Check if conditional statemente GS is of the form 'if (1 == 1)',
3850 'if (0 == 0)', 'if (1 != 0)' or 'if (0 != 1)' */
3851
3852inline bool
3853gimple_cond_true_p (const gcond *gs)
3854{
3855 tree lhs = gimple_cond_lhs (gs);
3856 tree rhs = gimple_cond_rhs (gs);
3857 enum tree_code code = gimple_cond_code (gs);
3858
3859 if (lhs != boolean_true_node && lhs != boolean_false_node)
3860 return false;
3861
3862 if (rhs != boolean_true_node && rhs != boolean_false_node)
3863 return false;
3864
3865 if (code == NE_EXPR && lhs != rhs)
3866 return true;
3867
3868 if (code == EQ_EXPR && lhs == rhs)
3869 return true;
3870
3871 return false;
3872}
3873
3874/* Check if conditional statement GS is of the form 'if (1 != 1)',
3875 'if (0 != 0)', 'if (1 == 0)' or 'if (0 == 1)' */
3876
3877inline bool
3878gimple_cond_false_p (const gcond *gs)
3879{
3880 tree lhs = gimple_cond_lhs (gs);
3881 tree rhs = gimple_cond_rhs (gs);
3882 enum tree_code code = gimple_cond_code (gs);
3883
3884 if (lhs != boolean_true_node && lhs != boolean_false_node)
3885 return false;
3886
3887 if (rhs != boolean_true_node && rhs != boolean_false_node)
3888 return false;
3889
3890 if (code == NE_EXPR && lhs == rhs)
3891 return true;
3892
3893 if (code == EQ_EXPR && lhs != rhs)
3894 return true;
3895
3896 return false;
3897}
3898
3899/* Set the code, LHS and RHS of GIMPLE_COND STMT from CODE, LHS and RHS. */
3900
3901inline void
3902gimple_cond_set_condition (gcond *stmt, enum tree_code code, tree lhs,
3903 tree rhs)
3904{
3905 gimple_cond_set_code (gs: stmt, code);
3906 gimple_cond_set_lhs (gs: stmt, lhs);
3907 gimple_cond_set_rhs (gs: stmt, rhs);
3908}
3909
3910
3911/* Return the tree code for the expression computed by STMT. This is
3912 only valid for GIMPLE_COND, GIMPLE_CALL and GIMPLE_ASSIGN. For
3913 GIMPLE_CALL, return CALL_EXPR as the expression code for
3914 consistency. This is useful when the caller needs to deal with the
3915 three kinds of computation that GIMPLE supports. */
3916
3917inline enum tree_code
3918gimple_expr_code (const gimple *stmt)
3919{
3920 if (const gassign *ass = dyn_cast<const gassign *> (p: stmt))
3921 return gimple_assign_rhs_code (gs: ass);
3922 if (const gcond *cond = dyn_cast<const gcond *> (p: stmt))
3923 return gimple_cond_code (gs: cond);
3924 else
3925 {
3926 gcc_gimple_checking_assert (gimple_code (stmt) == GIMPLE_CALL);
3927 return CALL_EXPR;
3928 }
3929}
3930
3931
3932/* Return the LABEL_DECL node used by GIMPLE_LABEL statement GS. */
3933
3934inline tree
3935gimple_label_label (const glabel *gs)
3936{
3937 return gs->op[0];
3938}
3939
3940
3941/* Set LABEL to be the LABEL_DECL node used by GIMPLE_LABEL statement
3942 GS. */
3943
3944inline void
3945gimple_label_set_label (glabel *gs, tree label)
3946{
3947 gs->op[0] = label;
3948}
3949
3950
3951/* Return the destination of the unconditional jump GS. */
3952
3953inline tree
3954gimple_goto_dest (const gimple *gs)
3955{
3956 GIMPLE_CHECK (gs, GIMPLE_GOTO);
3957 return gimple_op (gs, i: 0);
3958}
3959
3960
3961/* Set DEST to be the destination of the unconditonal jump GS. */
3962
3963inline void
3964gimple_goto_set_dest (ggoto *gs, tree dest)
3965{
3966 gs->op[0] = dest;
3967}
3968
3969
3970/* Return the variables declared in the GIMPLE_BIND statement GS. */
3971
3972inline tree
3973gimple_bind_vars (const gbind *bind_stmt)
3974{
3975 return bind_stmt->vars;
3976}
3977
3978
3979/* Set VARS to be the set of variables declared in the GIMPLE_BIND
3980 statement GS. */
3981
3982inline void
3983gimple_bind_set_vars (gbind *bind_stmt, tree vars)
3984{
3985 bind_stmt->vars = vars;
3986}
3987
3988
3989/* Append VARS to the set of variables declared in the GIMPLE_BIND
3990 statement GS. */
3991
3992inline void
3993gimple_bind_append_vars (gbind *bind_stmt, tree vars)
3994{
3995 bind_stmt->vars = chainon (bind_stmt->vars, vars);
3996}
3997
3998
3999inline gimple_seq *
4000gimple_bind_body_ptr (gbind *bind_stmt)
4001{
4002 return &bind_stmt->body;
4003}
4004
4005/* Return the GIMPLE sequence contained in the GIMPLE_BIND statement GS. */
4006
4007inline gimple_seq
4008gimple_bind_body (const gbind *gs)
4009{
4010 return *gimple_bind_body_ptr (bind_stmt: const_cast <gbind *> (gs));
4011}
4012
4013
4014/* Set SEQ to be the GIMPLE sequence contained in the GIMPLE_BIND
4015 statement GS. */
4016
4017inline void
4018gimple_bind_set_body (gbind *bind_stmt, gimple_seq seq)
4019{
4020 bind_stmt->body = seq;
4021}
4022
4023
4024/* Append a statement to the end of a GIMPLE_BIND's body. */
4025
4026inline void
4027gimple_bind_add_stmt (gbind *bind_stmt, gimple *stmt)
4028{
4029 gimple_seq_add_stmt (&bind_stmt->body, stmt);
4030}
4031
4032
4033/* Append a sequence of statements to the end of a GIMPLE_BIND's body. */
4034
4035inline void
4036gimple_bind_add_seq (gbind *bind_stmt, gimple_seq seq)
4037{
4038 gimple_seq_add_seq (&bind_stmt->body, seq);
4039}
4040
4041
4042/* Return the TREE_BLOCK node associated with GIMPLE_BIND statement
4043 GS. This is analogous to the BIND_EXPR_BLOCK field in trees. */
4044
4045inline tree
4046gimple_bind_block (const gbind *bind_stmt)
4047{
4048 return bind_stmt->block;
4049}
4050
4051
4052/* Set BLOCK to be the TREE_BLOCK node associated with GIMPLE_BIND
4053 statement GS. */
4054
4055inline void
4056gimple_bind_set_block (gbind *bind_stmt, tree block)
4057{
4058 gcc_gimple_checking_assert (block == NULL_TREE
4059 || TREE_CODE (block) == BLOCK);
4060 bind_stmt->block = block;
4061}
4062
4063
4064/* Return the number of input operands for GIMPLE_ASM ASM_STMT. */
4065
4066inline unsigned
4067gimple_asm_ninputs (const gasm *asm_stmt)
4068{
4069 return asm_stmt->ni;
4070}
4071
4072
4073/* Return the number of output operands for GIMPLE_ASM ASM_STMT. */
4074
4075inline unsigned
4076gimple_asm_noutputs (const gasm *asm_stmt)
4077{
4078 return asm_stmt->no;
4079}
4080
4081
4082/* Return the number of clobber operands for GIMPLE_ASM ASM_STMT. */
4083
4084inline unsigned
4085gimple_asm_nclobbers (const gasm *asm_stmt)
4086{
4087 return asm_stmt->nc;
4088}
4089
4090/* Return the number of label operands for GIMPLE_ASM ASM_STMT. */
4091
4092inline unsigned
4093gimple_asm_nlabels (const gasm *asm_stmt)
4094{
4095 return asm_stmt->nl;
4096}
4097
4098/* Return input operand INDEX of GIMPLE_ASM ASM_STMT. */
4099
4100inline tree
4101gimple_asm_input_op (const gasm *asm_stmt, unsigned index)
4102{
4103 gcc_gimple_checking_assert (index < asm_stmt->ni);
4104 return asm_stmt->op[index + asm_stmt->no];
4105}
4106
4107/* Set IN_OP to be input operand INDEX in GIMPLE_ASM ASM_STMT. */
4108
4109inline void
4110gimple_asm_set_input_op (gasm *asm_stmt, unsigned index, tree in_op)
4111{
4112 gcc_gimple_checking_assert (index < asm_stmt->ni
4113 && TREE_CODE (in_op) == TREE_LIST);
4114 asm_stmt->op[index + asm_stmt->no] = in_op;
4115}
4116
4117
4118/* Return output operand INDEX of GIMPLE_ASM ASM_STMT. */
4119
4120inline tree
4121gimple_asm_output_op (const gasm *asm_stmt, unsigned index)
4122{
4123 gcc_gimple_checking_assert (index < asm_stmt->no);
4124 return asm_stmt->op[index];
4125}
4126
4127/* Set OUT_OP to be output operand INDEX in GIMPLE_ASM ASM_STMT. */
4128
4129inline void
4130gimple_asm_set_output_op (gasm *asm_stmt, unsigned index, tree out_op)
4131{
4132 gcc_gimple_checking_assert (index < asm_stmt->no
4133 && TREE_CODE (out_op) == TREE_LIST);
4134 asm_stmt->op[index] = out_op;
4135}
4136
4137
4138/* Return clobber operand INDEX of GIMPLE_ASM ASM_STMT. */
4139
4140inline tree
4141gimple_asm_clobber_op (const gasm *asm_stmt, unsigned index)
4142{
4143 gcc_gimple_checking_assert (index < asm_stmt->nc);
4144 return asm_stmt->op[index + asm_stmt->ni + asm_stmt->no];
4145}
4146
4147
4148/* Set CLOBBER_OP to be clobber operand INDEX in GIMPLE_ASM ASM_STMT. */
4149
4150inline void
4151gimple_asm_set_clobber_op (gasm *asm_stmt, unsigned index, tree clobber_op)
4152{
4153 gcc_gimple_checking_assert (index < asm_stmt->nc
4154 && TREE_CODE (clobber_op) == TREE_LIST);
4155 asm_stmt->op[index + asm_stmt->ni + asm_stmt->no] = clobber_op;
4156}
4157
4158/* Return label operand INDEX of GIMPLE_ASM ASM_STMT. */
4159
4160inline tree
4161gimple_asm_label_op (const gasm *asm_stmt, unsigned index)
4162{
4163 gcc_gimple_checking_assert (index < asm_stmt->nl);
4164 return asm_stmt->op[index + asm_stmt->no + asm_stmt->ni + asm_stmt->nc];
4165}
4166
4167/* Set LABEL_OP to be label operand INDEX in GIMPLE_ASM ASM_STMT. */
4168
4169inline void
4170gimple_asm_set_label_op (gasm *asm_stmt, unsigned index, tree label_op)
4171{
4172 gcc_gimple_checking_assert (index < asm_stmt->nl
4173 && TREE_CODE (label_op) == TREE_LIST);
4174 asm_stmt->op[index + asm_stmt->no + asm_stmt->ni + asm_stmt->nc] = label_op;
4175}
4176
4177/* Return the string representing the assembly instruction in
4178 GIMPLE_ASM ASM_STMT. */
4179
4180inline const char *
4181gimple_asm_string (const gasm *asm_stmt)
4182{
4183 return asm_stmt->string;
4184}
4185
4186
4187/* Return true if ASM_STMT is marked volatile. */
4188
4189inline bool
4190gimple_asm_volatile_p (const gasm *asm_stmt)
4191{
4192 return (asm_stmt->subcode & GF_ASM_VOLATILE) != 0;
4193}
4194
4195
4196/* If VOLATILE_P is true, mark asm statement ASM_STMT as volatile. */
4197
4198inline void
4199gimple_asm_set_volatile (gasm *asm_stmt, bool volatile_p)
4200{
4201 if (volatile_p)
4202 asm_stmt->subcode |= GF_ASM_VOLATILE;
4203 else
4204 asm_stmt->subcode &= ~GF_ASM_VOLATILE;
4205}
4206
4207
4208/* Return true if ASM_STMT is marked inline. */
4209
4210inline bool
4211gimple_asm_inline_p (const gasm *asm_stmt)
4212{
4213 return (asm_stmt->subcode & GF_ASM_INLINE) != 0;
4214}
4215
4216
4217/* If INLINE_P is true, mark asm statement ASM_STMT as inline. */
4218
4219inline void
4220gimple_asm_set_inline (gasm *asm_stmt, bool inline_p)
4221{
4222 if (inline_p)
4223 asm_stmt->subcode |= GF_ASM_INLINE;
4224 else
4225 asm_stmt->subcode &= ~GF_ASM_INLINE;
4226}
4227
4228
4229/* If INPUT_P is true, mark asm ASM_STMT as an ASM_INPUT. */
4230
4231inline void
4232gimple_asm_set_input (gasm *asm_stmt, bool input_p)
4233{
4234 if (input_p)
4235 asm_stmt->subcode |= GF_ASM_INPUT;
4236 else
4237 asm_stmt->subcode &= ~GF_ASM_INPUT;
4238}
4239
4240
4241/* Return true if asm ASM_STMT is an ASM_INPUT. */
4242
4243inline bool
4244gimple_asm_input_p (const gasm *asm_stmt)
4245{
4246 return (asm_stmt->subcode & GF_ASM_INPUT) != 0;
4247}
4248
4249
4250/* Return the types handled by GIMPLE_CATCH statement CATCH_STMT. */
4251
4252inline tree
4253gimple_catch_types (const gcatch *catch_stmt)
4254{
4255 return catch_stmt->types;
4256}
4257
4258
4259/* Return a pointer to the types handled by GIMPLE_CATCH statement CATCH_STMT. */
4260
4261inline tree *
4262gimple_catch_types_ptr (gcatch *catch_stmt)
4263{
4264 return &catch_stmt->types;
4265}
4266
4267
4268/* Return a pointer to the GIMPLE sequence representing the body of
4269 the handler of GIMPLE_CATCH statement CATCH_STMT. */
4270
4271inline gimple_seq *
4272gimple_catch_handler_ptr (gcatch *catch_stmt)
4273{
4274 return &catch_stmt->handler;
4275}
4276
4277
4278/* Return the GIMPLE sequence representing the body of the handler of
4279 GIMPLE_CATCH statement CATCH_STMT. */
4280
4281inline gimple_seq
4282gimple_catch_handler (const gcatch *catch_stmt)
4283{
4284 return *gimple_catch_handler_ptr (catch_stmt: const_cast <gcatch *> (catch_stmt));
4285}
4286
4287
4288/* Set T to be the set of types handled by GIMPLE_CATCH CATCH_STMT. */
4289
4290inline void
4291gimple_catch_set_types (gcatch *catch_stmt, tree t)
4292{
4293 catch_stmt->types = t;
4294}
4295
4296
4297/* Set HANDLER to be the body of GIMPLE_CATCH CATCH_STMT. */
4298
4299inline void
4300gimple_catch_set_handler (gcatch *catch_stmt, gimple_seq handler)
4301{
4302 catch_stmt->handler = handler;
4303}
4304
4305
4306/* Return the types handled by GIMPLE_EH_FILTER statement GS. */
4307
4308inline tree
4309gimple_eh_filter_types (const gimple *gs)
4310{
4311 const geh_filter *eh_filter_stmt = as_a <const geh_filter *> (p: gs);
4312 return eh_filter_stmt->types;
4313}
4314
4315
4316/* Return a pointer to the types handled by GIMPLE_EH_FILTER statement
4317 GS. */
4318
4319inline tree *
4320gimple_eh_filter_types_ptr (gimple *gs)
4321{
4322 geh_filter *eh_filter_stmt = as_a <geh_filter *> (p: gs);
4323 return &eh_filter_stmt->types;
4324}
4325
4326
4327/* Return a pointer to the sequence of statement to execute when
4328 GIMPLE_EH_FILTER statement fails. */
4329
4330inline gimple_seq *
4331gimple_eh_filter_failure_ptr (gimple *gs)
4332{
4333 geh_filter *eh_filter_stmt = as_a <geh_filter *> (p: gs);
4334 return &eh_filter_stmt->failure;
4335}
4336
4337
4338/* Return the sequence of statement to execute when GIMPLE_EH_FILTER
4339 statement fails. */
4340
4341inline gimple_seq
4342gimple_eh_filter_failure (const gimple *gs)
4343{
4344 return *gimple_eh_filter_failure_ptr (gs: const_cast <gimple *> (gs));
4345}
4346
4347
4348/* Set TYPES to be the set of types handled by GIMPLE_EH_FILTER
4349 EH_FILTER_STMT. */
4350
4351inline void
4352gimple_eh_filter_set_types (geh_filter *eh_filter_stmt, tree types)
4353{
4354 eh_filter_stmt->types = types;
4355}
4356
4357
4358/* Set FAILURE to be the sequence of statements to execute on failure
4359 for GIMPLE_EH_FILTER EH_FILTER_STMT. */
4360
4361inline void
4362gimple_eh_filter_set_failure (geh_filter *eh_filter_stmt,
4363 gimple_seq failure)
4364{
4365 eh_filter_stmt->failure = failure;
4366}
4367
4368/* Get the function decl to be called by the MUST_NOT_THROW region. */
4369
4370inline tree
4371gimple_eh_must_not_throw_fndecl (const geh_mnt *eh_mnt_stmt)
4372{
4373 return eh_mnt_stmt->fndecl;
4374}
4375
4376/* Set the function decl to be called by GS to DECL. */
4377
4378inline void
4379gimple_eh_must_not_throw_set_fndecl (geh_mnt *eh_mnt_stmt,
4380 tree decl)
4381{
4382 eh_mnt_stmt->fndecl = decl;
4383}
4384
4385/* GIMPLE_EH_ELSE accessors. */
4386
4387inline gimple_seq *
4388gimple_eh_else_n_body_ptr (geh_else *eh_else_stmt)
4389{
4390 return &eh_else_stmt->n_body;
4391}
4392
4393inline gimple_seq
4394gimple_eh_else_n_body (const geh_else *eh_else_stmt)
4395{
4396 return *gimple_eh_else_n_body_ptr (eh_else_stmt: const_cast <geh_else *> (eh_else_stmt));
4397}
4398
4399inline gimple_seq *
4400gimple_eh_else_e_body_ptr (geh_else *eh_else_stmt)
4401{
4402 return &eh_else_stmt->e_body;
4403}
4404
4405inline gimple_seq
4406gimple_eh_else_e_body (const geh_else *eh_else_stmt)
4407{
4408 return *gimple_eh_else_e_body_ptr (eh_else_stmt: const_cast <geh_else *> (eh_else_stmt));
4409}
4410
4411inline void
4412gimple_eh_else_set_n_body (geh_else *eh_else_stmt, gimple_seq seq)
4413{
4414 eh_else_stmt->n_body = seq;
4415}
4416
4417inline void
4418gimple_eh_else_set_e_body (geh_else *eh_else_stmt, gimple_seq seq)
4419{
4420 eh_else_stmt->e_body = seq;
4421}
4422
4423/* GIMPLE_TRY accessors. */
4424
4425/* Return the kind of try block represented by GIMPLE_TRY GS. This is
4426 either GIMPLE_TRY_CATCH or GIMPLE_TRY_FINALLY. */
4427
4428inline enum gimple_try_flags
4429gimple_try_kind (const gimple *gs)
4430{
4431 GIMPLE_CHECK (gs, GIMPLE_TRY);
4432 return (enum gimple_try_flags) (gs->subcode & GIMPLE_TRY_KIND);
4433}
4434
4435
4436/* Set the kind of try block represented by GIMPLE_TRY GS. */
4437
4438inline void
4439gimple_try_set_kind (gtry *gs, enum gimple_try_flags kind)
4440{
4441 gcc_gimple_checking_assert (kind == GIMPLE_TRY_CATCH
4442 || kind == GIMPLE_TRY_FINALLY);
4443 if (gimple_try_kind (gs) != kind)
4444 gs->subcode = (unsigned int) kind;
4445}
4446
4447
4448/* Return the GIMPLE_TRY_CATCH_IS_CLEANUP flag. */
4449
4450inline bool
4451gimple_try_catch_is_cleanup (const gimple *gs)
4452{
4453 gcc_gimple_checking_assert (gimple_try_kind (gs) == GIMPLE_TRY_CATCH);
4454 return (gs->subcode & GIMPLE_TRY_CATCH_IS_CLEANUP) != 0;
4455}
4456
4457
4458/* Return a pointer to the sequence of statements used as the
4459 body for GIMPLE_TRY GS. */
4460
4461inline gimple_seq *
4462gimple_try_eval_ptr (gimple *gs)
4463{
4464 gtry *try_stmt = as_a <gtry *> (p: gs);
4465 return &try_stmt->eval;
4466}
4467
4468
4469/* Return the sequence of statements used as the body for GIMPLE_TRY GS. */
4470
4471inline gimple_seq
4472gimple_try_eval (const gimple *gs)
4473{
4474 return *gimple_try_eval_ptr (gs: const_cast <gimple *> (gs));
4475}
4476
4477
4478/* Return a pointer to the sequence of statements used as the cleanup body for
4479 GIMPLE_TRY GS. */
4480
4481inline gimple_seq *
4482gimple_try_cleanup_ptr (gimple *gs)
4483{
4484 gtry *try_stmt = as_a <gtry *> (p: gs);
4485 return &try_stmt->cleanup;
4486}
4487
4488
4489/* Return the sequence of statements used as the cleanup body for
4490 GIMPLE_TRY GS. */
4491
4492inline gimple_seq
4493gimple_try_cleanup (const gimple *gs)
4494{
4495 return *gimple_try_cleanup_ptr (gs: const_cast <gimple *> (gs));
4496}
4497
4498
4499/* Set the GIMPLE_TRY_CATCH_IS_CLEANUP flag. */
4500
4501inline void
4502gimple_try_set_catch_is_cleanup (gtry *g, bool catch_is_cleanup)
4503{
4504 gcc_gimple_checking_assert (gimple_try_kind (g) == GIMPLE_TRY_CATCH);
4505 if (catch_is_cleanup)
4506 g->subcode |= GIMPLE_TRY_CATCH_IS_CLEANUP;
4507 else
4508 g->subcode &= ~GIMPLE_TRY_CATCH_IS_CLEANUP;
4509}
4510
4511
4512/* Set EVAL to be the sequence of statements to use as the body for
4513 GIMPLE_TRY TRY_STMT. */
4514
4515inline void
4516gimple_try_set_eval (gtry *try_stmt, gimple_seq eval)
4517{
4518 try_stmt->eval = eval;
4519}
4520
4521
4522/* Set CLEANUP to be the sequence of statements to use as the cleanup
4523 body for GIMPLE_TRY TRY_STMT. */
4524
4525inline void
4526gimple_try_set_cleanup (gtry *try_stmt, gimple_seq cleanup)
4527{
4528 try_stmt->cleanup = cleanup;
4529}
4530
4531
4532/* Return a pointer to the cleanup sequence for cleanup statement GS. */
4533
4534inline gimple_seq *
4535gimple_wce_cleanup_ptr (gimple *gs)
4536{
4537 gimple_statement_wce *wce_stmt = as_a <gimple_statement_wce *> (p: gs);
4538 return &wce_stmt->cleanup;
4539}
4540
4541
4542/* Return the cleanup sequence for cleanup statement GS. */
4543
4544inline gimple_seq
4545gimple_wce_cleanup (gimple *gs)
4546{
4547 return *gimple_wce_cleanup_ptr (gs);
4548}
4549
4550
4551/* Set CLEANUP to be the cleanup sequence for GS. */
4552
4553inline void
4554gimple_wce_set_cleanup (gimple *gs, gimple_seq cleanup)
4555{
4556 gimple_statement_wce *wce_stmt = as_a <gimple_statement_wce *> (p: gs);
4557 wce_stmt->cleanup = cleanup;
4558}
4559
4560
4561/* Return the CLEANUP_EH_ONLY flag for a WCE tuple. */
4562
4563inline bool
4564gimple_wce_cleanup_eh_only (const gimple *gs)
4565{
4566 GIMPLE_CHECK (gs, GIMPLE_WITH_CLEANUP_EXPR);
4567 return gs->subcode != 0;
4568}
4569
4570
4571/* Set the CLEANUP_EH_ONLY flag for a WCE tuple. */
4572
4573inline void
4574gimple_wce_set_cleanup_eh_only (gimple *gs, bool eh_only_p)
4575{
4576 GIMPLE_CHECK (gs, GIMPLE_WITH_CLEANUP_EXPR);
4577 gs->subcode = (unsigned int) eh_only_p;
4578}
4579
4580
4581/* Return the maximum number of arguments supported by GIMPLE_PHI GS. */
4582
4583inline unsigned
4584gimple_phi_capacity (const gimple *gs)
4585{
4586 const gphi *phi_stmt = as_a <const gphi *> (p: gs);
4587 return phi_stmt->capacity;
4588}
4589
4590
4591/* Return the number of arguments in GIMPLE_PHI GS. This must always
4592 be exactly the number of incoming edges for the basic block holding
4593 GS. */
4594
4595inline unsigned
4596gimple_phi_num_args (const gimple *gs)
4597{
4598 const gphi *phi_stmt = as_a <const gphi *> (p: gs);
4599 return phi_stmt->nargs;
4600}
4601
4602
4603/* Return the SSA name created by GIMPLE_PHI GS. */
4604
4605inline tree
4606gimple_phi_result (const gphi *gs)
4607{
4608 return gs->result;
4609}
4610
4611inline tree
4612gimple_phi_result (const gimple *gs)
4613{
4614 const gphi *phi_stmt = as_a <const gphi *> (p: gs);
4615 return gimple_phi_result (gs: phi_stmt);
4616}
4617
4618/* Return a pointer to the SSA name created by GIMPLE_PHI GS. */
4619
4620inline tree *
4621gimple_phi_result_ptr (gphi *gs)
4622{
4623 return &gs->result;
4624}
4625
4626inline tree *
4627gimple_phi_result_ptr (gimple *gs)
4628{
4629 gphi *phi_stmt = as_a <gphi *> (p: gs);
4630 return gimple_phi_result_ptr (gs: phi_stmt);
4631}
4632
4633/* Set RESULT to be the SSA name created by GIMPLE_PHI PHI. */
4634
4635inline void
4636gimple_phi_set_result (gphi *phi, tree result)
4637{
4638 phi->result = result;
4639 if (result && TREE_CODE (result) == SSA_NAME)
4640 SSA_NAME_DEF_STMT (result) = phi;
4641}
4642
4643
4644/* Return the PHI argument corresponding to incoming edge INDEX for
4645 GIMPLE_PHI GS. */
4646
4647inline struct phi_arg_d *
4648gimple_phi_arg (gphi *gs, unsigned index)
4649{
4650 gcc_gimple_checking_assert (index < gs->nargs);
4651 return &(gs->args[index]);
4652}
4653
4654inline const phi_arg_d *
4655gimple_phi_arg (const gphi *gs, unsigned index)
4656{
4657 gcc_gimple_checking_assert (index < gs->nargs);
4658 return &(gs->args[index]);
4659}
4660
4661inline const phi_arg_d *
4662gimple_phi_arg (const gimple *gs, unsigned index)
4663{
4664 const gphi *phi_stmt = as_a <const gphi *> (p: gs);
4665 return gimple_phi_arg (gs: phi_stmt, index);
4666}
4667
4668inline struct phi_arg_d *
4669gimple_phi_arg (gimple *gs, unsigned index)
4670{
4671 gphi *phi_stmt = as_a <gphi *> (p: gs);
4672 return gimple_phi_arg (gs: phi_stmt, index);
4673}
4674
4675/* Set PHIARG to be the argument corresponding to incoming edge INDEX
4676 for GIMPLE_PHI PHI. */
4677
4678inline void
4679gimple_phi_set_arg (gphi *phi, unsigned index, struct phi_arg_d * phiarg)
4680{
4681 gcc_gimple_checking_assert (index < phi->nargs);
4682 phi->args[index] = *phiarg;
4683}
4684
4685/* Return the PHI nodes for basic block BB, or NULL if there are no
4686 PHI nodes. */
4687
4688inline gimple_seq
4689phi_nodes (const_basic_block bb)
4690{
4691 gcc_checking_assert (!(bb->flags & BB_RTL));
4692 return bb->il.gimple.phi_nodes;
4693}
4694
4695/* Return a pointer to the PHI nodes for basic block BB. */
4696
4697inline gimple_seq *
4698phi_nodes_ptr (basic_block bb)
4699{
4700 gcc_checking_assert (!(bb->flags & BB_RTL));
4701 return &bb->il.gimple.phi_nodes;
4702}
4703
4704/* Return the tree operand for argument I of PHI node GS. */
4705
4706inline tree
4707gimple_phi_arg_def (const gphi *gs, size_t index)
4708{
4709 return gimple_phi_arg (gs, index)->def;
4710}
4711
4712inline tree
4713gimple_phi_arg_def (const gimple *gs, size_t index)
4714{
4715 return gimple_phi_arg (gs, index)->def;
4716}
4717
4718/* Return the tree operand for the argument associated with
4719 edge E of PHI node GS. */
4720
4721inline tree
4722gimple_phi_arg_def_from_edge (const gphi *gs, const_edge e)
4723{
4724 gcc_checking_assert (e->dest == gimple_bb (gs));
4725 return gimple_phi_arg (gs, index: e->dest_idx)->def;
4726}
4727
4728inline tree
4729gimple_phi_arg_def_from_edge (const gimple *gs, const_edge e)
4730{
4731 gcc_checking_assert (e->dest == gimple_bb (gs));
4732 return gimple_phi_arg (gs, index: e->dest_idx)->def;
4733}
4734
4735/* Return a pointer to the tree operand for argument I of phi node PHI. */
4736
4737inline tree *
4738gimple_phi_arg_def_ptr (gphi *phi, size_t index)
4739{
4740 return &gimple_phi_arg (gs: phi, index)->def;
4741}
4742
4743/* Return the edge associated with argument I of phi node PHI. */
4744
4745inline edge
4746gimple_phi_arg_edge (const gphi *phi, size_t i)
4747{
4748 return EDGE_PRED (gimple_bb (phi), i);
4749}
4750
4751/* Return the source location of gimple argument I of phi node PHI. */
4752
4753inline location_t
4754gimple_phi_arg_location (const gphi *phi, size_t i)
4755{
4756 return gimple_phi_arg (gs: phi, index: i)->locus;
4757}
4758
4759/* Return the source location of the argument on edge E of phi node PHI. */
4760
4761inline location_t
4762gimple_phi_arg_location_from_edge (gphi *phi, edge e)
4763{
4764 return gimple_phi_arg (gs: phi, index: e->dest_idx)->locus;
4765}
4766
4767/* Set the source location of gimple argument I of phi node PHI to LOC. */
4768
4769inline void
4770gimple_phi_arg_set_location (gphi *phi, size_t i, location_t loc)
4771{
4772 gimple_phi_arg (gs: phi, index: i)->locus = loc;
4773}
4774
4775/* Return address of source location of gimple argument I of phi node PHI. */
4776
4777inline location_t *
4778gimple_phi_arg_location_ptr (gphi *phi, size_t i)
4779{
4780 return &gimple_phi_arg (gs: phi, index: i)->locus;
4781}
4782
4783/* Return TRUE if argument I of phi node PHI has a location record. */
4784
4785inline bool
4786gimple_phi_arg_has_location (const gphi *phi, size_t i)
4787{
4788 return gimple_phi_arg_location (phi, i) != UNKNOWN_LOCATION;
4789}
4790
4791/* Return the number of arguments that can be accessed by gimple_arg. */
4792
4793inline unsigned
4794gimple_num_args (const gimple *gs)
4795{
4796 if (auto phi = dyn_cast<const gphi *> (p: gs))
4797 return gimple_phi_num_args (gs: phi);
4798 if (auto call = dyn_cast<const gcall *> (p: gs))
4799 return gimple_call_num_args (gs: call);
4800 return gimple_num_ops (gs: as_a <const gassign *> (p: gs)) - 1;
4801}
4802
4803/* GS must be an assignment, a call, or a PHI.
4804 If it's an assignment, return rhs operand I.
4805 If it's a call, return function argument I.
4806 If it's a PHI, return the value of PHI argument I. */
4807
4808inline tree
4809gimple_arg (const gimple *gs, unsigned int i)
4810{
4811 if (auto phi = dyn_cast<const gphi *> (p: gs))
4812 return gimple_phi_arg_def (gs: phi, index: i);
4813 if (auto call = dyn_cast<const gcall *> (p: gs))
4814 return gimple_call_arg (gs: call, index: i);
4815 return gimple_op (gs: as_a <const gassign *> (p: gs), i: i + 1);
4816}
4817
4818/* Return a pointer to gimple_arg (GS, I). */
4819
4820inline tree *
4821gimple_arg_ptr (gimple *gs, unsigned int i)
4822{
4823 if (auto phi = dyn_cast<gphi *> (p: gs))
4824 return gimple_phi_arg_def_ptr (phi, index: i);
4825 if (auto call = dyn_cast<gcall *> (p: gs))
4826 return gimple_call_arg_ptr (gs: call, index: i);
4827 return gimple_op_ptr (gs: as_a <gassign *> (p: gs), i: i + 1);
4828}
4829
4830/* Return the region number for GIMPLE_RESX RESX_STMT. */
4831
4832inline int
4833gimple_resx_region (const gresx *resx_stmt)
4834{
4835 return resx_stmt->region;
4836}
4837
4838/* Set REGION to be the region number for GIMPLE_RESX RESX_STMT. */
4839
4840inline void
4841gimple_resx_set_region (gresx *resx_stmt, int region)
4842{
4843 resx_stmt->region = region;
4844}
4845
4846/* Return the region number for GIMPLE_EH_DISPATCH EH_DISPATCH_STMT. */
4847
4848inline int
4849gimple_eh_dispatch_region (const geh_dispatch *eh_dispatch_stmt)
4850{
4851 return eh_dispatch_stmt->region;
4852}
4853
4854/* Set REGION to be the region number for GIMPLE_EH_DISPATCH
4855 EH_DISPATCH_STMT. */
4856
4857inline void
4858gimple_eh_dispatch_set_region (geh_dispatch *eh_dispatch_stmt, int region)
4859{
4860 eh_dispatch_stmt->region = region;
4861}
4862
4863/* Return the number of labels associated with the switch statement GS. */
4864
4865inline unsigned
4866gimple_switch_num_labels (const gswitch *gs)
4867{
4868 unsigned num_ops;
4869 GIMPLE_CHECK (gs, GIMPLE_SWITCH);
4870 num_ops = gimple_num_ops (gs);
4871 gcc_gimple_checking_assert (num_ops > 1);
4872 return num_ops - 1;
4873}
4874
4875
4876/* Set NLABELS to be the number of labels for the switch statement GS. */
4877
4878inline void
4879gimple_switch_set_num_labels (gswitch *g, unsigned nlabels)
4880{
4881 GIMPLE_CHECK (g, GIMPLE_SWITCH);
4882 gimple_set_num_ops (gs: g, num_ops: nlabels + 1);
4883}
4884
4885
4886/* Return the index variable used by the switch statement GS. */
4887
4888inline tree
4889gimple_switch_index (const gswitch *gs)
4890{
4891 return gs->op[0];
4892}
4893
4894
4895/* Return a pointer to the index variable for the switch statement GS. */
4896
4897inline tree *
4898gimple_switch_index_ptr (gswitch *gs)
4899{
4900 return &gs->op[0];
4901}
4902
4903
4904/* Set INDEX to be the index variable for switch statement GS. */
4905
4906inline void
4907gimple_switch_set_index (gswitch *gs, tree index)
4908{
4909 gcc_gimple_checking_assert (SSA_VAR_P (index) || CONSTANT_CLASS_P (index));
4910 gs->op[0] = index;
4911}
4912
4913
4914/* Return the label numbered INDEX. The default label is 0, followed by any
4915 labels in a switch statement. */
4916
4917inline tree
4918gimple_switch_label (const gswitch *gs, unsigned index)
4919{
4920 gcc_gimple_checking_assert (gimple_num_ops (gs) > index + 1);
4921 return gs->op[index + 1];
4922}
4923
4924/* Set the label number INDEX to LABEL. 0 is always the default label. */
4925
4926inline void
4927gimple_switch_set_label (gswitch *gs, unsigned index, tree label)
4928{
4929 gcc_gimple_checking_assert (gimple_num_ops (gs) > index + 1
4930 && (label == NULL_TREE
4931 || TREE_CODE (label) == CASE_LABEL_EXPR));
4932 gs->op[index + 1] = label;
4933}
4934
4935/* Return the default label for a switch statement. */
4936
4937inline tree
4938gimple_switch_default_label (const gswitch *gs)
4939{
4940 tree label = gimple_switch_label (gs, index: 0);
4941 gcc_checking_assert (!CASE_LOW (label) && !CASE_HIGH (label));
4942 return label;
4943}
4944
4945/* Set the default label for a switch statement. */
4946
4947inline void
4948gimple_switch_set_default_label (gswitch *gs, tree label)
4949{
4950 gcc_checking_assert (!CASE_LOW (label) && !CASE_HIGH (label));
4951 gimple_switch_set_label (gs, index: 0, label);
4952}
4953
4954/* Return true if GS is a GIMPLE_DEBUG statement. */
4955
4956inline bool
4957is_gimple_debug (const gimple *gs)
4958{
4959 return gimple_code (g: gs) == GIMPLE_DEBUG;
4960}
4961
4962
4963/* Return the first nondebug statement in GIMPLE sequence S. */
4964
4965inline gimple *
4966gimple_seq_first_nondebug_stmt (gimple_seq s)
4967{
4968 gimple_seq_node n = gimple_seq_first (s);
4969 while (n && is_gimple_debug (gs: n))
4970 n = n->next;
4971 return n;
4972}
4973
4974
4975/* Return the last nondebug statement in GIMPLE sequence S. */
4976
4977inline gimple *
4978gimple_seq_last_nondebug_stmt (gimple_seq s)
4979{
4980 gimple_seq_node n;
4981 for (n = gimple_seq_last (s);
4982 n && is_gimple_debug (gs: n);
4983 n = n->prev)
4984 if (n == s)
4985 return NULL;
4986 return n;
4987}
4988
4989
4990/* Return true if S is a GIMPLE_DEBUG BIND statement. */
4991
4992inline bool
4993gimple_debug_bind_p (const gimple *s)
4994{
4995 if (is_gimple_debug (gs: s))
4996 return s->subcode == GIMPLE_DEBUG_BIND;
4997
4998 return false;
4999}
5000
5001/* Return the variable bound in a GIMPLE_DEBUG bind statement. */
5002
5003inline tree
5004gimple_debug_bind_get_var (const gimple *dbg)
5005{
5006 GIMPLE_CHECK (dbg, GIMPLE_DEBUG);
5007 gcc_gimple_checking_assert (gimple_debug_bind_p (dbg));
5008 return gimple_op (gs: dbg, i: 0);
5009}
5010
5011/* Return the value bound to the variable in a GIMPLE_DEBUG bind
5012 statement. */
5013
5014inline tree
5015gimple_debug_bind_get_value (const gimple *dbg)
5016{
5017 GIMPLE_CHECK (dbg, GIMPLE_DEBUG);
5018 gcc_gimple_checking_assert (gimple_debug_bind_p (dbg));
5019 return gimple_op (gs: dbg, i: 1);
5020}
5021
5022/* Return a pointer to the value bound to the variable in a
5023 GIMPLE_DEBUG bind statement. */
5024
5025inline tree *
5026gimple_debug_bind_get_value_ptr (gimple *dbg)
5027{
5028 GIMPLE_CHECK (dbg, GIMPLE_DEBUG);
5029 gcc_gimple_checking_assert (gimple_debug_bind_p (dbg));
5030 return gimple_op_ptr (gs: dbg, i: 1);
5031}
5032
5033/* Set the variable bound in a GIMPLE_DEBUG bind statement. */
5034
5035inline void
5036gimple_debug_bind_set_var (gimple *dbg, tree var)
5037{
5038 GIMPLE_CHECK (dbg, GIMPLE_DEBUG);
5039 gcc_gimple_checking_assert (gimple_debug_bind_p (dbg));
5040 gimple_set_op (gs: dbg, i: 0, op: var);
5041}
5042
5043/* Set the value bound to the variable in a GIMPLE_DEBUG bind
5044 statement. */
5045
5046inline void
5047gimple_debug_bind_set_value (gimple *dbg, tree value)
5048{
5049 GIMPLE_CHECK (dbg, GIMPLE_DEBUG);
5050 gcc_gimple_checking_assert (gimple_debug_bind_p (dbg));
5051 gimple_set_op (gs: dbg, i: 1, op: value);
5052}
5053
5054/* The second operand of a GIMPLE_DEBUG_BIND, when the value was
5055 optimized away. */
5056#define GIMPLE_DEBUG_BIND_NOVALUE NULL_TREE /* error_mark_node */
5057
5058/* Remove the value bound to the variable in a GIMPLE_DEBUG bind
5059 statement. */
5060
5061inline void
5062gimple_debug_bind_reset_value (gimple *dbg)
5063{
5064 GIMPLE_CHECK (dbg, GIMPLE_DEBUG);
5065 gcc_gimple_checking_assert (gimple_debug_bind_p (dbg));
5066 gimple_set_op (gs: dbg, i: 1, GIMPLE_DEBUG_BIND_NOVALUE);
5067}
5068
5069/* Return true if the GIMPLE_DEBUG bind statement is bound to a
5070 value. */
5071
5072inline bool
5073gimple_debug_bind_has_value_p (gimple *dbg)
5074{
5075 GIMPLE_CHECK (dbg, GIMPLE_DEBUG);
5076 gcc_gimple_checking_assert (gimple_debug_bind_p (dbg));
5077 return gimple_op (gs: dbg, i: 1) != GIMPLE_DEBUG_BIND_NOVALUE;
5078}
5079
5080#undef GIMPLE_DEBUG_BIND_NOVALUE
5081
5082/* Return true if S is a GIMPLE_DEBUG SOURCE BIND statement. */
5083
5084inline bool
5085gimple_debug_source_bind_p (const gimple *s)
5086{
5087 if (is_gimple_debug (gs: s))
5088 return s->subcode == GIMPLE_DEBUG_SOURCE_BIND;
5089
5090 return false;
5091}
5092
5093/* Return the variable bound in a GIMPLE_DEBUG source bind statement. */
5094
5095inline tree
5096gimple_debug_source_bind_get_var (const gimple *dbg)
5097{
5098 GIMPLE_CHECK (dbg, GIMPLE_DEBUG);
5099 gcc_gimple_checking_assert (gimple_debug_source_bind_p (dbg));
5100 return gimple_op (gs: dbg, i: 0);
5101}
5102
5103/* Return the value bound to the variable in a GIMPLE_DEBUG source bind
5104 statement. */
5105
5106inline tree
5107gimple_debug_source_bind_get_value (const gimple *dbg)
5108{
5109 GIMPLE_CHECK (dbg, GIMPLE_DEBUG);
5110 gcc_gimple_checking_assert (gimple_debug_source_bind_p (dbg));
5111 return gimple_op (gs: dbg, i: 1);
5112}
5113
5114/* Return a pointer to the value bound to the variable in a
5115 GIMPLE_DEBUG source bind statement. */
5116
5117inline tree *
5118gimple_debug_source_bind_get_value_ptr (gimple *dbg)
5119{
5120 GIMPLE_CHECK (dbg, GIMPLE_DEBUG);
5121 gcc_gimple_checking_assert (gimple_debug_source_bind_p (dbg));
5122 return gimple_op_ptr (gs: dbg, i: 1);
5123}
5124
5125/* Set the variable bound in a GIMPLE_DEBUG source bind statement. */
5126
5127inline void
5128gimple_debug_source_bind_set_var (gimple *dbg, tree var)
5129{
5130 GIMPLE_CHECK (dbg, GIMPLE_DEBUG);
5131 gcc_gimple_checking_assert (gimple_debug_source_bind_p (dbg));
5132 gimple_set_op (gs: dbg, i: 0, op: var);
5133}
5134
5135/* Set the value bound to the variable in a GIMPLE_DEBUG source bind
5136 statement. */
5137
5138inline void
5139gimple_debug_source_bind_set_value (gimple *dbg, tree value)
5140{
5141 GIMPLE_CHECK (dbg, GIMPLE_DEBUG);
5142 gcc_gimple_checking_assert (gimple_debug_source_bind_p (dbg));
5143 gimple_set_op (gs: dbg, i: 1, op: value);
5144}
5145
5146/* Return true if S is a GIMPLE_DEBUG BEGIN_STMT statement. */
5147
5148inline bool
5149gimple_debug_begin_stmt_p (const gimple *s)
5150{
5151 if (is_gimple_debug (gs: s))
5152 return s->subcode == GIMPLE_DEBUG_BEGIN_STMT;
5153
5154 return false;
5155}
5156
5157/* Return true if S is a GIMPLE_DEBUG INLINE_ENTRY statement. */
5158
5159inline bool
5160gimple_debug_inline_entry_p (const gimple *s)
5161{
5162 if (is_gimple_debug (gs: s))
5163 return s->subcode == GIMPLE_DEBUG_INLINE_ENTRY;
5164
5165 return false;
5166}
5167
5168/* Return true if S is a GIMPLE_DEBUG non-binding marker statement. */
5169
5170inline bool
5171gimple_debug_nonbind_marker_p (const gimple *s)
5172{
5173 if (is_gimple_debug (gs: s))
5174 return s->subcode == GIMPLE_DEBUG_BEGIN_STMT
5175 || s->subcode == GIMPLE_DEBUG_INLINE_ENTRY;
5176
5177 return false;
5178}
5179
5180/* Return the line number for EXPR, or return -1 if we have no line
5181 number information for it. */
5182inline int
5183get_lineno (const gimple *stmt)
5184{
5185 location_t loc;
5186
5187 if (!stmt)
5188 return -1;
5189
5190 loc = gimple_location (g: stmt);
5191 if (loc == UNKNOWN_LOCATION)
5192 return -1;
5193
5194 return LOCATION_LINE (loc);
5195}
5196
5197/* Return a pointer to the body for the OMP statement GS. */
5198
5199inline gimple_seq *
5200gimple_omp_body_ptr (gimple *gs)
5201{
5202 return &static_cast <gimple_statement_omp *> (gs)->body;
5203}
5204
5205/* Return the body for the OMP statement GS. */
5206
5207inline gimple_seq
5208gimple_omp_body (const gimple *gs)
5209{
5210 return *gimple_omp_body_ptr (gs: const_cast <gimple *> (gs));
5211}
5212
5213/* Set BODY to be the body for the OMP statement GS. */
5214
5215inline void
5216gimple_omp_set_body (gimple *gs, gimple_seq body)
5217{
5218 static_cast <gimple_statement_omp *> (gs)->body = body;
5219}
5220
5221
5222/* Return the name associated with OMP_CRITICAL statement CRIT_STMT. */
5223
5224inline tree
5225gimple_omp_critical_name (const gomp_critical *crit_stmt)
5226{
5227 return crit_stmt->name;
5228}
5229
5230
5231/* Return a pointer to the name associated with OMP critical statement
5232 CRIT_STMT. */
5233
5234inline tree *
5235gimple_omp_critical_name_ptr (gomp_critical *crit_stmt)
5236{
5237 return &crit_stmt->name;
5238}
5239
5240
5241/* Set NAME to be the name associated with OMP critical statement
5242 CRIT_STMT. */
5243
5244inline void
5245gimple_omp_critical_set_name (gomp_critical *crit_stmt, tree name)
5246{
5247 crit_stmt->name = name;
5248}
5249
5250
5251/* Return the clauses associated with OMP_CRITICAL statement CRIT_STMT. */
5252
5253inline tree
5254gimple_omp_critical_clauses (const gomp_critical *crit_stmt)
5255{
5256 return crit_stmt->clauses;
5257}
5258
5259
5260/* Return a pointer to the clauses associated with OMP critical statement
5261 CRIT_STMT. */
5262
5263inline tree *
5264gimple_omp_critical_clauses_ptr (gomp_critical *crit_stmt)
5265{
5266 return &crit_stmt->clauses;
5267}
5268
5269
5270/* Set CLAUSES to be the clauses associated with OMP critical statement
5271 CRIT_STMT. */
5272
5273inline void
5274gimple_omp_critical_set_clauses (gomp_critical *crit_stmt, tree clauses)
5275{
5276 crit_stmt->clauses = clauses;
5277}
5278
5279
5280/* Return the clauses associated with OMP_ORDERED statement ORD_STMT. */
5281
5282inline tree
5283gimple_omp_ordered_clauses (const gomp_ordered *ord_stmt)
5284{
5285 return ord_stmt->clauses;
5286}
5287
5288
5289/* Return a pointer to the clauses associated with OMP ordered statement
5290 ORD_STMT. */
5291
5292inline tree *
5293gimple_omp_ordered_clauses_ptr (gomp_ordered *ord_stmt)
5294{
5295 return &ord_stmt->clauses;
5296}
5297
5298
5299/* Set CLAUSES to be the clauses associated with OMP ordered statement
5300 ORD_STMT. */
5301
5302inline void
5303gimple_omp_ordered_set_clauses (gomp_ordered *ord_stmt, tree clauses)
5304{
5305 ord_stmt->clauses = clauses;
5306}
5307
5308
5309/* Return the clauses associated with OMP_SCAN statement SCAN_STMT. */
5310
5311inline tree
5312gimple_omp_scan_clauses (const gomp_scan *scan_stmt)
5313{
5314 return scan_stmt->clauses;
5315}
5316
5317
5318/* Return a pointer to the clauses associated with OMP scan statement
5319 ORD_STMT. */
5320
5321inline tree *
5322gimple_omp_scan_clauses_ptr (gomp_scan *scan_stmt)
5323{
5324 return &scan_stmt->clauses;
5325}
5326
5327
5328/* Set CLAUSES to be the clauses associated with OMP scan statement
5329 ORD_STMT. */
5330
5331inline void
5332gimple_omp_scan_set_clauses (gomp_scan *scan_stmt, tree clauses)
5333{
5334 scan_stmt->clauses = clauses;
5335}
5336
5337
5338/* Return the clauses associated with OMP_TASKGROUP statement GS. */
5339
5340inline tree
5341gimple_omp_taskgroup_clauses (const gimple *gs)
5342{
5343 GIMPLE_CHECK (gs, GIMPLE_OMP_TASKGROUP);
5344 return
5345 static_cast <const gimple_statement_omp_single_layout *> (gs)->clauses;
5346}
5347
5348
5349/* Return a pointer to the clauses associated with OMP taskgroup statement
5350 GS. */
5351
5352inline tree *
5353gimple_omp_taskgroup_clauses_ptr (gimple *gs)
5354{
5355 GIMPLE_CHECK (gs, GIMPLE_OMP_TASKGROUP);
5356 return &static_cast <gimple_statement_omp_single_layout *> (gs)->clauses;
5357}
5358
5359
5360/* Set CLAUSES to be the clauses associated with OMP taskgroup statement
5361 GS. */
5362
5363inline void
5364gimple_omp_taskgroup_set_clauses (gimple *gs, tree clauses)
5365{
5366 GIMPLE_CHECK (gs, GIMPLE_OMP_TASKGROUP);
5367 static_cast <gimple_statement_omp_single_layout *> (gs)->clauses
5368 = clauses;
5369}
5370
5371
5372/* Return the clauses associated with OMP_MASKED statement GS. */
5373
5374inline tree
5375gimple_omp_masked_clauses (const gimple *gs)
5376{
5377 GIMPLE_CHECK (gs, GIMPLE_OMP_MASKED);
5378 return
5379 static_cast <const gimple_statement_omp_single_layout *> (gs)->clauses;
5380}
5381
5382
5383/* Return a pointer to the clauses associated with OMP masked statement
5384 GS. */
5385
5386inline tree *
5387gimple_omp_masked_clauses_ptr (gimple *gs)
5388{
5389 GIMPLE_CHECK (gs, GIMPLE_OMP_MASKED);
5390 return &static_cast <gimple_statement_omp_single_layout *> (gs)->clauses;
5391}
5392
5393
5394/* Set CLAUSES to be the clauses associated with OMP masked statement
5395 GS. */
5396
5397inline void
5398gimple_omp_masked_set_clauses (gimple *gs, tree clauses)
5399{
5400 GIMPLE_CHECK (gs, GIMPLE_OMP_MASKED);
5401 static_cast <gimple_statement_omp_single_layout *> (gs)->clauses
5402 = clauses;
5403}
5404
5405
5406/* Return the clauses associated with OMP_SCOPE statement GS. */
5407
5408inline tree
5409gimple_omp_scope_clauses (const gimple *gs)
5410{
5411 GIMPLE_CHECK (gs, GIMPLE_OMP_SCOPE);
5412 return
5413 static_cast <const gimple_statement_omp_single_layout *> (gs)->clauses;
5414}
5415
5416
5417/* Return a pointer to the clauses associated with OMP scope statement
5418 GS. */
5419
5420inline tree *
5421gimple_omp_scope_clauses_ptr (gimple *gs)
5422{
5423 GIMPLE_CHECK (gs, GIMPLE_OMP_SCOPE);
5424 return &static_cast <gimple_statement_omp_single_layout *> (gs)->clauses;
5425}
5426
5427
5428/* Set CLAUSES to be the clauses associated with OMP scope statement
5429 GS. */
5430
5431inline void
5432gimple_omp_scope_set_clauses (gimple *gs, tree clauses)
5433{
5434 GIMPLE_CHECK (gs, GIMPLE_OMP_SCOPE);
5435 static_cast <gimple_statement_omp_single_layout *> (gs)->clauses
5436 = clauses;
5437}
5438
5439
5440/* Return the kind of the OMP_FOR statemement G. */
5441
5442inline int
5443gimple_omp_for_kind (const gimple *g)
5444{
5445 GIMPLE_CHECK (g, GIMPLE_OMP_FOR);
5446 return (gimple_omp_subcode (s: g) & GF_OMP_FOR_KIND_MASK);
5447}
5448
5449
5450/* Set the kind of the OMP_FOR statement G. */
5451
5452inline void
5453gimple_omp_for_set_kind (gomp_for *g, int kind)
5454{
5455 g->subcode = (g->subcode & ~GF_OMP_FOR_KIND_MASK)
5456 | (kind & GF_OMP_FOR_KIND_MASK);
5457}
5458
5459
5460/* Return true if OMP_FOR statement G has the
5461 GF_OMP_FOR_COMBINED flag set. */
5462
5463inline bool
5464gimple_omp_for_combined_p (const gimple *g)
5465{
5466 GIMPLE_CHECK (g, GIMPLE_OMP_FOR);
5467 return (gimple_omp_subcode (s: g) & GF_OMP_FOR_COMBINED) != 0;
5468}
5469
5470
5471/* Set the GF_OMP_FOR_COMBINED field in the OMP_FOR statement G depending on
5472 the boolean value of COMBINED_P. */
5473
5474inline void
5475gimple_omp_for_set_combined_p (gomp_for *g, bool combined_p)
5476{
5477 if (combined_p)
5478 g->subcode |= GF_OMP_FOR_COMBINED;
5479 else
5480 g->subcode &= ~GF_OMP_FOR_COMBINED;
5481}
5482
5483
5484/* Return true if the OMP_FOR statement G has the
5485 GF_OMP_FOR_COMBINED_INTO flag set. */
5486
5487inline bool
5488gimple_omp_for_combined_into_p (const gimple *g)
5489{
5490 GIMPLE_CHECK (g, GIMPLE_OMP_FOR);
5491 return (gimple_omp_subcode (s: g) & GF_OMP_FOR_COMBINED_INTO) != 0;
5492}
5493
5494
5495/* Set the GF_OMP_FOR_COMBINED_INTO field in the OMP_FOR statement G depending
5496 on the boolean value of COMBINED_P. */
5497
5498inline void
5499gimple_omp_for_set_combined_into_p (gomp_for *g, bool combined_p)
5500{
5501 if (combined_p)
5502 g->subcode |= GF_OMP_FOR_COMBINED_INTO;
5503 else
5504 g->subcode &= ~GF_OMP_FOR_COMBINED_INTO;
5505}
5506
5507
5508/* Return the clauses associated with the OMP_FOR statement GS. */
5509
5510inline tree
5511gimple_omp_for_clauses (const gimple *gs)
5512{
5513 const gomp_for *omp_for_stmt = as_a <const gomp_for *> (p: gs);
5514 return omp_for_stmt->clauses;
5515}
5516
5517
5518/* Return a pointer to the clauses associated with the OMP_FOR statement
5519 GS. */
5520
5521inline tree *
5522gimple_omp_for_clauses_ptr (gimple *gs)
5523{
5524 gomp_for *omp_for_stmt = as_a <gomp_for *> (p: gs);
5525 return &omp_for_stmt->clauses;
5526}
5527
5528
5529/* Set CLAUSES to be the list of clauses associated with the OMP_FOR statement
5530 GS. */
5531
5532inline void
5533gimple_omp_for_set_clauses (gimple *gs, tree clauses)
5534{
5535 gomp_for *omp_for_stmt = as_a <gomp_for *> (p: gs);
5536 omp_for_stmt->clauses = clauses;
5537}
5538
5539
5540/* Get the collapse count of the OMP_FOR statement GS. */
5541
5542inline size_t
5543gimple_omp_for_collapse (const gimple *gs)
5544{
5545 const gomp_for *omp_for_stmt = as_a <const gomp_for *> (p: gs);
5546 return omp_for_stmt->collapse;
5547}
5548
5549
5550/* Return the condition code associated with the OMP_FOR statement GS. */
5551
5552inline enum tree_code
5553gimple_omp_for_cond (const gimple *gs, size_t i)
5554{
5555 const gomp_for *omp_for_stmt = as_a <const gomp_for *> (p: gs);
5556 gcc_gimple_checking_assert (i < omp_for_stmt->collapse);
5557 return omp_for_stmt->iter[i].cond;
5558}
5559
5560
5561/* Set COND to be the condition code for the OMP_FOR statement GS. */
5562
5563inline void
5564gimple_omp_for_set_cond (gimple *gs, size_t i, enum tree_code cond)
5565{
5566 gomp_for *omp_for_stmt = as_a <gomp_for *> (p: gs);
5567 gcc_gimple_checking_assert (TREE_CODE_CLASS (cond) == tcc_comparison
5568 && i < omp_for_stmt->collapse);
5569 omp_for_stmt->iter[i].cond = cond;
5570}
5571
5572
5573/* Return the index variable for the OMP_FOR statement GS. */
5574
5575inline tree
5576gimple_omp_for_index (const gimple *gs, size_t i)
5577{
5578 const gomp_for *omp_for_stmt = as_a <const gomp_for *> (p: gs);
5579 gcc_gimple_checking_assert (i < omp_for_stmt->collapse);
5580 return omp_for_stmt->iter[i].index;
5581}
5582
5583
5584/* Return a pointer to the index variable for the OMP_FOR statement GS. */
5585
5586inline tree *
5587gimple_omp_for_index_ptr (gimple *gs, size_t i)
5588{
5589 gomp_for *omp_for_stmt = as_a <gomp_for *> (p: gs);
5590 gcc_gimple_checking_assert (i < omp_for_stmt->collapse);
5591 return &omp_for_stmt->iter[i].index;
5592}
5593
5594
5595/* Set INDEX to be the index variable for the OMP_FOR statement GS. */
5596
5597inline void
5598gimple_omp_for_set_index (gimple *gs, size_t i, tree index)
5599{
5600 gomp_for *omp_for_stmt = as_a <gomp_for *> (p: gs);
5601 gcc_gimple_checking_assert (i < omp_for_stmt->collapse);
5602 omp_for_stmt->iter[i].index = index;
5603}
5604
5605
5606/* Return the initial value for the OMP_FOR statement GS. */
5607
5608inline tree
5609gimple_omp_for_initial (const gimple *gs, size_t i)
5610{
5611 const gomp_for *omp_for_stmt = as_a <const gomp_for *> (p: gs);
5612 gcc_gimple_checking_assert (i < omp_for_stmt->collapse);
5613 return omp_for_stmt->iter[i].initial;
5614}
5615
5616
5617/* Return a pointer to the initial value for the OMP_FOR statement GS. */
5618
5619inline tree *
5620gimple_omp_for_initial_ptr (gimple *gs, size_t i)
5621{
5622 gomp_for *omp_for_stmt = as_a <gomp_for *> (p: gs);
5623 gcc_gimple_checking_assert (i < omp_for_stmt->collapse);
5624 return &omp_for_stmt->iter[i].initial;
5625}
5626
5627
5628/* Set INITIAL to be the initial value for the OMP_FOR statement GS. */
5629
5630inline void
5631gimple_omp_for_set_initial (gimple *gs, size_t i, tree initial)
5632{
5633 gomp_for *omp_for_stmt = as_a <gomp_for *> (p: gs);
5634 gcc_gimple_checking_assert (i < omp_for_stmt->collapse);
5635 omp_for_stmt->iter[i].initial = initial;
5636}
5637
5638
5639/* Return the final value for the OMP_FOR statement GS. */
5640
5641inline tree
5642gimple_omp_for_final (const gimple *gs, size_t i)
5643{
5644 const gomp_for *omp_for_stmt = as_a <const gomp_for *> (p: gs);
5645 gcc_gimple_checking_assert (i < omp_for_stmt->collapse);
5646 return omp_for_stmt->iter[i].final;
5647}
5648
5649
5650/* Return a pointer to the final value for the OMP_FOR statement GS. */
5651
5652inline tree *
5653gimple_omp_for_final_ptr (gimple *gs, size_t i)
5654{
5655 gomp_for *omp_for_stmt = as_a <gomp_for *> (p: gs);
5656 gcc_gimple_checking_assert (i < omp_for_stmt->collapse);
5657 return &omp_for_stmt->iter[i].final;
5658}
5659
5660
5661/* Set FINAL to be the final value for the OMP_FOR statement GS. */
5662
5663inline void
5664gimple_omp_for_set_final (gimple *gs, size_t i, tree final)
5665{
5666 gomp_for *omp_for_stmt = as_a <gomp_for *> (p: gs);
5667 gcc_gimple_checking_assert (i < omp_for_stmt->collapse);
5668 omp_for_stmt->iter[i].final = final;
5669}
5670
5671
5672/* Return the increment value for the OMP_FOR statement GS. */
5673
5674inline tree
5675gimple_omp_for_incr (const gimple *gs, size_t i)
5676{
5677 const gomp_for *omp_for_stmt = as_a <const gomp_for *> (p: gs);
5678 gcc_gimple_checking_assert (i < omp_for_stmt->collapse);
5679 return omp_for_stmt->iter[i].incr;
5680}
5681
5682
5683/* Return a pointer to the increment value for the OMP_FOR statement GS. */
5684
5685inline tree *
5686gimple_omp_for_incr_ptr (gimple *gs, size_t i)
5687{
5688 gomp_for *omp_for_stmt = as_a <gomp_for *> (p: gs);
5689 gcc_gimple_checking_assert (i < omp_for_stmt->collapse);
5690 return &omp_for_stmt->iter[i].incr;
5691}
5692
5693
5694/* Set INCR to be the increment value for the OMP_FOR statement GS. */
5695
5696inline void
5697gimple_omp_for_set_incr (gimple *gs, size_t i, tree incr)
5698{
5699 gomp_for *omp_for_stmt = as_a <gomp_for *> (p: gs);
5700 gcc_gimple_checking_assert (i < omp_for_stmt->collapse);
5701 omp_for_stmt->iter[i].incr = incr;
5702}
5703
5704
5705/* Return a pointer to the sequence of statements to execute before the OMP_FOR
5706 statement GS starts. */
5707
5708inline gimple_seq *
5709gimple_omp_for_pre_body_ptr (gimple *gs)
5710{
5711 gomp_for *omp_for_stmt = as_a <gomp_for *> (p: gs);
5712 return &omp_for_stmt->pre_body;
5713}
5714
5715
5716/* Return the sequence of statements to execute before the OMP_FOR
5717 statement GS starts. */
5718
5719inline gimple_seq
5720gimple_omp_for_pre_body (const gimple *gs)
5721{
5722 return *gimple_omp_for_pre_body_ptr (gs: const_cast <gimple *> (gs));
5723}
5724
5725
5726/* Set PRE_BODY to be the sequence of statements to execute before the
5727 OMP_FOR statement GS starts. */
5728
5729inline void
5730gimple_omp_for_set_pre_body (gimple *gs, gimple_seq pre_body)
5731{
5732 gomp_for *omp_for_stmt = as_a <gomp_for *> (p: gs);
5733 omp_for_stmt->pre_body = pre_body;
5734}
5735
5736/* Return the clauses associated with OMP_PARALLEL GS. */
5737
5738inline tree
5739gimple_omp_parallel_clauses (const gimple *gs)
5740{
5741 const gomp_parallel *omp_parallel_stmt = as_a <const gomp_parallel *> (p: gs);
5742 return omp_parallel_stmt->clauses;
5743}
5744
5745
5746/* Return a pointer to the clauses associated with OMP_PARALLEL_STMT. */
5747
5748inline tree *
5749gimple_omp_parallel_clauses_ptr (gomp_parallel *omp_parallel_stmt)
5750{
5751 return &omp_parallel_stmt->clauses;
5752}
5753
5754
5755/* Set CLAUSES to be the list of clauses associated with OMP_PARALLEL_STMT. */
5756
5757inline void
5758gimple_omp_parallel_set_clauses (gomp_parallel *omp_parallel_stmt,
5759 tree clauses)
5760{
5761 omp_parallel_stmt->clauses = clauses;
5762}
5763
5764
5765/* Return the child function used to hold the body of OMP_PARALLEL_STMT. */
5766
5767inline tree
5768gimple_omp_parallel_child_fn (const gomp_parallel *omp_parallel_stmt)
5769{
5770 return omp_parallel_stmt->child_fn;
5771}
5772
5773/* Return a pointer to the child function used to hold the body of
5774 OMP_PARALLEL_STMT. */
5775
5776inline tree *
5777gimple_omp_parallel_child_fn_ptr (gomp_parallel *omp_parallel_stmt)
5778{
5779 return &omp_parallel_stmt->child_fn;
5780}
5781
5782
5783/* Set CHILD_FN to be the child function for OMP_PARALLEL_STMT. */
5784
5785inline void
5786gimple_omp_parallel_set_child_fn (gomp_parallel *omp_parallel_stmt,
5787 tree child_fn)
5788{
5789 omp_parallel_stmt->child_fn = child_fn;
5790}
5791
5792
5793/* Return the artificial argument used to send variables and values
5794 from the parent to the children threads in OMP_PARALLEL_STMT. */
5795
5796inline tree
5797gimple_omp_parallel_data_arg (const gomp_parallel *omp_parallel_stmt)
5798{
5799 return omp_parallel_stmt->data_arg;
5800}
5801
5802
5803/* Return a pointer to the data argument for OMP_PARALLEL_STMT. */
5804
5805inline tree *
5806gimple_omp_parallel_data_arg_ptr (gomp_parallel *omp_parallel_stmt)
5807{
5808 return &omp_parallel_stmt->data_arg;
5809}
5810
5811
5812/* Set DATA_ARG to be the data argument for OMP_PARALLEL_STMT. */
5813
5814inline void
5815gimple_omp_parallel_set_data_arg (gomp_parallel *omp_parallel_stmt,
5816 tree data_arg)
5817{
5818 omp_parallel_stmt->data_arg = data_arg;
5819}
5820
5821/* Return the clauses associated with OMP_TASK GS. */
5822
5823inline tree
5824gimple_omp_task_clauses (const gimple *gs)
5825{
5826 const gomp_task *omp_task_stmt = as_a <const gomp_task *> (p: gs);
5827 return omp_task_stmt->clauses;
5828}
5829
5830
5831/* Return a pointer to the clauses associated with OMP_TASK GS. */
5832
5833inline tree *
5834gimple_omp_task_clauses_ptr (gimple *gs)
5835{
5836 gomp_task *omp_task_stmt = as_a <gomp_task *> (p: gs);
5837 return &omp_task_stmt->clauses;
5838}
5839
5840
5841/* Set CLAUSES to be the list of clauses associated with OMP_TASK
5842 GS. */
5843
5844inline void
5845gimple_omp_task_set_clauses (gimple *gs, tree clauses)
5846{
5847 gomp_task *omp_task_stmt = as_a <gomp_task *> (p: gs);
5848 omp_task_stmt->clauses = clauses;
5849}
5850
5851
5852/* Return true if OMP task statement G has the
5853 GF_OMP_TASK_TASKLOOP flag set. */
5854
5855inline bool
5856gimple_omp_task_taskloop_p (const gimple *g)
5857{
5858 GIMPLE_CHECK (g, GIMPLE_OMP_TASK);
5859 return (gimple_omp_subcode (s: g) & GF_OMP_TASK_TASKLOOP) != 0;
5860}
5861
5862
5863/* Set the GF_OMP_TASK_TASKLOOP field in G depending on the boolean
5864 value of TASKLOOP_P. */
5865
5866inline void
5867gimple_omp_task_set_taskloop_p (gimple *g, bool taskloop_p)
5868{
5869 GIMPLE_CHECK (g, GIMPLE_OMP_TASK);
5870 if (taskloop_p)
5871 g->subcode |= GF_OMP_TASK_TASKLOOP;
5872 else
5873 g->subcode &= ~GF_OMP_TASK_TASKLOOP;
5874}
5875
5876
5877/* Return true if OMP task statement G has the
5878 GF_OMP_TASK_TASKWAIT flag set. */
5879
5880inline bool
5881gimple_omp_task_taskwait_p (const gimple *g)
5882{
5883 GIMPLE_CHECK (g, GIMPLE_OMP_TASK);
5884 return (gimple_omp_subcode (s: g) & GF_OMP_TASK_TASKWAIT) != 0;
5885}
5886
5887
5888/* Set the GF_OMP_TASK_TASKWAIT field in G depending on the boolean
5889 value of TASKWAIT_P. */
5890
5891inline void
5892gimple_omp_task_set_taskwait_p (gimple *g, bool taskwait_p)
5893{
5894 GIMPLE_CHECK (g, GIMPLE_OMP_TASK);
5895 if (taskwait_p)
5896 g->subcode |= GF_OMP_TASK_TASKWAIT;
5897 else
5898 g->subcode &= ~GF_OMP_TASK_TASKWAIT;
5899}
5900
5901
5902/* Return the child function used to hold the body of OMP_TASK GS. */
5903
5904inline tree
5905gimple_omp_task_child_fn (const gimple *gs)
5906{
5907 const gomp_task *omp_task_stmt = as_a <const gomp_task *> (p: gs);
5908 return omp_task_stmt->child_fn;
5909}
5910
5911/* Return a pointer to the child function used to hold the body of
5912 OMP_TASK GS. */
5913
5914inline tree *
5915gimple_omp_task_child_fn_ptr (gimple *gs)
5916{
5917 gomp_task *omp_task_stmt = as_a <gomp_task *> (p: gs);
5918 return &omp_task_stmt->child_fn;
5919}
5920
5921
5922/* Set CHILD_FN to be the child function for OMP_TASK GS. */
5923
5924inline void
5925gimple_omp_task_set_child_fn (gimple *gs, tree child_fn)
5926{
5927 gomp_task *omp_task_stmt = as_a <gomp_task *> (p: gs);
5928 omp_task_stmt->child_fn = child_fn;
5929}
5930
5931
5932/* Return the artificial argument used to send variables and values
5933 from the parent to the children threads in OMP_TASK GS. */
5934
5935inline tree
5936gimple_omp_task_data_arg (const gimple *gs)
5937{
5938 const gomp_task *omp_task_stmt = as_a <const gomp_task *> (p: gs);
5939 return omp_task_stmt->data_arg;
5940}
5941
5942
5943/* Return a pointer to the data argument for OMP_TASK GS. */
5944
5945inline tree *
5946gimple_omp_task_data_arg_ptr (gimple *gs)
5947{
5948 gomp_task *omp_task_stmt = as_a <gomp_task *> (p: gs);
5949 return &omp_task_stmt->data_arg;
5950}
5951
5952
5953/* Set DATA_ARG to be the data argument for OMP_TASK GS. */
5954
5955inline void
5956gimple_omp_task_set_data_arg (gimple *gs, tree data_arg)
5957{
5958 gomp_task *omp_task_stmt = as_a <gomp_task *> (p: gs);
5959 omp_task_stmt->data_arg = data_arg;
5960}
5961
5962
5963/* Return the clauses associated with OMP_TASK GS. */
5964
5965inline tree
5966gimple_omp_taskreg_clauses (const gimple *gs)
5967{
5968 const gimple_statement_omp_taskreg *omp_taskreg_stmt
5969 = as_a <const gimple_statement_omp_taskreg *> (p: gs);
5970 return omp_taskreg_stmt->clauses;
5971}
5972
5973
5974/* Return a pointer to the clauses associated with OMP_TASK GS. */
5975
5976inline tree *
5977gimple_omp_taskreg_clauses_ptr (gimple *gs)
5978{
5979 gimple_statement_omp_taskreg *omp_taskreg_stmt
5980 = as_a <gimple_statement_omp_taskreg *> (p: gs);
5981 return &omp_taskreg_stmt->clauses;
5982}
5983
5984
5985/* Set CLAUSES to be the list of clauses associated with OMP_TASK
5986 GS. */
5987
5988inline void
5989gimple_omp_taskreg_set_clauses (gimple *gs, tree clauses)
5990{
5991 gimple_statement_omp_taskreg *omp_taskreg_stmt
5992 = as_a <gimple_statement_omp_taskreg *> (p: gs);
5993 omp_taskreg_stmt->clauses = clauses;
5994}
5995
5996
5997/* Return the child function used to hold the body of OMP_TASK GS. */
5998
5999inline tree
6000gimple_omp_taskreg_child_fn (const gimple *gs)
6001{
6002 const gimple_statement_omp_taskreg *omp_taskreg_stmt
6003 = as_a <const gimple_statement_omp_taskreg *> (p: gs);
6004 return omp_taskreg_stmt->child_fn;
6005}
6006
6007/* Return a pointer to the child function used to hold the body of
6008 OMP_TASK GS. */
6009
6010inline tree *
6011gimple_omp_taskreg_child_fn_ptr (gimple *gs)
6012{
6013 gimple_statement_omp_taskreg *omp_taskreg_stmt
6014 = as_a <gimple_statement_omp_taskreg *> (p: gs);
6015 return &omp_taskreg_stmt->child_fn;
6016}
6017
6018
6019/* Set CHILD_FN to be the child function for OMP_TASK GS. */
6020
6021inline void
6022gimple_omp_taskreg_set_child_fn (gimple *gs, tree child_fn)
6023{
6024 gimple_statement_omp_taskreg *omp_taskreg_stmt
6025 = as_a <gimple_statement_omp_taskreg *> (p: gs);
6026 omp_taskreg_stmt->child_fn = child_fn;
6027}
6028
6029
6030/* Return the artificial argument used to send variables and values
6031 from the parent to the children threads in OMP_TASK GS. */
6032
6033inline tree
6034gimple_omp_taskreg_data_arg (const gimple *gs)
6035{
6036 const gimple_statement_omp_taskreg *omp_taskreg_stmt
6037 = as_a <const gimple_statement_omp_taskreg *> (p: gs);
6038 return omp_taskreg_stmt->data_arg;
6039}
6040
6041
6042/* Return a pointer to the data argument for OMP_TASK GS. */
6043
6044inline tree *
6045gimple_omp_taskreg_data_arg_ptr (gimple *gs)
6046{
6047 gimple_statement_omp_taskreg *omp_taskreg_stmt
6048 = as_a <gimple_statement_omp_taskreg *> (p: gs);
6049 return &omp_taskreg_stmt->data_arg;
6050}
6051
6052
6053/* Set DATA_ARG to be the data argument for OMP_TASK GS. */
6054
6055inline void
6056gimple_omp_taskreg_set_data_arg (gimple *gs, tree data_arg)
6057{
6058 gimple_statement_omp_taskreg *omp_taskreg_stmt
6059 = as_a <gimple_statement_omp_taskreg *> (p: gs);
6060 omp_taskreg_stmt->data_arg = data_arg;
6061}
6062
6063
6064/* Return the copy function used to hold the body of OMP_TASK GS. */
6065
6066inline tree
6067gimple_omp_task_copy_fn (const gimple *gs)
6068{
6069 const gomp_task *omp_task_stmt = as_a <const gomp_task *> (p: gs);
6070 return omp_task_stmt->copy_fn;
6071}
6072
6073/* Return a pointer to the copy function used to hold the body of
6074 OMP_TASK GS. */
6075
6076inline tree *
6077gimple_omp_task_copy_fn_ptr (gimple *gs)
6078{
6079 gomp_task *omp_task_stmt = as_a <gomp_task *> (p: gs);
6080 return &omp_task_stmt->copy_fn;
6081}
6082
6083
6084/* Set CHILD_FN to be the copy function for OMP_TASK GS. */
6085
6086inline void
6087gimple_omp_task_set_copy_fn (gimple *gs, tree copy_fn)
6088{
6089 gomp_task *omp_task_stmt = as_a <gomp_task *> (p: gs);
6090 omp_task_stmt->copy_fn = copy_fn;
6091}
6092
6093
6094/* Return size of the data block in bytes in OMP_TASK GS. */
6095
6096inline tree
6097gimple_omp_task_arg_size (const gimple *gs)
6098{
6099 const gomp_task *omp_task_stmt = as_a <const gomp_task *> (p: gs);
6100 return omp_task_stmt->arg_size;
6101}
6102
6103
6104/* Return a pointer to the data block size for OMP_TASK GS. */
6105
6106inline tree *
6107gimple_omp_task_arg_size_ptr (gimple *gs)
6108{
6109 gomp_task *omp_task_stmt = as_a <gomp_task *> (p: gs);
6110 return &omp_task_stmt->arg_size;
6111}
6112
6113
6114/* Set ARG_SIZE to be the data block size for OMP_TASK GS. */
6115
6116inline void
6117gimple_omp_task_set_arg_size (gimple *gs, tree arg_size)
6118{
6119 gomp_task *omp_task_stmt = as_a <gomp_task *> (p: gs);
6120 omp_task_stmt->arg_size = arg_size;
6121}
6122
6123
6124/* Return align of the data block in bytes in OMP_TASK GS. */
6125
6126inline tree
6127gimple_omp_task_arg_align (const gimple *gs)
6128{
6129 const gomp_task *omp_task_stmt = as_a <const gomp_task *> (p: gs);
6130 return omp_task_stmt->arg_align;
6131}
6132
6133
6134/* Return a pointer to the data block align for OMP_TASK GS. */
6135
6136inline tree *
6137gimple_omp_task_arg_align_ptr (gimple *gs)
6138{
6139 gomp_task *omp_task_stmt = as_a <gomp_task *> (p: gs);
6140 return &omp_task_stmt->arg_align;
6141}
6142
6143
6144/* Set ARG_SIZE to be the data block align for OMP_TASK GS. */
6145
6146inline void
6147gimple_omp_task_set_arg_align (gimple *gs, tree arg_align)
6148{
6149 gomp_task *omp_task_stmt = as_a <gomp_task *> (p: gs);
6150 omp_task_stmt->arg_align = arg_align;
6151}
6152
6153
6154/* Return the clauses associated with OMP_SINGLE GS. */
6155
6156inline tree
6157gimple_omp_single_clauses (const gimple *gs)
6158{
6159 const gomp_single *omp_single_stmt = as_a <const gomp_single *> (p: gs);
6160 return omp_single_stmt->clauses;
6161}
6162
6163
6164/* Return a pointer to the clauses associated with OMP_SINGLE GS. */
6165
6166inline tree *
6167gimple_omp_single_clauses_ptr (gimple *gs)
6168{
6169 gomp_single *omp_single_stmt = as_a <gomp_single *> (p: gs);
6170 return &omp_single_stmt->clauses;
6171}
6172
6173
6174/* Set CLAUSES to be the clauses associated with OMP_SINGLE_STMT. */
6175
6176inline void
6177gimple_omp_single_set_clauses (gomp_single *omp_single_stmt, tree clauses)
6178{
6179 omp_single_stmt->clauses = clauses;
6180}
6181
6182
6183/* Return the clauses associated with OMP_TARGET GS. */
6184
6185inline tree
6186gimple_omp_target_clauses (const gimple *gs)
6187{
6188 const gomp_target *omp_target_stmt = as_a <const gomp_target *> (p: gs);
6189 return omp_target_stmt->clauses;
6190}
6191
6192
6193/* Return a pointer to the clauses associated with OMP_TARGET GS. */
6194
6195inline tree *
6196gimple_omp_target_clauses_ptr (gimple *gs)
6197{
6198 gomp_target *omp_target_stmt = as_a <gomp_target *> (p: gs);
6199 return &omp_target_stmt->clauses;
6200}
6201
6202
6203/* Set CLAUSES to be the clauses associated with OMP_TARGET_STMT. */
6204
6205inline void
6206gimple_omp_target_set_clauses (gomp_target *omp_target_stmt,
6207 tree clauses)
6208{
6209 omp_target_stmt->clauses = clauses;
6210}
6211
6212
6213/* Return the kind of the OMP_TARGET G. */
6214
6215inline int
6216gimple_omp_target_kind (const gimple *g)
6217{
6218 GIMPLE_CHECK (g, GIMPLE_OMP_TARGET);
6219 return (gimple_omp_subcode (s: g) & GF_OMP_TARGET_KIND_MASK);
6220}
6221
6222
6223/* Set the kind of the OMP_TARGET G. */
6224
6225inline void
6226gimple_omp_target_set_kind (gomp_target *g, int kind)
6227{
6228 g->subcode = (g->subcode & ~GF_OMP_TARGET_KIND_MASK)
6229 | (kind & GF_OMP_TARGET_KIND_MASK);
6230}
6231
6232
6233/* Return the child function used to hold the body of OMP_TARGET_STMT. */
6234
6235inline tree
6236gimple_omp_target_child_fn (const gomp_target *omp_target_stmt)
6237{
6238 return omp_target_stmt->child_fn;
6239}
6240
6241/* Return a pointer to the child function used to hold the body of
6242 OMP_TARGET_STMT. */
6243
6244inline tree *
6245gimple_omp_target_child_fn_ptr (gomp_target *omp_target_stmt)
6246{
6247 return &omp_target_stmt->child_fn;
6248}
6249
6250
6251/* Set CHILD_FN to be the child function for OMP_TARGET_STMT. */
6252
6253inline void
6254gimple_omp_target_set_child_fn (gomp_target *omp_target_stmt,
6255 tree child_fn)
6256{
6257 omp_target_stmt->child_fn = child_fn;
6258}
6259
6260
6261/* Return the artificial argument used to send variables and values
6262 from the parent to the children threads in OMP_TARGET_STMT. */
6263
6264inline tree
6265gimple_omp_target_data_arg (const gomp_target *omp_target_stmt)
6266{
6267 return omp_target_stmt->data_arg;
6268}
6269
6270
6271/* Return a pointer to the data argument for OMP_TARGET GS. */
6272
6273inline tree *
6274gimple_omp_target_data_arg_ptr (gomp_target *omp_target_stmt)
6275{
6276 return &omp_target_stmt->data_arg;
6277}
6278
6279
6280/* Set DATA_ARG to be the data argument for OMP_TARGET_STMT. */
6281
6282inline void
6283gimple_omp_target_set_data_arg (gomp_target *omp_target_stmt,
6284 tree data_arg)
6285{
6286 omp_target_stmt->data_arg = data_arg;
6287}
6288
6289
6290/* Return the clauses associated with OMP_TEAMS GS. */
6291
6292inline tree
6293gimple_omp_teams_clauses (const gimple *gs)
6294{
6295 const gomp_teams *omp_teams_stmt = as_a <const gomp_teams *> (p: gs);
6296 return omp_teams_stmt->clauses;
6297}
6298
6299
6300/* Return a pointer to the clauses associated with OMP_TEAMS GS. */
6301
6302inline tree *
6303gimple_omp_teams_clauses_ptr (gimple *gs)
6304{
6305 gomp_teams *omp_teams_stmt = as_a <gomp_teams *> (p: gs);
6306 return &omp_teams_stmt->clauses;
6307}
6308
6309
6310/* Set CLAUSES to be the clauses associated with OMP_TEAMS_STMT. */
6311
6312inline void
6313gimple_omp_teams_set_clauses (gomp_teams *omp_teams_stmt, tree clauses)
6314{
6315 omp_teams_stmt->clauses = clauses;
6316}
6317
6318/* Return the child function used to hold the body of OMP_TEAMS_STMT. */
6319
6320inline tree
6321gimple_omp_teams_child_fn (const gomp_teams *omp_teams_stmt)
6322{
6323 return omp_teams_stmt->child_fn;
6324}
6325
6326/* Return a pointer to the child function used to hold the body of
6327 OMP_TEAMS_STMT. */
6328
6329inline tree *
6330gimple_omp_teams_child_fn_ptr (gomp_teams *omp_teams_stmt)
6331{
6332 return &omp_teams_stmt->child_fn;
6333}
6334
6335
6336/* Set CHILD_FN to be the child function for OMP_TEAMS_STMT. */
6337
6338inline void
6339gimple_omp_teams_set_child_fn (gomp_teams *omp_teams_stmt, tree child_fn)
6340{
6341 omp_teams_stmt->child_fn = child_fn;
6342}
6343
6344
6345/* Return the artificial argument used to send variables and values
6346 from the parent to the children threads in OMP_TEAMS_STMT. */
6347
6348inline tree
6349gimple_omp_teams_data_arg (const gomp_teams *omp_teams_stmt)
6350{
6351 return omp_teams_stmt->data_arg;
6352}
6353
6354
6355/* Return a pointer to the data argument for OMP_TEAMS_STMT. */
6356
6357inline tree *
6358gimple_omp_teams_data_arg_ptr (gomp_teams *omp_teams_stmt)
6359{
6360 return &omp_teams_stmt->data_arg;
6361}
6362
6363
6364/* Set DATA_ARG to be the data argument for OMP_TEAMS_STMT. */
6365
6366inline void
6367gimple_omp_teams_set_data_arg (gomp_teams *omp_teams_stmt, tree data_arg)
6368{
6369 omp_teams_stmt->data_arg = data_arg;
6370}
6371
6372/* Return the host flag of an OMP_TEAMS_STMT. */
6373
6374inline bool
6375gimple_omp_teams_host (const gomp_teams *omp_teams_stmt)
6376{
6377 return (gimple_omp_subcode (s: omp_teams_stmt) & GF_OMP_TEAMS_HOST) != 0;
6378}
6379
6380/* Set host flag of an OMP_TEAMS_STMT to VALUE. */
6381
6382inline void
6383gimple_omp_teams_set_host (gomp_teams *omp_teams_stmt, bool value)
6384{
6385 if (value)
6386 omp_teams_stmt->subcode |= GF_OMP_TEAMS_HOST;
6387 else
6388 omp_teams_stmt->subcode &= ~GF_OMP_TEAMS_HOST;
6389}
6390
6391/* Return the clauses associated with OMP_SECTIONS GS. */
6392
6393inline tree
6394gimple_omp_sections_clauses (const gimple *gs)
6395{
6396 const gomp_sections *omp_sections_stmt = as_a <const gomp_sections *> (p: gs);
6397 return omp_sections_stmt->clauses;
6398}
6399
6400
6401/* Return a pointer to the clauses associated with OMP_SECTIONS GS. */
6402
6403inline tree *
6404gimple_omp_sections_clauses_ptr (gimple *gs)
6405{
6406 gomp_sections *omp_sections_stmt = as_a <gomp_sections *> (p: gs);
6407 return &omp_sections_stmt->clauses;
6408}
6409
6410
6411/* Set CLAUSES to be the set of clauses associated with OMP_SECTIONS
6412 GS. */
6413
6414inline void
6415gimple_omp_sections_set_clauses (gimple *gs, tree clauses)
6416{
6417 gomp_sections *omp_sections_stmt = as_a <gomp_sections *> (p: gs);
6418 omp_sections_stmt->clauses = clauses;
6419}
6420
6421
6422/* Return the control variable associated with the GIMPLE_OMP_SECTIONS
6423 in GS. */
6424
6425inline tree
6426gimple_omp_sections_control (const gimple *gs)
6427{
6428 const gomp_sections *omp_sections_stmt = as_a <const gomp_sections *> (p: gs);
6429 return omp_sections_stmt->control;
6430}
6431
6432
6433/* Return a pointer to the clauses associated with the GIMPLE_OMP_SECTIONS
6434 GS. */
6435
6436inline tree *
6437gimple_omp_sections_control_ptr (gimple *gs)
6438{
6439 gomp_sections *omp_sections_stmt = as_a <gomp_sections *> (p: gs);
6440 return &omp_sections_stmt->control;
6441}
6442
6443
6444/* Set CONTROL to be the set of clauses associated with the
6445 GIMPLE_OMP_SECTIONS in GS. */
6446
6447inline void
6448gimple_omp_sections_set_control (gimple *gs, tree control)
6449{
6450 gomp_sections *omp_sections_stmt = as_a <gomp_sections *> (p: gs);
6451 omp_sections_stmt->control = control;
6452}
6453
6454
6455/* Set the value being stored in an atomic store. */
6456
6457inline void
6458gimple_omp_atomic_store_set_val (gomp_atomic_store *store_stmt, tree val)
6459{
6460 store_stmt->val = val;
6461}
6462
6463
6464/* Return the value being stored in an atomic store. */
6465
6466inline tree
6467gimple_omp_atomic_store_val (const gomp_atomic_store *store_stmt)
6468{
6469 return store_stmt->val;
6470}
6471
6472
6473/* Return a pointer to the value being stored in an atomic store. */
6474
6475inline tree *
6476gimple_omp_atomic_store_val_ptr (gomp_atomic_store *store_stmt)
6477{
6478 return &store_stmt->val;
6479}
6480
6481
6482/* Set the LHS of an atomic load. */
6483
6484inline void
6485gimple_omp_atomic_load_set_lhs (gomp_atomic_load *load_stmt, tree lhs)
6486{
6487 load_stmt->lhs = lhs;
6488}
6489
6490
6491/* Get the LHS of an atomic load. */
6492
6493inline tree
6494gimple_omp_atomic_load_lhs (const gomp_atomic_load *load_stmt)
6495{
6496 return load_stmt->lhs;
6497}
6498
6499
6500/* Return a pointer to the LHS of an atomic load. */
6501
6502inline tree *
6503gimple_omp_atomic_load_lhs_ptr (gomp_atomic_load *load_stmt)
6504{
6505 return &load_stmt->lhs;
6506}
6507
6508
6509/* Set the RHS of an atomic load. */
6510
6511inline void
6512gimple_omp_atomic_load_set_rhs (gomp_atomic_load *load_stmt, tree rhs)
6513{
6514 load_stmt->rhs = rhs;
6515}
6516
6517
6518/* Get the RHS of an atomic load. */
6519
6520inline tree
6521gimple_omp_atomic_load_rhs (const gomp_atomic_load *load_stmt)
6522{
6523 return load_stmt->rhs;
6524}
6525
6526
6527/* Return a pointer to the RHS of an atomic load. */
6528
6529inline tree *
6530gimple_omp_atomic_load_rhs_ptr (gomp_atomic_load *load_stmt)
6531{
6532 return &load_stmt->rhs;
6533}
6534
6535
6536/* Get the definition of the control variable in a GIMPLE_OMP_CONTINUE. */
6537
6538inline tree
6539gimple_omp_continue_control_def (const gomp_continue *cont_stmt)
6540{
6541 return cont_stmt->control_def;
6542}
6543
6544/* The same as above, but return the address. */
6545
6546inline tree *
6547gimple_omp_continue_control_def_ptr (gomp_continue *cont_stmt)
6548{
6549 return &cont_stmt->control_def;
6550}
6551
6552/* Set the definition of the control variable in a GIMPLE_OMP_CONTINUE. */
6553
6554inline void
6555gimple_omp_continue_set_control_def (gomp_continue *cont_stmt, tree def)
6556{
6557 cont_stmt->control_def = def;
6558}
6559
6560
6561/* Get the use of the control variable in a GIMPLE_OMP_CONTINUE. */
6562
6563inline tree
6564gimple_omp_continue_control_use (const gomp_continue *cont_stmt)
6565{
6566 return cont_stmt->control_use;
6567}
6568
6569
6570/* The same as above, but return the address. */
6571
6572inline tree *
6573gimple_omp_continue_control_use_ptr (gomp_continue *cont_stmt)
6574{
6575 return &cont_stmt->control_use;
6576}
6577
6578
6579/* Set the use of the control variable in a GIMPLE_OMP_CONTINUE. */
6580
6581inline void
6582gimple_omp_continue_set_control_use (gomp_continue *cont_stmt, tree use)
6583{
6584 cont_stmt->control_use = use;
6585}
6586
6587/* Return the guard associated with the GIMPLE_ASSUME statement GS. */
6588
6589inline tree
6590gimple_assume_guard (const gimple *gs)
6591{
6592 const gimple_statement_assume *assume_stmt
6593 = as_a <const gimple_statement_assume *> (p: gs);
6594 return assume_stmt->guard;
6595}
6596
6597/* Set the guard associated with the GIMPLE_ASSUME statement GS. */
6598
6599inline void
6600gimple_assume_set_guard (gimple *gs, tree guard)
6601{
6602 gimple_statement_assume *assume_stmt = as_a <gimple_statement_assume *> (p: gs);
6603 assume_stmt->guard = guard;
6604}
6605
6606inline tree *
6607gimple_assume_guard_ptr (gimple *gs)
6608{
6609 gimple_statement_assume *assume_stmt = as_a <gimple_statement_assume *> (p: gs);
6610 return &assume_stmt->guard;
6611}
6612
6613/* Return the address of the GIMPLE sequence contained in the GIMPLE_ASSUME
6614 statement GS. */
6615
6616inline gimple_seq *
6617gimple_assume_body_ptr (gimple *gs)
6618{
6619 gimple_statement_assume *assume_stmt = as_a <gimple_statement_assume *> (p: gs);
6620 return &assume_stmt->body;
6621}
6622
6623/* Return the GIMPLE sequence contained in the GIMPLE_ASSUME statement GS. */
6624
6625inline gimple_seq
6626gimple_assume_body (const gimple *gs)
6627{
6628 const gimple_statement_assume *assume_stmt
6629 = as_a <const gimple_statement_assume *> (p: gs);
6630 return assume_stmt->body;
6631}
6632
6633/* Return a pointer to the body for the GIMPLE_TRANSACTION statement
6634 TRANSACTION_STMT. */
6635
6636inline gimple_seq *
6637gimple_transaction_body_ptr (gtransaction *transaction_stmt)
6638{
6639 return &transaction_stmt->body;
6640}
6641
6642/* Return the body for the GIMPLE_TRANSACTION statement TRANSACTION_STMT. */
6643
6644inline gimple_seq
6645gimple_transaction_body (const gtransaction *transaction_stmt)
6646{
6647 return transaction_stmt->body;
6648}
6649
6650/* Return the label associated with a GIMPLE_TRANSACTION. */
6651
6652inline tree
6653gimple_transaction_label_norm (const gtransaction *transaction_stmt)
6654{
6655 return transaction_stmt->label_norm;
6656}
6657
6658inline tree *
6659gimple_transaction_label_norm_ptr (gtransaction *transaction_stmt)
6660{
6661 return &transaction_stmt->label_norm;
6662}
6663
6664inline tree
6665gimple_transaction_label_uninst (const gtransaction *transaction_stmt)
6666{
6667 return transaction_stmt->label_uninst;
6668}
6669
6670inline tree *
6671gimple_transaction_label_uninst_ptr (gtransaction *transaction_stmt)
6672{
6673 return &transaction_stmt->label_uninst;
6674}
6675
6676inline tree
6677gimple_transaction_label_over (const gtransaction *transaction_stmt)
6678{
6679 return transaction_stmt->label_over;
6680}
6681
6682inline tree *
6683gimple_transaction_label_over_ptr (gtransaction *transaction_stmt)
6684{
6685 return &transaction_stmt->label_over;
6686}
6687
6688/* Return the subcode associated with a GIMPLE_TRANSACTION. */
6689
6690inline unsigned int
6691gimple_transaction_subcode (const gtransaction *transaction_stmt)
6692{
6693 return transaction_stmt->subcode;
6694}
6695
6696/* Set BODY to be the body for the GIMPLE_TRANSACTION statement
6697 TRANSACTION_STMT. */
6698
6699inline void
6700gimple_transaction_set_body (gtransaction *transaction_stmt,
6701 gimple_seq body)
6702{
6703 transaction_stmt->body = body;
6704}
6705
6706/* Set the label associated with a GIMPLE_TRANSACTION. */
6707
6708inline void
6709gimple_transaction_set_label_norm (gtransaction *transaction_stmt, tree label)
6710{
6711 transaction_stmt->label_norm = label;
6712}
6713
6714inline void
6715gimple_transaction_set_label_uninst (gtransaction *transaction_stmt, tree label)
6716{
6717 transaction_stmt->label_uninst = label;
6718}
6719
6720inline void
6721gimple_transaction_set_label_over (gtransaction *transaction_stmt, tree label)
6722{
6723 transaction_stmt->label_over = label;
6724}
6725
6726/* Set the subcode associated with a GIMPLE_TRANSACTION. */
6727
6728inline void
6729gimple_transaction_set_subcode (gtransaction *transaction_stmt,
6730 unsigned int subcode)
6731{
6732 transaction_stmt->subcode = subcode;
6733}
6734
6735/* Return a pointer to the return value for GIMPLE_RETURN GS. */
6736
6737inline tree *
6738gimple_return_retval_ptr (greturn *gs)
6739{
6740 return &gs->op[0];
6741}
6742
6743/* Return the return value for GIMPLE_RETURN GS. */
6744
6745inline tree
6746gimple_return_retval (const greturn *gs)
6747{
6748 return gs->op[0];
6749}
6750
6751
6752/* Set RETVAL to be the return value for GIMPLE_RETURN GS. */
6753
6754inline void
6755gimple_return_set_retval (greturn *gs, tree retval)
6756{
6757 gs->op[0] = retval;
6758}
6759
6760
6761/* Returns true when the gimple statement STMT is any of the OMP types. */
6762
6763#define CASE_GIMPLE_OMP \
6764 case GIMPLE_OMP_PARALLEL: \
6765 case GIMPLE_OMP_TASK: \
6766 case GIMPLE_OMP_FOR: \
6767 case GIMPLE_OMP_SECTIONS: \
6768 case GIMPLE_OMP_SECTIONS_SWITCH: \
6769 case GIMPLE_OMP_SINGLE: \
6770 case GIMPLE_OMP_TARGET: \
6771 case GIMPLE_OMP_TEAMS: \
6772 case GIMPLE_OMP_SCOPE: \
6773 case GIMPLE_OMP_SECTION: \
6774 case GIMPLE_OMP_STRUCTURED_BLOCK: \
6775 case GIMPLE_OMP_MASTER: \
6776 case GIMPLE_OMP_MASKED: \
6777 case GIMPLE_OMP_TASKGROUP: \
6778 case GIMPLE_OMP_ORDERED: \
6779 case GIMPLE_OMP_CRITICAL: \
6780 case GIMPLE_OMP_SCAN: \
6781 case GIMPLE_OMP_RETURN: \
6782 case GIMPLE_OMP_ATOMIC_LOAD: \
6783 case GIMPLE_OMP_ATOMIC_STORE: \
6784 case GIMPLE_OMP_CONTINUE
6785
6786inline bool
6787is_gimple_omp (const gimple *stmt)
6788{
6789 switch (gimple_code (g: stmt))
6790 {
6791 CASE_GIMPLE_OMP:
6792 return true;
6793 default:
6794 return false;
6795 }
6796}
6797
6798/* Return true if the OMP gimple statement STMT is any of the OpenACC types
6799 specifically. */
6800
6801inline bool
6802is_gimple_omp_oacc (const gimple *stmt)
6803{
6804 gcc_assert (is_gimple_omp (stmt));
6805 switch (gimple_code (g: stmt))
6806 {
6807 case GIMPLE_OMP_ATOMIC_LOAD:
6808 case GIMPLE_OMP_ATOMIC_STORE:
6809 case GIMPLE_OMP_CONTINUE:
6810 case GIMPLE_OMP_RETURN:
6811 /* Codes shared between OpenACC and OpenMP cannot be used to disambiguate
6812 the two. */
6813 gcc_unreachable ();
6814
6815 case GIMPLE_OMP_FOR:
6816 switch (gimple_omp_for_kind (g: stmt))
6817 {
6818 case GF_OMP_FOR_KIND_OACC_LOOP:
6819 return true;
6820 default:
6821 return false;
6822 }
6823 case GIMPLE_OMP_TARGET:
6824 switch (gimple_omp_target_kind (g: stmt))
6825 {
6826 case GF_OMP_TARGET_KIND_OACC_PARALLEL:
6827 case GF_OMP_TARGET_KIND_OACC_KERNELS:
6828 case GF_OMP_TARGET_KIND_OACC_SERIAL:
6829 case GF_OMP_TARGET_KIND_OACC_DATA:
6830 case GF_OMP_TARGET_KIND_OACC_UPDATE:
6831 case GF_OMP_TARGET_KIND_OACC_ENTER_DATA:
6832 case GF_OMP_TARGET_KIND_OACC_EXIT_DATA:
6833 case GF_OMP_TARGET_KIND_OACC_DECLARE:
6834 case GF_OMP_TARGET_KIND_OACC_HOST_DATA:
6835 case GF_OMP_TARGET_KIND_OACC_PARALLEL_KERNELS_PARALLELIZED:
6836 case GF_OMP_TARGET_KIND_OACC_PARALLEL_KERNELS_GANG_SINGLE:
6837 case GF_OMP_TARGET_KIND_OACC_DATA_KERNELS:
6838 return true;
6839 default:
6840 return false;
6841 }
6842 default:
6843 return false;
6844 }
6845}
6846
6847
6848/* Return true if the OMP gimple statement STMT is offloaded. */
6849
6850inline bool
6851is_gimple_omp_offloaded (const gimple *stmt)
6852{
6853 gcc_assert (is_gimple_omp (stmt));
6854 switch (gimple_code (g: stmt))
6855 {
6856 case GIMPLE_OMP_TARGET:
6857 switch (gimple_omp_target_kind (g: stmt))
6858 {
6859 case GF_OMP_TARGET_KIND_REGION:
6860 case GF_OMP_TARGET_KIND_OACC_PARALLEL:
6861 case GF_OMP_TARGET_KIND_OACC_KERNELS:
6862 case GF_OMP_TARGET_KIND_OACC_SERIAL:
6863 case GF_OMP_TARGET_KIND_OACC_PARALLEL_KERNELS_PARALLELIZED:
6864 case GF_OMP_TARGET_KIND_OACC_PARALLEL_KERNELS_GANG_SINGLE:
6865 return true;
6866 default:
6867 return false;
6868 }
6869 default:
6870 return false;
6871 }
6872}
6873
6874
6875/* Returns TRUE if statement G is a GIMPLE_NOP. */
6876
6877inline bool
6878gimple_nop_p (const gimple *g)
6879{
6880 return gimple_code (g) == GIMPLE_NOP;
6881}
6882
6883
6884/* Return true if GS is a GIMPLE_RESX. */
6885
6886inline bool
6887is_gimple_resx (const gimple *gs)
6888{
6889 return gimple_code (g: gs) == GIMPLE_RESX;
6890}
6891
6892
6893/* Enum and arrays used for allocation stats. Keep in sync with
6894 gimple.cc:gimple_alloc_kind_names. */
6895enum gimple_alloc_kind
6896{
6897 gimple_alloc_kind_assign, /* Assignments. */
6898 gimple_alloc_kind_phi, /* PHI nodes. */
6899 gimple_alloc_kind_cond, /* Conditionals. */
6900 gimple_alloc_kind_rest, /* Everything else. */
6901 gimple_alloc_kind_all
6902};
6903
6904extern uint64_t gimple_alloc_counts[];
6905extern uint64_t gimple_alloc_sizes[];
6906
6907/* Return the allocation kind for a given stmt CODE. */
6908inline enum gimple_alloc_kind
6909gimple_alloc_kind (enum gimple_code code)
6910{
6911 switch (code)
6912 {
6913 case GIMPLE_ASSIGN:
6914 return gimple_alloc_kind_assign;
6915 case GIMPLE_PHI:
6916 return gimple_alloc_kind_phi;
6917 case GIMPLE_COND:
6918 return gimple_alloc_kind_cond;
6919 default:
6920 return gimple_alloc_kind_rest;
6921 }
6922}
6923
6924/* Return true if a location should not be emitted for this statement
6925 by annotate_all_with_location. */
6926
6927inline bool
6928gimple_do_not_emit_location_p (gimple *g)
6929{
6930 return gimple_plf (stmt: g, plf: GF_PLF_1);
6931}
6932
6933/* Mark statement G so a location will not be emitted by
6934 annotate_one_with_location. */
6935
6936inline void
6937gimple_set_do_not_emit_location (gimple *g)
6938{
6939 /* The PLF flags are initialized to 0 when a new tuple is created,
6940 so no need to initialize it anywhere. */
6941 gimple_set_plf (stmt: g, plf: GF_PLF_1, val_p: true);
6942}
6943
6944#endif /* GCC_GIMPLE_H */
6945

source code of gcc/gimple.h