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