OSDN Git Service

Check in a new gcc-4.4.0 toolchain.
[android-x86/prebuilt.git] / linux-x86 / toolchain / arm-eabi-4.4.0 / lib / gcc / arm-eabi / 4.4.0 / plugin / include / gimple.h
1 /* Gimple IR definitions.
2
3    Copyright 2007, 2008, 2009 Free Software Foundation, Inc.
4    Contributed by Aldy Hernandez <aldyh@redhat.com>
5
6 This file is part of GCC.
7
8 GCC is free software; you can redistribute it and/or modify it under
9 the terms of the GNU General Public License as published by the Free
10 Software Foundation; either version 3, or (at your option) any later
11 version.
12
13 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
14 WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
16 for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING3.  If not see
20 <http://www.gnu.org/licenses/>.  */
21
22 #ifndef GCC_GIMPLE_H
23 #define GCC_GIMPLE_H
24
25 #include "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"
32
33 DEF_VEC_P(gimple);
34 DEF_VEC_ALLOC_P(gimple,heap);
35 DEF_VEC_ALLOC_P(gimple,gc);
36
37 DEF_VEC_P(gimple_seq);
38 DEF_VEC_ALLOC_P(gimple_seq,gc);
39 DEF_VEC_ALLOC_P(gimple_seq,heap);
40
41 /* For each block, the PHI nodes that need to be rewritten are stored into
42    these vectors.  */
43 typedef VEC(gimple, heap) *gimple_vec;
44 DEF_VEC_P (gimple_vec);
45 DEF_VEC_ALLOC_P (gimple_vec, heap);
46
47 enum gimple_code {
48 #define DEFGSCODE(SYM, STRING, STRUCT)  SYM,
49 #include "gimple.def"
50 #undef DEFGSCODE
51     LAST_AND_UNUSED_GIMPLE_CODE
52 };
53
54 extern const char *const gimple_code_name[];
55 extern const unsigned char gimple_rhs_class_table[];
56
57 /* Error out if a gimple tuple is addressed incorrectly.  */
58 #if defined ENABLE_GIMPLE_CHECKING
59 extern void gimple_check_failed (const_gimple, const char *, int,          \
60                                  const char *, enum gimple_code,           \
61                                  enum tree_code) ATTRIBUTE_NORETURN;
62
63 #define GIMPLE_CHECK(GS, CODE)                                          \
64   do {                                                                  \
65     const_gimple __gs = (GS);                                           \
66     if (gimple_code (__gs) != (CODE))                                   \
67       gimple_check_failed (__gs, __FILE__, __LINE__, __FUNCTION__,      \
68                            (CODE), 0);                                  \
69   } while (0)
70 #else  /* not ENABLE_GIMPLE_CHECKING  */
71 #define GIMPLE_CHECK(GS, CODE)                  (void)0
72 #endif
73
74 /* Class of GIMPLE expressions suitable for the RHS of assignments.  See
75    get_gimple_rhs_class.  */
76 enum gimple_rhs_class
77 {
78   GIMPLE_INVALID_RHS,   /* The expression cannot be used on the RHS.  */
79   GIMPLE_BINARY_RHS,    /* The expression is a binary operation.  */
80   GIMPLE_UNARY_RHS,     /* The expression is a unary operation.  */
81   GIMPLE_SINGLE_RHS     /* The expression is a single object (an SSA
82                            name, a _DECL, a _REF, etc.  */
83 };
84
85 /* Specific flags for individual GIMPLE statements.  These flags are
86    always stored in gimple_statement_base.subcode and they may only be
87    defined for statement codes that do not use sub-codes.
88
89    Values for the masks can overlap as long as the overlapping values
90    are never used in the same statement class.
91
92    The maximum mask value that can be defined is 1 << 15 (i.e., each
93    statement code can hold up to 16 bitflags).
94
95    Keep this list sorted.  */
96 enum gf_mask {
97     GF_ASM_INPUT                = 1 << 0,
98     GF_ASM_VOLATILE             = 1 << 1,
99     GF_CALL_CANNOT_INLINE       = 1 << 0,
100     GF_CALL_FROM_THUNK          = 1 << 1,
101     GF_CALL_RETURN_SLOT_OPT     = 1 << 2,
102     GF_CALL_TAILCALL            = 1 << 3,
103     GF_CALL_VA_ARG_PACK         = 1 << 4,
104     GF_OMP_PARALLEL_COMBINED    = 1 << 0,
105
106     /* True on an GIMPLE_OMP_RETURN statement if the return does not require
107        a thread synchronization via some sort of barrier.  The exact barrier
108        that would otherwise be emitted is dependent on the OMP statement with
109        which this return is associated.  */
110     GF_OMP_RETURN_NOWAIT        = 1 << 0,
111
112     GF_OMP_SECTION_LAST         = 1 << 0,
113     GF_PREDICT_TAKEN            = 1 << 15
114 };
115
116 /* Masks for selecting a pass local flag (PLF) to work on.  These
117    masks are used by gimple_set_plf and gimple_plf.  */
118 enum plf_mask {
119     GF_PLF_1    = 1 << 0,
120     GF_PLF_2    = 1 << 1
121 };
122
123 /* A node in a gimple_seq_d.  */
124 struct gimple_seq_node_d GTY((chain_next ("%h.next"), chain_prev ("%h.prev")))
125 {
126   gimple stmt;
127   struct gimple_seq_node_d *prev;
128   struct gimple_seq_node_d *next;
129 };
130
131 /* A double-linked sequence of gimple statements.  */
132 struct gimple_seq_d GTY ((chain_next ("%h.next_free")))
133 {
134   /* First and last statements in the sequence.  */
135   gimple_seq_node first;
136   gimple_seq_node last;
137
138   /* Sequences are created/destroyed frequently.  To minimize
139      allocation activity, deallocated sequences are kept in a pool of
140      available sequences.  This is the pointer to the next free
141      sequence in the pool.  */
142   gimple_seq next_free;
143 };
144
145
146 /* Return the first node in GIMPLE sequence S.  */
147
148 static inline gimple_seq_node
149 gimple_seq_first (const_gimple_seq s)
150 {
151   return s ? s->first : NULL;
152 }
153
154
155 /* Return the first statement in GIMPLE sequence S.  */
156
157 static inline gimple
158 gimple_seq_first_stmt (const_gimple_seq s)
159 {
160   gimple_seq_node n = gimple_seq_first (s);
161   return (n) ? n->stmt : NULL;
162 }
163
164
165 /* Return the last node in GIMPLE sequence S.  */
166
167 static inline gimple_seq_node
168 gimple_seq_last (const_gimple_seq s)
169 {
170   return s ? s->last : NULL;
171 }
172
173
174 /* Return the last statement in GIMPLE sequence S.  */
175
176 static inline gimple
177 gimple_seq_last_stmt (const_gimple_seq s)
178 {
179   gimple_seq_node n = gimple_seq_last (s);
180   return (n) ? n->stmt : NULL;
181 }
182
183
184 /* Set the last node in GIMPLE sequence S to LAST.  */
185
186 static inline void
187 gimple_seq_set_last (gimple_seq s, gimple_seq_node last)
188 {
189   s->last = last;
190 }
191
192
193 /* Set the first node in GIMPLE sequence S to FIRST.  */
194
195 static inline void
196 gimple_seq_set_first (gimple_seq s, gimple_seq_node first)
197 {
198   s->first = first;
199 }
200
201
202 /* Return true if GIMPLE sequence S is empty.  */
203
204 static inline bool
205 gimple_seq_empty_p (const_gimple_seq s)
206 {
207   return s == NULL || s->first == NULL;
208 }
209
210
211 void gimple_seq_add_stmt (gimple_seq *, gimple);
212
213 /* Allocate a new sequence and initialize its first element with STMT.  */
214
215 static inline gimple_seq
216 gimple_seq_alloc_with_stmt (gimple stmt)
217 {
218   gimple_seq seq = NULL;
219   gimple_seq_add_stmt (&seq, stmt);
220   return seq;
221 }
222
223
224 /* Returns the sequence of statements in BB.  */
225
226 static inline gimple_seq
227 bb_seq (const_basic_block bb)
228 {
229   return (!(bb->flags & BB_RTL) && bb->il.gimple) ? bb->il.gimple->seq : NULL;
230 }
231
232
233 /* Sets the sequence of statements in BB to SEQ.  */
234
235 static inline void
236 set_bb_seq (basic_block bb, gimple_seq seq)
237 {
238   gcc_assert (!(bb->flags & BB_RTL));
239   bb->il.gimple->seq = seq;
240 }
241
242 /* Iterator object for GIMPLE statement sequences.  */
243
244 typedef struct
245 {
246   /* Sequence node holding the current statement.  */
247   gimple_seq_node ptr;
248
249   /* Sequence and basic block holding the statement.  These fields
250      are necessary to handle edge cases such as when statement is
251      added to an empty basic block or when the last statement of a
252      block/sequence is removed.  */
253   gimple_seq seq;
254   basic_block bb;
255 } gimple_stmt_iterator;
256
257
258 /* Data structure definitions for GIMPLE tuples.  NOTE: word markers
259    are for 64 bit hosts.  */
260
261 struct gimple_statement_base GTY(())
262 {
263   /* [ WORD 1 ]
264      Main identifying code for a tuple.  */
265   ENUM_BITFIELD(gimple_code) code : 8;
266
267   /* Nonzero if a warning should not be emitted on this tuple.  */
268   unsigned int no_warning       : 1;
269
270   /* Nonzero if this tuple has been visited.  Passes are responsible
271      for clearing this bit before using it.  */
272   unsigned int visited          : 1;
273
274   /* Nonzero if this tuple represents a non-temporal move.  */
275   unsigned int nontemporal_move : 1;
276
277   /* Pass local flags.  These flags are free for any pass to use as
278      they see fit.  Passes should not assume that these flags contain
279      any useful value when the pass starts.  Any initial state that
280      the pass requires should be set on entry to the pass.  See
281      gimple_set_plf and gimple_plf for usage.  */
282   unsigned int plf              : 2;
283
284   /* Nonzero if this statement has been modified and needs to have its
285      operands rescanned.  */
286   unsigned modified             : 1;
287
288   /* Nonzero if this statement contains volatile operands.  */
289   unsigned has_volatile_ops     : 1;
290
291   /* Nonzero if this statement contains memory refernces.  */
292   unsigned references_memory_p  : 1;
293
294   /* The SUBCODE field can be used for tuple-specific flags for tuples
295      that do not require subcodes.  Note that SUBCODE should be at
296      least as wide as tree codes, as several tuples store tree codes
297      in there.  */
298   unsigned int subcode          : 16;
299
300   /* UID of this statement.  This is used by passes that want to
301      assign IDs to statements.  It must be assigned and used by each
302      pass.  By default it should be assumed to contain garbage.  */
303   unsigned uid;
304
305   /* [ WORD 2 ]
306      Locus information for debug info.  */
307   location_t location;
308
309   /* Number of operands in this tuple.  */
310   unsigned num_ops;
311
312   /* [ WORD 3 ]
313      Basic block holding this statement.  */
314   struct basic_block_def *bb;
315
316   /* [ WORD 4 ]
317      Lexical block holding this statement.  */
318   tree block;
319 };
320
321
322 /* Base structure for tuples with operands.  */
323
324 struct gimple_statement_with_ops_base GTY(())
325 {
326   /* [ WORD  1-4 ]  */
327   struct gimple_statement_base gsbase;
328
329   /* [ WORD 5 ]
330      Symbols whose addresses are taken by this statement (i.e., they
331      appear inside ADDR_EXPR nodes).  */
332   bitmap GTY((skip (""))) addresses_taken;
333
334   /* [ WORD 6-7 ]
335      SSA operand vectors.  NOTE: It should be possible to
336      amalgamate these vectors with the operand vector OP.  However,
337      the SSA operand vectors are organized differently and contain
338      more information (like immediate use chaining).  */
339   struct def_optype_d GTY((skip (""))) *def_ops;
340   struct use_optype_d GTY((skip (""))) *use_ops;
341 };
342
343
344 /* Statements that take register operands.  */
345
346 struct gimple_statement_with_ops GTY(())
347 {
348   /* [ WORD 1-7 ]  */
349   struct gimple_statement_with_ops_base opbase;
350
351   /* [ WORD 8 ]
352      Operand vector.  NOTE!  This must always be the last field
353      of this structure.  In particular, this means that this
354      structure cannot be embedded inside another one.  */
355   tree GTY((length ("%h.opbase.gsbase.num_ops"))) op[1];
356 };
357
358
359 /* Base for statements that take both memory and register operands.  */
360
361 struct gimple_statement_with_memory_ops_base GTY(())
362 {
363   /* [ WORD 1-7 ]  */
364   struct gimple_statement_with_ops_base opbase;
365
366   /* [ WORD 8-9 ]  
367      Vectors for virtual operands.  */
368   struct voptype_d GTY((skip (""))) *vdef_ops;
369   struct voptype_d GTY((skip (""))) *vuse_ops;
370
371   /* [ WORD 9-10 ]
372      Symbols stored/loaded by this statement.  */
373   bitmap GTY((skip (""))) stores;
374   bitmap GTY((skip (""))) loads;
375 };
376
377
378 /* Statements that take both memory and register operands.  */
379
380 struct gimple_statement_with_memory_ops GTY(())
381 {
382   /* [ WORD 1-10 ]  */
383   struct gimple_statement_with_memory_ops_base membase;
384
385   /* [ WORD 11 ]
386      Operand vector.  NOTE!  This must always be the last field
387      of this structure.  In particular, this means that this
388      structure cannot be embedded inside another one.  */
389   tree GTY((length ("%h.membase.opbase.gsbase.num_ops"))) op[1];
390 };
391
392
393 /* OpenMP statements (#pragma omp).  */
394
395 struct gimple_statement_omp GTY(())
396 {
397   /* [ WORD 1-4 ]  */
398   struct gimple_statement_base gsbase;
399
400   /* [ WORD 5 ]  */
401   gimple_seq body;
402 };
403
404
405 /* GIMPLE_BIND */
406
407 struct gimple_statement_bind GTY(())
408 {
409   /* [ WORD 1-4 ]  */
410   struct gimple_statement_base gsbase;
411
412   /* [ WORD 5 ]
413      Variables declared in this scope.  */
414   tree vars;
415
416   /* [ WORD 6 ]
417      This is different than the BLOCK field in gimple_statement_base,
418      which is analogous to TREE_BLOCK (i.e., the lexical block holding
419      this statement).  This field is the equivalent of BIND_EXPR_BLOCK
420      in tree land (i.e., the lexical scope defined by this bind).  See
421      gimple-low.c.  */
422   tree block;
423
424   /* [ WORD 7 ]  */
425   gimple_seq body;
426 };
427
428
429 /* GIMPLE_CATCH */
430
431 struct gimple_statement_catch GTY(())
432 {
433   /* [ WORD 1-4 ]  */
434   struct gimple_statement_base gsbase;
435
436   /* [ WORD 5 ]  */
437   tree types;
438
439   /* [ WORD 6 ]  */
440   gimple_seq handler;
441 };
442
443
444 /* GIMPLE_EH_FILTER */
445
446 struct gimple_statement_eh_filter GTY(())
447 {
448   /* [ WORD 1-4 ]  */
449   struct gimple_statement_base gsbase;
450
451   /* Subcode: EH_FILTER_MUST_NOT_THROW.  A boolean flag analogous to
452      the tree counterpart.  */
453
454   /* [ WORD 5 ]
455      Filter types.  */
456   tree types;
457
458   /* [ WORD 6 ]
459      Failure actions.  */
460   gimple_seq failure;
461 };
462
463
464 /* GIMPLE_PHI */
465
466 struct gimple_statement_phi GTY(())
467 {
468   /* [ WORD 1-4 ]  */
469   struct gimple_statement_base gsbase;
470
471   /* [ WORD 5 ]  */
472   unsigned capacity;
473   unsigned nargs;
474
475   /* [ WORD 6 ]  */
476   tree result;
477
478   /* [ WORD 7 ]  */
479   struct phi_arg_d GTY ((length ("%h.nargs"))) args[1];
480 };
481
482
483 /* GIMPLE_RESX */
484
485 struct gimple_statement_resx GTY(())
486 {
487   /* [ WORD 1-4 ]  */
488   struct gimple_statement_base gsbase;
489
490   /* [ WORD 5 ]
491      Exception region number.  */
492   int region;
493 };
494
495
496 /* GIMPLE_TRY */
497
498 struct gimple_statement_try GTY(())
499 {
500   /* [ WORD 1-4 ]  */
501   struct gimple_statement_base gsbase;
502
503   /* [ WORD 5 ]
504      Expression to evaluate.  */
505   gimple_seq eval;
506
507   /* [ WORD 6 ]
508      Cleanup expression.  */
509   gimple_seq cleanup;
510 };
511
512 /* Kind of GIMPLE_TRY statements.  */
513 enum gimple_try_flags
514 {
515   /* A try/catch.  */
516   GIMPLE_TRY_CATCH = 1 << 0,
517
518   /* A try/finally.  */
519   GIMPLE_TRY_FINALLY = 1 << 1,
520   GIMPLE_TRY_KIND = GIMPLE_TRY_CATCH | GIMPLE_TRY_FINALLY,
521
522   /* Analogous to TRY_CATCH_IS_CLEANUP.  */
523   GIMPLE_TRY_CATCH_IS_CLEANUP = 1 << 2
524 };
525
526 /* GIMPLE_WITH_CLEANUP_EXPR */
527
528 struct gimple_statement_wce GTY(())
529 {
530   /* [ WORD 1-4 ]  */
531   struct gimple_statement_base gsbase;
532
533   /* Subcode: CLEANUP_EH_ONLY.  True if the cleanup should only be
534               executed if an exception is thrown, not on normal exit of its
535               scope.  This flag is analogous to the CLEANUP_EH_ONLY flag
536               in TARGET_EXPRs.  */
537
538   /* [ WORD 5 ]
539      Cleanup expression.  */
540   gimple_seq cleanup;
541 };
542
543
544 /* GIMPLE_ASM  */
545
546 struct gimple_statement_asm GTY(())
547 {
548   /* [ WORD 1-10 ]  */
549   struct gimple_statement_with_memory_ops_base membase;
550
551   /* [ WORD 11 ]
552      __asm__ statement.  */
553   const char *string;
554
555   /* [ WORD 12 ]
556        Number of inputs, outputs and clobbers.  */
557   unsigned char ni;
558   unsigned char no;
559   unsigned short nc;
560
561   /* [ WORD 13 ]
562      Operand vector.  NOTE!  This must always be the last field
563      of this structure.  In particular, this means that this
564      structure cannot be embedded inside another one.  */
565   tree GTY((length ("%h.membase.opbase.gsbase.num_ops"))) op[1];
566 };
567
568 /* GIMPLE_OMP_CRITICAL */
569
570 struct gimple_statement_omp_critical GTY(())
571 {
572   /* [ WORD 1-5 ]  */
573   struct gimple_statement_omp omp;
574
575   /* [ WORD 6 ]
576      Critical section name.  */
577   tree name;
578 };
579
580
581 struct gimple_omp_for_iter GTY(())
582 {
583   /* Condition code.  */
584   enum tree_code cond;
585
586   /* Index variable.  */
587   tree index;
588     
589   /* Initial value.  */
590   tree initial;
591
592   /* Final value.  */
593   tree final;
594                                  
595   /* Increment.  */
596   tree incr;
597 };
598
599 /* GIMPLE_OMP_FOR */
600
601 struct gimple_statement_omp_for GTY(())
602 {
603   /* [ WORD 1-5 ]  */
604   struct gimple_statement_omp omp;
605
606   /* [ WORD 6 ]  */
607   tree clauses;
608
609   /* [ WORD 7 ]
610      Number of elements in iter array.  */
611   size_t collapse;
612
613   /* [ WORD 8 ]  */
614   struct gimple_omp_for_iter * GTY((length ("%h.collapse"))) iter;
615
616   /* [ WORD 9 ]
617      Pre-body evaluated before the loop body begins.  */
618   gimple_seq pre_body;
619 };
620
621
622 /* GIMPLE_OMP_PARALLEL */
623
624 struct gimple_statement_omp_parallel GTY(())
625 {
626   /* [ WORD 1-5 ]  */
627   struct gimple_statement_omp omp;
628
629   /* [ WORD 6 ]
630      Clauses.  */
631   tree clauses;
632
633   /* [ WORD 7 ]
634      Child function holding the body of the parallel region.  */
635   tree child_fn;
636
637   /* [ WORD 8 ]
638      Shared data argument.  */
639   tree data_arg;
640 };
641
642
643 /* GIMPLE_OMP_TASK */
644
645 struct gimple_statement_omp_task GTY(())
646 {
647   /* [ WORD 1-8 ]  */
648   struct gimple_statement_omp_parallel par;
649
650   /* [ WORD 9 ]
651      Child function holding firstprivate initialization if needed.  */
652   tree copy_fn;
653
654   /* [ WORD 10-11 ]
655      Size and alignment in bytes of the argument data block.  */
656   tree arg_size;
657   tree arg_align;
658 };
659
660
661 /* GIMPLE_OMP_SECTION */
662 /* Uses struct gimple_statement_omp.  */
663
664
665 /* GIMPLE_OMP_SECTIONS */
666
667 struct gimple_statement_omp_sections GTY(())
668 {
669   /* [ WORD 1-5 ]  */
670   struct gimple_statement_omp omp;
671
672   /* [ WORD 6 ]  */
673   tree clauses;
674
675   /* [ WORD 7 ]
676      The control variable used for deciding which of the sections to
677      execute.  */
678   tree control;
679 };
680
681 /* GIMPLE_OMP_CONTINUE.
682
683    Note: This does not inherit from gimple_statement_omp, because we
684          do not need the body field.  */
685
686 struct gimple_statement_omp_continue GTY(())
687 {
688   /* [ WORD 1-4 ]  */
689   struct gimple_statement_base gsbase;
690
691   /* [ WORD 5 ]  */
692   tree control_def;
693
694   /* [ WORD 6 ]  */
695   tree control_use;
696 };
697
698 /* GIMPLE_OMP_SINGLE */
699
700 struct gimple_statement_omp_single GTY(())
701 {
702   /* [ WORD 1-5 ]  */
703   struct gimple_statement_omp omp;
704
705   /* [ WORD 6 ]  */
706   tree clauses;
707 };
708
709
710 /* GIMPLE_OMP_ATOMIC_LOAD.  
711    Note: This is based on gimple_statement_base, not g_s_omp, because g_s_omp
712    contains a sequence, which we don't need here.  */
713
714 struct gimple_statement_omp_atomic_load GTY(())
715 {
716   /* [ WORD 1-4 ]  */
717   struct gimple_statement_base gsbase;
718
719   /* [ WORD 5-6 ]  */
720   tree rhs, lhs;
721 };
722
723 /* GIMPLE_OMP_ATOMIC_STORE.
724    See note on GIMPLE_OMP_ATOMIC_LOAD.  */
725
726 struct gimple_statement_omp_atomic_store GTY(())
727 {
728   /* [ WORD 1-4 ]  */
729   struct gimple_statement_base gsbase;
730
731   /* [ WORD 5 ]  */
732   tree val;
733 };
734
735 enum gimple_statement_structure_enum {
736 #define DEFGSSTRUCT(SYM, STRING)        SYM,
737 #include "gsstruct.def"
738 #undef DEFGSSTRUCT
739     LAST_GSS_ENUM
740 };
741
742
743 /* Define the overall contents of a gimple tuple.  It may be any of the
744    structures declared above for various types of tuples.  */
745
746 union gimple_statement_d GTY ((desc ("gimple_statement_structure (&%h)")))
747 {
748   struct gimple_statement_base GTY ((tag ("GSS_BASE"))) gsbase;
749   struct gimple_statement_with_ops GTY ((tag ("GSS_WITH_OPS"))) gsops;
750   struct gimple_statement_with_memory_ops GTY ((tag ("GSS_WITH_MEM_OPS"))) gsmem;
751   struct gimple_statement_omp GTY ((tag ("GSS_OMP"))) omp;
752   struct gimple_statement_bind GTY ((tag ("GSS_BIND"))) gimple_bind;
753   struct gimple_statement_catch GTY ((tag ("GSS_CATCH"))) gimple_catch;
754   struct gimple_statement_eh_filter GTY ((tag ("GSS_EH_FILTER"))) gimple_eh_filter;
755   struct gimple_statement_phi GTY ((tag ("GSS_PHI"))) gimple_phi;
756   struct gimple_statement_resx GTY ((tag ("GSS_RESX"))) gimple_resx;
757   struct gimple_statement_try GTY ((tag ("GSS_TRY"))) gimple_try;
758   struct gimple_statement_wce GTY ((tag ("GSS_WCE"))) gimple_wce;
759   struct gimple_statement_asm GTY ((tag ("GSS_ASM"))) gimple_asm;
760   struct gimple_statement_omp_critical GTY ((tag ("GSS_OMP_CRITICAL"))) gimple_omp_critical;
761   struct gimple_statement_omp_for GTY ((tag ("GSS_OMP_FOR"))) gimple_omp_for;
762   struct gimple_statement_omp_parallel GTY ((tag ("GSS_OMP_PARALLEL"))) gimple_omp_parallel;
763   struct gimple_statement_omp_task GTY ((tag ("GSS_OMP_TASK"))) gimple_omp_task;
764   struct gimple_statement_omp_sections GTY ((tag ("GSS_OMP_SECTIONS"))) gimple_omp_sections;
765   struct gimple_statement_omp_single GTY ((tag ("GSS_OMP_SINGLE"))) gimple_omp_single;
766   struct gimple_statement_omp_continue GTY ((tag ("GSS_OMP_CONTINUE"))) gimple_omp_continue;
767   struct gimple_statement_omp_atomic_load GTY ((tag ("GSS_OMP_ATOMIC_LOAD"))) gimple_omp_atomic_load;
768   struct gimple_statement_omp_atomic_store GTY ((tag ("GSS_OMP_ATOMIC_STORE"))) gimple_omp_atomic_store;
769 };
770
771 /* In gimple.c.  */
772 gimple gimple_build_return (tree);
773
774 gimple gimple_build_assign_stat (tree, tree MEM_STAT_DECL);
775 #define gimple_build_assign(l,r) gimple_build_assign_stat (l, r MEM_STAT_INFO)
776
777 void extract_ops_from_tree (tree, enum tree_code *, tree *, tree *);
778
779 gimple gimple_build_assign_with_ops_stat (enum tree_code, tree, tree,
780                                           tree MEM_STAT_DECL);
781 #define gimple_build_assign_with_ops(c,o1,o2,o3) \
782   gimple_build_assign_with_ops_stat (c, o1, o2, o3 MEM_STAT_INFO)
783
784 gimple gimple_build_call_vec (tree, VEC(tree, heap) *);
785 gimple gimple_build_call (tree, unsigned, ...);
786 gimple gimple_build_call_from_tree (tree);
787 gimple gimplify_assign (tree, tree, gimple_seq *);
788 gimple gimple_build_cond (enum tree_code, tree, tree, tree, tree);
789 gimple gimple_build_label (tree label);
790 gimple gimple_build_goto (tree dest);
791 gimple gimple_build_nop (void);
792 gimple gimple_build_bind (tree, gimple_seq, tree);
793 gimple gimple_build_asm (const char *, unsigned, unsigned, unsigned, ...);
794 gimple gimple_build_asm_vec (const char *, VEC(tree,gc) *, VEC(tree,gc) *,
795                              VEC(tree,gc) *);
796 gimple gimple_build_catch (tree, gimple_seq);
797 gimple gimple_build_eh_filter (tree, gimple_seq);
798 gimple gimple_build_try (gimple_seq, gimple_seq, enum gimple_try_flags);
799 gimple gimple_build_wce (gimple_seq);
800 gimple gimple_build_resx (int);
801 gimple gimple_build_switch (unsigned, tree, tree, ...);
802 gimple gimple_build_switch_vec (tree, tree, VEC(tree,heap) *);
803 gimple gimple_build_omp_parallel (gimple_seq, tree, tree, tree);
804 gimple gimple_build_omp_task (gimple_seq, tree, tree, tree, tree, tree, tree);
805 gimple gimple_build_omp_for (gimple_seq, tree, size_t, gimple_seq);
806 gimple gimple_build_omp_critical (gimple_seq, tree);
807 gimple gimple_build_omp_section (gimple_seq);
808 gimple gimple_build_omp_continue (tree, tree);
809 gimple gimple_build_omp_master (gimple_seq);
810 gimple gimple_build_omp_return (bool);
811 gimple gimple_build_omp_ordered (gimple_seq);
812 gimple gimple_build_omp_sections (gimple_seq, tree);
813 gimple gimple_build_omp_sections_switch (void);
814 gimple gimple_build_omp_single (gimple_seq, tree);
815 gimple gimple_build_cdt (tree, tree);
816 gimple gimple_build_omp_atomic_load (tree, tree);
817 gimple gimple_build_omp_atomic_store (tree);
818 gimple gimple_build_predict (enum br_predictor, enum prediction);
819 enum gimple_statement_structure_enum gimple_statement_structure (gimple);
820 enum gimple_statement_structure_enum gss_for_assign (enum tree_code);
821 void sort_case_labels (VEC(tree,heap) *);
822 void gimple_set_body (tree, gimple_seq);
823 gimple_seq gimple_body (tree);
824 bool gimple_has_body_p (tree);
825 gimple_seq gimple_seq_alloc (void);
826 void gimple_seq_free (gimple_seq);
827 void gimple_seq_add_seq (gimple_seq *, gimple_seq);
828 gimple_seq gimple_seq_copy (gimple_seq);
829 int gimple_call_flags (const_gimple);
830 bool gimple_assign_copy_p (gimple);
831 bool gimple_assign_ssa_name_copy_p (gimple);
832 bool gimple_assign_single_p (gimple);
833 bool gimple_assign_unary_nop_p (gimple);
834 void gimple_set_bb (gimple, struct basic_block_def *);
835 tree gimple_fold (const_gimple);
836 void gimple_assign_set_rhs_from_tree (gimple_stmt_iterator *, tree);
837 void gimple_assign_set_rhs_with_ops (gimple_stmt_iterator *, enum tree_code,
838                                      tree, tree);
839 tree gimple_get_lhs (const_gimple);
840 void gimple_set_lhs (gimple, tree);
841 gimple gimple_copy (gimple);
842 bool is_gimple_operand (const_tree);
843 void gimple_set_modified (gimple, bool);
844 void gimple_cond_get_ops_from_tree (tree, enum tree_code *, tree *, tree *);
845 gimple gimple_build_cond_from_tree (tree, tree, tree);
846 void gimple_cond_set_condition_from_tree (gimple, tree);
847 bool gimple_has_side_effects (const_gimple);
848 bool gimple_rhs_has_side_effects (const_gimple);
849 bool gimple_could_trap_p (gimple);
850 bool gimple_assign_rhs_could_trap_p (gimple);
851 void gimple_regimplify_operands (gimple, gimple_stmt_iterator *);
852 bool empty_body_p (gimple_seq);
853 unsigned get_gimple_rhs_num_ops (enum tree_code);
854
855 /* Returns true iff T is a valid GIMPLE statement.  */
856 extern bool is_gimple_stmt (tree);
857
858 /* Returns true iff TYPE is a valid type for a scalar register variable.  */
859 extern bool is_gimple_reg_type (tree);
860 /* Returns true iff T is a scalar register variable.  */
861 extern bool is_gimple_reg (tree);
862 /* Returns true if T is a GIMPLE temporary variable, false otherwise.  */
863 extern bool is_gimple_formal_tmp_var (tree);
864 /* Returns true if T is a GIMPLE temporary register variable.  */
865 extern bool is_gimple_formal_tmp_reg (tree);
866 /* Returns true iff T is any sort of variable.  */
867 extern bool is_gimple_variable (tree);
868 /* Returns true iff T is any sort of symbol.  */
869 extern bool is_gimple_id (tree);
870 /* Returns true iff T is a variable or an INDIRECT_REF (of a variable).  */
871 extern bool is_gimple_min_lval (tree);
872 /* Returns true iff T is something whose address can be taken.  */
873 extern bool is_gimple_addressable (tree);
874 /* Returns true iff T is any valid GIMPLE lvalue.  */
875 extern bool is_gimple_lvalue (tree);
876
877 /* Returns true iff T is a GIMPLE address.  */
878 bool is_gimple_address (const_tree);
879 /* Returns true iff T is a GIMPLE invariant address.  */
880 bool is_gimple_invariant_address (const_tree);
881 /* Returns true iff T is a GIMPLE invariant address at interprocedural
882    level.  */
883 bool is_gimple_ip_invariant_address (const_tree);
884 /* Returns true iff T is a valid GIMPLE constant.  */
885 bool is_gimple_constant (const_tree);
886 /* Returns true iff T is a GIMPLE restricted function invariant.  */
887 extern bool is_gimple_min_invariant (const_tree);
888 /* Returns true iff T is a GIMPLE restricted interprecodural invariant.  */
889 extern bool is_gimple_ip_invariant (const_tree);
890 /* Returns true iff T is a GIMPLE rvalue.  */
891 extern bool is_gimple_val (tree);
892 /* Returns true iff T is a GIMPLE asm statement input.  */
893 extern bool is_gimple_asm_val (tree);
894 /* Returns true iff T is a valid rhs for a MODIFY_EXPR where the LHS is a
895    GIMPLE temporary, a renamed user variable, or something else,
896    respectively.  */
897 extern bool is_gimple_formal_tmp_rhs (tree);
898 extern bool is_gimple_reg_rhs (tree);
899 extern bool is_gimple_mem_rhs (tree);
900
901 /* Returns true iff T is a valid if-statement condition.  */
902 extern bool is_gimple_condexpr (tree);
903
904 /* Returns true iff T is a type conversion.  */
905 extern bool is_gimple_cast (tree);
906 /* Returns true iff T is a variable that does not need to live in memory.  */
907 extern bool is_gimple_non_addressable (tree t);
908
909 /* Returns true iff T is a valid call address expression.  */
910 extern bool is_gimple_call_addr (tree);
911 /* If T makes a function call, returns the CALL_EXPR operand.  */
912 extern tree get_call_expr_in (tree t);
913
914 extern void recalculate_side_effects (tree);
915
916 /* In gimplify.c  */
917 extern tree create_tmp_var_raw (tree, const char *);
918 extern tree create_tmp_var_name (const char *);
919 extern tree create_tmp_var (tree, const char *);
920 extern tree get_initialized_tmp_var (tree, gimple_seq *, gimple_seq *);
921 extern tree get_formal_tmp_var (tree, gimple_seq *);
922 extern void declare_vars (tree, gimple, bool);
923 extern void tree_annotate_all_with_location (tree *, location_t);
924 extern void annotate_all_with_location (gimple_seq, location_t);
925
926 /* Validation of GIMPLE expressions.  Note that these predicates only check
927    the basic form of the expression, they don't recurse to make sure that
928    underlying nodes are also of the right form.  */
929 typedef bool (*gimple_predicate)(tree);
930
931
932 /* FIXME we should deduce this from the predicate.  */
933 typedef enum fallback_t {
934   fb_none = 0,          /* Do not generate a temporary.  */
935
936   fb_rvalue = 1,        /* Generate an rvalue to hold the result of a
937                            gimplified expression.  */
938
939   fb_lvalue = 2,        /* Generate an lvalue to hold the result of a
940                            gimplified expression.  */
941
942   fb_mayfail = 4,       /* Gimplification may fail.  Error issued
943                            afterwards.  */
944   fb_either= fb_rvalue | fb_lvalue
945 } fallback_t;
946
947 enum gimplify_status {
948   GS_ERROR      = -2,   /* Something Bad Seen.  */
949   GS_UNHANDLED  = -1,   /* A langhook result for "I dunno".  */
950   GS_OK         = 0,    /* We did something, maybe more to do.  */
951   GS_ALL_DONE   = 1     /* The expression is fully gimplified.  */
952 };
953
954 struct gimplify_ctx
955 {
956   struct gimplify_ctx *prev_context;
957
958   VEC(gimple,heap) *bind_expr_stack;
959   tree temps;
960   gimple_seq conditional_cleanups;
961   tree exit_label;
962   tree return_temp;
963   
964   VEC(tree,heap) *case_labels;
965   /* The formal temporary table.  Should this be persistent?  */
966   htab_t temp_htab;
967
968   int conditions;
969   bool save_stack;
970   bool into_ssa;
971   bool allow_rhs_cond_expr;
972 };
973
974 extern enum gimplify_status gimplify_expr (tree *, gimple_seq *, gimple_seq *,
975                                            bool (*) (tree), fallback_t);
976 extern void gimplify_type_sizes (tree, gimple_seq *);
977 extern void gimplify_one_sizepos (tree *, gimple_seq *);
978 extern bool gimplify_stmt (tree *, gimple_seq *);
979 extern gimple gimplify_body (tree *, tree, bool);
980 extern void push_gimplify_context (struct gimplify_ctx *);
981 extern void pop_gimplify_context (gimple);
982 extern void gimplify_and_add (tree, gimple_seq *);
983
984 /* Miscellaneous helpers.  */
985 extern void gimple_add_tmp_var (tree);
986 extern gimple gimple_current_bind_expr (void);
987 extern VEC(gimple, heap) *gimple_bind_expr_stack (void);
988 extern tree voidify_wrapper_expr (tree, tree);
989 extern tree build_and_jump (tree *);
990 extern tree alloc_stmt_list (void);
991 extern void free_stmt_list (tree);
992 extern tree force_labels_r (tree *, int *, void *);
993 extern enum gimplify_status gimplify_va_arg_expr (tree *, gimple_seq *,
994                                                   gimple_seq *);
995 struct gimplify_omp_ctx;
996 extern void omp_firstprivatize_variable (struct gimplify_omp_ctx *, tree);
997 extern tree gimple_boolify (tree);
998 extern gimple_predicate rhs_predicate_for (tree);
999 extern tree canonicalize_cond_expr_cond (tree);
1000
1001 /* In omp-low.c.  */
1002 extern void diagnose_omp_structured_block_errors (tree);
1003 extern tree omp_reduction_init (tree, tree);
1004
1005 /* In tree-nested.c.  */
1006 extern void lower_nested_functions (tree);
1007 extern void insert_field_into_struct (tree, tree);
1008
1009 /* In gimplify.c.  */
1010 extern void gimplify_function_tree (tree);
1011
1012 /* In cfgexpand.c.  */
1013 extern tree gimple_assign_rhs_to_tree (gimple);
1014
1015 /* In builtins.c  */
1016 extern bool validate_gimple_arglist (const_gimple, ...);
1017
1018 /* In tree-ssa-operands.c  */
1019 extern void gimple_add_to_addresses_taken (gimple, tree);
1020
1021 /* In tree-ssa.c  */
1022 extern bool tree_ssa_useless_type_conversion (tree);
1023 extern bool useless_type_conversion_p (tree, tree);
1024 extern bool types_compatible_p (tree, tree);
1025
1026 /* Return the code for GIMPLE statement G.  */
1027
1028 static inline enum gimple_code
1029 gimple_code (const_gimple g)
1030 {
1031   return g->gsbase.code;
1032 }
1033
1034
1035 /* Return true if statement G has sub-statements.  This is only true for
1036    High GIMPLE statements.  */
1037
1038 static inline bool
1039 gimple_has_substatements (gimple g)
1040 {
1041   switch (gimple_code (g))
1042     {
1043     case GIMPLE_BIND:
1044     case GIMPLE_CATCH:
1045     case GIMPLE_EH_FILTER:
1046     case GIMPLE_TRY:
1047     case GIMPLE_OMP_FOR:
1048     case GIMPLE_OMP_MASTER:
1049     case GIMPLE_OMP_ORDERED:
1050     case GIMPLE_OMP_SECTION:
1051     case GIMPLE_OMP_PARALLEL:
1052     case GIMPLE_OMP_TASK:
1053     case GIMPLE_OMP_SECTIONS:
1054     case GIMPLE_OMP_SINGLE:
1055     case GIMPLE_OMP_CRITICAL:
1056     case GIMPLE_WITH_CLEANUP_EXPR:
1057       return true;
1058
1059     default:
1060       return false;
1061     }
1062 }
1063           
1064
1065 /* Return the basic block holding statement G.  */
1066
1067 static inline struct basic_block_def *
1068 gimple_bb (const_gimple g)
1069 {
1070   return g->gsbase.bb;
1071 }
1072
1073
1074 /* Return the lexical scope block holding statement G.  */
1075
1076 static inline tree
1077 gimple_block (const_gimple g)
1078 {
1079   return g->gsbase.block;
1080 }
1081
1082
1083 /* Set BLOCK to be the lexical scope block holding statement G.  */
1084
1085 static inline void
1086 gimple_set_block (gimple g, tree block)
1087 {
1088   g->gsbase.block = block;
1089 }
1090
1091
1092 /* Return location information for statement G.  */
1093
1094 static inline location_t
1095 gimple_location (const_gimple g)
1096 {
1097   return g->gsbase.location;
1098 }
1099
1100 /* Return pointer to location information for statement G.  */
1101
1102 static inline const location_t *
1103 gimple_location_ptr (const_gimple g)
1104 {
1105   return &g->gsbase.location;
1106 }
1107
1108
1109 /* Set location information for statement G.  */
1110
1111 static inline void
1112 gimple_set_location (gimple g, location_t location)
1113 {
1114   g->gsbase.location = location;
1115 }
1116
1117
1118 /* Return true if G contains location information.  */
1119
1120 static inline bool
1121 gimple_has_location (const_gimple g)
1122 {
1123   return gimple_location (g) != UNKNOWN_LOCATION;
1124 }
1125
1126
1127 /* Return the file name of the location of STMT.  */
1128
1129 static inline const char *
1130 gimple_filename (const_gimple stmt)
1131 {
1132   return LOCATION_FILE (gimple_location (stmt));
1133 }
1134
1135
1136 /* Return the line number of the location of STMT.  */
1137
1138 static inline int
1139 gimple_lineno (const_gimple stmt)
1140 {
1141   return LOCATION_LINE (gimple_location (stmt));
1142 }
1143
1144
1145 /* Determine whether SEQ is a singleton. */
1146
1147 static inline bool
1148 gimple_seq_singleton_p (gimple_seq seq)
1149 {
1150   return ((gimple_seq_first (seq) != NULL)
1151           && (gimple_seq_first (seq) == gimple_seq_last (seq)));
1152 }
1153
1154 /* Return true if no warnings should be emitted for statement STMT.  */
1155
1156 static inline bool
1157 gimple_no_warning_p (const_gimple stmt)
1158 {
1159   return stmt->gsbase.no_warning;
1160 }
1161
1162 /* Set the no_warning flag of STMT to NO_WARNING.  */
1163
1164 static inline void
1165 gimple_set_no_warning (gimple stmt, bool no_warning)
1166 {
1167   stmt->gsbase.no_warning = (unsigned) no_warning;
1168 }
1169
1170 /* Set the visited status on statement STMT to VISITED_P.  */
1171
1172 static inline void
1173 gimple_set_visited (gimple stmt, bool visited_p)
1174 {
1175   stmt->gsbase.visited = (unsigned) visited_p;
1176 }
1177
1178
1179 /* Return the visited status for statement STMT.  */
1180
1181 static inline bool
1182 gimple_visited_p (gimple stmt)
1183 {
1184   return stmt->gsbase.visited;
1185 }
1186
1187
1188 /* Set pass local flag PLF on statement STMT to VAL_P.  */
1189
1190 static inline void
1191 gimple_set_plf (gimple stmt, enum plf_mask plf, bool val_p)
1192 {
1193   if (val_p)
1194     stmt->gsbase.plf |= (unsigned int) plf;
1195   else
1196     stmt->gsbase.plf &= ~((unsigned int) plf);
1197 }
1198
1199
1200 /* Return the value of pass local flag PLF on statement STMT.  */
1201
1202 static inline unsigned int
1203 gimple_plf (gimple stmt, enum plf_mask plf)
1204 {
1205   return stmt->gsbase.plf & ((unsigned int) plf);
1206 }
1207
1208
1209 /* Set the UID of statement.  */
1210
1211 static inline void
1212 gimple_set_uid (gimple g, unsigned uid)
1213 {
1214   g->gsbase.uid = uid;
1215 }
1216
1217
1218 /* Return the UID of statement.  */
1219
1220 static inline unsigned
1221 gimple_uid (const_gimple g)
1222 {
1223   return g->gsbase.uid;
1224 }
1225
1226
1227 /* Return true if GIMPLE statement G has register or memory operands.  */
1228
1229 static inline bool
1230 gimple_has_ops (const_gimple g)
1231 {
1232   return gimple_code (g) >= GIMPLE_COND && gimple_code (g) <= GIMPLE_RETURN;
1233 }
1234
1235
1236 /* Return true if GIMPLE statement G has memory operands.  */
1237
1238 static inline bool
1239 gimple_has_mem_ops (const_gimple g)
1240 {
1241   return gimple_code (g) >= GIMPLE_ASSIGN && gimple_code (g) <= GIMPLE_RETURN;
1242 }
1243
1244 /* Return the set of addresses taken by statement G.  */
1245
1246 static inline bitmap
1247 gimple_addresses_taken (const_gimple g)
1248 {
1249   if (gimple_has_ops (g))
1250     return g->gsops.opbase.addresses_taken;
1251   else
1252     return NULL;
1253 }
1254
1255
1256 /* Return a pointer to the set of addresses taken by statement G.  */
1257
1258 static inline bitmap *
1259 gimple_addresses_taken_ptr (gimple g)
1260 {
1261   if (gimple_has_ops (g))
1262     return &g->gsops.opbase.addresses_taken;
1263   else
1264     return NULL;
1265 }
1266
1267
1268 /* Set B to be the set of addresses taken by statement G.  The
1269    previous set is freed.  */
1270
1271 static inline void
1272 gimple_set_addresses_taken (gimple g, bitmap b)
1273 {
1274   gcc_assert (gimple_has_ops (g));
1275   BITMAP_FREE (g->gsops.opbase.addresses_taken);
1276   g->gsops.opbase.addresses_taken = b;
1277 }
1278
1279
1280 /* Return the set of DEF operands for statement G.  */
1281
1282 static inline struct def_optype_d *
1283 gimple_def_ops (const_gimple g)
1284 {
1285   if (!gimple_has_ops (g))
1286     return NULL;
1287   return g->gsops.opbase.def_ops;
1288 }
1289
1290
1291 /* Set DEF to be the set of DEF operands for statement G.  */
1292
1293 static inline void
1294 gimple_set_def_ops (gimple g, struct def_optype_d *def)
1295 {
1296   gcc_assert (gimple_has_ops (g));
1297   g->gsops.opbase.def_ops = def;
1298 }
1299
1300
1301 /* Return the set of USE operands for statement G.  */
1302
1303 static inline struct use_optype_d *
1304 gimple_use_ops (const_gimple g)
1305 {
1306   if (!gimple_has_ops (g))
1307     return NULL;
1308   return g->gsops.opbase.use_ops;
1309 }
1310
1311
1312 /* Set USE to be the set of USE operands for statement G.  */
1313
1314 static inline void
1315 gimple_set_use_ops (gimple g, struct use_optype_d *use)
1316 {
1317   gcc_assert (gimple_has_ops (g));
1318   g->gsops.opbase.use_ops = use;
1319 }
1320
1321
1322 /* Return the set of VUSE operands for statement G.  */
1323
1324 static inline struct voptype_d *
1325 gimple_vuse_ops (const_gimple g)
1326 {
1327   if (!gimple_has_mem_ops (g))
1328     return NULL;
1329   return g->gsmem.membase.vuse_ops;
1330 }
1331
1332
1333 /* Set OPS to be the set of VUSE operands for statement G.  */
1334
1335 static inline void
1336 gimple_set_vuse_ops (gimple g, struct voptype_d *ops)
1337 {
1338   gcc_assert (gimple_has_mem_ops (g));
1339   g->gsmem.membase.vuse_ops = ops;
1340 }
1341
1342
1343 /* Return the set of VDEF operands for statement G.  */
1344
1345 static inline struct voptype_d *
1346 gimple_vdef_ops (const_gimple g)
1347 {
1348   if (!gimple_has_mem_ops (g))
1349     return NULL;
1350   return g->gsmem.membase.vdef_ops;
1351 }
1352
1353
1354 /* Set OPS to be the set of VDEF operands for statement G.  */
1355
1356 static inline void
1357 gimple_set_vdef_ops (gimple g, struct voptype_d *ops)
1358 {
1359   gcc_assert (gimple_has_mem_ops (g));
1360   g->gsmem.membase.vdef_ops = ops;
1361 }
1362
1363
1364 /* Return the set of symbols loaded by statement G.  Each element of the
1365    set is the DECL_UID of the corresponding symbol.  */
1366
1367 static inline bitmap
1368 gimple_loaded_syms (const_gimple g)
1369 {
1370   if (!gimple_has_mem_ops (g))
1371     return NULL;
1372   return g->gsmem.membase.loads;
1373 }
1374
1375
1376 /* Return the set of symbols stored by statement G.  Each element of
1377    the set is the DECL_UID of the corresponding symbol.  */
1378
1379 static inline bitmap
1380 gimple_stored_syms (const_gimple g)
1381 {
1382   if (!gimple_has_mem_ops (g))
1383     return NULL;
1384   return g->gsmem.membase.stores;
1385 }
1386
1387
1388 /* Return true if statement G has operands and the modified field has
1389    been set.  */
1390
1391 static inline bool
1392 gimple_modified_p (const_gimple g)
1393 {
1394   return (gimple_has_ops (g)) ? (bool) g->gsbase.modified : false;
1395 }
1396
1397 /* Return the type of the main expression computed by STMT.  Return
1398    void_type_node if the statement computes nothing.  */
1399
1400 static inline tree
1401 gimple_expr_type (const_gimple stmt)
1402 {
1403   enum gimple_code code = gimple_code (stmt);
1404
1405   if (code == GIMPLE_ASSIGN || code == GIMPLE_CALL)
1406     {
1407       tree type = TREE_TYPE (gimple_get_lhs (stmt));
1408       /* Integral sub-types are never the type of the expression,
1409          but they still can be the type of the result as the base
1410          type (in which expressions are computed) is trivially
1411          convertible to one of its sub-types.  So always return
1412          the base type here.  */
1413       if (INTEGRAL_TYPE_P (type)
1414           && TREE_TYPE (type)
1415           /* But only if they are trivially convertible.  */
1416           && useless_type_conversion_p (type, TREE_TYPE (type)))
1417         type = TREE_TYPE (type);
1418       return type;
1419     }
1420   else if (code == GIMPLE_COND)
1421     return boolean_type_node;
1422   else
1423     return void_type_node;
1424 }
1425
1426
1427 /* Return the tree code for the expression computed by STMT.  This is
1428    only valid for GIMPLE_COND, GIMPLE_CALL and GIMPLE_ASSIGN.  For
1429    GIMPLE_CALL, return CALL_EXPR as the expression code for
1430    consistency.  This is useful when the caller needs to deal with the
1431    three kinds of computation that GIMPLE supports.  */
1432
1433 static inline enum tree_code
1434 gimple_expr_code (const_gimple stmt)
1435 {
1436   enum gimple_code code = gimple_code (stmt);
1437   if (code == GIMPLE_ASSIGN || code == GIMPLE_COND)
1438     return (enum tree_code) stmt->gsbase.subcode;
1439   else if (code == GIMPLE_CALL)
1440     return CALL_EXPR;
1441   else
1442     gcc_unreachable ();
1443 }
1444
1445
1446 /* Mark statement S as modified, and update it.  */
1447
1448 static inline void
1449 update_stmt (gimple s)
1450 {
1451   if (gimple_has_ops (s))
1452     {
1453       gimple_set_modified (s, true);
1454       update_stmt_operands (s);
1455     }
1456 }
1457
1458 /* Update statement S if it has been optimized.  */
1459
1460 static inline void
1461 update_stmt_if_modified (gimple s)
1462 {
1463   if (gimple_modified_p (s))
1464     update_stmt_operands (s);
1465 }
1466
1467 /* Return true if statement STMT contains volatile operands.  */
1468
1469 static inline bool
1470 gimple_has_volatile_ops (const_gimple stmt)
1471 {
1472   if (gimple_has_mem_ops (stmt))
1473     return stmt->gsbase.has_volatile_ops;
1474   else
1475     return false;
1476 }
1477
1478
1479 /* Set the HAS_VOLATILE_OPS flag to VOLATILEP.  */
1480
1481 static inline void
1482 gimple_set_has_volatile_ops (gimple stmt, bool volatilep)
1483 {
1484   if (gimple_has_mem_ops (stmt))
1485     stmt->gsbase.has_volatile_ops = (unsigned) volatilep;
1486 }
1487
1488
1489 /* Return true if statement STMT may access memory.  */
1490
1491 static inline bool
1492 gimple_references_memory_p (gimple stmt)
1493 {
1494   return gimple_has_mem_ops (stmt) && stmt->gsbase.references_memory_p;
1495 }
1496
1497
1498 /* Set the REFERENCES_MEMORY_P flag for STMT to MEM_P.  */
1499
1500 static inline void
1501 gimple_set_references_memory (gimple stmt, bool mem_p)
1502 {
1503   if (gimple_has_mem_ops (stmt))
1504     stmt->gsbase.references_memory_p = (unsigned) mem_p;
1505 }
1506
1507 /* Return the subcode for OMP statement S.  */
1508
1509 static inline unsigned
1510 gimple_omp_subcode (const_gimple s)
1511 {
1512   gcc_assert (gimple_code (s) >= GIMPLE_OMP_ATOMIC_LOAD
1513               && gimple_code (s) <= GIMPLE_OMP_SINGLE);
1514   return s->gsbase.subcode;
1515 }
1516
1517 /* Set the subcode for OMP statement S to SUBCODE.  */
1518
1519 static inline void
1520 gimple_omp_set_subcode (gimple s, unsigned int subcode)
1521 {
1522   /* We only have 16 bits for the subcode.  Assert that we are not
1523      overflowing it.  */
1524   gcc_assert (subcode < (1 << 16));
1525   s->gsbase.subcode = subcode;
1526 }
1527
1528 /* Set the nowait flag on OMP_RETURN statement S.  */
1529
1530 static inline void
1531 gimple_omp_return_set_nowait (gimple s)
1532 {
1533   GIMPLE_CHECK (s, GIMPLE_OMP_RETURN);
1534   s->gsbase.subcode |= GF_OMP_RETURN_NOWAIT;
1535 }
1536
1537
1538 /* Return true if OMP return statement G has the GF_OMP_RETURN_NOWAIT
1539    flag set.  */
1540
1541 static inline bool
1542 gimple_omp_return_nowait_p (const_gimple g)
1543 {
1544   GIMPLE_CHECK (g, GIMPLE_OMP_RETURN);
1545   return (gimple_omp_subcode (g) & GF_OMP_RETURN_NOWAIT) != 0;
1546 }
1547
1548
1549 /* Return true if OMP section statement G has the GF_OMP_SECTION_LAST
1550    flag set.  */
1551
1552 static inline bool
1553 gimple_omp_section_last_p (const_gimple g)
1554 {
1555   GIMPLE_CHECK (g, GIMPLE_OMP_SECTION);
1556   return (gimple_omp_subcode (g) & GF_OMP_SECTION_LAST) != 0;
1557 }
1558
1559
1560 /* Set the GF_OMP_SECTION_LAST flag on G.  */
1561
1562 static inline void
1563 gimple_omp_section_set_last (gimple g)
1564 {
1565   GIMPLE_CHECK (g, GIMPLE_OMP_SECTION);
1566   g->gsbase.subcode |= GF_OMP_SECTION_LAST;
1567 }
1568
1569
1570 /* Return true if OMP parallel statement G has the
1571    GF_OMP_PARALLEL_COMBINED flag set.  */
1572
1573 static inline bool
1574 gimple_omp_parallel_combined_p (const_gimple g)
1575 {
1576   GIMPLE_CHECK (g, GIMPLE_OMP_PARALLEL);
1577   return (gimple_omp_subcode (g) & GF_OMP_PARALLEL_COMBINED) != 0;
1578 }
1579
1580
1581 /* Set the GF_OMP_PARALLEL_COMBINED field in G depending on the boolean
1582    value of COMBINED_P.  */
1583
1584 static inline void
1585 gimple_omp_parallel_set_combined_p (gimple g, bool combined_p)
1586 {
1587   GIMPLE_CHECK (g, GIMPLE_OMP_PARALLEL);
1588   if (combined_p)
1589     g->gsbase.subcode |= GF_OMP_PARALLEL_COMBINED;
1590   else
1591     g->gsbase.subcode &= ~GF_OMP_PARALLEL_COMBINED;
1592 }
1593
1594
1595 /* Return the number of operands for statement GS.  */
1596
1597 static inline unsigned
1598 gimple_num_ops (const_gimple gs)
1599 {
1600   return gs->gsbase.num_ops;
1601 }
1602
1603
1604 /* Set the number of operands for statement GS.  */
1605
1606 static inline void
1607 gimple_set_num_ops (gimple gs, unsigned num_ops)
1608 {
1609   gs->gsbase.num_ops = num_ops;
1610 }
1611
1612
1613 /* Return the array of operands for statement GS.  */
1614
1615 static inline tree *
1616 gimple_ops (gimple gs)
1617 {
1618   /* Offset in bytes to the location of the operand vector in every
1619      tuple structure.  Defined in gimple.c  */
1620   extern size_t const gimple_ops_offset_[];
1621
1622   if (!gimple_has_ops (gs))
1623     return NULL;
1624
1625   /* All the tuples have their operand vector at the very bottom
1626      of the structure.  */
1627   return ((tree *) ((char *) gs + gimple_ops_offset_[gimple_code (gs)]));
1628 }
1629
1630
1631 /* Return operand I for statement GS.  */
1632
1633 static inline tree
1634 gimple_op (const_gimple gs, unsigned i)
1635 {
1636   if (gimple_has_ops (gs))
1637     {
1638       gcc_assert (i < gimple_num_ops (gs));
1639       return gimple_ops (CONST_CAST_GIMPLE (gs))[i];
1640     }
1641   else
1642     return NULL_TREE;
1643 }
1644
1645 /* Return a pointer to operand I for statement GS.  */
1646
1647 static inline tree *
1648 gimple_op_ptr (const_gimple gs, unsigned i)
1649 {
1650   if (gimple_has_ops (gs))
1651     {
1652       gcc_assert (i < gimple_num_ops (gs));
1653       return gimple_ops (CONST_CAST_GIMPLE (gs)) + i;
1654     }
1655   else
1656     return NULL;
1657 }
1658
1659 /* Set operand I of statement GS to OP.  */
1660
1661 static inline void
1662 gimple_set_op (gimple gs, unsigned i, tree op)
1663 {
1664   gcc_assert (gimple_has_ops (gs) && i < gimple_num_ops (gs));
1665
1666   /* Note.  It may be tempting to assert that OP matches
1667      is_gimple_operand, but that would be wrong.  Different tuples
1668      accept slightly different sets of tree operands.  Each caller
1669      should perform its own validation.  */
1670   gimple_ops (gs)[i] = op;
1671 }
1672
1673 /* Return true if GS is a GIMPLE_ASSIGN.  */
1674
1675 static inline bool
1676 is_gimple_assign (const_gimple gs)
1677 {
1678   return gimple_code (gs) == GIMPLE_ASSIGN;
1679 }
1680
1681 /* Determine if expression CODE is one of the valid expressions that can
1682    be used on the RHS of GIMPLE assignments.  */
1683
1684 static inline enum gimple_rhs_class
1685 get_gimple_rhs_class (enum tree_code code)
1686 {
1687   return (enum gimple_rhs_class) gimple_rhs_class_table[(int) code];
1688 }
1689
1690 /* Return the LHS of assignment statement GS.  */
1691
1692 static inline tree
1693 gimple_assign_lhs (const_gimple gs)
1694 {
1695   GIMPLE_CHECK (gs, GIMPLE_ASSIGN);
1696   return gimple_op (gs, 0);
1697 }
1698
1699
1700 /* Return a pointer to the LHS of assignment statement GS.  */
1701
1702 static inline tree *
1703 gimple_assign_lhs_ptr (const_gimple gs)
1704 {
1705   GIMPLE_CHECK (gs, GIMPLE_ASSIGN);
1706   return gimple_op_ptr (gs, 0);
1707 }
1708
1709
1710 /* Set LHS to be the LHS operand of assignment statement GS.  */
1711
1712 static inline void
1713 gimple_assign_set_lhs (gimple gs, tree lhs)
1714 {
1715   GIMPLE_CHECK (gs, GIMPLE_ASSIGN);
1716   gcc_assert (is_gimple_operand (lhs));
1717   gimple_set_op (gs, 0, lhs);
1718
1719   if (lhs && TREE_CODE (lhs) == SSA_NAME)
1720     SSA_NAME_DEF_STMT (lhs) = gs;
1721 }
1722
1723
1724 /* Return the first operand on the RHS of assignment statement GS.  */
1725
1726 static inline tree
1727 gimple_assign_rhs1 (const_gimple gs)
1728 {
1729   GIMPLE_CHECK (gs, GIMPLE_ASSIGN);
1730   return gimple_op (gs, 1);
1731 }
1732
1733
1734 /* Return a pointer to the first operand on the RHS of assignment
1735    statement GS.  */
1736
1737 static inline tree *
1738 gimple_assign_rhs1_ptr (const_gimple gs)
1739 {
1740   GIMPLE_CHECK (gs, GIMPLE_ASSIGN);
1741   return gimple_op_ptr (gs, 1);
1742 }
1743
1744 /* Set RHS to be the first operand on the RHS of assignment statement GS.  */
1745
1746 static inline void
1747 gimple_assign_set_rhs1 (gimple gs, tree rhs)
1748 {
1749   GIMPLE_CHECK (gs, GIMPLE_ASSIGN);
1750
1751   /* If there are 3 or more operands, the 2 operands on the RHS must be
1752      GIMPLE values.  */
1753   if (gimple_num_ops (gs) >= 3)
1754     gcc_assert (is_gimple_val (rhs));
1755   else
1756     gcc_assert (is_gimple_operand (rhs));
1757
1758   gimple_set_op (gs, 1, rhs);
1759 }
1760
1761
1762 /* Return the second operand on the RHS of assignment statement GS.
1763    If GS does not have two operands, NULL is returned instead.  */
1764
1765 static inline tree
1766 gimple_assign_rhs2 (const_gimple gs)
1767 {
1768   GIMPLE_CHECK (gs, GIMPLE_ASSIGN);
1769
1770   if (gimple_num_ops (gs) >= 3)
1771     return gimple_op (gs, 2);
1772   else
1773     return NULL_TREE;
1774 }
1775
1776
1777 /* Return a pointer to the second operand on the RHS of assignment
1778    statement GS.  */
1779
1780 static inline tree *
1781 gimple_assign_rhs2_ptr (const_gimple gs)
1782 {
1783   GIMPLE_CHECK (gs, GIMPLE_ASSIGN);
1784   return gimple_op_ptr (gs, 2);
1785 }
1786
1787
1788 /* Set RHS to be the second operand on the RHS of assignment statement GS.  */
1789
1790 static inline void
1791 gimple_assign_set_rhs2 (gimple gs, tree rhs)
1792 {
1793   GIMPLE_CHECK (gs, GIMPLE_ASSIGN);
1794
1795   /* The 2 operands on the RHS must be GIMPLE values.  */
1796   gcc_assert (is_gimple_val (rhs));
1797
1798   gimple_set_op (gs, 2, rhs);
1799 }
1800
1801 /* Returns true if GS is a nontemporal move.  */
1802
1803 static inline bool
1804 gimple_assign_nontemporal_move_p (const_gimple gs)
1805 {
1806   GIMPLE_CHECK (gs, GIMPLE_ASSIGN);
1807   return gs->gsbase.nontemporal_move;
1808 }
1809
1810 /* Sets nontemporal move flag of GS to NONTEMPORAL.  */
1811
1812 static inline void
1813 gimple_assign_set_nontemporal_move (gimple gs, bool nontemporal)
1814 {
1815   GIMPLE_CHECK (gs, GIMPLE_ASSIGN);
1816   gs->gsbase.nontemporal_move = nontemporal;
1817 }
1818
1819
1820 /* Return the code of the expression computed on the rhs of assignment
1821    statement GS.  In case that the RHS is a single object, returns the
1822    tree code of the object.  */
1823
1824 static inline enum tree_code
1825 gimple_assign_rhs_code (const_gimple gs)
1826 {
1827   enum tree_code code;
1828   GIMPLE_CHECK (gs, GIMPLE_ASSIGN);
1829
1830   code = gimple_expr_code (gs);
1831   if (get_gimple_rhs_class (code) == GIMPLE_SINGLE_RHS)
1832     code = TREE_CODE (gimple_assign_rhs1 (gs));
1833
1834   return code;
1835 }
1836
1837
1838 /* Set CODE to be the code for the expression computed on the RHS of
1839    assignment S.  */
1840
1841 static inline void
1842 gimple_assign_set_rhs_code (gimple s, enum tree_code code)
1843 {
1844   GIMPLE_CHECK (s, GIMPLE_ASSIGN);
1845   s->gsbase.subcode = code;
1846 }
1847
1848
1849 /* Return the gimple rhs class of the code of the expression computed on
1850    the rhs of assignment statement GS.
1851    This will never return GIMPLE_INVALID_RHS.  */
1852
1853 static inline enum gimple_rhs_class
1854 gimple_assign_rhs_class (const_gimple gs)
1855 {
1856   return get_gimple_rhs_class (gimple_assign_rhs_code (gs));
1857 }
1858
1859
1860 /* Return true if S is a type-cast assignment.  */
1861
1862 static inline bool
1863 gimple_assign_cast_p (gimple s)
1864 {
1865   if (is_gimple_assign (s))
1866     {
1867       enum tree_code sc = gimple_assign_rhs_code (s);
1868       return CONVERT_EXPR_CODE_P (sc)
1869              || sc == VIEW_CONVERT_EXPR
1870              || sc == FIX_TRUNC_EXPR;
1871     }
1872
1873   return false;
1874 }
1875
1876
1877 /* Return true if GS is a GIMPLE_CALL.  */
1878
1879 static inline bool
1880 is_gimple_call (const_gimple gs)
1881 {
1882   return gimple_code (gs) == GIMPLE_CALL;
1883 }
1884
1885 /* Return the LHS of call statement GS.  */
1886
1887 static inline tree
1888 gimple_call_lhs (const_gimple gs)
1889 {
1890   GIMPLE_CHECK (gs, GIMPLE_CALL);
1891   return gimple_op (gs, 0);
1892 }
1893
1894
1895 /* Return a pointer to the LHS of call statement GS.  */
1896
1897 static inline tree *
1898 gimple_call_lhs_ptr (const_gimple gs)
1899 {
1900   GIMPLE_CHECK (gs, GIMPLE_CALL);
1901   return gimple_op_ptr (gs, 0);
1902 }
1903
1904
1905 /* Set LHS to be the LHS operand of call statement GS.  */
1906
1907 static inline void
1908 gimple_call_set_lhs (gimple gs, tree lhs)
1909 {
1910   GIMPLE_CHECK (gs, GIMPLE_CALL);
1911   gcc_assert (!lhs || is_gimple_operand (lhs));
1912   gimple_set_op (gs, 0, lhs);
1913   if (lhs && TREE_CODE (lhs) == SSA_NAME)
1914     SSA_NAME_DEF_STMT (lhs) = gs;
1915 }
1916
1917
1918 /* Return the tree node representing the function called by call
1919    statement GS.  */
1920
1921 static inline tree
1922 gimple_call_fn (const_gimple gs)
1923 {
1924   GIMPLE_CHECK (gs, GIMPLE_CALL);
1925   return gimple_op (gs, 1);
1926 }
1927
1928
1929 /* Return a pointer to the tree node representing the function called by call
1930    statement GS.  */
1931
1932 static inline tree *
1933 gimple_call_fn_ptr (const_gimple gs)
1934 {
1935   GIMPLE_CHECK (gs, GIMPLE_CALL);
1936   return gimple_op_ptr (gs, 1);
1937 }
1938
1939
1940 /* Set FN to be the function called by call statement GS.  */
1941
1942 static inline void
1943 gimple_call_set_fn (gimple gs, tree fn)
1944 {
1945   GIMPLE_CHECK (gs, GIMPLE_CALL);
1946   gcc_assert (is_gimple_operand (fn));
1947   gimple_set_op (gs, 1, fn);
1948 }
1949
1950
1951 /* Set FNDECL to be the function called by call statement GS.  */
1952
1953 static inline void
1954 gimple_call_set_fndecl (gimple gs, tree decl)
1955 {
1956   GIMPLE_CHECK (gs, GIMPLE_CALL);
1957   gcc_assert (TREE_CODE (decl) == FUNCTION_DECL);
1958   gimple_set_op (gs, 1, build_fold_addr_expr (decl));
1959 }
1960
1961
1962 /* If a given GIMPLE_CALL's callee is a FUNCTION_DECL, return it.
1963    Otherwise return NULL.  This function is analogous to
1964    get_callee_fndecl in tree land.  */
1965
1966 static inline tree
1967 gimple_call_fndecl (const_gimple gs)
1968 {
1969   tree addr = gimple_call_fn (gs);
1970   if (TREE_CODE (addr) == ADDR_EXPR)
1971     {
1972       gcc_assert (TREE_CODE (TREE_OPERAND (addr, 0)) == FUNCTION_DECL);
1973       return TREE_OPERAND (addr, 0);
1974     }
1975   return NULL_TREE;
1976 }
1977
1978
1979 /* Return the type returned by call statement GS.  */
1980
1981 static inline tree
1982 gimple_call_return_type (const_gimple gs)
1983 {
1984   tree fn = gimple_call_fn (gs);
1985   tree type = TREE_TYPE (fn);
1986
1987   /* See through the pointer.  */
1988   gcc_assert (POINTER_TYPE_P (type));
1989   type = TREE_TYPE (type);
1990
1991   gcc_assert (TREE_CODE (type) == FUNCTION_TYPE
1992               || TREE_CODE (type) == METHOD_TYPE);
1993
1994   /* The type returned by a FUNCTION_DECL is the type of its
1995      function type.  */
1996   return TREE_TYPE (type);
1997 }
1998
1999
2000 /* Return the static chain for call statement GS.  */
2001
2002 static inline tree
2003 gimple_call_chain (const_gimple gs)
2004 {
2005   GIMPLE_CHECK (gs, GIMPLE_CALL);
2006   return gimple_op (gs, 2);
2007 }
2008
2009
2010 /* Return a pointer to the static chain for call statement GS.  */
2011
2012 static inline tree *
2013 gimple_call_chain_ptr (const_gimple gs)
2014 {
2015   GIMPLE_CHECK (gs, GIMPLE_CALL);
2016   return gimple_op_ptr (gs, 2);
2017 }
2018
2019 /* Set CHAIN to be the static chain for call statement GS.  */
2020
2021 static inline void
2022 gimple_call_set_chain (gimple gs, tree chain)
2023 {
2024   GIMPLE_CHECK (gs, GIMPLE_CALL);
2025   gcc_assert (chain == NULL
2026               || TREE_CODE (chain) == ADDR_EXPR
2027               || SSA_VAR_P (chain));
2028   gimple_set_op (gs, 2, chain);
2029 }
2030
2031
2032 /* Return the number of arguments used by call statement GS.  */
2033
2034 static inline unsigned
2035 gimple_call_num_args (const_gimple gs)
2036 {
2037   unsigned num_ops;
2038   GIMPLE_CHECK (gs, GIMPLE_CALL);
2039   num_ops = gimple_num_ops (gs);
2040   gcc_assert (num_ops >= 3);
2041   return num_ops - 3;
2042 }
2043
2044
2045 /* Return the argument at position INDEX for call statement GS.  */
2046
2047 static inline tree
2048 gimple_call_arg (const_gimple gs, unsigned index)
2049 {
2050   GIMPLE_CHECK (gs, GIMPLE_CALL);
2051   return gimple_op (gs, index + 3);
2052 }
2053
2054
2055 /* Return a pointer to the argument at position INDEX for call
2056    statement GS.  */
2057
2058 static inline tree *
2059 gimple_call_arg_ptr (const_gimple gs, unsigned index)
2060 {
2061   GIMPLE_CHECK (gs, GIMPLE_CALL);
2062   return gimple_op_ptr (gs, index + 3);
2063 }
2064
2065
2066 /* Set ARG to be the argument at position INDEX for call statement GS.  */
2067
2068 static inline void
2069 gimple_call_set_arg (gimple gs, unsigned index, tree arg)
2070 {
2071   GIMPLE_CHECK (gs, GIMPLE_CALL);
2072   gcc_assert (is_gimple_operand (arg));
2073   gimple_set_op (gs, index + 3, arg);
2074 }
2075
2076
2077 /* If TAIL_P is true, mark call statement S as being a tail call
2078    (i.e., a call just before the exit of a function).  These calls are
2079    candidate for tail call optimization.  */
2080
2081 static inline void
2082 gimple_call_set_tail (gimple s, bool tail_p)
2083 {
2084   GIMPLE_CHECK (s, GIMPLE_CALL);
2085   if (tail_p)
2086     s->gsbase.subcode |= GF_CALL_TAILCALL;
2087   else
2088     s->gsbase.subcode &= ~GF_CALL_TAILCALL;
2089 }
2090
2091
2092 /* Return true if GIMPLE_CALL S is marked as a tail call.  */
2093
2094 static inline bool
2095 gimple_call_tail_p (gimple s)
2096 {
2097   GIMPLE_CHECK (s, GIMPLE_CALL);
2098   return (s->gsbase.subcode & GF_CALL_TAILCALL) != 0;
2099 }
2100
2101
2102 /* Set the inlinable status of GIMPLE_CALL S to INLINABLE_P.  */
2103
2104 static inline void
2105 gimple_call_set_cannot_inline (gimple s, bool inlinable_p)
2106 {
2107   GIMPLE_CHECK (s, GIMPLE_CALL);
2108   if (inlinable_p)
2109     s->gsbase.subcode |= GF_CALL_CANNOT_INLINE;
2110   else
2111     s->gsbase.subcode &= ~GF_CALL_CANNOT_INLINE;
2112 }
2113
2114
2115 /* Return true if GIMPLE_CALL S cannot be inlined.  */
2116
2117 static inline bool
2118 gimple_call_cannot_inline_p (gimple s)
2119 {
2120   GIMPLE_CHECK (s, GIMPLE_CALL);
2121   return (s->gsbase.subcode & GF_CALL_CANNOT_INLINE) != 0;
2122 }
2123
2124
2125 /* If RETURN_SLOT_OPT_P is true mark GIMPLE_CALL S as valid for return
2126    slot optimization.  This transformation uses the target of the call
2127    expansion as the return slot for calls that return in memory.  */
2128
2129 static inline void
2130 gimple_call_set_return_slot_opt (gimple s, bool return_slot_opt_p)
2131 {
2132   GIMPLE_CHECK (s, GIMPLE_CALL);
2133   if (return_slot_opt_p)
2134     s->gsbase.subcode |= GF_CALL_RETURN_SLOT_OPT;
2135   else
2136     s->gsbase.subcode &= ~GF_CALL_RETURN_SLOT_OPT;
2137 }
2138
2139
2140 /* Return true if S is marked for return slot optimization.  */
2141
2142 static inline bool
2143 gimple_call_return_slot_opt_p (gimple s)
2144 {
2145   GIMPLE_CHECK (s, GIMPLE_CALL);
2146   return (s->gsbase.subcode & GF_CALL_RETURN_SLOT_OPT) != 0;
2147 }
2148
2149
2150 /* If FROM_THUNK_P is true, mark GIMPLE_CALL S as being the jump from a
2151    thunk to the thunked-to function.  */
2152
2153 static inline void
2154 gimple_call_set_from_thunk (gimple s, bool from_thunk_p)
2155 {
2156   GIMPLE_CHECK (s, GIMPLE_CALL);
2157   if (from_thunk_p)
2158     s->gsbase.subcode |= GF_CALL_FROM_THUNK;
2159   else
2160     s->gsbase.subcode &= ~GF_CALL_FROM_THUNK;
2161 }
2162
2163
2164 /* Return true if GIMPLE_CALL S is a jump from a thunk.  */
2165
2166 static inline bool
2167 gimple_call_from_thunk_p (gimple s)
2168 {
2169   GIMPLE_CHECK (s, GIMPLE_CALL);
2170   return (s->gsbase.subcode & GF_CALL_FROM_THUNK) != 0;
2171 }
2172
2173
2174 /* If PASS_ARG_PACK_P is true, GIMPLE_CALL S is a stdarg call that needs the
2175    argument pack in its argument list.  */
2176
2177 static inline void
2178 gimple_call_set_va_arg_pack (gimple s, bool pass_arg_pack_p)
2179 {
2180   GIMPLE_CHECK (s, GIMPLE_CALL);
2181   if (pass_arg_pack_p)
2182     s->gsbase.subcode |= GF_CALL_VA_ARG_PACK;
2183   else
2184     s->gsbase.subcode &= ~GF_CALL_VA_ARG_PACK;
2185 }
2186
2187
2188 /* Return true if GIMPLE_CALL S is a stdarg call that needs the
2189    argument pack in its argument list.  */
2190
2191 static inline bool
2192 gimple_call_va_arg_pack_p (gimple s)
2193 {
2194   GIMPLE_CHECK (s, GIMPLE_CALL);
2195   return (s->gsbase.subcode & GF_CALL_VA_ARG_PACK) != 0;
2196 }
2197
2198
2199 /* Return true if S is a noreturn call.  */
2200
2201 static inline bool
2202 gimple_call_noreturn_p (gimple s)
2203 {
2204   GIMPLE_CHECK (s, GIMPLE_CALL);
2205   return (gimple_call_flags (s) & ECF_NORETURN) != 0;
2206 }
2207
2208
2209 /* Return true if S is a nothrow call.  */
2210
2211 static inline bool
2212 gimple_call_nothrow_p (gimple s)
2213 {
2214   GIMPLE_CHECK (s, GIMPLE_CALL);
2215   return (gimple_call_flags (s) & ECF_NOTHROW) != 0;
2216 }
2217
2218
2219 /* Copy all the GF_CALL_* flags from ORIG_CALL to DEST_CALL.  */
2220
2221 static inline void
2222 gimple_call_copy_flags (gimple dest_call, gimple orig_call)
2223 {
2224   GIMPLE_CHECK (dest_call, GIMPLE_CALL);
2225   GIMPLE_CHECK (orig_call, GIMPLE_CALL);
2226   dest_call->gsbase.subcode = orig_call->gsbase.subcode;
2227 }
2228
2229
2230 /* Returns true if this is a GIMPLE_ASSIGN or a GIMPLE_CALL with a
2231    non-NULL lhs.  */
2232
2233 static inline bool
2234 gimple_has_lhs (gimple stmt)
2235 {
2236   return (is_gimple_assign (stmt)
2237           || (is_gimple_call (stmt)
2238               && gimple_call_lhs (stmt) != NULL_TREE));
2239 }
2240
2241
2242 /* Return the code of the predicate computed by conditional statement GS.  */
2243
2244 static inline enum tree_code
2245 gimple_cond_code (const_gimple gs)
2246 {
2247   GIMPLE_CHECK (gs, GIMPLE_COND);
2248   return gs->gsbase.subcode;
2249 }
2250
2251
2252 /* Set CODE to be the predicate code for the conditional statement GS.  */
2253
2254 static inline void
2255 gimple_cond_set_code (gimple gs, enum tree_code code)
2256 {
2257   GIMPLE_CHECK (gs, GIMPLE_COND);
2258   gcc_assert (TREE_CODE_CLASS (code) == tcc_comparison);
2259   gs->gsbase.subcode = code;
2260 }
2261
2262
2263 /* Return the LHS of the predicate computed by conditional statement GS.  */
2264
2265 static inline tree
2266 gimple_cond_lhs (const_gimple gs)
2267 {
2268   GIMPLE_CHECK (gs, GIMPLE_COND);
2269   return gimple_op (gs, 0);
2270 }
2271
2272 /* Return the pointer to the LHS of the predicate computed by conditional
2273    statement GS.  */
2274
2275 static inline tree *
2276 gimple_cond_lhs_ptr (const_gimple gs)
2277 {
2278   GIMPLE_CHECK (gs, GIMPLE_COND);
2279   return gimple_op_ptr (gs, 0);
2280 }
2281
2282 /* Set LHS to be the LHS operand of the predicate computed by
2283    conditional statement GS.  */
2284
2285 static inline void
2286 gimple_cond_set_lhs (gimple gs, tree lhs)
2287 {
2288   GIMPLE_CHECK (gs, GIMPLE_COND);
2289   gcc_assert (is_gimple_operand (lhs));
2290   gimple_set_op (gs, 0, lhs);
2291 }
2292
2293
2294 /* Return the RHS operand of the predicate computed by conditional GS.  */
2295
2296 static inline tree
2297 gimple_cond_rhs (const_gimple gs)
2298 {
2299   GIMPLE_CHECK (gs, GIMPLE_COND);
2300   return gimple_op (gs, 1);
2301 }
2302
2303 /* Return the pointer to the RHS operand of the predicate computed by
2304    conditional GS.  */
2305
2306 static inline tree *
2307 gimple_cond_rhs_ptr (const_gimple gs)
2308 {
2309   GIMPLE_CHECK (gs, GIMPLE_COND);
2310   return gimple_op_ptr (gs, 1);
2311 }
2312
2313
2314 /* Set RHS to be the RHS operand of the predicate computed by
2315    conditional statement GS.  */
2316
2317 static inline void
2318 gimple_cond_set_rhs (gimple gs, tree rhs)
2319 {
2320   GIMPLE_CHECK (gs, GIMPLE_COND);
2321   gcc_assert (is_gimple_operand (rhs));
2322   gimple_set_op (gs, 1, rhs);
2323 }
2324
2325
2326 /* Return the label used by conditional statement GS when its
2327    predicate evaluates to true.  */
2328
2329 static inline tree
2330 gimple_cond_true_label (const_gimple gs)
2331 {
2332   GIMPLE_CHECK (gs, GIMPLE_COND);
2333   return gimple_op (gs, 2);
2334 }
2335
2336
2337 /* Set LABEL to be the label used by conditional statement GS when its
2338    predicate evaluates to true.  */
2339
2340 static inline void
2341 gimple_cond_set_true_label (gimple gs, tree label)
2342 {
2343   GIMPLE_CHECK (gs, GIMPLE_COND);
2344   gcc_assert (!label || TREE_CODE (label) == LABEL_DECL);
2345   gimple_set_op (gs, 2, label);
2346 }
2347
2348
2349 /* Set LABEL to be the label used by conditional statement GS when its
2350    predicate evaluates to false.  */
2351
2352 static inline void
2353 gimple_cond_set_false_label (gimple gs, tree label)
2354 {
2355   GIMPLE_CHECK (gs, GIMPLE_COND);
2356   gcc_assert (!label || TREE_CODE (label) == LABEL_DECL);
2357   gimple_set_op (gs, 3, label);
2358 }
2359
2360
2361 /* Return the label used by conditional statement GS when its
2362    predicate evaluates to false.  */
2363
2364 static inline tree
2365 gimple_cond_false_label (const_gimple gs)
2366 {
2367   GIMPLE_CHECK (gs, GIMPLE_COND);
2368   return gimple_op (gs, 3);
2369 }
2370
2371
2372 /* Set the conditional COND_STMT to be of the form 'if (1 == 0)'.  */
2373
2374 static inline void
2375 gimple_cond_make_false (gimple gs)
2376 {
2377   gimple_cond_set_lhs (gs, boolean_true_node);
2378   gimple_cond_set_rhs (gs, boolean_false_node);
2379   gs->gsbase.subcode = EQ_EXPR;
2380 }
2381
2382
2383 /* Set the conditional COND_STMT to be of the form 'if (1 == 1)'.  */
2384
2385 static inline void
2386 gimple_cond_make_true (gimple gs)
2387 {
2388   gimple_cond_set_lhs (gs, boolean_true_node);
2389   gimple_cond_set_rhs (gs, boolean_true_node);
2390   gs->gsbase.subcode = EQ_EXPR;
2391 }
2392
2393 /* Check if conditional statemente GS is of the form 'if (1 == 1)',
2394   'if (0 == 0)', 'if (1 != 0)' or 'if (0 != 1)' */
2395
2396 static inline bool
2397 gimple_cond_true_p (const_gimple gs)
2398 {
2399   tree lhs = gimple_cond_lhs (gs);
2400   tree rhs = gimple_cond_rhs (gs);
2401   enum tree_code code = gimple_cond_code (gs);
2402
2403   if (lhs != boolean_true_node && lhs != boolean_false_node)
2404     return false;
2405
2406   if (rhs != boolean_true_node && rhs != boolean_false_node)
2407     return false;
2408
2409   if (code == NE_EXPR && lhs != rhs)
2410     return true;
2411
2412   if (code == EQ_EXPR && lhs == rhs)
2413       return true;
2414
2415   return false;
2416 }
2417
2418 /* Check if conditional statement GS is of the form 'if (1 != 1)',
2419    'if (0 != 0)', 'if (1 == 0)' or 'if (0 == 1)' */
2420
2421 static inline bool
2422 gimple_cond_false_p (const_gimple gs)
2423 {
2424   tree lhs = gimple_cond_lhs (gs);
2425   tree rhs = gimple_cond_rhs (gs);
2426   enum tree_code code = gimple_cond_code (gs);
2427
2428   if (lhs != boolean_true_node && lhs != boolean_false_node)
2429     return false;
2430
2431   if (rhs != boolean_true_node && rhs != boolean_false_node)
2432     return false;
2433
2434   if (code == NE_EXPR && lhs == rhs)
2435     return true;
2436
2437   if (code == EQ_EXPR && lhs != rhs)
2438       return true;
2439
2440   return false;
2441 }
2442
2443 /* Check if conditional statement GS is of the form 'if (var != 0)' or
2444    'if (var == 1)' */
2445
2446 static inline bool
2447 gimple_cond_single_var_p (gimple gs)
2448 {
2449   if (gimple_cond_code (gs) == NE_EXPR
2450       && gimple_cond_rhs (gs) == boolean_false_node)
2451     return true;
2452
2453   if (gimple_cond_code (gs) == EQ_EXPR
2454       && gimple_cond_rhs (gs) == boolean_true_node)
2455     return true;
2456
2457   return false;
2458 }
2459
2460 /* Set the code, LHS and RHS of GIMPLE_COND STMT from CODE, LHS and RHS.  */
2461
2462 static inline void
2463 gimple_cond_set_condition (gimple stmt, enum tree_code code, tree lhs, tree rhs)
2464 {
2465   gimple_cond_set_code (stmt, code);
2466   gimple_cond_set_lhs (stmt, lhs);
2467   gimple_cond_set_rhs (stmt, rhs);
2468 }
2469
2470 /* Return the LABEL_DECL node used by GIMPLE_LABEL statement GS.  */
2471
2472 static inline tree
2473 gimple_label_label (const_gimple gs)
2474 {
2475   GIMPLE_CHECK (gs, GIMPLE_LABEL);
2476   return gimple_op (gs, 0);
2477 }
2478
2479
2480 /* Set LABEL to be the LABEL_DECL node used by GIMPLE_LABEL statement
2481    GS.  */
2482
2483 static inline void
2484 gimple_label_set_label (gimple gs, tree label)
2485 {
2486   GIMPLE_CHECK (gs, GIMPLE_LABEL);
2487   gcc_assert (TREE_CODE (label) == LABEL_DECL);
2488   gimple_set_op (gs, 0, label);
2489 }
2490
2491
2492 /* Return the destination of the unconditional jump GS.  */
2493
2494 static inline tree
2495 gimple_goto_dest (const_gimple gs)
2496 {
2497   GIMPLE_CHECK (gs, GIMPLE_GOTO);
2498   return gimple_op (gs, 0);
2499 }
2500
2501
2502 /* Set DEST to be the destination of the unconditonal jump GS.  */
2503
2504 static inline void 
2505 gimple_goto_set_dest (gimple gs, tree dest)
2506 {
2507   GIMPLE_CHECK (gs, GIMPLE_GOTO);
2508   gcc_assert (is_gimple_operand (dest));
2509   gimple_set_op (gs, 0, dest);
2510 }
2511
2512
2513 /* Return the variables declared in the GIMPLE_BIND statement GS.  */
2514
2515 static inline tree
2516 gimple_bind_vars (const_gimple gs)
2517 {
2518   GIMPLE_CHECK (gs, GIMPLE_BIND);
2519   return gs->gimple_bind.vars;
2520 }
2521
2522
2523 /* Set VARS to be the set of variables declared in the GIMPLE_BIND
2524    statement GS.  */
2525
2526 static inline void
2527 gimple_bind_set_vars (gimple gs, tree vars)
2528 {
2529   GIMPLE_CHECK (gs, GIMPLE_BIND);
2530   gs->gimple_bind.vars = vars;
2531 }
2532
2533
2534 /* Append VARS to the set of variables declared in the GIMPLE_BIND
2535    statement GS.  */
2536
2537 static inline void
2538 gimple_bind_append_vars (gimple gs, tree vars)
2539 {
2540   GIMPLE_CHECK (gs, GIMPLE_BIND);
2541   gs->gimple_bind.vars = chainon (gs->gimple_bind.vars, vars);
2542 }
2543
2544
2545 /* Return the GIMPLE sequence contained in the GIMPLE_BIND statement GS.  */
2546
2547 static inline gimple_seq
2548 gimple_bind_body (gimple gs)
2549 {
2550   GIMPLE_CHECK (gs, GIMPLE_BIND);
2551   return gs->gimple_bind.body;
2552 }
2553
2554
2555 /* Set SEQ to be the GIMPLE sequence contained in the GIMPLE_BIND
2556    statement GS.  */
2557
2558 static inline void
2559 gimple_bind_set_body (gimple gs, gimple_seq seq)
2560 {
2561   GIMPLE_CHECK (gs, GIMPLE_BIND);
2562   gs->gimple_bind.body = seq;
2563 }
2564
2565
2566 /* Append a statement to the end of a GIMPLE_BIND's body.  */
2567
2568 static inline void
2569 gimple_bind_add_stmt (gimple gs, gimple stmt)
2570 {
2571   GIMPLE_CHECK (gs, GIMPLE_BIND);
2572   gimple_seq_add_stmt (&gs->gimple_bind.body, stmt);
2573 }
2574
2575
2576 /* Append a sequence of statements to the end of a GIMPLE_BIND's body.  */
2577
2578 static inline void
2579 gimple_bind_add_seq (gimple gs, gimple_seq seq)
2580 {
2581   GIMPLE_CHECK (gs, GIMPLE_BIND);
2582   gimple_seq_add_seq (&gs->gimple_bind.body, seq);
2583 }
2584
2585
2586 /* Return the TREE_BLOCK node associated with GIMPLE_BIND statement
2587    GS.  This is analogous to the BIND_EXPR_BLOCK field in trees.  */
2588
2589 static inline tree
2590 gimple_bind_block (const_gimple gs)
2591 {
2592   GIMPLE_CHECK (gs, GIMPLE_BIND);
2593   return gs->gimple_bind.block;
2594 }
2595
2596
2597 /* Set BLOCK to be the TREE_BLOCK node associated with GIMPLE_BIND
2598    statement GS.  */
2599
2600 static inline void
2601 gimple_bind_set_block (gimple gs, tree block)
2602 {
2603   GIMPLE_CHECK (gs, GIMPLE_BIND);
2604   gcc_assert (block == NULL_TREE || TREE_CODE (block) == BLOCK);
2605   gs->gimple_bind.block = block;
2606 }
2607
2608
2609 /* Return the number of input operands for GIMPLE_ASM GS.  */
2610
2611 static inline unsigned
2612 gimple_asm_ninputs (const_gimple gs)
2613 {
2614   GIMPLE_CHECK (gs, GIMPLE_ASM);
2615   return gs->gimple_asm.ni;
2616 }
2617
2618
2619 /* Return the number of output operands for GIMPLE_ASM GS.  */
2620
2621 static inline unsigned
2622 gimple_asm_noutputs (const_gimple gs)
2623 {
2624   GIMPLE_CHECK (gs, GIMPLE_ASM);
2625   return gs->gimple_asm.no;
2626 }
2627
2628
2629 /* Return the number of clobber operands for GIMPLE_ASM GS.  */
2630
2631 static inline unsigned
2632 gimple_asm_nclobbers (const_gimple gs)
2633 {
2634   GIMPLE_CHECK (gs, GIMPLE_ASM);
2635   return gs->gimple_asm.nc;
2636 }
2637
2638
2639 /* Return input operand INDEX of GIMPLE_ASM GS.  */
2640
2641 static inline tree
2642 gimple_asm_input_op (const_gimple gs, unsigned index)
2643 {
2644   GIMPLE_CHECK (gs, GIMPLE_ASM);
2645   gcc_assert (index <= gs->gimple_asm.ni);
2646   return gimple_op (gs, index);
2647 }
2648
2649 /* Return a pointer to input operand INDEX of GIMPLE_ASM GS.  */
2650
2651 static inline tree *
2652 gimple_asm_input_op_ptr (const_gimple gs, unsigned index)
2653 {
2654   GIMPLE_CHECK (gs, GIMPLE_ASM);
2655   gcc_assert (index <= gs->gimple_asm.ni);
2656   return gimple_op_ptr (gs, index);
2657 }
2658
2659
2660 /* Set IN_OP to be input operand INDEX in GIMPLE_ASM GS.  */
2661
2662 static inline void
2663 gimple_asm_set_input_op (gimple gs, unsigned index, tree in_op)
2664 {
2665   GIMPLE_CHECK (gs, GIMPLE_ASM);
2666   gcc_assert (index <= gs->gimple_asm.ni);
2667   gcc_assert (TREE_CODE (in_op) == TREE_LIST);
2668   gimple_set_op (gs, index, in_op);
2669 }
2670
2671
2672 /* Return output operand INDEX of GIMPLE_ASM GS.  */
2673
2674 static inline tree
2675 gimple_asm_output_op (const_gimple gs, unsigned index)
2676 {
2677   GIMPLE_CHECK (gs, GIMPLE_ASM);
2678   gcc_assert (index <= gs->gimple_asm.no);
2679   return gimple_op (gs, index + gs->gimple_asm.ni);
2680 }
2681
2682 /* Return a pointer to output operand INDEX of GIMPLE_ASM GS.  */
2683
2684 static inline tree *
2685 gimple_asm_output_op_ptr (const_gimple gs, unsigned index)
2686 {
2687   GIMPLE_CHECK (gs, GIMPLE_ASM);
2688   gcc_assert (index <= gs->gimple_asm.no);
2689   return gimple_op_ptr (gs, index + gs->gimple_asm.ni);
2690 }
2691
2692
2693 /* Set OUT_OP to be output operand INDEX in GIMPLE_ASM GS.  */
2694
2695 static inline void
2696 gimple_asm_set_output_op (gimple gs, unsigned index, tree out_op)
2697 {
2698   GIMPLE_CHECK (gs, GIMPLE_ASM);
2699   gcc_assert (index <= gs->gimple_asm.no);
2700   gcc_assert (TREE_CODE (out_op) == TREE_LIST);
2701   gimple_set_op (gs, index + gs->gimple_asm.ni, out_op);
2702 }
2703
2704
2705 /* Return clobber operand INDEX of GIMPLE_ASM GS.  */
2706
2707 static inline tree
2708 gimple_asm_clobber_op (const_gimple gs, unsigned index)
2709 {
2710   GIMPLE_CHECK (gs, GIMPLE_ASM);
2711   gcc_assert (index <= gs->gimple_asm.nc);
2712   return gimple_op (gs, index + gs->gimple_asm.ni + gs->gimple_asm.no);
2713 }
2714
2715
2716 /* Set CLOBBER_OP to be clobber operand INDEX in GIMPLE_ASM GS.  */
2717
2718 static inline void
2719 gimple_asm_set_clobber_op (gimple gs, unsigned index, tree clobber_op)
2720 {
2721   GIMPLE_CHECK (gs, GIMPLE_ASM);
2722   gcc_assert (index <= gs->gimple_asm.nc);
2723   gcc_assert (TREE_CODE (clobber_op) == TREE_LIST);
2724   gimple_set_op (gs, index + gs->gimple_asm.ni + gs->gimple_asm.no, clobber_op);
2725 }
2726
2727
2728 /* Return the string representing the assembly instruction in
2729    GIMPLE_ASM GS.  */
2730
2731 static inline const char *
2732 gimple_asm_string (const_gimple gs)
2733 {
2734   GIMPLE_CHECK (gs, GIMPLE_ASM);
2735   return gs->gimple_asm.string;
2736 }
2737
2738
2739 /* Return true if GS is an asm statement marked volatile.  */
2740
2741 static inline bool
2742 gimple_asm_volatile_p (const_gimple gs)
2743 {
2744   GIMPLE_CHECK (gs, GIMPLE_ASM);
2745   return (gs->gsbase.subcode & GF_ASM_VOLATILE) != 0;
2746 }
2747
2748
2749 /* If VOLATLE_P is true, mark asm statement GS as volatile.  */
2750
2751 static inline void
2752 gimple_asm_set_volatile (gimple gs, bool volatile_p)
2753 {
2754   GIMPLE_CHECK (gs, GIMPLE_ASM);
2755   if (volatile_p)
2756     gs->gsbase.subcode |= GF_ASM_VOLATILE;
2757   else
2758     gs->gsbase.subcode &= ~GF_ASM_VOLATILE;
2759 }
2760
2761
2762 /* If INPUT_P is true, mark asm GS as an ASM_INPUT.  */
2763
2764 static inline void
2765 gimple_asm_set_input (gimple gs, bool input_p)
2766 {
2767   GIMPLE_CHECK (gs, GIMPLE_ASM);
2768   if (input_p)
2769     gs->gsbase.subcode |= GF_ASM_INPUT;
2770   else
2771     gs->gsbase.subcode &= ~GF_ASM_INPUT;
2772 }
2773
2774
2775 /* Return true if asm GS is an ASM_INPUT.  */
2776
2777 static inline bool
2778 gimple_asm_input_p (const_gimple gs)
2779 {
2780   GIMPLE_CHECK (gs, GIMPLE_ASM);
2781   return (gs->gsbase.subcode & GF_ASM_INPUT) != 0;
2782 }
2783
2784
2785 /* Return the types handled by GIMPLE_CATCH statement GS.  */
2786
2787 static inline tree
2788 gimple_catch_types (const_gimple gs)
2789 {
2790   GIMPLE_CHECK (gs, GIMPLE_CATCH);
2791   return gs->gimple_catch.types;
2792 }
2793
2794
2795 /* Return a pointer to the types handled by GIMPLE_CATCH statement GS.  */
2796
2797 static inline tree *
2798 gimple_catch_types_ptr (gimple gs)
2799 {
2800   GIMPLE_CHECK (gs, GIMPLE_CATCH);
2801   return &gs->gimple_catch.types;
2802 }
2803
2804
2805 /* Return the GIMPLE sequence representing the body of the handler of
2806    GIMPLE_CATCH statement GS.  */
2807
2808 static inline gimple_seq
2809 gimple_catch_handler (gimple gs)
2810 {
2811   GIMPLE_CHECK (gs, GIMPLE_CATCH);
2812   return gs->gimple_catch.handler;
2813 }
2814
2815
2816 /* Return a pointer to the GIMPLE sequence representing the body of
2817    the handler of GIMPLE_CATCH statement GS.  */
2818
2819 static inline gimple_seq *
2820 gimple_catch_handler_ptr (gimple gs)
2821 {
2822   GIMPLE_CHECK (gs, GIMPLE_CATCH);
2823   return &gs->gimple_catch.handler;
2824 }
2825
2826
2827 /* Set T to be the set of types handled by GIMPLE_CATCH GS.  */
2828
2829 static inline void
2830 gimple_catch_set_types (gimple gs, tree t)
2831 {
2832   GIMPLE_CHECK (gs, GIMPLE_CATCH);
2833   gs->gimple_catch.types = t;
2834 }
2835
2836
2837 /* Set HANDLER to be the body of GIMPLE_CATCH GS.  */
2838
2839 static inline void
2840 gimple_catch_set_handler (gimple gs, gimple_seq handler)
2841 {
2842   GIMPLE_CHECK (gs, GIMPLE_CATCH);
2843   gs->gimple_catch.handler = handler;
2844 }
2845
2846
2847 /* Return the types handled by GIMPLE_EH_FILTER statement GS.  */
2848
2849 static inline tree
2850 gimple_eh_filter_types (const_gimple gs)
2851 {
2852   GIMPLE_CHECK (gs, GIMPLE_EH_FILTER);
2853   return gs->gimple_eh_filter.types;
2854 }
2855
2856
2857 /* Return a pointer to the types handled by GIMPLE_EH_FILTER statement
2858    GS.  */
2859
2860 static inline tree *
2861 gimple_eh_filter_types_ptr (gimple gs)
2862 {
2863   GIMPLE_CHECK (gs, GIMPLE_EH_FILTER);
2864   return &gs->gimple_eh_filter.types;
2865 }
2866
2867
2868 /* Return the sequence of statement to execute when GIMPLE_EH_FILTER
2869    statement fails.  */
2870
2871 static inline gimple_seq
2872 gimple_eh_filter_failure (gimple gs)
2873 {
2874   GIMPLE_CHECK (gs, GIMPLE_EH_FILTER);
2875   return gs->gimple_eh_filter.failure;
2876 }
2877
2878
2879 /* Set TYPES to be the set of types handled by GIMPLE_EH_FILTER GS.  */
2880
2881 static inline void
2882 gimple_eh_filter_set_types (gimple gs, tree types)
2883 {
2884   GIMPLE_CHECK (gs, GIMPLE_EH_FILTER);
2885   gs->gimple_eh_filter.types = types;
2886 }
2887
2888
2889 /* Set FAILURE to be the sequence of statements to execute on failure
2890    for GIMPLE_EH_FILTER GS.  */
2891
2892 static inline void
2893 gimple_eh_filter_set_failure (gimple gs, gimple_seq failure)
2894 {
2895   GIMPLE_CHECK (gs, GIMPLE_EH_FILTER);
2896   gs->gimple_eh_filter.failure = failure;
2897 }
2898
2899 /* Return the EH_FILTER_MUST_NOT_THROW flag.  */
2900
2901 static inline bool
2902
2903 gimple_eh_filter_must_not_throw (gimple gs)
2904 {
2905   GIMPLE_CHECK (gs, GIMPLE_EH_FILTER);
2906   return gs->gsbase.subcode != 0;
2907 }
2908
2909 /* Set the EH_FILTER_MUST_NOT_THROW flag to the value MNTP.  */
2910
2911 static inline void
2912 gimple_eh_filter_set_must_not_throw (gimple gs, bool mntp)
2913 {
2914   GIMPLE_CHECK (gs, GIMPLE_EH_FILTER);
2915   gs->gsbase.subcode = (unsigned int) mntp;
2916 }
2917
2918
2919 /* GIMPLE_TRY accessors. */
2920
2921 /* Return the kind of try block represented by GIMPLE_TRY GS.  This is
2922    either GIMPLE_TRY_CATCH or GIMPLE_TRY_FINALLY.  */
2923
2924 static inline enum gimple_try_flags
2925 gimple_try_kind (const_gimple gs)
2926 {
2927   GIMPLE_CHECK (gs, GIMPLE_TRY);
2928   return (enum gimple_try_flags) (gs->gsbase.subcode & GIMPLE_TRY_KIND);
2929 }
2930
2931
2932 /* Set the kind of try block represented by GIMPLE_TRY GS.  */
2933
2934 static inline void
2935 gimple_try_set_kind (gimple gs, enum gimple_try_flags kind)
2936 {
2937   GIMPLE_CHECK (gs, GIMPLE_TRY);
2938   gcc_assert (kind == GIMPLE_TRY_CATCH || kind == GIMPLE_TRY_FINALLY);
2939   if (gimple_try_kind (gs) != kind)
2940     gs->gsbase.subcode = (unsigned int) kind;
2941 }
2942
2943
2944 /* Return the GIMPLE_TRY_CATCH_IS_CLEANUP flag.  */
2945
2946 static inline bool
2947 gimple_try_catch_is_cleanup (const_gimple gs)
2948 {
2949   gcc_assert (gimple_try_kind (gs) == GIMPLE_TRY_CATCH);
2950   return (gs->gsbase.subcode & GIMPLE_TRY_CATCH_IS_CLEANUP) != 0;
2951 }
2952
2953
2954 /* Return the sequence of statements used as the body for GIMPLE_TRY GS.  */
2955
2956 static inline gimple_seq
2957 gimple_try_eval (gimple gs)
2958 {
2959   GIMPLE_CHECK (gs, GIMPLE_TRY);
2960   return gs->gimple_try.eval;
2961 }
2962
2963
2964 /* Return the sequence of statements used as the cleanup body for
2965    GIMPLE_TRY GS.  */
2966
2967 static inline gimple_seq
2968 gimple_try_cleanup (gimple gs)
2969 {
2970   GIMPLE_CHECK (gs, GIMPLE_TRY);
2971   return gs->gimple_try.cleanup;
2972 }
2973
2974
2975 /* Set the GIMPLE_TRY_CATCH_IS_CLEANUP flag.  */
2976
2977 static inline void
2978 gimple_try_set_catch_is_cleanup (gimple g, bool catch_is_cleanup)
2979 {
2980   gcc_assert (gimple_try_kind (g) == GIMPLE_TRY_CATCH);
2981   if (catch_is_cleanup)
2982     g->gsbase.subcode |= GIMPLE_TRY_CATCH_IS_CLEANUP;
2983   else
2984     g->gsbase.subcode &= ~GIMPLE_TRY_CATCH_IS_CLEANUP;
2985 }
2986
2987
2988 /* Set EVAL to be the sequence of statements to use as the body for
2989    GIMPLE_TRY GS.  */
2990
2991 static inline void
2992 gimple_try_set_eval (gimple gs, gimple_seq eval)
2993 {
2994   GIMPLE_CHECK (gs, GIMPLE_TRY);
2995   gs->gimple_try.eval = eval;
2996 }
2997
2998
2999 /* Set CLEANUP to be the sequence of statements to use as the cleanup
3000    body for GIMPLE_TRY GS.  */
3001
3002 static inline void
3003 gimple_try_set_cleanup (gimple gs, gimple_seq cleanup)
3004 {
3005   GIMPLE_CHECK (gs, GIMPLE_TRY);
3006   gs->gimple_try.cleanup = cleanup;
3007 }
3008
3009
3010 /* Return the cleanup sequence for cleanup statement GS.  */
3011
3012 static inline gimple_seq
3013 gimple_wce_cleanup (gimple gs)
3014 {
3015   GIMPLE_CHECK (gs, GIMPLE_WITH_CLEANUP_EXPR);
3016   return gs->gimple_wce.cleanup;
3017 }
3018
3019
3020 /* Set CLEANUP to be the cleanup sequence for GS.  */
3021
3022 static inline void
3023 gimple_wce_set_cleanup (gimple gs, gimple_seq cleanup)
3024 {
3025   GIMPLE_CHECK (gs, GIMPLE_WITH_CLEANUP_EXPR);
3026   gs->gimple_wce.cleanup = cleanup;
3027 }
3028
3029
3030 /* Return the CLEANUP_EH_ONLY flag for a WCE tuple.  */
3031
3032 static inline bool
3033 gimple_wce_cleanup_eh_only (const_gimple gs)
3034 {
3035   GIMPLE_CHECK (gs, GIMPLE_WITH_CLEANUP_EXPR);
3036   return gs->gsbase.subcode != 0;
3037 }
3038
3039
3040 /* Set the CLEANUP_EH_ONLY flag for a WCE tuple.  */
3041
3042 static inline void
3043 gimple_wce_set_cleanup_eh_only (gimple gs, bool eh_only_p)
3044 {
3045   GIMPLE_CHECK (gs, GIMPLE_WITH_CLEANUP_EXPR);
3046   gs->gsbase.subcode = (unsigned int) eh_only_p;
3047 }
3048
3049
3050 /* Return the maximum number of arguments supported by GIMPLE_PHI GS.  */
3051
3052 static inline unsigned
3053 gimple_phi_capacity (const_gimple gs)
3054 {
3055   GIMPLE_CHECK (gs, GIMPLE_PHI);
3056   return gs->gimple_phi.capacity;
3057 }
3058
3059
3060 /* Return the number of arguments in GIMPLE_PHI GS.  This must always
3061    be exactly the number of incoming edges for the basic block holding
3062    GS.  */
3063
3064 static inline unsigned
3065 gimple_phi_num_args (const_gimple gs)
3066 {
3067   GIMPLE_CHECK (gs, GIMPLE_PHI);
3068   return gs->gimple_phi.nargs;
3069 }
3070
3071
3072 /* Return the SSA name created by GIMPLE_PHI GS.  */
3073
3074 static inline tree
3075 gimple_phi_result (const_gimple gs)
3076 {
3077   GIMPLE_CHECK (gs, GIMPLE_PHI);
3078   return gs->gimple_phi.result;
3079 }
3080
3081 /* Return a pointer to the SSA name created by GIMPLE_PHI GS.  */
3082
3083 static inline tree *
3084 gimple_phi_result_ptr (gimple gs)
3085 {
3086   GIMPLE_CHECK (gs, GIMPLE_PHI);
3087   return &gs->gimple_phi.result;
3088 }
3089
3090 /* Set RESULT to be the SSA name created by GIMPLE_PHI GS.  */
3091
3092 static inline void
3093 gimple_phi_set_result (gimple gs, tree result)
3094 {
3095   GIMPLE_CHECK (gs, GIMPLE_PHI);
3096   gs->gimple_phi.result = result;
3097 }
3098
3099
3100 /* Return the PHI argument corresponding to incoming edge INDEX for
3101    GIMPLE_PHI GS.  */
3102
3103 static inline struct phi_arg_d *
3104 gimple_phi_arg (gimple gs, unsigned index)
3105 {
3106   GIMPLE_CHECK (gs, GIMPLE_PHI);
3107   gcc_assert (index <= gs->gimple_phi.capacity);
3108   return &(gs->gimple_phi.args[index]);
3109 }
3110
3111 /* Set PHIARG to be the argument corresponding to incoming edge INDEX
3112    for GIMPLE_PHI GS.  */
3113
3114 static inline void
3115 gimple_phi_set_arg (gimple gs, unsigned index, struct phi_arg_d * phiarg)
3116 {
3117   GIMPLE_CHECK (gs, GIMPLE_PHI);
3118   gcc_assert (index <= gs->gimple_phi.nargs);
3119   memcpy (gs->gimple_phi.args + index, phiarg, sizeof (struct phi_arg_d));
3120 }
3121
3122 /* Return the region number for GIMPLE_RESX GS.  */
3123
3124 static inline int
3125 gimple_resx_region (const_gimple gs)
3126 {
3127   GIMPLE_CHECK (gs, GIMPLE_RESX);
3128   return gs->gimple_resx.region;
3129 }
3130
3131 /* Set REGION to be the region number for GIMPLE_RESX GS.  */
3132
3133 static inline void
3134 gimple_resx_set_region (gimple gs, int region)
3135 {
3136   GIMPLE_CHECK (gs, GIMPLE_RESX);
3137   gs->gimple_resx.region = region;
3138 }
3139
3140
3141 /* Return the number of labels associated with the switch statement GS.  */
3142
3143 static inline unsigned
3144 gimple_switch_num_labels (const_gimple gs)
3145 {
3146   unsigned num_ops;
3147   GIMPLE_CHECK (gs, GIMPLE_SWITCH);
3148   num_ops = gimple_num_ops (gs);
3149   gcc_assert (num_ops > 1);
3150   return num_ops - 1;
3151 }
3152
3153
3154 /* Set NLABELS to be the number of labels for the switch statement GS.  */
3155
3156 static inline void
3157 gimple_switch_set_num_labels (gimple g, unsigned nlabels)
3158 {
3159   GIMPLE_CHECK (g, GIMPLE_SWITCH);
3160   gimple_set_num_ops (g, nlabels + 1);
3161 }
3162
3163
3164 /* Return the index variable used by the switch statement GS.  */
3165
3166 static inline tree
3167 gimple_switch_index (const_gimple gs)
3168 {
3169   GIMPLE_CHECK (gs, GIMPLE_SWITCH);
3170   return gimple_op (gs, 0);
3171 }
3172
3173
3174 /* Return a pointer to the index variable for the switch statement GS.  */
3175
3176 static inline tree *
3177 gimple_switch_index_ptr (const_gimple gs)
3178 {
3179   GIMPLE_CHECK (gs, GIMPLE_SWITCH);
3180   return gimple_op_ptr (gs, 0);
3181 }
3182
3183
3184 /* Set INDEX to be the index variable for switch statement GS.  */
3185
3186 static inline void
3187 gimple_switch_set_index (gimple gs, tree index)
3188 {
3189   GIMPLE_CHECK (gs, GIMPLE_SWITCH);
3190   gcc_assert (SSA_VAR_P (index) || CONSTANT_CLASS_P (index));
3191   gimple_set_op (gs, 0, index);
3192 }
3193
3194
3195 /* Return the label numbered INDEX.  The default label is 0, followed by any
3196    labels in a switch statement.  */
3197
3198 static inline tree
3199 gimple_switch_label (const_gimple gs, unsigned index)
3200 {
3201   GIMPLE_CHECK (gs, GIMPLE_SWITCH);
3202   gcc_assert (gimple_num_ops (gs) > index + 1);
3203   return gimple_op (gs, index + 1);
3204 }
3205
3206 /* Set the label number INDEX to LABEL.  0 is always the default label.  */
3207
3208 static inline void
3209 gimple_switch_set_label (gimple gs, unsigned index, tree label)
3210 {
3211   GIMPLE_CHECK (gs, GIMPLE_SWITCH);
3212   gcc_assert (gimple_num_ops (gs) > index + 1);
3213   gcc_assert (label == NULL_TREE || TREE_CODE (label) == CASE_LABEL_EXPR);
3214   gimple_set_op (gs, index + 1, label);
3215 }
3216
3217 /* Return the default label for a switch statement.  */
3218
3219 static inline tree
3220 gimple_switch_default_label (const_gimple gs)
3221 {
3222   return gimple_switch_label (gs, 0);
3223 }
3224
3225 /* Set the default label for a switch statement.  */
3226
3227 static inline void
3228 gimple_switch_set_default_label (gimple gs, tree label)
3229 {
3230   gimple_switch_set_label (gs, 0, label);
3231 }
3232
3233
3234 /* Return the body for the OMP statement GS.  */
3235
3236 static inline gimple_seq 
3237 gimple_omp_body (gimple gs)
3238 {
3239   return gs->omp.body;
3240 }
3241
3242 /* Set BODY to be the body for the OMP statement GS.  */
3243
3244 static inline void
3245 gimple_omp_set_body (gimple gs, gimple_seq body)
3246 {
3247   gs->omp.body = body;
3248 }
3249
3250
3251 /* Return the name associated with OMP_CRITICAL statement GS.  */
3252
3253 static inline tree
3254 gimple_omp_critical_name (const_gimple gs)
3255 {
3256   GIMPLE_CHECK (gs, GIMPLE_OMP_CRITICAL);
3257   return gs->gimple_omp_critical.name;
3258 }
3259
3260
3261 /* Return a pointer to the name associated with OMP critical statement GS.  */
3262
3263 static inline tree *
3264 gimple_omp_critical_name_ptr (gimple gs)
3265 {
3266   GIMPLE_CHECK (gs, GIMPLE_OMP_CRITICAL);
3267   return &gs->gimple_omp_critical.name;
3268 }
3269
3270
3271 /* Set NAME to be the name associated with OMP critical statement GS.  */
3272
3273 static inline void
3274 gimple_omp_critical_set_name (gimple gs, tree name)
3275 {
3276   GIMPLE_CHECK (gs, GIMPLE_OMP_CRITICAL);
3277   gs->gimple_omp_critical.name = name;
3278 }
3279
3280
3281 /* Return the clauses associated with OMP_FOR GS.  */
3282
3283 static inline tree
3284 gimple_omp_for_clauses (const_gimple gs)
3285 {
3286   GIMPLE_CHECK (gs, GIMPLE_OMP_FOR);
3287   return gs->gimple_omp_for.clauses;
3288 }
3289
3290
3291 /* Return a pointer to the OMP_FOR GS.  */
3292
3293 static inline tree *
3294 gimple_omp_for_clauses_ptr (gimple gs)
3295 {
3296   GIMPLE_CHECK (gs, GIMPLE_OMP_FOR);
3297   return &gs->gimple_omp_for.clauses;
3298 }
3299
3300
3301 /* Set CLAUSES to be the list of clauses associated with OMP_FOR GS.  */
3302
3303 static inline void
3304 gimple_omp_for_set_clauses (gimple gs, tree clauses)
3305 {
3306   GIMPLE_CHECK (gs, GIMPLE_OMP_FOR);
3307   gs->gimple_omp_for.clauses = clauses;
3308 }
3309
3310
3311 /* Get the collapse count of OMP_FOR GS.  */
3312
3313 static inline size_t
3314 gimple_omp_for_collapse (gimple gs)
3315 {
3316   GIMPLE_CHECK (gs, GIMPLE_OMP_FOR);
3317   return gs->gimple_omp_for.collapse;
3318 }
3319
3320
3321 /* Return the index variable for OMP_FOR GS.  */
3322
3323 static inline tree
3324 gimple_omp_for_index (const_gimple gs, size_t i)
3325 {
3326   GIMPLE_CHECK (gs, GIMPLE_OMP_FOR);
3327   gcc_assert (i < gs->gimple_omp_for.collapse);
3328   return gs->gimple_omp_for.iter[i].index;
3329 }
3330
3331
3332 /* Return a pointer to the index variable for OMP_FOR GS.  */
3333
3334 static inline tree *
3335 gimple_omp_for_index_ptr (gimple gs, size_t i)
3336 {
3337   GIMPLE_CHECK (gs, GIMPLE_OMP_FOR);
3338   gcc_assert (i < gs->gimple_omp_for.collapse);
3339   return &gs->gimple_omp_for.iter[i].index;
3340 }
3341
3342
3343 /* Set INDEX to be the index variable for OMP_FOR GS.  */
3344
3345 static inline void
3346 gimple_omp_for_set_index (gimple gs, size_t i, tree index)
3347 {
3348   GIMPLE_CHECK (gs, GIMPLE_OMP_FOR);
3349   gcc_assert (i < gs->gimple_omp_for.collapse);
3350   gs->gimple_omp_for.iter[i].index = index;
3351 }
3352
3353
3354 /* Return the initial value for OMP_FOR GS.  */
3355
3356 static inline tree
3357 gimple_omp_for_initial (const_gimple gs, size_t i)
3358 {
3359   GIMPLE_CHECK (gs, GIMPLE_OMP_FOR);
3360   gcc_assert (i < gs->gimple_omp_for.collapse);
3361   return gs->gimple_omp_for.iter[i].initial;
3362 }
3363
3364
3365 /* Return a pointer to the initial value for OMP_FOR GS.  */
3366
3367 static inline tree *
3368 gimple_omp_for_initial_ptr (gimple gs, size_t i)
3369 {
3370   GIMPLE_CHECK (gs, GIMPLE_OMP_FOR);
3371   gcc_assert (i < gs->gimple_omp_for.collapse);
3372   return &gs->gimple_omp_for.iter[i].initial;
3373 }
3374
3375
3376 /* Set INITIAL to be the initial value for OMP_FOR GS.  */
3377
3378 static inline void
3379 gimple_omp_for_set_initial (gimple gs, size_t i, tree initial)
3380 {
3381   GIMPLE_CHECK (gs, GIMPLE_OMP_FOR);
3382   gcc_assert (i < gs->gimple_omp_for.collapse);
3383   gs->gimple_omp_for.iter[i].initial = initial;
3384 }
3385
3386
3387 /* Return the final value for OMP_FOR GS.  */
3388
3389 static inline tree
3390 gimple_omp_for_final (const_gimple gs, size_t i)
3391 {
3392   GIMPLE_CHECK (gs, GIMPLE_OMP_FOR);
3393   gcc_assert (i < gs->gimple_omp_for.collapse);
3394   return gs->gimple_omp_for.iter[i].final;
3395 }
3396
3397
3398 /* Return a pointer to the final value for OMP_FOR GS.  */
3399
3400 static inline tree *
3401 gimple_omp_for_final_ptr (gimple gs, size_t i)
3402 {
3403   GIMPLE_CHECK (gs, GIMPLE_OMP_FOR);
3404   gcc_assert (i < gs->gimple_omp_for.collapse);
3405   return &gs->gimple_omp_for.iter[i].final;
3406 }
3407
3408
3409 /* Set FINAL to be the final value for OMP_FOR GS.  */
3410
3411 static inline void
3412 gimple_omp_for_set_final (gimple gs, size_t i, tree final)
3413 {
3414   GIMPLE_CHECK (gs, GIMPLE_OMP_FOR);
3415   gcc_assert (i < gs->gimple_omp_for.collapse);
3416   gs->gimple_omp_for.iter[i].final = final;
3417 }
3418
3419
3420 /* Return the increment value for OMP_FOR GS.  */
3421
3422 static inline tree
3423 gimple_omp_for_incr (const_gimple gs, size_t i)
3424 {
3425   GIMPLE_CHECK (gs, GIMPLE_OMP_FOR);
3426   gcc_assert (i < gs->gimple_omp_for.collapse);
3427   return gs->gimple_omp_for.iter[i].incr;
3428 }
3429
3430
3431 /* Return a pointer to the increment value for OMP_FOR GS.  */
3432
3433 static inline tree *
3434 gimple_omp_for_incr_ptr (gimple gs, size_t i)
3435 {
3436   GIMPLE_CHECK (gs, GIMPLE_OMP_FOR);
3437   gcc_assert (i < gs->gimple_omp_for.collapse);
3438   return &gs->gimple_omp_for.iter[i].incr;
3439 }
3440
3441
3442 /* Set INCR to be the increment value for OMP_FOR GS.  */
3443
3444 static inline void
3445 gimple_omp_for_set_incr (gimple gs, size_t i, tree incr)
3446 {
3447   GIMPLE_CHECK (gs, GIMPLE_OMP_FOR);
3448   gcc_assert (i < gs->gimple_omp_for.collapse);
3449   gs->gimple_omp_for.iter[i].incr = incr;
3450 }
3451
3452
3453 /* Return the sequence of statements to execute before the OMP_FOR
3454    statement GS starts.  */
3455
3456 static inline gimple_seq
3457 gimple_omp_for_pre_body (gimple gs)
3458 {
3459   GIMPLE_CHECK (gs, GIMPLE_OMP_FOR);
3460   return gs->gimple_omp_for.pre_body;
3461 }
3462
3463
3464 /* Set PRE_BODY to be the sequence of statements to execute before the
3465    OMP_FOR statement GS starts.  */
3466
3467 static inline void
3468 gimple_omp_for_set_pre_body (gimple gs, gimple_seq pre_body)
3469 {
3470   GIMPLE_CHECK (gs, GIMPLE_OMP_FOR);
3471   gs->gimple_omp_for.pre_body = pre_body;
3472 }
3473
3474
3475 /* Return the clauses associated with OMP_PARALLEL GS.  */
3476
3477 static inline tree
3478 gimple_omp_parallel_clauses (const_gimple gs)
3479 {
3480   GIMPLE_CHECK (gs, GIMPLE_OMP_PARALLEL);
3481   return gs->gimple_omp_parallel.clauses;
3482 }
3483
3484
3485 /* Return a pointer to the clauses associated with OMP_PARALLEL GS.  */
3486
3487 static inline tree *
3488 gimple_omp_parallel_clauses_ptr (gimple gs)
3489 {
3490   GIMPLE_CHECK (gs, GIMPLE_OMP_PARALLEL);
3491   return &gs->gimple_omp_parallel.clauses;
3492 }
3493
3494
3495 /* Set CLAUSES to be the list of clauses associated with OMP_PARALLEL
3496    GS.  */
3497
3498 static inline void
3499 gimple_omp_parallel_set_clauses (gimple gs, tree clauses)
3500 {
3501   GIMPLE_CHECK (gs, GIMPLE_OMP_PARALLEL);
3502   gs->gimple_omp_parallel.clauses = clauses;
3503 }
3504
3505
3506 /* Return the child function used to hold the body of OMP_PARALLEL GS.  */
3507
3508 static inline tree
3509 gimple_omp_parallel_child_fn (const_gimple gs)
3510 {
3511   GIMPLE_CHECK (gs, GIMPLE_OMP_PARALLEL);
3512   return gs->gimple_omp_parallel.child_fn;
3513 }
3514
3515 /* Return a pointer to the child function used to hold the body of
3516    OMP_PARALLEL GS.  */
3517
3518 static inline tree *
3519 gimple_omp_parallel_child_fn_ptr (gimple gs)
3520 {
3521   GIMPLE_CHECK (gs, GIMPLE_OMP_PARALLEL);
3522   return &gs->gimple_omp_parallel.child_fn;
3523 }
3524
3525
3526 /* Set CHILD_FN to be the child function for OMP_PARALLEL GS.  */
3527
3528 static inline void
3529 gimple_omp_parallel_set_child_fn (gimple gs, tree child_fn)
3530 {
3531   GIMPLE_CHECK (gs, GIMPLE_OMP_PARALLEL);
3532   gs->gimple_omp_parallel.child_fn = child_fn;
3533 }
3534
3535
3536 /* Return the artificial argument used to send variables and values
3537    from the parent to the children threads in OMP_PARALLEL GS.  */
3538
3539 static inline tree
3540 gimple_omp_parallel_data_arg (const_gimple gs)
3541 {
3542   GIMPLE_CHECK (gs, GIMPLE_OMP_PARALLEL);
3543   return gs->gimple_omp_parallel.data_arg;
3544 }
3545
3546
3547 /* Return a pointer to the data argument for OMP_PARALLEL GS.  */
3548
3549 static inline tree *
3550 gimple_omp_parallel_data_arg_ptr (gimple gs)
3551 {
3552   GIMPLE_CHECK (gs, GIMPLE_OMP_PARALLEL);
3553   return &gs->gimple_omp_parallel.data_arg;
3554 }
3555
3556
3557 /* Set DATA_ARG to be the data argument for OMP_PARALLEL GS.  */
3558
3559 static inline void
3560 gimple_omp_parallel_set_data_arg (gimple gs, tree data_arg)
3561 {
3562   GIMPLE_CHECK (gs, GIMPLE_OMP_PARALLEL);
3563   gs->gimple_omp_parallel.data_arg = data_arg;
3564 }
3565
3566
3567 /* Return the clauses associated with OMP_TASK GS.  */
3568
3569 static inline tree
3570 gimple_omp_task_clauses (const_gimple gs)
3571 {
3572   GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
3573   return gs->gimple_omp_parallel.clauses;
3574 }
3575
3576
3577 /* Return a pointer to the clauses associated with OMP_TASK GS.  */
3578
3579 static inline tree *
3580 gimple_omp_task_clauses_ptr (gimple gs)
3581 {
3582   GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
3583   return &gs->gimple_omp_parallel.clauses;
3584 }
3585
3586
3587 /* Set CLAUSES to be the list of clauses associated with OMP_TASK
3588    GS.  */
3589
3590 static inline void
3591 gimple_omp_task_set_clauses (gimple gs, tree clauses)
3592 {
3593   GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
3594   gs->gimple_omp_parallel.clauses = clauses;
3595 }
3596
3597
3598 /* Return the child function used to hold the body of OMP_TASK GS.  */
3599
3600 static inline tree
3601 gimple_omp_task_child_fn (const_gimple gs)
3602 {
3603   GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
3604   return gs->gimple_omp_parallel.child_fn;
3605 }
3606
3607 /* Return a pointer to the child function used to hold the body of
3608    OMP_TASK GS.  */
3609
3610 static inline tree *
3611 gimple_omp_task_child_fn_ptr (gimple gs)
3612 {
3613   GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
3614   return &gs->gimple_omp_parallel.child_fn;
3615 }
3616
3617
3618 /* Set CHILD_FN to be the child function for OMP_TASK GS.  */
3619
3620 static inline void
3621 gimple_omp_task_set_child_fn (gimple gs, tree child_fn)
3622 {
3623   GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
3624   gs->gimple_omp_parallel.child_fn = child_fn;
3625 }
3626
3627
3628 /* Return the artificial argument used to send variables and values
3629    from the parent to the children threads in OMP_TASK GS.  */
3630
3631 static inline tree
3632 gimple_omp_task_data_arg (const_gimple gs)
3633 {
3634   GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
3635   return gs->gimple_omp_parallel.data_arg;
3636 }
3637
3638
3639 /* Return a pointer to the data argument for OMP_TASK GS.  */
3640
3641 static inline tree *
3642 gimple_omp_task_data_arg_ptr (gimple gs)
3643 {
3644   GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
3645   return &gs->gimple_omp_parallel.data_arg;
3646 }
3647
3648
3649 /* Set DATA_ARG to be the data argument for OMP_TASK GS.  */
3650
3651 static inline void
3652 gimple_omp_task_set_data_arg (gimple gs, tree data_arg)
3653 {
3654   GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
3655   gs->gimple_omp_parallel.data_arg = data_arg;
3656 }
3657
3658
3659 /* Return the clauses associated with OMP_TASK GS.  */
3660
3661 static inline tree
3662 gimple_omp_taskreg_clauses (const_gimple gs)
3663 {
3664   if (gimple_code (gs) != GIMPLE_OMP_PARALLEL)
3665     GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
3666   return gs->gimple_omp_parallel.clauses;
3667 }
3668
3669
3670 /* Return a pointer to the clauses associated with OMP_TASK GS.  */
3671
3672 static inline tree *
3673 gimple_omp_taskreg_clauses_ptr (gimple gs)
3674 {
3675   if (gimple_code (gs) != GIMPLE_OMP_PARALLEL)
3676     GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
3677   return &gs->gimple_omp_parallel.clauses;
3678 }
3679
3680
3681 /* Set CLAUSES to be the list of clauses associated with OMP_TASK
3682    GS.  */
3683
3684 static inline void
3685 gimple_omp_taskreg_set_clauses (gimple gs, tree clauses)
3686 {
3687   if (gimple_code (gs) != GIMPLE_OMP_PARALLEL)
3688     GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
3689   gs->gimple_omp_parallel.clauses = clauses;
3690 }
3691
3692
3693 /* Return the child function used to hold the body of OMP_TASK GS.  */
3694
3695 static inline tree
3696 gimple_omp_taskreg_child_fn (const_gimple gs)
3697 {
3698   if (gimple_code (gs) != GIMPLE_OMP_PARALLEL)
3699     GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
3700   return gs->gimple_omp_parallel.child_fn;
3701 }
3702
3703 /* Return a pointer to the child function used to hold the body of
3704    OMP_TASK GS.  */
3705
3706 static inline tree *
3707 gimple_omp_taskreg_child_fn_ptr (gimple gs)
3708 {
3709   if (gimple_code (gs) != GIMPLE_OMP_PARALLEL)
3710     GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
3711   return &gs->gimple_omp_parallel.child_fn;
3712 }
3713
3714
3715 /* Set CHILD_FN to be the child function for OMP_TASK GS.  */
3716
3717 static inline void
3718 gimple_omp_taskreg_set_child_fn (gimple gs, tree child_fn)
3719 {
3720   if (gimple_code (gs) != GIMPLE_OMP_PARALLEL)
3721     GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
3722   gs->gimple_omp_parallel.child_fn = child_fn;
3723 }
3724
3725
3726 /* Return the artificial argument used to send variables and values
3727    from the parent to the children threads in OMP_TASK GS.  */
3728
3729 static inline tree
3730 gimple_omp_taskreg_data_arg (const_gimple gs)
3731 {
3732   if (gimple_code (gs) != GIMPLE_OMP_PARALLEL)
3733     GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
3734   return gs->gimple_omp_parallel.data_arg;
3735 }
3736
3737
3738 /* Return a pointer to the data argument for OMP_TASK GS.  */
3739
3740 static inline tree *
3741 gimple_omp_taskreg_data_arg_ptr (gimple gs)
3742 {
3743   if (gimple_code (gs) != GIMPLE_OMP_PARALLEL)
3744     GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
3745   return &gs->gimple_omp_parallel.data_arg;
3746 }
3747
3748
3749 /* Set DATA_ARG to be the data argument for OMP_TASK GS.  */
3750
3751 static inline void
3752 gimple_omp_taskreg_set_data_arg (gimple gs, tree data_arg)
3753 {
3754   if (gimple_code (gs) != GIMPLE_OMP_PARALLEL)
3755     GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
3756   gs->gimple_omp_parallel.data_arg = data_arg;
3757 }
3758
3759
3760 /* Return the copy function used to hold the body of OMP_TASK GS.  */
3761
3762 static inline tree
3763 gimple_omp_task_copy_fn (const_gimple gs)
3764 {
3765   GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
3766   return gs->gimple_omp_task.copy_fn;
3767 }
3768
3769 /* Return a pointer to the copy function used to hold the body of
3770    OMP_TASK GS.  */
3771
3772 static inline tree *
3773 gimple_omp_task_copy_fn_ptr (gimple gs)
3774 {
3775   GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
3776   return &gs->gimple_omp_task.copy_fn;
3777 }
3778
3779
3780 /* Set CHILD_FN to be the copy function for OMP_TASK GS.  */
3781
3782 static inline void
3783 gimple_omp_task_set_copy_fn (gimple gs, tree copy_fn)
3784 {
3785   GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
3786   gs->gimple_omp_task.copy_fn = copy_fn;
3787 }
3788
3789
3790 /* Return size of the data block in bytes in OMP_TASK GS.  */
3791
3792 static inline tree
3793 gimple_omp_task_arg_size (const_gimple gs)
3794 {
3795   GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
3796   return gs->gimple_omp_task.arg_size;
3797 }
3798
3799
3800 /* Return a pointer to the data block size for OMP_TASK GS.  */
3801
3802 static inline tree *
3803 gimple_omp_task_arg_size_ptr (gimple gs)
3804 {
3805   GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
3806   return &gs->gimple_omp_task.arg_size;
3807 }
3808
3809
3810 /* Set ARG_SIZE to be the data block size for OMP_TASK GS.  */
3811
3812 static inline void
3813 gimple_omp_task_set_arg_size (gimple gs, tree arg_size)
3814 {
3815   GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
3816   gs->gimple_omp_task.arg_size = arg_size;
3817 }
3818
3819
3820 /* Return align of the data block in bytes in OMP_TASK GS.  */
3821
3822 static inline tree
3823 gimple_omp_task_arg_align (const_gimple gs)
3824 {
3825   GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
3826   return gs->gimple_omp_task.arg_align;
3827 }
3828
3829
3830 /* Return a pointer to the data block align for OMP_TASK GS.  */
3831
3832 static inline tree *
3833 gimple_omp_task_arg_align_ptr (gimple gs)
3834 {
3835   GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
3836   return &gs->gimple_omp_task.arg_align;
3837 }
3838
3839
3840 /* Set ARG_SIZE to be the data block align for OMP_TASK GS.  */
3841
3842 static inline void
3843 gimple_omp_task_set_arg_align (gimple gs, tree arg_align)
3844 {
3845   GIMPLE_CHECK (gs, GIMPLE_OMP_TASK);
3846   gs->gimple_omp_task.arg_align = arg_align;
3847 }
3848
3849
3850 /* Return the clauses associated with OMP_SINGLE GS.  */
3851
3852 static inline tree
3853 gimple_omp_single_clauses (const_gimple gs)
3854 {
3855   GIMPLE_CHECK (gs, GIMPLE_OMP_SINGLE);
3856   return gs->gimple_omp_single.clauses;
3857 }
3858
3859
3860 /* Return a pointer to the clauses associated with OMP_SINGLE GS.  */
3861
3862 static inline tree *
3863 gimple_omp_single_clauses_ptr (gimple gs)
3864 {
3865   GIMPLE_CHECK (gs, GIMPLE_OMP_SINGLE);
3866   return &gs->gimple_omp_single.clauses;
3867 }
3868
3869
3870 /* Set CLAUSES to be the clauses associated with OMP_SINGLE GS.  */
3871
3872 static inline void
3873 gimple_omp_single_set_clauses (gimple gs, tree clauses)
3874 {
3875   GIMPLE_CHECK (gs, GIMPLE_OMP_SINGLE);
3876   gs->gimple_omp_single.clauses = clauses;
3877 }
3878
3879
3880 /* Return the clauses associated with OMP_SECTIONS GS.  */
3881
3882 static inline tree
3883 gimple_omp_sections_clauses (const_gimple gs)
3884 {
3885   GIMPLE_CHECK (gs, GIMPLE_OMP_SECTIONS);
3886   return gs->gimple_omp_sections.clauses;
3887 }
3888
3889
3890 /* Return a pointer to the clauses associated with OMP_SECTIONS GS.  */
3891
3892 static inline tree *
3893 gimple_omp_sections_clauses_ptr (gimple gs)
3894 {
3895   GIMPLE_CHECK (gs, GIMPLE_OMP_SECTIONS);
3896   return &gs->gimple_omp_sections.clauses;
3897 }
3898
3899
3900 /* Set CLAUSES to be the set of clauses associated with OMP_SECTIONS
3901    GS.  */
3902
3903 static inline void
3904 gimple_omp_sections_set_clauses (gimple gs, tree clauses)
3905 {
3906   GIMPLE_CHECK (gs, GIMPLE_OMP_SECTIONS);
3907   gs->gimple_omp_sections.clauses = clauses;
3908 }
3909
3910
3911 /* Return the control variable associated with the GIMPLE_OMP_SECTIONS
3912    in GS.  */
3913
3914 static inline tree
3915 gimple_omp_sections_control (const_gimple gs)
3916 {
3917   GIMPLE_CHECK (gs, GIMPLE_OMP_SECTIONS);
3918   return gs->gimple_omp_sections.control;
3919 }
3920
3921
3922 /* Return a pointer to the clauses associated with the GIMPLE_OMP_SECTIONS
3923    GS.  */
3924
3925 static inline tree *
3926 gimple_omp_sections_control_ptr (gimple gs)
3927 {
3928   GIMPLE_CHECK (gs, GIMPLE_OMP_SECTIONS);
3929   return &gs->gimple_omp_sections.control;
3930 }
3931
3932
3933 /* Set CONTROL to be the set of clauses associated with the
3934    GIMPLE_OMP_SECTIONS in GS.  */
3935
3936 static inline void
3937 gimple_omp_sections_set_control (gimple gs, tree control)
3938 {
3939   GIMPLE_CHECK (gs, GIMPLE_OMP_SECTIONS);
3940   gs->gimple_omp_sections.control = control;
3941 }
3942
3943
3944 /* Set COND to be the condition code for OMP_FOR GS.  */
3945
3946 static inline void
3947 gimple_omp_for_set_cond (gimple gs, size_t i, enum tree_code cond)
3948 {
3949   GIMPLE_CHECK (gs, GIMPLE_OMP_FOR);
3950   gcc_assert (TREE_CODE_CLASS (cond) == tcc_comparison);
3951   gcc_assert (i < gs->gimple_omp_for.collapse);
3952   gs->gimple_omp_for.iter[i].cond = cond;
3953 }
3954
3955
3956 /* Return the condition code associated with OMP_FOR GS.  */
3957
3958 static inline enum tree_code
3959 gimple_omp_for_cond (const_gimple gs, size_t i)
3960 {
3961   GIMPLE_CHECK (gs, GIMPLE_OMP_FOR);
3962   gcc_assert (i < gs->gimple_omp_for.collapse);
3963   return gs->gimple_omp_for.iter[i].cond;
3964 }
3965
3966
3967 /* Set the value being stored in an atomic store.  */
3968
3969 static inline void
3970 gimple_omp_atomic_store_set_val (gimple g, tree val)
3971 {
3972   GIMPLE_CHECK (g, GIMPLE_OMP_ATOMIC_STORE);
3973   g->gimple_omp_atomic_store.val = val;
3974 }
3975
3976
3977 /* Return the value being stored in an atomic store.  */
3978
3979 static inline tree
3980 gimple_omp_atomic_store_val (const_gimple g)
3981 {
3982   GIMPLE_CHECK (g, GIMPLE_OMP_ATOMIC_STORE);
3983   return g->gimple_omp_atomic_store.val;
3984 }
3985
3986
3987 /* Return a pointer to the value being stored in an atomic store.  */
3988
3989 static inline tree *
3990 gimple_omp_atomic_store_val_ptr (gimple g)
3991 {
3992   GIMPLE_CHECK (g, GIMPLE_OMP_ATOMIC_STORE);
3993   return &g->gimple_omp_atomic_store.val;
3994 }
3995
3996
3997 /* Set the LHS of an atomic load.  */
3998
3999 static inline void
4000 gimple_omp_atomic_load_set_lhs (gimple g, tree lhs)
4001 {
4002   GIMPLE_CHECK (g, GIMPLE_OMP_ATOMIC_LOAD);
4003   g->gimple_omp_atomic_load.lhs = lhs;
4004 }
4005
4006
4007 /* Get the LHS of an atomic load.  */
4008
4009 static inline tree
4010 gimple_omp_atomic_load_lhs (const_gimple g)
4011 {
4012   GIMPLE_CHECK (g, GIMPLE_OMP_ATOMIC_LOAD);
4013   return g->gimple_omp_atomic_load.lhs;
4014 }
4015
4016
4017 /* Return a pointer to the LHS of an atomic load.  */
4018
4019 static inline tree *
4020 gimple_omp_atomic_load_lhs_ptr (gimple g)
4021 {
4022   GIMPLE_CHECK (g, GIMPLE_OMP_ATOMIC_LOAD);
4023   return &g->gimple_omp_atomic_load.lhs;
4024 }
4025
4026
4027 /* Set the RHS of an atomic load.  */
4028
4029 static inline void
4030 gimple_omp_atomic_load_set_rhs (gimple g, tree rhs)
4031 {
4032   GIMPLE_CHECK (g, GIMPLE_OMP_ATOMIC_LOAD);
4033   g->gimple_omp_atomic_load.rhs = rhs;
4034 }
4035
4036
4037 /* Get the RHS of an atomic load.  */
4038
4039 static inline tree
4040 gimple_omp_atomic_load_rhs (const_gimple g)
4041 {
4042   GIMPLE_CHECK (g, GIMPLE_OMP_ATOMIC_LOAD);
4043   return g->gimple_omp_atomic_load.rhs;
4044 }
4045
4046
4047 /* Return a pointer to the RHS of an atomic load.  */
4048
4049 static inline tree *
4050 gimple_omp_atomic_load_rhs_ptr (gimple g)
4051 {
4052   GIMPLE_CHECK (g, GIMPLE_OMP_ATOMIC_LOAD);
4053   return &g->gimple_omp_atomic_load.rhs;
4054 }
4055
4056
4057 /* Get the definition of the control variable in a GIMPLE_OMP_CONTINUE.  */
4058
4059 static inline tree
4060 gimple_omp_continue_control_def (const_gimple g)
4061 {
4062   GIMPLE_CHECK (g, GIMPLE_OMP_CONTINUE);
4063   return g->gimple_omp_continue.control_def;
4064 }
4065
4066 /* The same as above, but return the address.  */
4067
4068 static inline tree *
4069 gimple_omp_continue_control_def_ptr (gimple g)
4070 {
4071   GIMPLE_CHECK (g, GIMPLE_OMP_CONTINUE);
4072   return &g->gimple_omp_continue.control_def;
4073 }
4074
4075 /* Set the definition of the control variable in a GIMPLE_OMP_CONTINUE.  */
4076
4077 static inline void
4078 gimple_omp_continue_set_control_def (gimple g, tree def)
4079 {
4080   GIMPLE_CHECK (g, GIMPLE_OMP_CONTINUE);
4081   g->gimple_omp_continue.control_def = def;
4082 }
4083
4084
4085 /* Get the use of the control variable in a GIMPLE_OMP_CONTINUE.  */
4086
4087 static inline tree
4088 gimple_omp_continue_control_use (const_gimple g)
4089 {
4090   GIMPLE_CHECK (g, GIMPLE_OMP_CONTINUE);
4091   return g->gimple_omp_continue.control_use;
4092 }
4093
4094
4095 /* The same as above, but return the address.  */
4096
4097 static inline tree *
4098 gimple_omp_continue_control_use_ptr (gimple g)
4099 {
4100   GIMPLE_CHECK (g, GIMPLE_OMP_CONTINUE);
4101   return &g->gimple_omp_continue.control_use;
4102 }
4103
4104
4105 /* Set the use of the control variable in a GIMPLE_OMP_CONTINUE.  */
4106
4107 static inline void
4108 gimple_omp_continue_set_control_use (gimple g, tree use)
4109 {
4110   GIMPLE_CHECK (g, GIMPLE_OMP_CONTINUE);
4111   g->gimple_omp_continue.control_use = use;
4112 }
4113
4114
4115 /* Return a pointer to the return value for GIMPLE_RETURN GS.  */
4116
4117 static inline tree *
4118 gimple_return_retval_ptr (const_gimple gs)
4119 {
4120   GIMPLE_CHECK (gs, GIMPLE_RETURN);
4121   gcc_assert (gimple_num_ops (gs) == 1);
4122   return gimple_op_ptr (gs, 0);
4123 }
4124
4125 /* Return the return value for GIMPLE_RETURN GS.  */
4126
4127 static inline tree
4128 gimple_return_retval (const_gimple gs)
4129 {
4130   GIMPLE_CHECK (gs, GIMPLE_RETURN);
4131   gcc_assert (gimple_num_ops (gs) == 1);
4132   return gimple_op (gs, 0);
4133 }
4134
4135
4136 /* Set RETVAL to be the return value for GIMPLE_RETURN GS.  */
4137
4138 static inline void
4139 gimple_return_set_retval (gimple gs, tree retval)
4140 {
4141   GIMPLE_CHECK (gs, GIMPLE_RETURN);
4142   gcc_assert (gimple_num_ops (gs) == 1);
4143   gcc_assert (retval == NULL_TREE
4144               || TREE_CODE (retval) == RESULT_DECL
4145               || is_gimple_val (retval));
4146   gimple_set_op (gs, 0, retval);
4147 }
4148
4149
4150 /* Returns true when the gimple statment STMT is any of the OpenMP types.  */
4151
4152 static inline bool
4153 is_gimple_omp (const_gimple stmt)
4154 {
4155   return (gimple_code (stmt) == GIMPLE_OMP_PARALLEL
4156           || gimple_code (stmt) == GIMPLE_OMP_TASK
4157           || gimple_code (stmt) == GIMPLE_OMP_FOR
4158           || gimple_code (stmt) == GIMPLE_OMP_SECTIONS
4159           || gimple_code (stmt) == GIMPLE_OMP_SECTIONS_SWITCH
4160           || gimple_code (stmt) == GIMPLE_OMP_SINGLE
4161           || gimple_code (stmt) == GIMPLE_OMP_SECTION
4162           || gimple_code (stmt) == GIMPLE_OMP_MASTER
4163           || gimple_code (stmt) == GIMPLE_OMP_ORDERED
4164           || gimple_code (stmt) == GIMPLE_OMP_CRITICAL
4165           || gimple_code (stmt) == GIMPLE_OMP_RETURN
4166           || gimple_code (stmt) == GIMPLE_OMP_ATOMIC_LOAD
4167           || gimple_code (stmt) == GIMPLE_OMP_ATOMIC_STORE
4168           || gimple_code (stmt) == GIMPLE_OMP_CONTINUE);
4169 }
4170
4171
4172 /* Returns TRUE if statement G is a GIMPLE_NOP.  */
4173
4174 static inline bool
4175 gimple_nop_p (const_gimple g)
4176 {
4177   return gimple_code (g) == GIMPLE_NOP;
4178 }
4179
4180
4181 /* Return the new type set by GIMPLE_CHANGE_DYNAMIC_TYPE statement GS.  */
4182
4183 static inline tree
4184 gimple_cdt_new_type (gimple gs)
4185 {
4186   GIMPLE_CHECK (gs, GIMPLE_CHANGE_DYNAMIC_TYPE);
4187   return gimple_op (gs, 1);
4188 }
4189
4190 /* Return a pointer to the new type set by GIMPLE_CHANGE_DYNAMIC_TYPE
4191    statement GS.  */
4192
4193 static inline tree *
4194 gimple_cdt_new_type_ptr (gimple gs)
4195 {
4196   GIMPLE_CHECK (gs, GIMPLE_CHANGE_DYNAMIC_TYPE);
4197   return gimple_op_ptr (gs, 1);
4198 }
4199
4200 /* Set NEW_TYPE to be the type returned by GIMPLE_CHANGE_DYNAMIC_TYPE
4201    statement GS.  */
4202
4203 static inline void
4204 gimple_cdt_set_new_type (gimple gs, tree new_type)
4205 {
4206   GIMPLE_CHECK (gs, GIMPLE_CHANGE_DYNAMIC_TYPE);
4207   gcc_assert (TREE_CODE_CLASS (TREE_CODE (new_type)) == tcc_type);
4208   gimple_set_op (gs, 1, new_type);
4209 }
4210
4211
4212 /* Return the location affected by GIMPLE_CHANGE_DYNAMIC_TYPE statement GS.  */
4213
4214 static inline tree
4215 gimple_cdt_location (gimple gs)
4216 {
4217   GIMPLE_CHECK (gs, GIMPLE_CHANGE_DYNAMIC_TYPE);
4218   return gimple_op (gs, 0);
4219 }
4220
4221
4222 /* Return a pointer to the location affected by GIMPLE_CHANGE_DYNAMIC_TYPE
4223    statement GS.  */
4224
4225 static inline tree *
4226 gimple_cdt_location_ptr (gimple gs)
4227 {
4228   GIMPLE_CHECK (gs, GIMPLE_CHANGE_DYNAMIC_TYPE);
4229   return gimple_op_ptr (gs, 0);
4230 }
4231
4232
4233 /* Set PTR to be the location affected by GIMPLE_CHANGE_DYNAMIC_TYPE
4234    statement GS.  */
4235
4236 static inline void
4237 gimple_cdt_set_location (gimple gs, tree ptr)
4238 {
4239   GIMPLE_CHECK (gs, GIMPLE_CHANGE_DYNAMIC_TYPE);
4240   gimple_set_op (gs, 0, ptr);
4241 }
4242
4243
4244 /* Return the predictor of GIMPLE_PREDICT statement GS.  */
4245
4246 static inline enum br_predictor
4247 gimple_predict_predictor (gimple gs)
4248 {
4249   GIMPLE_CHECK (gs, GIMPLE_PREDICT);
4250   return (enum br_predictor) (gs->gsbase.subcode & ~GF_PREDICT_TAKEN);
4251 }
4252
4253
4254 /* Set the predictor of GIMPLE_PREDICT statement GS to PREDICT.  */
4255
4256 static inline void
4257 gimple_predict_set_predictor (gimple gs, enum br_predictor predictor)
4258 {
4259   GIMPLE_CHECK (gs, GIMPLE_PREDICT);
4260   gs->gsbase.subcode = (gs->gsbase.subcode & GF_PREDICT_TAKEN)
4261                        | (unsigned) predictor;
4262 }
4263
4264
4265 /* Return the outcome of GIMPLE_PREDICT statement GS.  */
4266
4267 static inline enum prediction
4268 gimple_predict_outcome (gimple gs)
4269 {
4270   GIMPLE_CHECK (gs, GIMPLE_PREDICT);
4271   return (gs->gsbase.subcode & GF_PREDICT_TAKEN) ? TAKEN : NOT_TAKEN;
4272 }
4273
4274
4275 /* Set the outcome of GIMPLE_PREDICT statement GS to OUTCOME.  */
4276
4277 static inline void
4278 gimple_predict_set_outcome (gimple gs, enum prediction outcome)
4279 {
4280   GIMPLE_CHECK (gs, GIMPLE_PREDICT);
4281   if (outcome == TAKEN)
4282     gs->gsbase.subcode |= GF_PREDICT_TAKEN;
4283   else
4284     gs->gsbase.subcode &= ~GF_PREDICT_TAKEN;
4285 }
4286
4287
4288 /* Return a new iterator pointing to GIMPLE_SEQ's first statement.  */
4289
4290 static inline gimple_stmt_iterator
4291 gsi_start (gimple_seq seq)
4292 {
4293   gimple_stmt_iterator i;
4294
4295   i.ptr = gimple_seq_first (seq);
4296   i.seq = seq;
4297   i.bb = (i.ptr && i.ptr->stmt) ? gimple_bb (i.ptr->stmt) : NULL;
4298
4299   return i;
4300 }
4301
4302
4303 /* Return a new iterator pointing to the first statement in basic block BB.  */
4304
4305 static inline gimple_stmt_iterator
4306 gsi_start_bb (basic_block bb)
4307 {
4308   gimple_stmt_iterator i;
4309   gimple_seq seq;
4310   
4311   seq = bb_seq (bb);
4312   i.ptr = gimple_seq_first (seq);
4313   i.seq = seq;
4314   i.bb = bb;
4315
4316   return i;
4317 }
4318
4319
4320 /* Return a new iterator initially pointing to GIMPLE_SEQ's last statement.  */
4321
4322 static inline gimple_stmt_iterator
4323 gsi_last (gimple_seq seq)
4324 {
4325   gimple_stmt_iterator i;
4326
4327   i.ptr = gimple_seq_last (seq);
4328   i.seq = seq;
4329   i.bb = (i.ptr && i.ptr->stmt) ? gimple_bb (i.ptr->stmt) : NULL;
4330
4331   return i;
4332 }
4333
4334
4335 /* Return a new iterator pointing to the last statement in basic block BB.  */
4336
4337 static inline gimple_stmt_iterator
4338 gsi_last_bb (basic_block bb)
4339 {
4340   gimple_stmt_iterator i;
4341   gimple_seq seq;
4342
4343   seq = bb_seq (bb);
4344   i.ptr = gimple_seq_last (seq);
4345   i.seq = seq;
4346   i.bb = bb;
4347
4348   return i;
4349 }
4350
4351
4352 /* Return true if I is at the end of its sequence.  */
4353
4354 static inline bool
4355 gsi_end_p (gimple_stmt_iterator i)
4356 {
4357   return i.ptr == NULL;
4358 }
4359
4360
4361 /* Return true if I is one statement before the end of its sequence.  */
4362
4363 static inline bool
4364 gsi_one_before_end_p (gimple_stmt_iterator i)
4365 {
4366   return i.ptr != NULL && i.ptr->next == NULL;
4367 }
4368
4369
4370 /* Advance the iterator to the next gimple statement.  */
4371
4372 static inline void
4373 gsi_next (gimple_stmt_iterator *i)
4374 {
4375   i->ptr = i->ptr->next;
4376 }
4377
4378 /* Advance the iterator to the previous gimple statement.  */
4379
4380 static inline void
4381 gsi_prev (gimple_stmt_iterator *i)
4382 {
4383   i->ptr = i->ptr->prev;
4384 }
4385
4386 /* Return the current stmt.  */
4387
4388 static inline gimple
4389 gsi_stmt (gimple_stmt_iterator i)
4390 {
4391   return i.ptr->stmt;
4392 }
4393
4394 /* Return a block statement iterator that points to the first non-label
4395    statement in block BB.  */
4396
4397 static inline gimple_stmt_iterator
4398 gsi_after_labels (basic_block bb)
4399 {
4400   gimple_stmt_iterator gsi = gsi_start_bb (bb);
4401
4402   while (!gsi_end_p (gsi) && gimple_code (gsi_stmt (gsi)) == GIMPLE_LABEL)
4403     gsi_next (&gsi);
4404
4405   return gsi;
4406 }
4407
4408 /* Return a pointer to the current stmt.
4409    
4410   NOTE: You may want to use gsi_replace on the iterator itself,
4411   as this performs additional bookkeeping that will not be done
4412   if you simply assign through a pointer returned by gsi_stmt_ptr.  */
4413
4414 static inline gimple *
4415 gsi_stmt_ptr (gimple_stmt_iterator *i)
4416 {
4417   return &i->ptr->stmt;
4418 }
4419
4420
4421 /* Return the basic block associated with this iterator.  */
4422
4423 static inline basic_block
4424 gsi_bb (gimple_stmt_iterator i)
4425 {
4426   return i.bb;
4427 }
4428
4429
4430 /* Return the sequence associated with this iterator.  */
4431
4432 static inline gimple_seq
4433 gsi_seq (gimple_stmt_iterator i)
4434 {
4435   return i.seq;
4436 }
4437
4438
4439 enum gsi_iterator_update
4440 {
4441   GSI_NEW_STMT,         /* Only valid when single statement is added, move
4442                            iterator to it.  */
4443   GSI_SAME_STMT,        /* Leave the iterator at the same statement.  */
4444   GSI_CONTINUE_LINKING  /* Move iterator to whatever position is suitable
4445                            for linking other statements in the same
4446                            direction.  */
4447 };
4448
4449 /* In gimple-iterator.c  */
4450 gimple_stmt_iterator gsi_start_phis (basic_block);
4451 gimple_seq gsi_split_seq_after (gimple_stmt_iterator);
4452 gimple_seq gsi_split_seq_before (gimple_stmt_iterator *);
4453 void gsi_replace (gimple_stmt_iterator *, gimple, bool);
4454 void gsi_insert_before (gimple_stmt_iterator *, gimple,
4455                         enum gsi_iterator_update);
4456 void gsi_insert_before_without_update (gimple_stmt_iterator *, gimple,
4457                                        enum gsi_iterator_update);
4458 void gsi_insert_seq_before (gimple_stmt_iterator *, gimple_seq,
4459                             enum gsi_iterator_update);
4460 void gsi_insert_seq_before_without_update (gimple_stmt_iterator *, gimple_seq,
4461                                            enum gsi_iterator_update);
4462 void gsi_insert_after (gimple_stmt_iterator *, gimple,
4463                        enum gsi_iterator_update);
4464 void gsi_insert_after_without_update (gimple_stmt_iterator *, gimple,
4465                                       enum gsi_iterator_update);
4466 void gsi_insert_seq_after (gimple_stmt_iterator *, gimple_seq,
4467                            enum gsi_iterator_update);
4468 void gsi_insert_seq_after_without_update (gimple_stmt_iterator *, gimple_seq,
4469                                           enum gsi_iterator_update);
4470 void gsi_remove (gimple_stmt_iterator *, bool);
4471 gimple_stmt_iterator gsi_for_stmt (gimple);
4472 void gsi_move_after (gimple_stmt_iterator *, gimple_stmt_iterator *);
4473 void gsi_move_before (gimple_stmt_iterator *, gimple_stmt_iterator *);
4474 void gsi_move_to_bb_end (gimple_stmt_iterator *, struct basic_block_def *);
4475 void gsi_insert_on_edge (edge, gimple);
4476 void gsi_insert_seq_on_edge (edge, gimple_seq);
4477 basic_block gsi_insert_on_edge_immediate (edge, gimple);
4478 basic_block gsi_insert_seq_on_edge_immediate (edge, gimple_seq);
4479 void gsi_commit_one_edge_insert (edge, basic_block *);
4480 void gsi_commit_edge_inserts (void);
4481 gimple gimple_call_copy_skip_args (gimple, bitmap);
4482
4483
4484 /* Convenience routines to walk all statements of a gimple function.
4485    Note that this is useful exclusively before the code is converted
4486    into SSA form.  Once the program is in SSA form, the standard
4487    operand interface should be used to analyze/modify statements.  */
4488 struct walk_stmt_info
4489 {
4490   /* Points to the current statement being walked.  */
4491   gimple_stmt_iterator gsi;
4492
4493   /* Additional data that the callback functions may want to carry
4494      through the recursion.  */
4495   void *info;
4496
4497   /* Pointer map used to mark visited tree nodes when calling
4498      walk_tree on each operand.  If set to NULL, duplicate tree nodes
4499      will be visited more than once.  */
4500   struct pointer_set_t *pset;
4501
4502   /* Indicates whether the operand being examined may be replaced
4503      with something that matches is_gimple_val (if true) or something
4504      slightly more complicated (if false).  "Something" technically
4505      means the common subset of is_gimple_lvalue and is_gimple_rhs,
4506      but we never try to form anything more complicated than that, so
4507      we don't bother checking.
4508
4509      Also note that CALLBACK should update this flag while walking the
4510      sub-expressions of a statement.  For instance, when walking the
4511      statement 'foo (&var)', the flag VAL_ONLY will initially be set
4512      to true, however, when walking &var, the operand of that
4513      ADDR_EXPR does not need to be a GIMPLE value.  */
4514   bool val_only;
4515
4516   /* True if we are currently walking the LHS of an assignment.  */
4517   bool is_lhs;
4518
4519   /* Optional.  Set to true by the callback functions if they made any
4520      changes.  */
4521   bool changed;
4522
4523   /* True if we're interested in location information.  */
4524   bool want_locations;
4525
4526   /* Operand returned by the callbacks.  This is set when calling
4527      walk_gimple_seq.  If the walk_stmt_fn or walk_tree_fn callback
4528      returns non-NULL, this field will contain the tree returned by
4529      the last callback.  */
4530   tree callback_result;
4531 };
4532
4533 /* Callback for walk_gimple_stmt.  Called for every statement found
4534    during traversal.  The first argument points to the statement to
4535    walk.  The second argument is a flag that the callback sets to
4536    'true' if it the callback handled all the operands and
4537    sub-statements of the statement (the default value of this flag is
4538    'false').  The third argument is an anonymous pointer to data
4539    to be used by the callback.  */
4540 typedef tree (*walk_stmt_fn) (gimple_stmt_iterator *, bool *,
4541                               struct walk_stmt_info *);
4542
4543 gimple walk_gimple_seq (gimple_seq, walk_stmt_fn, walk_tree_fn,
4544                         struct walk_stmt_info *);
4545 tree walk_gimple_stmt (gimple_stmt_iterator *, walk_stmt_fn, walk_tree_fn,
4546                        struct walk_stmt_info *);
4547 tree walk_gimple_op (gimple, walk_tree_fn, struct walk_stmt_info *);
4548
4549 #ifdef GATHER_STATISTICS
4550 /* Enum and arrays used for allocation stats.  Keep in sync with
4551    gimple.c:gimple_alloc_kind_names.  */
4552 enum gimple_alloc_kind
4553 {
4554   gimple_alloc_kind_assign,     /* Assignments.  */
4555   gimple_alloc_kind_phi,        /* PHI nodes.  */
4556   gimple_alloc_kind_cond,       /* Conditionals.  */
4557   gimple_alloc_kind_seq,        /* Sequences.  */
4558   gimple_alloc_kind_rest,       /* Everything else.  */
4559   gimple_alloc_kind_all
4560 };
4561
4562 extern int gimple_alloc_counts[];
4563 extern int gimple_alloc_sizes[];
4564
4565 /* Return the allocation kind for a given stmt CODE.  */
4566 static inline enum gimple_alloc_kind
4567 gimple_alloc_kind (enum gimple_code code)
4568 {
4569   switch (code)
4570     {
4571       case GIMPLE_ASSIGN:
4572         return gimple_alloc_kind_assign;
4573       case GIMPLE_PHI:
4574         return gimple_alloc_kind_phi;
4575       case GIMPLE_COND:
4576         return gimple_alloc_kind_cond;
4577       default:
4578         return gimple_alloc_kind_rest;
4579     }
4580 }
4581 #endif /* GATHER_STATISTICS */
4582
4583 extern void dump_gimple_statistics (void);
4584
4585 #endif  /* GCC_GIMPLE_H */