PR c++/29733
[official-gcc.git] / gcc / tree-ssa-structalias.c
blob0195c5bd8ba822e49904117f4eac735a7bc54404
1 /* Tree based points-to analysis
2 Copyright (C) 2005, 2006 Free Software Foundation, Inc.
3 Contributed by Daniel Berlin <dberlin@dberlin.org>
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify
8 under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
12 GCC is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GCC; if not, write to the Free Software
19 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
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 "rtl.h"
31 #include "tm_p.h"
32 #include "hard-reg-set.h"
33 #include "basic-block.h"
34 #include "output.h"
35 #include "errors.h"
36 #include "diagnostic.h"
37 #include "tree.h"
38 #include "c-common.h"
39 #include "tree-flow.h"
40 #include "tree-inline.h"
41 #include "varray.h"
42 #include "c-tree.h"
43 #include "tree-gimple.h"
44 #include "hashtab.h"
45 #include "function.h"
46 #include "cgraph.h"
47 #include "tree-pass.h"
48 #include "timevar.h"
49 #include "alloc-pool.h"
50 #include "splay-tree.h"
51 #include "params.h"
52 #include "tree-ssa-structalias.h"
53 #include "cgraph.h"
55 /* The idea behind this analyzer is to generate set constraints from the
56 program, then solve the resulting constraints in order to generate the
57 points-to sets.
59 Set constraints are a way of modeling program analysis problems that
60 involve sets. They consist of an inclusion constraint language,
61 describing the variables (each variable is a set) and operations that
62 are involved on the variables, and a set of rules that derive facts
63 from these operations. To solve a system of set constraints, you derive
64 all possible facts under the rules, which gives you the correct sets
65 as a consequence.
67 See "Efficient Field-sensitive pointer analysis for C" by "David
68 J. Pearce and Paul H. J. Kelly and Chris Hankin, at
69 http://citeseer.ist.psu.edu/pearce04efficient.html
71 Also see "Ultra-fast Aliasing Analysis using CLA: A Million Lines
72 of C Code in a Second" by ""Nevin Heintze and Olivier Tardieu" at
73 http://citeseer.ist.psu.edu/heintze01ultrafast.html
75 There are three types of constraint expressions, DEREF, ADDRESSOF, and
76 SCALAR. Each constraint expression consists of a constraint type,
77 a variable, and an offset.
79 SCALAR is a constraint expression type used to represent x, whether
80 it appears on the LHS or the RHS of a statement.
81 DEREF is a constraint expression type used to represent *x, whether
82 it appears on the LHS or the RHS of a statement.
83 ADDRESSOF is a constraint expression used to represent &x, whether
84 it appears on the LHS or the RHS of a statement.
86 Each pointer variable in the program is assigned an integer id, and
87 each field of a structure variable is assigned an integer id as well.
89 Structure variables are linked to their list of fields through a "next
90 field" in each variable that points to the next field in offset
91 order.
92 Each variable for a structure field has
94 1. "size", that tells the size in bits of that field.
95 2. "fullsize, that tells the size in bits of the entire structure.
96 3. "offset", that tells the offset in bits from the beginning of the
97 structure to this field.
99 Thus,
100 struct f
102 int a;
103 int b;
104 } foo;
105 int *bar;
107 looks like
109 foo.a -> id 1, size 32, offset 0, fullsize 64, next foo.b
110 foo.b -> id 2, size 32, offset 32, fullsize 64, next NULL
111 bar -> id 3, size 32, offset 0, fullsize 32, next NULL
114 In order to solve the system of set constraints, the following is
115 done:
117 1. Each constraint variable x has a solution set associated with it,
118 Sol(x).
120 2. Constraints are separated into direct, copy, and complex.
121 Direct constraints are ADDRESSOF constraints that require no extra
122 processing, such as P = &Q
123 Copy constraints are those of the form P = Q.
124 Complex constraints are all the constraints involving dereferences.
126 3. All direct constraints of the form P = &Q are processed, such
127 that Q is added to Sol(P)
129 4. All complex constraints for a given constraint variable are stored in a
130 linked list attached to that variable's node.
132 5. A directed graph is built out of the copy constraints. Each
133 constraint variable is a node in the graph, and an edge from
134 Q to P is added for each copy constraint of the form P = Q
136 6. The graph is then walked, and solution sets are
137 propagated along the copy edges, such that an edge from Q to P
138 causes Sol(P) <- Sol(P) union Sol(Q).
140 7. As we visit each node, all complex constraints associated with
141 that node are processed by adding appropriate copy edges to the graph, or the
142 appropriate variables to the solution set.
144 8. The process of walking the graph is iterated until no solution
145 sets change.
147 Prior to walking the graph in steps 6 and 7, We perform static
148 cycle elimination on the constraint graph, as well
149 as off-line variable substitution.
151 TODO: Adding offsets to pointer-to-structures can be handled (IE not punted
152 on and turned into anything), but isn't. You can just see what offset
153 inside the pointed-to struct it's going to access.
155 TODO: Constant bounded arrays can be handled as if they were structs of the
156 same number of elements.
158 TODO: Modeling heap and incoming pointers becomes much better if we
159 add fields to them as we discover them, which we could do.
161 TODO: We could handle unions, but to be honest, it's probably not
162 worth the pain or slowdown. */
164 static GTY ((if_marked ("tree_map_marked_p"), param_is (struct tree_map)))
165 htab_t heapvar_for_stmt;
167 /* One variable to represent all non-local accesses. */
168 tree nonlocal_all;
170 static bool use_field_sensitive = true;
171 static int in_ipa_mode = 0;
172 static bitmap_obstack predbitmap_obstack;
173 static bitmap_obstack ptabitmap_obstack;
174 static bitmap_obstack iteration_obstack;
176 static unsigned int create_variable_info_for (tree, const char *);
177 static void build_constraint_graph (void);
179 DEF_VEC_P(constraint_t);
180 DEF_VEC_ALLOC_P(constraint_t,heap);
182 #define EXECUTE_IF_IN_NONNULL_BITMAP(a, b, c, d) \
183 if (a) \
184 EXECUTE_IF_SET_IN_BITMAP (a, b, c, d)
186 static struct constraint_stats
188 unsigned int total_vars;
189 unsigned int collapsed_vars;
190 unsigned int unified_vars_static;
191 unsigned int unified_vars_dynamic;
192 unsigned int iterations;
193 unsigned int num_edges;
194 } stats;
196 struct variable_info
198 /* ID of this variable */
199 unsigned int id;
201 /* Name of this variable */
202 const char *name;
204 /* Tree that this variable is associated with. */
205 tree decl;
207 /* Offset of this variable, in bits, from the base variable */
208 unsigned HOST_WIDE_INT offset;
210 /* Size of the variable, in bits. */
211 unsigned HOST_WIDE_INT size;
213 /* Full size of the base variable, in bits. */
214 unsigned HOST_WIDE_INT fullsize;
216 /* A link to the variable for the next field in this structure. */
217 struct variable_info *next;
219 /* Node in the graph that represents the constraints and points-to
220 solution for the variable. */
221 unsigned int node;
223 /* True if the address of this variable is taken. Needed for
224 variable substitution. */
225 unsigned int address_taken:1;
227 /* True if this variable is the target of a dereference. Needed for
228 variable substitution. */
229 unsigned int indirect_target:1;
231 /* True if the variable is directly the target of a dereference.
232 This is used to track which variables are *actually* dereferenced
233 so we can prune their points to listed. This is equivalent to the
234 indirect_target flag when no merging of variables happens. */
235 unsigned int directly_dereferenced:1;
237 /* True if this is a variable created by the constraint analysis, such as
238 heap variables and constraints we had to break up. */
239 unsigned int is_artificial_var:1;
241 /* True if this is a special variable whose solution set should not be
242 changed. */
243 unsigned int is_special_var:1;
245 /* True for variables whose size is not known or variable. */
246 unsigned int is_unknown_size_var:1;
248 /* True for variables that have unions somewhere in them. */
249 unsigned int has_union:1;
251 /* True if this is a heap variable. */
252 unsigned int is_heap_var:1;
254 /* Points-to set for this variable. */
255 bitmap solution;
257 /* Variable ids represented by this node. */
258 bitmap variables;
260 /* Vector of complex constraints for this node. Complex
261 constraints are those involving dereferences. */
262 VEC(constraint_t,heap) *complex;
264 /* Variable id this was collapsed to due to type unsafety.
265 This should be unused completely after build_constraint_graph, or
266 something is broken. */
267 struct variable_info *collapsed_to;
269 typedef struct variable_info *varinfo_t;
271 static varinfo_t first_vi_for_offset (varinfo_t, unsigned HOST_WIDE_INT);
273 /* Pool of variable info structures. */
274 static alloc_pool variable_info_pool;
276 DEF_VEC_P(varinfo_t);
278 DEF_VEC_ALLOC_P(varinfo_t, heap);
280 /* Table of variable info structures for constraint variables. Indexed directly
281 by variable info id. */
282 static VEC(varinfo_t,heap) *varmap;
284 /* Return the varmap element N */
286 static inline varinfo_t
287 get_varinfo (unsigned int n)
289 return VEC_index(varinfo_t, varmap, n);
292 /* Return the varmap element N, following the collapsed_to link. */
294 static inline varinfo_t
295 get_varinfo_fc (unsigned int n)
297 varinfo_t v = VEC_index(varinfo_t, varmap, n);
299 if (v->collapsed_to)
300 return v->collapsed_to;
301 return v;
304 /* Variable that represents the unknown pointer. */
305 static varinfo_t var_anything;
306 static tree anything_tree;
307 static unsigned int anything_id;
309 /* Variable that represents the NULL pointer. */
310 static varinfo_t var_nothing;
311 static tree nothing_tree;
312 static unsigned int nothing_id;
314 /* Variable that represents read only memory. */
315 static varinfo_t var_readonly;
316 static tree readonly_tree;
317 static unsigned int readonly_id;
319 /* Variable that represents integers. This is used for when people do things
320 like &0->a.b. */
321 static varinfo_t var_integer;
322 static tree integer_tree;
323 static unsigned int integer_id;
325 /* Variable that represents escaped variables. This is used to give
326 incoming pointer variables a better set than ANYTHING. */
327 static varinfo_t var_escaped_vars;
328 static tree escaped_vars_tree;
329 static unsigned int escaped_vars_id;
331 /* Variable that represents non-local variables before we expand it to
332 one for each type. */
333 static unsigned int nonlocal_vars_id;
335 /* Lookup a heap var for FROM, and return it if we find one. */
337 static tree
338 heapvar_lookup (tree from)
340 struct tree_map *h, in;
341 in.from = from;
343 h = htab_find_with_hash (heapvar_for_stmt, &in, htab_hash_pointer (from));
344 if (h)
345 return h->to;
346 return NULL_TREE;
349 /* Insert a mapping FROM->TO in the heap var for statement
350 hashtable. */
352 static void
353 heapvar_insert (tree from, tree to)
355 struct tree_map *h;
356 void **loc;
358 h = ggc_alloc (sizeof (struct tree_map));
359 h->hash = htab_hash_pointer (from);
360 h->from = from;
361 h->to = to;
362 loc = htab_find_slot_with_hash (heapvar_for_stmt, h, h->hash, INSERT);
363 *(struct tree_map **) loc = h;
366 /* Return a new variable info structure consisting for a variable
367 named NAME, and using constraint graph node NODE. */
369 static varinfo_t
370 new_var_info (tree t, unsigned int id, const char *name, unsigned int node)
372 varinfo_t ret = pool_alloc (variable_info_pool);
374 ret->id = id;
375 ret->name = name;
376 ret->decl = t;
377 ret->node = node;
378 ret->address_taken = false;
379 ret->indirect_target = false;
380 ret->directly_dereferenced = false;
381 ret->is_artificial_var = false;
382 ret->is_heap_var = false;
383 ret->is_special_var = false;
384 ret->is_unknown_size_var = false;
385 ret->has_union = false;
386 ret->solution = BITMAP_ALLOC (&ptabitmap_obstack);
387 ret->variables = BITMAP_ALLOC (&ptabitmap_obstack);
388 ret->complex = NULL;
389 ret->next = NULL;
390 ret->collapsed_to = NULL;
391 return ret;
394 typedef enum {SCALAR, DEREF, ADDRESSOF} constraint_expr_type;
396 /* An expression that appears in a constraint. */
398 struct constraint_expr
400 /* Constraint type. */
401 constraint_expr_type type;
403 /* Variable we are referring to in the constraint. */
404 unsigned int var;
406 /* Offset, in bits, of this constraint from the beginning of
407 variables it ends up referring to.
409 IOW, in a deref constraint, we would deref, get the result set,
410 then add OFFSET to each member. */
411 unsigned HOST_WIDE_INT offset;
414 typedef struct constraint_expr ce_s;
415 DEF_VEC_O(ce_s);
416 DEF_VEC_ALLOC_O(ce_s, heap);
417 static void get_constraint_for (tree, VEC(ce_s, heap) **);
418 static void do_deref (VEC (ce_s, heap) **);
420 /* Our set constraints are made up of two constraint expressions, one
421 LHS, and one RHS.
423 As described in the introduction, our set constraints each represent an
424 operation between set valued variables.
426 struct constraint
428 struct constraint_expr lhs;
429 struct constraint_expr rhs;
432 /* List of constraints that we use to build the constraint graph from. */
434 static VEC(constraint_t,heap) *constraints;
435 static alloc_pool constraint_pool;
437 /* An edge in the weighted constraint graph. The edges are weighted,
438 with a bit set in weights meaning their is an edge with that
439 weight.
440 We don't keep the src in the edge, because we always know what it
441 is. */
443 struct constraint_edge
445 unsigned int dest;
446 bitmap weights;
449 typedef struct constraint_edge *constraint_edge_t;
450 static alloc_pool constraint_edge_pool;
452 /* Return a new constraint edge from SRC to DEST. */
454 static constraint_edge_t
455 new_constraint_edge (unsigned int dest)
457 constraint_edge_t ret = pool_alloc (constraint_edge_pool);
458 ret->dest = dest;
459 ret->weights = NULL;
460 return ret;
463 DEF_VEC_P(constraint_edge_t);
464 DEF_VEC_ALLOC_P(constraint_edge_t,heap);
467 /* The constraint graph is represented internally in two different
468 ways. The overwhelming majority of edges in the constraint graph
469 are zero weigh edges, and thus, using a vector of contrainst_edge_t
470 is a waste of time and memory, since they have no weights. We
471 simply use a bitmap to store the preds and succs for each node.
472 The weighted edges are stored as a set of adjacency vectors, one
473 per variable. succs[x] is the vector of successors for variable x,
474 and preds[x] is the vector of predecessors for variable x. IOW,
475 all edges are "forward" edges, which is not like our CFG. So
476 remember that preds[x]->src == x, and succs[x]->src == x. */
478 struct constraint_graph
480 bitmap *zero_weight_succs;
481 bitmap *zero_weight_preds;
482 VEC(constraint_edge_t,heap) **succs;
483 VEC(constraint_edge_t,heap) **preds;
486 typedef struct constraint_graph *constraint_graph_t;
488 static constraint_graph_t graph;
489 static int graph_size;
491 /* Create a new constraint consisting of LHS and RHS expressions. */
493 static constraint_t
494 new_constraint (const struct constraint_expr lhs,
495 const struct constraint_expr rhs)
497 constraint_t ret = pool_alloc (constraint_pool);
498 ret->lhs = lhs;
499 ret->rhs = rhs;
500 return ret;
503 /* Print out constraint C to FILE. */
505 void
506 dump_constraint (FILE *file, constraint_t c)
508 if (c->lhs.type == ADDRESSOF)
509 fprintf (file, "&");
510 else if (c->lhs.type == DEREF)
511 fprintf (file, "*");
512 fprintf (file, "%s", get_varinfo_fc (c->lhs.var)->name);
513 if (c->lhs.offset != 0)
514 fprintf (file, " + " HOST_WIDE_INT_PRINT_DEC, c->lhs.offset);
515 fprintf (file, " = ");
516 if (c->rhs.type == ADDRESSOF)
517 fprintf (file, "&");
518 else if (c->rhs.type == DEREF)
519 fprintf (file, "*");
520 fprintf (file, "%s", get_varinfo_fc (c->rhs.var)->name);
521 if (c->rhs.offset != 0)
522 fprintf (file, " + " HOST_WIDE_INT_PRINT_DEC, c->rhs.offset);
523 fprintf (file, "\n");
526 /* Print out constraint C to stderr. */
528 void
529 debug_constraint (constraint_t c)
531 dump_constraint (stderr, c);
534 /* Print out all constraints to FILE */
536 void
537 dump_constraints (FILE *file)
539 int i;
540 constraint_t c;
541 for (i = 0; VEC_iterate (constraint_t, constraints, i, c); i++)
542 dump_constraint (file, c);
545 /* Print out all constraints to stderr. */
547 void
548 debug_constraints (void)
550 dump_constraints (stderr);
553 /* SOLVER FUNCTIONS
555 The solver is a simple worklist solver, that works on the following
556 algorithm:
558 sbitmap changed_nodes = all ones;
559 changed_count = number of nodes;
560 For each node that was already collapsed:
561 changed_count--;
563 while (changed_count > 0)
565 compute topological ordering for constraint graph
567 find and collapse cycles in the constraint graph (updating
568 changed if necessary)
570 for each node (n) in the graph in topological order:
571 changed_count--;
573 Process each complex constraint associated with the node,
574 updating changed if necessary.
576 For each outgoing edge from n, propagate the solution from n to
577 the destination of the edge, updating changed as necessary.
579 } */
581 /* Return true if two constraint expressions A and B are equal. */
583 static bool
584 constraint_expr_equal (struct constraint_expr a, struct constraint_expr b)
586 return a.type == b.type && a.var == b.var && a.offset == b.offset;
589 /* Return true if constraint expression A is less than constraint expression
590 B. This is just arbitrary, but consistent, in order to give them an
591 ordering. */
593 static bool
594 constraint_expr_less (struct constraint_expr a, struct constraint_expr b)
596 if (a.type == b.type)
598 if (a.var == b.var)
599 return a.offset < b.offset;
600 else
601 return a.var < b.var;
603 else
604 return a.type < b.type;
607 /* Return true if constraint A is less than constraint B. This is just
608 arbitrary, but consistent, in order to give them an ordering. */
610 static bool
611 constraint_less (const constraint_t a, const constraint_t b)
613 if (constraint_expr_less (a->lhs, b->lhs))
614 return true;
615 else if (constraint_expr_less (b->lhs, a->lhs))
616 return false;
617 else
618 return constraint_expr_less (a->rhs, b->rhs);
621 /* Return true if two constraints A and B are equal. */
623 static bool
624 constraint_equal (struct constraint a, struct constraint b)
626 return constraint_expr_equal (a.lhs, b.lhs)
627 && constraint_expr_equal (a.rhs, b.rhs);
631 /* Find a constraint LOOKFOR in the sorted constraint vector VEC */
633 static constraint_t
634 constraint_vec_find (VEC(constraint_t,heap) *vec,
635 struct constraint lookfor)
637 unsigned int place;
638 constraint_t found;
640 if (vec == NULL)
641 return NULL;
643 place = VEC_lower_bound (constraint_t, vec, &lookfor, constraint_less);
644 if (place >= VEC_length (constraint_t, vec))
645 return NULL;
646 found = VEC_index (constraint_t, vec, place);
647 if (!constraint_equal (*found, lookfor))
648 return NULL;
649 return found;
652 /* Union two constraint vectors, TO and FROM. Put the result in TO. */
654 static void
655 constraint_set_union (VEC(constraint_t,heap) **to,
656 VEC(constraint_t,heap) **from)
658 int i;
659 constraint_t c;
661 for (i = 0; VEC_iterate (constraint_t, *from, i, c); i++)
663 if (constraint_vec_find (*to, *c) == NULL)
665 unsigned int place = VEC_lower_bound (constraint_t, *to, c,
666 constraint_less);
667 VEC_safe_insert (constraint_t, heap, *to, place, c);
672 /* Take a solution set SET, add OFFSET to each member of the set, and
673 overwrite SET with the result when done. */
675 static void
676 solution_set_add (bitmap set, unsigned HOST_WIDE_INT offset)
678 bitmap result = BITMAP_ALLOC (&iteration_obstack);
679 unsigned int i;
680 bitmap_iterator bi;
682 EXECUTE_IF_SET_IN_BITMAP (set, 0, i, bi)
684 /* If this is a properly sized variable, only add offset if it's
685 less than end. Otherwise, it is globbed to a single
686 variable. */
688 if ((get_varinfo (i)->offset + offset) < get_varinfo (i)->fullsize)
690 unsigned HOST_WIDE_INT fieldoffset = get_varinfo (i)->offset + offset;
691 varinfo_t v = first_vi_for_offset (get_varinfo (i), fieldoffset);
692 if (!v)
693 continue;
694 bitmap_set_bit (result, v->id);
696 else if (get_varinfo (i)->is_artificial_var
697 || get_varinfo (i)->has_union
698 || get_varinfo (i)->is_unknown_size_var)
700 bitmap_set_bit (result, i);
704 bitmap_copy (set, result);
705 BITMAP_FREE (result);
708 /* Union solution sets TO and FROM, and add INC to each member of FROM in the
709 process. */
711 static bool
712 set_union_with_increment (bitmap to, bitmap from, unsigned HOST_WIDE_INT inc)
714 if (inc == 0)
715 return bitmap_ior_into (to, from);
716 else
718 bitmap tmp;
719 bool res;
721 tmp = BITMAP_ALLOC (&iteration_obstack);
722 bitmap_copy (tmp, from);
723 solution_set_add (tmp, inc);
724 res = bitmap_ior_into (to, tmp);
725 BITMAP_FREE (tmp);
726 return res;
730 /* Insert constraint C into the list of complex constraints for VAR. */
732 static void
733 insert_into_complex (unsigned int var, constraint_t c)
735 varinfo_t vi = get_varinfo (var);
736 unsigned int place = VEC_lower_bound (constraint_t, vi->complex, c,
737 constraint_less);
738 VEC_safe_insert (constraint_t, heap, vi->complex, place, c);
742 /* Compare two constraint edges A and B, return true if they are equal. */
744 static bool
745 constraint_edge_equal (struct constraint_edge a, struct constraint_edge b)
747 return a.dest == b.dest;
750 /* Compare two constraint edges, return true if A is less than B */
752 static bool
753 constraint_edge_less (const constraint_edge_t a, const constraint_edge_t b)
755 if (a->dest < b->dest)
756 return true;
757 return false;
760 /* Find the constraint edge that matches LOOKFOR, in VEC.
761 Return the edge, if found, NULL otherwise. */
763 static constraint_edge_t
764 constraint_edge_vec_find (VEC(constraint_edge_t,heap) *vec,
765 struct constraint_edge lookfor)
767 unsigned int place;
768 constraint_edge_t edge = NULL;
770 place = VEC_lower_bound (constraint_edge_t, vec, &lookfor,
771 constraint_edge_less);
772 if (place >= VEC_length (constraint_edge_t, vec))
773 return NULL;
774 edge = VEC_index (constraint_edge_t, vec, place);
775 if (!constraint_edge_equal (*edge, lookfor))
776 return NULL;
777 return edge;
780 /* Condense two variable nodes into a single variable node, by moving
781 all associated info from SRC to TO. */
783 static void
784 condense_varmap_nodes (unsigned int to, unsigned int src)
786 varinfo_t tovi = get_varinfo (to);
787 varinfo_t srcvi = get_varinfo (src);
788 unsigned int i;
789 constraint_t c;
790 bitmap_iterator bi;
792 /* the src node, and all its variables, are now the to node. */
793 srcvi->node = to;
794 EXECUTE_IF_SET_IN_BITMAP (srcvi->variables, 0, i, bi)
795 get_varinfo (i)->node = to;
797 /* Merge the src node variables and the to node variables. */
798 bitmap_set_bit (tovi->variables, src);
799 bitmap_ior_into (tovi->variables, srcvi->variables);
800 bitmap_clear (srcvi->variables);
802 /* Move all complex constraints from src node into to node */
803 for (i = 0; VEC_iterate (constraint_t, srcvi->complex, i, c); i++)
805 /* In complex constraints for node src, we may have either
806 a = *src, and *src = a. */
808 if (c->rhs.type == DEREF)
809 c->rhs.var = to;
810 else
811 c->lhs.var = to;
813 constraint_set_union (&tovi->complex, &srcvi->complex);
814 VEC_free (constraint_t, heap, srcvi->complex);
815 srcvi->complex = NULL;
818 /* Erase an edge from SRC to SRC from GRAPH. This routine only
819 handles self-edges (e.g. an edge from a to a). */
821 static void
822 erase_graph_self_edge (constraint_graph_t graph, unsigned int src)
824 VEC(constraint_edge_t,heap) *predvec = graph->preds[src];
825 VEC(constraint_edge_t,heap) *succvec = graph->succs[src];
826 struct constraint_edge edge;
827 unsigned int place;
829 edge.dest = src;
831 /* Remove from the successors. */
832 place = VEC_lower_bound (constraint_edge_t, succvec, &edge,
833 constraint_edge_less);
835 /* Make sure we found the edge. */
836 #ifdef ENABLE_CHECKING
838 constraint_edge_t tmp = VEC_index (constraint_edge_t, succvec, place);
839 gcc_assert (constraint_edge_equal (*tmp, edge));
841 #endif
842 VEC_ordered_remove (constraint_edge_t, succvec, place);
844 /* Remove from the predecessors. */
845 place = VEC_lower_bound (constraint_edge_t, predvec, &edge,
846 constraint_edge_less);
848 /* Make sure we found the edge. */
849 #ifdef ENABLE_CHECKING
851 constraint_edge_t tmp = VEC_index (constraint_edge_t, predvec, place);
852 gcc_assert (constraint_edge_equal (*tmp, edge));
854 #endif
855 VEC_ordered_remove (constraint_edge_t, predvec, place);
858 /* Remove edges involving NODE from GRAPH. */
860 static void
861 clear_edges_for_node (constraint_graph_t graph, unsigned int node)
863 VEC(constraint_edge_t,heap) *succvec = graph->succs[node];
864 VEC(constraint_edge_t,heap) *predvec = graph->preds[node];
865 bitmap_iterator bi;
866 unsigned int j;
867 constraint_edge_t c = NULL;
868 int i;
870 /* Walk the successors, erase the associated preds. */
872 EXECUTE_IF_IN_NONNULL_BITMAP (graph->zero_weight_succs[node], 0, j, bi)
873 if (j != node)
874 bitmap_clear_bit (graph->zero_weight_preds[j], node);
876 for (i = 0; VEC_iterate (constraint_edge_t, succvec, i, c); i++)
877 if (c->dest != node)
879 unsigned int place;
880 struct constraint_edge lookfor;
881 constraint_edge_t result;
883 lookfor.dest = node;
884 place = VEC_lower_bound (constraint_edge_t, graph->preds[c->dest],
885 &lookfor, constraint_edge_less);
886 result = VEC_ordered_remove (constraint_edge_t,
887 graph->preds[c->dest], place);
888 pool_free (constraint_edge_pool, result);
891 /* Walk the preds, erase the associated succs. */
893 EXECUTE_IF_IN_NONNULL_BITMAP (graph->zero_weight_preds[node], 0, j, bi)
894 if (j != node)
895 bitmap_clear_bit (graph->zero_weight_succs[j], node);
897 for (i =0; VEC_iterate (constraint_edge_t, predvec, i, c); i++)
898 if (c->dest != node)
900 unsigned int place;
901 struct constraint_edge lookfor;
902 constraint_edge_t result;
904 lookfor.dest = node;
905 place = VEC_lower_bound (constraint_edge_t, graph->succs[c->dest],
906 &lookfor, constraint_edge_less);
907 result = VEC_ordered_remove (constraint_edge_t,
908 graph->succs[c->dest], place);
909 pool_free (constraint_edge_pool, result);
913 if (graph->zero_weight_preds[node])
915 BITMAP_FREE (graph->zero_weight_preds[node]);
916 graph->zero_weight_preds[node] = NULL;
919 if (graph->zero_weight_succs[node])
921 BITMAP_FREE (graph->zero_weight_succs[node]);
922 graph->zero_weight_succs[node] = NULL;
925 VEC_free (constraint_edge_t, heap, graph->preds[node]);
926 VEC_free (constraint_edge_t, heap, graph->succs[node]);
927 graph->preds[node] = NULL;
928 graph->succs[node] = NULL;
931 static bool edge_added = false;
933 /* Add edge (src, dest) to the graph. */
935 static bool
936 add_graph_edge (constraint_graph_t graph, unsigned int src, unsigned int dest)
938 unsigned int place;
939 VEC(constraint_edge_t,heap) *vec;
940 struct constraint_edge newe;
941 newe.dest = dest;
943 vec = graph->preds[src];
944 place = VEC_lower_bound (constraint_edge_t, vec, &newe,
945 constraint_edge_less);
946 if (place == VEC_length (constraint_edge_t, vec)
947 || VEC_index (constraint_edge_t, vec, place)->dest != dest)
949 constraint_edge_t edge = new_constraint_edge (dest);
951 VEC_safe_insert (constraint_edge_t, heap, graph->preds[src],
952 place, edge);
953 edge = new_constraint_edge (src);
955 place = VEC_lower_bound (constraint_edge_t, graph->succs[dest],
956 edge, constraint_edge_less);
957 VEC_safe_insert (constraint_edge_t, heap, graph->succs[dest],
958 place, edge);
959 edge_added = true;
960 stats.num_edges++;
961 return true;
963 else
964 return false;
968 /* Return the bitmap representing the weights of edge (SRC, DEST). */
970 static bitmap *
971 get_graph_weights (constraint_graph_t graph, unsigned int src,
972 unsigned int dest)
974 constraint_edge_t edge;
975 VEC(constraint_edge_t,heap) *vec;
976 struct constraint_edge lookfor;
978 lookfor.dest = dest;
980 vec = graph->preds[src];
981 edge = constraint_edge_vec_find (vec, lookfor);
982 gcc_assert (edge != NULL);
983 return &edge->weights;
986 /* Allocate graph weight bitmap for the edges associated with SRC and
987 DEST in GRAPH. Both the pred and the succ edges share a single
988 bitmap, so we need to set both edges to that bitmap. */
990 static bitmap
991 allocate_graph_weights (constraint_graph_t graph, unsigned int src,
992 unsigned int dest)
994 bitmap result;
995 constraint_edge_t edge;
996 VEC(constraint_edge_t,heap) *vec;
997 struct constraint_edge lookfor;
999 result = BITMAP_ALLOC (&ptabitmap_obstack);
1001 /* Set the pred weight. */
1002 lookfor.dest = dest;
1003 vec = graph->preds[src];
1004 edge = constraint_edge_vec_find (vec, lookfor);
1005 gcc_assert (edge != NULL);
1006 edge->weights = result;
1008 /* Set the succ weight. */
1009 lookfor.dest = src;
1010 vec = graph->succs[dest];
1011 edge = constraint_edge_vec_find (vec, lookfor);
1012 gcc_assert (edge != NULL);
1013 edge->weights = result;
1015 return result;
1019 /* Merge GRAPH nodes FROM and TO into node TO. */
1021 static void
1022 merge_graph_nodes (constraint_graph_t graph, unsigned int to,
1023 unsigned int from)
1025 VEC(constraint_edge_t,heap) *succvec = graph->succs[from];
1026 VEC(constraint_edge_t,heap) *predvec = graph->preds[from];
1027 int i;
1028 constraint_edge_t c;
1029 unsigned int j;
1030 bitmap_iterator bi;
1032 /* Merge all the zero weighted predecessor edges. */
1033 if (graph->zero_weight_preds[from])
1035 if (!graph->zero_weight_preds[to])
1036 graph->zero_weight_preds[to] = BITMAP_ALLOC (&predbitmap_obstack);
1038 EXECUTE_IF_SET_IN_BITMAP (graph->zero_weight_preds[from], 0, j, bi)
1040 if (j != to)
1042 bitmap_clear_bit (graph->zero_weight_succs[j], from);
1043 bitmap_set_bit (graph->zero_weight_succs[j], to);
1046 bitmap_ior_into (graph->zero_weight_preds[to],
1047 graph->zero_weight_preds[from]);
1050 /* Merge all the zero weighted successor edges. */
1051 if (graph->zero_weight_succs[from])
1053 if (!graph->zero_weight_succs[to])
1054 graph->zero_weight_succs[to] = BITMAP_ALLOC (&ptabitmap_obstack);
1055 EXECUTE_IF_SET_IN_BITMAP (graph->zero_weight_succs[from], 0, j, bi)
1057 bitmap_clear_bit (graph->zero_weight_preds[j], from);
1058 bitmap_set_bit (graph->zero_weight_preds[j], to);
1060 bitmap_ior_into (graph->zero_weight_succs[to],
1061 graph->zero_weight_succs[from]);
1064 /* Merge all the nonzero weighted predecessor edges. */
1065 for (i = 0; VEC_iterate (constraint_edge_t, predvec, i, c); i++)
1067 unsigned int d = c->dest;
1068 bitmap temp;
1069 bitmap *weights;
1071 if (c->dest == from)
1072 d = to;
1074 add_graph_edge (graph, to, d);
1076 temp = *(get_graph_weights (graph, from, c->dest));
1077 if (temp)
1079 weights = get_graph_weights (graph, to, d);
1080 if (!*weights)
1081 *weights = allocate_graph_weights (graph, to, d);
1083 bitmap_ior_into (*weights, temp);
1088 /* Merge all the nonzero weighted successor edges. */
1089 for (i = 0; VEC_iterate (constraint_edge_t, succvec, i, c); i++)
1091 unsigned int d = c->dest;
1092 bitmap temp;
1093 bitmap *weights;
1095 if (c->dest == from)
1096 d = to;
1098 add_graph_edge (graph, d, to);
1100 temp = *(get_graph_weights (graph, c->dest, from));
1101 if (temp)
1103 weights = get_graph_weights (graph, d, to);
1104 if (!*weights)
1105 *weights = allocate_graph_weights (graph, d, to);
1106 bitmap_ior_into (*weights, temp);
1109 clear_edges_for_node (graph, from);
1112 /* Add a graph edge to GRAPH, going from TO to FROM, with WEIGHT, if
1113 it doesn't exist in the graph already.
1114 Return false if the edge already existed, true otherwise. */
1116 static bool
1117 int_add_graph_edge (constraint_graph_t graph, unsigned int to,
1118 unsigned int from, unsigned HOST_WIDE_INT weight)
1120 if (to == from && weight == 0)
1122 return false;
1124 else
1126 bool r = false;
1128 if (weight == 0)
1130 if (!graph->zero_weight_preds[to])
1131 graph->zero_weight_preds[to] = BITMAP_ALLOC (&predbitmap_obstack);
1132 if (!graph->zero_weight_succs[from])
1133 graph->zero_weight_succs[from] = BITMAP_ALLOC (&ptabitmap_obstack);
1134 if (!bitmap_bit_p (graph->zero_weight_succs[from], to))
1136 edge_added = true;
1137 r = true;
1138 stats.num_edges++;
1139 bitmap_set_bit (graph->zero_weight_preds[to], from);
1140 bitmap_set_bit (graph->zero_weight_succs[from], to);
1143 else
1145 bitmap *weights;
1147 r = add_graph_edge (graph, to, from);
1148 weights = get_graph_weights (graph, to, from);
1150 if (!*weights)
1152 r = true;
1153 *weights = allocate_graph_weights (graph, to, from);
1154 bitmap_set_bit (*weights, weight);
1156 else
1158 r |= !bitmap_bit_p (*weights, weight);
1159 bitmap_set_bit (*weights, weight);
1163 return r;
1168 /* Return true if {DEST.SRC} is an existing graph edge in GRAPH. */
1170 static bool
1171 valid_graph_edge (constraint_graph_t graph, unsigned int src,
1172 unsigned int dest)
1174 struct constraint_edge lookfor;
1175 lookfor.dest = src;
1177 return (graph->zero_weight_succs[dest]
1178 && bitmap_bit_p (graph->zero_weight_succs[dest], src))
1179 || constraint_edge_vec_find (graph->succs[dest], lookfor) != NULL;
1182 /* Return true if {DEST, SRC} is an existing weighted graph edge (IE has
1183 a weight other than 0) in GRAPH. */
1184 static bool
1185 valid_weighted_graph_edge (constraint_graph_t graph, unsigned int src,
1186 unsigned int dest)
1188 struct constraint_edge lookfor;
1189 lookfor.dest = src;
1191 return graph->preds[src]
1192 && constraint_edge_vec_find (graph->succs[dest], lookfor) != NULL;
1196 /* Build the constraint graph. */
1198 static void
1199 build_constraint_graph (void)
1201 int i = 0;
1202 constraint_t c;
1204 graph = XNEW (struct constraint_graph);
1205 graph_size = VEC_length (varinfo_t, varmap) + 1;
1206 graph->succs = XCNEWVEC (VEC(constraint_edge_t,heap) *, graph_size);
1207 graph->preds = XCNEWVEC (VEC(constraint_edge_t,heap) *, graph_size);
1208 graph->zero_weight_succs = XCNEWVEC (bitmap, graph_size);
1209 graph->zero_weight_preds = XCNEWVEC (bitmap, graph_size);
1211 for (i = 0; VEC_iterate (constraint_t, constraints, i, c); i++)
1213 struct constraint_expr lhs = c->lhs;
1214 struct constraint_expr rhs = c->rhs;
1215 unsigned int lhsvar = get_varinfo_fc (lhs.var)->id;
1216 unsigned int rhsvar = get_varinfo_fc (rhs.var)->id;
1218 if (lhs.type == DEREF)
1220 /* *x = y or *x = &y (complex) */
1221 if (rhs.type == ADDRESSOF || rhsvar > anything_id)
1222 insert_into_complex (lhsvar, c);
1224 else if (rhs.type == DEREF)
1226 /* !special var= *y */
1227 if (!(get_varinfo (lhsvar)->is_special_var))
1228 insert_into_complex (rhsvar, c);
1230 else if (rhs.type == ADDRESSOF)
1232 /* x = &y */
1233 bitmap_set_bit (get_varinfo (lhsvar)->solution, rhsvar);
1235 else if (lhsvar > anything_id)
1237 /* Ignore 0 weighted self edges, as they can't possibly contribute
1238 anything */
1239 if (lhsvar != rhsvar || rhs.offset != 0 || lhs.offset != 0)
1241 /* x = y (simple) */
1242 int_add_graph_edge (graph, lhs.var, rhs.var, rhs.offset);
1250 /* Changed variables on the last iteration. */
1251 static unsigned int changed_count;
1252 static sbitmap changed;
1254 DEF_VEC_I(unsigned);
1255 DEF_VEC_ALLOC_I(unsigned,heap);
1258 /* Strongly Connected Component visitation info. */
1260 struct scc_info
1262 sbitmap visited;
1263 sbitmap in_component;
1264 int current_index;
1265 unsigned int *visited_index;
1266 VEC(unsigned,heap) *scc_stack;
1267 VEC(unsigned,heap) *unification_queue;
1271 /* Recursive routine to find strongly connected components in GRAPH.
1272 SI is the SCC info to store the information in, and N is the id of current
1273 graph node we are processing.
1275 This is Tarjan's strongly connected component finding algorithm, as
1276 modified by Nuutila to keep only non-root nodes on the stack.
1277 The algorithm can be found in "On finding the strongly connected
1278 connected components in a directed graph" by Esko Nuutila and Eljas
1279 Soisalon-Soininen, in Information Processing Letters volume 49,
1280 number 1, pages 9-14. */
1282 static void
1283 scc_visit (constraint_graph_t graph, struct scc_info *si, unsigned int n)
1285 unsigned int i;
1286 bitmap_iterator bi;
1288 gcc_assert (get_varinfo (n)->node == n);
1289 SET_BIT (si->visited, n);
1290 RESET_BIT (si->in_component, n);
1291 si->visited_index[n] = si->current_index ++;
1293 /* Visit all the successors. */
1294 EXECUTE_IF_IN_NONNULL_BITMAP (graph->zero_weight_succs[n], 0, i, bi)
1296 unsigned int w = i;
1297 if (!TEST_BIT (si->visited, w))
1298 scc_visit (graph, si, w);
1299 if (!TEST_BIT (si->in_component, w))
1301 unsigned int t = get_varinfo (w)->node;
1302 unsigned int nnode = get_varinfo (n)->node;
1303 if (si->visited_index[t] < si->visited_index[nnode])
1304 get_varinfo (n)->node = t;
1308 /* See if any components have been identified. */
1309 if (get_varinfo (n)->node == n)
1311 unsigned int t = si->visited_index[n];
1312 SET_BIT (si->in_component, n);
1313 while (VEC_length (unsigned, si->scc_stack) != 0
1314 && t < si->visited_index[VEC_last (unsigned, si->scc_stack)])
1316 unsigned int w = VEC_pop (unsigned, si->scc_stack);
1317 get_varinfo (w)->node = n;
1318 SET_BIT (si->in_component, w);
1319 /* Mark this node for collapsing. */
1320 VEC_safe_push (unsigned, heap, si->unification_queue, w);
1323 else
1324 VEC_safe_push (unsigned, heap, si->scc_stack, n);
1328 /* Collapse two variables into one variable. */
1330 static void
1331 collapse_nodes (constraint_graph_t graph, unsigned int to, unsigned int from)
1333 bitmap tosol, fromsol;
1335 condense_varmap_nodes (to, from);
1336 tosol = get_varinfo (to)->solution;
1337 fromsol = get_varinfo (from)->solution;
1338 bitmap_ior_into (tosol, fromsol);
1339 merge_graph_nodes (graph, to, from);
1341 if (valid_graph_edge (graph, to, to))
1343 if (graph->zero_weight_preds[to])
1345 bitmap_clear_bit (graph->zero_weight_preds[to], to);
1346 bitmap_clear_bit (graph->zero_weight_succs[to], to);
1348 if (valid_weighted_graph_edge (graph, to, to))
1350 bitmap weights = *(get_graph_weights (graph, to, to));
1351 if (!weights || bitmap_empty_p (weights))
1352 erase_graph_self_edge (graph, to);
1355 BITMAP_FREE (fromsol);
1356 get_varinfo (to)->address_taken |= get_varinfo (from)->address_taken;
1357 get_varinfo (to)->indirect_target |= get_varinfo (from)->indirect_target;
1361 /* Unify nodes in GRAPH that we have found to be part of a cycle.
1362 SI is the Strongly Connected Components information structure that tells us
1363 what components to unify.
1364 UPDATE_CHANGED should be set to true if the changed sbitmap and changed
1365 count should be updated to reflect the unification. */
1367 static void
1368 process_unification_queue (constraint_graph_t graph, struct scc_info *si,
1369 bool update_changed)
1371 size_t i = 0;
1372 bitmap tmp = BITMAP_ALLOC (update_changed ? &iteration_obstack : NULL);
1373 bitmap_clear (tmp);
1375 /* We proceed as follows:
1377 For each component in the queue (components are delineated by
1378 when current_queue_element->node != next_queue_element->node):
1380 rep = representative node for component
1382 For each node (tounify) to be unified in the component,
1383 merge the solution for tounify into tmp bitmap
1385 clear solution for tounify
1387 merge edges from tounify into rep
1389 merge complex constraints from tounify into rep
1391 update changed count to note that tounify will never change
1392 again
1394 Merge tmp into solution for rep, marking rep changed if this
1395 changed rep's solution.
1397 Delete any 0 weighted self-edges we now have for rep. */
1398 while (i != VEC_length (unsigned, si->unification_queue))
1400 unsigned int tounify = VEC_index (unsigned, si->unification_queue, i);
1401 unsigned int n = get_varinfo (tounify)->node;
1403 if (dump_file && (dump_flags & TDF_DETAILS))
1404 fprintf (dump_file, "Unifying %s to %s\n",
1405 get_varinfo (tounify)->name,
1406 get_varinfo (n)->name);
1407 if (update_changed)
1408 stats.unified_vars_dynamic++;
1409 else
1410 stats.unified_vars_static++;
1411 bitmap_ior_into (tmp, get_varinfo (tounify)->solution);
1412 merge_graph_nodes (graph, n, tounify);
1413 condense_varmap_nodes (n, tounify);
1415 if (update_changed && TEST_BIT (changed, tounify))
1417 RESET_BIT (changed, tounify);
1418 if (!TEST_BIT (changed, n))
1419 SET_BIT (changed, n);
1420 else
1422 gcc_assert (changed_count > 0);
1423 changed_count--;
1427 bitmap_clear (get_varinfo (tounify)->solution);
1428 ++i;
1430 /* If we've either finished processing the entire queue, or
1431 finished processing all nodes for component n, update the solution for
1432 n. */
1433 if (i == VEC_length (unsigned, si->unification_queue)
1434 || get_varinfo (VEC_index (unsigned, si->unification_queue, i))->node != n)
1436 /* If the solution changes because of the merging, we need to mark
1437 the variable as changed. */
1438 if (bitmap_ior_into (get_varinfo (n)->solution, tmp))
1440 if (update_changed && !TEST_BIT (changed, n))
1442 SET_BIT (changed, n);
1443 changed_count++;
1446 bitmap_clear (tmp);
1448 if (valid_graph_edge (graph, n, n))
1450 if (graph->zero_weight_succs[n])
1452 if (graph->zero_weight_preds[n])
1453 bitmap_clear_bit (graph->zero_weight_preds[n], n);
1454 bitmap_clear_bit (graph->zero_weight_succs[n], n);
1456 if (valid_weighted_graph_edge (graph, n, n))
1458 bitmap weights = *(get_graph_weights (graph, n, n));
1459 if (!weights || bitmap_empty_p (weights))
1460 erase_graph_self_edge (graph, n);
1465 BITMAP_FREE (tmp);
1469 /* Information needed to compute the topological ordering of a graph. */
1471 struct topo_info
1473 /* sbitmap of visited nodes. */
1474 sbitmap visited;
1475 /* Array that stores the topological order of the graph, *in
1476 reverse*. */
1477 VEC(unsigned,heap) *topo_order;
1481 /* Initialize and return a topological info structure. */
1483 static struct topo_info *
1484 init_topo_info (void)
1486 size_t size = VEC_length (varinfo_t, varmap);
1487 struct topo_info *ti = XNEW (struct topo_info);
1488 ti->visited = sbitmap_alloc (size);
1489 sbitmap_zero (ti->visited);
1490 ti->topo_order = VEC_alloc (unsigned, heap, 1);
1491 return ti;
1495 /* Free the topological sort info pointed to by TI. */
1497 static void
1498 free_topo_info (struct topo_info *ti)
1500 sbitmap_free (ti->visited);
1501 VEC_free (unsigned, heap, ti->topo_order);
1502 free (ti);
1505 /* Visit the graph in topological order, and store the order in the
1506 topo_info structure. */
1508 static void
1509 topo_visit (constraint_graph_t graph, struct topo_info *ti,
1510 unsigned int n)
1512 VEC(constraint_edge_t,heap) *succs = graph->succs[n];
1513 bitmap temp;
1514 bitmap_iterator bi;
1515 constraint_edge_t c;
1516 int i;
1517 unsigned int j;
1519 SET_BIT (ti->visited, n);
1520 if (VEC_length (constraint_edge_t, succs) != 0)
1522 temp = BITMAP_ALLOC (&iteration_obstack);
1523 if (graph->zero_weight_succs[n])
1524 bitmap_ior_into (temp, graph->zero_weight_succs[n]);
1525 for (i = 0; VEC_iterate (constraint_edge_t, succs, i, c); i++)
1526 bitmap_set_bit (temp, c->dest);
1528 else
1529 temp = graph->zero_weight_succs[n];
1531 if (temp)
1532 EXECUTE_IF_SET_IN_BITMAP (temp, 0, j, bi)
1534 if (!TEST_BIT (ti->visited, j))
1535 topo_visit (graph, ti, j);
1537 VEC_safe_push (unsigned, heap, ti->topo_order, n);
1540 /* Return true if variable N + OFFSET is a legal field of N. */
1542 static bool
1543 type_safe (unsigned int n, unsigned HOST_WIDE_INT *offset)
1545 varinfo_t ninfo = get_varinfo (n);
1547 /* For things we've globbed to single variables, any offset into the
1548 variable acts like the entire variable, so that it becomes offset
1549 0. */
1550 if (ninfo->is_special_var
1551 || ninfo->is_artificial_var
1552 || ninfo->is_unknown_size_var)
1554 *offset = 0;
1555 return true;
1557 return (get_varinfo (n)->offset + *offset) < get_varinfo (n)->fullsize;
1560 /* Process a constraint C that represents *x = &y. */
1562 static void
1563 do_da_constraint (constraint_graph_t graph ATTRIBUTE_UNUSED,
1564 constraint_t c, bitmap delta)
1566 unsigned int rhs = c->rhs.var;
1567 unsigned int j;
1568 bitmap_iterator bi;
1570 /* For each member j of Delta (Sol(x)), add x to Sol(j) */
1571 EXECUTE_IF_SET_IN_BITMAP (delta, 0, j, bi)
1573 unsigned HOST_WIDE_INT offset = c->lhs.offset;
1574 if (type_safe (j, &offset) && !(get_varinfo (j)->is_special_var))
1576 /* *x != NULL && *x != ANYTHING*/
1577 varinfo_t v;
1578 unsigned int t;
1579 bitmap sol;
1580 unsigned HOST_WIDE_INT fieldoffset = get_varinfo (j)->offset + offset;
1582 v = first_vi_for_offset (get_varinfo (j), fieldoffset);
1583 if (!v)
1584 continue;
1585 t = v->node;
1586 sol = get_varinfo (t)->solution;
1587 if (!bitmap_bit_p (sol, rhs))
1589 bitmap_set_bit (sol, rhs);
1590 if (!TEST_BIT (changed, t))
1592 SET_BIT (changed, t);
1593 changed_count++;
1597 else if (0 && dump_file && !(get_varinfo (j)->is_special_var))
1598 fprintf (dump_file, "Untypesafe usage in do_da_constraint.\n");
1603 /* Process a constraint C that represents x = *y, using DELTA as the
1604 starting solution. */
1606 static void
1607 do_sd_constraint (constraint_graph_t graph, constraint_t c,
1608 bitmap delta)
1610 unsigned int lhs = get_varinfo (c->lhs.var)->node;
1611 bool flag = false;
1612 bitmap sol = get_varinfo (lhs)->solution;
1613 unsigned int j;
1614 bitmap_iterator bi;
1616 if (bitmap_bit_p (delta, anything_id))
1618 flag = !bitmap_bit_p (sol, anything_id);
1619 if (flag)
1620 bitmap_set_bit (sol, anything_id);
1621 goto done;
1623 /* For each variable j in delta (Sol(y)), add
1624 an edge in the graph from j to x, and union Sol(j) into Sol(x). */
1625 EXECUTE_IF_SET_IN_BITMAP (delta, 0, j, bi)
1627 unsigned HOST_WIDE_INT roffset = c->rhs.offset;
1628 if (type_safe (j, &roffset))
1630 varinfo_t v;
1631 unsigned HOST_WIDE_INT fieldoffset = get_varinfo (j)->offset + roffset;
1632 unsigned int t;
1634 v = first_vi_for_offset (get_varinfo (j), fieldoffset);
1635 if (!v)
1636 continue;
1637 t = v->node;
1639 /* Adding edges from the special vars is pointless.
1640 They don't have sets that can change. */
1641 if (get_varinfo (t) ->is_special_var)
1642 flag |= bitmap_ior_into (sol, get_varinfo (t)->solution);
1643 else if (int_add_graph_edge (graph, lhs, t, 0))
1644 flag |= bitmap_ior_into (sol, get_varinfo (t)->solution);
1646 else if (0 && dump_file && !(get_varinfo (j)->is_special_var))
1647 fprintf (dump_file, "Untypesafe usage in do_sd_constraint\n");
1651 done:
1652 /* If the LHS solution changed, mark the var as changed. */
1653 if (flag)
1655 get_varinfo (lhs)->solution = sol;
1656 if (!TEST_BIT (changed, lhs))
1658 SET_BIT (changed, lhs);
1659 changed_count++;
1664 /* Process a constraint C that represents *x = y. */
1666 static void
1667 do_ds_constraint (constraint_graph_t graph, constraint_t c, bitmap delta)
1669 unsigned int rhs = get_varinfo (c->rhs.var)->node;
1670 unsigned HOST_WIDE_INT roff = c->rhs.offset;
1671 bitmap sol = get_varinfo (rhs)->solution;
1672 unsigned int j;
1673 bitmap_iterator bi;
1675 if (bitmap_bit_p (sol, anything_id))
1677 EXECUTE_IF_SET_IN_BITMAP (delta, 0, j, bi)
1679 varinfo_t jvi = get_varinfo (j);
1680 unsigned int t;
1681 unsigned int loff = c->lhs.offset;
1682 unsigned HOST_WIDE_INT fieldoffset = jvi->offset + loff;
1683 varinfo_t v;
1685 v = first_vi_for_offset (get_varinfo (j), fieldoffset);
1686 if (!v)
1687 continue;
1688 t = v->node;
1690 if (!bitmap_bit_p (get_varinfo (t)->solution, anything_id))
1692 bitmap_set_bit (get_varinfo (t)->solution, anything_id);
1693 if (!TEST_BIT (changed, t))
1695 SET_BIT (changed, t);
1696 changed_count++;
1700 return;
1703 /* For each member j of delta (Sol(x)), add an edge from y to j and
1704 union Sol(y) into Sol(j) */
1705 EXECUTE_IF_SET_IN_BITMAP (delta, 0, j, bi)
1707 unsigned HOST_WIDE_INT loff = c->lhs.offset;
1708 if (type_safe (j, &loff) && !(get_varinfo(j)->is_special_var))
1710 varinfo_t v;
1711 unsigned int t;
1712 unsigned HOST_WIDE_INT fieldoffset = get_varinfo (j)->offset + loff;
1714 v = first_vi_for_offset (get_varinfo (j), fieldoffset);
1715 if (!v)
1716 continue;
1717 t = v->node;
1718 if (int_add_graph_edge (graph, t, rhs, roff))
1720 bitmap tmp = get_varinfo (t)->solution;
1721 if (set_union_with_increment (tmp, sol, roff))
1723 get_varinfo (t)->solution = tmp;
1724 if (t == rhs)
1725 sol = get_varinfo (rhs)->solution;
1726 if (!TEST_BIT (changed, t))
1728 SET_BIT (changed, t);
1729 changed_count++;
1734 else if (0 && dump_file && !(get_varinfo (j)->is_special_var))
1735 fprintf (dump_file, "Untypesafe usage in do_ds_constraint\n");
1739 /* Handle a non-simple (simple meaning requires no iteration), non-copy
1740 constraint (IE *x = &y, x = *y, and *x = y). */
1742 static void
1743 do_complex_constraint (constraint_graph_t graph, constraint_t c, bitmap delta)
1745 if (c->lhs.type == DEREF)
1747 if (c->rhs.type == ADDRESSOF)
1749 /* *x = &y */
1750 do_da_constraint (graph, c, delta);
1752 else
1754 /* *x = y */
1755 do_ds_constraint (graph, c, delta);
1758 else
1760 /* x = *y */
1761 if (!(get_varinfo (c->lhs.var)->is_special_var))
1762 do_sd_constraint (graph, c, delta);
1766 /* Initialize and return a new SCC info structure. */
1768 static struct scc_info *
1769 init_scc_info (void)
1771 struct scc_info *si = XNEW (struct scc_info);
1772 size_t size = VEC_length (varinfo_t, varmap);
1774 si->current_index = 0;
1775 si->visited = sbitmap_alloc (size);
1776 sbitmap_zero (si->visited);
1777 si->in_component = sbitmap_alloc (size);
1778 sbitmap_ones (si->in_component);
1779 si->visited_index = XCNEWVEC (unsigned int, size + 1);
1780 si->scc_stack = VEC_alloc (unsigned, heap, 1);
1781 si->unification_queue = VEC_alloc (unsigned, heap, 1);
1782 return si;
1785 /* Free an SCC info structure pointed to by SI */
1787 static void
1788 free_scc_info (struct scc_info *si)
1790 sbitmap_free (si->visited);
1791 sbitmap_free (si->in_component);
1792 free (si->visited_index);
1793 VEC_free (unsigned, heap, si->scc_stack);
1794 VEC_free (unsigned, heap, si->unification_queue);
1795 free(si);
1799 /* Find cycles in GRAPH that occur, using strongly connected components, and
1800 collapse the cycles into a single representative node. if UPDATE_CHANGED
1801 is true, then update the changed sbitmap to note those nodes whose
1802 solutions have changed as a result of collapsing. */
1804 static void
1805 find_and_collapse_graph_cycles (constraint_graph_t graph, bool update_changed)
1807 unsigned int i;
1808 unsigned int size = VEC_length (varinfo_t, varmap);
1809 struct scc_info *si = init_scc_info ();
1811 for (i = 0; i != size; ++i)
1812 if (!TEST_BIT (si->visited, i) && get_varinfo (i)->node == i)
1813 scc_visit (graph, si, i);
1815 process_unification_queue (graph, si, update_changed);
1816 free_scc_info (si);
1819 /* Compute a topological ordering for GRAPH, and store the result in the
1820 topo_info structure TI. */
1822 static void
1823 compute_topo_order (constraint_graph_t graph,
1824 struct topo_info *ti)
1826 unsigned int i;
1827 unsigned int size = VEC_length (varinfo_t, varmap);
1829 for (i = 0; i != size; ++i)
1830 if (!TEST_BIT (ti->visited, i) && get_varinfo (i)->node == i)
1831 topo_visit (graph, ti, i);
1834 /* Return true if bitmap B is empty, or a bitmap other than bit 0 is set. */
1836 static bool
1837 bitmap_other_than_zero_bit_set (bitmap b)
1839 unsigned int i;
1840 bitmap_iterator bi;
1842 if (bitmap_empty_p (b))
1843 return false;
1844 EXECUTE_IF_SET_IN_BITMAP (b, 1, i, bi)
1845 return true;
1846 return false;
1849 /* Perform offline variable substitution.
1851 This is a linear time way of identifying variables that must have
1852 equivalent points-to sets, including those caused by static cycles,
1853 and single entry subgraphs, in the constraint graph.
1855 The technique is described in "Off-line variable substitution for
1856 scaling points-to analysis" by Atanas Rountev and Satish Chandra,
1857 in "ACM SIGPLAN Notices" volume 35, number 5, pages 47-56. */
1859 static void
1860 perform_var_substitution (constraint_graph_t graph)
1862 struct topo_info *ti = init_topo_info ();
1864 bitmap_obstack_initialize (&iteration_obstack);
1865 /* Compute the topological ordering of the graph, then visit each
1866 node in topological order. */
1867 compute_topo_order (graph, ti);
1869 while (VEC_length (unsigned, ti->topo_order) != 0)
1871 unsigned int i = VEC_pop (unsigned, ti->topo_order);
1872 unsigned int pred;
1873 varinfo_t vi = get_varinfo (i);
1874 bool okay_to_elim = false;
1875 unsigned int root = VEC_length (varinfo_t, varmap);
1876 VEC(constraint_edge_t,heap) *predvec = graph->preds[i];
1877 constraint_edge_t ce = NULL;
1878 bitmap tmp;
1879 unsigned int k;
1880 bitmap_iterator bi;
1882 /* We can't eliminate things whose address is taken, or which is
1883 the target of a dereference. */
1884 if (vi->address_taken || vi->indirect_target)
1885 continue;
1887 /* See if all predecessors of I are ripe for elimination */
1888 EXECUTE_IF_IN_NONNULL_BITMAP (graph->zero_weight_preds[i], 0, k, bi)
1890 unsigned int w;
1891 w = get_varinfo (k)->node;
1893 /* We can't eliminate the node if one of the predecessors is
1894 part of a different strongly connected component. */
1895 if (!okay_to_elim)
1897 root = w;
1898 okay_to_elim = true;
1900 else if (w != root)
1902 okay_to_elim = false;
1903 break;
1906 /* Theorem 4 in Rountev and Chandra: If i is a direct node,
1907 then Solution(i) is a subset of Solution (w), where w is a
1908 predecessor in the graph.
1909 Corollary: If all predecessors of i have the same
1910 points-to set, then i has that same points-to set as
1911 those predecessors. */
1912 tmp = BITMAP_ALLOC (NULL);
1913 bitmap_and_compl (tmp, get_varinfo (i)->solution,
1914 get_varinfo (w)->solution);
1915 if (!bitmap_empty_p (tmp))
1917 okay_to_elim = false;
1918 BITMAP_FREE (tmp);
1919 break;
1921 BITMAP_FREE (tmp);
1924 if (okay_to_elim)
1925 for (pred = 0;
1926 VEC_iterate (constraint_edge_t, predvec, pred, ce);
1927 pred++)
1929 bitmap weight;
1930 unsigned int w;
1931 weight = *(get_graph_weights (graph, i, ce->dest));
1933 /* We can't eliminate variables that have nonzero weighted
1934 edges between them. */
1935 if (weight && bitmap_other_than_zero_bit_set (weight))
1937 okay_to_elim = false;
1938 break;
1940 w = get_varinfo (ce->dest)->node;
1942 /* We can't eliminate the node if one of the predecessors is
1943 part of a different strongly connected component. */
1944 if (!okay_to_elim)
1946 root = w;
1947 okay_to_elim = true;
1949 else if (w != root)
1951 okay_to_elim = false;
1952 break;
1955 /* Theorem 4 in Rountev and Chandra: If i is a direct node,
1956 then Solution(i) is a subset of Solution (w), where w is a
1957 predecessor in the graph.
1958 Corollary: If all predecessors of i have the same
1959 points-to set, then i has that same points-to set as
1960 those predecessors. */
1961 tmp = BITMAP_ALLOC (NULL);
1962 bitmap_and_compl (tmp, get_varinfo (i)->solution,
1963 get_varinfo (w)->solution);
1964 if (!bitmap_empty_p (tmp))
1966 okay_to_elim = false;
1967 BITMAP_FREE (tmp);
1968 break;
1970 BITMAP_FREE (tmp);
1973 /* See if the root is different than the original node.
1974 If so, we've found an equivalence. */
1975 if (root != get_varinfo (i)->node && okay_to_elim)
1977 /* Found an equivalence */
1978 get_varinfo (i)->node = root;
1979 collapse_nodes (graph, root, i);
1980 if (dump_file && (dump_flags & TDF_DETAILS))
1981 fprintf (dump_file, "Collapsing %s into %s\n",
1982 get_varinfo (i)->name,
1983 get_varinfo (root)->name);
1984 stats.collapsed_vars++;
1988 bitmap_obstack_release (&iteration_obstack);
1989 free_topo_info (ti);
1992 /* Solve the constraint graph GRAPH using our worklist solver.
1993 This is based on the PW* family of solvers from the "Efficient Field
1994 Sensitive Pointer Analysis for C" paper.
1995 It works by iterating over all the graph nodes, processing the complex
1996 constraints and propagating the copy constraints, until everything stops
1997 changed. This corresponds to steps 6-8 in the solving list given above. */
1999 static void
2000 solve_graph (constraint_graph_t graph)
2002 unsigned int size = VEC_length (varinfo_t, varmap);
2003 unsigned int i;
2005 changed_count = size;
2006 changed = sbitmap_alloc (size);
2007 sbitmap_ones (changed);
2009 /* The already collapsed/unreachable nodes will never change, so we
2010 need to account for them in changed_count. */
2011 for (i = 0; i < size; i++)
2012 if (get_varinfo (i)->node != i)
2013 changed_count--;
2015 while (changed_count > 0)
2017 unsigned int i;
2018 struct topo_info *ti = init_topo_info ();
2019 stats.iterations++;
2021 bitmap_obstack_initialize (&iteration_obstack);
2023 if (edge_added)
2025 /* We already did cycle elimination once, when we did
2026 variable substitution, so we don't need it again for the
2027 first iteration. */
2028 if (stats.iterations > 1)
2029 find_and_collapse_graph_cycles (graph, true);
2031 edge_added = false;
2034 compute_topo_order (graph, ti);
2036 while (VEC_length (unsigned, ti->topo_order) != 0)
2038 i = VEC_pop (unsigned, ti->topo_order);
2039 gcc_assert (get_varinfo (i)->node == i);
2041 /* If the node has changed, we need to process the
2042 complex constraints and outgoing edges again. */
2043 if (TEST_BIT (changed, i))
2045 unsigned int j;
2046 constraint_t c;
2047 constraint_edge_t e = NULL;
2048 bitmap solution;
2049 bitmap_iterator bi;
2050 VEC(constraint_t,heap) *complex = get_varinfo (i)->complex;
2051 VEC(constraint_edge_t,heap) *succs;
2052 bool solution_empty;
2054 RESET_BIT (changed, i);
2055 changed_count--;
2057 solution = get_varinfo (i)->solution;
2058 solution_empty = bitmap_empty_p (solution);
2060 /* Process the complex constraints */
2061 for (j = 0; VEC_iterate (constraint_t, complex, j, c); j++)
2063 /* The only complex constraint that can change our
2064 solution to non-empty, given an empty solution,
2065 is a constraint where the lhs side is receiving
2066 some set from elsewhere. */
2067 if (!solution_empty || c->lhs.type != DEREF)
2068 do_complex_constraint (graph, c, solution);
2071 solution_empty = bitmap_empty_p (solution);
2073 if (!solution_empty)
2075 /* Propagate solution to all successors. */
2076 succs = graph->succs[i];
2078 EXECUTE_IF_IN_NONNULL_BITMAP (graph->zero_weight_succs[i],
2079 0, j, bi)
2081 bitmap tmp = get_varinfo (j)->solution;
2082 bool flag = false;
2084 flag = set_union_with_increment (tmp, solution, 0);
2086 if (flag)
2088 get_varinfo (j)->solution = tmp;
2089 if (!TEST_BIT (changed, j))
2091 SET_BIT (changed, j);
2092 changed_count++;
2096 for (j = 0; VEC_iterate (constraint_edge_t, succs, j, e); j++)
2098 bitmap tmp = get_varinfo (e->dest)->solution;
2099 bool flag = false;
2100 unsigned int k;
2101 bitmap weights = e->weights;
2102 bitmap_iterator bi;
2104 gcc_assert (weights && !bitmap_empty_p (weights));
2105 EXECUTE_IF_SET_IN_BITMAP (weights, 0, k, bi)
2106 flag |= set_union_with_increment (tmp, solution, k);
2108 if (flag)
2110 get_varinfo (e->dest)->solution = tmp;
2111 if (!TEST_BIT (changed, e->dest))
2113 SET_BIT (changed, e->dest);
2114 changed_count++;
2121 free_topo_info (ti);
2122 bitmap_obstack_release (&iteration_obstack);
2125 sbitmap_free (changed);
2129 /* CONSTRAINT AND VARIABLE GENERATION FUNCTIONS */
2131 /* Map from trees to variable ids. */
2132 static htab_t id_for_tree;
2134 typedef struct tree_id
2136 tree t;
2137 unsigned int id;
2138 } *tree_id_t;
2140 /* Hash a tree id structure. */
2142 static hashval_t
2143 tree_id_hash (const void *p)
2145 const tree_id_t ta = (tree_id_t) p;
2146 return htab_hash_pointer (ta->t);
2149 /* Return true if the tree in P1 and the tree in P2 are the same. */
2151 static int
2152 tree_id_eq (const void *p1, const void *p2)
2154 const tree_id_t ta1 = (tree_id_t) p1;
2155 const tree_id_t ta2 = (tree_id_t) p2;
2156 return ta1->t == ta2->t;
2159 /* Insert ID as the variable id for tree T in the hashtable. */
2161 static void
2162 insert_id_for_tree (tree t, int id)
2164 void **slot;
2165 struct tree_id finder;
2166 tree_id_t new_pair;
2168 finder.t = t;
2169 slot = htab_find_slot (id_for_tree, &finder, INSERT);
2170 gcc_assert (*slot == NULL);
2171 new_pair = XNEW (struct tree_id);
2172 new_pair->t = t;
2173 new_pair->id = id;
2174 *slot = (void *)new_pair;
2177 /* Find the variable id for tree T in ID_FOR_TREE. If T does not
2178 exist in the hash table, return false, otherwise, return true and
2179 set *ID to the id we found. */
2181 static bool
2182 lookup_id_for_tree (tree t, unsigned int *id)
2184 tree_id_t pair;
2185 struct tree_id finder;
2187 finder.t = t;
2188 pair = htab_find (id_for_tree, &finder);
2189 if (pair == NULL)
2190 return false;
2191 *id = pair->id;
2192 return true;
2195 /* Return a printable name for DECL */
2197 static const char *
2198 alias_get_name (tree decl)
2200 const char *res = get_name (decl);
2201 char *temp;
2202 int num_printed = 0;
2204 if (res != NULL)
2205 return res;
2207 res = "NULL";
2208 if (!dump_file)
2209 return res;
2211 if (TREE_CODE (decl) == SSA_NAME)
2213 num_printed = asprintf (&temp, "%s_%u",
2214 alias_get_name (SSA_NAME_VAR (decl)),
2215 SSA_NAME_VERSION (decl));
2217 else if (DECL_P (decl))
2219 num_printed = asprintf (&temp, "D.%u", DECL_UID (decl));
2221 if (num_printed > 0)
2223 res = ggc_strdup (temp);
2224 free (temp);
2226 return res;
2229 /* Find the variable id for tree T in the hashtable.
2230 If T doesn't exist in the hash table, create an entry for it. */
2232 static unsigned int
2233 get_id_for_tree (tree t)
2235 tree_id_t pair;
2236 struct tree_id finder;
2238 finder.t = t;
2239 pair = htab_find (id_for_tree, &finder);
2240 if (pair == NULL)
2241 return create_variable_info_for (t, alias_get_name (t));
2243 return pair->id;
2246 /* Get a constraint expression from an SSA_VAR_P node. */
2248 static struct constraint_expr
2249 get_constraint_exp_from_ssa_var (tree t)
2251 struct constraint_expr cexpr;
2253 gcc_assert (SSA_VAR_P (t) || DECL_P (t));
2255 /* For parameters, get at the points-to set for the actual parm
2256 decl. */
2257 if (TREE_CODE (t) == SSA_NAME
2258 && TREE_CODE (SSA_NAME_VAR (t)) == PARM_DECL
2259 && default_def (SSA_NAME_VAR (t)) == t)
2260 return get_constraint_exp_from_ssa_var (SSA_NAME_VAR (t));
2262 cexpr.type = SCALAR;
2264 cexpr.var = get_id_for_tree (t);
2265 /* If we determine the result is "anything", and we know this is readonly,
2266 say it points to readonly memory instead. */
2267 if (cexpr.var == anything_id && TREE_READONLY (t))
2269 cexpr.type = ADDRESSOF;
2270 cexpr.var = readonly_id;
2273 cexpr.offset = 0;
2274 return cexpr;
2277 /* Process a completed constraint T, and add it to the constraint
2278 list. */
2280 static void
2281 process_constraint (constraint_t t)
2283 struct constraint_expr rhs = t->rhs;
2284 struct constraint_expr lhs = t->lhs;
2286 gcc_assert (rhs.var < VEC_length (varinfo_t, varmap));
2287 gcc_assert (lhs.var < VEC_length (varinfo_t, varmap));
2289 if (lhs.type == DEREF)
2290 get_varinfo (lhs.var)->directly_dereferenced = true;
2291 if (rhs.type == DEREF)
2292 get_varinfo (rhs.var)->directly_dereferenced = true;
2294 /* ANYTHING == ANYTHING is pointless. */
2295 if (lhs.var == anything_id && rhs.var == anything_id)
2296 return;
2298 /* If we have &ANYTHING = something, convert to SOMETHING = &ANYTHING) */
2299 else if (lhs.var == anything_id && lhs.type == ADDRESSOF)
2301 rhs = t->lhs;
2302 t->lhs = t->rhs;
2303 t->rhs = rhs;
2304 process_constraint (t);
2306 /* This can happen in our IR with things like n->a = *p */
2307 else if (rhs.type == DEREF && lhs.type == DEREF && rhs.var != anything_id)
2309 /* Split into tmp = *rhs, *lhs = tmp */
2310 tree rhsdecl = get_varinfo (rhs.var)->decl;
2311 tree pointertype = TREE_TYPE (rhsdecl);
2312 tree pointedtotype = TREE_TYPE (pointertype);
2313 tree tmpvar = create_tmp_var_raw (pointedtotype, "doubledereftmp");
2314 struct constraint_expr tmplhs = get_constraint_exp_from_ssa_var (tmpvar);
2316 /* If this is an aggregate of known size, we should have passed
2317 this off to do_structure_copy, and it should have broken it
2318 up. */
2319 gcc_assert (!AGGREGATE_TYPE_P (pointedtotype)
2320 || get_varinfo (rhs.var)->is_unknown_size_var);
2322 process_constraint (new_constraint (tmplhs, rhs));
2323 process_constraint (new_constraint (lhs, tmplhs));
2325 else if (rhs.type == ADDRESSOF)
2327 varinfo_t vi;
2328 gcc_assert (rhs.offset == 0);
2330 /* No need to mark address taken simply because of escaped vars
2331 constraints. */
2332 if (lhs.var != escaped_vars_id)
2333 for (vi = get_varinfo (rhs.var); vi != NULL; vi = vi->next)
2334 vi->address_taken = true;
2336 VEC_safe_push (constraint_t, heap, constraints, t);
2338 else
2340 if (lhs.type != DEREF && rhs.type == DEREF)
2341 get_varinfo (lhs.var)->indirect_target = true;
2342 VEC_safe_push (constraint_t, heap, constraints, t);
2346 /* Return true if T is a variable of a type that could contain
2347 pointers. */
2349 static bool
2350 could_have_pointers (tree t)
2352 tree type = TREE_TYPE (t);
2354 if (POINTER_TYPE_P (type) || AGGREGATE_TYPE_P (type)
2355 || TREE_CODE (type) == COMPLEX_TYPE)
2356 return true;
2357 return false;
2360 /* Return the position, in bits, of FIELD_DECL from the beginning of its
2361 structure. */
2363 static unsigned HOST_WIDE_INT
2364 bitpos_of_field (const tree fdecl)
2367 if (TREE_CODE (DECL_FIELD_OFFSET (fdecl)) != INTEGER_CST
2368 || TREE_CODE (DECL_FIELD_BIT_OFFSET (fdecl)) != INTEGER_CST)
2369 return -1;
2371 return (tree_low_cst (DECL_FIELD_OFFSET (fdecl), 1) * 8)
2372 + tree_low_cst (DECL_FIELD_BIT_OFFSET (fdecl), 1);
2376 /* Return true if an access to [ACCESSPOS, ACCESSSIZE]
2377 overlaps with a field at [FIELDPOS, FIELDSIZE] */
2379 static bool
2380 offset_overlaps_with_access (const unsigned HOST_WIDE_INT fieldpos,
2381 const unsigned HOST_WIDE_INT fieldsize,
2382 const unsigned HOST_WIDE_INT accesspos,
2383 const unsigned HOST_WIDE_INT accesssize)
2385 if (fieldpos == accesspos && fieldsize == accesssize)
2386 return true;
2387 if (accesspos >= fieldpos && accesspos < (fieldpos + fieldsize))
2388 return true;
2389 if (accesspos < fieldpos && (accesspos + accesssize > fieldpos))
2390 return true;
2392 return false;
2395 /* Given a COMPONENT_REF T, return the constraint_expr for it. */
2397 static void
2398 get_constraint_for_component_ref (tree t, VEC(ce_s, heap) **results)
2400 tree orig_t = t;
2401 HOST_WIDE_INT bitsize = -1;
2402 HOST_WIDE_INT bitmaxsize = -1;
2403 HOST_WIDE_INT bitpos;
2404 tree forzero;
2405 struct constraint_expr *result;
2406 unsigned int beforelength = VEC_length (ce_s, *results);
2408 /* Some people like to do cute things like take the address of
2409 &0->a.b */
2410 forzero = t;
2411 while (!SSA_VAR_P (forzero) && !CONSTANT_CLASS_P (forzero))
2412 forzero = TREE_OPERAND (forzero, 0);
2414 if (CONSTANT_CLASS_P (forzero) && integer_zerop (forzero))
2416 struct constraint_expr temp;
2418 temp.offset = 0;
2419 temp.var = integer_id;
2420 temp.type = SCALAR;
2421 VEC_safe_push (ce_s, heap, *results, &temp);
2422 return;
2425 t = get_ref_base_and_extent (t, &bitpos, &bitsize, &bitmaxsize);
2427 /* String constants's are readonly, so there is nothing to really do
2428 here. */
2429 if (TREE_CODE (t) == STRING_CST)
2430 return;
2432 get_constraint_for (t, results);
2433 result = VEC_last (ce_s, *results);
2434 result->offset = bitpos;
2436 gcc_assert (beforelength + 1 == VEC_length (ce_s, *results));
2438 /* This can also happen due to weird offsetof type macros. */
2439 if (TREE_CODE (t) != ADDR_EXPR && result->type == ADDRESSOF)
2440 result->type = SCALAR;
2442 if (result->type == SCALAR)
2444 /* In languages like C, you can access one past the end of an
2445 array. You aren't allowed to dereference it, so we can
2446 ignore this constraint. When we handle pointer subtraction,
2447 we may have to do something cute here. */
2449 if (result->offset < get_varinfo (result->var)->fullsize
2450 && bitmaxsize != 0)
2452 /* It's also not true that the constraint will actually start at the
2453 right offset, it may start in some padding. We only care about
2454 setting the constraint to the first actual field it touches, so
2455 walk to find it. */
2456 varinfo_t curr;
2457 for (curr = get_varinfo (result->var); curr; curr = curr->next)
2459 if (offset_overlaps_with_access (curr->offset, curr->size,
2460 result->offset, bitmaxsize))
2462 result->var = curr->id;
2463 break;
2466 /* assert that we found *some* field there. The user couldn't be
2467 accessing *only* padding. */
2468 /* Still the user could access one past the end of an array
2469 embedded in a struct resulting in accessing *only* padding. */
2470 gcc_assert (curr || ref_contains_array_ref (orig_t));
2472 else if (bitmaxsize == 0)
2474 if (dump_file && (dump_flags & TDF_DETAILS))
2475 fprintf (dump_file, "Access to zero-sized part of variable,"
2476 "ignoring\n");
2478 else
2479 if (dump_file && (dump_flags & TDF_DETAILS))
2480 fprintf (dump_file, "Access to past the end of variable, ignoring\n");
2482 result->offset = 0;
2487 /* Dereference the constraint expression CONS, and return the result.
2488 DEREF (ADDRESSOF) = SCALAR
2489 DEREF (SCALAR) = DEREF
2490 DEREF (DEREF) = (temp = DEREF1; result = DEREF(temp))
2491 This is needed so that we can handle dereferencing DEREF constraints. */
2493 static void
2494 do_deref (VEC (ce_s, heap) **constraints)
2496 struct constraint_expr *c;
2497 unsigned int i = 0;
2498 for (i = 0; VEC_iterate (ce_s, *constraints, i, c); i++)
2500 if (c->type == SCALAR)
2501 c->type = DEREF;
2502 else if (c->type == ADDRESSOF)
2503 c->type = SCALAR;
2504 else if (c->type == DEREF)
2506 tree tmpvar = create_tmp_var_raw (ptr_type_node, "dereftmp");
2507 struct constraint_expr tmplhs = get_constraint_exp_from_ssa_var (tmpvar);
2508 process_constraint (new_constraint (tmplhs, *c));
2509 c->var = tmplhs.var;
2511 else
2512 gcc_unreachable ();
2516 /* Create a nonlocal variable of TYPE to represent nonlocals we can
2517 alias. */
2519 static tree
2520 create_nonlocal_var (tree type)
2522 tree nonlocal = create_tmp_var_raw (type, "NONLOCAL");
2524 if (referenced_vars)
2525 add_referenced_var (nonlocal);
2527 DECL_EXTERNAL (nonlocal) = 1;
2528 return nonlocal;
2531 /* Given a tree T, return the constraint expression for it. */
2533 static void
2534 get_constraint_for (tree t, VEC (ce_s, heap) **results)
2536 struct constraint_expr temp;
2538 /* x = integer is all glommed to a single variable, which doesn't
2539 point to anything by itself. That is, of course, unless it is an
2540 integer constant being treated as a pointer, in which case, we
2541 will return that this is really the addressof anything. This
2542 happens below, since it will fall into the default case. The only
2543 case we know something about an integer treated like a pointer is
2544 when it is the NULL pointer, and then we just say it points to
2545 NULL. */
2546 if (TREE_CODE (t) == INTEGER_CST
2547 && !POINTER_TYPE_P (TREE_TYPE (t)))
2549 temp.var = integer_id;
2550 temp.type = SCALAR;
2551 temp.offset = 0;
2552 VEC_safe_push (ce_s, heap, *results, &temp);
2553 return;
2555 else if (TREE_CODE (t) == INTEGER_CST
2556 && integer_zerop (t))
2558 temp.var = nothing_id;
2559 temp.type = ADDRESSOF;
2560 temp.offset = 0;
2561 VEC_safe_push (ce_s, heap, *results, &temp);
2562 return;
2565 switch (TREE_CODE_CLASS (TREE_CODE (t)))
2567 case tcc_expression:
2569 switch (TREE_CODE (t))
2571 case ADDR_EXPR:
2573 struct constraint_expr *c;
2574 unsigned int i;
2575 tree exp = TREE_OPERAND (t, 0);
2576 tree pttype = TREE_TYPE (TREE_TYPE (t));
2578 get_constraint_for (exp, results);
2579 /* Make sure we capture constraints to all elements
2580 of an array. */
2581 if ((handled_component_p (exp)
2582 && ref_contains_array_ref (exp))
2583 || TREE_CODE (TREE_TYPE (exp)) == ARRAY_TYPE)
2585 struct constraint_expr *origrhs;
2586 varinfo_t origvar;
2587 struct constraint_expr tmp;
2589 if (VEC_length (ce_s, *results) == 0)
2590 return;
2592 gcc_assert (VEC_length (ce_s, *results) == 1);
2593 origrhs = VEC_last (ce_s, *results);
2594 tmp = *origrhs;
2595 VEC_pop (ce_s, *results);
2596 origvar = get_varinfo (origrhs->var);
2597 for (; origvar; origvar = origvar->next)
2599 tmp.var = origvar->id;
2600 VEC_safe_push (ce_s, heap, *results, &tmp);
2603 else if (VEC_length (ce_s, *results) == 1
2604 && (AGGREGATE_TYPE_P (pttype)
2605 || TREE_CODE (pttype) == COMPLEX_TYPE))
2607 struct constraint_expr *origrhs;
2608 varinfo_t origvar;
2609 struct constraint_expr tmp;
2611 gcc_assert (VEC_length (ce_s, *results) == 1);
2612 origrhs = VEC_last (ce_s, *results);
2613 tmp = *origrhs;
2614 VEC_pop (ce_s, *results);
2615 origvar = get_varinfo (origrhs->var);
2616 for (; origvar; origvar = origvar->next)
2618 tmp.var = origvar->id;
2619 VEC_safe_push (ce_s, heap, *results, &tmp);
2623 for (i = 0; VEC_iterate (ce_s, *results, i, c); i++)
2625 if (c->type == DEREF)
2626 c->type = SCALAR;
2627 else
2628 c->type = ADDRESSOF;
2630 return;
2632 break;
2633 case CALL_EXPR:
2634 /* XXX: In interprocedural mode, if we didn't have the
2635 body, we would need to do *each pointer argument =
2636 &ANYTHING added. */
2637 if (call_expr_flags (t) & (ECF_MALLOC | ECF_MAY_BE_ALLOCA))
2639 varinfo_t vi;
2640 tree heapvar = heapvar_lookup (t);
2642 if (heapvar == NULL)
2644 heapvar = create_tmp_var_raw (ptr_type_node, "HEAP");
2645 DECL_EXTERNAL (heapvar) = 1;
2646 if (referenced_vars)
2647 add_referenced_var (heapvar);
2648 heapvar_insert (t, heapvar);
2651 temp.var = create_variable_info_for (heapvar,
2652 alias_get_name (heapvar));
2654 vi = get_varinfo (temp.var);
2655 vi->is_artificial_var = 1;
2656 vi->is_heap_var = 1;
2657 temp.type = ADDRESSOF;
2658 temp.offset = 0;
2659 VEC_safe_push (ce_s, heap, *results, &temp);
2660 return;
2662 else
2664 temp.var = escaped_vars_id;
2665 temp.type = SCALAR;
2666 temp.offset = 0;
2667 VEC_safe_push (ce_s, heap, *results, &temp);
2668 return;
2670 break;
2671 default:
2673 temp.type = ADDRESSOF;
2674 temp.var = anything_id;
2675 temp.offset = 0;
2676 VEC_safe_push (ce_s, heap, *results, &temp);
2677 return;
2681 case tcc_reference:
2683 switch (TREE_CODE (t))
2685 case INDIRECT_REF:
2687 get_constraint_for (TREE_OPERAND (t, 0), results);
2688 do_deref (results);
2689 return;
2691 case ARRAY_REF:
2692 case ARRAY_RANGE_REF:
2693 case COMPONENT_REF:
2694 get_constraint_for_component_ref (t, results);
2695 return;
2696 default:
2698 temp.type = ADDRESSOF;
2699 temp.var = anything_id;
2700 temp.offset = 0;
2701 VEC_safe_push (ce_s, heap, *results, &temp);
2702 return;
2706 case tcc_unary:
2708 switch (TREE_CODE (t))
2710 case NOP_EXPR:
2711 case CONVERT_EXPR:
2712 case NON_LVALUE_EXPR:
2714 tree op = TREE_OPERAND (t, 0);
2716 /* Cast from non-pointer to pointers are bad news for us.
2717 Anything else, we see through */
2718 if (!(POINTER_TYPE_P (TREE_TYPE (t))
2719 && ! POINTER_TYPE_P (TREE_TYPE (op))))
2721 get_constraint_for (op, results);
2722 return;
2725 /* FALLTHRU */
2727 default:
2729 temp.type = ADDRESSOF;
2730 temp.var = anything_id;
2731 temp.offset = 0;
2732 VEC_safe_push (ce_s, heap, *results, &temp);
2733 return;
2737 case tcc_exceptional:
2739 switch (TREE_CODE (t))
2741 case PHI_NODE:
2743 get_constraint_for (PHI_RESULT (t), results);
2744 return;
2746 break;
2747 case SSA_NAME:
2749 struct constraint_expr temp;
2750 temp = get_constraint_exp_from_ssa_var (t);
2751 VEC_safe_push (ce_s, heap, *results, &temp);
2752 return;
2754 break;
2755 default:
2757 temp.type = ADDRESSOF;
2758 temp.var = anything_id;
2759 temp.offset = 0;
2760 VEC_safe_push (ce_s, heap, *results, &temp);
2761 return;
2765 case tcc_declaration:
2767 struct constraint_expr temp;
2768 temp = get_constraint_exp_from_ssa_var (t);
2769 VEC_safe_push (ce_s, heap, *results, &temp);
2770 return;
2772 default:
2774 temp.type = ADDRESSOF;
2775 temp.var = anything_id;
2776 temp.offset = 0;
2777 VEC_safe_push (ce_s, heap, *results, &temp);
2778 return;
2784 /* Handle the structure copy case where we have a simple structure copy
2785 between LHS and RHS that is of SIZE (in bits)
2787 For each field of the lhs variable (lhsfield)
2788 For each field of the rhs variable at lhsfield.offset (rhsfield)
2789 add the constraint lhsfield = rhsfield
2791 If we fail due to some kind of type unsafety or other thing we
2792 can't handle, return false. We expect the caller to collapse the
2793 variable in that case. */
2795 static bool
2796 do_simple_structure_copy (const struct constraint_expr lhs,
2797 const struct constraint_expr rhs,
2798 const unsigned HOST_WIDE_INT size)
2800 varinfo_t p = get_varinfo (lhs.var);
2801 unsigned HOST_WIDE_INT pstart, last;
2802 pstart = p->offset;
2803 last = p->offset + size;
2804 for (; p && p->offset < last; p = p->next)
2806 varinfo_t q;
2807 struct constraint_expr templhs = lhs;
2808 struct constraint_expr temprhs = rhs;
2809 unsigned HOST_WIDE_INT fieldoffset;
2811 templhs.var = p->id;
2812 q = get_varinfo (temprhs.var);
2813 fieldoffset = p->offset - pstart;
2814 q = first_vi_for_offset (q, q->offset + fieldoffset);
2815 if (!q)
2816 return false;
2817 temprhs.var = q->id;
2818 process_constraint (new_constraint (templhs, temprhs));
2820 return true;
2824 /* Handle the structure copy case where we have a structure copy between a
2825 aggregate on the LHS and a dereference of a pointer on the RHS
2826 that is of SIZE (in bits)
2828 For each field of the lhs variable (lhsfield)
2829 rhs.offset = lhsfield->offset
2830 add the constraint lhsfield = rhs
2833 static void
2834 do_rhs_deref_structure_copy (const struct constraint_expr lhs,
2835 const struct constraint_expr rhs,
2836 const unsigned HOST_WIDE_INT size)
2838 varinfo_t p = get_varinfo (lhs.var);
2839 unsigned HOST_WIDE_INT pstart,last;
2840 pstart = p->offset;
2841 last = p->offset + size;
2843 for (; p && p->offset < last; p = p->next)
2845 varinfo_t q;
2846 struct constraint_expr templhs = lhs;
2847 struct constraint_expr temprhs = rhs;
2848 unsigned HOST_WIDE_INT fieldoffset;
2851 if (templhs.type == SCALAR)
2852 templhs.var = p->id;
2853 else
2854 templhs.offset = p->offset;
2856 q = get_varinfo (temprhs.var);
2857 fieldoffset = p->offset - pstart;
2858 temprhs.offset += fieldoffset;
2859 process_constraint (new_constraint (templhs, temprhs));
2863 /* Handle the structure copy case where we have a structure copy
2864 between a aggregate on the RHS and a dereference of a pointer on
2865 the LHS that is of SIZE (in bits)
2867 For each field of the rhs variable (rhsfield)
2868 lhs.offset = rhsfield->offset
2869 add the constraint lhs = rhsfield
2872 static void
2873 do_lhs_deref_structure_copy (const struct constraint_expr lhs,
2874 const struct constraint_expr rhs,
2875 const unsigned HOST_WIDE_INT size)
2877 varinfo_t p = get_varinfo (rhs.var);
2878 unsigned HOST_WIDE_INT pstart,last;
2879 pstart = p->offset;
2880 last = p->offset + size;
2882 for (; p && p->offset < last; p = p->next)
2884 varinfo_t q;
2885 struct constraint_expr templhs = lhs;
2886 struct constraint_expr temprhs = rhs;
2887 unsigned HOST_WIDE_INT fieldoffset;
2890 if (temprhs.type == SCALAR)
2891 temprhs.var = p->id;
2892 else
2893 temprhs.offset = p->offset;
2895 q = get_varinfo (templhs.var);
2896 fieldoffset = p->offset - pstart;
2897 templhs.offset += fieldoffset;
2898 process_constraint (new_constraint (templhs, temprhs));
2902 /* Sometimes, frontends like to give us bad type information. This
2903 function will collapse all the fields from VAR to the end of VAR,
2904 into VAR, so that we treat those fields as a single variable.
2905 We return the variable they were collapsed into. */
2907 static unsigned int
2908 collapse_rest_of_var (unsigned int var)
2910 varinfo_t currvar = get_varinfo (var);
2911 varinfo_t field;
2913 for (field = currvar->next; field; field = field->next)
2915 if (dump_file)
2916 fprintf (dump_file, "Type safety: Collapsing var %s into %s\n",
2917 field->name, currvar->name);
2919 gcc_assert (!field->collapsed_to);
2920 field->collapsed_to = currvar;
2923 currvar->next = NULL;
2924 currvar->size = currvar->fullsize - currvar->offset;
2926 return currvar->id;
2929 /* Handle aggregate copies by expanding into copies of the respective
2930 fields of the structures. */
2932 static void
2933 do_structure_copy (tree lhsop, tree rhsop)
2935 struct constraint_expr lhs, rhs, tmp;
2936 VEC (ce_s, heap) *lhsc = NULL, *rhsc = NULL;
2937 varinfo_t p;
2938 unsigned HOST_WIDE_INT lhssize;
2939 unsigned HOST_WIDE_INT rhssize;
2941 get_constraint_for (lhsop, &lhsc);
2942 get_constraint_for (rhsop, &rhsc);
2943 gcc_assert (VEC_length (ce_s, lhsc) == 1);
2944 gcc_assert (VEC_length (ce_s, rhsc) == 1);
2945 lhs = *(VEC_last (ce_s, lhsc));
2946 rhs = *(VEC_last (ce_s, rhsc));
2948 VEC_free (ce_s, heap, lhsc);
2949 VEC_free (ce_s, heap, rhsc);
2951 /* If we have special var = x, swap it around. */
2952 if (lhs.var <= integer_id && !(get_varinfo (rhs.var)->is_special_var))
2954 tmp = lhs;
2955 lhs = rhs;
2956 rhs = tmp;
2959 /* This is fairly conservative for the RHS == ADDRESSOF case, in that it's
2960 possible it's something we could handle. However, most cases falling
2961 into this are dealing with transparent unions, which are slightly
2962 weird. */
2963 if (rhs.type == ADDRESSOF && !(get_varinfo (rhs.var)->is_special_var))
2965 rhs.type = ADDRESSOF;
2966 rhs.var = anything_id;
2969 /* If the RHS is a special var, or an addressof, set all the LHS fields to
2970 that special var. */
2971 if (rhs.var <= integer_id)
2973 for (p = get_varinfo (lhs.var); p; p = p->next)
2975 struct constraint_expr templhs = lhs;
2976 struct constraint_expr temprhs = rhs;
2978 if (templhs.type == SCALAR )
2979 templhs.var = p->id;
2980 else
2981 templhs.offset += p->offset;
2982 process_constraint (new_constraint (templhs, temprhs));
2985 else
2987 tree rhstype = TREE_TYPE (rhsop);
2988 tree lhstype = TREE_TYPE (lhsop);
2989 tree rhstypesize;
2990 tree lhstypesize;
2992 lhstypesize = DECL_P (lhsop) ? DECL_SIZE (lhsop) : TYPE_SIZE (lhstype);
2993 rhstypesize = DECL_P (rhsop) ? DECL_SIZE (rhsop) : TYPE_SIZE (rhstype);
2995 /* If we have a variably sized types on the rhs or lhs, and a deref
2996 constraint, add the constraint, lhsconstraint = &ANYTHING.
2997 This is conservatively correct because either the lhs is an unknown
2998 sized var (if the constraint is SCALAR), or the lhs is a DEREF
2999 constraint, and every variable it can point to must be unknown sized
3000 anyway, so we don't need to worry about fields at all. */
3001 if ((rhs.type == DEREF && TREE_CODE (rhstypesize) != INTEGER_CST)
3002 || (lhs.type == DEREF && TREE_CODE (lhstypesize) != INTEGER_CST))
3004 rhs.var = anything_id;
3005 rhs.type = ADDRESSOF;
3006 rhs.offset = 0;
3007 process_constraint (new_constraint (lhs, rhs));
3008 return;
3011 /* The size only really matters insofar as we don't set more or less of
3012 the variable. If we hit an unknown size var, the size should be the
3013 whole darn thing. */
3014 if (get_varinfo (rhs.var)->is_unknown_size_var)
3015 rhssize = ~0;
3016 else
3017 rhssize = TREE_INT_CST_LOW (rhstypesize);
3019 if (get_varinfo (lhs.var)->is_unknown_size_var)
3020 lhssize = ~0;
3021 else
3022 lhssize = TREE_INT_CST_LOW (lhstypesize);
3025 if (rhs.type == SCALAR && lhs.type == SCALAR)
3027 if (!do_simple_structure_copy (lhs, rhs, MIN (lhssize, rhssize)))
3029 lhs.var = collapse_rest_of_var (lhs.var);
3030 rhs.var = collapse_rest_of_var (rhs.var);
3031 lhs.offset = 0;
3032 rhs.offset = 0;
3033 lhs.type = SCALAR;
3034 rhs.type = SCALAR;
3035 process_constraint (new_constraint (lhs, rhs));
3038 else if (lhs.type != DEREF && rhs.type == DEREF)
3039 do_rhs_deref_structure_copy (lhs, rhs, MIN (lhssize, rhssize));
3040 else if (lhs.type == DEREF && rhs.type != DEREF)
3041 do_lhs_deref_structure_copy (lhs, rhs, MIN (lhssize, rhssize));
3042 else
3044 tree pointedtotype = lhstype;
3045 tree tmpvar;
3047 gcc_assert (rhs.type == DEREF && lhs.type == DEREF);
3048 tmpvar = create_tmp_var_raw (pointedtotype, "structcopydereftmp");
3049 do_structure_copy (tmpvar, rhsop);
3050 do_structure_copy (lhsop, tmpvar);
3055 /* Update related alias information kept in AI. This is used when
3056 building name tags, alias sets and deciding grouping heuristics.
3057 STMT is the statement to process. This function also updates
3058 ADDRESSABLE_VARS. */
3060 static void
3061 update_alias_info (tree stmt, struct alias_info *ai)
3063 bitmap addr_taken;
3064 use_operand_p use_p;
3065 ssa_op_iter iter;
3066 enum escape_type stmt_escape_type = is_escape_site (stmt);
3067 tree op;
3069 if (stmt_escape_type == ESCAPE_TO_CALL
3070 || stmt_escape_type == ESCAPE_TO_PURE_CONST)
3072 ai->num_calls_found++;
3073 if (stmt_escape_type == ESCAPE_TO_PURE_CONST)
3074 ai->num_pure_const_calls_found++;
3077 /* Mark all the variables whose address are taken by the statement. */
3078 addr_taken = addresses_taken (stmt);
3079 if (addr_taken)
3081 bitmap_ior_into (addressable_vars, addr_taken);
3083 /* If STMT is an escape point, all the addresses taken by it are
3084 call-clobbered. */
3085 if (stmt_escape_type != NO_ESCAPE)
3087 bitmap_iterator bi;
3088 unsigned i;
3090 EXECUTE_IF_SET_IN_BITMAP (addr_taken, 0, i, bi)
3092 tree rvar = referenced_var (i);
3093 if (!unmodifiable_var_p (rvar))
3094 mark_call_clobbered (rvar, stmt_escape_type);
3099 /* Process each operand use. If an operand may be aliased, keep
3100 track of how many times it's being used. For pointers, determine
3101 whether they are dereferenced by the statement, or whether their
3102 value escapes, etc. */
3103 FOR_EACH_PHI_OR_STMT_USE (use_p, stmt, iter, SSA_OP_USE)
3105 tree op, var;
3106 var_ann_t v_ann;
3107 struct ptr_info_def *pi;
3108 bool is_store, is_potential_deref;
3109 unsigned num_uses, num_derefs;
3111 op = USE_FROM_PTR (use_p);
3113 /* If STMT is a PHI node, OP may be an ADDR_EXPR. If so, add it
3114 to the set of addressable variables. */
3115 if (TREE_CODE (op) == ADDR_EXPR)
3117 gcc_assert (TREE_CODE (stmt) == PHI_NODE);
3119 /* PHI nodes don't have annotations for pinning the set
3120 of addresses taken, so we collect them here.
3122 FIXME, should we allow PHI nodes to have annotations
3123 so that they can be treated like regular statements?
3124 Currently, they are treated as second-class
3125 statements. */
3126 add_to_addressable_set (TREE_OPERAND (op, 0), &addressable_vars);
3127 continue;
3130 /* Ignore constants. */
3131 if (TREE_CODE (op) != SSA_NAME)
3132 continue;
3134 var = SSA_NAME_VAR (op);
3135 v_ann = var_ann (var);
3137 /* The base variable of an ssa name must be a GIMPLE register, and thus
3138 it cannot be aliased. */
3139 gcc_assert (!may_be_aliased (var));
3141 /* We are only interested in pointers. */
3142 if (!POINTER_TYPE_P (TREE_TYPE (op)))
3143 continue;
3145 pi = get_ptr_info (op);
3147 /* Add OP to AI->PROCESSED_PTRS, if it's not there already. */
3148 if (!TEST_BIT (ai->ssa_names_visited, SSA_NAME_VERSION (op)))
3150 SET_BIT (ai->ssa_names_visited, SSA_NAME_VERSION (op));
3151 VEC_safe_push (tree, heap, ai->processed_ptrs, op);
3154 /* If STMT is a PHI node, then it will not have pointer
3155 dereferences and it will not be an escape point. */
3156 if (TREE_CODE (stmt) == PHI_NODE)
3157 continue;
3159 /* Determine whether OP is a dereferenced pointer, and if STMT
3160 is an escape point, whether OP escapes. */
3161 count_uses_and_derefs (op, stmt, &num_uses, &num_derefs, &is_store);
3163 /* Handle a corner case involving address expressions of the
3164 form '&PTR->FLD'. The problem with these expressions is that
3165 they do not represent a dereference of PTR. However, if some
3166 other transformation propagates them into an INDIRECT_REF
3167 expression, we end up with '*(&PTR->FLD)' which is folded
3168 into 'PTR->FLD'.
3170 So, if the original code had no other dereferences of PTR,
3171 the aliaser will not create memory tags for it, and when
3172 &PTR->FLD gets propagated to INDIRECT_REF expressions, the
3173 memory operations will receive no V_MAY_DEF/VUSE operands.
3175 One solution would be to have count_uses_and_derefs consider
3176 &PTR->FLD a dereference of PTR. But that is wrong, since it
3177 is not really a dereference but an offset calculation.
3179 What we do here is to recognize these special ADDR_EXPR
3180 nodes. Since these expressions are never GIMPLE values (they
3181 are not GIMPLE invariants), they can only appear on the RHS
3182 of an assignment and their base address is always an
3183 INDIRECT_REF expression. */
3184 is_potential_deref = false;
3185 if (TREE_CODE (stmt) == MODIFY_EXPR
3186 && TREE_CODE (TREE_OPERAND (stmt, 1)) == ADDR_EXPR
3187 && !is_gimple_val (TREE_OPERAND (stmt, 1)))
3189 /* If the RHS if of the form &PTR->FLD and PTR == OP, then
3190 this represents a potential dereference of PTR. */
3191 tree rhs = TREE_OPERAND (stmt, 1);
3192 tree base = get_base_address (TREE_OPERAND (rhs, 0));
3193 if (TREE_CODE (base) == INDIRECT_REF
3194 && TREE_OPERAND (base, 0) == op)
3195 is_potential_deref = true;
3198 if (num_derefs > 0 || is_potential_deref)
3200 /* Mark OP as dereferenced. In a subsequent pass,
3201 dereferenced pointers that point to a set of
3202 variables will be assigned a name tag to alias
3203 all the variables OP points to. */
3204 pi->is_dereferenced = 1;
3206 /* Keep track of how many time we've dereferenced each
3207 pointer. */
3208 NUM_REFERENCES_INC (v_ann);
3210 /* If this is a store operation, mark OP as being
3211 dereferenced to store, otherwise mark it as being
3212 dereferenced to load. */
3213 if (is_store)
3214 bitmap_set_bit (ai->dereferenced_ptrs_store, DECL_UID (var));
3215 else
3216 bitmap_set_bit (ai->dereferenced_ptrs_load, DECL_UID (var));
3219 if (stmt_escape_type != NO_ESCAPE && num_derefs < num_uses)
3221 /* If STMT is an escape point and STMT contains at
3222 least one direct use of OP, then the value of OP
3223 escapes and so the pointed-to variables need to
3224 be marked call-clobbered. */
3225 pi->value_escapes_p = 1;
3226 pi->escape_mask |= stmt_escape_type;
3228 /* If the statement makes a function call, assume
3229 that pointer OP will be dereferenced in a store
3230 operation inside the called function. */
3231 if (get_call_expr_in (stmt))
3233 bitmap_set_bit (ai->dereferenced_ptrs_store, DECL_UID (var));
3234 pi->is_dereferenced = 1;
3239 if (TREE_CODE (stmt) == PHI_NODE)
3240 return;
3242 /* Update reference counter for definitions to any
3243 potentially aliased variable. This is used in the alias
3244 grouping heuristics. */
3245 FOR_EACH_SSA_TREE_OPERAND (op, stmt, iter, SSA_OP_DEF)
3247 tree var = SSA_NAME_VAR (op);
3248 var_ann_t ann = var_ann (var);
3249 bitmap_set_bit (ai->written_vars, DECL_UID (var));
3250 if (may_be_aliased (var))
3251 NUM_REFERENCES_INC (ann);
3255 /* Mark variables in V_MAY_DEF operands as being written to. */
3256 FOR_EACH_SSA_TREE_OPERAND (op, stmt, iter, SSA_OP_VIRTUAL_DEFS)
3258 tree var = DECL_P (op) ? op : SSA_NAME_VAR (op);
3259 bitmap_set_bit (ai->written_vars, DECL_UID (var));
3264 /* Handle pointer arithmetic EXPR when creating aliasing constraints.
3265 Expressions of the type PTR + CST can be handled in two ways:
3267 1- If the constraint for PTR is ADDRESSOF for a non-structure
3268 variable, then we can use it directly because adding or
3269 subtracting a constant may not alter the original ADDRESSOF
3270 constraint (i.e., pointer arithmetic may not legally go outside
3271 an object's boundaries).
3273 2- If the constraint for PTR is ADDRESSOF for a structure variable,
3274 then if CST is a compile-time constant that can be used as an
3275 offset, we can determine which sub-variable will be pointed-to
3276 by the expression.
3278 Return true if the expression is handled. For any other kind of
3279 expression, return false so that each operand can be added as a
3280 separate constraint by the caller. */
3282 static bool
3283 handle_ptr_arith (VEC (ce_s, heap) *lhsc, tree expr)
3285 tree op0, op1;
3286 struct constraint_expr *c, *c2;
3287 unsigned int i = 0;
3288 unsigned int j = 0;
3289 VEC (ce_s, heap) *temp = NULL;
3290 unsigned int rhsoffset = 0;
3292 if (TREE_CODE (expr) != PLUS_EXPR
3293 && TREE_CODE (expr) != MINUS_EXPR)
3294 return false;
3296 op0 = TREE_OPERAND (expr, 0);
3297 op1 = TREE_OPERAND (expr, 1);
3299 get_constraint_for (op0, &temp);
3300 if (POINTER_TYPE_P (TREE_TYPE (op0))
3301 && TREE_CODE (op1) == INTEGER_CST
3302 && TREE_CODE (expr) == PLUS_EXPR)
3304 rhsoffset = TREE_INT_CST_LOW (op1) * BITS_PER_UNIT;
3308 for (i = 0; VEC_iterate (ce_s, lhsc, i, c); i++)
3309 for (j = 0; VEC_iterate (ce_s, temp, j, c2); j++)
3311 if (c2->type == ADDRESSOF && rhsoffset != 0)
3313 varinfo_t temp = get_varinfo (c2->var);
3315 /* An access one after the end of an array is valid,
3316 so simply punt on accesses we cannot resolve. */
3317 temp = first_vi_for_offset (temp, rhsoffset);
3318 if (temp == NULL)
3319 continue;
3320 c2->var = temp->id;
3321 c2->offset = 0;
3323 else
3324 c2->offset = rhsoffset;
3325 process_constraint (new_constraint (*c, *c2));
3328 VEC_free (ce_s, heap, temp);
3330 return true;
3334 /* Walk statement T setting up aliasing constraints according to the
3335 references found in T. This function is the main part of the
3336 constraint builder. AI points to auxiliary alias information used
3337 when building alias sets and computing alias grouping heuristics. */
3339 static void
3340 find_func_aliases (tree origt)
3342 tree t = origt;
3343 VEC(ce_s, heap) *lhsc = NULL;
3344 VEC(ce_s, heap) *rhsc = NULL;
3345 struct constraint_expr *c;
3347 if (TREE_CODE (t) == RETURN_EXPR && TREE_OPERAND (t, 0))
3348 t = TREE_OPERAND (t, 0);
3350 /* Now build constraints expressions. */
3351 if (TREE_CODE (t) == PHI_NODE)
3353 gcc_assert (!AGGREGATE_TYPE_P (TREE_TYPE (PHI_RESULT (t))));
3355 /* Only care about pointers and structures containing
3356 pointers. */
3357 if (could_have_pointers (PHI_RESULT (t)))
3359 int i;
3360 unsigned int j;
3362 /* For a phi node, assign all the arguments to
3363 the result. */
3364 get_constraint_for (PHI_RESULT (t), &lhsc);
3365 for (i = 0; i < PHI_NUM_ARGS (t); i++)
3367 tree rhstype;
3368 tree strippedrhs = PHI_ARG_DEF (t, i);
3370 STRIP_NOPS (strippedrhs);
3371 rhstype = TREE_TYPE (strippedrhs);
3372 get_constraint_for (PHI_ARG_DEF (t, i), &rhsc);
3374 for (j = 0; VEC_iterate (ce_s, lhsc, j, c); j++)
3376 struct constraint_expr *c2;
3377 while (VEC_length (ce_s, rhsc) > 0)
3379 c2 = VEC_last (ce_s, rhsc);
3380 process_constraint (new_constraint (*c, *c2));
3381 VEC_pop (ce_s, rhsc);
3387 /* In IPA mode, we need to generate constraints to pass call
3388 arguments through their calls. There are two case, either a
3389 modify_expr when we are returning a value, or just a plain
3390 call_expr when we are not. */
3391 else if (in_ipa_mode
3392 && ((TREE_CODE (t) == MODIFY_EXPR
3393 && TREE_CODE (TREE_OPERAND (t, 1)) == CALL_EXPR
3394 && !(call_expr_flags (TREE_OPERAND (t, 1))
3395 & (ECF_MALLOC | ECF_MAY_BE_ALLOCA)))
3396 || (TREE_CODE (t) == CALL_EXPR
3397 && !(call_expr_flags (t)
3398 & (ECF_MALLOC | ECF_MAY_BE_ALLOCA)))))
3400 tree lhsop;
3401 tree rhsop;
3402 unsigned int varid;
3403 tree arglist;
3404 varinfo_t fi;
3405 int i = 1;
3406 tree decl;
3407 if (TREE_CODE (t) == MODIFY_EXPR)
3409 lhsop = TREE_OPERAND (t, 0);
3410 rhsop = TREE_OPERAND (t, 1);
3412 else
3414 lhsop = NULL;
3415 rhsop = t;
3417 decl = get_callee_fndecl (rhsop);
3419 /* If we can directly resolve the function being called, do so.
3420 Otherwise, it must be some sort of indirect expression that
3421 we should still be able to handle. */
3422 if (decl)
3424 varid = get_id_for_tree (decl);
3426 else
3428 decl = TREE_OPERAND (rhsop, 0);
3429 varid = get_id_for_tree (decl);
3432 /* Assign all the passed arguments to the appropriate incoming
3433 parameters of the function. */
3434 fi = get_varinfo (varid);
3435 arglist = TREE_OPERAND (rhsop, 1);
3437 for (;arglist; arglist = TREE_CHAIN (arglist))
3439 tree arg = TREE_VALUE (arglist);
3440 struct constraint_expr lhs ;
3441 struct constraint_expr *rhsp;
3443 get_constraint_for (arg, &rhsc);
3444 if (TREE_CODE (decl) != FUNCTION_DECL)
3446 lhs.type = DEREF;
3447 lhs.var = fi->id;
3448 lhs.offset = i;
3450 else
3452 lhs.type = SCALAR;
3453 lhs.var = first_vi_for_offset (fi, i)->id;
3454 lhs.offset = 0;
3456 while (VEC_length (ce_s, rhsc) != 0)
3458 rhsp = VEC_last (ce_s, rhsc);
3459 process_constraint (new_constraint (lhs, *rhsp));
3460 VEC_pop (ce_s, rhsc);
3462 i++;
3464 /* If we are returning a value, assign it to the result. */
3465 if (lhsop)
3467 struct constraint_expr rhs;
3468 struct constraint_expr *lhsp;
3469 unsigned int j = 0;
3471 get_constraint_for (lhsop, &lhsc);
3472 if (TREE_CODE (decl) != FUNCTION_DECL)
3474 rhs.type = DEREF;
3475 rhs.var = fi->id;
3476 rhs.offset = i;
3478 else
3480 rhs.type = SCALAR;
3481 rhs.var = first_vi_for_offset (fi, i)->id;
3482 rhs.offset = 0;
3484 for (j = 0; VEC_iterate (ce_s, lhsc, j, lhsp); j++)
3485 process_constraint (new_constraint (*lhsp, rhs));
3488 /* Otherwise, just a regular assignment statement. */
3489 else if (TREE_CODE (t) == MODIFY_EXPR)
3491 tree lhsop = TREE_OPERAND (t, 0);
3492 tree rhsop = TREE_OPERAND (t, 1);
3493 int i;
3495 if ((AGGREGATE_TYPE_P (TREE_TYPE (lhsop))
3496 || TREE_CODE (TREE_TYPE (lhsop)) == COMPLEX_TYPE)
3497 && (AGGREGATE_TYPE_P (TREE_TYPE (rhsop))
3498 || TREE_CODE (TREE_TYPE (lhsop)) == COMPLEX_TYPE))
3500 do_structure_copy (lhsop, rhsop);
3502 else
3504 /* Only care about operations with pointers, structures
3505 containing pointers, dereferences, and call expressions. */
3506 if (could_have_pointers (lhsop)
3507 || TREE_CODE (rhsop) == CALL_EXPR)
3509 get_constraint_for (lhsop, &lhsc);
3510 switch (TREE_CODE_CLASS (TREE_CODE (rhsop)))
3512 /* RHS that consist of unary operations,
3513 exceptional types, or bare decls/constants, get
3514 handled directly by get_constraint_for. */
3515 case tcc_reference:
3516 case tcc_declaration:
3517 case tcc_constant:
3518 case tcc_exceptional:
3519 case tcc_expression:
3520 case tcc_unary:
3522 unsigned int j;
3524 get_constraint_for (rhsop, &rhsc);
3525 for (j = 0; VEC_iterate (ce_s, lhsc, j, c); j++)
3527 struct constraint_expr *c2;
3528 unsigned int k;
3530 for (k = 0; VEC_iterate (ce_s, rhsc, k, c2); k++)
3531 process_constraint (new_constraint (*c, *c2));
3535 break;
3537 case tcc_binary:
3539 /* For pointer arithmetic of the form
3540 PTR + CST, we can simply use PTR's
3541 constraint because pointer arithmetic is
3542 not allowed to go out of bounds. */
3543 if (handle_ptr_arith (lhsc, rhsop))
3544 break;
3546 /* FALLTHRU */
3548 /* Otherwise, walk each operand. Notice that we
3549 can't use the operand interface because we need
3550 to process expressions other than simple operands
3551 (e.g. INDIRECT_REF, ADDR_EXPR, CALL_EXPR). */
3552 default:
3553 for (i = 0; i < TREE_CODE_LENGTH (TREE_CODE (rhsop)); i++)
3555 tree op = TREE_OPERAND (rhsop, i);
3556 unsigned int j;
3558 gcc_assert (VEC_length (ce_s, rhsc) == 0);
3559 get_constraint_for (op, &rhsc);
3560 for (j = 0; VEC_iterate (ce_s, lhsc, j, c); j++)
3562 struct constraint_expr *c2;
3563 while (VEC_length (ce_s, rhsc) > 0)
3565 c2 = VEC_last (ce_s, rhsc);
3566 process_constraint (new_constraint (*c, *c2));
3567 VEC_pop (ce_s, rhsc);
3576 /* After promoting variables and computing aliasing we will
3577 need to re-scan most statements. FIXME: Try to minimize the
3578 number of statements re-scanned. It's not really necessary to
3579 re-scan *all* statements. */
3580 mark_stmt_modified (origt);
3581 VEC_free (ce_s, heap, rhsc);
3582 VEC_free (ce_s, heap, lhsc);
3586 /* Find the first varinfo in the same variable as START that overlaps with
3587 OFFSET.
3588 Effectively, walk the chain of fields for the variable START to find the
3589 first field that overlaps with OFFSET.
3590 Return NULL if we can't find one. */
3592 static varinfo_t
3593 first_vi_for_offset (varinfo_t start, unsigned HOST_WIDE_INT offset)
3595 varinfo_t curr = start;
3596 while (curr)
3598 /* We may not find a variable in the field list with the actual
3599 offset when when we have glommed a structure to a variable.
3600 In that case, however, offset should still be within the size
3601 of the variable. */
3602 if (offset >= curr->offset && offset < (curr->offset + curr->size))
3603 return curr;
3604 curr = curr->next;
3606 return NULL;
3610 /* Insert the varinfo FIELD into the field list for BASE, at the front
3611 of the list. */
3613 static void
3614 insert_into_field_list (varinfo_t base, varinfo_t field)
3616 varinfo_t prev = base;
3617 varinfo_t curr = base->next;
3619 field->next = curr;
3620 prev->next = field;
3623 /* Insert the varinfo FIELD into the field list for BASE, ordered by
3624 offset. */
3626 static void
3627 insert_into_field_list_sorted (varinfo_t base, varinfo_t field)
3629 varinfo_t prev = base;
3630 varinfo_t curr = base->next;
3632 if (curr == NULL)
3634 prev->next = field;
3635 field->next = NULL;
3637 else
3639 while (curr)
3641 if (field->offset <= curr->offset)
3642 break;
3643 prev = curr;
3644 curr = curr->next;
3646 field->next = prev->next;
3647 prev->next = field;
3651 /* qsort comparison function for two fieldoff's PA and PB */
3653 static int
3654 fieldoff_compare (const void *pa, const void *pb)
3656 const fieldoff_s *foa = (const fieldoff_s *)pa;
3657 const fieldoff_s *fob = (const fieldoff_s *)pb;
3658 HOST_WIDE_INT foasize, fobsize;
3660 if (foa->offset != fob->offset)
3661 return foa->offset - fob->offset;
3663 foasize = TREE_INT_CST_LOW (foa->size);
3664 fobsize = TREE_INT_CST_LOW (fob->size);
3665 return foasize - fobsize;
3668 /* Sort a fieldstack according to the field offset and sizes. */
3669 void
3670 sort_fieldstack (VEC(fieldoff_s,heap) *fieldstack)
3672 qsort (VEC_address (fieldoff_s, fieldstack),
3673 VEC_length (fieldoff_s, fieldstack),
3674 sizeof (fieldoff_s),
3675 fieldoff_compare);
3678 /* Given a TYPE, and a vector of field offsets FIELDSTACK, push all the fields
3679 of TYPE onto fieldstack, recording their offsets along the way.
3680 OFFSET is used to keep track of the offset in this entire structure, rather
3681 than just the immediately containing structure. Returns the number
3682 of fields pushed.
3683 HAS_UNION is set to true if we find a union type as a field of
3684 TYPE. */
3687 push_fields_onto_fieldstack (tree type, VEC(fieldoff_s,heap) **fieldstack,
3688 HOST_WIDE_INT offset, bool *has_union)
3690 tree field;
3691 int count = 0;
3693 if (TREE_CODE (type) == COMPLEX_TYPE)
3695 fieldoff_s *real_part, *img_part;
3696 real_part = VEC_safe_push (fieldoff_s, heap, *fieldstack, NULL);
3697 real_part->type = TREE_TYPE (type);
3698 real_part->size = TYPE_SIZE (TREE_TYPE (type));
3699 real_part->offset = offset;
3700 real_part->decl = NULL_TREE;
3702 img_part = VEC_safe_push (fieldoff_s, heap, *fieldstack, NULL);
3703 img_part->type = TREE_TYPE (type);
3704 img_part->size = TYPE_SIZE (TREE_TYPE (type));
3705 img_part->offset = offset + TREE_INT_CST_LOW (TYPE_SIZE (TREE_TYPE (type)));
3706 img_part->decl = NULL_TREE;
3708 return 2;
3711 if (TREE_CODE (type) == ARRAY_TYPE)
3713 tree sz = TYPE_SIZE (type);
3714 tree elsz = TYPE_SIZE (TREE_TYPE (type));
3715 HOST_WIDE_INT nr;
3716 int i;
3718 if (! sz
3719 || ! host_integerp (sz, 1)
3720 || TREE_INT_CST_LOW (sz) == 0
3721 || ! elsz
3722 || ! host_integerp (elsz, 1)
3723 || TREE_INT_CST_LOW (elsz) == 0)
3724 return 0;
3726 nr = TREE_INT_CST_LOW (sz) / TREE_INT_CST_LOW (elsz);
3727 if (nr > SALIAS_MAX_ARRAY_ELEMENTS)
3728 return 0;
3730 for (i = 0; i < nr; ++i)
3732 bool push = false;
3733 int pushed = 0;
3735 if (has_union
3736 && (TREE_CODE (TREE_TYPE (type)) == QUAL_UNION_TYPE
3737 || TREE_CODE (TREE_TYPE (type)) == UNION_TYPE))
3738 *has_union = true;
3740 if (!AGGREGATE_TYPE_P (TREE_TYPE (type))) /* var_can_have_subvars */
3741 push = true;
3742 else if (!(pushed = push_fields_onto_fieldstack
3743 (TREE_TYPE (type), fieldstack,
3744 offset + i * TREE_INT_CST_LOW (elsz), has_union)))
3745 /* Empty structures may have actual size, like in C++. So
3746 see if we didn't push any subfields and the size is
3747 nonzero, push the field onto the stack */
3748 push = true;
3750 if (push)
3752 fieldoff_s *pair;
3754 pair = VEC_safe_push (fieldoff_s, heap, *fieldstack, NULL);
3755 pair->type = TREE_TYPE (type);
3756 pair->size = elsz;
3757 pair->decl = NULL_TREE;
3758 pair->offset = offset + i * TREE_INT_CST_LOW (elsz);
3759 count++;
3761 else
3762 count += pushed;
3765 return count;
3768 for (field = TYPE_FIELDS (type); field; field = TREE_CHAIN (field))
3769 if (TREE_CODE (field) == FIELD_DECL)
3771 bool push = false;
3772 int pushed = 0;
3774 if (has_union
3775 && (TREE_CODE (TREE_TYPE (field)) == QUAL_UNION_TYPE
3776 || TREE_CODE (TREE_TYPE (field)) == UNION_TYPE))
3777 *has_union = true;
3779 if (!var_can_have_subvars (field))
3780 push = true;
3781 else if (!(pushed = push_fields_onto_fieldstack
3782 (TREE_TYPE (field), fieldstack,
3783 offset + bitpos_of_field (field), has_union))
3784 && DECL_SIZE (field)
3785 && !integer_zerop (DECL_SIZE (field)))
3786 /* Empty structures may have actual size, like in C++. So
3787 see if we didn't push any subfields and the size is
3788 nonzero, push the field onto the stack */
3789 push = true;
3791 if (push)
3793 fieldoff_s *pair;
3795 pair = VEC_safe_push (fieldoff_s, heap, *fieldstack, NULL);
3796 pair->type = TREE_TYPE (field);
3797 pair->size = DECL_SIZE (field);
3798 pair->decl = field;
3799 pair->offset = offset + bitpos_of_field (field);
3800 count++;
3802 else
3803 count += pushed;
3806 return count;
3809 /* Create a constraint from ESCAPED_VARS variable to VI. */
3810 static void
3811 make_constraint_from_escaped (varinfo_t vi)
3813 struct constraint_expr lhs, rhs;
3815 lhs.var = vi->id;
3816 lhs.offset = 0;
3817 lhs.type = SCALAR;
3819 rhs.var = escaped_vars_id;
3820 rhs.offset = 0;
3821 rhs.type = SCALAR;
3822 process_constraint (new_constraint (lhs, rhs));
3825 /* Create a constraint to the ESCAPED_VARS variable from constraint
3826 expression RHS. */
3828 static void
3829 make_constraint_to_escaped (struct constraint_expr rhs)
3831 struct constraint_expr lhs;
3833 lhs.var = escaped_vars_id;
3834 lhs.offset = 0;
3835 lhs.type = SCALAR;
3837 process_constraint (new_constraint (lhs, rhs));
3840 /* Count the number of arguments DECL has, and set IS_VARARGS to true
3841 if it is a varargs function. */
3843 static unsigned int
3844 count_num_arguments (tree decl, bool *is_varargs)
3846 unsigned int i = 0;
3847 tree t;
3849 for (t = TYPE_ARG_TYPES (TREE_TYPE (decl));
3851 t = TREE_CHAIN (t))
3853 if (TREE_VALUE (t) == void_type_node)
3854 break;
3855 i++;
3858 if (!t)
3859 *is_varargs = true;
3860 return i;
3863 /* Creation function node for DECL, using NAME, and return the index
3864 of the variable we've created for the function. */
3866 static unsigned int
3867 create_function_info_for (tree decl, const char *name)
3869 unsigned int index = VEC_length (varinfo_t, varmap);
3870 varinfo_t vi;
3871 tree arg;
3872 unsigned int i;
3873 bool is_varargs = false;
3875 /* Create the variable info. */
3877 vi = new_var_info (decl, index, name, index);
3878 vi->decl = decl;
3879 vi->offset = 0;
3880 vi->has_union = 0;
3881 vi->size = 1;
3882 vi->fullsize = count_num_arguments (decl, &is_varargs) + 1;
3883 insert_id_for_tree (vi->decl, index);
3884 VEC_safe_push (varinfo_t, heap, varmap, vi);
3886 stats.total_vars++;
3888 /* If it's varargs, we don't know how many arguments it has, so we
3889 can't do much.
3891 if (is_varargs)
3893 vi->fullsize = ~0;
3894 vi->size = ~0;
3895 vi->is_unknown_size_var = true;
3896 return index;
3900 arg = DECL_ARGUMENTS (decl);
3902 /* Set up variables for each argument. */
3903 for (i = 1; i < vi->fullsize; i++)
3905 varinfo_t argvi;
3906 const char *newname;
3907 char *tempname;
3908 unsigned int newindex;
3909 tree argdecl = decl;
3911 if (arg)
3912 argdecl = arg;
3914 newindex = VEC_length (varinfo_t, varmap);
3915 asprintf (&tempname, "%s.arg%d", name, i-1);
3916 newname = ggc_strdup (tempname);
3917 free (tempname);
3919 argvi = new_var_info (argdecl, newindex,newname, newindex);
3920 argvi->decl = argdecl;
3921 VEC_safe_push (varinfo_t, heap, varmap, argvi);
3922 argvi->offset = i;
3923 argvi->size = 1;
3924 argvi->fullsize = vi->fullsize;
3925 argvi->has_union = false;
3926 insert_into_field_list_sorted (vi, argvi);
3927 stats.total_vars ++;
3928 if (arg)
3930 insert_id_for_tree (arg, newindex);
3931 arg = TREE_CHAIN (arg);
3935 /* Create a variable for the return var. */
3936 if (DECL_RESULT (decl) != NULL
3937 || !VOID_TYPE_P (TREE_TYPE (TREE_TYPE (decl))))
3939 varinfo_t resultvi;
3940 const char *newname;
3941 char *tempname;
3942 unsigned int newindex;
3943 tree resultdecl = decl;
3945 vi->fullsize ++;
3947 if (DECL_RESULT (decl))
3948 resultdecl = DECL_RESULT (decl);
3950 newindex = VEC_length (varinfo_t, varmap);
3951 asprintf (&tempname, "%s.result", name);
3952 newname = ggc_strdup (tempname);
3953 free (tempname);
3955 resultvi = new_var_info (resultdecl, newindex, newname, newindex);
3956 resultvi->decl = resultdecl;
3957 VEC_safe_push (varinfo_t, heap, varmap, resultvi);
3958 resultvi->offset = i;
3959 resultvi->size = 1;
3960 resultvi->fullsize = vi->fullsize;
3961 resultvi->has_union = false;
3962 insert_into_field_list_sorted (vi, resultvi);
3963 stats.total_vars ++;
3964 if (DECL_RESULT (decl))
3965 insert_id_for_tree (DECL_RESULT (decl), newindex);
3967 return index;
3971 /* Return true if FIELDSTACK contains fields that overlap.
3972 FIELDSTACK is assumed to be sorted by offset. */
3974 static bool
3975 check_for_overlaps (VEC (fieldoff_s,heap) *fieldstack)
3977 fieldoff_s *fo = NULL;
3978 unsigned int i;
3979 HOST_WIDE_INT lastoffset = -1;
3981 for (i = 0; VEC_iterate (fieldoff_s, fieldstack, i, fo); i++)
3983 if (fo->offset == lastoffset)
3984 return true;
3985 lastoffset = fo->offset;
3987 return false;
3990 /* This function is called through walk_tree to walk global
3991 initializers looking for constraints we need to add to the
3992 constraint list. */
3994 static tree
3995 find_global_initializers (tree *tp, int *walk_subtrees ATTRIBUTE_UNUSED,
3996 void *viv)
3998 varinfo_t vi = (varinfo_t)viv;
3999 tree t = *tp;
4001 switch (TREE_CODE (t))
4003 /* Dereferences and addressofs are the only important things
4004 here, and i don't even remember if dereferences are legal
4005 here in initializers. */
4006 case INDIRECT_REF:
4007 case ADDR_EXPR:
4009 struct constraint_expr *c;
4010 size_t i;
4012 VEC(ce_s, heap) *rhsc = NULL;
4013 get_constraint_for (t, &rhsc);
4014 for (i = 0; VEC_iterate (ce_s, rhsc, i, c); i++)
4016 struct constraint_expr lhs;
4018 lhs.var = vi->id;
4019 lhs.type = SCALAR;
4020 lhs.offset = 0;
4021 process_constraint (new_constraint (lhs, *c));
4024 VEC_free (ce_s, heap, rhsc);
4026 break;
4027 case VAR_DECL:
4028 /* We might not have walked this because we skip
4029 DECL_EXTERNALs during the initial scan. */
4030 if (referenced_vars)
4032 get_var_ann (t);
4033 if (referenced_var_check_and_insert (t))
4034 mark_sym_for_renaming (t);
4036 break;
4037 default:
4038 break;
4040 return NULL_TREE;
4043 /* Create a varinfo structure for NAME and DECL, and add it to VARMAP.
4044 This will also create any varinfo structures necessary for fields
4045 of DECL. */
4047 static unsigned int
4048 create_variable_info_for (tree decl, const char *name)
4050 unsigned int index = VEC_length (varinfo_t, varmap);
4051 varinfo_t vi;
4052 tree decltype = TREE_TYPE (decl);
4053 tree declsize = DECL_P (decl) ? DECL_SIZE (decl) : TYPE_SIZE (decltype);
4054 bool notokay = false;
4055 bool hasunion;
4056 bool is_global = DECL_P (decl) ? is_global_var (decl) : false;
4057 VEC (fieldoff_s,heap) *fieldstack = NULL;
4059 if (TREE_CODE (decl) == FUNCTION_DECL && in_ipa_mode)
4060 return create_function_info_for (decl, name);
4062 hasunion = TREE_CODE (decltype) == UNION_TYPE
4063 || TREE_CODE (decltype) == QUAL_UNION_TYPE;
4064 if (var_can_have_subvars (decl) && use_field_sensitive && !hasunion)
4066 push_fields_onto_fieldstack (decltype, &fieldstack, 0, &hasunion);
4067 if (hasunion)
4069 VEC_free (fieldoff_s, heap, fieldstack);
4070 notokay = true;
4075 /* If the variable doesn't have subvars, we may end up needing to
4076 sort the field list and create fake variables for all the
4077 fields. */
4078 vi = new_var_info (decl, index, name, index);
4079 vi->decl = decl;
4080 vi->offset = 0;
4081 vi->has_union = hasunion;
4082 if (!declsize
4083 || TREE_CODE (declsize) != INTEGER_CST
4084 || TREE_CODE (decltype) == UNION_TYPE
4085 || TREE_CODE (decltype) == QUAL_UNION_TYPE)
4087 vi->is_unknown_size_var = true;
4088 vi->fullsize = ~0;
4089 vi->size = ~0;
4091 else
4093 vi->fullsize = TREE_INT_CST_LOW (declsize);
4094 vi->size = vi->fullsize;
4097 insert_id_for_tree (vi->decl, index);
4098 VEC_safe_push (varinfo_t, heap, varmap, vi);
4099 if (is_global && (!flag_whole_program || !in_ipa_mode))
4101 make_constraint_from_escaped (vi);
4103 /* If the variable can't be aliased, there is no point in
4104 putting it in the set of nonlocal vars. */
4105 if (may_be_aliased (vi->decl))
4107 struct constraint_expr rhs;
4108 rhs.var = index;
4109 rhs.type = ADDRESSOF;
4110 rhs.offset = 0;
4111 make_constraint_to_escaped (rhs);
4114 if (TREE_CODE (decl) != FUNCTION_DECL && DECL_INITIAL (decl))
4116 walk_tree_without_duplicates (&DECL_INITIAL (decl),
4117 find_global_initializers,
4118 (void *)vi);
4122 stats.total_vars++;
4123 if (use_field_sensitive
4124 && !notokay
4125 && !vi->is_unknown_size_var
4126 && var_can_have_subvars (decl)
4127 && VEC_length (fieldoff_s, fieldstack) <= MAX_FIELDS_FOR_FIELD_SENSITIVE)
4129 unsigned int newindex = VEC_length (varinfo_t, varmap);
4130 fieldoff_s *fo = NULL;
4131 unsigned int i;
4133 for (i = 0; !notokay && VEC_iterate (fieldoff_s, fieldstack, i, fo); i++)
4135 if (! fo->size
4136 || TREE_CODE (fo->size) != INTEGER_CST
4137 || fo->offset < 0)
4139 notokay = true;
4140 break;
4144 /* We can't sort them if we have a field with a variable sized type,
4145 which will make notokay = true. In that case, we are going to return
4146 without creating varinfos for the fields anyway, so sorting them is a
4147 waste to boot. */
4148 if (!notokay)
4150 sort_fieldstack (fieldstack);
4151 /* Due to some C++ FE issues, like PR 22488, we might end up
4152 what appear to be overlapping fields even though they,
4153 in reality, do not overlap. Until the C++ FE is fixed,
4154 we will simply disable field-sensitivity for these cases. */
4155 notokay = check_for_overlaps (fieldstack);
4159 if (VEC_length (fieldoff_s, fieldstack) != 0)
4160 fo = VEC_index (fieldoff_s, fieldstack, 0);
4162 if (fo == NULL || notokay)
4164 vi->is_unknown_size_var = 1;
4165 vi->fullsize = ~0;
4166 vi->size = ~0;
4167 VEC_free (fieldoff_s, heap, fieldstack);
4168 return index;
4171 vi->size = TREE_INT_CST_LOW (fo->size);
4172 vi->offset = fo->offset;
4173 for (i = VEC_length (fieldoff_s, fieldstack) - 1;
4174 i >= 1 && VEC_iterate (fieldoff_s, fieldstack, i, fo);
4175 i--)
4177 varinfo_t newvi;
4178 const char *newname = "NULL";
4179 char *tempname;
4181 newindex = VEC_length (varinfo_t, varmap);
4182 if (dump_file)
4184 if (fo->decl)
4185 asprintf (&tempname, "%s.%s",
4186 vi->name, alias_get_name (fo->decl));
4187 else
4188 asprintf (&tempname, "%s." HOST_WIDE_INT_PRINT_DEC,
4189 vi->name, fo->offset);
4190 newname = ggc_strdup (tempname);
4191 free (tempname);
4193 newvi = new_var_info (decl, newindex, newname, newindex);
4194 newvi->offset = fo->offset;
4195 newvi->size = TREE_INT_CST_LOW (fo->size);
4196 newvi->fullsize = vi->fullsize;
4197 insert_into_field_list (vi, newvi);
4198 VEC_safe_push (varinfo_t, heap, varmap, newvi);
4199 if (is_global && (!flag_whole_program || !in_ipa_mode))
4201 /* If the variable can't be aliased, there is no point in
4202 putting it in the set of nonlocal vars. */
4203 if (may_be_aliased (vi->decl))
4205 struct constraint_expr rhs;
4207 rhs.var = newindex;
4208 rhs.type = ADDRESSOF;
4209 rhs.offset = 0;
4210 make_constraint_to_escaped (rhs);
4212 make_constraint_from_escaped (newvi);
4215 stats.total_vars++;
4217 VEC_free (fieldoff_s, heap, fieldstack);
4219 return index;
4222 /* Print out the points-to solution for VAR to FILE. */
4224 void
4225 dump_solution_for_var (FILE *file, unsigned int var)
4227 varinfo_t vi = get_varinfo (var);
4228 unsigned int i;
4229 bitmap_iterator bi;
4231 fprintf (file, "%s = { ", vi->name);
4232 EXECUTE_IF_SET_IN_BITMAP (get_varinfo (vi->node)->solution, 0, i, bi)
4234 fprintf (file, "%s ", get_varinfo (i)->name);
4236 fprintf (file, "}\n");
4239 /* Print the points-to solution for VAR to stdout. */
4241 void
4242 debug_solution_for_var (unsigned int var)
4244 dump_solution_for_var (stdout, var);
4247 /* Create varinfo structures for all of the variables in the
4248 function for intraprocedural mode. */
4250 static void
4251 intra_create_variable_infos (void)
4253 tree t;
4254 struct constraint_expr lhs, rhs;
4255 varinfo_t nonlocal_vi;
4257 /* For each incoming pointer argument arg, ARG = ESCAPED_VARS or a
4258 dummy variable if flag_argument_noalias > 2. */
4259 for (t = DECL_ARGUMENTS (current_function_decl); t; t = TREE_CHAIN (t))
4261 varinfo_t p;
4262 unsigned int arg_id;
4264 if (!could_have_pointers (t))
4265 continue;
4267 arg_id = get_id_for_tree (t);
4269 /* With flag_argument_noalias greater than two means that the incoming
4270 argument cannot alias anything except for itself so create a HEAP
4271 variable. */
4272 if (POINTER_TYPE_P (TREE_TYPE (t))
4273 && flag_argument_noalias > 2)
4275 varinfo_t vi;
4276 tree heapvar = heapvar_lookup (t);
4277 unsigned int id;
4279 lhs.offset = 0;
4280 lhs.type = SCALAR;
4281 lhs.var = get_id_for_tree (t);
4283 if (heapvar == NULL_TREE)
4285 heapvar = create_tmp_var_raw (TREE_TYPE (TREE_TYPE (t)),
4286 "PARM_NOALIAS");
4287 DECL_EXTERNAL (heapvar) = 1;
4288 if (referenced_vars)
4289 add_referenced_var (heapvar);
4290 heapvar_insert (t, heapvar);
4292 id = get_id_for_tree (heapvar);
4293 vi = get_varinfo (id);
4294 vi->is_artificial_var = 1;
4295 vi->is_heap_var = 1;
4296 rhs.var = id;
4297 rhs.type = ADDRESSOF;
4298 rhs.offset = 0;
4299 for (p = get_varinfo (lhs.var); p; p = p->next)
4301 struct constraint_expr temp = lhs;
4302 temp.var = p->id;
4303 process_constraint (new_constraint (temp, rhs));
4306 else
4308 for (p = get_varinfo (arg_id); p; p = p->next)
4309 make_constraint_from_escaped (p);
4312 if (!nonlocal_all)
4313 nonlocal_all = create_nonlocal_var (void_type_node);
4315 /* Create variable info for the nonlocal var if it does not
4316 exist. */
4317 nonlocal_vars_id = create_variable_info_for (nonlocal_all,
4318 get_name (nonlocal_all));
4319 nonlocal_vi = get_varinfo (nonlocal_vars_id);
4320 nonlocal_vi->is_artificial_var = 1;
4321 nonlocal_vi->is_heap_var = 1;
4322 nonlocal_vi->is_unknown_size_var = 1;
4323 nonlocal_vi->directly_dereferenced = true;
4325 rhs.var = nonlocal_vars_id;
4326 rhs.type = ADDRESSOF;
4327 rhs.offset = 0;
4329 lhs.var = escaped_vars_id;
4330 lhs.type = SCALAR;
4331 lhs.offset = 0;
4333 process_constraint (new_constraint (lhs, rhs));
4336 /* Set bits in INTO corresponding to the variable uids in solution set
4337 FROM, which came from variable PTR.
4338 For variables that are actually dereferenced, we also use type
4339 based alias analysis to prune the points-to sets. */
4341 static void
4342 set_uids_in_ptset (tree ptr, bitmap into, bitmap from)
4344 unsigned int i;
4345 bitmap_iterator bi;
4346 subvar_t sv;
4347 unsigned HOST_WIDE_INT ptr_alias_set = get_alias_set (TREE_TYPE (ptr));
4349 EXECUTE_IF_SET_IN_BITMAP (from, 0, i, bi)
4351 varinfo_t vi = get_varinfo (i);
4352 unsigned HOST_WIDE_INT var_alias_set;
4354 /* The only artificial variables that are allowed in a may-alias
4355 set are heap variables. */
4356 if (vi->is_artificial_var && !vi->is_heap_var)
4357 continue;
4359 if (vi->has_union && get_subvars_for_var (vi->decl) != NULL)
4361 /* Variables containing unions may need to be converted to
4362 their SFT's, because SFT's can have unions and we cannot. */
4363 for (sv = get_subvars_for_var (vi->decl); sv; sv = sv->next)
4364 bitmap_set_bit (into, DECL_UID (sv->var));
4366 else if (TREE_CODE (vi->decl) == VAR_DECL
4367 || TREE_CODE (vi->decl) == PARM_DECL)
4369 if (var_can_have_subvars (vi->decl)
4370 && get_subvars_for_var (vi->decl))
4372 /* If VI->DECL is an aggregate for which we created
4373 SFTs, add the SFT corresponding to VI->OFFSET. */
4374 tree sft = get_subvar_at (vi->decl, vi->offset);
4375 if (sft)
4377 var_alias_set = get_alias_set (sft);
4378 if (!vi->directly_dereferenced
4379 || alias_sets_conflict_p (ptr_alias_set, var_alias_set))
4380 bitmap_set_bit (into, DECL_UID (sft));
4383 else
4385 /* Otherwise, just add VI->DECL to the alias set.
4386 Don't type prune artificial vars. */
4387 if (vi->is_artificial_var)
4388 bitmap_set_bit (into, DECL_UID (vi->decl));
4389 else
4391 var_alias_set = get_alias_set (vi->decl);
4392 if (!vi->directly_dereferenced
4393 || alias_sets_conflict_p (ptr_alias_set, var_alias_set))
4394 bitmap_set_bit (into, DECL_UID (vi->decl));
4402 static bool have_alias_info = false;
4404 /* Given a pointer variable P, fill in its points-to set, or return
4405 false if we can't. */
4407 bool
4408 find_what_p_points_to (tree p)
4410 unsigned int id = 0;
4411 tree lookup_p = p;
4413 if (!have_alias_info)
4414 return false;
4416 /* For parameters, get at the points-to set for the actual parm
4417 decl. */
4418 if (TREE_CODE (p) == SSA_NAME
4419 && TREE_CODE (SSA_NAME_VAR (p)) == PARM_DECL
4420 && default_def (SSA_NAME_VAR (p)) == p)
4421 lookup_p = SSA_NAME_VAR (p);
4423 if (lookup_id_for_tree (lookup_p, &id))
4425 varinfo_t vi = get_varinfo (id);
4427 if (vi->is_artificial_var)
4428 return false;
4430 /* See if this is a field or a structure. */
4431 if (vi->size != vi->fullsize)
4433 /* Nothing currently asks about structure fields directly,
4434 but when they do, we need code here to hand back the
4435 points-to set. */
4436 if (!var_can_have_subvars (vi->decl)
4437 || get_subvars_for_var (vi->decl) == NULL)
4438 return false;
4440 else
4442 struct ptr_info_def *pi = get_ptr_info (p);
4443 unsigned int i;
4444 bitmap_iterator bi;
4446 /* This variable may have been collapsed, let's get the real
4447 variable. */
4448 vi = get_varinfo (vi->node);
4450 /* Translate artificial variables into SSA_NAME_PTR_INFO
4451 attributes. */
4452 EXECUTE_IF_SET_IN_BITMAP (vi->solution, 0, i, bi)
4454 varinfo_t vi = get_varinfo (i);
4456 if (vi->is_artificial_var)
4458 /* FIXME. READONLY should be handled better so that
4459 flow insensitive aliasing can disregard writable
4460 aliases. */
4461 if (vi->id == nothing_id)
4462 pi->pt_null = 1;
4463 else if (vi->id == anything_id)
4464 pi->pt_anything = 1;
4465 else if (vi->id == readonly_id)
4466 pi->pt_anything = 1;
4467 else if (vi->id == integer_id)
4468 pi->pt_anything = 1;
4469 else if (vi->is_heap_var)
4470 pi->pt_global_mem = 1;
4474 if (pi->pt_anything)
4475 return false;
4477 if (!pi->pt_vars)
4478 pi->pt_vars = BITMAP_GGC_ALLOC ();
4480 set_uids_in_ptset (vi->decl, pi->pt_vars, vi->solution);
4482 if (bitmap_empty_p (pi->pt_vars))
4483 pi->pt_vars = NULL;
4485 return true;
4489 return false;
4494 /* Dump points-to information to OUTFILE. */
4496 void
4497 dump_sa_points_to_info (FILE *outfile)
4499 unsigned int i;
4501 fprintf (outfile, "\nPoints-to sets\n\n");
4503 if (dump_flags & TDF_STATS)
4505 fprintf (outfile, "Stats:\n");
4506 fprintf (outfile, "Total vars: %d\n", stats.total_vars);
4507 fprintf (outfile, "Statically unified vars: %d\n",
4508 stats.unified_vars_static);
4509 fprintf (outfile, "Collapsed vars: %d\n", stats.collapsed_vars);
4510 fprintf (outfile, "Dynamically unified vars: %d\n",
4511 stats.unified_vars_dynamic);
4512 fprintf (outfile, "Iterations: %d\n", stats.iterations);
4513 fprintf (outfile, "Number of edges: %d\n", stats.num_edges);
4516 for (i = 0; i < VEC_length (varinfo_t, varmap); i++)
4517 dump_solution_for_var (outfile, i);
4521 /* Debug points-to information to stderr. */
4523 void
4524 debug_sa_points_to_info (void)
4526 dump_sa_points_to_info (stderr);
4530 /* Initialize the always-existing constraint variables for NULL
4531 ANYTHING, READONLY, and INTEGER */
4533 static void
4534 init_base_vars (void)
4536 struct constraint_expr lhs, rhs;
4538 /* Create the NULL variable, used to represent that a variable points
4539 to NULL. */
4540 nothing_tree = create_tmp_var_raw (void_type_node, "NULL");
4541 var_nothing = new_var_info (nothing_tree, 0, "NULL", 0);
4542 insert_id_for_tree (nothing_tree, 0);
4543 var_nothing->is_artificial_var = 1;
4544 var_nothing->offset = 0;
4545 var_nothing->size = ~0;
4546 var_nothing->fullsize = ~0;
4547 var_nothing->is_special_var = 1;
4548 nothing_id = 0;
4549 VEC_safe_push (varinfo_t, heap, varmap, var_nothing);
4551 /* Create the ANYTHING variable, used to represent that a variable
4552 points to some unknown piece of memory. */
4553 anything_tree = create_tmp_var_raw (void_type_node, "ANYTHING");
4554 var_anything = new_var_info (anything_tree, 1, "ANYTHING", 1);
4555 insert_id_for_tree (anything_tree, 1);
4556 var_anything->is_artificial_var = 1;
4557 var_anything->size = ~0;
4558 var_anything->offset = 0;
4559 var_anything->next = NULL;
4560 var_anything->fullsize = ~0;
4561 var_anything->is_special_var = 1;
4562 anything_id = 1;
4564 /* Anything points to anything. This makes deref constraints just
4565 work in the presence of linked list and other p = *p type loops,
4566 by saying that *ANYTHING = ANYTHING. */
4567 VEC_safe_push (varinfo_t, heap, varmap, var_anything);
4568 lhs.type = SCALAR;
4569 lhs.var = anything_id;
4570 lhs.offset = 0;
4571 rhs.type = ADDRESSOF;
4572 rhs.var = anything_id;
4573 rhs.offset = 0;
4574 var_anything->address_taken = true;
4576 /* This specifically does not use process_constraint because
4577 process_constraint ignores all anything = anything constraints, since all
4578 but this one are redundant. */
4579 VEC_safe_push (constraint_t, heap, constraints, new_constraint (lhs, rhs));
4581 /* Create the READONLY variable, used to represent that a variable
4582 points to readonly memory. */
4583 readonly_tree = create_tmp_var_raw (void_type_node, "READONLY");
4584 var_readonly = new_var_info (readonly_tree, 2, "READONLY", 2);
4585 var_readonly->is_artificial_var = 1;
4586 var_readonly->offset = 0;
4587 var_readonly->size = ~0;
4588 var_readonly->fullsize = ~0;
4589 var_readonly->next = NULL;
4590 var_readonly->is_special_var = 1;
4591 insert_id_for_tree (readonly_tree, 2);
4592 readonly_id = 2;
4593 VEC_safe_push (varinfo_t, heap, varmap, var_readonly);
4595 /* readonly memory points to anything, in order to make deref
4596 easier. In reality, it points to anything the particular
4597 readonly variable can point to, but we don't track this
4598 separately. */
4599 lhs.type = SCALAR;
4600 lhs.var = readonly_id;
4601 lhs.offset = 0;
4602 rhs.type = ADDRESSOF;
4603 rhs.var = anything_id;
4604 rhs.offset = 0;
4606 process_constraint (new_constraint (lhs, rhs));
4608 /* Create the INTEGER variable, used to represent that a variable points
4609 to an INTEGER. */
4610 integer_tree = create_tmp_var_raw (void_type_node, "INTEGER");
4611 var_integer = new_var_info (integer_tree, 3, "INTEGER", 3);
4612 insert_id_for_tree (integer_tree, 3);
4613 var_integer->is_artificial_var = 1;
4614 var_integer->size = ~0;
4615 var_integer->fullsize = ~0;
4616 var_integer->offset = 0;
4617 var_integer->next = NULL;
4618 var_integer->is_special_var = 1;
4619 integer_id = 3;
4620 VEC_safe_push (varinfo_t, heap, varmap, var_integer);
4622 /* INTEGER = ANYTHING, because we don't know where a dereference of
4623 a random integer will point to. */
4624 lhs.type = SCALAR;
4625 lhs.var = integer_id;
4626 lhs.offset = 0;
4627 rhs.type = ADDRESSOF;
4628 rhs.var = anything_id;
4629 rhs.offset = 0;
4630 process_constraint (new_constraint (lhs, rhs));
4632 /* Create the ESCAPED_VARS variable used to represent variables that
4633 escape this function. */
4634 escaped_vars_tree = create_tmp_var_raw (void_type_node, "ESCAPED_VARS");
4635 var_escaped_vars = new_var_info (escaped_vars_tree, 4, "ESCAPED_VARS", 4);
4636 insert_id_for_tree (escaped_vars_tree, 4);
4637 var_escaped_vars->is_artificial_var = 1;
4638 var_escaped_vars->size = ~0;
4639 var_escaped_vars->fullsize = ~0;
4640 var_escaped_vars->offset = 0;
4641 var_escaped_vars->next = NULL;
4642 escaped_vars_id = 4;
4643 VEC_safe_push (varinfo_t, heap, varmap, var_escaped_vars);
4645 /* ESCAPED_VARS = *ESCAPED_VARS */
4646 lhs.type = SCALAR;
4647 lhs.var = escaped_vars_id;
4648 lhs.offset = 0;
4649 rhs.type = DEREF;
4650 rhs.var = escaped_vars_id;
4651 rhs.offset = 0;
4652 process_constraint (new_constraint (lhs, rhs));
4656 /* Initialize things necessary to perform PTA */
4658 static void
4659 init_alias_vars (void)
4661 bitmap_obstack_initialize (&ptabitmap_obstack);
4662 bitmap_obstack_initialize (&predbitmap_obstack);
4664 constraint_pool = create_alloc_pool ("Constraint pool",
4665 sizeof (struct constraint), 30);
4666 variable_info_pool = create_alloc_pool ("Variable info pool",
4667 sizeof (struct variable_info), 30);
4668 constraint_edge_pool = create_alloc_pool ("Constraint edges",
4669 sizeof (struct constraint_edge), 30);
4671 constraints = VEC_alloc (constraint_t, heap, 8);
4672 varmap = VEC_alloc (varinfo_t, heap, 8);
4673 id_for_tree = htab_create (10, tree_id_hash, tree_id_eq, free);
4674 memset (&stats, 0, sizeof (stats));
4676 init_base_vars ();
4679 /* Given a statement STMT, generate necessary constraints to
4680 escaped_vars for the escaping variables. */
4682 static void
4683 find_escape_constraints (tree stmt)
4685 enum escape_type stmt_escape_type = is_escape_site (stmt);
4686 tree rhs;
4687 VEC(ce_s, heap) *rhsc = NULL;
4688 struct constraint_expr *c;
4689 size_t i;
4691 if (stmt_escape_type == NO_ESCAPE)
4692 return;
4694 if (TREE_CODE (stmt) == RETURN_EXPR)
4696 /* Returns are either bare, with an embedded MODIFY_EXPR, or
4697 just a plain old expression. */
4698 if (!TREE_OPERAND (stmt, 0))
4699 return;
4700 if (TREE_CODE (TREE_OPERAND (stmt, 0)) == MODIFY_EXPR)
4701 rhs = TREE_OPERAND (TREE_OPERAND (stmt, 0), 1);
4702 else
4703 rhs = TREE_OPERAND (stmt, 0);
4705 get_constraint_for (rhs, &rhsc);
4706 for (i = 0; VEC_iterate (ce_s, rhsc, i, c); i++)
4707 make_constraint_to_escaped (*c);
4708 VEC_free (ce_s, heap, rhsc);
4709 return;
4711 else if (TREE_CODE (stmt) == ASM_EXPR)
4713 /* Whatever the inputs of the ASM are, escape. */
4714 tree arg;
4716 for (arg = ASM_INPUTS (stmt); arg; arg = TREE_CHAIN (arg))
4718 rhsc = NULL;
4719 get_constraint_for (TREE_VALUE (arg), &rhsc);
4720 for (i = 0; VEC_iterate (ce_s, rhsc, i, c); i++)
4721 make_constraint_to_escaped (*c);
4722 VEC_free (ce_s, heap, rhsc);
4724 return;
4726 else if (TREE_CODE (stmt) == CALL_EXPR
4727 || (TREE_CODE (stmt) == MODIFY_EXPR
4728 && TREE_CODE (TREE_OPERAND (stmt, 1)) == CALL_EXPR))
4730 /* Calls cause all of the arguments passed in to escape. */
4731 tree arg;
4733 if (TREE_CODE (stmt) == MODIFY_EXPR)
4734 stmt = TREE_OPERAND (stmt, 1);
4735 for (arg = TREE_OPERAND (stmt, 1); arg; arg = TREE_CHAIN (arg))
4737 if (POINTER_TYPE_P (TREE_TYPE (TREE_VALUE (arg))))
4739 rhsc = NULL;
4740 get_constraint_for (TREE_VALUE (arg), &rhsc);
4741 for (i = 0; VEC_iterate (ce_s, rhsc, i, c); i++)
4742 make_constraint_to_escaped (*c);
4743 VEC_free (ce_s, heap, rhsc);
4746 return;
4748 else
4750 gcc_assert (TREE_CODE (stmt) == MODIFY_EXPR);
4753 gcc_assert (stmt_escape_type == ESCAPE_BAD_CAST
4754 || stmt_escape_type == ESCAPE_STORED_IN_GLOBAL
4755 || stmt_escape_type == ESCAPE_UNKNOWN);
4756 rhs = TREE_OPERAND (stmt, 1);
4758 /* Look through casts for the real escaping variable.
4759 Constants don't really escape, so ignore them.
4760 Otherwise, whatever escapes must be on our RHS. */
4761 if (TREE_CODE (rhs) == NOP_EXPR
4762 || TREE_CODE (rhs) == CONVERT_EXPR
4763 || TREE_CODE (rhs) == NON_LVALUE_EXPR)
4765 get_constraint_for (TREE_OPERAND (rhs, 0), &rhsc);
4767 else if (CONSTANT_CLASS_P (rhs))
4768 return;
4769 else
4771 get_constraint_for (rhs, &rhsc);
4773 for (i = 0; VEC_iterate (ce_s, rhsc, i, c); i++)
4774 make_constraint_to_escaped (*c);
4775 VEC_free (ce_s, heap, rhsc);
4778 /* Create points-to sets for the current function. See the comments
4779 at the start of the file for an algorithmic overview. */
4781 void
4782 compute_points_to_sets (struct alias_info *ai)
4784 basic_block bb;
4786 timevar_push (TV_TREE_PTA);
4788 init_alias_vars ();
4790 intra_create_variable_infos ();
4792 /* Now walk all statements and derive aliases. */
4793 FOR_EACH_BB (bb)
4795 block_stmt_iterator bsi;
4796 tree phi;
4798 for (phi = phi_nodes (bb); phi; phi = TREE_CHAIN (phi))
4800 if (is_gimple_reg (PHI_RESULT (phi)))
4802 find_func_aliases (phi);
4803 /* Update various related attributes like escaped
4804 addresses, pointer dereferences for loads and stores.
4805 This is used when creating name tags and alias
4806 sets. */
4807 update_alias_info (phi, ai);
4811 for (bsi = bsi_start (bb); !bsi_end_p (bsi); bsi_next (&bsi))
4813 tree stmt = bsi_stmt (bsi);
4815 find_func_aliases (stmt);
4816 find_escape_constraints (stmt);
4817 /* Update various related attributes like escaped
4818 addresses, pointer dereferences for loads and stores.
4819 This is used when creating name tags and alias
4820 sets. */
4821 update_alias_info (stmt, ai);
4825 build_constraint_graph ();
4827 if (dump_file)
4829 fprintf (dump_file, "Points-to analysis\n\nConstraints:\n\n");
4830 dump_constraints (dump_file);
4833 if (dump_file)
4834 fprintf (dump_file,
4835 "\nCollapsing static cycles and doing variable "
4836 "substitution:\n");
4838 find_and_collapse_graph_cycles (graph, false);
4839 perform_var_substitution (graph);
4841 if (dump_file)
4842 fprintf (dump_file, "\nSolving graph:\n");
4844 solve_graph (graph);
4846 if (dump_file)
4847 dump_sa_points_to_info (dump_file);
4849 have_alias_info = true;
4851 timevar_pop (TV_TREE_PTA);
4855 /* Delete created points-to sets. */
4857 void
4858 delete_points_to_sets (void)
4860 varinfo_t v;
4861 int i;
4863 htab_delete (id_for_tree);
4864 bitmap_obstack_release (&ptabitmap_obstack);
4865 bitmap_obstack_release (&predbitmap_obstack);
4866 VEC_free (constraint_t, heap, constraints);
4868 for (i = 0; VEC_iterate (varinfo_t, varmap, i, v); i++)
4870 /* Nonlocal vars may add more varinfos. */
4871 if (i >= graph_size)
4872 break;
4874 VEC_free (constraint_edge_t, heap, graph->succs[i]);
4875 VEC_free (constraint_edge_t, heap, graph->preds[i]);
4876 VEC_free (constraint_t, heap, v->complex);
4878 free (graph->zero_weight_preds);
4879 free (graph->zero_weight_succs);
4880 free (graph->succs);
4881 free (graph->preds);
4882 free (graph);
4884 VEC_free (varinfo_t, heap, varmap);
4885 free_alloc_pool (variable_info_pool);
4886 free_alloc_pool (constraint_pool);
4887 free_alloc_pool (constraint_edge_pool);
4889 have_alias_info = false;
4892 /* Return true if we should execute IPA PTA. */
4893 static bool
4894 gate_ipa_pta (void)
4896 return (flag_unit_at_a_time != 0
4897 && flag_ipa_pta
4898 /* Don't bother doing anything if the program has errors. */
4899 && !(errorcount || sorrycount));
4902 /* Execute the driver for IPA PTA. */
4903 static unsigned int
4904 ipa_pta_execute (void)
4906 struct cgraph_node *node;
4907 in_ipa_mode = 1;
4908 init_alias_heapvars ();
4909 init_alias_vars ();
4911 for (node = cgraph_nodes; node; node = node->next)
4913 if (!node->analyzed || cgraph_is_master_clone (node))
4915 unsigned int varid;
4917 varid = create_function_info_for (node->decl,
4918 cgraph_node_name (node));
4919 if (node->local.externally_visible)
4921 varinfo_t fi = get_varinfo (varid);
4922 for (; fi; fi = fi->next)
4923 make_constraint_from_escaped (fi);
4927 for (node = cgraph_nodes; node; node = node->next)
4929 if (node->analyzed && cgraph_is_master_clone (node))
4931 struct function *cfun = DECL_STRUCT_FUNCTION (node->decl);
4932 basic_block bb;
4933 tree old_func_decl = current_function_decl;
4934 if (dump_file)
4935 fprintf (dump_file,
4936 "Generating constraints for %s\n",
4937 cgraph_node_name (node));
4938 push_cfun (cfun);
4939 current_function_decl = node->decl;
4941 FOR_EACH_BB_FN (bb, cfun)
4943 block_stmt_iterator bsi;
4944 tree phi;
4946 for (phi = phi_nodes (bb); phi; phi = TREE_CHAIN (phi))
4948 if (is_gimple_reg (PHI_RESULT (phi)))
4950 find_func_aliases (phi);
4954 for (bsi = bsi_start (bb); !bsi_end_p (bsi); bsi_next (&bsi))
4956 tree stmt = bsi_stmt (bsi);
4957 find_func_aliases (stmt);
4960 current_function_decl = old_func_decl;
4961 pop_cfun ();
4963 else
4965 /* Make point to anything. */
4969 build_constraint_graph ();
4971 if (dump_file)
4973 fprintf (dump_file, "Points-to analysis\n\nConstraints:\n\n");
4974 dump_constraints (dump_file);
4977 if (dump_file)
4978 fprintf (dump_file,
4979 "\nCollapsing static cycles and doing variable "
4980 "substitution:\n");
4982 find_and_collapse_graph_cycles (graph, false);
4983 perform_var_substitution (graph);
4985 if (dump_file)
4986 fprintf (dump_file, "\nSolving graph:\n");
4988 solve_graph (graph);
4990 if (dump_file)
4991 dump_sa_points_to_info (dump_file);
4992 in_ipa_mode = 0;
4993 delete_alias_heapvars ();
4994 delete_points_to_sets ();
4995 return 0;
4998 struct tree_opt_pass pass_ipa_pta =
5000 "pta", /* name */
5001 gate_ipa_pta, /* gate */
5002 ipa_pta_execute, /* execute */
5003 NULL, /* sub */
5004 NULL, /* next */
5005 0, /* static_pass_number */
5006 TV_IPA_PTA, /* tv_id */
5007 0, /* properties_required */
5008 0, /* properties_provided */
5009 0, /* properties_destroyed */
5010 0, /* todo_flags_start */
5011 0, /* todo_flags_finish */
5012 0 /* letter */
5015 /* Initialize the heapvar for statement mapping. */
5016 void
5017 init_alias_heapvars (void)
5019 heapvar_for_stmt = htab_create_ggc (11, tree_map_hash, tree_map_eq,
5020 NULL);
5021 nonlocal_all = NULL_TREE;
5024 void
5025 delete_alias_heapvars (void)
5027 nonlocal_all = NULL_TREE;
5028 htab_delete (heapvar_for_stmt);
5032 #include "gt-tree-ssa-structalias.h"