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