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