OSDN Git Service

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