Merge from trunk @ 138209
[official-gcc.git] / gcc / gimple.h
blob744461d7310db08a019cf179e774da0ce7a055a7
1 /* Gimple IR definitions.
3 Copyright 2007, 2008 Free Software Foundation, Inc.
4 Contributed by Aldy Hernandez <aldyh@redhat.com>
6 This file is part of GCC.
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.
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.
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/>. */
22 #ifndef GCC_GIMPLE_H
23 #define GCC_GIMPLE_H
25 #include "pointer-set.h"
26 #include "vec.h"
27 #include "ggc.h"
28 #include "tm.h"
29 #include "hard-reg-set.h"
30 #include "basic-block.h"
31 #include "tree-ssa-operands.h"
33 DEF_VEC_P(gimple);
34 DEF_VEC_ALLOC_P(gimple,heap);
35 DEF_VEC_ALLOC_P(gimple,gc);
37 DEF_VEC_P(gimple_seq);
38 DEF_VEC_ALLOC_P(gimple_seq,gc);
39 DEF_VEC_ALLOC_P(gimple_seq,heap);
41 enum gimple_code {
42 #define DEFGSCODE(SYM, STRING, STRUCT) SYM,
43 #include "gimple.def"
44 #undef DEFGSCODE
45 LAST_AND_UNUSED_GIMPLE_CODE
48 extern const char *const gimple_code_name[];
49 extern const unsigned char gimple_rhs_class_table[];
51 /* Error out if a gimple tuple is addressed incorrectly. */
52 #if defined ENABLE_GIMPLE_CHECKING
53 extern void gimple_check_failed (const_gimple, const char *, int, \
54 const char *, enum gimple_code, \
55 enum tree_code) ATTRIBUTE_NORETURN;
56 extern void gimple_range_check_failed (const_gimple, const char *, int, \
57 const char *, enum gimple_code, \
58 enum gimple_code) ATTRIBUTE_NORETURN;
60 #define GIMPLE_CHECK(GS, CODE) \
61 do { \
62 const_gimple __gs = (GS); \
63 if (gimple_code (__gs) != (CODE)) \
64 gimple_check_failed (__gs, __FILE__, __LINE__, __FUNCTION__, \
65 (CODE), 0); \
66 } while (0)
67 #else /* not ENABLE_GIMPLE_CHECKING */
68 #define GIMPLE_CHECK(GS, CODE) (void)0
69 #endif
71 /* Class of GIMPLE expressions suitable for the RHS of assignments. See
72 get_gimple_rhs_class. */
73 enum gimple_rhs_class
75 GIMPLE_INVALID_RHS, /* The expression cannot be used on the RHS. */
76 GIMPLE_BINARY_RHS, /* The expression is a binary operation. */
77 GIMPLE_UNARY_RHS, /* The expression is a unary operation. */
78 GIMPLE_SINGLE_RHS /* The expression is a single object (an SSA
79 name, a _DECL, a _REF, etc. */
82 /* Specific flags for individual GIMPLE statements. These flags are
83 always stored in gimple_statement_base.subcode and they may only be
84 defined for statement codes that do not use sub-codes.
86 Values for the masks can overlap as long as the overlapping values
87 are never used in the same statement class.
89 The maximum mask value that can be defined is 1 << 15 (i.e., each
90 statement code can hold up to 16 bitflags).
92 Keep this list sorted. */
93 enum gf_mask {
94 GF_ASM_INPUT = 1 << 0,
95 GF_ASM_VOLATILE = 1 << 1,
96 GF_CALL_CANNOT_INLINE = 1 << 0,
97 GF_CALL_FROM_THUNK = 1 << 1,
98 GF_CALL_RETURN_SLOT_OPT = 1 << 2,
99 GF_CALL_TAILCALL = 1 << 3,
100 GF_CALL_VA_ARG_PACK = 1 << 4,
101 GF_OMP_PARALLEL_COMBINED = 1 << 0,
103 /* True on an GIMPLE_OMP_RETURN statement if the return does not require
104 a thread synchronization via some sort of barrier. The exact barrier
105 that would otherwise be emitted is dependent on the OMP statement with
106 which this return is associated. */
107 GF_OMP_RETURN_NOWAIT = 1 << 0,
109 GF_OMP_SECTION_LAST = 1 << 0,
110 GF_PREDICT_TAKEN = 1 << 15
113 /* Masks for selecting a pass local flag (PLF) to work on. These
114 masks are used by gimple_set_plf and gimple_plf. */
115 enum plf_mask {
116 GF_PLF_1 = 1 << 0,
117 GF_PLF_2 = 1 << 1
120 /* A node in a gimple_seq_d. */
121 struct gimple_seq_node_d GTY((chain_next ("%h.next"), chain_prev ("%h.prev")))
123 gimple stmt;
124 struct gimple_seq_node_d *prev;
125 struct gimple_seq_node_d *next;
128 /* A double-linked sequence of gimple statements. */
129 struct gimple_seq_d GTY ((chain_next ("%h.next_free")))
131 /* First and last statements in the sequence. */
132 gimple_seq_node first;
133 gimple_seq_node last;
135 /* Sequences are created/destroyed frequently. To minimize
136 allocation activity, deallocated sequences are kept in a pool of
137 available sequences. This is the pointer to the next free
138 sequence in the pool. */
139 gimple_seq next_free;
143 /* Return the first node in GIMPLE sequence S. */
145 static inline gimple_seq_node
146 gimple_seq_first (const_gimple_seq s)
148 return s ? s->first : NULL;
152 /* Return the first statement in GIMPLE sequence S. */
154 static inline gimple
155 gimple_seq_first_stmt (const_gimple_seq s)
157 gimple_seq_node n = gimple_seq_first (s);
158 return (n) ? n->stmt : NULL;
162 /* Return the last node in GIMPLE sequence S. */
164 static inline gimple_seq_node
165 gimple_seq_last (const_gimple_seq s)
167 return s ? s->last : NULL;
171 /* Return the last statement in GIMPLE sequence S. */
173 static inline gimple
174 gimple_seq_last_stmt (const_gimple_seq s)
176 gimple_seq_node n = gimple_seq_last (s);
177 return (n) ? n->stmt : NULL;
181 /* Set the last node in GIMPLE sequence S to LAST. */
183 static inline void
184 gimple_seq_set_last (gimple_seq s, gimple_seq_node last)
186 s->last = last;
190 /* Set the first node in GIMPLE sequence S to FIRST. */
192 static inline void
193 gimple_seq_set_first (gimple_seq s, gimple_seq_node first)
195 s->first = first;
199 /* Return true if GIMPLE sequence S is empty. */
201 static inline bool
202 gimple_seq_empty_p (const_gimple_seq s)
204 return s == NULL || s->first == NULL;
208 void gimple_seq_add_stmt (gimple_seq *, gimple);
210 /* Allocate a new sequence and initialize its first element with STMT. */
212 static inline gimple_seq
213 gimple_seq_alloc_with_stmt (gimple stmt)
215 gimple_seq seq = NULL;
216 gimple_seq_add_stmt (&seq, stmt);
217 return seq;
221 /* Returns the sequence of statements in BB. */
223 static inline gimple_seq
224 bb_seq (const_basic_block bb)
226 return (!(bb->flags & BB_RTL) && bb->il.gimple) ? bb->il.gimple->seq : NULL;
230 /* Sets the sequence of statements in BB to SEQ. */
232 static inline void
233 set_bb_seq (basic_block bb, gimple_seq seq)
235 gcc_assert (!(bb->flags & BB_RTL));
236 bb->il.gimple->seq = seq;
239 /* Iterator object for GIMPLE statement sequences. */
241 typedef struct
243 /* Sequence node holding the current statement. */
244 gimple_seq_node ptr;
246 /* Sequence and basic block holding the statement. These fields
247 are necessary to handle edge cases such as when statement is
248 added to an empty basic block or when the last statement of a
249 block/sequence is removed. */
250 gimple_seq seq;
251 basic_block bb;
252 } gimple_stmt_iterator;
255 /* Data structure definitions for GIMPLE tuples. NOTE: word markers
256 are for 64 bit hosts. */
258 struct gimple_statement_base GTY(())
260 /* [ WORD 1 ]
261 Main identifying code for a tuple. */
262 ENUM_BITFIELD(gimple_code) code : 8;
264 /* Nonzero if a warning should not be emitted on this tuple. */
265 unsigned int no_warning : 1;
267 /* Nonzero if this tuple has been visited. Passes are responsible
268 for clearing this bit before using it. */
269 unsigned int visited : 1;
271 /* Nonzero if this tuple represents a non-temporal move. */
272 unsigned int nontemporal_move : 1;
274 /* Pass local flags. These flags are free for any pass to use as
275 they see fit. Passes should not assume that these flags contain
276 any useful value when the pass starts. Any initial state that
277 the pass requires should be set on entry to the pass. See
278 gimple_set_plf and gimple_plf for usage. */
279 unsigned int plf : 2;
281 /* Nonzero if this statement has been modified and needs to have its
282 operands rescanned. */
283 unsigned modified : 1;
285 /* Nonzero if this statement contains volatile operands. */
286 unsigned has_volatile_ops : 1;
288 /* Nonzero if this statement contains memory refernces. */
289 unsigned references_memory_p : 1;
291 /* The SUBCODE field can be used for tuple-specific flags for tuples
292 that do not require subcodes. Note that SUBCODE should be at
293 least as wide as tree codes, as several tuples store tree codes
294 in there. */
295 unsigned int subcode : 16;
297 /* UID of this statement. */
298 unsigned uid;
300 /* [ WORD 2 ]
301 Locus information for debug info. */
302 location_t location;
304 /* Number of operands in this tuple. */
305 unsigned num_ops;
307 /* [ WORD 3 ]
308 Basic block holding this statement. */
309 struct basic_block_def *bb;
311 /* [ WORD 4 ]
312 Lexical block holding this statement. */
313 tree block;
317 /* Base structure for tuples with operands. */
319 struct gimple_statement_with_ops_base GTY(())
321 /* [ WORD 1-4 ] */
322 struct gimple_statement_base gsbase;
324 /* [ WORD 5 ]
325 Symbols whose addresses are taken by this statement (i.e., they
326 appear inside ADDR_EXPR nodes). */
327 bitmap GTY((skip (""))) addresses_taken;
329 /* [ WORD 6-7 ]
330 SSA operand vectors. NOTE: It should be possible to
331 amalgamate these vectors with the operand vector OP. However,
332 the SSA operand vectors are organized differently and contain
333 more information (like immediate use chaining). */
334 struct def_optype_d GTY((skip (""))) *def_ops;
335 struct use_optype_d GTY((skip (""))) *use_ops;
339 /* Statements that take register operands. */
341 struct gimple_statement_with_ops GTY(())
343 /* [ WORD 1-7 ] */
344 struct gimple_statement_with_ops_base opbase;
346 /* [ WORD 8 ]
347 Operand vector. NOTE! This must always be the last field
348 of this structure. In particular, this means that this
349 structure cannot be embedded inside another one. */
350 tree GTY((length ("%h.opbase.gsbase.num_ops"))) op[1];
354 /* Base for statements that take both memory and register operands. */
356 struct gimple_statement_with_memory_ops_base GTY(())
358 /* [ WORD 1-7 ] */
359 struct gimple_statement_with_ops_base opbase;
361 /* [ WORD 8-9 ]
362 Vectors for virtual operands. */
363 struct voptype_d GTY((skip (""))) *vdef_ops;
364 struct voptype_d GTY((skip (""))) *vuse_ops;
366 /* [ WORD 9-10 ]
367 Symbols stored/loaded by this statement. */
368 bitmap GTY((skip (""))) stores;
369 bitmap GTY((skip (""))) loads;
373 /* Statements that take both memory and register operands. */
375 struct gimple_statement_with_memory_ops GTY(())
377 /* [ WORD 1-10 ] */
378 struct gimple_statement_with_memory_ops_base membase;
380 /* [ WORD 11 ]
381 Operand vector. NOTE! This must always be the last field
382 of this structure. In particular, this means that this
383 structure cannot be embedded inside another one. */
384 tree GTY((length ("%h.membase.opbase.gsbase.num_ops"))) op[1];
388 /* OpenMP statements (#pragma omp). */
390 struct gimple_statement_omp GTY(())
392 /* [ WORD 1-4 ] */
393 struct gimple_statement_base gsbase;
395 /* [ WORD 5 ] */
396 gimple_seq body;
400 /* GIMPLE_BIND */
402 struct gimple_statement_bind GTY(())
404 /* [ WORD 1-4 ] */
405 struct gimple_statement_base gsbase;
407 /* [ WORD 5 ]
408 Variables declared in this scope. */
409 tree vars;
411 /* [ WORD 6 ]
412 This is different than the BLOCK field in gimple_statement_base,
413 which is analogous to TREE_BLOCK (i.e., the lexical block holding
414 this statement). This field is the equivalent of BIND_EXPR_BLOCK
415 in tree land (i.e., the lexical scope defined by this bind). See
416 gimple-low.c. */
417 tree block;
419 /* [ WORD 7 ] */
420 gimple_seq body;
424 /* GIMPLE_CATCH */
426 struct gimple_statement_catch GTY(())
428 /* [ WORD 1-4 ] */
429 struct gimple_statement_base gsbase;
431 /* [ WORD 5 ] */
432 tree types;
434 /* [ WORD 6 ] */
435 gimple_seq handler;
439 /* GIMPLE_EH_FILTER */
441 struct gimple_statement_eh_filter GTY(())
443 /* [ WORD 1-4 ] */
444 struct gimple_statement_base gsbase;
446 /* Subcode: EH_FILTER_MUST_NOT_THROW. A boolean flag analogous to
447 the tree counterpart. */
449 /* [ WORD 5 ]
450 Filter types. */
451 tree types;
453 /* [ WORD 6 ]
454 Failure actions. */
455 gimple_seq failure;
459 /* GIMPLE_PHI */
461 struct gimple_statement_phi GTY(())
463 /* [ WORD 1-4 ] */
464 struct gimple_statement_base gsbase;
466 /* [ WORD 5 ] */
467 unsigned capacity;
468 unsigned nargs;
470 /* [ WORD 6 ] */
471 tree result;
473 /* [ WORD 7 ] */
474 struct phi_arg_d GTY ((length ("%h.nargs"))) args[1];
478 /* GIMPLE_RESX */
480 struct gimple_statement_resx GTY(())
482 /* [ WORD 1-4 ] */
483 struct gimple_statement_base gsbase;
485 /* [ WORD 5 ]
486 Exception region number. */
487 int region;
491 /* GIMPLE_TRY */
493 struct gimple_statement_try GTY(())
495 /* [ WORD 1-4 ] */
496 struct gimple_statement_base gsbase;
498 /* [ WORD 5 ]
499 Expression to evaluate. */
500 gimple_seq eval;
502 /* [ WORD 6 ]
503 Cleanup expression. */
504 gimple_seq cleanup;
507 /* Kind of GIMPLE_TRY statements. */
508 enum gimple_try_flags
510 /* A try/catch. */
511 GIMPLE_TRY_CATCH = 1 << 0,
513 /* A try/finally. */
514 GIMPLE_TRY_FINALLY = 1 << 1,
515 GIMPLE_TRY_KIND = GIMPLE_TRY_CATCH | GIMPLE_TRY_FINALLY,
517 /* Analogous to TRY_CATCH_IS_CLEANUP. */
518 GIMPLE_TRY_CATCH_IS_CLEANUP = 1 << 2
521 /* GIMPLE_WITH_CLEANUP_EXPR */
523 struct gimple_statement_wce GTY(())
525 /* [ WORD 1-4 ] */
526 struct gimple_statement_base gsbase;
528 /* Subcode: CLEANUP_EH_ONLY. True if the cleanup should only be
529 executed if an exception is thrown, not on normal exit of its
530 scope. This flag is analogous to the CLEANUP_EH_ONLY flag
531 in TARGET_EXPRs. */
533 /* [ WORD 5 ]
534 Cleanup expression. */
535 gimple_seq cleanup;
539 /* GIMPLE_ASM */
541 struct gimple_statement_asm GTY(())
543 /* [ WORD 1-10 ] */
544 struct gimple_statement_with_memory_ops_base membase;
546 /* [ WORD 11 ]
547 __asm__ statement. */
548 const char *string;
550 /* [ WORD 12 ]
551 Number of inputs, outputs and clobbers. */
552 unsigned char ni;
553 unsigned char no;
554 unsigned short nc;
556 /* [ WORD 13 ]
557 Operand vector. NOTE! This must always be the last field
558 of this structure. In particular, this means that this
559 structure cannot be embedded inside another one. */
560 tree GTY((length ("%h.membase.opbase.gsbase.num_ops"))) op[1];
563 /* GIMPLE_OMP_CRITICAL */
565 struct gimple_statement_omp_critical GTY(())
567 /* [ WORD 1-5 ] */
568 struct gimple_statement_omp omp;
570 /* [ WORD 6 ]
571 Critical section name. */
572 tree name;
576 struct gimple_omp_for_iter GTY(())
578 /* Condition code. */
579 enum tree_code cond;
581 /* Index variable. */
582 tree index;
584 /* Initial value. */
585 tree initial;
587 /* Final value. */
588 tree final;
590 /* Increment. */
591 tree incr;
594 /* GIMPLE_OMP_FOR */
596 struct gimple_statement_omp_for GTY(())
598 /* [ WORD 1-5 ] */
599 struct gimple_statement_omp omp;
601 /* [ WORD 6 ] */
602 tree clauses;
604 /* [ WORD 7 ]
605 Number of elements in iter array. */
606 size_t collapse;
608 /* [ WORD 8 ] */
609 struct gimple_omp_for_iter * GTY((length ("%h.collapse"))) iter;
611 /* [ WORD 9 ]
612 Pre-body evaluated before the loop body begins. */
613 gimple_seq pre_body;
617 /* GIMPLE_OMP_PARALLEL */
619 struct gimple_statement_omp_parallel GTY(())
621 /* [ WORD 1-5 ] */
622 struct gimple_statement_omp omp;
624 /* [ WORD 6 ]
625 Clauses. */
626 tree clauses;
628 /* [ WORD 7 ]
629 Child function holding the body of the parallel region. */
630 tree child_fn;
632 /* [ WORD 8 ]
633 Shared data argument. */
634 tree data_arg;
638 /* GIMPLE_OMP_TASK */
640 struct gimple_statement_omp_task GTY(())
642 /* [ WORD 1-8 ] */
643 struct gimple_statement_omp_parallel par;
645 /* [ WORD 9 ]
646 Child function holding firstprivate initialization if needed. */
647 tree copy_fn;
649 /* [ WORD 10-11 ]
650 Size and alignment in bytes of the argument data block. */
651 tree arg_size;
652 tree arg_align;
656 /* GIMPLE_OMP_SECTION */
657 /* Uses struct gimple_statement_omp. */
660 /* GIMPLE_OMP_SECTIONS */
662 struct gimple_statement_omp_sections GTY(())
664 /* [ WORD 1-5 ] */
665 struct gimple_statement_omp omp;
667 /* [ WORD 6 ] */
668 tree clauses;
670 /* [ WORD 7 ]
671 The control variable used for deciding which of the sections to
672 execute. */
673 tree control;
676 /* GIMPLE_OMP_CONTINUE.
678 Note: This does not inherit from gimple_statement_omp, because we
679 do not need the body field. */
681 struct gimple_statement_omp_continue GTY(())
683 /* [ WORD 1-4 ] */
684 struct gimple_statement_base gsbase;
686 /* [ WORD 5 ] */
687 tree control_def;
689 /* [ WORD 6 ] */
690 tree control_use;
693 /* GIMPLE_OMP_SINGLE */
695 struct gimple_statement_omp_single GTY(())
697 /* [ WORD 1-5 ] */
698 struct gimple_statement_omp omp;
700 /* [ WORD 6 ] */
701 tree clauses;
705 /* GIMPLE_OMP_ATOMIC_LOAD.
706 Note: This is based on gimple_statement_base, not g_s_omp, because g_s_omp
707 contains a sequence, which we don't need here. */
709 struct gimple_statement_omp_atomic_load GTY(())
711 /* [ WORD 1-4 ] */
712 struct gimple_statement_base gsbase;
714 /* [ WORD 5-6 ] */
715 tree rhs, lhs;
718 /* GIMPLE_OMP_ATOMIC_STORE.
719 See note on GIMPLE_OMP_ATOMIC_LOAD. */
721 struct gimple_statement_omp_atomic_store GTY(())
723 /* [ WORD 1-4 ] */
724 struct gimple_statement_base gsbase;
726 /* [ WORD 5 ] */
727 tree val;
730 enum gimple_statement_structure_enum {
731 #define DEFGSSTRUCT(SYM, STRING) SYM,
732 #include "gsstruct.def"
733 #undef DEFGSSTRUCT
734 LAST_GSS_ENUM
738 /* Define the overall contents of a gimple tuple. It may be any of the
739 structures declared above for various types of tuples. */
741 union gimple_statement_d GTY ((desc ("gimple_statement_structure (&%h)")))
743 struct gimple_statement_base GTY ((tag ("GSS_BASE"))) gsbase;
744 struct gimple_statement_with_ops GTY ((tag ("GSS_WITH_OPS"))) gsops;
745 struct gimple_statement_with_memory_ops GTY ((tag ("GSS_WITH_MEM_OPS"))) gsmem;
746 struct gimple_statement_omp GTY ((tag ("GSS_OMP"))) omp;
747 struct gimple_statement_bind GTY ((tag ("GSS_BIND"))) gimple_bind;
748 struct gimple_statement_catch GTY ((tag ("GSS_CATCH"))) gimple_catch;
749 struct gimple_statement_eh_filter GTY ((tag ("GSS_EH_FILTER"))) gimple_eh_filter;
750 struct gimple_statement_phi GTY ((tag ("GSS_PHI"))) gimple_phi;
751 struct gimple_statement_resx GTY ((tag ("GSS_RESX"))) gimple_resx;
752 struct gimple_statement_try GTY ((tag ("GSS_TRY"))) gimple_try;
753 struct gimple_statement_wce GTY ((tag ("GSS_WCE"))) gimple_wce;
754 struct gimple_statement_asm GTY ((tag ("GSS_ASM"))) gimple_asm;
755 struct gimple_statement_omp_critical GTY ((tag ("GSS_OMP_CRITICAL"))) gimple_omp_critical;
756 struct gimple_statement_omp_for GTY ((tag ("GSS_OMP_FOR"))) gimple_omp_for;
757 struct gimple_statement_omp_parallel GTY ((tag ("GSS_OMP_PARALLEL"))) gimple_omp_parallel;
758 struct gimple_statement_omp_task GTY ((tag ("GSS_OMP_TASK"))) gimple_omp_task;
759 struct gimple_statement_omp_sections GTY ((tag ("GSS_OMP_SECTIONS"))) gimple_omp_sections;
760 struct gimple_statement_omp_single GTY ((tag ("GSS_OMP_SINGLE"))) gimple_omp_single;
761 struct gimple_statement_omp_continue GTY ((tag ("GSS_OMP_CONTINUE"))) gimple_omp_continue;
762 struct gimple_statement_omp_atomic_load GTY ((tag ("GSS_OMP_ATOMIC_LOAD"))) gimple_omp_atomic_load;
763 struct gimple_statement_omp_atomic_store GTY ((tag ("GSS_OMP_ATOMIC_STORE"))) gimple_omp_atomic_store;
766 /* In gimple.c. */
767 gimple gimple_build_return (tree);
769 gimple gimple_build_assign_stat (tree, tree MEM_STAT_DECL);
770 #define gimple_build_assign(l,r) gimple_build_assign_stat (l, r MEM_STAT_INFO)
772 void extract_ops_from_tree (tree, enum tree_code *, tree *, tree *);
774 gimple gimple_build_assign_with_ops_stat (enum tree_code, tree, tree,
775 tree MEM_STAT_DECL);
776 #define gimple_build_assign_with_ops(c,o1,o2,o3) \
777 gimple_build_assign_with_ops_stat (c, o1, o2, o3 MEM_STAT_INFO)
779 gimple gimple_build_call_vec (tree, VEC(tree, heap) *);
780 gimple gimple_build_call (tree, unsigned, ...);
781 gimple gimple_build_call_from_tree (tree);
782 gimple gimplify_assign (tree, tree, gimple_seq *);
783 gimple gimple_build_cond (enum tree_code, tree, tree, tree, tree);
784 gimple gimple_build_label (tree label);
785 gimple gimple_build_goto (tree dest);
786 gimple gimple_build_nop (void);
787 gimple gimple_build_bind (tree, gimple_seq, tree);
788 gimple gimple_build_asm (const char *, unsigned, unsigned, unsigned, ...);
789 gimple gimple_build_asm_vec (const char *, VEC(tree,gc) *, VEC(tree,gc) *,
790 VEC(tree,gc) *);
791 gimple gimple_build_catch (tree, gimple_seq);
792 gimple gimple_build_eh_filter (tree, gimple_seq);
793 gimple gimple_build_try (gimple_seq, gimple_seq, unsigned int);
794 gimple gimple_build_wce (gimple_seq);
795 gimple gimple_build_resx (int);
796 gimple gimple_build_switch (unsigned, tree, tree, ...);
797 gimple gimple_build_switch_vec (tree, tree, VEC(tree,heap) *);
798 gimple gimple_build_omp_parallel (gimple_seq, tree, tree, tree);
799 gimple gimple_build_omp_task (gimple_seq, tree, tree, tree, tree, tree, tree);
800 gimple gimple_build_omp_for (gimple_seq, tree, size_t, gimple_seq);
801 gimple gimple_build_omp_critical (gimple_seq, tree);
802 gimple gimple_build_omp_section (gimple_seq);
803 gimple gimple_build_omp_continue (tree, tree);
804 gimple gimple_build_omp_master (gimple_seq);
805 gimple gimple_build_omp_return (bool);
806 gimple gimple_build_omp_ordered (gimple_seq);
807 gimple gimple_build_omp_sections (gimple_seq, tree);
808 gimple gimple_build_omp_sections_switch (void);
809 gimple gimple_build_omp_single (gimple_seq, tree);
810 gimple gimple_build_cdt (tree, tree);
811 gimple gimple_build_omp_atomic_load (tree, tree);
812 gimple gimple_build_omp_atomic_store (tree);
813 gimple gimple_build_predict (enum br_predictor, enum prediction);
814 enum gimple_statement_structure_enum gimple_statement_structure (gimple);
815 enum gimple_statement_structure_enum gss_for_assign (enum tree_code);
816 void sort_case_labels (VEC(tree,heap) *);
817 void gimple_set_body (tree, gimple_seq);
818 gimple_seq gimple_body (tree);
819 gimple_seq gimple_seq_alloc (void);
820 void gimple_seq_free (gimple_seq);
821 void gimple_seq_add_seq (gimple_seq *, gimple_seq);
822 gimple_seq gimple_seq_copy (gimple_seq);
823 int gimple_call_flags (const_gimple);
824 bool gimple_assign_copy_p (gimple);
825 bool gimple_assign_ssa_name_copy_p (gimple);
826 bool gimple_assign_single_p (gimple);
827 bool gimple_assign_unary_nop_p (gimple);
828 void gimple_set_bb (gimple, struct basic_block_def *);
829 tree gimple_fold (const_gimple);
830 void gimple_assign_set_rhs_from_tree (gimple_stmt_iterator *, tree);
831 void gimple_assign_set_rhs_with_ops (gimple_stmt_iterator *, enum tree_code,
832 tree, tree);
833 tree gimple_get_lhs (const_gimple);
834 void gimple_set_lhs (gimple, tree);
835 gimple gimple_copy (gimple);
836 bool is_gimple_operand (const_tree);
837 void gimple_set_modified (gimple, bool);
838 void gimple_cond_get_ops_from_tree (tree, enum tree_code *, tree *, tree *);
839 gimple gimple_build_cond_from_tree (tree, tree, tree);
840 void gimple_cond_set_condition_from_tree (gimple, tree);
841 bool gimple_has_side_effects (const_gimple);
842 bool gimple_rhs_has_side_effects (const_gimple);
843 bool gimple_could_trap_p (gimple);
844 bool gimple_assign_rhs_could_trap_p (gimple);
845 void gimple_regimplify_operands (gimple, gimple_stmt_iterator *);
846 bool empty_body_p (gimple_seq);
847 unsigned get_gimple_rhs_num_ops (enum tree_code);
849 /* Returns true iff T is a valid GIMPLE statement. */
850 extern bool is_gimple_stmt (tree);
852 /* Returns true iff TYPE is a valid type for a scalar register variable. */
853 extern bool is_gimple_reg_type (tree);
854 /* Returns true iff T is a scalar register variable. */
855 extern bool is_gimple_reg (tree);
856 /* Returns true if T is a GIMPLE temporary variable, false otherwise. */
857 extern bool is_gimple_formal_tmp_var (tree);
858 /* Returns true if T is a GIMPLE temporary register variable. */
859 extern bool is_gimple_formal_tmp_reg (tree);
860 /* Returns true iff T is any sort of variable. */
861 extern bool is_gimple_variable (tree);
862 /* Returns true iff T is any sort of symbol. */
863 extern bool is_gimple_id (tree);
864 /* Returns true iff T is a variable or an INDIRECT_REF (of a variable). */
865 extern bool is_gimple_min_lval (tree);
866 /* Returns true iff T is something whose address can be taken. */
867 extern bool is_gimple_addressable (tree);
868 /* Returns true iff T is any valid GIMPLE lvalue. */
869 extern bool is_gimple_lvalue (tree);
871 /* Returns true iff T is a GIMPLE address. */
872 bool is_gimple_address (const_tree);
873 /* Returns true iff T is a GIMPLE invariant address. */
874 bool is_gimple_invariant_address (const_tree);
875 /* Returns true iff T is a valid GIMPLE constant. */
876 bool is_gimple_constant (const_tree);
877 /* Returns true iff T is a GIMPLE restricted function invariant. */
878 extern bool is_gimple_min_invariant (const_tree);
879 /* Returns true iff T is a GIMPLE rvalue. */
880 extern bool is_gimple_val (tree);
881 /* Returns true iff T is a GIMPLE asm statement input. */
882 extern bool is_gimple_asm_val (tree);
883 /* Returns true iff T is a valid rhs for a MODIFY_EXPR where the LHS is a
884 GIMPLE temporary, a renamed user variable, or something else,
885 respectively. */
886 extern bool is_gimple_formal_tmp_rhs (tree);
887 extern bool is_gimple_reg_rhs (tree);
888 extern bool is_gimple_mem_rhs (tree);
890 /* Returns true iff T is a valid if-statement condition. */
891 extern bool is_gimple_condexpr (tree);
893 /* Returns true iff T is a type conversion. */
894 extern bool is_gimple_cast (tree);
895 /* Returns true iff T is a variable that does not need to live in memory. */
896 extern bool is_gimple_non_addressable (tree t);
898 /* Returns true iff T is a valid call address expression. */
899 extern bool is_gimple_call_addr (tree);
900 /* If T makes a function call, returns the CALL_EXPR operand. */
901 extern tree get_call_expr_in (tree t);
903 extern void recalculate_side_effects (tree);
905 /* In gimplify.c */
906 extern tree create_tmp_var_raw (tree, const char *);
907 extern tree create_tmp_var_name (const char *);
908 extern tree create_tmp_var (tree, const char *);
909 extern tree get_initialized_tmp_var (tree, gimple_seq *, gimple_seq *);
910 extern tree get_formal_tmp_var (tree, gimple_seq *);
911 extern void declare_vars (tree, gimple, bool);
912 extern void tree_annotate_all_with_location (tree *, location_t);
913 extern void annotate_all_with_location (gimple_seq, location_t);
915 /* Validation of GIMPLE expressions. Note that these predicates only check
916 the basic form of the expression, they don't recurse to make sure that
917 underlying nodes are also of the right form. */
918 typedef bool (*gimple_predicate)(tree);
921 /* FIXME we should deduce this from the predicate. */
922 typedef enum fallback_t {
923 fb_none = 0, /* Do not generate a temporary. */
925 fb_rvalue = 1, /* Generate an rvalue to hold the result of a
926 gimplified expression. */
928 fb_lvalue = 2, /* Generate an lvalue to hold the result of a
929 gimplified expression. */
931 fb_mayfail = 4, /* Gimplification may fail. Error issued
932 afterwards. */
933 fb_either= fb_rvalue | fb_lvalue
934 } fallback_t;
936 enum gimplify_status {
937 GS_ERROR = -2, /* Something Bad Seen. */
938 GS_UNHANDLED = -1, /* A langhook result for "I dunno". */
939 GS_OK = 0, /* We did something, maybe more to do. */
940 GS_ALL_DONE = 1 /* The expression is fully gimplified. */
943 struct gimplify_ctx
945 struct gimplify_ctx *prev_context;
947 VEC(gimple,heap) *bind_expr_stack;
948 tree temps;
949 gimple_seq conditional_cleanups;
950 tree exit_label;
951 tree return_temp;
953 VEC(tree,heap) *case_labels;
954 /* The formal temporary table. Should this be persistent? */
955 htab_t temp_htab;
957 int conditions;
958 bool save_stack;
959 bool into_ssa;
960 bool allow_rhs_cond_expr;
963 extern enum gimplify_status gimplify_expr (tree *, gimple_seq *, gimple_seq *,
964 bool (*) (tree), fallback_t);
965 extern void gimplify_type_sizes (tree, gimple_seq *);
966 extern void gimplify_one_sizepos (tree *, gimple_seq *);
967 extern bool gimplify_stmt (tree *, gimple_seq *);
968 extern gimple gimplify_body (tree *, tree, bool);
969 extern void push_gimplify_context (struct gimplify_ctx *);
970 extern void pop_gimplify_context (gimple);
971 extern void gimplify_and_add (tree, gimple_seq *);
973 /* Miscellaneous helpers. */
974 extern void gimple_add_tmp_var (tree);
975 extern gimple gimple_current_bind_expr (void);
976 extern VEC(gimple, heap) *gimple_bind_expr_stack (void);
977 extern tree voidify_wrapper_expr (tree, tree);
978 extern tree build_and_jump (tree *);
979 extern tree alloc_stmt_list (void);
980 extern void free_stmt_list (tree);
981 extern tree force_labels_r (tree *, int *, void *);
982 extern enum gimplify_status gimplify_va_arg_expr (tree *, gimple_seq *,
983 gimple_seq *);
984 struct gimplify_omp_ctx;
985 extern void omp_firstprivatize_variable (struct gimplify_omp_ctx *, tree);
986 extern tree gimple_boolify (tree);
987 extern gimple_predicate rhs_predicate_for (tree);
988 extern tree canonicalize_cond_expr_cond (tree);
990 /* In omp-low.c. */
991 extern void diagnose_omp_structured_block_errors (tree);
992 extern tree omp_reduction_init (tree, tree);
994 /* In tree-nested.c. */
995 extern void lower_nested_functions (tree);
996 extern void insert_field_into_struct (tree, tree);
998 /* In gimplify.c. */
999 extern void gimplify_function_tree (tree);
1001 /* In cfgexpand.c. */
1002 extern tree gimple_assign_rhs_to_tree (gimple);
1004 /* In builtins.c */
1005 extern bool validate_gimple_arglist (const_gimple, ...);
1007 /* In tree-ssa-operands.c */
1008 extern void gimple_add_to_addresses_taken (gimple, tree);
1010 /* Return the code for GIMPLE statement G. */
1012 static inline enum gimple_code
1013 gimple_code (const_gimple g)
1015 return g->gsbase.code;
1019 /* Return true if statement G has sub-statements. This is only true for
1020 High GIMPLE statements. */
1022 static inline bool
1023 gimple_has_substatements (gimple g)
1025 switch (gimple_code (g))
1027 case GIMPLE_BIND:
1028 case GIMPLE_CATCH:
1029 case GIMPLE_EH_FILTER:
1030 case GIMPLE_TRY:
1031 case GIMPLE_OMP_FOR:
1032 case GIMPLE_OMP_MASTER:
1033 case GIMPLE_OMP_ORDERED:
1034 case GIMPLE_OMP_SECTION:
1035 case GIMPLE_OMP_PARALLEL:
1036 case GIMPLE_OMP_TASK:
1037 case GIMPLE_OMP_SECTIONS:
1038 case GIMPLE_OMP_SINGLE:
1039 case GIMPLE_WITH_CLEANUP_EXPR:
1040 return true;
1042 default:
1043 return false;
1048 /* Return the basic block holding statement G. */
1050 static inline struct basic_block_def *
1051 gimple_bb (const_gimple g)
1053 return g->gsbase.bb;
1057 /* Return the lexical scope block holding statement G. */
1059 static inline tree
1060 gimple_block (const_gimple g)
1062 return g->gsbase.block;
1066 /* Set BLOCK to be the lexical scope block holding statement G. */
1068 static inline void
1069 gimple_set_block (gimple g, tree block)
1071 g->gsbase.block = block;
1075 /* Return location information for statement G. */
1077 static inline location_t
1078 gimple_location (const_gimple g)
1080 return g->gsbase.location;
1083 /* Return pointer to location information for statement G. */
1085 static inline const location_t *
1086 gimple_location_ptr (const_gimple g)
1088 return &g->gsbase.location;
1092 /* Set location information for statement G. */
1094 static inline void
1095 gimple_set_location (gimple g, location_t location)
1097 g->gsbase.location = location;
1101 /* Return true if G contains location information. */
1103 static inline bool
1104 gimple_has_location (const_gimple g)
1106 return gimple_location (g) != UNKNOWN_LOCATION;
1110 /* Return the file name of the location of STMT. */
1112 static inline const char *
1113 gimple_filename (const_gimple stmt)
1115 return LOCATION_FILE (gimple_location (stmt));
1119 /* Return the line number of the location of STMT. */
1121 static inline int
1122 gimple_lineno (const_gimple stmt)
1124 return LOCATION_LINE (gimple_location (stmt));
1128 /* Determine whether SEQ is a singleton. */
1130 static inline bool
1131 gimple_seq_singleton_p (gimple_seq seq)
1133 return ((gimple_seq_first (seq) != NULL)
1134 && (gimple_seq_first (seq) == gimple_seq_last (seq)));
1137 /* Return true if no warnings should be emitted for statement STMT. */
1139 static inline bool
1140 gimple_no_warning_p (const_gimple stmt)
1142 return stmt->gsbase.no_warning;
1145 /* Set the no_warning flag of STMT to NO_WARNING. */
1147 static inline void
1148 gimple_set_no_warning (gimple stmt, bool no_warning)
1150 stmt->gsbase.no_warning = (unsigned) no_warning;
1153 /* Set the visited status on statement STMT to VISITED_P. */
1155 static inline void
1156 gimple_set_visited (gimple stmt, bool visited_p)
1158 stmt->gsbase.visited = (unsigned) visited_p;
1162 /* Return the visited status for statement STMT. */
1164 static inline bool
1165 gimple_visited_p (gimple stmt)
1167 return stmt->gsbase.visited;
1171 /* Set pass local flag PLF on statement STMT to VAL_P. */
1173 static inline void
1174 gimple_set_plf (gimple stmt, enum plf_mask plf, bool val_p)
1176 if (val_p)
1177 stmt->gsbase.plf |= (unsigned int) plf;
1178 else
1179 stmt->gsbase.plf &= ~((unsigned int) plf);
1183 /* Return the value of pass local flag PLF on statement STMT. */
1185 static inline unsigned int
1186 gimple_plf (gimple stmt, enum plf_mask plf)
1188 return stmt->gsbase.plf & ((unsigned int) plf);
1192 /* Set the uid of statement */
1194 static inline void
1195 gimple_set_uid (gimple g, unsigned uid)
1197 g->gsbase.uid = uid;
1201 /* Return the uid of statement */
1203 static inline unsigned
1204 gimple_uid (const_gimple g)
1206 return g->gsbase.uid;
1210 /* Return true if GIMPLE statement G has register or memory operands. */
1212 static inline bool
1213 gimple_has_ops (const_gimple g)
1215 return gimple_code (g) >= GIMPLE_COND && gimple_code (g) <= GIMPLE_RETURN;
1219 /* Return true if GIMPLE statement G has memory operands. */
1221 static inline bool
1222 gimple_has_mem_ops (const_gimple g)
1224 return gimple_code (g) >= GIMPLE_ASSIGN && gimple_code (g) <= GIMPLE_RETURN;
1227 /* Return the set of addresses taken by statement G. */
1229 static inline bitmap
1230 gimple_addresses_taken (const_gimple g)
1232 if (gimple_has_ops (g))
1233 return g->gsops.opbase.addresses_taken;
1234 else
1235 return NULL;
1239 /* Return a pointer to the set of addresses taken by statement G. */
1241 static inline bitmap *
1242 gimple_addresses_taken_ptr (gimple g)
1244 if (gimple_has_ops (g))
1245 return &g->gsops.opbase.addresses_taken;
1246 else
1247 return NULL;
1251 /* Set B to be the set of addresses taken by statement G. The
1252 previous set is freed. */
1254 static inline void
1255 gimple_set_addresses_taken (gimple g, bitmap b)
1257 gcc_assert (gimple_has_ops (g));
1258 BITMAP_FREE (g->gsops.opbase.addresses_taken);
1259 g->gsops.opbase.addresses_taken = b;
1263 /* Return the set of DEF operands for statement G. */
1265 static inline struct def_optype_d *
1266 gimple_def_ops (const_gimple g)
1268 if (!gimple_has_ops (g))
1269 return NULL;
1270 return g->gsops.opbase.def_ops;
1274 /* Set DEF to be the set of DEF operands for statement G. */
1276 static inline void
1277 gimple_set_def_ops (gimple g, struct def_optype_d *def)
1279 gcc_assert (gimple_has_ops (g));
1280 g->gsops.opbase.def_ops = def;
1284 /* Return the set of USE operands for statement G. */
1286 static inline struct use_optype_d *
1287 gimple_use_ops (const_gimple g)
1289 if (!gimple_has_ops (g))
1290 return NULL;
1291 return g->gsops.opbase.use_ops;
1295 /* Set USE to be the set of USE operands for statement G. */
1297 static inline void
1298 gimple_set_use_ops (gimple g, struct use_optype_d *use)
1300 gcc_assert (gimple_has_ops (g));
1301 g->gsops.opbase.use_ops = use;
1305 /* Return the set of VUSE operands for statement G. */
1307 static inline struct voptype_d *
1308 gimple_vuse_ops (const_gimple g)
1310 if (!gimple_has_mem_ops (g))
1311 return NULL;
1312 return g->gsmem.membase.vuse_ops;
1316 /* Set OPS to be the set of VUSE operands for statement G. */
1318 static inline void
1319 gimple_set_vuse_ops (gimple g, struct voptype_d *ops)
1321 gcc_assert (gimple_has_mem_ops (g));
1322 g->gsmem.membase.vuse_ops = ops;
1326 /* Return the set of VDEF operands for statement G. */
1328 static inline struct voptype_d *
1329 gimple_vdef_ops (const_gimple g)
1331 if (!gimple_has_mem_ops (g))
1332 return NULL;
1333 return g->gsmem.membase.vdef_ops;
1337 /* Set OPS to be the set of VDEF operands for statement G. */
1339 static inline void
1340 gimple_set_vdef_ops (gimple g, struct voptype_d *ops)
1342 gcc_assert (gimple_has_mem_ops (g));
1343 g->gsmem.membase.vdef_ops = ops;
1347 /* Return the set of symbols loaded by statement G. Each element of the
1348 set is the DECL_UID of the corresponding symbol. */
1350 static inline bitmap
1351 gimple_loaded_syms (const_gimple g)
1353 if (!gimple_has_mem_ops (g))
1354 return NULL;
1355 return g->gsmem.membase.loads;
1359 /* Return the set of symbols stored by statement G. Each element of
1360 the set is the DECL_UID of the corresponding symbol. */
1362 static inline bitmap
1363 gimple_stored_syms (const_gimple g)
1365 if (!gimple_has_mem_ops (g))
1366 return NULL;
1367 return g->gsmem.membase.stores;
1371 /* Return true if statement G has operands and the modified field has
1372 been set. */
1374 static inline bool
1375 gimple_modified_p (const_gimple g)
1377 return (gimple_has_ops (g)) ? (bool) g->gsbase.modified : false;
1380 /* Return the type of the main expression computed by STMT. Return
1381 void_type_node if the statement computes nothing. */
1383 static inline tree
1384 gimple_expr_type (const_gimple stmt)
1386 enum gimple_code code = gimple_code (stmt);
1388 if (code == GIMPLE_ASSIGN || code == GIMPLE_CALL)
1390 tree type = TREE_TYPE (gimple_get_lhs (stmt));
1391 /* Integral sub-types are never the type of the expression,
1392 but they still can be the type of the result as the base
1393 type (in which expressions are computed) is trivially
1394 convertible to one of its sub-types. So always return
1395 the base type here. */
1396 if (INTEGRAL_TYPE_P (type)
1397 && TREE_TYPE (type))
1398 type = TREE_TYPE (type);
1399 return type;
1401 else if (code == GIMPLE_COND)
1402 return boolean_type_node;
1403 else
1404 return void_type_node;
1408 /* Return the tree code for the expression computed by STMT. This is
1409 only valid for GIMPLE_COND, GIMPLE_CALL and GIMPLE_ASSIGN. For
1410 GIMPLE_CALL, return CALL_EXPR as the expression code for
1411 consistency. This is useful when the caller needs to deal with the
1412 three kinds of computation that GIMPLE supports. */
1414 static inline enum tree_code
1415 gimple_expr_code (const_gimple stmt)
1417 enum gimple_code code = gimple_code (stmt);
1418 if (code == GIMPLE_ASSIGN || code == GIMPLE_COND)
1419 return (enum tree_code) stmt->gsbase.subcode;
1420 else if (code == GIMPLE_CALL)
1421 return CALL_EXPR;
1422 else
1423 gcc_unreachable ();
1427 /* Mark statement S as modified, and update it. */
1429 static inline void
1430 update_stmt (gimple s)
1432 if (gimple_has_ops (s))
1434 gimple_set_modified (s, true);
1435 update_stmt_operands (s);
1439 /* Update statement S if it has been optimized. */
1441 static inline void
1442 update_stmt_if_modified (gimple s)
1444 if (gimple_modified_p (s))
1445 update_stmt_operands (s);
1448 /* Return true if statement STMT contains volatile operands. */
1450 static inline bool
1451 gimple_has_volatile_ops (const_gimple stmt)
1453 if (gimple_has_mem_ops (stmt))
1454 return stmt->gsbase.has_volatile_ops;
1455 else
1456 return false;
1460 /* Set the HAS_VOLATILE_OPS flag to VOLATILEP. */
1462 static inline void
1463 gimple_set_has_volatile_ops (gimple stmt, bool volatilep)
1465 if (gimple_has_mem_ops (stmt))
1466 stmt->gsbase.has_volatile_ops = (unsigned) volatilep;
1470 /* Return true if statement STMT may access memory. */
1472 static inline bool
1473 gimple_references_memory_p (gimple stmt)
1475 return gimple_has_mem_ops (stmt) && stmt->gsbase.references_memory_p;
1479 /* Set the REFERENCES_MEMORY_P flag for STMT to MEM_P. */
1481 static inline void
1482 gimple_set_references_memory (gimple stmt, bool mem_p)
1484 if (gimple_has_mem_ops (stmt))
1485 stmt->gsbase.references_memory_p = (unsigned) mem_p;
1488 /* Return the subcode for OMP statement S. */
1490 static inline unsigned
1491 gimple_omp_subcode (const_gimple s)
1493 gcc_assert (gimple_code (s) >= GIMPLE_OMP_ATOMIC_LOAD
1494 && gimple_code (s) <= GIMPLE_OMP_SINGLE);
1495 return s->gsbase.subcode;
1498 /* Set the subcode for OMP statement S to SUBCODE. */
1500 static inline void
1501 gimple_omp_set_subcode (gimple s, unsigned int subcode)
1503 /* We only have 16 bits for the subcode. Assert that we are not
1504 overflowing it. */
1505 gcc_assert (subcode < (1 << 16));
1506 s->gsbase.subcode = subcode;
1509 /* Set the nowait flag on OMP_RETURN statement S. */
1511 static inline void
1512 gimple_omp_return_set_nowait (gimple s)
1514 GIMPLE_CHECK (s, GIMPLE_OMP_RETURN);
1515 s->gsbase.subcode |= GF_OMP_RETURN_NOWAIT;
1519 /* Return true if OMP return statement G has the GF_OMP_RETURN_NOWAIT
1520 flag set. */
1522 static inline bool
1523 gimple_omp_return_nowait_p (const_gimple g)
1525 GIMPLE_CHECK (g, GIMPLE_OMP_RETURN);
1526 return (gimple_omp_subcode (g) & GF_OMP_RETURN_NOWAIT) != 0;
1530 /* Return true if OMP section statement G has the GF_OMP_SECTION_LAST
1531 flag set. */
1533 static inline bool
1534 gimple_omp_section_last_p (const_gimple g)
1536 GIMPLE_CHECK (g, GIMPLE_OMP_SECTION);
1537 return (gimple_omp_subcode (g) & GF_OMP_SECTION_LAST) != 0;
1541 /* Set the GF_OMP_SECTION_LAST flag on G. */
1543 static inline void
1544 gimple_omp_section_set_last (gimple g)
1546 GIMPLE_CHECK (g, GIMPLE_OMP_SECTION);
1547 g->gsbase.subcode |= GF_OMP_SECTION_LAST;
1551 /* Return true if OMP parallel statement G has the
1552 GF_OMP_PARALLEL_COMBINED flag set. */
1554 static inline bool
1555 gimple_omp_parallel_combined_p (const_gimple g)
1557 GIMPLE_CHECK (g, GIMPLE_OMP_PARALLEL);
1558 return (gimple_omp_subcode (g) & GF_OMP_PARALLEL_COMBINED) != 0;
1562 /* Set the GF_OMP_PARALLEL_COMBINED field in G depending on the boolean
1563 value of COMBINED_P. */
1565 static inline void
1566 gimple_omp_parallel_set_combined_p (gimple g, bool combined_p)
1568 GIMPLE_CHECK (g, GIMPLE_OMP_PARALLEL);
1569 if (combined_p)
1570 g->gsbase.subcode |= GF_OMP_PARALLEL_COMBINED;
1571 else
1572 g->gsbase.subcode &= ~GF_OMP_PARALLEL_COMBINED;
1576 /* Return the number of operands for statement GS. */
1578 static inline unsigned
1579 gimple_num_ops (const_gimple gs)
1581 return gs->gsbase.num_ops;
1585 /* Set the number of operands for statement GS. */
1587 static inline void
1588 gimple_set_num_ops (gimple gs, unsigned num_ops)
1590 gs->gsbase.num_ops = num_ops;
1594 /* Return the array of operands for statement GS. */
1596 static inline tree *
1597 gimple_ops (gimple gs)
1599 /* Offset in bytes to the location of the operand vector in every
1600 tuple structure. Defined in gimple.c */
1601 extern size_t const gimple_ops_offset_[];
1603 if (!gimple_has_ops (gs))
1604 return NULL;
1606 /* All the tuples have their operand vector at the very bottom
1607 of the structure. */
1608 return ((tree *) ((char *) gs + gimple_ops_offset_[gimple_code (gs)]));
1612 /* Return operand I for statement GS. */
1614 static inline tree
1615 gimple_op (const_gimple gs, unsigned i)
1617 if (gimple_has_ops (gs))
1619 gcc_assert (i < gimple_num_ops (gs));
1620 return gimple_ops (CONST_CAST_GIMPLE (gs))[i];
1622 else
1623 return NULL_TREE;
1626 /* Return a pointer to operand I for statement GS. */
1628 static inline tree *
1629 gimple_op_ptr (const_gimple gs, unsigned i)
1631 if (gimple_has_ops (gs))
1633 gcc_assert (i < gimple_num_ops (gs));
1634 return gimple_ops (CONST_CAST_GIMPLE (gs)) + i;
1636 else
1637 return NULL;
1640 /* Set operand I of statement GS to OP. */
1642 static inline void
1643 gimple_set_op (gimple gs, unsigned i, tree op)
1645 gcc_assert (gimple_has_ops (gs) && i < gimple_num_ops (gs));
1647 /* Note. It may be tempting to assert that OP matches
1648 is_gimple_operand, but that would be wrong. Different tuples
1649 accept slightly different sets of tree operands. Each caller
1650 should perform its own validation. */
1651 gimple_ops (gs)[i] = op;
1654 /* Return true if GS is a GIMPLE_ASSIGN. */
1656 static inline bool
1657 is_gimple_assign (const_gimple gs)
1659 return gimple_code (gs) == GIMPLE_ASSIGN;
1662 /* Determine if expression CODE is one of the valid expressions that can
1663 be used on the RHS of GIMPLE assignments. */
1665 static inline enum gimple_rhs_class
1666 get_gimple_rhs_class (enum tree_code code)
1668 return (enum gimple_rhs_class) gimple_rhs_class_table[(int) code];
1671 /* Return the LHS of assignment statement GS. */
1673 static inline tree
1674 gimple_assign_lhs (const_gimple gs)
1676 GIMPLE_CHECK (gs, GIMPLE_ASSIGN);
1677 return gimple_op (gs, 0);
1681 /* Return a pointer to the LHS of assignment statement GS. */
1683 static inline tree *
1684 gimple_assign_lhs_ptr (const_gimple gs)
1686 GIMPLE_CHECK (gs, GIMPLE_ASSIGN);
1687 return gimple_op_ptr (gs, 0);
1691 /* Set LHS to be the LHS operand of assignment statement GS. */
1693 static inline void
1694 gimple_assign_set_lhs (gimple gs, tree lhs)
1696 GIMPLE_CHECK (gs, GIMPLE_ASSIGN);
1697 gcc_assert (is_gimple_operand (lhs));
1698 gimple_set_op (gs, 0, lhs);
1700 if (lhs && TREE_CODE (lhs) == SSA_NAME)
1701 SSA_NAME_DEF_STMT (lhs) = gs;
1705 /* Return the first operand on the RHS of assignment statement GS. */
1707 static inline tree
1708 gimple_assign_rhs1 (const_gimple gs)
1710 GIMPLE_CHECK (gs, GIMPLE_ASSIGN);
1711 return gimple_op (gs, 1);
1715 /* Return a pointer to the first operand on the RHS of assignment
1716 statement GS. */
1718 static inline tree *
1719 gimple_assign_rhs1_ptr (const_gimple gs)
1721 GIMPLE_CHECK (gs, GIMPLE_ASSIGN);
1722 return gimple_op_ptr (gs, 1);
1725 /* Set RHS to be the first operand on the RHS of assignment statement GS. */
1727 static inline void
1728 gimple_assign_set_rhs1 (gimple gs, tree rhs)
1730 GIMPLE_CHECK (gs, GIMPLE_ASSIGN);
1732 /* If there are 3 or more operands, the 2 operands on the RHS must be
1733 GIMPLE values. */
1734 if (gimple_num_ops (gs) >= 3)
1735 gcc_assert (is_gimple_val (rhs));
1736 else
1737 gcc_assert (is_gimple_operand (rhs));
1739 gimple_set_op (gs, 1, rhs);
1743 /* Return the second operand on the RHS of assignment statement GS.
1744 If GS does not have two operands, NULL is returned instead. */
1746 static inline tree
1747 gimple_assign_rhs2 (const_gimple gs)
1749 GIMPLE_CHECK (gs, GIMPLE_ASSIGN);
1751 if (gimple_num_ops (gs) >= 3)
1752 return gimple_op (gs, 2);
1753 else
1754 return NULL_TREE;
1758 /* Return a pointer to the second operand on the RHS of assignment
1759 statement GS. */
1761 static inline tree *
1762 gimple_assign_rhs2_ptr (const_gimple gs)
1764 GIMPLE_CHECK (gs, GIMPLE_ASSIGN);
1765 return gimple_op_ptr (gs, 2);
1769 /* Set RHS to be the second operand on the RHS of assignment statement GS. */
1771 static inline void
1772 gimple_assign_set_rhs2 (gimple gs, tree rhs)
1774 GIMPLE_CHECK (gs, GIMPLE_ASSIGN);
1776 /* The 2 operands on the RHS must be GIMPLE values. */
1777 gcc_assert (is_gimple_val (rhs));
1779 gimple_set_op (gs, 2, rhs);
1782 /* Returns true if GS is a nontemporal move. */
1784 static inline bool
1785 gimple_assign_nontemporal_move_p (const_gimple gs)
1787 GIMPLE_CHECK (gs, GIMPLE_ASSIGN);
1788 return gs->gsbase.nontemporal_move;
1791 /* Sets nontemporal move flag of GS to NONTEMPORAL. */
1793 static inline void
1794 gimple_assign_set_nontemporal_move (gimple gs, bool nontemporal)
1796 GIMPLE_CHECK (gs, GIMPLE_ASSIGN);
1797 gs->gsbase.nontemporal_move = nontemporal;
1801 /* Return the code of the expression computed on the rhs of assignment
1802 statement GS. In case that the RHS is a single object, returns the
1803 tree code of the object. */
1805 static inline enum tree_code
1806 gimple_assign_rhs_code (const_gimple gs)
1808 enum tree_code code;
1809 GIMPLE_CHECK (gs, GIMPLE_ASSIGN);
1811 code = gimple_expr_code (gs);
1812 if (get_gimple_rhs_class (code) == GIMPLE_SINGLE_RHS)
1813 code = TREE_CODE (gimple_assign_rhs1 (gs));
1815 return code;
1819 /* Set CODE to be the code for the expression computed on the RHS of
1820 assignment S. */
1822 static inline void
1823 gimple_assign_set_rhs_code (gimple s, enum tree_code code)
1825 GIMPLE_CHECK (s, GIMPLE_ASSIGN);
1826 s->gsbase.subcode = code;
1830 /* Return true if S is a type-cast assignment. */
1832 static inline bool
1833 gimple_assign_cast_p (gimple s)
1835 if (is_gimple_assign (s))
1837 enum tree_code sc = gimple_assign_rhs_code (s);
1838 return sc == NOP_EXPR
1839 || sc == CONVERT_EXPR
1840 || sc == VIEW_CONVERT_EXPR
1841 || sc == FIX_TRUNC_EXPR;
1844 return false;
1848 /* Return true if GS is a GIMPLE_CALL. */
1850 static inline bool
1851 is_gimple_call (const_gimple gs)
1853 return gimple_code (gs) == GIMPLE_CALL;
1856 /* Return the LHS of call statement GS. */
1858 static inline tree
1859 gimple_call_lhs (const_gimple gs)
1861 GIMPLE_CHECK (gs, GIMPLE_CALL);
1862 return gimple_op (gs, 0);
1866 /* Return a pointer to the LHS of call statement GS. */
1868 static inline tree *
1869 gimple_call_lhs_ptr (const_gimple gs)
1871 GIMPLE_CHECK (gs, GIMPLE_CALL);
1872 return gimple_op_ptr (gs, 0);
1876 /* Set LHS to be the LHS operand of call statement GS. */
1878 static inline void
1879 gimple_call_set_lhs (gimple gs, tree lhs)
1881 GIMPLE_CHECK (gs, GIMPLE_CALL);
1882 gcc_assert (!lhs || is_gimple_operand (lhs));
1883 gimple_set_op (gs, 0, lhs);
1884 if (lhs && TREE_CODE (lhs) == SSA_NAME)
1885 SSA_NAME_DEF_STMT (lhs) = gs;
1889 /* Return the tree node representing the function called by call
1890 statement GS. This may or may not be a FUNCTION_DECL node. */
1892 static inline tree
1893 gimple_call_fn (const_gimple gs)
1895 GIMPLE_CHECK (gs, GIMPLE_CALL);
1896 return gimple_op (gs, 1);
1900 /* Return a pointer to the tree node representing the function called by call
1901 statement GS. */
1903 static inline tree *
1904 gimple_call_fn_ptr (const_gimple gs)
1906 GIMPLE_CHECK (gs, GIMPLE_CALL);
1907 return gimple_op_ptr (gs, 1);
1911 /* Set FN to be the function called by call statement GS. */
1913 static inline void
1914 gimple_call_set_fn (gimple gs, tree fn)
1916 GIMPLE_CHECK (gs, GIMPLE_CALL);
1917 gcc_assert (is_gimple_operand (fn));
1918 gimple_set_op (gs, 1, fn);
1922 /* If a given GIMPLE_CALL's callee is a FUNCTION_DECL, return it.
1923 Otherwise return NULL. This function is analogous to
1924 get_callee_fndecl in tree land. */
1926 static inline tree
1927 gimple_call_fndecl (const_gimple gs)
1929 tree decl = gimple_call_fn (gs);
1930 return (TREE_CODE (decl) == FUNCTION_DECL) ? decl : NULL_TREE;
1934 /* Return the type returned by call statement GS. */
1936 static inline tree
1937 gimple_call_return_type (const_gimple gs)
1939 tree fn = gimple_call_fn (gs);
1940 tree type = TREE_TYPE (fn);
1942 /* See through pointers. */
1943 if (POINTER_TYPE_P (type))
1944 type = TREE_TYPE (type);
1946 gcc_assert (TREE_CODE (type) == FUNCTION_TYPE
1947 || TREE_CODE (type) == METHOD_TYPE);
1949 /* The type returned by a FUNCTION_DECL is the type of its
1950 function type. */
1951 return TREE_TYPE (type);
1955 /* Return the static chain for call statement GS. */
1957 static inline tree
1958 gimple_call_chain (const_gimple gs)
1960 GIMPLE_CHECK (gs, GIMPLE_CALL);
1961 return gimple_op (gs, 2);
1965 /* Return a pointer to the static chain for call statement GS. */
1967 static inline tree *
1968 gimple_call_chain_ptr (const_gimple gs)
1970 GIMPLE_CHECK (gs, GIMPLE_CALL);
1971 return gimple_op_ptr (gs, 2);
1974 /* Set CHAIN to be the static chain for call statement GS. */
1976 static inline void
1977 gimple_call_set_chain (gimple gs, tree chain)
1979 GIMPLE_CHECK (gs, GIMPLE_CALL);
1980 gcc_assert (chain == NULL
1981 || TREE_CODE (chain) == ADDR_EXPR
1982 || DECL_P (chain));
1983 gimple_set_op (gs, 2, chain);
1987 /* Return the number of arguments used by call statement GS. */
1989 static inline unsigned
1990 gimple_call_num_args (const_gimple gs)
1992 unsigned num_ops;
1993 GIMPLE_CHECK (gs, GIMPLE_CALL);
1994 num_ops = gimple_num_ops (gs);
1995 gcc_assert (num_ops >= 3);
1996 return num_ops - 3;
2000 /* Return the argument at position INDEX for call statement GS. */
2002 static inline tree
2003 gimple_call_arg (const_gimple gs, unsigned index)
2005 GIMPLE_CHECK (gs, GIMPLE_CALL);
2006 return gimple_op (gs, index + 3);
2010 /* Return a pointer to the argument at position INDEX for call
2011 statement GS. */
2013 static inline tree *
2014 gimple_call_arg_ptr (const_gimple gs, unsigned index)
2016 GIMPLE_CHECK (gs, GIMPLE_CALL);
2017 return gimple_op_ptr (gs, index + 3);
2021 /* Set ARG to be the argument at position INDEX for call statement GS. */
2023 static inline void
2024 gimple_call_set_arg (gimple gs, unsigned index, tree arg)
2026 GIMPLE_CHECK (gs, GIMPLE_CALL);
2027 gcc_assert (is_gimple_operand (arg));
2028 gimple_set_op (gs, index + 3, arg);
2032 /* If TAIL_P is true, mark call statement S as being a tail call
2033 (i.e., a call just before the exit of a function). These calls are
2034 candidate for tail call optimization. */
2036 static inline void
2037 gimple_call_set_tail (gimple s, bool tail_p)
2039 GIMPLE_CHECK (s, GIMPLE_CALL);
2040 if (tail_p)
2041 s->gsbase.subcode |= GF_CALL_TAILCALL;
2042 else
2043 s->gsbase.subcode &= ~GF_CALL_TAILCALL;
2047 /* Return true if GIMPLE_CALL S is marked as a tail call. */
2049 static inline bool
2050 gimple_call_tail_p (gimple s)
2052 GIMPLE_CHECK (s, GIMPLE_CALL);
2053 return (s->gsbase.subcode & GF_CALL_TAILCALL) != 0;
2057 /* Set the inlinable status of GIMPLE_CALL S to INLINABLE_P. */
2059 static inline void
2060 gimple_call_set_cannot_inline (gimple s, bool inlinable_p)
2062 GIMPLE_CHECK (s, GIMPLE_CALL);
2063 if (inlinable_p)
2064 s->gsbase.subcode |= GF_CALL_CANNOT_INLINE;
2065 else
2066 s->gsbase.subcode &= ~GF_CALL_CANNOT_INLINE;
2070 /* Return true if GIMPLE_CALL S cannot be inlined. */
2072 static inline bool
2073 gimple_call_cannot_inline_p (gimple s)
2075 GIMPLE_CHECK (s, GIMPLE_CALL);
2076 return (s->gsbase.subcode & GF_CALL_CANNOT_INLINE) != 0;
2080 /* If RETURN_SLOT_OPT_P is true mark GIMPLE_CALL S as valid for return
2081 slot optimization. This transformation uses the target of the call
2082 expansion as the return slot for calls that return in memory. */
2084 static inline void
2085 gimple_call_set_return_slot_opt (gimple s, bool return_slot_opt_p)
2087 GIMPLE_CHECK (s, GIMPLE_CALL);
2088 if (return_slot_opt_p)
2089 s->gsbase.subcode |= GF_CALL_RETURN_SLOT_OPT;
2090 else
2091 s->gsbase.subcode &= ~GF_CALL_RETURN_SLOT_OPT;
2095 /* Return true if S is marked for return slot optimization. */
2097 static inline bool
2098 gimple_call_return_slot_opt_p (gimple s)
2100 GIMPLE_CHECK (s, GIMPLE_CALL);
2101 return (s->gsbase.subcode & GF_CALL_RETURN_SLOT_OPT) != 0;
2105 /* If FROM_THUNK_P is true, mark GIMPLE_CALL S as being the jump from a
2106 thunk to the thunked-to function. */
2108 static inline void
2109 gimple_call_set_from_thunk (gimple s, bool from_thunk_p)
2111 GIMPLE_CHECK (s, GIMPLE_CALL);
2112 if (from_thunk_p)
2113 s->gsbase.subcode |= GF_CALL_FROM_THUNK;
2114 else
2115 s->gsbase.subcode &= ~GF_CALL_FROM_THUNK;
2119 /* Return true if GIMPLE_CALL S is a jump from a thunk. */
2121 static inline bool
2122 gimple_call_from_thunk_p (gimple s)
2124 GIMPLE_CHECK (s, GIMPLE_CALL);
2125 return (s->gsbase.subcode & GF_CALL_FROM_THUNK) != 0;
2129 /* If PASS_ARG_PACK_P is true, GIMPLE_CALL S is a stdarg call that needs the
2130 argument pack in its argument list. */
2132 static inline void
2133 gimple_call_set_va_arg_pack (gimple s, bool pass_arg_pack_p)
2135 GIMPLE_CHECK (s, GIMPLE_CALL);
2136 if (pass_arg_pack_p)
2137 s->gsbase.subcode |= GF_CALL_VA_ARG_PACK;
2138 else
2139 s->gsbase.subcode &= ~GF_CALL_VA_ARG_PACK;
2143 /* Return true if GIMPLE_CALL S is a stdarg call that needs the
2144 argument pack in its argument list. */
2146 static inline bool
2147 gimple_call_va_arg_pack_p (gimple s)
2149 GIMPLE_CHECK (s, GIMPLE_CALL);
2150 return (s->gsbase.subcode & GF_CALL_VA_ARG_PACK) != 0;
2154 /* Return true if S is a noreturn call. */
2156 static inline bool
2157 gimple_call_noreturn_p (gimple s)
2159 GIMPLE_CHECK (s, GIMPLE_CALL);
2160 return (gimple_call_flags (s) & ECF_NORETURN) != 0;
2164 /* Return true if S is a nothrow call. */
2166 static inline bool
2167 gimple_call_nothrow_p (gimple s)
2169 GIMPLE_CHECK (s, GIMPLE_CALL);
2170 return (gimple_call_flags (s) & ECF_NOTHROW) != 0;
2174 /* Copy all the GF_CALL_* flags from ORIG_CALL to DEST_CALL. */
2176 static inline void
2177 gimple_call_copy_flags (gimple dest_call, gimple orig_call)
2179 GIMPLE_CHECK (dest_call, GIMPLE_CALL);
2180 GIMPLE_CHECK (orig_call, GIMPLE_CALL);
2181 dest_call->gsbase.subcode = orig_call->gsbase.subcode;
2185 /* Returns true if this is a GIMPLE_ASSIGN or a GIMPLE_CALL with a
2186 non-NULL lhs. */
2188 static inline bool
2189 gimple_has_lhs (gimple stmt)
2191 return (is_gimple_assign (stmt)
2192 || (is_gimple_call (stmt)
2193 && gimple_call_lhs (stmt) != NULL_TREE));
2197 /* Return the code of the predicate computed by conditional statement GS. */
2199 static inline enum tree_code
2200 gimple_cond_code (const_gimple gs)
2202 GIMPLE_CHECK (gs, GIMPLE_COND);
2203 return gs->gsbase.subcode;
2207 /* Set CODE to be the predicate code for the conditional statement GS. */
2209 static inline void
2210 gimple_cond_set_code (gimple gs, enum tree_code code)
2212 GIMPLE_CHECK (gs, GIMPLE_COND);
2213 gcc_assert (TREE_CODE_CLASS (code) == tcc_comparison);
2214 gs->gsbase.subcode = code;
2218 /* Return the LHS of the predicate computed by conditional statement GS. */
2220 static inline tree
2221 gimple_cond_lhs (const_gimple gs)
2223 GIMPLE_CHECK (gs, GIMPLE_COND);
2224 return gimple_op (gs, 0);
2227 /* Return the pointer to the LHS of the predicate computed by conditional
2228 statement GS. */
2230 static inline tree *
2231 gimple_cond_lhs_ptr (const_gimple gs)
2233 GIMPLE_CHECK (gs, GIMPLE_COND);
2234 return gimple_op_ptr (gs, 0);
2237 /* Set LHS to be the LHS operand of the predicate computed by
2238 conditional statement GS. */
2240 static inline void
2241 gimple_cond_set_lhs (gimple gs, tree lhs)
2243 GIMPLE_CHECK (gs, GIMPLE_COND);
2244 gcc_assert (is_gimple_operand (lhs));
2245 gimple_set_op (gs, 0, lhs);
2249 /* Return the RHS operand of the predicate computed by conditional GS. */
2251 static inline tree
2252 gimple_cond_rhs (const_gimple gs)
2254 GIMPLE_CHECK (gs, GIMPLE_COND);
2255 return gimple_op (gs, 1);
2258 /* Return the pointer to the RHS operand of the predicate computed by
2259 conditional GS. */
2261 static inline tree *
2262 gimple_cond_rhs_ptr (const_gimple gs)
2264 GIMPLE_CHECK (gs, GIMPLE_COND);
2265 return gimple_op_ptr (gs, 1);
2269 /* Set RHS to be the RHS operand of the predicate computed by
2270 conditional statement GS. */
2272 static inline void
2273 gimple_cond_set_rhs (gimple gs, tree rhs)
2275 GIMPLE_CHECK (gs, GIMPLE_COND);
2276 gcc_assert (is_gimple_operand (rhs));
2277 gimple_set_op (gs, 1, rhs);
2281 /* Return the label used by conditional statement GS when its
2282 predicate evaluates to true. */
2284 static inline tree
2285 gimple_cond_true_label (const_gimple gs)
2287 GIMPLE_CHECK (gs, GIMPLE_COND);
2288 return gimple_op (gs, 2);
2292 /* Set LABEL to be the label used by conditional statement GS when its
2293 predicate evaluates to true. */
2295 static inline void
2296 gimple_cond_set_true_label (gimple gs, tree label)
2298 GIMPLE_CHECK (gs, GIMPLE_COND);
2299 gcc_assert (!label || TREE_CODE (label) == LABEL_DECL);
2300 gimple_set_op (gs, 2, label);
2304 /* Set LABEL to be the label used by conditional statement GS when its
2305 predicate evaluates to false. */
2307 static inline void
2308 gimple_cond_set_false_label (gimple gs, tree label)
2310 GIMPLE_CHECK (gs, GIMPLE_COND);
2311 gcc_assert (!label || TREE_CODE (label) == LABEL_DECL);
2312 gimple_set_op (gs, 3, label);
2316 /* Return the label used by conditional statement GS when its
2317 predicate evaluates to false. */
2319 static inline tree
2320 gimple_cond_false_label (const_gimple gs)
2322 GIMPLE_CHECK (gs, GIMPLE_COND);
2323 return gimple_op (gs, 3);
2327 /* Set the conditional COND_STMT to be of the form 'if (1 == 0)'. */
2329 static inline void
2330 gimple_cond_make_false (gimple gs)
2332 gimple_cond_set_lhs (gs, boolean_true_node);
2333 gimple_cond_set_rhs (gs, boolean_false_node);
2334 gs->gsbase.subcode = EQ_EXPR;
2338 /* Set the conditional COND_STMT to be of the form 'if (1 == 1)'. */
2340 static inline void
2341 gimple_cond_make_true (gimple gs)
2343 gimple_cond_set_lhs (gs, boolean_true_node);
2344 gimple_cond_set_rhs (gs, boolean_true_node);
2345 gs->gsbase.subcode = EQ_EXPR;
2348 /* Check if conditional statemente GS is of the form 'if (1 == 1)',
2349 'if (0 == 0)', 'if (1 != 0)' or 'if (0 != 1)' */
2351 static inline bool
2352 gimple_cond_true_p (const_gimple gs)
2354 tree lhs = gimple_cond_lhs (gs);
2355 tree rhs = gimple_cond_rhs (gs);
2356 enum tree_code code = gimple_cond_code (gs);
2358 if (lhs != boolean_true_node && lhs != boolean_false_node)
2359 return false;
2361 if (rhs != boolean_true_node && rhs != boolean_false_node)
2362 return false;
2364 if (code == NE_EXPR && lhs != rhs)
2365 return true;
2367 if (code == EQ_EXPR && lhs == rhs)
2368 return true;
2370 return false;
2373 /* Check if conditional statement GS is of the form 'if (1 != 1)',
2374 'if (0 != 0)', 'if (1 == 0)' or 'if (0 == 1)' */
2376 static inline bool
2377 gimple_cond_false_p (const_gimple gs)
2379 tree lhs = gimple_cond_lhs (gs);
2380 tree rhs = gimple_cond_rhs (gs);
2381 enum tree_code code = gimple_cond_code (gs);
2383 if (lhs != boolean_true_node && lhs != boolean_false_node)
2384 return false;
2386 if (rhs != boolean_true_node && rhs != boolean_false_node)
2387 return false;
2389 if (code == NE_EXPR && lhs == rhs)
2390 return true;
2392 if (code == EQ_EXPR && lhs != rhs)
2393 return true;
2395 return false;
2398 /* Check if conditional statement GS is of the form 'if (var != 0)' or
2399 'if (var == 1)' */
2401 static inline bool
2402 gimple_cond_single_var_p (gimple gs)
2404 if (gimple_cond_code (gs) == NE_EXPR
2405 && gimple_cond_rhs (gs) == boolean_false_node)
2406 return true;
2408 if (gimple_cond_code (gs) == EQ_EXPR
2409 && gimple_cond_rhs (gs) == boolean_true_node)
2410 return true;
2412 return false;
2415 /* Set the code, LHS and RHS of GIMPLE_COND STMT from CODE, LHS and RHS. */
2417 static inline void
2418 gimple_cond_set_condition (gimple stmt, enum tree_code code, tree lhs, tree rhs)
2420 gimple_cond_set_code (stmt, code);
2421 gimple_cond_set_lhs (stmt, lhs);
2422 gimple_cond_set_rhs (stmt, rhs);
2425 /* Return the LABEL_DECL node used by GIMPLE_LABEL statement GS. */
2427 static inline tree
2428 gimple_label_label (const_gimple gs)
2430 GIMPLE_CHECK (gs, GIMPLE_LABEL);
2431 return gimple_op (gs, 0);
2435 /* Set LABEL to be the LABEL_DECL node used by GIMPLE_LABEL statement
2436 GS. */
2438 static inline void
2439 gimple_label_set_label (gimple gs, tree label)
2441 GIMPLE_CHECK (gs, GIMPLE_LABEL);
2442 gcc_assert (TREE_CODE (label) == LABEL_DECL);
2443 gimple_set_op (gs, 0, label);
2447 /* Return the destination of the unconditional jump GS. */
2449 static inline tree
2450 gimple_goto_dest (const_gimple gs)
2452 GIMPLE_CHECK (gs, GIMPLE_GOTO);
2453 return gimple_op (gs, 0);
2457 /* Set DEST to be the destination of the unconditonal jump GS. */
2459 static inline void
2460 gimple_goto_set_dest (gimple gs, tree dest)
2462 GIMPLE_CHECK (gs, GIMPLE_GOTO);
2463 gcc_assert (is_gimple_operand (dest));
2464 gimple_set_op (gs, 0, dest);
2468 /* Return the variables declared in the GIMPLE_BIND statement GS. */
2470 static inline tree
2471 gimple_bind_vars (const_gimple gs)
2473 GIMPLE_CHECK (gs, GIMPLE_BIND);
2474 return gs->gimple_bind.vars;
2478 /* Set VARS to be the set of variables declared in the GIMPLE_BIND
2479 statement GS. */
2481 static inline void
2482 gimple_bind_set_vars (gimple gs, tree vars)
2484 GIMPLE_CHECK (gs, GIMPLE_BIND);
2485 gs->gimple_bind.vars = vars;
2489 /* Append VARS to the set of variables declared in the GIMPLE_BIND
2490 statement GS. */
2492 static inline void
2493 gimple_bind_append_vars (gimple gs, tree vars)
2495 GIMPLE_CHECK (gs, GIMPLE_BIND);
2496 gs->gimple_bind.vars = chainon (gs->gimple_bind.vars, vars);
2500 /* Return the GIMPLE sequence contained in the GIMPLE_BIND statement GS. */
2502 static inline gimple_seq
2503 gimple_bind_body (gimple gs)
2505 GIMPLE_CHECK (gs, GIMPLE_BIND);
2506 return gs->gimple_bind.body;
2510 /* Set SEQ to be the GIMPLE sequence contained in the GIMPLE_BIND
2511 statement GS. */
2513 static inline void
2514 gimple_bind_set_body (gimple gs, gimple_seq seq)
2516 GIMPLE_CHECK (gs, GIMPLE_BIND);
2517 gs->gimple_bind.body = seq;
2521 /* Append a statement to the end of a GIMPLE_BIND's body. */
2523 static inline void
2524 gimple_bind_add_stmt (gimple gs, gimple stmt)
2526 GIMPLE_CHECK (gs, GIMPLE_BIND);
2527 gimple_seq_add_stmt (&gs->gimple_bind.body, stmt);
2531 /* Append a sequence of statements to the end of a GIMPLE_BIND's body. */
2533 static inline void
2534 gimple_bind_add_seq (gimple gs, gimple_seq seq)
2536 GIMPLE_CHECK (gs, GIMPLE_BIND);
2537 gimple_seq_add_seq (&gs->gimple_bind.body, seq);
2541 /* Return the TREE_BLOCK node associated with GIMPLE_BIND statement
2542 GS. This is analogous to the BIND_EXPR_BLOCK field in trees. */
2544 static inline tree
2545 gimple_bind_block (const_gimple gs)
2547 GIMPLE_CHECK (gs, GIMPLE_BIND);
2548 return gs->gimple_bind.block;
2552 /* Set BLOCK to be the TREE_BLOCK node associated with GIMPLE_BIND
2553 statement GS. */
2555 static inline void
2556 gimple_bind_set_block (gimple gs, tree block)
2558 GIMPLE_CHECK (gs, GIMPLE_BIND);
2559 gcc_assert (TREE_CODE (block) == BLOCK);
2560 gs->gimple_bind.block = block;
2564 /* Return the number of input operands for GIMPLE_ASM GS. */
2566 static inline unsigned
2567 gimple_asm_ninputs (const_gimple gs)
2569 GIMPLE_CHECK (gs, GIMPLE_ASM);
2570 return gs->gimple_asm.ni;
2574 /* Return the number of output operands for GIMPLE_ASM GS. */
2576 static inline unsigned
2577 gimple_asm_noutputs (const_gimple gs)
2579 GIMPLE_CHECK (gs, GIMPLE_ASM);
2580 return gs->gimple_asm.no;
2584 /* Return the number of clobber operands for GIMPLE_ASM GS. */
2586 static inline unsigned
2587 gimple_asm_nclobbers (const_gimple gs)
2589 GIMPLE_CHECK (gs, GIMPLE_ASM);
2590 return gs->gimple_asm.nc;
2594 /* Return input operand INDEX of GIMPLE_ASM GS. */
2596 static inline tree
2597 gimple_asm_input_op (const_gimple gs, unsigned index)
2599 GIMPLE_CHECK (gs, GIMPLE_ASM);
2600 gcc_assert (index <= gs->gimple_asm.ni);
2601 return gimple_op (gs, index);
2604 /* Return a pointer to input operand INDEX of GIMPLE_ASM GS. */
2606 static inline tree *
2607 gimple_asm_input_op_ptr (const_gimple gs, unsigned index)
2609 GIMPLE_CHECK (gs, GIMPLE_ASM);
2610 gcc_assert (index <= gs->gimple_asm.ni);
2611 return gimple_op_ptr (gs, index);
2615 /* Set IN_OP to be input operand INDEX in GIMPLE_ASM GS. */
2617 static inline void
2618 gimple_asm_set_input_op (gimple gs, unsigned index, tree in_op)
2620 GIMPLE_CHECK (gs, GIMPLE_ASM);
2621 gcc_assert (index <= gs->gimple_asm.ni);
2622 gcc_assert (TREE_CODE (in_op) == TREE_LIST);
2623 gimple_set_op (gs, index, in_op);
2627 /* Return output operand INDEX of GIMPLE_ASM GS. */
2629 static inline tree
2630 gimple_asm_output_op (const_gimple gs, unsigned index)
2632 GIMPLE_CHECK (gs, GIMPLE_ASM);
2633 gcc_assert (index <= gs->gimple_asm.no);
2634 return gimple_op (gs, index + gs->gimple_asm.ni);
2637 /* Return a pointer to output operand INDEX of GIMPLE_ASM GS. */
2639 static inline tree *
2640 gimple_asm_output_op_ptr (const_gimple gs, unsigned index)
2642 GIMPLE_CHECK (gs, GIMPLE_ASM);
2643 gcc_assert (index <= gs->gimple_asm.no);
2644 return gimple_op_ptr (gs, index + gs->gimple_asm.ni);
2648 /* Set OUT_OP to be output operand INDEX in GIMPLE_ASM GS. */
2650 static inline void
2651 gimple_asm_set_output_op (gimple gs, unsigned index, tree out_op)
2653 GIMPLE_CHECK (gs, GIMPLE_ASM);
2654 gcc_assert (index <= gs->gimple_asm.no);
2655 gcc_assert (TREE_CODE (out_op) == TREE_LIST);
2656 gimple_set_op (gs, index + gs->gimple_asm.ni, out_op);
2660 /* Return clobber operand INDEX of GIMPLE_ASM GS. */
2662 static inline tree
2663 gimple_asm_clobber_op (const_gimple gs, unsigned index)
2665 GIMPLE_CHECK (gs, GIMPLE_ASM);
2666 gcc_assert (index <= gs->gimple_asm.nc);
2667 return gimple_op (gs, index + gs->gimple_asm.ni + gs->gimple_asm.no);
2671 /* Set CLOBBER_OP to be clobber operand INDEX in GIMPLE_ASM GS. */
2673 static inline void
2674 gimple_asm_set_clobber_op (gimple gs, unsigned index, tree clobber_op)
2676 GIMPLE_CHECK (gs, GIMPLE_ASM);
2677 gcc_assert (index <= gs->gimple_asm.nc);
2678 gcc_assert (TREE_CODE (clobber_op) == TREE_LIST);
2679 gimple_set_op (gs, index + gs->gimple_asm.ni + gs->gimple_asm.no, clobber_op);
2683 /* Return the string representing the assembly instruction in
2684 GIMPLE_ASM GS. */
2686 static inline const char *
2687 gimple_asm_string (const_gimple gs)
2689 GIMPLE_CHECK (gs, GIMPLE_ASM);
2690 return gs->gimple_asm.string;
2694 /* Return true if GS is an asm statement marked volatile. */
2696 static inline bool
2697 gimple_asm_volatile_p (const_gimple gs)
2699 GIMPLE_CHECK (gs, GIMPLE_ASM);
2700 return (gs->gsbase.subcode & GF_ASM_VOLATILE) != 0;
2704 /* If VOLATLE_P is true, mark asm statement GS as volatile. */
2706 static inline void
2707 gimple_asm_set_volatile (gimple gs, bool volatile_p)
2709 GIMPLE_CHECK (gs, GIMPLE_ASM);
2710 if (volatile_p)
2711 gs->gsbase.subcode |= GF_ASM_VOLATILE;
2712 else
2713 gs->gsbase.subcode &= ~GF_ASM_VOLATILE;
2717 /* If INPUT_P is true, mark asm GS as an ASM_INPUT. */
2719 static inline void
2720 gimple_asm_set_input (gimple gs, bool input_p)
2722 GIMPLE_CHECK (gs, GIMPLE_ASM);
2723 if (input_p)
2724 gs->gsbase.subcode |= GF_ASM_INPUT;
2725 else
2726 gs->gsbase.subcode &= ~GF_ASM_INPUT;
2730 /* Return true if asm GS is an ASM_INPUT. */
2732 static inline bool
2733 gimple_asm_input_p (const_gimple gs)
2735 GIMPLE_CHECK (gs, GIMPLE_ASM);
2736 return (gs->gsbase.subcode & GF_ASM_INPUT) != 0;
2740 /* Return the types handled by GIMPLE_CATCH statement GS. */
2742 static inline tree
2743 gimple_catch_types (const_gimple gs)
2745 GIMPLE_CHECK (gs, GIMPLE_CATCH);
2746 return gs->gimple_catch.types;
2750 /* Return a pointer to the types handled by GIMPLE_CATCH statement GS. */
2752 static inline tree *
2753 gimple_catch_types_ptr (gimple gs)
2755 GIMPLE_CHECK (gs, GIMPLE_CATCH);
2756 return &gs->gimple_catch.types;
2760 /* Return the GIMPLE sequence representing the body of the handler of
2761 GIMPLE_CATCH statement GS. */
2763 static inline gimple_seq
2764 gimple_catch_handler (gimple gs)
2766 GIMPLE_CHECK (gs, GIMPLE_CATCH);
2767 return gs->gimple_catch.handler;
2771 /* Return a pointer to the GIMPLE sequence representing the body of
2772 the handler of GIMPLE_CATCH statement GS. */
2774 static inline gimple_seq *
2775 gimple_catch_handler_ptr (gimple gs)
2777 GIMPLE_CHECK (gs, GIMPLE_CATCH);
2778 return &gs->gimple_catch.handler;
2782 /* Set T to be the set of types handled by GIMPLE_CATCH GS. */
2784 static inline void
2785 gimple_catch_set_types (gimple gs, tree t)
2787 GIMPLE_CHECK (gs, GIMPLE_CATCH);
2788 gs->gimple_catch.types = t;
2792 /* Set HANDLER to be the body of GIMPLE_CATCH GS. */
2794 static inline void
2795 gimple_catch_set_handler (gimple gs, gimple_seq handler)
2797 GIMPLE_CHECK (gs, GIMPLE_CATCH);
2798 gs->gimple_catch.handler = handler;
2802 /* Return the types handled by GIMPLE_EH_FILTER statement GS. */
2804 static inline tree
2805 gimple_eh_filter_types (const_gimple gs)
2807 GIMPLE_CHECK (gs, GIMPLE_EH_FILTER);
2808 return gs->gimple_eh_filter.types;
2812 /* Return a pointer to the types handled by GIMPLE_EH_FILTER statement
2813 GS. */
2815 static inline tree *
2816 gimple_eh_filter_types_ptr (gimple gs)
2818 GIMPLE_CHECK (gs, GIMPLE_EH_FILTER);
2819 return &gs->gimple_eh_filter.types;
2823 /* Return the sequence of statement to execute when GIMPLE_EH_FILTER
2824 statement fails. */
2826 static inline gimple_seq
2827 gimple_eh_filter_failure (gimple gs)
2829 GIMPLE_CHECK (gs, GIMPLE_EH_FILTER);
2830 return gs->gimple_eh_filter.failure;
2834 /* Set TYPES to be the set of types handled by GIMPLE_EH_FILTER GS. */
2836 static inline void
2837 gimple_eh_filter_set_types (gimple gs, tree types)
2839 GIMPLE_CHECK (gs, GIMPLE_EH_FILTER);
2840 gs->gimple_eh_filter.types = types;
2844 /* Set FAILURE to be the sequence of statements to execute on failure
2845 for GIMPLE_EH_FILTER GS. */
2847 static inline void
2848 gimple_eh_filter_set_failure (gimple gs, gimple_seq failure)
2850 GIMPLE_CHECK (gs, GIMPLE_EH_FILTER);
2851 gs->gimple_eh_filter.failure = failure;
2854 /* Return the EH_FILTER_MUST_NOT_THROW flag. */
2856 static inline bool
2858 gimple_eh_filter_must_not_throw (gimple gs)
2860 GIMPLE_CHECK (gs, GIMPLE_EH_FILTER);
2861 return gs->gsbase.subcode != 0;
2864 /* Set the EH_FILTER_MUST_NOT_THROW flag to the value MNTP. */
2866 static inline void
2867 gimple_eh_filter_set_must_not_throw (gimple gs, bool mntp)
2869 GIMPLE_CHECK (gs, GIMPLE_EH_FILTER);
2870 gs->gsbase.subcode = (unsigned int) mntp;
2874 /* GIMPLE_TRY accessors. */
2876 /* Return the kind of try block represented by GIMPLE_TRY GS. This is
2877 either GIMPLE_TRY_CATCH or GIMPLE_TRY_FINALLY. */
2879 static inline enum gimple_try_flags
2880 gimple_try_kind (const_gimple gs)
2882 GIMPLE_CHECK (gs, GIMPLE_TRY);
2883 return (enum gimple_try_flags) (gs->gsbase.subcode & GIMPLE_TRY_KIND);
2887 /* Set the kind of try block represented by GIMPLE_TRY GS. */
2889 static inline void
2890 gimple_try_set_kind (gimple gs, enum gimple_try_flags kind)
2892 GIMPLE_CHECK (gs, GIMPLE_TRY);
2893 gcc_assert (kind == GIMPLE_TRY_CATCH || kind == GIMPLE_TRY_FINALLY);
2894 if (gimple_try_kind (gs) != kind)
2895 gs->gsbase.subcode = (unsigned int) kind;
2899 /* Return the GIMPLE_TRY_CATCH_IS_CLEANUP flag. */
2901 static inline bool
2902 gimple_try_catch_is_cleanup (const_gimple gs)
2904 gcc_assert (gimple_try_kind (gs) == GIMPLE_TRY_CATCH);
2905 return (gs->gsbase.subcode & GIMPLE_TRY_CATCH_IS_CLEANUP) != 0;
2909 /* Return the sequence of statements used as the body for GIMPLE_TRY GS. */
2911 static inline gimple_seq
2912 gimple_try_eval (gimple gs)
2914 GIMPLE_CHECK (gs, GIMPLE_TRY);
2915 return gs->gimple_try.eval;
2919 /* Return the sequence of statements used as the cleanup body for
2920 GIMPLE_TRY GS. */
2922 static inline gimple_seq
2923 gimple_try_cleanup (gimple gs)
2925 GIMPLE_CHECK (gs, GIMPLE_TRY);
2926 return gs->gimple_try.cleanup;
2930 /* Set the GIMPLE_TRY_CATCH_IS_CLEANUP flag. */
2932 static inline void
2933 gimple_try_set_catch_is_cleanup (gimple g, bool catch_is_cleanup)
2935 gcc_assert (gimple_try_kind (g) == GIMPLE_TRY_CATCH);
2936 if (catch_is_cleanup)
2937 g->gsbase.subcode |= GIMPLE_TRY_CATCH_IS_CLEANUP;
2938 else
2939 g->gsbase.subcode &= ~GIMPLE_TRY_CATCH_IS_CLEANUP;
2943 /* Set EVAL to be the sequence of statements to use as the body for
2944 GIMPLE_TRY GS. */
2946 static inline void
2947 gimple_try_set_eval (gimple gs, gimple_seq eval)
2949 GIMPLE_CHECK (gs, GIMPLE_TRY);
2950 gs->gimple_try.eval = eval;
2954 /* Set CLEANUP to be the sequence of statements to use as the cleanup
2955 body for GIMPLE_TRY GS. */
2957 static inline void
2958 gimple_try_set_cleanup (gimple gs, gimple_seq cleanup)
2960 GIMPLE_CHECK (gs, GIMPLE_TRY);
2961 gs->gimple_try.cleanup = cleanup;
2965 /* Return the cleanup sequence for cleanup statement GS. */
2967 static inline gimple_seq
2968 gimple_wce_cleanup (gimple gs)
2970 GIMPLE_CHECK (gs, GIMPLE_WITH_CLEANUP_EXPR);
2971 return gs->gimple_wce.cleanup;
2975 /* Set CLEANUP to be the cleanup sequence for GS. */
2977 static inline void
2978 gimple_wce_set_cleanup (gimple gs, gimple_seq cleanup)
2980 GIMPLE_CHECK (gs, GIMPLE_WITH_CLEANUP_EXPR);
2981 gs->gimple_wce.cleanup = cleanup;
2985 /* Return the CLEANUP_EH_ONLY flag for a WCE tuple. */
2987 static inline bool
2988 gimple_wce_cleanup_eh_only (const_gimple gs)
2990 GIMPLE_CHECK (gs, GIMPLE_WITH_CLEANUP_EXPR);
2991 return gs->gsbase.subcode != 0;
2995 /* Set the CLEANUP_EH_ONLY flag for a WCE tuple. */
2997 static inline void
2998 gimple_wce_set_cleanup_eh_only (gimple gs, bool eh_only_p)
3000 GIMPLE_CHECK (gs, GIMPLE_WITH_CLEANUP_EXPR);
3001 gs->gsbase.subcode = (unsigned int) eh_only_p;
3005 /* Return the maximum number of arguments supported by GIMPLE_PHI GS. */
3007 static inline unsigned
3008 gimple_phi_capacity (const_gimple gs)
3010 GIMPLE_CHECK (gs, GIMPLE_PHI);
3011 return gs->gimple_phi.capacity;
3015 /* Return the number of arguments in GIMPLE_PHI GS. This must always
3016 be exactly the number of incoming edges for the basic block holding
3017 GS. */
3019 static inline unsigned
3020 gimple_phi_num_args (const_gimple gs)
3022 GIMPLE_CHECK (gs, GIMPLE_PHI);
3023 return gs->gimple_phi.nargs;
3027 /* Return the SSA name created by GIMPLE_PHI GS. */
3029 static inline tree
3030 gimple_phi_result (const_gimple gs)
3032 GIMPLE_CHECK (gs, GIMPLE_PHI);
3033 return gs->gimple_phi.result;
3036 /* Return a pointer to the SSA name created by GIMPLE_PHI GS. */
3038 static inline tree *
3039 gimple_phi_result_ptr (gimple gs)
3041 GIMPLE_CHECK (gs, GIMPLE_PHI);
3042 return &gs->gimple_phi.result;
3045 /* Set RESULT to be the SSA name created by GIMPLE_PHI GS. */
3047 static inline void
3048 gimple_phi_set_result (gimple gs, tree result)
3050 GIMPLE_CHECK (gs, GIMPLE_PHI);
3051 gs->gimple_phi.result = result;
3055 /* Return the PHI argument corresponding to incoming edge INDEX for
3056 GIMPLE_PHI GS. */
3058 static inline struct phi_arg_d *
3059 gimple_phi_arg (gimple gs, unsigned index)
3061 GIMPLE_CHECK (gs, GIMPLE_PHI);
3062 gcc_assert (index <= gs->gimple_phi.capacity);
3063 return &(gs->gimple_phi.args[index]);
3066 /* Set PHIARG to be the argument corresponding to incoming edge INDEX
3067 for GIMPLE_PHI GS. */
3069 static inline void
3070 gimple_phi_set_arg (gimple gs, unsigned index, struct phi_arg_d * phiarg)
3072 GIMPLE_CHECK (gs, GIMPLE_PHI);
3073 gcc_assert (index <= gs->gimple_phi.nargs);
3074 memcpy (gs->gimple_phi.args + index, phiarg, sizeof (struct phi_arg_d));
3077 /* Return the region number for GIMPLE_RESX GS. */
3079 static inline int
3080 gimple_resx_region (const_gimple gs)
3082 GIMPLE_CHECK (gs, GIMPLE_RESX);
3083 return gs->gimple_resx.region;
3086 /* Set REGION to be the region number for GIMPLE_RESX GS. */
3088 static inline void
3089 gimple_resx_set_region (gimple gs, int region)
3091 GIMPLE_CHECK (gs, GIMPLE_RESX);
3092 gs->gimple_resx.region = region;
3096 /* Return the number of labels associated with the switch statement GS. */
3098 static inline unsigned
3099 gimple_switch_num_labels (const_gimple gs)
3101 unsigned num_ops;
3102 GIMPLE_CHECK (gs, GIMPLE_SWITCH);
3103 num_ops = gimple_num_ops (gs);
3104 gcc_assert (num_ops > 1);
3105 return num_ops - 1;
3109 /* Set NLABELS to be the number of labels for the switch statement GS. */
3111 static inline void
3112 gimple_switch_set_num_labels (gimple g, unsigned nlabels)
3114 GIMPLE_CHECK (g, GIMPLE_SWITCH);
3115 gimple_set_num_ops (g, nlabels + 1);
3119 /* Return the index variable used by the switch statement GS. */
3121 static inline tree
3122 gimple_switch_index (const_gimple gs)
3124 GIMPLE_CHECK (gs, GIMPLE_SWITCH);
3125 return gimple_op (gs, 0);
3129 /* Return a pointer to the index variable for the switch statement GS. */
3131 static inline tree *
3132 gimple_switch_index_ptr (const_gimple gs)
3134 GIMPLE_CHECK (gs, GIMPLE_SWITCH);
3135 return gimple_op_ptr (gs, 0);
3139 /* Set INDEX to be the index variable for switch statement GS. */
3141 static inline void
3142 gimple_switch_set_index (gimple gs, tree index)
3144 GIMPLE_CHECK (gs, GIMPLE_SWITCH);
3145 gcc_assert (SSA_VAR_P (index) || CONSTANT_CLASS_P (index));
3146 gimple_set_op (gs, 0, index);
3150 /* Return the label numbered INDEX. The default label is 0, followed by any
3151 labels in a switch statement. */
3153 static inline tree
3154 gimple_switch_label (const_gimple gs, unsigned index)
3156 GIMPLE_CHECK (gs, GIMPLE_SWITCH);
3157 gcc_assert (gimple_num_ops (gs) > index + 1);
3158 return gimple_op (gs, index + 1);
3161 /* Set the label number INDEX to LABEL. 0 is always the default label. */
3163 static inline void
3164 gimple_switch_set_label (gimple gs, unsigned index, tree label)
3166 GIMPLE_CHECK (gs, GIMPLE_SWITCH);
3167 gcc_assert (gimple_num_ops (gs) > index + 1);
3168 gcc_assert (label == NULL_TREE || TREE_CODE (label) == CASE_LABEL_EXPR);
3169 gimple_set_op (gs, index + 1, label);
3172 /* Return the default label for a switch statement. */
3174 static inline tree
3175 gimple_switch_default_label (const_gimple gs)
3177 return gimple_switch_label (gs, 0);
3180 /* Set the default label for a switch statement. */
3182 static inline void
3183 gimple_switch_set_default_label (gimple gs, tree label)
3185 gimple_switch_set_label (gs, 0, label);
3189 /* Return the body for the OMP statement GS. */
3191 static inline gimple_seq
3192 gimple_omp_body (gimple gs)
3194 return gs->omp.body;
3197 /* Set BODY to be the body for the OMP statement GS. */
3199 static inline void
3200 gimple_omp_set_body (gimple gs, gimple_seq body)
3202 gs->omp.body = body;
3206 /* Return the name associated with OMP_CRITICAL statement GS. */
3208 static inline tree
3209 gimple_omp_critical_name (const_gimple gs)
3211 GIMPLE_CHECK (gs, GIMPLE_OMP_CRITICAL);
3212 return gs->gimple_omp_critical.name;
3216 /* Return a pointer to the name associated with OMP critical statement GS. */
3218 static inline tree *
3219 gimple_omp_critical_name_ptr (gimple gs)
3221 GIMPLE_CHECK (gs, GIMPLE_OMP_CRITICAL);
3222 return &gs->gimple_omp_critical.name;
3226 /* Set NAME to be the name associated with OMP critical statement GS. */
3228 static inline void
3229 gimple_omp_critical_set_name (gimple gs, tree name)
3231 GIMPLE_CHECK (gs, GIMPLE_OMP_CRITICAL);
3232 gs->gimple_omp_critical.name = name;
3236 /* Return the clauses associated with OMP_FOR GS. */
3238 static inline tree
3239 gimple_omp_for_clauses (const_gimple gs)
3241 GIMPLE_CHECK (gs, GIMPLE_OMP_FOR);
3242 return gs->gimple_omp_for.clauses;
3246 /* Return a pointer to the OMP_FOR GS. */
3248 static inline tree *
3249 gimple_omp_for_clauses_ptr (gimple gs)
3251 GIMPLE_CHECK (gs, GIMPLE_OMP_FOR);
3252 return &gs->gimple_omp_for.clauses;
3256 /* Set CLAUSES to be the list of clauses associated with OMP_FOR GS. */
3258 static inline void
3259 gimple_omp_for_set_clauses (gimple gs, tree clauses)
3261 GIMPLE_CHECK (gs, GIMPLE_OMP_FOR);
3262 gs->gimple_omp_for.clauses = clauses;
3266 /* Get the collapse count of OMP_FOR GS. */
3268 static inline size_t
3269 gimple_omp_for_collapse (gimple gs)
3271 GIMPLE_CHECK (gs, GIMPLE_OMP_FOR);
3272 return gs->gimple_omp_for.collapse;
3276 /* Return the index variable for OMP_FOR GS. */
3278 static inline tree
3279 gimple_omp_for_index (const_gimple gs, size_t i)
3281 GIMPLE_CHECK (gs, GIMPLE_OMP_FOR);
3282 gcc_assert (i < gs->gimple_omp_for.collapse);
3283 return gs->gimple_omp_for.iter[i].index;
3287 /* Return a pointer to the index variable for OMP_FOR GS. */
3289 static inline tree *
3290 gimple_omp_for_index_ptr (gimple gs, size_t i)
3292 GIMPLE_CHECK (gs, GIMPLE_OMP_FOR);
3293 gcc_assert (i < gs->gimple_omp_for.collapse);
3294 return &gs->gimple_omp_for.iter[i].index;
3298 /* Set INDEX to be the index variable for OMP_FOR GS. */
3300 static inline void
3301 gimple_omp_for_set_index (gimple gs, size_t i, tree index)
3303 GIMPLE_CHECK (gs, GIMPLE_OMP_FOR);
3304 gcc_assert (i < gs->gimple_omp_for.collapse);
3305 gs->gimple_omp_for.iter[i].index = index;
3309 /* Return the initial value for OMP_FOR GS. */
3311 static inline tree
3312 gimple_omp_for_initial (const_gimple gs, size_t i)
3314 GIMPLE_CHECK (gs, GIMPLE_OMP_FOR);
3315 gcc_assert (i < gs->gimple_omp_for.collapse);
3316 return gs->gimple_omp_for.iter[i].initial;
3320 /* Return a pointer to the initial value for OMP_FOR GS. */
3322 static inline tree *
3323 gimple_omp_for_initial_ptr (gimple gs, size_t i)
3325 GIMPLE_CHECK (gs, GIMPLE_OMP_FOR);
3326 gcc_assert (i < gs->gimple_omp_for.collapse);
3327 return &gs->gimple_omp_for.iter[i].initial;
3331 /* Set INITIAL to be the initial value for OMP_FOR GS. */
3333 static inline void
3334 gimple_omp_for_set_initial (gimple gs, size_t i, tree initial)
3336 GIMPLE_CHECK (gs, GIMPLE_OMP_FOR);
3337 gcc_assert (i < gs->gimple_omp_for.collapse);
3338 gs->gimple_omp_for.iter[i].initial = initial;
3342 /* Return the final value for OMP_FOR GS. */
3344 static inline tree
3345 gimple_omp_for_final (const_gimple gs, size_t i)
3347 GIMPLE_CHECK (gs, GIMPLE_OMP_FOR);
3348 gcc_assert (i < gs->gimple_omp_for.collapse);
3349 return gs->gimple_omp_for.iter[i].final;
3353 /* Return a pointer to the final value for OMP_FOR GS. */
3355 static inline tree *
3356 gimple_omp_for_final_ptr (gimple gs, size_t i)
3358 GIMPLE_CHECK (gs, GIMPLE_OMP_FOR);
3359 gcc_assert (i < gs->gimple_omp_for.collapse);
3360 return &gs->gimple_omp_for.iter[i].final;
3364 /* Set FINAL to be the final value for OMP_FOR GS. */
3366 static inline void
3367 gimple_omp_for_set_final (gimple gs, size_t i, tree final)
3369 GIMPLE_CHECK (gs, GIMPLE_OMP_FOR);
3370 gcc_assert (i < gs->gimple_omp_for.collapse);
3371 gs->gimple_omp_for.iter[i].final = final;
3375 /* Return the increment value for OMP_FOR GS. */
3377 static inline tree
3378 gimple_omp_for_incr (const_gimple gs, size_t i)
3380 GIMPLE_CHECK (gs, GIMPLE_OMP_FOR);
3381 gcc_assert (i < gs->gimple_omp_for.collapse);
3382 return gs->gimple_omp_for.iter[i].incr;
3386 /* Return a pointer to the increment value for OMP_FOR GS. */
3388 static inline tree *
3389 gimple_omp_for_incr_ptr (gimple gs, size_t i)
3391 GIMPLE_CHECK (gs, GIMPLE_OMP_FOR);
3392 gcc_assert (i < gs->gimple_omp_for.collapse);
3393 return &gs->gimple_omp_for.iter[i].incr;
3397 /* Set INCR to be the increment value for OMP_FOR GS. */
3399 static inline void
3400 gimple_omp_for_set_incr (gimple gs, size_t i, tree incr)
3402 GIMPLE_CHECK (gs, GIMPLE_OMP_FOR);
3403 gcc_assert (i < gs->gimple_omp_for.collapse);
3404 gs->gimple_omp_for.iter[i].incr = incr;
3408 /* Return the sequence of statements to execute before the OMP_FOR
3409 statement GS starts. */
3411 static inline gimple_seq
3412 gimple_omp_for_pre_body (gimple gs)
3414 GIMPLE_CHECK (gs, GIMPLE_OMP_FOR);
3415 return gs->gimple_omp_for.pre_body;
3419 /* Set PRE_BODY to be the sequence of statements to execute before the
3420 OMP_FOR statement GS starts. */
3422 static inline void
3423 gimple_omp_for_set_pre_body (gimple gs, gimple_seq pre_body)
3425 GIMPLE_CHECK (gs, GIMPLE_OMP_FOR);
3426 gs->gimple_omp_for.pre_body = pre_body;
3430 /* Return the clauses associated with OMP_PARALLEL GS. */
3432 static inline tree
3433 gimple_omp_parallel_clauses (const_gimple gs)
3435 GIMPLE_CHECK (gs, GIMPLE_OMP_PARALLEL);
3436 return gs->gimple_omp_parallel.clauses;
3440 /* Return a pointer to the clauses associated with OMP_PARALLEL GS. */
3442 static inline tree *
3443 gimple_omp_parallel_clauses_ptr (gimple gs)
3445 GIMPLE_CHECK (gs, GIMPLE_OMP_PARALLEL);
3446 return &gs->gimple_omp_parallel.clauses;
3450 /* Set CLAUSES to be the list of clauses associated with OMP_PARALLEL
3451 GS. */
3453 static inline void
3454 gimple_omp_parallel_set_clauses (gimple gs, tree clauses)
3456 GIMPLE_CHECK (gs, GIMPLE_OMP_PARALLEL);
3457 gs->gimple_omp_parallel.clauses = clauses;
3461 /* Return the child function used to hold the body of OMP_PARALLEL GS. */
3463 static inline tree
3464 gimple_omp_parallel_child_fn (const_gimple gs)
3466 GIMPLE_CHECK (gs, GIMPLE_OMP_PARALLEL);
3467 return gs->gimple_omp_parallel.child_fn;
3470 /* Return a pointer to the child function used to hold the body of
3471 OMP_PARALLEL GS. */
3473 static inline tree *
3474 gimple_omp_parallel_child_fn_ptr (gimple gs)
3476 GIMPLE_CHECK (gs, GIMPLE_OMP_PARALLEL);
3477 return &gs->gimple_omp_parallel.child_fn;
3481 /* Set CHILD_FN to be the child function for OMP_PARALLEL GS. */
3483 static inline void
3484 gimple_omp_parallel_set_child_fn (gimple gs, tree child_fn)
3486 GIMPLE_CHECK (gs, GIMPLE_OMP_PARALLEL);
3487 gs->gimple_omp_parallel.child_fn = child_fn;
3491 /* Return the artificial argument used to send variables and values
3492 from the parent to the children threads in OMP_PARALLEL GS. */
3494 static inline tree
3495 gimple_omp_parallel_data_arg (const_gimple gs)
3497 GIMPLE_CHECK (gs, GIMPLE_OMP_PARALLEL);
3498 return gs->gimple_omp_parallel.data_arg;
3502 /* Return a pointer to the data argument for OMP_PARALLEL GS. */
3504 static inline tree *
3505 gimple_omp_parallel_data_arg_ptr (gimple gs)
3507 GIMPLE_CHECK (gs, GIMPLE_OMP_PARALLEL);
3508 return &gs->gimple_omp_parallel.data_arg;
3512 /* Set DATA_ARG to be the data argument for OMP_PARALLEL GS. */
3514 static inline void
3515 gimple_omp_parallel_set_data_arg (gimple gs, tree data_arg)
3517 GIMPLE_CHECK (gs, GIMPLE_OMP_PARALLEL);
3518 gs->gimple_omp_parallel.data_arg = data_arg;
3522 /* Return the clauses associated with OMP_TASK GS. */
3524 static inline tree
3525 gimple_omp_task_clauses (const_gimple gs)
3527 GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
3528 return gs->gimple_omp_parallel.clauses;
3532 /* Return a pointer to the clauses associated with OMP_TASK GS. */
3534 static inline tree *
3535 gimple_omp_task_clauses_ptr (gimple gs)
3537 GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
3538 return &gs->gimple_omp_parallel.clauses;
3542 /* Set CLAUSES to be the list of clauses associated with OMP_TASK
3543 GS. */
3545 static inline void
3546 gimple_omp_task_set_clauses (gimple gs, tree clauses)
3548 GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
3549 gs->gimple_omp_parallel.clauses = clauses;
3553 /* Return the child function used to hold the body of OMP_TASK GS. */
3555 static inline tree
3556 gimple_omp_task_child_fn (const_gimple gs)
3558 GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
3559 return gs->gimple_omp_parallel.child_fn;
3562 /* Return a pointer to the child function used to hold the body of
3563 OMP_TASK GS. */
3565 static inline tree *
3566 gimple_omp_task_child_fn_ptr (gimple gs)
3568 GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
3569 return &gs->gimple_omp_parallel.child_fn;
3573 /* Set CHILD_FN to be the child function for OMP_TASK GS. */
3575 static inline void
3576 gimple_omp_task_set_child_fn (gimple gs, tree child_fn)
3578 GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
3579 gs->gimple_omp_parallel.child_fn = child_fn;
3583 /* Return the artificial argument used to send variables and values
3584 from the parent to the children threads in OMP_TASK GS. */
3586 static inline tree
3587 gimple_omp_task_data_arg (const_gimple gs)
3589 GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
3590 return gs->gimple_omp_parallel.data_arg;
3594 /* Return a pointer to the data argument for OMP_TASK GS. */
3596 static inline tree *
3597 gimple_omp_task_data_arg_ptr (gimple gs)
3599 GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
3600 return &gs->gimple_omp_parallel.data_arg;
3604 /* Set DATA_ARG to be the data argument for OMP_TASK GS. */
3606 static inline void
3607 gimple_omp_task_set_data_arg (gimple gs, tree data_arg)
3609 GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
3610 gs->gimple_omp_parallel.data_arg = data_arg;
3614 /* Return the clauses associated with OMP_TASK GS. */
3616 static inline tree
3617 gimple_omp_taskreg_clauses (const_gimple gs)
3619 if (gimple_code (gs) != GIMPLE_OMP_PARALLEL)
3620 GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
3621 return gs->gimple_omp_parallel.clauses;
3625 /* Return a pointer to the clauses associated with OMP_TASK GS. */
3627 static inline tree *
3628 gimple_omp_taskreg_clauses_ptr (gimple gs)
3630 if (gimple_code (gs) != GIMPLE_OMP_PARALLEL)
3631 GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
3632 return &gs->gimple_omp_parallel.clauses;
3636 /* Set CLAUSES to be the list of clauses associated with OMP_TASK
3637 GS. */
3639 static inline void
3640 gimple_omp_taskreg_set_clauses (gimple gs, tree clauses)
3642 if (gimple_code (gs) != GIMPLE_OMP_PARALLEL)
3643 GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
3644 gs->gimple_omp_parallel.clauses = clauses;
3648 /* Return the child function used to hold the body of OMP_TASK GS. */
3650 static inline tree
3651 gimple_omp_taskreg_child_fn (const_gimple gs)
3653 if (gimple_code (gs) != GIMPLE_OMP_PARALLEL)
3654 GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
3655 return gs->gimple_omp_parallel.child_fn;
3658 /* Return a pointer to the child function used to hold the body of
3659 OMP_TASK GS. */
3661 static inline tree *
3662 gimple_omp_taskreg_child_fn_ptr (gimple gs)
3664 if (gimple_code (gs) != GIMPLE_OMP_PARALLEL)
3665 GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
3666 return &gs->gimple_omp_parallel.child_fn;
3670 /* Set CHILD_FN to be the child function for OMP_TASK GS. */
3672 static inline void
3673 gimple_omp_taskreg_set_child_fn (gimple gs, tree child_fn)
3675 if (gimple_code (gs) != GIMPLE_OMP_PARALLEL)
3676 GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
3677 gs->gimple_omp_parallel.child_fn = child_fn;
3681 /* Return the artificial argument used to send variables and values
3682 from the parent to the children threads in OMP_TASK GS. */
3684 static inline tree
3685 gimple_omp_taskreg_data_arg (const_gimple gs)
3687 if (gimple_code (gs) != GIMPLE_OMP_PARALLEL)
3688 GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
3689 return gs->gimple_omp_parallel.data_arg;
3693 /* Return a pointer to the data argument for OMP_TASK GS. */
3695 static inline tree *
3696 gimple_omp_taskreg_data_arg_ptr (gimple gs)
3698 if (gimple_code (gs) != GIMPLE_OMP_PARALLEL)
3699 GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
3700 return &gs->gimple_omp_parallel.data_arg;
3704 /* Set DATA_ARG to be the data argument for OMP_TASK GS. */
3706 static inline void
3707 gimple_omp_taskreg_set_data_arg (gimple gs, tree data_arg)
3709 if (gimple_code (gs) != GIMPLE_OMP_PARALLEL)
3710 GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
3711 gs->gimple_omp_parallel.data_arg = data_arg;
3715 /* Return the copy function used to hold the body of OMP_TASK GS. */
3717 static inline tree
3718 gimple_omp_task_copy_fn (const_gimple gs)
3720 GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
3721 return gs->gimple_omp_task.copy_fn;
3724 /* Return a pointer to the copy function used to hold the body of
3725 OMP_TASK GS. */
3727 static inline tree *
3728 gimple_omp_task_copy_fn_ptr (gimple gs)
3730 GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
3731 return &gs->gimple_omp_task.copy_fn;
3735 /* Set CHILD_FN to be the copy function for OMP_TASK GS. */
3737 static inline void
3738 gimple_omp_task_set_copy_fn (gimple gs, tree copy_fn)
3740 GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
3741 gs->gimple_omp_task.copy_fn = copy_fn;
3745 /* Return size of the data block in bytes in OMP_TASK GS. */
3747 static inline tree
3748 gimple_omp_task_arg_size (const_gimple gs)
3750 GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
3751 return gs->gimple_omp_task.arg_size;
3755 /* Return a pointer to the data block size for OMP_TASK GS. */
3757 static inline tree *
3758 gimple_omp_task_arg_size_ptr (gimple gs)
3760 GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
3761 return &gs->gimple_omp_task.arg_size;
3765 /* Set ARG_SIZE to be the data block size for OMP_TASK GS. */
3767 static inline void
3768 gimple_omp_task_set_arg_size (gimple gs, tree arg_size)
3770 GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
3771 gs->gimple_omp_task.arg_size = arg_size;
3775 /* Return align of the data block in bytes in OMP_TASK GS. */
3777 static inline tree
3778 gimple_omp_task_arg_align (const_gimple gs)
3780 GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
3781 return gs->gimple_omp_task.arg_align;
3785 /* Return a pointer to the data block align for OMP_TASK GS. */
3787 static inline tree *
3788 gimple_omp_task_arg_align_ptr (gimple gs)
3790 GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
3791 return &gs->gimple_omp_task.arg_align;
3795 /* Set ARG_SIZE to be the data block align for OMP_TASK GS. */
3797 static inline void
3798 gimple_omp_task_set_arg_align (gimple gs, tree arg_align)
3800 GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
3801 gs->gimple_omp_task.arg_align = arg_align;
3805 /* Return the clauses associated with OMP_SINGLE GS. */
3807 static inline tree
3808 gimple_omp_single_clauses (const_gimple gs)
3810 GIMPLE_CHECK (gs, GIMPLE_OMP_SINGLE);
3811 return gs->gimple_omp_single.clauses;
3815 /* Return a pointer to the clauses associated with OMP_SINGLE GS. */
3817 static inline tree *
3818 gimple_omp_single_clauses_ptr (gimple gs)
3820 GIMPLE_CHECK (gs, GIMPLE_OMP_SINGLE);
3821 return &gs->gimple_omp_single.clauses;
3825 /* Set CLAUSES to be the clauses associated with OMP_SINGLE GS. */
3827 static inline void
3828 gimple_omp_single_set_clauses (gimple gs, tree clauses)
3830 GIMPLE_CHECK (gs, GIMPLE_OMP_SINGLE);
3831 gs->gimple_omp_single.clauses = clauses;
3835 /* Return the clauses associated with OMP_SECTIONS GS. */
3837 static inline tree
3838 gimple_omp_sections_clauses (const_gimple gs)
3840 GIMPLE_CHECK (gs, GIMPLE_OMP_SECTIONS);
3841 return gs->gimple_omp_sections.clauses;
3845 /* Return a pointer to the clauses associated with OMP_SECTIONS GS. */
3847 static inline tree *
3848 gimple_omp_sections_clauses_ptr (gimple gs)
3850 GIMPLE_CHECK (gs, GIMPLE_OMP_SECTIONS);
3851 return &gs->gimple_omp_sections.clauses;
3855 /* Set CLAUSES to be the set of clauses associated with OMP_SECTIONS
3856 GS. */
3858 static inline void
3859 gimple_omp_sections_set_clauses (gimple gs, tree clauses)
3861 GIMPLE_CHECK (gs, GIMPLE_OMP_SECTIONS);
3862 gs->gimple_omp_sections.clauses = clauses;
3866 /* Return the control variable associated with the GIMPLE_OMP_SECTIONS
3867 in GS. */
3869 static inline tree
3870 gimple_omp_sections_control (const_gimple gs)
3872 GIMPLE_CHECK (gs, GIMPLE_OMP_SECTIONS);
3873 return gs->gimple_omp_sections.control;
3877 /* Return a pointer to the clauses associated with the GIMPLE_OMP_SECTIONS
3878 GS. */
3880 static inline tree *
3881 gimple_omp_sections_control_ptr (gimple gs)
3883 GIMPLE_CHECK (gs, GIMPLE_OMP_SECTIONS);
3884 return &gs->gimple_omp_sections.control;
3888 /* Set CONTROL to be the set of clauses associated with the
3889 GIMPLE_OMP_SECTIONS in GS. */
3891 static inline void
3892 gimple_omp_sections_set_control (gimple gs, tree control)
3894 GIMPLE_CHECK (gs, GIMPLE_OMP_SECTIONS);
3895 gs->gimple_omp_sections.control = control;
3899 /* Set COND to be the condition code for OMP_FOR GS. */
3901 static inline void
3902 gimple_omp_for_set_cond (gimple gs, size_t i, enum tree_code cond)
3904 GIMPLE_CHECK (gs, GIMPLE_OMP_FOR);
3905 gcc_assert (TREE_CODE_CLASS (cond) == tcc_comparison);
3906 gcc_assert (i < gs->gimple_omp_for.collapse);
3907 gs->gimple_omp_for.iter[i].cond = cond;
3911 /* Return the condition code associated with OMP_FOR GS. */
3913 static inline enum tree_code
3914 gimple_omp_for_cond (const_gimple gs, size_t i)
3916 GIMPLE_CHECK (gs, GIMPLE_OMP_FOR);
3917 gcc_assert (i < gs->gimple_omp_for.collapse);
3918 return gs->gimple_omp_for.iter[i].cond;
3922 /* Set the value being stored in an atomic store. */
3924 static inline void
3925 gimple_omp_atomic_store_set_val (gimple g, tree val)
3927 GIMPLE_CHECK (g, GIMPLE_OMP_ATOMIC_STORE);
3928 g->gimple_omp_atomic_store.val = val;
3932 /* Return the value being stored in an atomic store. */
3934 static inline tree
3935 gimple_omp_atomic_store_val (const_gimple g)
3937 GIMPLE_CHECK (g, GIMPLE_OMP_ATOMIC_STORE);
3938 return g->gimple_omp_atomic_store.val;
3942 /* Return a pointer to the value being stored in an atomic store. */
3944 static inline tree *
3945 gimple_omp_atomic_store_val_ptr (gimple g)
3947 GIMPLE_CHECK (g, GIMPLE_OMP_ATOMIC_STORE);
3948 return &g->gimple_omp_atomic_store.val;
3952 /* Set the LHS of an atomic load. */
3954 static inline void
3955 gimple_omp_atomic_load_set_lhs (gimple g, tree lhs)
3957 GIMPLE_CHECK (g, GIMPLE_OMP_ATOMIC_LOAD);
3958 g->gimple_omp_atomic_load.lhs = lhs;
3962 /* Get the LHS of an atomic load. */
3964 static inline tree
3965 gimple_omp_atomic_load_lhs (const_gimple g)
3967 GIMPLE_CHECK (g, GIMPLE_OMP_ATOMIC_LOAD);
3968 return g->gimple_omp_atomic_load.lhs;
3972 /* Return a pointer to the LHS of an atomic load. */
3974 static inline tree *
3975 gimple_omp_atomic_load_lhs_ptr (gimple g)
3977 GIMPLE_CHECK (g, GIMPLE_OMP_ATOMIC_LOAD);
3978 return &g->gimple_omp_atomic_load.lhs;
3982 /* Set the RHS of an atomic load. */
3984 static inline void
3985 gimple_omp_atomic_load_set_rhs (gimple g, tree rhs)
3987 GIMPLE_CHECK (g, GIMPLE_OMP_ATOMIC_LOAD);
3988 g->gimple_omp_atomic_load.rhs = rhs;
3992 /* Get the RHS of an atomic load. */
3994 static inline tree
3995 gimple_omp_atomic_load_rhs (const_gimple g)
3997 GIMPLE_CHECK (g, GIMPLE_OMP_ATOMIC_LOAD);
3998 return g->gimple_omp_atomic_load.rhs;
4002 /* Return a pointer to the RHS of an atomic load. */
4004 static inline tree *
4005 gimple_omp_atomic_load_rhs_ptr (gimple g)
4007 GIMPLE_CHECK (g, GIMPLE_OMP_ATOMIC_LOAD);
4008 return &g->gimple_omp_atomic_load.rhs;
4012 /* Get the definition of the control variable in a GIMPLE_OMP_CONTINUE. */
4014 static inline tree
4015 gimple_omp_continue_control_def (const_gimple g)
4017 GIMPLE_CHECK (g, GIMPLE_OMP_CONTINUE);
4018 return g->gimple_omp_continue.control_def;
4021 /* The same as above, but return the address. */
4023 static inline tree *
4024 gimple_omp_continue_control_def_ptr (gimple g)
4026 GIMPLE_CHECK (g, GIMPLE_OMP_CONTINUE);
4027 return &g->gimple_omp_continue.control_def;
4030 /* Set the definition of the control variable in a GIMPLE_OMP_CONTINUE. */
4032 static inline void
4033 gimple_omp_continue_set_control_def (gimple g, tree def)
4035 GIMPLE_CHECK (g, GIMPLE_OMP_CONTINUE);
4036 g->gimple_omp_continue.control_def = def;
4040 /* Get the use of the control variable in a GIMPLE_OMP_CONTINUE. */
4042 static inline tree
4043 gimple_omp_continue_control_use (const_gimple g)
4045 GIMPLE_CHECK (g, GIMPLE_OMP_CONTINUE);
4046 return g->gimple_omp_continue.control_use;
4050 /* The same as above, but return the address. */
4052 static inline tree *
4053 gimple_omp_continue_control_use_ptr (gimple g)
4055 GIMPLE_CHECK (g, GIMPLE_OMP_CONTINUE);
4056 return &g->gimple_omp_continue.control_use;
4060 /* Set the use of the control variable in a GIMPLE_OMP_CONTINUE. */
4062 static inline void
4063 gimple_omp_continue_set_control_use (gimple g, tree use)
4065 GIMPLE_CHECK (g, GIMPLE_OMP_CONTINUE);
4066 g->gimple_omp_continue.control_use = use;
4070 /* Return a pointer to the return value for GIMPLE_RETURN GS. */
4072 static inline tree *
4073 gimple_return_retval_ptr (const_gimple gs)
4075 GIMPLE_CHECK (gs, GIMPLE_RETURN);
4076 gcc_assert (gimple_num_ops (gs) == 1);
4077 return gimple_op_ptr (gs, 0);
4080 /* Return the return value for GIMPLE_RETURN GS. */
4082 static inline tree
4083 gimple_return_retval (const_gimple gs)
4085 GIMPLE_CHECK (gs, GIMPLE_RETURN);
4086 gcc_assert (gimple_num_ops (gs) == 1);
4087 return gimple_op (gs, 0);
4091 /* Set RETVAL to be the return value for GIMPLE_RETURN GS. */
4093 static inline void
4094 gimple_return_set_retval (gimple gs, tree retval)
4096 GIMPLE_CHECK (gs, GIMPLE_RETURN);
4097 gcc_assert (gimple_num_ops (gs) == 1);
4098 gcc_assert (retval == NULL_TREE
4099 || TREE_CODE (retval) == RESULT_DECL
4100 || is_gimple_val (retval));
4101 gimple_set_op (gs, 0, retval);
4105 /* Returns true when the gimple statment STMT is any of the OpenMP types. */
4107 static inline bool
4108 is_gimple_omp (const_gimple stmt)
4110 return (gimple_code (stmt) == GIMPLE_OMP_PARALLEL
4111 || gimple_code (stmt) == GIMPLE_OMP_TASK
4112 || gimple_code (stmt) == GIMPLE_OMP_FOR
4113 || gimple_code (stmt) == GIMPLE_OMP_SECTIONS
4114 || gimple_code (stmt) == GIMPLE_OMP_SECTIONS_SWITCH
4115 || gimple_code (stmt) == GIMPLE_OMP_SINGLE
4116 || gimple_code (stmt) == GIMPLE_OMP_SECTION
4117 || gimple_code (stmt) == GIMPLE_OMP_MASTER
4118 || gimple_code (stmt) == GIMPLE_OMP_ORDERED
4119 || gimple_code (stmt) == GIMPLE_OMP_CRITICAL
4120 || gimple_code (stmt) == GIMPLE_OMP_RETURN
4121 || gimple_code (stmt) == GIMPLE_OMP_ATOMIC_LOAD
4122 || gimple_code (stmt) == GIMPLE_OMP_ATOMIC_STORE
4123 || gimple_code (stmt) == GIMPLE_OMP_CONTINUE);
4127 /* Returns TRUE if statement G is a GIMPLE_NOP. */
4129 static inline bool
4130 gimple_nop_p (const_gimple g)
4132 return gimple_code (g) == GIMPLE_NOP;
4136 /* Return the new type set by GIMPLE_CHANGE_DYNAMIC_TYPE statement GS. */
4138 static inline tree
4139 gimple_cdt_new_type (gimple gs)
4141 GIMPLE_CHECK (gs, GIMPLE_CHANGE_DYNAMIC_TYPE);
4142 return gimple_op (gs, 1);
4145 /* Return a pointer to the new type set by GIMPLE_CHANGE_DYNAMIC_TYPE
4146 statement GS. */
4148 static inline tree *
4149 gimple_cdt_new_type_ptr (gimple gs)
4151 GIMPLE_CHECK (gs, GIMPLE_CHANGE_DYNAMIC_TYPE);
4152 return gimple_op_ptr (gs, 1);
4155 /* Set NEW_TYPE to be the type returned by GIMPLE_CHANGE_DYNAMIC_TYPE
4156 statement GS. */
4158 static inline void
4159 gimple_cdt_set_new_type (gimple gs, tree new_type)
4161 GIMPLE_CHECK (gs, GIMPLE_CHANGE_DYNAMIC_TYPE);
4162 gcc_assert (TREE_CODE_CLASS (TREE_CODE (new_type)) == tcc_type);
4163 gimple_set_op (gs, 1, new_type);
4167 /* Return the location affected by GIMPLE_CHANGE_DYNAMIC_TYPE statement GS. */
4169 static inline tree
4170 gimple_cdt_location (gimple gs)
4172 GIMPLE_CHECK (gs, GIMPLE_CHANGE_DYNAMIC_TYPE);
4173 return gimple_op (gs, 0);
4177 /* Return a pointer to the location affected by GIMPLE_CHANGE_DYNAMIC_TYPE
4178 statement GS. */
4180 static inline tree *
4181 gimple_cdt_location_ptr (gimple gs)
4183 GIMPLE_CHECK (gs, GIMPLE_CHANGE_DYNAMIC_TYPE);
4184 return gimple_op_ptr (gs, 0);
4188 /* Set PTR to be the location affected by GIMPLE_CHANGE_DYNAMIC_TYPE
4189 statement GS. */
4191 static inline void
4192 gimple_cdt_set_location (gimple gs, tree ptr)
4194 GIMPLE_CHECK (gs, GIMPLE_CHANGE_DYNAMIC_TYPE);
4195 gimple_set_op (gs, 0, ptr);
4199 /* Return the predictor of GIMPLE_PREDICT statement GS. */
4201 static inline enum br_predictor
4202 gimple_predict_predictor (gimple gs)
4204 GIMPLE_CHECK (gs, GIMPLE_PREDICT);
4205 return (enum br_predictor) (gs->gsbase.subcode & ~GF_PREDICT_TAKEN);
4209 /* Set the predictor of GIMPLE_PREDICT statement GS to PREDICT. */
4211 static inline void
4212 gimple_predict_set_predictor (gimple gs, enum br_predictor predictor)
4214 GIMPLE_CHECK (gs, GIMPLE_PREDICT);
4215 gs->gsbase.subcode = (gs->gsbase.subcode & GF_PREDICT_TAKEN)
4216 | (unsigned) predictor;
4220 /* Return the outcome of GIMPLE_PREDICT statement GS. */
4222 static inline enum prediction
4223 gimple_predict_outcome (gimple gs)
4225 GIMPLE_CHECK (gs, GIMPLE_PREDICT);
4226 return (gs->gsbase.subcode & GF_PREDICT_TAKEN) ? TAKEN : NOT_TAKEN;
4230 /* Set the outcome of GIMPLE_PREDICT statement GS to OUTCOME. */
4232 static inline void
4233 gimple_predict_set_outcome (gimple gs, enum prediction outcome)
4235 GIMPLE_CHECK (gs, GIMPLE_PREDICT);
4236 if (outcome == TAKEN)
4237 gs->gsbase.subcode |= GF_PREDICT_TAKEN;
4238 else
4239 gs->gsbase.subcode &= ~GF_PREDICT_TAKEN;
4243 /* Return a new iterator pointing to GIMPLE_SEQ's first statement. */
4245 static inline gimple_stmt_iterator
4246 gsi_start (gimple_seq seq)
4248 gimple_stmt_iterator i;
4250 i.ptr = gimple_seq_first (seq);
4251 i.seq = seq;
4252 i.bb = (i.ptr && i.ptr->stmt) ? gimple_bb (i.ptr->stmt) : NULL;
4254 return i;
4258 /* Return a new iterator pointing to the first statement in basic block BB. */
4260 static inline gimple_stmt_iterator
4261 gsi_start_bb (basic_block bb)
4263 gimple_stmt_iterator i;
4264 gimple_seq seq;
4266 seq = bb_seq (bb);
4267 i.ptr = gimple_seq_first (seq);
4268 i.seq = seq;
4269 i.bb = bb;
4271 return i;
4275 /* Return a new iterator initially pointing to GIMPLE_SEQ's last statement. */
4277 static inline gimple_stmt_iterator
4278 gsi_last (gimple_seq seq)
4280 gimple_stmt_iterator i;
4282 i.ptr = gimple_seq_last (seq);
4283 i.seq = seq;
4284 i.bb = (i.ptr && i.ptr->stmt) ? gimple_bb (i.ptr->stmt) : NULL;
4286 return i;
4290 /* Return a new iterator pointing to the last statement in basic block BB. */
4292 static inline gimple_stmt_iterator
4293 gsi_last_bb (basic_block bb)
4295 gimple_stmt_iterator i;
4296 gimple_seq seq;
4298 seq = bb_seq (bb);
4299 i.ptr = gimple_seq_last (seq);
4300 i.seq = seq;
4301 i.bb = bb;
4303 return i;
4307 /* Return true if I is at the end of its sequence. */
4309 static inline bool
4310 gsi_end_p (gimple_stmt_iterator i)
4312 return i.ptr == NULL;
4316 /* Return true if I is one statement before the end of its sequence. */
4318 static inline bool
4319 gsi_one_before_end_p (gimple_stmt_iterator i)
4321 return i.ptr != NULL && i.ptr->next == NULL;
4325 /* Advance the iterator to the next gimple statement. */
4327 static inline void
4328 gsi_next (gimple_stmt_iterator *i)
4330 i->ptr = i->ptr->next;
4333 /* Advance the iterator to the previous gimple statement. */
4335 static inline void
4336 gsi_prev (gimple_stmt_iterator *i)
4338 i->ptr = i->ptr->prev;
4341 /* Return the current stmt. */
4343 static inline gimple
4344 gsi_stmt (gimple_stmt_iterator i)
4346 return i.ptr->stmt;
4349 /* Return a block statement iterator that points to the first non-label
4350 statement in block BB. */
4352 static inline gimple_stmt_iterator
4353 gsi_after_labels (basic_block bb)
4355 gimple_stmt_iterator gsi = gsi_start_bb (bb);
4357 while (!gsi_end_p (gsi) && gimple_code (gsi_stmt (gsi)) == GIMPLE_LABEL)
4358 gsi_next (&gsi);
4360 return gsi;
4363 /* Return a pointer to the current stmt.
4365 NOTE: You may want to use gsi_replace on the iterator itself,
4366 as this performs additional bookkeeping that will not be done
4367 if you simply assign through a pointer returned by gsi_stmt_ptr. */
4369 static inline gimple *
4370 gsi_stmt_ptr (gimple_stmt_iterator *i)
4372 return &i->ptr->stmt;
4376 /* Return the basic block associated with this iterator. */
4378 static inline basic_block
4379 gsi_bb (gimple_stmt_iterator i)
4381 return i.bb;
4385 /* Return the sequence associated with this iterator. */
4387 static inline gimple_seq
4388 gsi_seq (gimple_stmt_iterator i)
4390 return i.seq;
4394 enum gsi_iterator_update
4396 GSI_NEW_STMT, /* Only valid when single statement is added, move
4397 iterator to it. */
4398 GSI_SAME_STMT, /* Leave the iterator at the same statement. */
4399 GSI_CONTINUE_LINKING /* Move iterator to whatever position is suitable
4400 for linking other statements in the same
4401 direction. */
4404 /* In gimple-iterator.c */
4405 gimple_stmt_iterator gsi_start_phis (basic_block);
4406 gimple_seq gsi_split_seq_after (gimple_stmt_iterator);
4407 gimple_seq gsi_split_seq_before (gimple_stmt_iterator *);
4408 void gsi_replace (gimple_stmt_iterator *, gimple, bool);
4409 void gsi_insert_before (gimple_stmt_iterator *, gimple,
4410 enum gsi_iterator_update);
4411 void gsi_insert_before_without_update (gimple_stmt_iterator *, gimple,
4412 enum gsi_iterator_update);
4413 void gsi_insert_seq_before (gimple_stmt_iterator *, gimple_seq,
4414 enum gsi_iterator_update);
4415 void gsi_insert_seq_before_without_update (gimple_stmt_iterator *, gimple_seq,
4416 enum gsi_iterator_update);
4417 void gsi_insert_after (gimple_stmt_iterator *, gimple,
4418 enum gsi_iterator_update);
4419 void gsi_insert_after_without_update (gimple_stmt_iterator *, gimple,
4420 enum gsi_iterator_update);
4421 void gsi_insert_seq_after (gimple_stmt_iterator *, gimple_seq,
4422 enum gsi_iterator_update);
4423 void gsi_insert_seq_after_without_update (gimple_stmt_iterator *, gimple_seq,
4424 enum gsi_iterator_update);
4425 void gsi_remove (gimple_stmt_iterator *, bool);
4426 gimple_stmt_iterator gsi_for_stmt (gimple);
4427 void gsi_move_after (gimple_stmt_iterator *, gimple_stmt_iterator *);
4428 void gsi_move_before (gimple_stmt_iterator *, gimple_stmt_iterator *);
4429 void gsi_move_to_bb_end (gimple_stmt_iterator *, struct basic_block_def *);
4430 void gsi_insert_on_edge (edge, gimple);
4431 void gsi_insert_seq_on_edge (edge, gimple_seq);
4432 basic_block gsi_insert_on_edge_immediate (edge, gimple);
4433 basic_block gsi_insert_seq_on_edge_immediate (edge, gimple_seq);
4434 void gsi_commit_one_edge_insert (edge, basic_block *);
4435 void gsi_commit_edge_inserts (void);
4438 /* Convenience routines to walk all statements of a gimple function.
4439 Note that this is useful exclusively before the code is converted
4440 into SSA form. Once the program is in SSA form, the standard
4441 operand interface should be used to analyze/modify statements. */
4442 struct walk_stmt_info
4444 /* Points to the current statement being walked. */
4445 gimple_stmt_iterator gsi;
4447 /* Additional data that the callback functions may want to carry
4448 through the recursion. */
4449 void *info;
4451 /* Pointer map used to mark visited tree nodes when calling
4452 walk_tree on each operand. If set to NULL, duplicate tree nodes
4453 will be visited more than once. */
4454 struct pointer_set_t *pset;
4456 /* Indicates whether the operand being examined may be replaced
4457 with something that matches is_gimple_val (if true) or something
4458 slightly more complicated (if false). "Something" technically
4459 means the common subset of is_gimple_lvalue and is_gimple_rhs,
4460 but we never try to form anything more complicated than that, so
4461 we don't bother checking.
4463 Also note that CALLBACK should update this flag while walking the
4464 sub-expressions of a statement. For instance, when walking the
4465 statement 'foo (&var)', the flag VAL_ONLY will initially be set
4466 to true, however, when walking &var, the operand of that
4467 ADDR_EXPR does not need to be a GIMPLE value. */
4468 bool val_only;
4470 /* True if we are currently walking the LHS of an assignment. */
4471 bool is_lhs;
4473 /* Optional. Set to true by the callback functions if they made any
4474 changes. */
4475 bool changed;
4477 /* True if we're interested in location information. */
4478 bool want_locations;
4480 /* Operand returned by the callbacks. This is set when calling
4481 walk_gimple_seq. If the walk_stmt_fn or walk_tree_fn callback
4482 returns non-NULL, this field will contain the tree returned by
4483 the last callback. */
4484 tree callback_result;
4487 /* Callback for walk_gimple_stmt. Called for every statement found
4488 during traversal. The first argument points to the statement to
4489 walk. The second argument is a flag that the callback sets to
4490 'true' if it the callback handled all the operands and
4491 sub-statements of the statement (the default value of this flag is
4492 'false'). The third argument is an anonymous pointer to data
4493 to be used by the callback. */
4494 typedef tree (*walk_stmt_fn) (gimple_stmt_iterator *, bool *,
4495 struct walk_stmt_info *);
4497 gimple walk_gimple_seq (gimple_seq, walk_stmt_fn, walk_tree_fn,
4498 struct walk_stmt_info *);
4499 tree walk_gimple_stmt (gimple_stmt_iterator *, walk_stmt_fn, walk_tree_fn,
4500 struct walk_stmt_info *);
4501 tree walk_gimple_op (gimple, walk_tree_fn, struct walk_stmt_info *);
4503 #ifdef GATHER_STATISTICS
4504 /* Enum and arrays used for allocation stats. Keep in sync with
4505 gimple.c:gimple_alloc_kind_names. */
4506 enum gimple_alloc_kind
4508 gimple_alloc_kind_assign, /* Assignments. */
4509 gimple_alloc_kind_phi, /* PHI nodes. */
4510 gimple_alloc_kind_cond, /* Conditionals. */
4511 gimple_alloc_kind_seq, /* Sequences. */
4512 gimple_alloc_kind_rest, /* Everything else. */
4513 gimple_alloc_kind_all
4516 extern int gimple_alloc_counts[];
4517 extern int gimple_alloc_sizes[];
4519 /* Return the allocation kind for a given stmt CODE. */
4520 static inline enum gimple_alloc_kind
4521 gimple_alloc_kind (enum gimple_code code)
4523 switch (code)
4525 case GIMPLE_ASSIGN:
4526 return gimple_alloc_kind_assign;
4527 case GIMPLE_PHI:
4528 return gimple_alloc_kind_phi;
4529 case GIMPLE_COND:
4530 return gimple_alloc_kind_cond;
4531 default:
4532 return gimple_alloc_kind_rest;
4535 #endif /* GATHER_STATISTICS */
4537 extern void dump_gimple_statistics (void);
4539 #endif /* GCC_GIMPLE_H */