OSDN Git Service

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