OSDN Git Service

Add CL entry
[pf3gnuchains/gcc-fork.git] / gcc / tree-flow-inline.h
1 /* Inline functions for tree-flow.h
2    Copyright (C) 2001, 2003, 2005, 2006, 2007, 2008, 2010
3    Free Software Foundation, Inc.
4    Contributed by Diego Novillo <dnovillo@redhat.com>
5
6 This file is part of GCC.
7
8 GCC is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3, or (at your option)
11 any later version.
12
13 GCC is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 GNU General Public License 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 _TREE_FLOW_INLINE_H
23 #define _TREE_FLOW_INLINE_H 1
24
25 /* Inline functions for manipulating various data structures defined in
26    tree-flow.h.  See tree-flow.h for documentation.  */
27
28 /* Return true when gimple SSA form was built.
29    gimple_in_ssa_p is queried by gimplifier in various early stages before SSA
30    infrastructure is initialized.  Check for presence of the datastructures
31    at first place.  */
32 static inline bool
33 gimple_in_ssa_p (const struct function *fun)
34 {
35   return fun && fun->gimple_df && fun->gimple_df->in_ssa_p;
36 }
37
38 /* Array of all variables referenced in the function.  */
39 static inline htab_t
40 gimple_referenced_vars (const struct function *fun)
41 {
42   if (!fun->gimple_df)
43     return NULL;
44   return fun->gimple_df->referenced_vars;
45 }
46
47 /* Artificial variable used for the virtual operand FUD chain.  */
48 static inline tree
49 gimple_vop (const struct function *fun)
50 {
51   gcc_assert (fun && fun->gimple_df);
52   return fun->gimple_df->vop;
53 }
54
55 /* Initialize the hashtable iterator HTI to point to hashtable TABLE */
56
57 static inline void *
58 first_htab_element (htab_iterator *hti, htab_t table)
59 {
60   hti->htab = table;
61   hti->slot = table->entries;
62   hti->limit = hti->slot + htab_size (table);
63   do
64     {
65       PTR x = *(hti->slot);
66       if (x != HTAB_EMPTY_ENTRY && x != HTAB_DELETED_ENTRY)
67         break;
68     } while (++(hti->slot) < hti->limit);
69
70   if (hti->slot < hti->limit)
71     return *(hti->slot);
72   return NULL;
73 }
74
75 /* Return current non-empty/deleted slot of the hashtable pointed to by HTI,
76    or NULL if we have  reached the end.  */
77
78 static inline bool
79 end_htab_p (const htab_iterator *hti)
80 {
81   if (hti->slot >= hti->limit)
82     return true;
83   return false;
84 }
85
86 /* Advance the hashtable iterator pointed to by HTI to the next element of the
87    hashtable.  */
88
89 static inline void *
90 next_htab_element (htab_iterator *hti)
91 {
92   while (++(hti->slot) < hti->limit)
93     {
94       PTR x = *(hti->slot);
95       if (x != HTAB_EMPTY_ENTRY && x != HTAB_DELETED_ENTRY)
96         return x;
97     };
98   return NULL;
99 }
100
101 /* Initialize ITER to point to the first referenced variable in the
102    referenced_vars hashtable, and return that variable.  */
103
104 static inline tree
105 first_referenced_var (referenced_var_iterator *iter)
106 {
107   return (tree) first_htab_element (&iter->hti,
108                                     gimple_referenced_vars (cfun));
109 }
110
111 /* Return true if we have hit the end of the referenced variables ITER is
112    iterating through.  */
113
114 static inline bool
115 end_referenced_vars_p (const referenced_var_iterator *iter)
116 {
117   return end_htab_p (&iter->hti);
118 }
119
120 /* Make ITER point to the next referenced_var in the referenced_var hashtable,
121    and return that variable.  */
122
123 static inline tree
124 next_referenced_var (referenced_var_iterator *iter)
125 {
126   return (tree) next_htab_element (&iter->hti);
127 }
128
129 /* Return the variable annotation for T, which must be a _DECL node.
130    Return NULL if the variable annotation doesn't already exist.  */
131 static inline var_ann_t
132 var_ann (const_tree t)
133 {
134   const var_ann_t *p = DECL_VAR_ANN_PTR (t);
135   return p ? *p : NULL;
136 }
137
138 /* Return the variable annotation for T, which must be a _DECL node.
139    Create the variable annotation if it doesn't exist.  */
140 static inline var_ann_t
141 get_var_ann (tree var)
142 {
143   var_ann_t *p = DECL_VAR_ANN_PTR (var);
144   gcc_assert (p);
145   return *p ? *p : create_var_ann (var);
146 }
147
148 /* Get the number of the next statement uid to be allocated.  */
149 static inline unsigned int
150 gimple_stmt_max_uid (struct function *fn)
151 {
152   return fn->last_stmt_uid;
153 }
154
155 /* Set the number of the next statement uid to be allocated.  */
156 static inline void
157 set_gimple_stmt_max_uid (struct function *fn, unsigned int maxid)
158 {
159   fn->last_stmt_uid = maxid;
160 }
161
162 /* Set the number of the next statement uid to be allocated.  */
163 static inline unsigned int
164 inc_gimple_stmt_max_uid (struct function *fn)
165 {
166   return fn->last_stmt_uid++;
167 }
168
169 /* Return the line number for EXPR, or return -1 if we have no line
170    number information for it.  */
171 static inline int
172 get_lineno (const_gimple stmt)
173 {
174   location_t loc;
175
176   if (!stmt)
177     return -1;
178
179   loc = gimple_location (stmt);
180   if (loc == UNKNOWN_LOCATION)
181     return -1;
182
183   return LOCATION_LINE (loc);
184 }
185
186 /* Delink an immediate_uses node from its chain.  */
187 static inline void
188 delink_imm_use (ssa_use_operand_t *linknode)
189 {
190   /* Return if this node is not in a list.  */
191   if (linknode->prev == NULL)
192     return;
193
194   linknode->prev->next = linknode->next;
195   linknode->next->prev = linknode->prev;
196   linknode->prev = NULL;
197   linknode->next = NULL;
198 }
199
200 /* Link ssa_imm_use node LINKNODE into the chain for LIST.  */
201 static inline void
202 link_imm_use_to_list (ssa_use_operand_t *linknode, ssa_use_operand_t *list)
203 {
204   /* Link the new node at the head of the list.  If we are in the process of
205      traversing the list, we won't visit any new nodes added to it.  */
206   linknode->prev = list;
207   linknode->next = list->next;
208   list->next->prev = linknode;
209   list->next = linknode;
210 }
211
212 /* Link ssa_imm_use node LINKNODE into the chain for DEF.  */
213 static inline void
214 link_imm_use (ssa_use_operand_t *linknode, tree def)
215 {
216   ssa_use_operand_t *root;
217
218   if (!def || TREE_CODE (def) != SSA_NAME)
219     linknode->prev = NULL;
220   else
221     {
222       root = &(SSA_NAME_IMM_USE_NODE (def));
223 #ifdef ENABLE_CHECKING
224       if (linknode->use)
225         gcc_assert (*(linknode->use) == def);
226 #endif
227       link_imm_use_to_list (linknode, root);
228     }
229 }
230
231 /* Set the value of a use pointed to by USE to VAL.  */
232 static inline void
233 set_ssa_use_from_ptr (use_operand_p use, tree val)
234 {
235   delink_imm_use (use);
236   *(use->use) = val;
237   link_imm_use (use, val);
238 }
239
240 /* Link ssa_imm_use node LINKNODE into the chain for DEF, with use occurring
241    in STMT.  */
242 static inline void
243 link_imm_use_stmt (ssa_use_operand_t *linknode, tree def, gimple stmt)
244 {
245   if (stmt)
246     link_imm_use (linknode, def);
247   else
248     link_imm_use (linknode, NULL);
249   linknode->loc.stmt = stmt;
250 }
251
252 /* Relink a new node in place of an old node in the list.  */
253 static inline void
254 relink_imm_use (ssa_use_operand_t *node, ssa_use_operand_t *old)
255 {
256   /* The node one had better be in the same list.  */
257   gcc_assert (*(old->use) == *(node->use));
258   node->prev = old->prev;
259   node->next = old->next;
260   if (old->prev)
261     {
262       old->prev->next = node;
263       old->next->prev = node;
264       /* Remove the old node from the list.  */
265       old->prev = NULL;
266     }
267 }
268
269 /* Relink ssa_imm_use node LINKNODE into the chain for OLD, with use occurring
270    in STMT.  */
271 static inline void
272 relink_imm_use_stmt (ssa_use_operand_t *linknode, ssa_use_operand_t *old,
273                      gimple stmt)
274 {
275   if (stmt)
276     relink_imm_use (linknode, old);
277   else
278     link_imm_use (linknode, NULL);
279   linknode->loc.stmt = stmt;
280 }
281
282
283 /* Return true is IMM has reached the end of the immediate use list.  */
284 static inline bool
285 end_readonly_imm_use_p (const imm_use_iterator *imm)
286 {
287   return (imm->imm_use == imm->end_p);
288 }
289
290 /* Initialize iterator IMM to process the list for VAR.  */
291 static inline use_operand_p
292 first_readonly_imm_use (imm_use_iterator *imm, tree var)
293 {
294   imm->end_p = &(SSA_NAME_IMM_USE_NODE (var));
295   imm->imm_use = imm->end_p->next;
296 #ifdef ENABLE_CHECKING
297   imm->iter_node.next = imm->imm_use->next;
298 #endif
299   if (end_readonly_imm_use_p (imm))
300     return NULL_USE_OPERAND_P;
301   return imm->imm_use;
302 }
303
304 /* Bump IMM to the next use in the list.  */
305 static inline use_operand_p
306 next_readonly_imm_use (imm_use_iterator *imm)
307 {
308   use_operand_p old = imm->imm_use;
309
310 #ifdef ENABLE_CHECKING
311   /* If this assertion fails, it indicates the 'next' pointer has changed
312      since the last bump.  This indicates that the list is being modified
313      via stmt changes, or SET_USE, or somesuch thing, and you need to be
314      using the SAFE version of the iterator.  */
315   gcc_assert (imm->iter_node.next == old->next);
316   imm->iter_node.next = old->next->next;
317 #endif
318
319   imm->imm_use = old->next;
320   if (end_readonly_imm_use_p (imm))
321     return NULL_USE_OPERAND_P;
322   return imm->imm_use;
323 }
324
325 /* tree-cfg.c */
326 extern bool has_zero_uses_1 (const ssa_use_operand_t *head);
327 extern bool single_imm_use_1 (const ssa_use_operand_t *head,
328                               use_operand_p *use_p, gimple *stmt);
329
330 /* Return true if VAR has no nondebug uses.  */
331 static inline bool
332 has_zero_uses (const_tree var)
333 {
334   const ssa_use_operand_t *const ptr = &(SSA_NAME_IMM_USE_NODE (var));
335
336   /* A single use_operand means there is no items in the list.  */
337   if (ptr == ptr->next)
338     return true;
339
340   /* If there are debug stmts, we have to look at each use and see
341      whether there are any nondebug uses.  */
342   if (!MAY_HAVE_DEBUG_STMTS)
343     return false;
344
345   return has_zero_uses_1 (ptr);
346 }
347
348 /* Return true if VAR has a single nondebug use.  */
349 static inline bool
350 has_single_use (const_tree var)
351 {
352   const ssa_use_operand_t *const ptr = &(SSA_NAME_IMM_USE_NODE (var));
353
354   /* If there aren't any uses whatsoever, we're done.  */
355   if (ptr == ptr->next)
356     return false;
357
358   /* If there's a single use, check that it's not a debug stmt.  */
359   if (ptr == ptr->next->next)
360     return !is_gimple_debug (USE_STMT (ptr->next));
361
362   /* If there are debug stmts, we have to look at each of them.  */
363   if (!MAY_HAVE_DEBUG_STMTS)
364     return false;
365
366   return single_imm_use_1 (ptr, NULL, NULL);
367 }
368
369
370 /* If VAR has only a single immediate nondebug use, return true, and
371    set USE_P and STMT to the use pointer and stmt of occurrence.  */
372 static inline bool
373 single_imm_use (const_tree var, use_operand_p *use_p, gimple *stmt)
374 {
375   const ssa_use_operand_t *const ptr = &(SSA_NAME_IMM_USE_NODE (var));
376
377   /* If there aren't any uses whatsoever, we're done.  */
378   if (ptr == ptr->next)
379     {
380     return_false:
381       *use_p = NULL_USE_OPERAND_P;
382       *stmt = NULL;
383       return false;
384     }
385
386   /* If there's a single use, check that it's not a debug stmt.  */
387   if (ptr == ptr->next->next)
388     {
389       if (!is_gimple_debug (USE_STMT (ptr->next)))
390         {
391           *use_p = ptr->next;
392           *stmt = ptr->next->loc.stmt;
393           return true;
394         }
395       else
396         goto return_false;
397     }
398
399   /* If there are debug stmts, we have to look at each of them.  */
400   if (!MAY_HAVE_DEBUG_STMTS)
401     goto return_false;
402
403   return single_imm_use_1 (ptr, use_p, stmt);
404 }
405
406 /* Return the number of nondebug immediate uses of VAR.  */
407 static inline unsigned int
408 num_imm_uses (const_tree var)
409 {
410   const ssa_use_operand_t *const start = &(SSA_NAME_IMM_USE_NODE (var));
411   const ssa_use_operand_t *ptr;
412   unsigned int num = 0;
413
414   if (!MAY_HAVE_DEBUG_STMTS)
415     for (ptr = start->next; ptr != start; ptr = ptr->next)
416       num++;
417   else
418     for (ptr = start->next; ptr != start; ptr = ptr->next)
419       if (!is_gimple_debug (USE_STMT (ptr)))
420         num++;
421
422   return num;
423 }
424
425 /* Return the tree pointed-to by USE.  */
426 static inline tree
427 get_use_from_ptr (use_operand_p use)
428 {
429   return *(use->use);
430 }
431
432 /* Return the tree pointed-to by DEF.  */
433 static inline tree
434 get_def_from_ptr (def_operand_p def)
435 {
436   return *def;
437 }
438
439 /* Return a use_operand_p pointer for argument I of PHI node GS.  */
440
441 static inline use_operand_p
442 gimple_phi_arg_imm_use_ptr (gimple gs, int i)
443 {
444   return &gimple_phi_arg (gs, i)->imm_use;
445 }
446
447 /* Return the tree operand for argument I of PHI node GS.  */
448
449 static inline tree
450 gimple_phi_arg_def (gimple gs, size_t index)
451 {
452   struct phi_arg_d *pd = gimple_phi_arg (gs, index);
453   return get_use_from_ptr (&pd->imm_use);
454 }
455
456 /* Return a pointer to the tree operand for argument I of PHI node GS.  */
457
458 static inline tree *
459 gimple_phi_arg_def_ptr (gimple gs, size_t index)
460 {
461   return &gimple_phi_arg (gs, index)->def;
462 }
463
464 /* Return the edge associated with argument I of phi node GS.  */
465
466 static inline edge
467 gimple_phi_arg_edge (gimple gs, size_t i)
468 {
469   return EDGE_PRED (gimple_bb (gs), i);
470 }
471
472 /* Return the source location of gimple argument I of phi node GS.  */
473
474 static inline source_location
475 gimple_phi_arg_location (gimple gs, size_t i)
476 {
477   return gimple_phi_arg (gs, i)->locus;
478 }
479
480 /* Return the source location of the argument on edge E of phi node GS.  */
481
482 static inline source_location
483 gimple_phi_arg_location_from_edge (gimple gs, edge e)
484 {
485   return gimple_phi_arg (gs, e->dest_idx)->locus;
486 }
487
488 /* Set the source location of gimple argument I of phi node GS to LOC.  */
489
490 static inline void
491 gimple_phi_arg_set_location (gimple gs, size_t i, source_location loc)
492 {
493   gimple_phi_arg (gs, i)->locus = loc;
494 }
495
496 /* Return TRUE if argument I of phi node GS has a location record.  */
497
498 static inline bool
499 gimple_phi_arg_has_location (gimple gs, size_t i)
500 {
501   return gimple_phi_arg_location (gs, i) != UNKNOWN_LOCATION;
502 }
503
504
505 /* Return the PHI nodes for basic block BB, or NULL if there are no
506    PHI nodes.  */
507 static inline gimple_seq
508 phi_nodes (const_basic_block bb)
509 {
510   gcc_assert (!(bb->flags & BB_RTL));
511   if (!bb->il.gimple)
512     return NULL;
513   return bb->il.gimple->phi_nodes;
514 }
515
516 /* Set PHI nodes of a basic block BB to SEQ.  */
517
518 static inline void
519 set_phi_nodes (basic_block bb, gimple_seq seq)
520 {
521   gimple_stmt_iterator i;
522
523   gcc_assert (!(bb->flags & BB_RTL));
524   bb->il.gimple->phi_nodes = seq;
525   if (seq)
526     for (i = gsi_start (seq); !gsi_end_p (i); gsi_next (&i))
527       gimple_set_bb (gsi_stmt (i), bb);
528 }
529
530 /* Return the phi argument which contains the specified use.  */
531
532 static inline int
533 phi_arg_index_from_use (use_operand_p use)
534 {
535   struct phi_arg_d *element, *root;
536   size_t index;
537   gimple phi;
538
539   /* Since the use is the first thing in a PHI argument element, we can
540      calculate its index based on casting it to an argument, and performing
541      pointer arithmetic.  */
542
543   phi = USE_STMT (use);
544   gcc_assert (gimple_code (phi) == GIMPLE_PHI);
545
546   element = (struct phi_arg_d *)use;
547   root = gimple_phi_arg (phi, 0);
548   index = element - root;
549
550 #ifdef ENABLE_CHECKING
551   /* Make sure the calculation doesn't have any leftover bytes.  If it does,
552      then imm_use is likely not the first element in phi_arg_d.  */
553   gcc_assert ((((char *)element - (char *)root)
554                % sizeof (struct phi_arg_d)) == 0
555               && index < gimple_phi_capacity (phi));
556 #endif
557
558  return index;
559 }
560
561 /* Mark VAR as used, so that it'll be preserved during rtl expansion.  */
562
563 static inline void
564 set_is_used (tree var)
565 {
566   var_ann_t ann = get_var_ann (var);
567   ann->used = 1;
568 }
569
570
571 /* Return true if T (assumed to be a DECL) is a global variable.
572    A variable is considered global if its storage is not automatic.  */
573
574 static inline bool
575 is_global_var (const_tree t)
576 {
577   return (TREE_STATIC (t) || DECL_EXTERNAL (t));
578 }
579
580
581 /* Return true if VAR may be aliased.  A variable is considered as
582    maybe aliased if it has its address taken by the local TU
583    or possibly by another TU and might be modified through a pointer.  */
584
585 static inline bool
586 may_be_aliased (const_tree var)
587 {
588   return (TREE_CODE (var) != CONST_DECL
589           && !((TREE_STATIC (var) || TREE_PUBLIC (var) || DECL_EXTERNAL (var))
590                && TREE_READONLY (var)
591                && !TYPE_NEEDS_CONSTRUCTING (TREE_TYPE (var)))
592           && (TREE_PUBLIC (var)
593               || DECL_EXTERNAL (var)
594               || TREE_ADDRESSABLE (var)));
595 }
596
597
598 /* PHI nodes should contain only ssa_names and invariants.  A test
599    for ssa_name is definitely simpler; don't let invalid contents
600    slip in in the meantime.  */
601
602 static inline bool
603 phi_ssa_name_p (const_tree t)
604 {
605   if (TREE_CODE (t) == SSA_NAME)
606     return true;
607 #ifdef ENABLE_CHECKING
608   gcc_assert (is_gimple_min_invariant (t));
609 #endif
610   return false;
611 }
612
613
614 /* Returns the loop of the statement STMT.  */
615
616 static inline struct loop *
617 loop_containing_stmt (gimple stmt)
618 {
619   basic_block bb = gimple_bb (stmt);
620   if (!bb)
621     return NULL;
622
623   return bb->loop_father;
624 }
625
626
627 /* Return true if VAR is clobbered by function calls.  */
628 static inline bool
629 is_call_clobbered (const_tree var)
630 {
631   return (is_global_var (var)
632           || (may_be_aliased (var)
633               && pt_solution_includes (&cfun->gimple_df->escaped, var)));
634 }
635
636 /*  -----------------------------------------------------------------------  */
637
638 /* The following set of routines are used to iterator over various type of
639    SSA operands.  */
640
641 /* Return true if PTR is finished iterating.  */
642 static inline bool
643 op_iter_done (const ssa_op_iter *ptr)
644 {
645   return ptr->done;
646 }
647
648 /* Get the next iterator use value for PTR.  */
649 static inline use_operand_p
650 op_iter_next_use (ssa_op_iter *ptr)
651 {
652   use_operand_p use_p;
653 #ifdef ENABLE_CHECKING
654   gcc_assert (ptr->iter_type == ssa_op_iter_use);
655 #endif
656   if (ptr->uses)
657     {
658       use_p = USE_OP_PTR (ptr->uses);
659       ptr->uses = ptr->uses->next;
660       return use_p;
661     }
662   if (ptr->phi_i < ptr->num_phi)
663     {
664       return PHI_ARG_DEF_PTR (ptr->phi_stmt, (ptr->phi_i)++);
665     }
666   ptr->done = true;
667   return NULL_USE_OPERAND_P;
668 }
669
670 /* Get the next iterator def value for PTR.  */
671 static inline def_operand_p
672 op_iter_next_def (ssa_op_iter *ptr)
673 {
674   def_operand_p def_p;
675 #ifdef ENABLE_CHECKING
676   gcc_assert (ptr->iter_type == ssa_op_iter_def);
677 #endif
678   if (ptr->defs)
679     {
680       def_p = DEF_OP_PTR (ptr->defs);
681       ptr->defs = ptr->defs->next;
682       return def_p;
683     }
684   ptr->done = true;
685   return NULL_DEF_OPERAND_P;
686 }
687
688 /* Get the next iterator tree value for PTR.  */
689 static inline tree
690 op_iter_next_tree (ssa_op_iter *ptr)
691 {
692   tree val;
693 #ifdef ENABLE_CHECKING
694   gcc_assert (ptr->iter_type == ssa_op_iter_tree);
695 #endif
696   if (ptr->uses)
697     {
698       val = USE_OP (ptr->uses);
699       ptr->uses = ptr->uses->next;
700       return val;
701     }
702   if (ptr->defs)
703     {
704       val = DEF_OP (ptr->defs);
705       ptr->defs = ptr->defs->next;
706       return val;
707     }
708
709   ptr->done = true;
710   return NULL_TREE;
711
712 }
713
714
715 /* This functions clears the iterator PTR, and marks it done.  This is normally
716    used to prevent warnings in the compile about might be uninitialized
717    components.  */
718
719 static inline void
720 clear_and_done_ssa_iter (ssa_op_iter *ptr)
721 {
722   ptr->defs = NULL;
723   ptr->uses = NULL;
724   ptr->iter_type = ssa_op_iter_none;
725   ptr->phi_i = 0;
726   ptr->num_phi = 0;
727   ptr->phi_stmt = NULL;
728   ptr->done = true;
729 }
730
731 /* Initialize the iterator PTR to the virtual defs in STMT.  */
732 static inline void
733 op_iter_init (ssa_op_iter *ptr, gimple stmt, int flags)
734 {
735   /* We do not support iterating over virtual defs or uses without
736      iterating over defs or uses at the same time.  */
737   gcc_assert ((!(flags & SSA_OP_VDEF) || (flags & SSA_OP_DEF))
738               && (!(flags & SSA_OP_VUSE) || (flags & SSA_OP_USE)));
739   ptr->defs = (flags & (SSA_OP_DEF|SSA_OP_VDEF)) ? gimple_def_ops (stmt) : NULL;
740   if (!(flags & SSA_OP_VDEF)
741       && ptr->defs
742       && gimple_vdef (stmt) != NULL_TREE)
743     ptr->defs = ptr->defs->next;
744   ptr->uses = (flags & (SSA_OP_USE|SSA_OP_VUSE)) ? gimple_use_ops (stmt) : NULL;
745   if (!(flags & SSA_OP_VUSE)
746       && ptr->uses
747       && gimple_vuse (stmt) != NULL_TREE)
748     ptr->uses = ptr->uses->next;
749   ptr->done = false;
750
751   ptr->phi_i = 0;
752   ptr->num_phi = 0;
753   ptr->phi_stmt = NULL;
754 }
755
756 /* Initialize iterator PTR to the use operands in STMT based on FLAGS. Return
757    the first use.  */
758 static inline use_operand_p
759 op_iter_init_use (ssa_op_iter *ptr, gimple stmt, int flags)
760 {
761   gcc_assert ((flags & SSA_OP_ALL_DEFS) == 0
762               && (flags & SSA_OP_USE));
763   op_iter_init (ptr, stmt, flags);
764   ptr->iter_type = ssa_op_iter_use;
765   return op_iter_next_use (ptr);
766 }
767
768 /* Initialize iterator PTR to the def operands in STMT based on FLAGS. Return
769    the first def.  */
770 static inline def_operand_p
771 op_iter_init_def (ssa_op_iter *ptr, gimple stmt, int flags)
772 {
773   gcc_assert ((flags & SSA_OP_ALL_USES) == 0
774               && (flags & SSA_OP_DEF));
775   op_iter_init (ptr, stmt, flags);
776   ptr->iter_type = ssa_op_iter_def;
777   return op_iter_next_def (ptr);
778 }
779
780 /* Initialize iterator PTR to the operands in STMT based on FLAGS. Return
781    the first operand as a tree.  */
782 static inline tree
783 op_iter_init_tree (ssa_op_iter *ptr, gimple stmt, int flags)
784 {
785   op_iter_init (ptr, stmt, flags);
786   ptr->iter_type = ssa_op_iter_tree;
787   return op_iter_next_tree (ptr);
788 }
789
790
791 /* If there is a single operand in STMT matching FLAGS, return it.  Otherwise
792    return NULL.  */
793 static inline tree
794 single_ssa_tree_operand (gimple stmt, int flags)
795 {
796   tree var;
797   ssa_op_iter iter;
798
799   var = op_iter_init_tree (&iter, stmt, flags);
800   if (op_iter_done (&iter))
801     return NULL_TREE;
802   op_iter_next_tree (&iter);
803   if (op_iter_done (&iter))
804     return var;
805   return NULL_TREE;
806 }
807
808
809 /* If there is a single operand in STMT matching FLAGS, return it.  Otherwise
810    return NULL.  */
811 static inline use_operand_p
812 single_ssa_use_operand (gimple stmt, int flags)
813 {
814   use_operand_p var;
815   ssa_op_iter iter;
816
817   var = op_iter_init_use (&iter, stmt, flags);
818   if (op_iter_done (&iter))
819     return NULL_USE_OPERAND_P;
820   op_iter_next_use (&iter);
821   if (op_iter_done (&iter))
822     return var;
823   return NULL_USE_OPERAND_P;
824 }
825
826
827
828 /* If there is a single operand in STMT matching FLAGS, return it.  Otherwise
829    return NULL.  */
830 static inline def_operand_p
831 single_ssa_def_operand (gimple stmt, int flags)
832 {
833   def_operand_p var;
834   ssa_op_iter iter;
835
836   var = op_iter_init_def (&iter, stmt, flags);
837   if (op_iter_done (&iter))
838     return NULL_DEF_OPERAND_P;
839   op_iter_next_def (&iter);
840   if (op_iter_done (&iter))
841     return var;
842   return NULL_DEF_OPERAND_P;
843 }
844
845
846 /* Return true if there are zero operands in STMT matching the type
847    given in FLAGS.  */
848 static inline bool
849 zero_ssa_operands (gimple stmt, int flags)
850 {
851   ssa_op_iter iter;
852
853   op_iter_init_tree (&iter, stmt, flags);
854   return op_iter_done (&iter);
855 }
856
857
858 /* Return the number of operands matching FLAGS in STMT.  */
859 static inline int
860 num_ssa_operands (gimple stmt, int flags)
861 {
862   ssa_op_iter iter;
863   tree t;
864   int num = 0;
865
866   FOR_EACH_SSA_TREE_OPERAND (t, stmt, iter, flags)
867     num++;
868   return num;
869 }
870
871
872 /* Delink all immediate_use information for STMT.  */
873 static inline void
874 delink_stmt_imm_use (gimple stmt)
875 {
876    ssa_op_iter iter;
877    use_operand_p use_p;
878
879    if (ssa_operands_active ())
880      FOR_EACH_SSA_USE_OPERAND (use_p, stmt, iter, SSA_OP_ALL_USES)
881        delink_imm_use (use_p);
882 }
883
884
885 /* If there is a single DEF in the PHI node which matches FLAG, return it.
886    Otherwise return NULL_DEF_OPERAND_P.  */
887 static inline tree
888 single_phi_def (gimple stmt, int flags)
889 {
890   tree def = PHI_RESULT (stmt);
891   if ((flags & SSA_OP_DEF) && is_gimple_reg (def))
892     return def;
893   if ((flags & SSA_OP_VIRTUAL_DEFS) && !is_gimple_reg (def))
894     return def;
895   return NULL_TREE;
896 }
897
898 /* Initialize the iterator PTR for uses matching FLAGS in PHI.  FLAGS should
899    be either SSA_OP_USES or SSA_OP_VIRTUAL_USES.  */
900 static inline use_operand_p
901 op_iter_init_phiuse (ssa_op_iter *ptr, gimple phi, int flags)
902 {
903   tree phi_def = gimple_phi_result (phi);
904   int comp;
905
906   clear_and_done_ssa_iter (ptr);
907   ptr->done = false;
908
909   gcc_assert ((flags & (SSA_OP_USE | SSA_OP_VIRTUAL_USES)) != 0);
910
911   comp = (is_gimple_reg (phi_def) ? SSA_OP_USE : SSA_OP_VIRTUAL_USES);
912
913   /* If the PHI node doesn't the operand type we care about, we're done.  */
914   if ((flags & comp) == 0)
915     {
916       ptr->done = true;
917       return NULL_USE_OPERAND_P;
918     }
919
920   ptr->phi_stmt = phi;
921   ptr->num_phi = gimple_phi_num_args (phi);
922   ptr->iter_type = ssa_op_iter_use;
923   return op_iter_next_use (ptr);
924 }
925
926
927 /* Start an iterator for a PHI definition.  */
928
929 static inline def_operand_p
930 op_iter_init_phidef (ssa_op_iter *ptr, gimple phi, int flags)
931 {
932   tree phi_def = PHI_RESULT (phi);
933   int comp;
934
935   clear_and_done_ssa_iter (ptr);
936   ptr->done = false;
937
938   gcc_assert ((flags & (SSA_OP_DEF | SSA_OP_VIRTUAL_DEFS)) != 0);
939
940   comp = (is_gimple_reg (phi_def) ? SSA_OP_DEF : SSA_OP_VIRTUAL_DEFS);
941
942   /* If the PHI node doesn't have the operand type we care about,
943      we're done.  */
944   if ((flags & comp) == 0)
945     {
946       ptr->done = true;
947       return NULL_DEF_OPERAND_P;
948     }
949
950   ptr->iter_type = ssa_op_iter_def;
951   /* The first call to op_iter_next_def will terminate the iterator since
952      all the fields are NULL.  Simply return the result here as the first and
953      therefore only result.  */
954   return PHI_RESULT_PTR (phi);
955 }
956
957 /* Return true is IMM has reached the end of the immediate use stmt list.  */
958
959 static inline bool
960 end_imm_use_stmt_p (const imm_use_iterator *imm)
961 {
962   return (imm->imm_use == imm->end_p);
963 }
964
965 /* Finished the traverse of an immediate use stmt list IMM by removing the
966    placeholder node from the list.  */
967
968 static inline void
969 end_imm_use_stmt_traverse (imm_use_iterator *imm)
970 {
971   delink_imm_use (&(imm->iter_node));
972 }
973
974 /* Immediate use traversal of uses within a stmt require that all the
975    uses on a stmt be sequentially listed.  This routine is used to build up
976    this sequential list by adding USE_P to the end of the current list
977    currently delimited by HEAD and LAST_P.  The new LAST_P value is
978    returned.  */
979
980 static inline use_operand_p
981 move_use_after_head (use_operand_p use_p, use_operand_p head,
982                       use_operand_p last_p)
983 {
984 #ifdef ENABLE_CHECKING
985   gcc_assert (USE_FROM_PTR (use_p) == USE_FROM_PTR (head));
986 #endif
987   /* Skip head when we find it.  */
988   if (use_p != head)
989     {
990       /* If use_p is already linked in after last_p, continue.  */
991       if (last_p->next == use_p)
992         last_p = use_p;
993       else
994         {
995           /* Delink from current location, and link in at last_p.  */
996           delink_imm_use (use_p);
997           link_imm_use_to_list (use_p, last_p);
998           last_p = use_p;
999         }
1000     }
1001   return last_p;
1002 }
1003
1004
1005 /* This routine will relink all uses with the same stmt as HEAD into the list
1006    immediately following HEAD for iterator IMM.  */
1007
1008 static inline void
1009 link_use_stmts_after (use_operand_p head, imm_use_iterator *imm)
1010 {
1011   use_operand_p use_p;
1012   use_operand_p last_p = head;
1013   gimple head_stmt = USE_STMT (head);
1014   tree use = USE_FROM_PTR (head);
1015   ssa_op_iter op_iter;
1016   int flag;
1017
1018   /* Only look at virtual or real uses, depending on the type of HEAD.  */
1019   flag = (is_gimple_reg (use) ? SSA_OP_USE : SSA_OP_VIRTUAL_USES);
1020
1021   if (gimple_code (head_stmt) == GIMPLE_PHI)
1022     {
1023       FOR_EACH_PHI_ARG (use_p, head_stmt, op_iter, flag)
1024         if (USE_FROM_PTR (use_p) == use)
1025           last_p = move_use_after_head (use_p, head, last_p);
1026     }
1027   else
1028     {
1029       if (flag == SSA_OP_USE)
1030         {
1031           FOR_EACH_SSA_USE_OPERAND (use_p, head_stmt, op_iter, flag)
1032             if (USE_FROM_PTR (use_p) == use)
1033               last_p = move_use_after_head (use_p, head, last_p);
1034         }
1035       else if ((use_p = gimple_vuse_op (head_stmt)) != NULL_USE_OPERAND_P)
1036         {
1037           if (USE_FROM_PTR (use_p) == use)
1038             last_p = move_use_after_head (use_p, head, last_p);
1039         }
1040     }
1041   /* Link iter node in after last_p.  */
1042   if (imm->iter_node.prev != NULL)
1043     delink_imm_use (&imm->iter_node);
1044   link_imm_use_to_list (&(imm->iter_node), last_p);
1045 }
1046
1047 /* Initialize IMM to traverse over uses of VAR.  Return the first statement.  */
1048 static inline gimple
1049 first_imm_use_stmt (imm_use_iterator *imm, tree var)
1050 {
1051   imm->end_p = &(SSA_NAME_IMM_USE_NODE (var));
1052   imm->imm_use = imm->end_p->next;
1053   imm->next_imm_name = NULL_USE_OPERAND_P;
1054
1055   /* iter_node is used as a marker within the immediate use list to indicate
1056      where the end of the current stmt's uses are.  Initialize it to NULL
1057      stmt and use, which indicates a marker node.  */
1058   imm->iter_node.prev = NULL_USE_OPERAND_P;
1059   imm->iter_node.next = NULL_USE_OPERAND_P;
1060   imm->iter_node.loc.stmt = NULL;
1061   imm->iter_node.use = NULL;
1062
1063   if (end_imm_use_stmt_p (imm))
1064     return NULL;
1065
1066   link_use_stmts_after (imm->imm_use, imm);
1067
1068   return USE_STMT (imm->imm_use);
1069 }
1070
1071 /* Bump IMM to the next stmt which has a use of var.  */
1072
1073 static inline gimple
1074 next_imm_use_stmt (imm_use_iterator *imm)
1075 {
1076   imm->imm_use = imm->iter_node.next;
1077   if (end_imm_use_stmt_p (imm))
1078     {
1079       if (imm->iter_node.prev != NULL)
1080         delink_imm_use (&imm->iter_node);
1081       return NULL;
1082     }
1083
1084   link_use_stmts_after (imm->imm_use, imm);
1085   return USE_STMT (imm->imm_use);
1086 }
1087
1088 /* This routine will return the first use on the stmt IMM currently refers
1089    to.  */
1090
1091 static inline use_operand_p
1092 first_imm_use_on_stmt (imm_use_iterator *imm)
1093 {
1094   imm->next_imm_name = imm->imm_use->next;
1095   return imm->imm_use;
1096 }
1097
1098 /*  Return TRUE if the last use on the stmt IMM refers to has been visited.  */
1099
1100 static inline bool
1101 end_imm_use_on_stmt_p (const imm_use_iterator *imm)
1102 {
1103   return (imm->imm_use == &(imm->iter_node));
1104 }
1105
1106 /* Bump to the next use on the stmt IMM refers to, return NULL if done.  */
1107
1108 static inline use_operand_p
1109 next_imm_use_on_stmt (imm_use_iterator *imm)
1110 {
1111   imm->imm_use = imm->next_imm_name;
1112   if (end_imm_use_on_stmt_p (imm))
1113     return NULL_USE_OPERAND_P;
1114   else
1115     {
1116       imm->next_imm_name = imm->imm_use->next;
1117       return imm->imm_use;
1118     }
1119 }
1120
1121 /* Return true if VAR cannot be modified by the program.  */
1122
1123 static inline bool
1124 unmodifiable_var_p (const_tree var)
1125 {
1126   if (TREE_CODE (var) == SSA_NAME)
1127     var = SSA_NAME_VAR (var);
1128
1129   return TREE_READONLY (var) && (TREE_STATIC (var) || DECL_EXTERNAL (var));
1130 }
1131
1132 /* Return true if REF, an ARRAY_REF, has an INDIRECT_REF somewhere in it.  */
1133
1134 static inline bool
1135 array_ref_contains_indirect_ref (const_tree ref)
1136 {
1137   gcc_assert (TREE_CODE (ref) == ARRAY_REF);
1138
1139   do {
1140     ref = TREE_OPERAND (ref, 0);
1141   } while (handled_component_p (ref));
1142
1143   return TREE_CODE (ref) == INDIRECT_REF;
1144 }
1145
1146 /* Return true if REF, a handled component reference, has an ARRAY_REF
1147    somewhere in it.  */
1148
1149 static inline bool
1150 ref_contains_array_ref (const_tree ref)
1151 {
1152   gcc_assert (handled_component_p (ref));
1153
1154   do {
1155     if (TREE_CODE (ref) == ARRAY_REF)
1156       return true;
1157     ref = TREE_OPERAND (ref, 0);
1158   } while (handled_component_p (ref));
1159
1160   return false;
1161 }
1162
1163 /* Return true if REF has an VIEW_CONVERT_EXPR somewhere in it.  */
1164
1165 static inline bool
1166 contains_view_convert_expr_p (const_tree ref)
1167 {
1168   while (handled_component_p (ref))
1169     {
1170       if (TREE_CODE (ref) == VIEW_CONVERT_EXPR)
1171         return true;
1172       ref = TREE_OPERAND (ref, 0);
1173     }
1174
1175   return false;
1176 }
1177
1178 /* Return true, if the two ranges [POS1, SIZE1] and [POS2, SIZE2]
1179    overlap.  SIZE1 and/or SIZE2 can be (unsigned)-1 in which case the
1180    range is open-ended.  Otherwise return false.  */
1181
1182 static inline bool
1183 ranges_overlap_p (unsigned HOST_WIDE_INT pos1,
1184                   unsigned HOST_WIDE_INT size1,
1185                   unsigned HOST_WIDE_INT pos2,
1186                   unsigned HOST_WIDE_INT size2)
1187 {
1188   if (pos1 >= pos2
1189       && (size2 == (unsigned HOST_WIDE_INT)-1
1190           || pos1 < (pos2 + size2)))
1191     return true;
1192   if (pos2 >= pos1
1193       && (size1 == (unsigned HOST_WIDE_INT)-1
1194           || pos2 < (pos1 + size1)))
1195     return true;
1196
1197   return false;
1198 }
1199
1200 /* Accessor to tree-ssa-operands.c caches.  */
1201 static inline struct ssa_operands *
1202 gimple_ssa_operands (const struct function *fun)
1203 {
1204   return &fun->gimple_df->ssa_operands;
1205 }
1206
1207 /* Given an edge_var_map V, return the PHI arg definition.  */
1208
1209 static inline tree
1210 redirect_edge_var_map_def (edge_var_map *v)
1211 {
1212   return v->def;
1213 }
1214
1215 /* Given an edge_var_map V, return the PHI result.  */
1216
1217 static inline tree
1218 redirect_edge_var_map_result (edge_var_map *v)
1219 {
1220   return v->result;
1221 }
1222
1223 /* Given an edge_var_map V, return the PHI arg location.  */
1224
1225 static inline source_location
1226 redirect_edge_var_map_location (edge_var_map *v)
1227 {
1228   return v->locus;
1229 }
1230
1231
1232 /* Return an SSA_NAME node for variable VAR defined in statement STMT
1233    in function cfun.  */
1234
1235 static inline tree
1236 make_ssa_name (tree var, gimple stmt)
1237 {
1238   return make_ssa_name_fn (cfun, var, stmt);
1239 }
1240
1241 #endif /* _TREE_FLOW_INLINE_H  */