OSDN Git Service

2011-04-27 Richard Guenther <rguenther@suse.de>
[pf3gnuchains/gcc-fork.git] / gcc / tree-ssa-structalias.c
1 /* Tree based points-to analysis
2    Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010
3    Free Software Foundation, Inc.
4    Contributed by Daniel Berlin <dberlin@dberlin.org>
5
6    This file is part of GCC.
7
8    GCC is free software; you can redistribute it and/or modify
9    under the terms of the GNU General Public License as published by
10    the Free Software Foundation; either version 3 of the License, or
11    (at your option) 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 #include "config.h"
23 #include "system.h"
24 #include "coretypes.h"
25 #include "tm.h"
26 #include "ggc.h"
27 #include "obstack.h"
28 #include "bitmap.h"
29 #include "flags.h"
30 #include "basic-block.h"
31 #include "output.h"
32 #include "tree.h"
33 #include "tree-flow.h"
34 #include "tree-inline.h"
35 #include "diagnostic-core.h"
36 #include "gimple.h"
37 #include "hashtab.h"
38 #include "function.h"
39 #include "cgraph.h"
40 #include "tree-pass.h"
41 #include "timevar.h"
42 #include "alloc-pool.h"
43 #include "splay-tree.h"
44 #include "params.h"
45 #include "cgraph.h"
46 #include "alias.h"
47 #include "pointer-set.h"
48
49 /* The idea behind this analyzer is to generate set constraints from the
50    program, then solve the resulting constraints in order to generate the
51    points-to sets.
52
53    Set constraints are a way of modeling program analysis problems that
54    involve sets.  They consist of an inclusion constraint language,
55    describing the variables (each variable is a set) and operations that
56    are involved on the variables, and a set of rules that derive facts
57    from these operations.  To solve a system of set constraints, you derive
58    all possible facts under the rules, which gives you the correct sets
59    as a consequence.
60
61    See  "Efficient Field-sensitive pointer analysis for C" by "David
62    J. Pearce and Paul H. J. Kelly and Chris Hankin, at
63    http://citeseer.ist.psu.edu/pearce04efficient.html
64
65    Also see "Ultra-fast Aliasing Analysis using CLA: A Million Lines
66    of C Code in a Second" by ""Nevin Heintze and Olivier Tardieu" at
67    http://citeseer.ist.psu.edu/heintze01ultrafast.html
68
69    There are three types of real constraint expressions, DEREF,
70    ADDRESSOF, and SCALAR.  Each constraint expression consists
71    of a constraint type, a variable, and an offset.
72
73    SCALAR is a constraint expression type used to represent x, whether
74    it appears on the LHS or the RHS of a statement.
75    DEREF is a constraint expression type used to represent *x, whether
76    it appears on the LHS or the RHS of a statement.
77    ADDRESSOF is a constraint expression used to represent &x, whether
78    it appears on the LHS or the RHS of a statement.
79
80    Each pointer variable in the program is assigned an integer id, and
81    each field of a structure variable is assigned an integer id as well.
82
83    Structure variables are linked to their list of fields through a "next
84    field" in each variable that points to the next field in offset
85    order.
86    Each variable for a structure field has
87
88    1. "size", that tells the size in bits of that field.
89    2. "fullsize, that tells the size in bits of the entire structure.
90    3. "offset", that tells the offset in bits from the beginning of the
91    structure to this field.
92
93    Thus,
94    struct f
95    {
96      int a;
97      int b;
98    } foo;
99    int *bar;
100
101    looks like
102
103    foo.a -> id 1, size 32, offset 0, fullsize 64, next foo.b
104    foo.b -> id 2, size 32, offset 32, fullsize 64, next NULL
105    bar -> id 3, size 32, offset 0, fullsize 32, next NULL
106
107
108   In order to solve the system of set constraints, the following is
109   done:
110
111   1. Each constraint variable x has a solution set associated with it,
112   Sol(x).
113
114   2. Constraints are separated into direct, copy, and complex.
115   Direct constraints are ADDRESSOF constraints that require no extra
116   processing, such as P = &Q
117   Copy constraints are those of the form P = Q.
118   Complex constraints are all the constraints involving dereferences
119   and offsets (including offsetted copies).
120
121   3. All direct constraints of the form P = &Q are processed, such
122   that Q is added to Sol(P)
123
124   4. All complex constraints for a given constraint variable are stored in a
125   linked list attached to that variable's node.
126
127   5. A directed graph is built out of the copy constraints. Each
128   constraint variable is a node in the graph, and an edge from
129   Q to P is added for each copy constraint of the form P = Q
130
131   6. The graph is then walked, and solution sets are
132   propagated along the copy edges, such that an edge from Q to P
133   causes Sol(P) <- Sol(P) union Sol(Q).
134
135   7.  As we visit each node, all complex constraints associated with
136   that node are processed by adding appropriate copy edges to the graph, or the
137   appropriate variables to the solution set.
138
139   8. The process of walking the graph is iterated until no solution
140   sets change.
141
142   Prior to walking the graph in steps 6 and 7, We perform static
143   cycle elimination on the constraint graph, as well
144   as off-line variable substitution.
145
146   TODO: Adding offsets to pointer-to-structures can be handled (IE not punted
147   on and turned into anything), but isn't.  You can just see what offset
148   inside the pointed-to struct it's going to access.
149
150   TODO: Constant bounded arrays can be handled as if they were structs of the
151   same number of elements.
152
153   TODO: Modeling heap and incoming pointers becomes much better if we
154   add fields to them as we discover them, which we could do.
155
156   TODO: We could handle unions, but to be honest, it's probably not
157   worth the pain or slowdown.  */
158
159 /* IPA-PTA optimizations possible.
160
161    When the indirect function called is ANYTHING we can add disambiguation
162    based on the function signatures (or simply the parameter count which
163    is the varinfo size).  We also do not need to consider functions that
164    do not have their address taken.
165
166    The is_global_var bit which marks escape points is overly conservative
167    in IPA mode.  Split it to is_escape_point and is_global_var - only
168    externally visible globals are escape points in IPA mode.  This is
169    also needed to fix the pt_solution_includes_global predicate
170    (and thus ptr_deref_may_alias_global_p).
171
172    The way we introduce DECL_PT_UID to avoid fixing up all points-to
173    sets in the translation unit when we copy a DECL during inlining
174    pessimizes precision.  The advantage is that the DECL_PT_UID keeps
175    compile-time and memory usage overhead low - the points-to sets
176    do not grow or get unshared as they would during a fixup phase.
177    An alternative solution is to delay IPA PTA until after all
178    inlining transformations have been applied.
179
180    The way we propagate clobber/use information isn't optimized.
181    It should use a new complex constraint that properly filters
182    out local variables of the callee (though that would make
183    the sets invalid after inlining).  OTOH we might as well
184    admit defeat to WHOPR and simply do all the clobber/use analysis
185    and propagation after PTA finished but before we threw away
186    points-to information for memory variables.  WHOPR and PTA
187    do not play along well anyway - the whole constraint solving
188    would need to be done in WPA phase and it will be very interesting
189    to apply the results to local SSA names during LTRANS phase.
190
191    We probably should compute a per-function unit-ESCAPE solution
192    propagating it simply like the clobber / uses solutions.  The
193    solution can go alongside the non-IPA espaced solution and be
194    used to query which vars escape the unit through a function.
195
196    We never put function decls in points-to sets so we do not
197    keep the set of called functions for indirect calls.
198
199    And probably more.  */
200
201 static bool use_field_sensitive = true;
202 static int in_ipa_mode = 0;
203
204 /* Used for predecessor bitmaps. */
205 static bitmap_obstack predbitmap_obstack;
206
207 /* Used for points-to sets.  */
208 static bitmap_obstack pta_obstack;
209
210 /* Used for oldsolution members of variables. */
211 static bitmap_obstack oldpta_obstack;
212
213 /* Used for per-solver-iteration bitmaps.  */
214 static bitmap_obstack iteration_obstack;
215
216 static unsigned int create_variable_info_for (tree, const char *);
217 typedef struct constraint_graph *constraint_graph_t;
218 static void unify_nodes (constraint_graph_t, unsigned int, unsigned int, bool);
219
220 struct constraint;
221 typedef struct constraint *constraint_t;
222
223 DEF_VEC_P(constraint_t);
224 DEF_VEC_ALLOC_P(constraint_t,heap);
225
226 #define EXECUTE_IF_IN_NONNULL_BITMAP(a, b, c, d)        \
227   if (a)                                                \
228     EXECUTE_IF_SET_IN_BITMAP (a, b, c, d)
229
230 static struct constraint_stats
231 {
232   unsigned int total_vars;
233   unsigned int nonpointer_vars;
234   unsigned int unified_vars_static;
235   unsigned int unified_vars_dynamic;
236   unsigned int iterations;
237   unsigned int num_edges;
238   unsigned int num_implicit_edges;
239   unsigned int points_to_sets_created;
240 } stats;
241
242 struct variable_info
243 {
244   /* ID of this variable  */
245   unsigned int id;
246
247   /* True if this is a variable created by the constraint analysis, such as
248      heap variables and constraints we had to break up.  */
249   unsigned int is_artificial_var : 1;
250
251   /* True if this is a special variable whose solution set should not be
252      changed.  */
253   unsigned int is_special_var : 1;
254
255   /* True for variables whose size is not known or variable.  */
256   unsigned int is_unknown_size_var : 1;
257
258   /* True for (sub-)fields that represent a whole variable.  */
259   unsigned int is_full_var : 1;
260
261   /* True if this is a heap variable.  */
262   unsigned int is_heap_var : 1;
263
264   /* True if this is a variable tracking a restrict pointer source.  */
265   unsigned int is_restrict_var : 1;
266
267   /* True if this field may contain pointers.  */
268   unsigned int may_have_pointers : 1;
269
270   /* True if this field has only restrict qualified pointers.  */
271   unsigned int only_restrict_pointers : 1;
272
273   /* True if this represents a global variable.  */
274   unsigned int is_global_var : 1;
275
276   /* True if this represents a IPA function info.  */
277   unsigned int is_fn_info : 1;
278
279   /* A link to the variable for the next field in this structure.  */
280   struct variable_info *next;
281
282   /* Offset of this variable, in bits, from the base variable  */
283   unsigned HOST_WIDE_INT offset;
284
285   /* Size of the variable, in bits.  */
286   unsigned HOST_WIDE_INT size;
287
288   /* Full size of the base variable, in bits.  */
289   unsigned HOST_WIDE_INT fullsize;
290
291   /* Name of this variable */
292   const char *name;
293
294   /* Tree that this variable is associated with.  */
295   tree decl;
296
297   /* Points-to set for this variable.  */
298   bitmap solution;
299
300   /* Old points-to set for this variable.  */
301   bitmap oldsolution;
302 };
303 typedef struct variable_info *varinfo_t;
304
305 static varinfo_t first_vi_for_offset (varinfo_t, unsigned HOST_WIDE_INT);
306 static varinfo_t first_or_preceding_vi_for_offset (varinfo_t,
307                                                    unsigned HOST_WIDE_INT);
308 static varinfo_t lookup_vi_for_tree (tree);
309
310 /* Pool of variable info structures.  */
311 static alloc_pool variable_info_pool;
312
313 DEF_VEC_P(varinfo_t);
314
315 DEF_VEC_ALLOC_P(varinfo_t, heap);
316
317 /* Table of variable info structures for constraint variables.
318    Indexed directly by variable info id.  */
319 static VEC(varinfo_t,heap) *varmap;
320
321 /* Return the varmap element N */
322
323 static inline varinfo_t
324 get_varinfo (unsigned int n)
325 {
326   return VEC_index (varinfo_t, varmap, n);
327 }
328
329 /* Static IDs for the special variables.  */
330 enum { nothing_id = 0, anything_id = 1, readonly_id = 2,
331        escaped_id = 3, nonlocal_id = 4,
332        storedanything_id = 5, integer_id = 6 };
333
334 /* Return a new variable info structure consisting for a variable
335    named NAME, and using constraint graph node NODE.  Append it
336    to the vector of variable info structures.  */
337
338 static varinfo_t
339 new_var_info (tree t, const char *name)
340 {
341   unsigned index = VEC_length (varinfo_t, varmap);
342   varinfo_t ret = (varinfo_t) pool_alloc (variable_info_pool);
343
344   ret->id = index;
345   ret->name = name;
346   ret->decl = t;
347   /* Vars without decl are artificial and do not have sub-variables.  */
348   ret->is_artificial_var = (t == NULL_TREE);
349   ret->is_special_var = false;
350   ret->is_unknown_size_var = false;
351   ret->is_full_var = (t == NULL_TREE);
352   ret->is_heap_var = false;
353   ret->is_restrict_var = false;
354   ret->may_have_pointers = true;
355   ret->only_restrict_pointers = false;
356   ret->is_global_var = (t == NULL_TREE);
357   ret->is_fn_info = false;
358   if (t && DECL_P (t))
359     ret->is_global_var = (is_global_var (t)
360                           /* We have to treat even local register variables
361                              as escape points.  */
362                           || (TREE_CODE (t) == VAR_DECL
363                               && DECL_HARD_REGISTER (t)));
364   ret->solution = BITMAP_ALLOC (&pta_obstack);
365   ret->oldsolution = BITMAP_ALLOC (&oldpta_obstack);
366   ret->next = NULL;
367
368   stats.total_vars++;
369
370   VEC_safe_push (varinfo_t, heap, varmap, ret);
371
372   return ret;
373 }
374
375
376 /* A map mapping call statements to per-stmt variables for uses
377    and clobbers specific to the call.  */
378 struct pointer_map_t *call_stmt_vars;
379
380 /* Lookup or create the variable for the call statement CALL.  */
381
382 static varinfo_t
383 get_call_vi (gimple call)
384 {
385   void **slot_p;
386   varinfo_t vi, vi2;
387
388   slot_p = pointer_map_insert (call_stmt_vars, call);
389   if (*slot_p)
390     return (varinfo_t) *slot_p;
391
392   vi = new_var_info (NULL_TREE, "CALLUSED");
393   vi->offset = 0;
394   vi->size = 1;
395   vi->fullsize = 2;
396   vi->is_full_var = true;
397
398   vi->next = vi2 = new_var_info (NULL_TREE, "CALLCLOBBERED");
399   vi2->offset = 1;
400   vi2->size = 1;
401   vi2->fullsize = 2;
402   vi2->is_full_var = true;
403
404   *slot_p = (void *) vi;
405   return vi;
406 }
407
408 /* Lookup the variable for the call statement CALL representing
409    the uses.  Returns NULL if there is nothing special about this call.  */
410
411 static varinfo_t
412 lookup_call_use_vi (gimple call)
413 {
414   void **slot_p;
415
416   slot_p = pointer_map_contains (call_stmt_vars, call);
417   if (slot_p)
418     return (varinfo_t) *slot_p;
419
420   return NULL;
421 }
422
423 /* Lookup the variable for the call statement CALL representing
424    the clobbers.  Returns NULL if there is nothing special about this call.  */
425
426 static varinfo_t
427 lookup_call_clobber_vi (gimple call)
428 {
429   varinfo_t uses = lookup_call_use_vi (call);
430   if (!uses)
431     return NULL;
432
433   return uses->next;
434 }
435
436 /* Lookup or create the variable for the call statement CALL representing
437    the uses.  */
438
439 static varinfo_t
440 get_call_use_vi (gimple call)
441 {
442   return get_call_vi (call);
443 }
444
445 /* Lookup or create the variable for the call statement CALL representing
446    the clobbers.  */
447
448 static varinfo_t ATTRIBUTE_UNUSED
449 get_call_clobber_vi (gimple call)
450 {
451   return get_call_vi (call)->next;
452 }
453
454
455 typedef enum {SCALAR, DEREF, ADDRESSOF} constraint_expr_type;
456
457 /* An expression that appears in a constraint.  */
458
459 struct constraint_expr
460 {
461   /* Constraint type.  */
462   constraint_expr_type type;
463
464   /* Variable we are referring to in the constraint.  */
465   unsigned int var;
466
467   /* Offset, in bits, of this constraint from the beginning of
468      variables it ends up referring to.
469
470      IOW, in a deref constraint, we would deref, get the result set,
471      then add OFFSET to each member.   */
472   HOST_WIDE_INT offset;
473 };
474
475 /* Use 0x8000... as special unknown offset.  */
476 #define UNKNOWN_OFFSET ((HOST_WIDE_INT)-1 << (HOST_BITS_PER_WIDE_INT-1))
477
478 typedef struct constraint_expr ce_s;
479 DEF_VEC_O(ce_s);
480 DEF_VEC_ALLOC_O(ce_s, heap);
481 static void get_constraint_for_1 (tree, VEC(ce_s, heap) **, bool, bool);
482 static void get_constraint_for (tree, VEC(ce_s, heap) **);
483 static void get_constraint_for_rhs (tree, VEC(ce_s, heap) **);
484 static void do_deref (VEC (ce_s, heap) **);
485
486 /* Our set constraints are made up of two constraint expressions, one
487    LHS, and one RHS.
488
489    As described in the introduction, our set constraints each represent an
490    operation between set valued variables.
491 */
492 struct constraint
493 {
494   struct constraint_expr lhs;
495   struct constraint_expr rhs;
496 };
497
498 /* List of constraints that we use to build the constraint graph from.  */
499
500 static VEC(constraint_t,heap) *constraints;
501 static alloc_pool constraint_pool;
502
503 /* The constraint graph is represented as an array of bitmaps
504    containing successor nodes.  */
505
506 struct constraint_graph
507 {
508   /* Size of this graph, which may be different than the number of
509      nodes in the variable map.  */
510   unsigned int size;
511
512   /* Explicit successors of each node. */
513   bitmap *succs;
514
515   /* Implicit predecessors of each node (Used for variable
516      substitution). */
517   bitmap *implicit_preds;
518
519   /* Explicit predecessors of each node (Used for variable substitution).  */
520   bitmap *preds;
521
522   /* Indirect cycle representatives, or -1 if the node has no indirect
523      cycles.  */
524   int *indirect_cycles;
525
526   /* Representative node for a node.  rep[a] == a unless the node has
527      been unified. */
528   unsigned int *rep;
529
530   /* Equivalence class representative for a label.  This is used for
531      variable substitution.  */
532   int *eq_rep;
533
534   /* Pointer equivalence label for a node.  All nodes with the same
535      pointer equivalence label can be unified together at some point
536      (either during constraint optimization or after the constraint
537      graph is built).  */
538   unsigned int *pe;
539
540   /* Pointer equivalence representative for a label.  This is used to
541      handle nodes that are pointer equivalent but not location
542      equivalent.  We can unite these once the addressof constraints
543      are transformed into initial points-to sets.  */
544   int *pe_rep;
545
546   /* Pointer equivalence label for each node, used during variable
547      substitution.  */
548   unsigned int *pointer_label;
549
550   /* Location equivalence label for each node, used during location
551      equivalence finding.  */
552   unsigned int *loc_label;
553
554   /* Pointed-by set for each node, used during location equivalence
555      finding.  This is pointed-by rather than pointed-to, because it
556      is constructed using the predecessor graph.  */
557   bitmap *pointed_by;
558
559   /* Points to sets for pointer equivalence.  This is *not* the actual
560      points-to sets for nodes.  */
561   bitmap *points_to;
562
563   /* Bitmap of nodes where the bit is set if the node is a direct
564      node.  Used for variable substitution.  */
565   sbitmap direct_nodes;
566
567   /* Bitmap of nodes where the bit is set if the node is address
568      taken.  Used for variable substitution.  */
569   bitmap address_taken;
570
571   /* Vector of complex constraints for each graph node.  Complex
572      constraints are those involving dereferences or offsets that are
573      not 0.  */
574   VEC(constraint_t,heap) **complex;
575 };
576
577 static constraint_graph_t graph;
578
579 /* During variable substitution and the offline version of indirect
580    cycle finding, we create nodes to represent dereferences and
581    address taken constraints.  These represent where these start and
582    end.  */
583 #define FIRST_REF_NODE (VEC_length (varinfo_t, varmap))
584 #define LAST_REF_NODE (FIRST_REF_NODE + (FIRST_REF_NODE - 1))
585
586 /* Return the representative node for NODE, if NODE has been unioned
587    with another NODE.
588    This function performs path compression along the way to finding
589    the representative.  */
590
591 static unsigned int
592 find (unsigned int node)
593 {
594   gcc_assert (node < graph->size);
595   if (graph->rep[node] != node)
596     return graph->rep[node] = find (graph->rep[node]);
597   return node;
598 }
599
600 /* Union the TO and FROM nodes to the TO nodes.
601    Note that at some point in the future, we may want to do
602    union-by-rank, in which case we are going to have to return the
603    node we unified to.  */
604
605 static bool
606 unite (unsigned int to, unsigned int from)
607 {
608   gcc_assert (to < graph->size && from < graph->size);
609   if (to != from && graph->rep[from] != to)
610     {
611       graph->rep[from] = to;
612       return true;
613     }
614   return false;
615 }
616
617 /* Create a new constraint consisting of LHS and RHS expressions.  */
618
619 static constraint_t
620 new_constraint (const struct constraint_expr lhs,
621                 const struct constraint_expr rhs)
622 {
623   constraint_t ret = (constraint_t) pool_alloc (constraint_pool);
624   ret->lhs = lhs;
625   ret->rhs = rhs;
626   return ret;
627 }
628
629 /* Print out constraint C to FILE.  */
630
631 static void
632 dump_constraint (FILE *file, constraint_t c)
633 {
634   if (c->lhs.type == ADDRESSOF)
635     fprintf (file, "&");
636   else if (c->lhs.type == DEREF)
637     fprintf (file, "*");
638   fprintf (file, "%s", get_varinfo (c->lhs.var)->name);
639   if (c->lhs.offset == UNKNOWN_OFFSET)
640     fprintf (file, " + UNKNOWN");
641   else if (c->lhs.offset != 0)
642     fprintf (file, " + " HOST_WIDE_INT_PRINT_DEC, c->lhs.offset);
643   fprintf (file, " = ");
644   if (c->rhs.type == ADDRESSOF)
645     fprintf (file, "&");
646   else if (c->rhs.type == DEREF)
647     fprintf (file, "*");
648   fprintf (file, "%s", get_varinfo (c->rhs.var)->name);
649   if (c->rhs.offset == UNKNOWN_OFFSET)
650     fprintf (file, " + UNKNOWN");
651   else if (c->rhs.offset != 0)
652     fprintf (file, " + " HOST_WIDE_INT_PRINT_DEC, c->rhs.offset);
653   fprintf (file, "\n");
654 }
655
656
657 void debug_constraint (constraint_t);
658 void debug_constraints (void);
659 void debug_constraint_graph (void);
660 void debug_solution_for_var (unsigned int);
661 void debug_sa_points_to_info (void);
662
663 /* Print out constraint C to stderr.  */
664
665 DEBUG_FUNCTION void
666 debug_constraint (constraint_t c)
667 {
668   dump_constraint (stderr, c);
669 }
670
671 /* Print out all constraints to FILE */
672
673 static void
674 dump_constraints (FILE *file, int from)
675 {
676   int i;
677   constraint_t c;
678   for (i = from; VEC_iterate (constraint_t, constraints, i, c); i++)
679     dump_constraint (file, c);
680 }
681
682 /* Print out all constraints to stderr.  */
683
684 DEBUG_FUNCTION void
685 debug_constraints (void)
686 {
687   dump_constraints (stderr, 0);
688 }
689
690 /* Print out to FILE the edge in the constraint graph that is created by
691    constraint c. The edge may have a label, depending on the type of
692    constraint that it represents. If complex1, e.g: a = *b, then the label
693    is "=*", if complex2, e.g: *a = b, then the label is "*=", if
694    complex with an offset, e.g: a = b + 8, then the label is "+".
695    Otherwise the edge has no label.  */
696
697 static void
698 dump_constraint_edge (FILE *file, constraint_t c)
699 {
700   if (c->rhs.type != ADDRESSOF)
701     {
702       const char *src = get_varinfo (c->rhs.var)->name;
703       const char *dst = get_varinfo (c->lhs.var)->name;
704       fprintf (file, "  \"%s\" -> \"%s\" ", src, dst);
705       /* Due to preprocessing of constraints, instructions like *a = *b are
706          illegal; thus, we do not have to handle such cases.  */
707       if (c->lhs.type == DEREF)
708         fprintf (file, " [ label=\"*=\" ] ;\n");
709       else if (c->rhs.type == DEREF)
710         fprintf (file, " [ label=\"=*\" ] ;\n");
711       else
712         {
713           /* We must check the case where the constraint is an offset.
714              In this case, it is treated as a complex constraint.  */
715           if (c->rhs.offset != c->lhs.offset)
716             fprintf (file, " [ label=\"+\" ] ;\n");
717           else
718             fprintf (file, " ;\n");
719         }
720     }
721 }
722
723 /* Print the constraint graph in dot format.  */
724
725 static void
726 dump_constraint_graph (FILE *file)
727 {
728   unsigned int i=0, size;
729   constraint_t c;
730
731   /* Only print the graph if it has already been initialized:  */
732   if (!graph)
733     return;
734
735   /* Print the constraints used to produce the constraint graph. The
736      constraints will be printed as comments in the dot file:  */
737   fprintf (file, "\n\n/* Constraints used in the constraint graph:\n");
738   dump_constraints (file, 0);
739   fprintf (file, "*/\n");
740
741   /* Prints the header of the dot file:  */
742   fprintf (file, "\n\n// The constraint graph in dot format:\n");
743   fprintf (file, "strict digraph {\n");
744   fprintf (file, "  node [\n    shape = box\n  ]\n");
745   fprintf (file, "  edge [\n    fontsize = \"12\"\n  ]\n");
746   fprintf (file, "\n  // List of nodes in the constraint graph:\n");
747
748   /* The next lines print the nodes in the graph. In order to get the
749      number of nodes in the graph, we must choose the minimum between the
750      vector VEC (varinfo_t, varmap) and graph->size. If the graph has not
751      yet been initialized, then graph->size == 0, otherwise we must only
752      read nodes that have an entry in VEC (varinfo_t, varmap).  */
753   size = VEC_length (varinfo_t, varmap);
754   size = size < graph->size ? size : graph->size;
755   for (i = 0; i < size; i++)
756     {
757       const char *name = get_varinfo (graph->rep[i])->name;
758       fprintf (file, "  \"%s\" ;\n", name);
759     }
760
761   /* Go over the list of constraints printing the edges in the constraint
762      graph.  */
763   fprintf (file, "\n  // The constraint edges:\n");
764   FOR_EACH_VEC_ELT (constraint_t, constraints, i, c)
765     if (c)
766       dump_constraint_edge (file, c);
767
768   /* Prints the tail of the dot file. By now, only the closing bracket.  */
769   fprintf (file, "}\n\n\n");
770 }
771
772 /* Print out the constraint graph to stderr.  */
773
774 DEBUG_FUNCTION void
775 debug_constraint_graph (void)
776 {
777   dump_constraint_graph (stderr);
778 }
779
780 /* SOLVER FUNCTIONS
781
782    The solver is a simple worklist solver, that works on the following
783    algorithm:
784
785    sbitmap changed_nodes = all zeroes;
786    changed_count = 0;
787    For each node that is not already collapsed:
788        changed_count++;
789        set bit in changed nodes
790
791    while (changed_count > 0)
792    {
793      compute topological ordering for constraint graph
794
795      find and collapse cycles in the constraint graph (updating
796      changed if necessary)
797
798      for each node (n) in the graph in topological order:
799        changed_count--;
800
801        Process each complex constraint associated with the node,
802        updating changed if necessary.
803
804        For each outgoing edge from n, propagate the solution from n to
805        the destination of the edge, updating changed as necessary.
806
807    }  */
808
809 /* Return true if two constraint expressions A and B are equal.  */
810
811 static bool
812 constraint_expr_equal (struct constraint_expr a, struct constraint_expr b)
813 {
814   return a.type == b.type && a.var == b.var && a.offset == b.offset;
815 }
816
817 /* Return true if constraint expression A is less than constraint expression
818    B.  This is just arbitrary, but consistent, in order to give them an
819    ordering.  */
820
821 static bool
822 constraint_expr_less (struct constraint_expr a, struct constraint_expr b)
823 {
824   if (a.type == b.type)
825     {
826       if (a.var == b.var)
827         return a.offset < b.offset;
828       else
829         return a.var < b.var;
830     }
831   else
832     return a.type < b.type;
833 }
834
835 /* Return true if constraint A is less than constraint B.  This is just
836    arbitrary, but consistent, in order to give them an ordering.  */
837
838 static bool
839 constraint_less (const constraint_t a, const constraint_t b)
840 {
841   if (constraint_expr_less (a->lhs, b->lhs))
842     return true;
843   else if (constraint_expr_less (b->lhs, a->lhs))
844     return false;
845   else
846     return constraint_expr_less (a->rhs, b->rhs);
847 }
848
849 /* Return true if two constraints A and B are equal.  */
850
851 static bool
852 constraint_equal (struct constraint a, struct constraint b)
853 {
854   return constraint_expr_equal (a.lhs, b.lhs)
855     && constraint_expr_equal (a.rhs, b.rhs);
856 }
857
858
859 /* Find a constraint LOOKFOR in the sorted constraint vector VEC */
860
861 static constraint_t
862 constraint_vec_find (VEC(constraint_t,heap) *vec,
863                      struct constraint lookfor)
864 {
865   unsigned int place;
866   constraint_t found;
867
868   if (vec == NULL)
869     return NULL;
870
871   place = VEC_lower_bound (constraint_t, vec, &lookfor, constraint_less);
872   if (place >= VEC_length (constraint_t, vec))
873     return NULL;
874   found = VEC_index (constraint_t, vec, place);
875   if (!constraint_equal (*found, lookfor))
876     return NULL;
877   return found;
878 }
879
880 /* Union two constraint vectors, TO and FROM.  Put the result in TO.  */
881
882 static void
883 constraint_set_union (VEC(constraint_t,heap) **to,
884                       VEC(constraint_t,heap) **from)
885 {
886   int i;
887   constraint_t c;
888
889   FOR_EACH_VEC_ELT (constraint_t, *from, i, c)
890     {
891       if (constraint_vec_find (*to, *c) == NULL)
892         {
893           unsigned int place = VEC_lower_bound (constraint_t, *to, c,
894                                                 constraint_less);
895           VEC_safe_insert (constraint_t, heap, *to, place, c);
896         }
897     }
898 }
899
900 /* Expands the solution in SET to all sub-fields of variables included.
901    Union the expanded result into RESULT.  */
902
903 static void
904 solution_set_expand (bitmap result, bitmap set)
905 {
906   bitmap_iterator bi;
907   bitmap vars = NULL;
908   unsigned j;
909
910   /* In a first pass record all variables we need to add all
911      sub-fields off.  This avoids quadratic behavior.  */
912   EXECUTE_IF_SET_IN_BITMAP (set, 0, j, bi)
913     {
914       varinfo_t v = get_varinfo (j);
915       if (v->is_artificial_var
916           || v->is_full_var)
917         continue;
918       v = lookup_vi_for_tree (v->decl);
919       if (vars == NULL)
920         vars = BITMAP_ALLOC (NULL);
921       bitmap_set_bit (vars, v->id);
922     }
923
924   /* In the second pass now do the addition to the solution and
925      to speed up solving add it to the delta as well.  */
926   if (vars != NULL)
927     {
928       EXECUTE_IF_SET_IN_BITMAP (vars, 0, j, bi)
929         {
930           varinfo_t v = get_varinfo (j);
931           for (; v != NULL; v = v->next)
932             bitmap_set_bit (result, v->id);
933         }
934       BITMAP_FREE (vars);
935     }
936 }
937
938 /* Take a solution set SET, add OFFSET to each member of the set, and
939    overwrite SET with the result when done.  */
940
941 static void
942 solution_set_add (bitmap set, HOST_WIDE_INT offset)
943 {
944   bitmap result = BITMAP_ALLOC (&iteration_obstack);
945   unsigned int i;
946   bitmap_iterator bi;
947
948   /* If the offset is unknown we have to expand the solution to
949      all subfields.  */
950   if (offset == UNKNOWN_OFFSET)
951     {
952       solution_set_expand (set, set);
953       return;
954     }
955
956   EXECUTE_IF_SET_IN_BITMAP (set, 0, i, bi)
957     {
958       varinfo_t vi = get_varinfo (i);
959
960       /* If this is a variable with just one field just set its bit
961          in the result.  */
962       if (vi->is_artificial_var
963           || vi->is_unknown_size_var
964           || vi->is_full_var)
965         bitmap_set_bit (result, i);
966       else
967         {
968           unsigned HOST_WIDE_INT fieldoffset = vi->offset + offset;
969
970           /* If the offset makes the pointer point to before the
971              variable use offset zero for the field lookup.  */
972           if (offset < 0
973               && fieldoffset > vi->offset)
974             fieldoffset = 0;
975
976           if (offset != 0)
977             vi = first_or_preceding_vi_for_offset (vi, fieldoffset);
978
979           bitmap_set_bit (result, vi->id);
980           /* If the result is not exactly at fieldoffset include the next
981              field as well.  See get_constraint_for_ptr_offset for more
982              rationale.  */
983           if (vi->offset != fieldoffset
984               && vi->next != NULL)
985             bitmap_set_bit (result, vi->next->id);
986         }
987     }
988
989   bitmap_copy (set, result);
990   BITMAP_FREE (result);
991 }
992
993 /* Union solution sets TO and FROM, and add INC to each member of FROM in the
994    process.  */
995
996 static bool
997 set_union_with_increment  (bitmap to, bitmap from, HOST_WIDE_INT inc)
998 {
999   if (inc == 0)
1000     return bitmap_ior_into (to, from);
1001   else
1002     {
1003       bitmap tmp;
1004       bool res;
1005
1006       tmp = BITMAP_ALLOC (&iteration_obstack);
1007       bitmap_copy (tmp, from);
1008       solution_set_add (tmp, inc);
1009       res = bitmap_ior_into (to, tmp);
1010       BITMAP_FREE (tmp);
1011       return res;
1012     }
1013 }
1014
1015 /* Insert constraint C into the list of complex constraints for graph
1016    node VAR.  */
1017
1018 static void
1019 insert_into_complex (constraint_graph_t graph,
1020                      unsigned int var, constraint_t c)
1021 {
1022   VEC (constraint_t, heap) *complex = graph->complex[var];
1023   unsigned int place = VEC_lower_bound (constraint_t, complex, c,
1024                                         constraint_less);
1025
1026   /* Only insert constraints that do not already exist.  */
1027   if (place >= VEC_length (constraint_t, complex)
1028       || !constraint_equal (*c, *VEC_index (constraint_t, complex, place)))
1029     VEC_safe_insert (constraint_t, heap, graph->complex[var], place, c);
1030 }
1031
1032
1033 /* Condense two variable nodes into a single variable node, by moving
1034    all associated info from SRC to TO.  */
1035
1036 static void
1037 merge_node_constraints (constraint_graph_t graph, unsigned int to,
1038                         unsigned int from)
1039 {
1040   unsigned int i;
1041   constraint_t c;
1042
1043   gcc_assert (find (from) == to);
1044
1045   /* Move all complex constraints from src node into to node  */
1046   FOR_EACH_VEC_ELT (constraint_t, graph->complex[from], i, c)
1047     {
1048       /* In complex constraints for node src, we may have either
1049          a = *src, and *src = a, or an offseted constraint which are
1050          always added to the rhs node's constraints.  */
1051
1052       if (c->rhs.type == DEREF)
1053         c->rhs.var = to;
1054       else if (c->lhs.type == DEREF)
1055         c->lhs.var = to;
1056       else
1057         c->rhs.var = to;
1058     }
1059   constraint_set_union (&graph->complex[to], &graph->complex[from]);
1060   VEC_free (constraint_t, heap, graph->complex[from]);
1061   graph->complex[from] = NULL;
1062 }
1063
1064
1065 /* Remove edges involving NODE from GRAPH.  */
1066
1067 static void
1068 clear_edges_for_node (constraint_graph_t graph, unsigned int node)
1069 {
1070   if (graph->succs[node])
1071     BITMAP_FREE (graph->succs[node]);
1072 }
1073
1074 /* Merge GRAPH nodes FROM and TO into node TO.  */
1075
1076 static void
1077 merge_graph_nodes (constraint_graph_t graph, unsigned int to,
1078                    unsigned int from)
1079 {
1080   if (graph->indirect_cycles[from] != -1)
1081     {
1082       /* If we have indirect cycles with the from node, and we have
1083          none on the to node, the to node has indirect cycles from the
1084          from node now that they are unified.
1085          If indirect cycles exist on both, unify the nodes that they
1086          are in a cycle with, since we know they are in a cycle with
1087          each other.  */
1088       if (graph->indirect_cycles[to] == -1)
1089         graph->indirect_cycles[to] = graph->indirect_cycles[from];
1090     }
1091
1092   /* Merge all the successor edges.  */
1093   if (graph->succs[from])
1094     {
1095       if (!graph->succs[to])
1096         graph->succs[to] = BITMAP_ALLOC (&pta_obstack);
1097       bitmap_ior_into (graph->succs[to],
1098                        graph->succs[from]);
1099     }
1100
1101   clear_edges_for_node (graph, from);
1102 }
1103
1104
1105 /* Add an indirect graph edge to GRAPH, going from TO to FROM if
1106    it doesn't exist in the graph already.  */
1107
1108 static void
1109 add_implicit_graph_edge (constraint_graph_t graph, unsigned int to,
1110                          unsigned int from)
1111 {
1112   if (to == from)
1113     return;
1114
1115   if (!graph->implicit_preds[to])
1116     graph->implicit_preds[to] = BITMAP_ALLOC (&predbitmap_obstack);
1117
1118   if (bitmap_set_bit (graph->implicit_preds[to], from))
1119     stats.num_implicit_edges++;
1120 }
1121
1122 /* Add a predecessor graph edge to GRAPH, going from TO to FROM if
1123    it doesn't exist in the graph already.
1124    Return false if the edge already existed, true otherwise.  */
1125
1126 static void
1127 add_pred_graph_edge (constraint_graph_t graph, unsigned int to,
1128                      unsigned int from)
1129 {
1130   if (!graph->preds[to])
1131     graph->preds[to] = BITMAP_ALLOC (&predbitmap_obstack);
1132   bitmap_set_bit (graph->preds[to], from);
1133 }
1134
1135 /* Add a graph edge to GRAPH, going from FROM to TO if
1136    it doesn't exist in the graph already.
1137    Return false if the edge already existed, true otherwise.  */
1138
1139 static bool
1140 add_graph_edge (constraint_graph_t graph, unsigned int to,
1141                 unsigned int from)
1142 {
1143   if (to == from)
1144     {
1145       return false;
1146     }
1147   else
1148     {
1149       bool r = false;
1150
1151       if (!graph->succs[from])
1152         graph->succs[from] = BITMAP_ALLOC (&pta_obstack);
1153       if (bitmap_set_bit (graph->succs[from], to))
1154         {
1155           r = true;
1156           if (to < FIRST_REF_NODE && from < FIRST_REF_NODE)
1157             stats.num_edges++;
1158         }
1159       return r;
1160     }
1161 }
1162
1163
1164 /* Return true if {DEST.SRC} is an existing graph edge in GRAPH.  */
1165
1166 static bool
1167 valid_graph_edge (constraint_graph_t graph, unsigned int src,
1168                   unsigned int dest)
1169 {
1170   return (graph->succs[dest]
1171           && bitmap_bit_p (graph->succs[dest], src));
1172 }
1173
1174 /* Initialize the constraint graph structure to contain SIZE nodes.  */
1175
1176 static void
1177 init_graph (unsigned int size)
1178 {
1179   unsigned int j;
1180
1181   graph = XCNEW (struct constraint_graph);
1182   graph->size = size;
1183   graph->succs = XCNEWVEC (bitmap, graph->size);
1184   graph->indirect_cycles = XNEWVEC (int, graph->size);
1185   graph->rep = XNEWVEC (unsigned int, graph->size);
1186   graph->complex = XCNEWVEC (VEC(constraint_t, heap) *, size);
1187   graph->pe = XCNEWVEC (unsigned int, graph->size);
1188   graph->pe_rep = XNEWVEC (int, graph->size);
1189
1190   for (j = 0; j < graph->size; j++)
1191     {
1192       graph->rep[j] = j;
1193       graph->pe_rep[j] = -1;
1194       graph->indirect_cycles[j] = -1;
1195     }
1196 }
1197
1198 /* Build the constraint graph, adding only predecessor edges right now.  */
1199
1200 static void
1201 build_pred_graph (void)
1202 {
1203   int i;
1204   constraint_t c;
1205   unsigned int j;
1206
1207   graph->implicit_preds = XCNEWVEC (bitmap, graph->size);
1208   graph->preds = XCNEWVEC (bitmap, graph->size);
1209   graph->pointer_label = XCNEWVEC (unsigned int, graph->size);
1210   graph->loc_label = XCNEWVEC (unsigned int, graph->size);
1211   graph->pointed_by = XCNEWVEC (bitmap, graph->size);
1212   graph->points_to = XCNEWVEC (bitmap, graph->size);
1213   graph->eq_rep = XNEWVEC (int, graph->size);
1214   graph->direct_nodes = sbitmap_alloc (graph->size);
1215   graph->address_taken = BITMAP_ALLOC (&predbitmap_obstack);
1216   sbitmap_zero (graph->direct_nodes);
1217
1218   for (j = 0; j < FIRST_REF_NODE; j++)
1219     {
1220       if (!get_varinfo (j)->is_special_var)
1221         SET_BIT (graph->direct_nodes, j);
1222     }
1223
1224   for (j = 0; j < graph->size; j++)
1225     graph->eq_rep[j] = -1;
1226
1227   for (j = 0; j < VEC_length (varinfo_t, varmap); j++)
1228     graph->indirect_cycles[j] = -1;
1229
1230   FOR_EACH_VEC_ELT (constraint_t, constraints, i, c)
1231     {
1232       struct constraint_expr lhs = c->lhs;
1233       struct constraint_expr rhs = c->rhs;
1234       unsigned int lhsvar = lhs.var;
1235       unsigned int rhsvar = rhs.var;
1236
1237       if (lhs.type == DEREF)
1238         {
1239           /* *x = y.  */
1240           if (rhs.offset == 0 && lhs.offset == 0 && rhs.type == SCALAR)
1241             add_pred_graph_edge (graph, FIRST_REF_NODE + lhsvar, rhsvar);
1242         }
1243       else if (rhs.type == DEREF)
1244         {
1245           /* x = *y */
1246           if (rhs.offset == 0 && lhs.offset == 0 && lhs.type == SCALAR)
1247             add_pred_graph_edge (graph, lhsvar, FIRST_REF_NODE + rhsvar);
1248           else
1249             RESET_BIT (graph->direct_nodes, lhsvar);
1250         }
1251       else if (rhs.type == ADDRESSOF)
1252         {
1253           varinfo_t v;
1254
1255           /* x = &y */
1256           if (graph->points_to[lhsvar] == NULL)
1257             graph->points_to[lhsvar] = BITMAP_ALLOC (&predbitmap_obstack);
1258           bitmap_set_bit (graph->points_to[lhsvar], rhsvar);
1259
1260           if (graph->pointed_by[rhsvar] == NULL)
1261             graph->pointed_by[rhsvar] = BITMAP_ALLOC (&predbitmap_obstack);
1262           bitmap_set_bit (graph->pointed_by[rhsvar], lhsvar);
1263
1264           /* Implicitly, *x = y */
1265           add_implicit_graph_edge (graph, FIRST_REF_NODE + lhsvar, rhsvar);
1266
1267           /* All related variables are no longer direct nodes.  */
1268           RESET_BIT (graph->direct_nodes, rhsvar);
1269           v = get_varinfo (rhsvar);
1270           if (!v->is_full_var)
1271             {
1272               v = lookup_vi_for_tree (v->decl);
1273               do
1274                 {
1275                   RESET_BIT (graph->direct_nodes, v->id);
1276                   v = v->next;
1277                 }
1278               while (v != NULL);
1279             }
1280           bitmap_set_bit (graph->address_taken, rhsvar);
1281         }
1282       else if (lhsvar > anything_id
1283                && lhsvar != rhsvar && lhs.offset == 0 && rhs.offset == 0)
1284         {
1285           /* x = y */
1286           add_pred_graph_edge (graph, lhsvar, rhsvar);
1287           /* Implicitly, *x = *y */
1288           add_implicit_graph_edge (graph, FIRST_REF_NODE + lhsvar,
1289                                    FIRST_REF_NODE + rhsvar);
1290         }
1291       else if (lhs.offset != 0 || rhs.offset != 0)
1292         {
1293           if (rhs.offset != 0)
1294             RESET_BIT (graph->direct_nodes, lhs.var);
1295           else if (lhs.offset != 0)
1296             RESET_BIT (graph->direct_nodes, rhs.var);
1297         }
1298     }
1299 }
1300
1301 /* Build the constraint graph, adding successor edges.  */
1302
1303 static void
1304 build_succ_graph (void)
1305 {
1306   unsigned i, t;
1307   constraint_t c;
1308
1309   FOR_EACH_VEC_ELT (constraint_t, constraints, i, c)
1310     {
1311       struct constraint_expr lhs;
1312       struct constraint_expr rhs;
1313       unsigned int lhsvar;
1314       unsigned int rhsvar;
1315
1316       if (!c)
1317         continue;
1318
1319       lhs = c->lhs;
1320       rhs = c->rhs;
1321       lhsvar = find (lhs.var);
1322       rhsvar = find (rhs.var);
1323
1324       if (lhs.type == DEREF)
1325         {
1326           if (rhs.offset == 0 && lhs.offset == 0 && rhs.type == SCALAR)
1327             add_graph_edge (graph, FIRST_REF_NODE + lhsvar, rhsvar);
1328         }
1329       else if (rhs.type == DEREF)
1330         {
1331           if (rhs.offset == 0 && lhs.offset == 0 && lhs.type == SCALAR)
1332             add_graph_edge (graph, lhsvar, FIRST_REF_NODE + rhsvar);
1333         }
1334       else if (rhs.type == ADDRESSOF)
1335         {
1336           /* x = &y */
1337           gcc_assert (find (rhs.var) == rhs.var);
1338           bitmap_set_bit (get_varinfo (lhsvar)->solution, rhsvar);
1339         }
1340       else if (lhsvar > anything_id
1341                && lhsvar != rhsvar && lhs.offset == 0 && rhs.offset == 0)
1342         {
1343           add_graph_edge (graph, lhsvar, rhsvar);
1344         }
1345     }
1346
1347   /* Add edges from STOREDANYTHING to all non-direct nodes that can
1348      receive pointers.  */
1349   t = find (storedanything_id);
1350   for (i = integer_id + 1; i < FIRST_REF_NODE; ++i)
1351     {
1352       if (!TEST_BIT (graph->direct_nodes, i)
1353           && get_varinfo (i)->may_have_pointers)
1354         add_graph_edge (graph, find (i), t);
1355     }
1356
1357   /* Everything stored to ANYTHING also potentially escapes.  */
1358   add_graph_edge (graph, find (escaped_id), t);
1359 }
1360
1361
1362 /* Changed variables on the last iteration.  */
1363 static bitmap changed;
1364
1365 /* Strongly Connected Component visitation info.  */
1366
1367 struct scc_info
1368 {
1369   sbitmap visited;
1370   sbitmap deleted;
1371   unsigned int *dfs;
1372   unsigned int *node_mapping;
1373   int current_index;
1374   VEC(unsigned,heap) *scc_stack;
1375 };
1376
1377
1378 /* Recursive routine to find strongly connected components in GRAPH.
1379    SI is the SCC info to store the information in, and N is the id of current
1380    graph node we are processing.
1381
1382    This is Tarjan's strongly connected component finding algorithm, as
1383    modified by Nuutila to keep only non-root nodes on the stack.
1384    The algorithm can be found in "On finding the strongly connected
1385    connected components in a directed graph" by Esko Nuutila and Eljas
1386    Soisalon-Soininen, in Information Processing Letters volume 49,
1387    number 1, pages 9-14.  */
1388
1389 static void
1390 scc_visit (constraint_graph_t graph, struct scc_info *si, unsigned int n)
1391 {
1392   unsigned int i;
1393   bitmap_iterator bi;
1394   unsigned int my_dfs;
1395
1396   SET_BIT (si->visited, n);
1397   si->dfs[n] = si->current_index ++;
1398   my_dfs = si->dfs[n];
1399
1400   /* Visit all the successors.  */
1401   EXECUTE_IF_IN_NONNULL_BITMAP (graph->succs[n], 0, i, bi)
1402     {
1403       unsigned int w;
1404
1405       if (i > LAST_REF_NODE)
1406         break;
1407
1408       w = find (i);
1409       if (TEST_BIT (si->deleted, w))
1410         continue;
1411
1412       if (!TEST_BIT (si->visited, w))
1413         scc_visit (graph, si, w);
1414       {
1415         unsigned int t = find (w);
1416         unsigned int nnode = find (n);
1417         gcc_assert (nnode == n);
1418
1419         if (si->dfs[t] < si->dfs[nnode])
1420           si->dfs[n] = si->dfs[t];
1421       }
1422     }
1423
1424   /* See if any components have been identified.  */
1425   if (si->dfs[n] == my_dfs)
1426     {
1427       if (VEC_length (unsigned, si->scc_stack) > 0
1428           && si->dfs[VEC_last (unsigned, si->scc_stack)] >= my_dfs)
1429         {
1430           bitmap scc = BITMAP_ALLOC (NULL);
1431           unsigned int lowest_node;
1432           bitmap_iterator bi;
1433
1434           bitmap_set_bit (scc, n);
1435
1436           while (VEC_length (unsigned, si->scc_stack) != 0
1437                  && si->dfs[VEC_last (unsigned, si->scc_stack)] >= my_dfs)
1438             {
1439               unsigned int w = VEC_pop (unsigned, si->scc_stack);
1440
1441               bitmap_set_bit (scc, w);
1442             }
1443
1444           lowest_node = bitmap_first_set_bit (scc);
1445           gcc_assert (lowest_node < FIRST_REF_NODE);
1446
1447           /* Collapse the SCC nodes into a single node, and mark the
1448              indirect cycles.  */
1449           EXECUTE_IF_SET_IN_BITMAP (scc, 0, i, bi)
1450             {
1451               if (i < FIRST_REF_NODE)
1452                 {
1453                   if (unite (lowest_node, i))
1454                     unify_nodes (graph, lowest_node, i, false);
1455                 }
1456               else
1457                 {
1458                   unite (lowest_node, i);
1459                   graph->indirect_cycles[i - FIRST_REF_NODE] = lowest_node;
1460                 }
1461             }
1462         }
1463       SET_BIT (si->deleted, n);
1464     }
1465   else
1466     VEC_safe_push (unsigned, heap, si->scc_stack, n);
1467 }
1468
1469 /* Unify node FROM into node TO, updating the changed count if
1470    necessary when UPDATE_CHANGED is true.  */
1471
1472 static void
1473 unify_nodes (constraint_graph_t graph, unsigned int to, unsigned int from,
1474              bool update_changed)
1475 {
1476
1477   gcc_assert (to != from && find (to) == to);
1478   if (dump_file && (dump_flags & TDF_DETAILS))
1479     fprintf (dump_file, "Unifying %s to %s\n",
1480              get_varinfo (from)->name,
1481              get_varinfo (to)->name);
1482
1483   if (update_changed)
1484     stats.unified_vars_dynamic++;
1485   else
1486     stats.unified_vars_static++;
1487
1488   merge_graph_nodes (graph, to, from);
1489   merge_node_constraints (graph, to, from);
1490
1491   /* Mark TO as changed if FROM was changed. If TO was already marked
1492      as changed, decrease the changed count.  */
1493
1494   if (update_changed
1495       && bitmap_bit_p (changed, from))
1496     {
1497       bitmap_clear_bit (changed, from);
1498       bitmap_set_bit (changed, to);
1499     }
1500   if (get_varinfo (from)->solution)
1501     {
1502       /* If the solution changes because of the merging, we need to mark
1503          the variable as changed.  */
1504       if (bitmap_ior_into (get_varinfo (to)->solution,
1505                            get_varinfo (from)->solution))
1506         {
1507           if (update_changed)
1508             bitmap_set_bit (changed, to);
1509         }
1510
1511       BITMAP_FREE (get_varinfo (from)->solution);
1512       BITMAP_FREE (get_varinfo (from)->oldsolution);
1513
1514       if (stats.iterations > 0)
1515         {
1516           BITMAP_FREE (get_varinfo (to)->oldsolution);
1517           get_varinfo (to)->oldsolution = BITMAP_ALLOC (&oldpta_obstack);
1518         }
1519     }
1520   if (valid_graph_edge (graph, to, to))
1521     {
1522       if (graph->succs[to])
1523         bitmap_clear_bit (graph->succs[to], to);
1524     }
1525 }
1526
1527 /* Information needed to compute the topological ordering of a graph.  */
1528
1529 struct topo_info
1530 {
1531   /* sbitmap of visited nodes.  */
1532   sbitmap visited;
1533   /* Array that stores the topological order of the graph, *in
1534      reverse*.  */
1535   VEC(unsigned,heap) *topo_order;
1536 };
1537
1538
1539 /* Initialize and return a topological info structure.  */
1540
1541 static struct topo_info *
1542 init_topo_info (void)
1543 {
1544   size_t size = graph->size;
1545   struct topo_info *ti = XNEW (struct topo_info);
1546   ti->visited = sbitmap_alloc (size);
1547   sbitmap_zero (ti->visited);
1548   ti->topo_order = VEC_alloc (unsigned, heap, 1);
1549   return ti;
1550 }
1551
1552
1553 /* Free the topological sort info pointed to by TI.  */
1554
1555 static void
1556 free_topo_info (struct topo_info *ti)
1557 {
1558   sbitmap_free (ti->visited);
1559   VEC_free (unsigned, heap, ti->topo_order);
1560   free (ti);
1561 }
1562
1563 /* Visit the graph in topological order, and store the order in the
1564    topo_info structure.  */
1565
1566 static void
1567 topo_visit (constraint_graph_t graph, struct topo_info *ti,
1568             unsigned int n)
1569 {
1570   bitmap_iterator bi;
1571   unsigned int j;
1572
1573   SET_BIT (ti->visited, n);
1574
1575   if (graph->succs[n])
1576     EXECUTE_IF_SET_IN_BITMAP (graph->succs[n], 0, j, bi)
1577       {
1578         if (!TEST_BIT (ti->visited, j))
1579           topo_visit (graph, ti, j);
1580       }
1581
1582   VEC_safe_push (unsigned, heap, ti->topo_order, n);
1583 }
1584
1585 /* Process a constraint C that represents x = *(y + off), using DELTA as the
1586    starting solution for y.  */
1587
1588 static void
1589 do_sd_constraint (constraint_graph_t graph, constraint_t c,
1590                   bitmap delta)
1591 {
1592   unsigned int lhs = c->lhs.var;
1593   bool flag = false;
1594   bitmap sol = get_varinfo (lhs)->solution;
1595   unsigned int j;
1596   bitmap_iterator bi;
1597   HOST_WIDE_INT roffset = c->rhs.offset;
1598
1599   /* Our IL does not allow this.  */
1600   gcc_assert (c->lhs.offset == 0);
1601
1602   /* If the solution of Y contains anything it is good enough to transfer
1603      this to the LHS.  */
1604   if (bitmap_bit_p (delta, anything_id))
1605     {
1606       flag |= bitmap_set_bit (sol, anything_id);
1607       goto done;
1608     }
1609
1610   /* If we do not know at with offset the rhs is dereferenced compute
1611      the reachability set of DELTA, conservatively assuming it is
1612      dereferenced at all valid offsets.  */
1613   if (roffset == UNKNOWN_OFFSET)
1614     {
1615       solution_set_expand (delta, delta);
1616       /* No further offset processing is necessary.  */
1617       roffset = 0;
1618     }
1619
1620   /* For each variable j in delta (Sol(y)), add
1621      an edge in the graph from j to x, and union Sol(j) into Sol(x).  */
1622   EXECUTE_IF_SET_IN_BITMAP (delta, 0, j, bi)
1623     {
1624       varinfo_t v = get_varinfo (j);
1625       HOST_WIDE_INT fieldoffset = v->offset + roffset;
1626       unsigned int t;
1627
1628       if (v->is_full_var)
1629         fieldoffset = v->offset;
1630       else if (roffset != 0)
1631         v = first_vi_for_offset (v, fieldoffset);
1632       /* If the access is outside of the variable we can ignore it.  */
1633       if (!v)
1634         continue;
1635
1636       do
1637         {
1638           t = find (v->id);
1639
1640           /* Adding edges from the special vars is pointless.
1641              They don't have sets that can change.  */
1642           if (get_varinfo (t)->is_special_var)
1643             flag |= bitmap_ior_into (sol, get_varinfo (t)->solution);
1644           /* Merging the solution from ESCAPED needlessly increases
1645              the set.  Use ESCAPED as representative instead.  */
1646           else if (v->id == escaped_id)
1647             flag |= bitmap_set_bit (sol, escaped_id);
1648           else if (v->may_have_pointers
1649                    && add_graph_edge (graph, lhs, t))
1650             flag |= bitmap_ior_into (sol, get_varinfo (t)->solution);
1651
1652           /* If the variable is not exactly at the requested offset
1653              we have to include the next one.  */
1654           if (v->offset == (unsigned HOST_WIDE_INT)fieldoffset
1655               || v->next == NULL)
1656             break;
1657
1658           v = v->next;
1659           fieldoffset = v->offset;
1660         }
1661       while (1);
1662     }
1663
1664 done:
1665   /* If the LHS solution changed, mark the var as changed.  */
1666   if (flag)
1667     {
1668       get_varinfo (lhs)->solution = sol;
1669       bitmap_set_bit (changed, lhs);
1670     }
1671 }
1672
1673 /* Process a constraint C that represents *(x + off) = y using DELTA
1674    as the starting solution for x.  */
1675
1676 static void
1677 do_ds_constraint (constraint_t c, bitmap delta)
1678 {
1679   unsigned int rhs = c->rhs.var;
1680   bitmap sol = get_varinfo (rhs)->solution;
1681   unsigned int j;
1682   bitmap_iterator bi;
1683   HOST_WIDE_INT loff = c->lhs.offset;
1684   bool escaped_p = false;
1685
1686   /* Our IL does not allow this.  */
1687   gcc_assert (c->rhs.offset == 0);
1688
1689   /* If the solution of y contains ANYTHING simply use the ANYTHING
1690      solution.  This avoids needlessly increasing the points-to sets.  */
1691   if (bitmap_bit_p (sol, anything_id))
1692     sol = get_varinfo (find (anything_id))->solution;
1693
1694   /* If the solution for x contains ANYTHING we have to merge the
1695      solution of y into all pointer variables which we do via
1696      STOREDANYTHING.  */
1697   if (bitmap_bit_p (delta, anything_id))
1698     {
1699       unsigned t = find (storedanything_id);
1700       if (add_graph_edge (graph, t, rhs))
1701         {
1702           if (bitmap_ior_into (get_varinfo (t)->solution, sol))
1703             bitmap_set_bit (changed, t);
1704         }
1705       return;
1706     }
1707
1708   /* If we do not know at with offset the rhs is dereferenced compute
1709      the reachability set of DELTA, conservatively assuming it is
1710      dereferenced at all valid offsets.  */
1711   if (loff == UNKNOWN_OFFSET)
1712     {
1713       solution_set_expand (delta, delta);
1714       loff = 0;
1715     }
1716
1717   /* For each member j of delta (Sol(x)), add an edge from y to j and
1718      union Sol(y) into Sol(j) */
1719   EXECUTE_IF_SET_IN_BITMAP (delta, 0, j, bi)
1720     {
1721       varinfo_t v = get_varinfo (j);
1722       unsigned int t;
1723       HOST_WIDE_INT fieldoffset = v->offset + loff;
1724
1725       if (v->is_full_var)
1726         fieldoffset = v->offset;
1727       else if (loff != 0)
1728         v = first_vi_for_offset (v, fieldoffset);
1729       /* If the access is outside of the variable we can ignore it.  */
1730       if (!v)
1731         continue;
1732
1733       do
1734         {
1735           if (v->may_have_pointers)
1736             {
1737               /* If v is a global variable then this is an escape point.  */
1738               if (v->is_global_var
1739                   && !escaped_p)
1740                 {
1741                   t = find (escaped_id);
1742                   if (add_graph_edge (graph, t, rhs)
1743                       && bitmap_ior_into (get_varinfo (t)->solution, sol))
1744                     bitmap_set_bit (changed, t);
1745                   /* Enough to let rhs escape once.  */
1746                   escaped_p = true;
1747                 }
1748
1749               if (v->is_special_var)
1750                 break;
1751
1752               t = find (v->id);
1753               if (add_graph_edge (graph, t, rhs)
1754                   && bitmap_ior_into (get_varinfo (t)->solution, sol))
1755                 bitmap_set_bit (changed, t);
1756             }
1757
1758           /* If the variable is not exactly at the requested offset
1759              we have to include the next one.  */
1760           if (v->offset == (unsigned HOST_WIDE_INT)fieldoffset
1761               || v->next == NULL)
1762             break;
1763
1764           v = v->next;
1765           fieldoffset = v->offset;
1766         }
1767       while (1);
1768     }
1769 }
1770
1771 /* Handle a non-simple (simple meaning requires no iteration),
1772    constraint (IE *x = &y, x = *y, *x = y, and x = y with offsets involved).  */
1773
1774 static void
1775 do_complex_constraint (constraint_graph_t graph, constraint_t c, bitmap delta)
1776 {
1777   if (c->lhs.type == DEREF)
1778     {
1779       if (c->rhs.type == ADDRESSOF)
1780         {
1781           gcc_unreachable();
1782         }
1783       else
1784         {
1785           /* *x = y */
1786           do_ds_constraint (c, delta);
1787         }
1788     }
1789   else if (c->rhs.type == DEREF)
1790     {
1791       /* x = *y */
1792       if (!(get_varinfo (c->lhs.var)->is_special_var))
1793         do_sd_constraint (graph, c, delta);
1794     }
1795   else
1796     {
1797       bitmap tmp;
1798       bitmap solution;
1799       bool flag = false;
1800
1801       gcc_assert (c->rhs.type == SCALAR && c->lhs.type == SCALAR);
1802       solution = get_varinfo (c->rhs.var)->solution;
1803       tmp = get_varinfo (c->lhs.var)->solution;
1804
1805       flag = set_union_with_increment (tmp, solution, c->rhs.offset);
1806
1807       if (flag)
1808         {
1809           get_varinfo (c->lhs.var)->solution = tmp;
1810           bitmap_set_bit (changed, c->lhs.var);
1811         }
1812     }
1813 }
1814
1815 /* Initialize and return a new SCC info structure.  */
1816
1817 static struct scc_info *
1818 init_scc_info (size_t size)
1819 {
1820   struct scc_info *si = XNEW (struct scc_info);
1821   size_t i;
1822
1823   si->current_index = 0;
1824   si->visited = sbitmap_alloc (size);
1825   sbitmap_zero (si->visited);
1826   si->deleted = sbitmap_alloc (size);
1827   sbitmap_zero (si->deleted);
1828   si->node_mapping = XNEWVEC (unsigned int, size);
1829   si->dfs = XCNEWVEC (unsigned int, size);
1830
1831   for (i = 0; i < size; i++)
1832     si->node_mapping[i] = i;
1833
1834   si->scc_stack = VEC_alloc (unsigned, heap, 1);
1835   return si;
1836 }
1837
1838 /* Free an SCC info structure pointed to by SI */
1839
1840 static void
1841 free_scc_info (struct scc_info *si)
1842 {
1843   sbitmap_free (si->visited);
1844   sbitmap_free (si->deleted);
1845   free (si->node_mapping);
1846   free (si->dfs);
1847   VEC_free (unsigned, heap, si->scc_stack);
1848   free (si);
1849 }
1850
1851
1852 /* Find indirect cycles in GRAPH that occur, using strongly connected
1853    components, and note them in the indirect cycles map.
1854
1855    This technique comes from Ben Hardekopf and Calvin Lin,
1856    "It Pays to be Lazy: Fast and Accurate Pointer Analysis for Millions of
1857    Lines of Code", submitted to PLDI 2007.  */
1858
1859 static void
1860 find_indirect_cycles (constraint_graph_t graph)
1861 {
1862   unsigned int i;
1863   unsigned int size = graph->size;
1864   struct scc_info *si = init_scc_info (size);
1865
1866   for (i = 0; i < MIN (LAST_REF_NODE, size); i ++ )
1867     if (!TEST_BIT (si->visited, i) && find (i) == i)
1868       scc_visit (graph, si, i);
1869
1870   free_scc_info (si);
1871 }
1872
1873 /* Compute a topological ordering for GRAPH, and store the result in the
1874    topo_info structure TI.  */
1875
1876 static void
1877 compute_topo_order (constraint_graph_t graph,
1878                     struct topo_info *ti)
1879 {
1880   unsigned int i;
1881   unsigned int size = graph->size;
1882
1883   for (i = 0; i != size; ++i)
1884     if (!TEST_BIT (ti->visited, i) && find (i) == i)
1885       topo_visit (graph, ti, i);
1886 }
1887
1888 /* Structure used to for hash value numbering of pointer equivalence
1889    classes.  */
1890
1891 typedef struct equiv_class_label
1892 {
1893   hashval_t hashcode;
1894   unsigned int equivalence_class;
1895   bitmap labels;
1896 } *equiv_class_label_t;
1897 typedef const struct equiv_class_label *const_equiv_class_label_t;
1898
1899 /* A hashtable for mapping a bitmap of labels->pointer equivalence
1900    classes.  */
1901 static htab_t pointer_equiv_class_table;
1902
1903 /* A hashtable for mapping a bitmap of labels->location equivalence
1904    classes.  */
1905 static htab_t location_equiv_class_table;
1906
1907 /* Hash function for a equiv_class_label_t */
1908
1909 static hashval_t
1910 equiv_class_label_hash (const void *p)
1911 {
1912   const_equiv_class_label_t const ecl = (const_equiv_class_label_t) p;
1913   return ecl->hashcode;
1914 }
1915
1916 /* Equality function for two equiv_class_label_t's.  */
1917
1918 static int
1919 equiv_class_label_eq (const void *p1, const void *p2)
1920 {
1921   const_equiv_class_label_t const eql1 = (const_equiv_class_label_t) p1;
1922   const_equiv_class_label_t const eql2 = (const_equiv_class_label_t) p2;
1923   return (eql1->hashcode == eql2->hashcode
1924           && bitmap_equal_p (eql1->labels, eql2->labels));
1925 }
1926
1927 /* Lookup a equivalence class in TABLE by the bitmap of LABELS it
1928    contains.  */
1929
1930 static unsigned int
1931 equiv_class_lookup (htab_t table, bitmap labels)
1932 {
1933   void **slot;
1934   struct equiv_class_label ecl;
1935
1936   ecl.labels = labels;
1937   ecl.hashcode = bitmap_hash (labels);
1938
1939   slot = htab_find_slot_with_hash (table, &ecl,
1940                                    ecl.hashcode, NO_INSERT);
1941   if (!slot)
1942     return 0;
1943   else
1944     return ((equiv_class_label_t) *slot)->equivalence_class;
1945 }
1946
1947
1948 /* Add an equivalence class named EQUIVALENCE_CLASS with labels LABELS
1949    to TABLE.  */
1950
1951 static void
1952 equiv_class_add (htab_t table, unsigned int equivalence_class,
1953                  bitmap labels)
1954 {
1955   void **slot;
1956   equiv_class_label_t ecl = XNEW (struct equiv_class_label);
1957
1958   ecl->labels = labels;
1959   ecl->equivalence_class = equivalence_class;
1960   ecl->hashcode = bitmap_hash (labels);
1961
1962   slot = htab_find_slot_with_hash (table, ecl,
1963                                    ecl->hashcode, INSERT);
1964   gcc_assert (!*slot);
1965   *slot = (void *) ecl;
1966 }
1967
1968 /* Perform offline variable substitution.
1969
1970    This is a worst case quadratic time way of identifying variables
1971    that must have equivalent points-to sets, including those caused by
1972    static cycles, and single entry subgraphs, in the constraint graph.
1973
1974    The technique is described in "Exploiting Pointer and Location
1975    Equivalence to Optimize Pointer Analysis. In the 14th International
1976    Static Analysis Symposium (SAS), August 2007."  It is known as the
1977    "HU" algorithm, and is equivalent to value numbering the collapsed
1978    constraint graph including evaluating unions.
1979
1980    The general method of finding equivalence classes is as follows:
1981    Add fake nodes (REF nodes) and edges for *a = b and a = *b constraints.
1982    Initialize all non-REF nodes to be direct nodes.
1983    For each constraint a = a U {b}, we set pts(a) = pts(a) u {fresh
1984    variable}
1985    For each constraint containing the dereference, we also do the same
1986    thing.
1987
1988    We then compute SCC's in the graph and unify nodes in the same SCC,
1989    including pts sets.
1990
1991    For each non-collapsed node x:
1992     Visit all unvisited explicit incoming edges.
1993     Ignoring all non-pointers, set pts(x) = Union of pts(a) for y
1994     where y->x.
1995     Lookup the equivalence class for pts(x).
1996      If we found one, equivalence_class(x) = found class.
1997      Otherwise, equivalence_class(x) = new class, and new_class is
1998     added to the lookup table.
1999
2000    All direct nodes with the same equivalence class can be replaced
2001    with a single representative node.
2002    All unlabeled nodes (label == 0) are not pointers and all edges
2003    involving them can be eliminated.
2004    We perform these optimizations during rewrite_constraints
2005
2006    In addition to pointer equivalence class finding, we also perform
2007    location equivalence class finding.  This is the set of variables
2008    that always appear together in points-to sets.  We use this to
2009    compress the size of the points-to sets.  */
2010
2011 /* Current maximum pointer equivalence class id.  */
2012 static int pointer_equiv_class;
2013
2014 /* Current maximum location equivalence class id.  */
2015 static int location_equiv_class;
2016
2017 /* Recursive routine to find strongly connected components in GRAPH,
2018    and label it's nodes with DFS numbers.  */
2019
2020 static void
2021 condense_visit (constraint_graph_t graph, struct scc_info *si, unsigned int n)
2022 {
2023   unsigned int i;
2024   bitmap_iterator bi;
2025   unsigned int my_dfs;
2026
2027   gcc_assert (si->node_mapping[n] == n);
2028   SET_BIT (si->visited, n);
2029   si->dfs[n] = si->current_index ++;
2030   my_dfs = si->dfs[n];
2031
2032   /* Visit all the successors.  */
2033   EXECUTE_IF_IN_NONNULL_BITMAP (graph->preds[n], 0, i, bi)
2034     {
2035       unsigned int w = si->node_mapping[i];
2036
2037       if (TEST_BIT (si->deleted, w))
2038         continue;
2039
2040       if (!TEST_BIT (si->visited, w))
2041         condense_visit (graph, si, w);
2042       {
2043         unsigned int t = si->node_mapping[w];
2044         unsigned int nnode = si->node_mapping[n];
2045         gcc_assert (nnode == n);
2046
2047         if (si->dfs[t] < si->dfs[nnode])
2048           si->dfs[n] = si->dfs[t];
2049       }
2050     }
2051
2052   /* Visit all the implicit predecessors.  */
2053   EXECUTE_IF_IN_NONNULL_BITMAP (graph->implicit_preds[n], 0, i, bi)
2054     {
2055       unsigned int w = si->node_mapping[i];
2056
2057       if (TEST_BIT (si->deleted, w))
2058         continue;
2059
2060       if (!TEST_BIT (si->visited, w))
2061         condense_visit (graph, si, w);
2062       {
2063         unsigned int t = si->node_mapping[w];
2064         unsigned int nnode = si->node_mapping[n];
2065         gcc_assert (nnode == n);
2066
2067         if (si->dfs[t] < si->dfs[nnode])
2068           si->dfs[n] = si->dfs[t];
2069       }
2070     }
2071
2072   /* See if any components have been identified.  */
2073   if (si->dfs[n] == my_dfs)
2074     {
2075       while (VEC_length (unsigned, si->scc_stack) != 0
2076              && si->dfs[VEC_last (unsigned, si->scc_stack)] >= my_dfs)
2077         {
2078           unsigned int w = VEC_pop (unsigned, si->scc_stack);
2079           si->node_mapping[w] = n;
2080
2081           if (!TEST_BIT (graph->direct_nodes, w))
2082             RESET_BIT (graph->direct_nodes, n);
2083
2084           /* Unify our nodes.  */
2085           if (graph->preds[w])
2086             {
2087               if (!graph->preds[n])
2088                 graph->preds[n] = BITMAP_ALLOC (&predbitmap_obstack);
2089               bitmap_ior_into (graph->preds[n], graph->preds[w]);
2090             }
2091           if (graph->implicit_preds[w])
2092             {
2093               if (!graph->implicit_preds[n])
2094                 graph->implicit_preds[n] = BITMAP_ALLOC (&predbitmap_obstack);
2095               bitmap_ior_into (graph->implicit_preds[n],
2096                                graph->implicit_preds[w]);
2097             }
2098           if (graph->points_to[w])
2099             {
2100               if (!graph->points_to[n])
2101                 graph->points_to[n] = BITMAP_ALLOC (&predbitmap_obstack);
2102               bitmap_ior_into (graph->points_to[n],
2103                                graph->points_to[w]);
2104             }
2105         }
2106       SET_BIT (si->deleted, n);
2107     }
2108   else
2109     VEC_safe_push (unsigned, heap, si->scc_stack, n);
2110 }
2111
2112 /* Label pointer equivalences.  */
2113
2114 static void
2115 label_visit (constraint_graph_t graph, struct scc_info *si, unsigned int n)
2116 {
2117   unsigned int i;
2118   bitmap_iterator bi;
2119   SET_BIT (si->visited, n);
2120
2121   if (!graph->points_to[n])
2122     graph->points_to[n] = BITMAP_ALLOC (&predbitmap_obstack);
2123
2124   /* Label and union our incoming edges's points to sets.  */
2125   EXECUTE_IF_IN_NONNULL_BITMAP (graph->preds[n], 0, i, bi)
2126     {
2127       unsigned int w = si->node_mapping[i];
2128       if (!TEST_BIT (si->visited, w))
2129         label_visit (graph, si, w);
2130
2131       /* Skip unused edges  */
2132       if (w == n || graph->pointer_label[w] == 0)
2133         continue;
2134
2135       if (graph->points_to[w])
2136         bitmap_ior_into(graph->points_to[n], graph->points_to[w]);
2137     }
2138   /* Indirect nodes get fresh variables.  */
2139   if (!TEST_BIT (graph->direct_nodes, n))
2140     bitmap_set_bit (graph->points_to[n], FIRST_REF_NODE + n);
2141
2142   if (!bitmap_empty_p (graph->points_to[n]))
2143     {
2144       unsigned int label = equiv_class_lookup (pointer_equiv_class_table,
2145                                                graph->points_to[n]);
2146       if (!label)
2147         {
2148           label = pointer_equiv_class++;
2149           equiv_class_add (pointer_equiv_class_table,
2150                            label, graph->points_to[n]);
2151         }
2152       graph->pointer_label[n] = label;
2153     }
2154 }
2155
2156 /* Perform offline variable substitution, discovering equivalence
2157    classes, and eliminating non-pointer variables.  */
2158
2159 static struct scc_info *
2160 perform_var_substitution (constraint_graph_t graph)
2161 {
2162   unsigned int i;
2163   unsigned int size = graph->size;
2164   struct scc_info *si = init_scc_info (size);
2165
2166   bitmap_obstack_initialize (&iteration_obstack);
2167   pointer_equiv_class_table = htab_create (511, equiv_class_label_hash,
2168                                            equiv_class_label_eq, free);
2169   location_equiv_class_table = htab_create (511, equiv_class_label_hash,
2170                                             equiv_class_label_eq, free);
2171   pointer_equiv_class = 1;
2172   location_equiv_class = 1;
2173
2174   /* Condense the nodes, which means to find SCC's, count incoming
2175      predecessors, and unite nodes in SCC's.  */
2176   for (i = 0; i < FIRST_REF_NODE; i++)
2177     if (!TEST_BIT (si->visited, si->node_mapping[i]))
2178       condense_visit (graph, si, si->node_mapping[i]);
2179
2180   sbitmap_zero (si->visited);
2181   /* Actually the label the nodes for pointer equivalences  */
2182   for (i = 0; i < FIRST_REF_NODE; i++)
2183     if (!TEST_BIT (si->visited, si->node_mapping[i]))
2184       label_visit (graph, si, si->node_mapping[i]);
2185
2186   /* Calculate location equivalence labels.  */
2187   for (i = 0; i < FIRST_REF_NODE; i++)
2188     {
2189       bitmap pointed_by;
2190       bitmap_iterator bi;
2191       unsigned int j;
2192       unsigned int label;
2193
2194       if (!graph->pointed_by[i])
2195         continue;
2196       pointed_by = BITMAP_ALLOC (&iteration_obstack);
2197
2198       /* Translate the pointed-by mapping for pointer equivalence
2199          labels.  */
2200       EXECUTE_IF_SET_IN_BITMAP (graph->pointed_by[i], 0, j, bi)
2201         {
2202           bitmap_set_bit (pointed_by,
2203                           graph->pointer_label[si->node_mapping[j]]);
2204         }
2205       /* The original pointed_by is now dead.  */
2206       BITMAP_FREE (graph->pointed_by[i]);
2207
2208       /* Look up the location equivalence label if one exists, or make
2209          one otherwise.  */
2210       label = equiv_class_lookup (location_equiv_class_table,
2211                                   pointed_by);
2212       if (label == 0)
2213         {
2214           label = location_equiv_class++;
2215           equiv_class_add (location_equiv_class_table,
2216                            label, pointed_by);
2217         }
2218       else
2219         {
2220           if (dump_file && (dump_flags & TDF_DETAILS))
2221             fprintf (dump_file, "Found location equivalence for node %s\n",
2222                      get_varinfo (i)->name);
2223           BITMAP_FREE (pointed_by);
2224         }
2225       graph->loc_label[i] = label;
2226
2227     }
2228
2229   if (dump_file && (dump_flags & TDF_DETAILS))
2230     for (i = 0; i < FIRST_REF_NODE; i++)
2231       {
2232         bool direct_node = TEST_BIT (graph->direct_nodes, i);
2233         fprintf (dump_file,
2234                  "Equivalence classes for %s node id %d:%s are pointer: %d"
2235                  ", location:%d\n",
2236                  direct_node ? "Direct node" : "Indirect node", i,
2237                  get_varinfo (i)->name,
2238                  graph->pointer_label[si->node_mapping[i]],
2239                  graph->loc_label[si->node_mapping[i]]);
2240       }
2241
2242   /* Quickly eliminate our non-pointer variables.  */
2243
2244   for (i = 0; i < FIRST_REF_NODE; i++)
2245     {
2246       unsigned int node = si->node_mapping[i];
2247
2248       if (graph->pointer_label[node] == 0)
2249         {
2250           if (dump_file && (dump_flags & TDF_DETAILS))
2251             fprintf (dump_file,
2252                      "%s is a non-pointer variable, eliminating edges.\n",
2253                      get_varinfo (node)->name);
2254           stats.nonpointer_vars++;
2255           clear_edges_for_node (graph, node);
2256         }
2257     }
2258
2259   return si;
2260 }
2261
2262 /* Free information that was only necessary for variable
2263    substitution.  */
2264
2265 static void
2266 free_var_substitution_info (struct scc_info *si)
2267 {
2268   free_scc_info (si);
2269   free (graph->pointer_label);
2270   free (graph->loc_label);
2271   free (graph->pointed_by);
2272   free (graph->points_to);
2273   free (graph->eq_rep);
2274   sbitmap_free (graph->direct_nodes);
2275   htab_delete (pointer_equiv_class_table);
2276   htab_delete (location_equiv_class_table);
2277   bitmap_obstack_release (&iteration_obstack);
2278 }
2279
2280 /* Return an existing node that is equivalent to NODE, which has
2281    equivalence class LABEL, if one exists.  Return NODE otherwise.  */
2282
2283 static unsigned int
2284 find_equivalent_node (constraint_graph_t graph,
2285                       unsigned int node, unsigned int label)
2286 {
2287   /* If the address version of this variable is unused, we can
2288      substitute it for anything else with the same label.
2289      Otherwise, we know the pointers are equivalent, but not the
2290      locations, and we can unite them later.  */
2291
2292   if (!bitmap_bit_p (graph->address_taken, node))
2293     {
2294       gcc_assert (label < graph->size);
2295
2296       if (graph->eq_rep[label] != -1)
2297         {
2298           /* Unify the two variables since we know they are equivalent.  */
2299           if (unite (graph->eq_rep[label], node))
2300             unify_nodes (graph, graph->eq_rep[label], node, false);
2301           return graph->eq_rep[label];
2302         }
2303       else
2304         {
2305           graph->eq_rep[label] = node;
2306           graph->pe_rep[label] = node;
2307         }
2308     }
2309   else
2310     {
2311       gcc_assert (label < graph->size);
2312       graph->pe[node] = label;
2313       if (graph->pe_rep[label] == -1)
2314         graph->pe_rep[label] = node;
2315     }
2316
2317   return node;
2318 }
2319
2320 /* Unite pointer equivalent but not location equivalent nodes in
2321    GRAPH.  This may only be performed once variable substitution is
2322    finished.  */
2323
2324 static void
2325 unite_pointer_equivalences (constraint_graph_t graph)
2326 {
2327   unsigned int i;
2328
2329   /* Go through the pointer equivalences and unite them to their
2330      representative, if they aren't already.  */
2331   for (i = 0; i < FIRST_REF_NODE; i++)
2332     {
2333       unsigned int label = graph->pe[i];
2334       if (label)
2335         {
2336           int label_rep = graph->pe_rep[label];
2337
2338           if (label_rep == -1)
2339             continue;
2340
2341           label_rep = find (label_rep);
2342           if (label_rep >= 0 && unite (label_rep, find (i)))
2343             unify_nodes (graph, label_rep, i, false);
2344         }
2345     }
2346 }
2347
2348 /* Move complex constraints to the GRAPH nodes they belong to.  */
2349
2350 static void
2351 move_complex_constraints (constraint_graph_t graph)
2352 {
2353   int i;
2354   constraint_t c;
2355
2356   FOR_EACH_VEC_ELT (constraint_t, constraints, i, c)
2357     {
2358       if (c)
2359         {
2360           struct constraint_expr lhs = c->lhs;
2361           struct constraint_expr rhs = c->rhs;
2362
2363           if (lhs.type == DEREF)
2364             {
2365               insert_into_complex (graph, lhs.var, c);
2366             }
2367           else if (rhs.type == DEREF)
2368             {
2369               if (!(get_varinfo (lhs.var)->is_special_var))
2370                 insert_into_complex (graph, rhs.var, c);
2371             }
2372           else if (rhs.type != ADDRESSOF && lhs.var > anything_id
2373                    && (lhs.offset != 0 || rhs.offset != 0))
2374             {
2375               insert_into_complex (graph, rhs.var, c);
2376             }
2377         }
2378     }
2379 }
2380
2381
2382 /* Optimize and rewrite complex constraints while performing
2383    collapsing of equivalent nodes.  SI is the SCC_INFO that is the
2384    result of perform_variable_substitution.  */
2385
2386 static void
2387 rewrite_constraints (constraint_graph_t graph,
2388                      struct scc_info *si)
2389 {
2390   int i;
2391   unsigned int j;
2392   constraint_t c;
2393
2394   for (j = 0; j < graph->size; j++)
2395     gcc_assert (find (j) == j);
2396
2397   FOR_EACH_VEC_ELT (constraint_t, constraints, i, c)
2398     {
2399       struct constraint_expr lhs = c->lhs;
2400       struct constraint_expr rhs = c->rhs;
2401       unsigned int lhsvar = find (lhs.var);
2402       unsigned int rhsvar = find (rhs.var);
2403       unsigned int lhsnode, rhsnode;
2404       unsigned int lhslabel, rhslabel;
2405
2406       lhsnode = si->node_mapping[lhsvar];
2407       rhsnode = si->node_mapping[rhsvar];
2408       lhslabel = graph->pointer_label[lhsnode];
2409       rhslabel = graph->pointer_label[rhsnode];
2410
2411       /* See if it is really a non-pointer variable, and if so, ignore
2412          the constraint.  */
2413       if (lhslabel == 0)
2414         {
2415           if (dump_file && (dump_flags & TDF_DETAILS))
2416             {
2417
2418               fprintf (dump_file, "%s is a non-pointer variable,"
2419                        "ignoring constraint:",
2420                        get_varinfo (lhs.var)->name);
2421               dump_constraint (dump_file, c);
2422             }
2423           VEC_replace (constraint_t, constraints, i, NULL);
2424           continue;
2425         }
2426
2427       if (rhslabel == 0)
2428         {
2429           if (dump_file && (dump_flags & TDF_DETAILS))
2430             {
2431
2432               fprintf (dump_file, "%s is a non-pointer variable,"
2433                        "ignoring constraint:",
2434                        get_varinfo (rhs.var)->name);
2435               dump_constraint (dump_file, c);
2436             }
2437           VEC_replace (constraint_t, constraints, i, NULL);
2438           continue;
2439         }
2440
2441       lhsvar = find_equivalent_node (graph, lhsvar, lhslabel);
2442       rhsvar = find_equivalent_node (graph, rhsvar, rhslabel);
2443       c->lhs.var = lhsvar;
2444       c->rhs.var = rhsvar;
2445
2446     }
2447 }
2448
2449 /* Eliminate indirect cycles involving NODE.  Return true if NODE was
2450    part of an SCC, false otherwise.  */
2451
2452 static bool
2453 eliminate_indirect_cycles (unsigned int node)
2454 {
2455   if (graph->indirect_cycles[node] != -1
2456       && !bitmap_empty_p (get_varinfo (node)->solution))
2457     {
2458       unsigned int i;
2459       VEC(unsigned,heap) *queue = NULL;
2460       int queuepos;
2461       unsigned int to = find (graph->indirect_cycles[node]);
2462       bitmap_iterator bi;
2463
2464       /* We can't touch the solution set and call unify_nodes
2465          at the same time, because unify_nodes is going to do
2466          bitmap unions into it. */
2467
2468       EXECUTE_IF_SET_IN_BITMAP (get_varinfo (node)->solution, 0, i, bi)
2469         {
2470           if (find (i) == i && i != to)
2471             {
2472               if (unite (to, i))
2473                 VEC_safe_push (unsigned, heap, queue, i);
2474             }
2475         }
2476
2477       for (queuepos = 0;
2478            VEC_iterate (unsigned, queue, queuepos, i);
2479            queuepos++)
2480         {
2481           unify_nodes (graph, to, i, true);
2482         }
2483       VEC_free (unsigned, heap, queue);
2484       return true;
2485     }
2486   return false;
2487 }
2488
2489 /* Solve the constraint graph GRAPH using our worklist solver.
2490    This is based on the PW* family of solvers from the "Efficient Field
2491    Sensitive Pointer Analysis for C" paper.
2492    It works by iterating over all the graph nodes, processing the complex
2493    constraints and propagating the copy constraints, until everything stops
2494    changed.  This corresponds to steps 6-8 in the solving list given above.  */
2495
2496 static void
2497 solve_graph (constraint_graph_t graph)
2498 {
2499   unsigned int size = graph->size;
2500   unsigned int i;
2501   bitmap pts;
2502
2503   changed = BITMAP_ALLOC (NULL);
2504
2505   /* Mark all initial non-collapsed nodes as changed.  */
2506   for (i = 0; i < size; i++)
2507     {
2508       varinfo_t ivi = get_varinfo (i);
2509       if (find (i) == i && !bitmap_empty_p (ivi->solution)
2510           && ((graph->succs[i] && !bitmap_empty_p (graph->succs[i]))
2511               || VEC_length (constraint_t, graph->complex[i]) > 0))
2512         bitmap_set_bit (changed, i);
2513     }
2514
2515   /* Allocate a bitmap to be used to store the changed bits.  */
2516   pts = BITMAP_ALLOC (&pta_obstack);
2517
2518   while (!bitmap_empty_p (changed))
2519     {
2520       unsigned int i;
2521       struct topo_info *ti = init_topo_info ();
2522       stats.iterations++;
2523
2524       bitmap_obstack_initialize (&iteration_obstack);
2525
2526       compute_topo_order (graph, ti);
2527
2528       while (VEC_length (unsigned, ti->topo_order) != 0)
2529         {
2530
2531           i = VEC_pop (unsigned, ti->topo_order);
2532
2533           /* If this variable is not a representative, skip it.  */
2534           if (find (i) != i)
2535             continue;
2536
2537           /* In certain indirect cycle cases, we may merge this
2538              variable to another.  */
2539           if (eliminate_indirect_cycles (i) && find (i) != i)
2540             continue;
2541
2542           /* If the node has changed, we need to process the
2543              complex constraints and outgoing edges again.  */
2544           if (bitmap_clear_bit (changed, i))
2545             {
2546               unsigned int j;
2547               constraint_t c;
2548               bitmap solution;
2549               VEC(constraint_t,heap) *complex = graph->complex[i];
2550               bool solution_empty;
2551
2552               /* Compute the changed set of solution bits.  */
2553               bitmap_and_compl (pts, get_varinfo (i)->solution,
2554                                 get_varinfo (i)->oldsolution);
2555
2556               if (bitmap_empty_p (pts))
2557                 continue;
2558
2559               bitmap_ior_into (get_varinfo (i)->oldsolution, pts);
2560
2561               solution = get_varinfo (i)->solution;
2562               solution_empty = bitmap_empty_p (solution);
2563
2564               /* Process the complex constraints */
2565               FOR_EACH_VEC_ELT (constraint_t, complex, j, c)
2566                 {
2567                   /* XXX: This is going to unsort the constraints in
2568                      some cases, which will occasionally add duplicate
2569                      constraints during unification.  This does not
2570                      affect correctness.  */
2571                   c->lhs.var = find (c->lhs.var);
2572                   c->rhs.var = find (c->rhs.var);
2573
2574                   /* The only complex constraint that can change our
2575                      solution to non-empty, given an empty solution,
2576                      is a constraint where the lhs side is receiving
2577                      some set from elsewhere.  */
2578                   if (!solution_empty || c->lhs.type != DEREF)
2579                     do_complex_constraint (graph, c, pts);
2580                 }
2581
2582               solution_empty = bitmap_empty_p (solution);
2583
2584               if (!solution_empty)
2585                 {
2586                   bitmap_iterator bi;
2587                   unsigned eff_escaped_id = find (escaped_id);
2588
2589                   /* Propagate solution to all successors.  */
2590                   EXECUTE_IF_IN_NONNULL_BITMAP (graph->succs[i],
2591                                                 0, j, bi)
2592                     {
2593                       bitmap tmp;
2594                       bool flag;
2595
2596                       unsigned int to = find (j);
2597                       tmp = get_varinfo (to)->solution;
2598                       flag = false;
2599
2600                       /* Don't try to propagate to ourselves.  */
2601                       if (to == i)
2602                         continue;
2603
2604                       /* If we propagate from ESCAPED use ESCAPED as
2605                          placeholder.  */
2606                       if (i == eff_escaped_id)
2607                         flag = bitmap_set_bit (tmp, escaped_id);
2608                       else
2609                         flag = set_union_with_increment (tmp, pts, 0);
2610
2611                       if (flag)
2612                         {
2613                           get_varinfo (to)->solution = tmp;
2614                           bitmap_set_bit (changed, to);
2615                         }
2616                     }
2617                 }
2618             }
2619         }
2620       free_topo_info (ti);
2621       bitmap_obstack_release (&iteration_obstack);
2622     }
2623
2624   BITMAP_FREE (pts);
2625   BITMAP_FREE (changed);
2626   bitmap_obstack_release (&oldpta_obstack);
2627 }
2628
2629 /* Map from trees to variable infos.  */
2630 static struct pointer_map_t *vi_for_tree;
2631
2632
2633 /* Insert ID as the variable id for tree T in the vi_for_tree map.  */
2634
2635 static void
2636 insert_vi_for_tree (tree t, varinfo_t vi)
2637 {
2638   void **slot = pointer_map_insert (vi_for_tree, t);
2639   gcc_assert (vi);
2640   gcc_assert (*slot == NULL);
2641   *slot = vi;
2642 }
2643
2644 /* Find the variable info for tree T in VI_FOR_TREE.  If T does not
2645    exist in the map, return NULL, otherwise, return the varinfo we found.  */
2646
2647 static varinfo_t
2648 lookup_vi_for_tree (tree t)
2649 {
2650   void **slot = pointer_map_contains (vi_for_tree, t);
2651   if (slot == NULL)
2652     return NULL;
2653
2654   return (varinfo_t) *slot;
2655 }
2656
2657 /* Return a printable name for DECL  */
2658
2659 static const char *
2660 alias_get_name (tree decl)
2661 {
2662   const char *res;
2663   char *temp;
2664   int num_printed = 0;
2665
2666   if (DECL_ASSEMBLER_NAME_SET_P (decl))
2667     res = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl));
2668   else
2669     res= get_name (decl);
2670   if (res != NULL)
2671     return res;
2672
2673   res = "NULL";
2674   if (!dump_file)
2675     return res;
2676
2677   if (TREE_CODE (decl) == SSA_NAME)
2678     {
2679       num_printed = asprintf (&temp, "%s_%u",
2680                               alias_get_name (SSA_NAME_VAR (decl)),
2681                               SSA_NAME_VERSION (decl));
2682     }
2683   else if (DECL_P (decl))
2684     {
2685       num_printed = asprintf (&temp, "D.%u", DECL_UID (decl));
2686     }
2687   if (num_printed > 0)
2688     {
2689       res = ggc_strdup (temp);
2690       free (temp);
2691     }
2692   return res;
2693 }
2694
2695 /* Find the variable id for tree T in the map.
2696    If T doesn't exist in the map, create an entry for it and return it.  */
2697
2698 static varinfo_t
2699 get_vi_for_tree (tree t)
2700 {
2701   void **slot = pointer_map_contains (vi_for_tree, t);
2702   if (slot == NULL)
2703     return get_varinfo (create_variable_info_for (t, alias_get_name (t)));
2704
2705   return (varinfo_t) *slot;
2706 }
2707
2708 /* Get a scalar constraint expression for a new temporary variable.  */
2709
2710 static struct constraint_expr
2711 new_scalar_tmp_constraint_exp (const char *name)
2712 {
2713   struct constraint_expr tmp;
2714   varinfo_t vi;
2715
2716   vi = new_var_info (NULL_TREE, name);
2717   vi->offset = 0;
2718   vi->size = -1;
2719   vi->fullsize = -1;
2720   vi->is_full_var = 1;
2721
2722   tmp.var = vi->id;
2723   tmp.type = SCALAR;
2724   tmp.offset = 0;
2725
2726   return tmp;
2727 }
2728
2729 /* Get a constraint expression vector from an SSA_VAR_P node.
2730    If address_p is true, the result will be taken its address of.  */
2731
2732 static void
2733 get_constraint_for_ssa_var (tree t, VEC(ce_s, heap) **results, bool address_p)
2734 {
2735   struct constraint_expr cexpr;
2736   varinfo_t vi;
2737
2738   /* We allow FUNCTION_DECLs here even though it doesn't make much sense.  */
2739   gcc_assert (SSA_VAR_P (t) || DECL_P (t));
2740
2741   /* For parameters, get at the points-to set for the actual parm
2742      decl.  */
2743   if (TREE_CODE (t) == SSA_NAME
2744       && (TREE_CODE (SSA_NAME_VAR (t)) == PARM_DECL
2745           || TREE_CODE (SSA_NAME_VAR (t)) == RESULT_DECL)
2746       && SSA_NAME_IS_DEFAULT_DEF (t))
2747     {
2748       get_constraint_for_ssa_var (SSA_NAME_VAR (t), results, address_p);
2749       return;
2750     }
2751
2752   vi = get_vi_for_tree (t);
2753   cexpr.var = vi->id;
2754   cexpr.type = SCALAR;
2755   cexpr.offset = 0;
2756   /* If we determine the result is "anything", and we know this is readonly,
2757      say it points to readonly memory instead.  */
2758   if (cexpr.var == anything_id && TREE_READONLY (t))
2759     {
2760       gcc_unreachable ();
2761       cexpr.type = ADDRESSOF;
2762       cexpr.var = readonly_id;
2763     }
2764
2765   /* If we are not taking the address of the constraint expr, add all
2766      sub-fiels of the variable as well.  */
2767   if (!address_p
2768       && !vi->is_full_var)
2769     {
2770       for (; vi; vi = vi->next)
2771         {
2772           cexpr.var = vi->id;
2773           VEC_safe_push (ce_s, heap, *results, &cexpr);
2774         }
2775       return;
2776     }
2777
2778   VEC_safe_push (ce_s, heap, *results, &cexpr);
2779 }
2780
2781 /* Process constraint T, performing various simplifications and then
2782    adding it to our list of overall constraints.  */
2783
2784 static void
2785 process_constraint (constraint_t t)
2786 {
2787   struct constraint_expr rhs = t->rhs;
2788   struct constraint_expr lhs = t->lhs;
2789
2790   gcc_assert (rhs.var < VEC_length (varinfo_t, varmap));
2791   gcc_assert (lhs.var < VEC_length (varinfo_t, varmap));
2792
2793   /* If we didn't get any useful constraint from the lhs we get
2794      &ANYTHING as fallback from get_constraint_for.  Deal with
2795      it here by turning it into *ANYTHING.  */
2796   if (lhs.type == ADDRESSOF
2797       && lhs.var == anything_id)
2798     lhs.type = DEREF;
2799
2800   /* ADDRESSOF on the lhs is invalid.  */
2801   gcc_assert (lhs.type != ADDRESSOF);
2802
2803   /* We shouldn't add constraints from things that cannot have pointers.
2804      It's not completely trivial to avoid in the callers, so do it here.  */
2805   if (rhs.type != ADDRESSOF
2806       && !get_varinfo (rhs.var)->may_have_pointers)
2807     return;
2808
2809   /* Likewise adding to the solution of a non-pointer var isn't useful.  */
2810   if (!get_varinfo (lhs.var)->may_have_pointers)
2811     return;
2812
2813   /* This can happen in our IR with things like n->a = *p */
2814   if (rhs.type == DEREF && lhs.type == DEREF && rhs.var != anything_id)
2815     {
2816       /* Split into tmp = *rhs, *lhs = tmp */
2817       struct constraint_expr tmplhs;
2818       tmplhs = new_scalar_tmp_constraint_exp ("doubledereftmp");
2819       process_constraint (new_constraint (tmplhs, rhs));
2820       process_constraint (new_constraint (lhs, tmplhs));
2821     }
2822   else if (rhs.type == ADDRESSOF && lhs.type == DEREF)
2823     {
2824       /* Split into tmp = &rhs, *lhs = tmp */
2825       struct constraint_expr tmplhs;
2826       tmplhs = new_scalar_tmp_constraint_exp ("derefaddrtmp");
2827       process_constraint (new_constraint (tmplhs, rhs));
2828       process_constraint (new_constraint (lhs, tmplhs));
2829     }
2830   else
2831     {
2832       gcc_assert (rhs.type != ADDRESSOF || rhs.offset == 0);
2833       VEC_safe_push (constraint_t, heap, constraints, t);
2834     }
2835 }
2836
2837
2838 /* Return the position, in bits, of FIELD_DECL from the beginning of its
2839    structure.  */
2840
2841 static HOST_WIDE_INT
2842 bitpos_of_field (const tree fdecl)
2843 {
2844   if (!host_integerp (DECL_FIELD_OFFSET (fdecl), 0)
2845       || !host_integerp (DECL_FIELD_BIT_OFFSET (fdecl), 0))
2846     return -1;
2847
2848   return (TREE_INT_CST_LOW (DECL_FIELD_OFFSET (fdecl)) * BITS_PER_UNIT
2849           + TREE_INT_CST_LOW (DECL_FIELD_BIT_OFFSET (fdecl)));
2850 }
2851
2852
2853 /* Get constraint expressions for offsetting PTR by OFFSET.  Stores the
2854    resulting constraint expressions in *RESULTS.  */
2855
2856 static void
2857 get_constraint_for_ptr_offset (tree ptr, tree offset,
2858                                VEC (ce_s, heap) **results)
2859 {
2860   struct constraint_expr c;
2861   unsigned int j, n;
2862   HOST_WIDE_INT rhsunitoffset, rhsoffset;
2863
2864   /* If we do not do field-sensitive PTA adding offsets to pointers
2865      does not change the points-to solution.  */
2866   if (!use_field_sensitive)
2867     {
2868       get_constraint_for_rhs (ptr, results);
2869       return;
2870     }
2871
2872   /* If the offset is not a non-negative integer constant that fits
2873      in a HOST_WIDE_INT, we have to fall back to a conservative
2874      solution which includes all sub-fields of all pointed-to
2875      variables of ptr.  */
2876   if (offset == NULL_TREE
2877       || !host_integerp (offset, 0))
2878     rhsoffset = UNKNOWN_OFFSET;
2879   else
2880     {
2881       /* Make sure the bit-offset also fits.  */
2882       rhsunitoffset = TREE_INT_CST_LOW (offset);
2883       rhsoffset = rhsunitoffset * BITS_PER_UNIT;
2884       if (rhsunitoffset != rhsoffset / BITS_PER_UNIT)
2885         rhsoffset = UNKNOWN_OFFSET;
2886     }
2887
2888   get_constraint_for_rhs (ptr, results);
2889   if (rhsoffset == 0)
2890     return;
2891
2892   /* As we are eventually appending to the solution do not use
2893      VEC_iterate here.  */
2894   n = VEC_length (ce_s, *results);
2895   for (j = 0; j < n; j++)
2896     {
2897       varinfo_t curr;
2898       c = *VEC_index (ce_s, *results, j);
2899       curr = get_varinfo (c.var);
2900
2901       if (c.type == ADDRESSOF
2902           /* If this varinfo represents a full variable just use it.  */
2903           && curr->is_full_var)
2904         c.offset = 0;
2905       else if (c.type == ADDRESSOF
2906                /* If we do not know the offset add all subfields.  */
2907                && rhsoffset == UNKNOWN_OFFSET)
2908         {
2909           varinfo_t temp = lookup_vi_for_tree (curr->decl);
2910           do
2911             {
2912               struct constraint_expr c2;
2913               c2.var = temp->id;
2914               c2.type = ADDRESSOF;
2915               c2.offset = 0;
2916               if (c2.var != c.var)
2917                 VEC_safe_push (ce_s, heap, *results, &c2);
2918               temp = temp->next;
2919             }
2920           while (temp);
2921         }
2922       else if (c.type == ADDRESSOF)
2923         {
2924           varinfo_t temp;
2925           unsigned HOST_WIDE_INT offset = curr->offset + rhsoffset;
2926
2927           /* Search the sub-field which overlaps with the
2928              pointed-to offset.  If the result is outside of the variable
2929              we have to provide a conservative result, as the variable is
2930              still reachable from the resulting pointer (even though it
2931              technically cannot point to anything).  The last and first
2932              sub-fields are such conservative results.
2933              ???  If we always had a sub-field for &object + 1 then
2934              we could represent this in a more precise way.  */
2935           if (rhsoffset < 0
2936               && curr->offset < offset)
2937             offset = 0;
2938           temp = first_or_preceding_vi_for_offset (curr, offset);
2939
2940           /* If the found variable is not exactly at the pointed to
2941              result, we have to include the next variable in the
2942              solution as well.  Otherwise two increments by offset / 2
2943              do not result in the same or a conservative superset
2944              solution.  */
2945           if (temp->offset != offset
2946               && temp->next != NULL)
2947             {
2948               struct constraint_expr c2;
2949               c2.var = temp->next->id;
2950               c2.type = ADDRESSOF;
2951               c2.offset = 0;
2952               VEC_safe_push (ce_s, heap, *results, &c2);
2953             }
2954           c.var = temp->id;
2955           c.offset = 0;
2956         }
2957       else
2958         c.offset = rhsoffset;
2959
2960       VEC_replace (ce_s, *results, j, &c);
2961     }
2962 }
2963
2964
2965 /* Given a COMPONENT_REF T, return the constraint_expr vector for it.
2966    If address_p is true the result will be taken its address of.
2967    If lhs_p is true then the constraint expression is assumed to be used
2968    as the lhs.  */
2969
2970 static void
2971 get_constraint_for_component_ref (tree t, VEC(ce_s, heap) **results,
2972                                   bool address_p, bool lhs_p)
2973 {
2974   tree orig_t = t;
2975   HOST_WIDE_INT bitsize = -1;
2976   HOST_WIDE_INT bitmaxsize = -1;
2977   HOST_WIDE_INT bitpos;
2978   tree forzero;
2979   struct constraint_expr *result;
2980
2981   /* Some people like to do cute things like take the address of
2982      &0->a.b */
2983   forzero = t;
2984   while (handled_component_p (forzero)
2985          || INDIRECT_REF_P (forzero)
2986          || TREE_CODE (forzero) == MEM_REF)
2987     forzero = TREE_OPERAND (forzero, 0);
2988
2989   if (CONSTANT_CLASS_P (forzero) && integer_zerop (forzero))
2990     {
2991       struct constraint_expr temp;
2992
2993       temp.offset = 0;
2994       temp.var = integer_id;
2995       temp.type = SCALAR;
2996       VEC_safe_push (ce_s, heap, *results, &temp);
2997       return;
2998     }
2999
3000   /* Handle type-punning through unions.  If we are extracting a pointer
3001      from a union via a possibly type-punning access that pointer
3002      points to anything, similar to a conversion of an integer to
3003      a pointer.  */
3004   if (!lhs_p)
3005     {
3006       tree u;
3007       for (u = t;
3008            TREE_CODE (u) == COMPONENT_REF || TREE_CODE (u) == ARRAY_REF;
3009            u = TREE_OPERAND (u, 0))
3010         if (TREE_CODE (u) == COMPONENT_REF
3011             && TREE_CODE (TREE_TYPE (TREE_OPERAND (u, 0))) == UNION_TYPE)
3012           {
3013             struct constraint_expr temp;
3014
3015             temp.offset = 0;
3016             temp.var = anything_id;
3017             temp.type = ADDRESSOF;
3018             VEC_safe_push (ce_s, heap, *results, &temp);
3019             return;
3020           }
3021     }
3022
3023   t = get_ref_base_and_extent (t, &bitpos, &bitsize, &bitmaxsize);
3024
3025   /* Pretend to take the address of the base, we'll take care of
3026      adding the required subset of sub-fields below.  */
3027   get_constraint_for_1 (t, results, true, lhs_p);
3028   gcc_assert (VEC_length (ce_s, *results) == 1);
3029   result = VEC_last (ce_s, *results);
3030
3031   if (result->type == SCALAR
3032       && get_varinfo (result->var)->is_full_var)
3033     /* For single-field vars do not bother about the offset.  */
3034     result->offset = 0;
3035   else if (result->type == SCALAR)
3036     {
3037       /* In languages like C, you can access one past the end of an
3038          array.  You aren't allowed to dereference it, so we can
3039          ignore this constraint. When we handle pointer subtraction,
3040          we may have to do something cute here.  */
3041
3042       if ((unsigned HOST_WIDE_INT)bitpos < get_varinfo (result->var)->fullsize
3043           && bitmaxsize != 0)
3044         {
3045           /* It's also not true that the constraint will actually start at the
3046              right offset, it may start in some padding.  We only care about
3047              setting the constraint to the first actual field it touches, so
3048              walk to find it.  */
3049           struct constraint_expr cexpr = *result;
3050           varinfo_t curr;
3051           VEC_pop (ce_s, *results);
3052           cexpr.offset = 0;
3053           for (curr = get_varinfo (cexpr.var); curr; curr = curr->next)
3054             {
3055               if (ranges_overlap_p (curr->offset, curr->size,
3056                                     bitpos, bitmaxsize))
3057                 {
3058                   cexpr.var = curr->id;
3059                   VEC_safe_push (ce_s, heap, *results, &cexpr);
3060                   if (address_p)
3061                     break;
3062                 }
3063             }
3064           /* If we are going to take the address of this field then
3065              to be able to compute reachability correctly add at least
3066              the last field of the variable.  */
3067           if (address_p
3068               && VEC_length (ce_s, *results) == 0)
3069             {
3070               curr = get_varinfo (cexpr.var);
3071               while (curr->next != NULL)
3072                 curr = curr->next;
3073               cexpr.var = curr->id;
3074               VEC_safe_push (ce_s, heap, *results, &cexpr);
3075             }
3076           else if (VEC_length (ce_s, *results) == 0)
3077             /* Assert that we found *some* field there. The user couldn't be
3078                accessing *only* padding.  */
3079             /* Still the user could access one past the end of an array
3080                embedded in a struct resulting in accessing *only* padding.  */
3081             /* Or accessing only padding via type-punning to a type
3082                that has a filed just in padding space.  */
3083             {
3084               cexpr.type = SCALAR;
3085               cexpr.var = anything_id;
3086               cexpr.offset = 0;
3087               VEC_safe_push (ce_s, heap, *results, &cexpr);
3088             }
3089         }
3090       else if (bitmaxsize == 0)
3091         {
3092           if (dump_file && (dump_flags & TDF_DETAILS))
3093             fprintf (dump_file, "Access to zero-sized part of variable,"
3094                      "ignoring\n");
3095         }
3096       else
3097         if (dump_file && (dump_flags & TDF_DETAILS))
3098           fprintf (dump_file, "Access to past the end of variable, ignoring\n");
3099     }
3100   else if (result->type == DEREF)
3101     {
3102       /* If we do not know exactly where the access goes say so.  Note
3103          that only for non-structure accesses we know that we access
3104          at most one subfiled of any variable.  */
3105       if (bitpos == -1
3106           || bitsize != bitmaxsize
3107           || AGGREGATE_TYPE_P (TREE_TYPE (orig_t))
3108           || result->offset == UNKNOWN_OFFSET)
3109         result->offset = UNKNOWN_OFFSET;
3110       else
3111         result->offset += bitpos;
3112     }
3113   else if (result->type == ADDRESSOF)
3114     {
3115       /* We can end up here for component references on a
3116          VIEW_CONVERT_EXPR <>(&foobar).  */
3117       result->type = SCALAR;
3118       result->var = anything_id;
3119       result->offset = 0;
3120     }
3121   else
3122     gcc_unreachable ();
3123 }
3124
3125
3126 /* Dereference the constraint expression CONS, and return the result.
3127    DEREF (ADDRESSOF) = SCALAR
3128    DEREF (SCALAR) = DEREF
3129    DEREF (DEREF) = (temp = DEREF1; result = DEREF(temp))
3130    This is needed so that we can handle dereferencing DEREF constraints.  */
3131
3132 static void
3133 do_deref (VEC (ce_s, heap) **constraints)
3134 {
3135   struct constraint_expr *c;
3136   unsigned int i = 0;
3137
3138   FOR_EACH_VEC_ELT (ce_s, *constraints, i, c)
3139     {
3140       if (c->type == SCALAR)
3141         c->type = DEREF;
3142       else if (c->type == ADDRESSOF)
3143         c->type = SCALAR;
3144       else if (c->type == DEREF)
3145         {
3146           struct constraint_expr tmplhs;
3147           tmplhs = new_scalar_tmp_constraint_exp ("dereftmp");
3148           process_constraint (new_constraint (tmplhs, *c));
3149           c->var = tmplhs.var;
3150         }
3151       else
3152         gcc_unreachable ();
3153     }
3154 }
3155
3156 /* Given a tree T, return the constraint expression for taking the
3157    address of it.  */
3158
3159 static void
3160 get_constraint_for_address_of (tree t, VEC (ce_s, heap) **results)
3161 {
3162   struct constraint_expr *c;
3163   unsigned int i;
3164
3165   get_constraint_for_1 (t, results, true, true);
3166
3167   FOR_EACH_VEC_ELT (ce_s, *results, i, c)
3168     {
3169       if (c->type == DEREF)
3170         c->type = SCALAR;
3171       else
3172         c->type = ADDRESSOF;
3173     }
3174 }
3175
3176 /* Given a tree T, return the constraint expression for it.  */
3177
3178 static void
3179 get_constraint_for_1 (tree t, VEC (ce_s, heap) **results, bool address_p,
3180                       bool lhs_p)
3181 {
3182   struct constraint_expr temp;
3183
3184   /* x = integer is all glommed to a single variable, which doesn't
3185      point to anything by itself.  That is, of course, unless it is an
3186      integer constant being treated as a pointer, in which case, we
3187      will return that this is really the addressof anything.  This
3188      happens below, since it will fall into the default case. The only
3189      case we know something about an integer treated like a pointer is
3190      when it is the NULL pointer, and then we just say it points to
3191      NULL.
3192
3193      Do not do that if -fno-delete-null-pointer-checks though, because
3194      in that case *NULL does not fail, so it _should_ alias *anything.
3195      It is not worth adding a new option or renaming the existing one,
3196      since this case is relatively obscure.  */
3197   if ((TREE_CODE (t) == INTEGER_CST
3198        && integer_zerop (t))
3199       /* The only valid CONSTRUCTORs in gimple with pointer typed
3200          elements are zero-initializer.  But in IPA mode we also
3201          process global initializers, so verify at least.  */
3202       || (TREE_CODE (t) == CONSTRUCTOR
3203           && CONSTRUCTOR_NELTS (t) == 0))
3204     {
3205       if (flag_delete_null_pointer_checks)
3206         temp.var = nothing_id;
3207       else
3208         temp.var = nonlocal_id;
3209       temp.type = ADDRESSOF;
3210       temp.offset = 0;
3211       VEC_safe_push (ce_s, heap, *results, &temp);
3212       return;
3213     }
3214
3215   /* String constants are read-only.  */
3216   if (TREE_CODE (t) == STRING_CST)
3217     {
3218       temp.var = readonly_id;
3219       temp.type = SCALAR;
3220       temp.offset = 0;
3221       VEC_safe_push (ce_s, heap, *results, &temp);
3222       return;
3223     }
3224
3225   switch (TREE_CODE_CLASS (TREE_CODE (t)))
3226     {
3227     case tcc_expression:
3228       {
3229         switch (TREE_CODE (t))
3230           {
3231           case ADDR_EXPR:
3232             get_constraint_for_address_of (TREE_OPERAND (t, 0), results);
3233             return;
3234           default:;
3235           }
3236         break;
3237       }
3238     case tcc_reference:
3239       {
3240         switch (TREE_CODE (t))
3241           {
3242           case MEM_REF:
3243             {
3244               struct constraint_expr cs;
3245               varinfo_t vi, curr;
3246               tree off = double_int_to_tree (sizetype, mem_ref_offset (t));
3247               get_constraint_for_ptr_offset (TREE_OPERAND (t, 0), off, results);
3248               do_deref (results);
3249
3250               /* If we are not taking the address then make sure to process
3251                  all subvariables we might access.  */
3252               cs = *VEC_last (ce_s, *results);
3253               if (address_p
3254                   || cs.type != SCALAR)
3255                 return;
3256
3257               vi = get_varinfo (cs.var);
3258               curr = vi->next;
3259               if (!vi->is_full_var
3260                   && curr)
3261                 {
3262                   unsigned HOST_WIDE_INT size;
3263                   if (host_integerp (TYPE_SIZE (TREE_TYPE (t)), 1))
3264                     size = TREE_INT_CST_LOW (TYPE_SIZE (TREE_TYPE (t)));
3265                   else
3266                     size = -1;
3267                   for (; curr; curr = curr->next)
3268                     {
3269                       if (curr->offset - vi->offset < size)
3270                         {
3271                           cs.var = curr->id;
3272                           VEC_safe_push (ce_s, heap, *results, &cs);
3273                         }
3274                       else
3275                         break;
3276                     }
3277                 }
3278               return;
3279             }
3280           case ARRAY_REF:
3281           case ARRAY_RANGE_REF:
3282           case COMPONENT_REF:
3283             get_constraint_for_component_ref (t, results, address_p, lhs_p);
3284             return;
3285           case VIEW_CONVERT_EXPR:
3286             get_constraint_for_1 (TREE_OPERAND (t, 0), results, address_p,
3287                                   lhs_p);
3288             return;
3289           /* We are missing handling for TARGET_MEM_REF here.  */
3290           default:;
3291           }
3292         break;
3293       }
3294     case tcc_exceptional:
3295       {
3296         switch (TREE_CODE (t))
3297           {
3298           case SSA_NAME:
3299             {
3300               get_constraint_for_ssa_var (t, results, address_p);
3301               return;
3302             }
3303           case CONSTRUCTOR:
3304             {
3305               unsigned int i;
3306               tree val;
3307               VEC (ce_s, heap) *tmp = NULL;
3308               FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (t), i, val)
3309                 {
3310                   struct constraint_expr *rhsp;
3311                   unsigned j;
3312                   get_constraint_for_1 (val, &tmp, address_p, lhs_p);
3313                   FOR_EACH_VEC_ELT (ce_s, tmp, j, rhsp)
3314                     VEC_safe_push (ce_s, heap, *results, rhsp);
3315                   VEC_truncate (ce_s, tmp, 0);
3316                 }
3317               VEC_free (ce_s, heap, tmp);
3318               /* We do not know whether the constructor was complete,
3319                  so technically we have to add &NOTHING or &ANYTHING
3320                  like we do for an empty constructor as well.  */
3321               return;
3322             }
3323           default:;
3324           }
3325         break;
3326       }
3327     case tcc_declaration:
3328       {
3329         get_constraint_for_ssa_var (t, results, address_p);
3330         return;
3331       }
3332     case tcc_constant:
3333       {
3334         /* We cannot refer to automatic variables through constants.  */ 
3335         temp.type = ADDRESSOF;
3336         temp.var = nonlocal_id;
3337         temp.offset = 0;
3338         VEC_safe_push (ce_s, heap, *results, &temp);
3339         return;
3340       }
3341     default:;
3342     }
3343
3344   /* The default fallback is a constraint from anything.  */
3345   temp.type = ADDRESSOF;
3346   temp.var = anything_id;
3347   temp.offset = 0;
3348   VEC_safe_push (ce_s, heap, *results, &temp);
3349 }
3350
3351 /* Given a gimple tree T, return the constraint expression vector for it.  */
3352
3353 static void
3354 get_constraint_for (tree t, VEC (ce_s, heap) **results)
3355 {
3356   gcc_assert (VEC_length (ce_s, *results) == 0);
3357
3358   get_constraint_for_1 (t, results, false, true);
3359 }
3360
3361 /* Given a gimple tree T, return the constraint expression vector for it
3362    to be used as the rhs of a constraint.  */
3363
3364 static void
3365 get_constraint_for_rhs (tree t, VEC (ce_s, heap) **results)
3366 {
3367   gcc_assert (VEC_length (ce_s, *results) == 0);
3368
3369   get_constraint_for_1 (t, results, false, false);
3370 }
3371
3372
3373 /* Efficiently generates constraints from all entries in *RHSC to all
3374    entries in *LHSC.  */
3375
3376 static void
3377 process_all_all_constraints (VEC (ce_s, heap) *lhsc, VEC (ce_s, heap) *rhsc)
3378 {
3379   struct constraint_expr *lhsp, *rhsp;
3380   unsigned i, j;
3381
3382   if (VEC_length (ce_s, lhsc) <= 1
3383       || VEC_length (ce_s, rhsc) <= 1)
3384     {
3385       FOR_EACH_VEC_ELT (ce_s, lhsc, i, lhsp)
3386         FOR_EACH_VEC_ELT (ce_s, rhsc, j, rhsp)
3387           process_constraint (new_constraint (*lhsp, *rhsp));
3388     }
3389   else
3390     {
3391       struct constraint_expr tmp;
3392       tmp = new_scalar_tmp_constraint_exp ("allalltmp");
3393       FOR_EACH_VEC_ELT (ce_s, rhsc, i, rhsp)
3394         process_constraint (new_constraint (tmp, *rhsp));
3395       FOR_EACH_VEC_ELT (ce_s, lhsc, i, lhsp)
3396         process_constraint (new_constraint (*lhsp, tmp));
3397     }
3398 }
3399
3400 /* Handle aggregate copies by expanding into copies of the respective
3401    fields of the structures.  */
3402
3403 static void
3404 do_structure_copy (tree lhsop, tree rhsop)
3405 {
3406   struct constraint_expr *lhsp, *rhsp;
3407   VEC (ce_s, heap) *lhsc = NULL, *rhsc = NULL;
3408   unsigned j;
3409
3410   get_constraint_for (lhsop, &lhsc);
3411   get_constraint_for_rhs (rhsop, &rhsc);
3412   lhsp = VEC_index (ce_s, lhsc, 0);
3413   rhsp = VEC_index (ce_s, rhsc, 0);
3414   if (lhsp->type == DEREF
3415       || (lhsp->type == ADDRESSOF && lhsp->var == anything_id)
3416       || rhsp->type == DEREF)
3417     {
3418       if (lhsp->type == DEREF)
3419         {
3420           gcc_assert (VEC_length (ce_s, lhsc) == 1);
3421           lhsp->offset = UNKNOWN_OFFSET;
3422         }
3423       if (rhsp->type == DEREF)
3424         {
3425           gcc_assert (VEC_length (ce_s, rhsc) == 1);
3426           rhsp->offset = UNKNOWN_OFFSET;
3427         }
3428       process_all_all_constraints (lhsc, rhsc);
3429     }
3430   else if (lhsp->type == SCALAR
3431            && (rhsp->type == SCALAR
3432                || rhsp->type == ADDRESSOF))
3433     {
3434       HOST_WIDE_INT lhssize, lhsmaxsize, lhsoffset;
3435       HOST_WIDE_INT rhssize, rhsmaxsize, rhsoffset;
3436       unsigned k = 0;
3437       get_ref_base_and_extent (lhsop, &lhsoffset, &lhssize, &lhsmaxsize);
3438       get_ref_base_and_extent (rhsop, &rhsoffset, &rhssize, &rhsmaxsize);
3439       for (j = 0; VEC_iterate (ce_s, lhsc, j, lhsp);)
3440         {
3441           varinfo_t lhsv, rhsv;
3442           rhsp = VEC_index (ce_s, rhsc, k);
3443           lhsv = get_varinfo (lhsp->var);
3444           rhsv = get_varinfo (rhsp->var);
3445           if (lhsv->may_have_pointers
3446               && (lhsv->is_full_var
3447                   || rhsv->is_full_var
3448                   || ranges_overlap_p (lhsv->offset + rhsoffset, lhsv->size,
3449                                        rhsv->offset + lhsoffset, rhsv->size)))
3450             process_constraint (new_constraint (*lhsp, *rhsp));
3451           if (!rhsv->is_full_var
3452               && (lhsv->is_full_var
3453                   || (lhsv->offset + rhsoffset + lhsv->size
3454                       > rhsv->offset + lhsoffset + rhsv->size)))
3455             {
3456               ++k;
3457               if (k >= VEC_length (ce_s, rhsc))
3458                 break;
3459             }
3460           else
3461             ++j;
3462         }
3463     }
3464   else
3465     gcc_unreachable ();
3466
3467   VEC_free (ce_s, heap, lhsc);
3468   VEC_free (ce_s, heap, rhsc);
3469 }
3470
3471 /* Create constraints ID = { rhsc }.  */
3472
3473 static void
3474 make_constraints_to (unsigned id, VEC(ce_s, heap) *rhsc)
3475 {
3476   struct constraint_expr *c;
3477   struct constraint_expr includes;
3478   unsigned int j;
3479
3480   includes.var = id;
3481   includes.offset = 0;
3482   includes.type = SCALAR;
3483
3484   FOR_EACH_VEC_ELT (ce_s, rhsc, j, c)
3485     process_constraint (new_constraint (includes, *c));
3486 }
3487
3488 /* Create a constraint ID = OP.  */
3489
3490 static void
3491 make_constraint_to (unsigned id, tree op)
3492 {
3493   VEC(ce_s, heap) *rhsc = NULL;
3494   get_constraint_for_rhs (op, &rhsc);
3495   make_constraints_to (id, rhsc);
3496   VEC_free (ce_s, heap, rhsc);
3497 }
3498
3499 /* Create a constraint ID = &FROM.  */
3500
3501 static void
3502 make_constraint_from (varinfo_t vi, int from)
3503 {
3504   struct constraint_expr lhs, rhs;
3505
3506   lhs.var = vi->id;
3507   lhs.offset = 0;
3508   lhs.type = SCALAR;
3509
3510   rhs.var = from;
3511   rhs.offset = 0;
3512   rhs.type = ADDRESSOF;
3513   process_constraint (new_constraint (lhs, rhs));
3514 }
3515
3516 /* Create a constraint ID = FROM.  */
3517
3518 static void
3519 make_copy_constraint (varinfo_t vi, int from)
3520 {
3521   struct constraint_expr lhs, rhs;
3522
3523   lhs.var = vi->id;
3524   lhs.offset = 0;
3525   lhs.type = SCALAR;
3526
3527   rhs.var = from;
3528   rhs.offset = 0;
3529   rhs.type = SCALAR;
3530   process_constraint (new_constraint (lhs, rhs));
3531 }
3532
3533 /* Make constraints necessary to make OP escape.  */
3534
3535 static void
3536 make_escape_constraint (tree op)
3537 {
3538   make_constraint_to (escaped_id, op);
3539 }
3540
3541 /* Add constraints to that the solution of VI is transitively closed.  */
3542
3543 static void
3544 make_transitive_closure_constraints (varinfo_t vi)
3545 {
3546   struct constraint_expr lhs, rhs;
3547
3548   /* VAR = *VAR;  */
3549   lhs.type = SCALAR;
3550   lhs.var = vi->id;
3551   lhs.offset = 0;
3552   rhs.type = DEREF;
3553   rhs.var = vi->id;
3554   rhs.offset = 0;
3555   process_constraint (new_constraint (lhs, rhs));
3556
3557   /* VAR = VAR + UNKNOWN;  */
3558   lhs.type = SCALAR;
3559   lhs.var = vi->id;
3560   lhs.offset = 0;
3561   rhs.type = SCALAR;
3562   rhs.var = vi->id;
3563   rhs.offset = UNKNOWN_OFFSET;
3564   process_constraint (new_constraint (lhs, rhs));
3565 }
3566
3567 /* Temporary storage for fake var decls.  */
3568 struct obstack fake_var_decl_obstack;
3569
3570 /* Build a fake VAR_DECL acting as referrer to a DECL_UID.  */
3571
3572 static tree
3573 build_fake_var_decl (tree type)
3574 {
3575   tree decl = (tree) XOBNEW (&fake_var_decl_obstack, struct tree_var_decl);
3576   memset (decl, 0, sizeof (struct tree_var_decl));
3577   TREE_SET_CODE (decl, VAR_DECL);
3578   TREE_TYPE (decl) = type;
3579   DECL_UID (decl) = allocate_decl_uid ();
3580   SET_DECL_PT_UID (decl, -1);
3581   layout_decl (decl, 0);
3582   return decl;
3583 }
3584
3585 /* Create a new artificial heap variable with NAME.
3586    Return the created variable.  */
3587
3588 static varinfo_t
3589 make_heapvar (const char *name)
3590 {
3591   varinfo_t vi;
3592   tree heapvar;
3593   
3594   heapvar = build_fake_var_decl (ptr_type_node);
3595   DECL_EXTERNAL (heapvar) = 1;
3596
3597   vi = new_var_info (heapvar, name);
3598   vi->is_artificial_var = true;
3599   vi->is_heap_var = true;
3600   vi->is_unknown_size_var = true;
3601   vi->offset = 0;
3602   vi->fullsize = ~0;
3603   vi->size = ~0;
3604   vi->is_full_var = true;
3605   insert_vi_for_tree (heapvar, vi);
3606
3607   return vi;
3608 }
3609
3610 /* Create a new artificial heap variable with NAME and make a
3611    constraint from it to LHS.  Return the created variable.  */
3612
3613 static varinfo_t
3614 make_constraint_from_heapvar (varinfo_t lhs, const char *name)
3615 {
3616   varinfo_t vi = make_heapvar (name);
3617   make_constraint_from (lhs, vi->id);
3618
3619   return vi;
3620 }
3621
3622 /* Create a new artificial heap variable with NAME and make a
3623    constraint from it to LHS.  Set flags according to a tag used
3624    for tracking restrict pointers.  */
3625
3626 static void
3627 make_constraint_from_restrict (varinfo_t lhs, const char *name)
3628 {
3629   varinfo_t vi;
3630   vi = make_constraint_from_heapvar (lhs, name);
3631   vi->is_restrict_var = 1;
3632   vi->is_global_var = 0;
3633   vi->is_special_var = 1;
3634   vi->may_have_pointers = 0;
3635 }
3636
3637 /* In IPA mode there are varinfos for different aspects of reach
3638    function designator.  One for the points-to set of the return
3639    value, one for the variables that are clobbered by the function,
3640    one for its uses and one for each parameter (including a single
3641    glob for remaining variadic arguments).  */
3642
3643 enum { fi_clobbers = 1, fi_uses = 2,
3644        fi_static_chain = 3, fi_result = 4, fi_parm_base = 5 };
3645
3646 /* Get a constraint for the requested part of a function designator FI
3647    when operating in IPA mode.  */
3648
3649 static struct constraint_expr
3650 get_function_part_constraint (varinfo_t fi, unsigned part)
3651 {
3652   struct constraint_expr c;
3653
3654   gcc_assert (in_ipa_mode);
3655
3656   if (fi->id == anything_id)
3657     {
3658       /* ???  We probably should have a ANYFN special variable.  */
3659       c.var = anything_id;
3660       c.offset = 0;
3661       c.type = SCALAR;
3662     }
3663   else if (TREE_CODE (fi->decl) == FUNCTION_DECL)
3664     {
3665       varinfo_t ai = first_vi_for_offset (fi, part);
3666       if (ai)
3667         c.var = ai->id;
3668       else
3669         c.var = anything_id;
3670       c.offset = 0;
3671       c.type = SCALAR;
3672     }
3673   else
3674     {
3675       c.var = fi->id;
3676       c.offset = part;
3677       c.type = DEREF;
3678     }
3679
3680   return c;
3681 }
3682
3683 /* For non-IPA mode, generate constraints necessary for a call on the
3684    RHS.  */
3685
3686 static void
3687 handle_rhs_call (gimple stmt, VEC(ce_s, heap) **results)
3688 {
3689   struct constraint_expr rhsc;
3690   unsigned i;
3691   bool returns_uses = false;
3692
3693   for (i = 0; i < gimple_call_num_args (stmt); ++i)
3694     {
3695       tree arg = gimple_call_arg (stmt, i);
3696       int flags = gimple_call_arg_flags (stmt, i);
3697
3698       /* If the argument is not used we can ignore it.  */
3699       if (flags & EAF_UNUSED)
3700         continue;
3701
3702       /* As we compute ESCAPED context-insensitive we do not gain
3703          any precision with just EAF_NOCLOBBER but not EAF_NOESCAPE
3704          set.  The argument would still get clobbered through the
3705          escape solution.
3706          ???  We might get away with less (and more precise) constraints
3707          if using a temporary for transitively closing things.  */
3708       if ((flags & EAF_NOCLOBBER)
3709            && (flags & EAF_NOESCAPE))
3710         {
3711           varinfo_t uses = get_call_use_vi (stmt);
3712           if (!(flags & EAF_DIRECT))
3713             make_transitive_closure_constraints (uses);
3714           make_constraint_to (uses->id, arg);
3715           returns_uses = true;
3716         }
3717       else if (flags & EAF_NOESCAPE)
3718         {
3719           varinfo_t uses = get_call_use_vi (stmt);
3720           varinfo_t clobbers = get_call_clobber_vi (stmt);
3721           if (!(flags & EAF_DIRECT))
3722             {
3723               make_transitive_closure_constraints (uses);
3724               make_transitive_closure_constraints (clobbers);
3725             }
3726           make_constraint_to (uses->id, arg);
3727           make_constraint_to (clobbers->id, arg);
3728           returns_uses = true;
3729         }
3730       else
3731         make_escape_constraint (arg);
3732     }
3733
3734   /* If we added to the calls uses solution make sure we account for
3735      pointers to it to be returned.  */
3736   if (returns_uses)
3737     {
3738       rhsc.var = get_call_use_vi (stmt)->id;
3739       rhsc.offset = 0;
3740       rhsc.type = SCALAR;
3741       VEC_safe_push (ce_s, heap, *results, &rhsc);
3742     }
3743
3744   /* The static chain escapes as well.  */
3745   if (gimple_call_chain (stmt))
3746     make_escape_constraint (gimple_call_chain (stmt));
3747
3748   /* And if we applied NRV the address of the return slot escapes as well.  */
3749   if (gimple_call_return_slot_opt_p (stmt)
3750       && gimple_call_lhs (stmt) != NULL_TREE
3751       && TREE_ADDRESSABLE (TREE_TYPE (gimple_call_lhs (stmt))))
3752     {
3753       VEC(ce_s, heap) *tmpc = NULL;
3754       struct constraint_expr lhsc, *c;
3755       get_constraint_for_address_of (gimple_call_lhs (stmt), &tmpc);
3756       lhsc.var = escaped_id;
3757       lhsc.offset = 0;
3758       lhsc.type = SCALAR;
3759       FOR_EACH_VEC_ELT (ce_s, tmpc, i, c)
3760         process_constraint (new_constraint (lhsc, *c));
3761       VEC_free(ce_s, heap, tmpc);
3762     }
3763
3764   /* Regular functions return nonlocal memory.  */
3765   rhsc.var = nonlocal_id;
3766   rhsc.offset = 0;
3767   rhsc.type = SCALAR;
3768   VEC_safe_push (ce_s, heap, *results, &rhsc);
3769 }
3770
3771 /* For non-IPA mode, generate constraints necessary for a call
3772    that returns a pointer and assigns it to LHS.  This simply makes
3773    the LHS point to global and escaped variables.  */
3774
3775 static void
3776 handle_lhs_call (gimple stmt, tree lhs, int flags, VEC(ce_s, heap) *rhsc,
3777                  tree fndecl)
3778 {
3779   VEC(ce_s, heap) *lhsc = NULL;
3780
3781   get_constraint_for (lhs, &lhsc);
3782   /* If the store is to a global decl make sure to
3783      add proper escape constraints.  */
3784   lhs = get_base_address (lhs);
3785   if (lhs
3786       && DECL_P (lhs)
3787       && is_global_var (lhs))
3788     {
3789       struct constraint_expr tmpc;
3790       tmpc.var = escaped_id;
3791       tmpc.offset = 0;
3792       tmpc.type = SCALAR;
3793       VEC_safe_push (ce_s, heap, lhsc, &tmpc);
3794     }
3795
3796   /* If the call returns an argument unmodified override the rhs
3797      constraints.  */
3798   flags = gimple_call_return_flags (stmt);
3799   if (flags & ERF_RETURNS_ARG
3800       && (flags & ERF_RETURN_ARG_MASK) < gimple_call_num_args (stmt))
3801     {
3802       tree arg;
3803       rhsc = NULL;
3804       arg = gimple_call_arg (stmt, flags & ERF_RETURN_ARG_MASK);
3805       get_constraint_for (arg, &rhsc);
3806       process_all_all_constraints (lhsc, rhsc);
3807       VEC_free (ce_s, heap, rhsc);
3808     }
3809   else if (flags & ERF_NOALIAS)
3810     {
3811       varinfo_t vi;
3812       struct constraint_expr tmpc;
3813       rhsc = NULL;
3814       vi = make_heapvar ("HEAP");
3815       /* We delay marking allocated storage global until we know if
3816          it escapes.  */
3817       DECL_EXTERNAL (vi->decl) = 0;
3818       vi->is_global_var = 0;
3819       /* If this is not a real malloc call assume the memory was
3820          initialized and thus may point to global memory.  All
3821          builtin functions with the malloc attribute behave in a sane way.  */
3822       if (!fndecl
3823           || DECL_BUILT_IN_CLASS (fndecl) != BUILT_IN_NORMAL)
3824         make_constraint_from (vi, nonlocal_id);
3825       tmpc.var = vi->id;
3826       tmpc.offset = 0;
3827       tmpc.type = ADDRESSOF;
3828       VEC_safe_push (ce_s, heap, rhsc, &tmpc);
3829     }
3830
3831   process_all_all_constraints (lhsc, rhsc);
3832
3833   VEC_free (ce_s, heap, lhsc);
3834 }
3835
3836 /* For non-IPA mode, generate constraints necessary for a call of a
3837    const function that returns a pointer in the statement STMT.  */
3838
3839 static void
3840 handle_const_call (gimple stmt, VEC(ce_s, heap) **results)
3841 {
3842   struct constraint_expr rhsc;
3843   unsigned int k;
3844
3845   /* Treat nested const functions the same as pure functions as far
3846      as the static chain is concerned.  */
3847   if (gimple_call_chain (stmt))
3848     {
3849       varinfo_t uses = get_call_use_vi (stmt);
3850       make_transitive_closure_constraints (uses);
3851       make_constraint_to (uses->id, gimple_call_chain (stmt));
3852       rhsc.var = uses->id;
3853       rhsc.offset = 0;
3854       rhsc.type = SCALAR;
3855       VEC_safe_push (ce_s, heap, *results, &rhsc);
3856     }
3857
3858   /* May return arguments.  */
3859   for (k = 0; k < gimple_call_num_args (stmt); ++k)
3860     {
3861       tree arg = gimple_call_arg (stmt, k);
3862       VEC(ce_s, heap) *argc = NULL;
3863       unsigned i;
3864       struct constraint_expr *argp;
3865       get_constraint_for_rhs (arg, &argc);
3866       FOR_EACH_VEC_ELT (ce_s, argc, i, argp)
3867         VEC_safe_push (ce_s, heap, *results, argp);
3868       VEC_free(ce_s, heap, argc);
3869     }
3870
3871   /* May return addresses of globals.  */
3872   rhsc.var = nonlocal_id;
3873   rhsc.offset = 0;
3874   rhsc.type = ADDRESSOF;
3875   VEC_safe_push (ce_s, heap, *results, &rhsc);
3876 }
3877
3878 /* For non-IPA mode, generate constraints necessary for a call to a
3879    pure function in statement STMT.  */
3880
3881 static void
3882 handle_pure_call (gimple stmt, VEC(ce_s, heap) **results)
3883 {
3884   struct constraint_expr rhsc;
3885   unsigned i;
3886   varinfo_t uses = NULL;
3887
3888   /* Memory reached from pointer arguments is call-used.  */
3889   for (i = 0; i < gimple_call_num_args (stmt); ++i)
3890     {
3891       tree arg = gimple_call_arg (stmt, i);
3892       if (!uses)
3893         {
3894           uses = get_call_use_vi (stmt);
3895           make_transitive_closure_constraints (uses);
3896         }
3897       make_constraint_to (uses->id, arg);
3898     }
3899
3900   /* The static chain is used as well.  */
3901   if (gimple_call_chain (stmt))
3902     {
3903       if (!uses)
3904         {
3905           uses = get_call_use_vi (stmt);
3906           make_transitive_closure_constraints (uses);
3907         }
3908       make_constraint_to (uses->id, gimple_call_chain (stmt));
3909     }
3910
3911   /* Pure functions may return call-used and nonlocal memory.  */
3912   if (uses)
3913     {
3914       rhsc.var = uses->id;
3915       rhsc.offset = 0;
3916       rhsc.type = SCALAR;
3917       VEC_safe_push (ce_s, heap, *results, &rhsc);
3918     }
3919   rhsc.var = nonlocal_id;
3920   rhsc.offset = 0;
3921   rhsc.type = SCALAR;
3922   VEC_safe_push (ce_s, heap, *results, &rhsc);
3923 }
3924
3925
3926 /* Return the varinfo for the callee of CALL.  */
3927
3928 static varinfo_t
3929 get_fi_for_callee (gimple call)
3930 {
3931   tree decl;
3932
3933   gcc_assert (!gimple_call_internal_p (call));
3934
3935   /* If we can directly resolve the function being called, do so.
3936      Otherwise, it must be some sort of indirect expression that
3937      we should still be able to handle.  */
3938   decl = gimple_call_fndecl (call);
3939   if (decl)
3940     return get_vi_for_tree (decl);
3941
3942   decl = gimple_call_fn (call);
3943   /* The function can be either an SSA name pointer or,
3944      worse, an OBJ_TYPE_REF.  In this case we have no
3945      clue and should be getting ANYFN (well, ANYTHING for now).  */
3946   if (TREE_CODE (decl) == SSA_NAME)
3947     {
3948       if (TREE_CODE (decl) == SSA_NAME
3949           && (TREE_CODE (SSA_NAME_VAR (decl)) == PARM_DECL
3950               || TREE_CODE (SSA_NAME_VAR (decl)) == RESULT_DECL)
3951           && SSA_NAME_IS_DEFAULT_DEF (decl))
3952         decl = SSA_NAME_VAR (decl);
3953       return get_vi_for_tree (decl);
3954     }
3955   else if (TREE_CODE (decl) == INTEGER_CST
3956            || TREE_CODE (decl) == OBJ_TYPE_REF)
3957     return get_varinfo (anything_id);
3958   else
3959     gcc_unreachable ();
3960 }
3961
3962 /* Walk statement T setting up aliasing constraints according to the
3963    references found in T.  This function is the main part of the
3964    constraint builder.  AI points to auxiliary alias information used
3965    when building alias sets and computing alias grouping heuristics.  */
3966
3967 static void
3968 find_func_aliases (gimple origt)
3969 {
3970   gimple t = origt;
3971   VEC(ce_s, heap) *lhsc = NULL;
3972   VEC(ce_s, heap) *rhsc = NULL;
3973   struct constraint_expr *c;
3974   varinfo_t fi;
3975
3976   /* Now build constraints expressions.  */
3977   if (gimple_code (t) == GIMPLE_PHI)
3978     {
3979       size_t i;
3980       unsigned int j;
3981
3982       /* For a phi node, assign all the arguments to
3983          the result.  */
3984       get_constraint_for (gimple_phi_result (t), &lhsc);
3985       for (i = 0; i < gimple_phi_num_args (t); i++)
3986         {
3987           tree strippedrhs = PHI_ARG_DEF (t, i);
3988
3989           STRIP_NOPS (strippedrhs);
3990           get_constraint_for_rhs (gimple_phi_arg_def (t, i), &rhsc);
3991
3992           FOR_EACH_VEC_ELT (ce_s, lhsc, j, c)
3993             {
3994               struct constraint_expr *c2;
3995               while (VEC_length (ce_s, rhsc) > 0)
3996                 {
3997                   c2 = VEC_last (ce_s, rhsc);
3998                   process_constraint (new_constraint (*c, *c2));
3999                   VEC_pop (ce_s, rhsc);
4000                 }
4001             }
4002         }
4003     }
4004   /* In IPA mode, we need to generate constraints to pass call
4005      arguments through their calls.   There are two cases,
4006      either a GIMPLE_CALL returning a value, or just a plain
4007      GIMPLE_CALL when we are not.
4008
4009      In non-ipa mode, we need to generate constraints for each
4010      pointer passed by address.  */
4011   else if (is_gimple_call (t))
4012     {
4013       tree fndecl = gimple_call_fndecl (t);
4014       if (fndecl != NULL_TREE
4015           && DECL_BUILT_IN_CLASS (fndecl) == BUILT_IN_NORMAL)
4016         /* ???  All builtins that are handled here need to be handled
4017            in the alias-oracle query functions explicitly!  */
4018         switch (DECL_FUNCTION_CODE (fndecl))
4019           {
4020           /* All the following functions return a pointer to the same object
4021              as their first argument points to.  The functions do not add
4022              to the ESCAPED solution.  The functions make the first argument
4023              pointed to memory point to what the second argument pointed to
4024              memory points to.  */
4025           case BUILT_IN_STRCPY:
4026           case BUILT_IN_STRNCPY:
4027           case BUILT_IN_BCOPY:
4028           case BUILT_IN_MEMCPY:
4029           case BUILT_IN_MEMMOVE:
4030           case BUILT_IN_MEMPCPY:
4031           case BUILT_IN_STPCPY:
4032           case BUILT_IN_STPNCPY:
4033           case BUILT_IN_STRCAT:
4034           case BUILT_IN_STRNCAT:
4035             {
4036               tree res = gimple_call_lhs (t);
4037               tree dest = gimple_call_arg (t, (DECL_FUNCTION_CODE (fndecl)
4038                                                == BUILT_IN_BCOPY ? 1 : 0));
4039               tree src = gimple_call_arg (t, (DECL_FUNCTION_CODE (fndecl)
4040                                               == BUILT_IN_BCOPY ? 0 : 1));
4041               if (res != NULL_TREE)
4042                 {
4043                   get_constraint_for (res, &lhsc);
4044                   if (DECL_FUNCTION_CODE (fndecl) == BUILT_IN_MEMPCPY
4045                       || DECL_FUNCTION_CODE (fndecl) == BUILT_IN_STPCPY
4046                       || DECL_FUNCTION_CODE (fndecl) == BUILT_IN_STPNCPY)
4047                     get_constraint_for_ptr_offset (dest, NULL_TREE, &rhsc);
4048                   else
4049                     get_constraint_for (dest, &rhsc);
4050                   process_all_all_constraints (lhsc, rhsc);
4051                   VEC_free (ce_s, heap, lhsc);
4052                   VEC_free (ce_s, heap, rhsc);
4053                 }
4054               get_constraint_for_ptr_offset (dest, NULL_TREE, &lhsc);
4055               get_constraint_for_ptr_offset (src, NULL_TREE, &rhsc);
4056               do_deref (&lhsc);
4057               do_deref (&rhsc);
4058               process_all_all_constraints (lhsc, rhsc);
4059               VEC_free (ce_s, heap, lhsc);
4060               VEC_free (ce_s, heap, rhsc);
4061               return;
4062             }
4063           case BUILT_IN_MEMSET:
4064             {
4065               tree res = gimple_call_lhs (t);
4066               tree dest = gimple_call_arg (t, 0);
4067               unsigned i;
4068               ce_s *lhsp;
4069               struct constraint_expr ac;
4070               if (res != NULL_TREE)
4071                 {
4072                   get_constraint_for (res, &lhsc);
4073                   get_constraint_for (dest, &rhsc);
4074                   process_all_all_constraints (lhsc, rhsc);
4075                   VEC_free (ce_s, heap, lhsc);
4076                   VEC_free (ce_s, heap, rhsc);
4077                 }
4078               get_constraint_for_ptr_offset (dest, NULL_TREE, &lhsc);
4079               do_deref (&lhsc);
4080               if (flag_delete_null_pointer_checks
4081                   && integer_zerop (gimple_call_arg (t, 1)))
4082                 {
4083                   ac.type = ADDRESSOF;
4084                   ac.var = nothing_id;
4085                 }
4086               else
4087                 {
4088                   ac.type = SCALAR;
4089                   ac.var = integer_id;
4090                 }
4091               ac.offset = 0;
4092               FOR_EACH_VEC_ELT (ce_s, lhsc, i, lhsp)
4093                 process_constraint (new_constraint (*lhsp, ac));
4094               VEC_free (ce_s, heap, lhsc);
4095               return;
4096             }
4097           /* All the following functions do not return pointers, do not
4098              modify the points-to sets of memory reachable from their
4099              arguments and do not add to the ESCAPED solution.  */
4100           case BUILT_IN_SINCOS:
4101           case BUILT_IN_SINCOSF:
4102           case BUILT_IN_SINCOSL:
4103           case BUILT_IN_FREXP:
4104           case BUILT_IN_FREXPF:
4105           case BUILT_IN_FREXPL:
4106           case BUILT_IN_GAMMA_R:
4107           case BUILT_IN_GAMMAF_R:
4108           case BUILT_IN_GAMMAL_R:
4109           case BUILT_IN_LGAMMA_R:
4110           case BUILT_IN_LGAMMAF_R:
4111           case BUILT_IN_LGAMMAL_R:
4112           case BUILT_IN_MODF:
4113           case BUILT_IN_MODFF:
4114           case BUILT_IN_MODFL:
4115           case BUILT_IN_REMQUO:
4116           case BUILT_IN_REMQUOF:
4117           case BUILT_IN_REMQUOL:
4118           case BUILT_IN_FREE:
4119             return;
4120           /* Trampolines are special - they set up passing the static
4121              frame.  */
4122           case BUILT_IN_INIT_TRAMPOLINE:
4123             {
4124               tree tramp = gimple_call_arg (t, 0);
4125               tree nfunc = gimple_call_arg (t, 1);
4126               tree frame = gimple_call_arg (t, 2);
4127               unsigned i;
4128               struct constraint_expr lhs, *rhsp;
4129               if (in_ipa_mode)
4130                 {
4131                   varinfo_t nfi = NULL;
4132                   gcc_assert (TREE_CODE (nfunc) == ADDR_EXPR);
4133                   nfi = lookup_vi_for_tree (TREE_OPERAND (nfunc, 0));
4134                   if (nfi)
4135                     {
4136                       lhs = get_function_part_constraint (nfi, fi_static_chain);
4137                       get_constraint_for (frame, &rhsc);
4138                       FOR_EACH_VEC_ELT (ce_s, rhsc, i, rhsp)
4139                         process_constraint (new_constraint (lhs, *rhsp));
4140                       VEC_free (ce_s, heap, rhsc);
4141
4142                       /* Make the frame point to the function for
4143                          the trampoline adjustment call.  */
4144                       get_constraint_for (tramp, &lhsc);
4145                       do_deref (&lhsc);
4146                       get_constraint_for (nfunc, &rhsc);
4147                       process_all_all_constraints (lhsc, rhsc);
4148                       VEC_free (ce_s, heap, rhsc);
4149                       VEC_free (ce_s, heap, lhsc);
4150
4151                       return;
4152                     }
4153                 }
4154               /* Else fallthru to generic handling which will let
4155                  the frame escape.  */
4156               break;
4157             }
4158           case BUILT_IN_ADJUST_TRAMPOLINE:
4159             {
4160               tree tramp = gimple_call_arg (t, 0);
4161               tree res = gimple_call_lhs (t);
4162               if (in_ipa_mode && res)
4163                 {
4164                   get_constraint_for (res, &lhsc);
4165                   get_constraint_for (tramp, &rhsc);
4166                   do_deref (&rhsc);
4167                   process_all_all_constraints (lhsc, rhsc);
4168                   VEC_free (ce_s, heap, rhsc);
4169                   VEC_free (ce_s, heap, lhsc);
4170                 }
4171               return;
4172             }
4173           /* Variadic argument handling needs to be handled in IPA
4174              mode as well.  */
4175           case BUILT_IN_VA_START:
4176             {
4177               if (in_ipa_mode)
4178                 {
4179                   tree valist = gimple_call_arg (t, 0);
4180                   struct constraint_expr rhs, *lhsp;
4181                   unsigned i;
4182                   /* The va_list gets access to pointers in variadic
4183                      arguments.  */
4184                   fi = lookup_vi_for_tree (cfun->decl);
4185                   gcc_assert (fi != NULL);
4186                   get_constraint_for (valist, &lhsc);
4187                   do_deref (&lhsc);
4188                   rhs = get_function_part_constraint (fi, ~0);
4189                   rhs.type = ADDRESSOF;
4190                   FOR_EACH_VEC_ELT (ce_s, lhsc, i, lhsp)
4191                     process_constraint (new_constraint (*lhsp, rhs));
4192                   VEC_free (ce_s, heap, lhsc);
4193                   /* va_list is clobbered.  */
4194                   make_constraint_to (get_call_clobber_vi (t)->id, valist);
4195                   return;
4196                 }
4197               break;
4198             }
4199           /* va_end doesn't have any effect that matters.  */
4200           case BUILT_IN_VA_END:
4201             return;
4202           /* Alternate return.  Simply give up for now.  */
4203           case BUILT_IN_RETURN:
4204             {
4205               fi = NULL;
4206               if (!in_ipa_mode
4207                   || !(fi = get_vi_for_tree (cfun->decl)))
4208                 make_constraint_from (get_varinfo (escaped_id), anything_id);
4209               else if (in_ipa_mode
4210                        && fi != NULL)
4211                 {
4212                   struct constraint_expr lhs, rhs;
4213                   lhs = get_function_part_constraint (fi, fi_result);
4214                   rhs.var = anything_id;
4215                   rhs.offset = 0;
4216                   rhs.type = SCALAR;
4217                   process_constraint (new_constraint (lhs, rhs));
4218                 }
4219               return;
4220             }
4221           /* printf-style functions may have hooks to set pointers to
4222              point to somewhere into the generated string.  Leave them
4223              for a later excercise...  */
4224           default:
4225             /* Fallthru to general call handling.  */;
4226           }
4227       if (!in_ipa_mode
4228           || gimple_call_internal_p (t)
4229           || (fndecl
4230               && (!(fi = lookup_vi_for_tree (fndecl))
4231                   || !fi->is_fn_info)))
4232         {
4233           VEC(ce_s, heap) *rhsc = NULL;
4234           int flags = gimple_call_flags (t);
4235
4236           /* Const functions can return their arguments and addresses
4237              of global memory but not of escaped memory.  */
4238           if (flags & (ECF_CONST|ECF_NOVOPS))
4239             {
4240               if (gimple_call_lhs (t))
4241                 handle_const_call (t, &rhsc);
4242             }
4243           /* Pure functions can return addresses in and of memory
4244              reachable from their arguments, but they are not an escape
4245              point for reachable memory of their arguments.  */
4246           else if (flags & (ECF_PURE|ECF_LOOPING_CONST_OR_PURE))
4247             handle_pure_call (t, &rhsc);
4248           else
4249             handle_rhs_call (t, &rhsc);
4250           if (gimple_call_lhs (t))
4251             handle_lhs_call (t, gimple_call_lhs (t), flags, rhsc, fndecl);
4252           VEC_free (ce_s, heap, rhsc);
4253         }
4254       else
4255         {
4256           tree lhsop;
4257           unsigned j;
4258
4259           fi = get_fi_for_callee (t);
4260
4261           /* Assign all the passed arguments to the appropriate incoming
4262              parameters of the function.  */
4263           for (j = 0; j < gimple_call_num_args (t); j++)
4264             {
4265               struct constraint_expr lhs ;
4266               struct constraint_expr *rhsp;
4267               tree arg = gimple_call_arg (t, j);
4268
4269               get_constraint_for_rhs (arg, &rhsc);
4270               lhs = get_function_part_constraint (fi, fi_parm_base + j);
4271               while (VEC_length (ce_s, rhsc) != 0)
4272                 {
4273                   rhsp = VEC_last (ce_s, rhsc);
4274                   process_constraint (new_constraint (lhs, *rhsp));
4275                   VEC_pop (ce_s, rhsc);
4276                 }
4277             }
4278
4279           /* If we are returning a value, assign it to the result.  */
4280           lhsop = gimple_call_lhs (t);
4281           if (lhsop)
4282             {
4283               struct constraint_expr rhs;
4284               struct constraint_expr *lhsp;
4285
4286               get_constraint_for (lhsop, &lhsc);
4287               rhs = get_function_part_constraint (fi, fi_result);
4288               if (fndecl
4289                   && DECL_RESULT (fndecl)
4290                   && DECL_BY_REFERENCE (DECL_RESULT (fndecl)))
4291                 {
4292                   VEC(ce_s, heap) *tem = NULL;
4293                   VEC_safe_push (ce_s, heap, tem, &rhs);
4294                   do_deref (&tem);
4295                   rhs = *VEC_index (ce_s, tem, 0);
4296                   VEC_free(ce_s, heap, tem);
4297                 }
4298               FOR_EACH_VEC_ELT (ce_s, lhsc, j, lhsp)
4299                 process_constraint (new_constraint (*lhsp, rhs));
4300             }
4301
4302           /* If we pass the result decl by reference, honor that.  */
4303           if (lhsop
4304               && fndecl
4305               && DECL_RESULT (fndecl)
4306               && DECL_BY_REFERENCE (DECL_RESULT (fndecl)))
4307             {
4308               struct constraint_expr lhs;
4309               struct constraint_expr *rhsp;
4310
4311               get_constraint_for_address_of (lhsop, &rhsc);
4312               lhs = get_function_part_constraint (fi, fi_result);
4313               FOR_EACH_VEC_ELT (ce_s, rhsc, j, rhsp)
4314                 process_constraint (new_constraint (lhs, *rhsp));
4315               VEC_free (ce_s, heap, rhsc);
4316             }
4317
4318           /* If we use a static chain, pass it along.  */
4319           if (gimple_call_chain (t))
4320             {
4321               struct constraint_expr lhs;
4322               struct constraint_expr *rhsp;
4323
4324               get_constraint_for (gimple_call_chain (t), &rhsc);
4325               lhs = get_function_part_constraint (fi, fi_static_chain);
4326               FOR_EACH_VEC_ELT (ce_s, rhsc, j, rhsp)
4327                 process_constraint (new_constraint (lhs, *rhsp));
4328             }
4329         }
4330     }
4331   /* Otherwise, just a regular assignment statement.  Only care about
4332      operations with pointer result, others are dealt with as escape
4333      points if they have pointer operands.  */
4334   else if (is_gimple_assign (t))
4335     {
4336       /* Otherwise, just a regular assignment statement.  */
4337       tree lhsop = gimple_assign_lhs (t);
4338       tree rhsop = (gimple_num_ops (t) == 2) ? gimple_assign_rhs1 (t) : NULL;
4339
4340       if (rhsop && AGGREGATE_TYPE_P (TREE_TYPE (lhsop)))
4341         do_structure_copy (lhsop, rhsop);
4342       else
4343         {
4344           enum tree_code code = gimple_assign_rhs_code (t);
4345
4346           get_constraint_for (lhsop, &lhsc);
4347
4348           if (code == POINTER_PLUS_EXPR)
4349             get_constraint_for_ptr_offset (gimple_assign_rhs1 (t),
4350                                            gimple_assign_rhs2 (t), &rhsc);
4351           else if (code == BIT_AND_EXPR
4352                    && TREE_CODE (gimple_assign_rhs2 (t)) == INTEGER_CST)
4353             {
4354               /* Aligning a pointer via a BIT_AND_EXPR is offsetting
4355                  the pointer.  Handle it by offsetting it by UNKNOWN.  */
4356               get_constraint_for_ptr_offset (gimple_assign_rhs1 (t),
4357                                              NULL_TREE, &rhsc);
4358             }
4359           else if ((CONVERT_EXPR_CODE_P (code)
4360                     && !(POINTER_TYPE_P (gimple_expr_type (t))
4361                          && !POINTER_TYPE_P (TREE_TYPE (rhsop))))
4362                    || gimple_assign_single_p (t))
4363             get_constraint_for_rhs (rhsop, &rhsc);
4364           else if (truth_value_p (code))
4365             /* Truth value results are not pointer (parts).  Or at least
4366                very very unreasonable obfuscation of a part.  */
4367             ;
4368           else
4369             {
4370               /* All other operations are merges.  */
4371               VEC (ce_s, heap) *tmp = NULL;
4372               struct constraint_expr *rhsp;
4373               unsigned i, j;
4374               get_constraint_for_rhs (gimple_assign_rhs1 (t), &rhsc);
4375               for (i = 2; i < gimple_num_ops (t); ++i)
4376                 {
4377                   get_constraint_for_rhs (gimple_op (t, i), &tmp);
4378                   FOR_EACH_VEC_ELT (ce_s, tmp, j, rhsp)
4379                     VEC_safe_push (ce_s, heap, rhsc, rhsp);
4380                   VEC_truncate (ce_s, tmp, 0);
4381                 }
4382               VEC_free (ce_s, heap, tmp);
4383             }
4384           process_all_all_constraints (lhsc, rhsc);
4385         }
4386       /* If there is a store to a global variable the rhs escapes.  */
4387       if ((lhsop = get_base_address (lhsop)) != NULL_TREE
4388           && DECL_P (lhsop)
4389           && is_global_var (lhsop)
4390           && (!in_ipa_mode
4391               || DECL_EXTERNAL (lhsop) || TREE_PUBLIC (lhsop)))
4392         make_escape_constraint (rhsop);
4393       /* If this is a conversion of a non-restrict pointer to a
4394          restrict pointer track it with a new heapvar.  */
4395       else if (gimple_assign_cast_p (t)
4396                && POINTER_TYPE_P (TREE_TYPE (rhsop))
4397                && POINTER_TYPE_P (TREE_TYPE (lhsop))
4398                && !TYPE_RESTRICT (TREE_TYPE (rhsop))
4399                && TYPE_RESTRICT (TREE_TYPE (lhsop)))
4400         make_constraint_from_restrict (get_vi_for_tree (lhsop),
4401                                        "CAST_RESTRICT");
4402     }
4403   /* Handle escapes through return.  */
4404   else if (gimple_code (t) == GIMPLE_RETURN
4405            && gimple_return_retval (t) != NULL_TREE)
4406     {
4407       fi = NULL;
4408       if (!in_ipa_mode
4409           || !(fi = get_vi_for_tree (cfun->decl)))
4410         make_escape_constraint (gimple_return_retval (t));
4411       else if (in_ipa_mode
4412                && fi != NULL)
4413         {
4414           struct constraint_expr lhs ;
4415           struct constraint_expr *rhsp;
4416           unsigned i;
4417
4418           lhs = get_function_part_constraint (fi, fi_result);
4419           get_constraint_for_rhs (gimple_return_retval (t), &rhsc);
4420           FOR_EACH_VEC_ELT (ce_s, rhsc, i, rhsp)
4421             process_constraint (new_constraint (lhs, *rhsp));
4422         }
4423     }
4424   /* Handle asms conservatively by adding escape constraints to everything.  */
4425   else if (gimple_code (t) == GIMPLE_ASM)
4426     {
4427       unsigned i, noutputs;
4428       const char **oconstraints;
4429       const char *constraint;
4430       bool allows_mem, allows_reg, is_inout;
4431
4432       noutputs = gimple_asm_noutputs (t);
4433       oconstraints = XALLOCAVEC (const char *, noutputs);
4434
4435       for (i = 0; i < noutputs; ++i)
4436         {
4437           tree link = gimple_asm_output_op (t, i);
4438           tree op = TREE_VALUE (link);
4439
4440           constraint = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (link)));
4441           oconstraints[i] = constraint;
4442           parse_output_constraint (&constraint, i, 0, 0, &allows_mem,
4443                                    &allows_reg, &is_inout);
4444
4445           /* A memory constraint makes the address of the operand escape.  */
4446           if (!allows_reg && allows_mem)
4447             make_escape_constraint (build_fold_addr_expr (op));
4448
4449           /* The asm may read global memory, so outputs may point to
4450              any global memory.  */
4451           if (op)
4452             {
4453               VEC(ce_s, heap) *lhsc = NULL;
4454               struct constraint_expr rhsc, *lhsp;
4455               unsigned j;
4456               get_constraint_for (op, &lhsc);
4457               rhsc.var = nonlocal_id;
4458               rhsc.offset = 0;
4459               rhsc.type = SCALAR;
4460               FOR_EACH_VEC_ELT (ce_s, lhsc, j, lhsp)
4461                 process_constraint (new_constraint (*lhsp, rhsc));
4462               VEC_free (ce_s, heap, lhsc);
4463             }
4464         }
4465       for (i = 0; i < gimple_asm_ninputs (t); ++i)
4466         {
4467           tree link = gimple_asm_input_op (t, i);
4468           tree op = TREE_VALUE (link);
4469
4470           constraint = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (link)));
4471
4472           parse_input_constraint (&constraint, 0, 0, noutputs, 0, oconstraints,
4473                                   &allows_mem, &allows_reg);
4474
4475           /* A memory constraint makes the address of the operand escape.  */
4476           if (!allows_reg && allows_mem)
4477             make_escape_constraint (build_fold_addr_expr (op));
4478           /* Strictly we'd only need the constraint to ESCAPED if
4479              the asm clobbers memory, otherwise using something
4480              along the lines of per-call clobbers/uses would be enough.  */
4481           else if (op)
4482             make_escape_constraint (op);
4483         }
4484     }
4485
4486   VEC_free (ce_s, heap, rhsc);
4487   VEC_free (ce_s, heap, lhsc);
4488 }
4489
4490
4491 /* Create a constraint adding to the clobber set of FI the memory
4492    pointed to by PTR.  */
4493
4494 static void
4495 process_ipa_clobber (varinfo_t fi, tree ptr)
4496 {
4497   VEC(ce_s, heap) *ptrc = NULL;
4498   struct constraint_expr *c, lhs;
4499   unsigned i;
4500   get_constraint_for_rhs (ptr, &ptrc);
4501   lhs = get_function_part_constraint (fi, fi_clobbers);
4502   FOR_EACH_VEC_ELT (ce_s, ptrc, i, c)
4503     process_constraint (new_constraint (lhs, *c));
4504   VEC_free (ce_s, heap, ptrc);
4505 }
4506
4507 /* Walk statement T setting up clobber and use constraints according to the
4508    references found in T.  This function is a main part of the
4509    IPA constraint builder.  */
4510
4511 static void
4512 find_func_clobbers (gimple origt)
4513 {
4514   gimple t = origt;
4515   VEC(ce_s, heap) *lhsc = NULL;
4516   VEC(ce_s, heap) *rhsc = NULL;
4517   varinfo_t fi;
4518
4519   /* Add constraints for clobbered/used in IPA mode.
4520      We are not interested in what automatic variables are clobbered
4521      or used as we only use the information in the caller to which
4522      they do not escape.  */
4523   gcc_assert (in_ipa_mode);
4524
4525   /* If the stmt refers to memory in any way it better had a VUSE.  */
4526   if (gimple_vuse (t) == NULL_TREE)
4527     return;
4528
4529   /* We'd better have function information for the current function.  */
4530   fi = lookup_vi_for_tree (cfun->decl);
4531   gcc_assert (fi != NULL);
4532
4533   /* Account for stores in assignments and calls.  */
4534   if (gimple_vdef (t) != NULL_TREE
4535       && gimple_has_lhs (t))
4536     {
4537       tree lhs = gimple_get_lhs (t);
4538       tree tem = lhs;
4539       while (handled_component_p (tem))
4540         tem = TREE_OPERAND (tem, 0);
4541       if ((DECL_P (tem)
4542            && !auto_var_in_fn_p (tem, cfun->decl))
4543           || INDIRECT_REF_P (tem)
4544           || (TREE_CODE (tem) == MEM_REF
4545               && !(TREE_CODE (TREE_OPERAND (tem, 0)) == ADDR_EXPR
4546                    && auto_var_in_fn_p
4547                         (TREE_OPERAND (TREE_OPERAND (tem, 0), 0), cfun->decl))))
4548         {
4549           struct constraint_expr lhsc, *rhsp;
4550           unsigned i;
4551           lhsc = get_function_part_constraint (fi, fi_clobbers);
4552           get_constraint_for_address_of (lhs, &rhsc);
4553           FOR_EACH_VEC_ELT (ce_s, rhsc, i, rhsp)
4554             process_constraint (new_constraint (lhsc, *rhsp));
4555           VEC_free (ce_s, heap, rhsc);
4556         }
4557     }
4558
4559   /* Account for uses in assigments and returns.  */
4560   if (gimple_assign_single_p (t)
4561       || (gimple_code (t) == GIMPLE_RETURN
4562           && gimple_return_retval (t) != NULL_TREE))
4563     {
4564       tree rhs = (gimple_assign_single_p (t)
4565                   ? gimple_assign_rhs1 (t) : gimple_return_retval (t));
4566       tree tem = rhs;
4567       while (handled_component_p (tem))
4568         tem = TREE_OPERAND (tem, 0);
4569       if ((DECL_P (tem)
4570            && !auto_var_in_fn_p (tem, cfun->decl))
4571           || INDIRECT_REF_P (tem)
4572           || (TREE_CODE (tem) == MEM_REF
4573               && !(TREE_CODE (TREE_OPERAND (tem, 0)) == ADDR_EXPR
4574                    && auto_var_in_fn_p
4575                         (TREE_OPERAND (TREE_OPERAND (tem, 0), 0), cfun->decl))))
4576         {
4577           struct constraint_expr lhs, *rhsp;
4578           unsigned i;
4579           lhs = get_function_part_constraint (fi, fi_uses);
4580           get_constraint_for_address_of (rhs, &rhsc);
4581           FOR_EACH_VEC_ELT (ce_s, rhsc, i, rhsp)
4582             process_constraint (new_constraint (lhs, *rhsp));
4583           VEC_free (ce_s, heap, rhsc);
4584         }
4585     }
4586
4587   if (is_gimple_call (t))
4588     {
4589       varinfo_t cfi = NULL;
4590       tree decl = gimple_call_fndecl (t);
4591       struct constraint_expr lhs, rhs;
4592       unsigned i, j;
4593
4594       /* For builtins we do not have separate function info.  For those
4595          we do not generate escapes for we have to generate clobbers/uses.  */
4596       if (decl
4597           && DECL_BUILT_IN_CLASS (decl) == BUILT_IN_NORMAL)
4598         switch (DECL_FUNCTION_CODE (decl))
4599           {
4600           /* The following functions use and clobber memory pointed to
4601              by their arguments.  */
4602           case BUILT_IN_STRCPY:
4603           case BUILT_IN_STRNCPY:
4604           case BUILT_IN_BCOPY:
4605           case BUILT_IN_MEMCPY:
4606           case BUILT_IN_MEMMOVE:
4607           case BUILT_IN_MEMPCPY:
4608           case BUILT_IN_STPCPY:
4609           case BUILT_IN_STPNCPY:
4610           case BUILT_IN_STRCAT:
4611           case BUILT_IN_STRNCAT:
4612             {
4613               tree dest = gimple_call_arg (t, (DECL_FUNCTION_CODE (decl)
4614                                                == BUILT_IN_BCOPY ? 1 : 0));
4615               tree src = gimple_call_arg (t, (DECL_FUNCTION_CODE (decl)
4616                                               == BUILT_IN_BCOPY ? 0 : 1));
4617               unsigned i;
4618               struct constraint_expr *rhsp, *lhsp;
4619               get_constraint_for_ptr_offset (dest, NULL_TREE, &lhsc);
4620               lhs = get_function_part_constraint (fi, fi_clobbers);
4621               FOR_EACH_VEC_ELT (ce_s, lhsc, i, lhsp)
4622                 process_constraint (new_constraint (lhs, *lhsp));
4623               VEC_free (ce_s, heap, lhsc);
4624               get_constraint_for_ptr_offset (src, NULL_TREE, &rhsc);
4625               lhs = get_function_part_constraint (fi, fi_uses);
4626               FOR_EACH_VEC_ELT (ce_s, rhsc, i, rhsp)
4627                 process_constraint (new_constraint (lhs, *rhsp));
4628               VEC_free (ce_s, heap, rhsc);
4629               return;
4630             }
4631           /* The following function clobbers memory pointed to by
4632              its argument.  */
4633           case BUILT_IN_MEMSET:
4634             {
4635               tree dest = gimple_call_arg (t, 0);
4636               unsigned i;
4637               ce_s *lhsp;
4638               get_constraint_for_ptr_offset (dest, NULL_TREE, &lhsc);
4639               lhs = get_function_part_constraint (fi, fi_clobbers);
4640               FOR_EACH_VEC_ELT (ce_s, lhsc, i, lhsp)
4641                 process_constraint (new_constraint (lhs, *lhsp));
4642               VEC_free (ce_s, heap, lhsc);
4643               return;
4644             }
4645           /* The following functions clobber their second and third
4646              arguments.  */
4647           case BUILT_IN_SINCOS:
4648           case BUILT_IN_SINCOSF:
4649           case BUILT_IN_SINCOSL:
4650             {
4651               process_ipa_clobber (fi, gimple_call_arg (t, 1));
4652               process_ipa_clobber (fi, gimple_call_arg (t, 2));
4653               return;
4654             }
4655           /* The following functions clobber their second argument.  */
4656           case BUILT_IN_FREXP:
4657           case BUILT_IN_FREXPF:
4658           case BUILT_IN_FREXPL:
4659           case BUILT_IN_LGAMMA_R:
4660           case BUILT_IN_LGAMMAF_R:
4661           case BUILT_IN_LGAMMAL_R:
4662           case BUILT_IN_GAMMA_R:
4663           case BUILT_IN_GAMMAF_R:
4664           case BUILT_IN_GAMMAL_R:
4665           case BUILT_IN_MODF:
4666           case BUILT_IN_MODFF:
4667           case BUILT_IN_MODFL:
4668             {
4669               process_ipa_clobber (fi, gimple_call_arg (t, 1));
4670               return;
4671             }
4672           /* The following functions clobber their third argument.  */
4673           case BUILT_IN_REMQUO:
4674           case BUILT_IN_REMQUOF:
4675           case BUILT_IN_REMQUOL:
4676             {
4677               process_ipa_clobber (fi, gimple_call_arg (t, 2));
4678               return;
4679             }
4680           /* The following functions neither read nor clobber memory.  */
4681           case BUILT_IN_FREE:
4682             return;
4683           /* Trampolines are of no interest to us.  */
4684           case BUILT_IN_INIT_TRAMPOLINE:
4685           case BUILT_IN_ADJUST_TRAMPOLINE:
4686             return;
4687           case BUILT_IN_VA_START:
4688           case BUILT_IN_VA_END:
4689             return;
4690           /* printf-style functions may have hooks to set pointers to
4691              point to somewhere into the generated string.  Leave them
4692              for a later excercise...  */
4693           default:
4694             /* Fallthru to general call handling.  */;
4695           }
4696
4697       /* Parameters passed by value are used.  */
4698       lhs = get_function_part_constraint (fi, fi_uses);
4699       for (i = 0; i < gimple_call_num_args (t); i++)
4700         {
4701           struct constraint_expr *rhsp;
4702           tree arg = gimple_call_arg (t, i);
4703
4704           if (TREE_CODE (arg) == SSA_NAME
4705               || is_gimple_min_invariant (arg))
4706             continue;
4707
4708           get_constraint_for_address_of (arg, &rhsc);
4709           FOR_EACH_VEC_ELT (ce_s, rhsc, j, rhsp)
4710             process_constraint (new_constraint (lhs, *rhsp));
4711           VEC_free (ce_s, heap, rhsc);
4712         }
4713
4714       /* Build constraints for propagating clobbers/uses along the
4715          callgraph edges.  */
4716       cfi = get_fi_for_callee (t);
4717       if (cfi->id == anything_id)
4718         {
4719           if (gimple_vdef (t))
4720             make_constraint_from (first_vi_for_offset (fi, fi_clobbers),
4721                                   anything_id);
4722           make_constraint_from (first_vi_for_offset (fi, fi_uses),
4723                                 anything_id);
4724           return;
4725         }
4726
4727       /* For callees without function info (that's external functions),
4728          ESCAPED is clobbered and used.  */
4729       if (gimple_call_fndecl (t)
4730           && !cfi->is_fn_info)
4731         {
4732           varinfo_t vi;
4733
4734           if (gimple_vdef (t))
4735             make_copy_constraint (first_vi_for_offset (fi, fi_clobbers),
4736                                   escaped_id);
4737           make_copy_constraint (first_vi_for_offset (fi, fi_uses), escaped_id);
4738
4739           /* Also honor the call statement use/clobber info.  */
4740           if ((vi = lookup_call_clobber_vi (t)) != NULL)
4741             make_copy_constraint (first_vi_for_offset (fi, fi_clobbers),
4742                                   vi->id);
4743           if ((vi = lookup_call_use_vi (t)) != NULL)
4744             make_copy_constraint (first_vi_for_offset (fi, fi_uses),
4745                                   vi->id);
4746           return;
4747         }
4748
4749       /* Otherwise the caller clobbers and uses what the callee does.
4750          ???  This should use a new complex constraint that filters
4751          local variables of the callee.  */
4752       if (gimple_vdef (t))
4753         {
4754           lhs = get_function_part_constraint (fi, fi_clobbers);
4755           rhs = get_function_part_constraint (cfi, fi_clobbers);
4756           process_constraint (new_constraint (lhs, rhs));
4757         }
4758       lhs = get_function_part_constraint (fi, fi_uses);
4759       rhs = get_function_part_constraint (cfi, fi_uses);
4760       process_constraint (new_constraint (lhs, rhs));
4761     }
4762   else if (gimple_code (t) == GIMPLE_ASM)
4763     {
4764       /* ???  Ick.  We can do better.  */
4765       if (gimple_vdef (t))
4766         make_constraint_from (first_vi_for_offset (fi, fi_clobbers),
4767                               anything_id);
4768       make_constraint_from (first_vi_for_offset (fi, fi_uses),
4769                             anything_id);
4770     }
4771
4772   VEC_free (ce_s, heap, rhsc);
4773 }
4774
4775
4776 /* Find the first varinfo in the same variable as START that overlaps with
4777    OFFSET.  Return NULL if we can't find one.  */
4778
4779 static varinfo_t
4780 first_vi_for_offset (varinfo_t start, unsigned HOST_WIDE_INT offset)
4781 {
4782   /* If the offset is outside of the variable, bail out.  */
4783   if (offset >= start->fullsize)
4784     return NULL;
4785
4786   /* If we cannot reach offset from start, lookup the first field
4787      and start from there.  */
4788   if (start->offset > offset)
4789     start = lookup_vi_for_tree (start->decl);
4790
4791   while (start)
4792     {
4793       /* We may not find a variable in the field list with the actual
4794          offset when when we have glommed a structure to a variable.
4795          In that case, however, offset should still be within the size
4796          of the variable. */
4797       if (offset >= start->offset
4798           && (offset - start->offset) < start->size)
4799         return start;
4800
4801       start= start->next;
4802     }
4803
4804   return NULL;
4805 }
4806
4807 /* Find the first varinfo in the same variable as START that overlaps with
4808    OFFSET.  If there is no such varinfo the varinfo directly preceding
4809    OFFSET is returned.  */
4810
4811 static varinfo_t
4812 first_or_preceding_vi_for_offset (varinfo_t start,
4813                                   unsigned HOST_WIDE_INT offset)
4814 {
4815   /* If we cannot reach offset from start, lookup the first field
4816      and start from there.  */
4817   if (start->offset > offset)
4818     start = lookup_vi_for_tree (start->decl);
4819
4820   /* We may not find a variable in the field list with the actual
4821      offset when when we have glommed a structure to a variable.
4822      In that case, however, offset should still be within the size
4823      of the variable.
4824      If we got beyond the offset we look for return the field
4825      directly preceding offset which may be the last field.  */
4826   while (start->next
4827          && offset >= start->offset
4828          && !((offset - start->offset) < start->size))
4829     start = start->next;
4830
4831   return start;
4832 }
4833
4834
4835 /* This structure is used during pushing fields onto the fieldstack
4836    to track the offset of the field, since bitpos_of_field gives it
4837    relative to its immediate containing type, and we want it relative
4838    to the ultimate containing object.  */
4839
4840 struct fieldoff
4841 {
4842   /* Offset from the base of the base containing object to this field.  */
4843   HOST_WIDE_INT offset;
4844
4845   /* Size, in bits, of the field.  */
4846   unsigned HOST_WIDE_INT size;
4847
4848   unsigned has_unknown_size : 1;
4849
4850   unsigned must_have_pointers : 1;
4851
4852   unsigned may_have_pointers : 1;
4853
4854   unsigned only_restrict_pointers : 1;
4855 };
4856 typedef struct fieldoff fieldoff_s;
4857
4858 DEF_VEC_O(fieldoff_s);
4859 DEF_VEC_ALLOC_O(fieldoff_s,heap);
4860
4861 /* qsort comparison function for two fieldoff's PA and PB */
4862
4863 static int
4864 fieldoff_compare (const void *pa, const void *pb)
4865 {
4866   const fieldoff_s *foa = (const fieldoff_s *)pa;
4867   const fieldoff_s *fob = (const fieldoff_s *)pb;
4868   unsigned HOST_WIDE_INT foasize, fobsize;
4869
4870   if (foa->offset < fob->offset)
4871     return -1;
4872   else if (foa->offset > fob->offset)
4873     return 1;
4874
4875   foasize = foa->size;
4876   fobsize = fob->size;
4877   if (foasize < fobsize)
4878     return -1;
4879   else if (foasize > fobsize)
4880     return 1;
4881   return 0;
4882 }
4883
4884 /* Sort a fieldstack according to the field offset and sizes.  */
4885 static void
4886 sort_fieldstack (VEC(fieldoff_s,heap) *fieldstack)
4887 {
4888   VEC_qsort (fieldoff_s, fieldstack, fieldoff_compare);
4889 }
4890
4891 /* Return true if V is a tree that we can have subvars for.
4892    Normally, this is any aggregate type.  Also complex
4893    types which are not gimple registers can have subvars.  */
4894
4895 static inline bool
4896 var_can_have_subvars (const_tree v)
4897 {
4898   /* Volatile variables should never have subvars.  */
4899   if (TREE_THIS_VOLATILE (v))
4900     return false;
4901
4902   /* Non decls or memory tags can never have subvars.  */
4903   if (!DECL_P (v))
4904     return false;
4905
4906   /* Aggregates without overlapping fields can have subvars.  */
4907   if (TREE_CODE (TREE_TYPE (v)) == RECORD_TYPE)
4908     return true;
4909
4910   return false;
4911 }
4912
4913 /* Return true if T is a type that does contain pointers.  */
4914
4915 static bool
4916 type_must_have_pointers (tree type)
4917 {
4918   if (POINTER_TYPE_P (type))
4919     return true;
4920
4921   if (TREE_CODE (type) == ARRAY_TYPE)
4922     return type_must_have_pointers (TREE_TYPE (type));
4923
4924   /* A function or method can have pointers as arguments, so track
4925      those separately.  */
4926   if (TREE_CODE (type) == FUNCTION_TYPE
4927       || TREE_CODE (type) == METHOD_TYPE)
4928     return true;
4929
4930   return false;
4931 }
4932
4933 static bool
4934 field_must_have_pointers (tree t)
4935 {
4936   return type_must_have_pointers (TREE_TYPE (t));
4937 }
4938
4939 /* Given a TYPE, and a vector of field offsets FIELDSTACK, push all
4940    the fields of TYPE onto fieldstack, recording their offsets along
4941    the way.
4942
4943    OFFSET is used to keep track of the offset in this entire
4944    structure, rather than just the immediately containing structure.
4945    Returns false if the caller is supposed to handle the field we
4946    recursed for.  */
4947
4948 static bool
4949 push_fields_onto_fieldstack (tree type, VEC(fieldoff_s,heap) **fieldstack,
4950                              HOST_WIDE_INT offset)
4951 {
4952   tree field;
4953   bool empty_p = true;
4954
4955   if (TREE_CODE (type) != RECORD_TYPE)
4956     return false;
4957
4958   /* If the vector of fields is growing too big, bail out early.
4959      Callers check for VEC_length <= MAX_FIELDS_FOR_FIELD_SENSITIVE, make
4960      sure this fails.  */
4961   if (VEC_length (fieldoff_s, *fieldstack) > MAX_FIELDS_FOR_FIELD_SENSITIVE)
4962     return false;
4963
4964   for (field = TYPE_FIELDS (type); field; field = DECL_CHAIN (field))
4965     if (TREE_CODE (field) == FIELD_DECL)
4966       {
4967         bool push = false;
4968         HOST_WIDE_INT foff = bitpos_of_field (field);
4969
4970         if (!var_can_have_subvars (field)
4971             || TREE_CODE (TREE_TYPE (field)) == QUAL_UNION_TYPE
4972             || TREE_CODE (TREE_TYPE (field)) == UNION_TYPE)
4973           push = true;
4974         else if (!push_fields_onto_fieldstack
4975                     (TREE_TYPE (field), fieldstack, offset + foff)
4976                  && (DECL_SIZE (field)
4977                      && !integer_zerop (DECL_SIZE (field))))
4978           /* Empty structures may have actual size, like in C++.  So
4979              see if we didn't push any subfields and the size is
4980              nonzero, push the field onto the stack.  */
4981           push = true;
4982
4983         if (push)
4984           {
4985             fieldoff_s *pair = NULL;
4986             bool has_unknown_size = false;
4987             bool must_have_pointers_p;
4988
4989             if (!VEC_empty (fieldoff_s, *fieldstack))
4990               pair = VEC_last (fieldoff_s, *fieldstack);
4991
4992             /* If there isn't anything at offset zero, create sth.  */
4993             if (!pair
4994                 && offset + foff != 0)
4995               {
4996                 pair = VEC_safe_push (fieldoff_s, heap, *fieldstack, NULL);
4997                 pair->offset = 0;
4998                 pair->size = offset + foff;
4999                 pair->has_unknown_size = false;
5000                 pair->must_have_pointers = false;
5001                 pair->may_have_pointers = false;
5002                 pair->only_restrict_pointers = false;
5003               }
5004
5005             if (!DECL_SIZE (field)
5006                 || !host_integerp (DECL_SIZE (field), 1))
5007               has_unknown_size = true;
5008
5009             /* If adjacent fields do not contain pointers merge them.  */
5010             must_have_pointers_p = field_must_have_pointers (field);
5011             if (pair
5012                 && !has_unknown_size
5013                 && !must_have_pointers_p
5014                 && !pair->must_have_pointers
5015                 && !pair->has_unknown_size
5016                 && pair->offset + (HOST_WIDE_INT)pair->size == offset + foff)
5017               {
5018                 pair->size += TREE_INT_CST_LOW (DECL_SIZE (field));
5019               }
5020             else
5021               {
5022                 pair = VEC_safe_push (fieldoff_s, heap, *fieldstack, NULL);
5023                 pair->offset = offset + foff;
5024                 pair->has_unknown_size = has_unknown_size;
5025                 if (!has_unknown_size)
5026                   pair->size = TREE_INT_CST_LOW (DECL_SIZE (field));
5027                 else
5028                   pair->size = -1;
5029                 pair->must_have_pointers = must_have_pointers_p;
5030                 pair->may_have_pointers = true;
5031                 pair->only_restrict_pointers
5032                   = (!has_unknown_size
5033                      && POINTER_TYPE_P (TREE_TYPE (field))
5034                      && TYPE_RESTRICT (TREE_TYPE (field)));
5035               }
5036           }
5037
5038         empty_p = false;
5039       }
5040
5041   return !empty_p;
5042 }
5043
5044 /* Count the number of arguments DECL has, and set IS_VARARGS to true
5045    if it is a varargs function.  */
5046
5047 static unsigned int
5048 count_num_arguments (tree decl, bool *is_varargs)
5049 {
5050   unsigned int num = 0;
5051   tree t;
5052
5053   /* Capture named arguments for K&R functions.  They do not
5054      have a prototype and thus no TYPE_ARG_TYPES.  */
5055   for (t = DECL_ARGUMENTS (decl); t; t = DECL_CHAIN (t))
5056     ++num;
5057
5058   /* Check if the function has variadic arguments.  */
5059   for (t = TYPE_ARG_TYPES (TREE_TYPE (decl)); t; t = TREE_CHAIN (t))
5060     if (TREE_VALUE (t) == void_type_node)
5061       break;
5062   if (!t)
5063     *is_varargs = true;
5064
5065   return num;
5066 }
5067
5068 /* Creation function node for DECL, using NAME, and return the index
5069    of the variable we've created for the function.  */
5070
5071 static varinfo_t
5072 create_function_info_for (tree decl, const char *name)
5073 {
5074   struct function *fn = DECL_STRUCT_FUNCTION (decl);
5075   varinfo_t vi, prev_vi;
5076   tree arg;
5077   unsigned int i;
5078   bool is_varargs = false;
5079   unsigned int num_args = count_num_arguments (decl, &is_varargs);
5080
5081   /* Create the variable info.  */
5082
5083   vi = new_var_info (decl, name);
5084   vi->offset = 0;
5085   vi->size = 1;
5086   vi->fullsize = fi_parm_base + num_args;
5087   vi->is_fn_info = 1;
5088   vi->may_have_pointers = false;
5089   if (is_varargs)
5090     vi->fullsize = ~0;
5091   insert_vi_for_tree (vi->decl, vi);
5092
5093   prev_vi = vi;
5094
5095   /* Create a variable for things the function clobbers and one for
5096      things the function uses.  */
5097     {
5098       varinfo_t clobbervi, usevi;
5099       const char *newname;
5100       char *tempname;
5101
5102       asprintf (&tempname, "%s.clobber", name);
5103       newname = ggc_strdup (tempname);
5104       free (tempname);
5105
5106       clobbervi = new_var_info (NULL, newname);
5107       clobbervi->offset = fi_clobbers;
5108       clobbervi->size = 1;
5109       clobbervi->fullsize = vi->fullsize;
5110       clobbervi->is_full_var = true;
5111       clobbervi->is_global_var = false;
5112       gcc_assert (prev_vi->offset < clobbervi->offset);
5113       prev_vi->next = clobbervi;
5114       prev_vi = clobbervi;
5115
5116       asprintf (&tempname, "%s.use", name);
5117       newname = ggc_strdup (tempname);
5118       free (tempname);
5119
5120       usevi = new_var_info (NULL, newname);
5121       usevi->offset = fi_uses;
5122       usevi->size = 1;
5123       usevi->fullsize = vi->fullsize;
5124       usevi->is_full_var = true;
5125       usevi->is_global_var = false;
5126       gcc_assert (prev_vi->offset < usevi->offset);
5127       prev_vi->next = usevi;
5128       prev_vi = usevi;
5129     }
5130
5131   /* And one for the static chain.  */
5132   if (fn->static_chain_decl != NULL_TREE)
5133     {
5134       varinfo_t chainvi;
5135       const char *newname;
5136       char *tempname;
5137
5138       asprintf (&tempname, "%s.chain", name);
5139       newname = ggc_strdup (tempname);
5140       free (tempname);
5141
5142       chainvi = new_var_info (fn->static_chain_decl, newname);
5143       chainvi->offset = fi_static_chain;
5144       chainvi->size = 1;
5145       chainvi->fullsize = vi->fullsize;
5146       chainvi->is_full_var = true;
5147       chainvi->is_global_var = false;
5148       gcc_assert (prev_vi->offset < chainvi->offset);
5149       prev_vi->next = chainvi;
5150       prev_vi = chainvi;
5151       insert_vi_for_tree (fn->static_chain_decl, chainvi);
5152     }
5153
5154   /* Create a variable for the return var.  */
5155   if (DECL_RESULT (decl) != NULL
5156       || !VOID_TYPE_P (TREE_TYPE (TREE_TYPE (decl))))
5157     {
5158       varinfo_t resultvi;
5159       const char *newname;
5160       char *tempname;
5161       tree resultdecl = decl;
5162
5163       if (DECL_RESULT (decl))
5164         resultdecl = DECL_RESULT (decl);
5165
5166       asprintf (&tempname, "%s.result", name);
5167       newname = ggc_strdup (tempname);
5168       free (tempname);
5169
5170       resultvi = new_var_info (resultdecl, newname);
5171       resultvi->offset = fi_result;
5172       resultvi->size = 1;
5173       resultvi->fullsize = vi->fullsize;
5174       resultvi->is_full_var = true;
5175       if (DECL_RESULT (decl))
5176         resultvi->may_have_pointers = true;
5177       gcc_assert (prev_vi->offset < resultvi->offset);
5178       prev_vi->next = resultvi;
5179       prev_vi = resultvi;
5180       if (DECL_RESULT (decl))
5181         insert_vi_for_tree (DECL_RESULT (decl), resultvi);
5182     }
5183
5184   /* Set up variables for each argument.  */
5185   arg = DECL_ARGUMENTS (decl);
5186   for (i = 0; i < num_args; i++)
5187     {
5188       varinfo_t argvi;
5189       const char *newname;
5190       char *tempname;
5191       tree argdecl = decl;
5192
5193       if (arg)
5194         argdecl = arg;
5195
5196       asprintf (&tempname, "%s.arg%d", name, i);
5197       newname = ggc_strdup (tempname);
5198       free (tempname);
5199
5200       argvi = new_var_info (argdecl, newname);
5201       argvi->offset = fi_parm_base + i;
5202       argvi->size = 1;
5203       argvi->is_full_var = true;
5204       argvi->fullsize = vi->fullsize;
5205       if (arg)
5206         argvi->may_have_pointers = true;
5207       gcc_assert (prev_vi->offset < argvi->offset);
5208       prev_vi->next = argvi;
5209       prev_vi = argvi;
5210       if (arg)
5211         {
5212           insert_vi_for_tree (arg, argvi);
5213           arg = DECL_CHAIN (arg);
5214         }
5215     }
5216
5217   /* Add one representative for all further args.  */
5218   if (is_varargs)
5219     {
5220       varinfo_t argvi;
5221       const char *newname;
5222       char *tempname;
5223       tree decl;
5224
5225       asprintf (&tempname, "%s.varargs", name);
5226       newname = ggc_strdup (tempname);
5227       free (tempname);
5228
5229       /* We need sth that can be pointed to for va_start.  */
5230       decl = build_fake_var_decl (ptr_type_node);
5231
5232       argvi = new_var_info (decl, newname);
5233       argvi->offset = fi_parm_base + num_args;
5234       argvi->size = ~0;
5235       argvi->is_full_var = true;
5236       argvi->is_heap_var = true;
5237       argvi->fullsize = vi->fullsize;
5238       gcc_assert (prev_vi->offset < argvi->offset);
5239       prev_vi->next = argvi;
5240       prev_vi = argvi;
5241     }
5242
5243   return vi;
5244 }
5245
5246
5247 /* Return true if FIELDSTACK contains fields that overlap.
5248    FIELDSTACK is assumed to be sorted by offset.  */
5249
5250 static bool
5251 check_for_overlaps (VEC (fieldoff_s,heap) *fieldstack)
5252 {
5253   fieldoff_s *fo = NULL;
5254   unsigned int i;
5255   HOST_WIDE_INT lastoffset = -1;
5256
5257   FOR_EACH_VEC_ELT (fieldoff_s, fieldstack, i, fo)
5258     {
5259       if (fo->offset == lastoffset)
5260         return true;
5261       lastoffset = fo->offset;
5262     }
5263   return false;
5264 }
5265
5266 /* Create a varinfo structure for NAME and DECL, and add it to VARMAP.
5267    This will also create any varinfo structures necessary for fields
5268    of DECL.  */
5269
5270 static varinfo_t
5271 create_variable_info_for_1 (tree decl, const char *name)
5272 {
5273   varinfo_t vi, newvi;
5274   tree decl_type = TREE_TYPE (decl);
5275   tree declsize = DECL_P (decl) ? DECL_SIZE (decl) : TYPE_SIZE (decl_type);
5276   VEC (fieldoff_s,heap) *fieldstack = NULL;
5277   fieldoff_s *fo;
5278   unsigned int i;
5279
5280   if (!declsize
5281       || !host_integerp (declsize, 1))
5282     {
5283       vi = new_var_info (decl, name);
5284       vi->offset = 0;
5285       vi->size = ~0;
5286       vi->fullsize = ~0;
5287       vi->is_unknown_size_var = true;
5288       vi->is_full_var = true;
5289       vi->may_have_pointers = true;
5290       return vi;
5291     }
5292
5293   /* Collect field information.  */
5294   if (use_field_sensitive
5295       && var_can_have_subvars (decl)
5296       /* ???  Force us to not use subfields for global initializers
5297          in IPA mode.  Else we'd have to parse arbitrary initializers.  */
5298       && !(in_ipa_mode
5299            && is_global_var (decl)
5300            && DECL_INITIAL (decl)))
5301     {
5302       fieldoff_s *fo = NULL;
5303       bool notokay = false;
5304       unsigned int i;
5305
5306       push_fields_onto_fieldstack (decl_type, &fieldstack, 0);
5307
5308       for (i = 0; !notokay && VEC_iterate (fieldoff_s, fieldstack, i, fo); i++)
5309         if (fo->has_unknown_size
5310             || fo->offset < 0)
5311           {
5312             notokay = true;
5313             break;
5314           }
5315
5316       /* We can't sort them if we have a field with a variable sized type,
5317          which will make notokay = true.  In that case, we are going to return
5318          without creating varinfos for the fields anyway, so sorting them is a
5319          waste to boot.  */
5320       if (!notokay)
5321         {
5322           sort_fieldstack (fieldstack);
5323           /* Due to some C++ FE issues, like PR 22488, we might end up
5324              what appear to be overlapping fields even though they,
5325              in reality, do not overlap.  Until the C++ FE is fixed,
5326              we will simply disable field-sensitivity for these cases.  */
5327           notokay = check_for_overlaps (fieldstack);
5328         }
5329
5330       if (notokay)
5331         VEC_free (fieldoff_s, heap, fieldstack);
5332     }
5333
5334   /* If we didn't end up collecting sub-variables create a full
5335      variable for the decl.  */
5336   if (VEC_length (fieldoff_s, fieldstack) <= 1
5337       || VEC_length (fieldoff_s, fieldstack) > MAX_FIELDS_FOR_FIELD_SENSITIVE)
5338     {
5339       vi = new_var_info (decl, name);
5340       vi->offset = 0;
5341       vi->may_have_pointers = true;
5342       vi->fullsize = TREE_INT_CST_LOW (declsize);
5343       vi->size = vi->fullsize;
5344       vi->is_full_var = true;
5345       VEC_free (fieldoff_s, heap, fieldstack);
5346       return vi;
5347     }
5348
5349   vi = new_var_info (decl, name);
5350   vi->fullsize = TREE_INT_CST_LOW (declsize);
5351   for (i = 0, newvi = vi;
5352        VEC_iterate (fieldoff_s, fieldstack, i, fo);
5353        ++i, newvi = newvi->next)
5354     {
5355       const char *newname = "NULL";
5356       char *tempname;
5357
5358       if (dump_file)
5359         {
5360           asprintf (&tempname, "%s." HOST_WIDE_INT_PRINT_DEC
5361                     "+" HOST_WIDE_INT_PRINT_DEC, name, fo->offset, fo->size);
5362           newname = ggc_strdup (tempname);
5363           free (tempname);
5364         }
5365       newvi->name = newname;
5366       newvi->offset = fo->offset;
5367       newvi->size = fo->size;
5368       newvi->fullsize = vi->fullsize;
5369       newvi->may_have_pointers = fo->may_have_pointers;
5370       newvi->only_restrict_pointers = fo->only_restrict_pointers;
5371       if (i + 1 < VEC_length (fieldoff_s, fieldstack))
5372         newvi->next = new_var_info (decl, name);
5373     }
5374
5375   VEC_free (fieldoff_s, heap, fieldstack);
5376
5377   return vi;
5378 }
5379
5380 static unsigned int
5381 create_variable_info_for (tree decl, const char *name)
5382 {
5383   varinfo_t vi = create_variable_info_for_1 (decl, name);
5384   unsigned int id = vi->id;
5385
5386   insert_vi_for_tree (decl, vi);
5387
5388   /* Create initial constraints for globals.  */
5389   for (; vi; vi = vi->next)
5390     {
5391       if (!vi->may_have_pointers
5392           || !vi->is_global_var)
5393         continue;
5394
5395       /* Mark global restrict qualified pointers.  */
5396       if ((POINTER_TYPE_P (TREE_TYPE (decl))
5397            && TYPE_RESTRICT (TREE_TYPE (decl)))
5398           || vi->only_restrict_pointers)
5399         make_constraint_from_restrict (vi, "GLOBAL_RESTRICT");
5400
5401       /* For escaped variables initialize them from nonlocal.  */
5402       if (!in_ipa_mode
5403           || DECL_EXTERNAL (decl) || TREE_PUBLIC (decl))
5404         make_copy_constraint (vi, nonlocal_id);
5405
5406       /* If this is a global variable with an initializer and we are in
5407          IPA mode generate constraints for it.  In non-IPA mode
5408          the initializer from nonlocal is all we need.  */
5409       if (in_ipa_mode
5410           && DECL_INITIAL (decl))
5411         {
5412           VEC (ce_s, heap) *rhsc = NULL;
5413           struct constraint_expr lhs, *rhsp;
5414           unsigned i;
5415           get_constraint_for_rhs (DECL_INITIAL (decl), &rhsc);
5416           lhs.var = vi->id;
5417           lhs.offset = 0;
5418           lhs.type = SCALAR;
5419           FOR_EACH_VEC_ELT (ce_s, rhsc, i, rhsp)
5420             process_constraint (new_constraint (lhs, *rhsp));
5421           /* If this is a variable that escapes from the unit
5422              the initializer escapes as well.  */
5423           if (DECL_EXTERNAL (decl) || TREE_PUBLIC (decl))
5424             {
5425               lhs.var = escaped_id;
5426               lhs.offset = 0;
5427               lhs.type = SCALAR;
5428               FOR_EACH_VEC_ELT (ce_s, rhsc, i, rhsp)
5429                 process_constraint (new_constraint (lhs, *rhsp));
5430             }
5431           VEC_free (ce_s, heap, rhsc);
5432         }
5433     }
5434
5435   return id;
5436 }
5437
5438 /* Print out the points-to solution for VAR to FILE.  */
5439
5440 static void
5441 dump_solution_for_var (FILE *file, unsigned int var)
5442 {
5443   varinfo_t vi = get_varinfo (var);
5444   unsigned int i;
5445   bitmap_iterator bi;
5446
5447   /* Dump the solution for unified vars anyway, this avoids difficulties
5448      in scanning dumps in the testsuite.  */
5449   fprintf (file, "%s = { ", vi->name);
5450   vi = get_varinfo (find (var));
5451   EXECUTE_IF_SET_IN_BITMAP (vi->solution, 0, i, bi)
5452     fprintf (file, "%s ", get_varinfo (i)->name);
5453   fprintf (file, "}");
5454
5455   /* But note when the variable was unified.  */
5456   if (vi->id != var)
5457     fprintf (file, " same as %s", vi->name);
5458
5459   fprintf (file, "\n");
5460 }
5461
5462 /* Print the points-to solution for VAR to stdout.  */
5463
5464 DEBUG_FUNCTION void
5465 debug_solution_for_var (unsigned int var)
5466 {
5467   dump_solution_for_var (stdout, var);
5468 }
5469
5470 /* Create varinfo structures for all of the variables in the
5471    function for intraprocedural mode.  */
5472
5473 static void
5474 intra_create_variable_infos (void)
5475 {
5476   tree t;
5477
5478   /* For each incoming pointer argument arg, create the constraint ARG
5479      = NONLOCAL or a dummy variable if it is a restrict qualified
5480      passed-by-reference argument.  */
5481   for (t = DECL_ARGUMENTS (current_function_decl); t; t = DECL_CHAIN (t))
5482     {
5483       varinfo_t p;
5484
5485       /* For restrict qualified pointers to objects passed by
5486          reference build a real representative for the pointed-to object.  */
5487       if (DECL_BY_REFERENCE (t)
5488           && POINTER_TYPE_P (TREE_TYPE (t))
5489           && TYPE_RESTRICT (TREE_TYPE (t)))
5490         {
5491           struct constraint_expr lhsc, rhsc;
5492           varinfo_t vi;
5493           tree heapvar = build_fake_var_decl (TREE_TYPE (TREE_TYPE (t)));
5494           DECL_EXTERNAL (heapvar) = 1;
5495           vi = get_varinfo (create_variable_info_for (heapvar, "PARM_NOALIAS"));
5496           lhsc.var = get_vi_for_tree (t)->id;
5497           lhsc.type = SCALAR;
5498           lhsc.offset = 0;
5499           rhsc.var = vi->id;
5500           rhsc.type = ADDRESSOF;
5501           rhsc.offset = 0;
5502           process_constraint (new_constraint (lhsc, rhsc));
5503           vi->is_restrict_var = 1;
5504           continue;
5505         }
5506
5507       for (p = get_vi_for_tree (t); p; p = p->next)
5508         {
5509           if (p->may_have_pointers)
5510             make_constraint_from (p, nonlocal_id);
5511           if (p->only_restrict_pointers)
5512             make_constraint_from_restrict (p, "PARM_RESTRICT");
5513         }
5514       if (POINTER_TYPE_P (TREE_TYPE (t))
5515           && TYPE_RESTRICT (TREE_TYPE (t)))
5516         make_constraint_from_restrict (get_vi_for_tree (t), "PARM_RESTRICT");
5517     }
5518
5519   /* Add a constraint for a result decl that is passed by reference.  */
5520   if (DECL_RESULT (cfun->decl)
5521       && DECL_BY_REFERENCE (DECL_RESULT (cfun->decl)))
5522     {
5523       varinfo_t p, result_vi = get_vi_for_tree (DECL_RESULT (cfun->decl));
5524
5525       for (p = result_vi; p; p = p->next)
5526         make_constraint_from (p, nonlocal_id);
5527     }
5528
5529   /* Add a constraint for the incoming static chain parameter.  */
5530   if (cfun->static_chain_decl != NULL_TREE)
5531     {
5532       varinfo_t p, chain_vi = get_vi_for_tree (cfun->static_chain_decl);
5533
5534       for (p = chain_vi; p; p = p->next)
5535         make_constraint_from (p, nonlocal_id);
5536     }
5537 }
5538
5539 /* Structure used to put solution bitmaps in a hashtable so they can
5540    be shared among variables with the same points-to set.  */
5541
5542 typedef struct shared_bitmap_info
5543 {
5544   bitmap pt_vars;
5545   hashval_t hashcode;
5546 } *shared_bitmap_info_t;
5547 typedef const struct shared_bitmap_info *const_shared_bitmap_info_t;
5548
5549 static htab_t shared_bitmap_table;
5550
5551 /* Hash function for a shared_bitmap_info_t */
5552
5553 static hashval_t
5554 shared_bitmap_hash (const void *p)
5555 {
5556   const_shared_bitmap_info_t const bi = (const_shared_bitmap_info_t) p;
5557   return bi->hashcode;
5558 }
5559
5560 /* Equality function for two shared_bitmap_info_t's. */
5561
5562 static int
5563 shared_bitmap_eq (const void *p1, const void *p2)
5564 {
5565   const_shared_bitmap_info_t const sbi1 = (const_shared_bitmap_info_t) p1;
5566   const_shared_bitmap_info_t const sbi2 = (const_shared_bitmap_info_t) p2;
5567   return bitmap_equal_p (sbi1->pt_vars, sbi2->pt_vars);
5568 }
5569
5570 /* Lookup a bitmap in the shared bitmap hashtable, and return an already
5571    existing instance if there is one, NULL otherwise.  */
5572
5573 static bitmap
5574 shared_bitmap_lookup (bitmap pt_vars)
5575 {
5576   void **slot;
5577   struct shared_bitmap_info sbi;
5578
5579   sbi.pt_vars = pt_vars;
5580   sbi.hashcode = bitmap_hash (pt_vars);
5581
5582   slot = htab_find_slot_with_hash (shared_bitmap_table, &sbi,
5583                                    sbi.hashcode, NO_INSERT);
5584   if (!slot)
5585     return NULL;
5586   else
5587     return ((shared_bitmap_info_t) *slot)->pt_vars;
5588 }
5589
5590
5591 /* Add a bitmap to the shared bitmap hashtable.  */
5592
5593 static void
5594 shared_bitmap_add (bitmap pt_vars)
5595 {
5596   void **slot;
5597   shared_bitmap_info_t sbi = XNEW (struct shared_bitmap_info);
5598
5599   sbi->pt_vars = pt_vars;
5600   sbi->hashcode = bitmap_hash (pt_vars);
5601
5602   slot = htab_find_slot_with_hash (shared_bitmap_table, sbi,
5603                                    sbi->hashcode, INSERT);
5604   gcc_assert (!*slot);
5605   *slot = (void *) sbi;
5606 }
5607
5608
5609 /* Set bits in INTO corresponding to the variable uids in solution set FROM.  */
5610
5611 static void
5612 set_uids_in_ptset (bitmap into, bitmap from, struct pt_solution *pt)
5613 {
5614   unsigned int i;
5615   bitmap_iterator bi;
5616
5617   EXECUTE_IF_SET_IN_BITMAP (from, 0, i, bi)
5618     {
5619       varinfo_t vi = get_varinfo (i);
5620
5621       /* The only artificial variables that are allowed in a may-alias
5622          set are heap variables.  */
5623       if (vi->is_artificial_var && !vi->is_heap_var)
5624         continue;
5625
5626       if (TREE_CODE (vi->decl) == VAR_DECL
5627           || TREE_CODE (vi->decl) == PARM_DECL
5628           || TREE_CODE (vi->decl) == RESULT_DECL)
5629         {
5630           /* If we are in IPA mode we will not recompute points-to
5631              sets after inlining so make sure they stay valid.  */
5632           if (in_ipa_mode
5633               && !DECL_PT_UID_SET_P (vi->decl))
5634             SET_DECL_PT_UID (vi->decl, DECL_UID (vi->decl));
5635
5636           /* Add the decl to the points-to set.  Note that the points-to
5637              set contains global variables.  */
5638           bitmap_set_bit (into, DECL_PT_UID (vi->decl));
5639           if (vi->is_global_var)
5640             pt->vars_contains_global = true;
5641         }
5642     }
5643 }
5644
5645
5646 /* Compute the points-to solution *PT for the variable VI.  */
5647
5648 static void
5649 find_what_var_points_to (varinfo_t orig_vi, struct pt_solution *pt)
5650 {
5651   unsigned int i;
5652   bitmap_iterator bi;
5653   bitmap finished_solution;
5654   bitmap result;
5655   varinfo_t vi;
5656
5657   memset (pt, 0, sizeof (struct pt_solution));
5658
5659   /* This variable may have been collapsed, let's get the real
5660      variable.  */
5661   vi = get_varinfo (find (orig_vi->id));
5662
5663   /* Translate artificial variables into SSA_NAME_PTR_INFO
5664      attributes.  */
5665   EXECUTE_IF_SET_IN_BITMAP (vi->solution, 0, i, bi)
5666     {
5667       varinfo_t vi = get_varinfo (i);
5668
5669       if (vi->is_artificial_var)
5670         {
5671           if (vi->id == nothing_id)
5672             pt->null = 1;
5673           else if (vi->id == escaped_id)
5674             {
5675               if (in_ipa_mode)
5676                 pt->ipa_escaped = 1;
5677               else
5678                 pt->escaped = 1;
5679             }
5680           else if (vi->id == nonlocal_id)
5681             pt->nonlocal = 1;
5682           else if (vi->is_heap_var)
5683             /* We represent heapvars in the points-to set properly.  */
5684             ;
5685           else if (vi->id == readonly_id)
5686             /* Nobody cares.  */
5687             ;
5688           else if (vi->id == anything_id
5689                    || vi->id == integer_id)
5690             pt->anything = 1;
5691         }
5692       if (vi->is_restrict_var)
5693         pt->vars_contains_restrict = true;
5694     }
5695
5696   /* Instead of doing extra work, simply do not create
5697      elaborate points-to information for pt_anything pointers.  */
5698   if (pt->anything
5699       && (orig_vi->is_artificial_var
5700           || !pt->vars_contains_restrict))
5701     return;
5702
5703   /* Share the final set of variables when possible.  */
5704   finished_solution = BITMAP_GGC_ALLOC ();
5705   stats.points_to_sets_created++;
5706
5707   set_uids_in_ptset (finished_solution, vi->solution, pt);
5708   result = shared_bitmap_lookup (finished_solution);
5709   if (!result)
5710     {
5711       shared_bitmap_add (finished_solution);
5712       pt->vars = finished_solution;
5713     }
5714   else
5715     {
5716       pt->vars = result;
5717       bitmap_clear (finished_solution);
5718     }
5719 }
5720
5721 /* Given a pointer variable P, fill in its points-to set.  */
5722
5723 static void
5724 find_what_p_points_to (tree p)
5725 {
5726   struct ptr_info_def *pi;
5727   tree lookup_p = p;
5728   varinfo_t vi;
5729
5730   /* For parameters, get at the points-to set for the actual parm
5731      decl.  */
5732   if (TREE_CODE (p) == SSA_NAME
5733       && (TREE_CODE (SSA_NAME_VAR (p)) == PARM_DECL
5734           || TREE_CODE (SSA_NAME_VAR (p)) == RESULT_DECL)
5735       && SSA_NAME_IS_DEFAULT_DEF (p))
5736     lookup_p = SSA_NAME_VAR (p);
5737
5738   vi = lookup_vi_for_tree (lookup_p);
5739   if (!vi)
5740     return;
5741
5742   pi = get_ptr_info (p);
5743   find_what_var_points_to (vi, &pi->pt);
5744 }
5745
5746
5747 /* Query statistics for points-to solutions.  */
5748
5749 static struct {
5750   unsigned HOST_WIDE_INT pt_solution_includes_may_alias;
5751   unsigned HOST_WIDE_INT pt_solution_includes_no_alias;
5752   unsigned HOST_WIDE_INT pt_solutions_intersect_may_alias;
5753   unsigned HOST_WIDE_INT pt_solutions_intersect_no_alias;
5754 } pta_stats;
5755
5756 void
5757 dump_pta_stats (FILE *s)
5758 {
5759   fprintf (s, "\nPTA query stats:\n");
5760   fprintf (s, "  pt_solution_includes: "
5761            HOST_WIDE_INT_PRINT_DEC" disambiguations, "
5762            HOST_WIDE_INT_PRINT_DEC" queries\n",
5763            pta_stats.pt_solution_includes_no_alias,
5764            pta_stats.pt_solution_includes_no_alias
5765            + pta_stats.pt_solution_includes_may_alias);
5766   fprintf (s, "  pt_solutions_intersect: "
5767            HOST_WIDE_INT_PRINT_DEC" disambiguations, "
5768            HOST_WIDE_INT_PRINT_DEC" queries\n",
5769            pta_stats.pt_solutions_intersect_no_alias,
5770            pta_stats.pt_solutions_intersect_no_alias
5771            + pta_stats.pt_solutions_intersect_may_alias);
5772 }
5773
5774
5775 /* Reset the points-to solution *PT to a conservative default
5776    (point to anything).  */
5777
5778 void
5779 pt_solution_reset (struct pt_solution *pt)
5780 {
5781   memset (pt, 0, sizeof (struct pt_solution));
5782   pt->anything = true;
5783 }
5784
5785 /* Set the points-to solution *PT to point only to the variables
5786    in VARS.  VARS_CONTAINS_GLOBAL specifies whether that contains
5787    global variables and VARS_CONTAINS_RESTRICT specifies whether
5788    it contains restrict tag variables.  */
5789
5790 void
5791 pt_solution_set (struct pt_solution *pt, bitmap vars,
5792                  bool vars_contains_global, bool vars_contains_restrict)
5793 {
5794   memset (pt, 0, sizeof (struct pt_solution));
5795   pt->vars = vars;
5796   pt->vars_contains_global = vars_contains_global;
5797   pt->vars_contains_restrict = vars_contains_restrict;
5798 }
5799
5800 /* Set the points-to solution *PT to point only to the variable VAR.  */
5801
5802 void
5803 pt_solution_set_var (struct pt_solution *pt, tree var)
5804 {
5805   memset (pt, 0, sizeof (struct pt_solution));
5806   pt->vars = BITMAP_GGC_ALLOC ();
5807   bitmap_set_bit (pt->vars, DECL_PT_UID (var));
5808   pt->vars_contains_global = is_global_var (var);
5809 }
5810
5811 /* Computes the union of the points-to solutions *DEST and *SRC and
5812    stores the result in *DEST.  This changes the points-to bitmap
5813    of *DEST and thus may not be used if that might be shared.
5814    The points-to bitmap of *SRC and *DEST will not be shared after
5815    this function if they were not before.  */
5816
5817 static void
5818 pt_solution_ior_into (struct pt_solution *dest, struct pt_solution *src)
5819 {
5820   dest->anything |= src->anything;
5821   if (dest->anything)
5822     {
5823       pt_solution_reset (dest);
5824       return;
5825     }
5826
5827   dest->nonlocal |= src->nonlocal;
5828   dest->escaped |= src->escaped;
5829   dest->ipa_escaped |= src->ipa_escaped;
5830   dest->null |= src->null;
5831   dest->vars_contains_global |= src->vars_contains_global;
5832   dest->vars_contains_restrict |= src->vars_contains_restrict;
5833   if (!src->vars)
5834     return;
5835
5836   if (!dest->vars)
5837     dest->vars = BITMAP_GGC_ALLOC ();
5838   bitmap_ior_into (dest->vars, src->vars);
5839 }
5840
5841 /* Return true if the points-to solution *PT is empty.  */
5842
5843 bool
5844 pt_solution_empty_p (struct pt_solution *pt)
5845 {
5846   if (pt->anything
5847       || pt->nonlocal)
5848     return false;
5849
5850   if (pt->vars
5851       && !bitmap_empty_p (pt->vars))
5852     return false;
5853
5854   /* If the solution includes ESCAPED, check if that is empty.  */
5855   if (pt->escaped
5856       && !pt_solution_empty_p (&cfun->gimple_df->escaped))
5857     return false;
5858
5859   /* If the solution includes ESCAPED, check if that is empty.  */
5860   if (pt->ipa_escaped
5861       && !pt_solution_empty_p (&ipa_escaped_pt))
5862     return false;
5863
5864   return true;
5865 }
5866
5867 /* Return true if the points-to solution *PT includes global memory.  */
5868
5869 bool
5870 pt_solution_includes_global (struct pt_solution *pt)
5871 {
5872   if (pt->anything
5873       || pt->nonlocal
5874       || pt->vars_contains_global)
5875     return true;
5876
5877   if (pt->escaped)
5878     return pt_solution_includes_global (&cfun->gimple_df->escaped);
5879
5880   if (pt->ipa_escaped)
5881     return pt_solution_includes_global (&ipa_escaped_pt);
5882
5883   /* ???  This predicate is not correct for the IPA-PTA solution
5884      as we do not properly distinguish between unit escape points
5885      and global variables.  */
5886   if (cfun->gimple_df->ipa_pta)
5887     return true;
5888
5889   return false;
5890 }
5891
5892 /* Return true if the points-to solution *PT includes the variable
5893    declaration DECL.  */
5894
5895 static bool
5896 pt_solution_includes_1 (struct pt_solution *pt, const_tree decl)
5897 {
5898   if (pt->anything)
5899     return true;
5900
5901   if (pt->nonlocal
5902       && is_global_var (decl))
5903     return true;
5904
5905   if (pt->vars
5906       && bitmap_bit_p (pt->vars, DECL_PT_UID (decl)))
5907     return true;
5908
5909   /* If the solution includes ESCAPED, check it.  */
5910   if (pt->escaped
5911       && pt_solution_includes_1 (&cfun->gimple_df->escaped, decl))
5912     return true;
5913
5914   /* If the solution includes ESCAPED, check it.  */
5915   if (pt->ipa_escaped
5916       && pt_solution_includes_1 (&ipa_escaped_pt, decl))
5917     return true;
5918
5919   return false;
5920 }
5921
5922 bool
5923 pt_solution_includes (struct pt_solution *pt, const_tree decl)
5924 {
5925   bool res = pt_solution_includes_1 (pt, decl);
5926   if (res)
5927     ++pta_stats.pt_solution_includes_may_alias;
5928   else
5929     ++pta_stats.pt_solution_includes_no_alias;
5930   return res;
5931 }
5932
5933 /* Return true if both points-to solutions PT1 and PT2 have a non-empty
5934    intersection.  */
5935
5936 static bool
5937 pt_solutions_intersect_1 (struct pt_solution *pt1, struct pt_solution *pt2)
5938 {
5939   if (pt1->anything || pt2->anything)
5940     return true;
5941
5942   /* If either points to unknown global memory and the other points to
5943      any global memory they alias.  */
5944   if ((pt1->nonlocal
5945        && (pt2->nonlocal
5946            || pt2->vars_contains_global))
5947       || (pt2->nonlocal
5948           && pt1->vars_contains_global))
5949     return true;
5950
5951   /* Check the escaped solution if required.  */
5952   if ((pt1->escaped || pt2->escaped)
5953       && !pt_solution_empty_p (&cfun->gimple_df->escaped))
5954     {
5955       /* If both point to escaped memory and that solution
5956          is not empty they alias.  */
5957       if (pt1->escaped && pt2->escaped)
5958         return true;
5959
5960       /* If either points to escaped memory see if the escaped solution
5961          intersects with the other.  */
5962       if ((pt1->escaped
5963            && pt_solutions_intersect_1 (&cfun->gimple_df->escaped, pt2))
5964           || (pt2->escaped
5965               && pt_solutions_intersect_1 (&cfun->gimple_df->escaped, pt1)))
5966         return true;
5967     }
5968
5969   /* Check the escaped solution if required.
5970      ???  Do we need to check the local against the IPA escaped sets?  */
5971   if ((pt1->ipa_escaped || pt2->ipa_escaped)
5972       && !pt_solution_empty_p (&ipa_escaped_pt))
5973     {
5974       /* If both point to escaped memory and that solution
5975          is not empty they alias.  */
5976       if (pt1->ipa_escaped && pt2->ipa_escaped)
5977         return true;
5978
5979       /* If either points to escaped memory see if the escaped solution
5980          intersects with the other.  */
5981       if ((pt1->ipa_escaped
5982            && pt_solutions_intersect_1 (&ipa_escaped_pt, pt2))
5983           || (pt2->ipa_escaped
5984               && pt_solutions_intersect_1 (&ipa_escaped_pt, pt1)))
5985         return true;
5986     }
5987
5988   /* Now both pointers alias if their points-to solution intersects.  */
5989   return (pt1->vars
5990           && pt2->vars
5991           && bitmap_intersect_p (pt1->vars, pt2->vars));
5992 }
5993
5994 bool
5995 pt_solutions_intersect (struct pt_solution *pt1, struct pt_solution *pt2)
5996 {
5997   bool res = pt_solutions_intersect_1 (pt1, pt2);
5998   if (res)
5999     ++pta_stats.pt_solutions_intersect_may_alias;
6000   else
6001     ++pta_stats.pt_solutions_intersect_no_alias;
6002   return res;
6003 }
6004
6005 /* Return true if both points-to solutions PT1 and PT2 for two restrict
6006    qualified pointers are possibly based on the same pointer.  */
6007
6008 bool
6009 pt_solutions_same_restrict_base (struct pt_solution *pt1,
6010                                  struct pt_solution *pt2)
6011 {
6012   /* If we deal with points-to solutions of two restrict qualified
6013      pointers solely rely on the pointed-to variable bitmap intersection.
6014      For two pointers that are based on each other the bitmaps will
6015      intersect.  */
6016   if (pt1->vars_contains_restrict
6017       && pt2->vars_contains_restrict)
6018     {
6019       gcc_assert (pt1->vars && pt2->vars);
6020       return bitmap_intersect_p (pt1->vars, pt2->vars);
6021     }
6022
6023   return true;
6024 }
6025
6026
6027 /* Dump points-to information to OUTFILE.  */
6028
6029 static void
6030 dump_sa_points_to_info (FILE *outfile)
6031 {
6032   unsigned int i;
6033
6034   fprintf (outfile, "\nPoints-to sets\n\n");
6035
6036   if (dump_flags & TDF_STATS)
6037     {
6038       fprintf (outfile, "Stats:\n");
6039       fprintf (outfile, "Total vars:               %d\n", stats.total_vars);
6040       fprintf (outfile, "Non-pointer vars:          %d\n",
6041                stats.nonpointer_vars);
6042       fprintf (outfile, "Statically unified vars:  %d\n",
6043                stats.unified_vars_static);
6044       fprintf (outfile, "Dynamically unified vars: %d\n",
6045                stats.unified_vars_dynamic);
6046       fprintf (outfile, "Iterations:               %d\n", stats.iterations);
6047       fprintf (outfile, "Number of edges:          %d\n", stats.num_edges);
6048       fprintf (outfile, "Number of implicit edges: %d\n",
6049                stats.num_implicit_edges);
6050     }
6051
6052   for (i = 0; i < VEC_length (varinfo_t, varmap); i++)
6053     {
6054       varinfo_t vi = get_varinfo (i);
6055       if (!vi->may_have_pointers)
6056         continue;
6057       dump_solution_for_var (outfile, i);
6058     }
6059 }
6060
6061
6062 /* Debug points-to information to stderr.  */
6063
6064 DEBUG_FUNCTION void
6065 debug_sa_points_to_info (void)
6066 {
6067   dump_sa_points_to_info (stderr);
6068 }
6069
6070
6071 /* Initialize the always-existing constraint variables for NULL
6072    ANYTHING, READONLY, and INTEGER */
6073
6074 static void
6075 init_base_vars (void)
6076 {
6077   struct constraint_expr lhs, rhs;
6078   varinfo_t var_anything;
6079   varinfo_t var_nothing;
6080   varinfo_t var_readonly;
6081   varinfo_t var_escaped;
6082   varinfo_t var_nonlocal;
6083   varinfo_t var_storedanything;
6084   varinfo_t var_integer;
6085
6086   /* Create the NULL variable, used to represent that a variable points
6087      to NULL.  */
6088   var_nothing = new_var_info (NULL_TREE, "NULL");
6089   gcc_assert (var_nothing->id == nothing_id);
6090   var_nothing->is_artificial_var = 1;
6091   var_nothing->offset = 0;
6092   var_nothing->size = ~0;
6093   var_nothing->fullsize = ~0;
6094   var_nothing->is_special_var = 1;
6095   var_nothing->may_have_pointers = 0;
6096   var_nothing->is_global_var = 0;
6097
6098   /* Create the ANYTHING variable, used to represent that a variable
6099      points to some unknown piece of memory.  */
6100   var_anything = new_var_info (NULL_TREE, "ANYTHING");
6101   gcc_assert (var_anything->id == anything_id);
6102   var_anything->is_artificial_var = 1;
6103   var_anything->size = ~0;
6104   var_anything->offset = 0;
6105   var_anything->next = NULL;
6106   var_anything->fullsize = ~0;
6107   var_anything->is_special_var = 1;
6108
6109   /* Anything points to anything.  This makes deref constraints just
6110      work in the presence of linked list and other p = *p type loops,
6111      by saying that *ANYTHING = ANYTHING. */
6112   lhs.type = SCALAR;
6113   lhs.var = anything_id;
6114   lhs.offset = 0;
6115   rhs.type = ADDRESSOF;
6116   rhs.var = anything_id;
6117   rhs.offset = 0;
6118
6119   /* This specifically does not use process_constraint because
6120      process_constraint ignores all anything = anything constraints, since all
6121      but this one are redundant.  */
6122   VEC_safe_push (constraint_t, heap, constraints, new_constraint (lhs, rhs));
6123
6124   /* Create the READONLY variable, used to represent that a variable
6125      points to readonly memory.  */
6126   var_readonly = new_var_info (NULL_TREE, "READONLY");
6127   gcc_assert (var_readonly->id == readonly_id);
6128   var_readonly->is_artificial_var = 1;
6129   var_readonly->offset = 0;
6130   var_readonly->size = ~0;
6131   var_readonly->fullsize = ~0;
6132   var_readonly->next = NULL;
6133   var_readonly->is_special_var = 1;
6134
6135   /* readonly memory points to anything, in order to make deref
6136      easier.  In reality, it points to anything the particular
6137      readonly variable can point to, but we don't track this
6138      separately. */
6139   lhs.type = SCALAR;
6140   lhs.var = readonly_id;
6141   lhs.offset = 0;
6142   rhs.type = ADDRESSOF;
6143   rhs.var = readonly_id;  /* FIXME */
6144   rhs.offset = 0;
6145   process_constraint (new_constraint (lhs, rhs));
6146
6147   /* Create the ESCAPED variable, used to represent the set of escaped
6148      memory.  */
6149   var_escaped = new_var_info (NULL_TREE, "ESCAPED");
6150   gcc_assert (var_escaped->id == escaped_id);
6151   var_escaped->is_artificial_var = 1;
6152   var_escaped->offset = 0;
6153   var_escaped->size = ~0;
6154   var_escaped->fullsize = ~0;
6155   var_escaped->is_special_var = 0;
6156
6157   /* Create the NONLOCAL variable, used to represent the set of nonlocal
6158      memory.  */
6159   var_nonlocal = new_var_info (NULL_TREE, "NONLOCAL");
6160   gcc_assert (var_nonlocal->id == nonlocal_id);
6161   var_nonlocal->is_artificial_var = 1;
6162   var_nonlocal->offset = 0;
6163   var_nonlocal->size = ~0;
6164   var_nonlocal->fullsize = ~0;
6165   var_nonlocal->is_special_var = 1;
6166
6167   /* ESCAPED = *ESCAPED, because escaped is may-deref'd at calls, etc.  */
6168   lhs.type = SCALAR;
6169   lhs.var = escaped_id;
6170   lhs.offset = 0;
6171   rhs.type = DEREF;
6172   rhs.var = escaped_id;
6173   rhs.offset = 0;
6174   process_constraint (new_constraint (lhs, rhs));
6175
6176   /* ESCAPED = ESCAPED + UNKNOWN_OFFSET, because if a sub-field escapes the
6177      whole variable escapes.  */
6178   lhs.type = SCALAR;
6179   lhs.var = escaped_id;
6180   lhs.offset = 0;
6181   rhs.type = SCALAR;
6182   rhs.var = escaped_id;
6183   rhs.offset = UNKNOWN_OFFSET;
6184   process_constraint (new_constraint (lhs, rhs));
6185
6186   /* *ESCAPED = NONLOCAL.  This is true because we have to assume
6187      everything pointed to by escaped points to what global memory can
6188      point to.  */
6189   lhs.type = DEREF;
6190   lhs.var = escaped_id;
6191   lhs.offset = 0;
6192   rhs.type = SCALAR;
6193   rhs.var = nonlocal_id;
6194   rhs.offset = 0;
6195   process_constraint (new_constraint (lhs, rhs));
6196
6197   /* NONLOCAL = &NONLOCAL, NONLOCAL = &ESCAPED.  This is true because
6198      global memory may point to global memory and escaped memory.  */
6199   lhs.type = SCALAR;
6200   lhs.var = nonlocal_id;
6201   lhs.offset = 0;
6202   rhs.type = ADDRESSOF;
6203   rhs.var = nonlocal_id;
6204   rhs.offset = 0;
6205   process_constraint (new_constraint (lhs, rhs));
6206   rhs.type = ADDRESSOF;
6207   rhs.var = escaped_id;
6208   rhs.offset = 0;
6209   process_constraint (new_constraint (lhs, rhs));
6210
6211   /* Create the STOREDANYTHING variable, used to represent the set of
6212      variables stored to *ANYTHING.  */
6213   var_storedanything = new_var_info (NULL_TREE, "STOREDANYTHING");
6214   gcc_assert (var_storedanything->id == storedanything_id);
6215   var_storedanything->is_artificial_var = 1;
6216   var_storedanything->offset = 0;
6217   var_storedanything->size = ~0;
6218   var_storedanything->fullsize = ~0;
6219   var_storedanything->is_special_var = 0;
6220
6221   /* Create the INTEGER variable, used to represent that a variable points
6222      to what an INTEGER "points to".  */
6223   var_integer = new_var_info (NULL_TREE, "INTEGER");
6224   gcc_assert (var_integer->id == integer_id);
6225   var_integer->is_artificial_var = 1;
6226   var_integer->size = ~0;
6227   var_integer->fullsize = ~0;
6228   var_integer->offset = 0;
6229   var_integer->next = NULL;
6230   var_integer->is_special_var = 1;
6231
6232   /* INTEGER = ANYTHING, because we don't know where a dereference of
6233      a random integer will point to.  */
6234   lhs.type = SCALAR;
6235   lhs.var = integer_id;
6236   lhs.offset = 0;
6237   rhs.type = ADDRESSOF;
6238   rhs.var = anything_id;
6239   rhs.offset = 0;
6240   process_constraint (new_constraint (lhs, rhs));
6241 }
6242
6243 /* Initialize things necessary to perform PTA */
6244
6245 static void
6246 init_alias_vars (void)
6247 {
6248   use_field_sensitive = (MAX_FIELDS_FOR_FIELD_SENSITIVE > 1);
6249
6250   bitmap_obstack_initialize (&pta_obstack);
6251   bitmap_obstack_initialize (&oldpta_obstack);
6252   bitmap_obstack_initialize (&predbitmap_obstack);
6253
6254   constraint_pool = create_alloc_pool ("Constraint pool",
6255                                        sizeof (struct constraint), 30);
6256   variable_info_pool = create_alloc_pool ("Variable info pool",
6257                                           sizeof (struct variable_info), 30);
6258   constraints = VEC_alloc (constraint_t, heap, 8);
6259   varmap = VEC_alloc (varinfo_t, heap, 8);
6260   vi_for_tree = pointer_map_create ();
6261   call_stmt_vars = pointer_map_create ();
6262
6263   memset (&stats, 0, sizeof (stats));
6264   shared_bitmap_table = htab_create (511, shared_bitmap_hash,
6265                                      shared_bitmap_eq, free);
6266   init_base_vars ();
6267
6268   gcc_obstack_init (&fake_var_decl_obstack);
6269 }
6270
6271 /* Remove the REF and ADDRESS edges from GRAPH, as well as all the
6272    predecessor edges.  */
6273
6274 static void
6275 remove_preds_and_fake_succs (constraint_graph_t graph)
6276 {
6277   unsigned int i;
6278
6279   /* Clear the implicit ref and address nodes from the successor
6280      lists.  */
6281   for (i = 0; i < FIRST_REF_NODE; i++)
6282     {
6283       if (graph->succs[i])
6284         bitmap_clear_range (graph->succs[i], FIRST_REF_NODE,
6285                             FIRST_REF_NODE * 2);
6286     }
6287
6288   /* Free the successor list for the non-ref nodes.  */
6289   for (i = FIRST_REF_NODE; i < graph->size; i++)
6290     {
6291       if (graph->succs[i])
6292         BITMAP_FREE (graph->succs[i]);
6293     }
6294
6295   /* Now reallocate the size of the successor list as, and blow away
6296      the predecessor bitmaps.  */
6297   graph->size = VEC_length (varinfo_t, varmap);
6298   graph->succs = XRESIZEVEC (bitmap, graph->succs, graph->size);
6299
6300   free (graph->implicit_preds);
6301   graph->implicit_preds = NULL;
6302   free (graph->preds);
6303   graph->preds = NULL;
6304   bitmap_obstack_release (&predbitmap_obstack);
6305 }
6306
6307 /* Solve the constraint set.  */
6308
6309 static void
6310 solve_constraints (void)
6311 {
6312   struct scc_info *si;
6313
6314   if (dump_file)
6315     fprintf (dump_file,
6316              "\nCollapsing static cycles and doing variable "
6317              "substitution\n");
6318
6319   init_graph (VEC_length (varinfo_t, varmap) * 2);
6320
6321   if (dump_file)
6322     fprintf (dump_file, "Building predecessor graph\n");
6323   build_pred_graph ();
6324
6325   if (dump_file)
6326     fprintf (dump_file, "Detecting pointer and location "
6327              "equivalences\n");
6328   si = perform_var_substitution (graph);
6329
6330   if (dump_file)
6331     fprintf (dump_file, "Rewriting constraints and unifying "
6332              "variables\n");
6333   rewrite_constraints (graph, si);
6334
6335   build_succ_graph ();
6336   free_var_substitution_info (si);
6337
6338   if (dump_file && (dump_flags & TDF_GRAPH))
6339     dump_constraint_graph (dump_file);
6340
6341   move_complex_constraints (graph);
6342
6343   if (dump_file)
6344     fprintf (dump_file, "Uniting pointer but not location equivalent "
6345              "variables\n");
6346   unite_pointer_equivalences (graph);
6347
6348   if (dump_file)
6349     fprintf (dump_file, "Finding indirect cycles\n");
6350   find_indirect_cycles (graph);
6351
6352   /* Implicit nodes and predecessors are no longer necessary at this
6353      point. */
6354   remove_preds_and_fake_succs (graph);
6355
6356   if (dump_file)
6357     fprintf (dump_file, "Solving graph\n");
6358
6359   solve_graph (graph);
6360
6361   if (dump_file)
6362     dump_sa_points_to_info (dump_file);
6363 }
6364
6365 /* Create points-to sets for the current function.  See the comments
6366    at the start of the file for an algorithmic overview.  */
6367
6368 static void
6369 compute_points_to_sets (void)
6370 {
6371   basic_block bb;
6372   unsigned i;
6373   varinfo_t vi;
6374
6375   timevar_push (TV_TREE_PTA);
6376
6377   init_alias_vars ();
6378
6379   intra_create_variable_infos ();
6380
6381   /* Now walk all statements and build the constraint set.  */
6382   FOR_EACH_BB (bb)
6383     {
6384       gimple_stmt_iterator gsi;
6385
6386       for (gsi = gsi_start_phis (bb); !gsi_end_p (gsi); gsi_next (&gsi))
6387         {
6388           gimple phi = gsi_stmt (gsi);
6389
6390           if (is_gimple_reg (gimple_phi_result (phi)))
6391             find_func_aliases (phi);
6392         }
6393
6394       for (gsi = gsi_start_bb (bb); !gsi_end_p (gsi); gsi_next (&gsi))
6395         {
6396           gimple stmt = gsi_stmt (gsi);
6397
6398           find_func_aliases (stmt);
6399         }
6400     }
6401
6402   if (dump_file)
6403     {
6404       fprintf (dump_file, "Points-to analysis\n\nConstraints:\n\n");
6405       dump_constraints (dump_file, 0);
6406     }
6407
6408   /* From the constraints compute the points-to sets.  */
6409   solve_constraints ();
6410
6411   /* Compute the points-to set for ESCAPED used for call-clobber analysis.  */
6412   find_what_var_points_to (get_varinfo (escaped_id),
6413                            &cfun->gimple_df->escaped);
6414
6415   /* Make sure the ESCAPED solution (which is used as placeholder in
6416      other solutions) does not reference itself.  This simplifies
6417      points-to solution queries.  */
6418   cfun->gimple_df->escaped.escaped = 0;
6419
6420   /* Mark escaped HEAP variables as global.  */
6421   FOR_EACH_VEC_ELT (varinfo_t, varmap, i, vi)
6422     if (vi->is_heap_var
6423         && !vi->is_restrict_var
6424         && !vi->is_global_var)
6425       DECL_EXTERNAL (vi->decl) = vi->is_global_var
6426         = pt_solution_includes (&cfun->gimple_df->escaped, vi->decl);
6427
6428   /* Compute the points-to sets for pointer SSA_NAMEs.  */
6429   for (i = 0; i < num_ssa_names; ++i)
6430     {
6431       tree ptr = ssa_name (i);
6432       if (ptr
6433           && POINTER_TYPE_P (TREE_TYPE (ptr)))
6434         find_what_p_points_to (ptr);
6435     }
6436
6437   /* Compute the call-used/clobbered sets.  */
6438   FOR_EACH_BB (bb)
6439     {
6440       gimple_stmt_iterator gsi;
6441
6442       for (gsi = gsi_start_bb (bb); !gsi_end_p (gsi); gsi_next (&gsi))
6443         {
6444           gimple stmt = gsi_stmt (gsi);
6445           struct pt_solution *pt;
6446           if (!is_gimple_call (stmt))
6447             continue;
6448
6449           pt = gimple_call_use_set (stmt);
6450           if (gimple_call_flags (stmt) & ECF_CONST)
6451             memset (pt, 0, sizeof (struct pt_solution));
6452           else if ((vi = lookup_call_use_vi (stmt)) != NULL)
6453             {
6454               find_what_var_points_to (vi, pt);
6455               /* Escaped (and thus nonlocal) variables are always
6456                  implicitly used by calls.  */
6457               /* ???  ESCAPED can be empty even though NONLOCAL
6458                  always escaped.  */
6459               pt->nonlocal = 1;
6460               pt->escaped = 1;
6461             }
6462           else
6463             {
6464               /* If there is nothing special about this call then
6465                  we have made everything that is used also escape.  */
6466               *pt = cfun->gimple_df->escaped;
6467               pt->nonlocal = 1;
6468             }
6469
6470           pt = gimple_call_clobber_set (stmt);
6471           if (gimple_call_flags (stmt) & (ECF_CONST|ECF_PURE|ECF_NOVOPS))
6472             memset (pt, 0, sizeof (struct pt_solution));
6473           else if ((vi = lookup_call_clobber_vi (stmt)) != NULL)
6474             {
6475               find_what_var_points_to (vi, pt);
6476               /* Escaped (and thus nonlocal) variables are always
6477                  implicitly clobbered by calls.  */
6478               /* ???  ESCAPED can be empty even though NONLOCAL
6479                  always escaped.  */
6480               pt->nonlocal = 1;
6481               pt->escaped = 1;
6482             }
6483           else
6484             {
6485               /* If there is nothing special about this call then
6486                  we have made everything that is used also escape.  */
6487               *pt = cfun->gimple_df->escaped;
6488               pt->nonlocal = 1;
6489             }
6490         }
6491     }
6492
6493   timevar_pop (TV_TREE_PTA);
6494 }
6495
6496
6497 /* Delete created points-to sets.  */
6498
6499 static void
6500 delete_points_to_sets (void)
6501 {
6502   unsigned int i;
6503
6504   htab_delete (shared_bitmap_table);
6505   if (dump_file && (dump_flags & TDF_STATS))
6506     fprintf (dump_file, "Points to sets created:%d\n",
6507              stats.points_to_sets_created);
6508
6509   pointer_map_destroy (vi_for_tree);
6510   pointer_map_destroy (call_stmt_vars);
6511   bitmap_obstack_release (&pta_obstack);
6512   VEC_free (constraint_t, heap, constraints);
6513
6514   for (i = 0; i < graph->size; i++)
6515     VEC_free (constraint_t, heap, graph->complex[i]);
6516   free (graph->complex);
6517
6518   free (graph->rep);
6519   free (graph->succs);
6520   free (graph->pe);
6521   free (graph->pe_rep);
6522   free (graph->indirect_cycles);
6523   free (graph);
6524
6525   VEC_free (varinfo_t, heap, varmap);
6526   free_alloc_pool (variable_info_pool);
6527   free_alloc_pool (constraint_pool);
6528
6529   obstack_free (&fake_var_decl_obstack, NULL);
6530 }
6531
6532
6533 /* Compute points-to information for every SSA_NAME pointer in the
6534    current function and compute the transitive closure of escaped
6535    variables to re-initialize the call-clobber states of local variables.  */
6536
6537 unsigned int
6538 compute_may_aliases (void)
6539 {
6540   if (cfun->gimple_df->ipa_pta)
6541     {
6542       if (dump_file)
6543         {
6544           fprintf (dump_file, "\nNot re-computing points-to information "
6545                    "because IPA points-to information is available.\n\n");
6546
6547           /* But still dump what we have remaining it.  */
6548           dump_alias_info (dump_file);
6549
6550           if (dump_flags & TDF_DETAILS)
6551             dump_referenced_vars (dump_file);
6552         }
6553
6554       return 0;
6555     }
6556
6557   /* For each pointer P_i, determine the sets of variables that P_i may
6558      point-to.  Compute the reachability set of escaped and call-used
6559      variables.  */
6560   compute_points_to_sets ();
6561
6562   /* Debugging dumps.  */
6563   if (dump_file)
6564     {
6565       dump_alias_info (dump_file);
6566
6567       if (dump_flags & TDF_DETAILS)
6568         dump_referenced_vars (dump_file);
6569     }
6570
6571   /* Deallocate memory used by aliasing data structures and the internal
6572      points-to solution.  */
6573   delete_points_to_sets ();
6574
6575   gcc_assert (!need_ssa_update_p (cfun));
6576
6577   return 0;
6578 }
6579
6580 static bool
6581 gate_tree_pta (void)
6582 {
6583   return flag_tree_pta;
6584 }
6585
6586 /* A dummy pass to cause points-to information to be computed via
6587    TODO_rebuild_alias.  */
6588
6589 struct gimple_opt_pass pass_build_alias =
6590 {
6591  {
6592   GIMPLE_PASS,
6593   "alias",                  /* name */
6594   gate_tree_pta,            /* gate */
6595   NULL,                     /* execute */
6596   NULL,                     /* sub */
6597   NULL,                     /* next */
6598   0,                        /* static_pass_number */
6599   TV_NONE,                  /* tv_id */
6600   PROP_cfg | PROP_ssa,      /* properties_required */
6601   0,                        /* properties_provided */
6602   0,                        /* properties_destroyed */
6603   0,                        /* todo_flags_start */
6604   TODO_rebuild_alias | TODO_dump_func  /* todo_flags_finish */
6605  }
6606 };
6607
6608 /* A dummy pass to cause points-to information to be computed via
6609    TODO_rebuild_alias.  */
6610
6611 struct gimple_opt_pass pass_build_ealias =
6612 {
6613  {
6614   GIMPLE_PASS,
6615   "ealias",                 /* name */
6616   gate_tree_pta,            /* gate */
6617   NULL,                     /* execute */
6618   NULL,                     /* sub */
6619   NULL,                     /* next */
6620   0,                        /* static_pass_number */
6621   TV_NONE,                  /* tv_id */
6622   PROP_cfg | PROP_ssa,      /* properties_required */
6623   0,                        /* properties_provided */
6624   0,                        /* properties_destroyed */
6625   0,                        /* todo_flags_start */
6626   TODO_rebuild_alias | TODO_dump_func  /* todo_flags_finish */
6627  }
6628 };
6629
6630
6631 /* Return true if we should execute IPA PTA.  */
6632 static bool
6633 gate_ipa_pta (void)
6634 {
6635   return (optimize
6636           && flag_ipa_pta
6637           /* Don't bother doing anything if the program has errors.  */
6638           && !seen_error ());
6639 }
6640
6641 /* IPA PTA solutions for ESCAPED.  */
6642 struct pt_solution ipa_escaped_pt
6643   = { true, false, false, false, false, false, false, NULL };
6644
6645 /* Execute the driver for IPA PTA.  */
6646 static unsigned int
6647 ipa_pta_execute (void)
6648 {
6649   struct cgraph_node *node;
6650   struct varpool_node *var;
6651   int from;
6652
6653   in_ipa_mode = 1;
6654
6655   init_alias_vars ();
6656
6657   /* Build the constraints.  */
6658   for (node = cgraph_nodes; node; node = node->next)
6659     {
6660       struct cgraph_node *alias;
6661       varinfo_t vi;
6662
6663       /* Nodes without a body are not interesting.  Especially do not
6664          visit clones at this point for now - we get duplicate decls
6665          there for inline clones at least.  */
6666       if (!gimple_has_body_p (node->decl)
6667           || node->clone_of)
6668         continue;
6669
6670       vi = create_function_info_for (node->decl,
6671                                      alias_get_name (node->decl));
6672
6673       /* Associate the varinfo node with all aliases.  */
6674       for (alias = node->same_body; alias; alias = alias->next)
6675         insert_vi_for_tree (alias->decl, vi);
6676     }
6677
6678   /* Create constraints for global variables and their initializers.  */
6679   for (var = varpool_nodes; var; var = var->next)
6680     {
6681       struct varpool_node *alias;
6682       varinfo_t vi;
6683
6684       vi = get_vi_for_tree (var->decl);
6685
6686       /* Associate the varinfo node with all aliases.  */
6687       for (alias = var->extra_name; alias; alias = alias->next)
6688         insert_vi_for_tree (alias->decl, vi);
6689     }
6690
6691   if (dump_file)
6692     {
6693       fprintf (dump_file,
6694                "Generating constraints for global initializers\n\n");
6695       dump_constraints (dump_file, 0);
6696       fprintf (dump_file, "\n");
6697     }
6698   from = VEC_length (constraint_t, constraints);
6699
6700   for (node = cgraph_nodes; node; node = node->next)
6701     {
6702       struct function *func;
6703       basic_block bb;
6704       tree old_func_decl;
6705
6706       /* Nodes without a body are not interesting.  */
6707       if (!gimple_has_body_p (node->decl)
6708           || node->clone_of)
6709         continue;
6710
6711       if (dump_file)
6712         {
6713           fprintf (dump_file,
6714                    "Generating constraints for %s", cgraph_node_name (node));
6715           if (DECL_ASSEMBLER_NAME_SET_P (node->decl))
6716             fprintf (dump_file, " (%s)",
6717                      IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (node->decl)));
6718           fprintf (dump_file, "\n");
6719         }
6720
6721       func = DECL_STRUCT_FUNCTION (node->decl);
6722       old_func_decl = current_function_decl;
6723       push_cfun (func);
6724       current_function_decl = node->decl;
6725
6726       if (node->local.externally_visible)
6727         {
6728           /* For externally visible functions use local constraints for
6729              their arguments.  For local functions we see all callers
6730              and thus do not need initial constraints for parameters.  */
6731           intra_create_variable_infos ();
6732
6733           /* We also need to make function return values escape.  Nothing
6734              escapes by returning from main though.  */
6735           if (!MAIN_NAME_P (DECL_NAME (node->decl)))
6736             {
6737               varinfo_t fi, rvi;
6738               fi = lookup_vi_for_tree (node->decl);
6739               rvi = first_vi_for_offset (fi, fi_result);
6740               if (rvi && rvi->offset == fi_result)
6741                 {
6742                   struct constraint_expr includes;
6743                   struct constraint_expr var;
6744                   includes.var = escaped_id;
6745                   includes.offset = 0;
6746                   includes.type = SCALAR;
6747                   var.var = rvi->id;
6748                   var.offset = 0;
6749                   var.type = SCALAR;
6750                   process_constraint (new_constraint (includes, var));
6751                 }
6752             }
6753         }
6754
6755       /* Build constriants for the function body.  */
6756       FOR_EACH_BB_FN (bb, func)
6757         {
6758           gimple_stmt_iterator gsi;
6759
6760           for (gsi = gsi_start_phis (bb); !gsi_end_p (gsi);
6761                gsi_next (&gsi))
6762             {
6763               gimple phi = gsi_stmt (gsi);
6764
6765               if (is_gimple_reg (gimple_phi_result (phi)))
6766                 find_func_aliases (phi);
6767             }
6768
6769           for (gsi = gsi_start_bb (bb); !gsi_end_p (gsi); gsi_next (&gsi))
6770             {
6771               gimple stmt = gsi_stmt (gsi);
6772
6773               find_func_aliases (stmt);
6774               find_func_clobbers (stmt);
6775             }
6776         }
6777
6778       current_function_decl = old_func_decl;
6779       pop_cfun ();
6780
6781       if (dump_file)
6782         {
6783           fprintf (dump_file, "\n");
6784           dump_constraints (dump_file, from);
6785           fprintf (dump_file, "\n");
6786         }
6787       from = VEC_length (constraint_t, constraints);
6788     }
6789
6790   /* From the constraints compute the points-to sets.  */
6791   solve_constraints ();
6792
6793   /* Compute the global points-to sets for ESCAPED.
6794      ???  Note that the computed escape set is not correct
6795      for the whole unit as we fail to consider graph edges to
6796      externally visible functions.  */
6797   find_what_var_points_to (get_varinfo (escaped_id), &ipa_escaped_pt);
6798
6799   /* Make sure the ESCAPED solution (which is used as placeholder in
6800      other solutions) does not reference itself.  This simplifies
6801      points-to solution queries.  */
6802   ipa_escaped_pt.ipa_escaped = 0;
6803
6804   /* Assign the points-to sets to the SSA names in the unit.  */
6805   for (node = cgraph_nodes; node; node = node->next)
6806     {
6807       tree ptr;
6808       struct function *fn;
6809       unsigned i;
6810       varinfo_t fi;
6811       basic_block bb;
6812       struct pt_solution uses, clobbers;
6813       struct cgraph_edge *e;
6814
6815       /* Nodes without a body are not interesting.  */
6816       if (!gimple_has_body_p (node->decl)
6817           || node->clone_of)
6818         continue;
6819
6820       fn = DECL_STRUCT_FUNCTION (node->decl);
6821
6822       /* Compute the points-to sets for pointer SSA_NAMEs.  */
6823       FOR_EACH_VEC_ELT (tree, fn->gimple_df->ssa_names, i, ptr)
6824         {
6825           if (ptr
6826               && POINTER_TYPE_P (TREE_TYPE (ptr)))
6827             find_what_p_points_to (ptr);
6828         }
6829
6830       /* Compute the call-use and call-clobber sets for all direct calls.  */
6831       fi = lookup_vi_for_tree (node->decl);
6832       gcc_assert (fi->is_fn_info);
6833       find_what_var_points_to (first_vi_for_offset (fi, fi_clobbers),
6834                                &clobbers);
6835       find_what_var_points_to (first_vi_for_offset (fi, fi_uses), &uses);
6836       for (e = node->callers; e; e = e->next_caller)
6837         {
6838           if (!e->call_stmt)
6839             continue;
6840
6841           *gimple_call_clobber_set (e->call_stmt) = clobbers;
6842           *gimple_call_use_set (e->call_stmt) = uses;
6843         }
6844
6845       /* Compute the call-use and call-clobber sets for indirect calls
6846          and calls to external functions.  */
6847       FOR_EACH_BB_FN (bb, fn)
6848         {
6849           gimple_stmt_iterator gsi;
6850
6851           for (gsi = gsi_start_bb (bb); !gsi_end_p (gsi); gsi_next (&gsi))
6852             {
6853               gimple stmt = gsi_stmt (gsi);
6854               struct pt_solution *pt;
6855               varinfo_t vi;
6856               tree decl;
6857
6858               if (!is_gimple_call (stmt))
6859                 continue;
6860
6861               /* Handle direct calls to external functions.  */
6862               decl = gimple_call_fndecl (stmt);
6863               if (decl
6864                   && (!(fi = lookup_vi_for_tree (decl))
6865                       || !fi->is_fn_info))
6866                 {
6867                   pt = gimple_call_use_set (stmt);
6868                   if (gimple_call_flags (stmt) & ECF_CONST)
6869                     memset (pt, 0, sizeof (struct pt_solution));
6870                   else if ((vi = lookup_call_use_vi (stmt)) != NULL)
6871                     {
6872                       find_what_var_points_to (vi, pt);
6873                       /* Escaped (and thus nonlocal) variables are always
6874                          implicitly used by calls.  */
6875                       /* ???  ESCAPED can be empty even though NONLOCAL
6876                          always escaped.  */
6877                       pt->nonlocal = 1;
6878                       pt->ipa_escaped = 1;
6879                     }
6880                   else
6881                     {
6882                       /* If there is nothing special about this call then
6883                          we have made everything that is used also escape.  */
6884                       *pt = ipa_escaped_pt;
6885                       pt->nonlocal = 1;
6886                     }
6887
6888                   pt = gimple_call_clobber_set (stmt);
6889                   if (gimple_call_flags (stmt) & (ECF_CONST|ECF_PURE|ECF_NOVOPS))
6890                     memset (pt, 0, sizeof (struct pt_solution));
6891                   else if ((vi = lookup_call_clobber_vi (stmt)) != NULL)
6892                     {
6893                       find_what_var_points_to (vi, pt);
6894                       /* Escaped (and thus nonlocal) variables are always
6895                          implicitly clobbered by calls.  */
6896                       /* ???  ESCAPED can be empty even though NONLOCAL
6897                          always escaped.  */
6898                       pt->nonlocal = 1;
6899                       pt->ipa_escaped = 1;
6900                     }
6901                   else
6902                     {
6903                       /* If there is nothing special about this call then
6904                          we have made everything that is used also escape.  */
6905                       *pt = ipa_escaped_pt;
6906                       pt->nonlocal = 1;
6907                     }
6908                 }
6909
6910               /* Handle indirect calls.  */
6911               if (!decl
6912                   && (fi = get_fi_for_callee (stmt)))
6913                 {
6914                   /* We need to accumulate all clobbers/uses of all possible
6915                      callees.  */
6916                   fi = get_varinfo (find (fi->id));
6917                   /* If we cannot constrain the set of functions we'll end up
6918                      calling we end up using/clobbering everything.  */
6919                   if (bitmap_bit_p (fi->solution, anything_id)
6920                       || bitmap_bit_p (fi->solution, nonlocal_id)
6921                       || bitmap_bit_p (fi->solution, escaped_id))
6922                     {
6923                       pt_solution_reset (gimple_call_clobber_set (stmt));
6924                       pt_solution_reset (gimple_call_use_set (stmt));
6925                     }
6926                   else
6927                     {
6928                       bitmap_iterator bi;
6929                       unsigned i;
6930                       struct pt_solution *uses, *clobbers;
6931
6932                       uses = gimple_call_use_set (stmt);
6933                       clobbers = gimple_call_clobber_set (stmt);
6934                       memset (uses, 0, sizeof (struct pt_solution));
6935                       memset (clobbers, 0, sizeof (struct pt_solution));
6936                       EXECUTE_IF_SET_IN_BITMAP (fi->solution, 0, i, bi)
6937                         {
6938                           struct pt_solution sol;
6939
6940                           vi = get_varinfo (i);
6941                           if (!vi->is_fn_info)
6942                             {
6943                               /* ???  We could be more precise here?  */
6944                               uses->nonlocal = 1;
6945                               uses->ipa_escaped = 1;
6946                               clobbers->nonlocal = 1;
6947                               clobbers->ipa_escaped = 1;
6948                               continue;
6949                             }
6950
6951                           if (!uses->anything)
6952                             {
6953                               find_what_var_points_to
6954                                   (first_vi_for_offset (vi, fi_uses), &sol);
6955                               pt_solution_ior_into (uses, &sol);
6956                             }
6957                           if (!clobbers->anything)
6958                             {
6959                               find_what_var_points_to
6960                                   (first_vi_for_offset (vi, fi_clobbers), &sol);
6961                               pt_solution_ior_into (clobbers, &sol);
6962                             }
6963                         }
6964                     }
6965                 }
6966             }
6967         }
6968
6969       fn->gimple_df->ipa_pta = true;
6970     }
6971
6972   delete_points_to_sets ();
6973
6974   in_ipa_mode = 0;
6975
6976   return 0;
6977 }
6978
6979 struct simple_ipa_opt_pass pass_ipa_pta =
6980 {
6981  {
6982   SIMPLE_IPA_PASS,
6983   "pta",                                /* name */
6984   gate_ipa_pta,                 /* gate */
6985   ipa_pta_execute,                      /* execute */
6986   NULL,                                 /* sub */
6987   NULL,                                 /* next */
6988   0,                                    /* static_pass_number */
6989   TV_IPA_PTA,                   /* tv_id */
6990   0,                                    /* properties_required */
6991   0,                                    /* properties_provided */
6992   0,                                    /* properties_destroyed */
6993   0,                                    /* todo_flags_start */
6994   TODO_update_ssa                       /* todo_flags_finish */
6995  }
6996 };