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

Provided by KDAB

Privacy Policy
Learn to use CMake with our Intro Training
Find out more

source code of gcc/gimple.h