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 3 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; see the file COPYING3. If not see
19 <http://www.gnu.org/licenses/>. */
23 #include "coretypes.h"
31 #include "hard-reg-set.h"
32 #include "basic-block.h"
35 #include "diagnostic.h"
38 #include "tree-flow.h"
39 #include "tree-inline.h"
42 #include "tree-gimple.h"
46 #include "tree-pass.h"
48 #include "alloc-pool.h"
49 #include "splay-tree.h"
51 #include "tree-ssa-structalias.h"
53 #include "pointer-set.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
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
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 real constraint expressions, DEREF,
76 ADDRESSOF, and SCALAR. Each constraint expression consists
77 of a constraint type, 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
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.
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
117 1. Each constraint variable x has a solution set associated with it,
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
125 and offsets (including offsetted copies).
127 3. All direct constraints of the form P = &Q are processed, such
128 that Q is added to Sol(P)
130 4. All complex constraints for a given constraint variable are stored in a
131 linked list attached to that variable's node.
133 5. A directed graph is built out of the copy constraints. Each
134 constraint variable is a node in the graph, and an edge from
135 Q to P is added for each copy constraint of the form P = Q
137 6. The graph is then walked, and solution sets are
138 propagated along the copy edges, such that an edge from Q to P
139 causes Sol(P) <- Sol(P) union Sol(Q).
141 7. As we visit each node, all complex constraints associated with
142 that node are processed by adding appropriate copy edges to the graph, or the
143 appropriate variables to the solution set.
145 8. The process of walking the graph is iterated until no solution
148 Prior to walking the graph in steps 6 and 7, We perform static
149 cycle elimination on the constraint graph, as well
150 as off-line variable substitution.
152 TODO: Adding offsets to pointer-to-structures can be handled (IE not punted
153 on and turned into anything), but isn't. You can just see what offset
154 inside the pointed-to struct it's going to access.
156 TODO: Constant bounded arrays can be handled as if they were structs of the
157 same number of elements.
159 TODO: Modeling heap and incoming pointers becomes much better if we
160 add fields to them as we discover them, which we could do.
162 TODO: We could handle unions, but to be honest, it's probably not
163 worth the pain or slowdown. */
165 static GTY ((if_marked ("tree_map_marked_p"), param_is (struct tree_map
))) htab_t heapvar_for_stmt
;
167 /* One variable to represent all non-local accesses. */
170 static bool use_field_sensitive
= true;
171 static int in_ipa_mode
= 0;
173 /* Used for predecessor bitmaps. */
174 static bitmap_obstack predbitmap_obstack
;
176 /* Used for points-to sets. */
177 static bitmap_obstack pta_obstack
;
179 /* Used for oldsolution members of variables. */
180 static bitmap_obstack oldpta_obstack
;
182 /* Used for per-solver-iteration bitmaps. */
183 static bitmap_obstack iteration_obstack
;
185 static unsigned int create_variable_info_for (tree
, const char *);
186 typedef struct constraint_graph
*constraint_graph_t
;
187 static void unify_nodes (constraint_graph_t
, unsigned int, unsigned int, bool);
189 DEF_VEC_P(constraint_t
);
190 DEF_VEC_ALLOC_P(constraint_t
,heap
);
192 #define EXECUTE_IF_IN_NONNULL_BITMAP(a, b, c, d) \
194 EXECUTE_IF_SET_IN_BITMAP (a, b, c, d)
196 static struct constraint_stats
198 unsigned int total_vars
;
199 unsigned int nonpointer_vars
;
200 unsigned int unified_vars_static
;
201 unsigned int unified_vars_dynamic
;
202 unsigned int iterations
;
203 unsigned int num_edges
;
204 unsigned int num_implicit_edges
;
205 unsigned int points_to_sets_created
;
210 /* ID of this variable */
213 /* Name of this variable */
216 /* Tree that this variable is associated with. */
219 /* Offset of this variable, in bits, from the base variable */
220 unsigned HOST_WIDE_INT offset
;
222 /* Size of the variable, in bits. */
223 unsigned HOST_WIDE_INT size
;
225 /* Full size of the base variable, in bits. */
226 unsigned HOST_WIDE_INT fullsize
;
228 /* A link to the variable for the next field in this structure. */
229 struct variable_info
*next
;
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. */
234 unsigned int directly_dereferenced
:1;
236 /* True if this is a variable created by the constraint analysis, such as
237 heap variables and constraints we had to break up. */
238 unsigned int is_artificial_var
:1;
240 /* True if this is a special variable whose solution set should not be
242 unsigned int is_special_var
:1;
244 /* True for variables whose size is not known or variable. */
245 unsigned int is_unknown_size_var
:1;
247 /* True for variables that have unions somewhere in them. */
248 unsigned int has_union
:1;
250 /* True if this is a heap variable. */
251 unsigned int is_heap_var
:1;
253 /* Points-to set for this variable. */
256 /* Old points-to set for this variable. */
259 /* Variable ids represented by this node. */
262 /* Variable id this was collapsed to due to type unsafety. This
263 should be unused completely after build_succ_graph, or something
265 struct variable_info
*collapsed_to
;
267 typedef struct variable_info
*varinfo_t
;
269 static varinfo_t
first_vi_for_offset (varinfo_t
, unsigned HOST_WIDE_INT
);
271 /* Pool of variable info structures. */
272 static alloc_pool variable_info_pool
;
274 DEF_VEC_P(varinfo_t
);
276 DEF_VEC_ALLOC_P(varinfo_t
, heap
);
278 /* Table of variable info structures for constraint variables.
279 Indexed directly by variable info id. */
280 static VEC(varinfo_t
,heap
) *varmap
;
282 /* Return the varmap element N */
284 static inline varinfo_t
285 get_varinfo (unsigned int n
)
287 return VEC_index (varinfo_t
, varmap
, n
);
290 /* Return the varmap element N, following the collapsed_to link. */
292 static inline varinfo_t
293 get_varinfo_fc (unsigned int n
)
295 varinfo_t v
= VEC_index (varinfo_t
, varmap
, n
);
298 return v
->collapsed_to
;
302 /* Variable that represents the unknown pointer. */
303 static varinfo_t var_anything
;
304 static tree anything_tree
;
305 static unsigned int anything_id
;
307 /* Variable that represents the NULL pointer. */
308 static varinfo_t var_nothing
;
309 static tree nothing_tree
;
310 static unsigned int nothing_id
;
312 /* Variable that represents read only memory. */
313 static varinfo_t var_readonly
;
314 static tree readonly_tree
;
315 static unsigned int readonly_id
;
317 /* Variable that represents integers. This is used for when people do things
319 static varinfo_t var_integer
;
320 static tree integer_tree
;
321 static unsigned int integer_id
;
323 /* Variable that represents escaped variables. This is used to give
324 incoming pointer variables a better set than ANYTHING. */
325 static varinfo_t var_escaped_vars
;
326 static tree escaped_vars_tree
;
327 static unsigned int escaped_vars_id
;
329 /* Variable that represents non-local variables before we expand it to
330 one for each type. */
331 static unsigned int nonlocal_vars_id
;
332 /* Lookup a heap var for FROM, and return it if we find one. */
335 heapvar_lookup (tree from
)
337 struct tree_map
*h
, in
;
340 h
= htab_find_with_hash (heapvar_for_stmt
, &in
, htab_hash_pointer (from
));
346 /* Insert a mapping FROM->TO in the heap var for statement
350 heapvar_insert (tree from
, tree to
)
355 h
= ggc_alloc (sizeof (struct tree_map
));
356 h
->hash
= htab_hash_pointer (from
);
359 loc
= htab_find_slot_with_hash (heapvar_for_stmt
, h
, h
->hash
, INSERT
);
360 *(struct tree_map
**) loc
= h
;
363 /* Return a new variable info structure consisting for a variable
364 named NAME, and using constraint graph node NODE. */
367 new_var_info (tree t
, unsigned int id
, const char *name
)
369 varinfo_t ret
= pool_alloc (variable_info_pool
);
374 ret
->directly_dereferenced
= false;
375 ret
->is_artificial_var
= false;
376 ret
->is_heap_var
= false;
377 ret
->is_special_var
= false;
378 ret
->is_unknown_size_var
= false;
379 ret
->has_union
= false;
380 ret
->solution
= BITMAP_ALLOC (&pta_obstack
);
381 ret
->oldsolution
= BITMAP_ALLOC (&oldpta_obstack
);
383 ret
->collapsed_to
= NULL
;
387 typedef enum {SCALAR
, DEREF
, ADDRESSOF
} constraint_expr_type
;
389 /* An expression that appears in a constraint. */
391 struct constraint_expr
393 /* Constraint type. */
394 constraint_expr_type type
;
396 /* Variable we are referring to in the constraint. */
399 /* Offset, in bits, of this constraint from the beginning of
400 variables it ends up referring to.
402 IOW, in a deref constraint, we would deref, get the result set,
403 then add OFFSET to each member. */
404 unsigned HOST_WIDE_INT offset
;
407 typedef struct constraint_expr ce_s
;
409 DEF_VEC_ALLOC_O(ce_s
, heap
);
410 static void get_constraint_for (tree
, VEC(ce_s
, heap
) **);
411 static void do_deref (VEC (ce_s
, heap
) **);
413 /* Our set constraints are made up of two constraint expressions, one
416 As described in the introduction, our set constraints each represent an
417 operation between set valued variables.
421 struct constraint_expr lhs
;
422 struct constraint_expr rhs
;
425 /* List of constraints that we use to build the constraint graph from. */
427 static VEC(constraint_t
,heap
) *constraints
;
428 static alloc_pool constraint_pool
;
432 DEF_VEC_ALLOC_I(int, heap
);
434 /* The constraint graph is represented as an array of bitmaps
435 containing successor nodes. */
437 struct constraint_graph
439 /* Size of this graph, which may be different than the number of
440 nodes in the variable map. */
443 /* Explicit successors of each node. */
446 /* Implicit predecessors of each node (Used for variable
448 bitmap
*implicit_preds
;
450 /* Explicit predecessors of each node (Used for variable substitution). */
453 /* Indirect cycle representatives, or -1 if the node has no indirect
455 int *indirect_cycles
;
457 /* Representative node for a node. rep[a] == a unless the node has
461 /* Equivalence class representative for a node. This is used for
462 variable substitution. */
465 /* Label for each node, used during variable substitution. */
468 /* Bitmap of nodes where the bit is set if the node is a direct
469 node. Used for variable substitution. */
470 sbitmap direct_nodes
;
472 /* Vector of complex constraints for each graph node. Complex
473 constraints are those involving dereferences or offsets that are
475 VEC(constraint_t
,heap
) **complex;
478 static constraint_graph_t graph
;
480 /* During variable substitution and the offline version of indirect
481 cycle finding, we create nodes to represent dereferences and
482 address taken constraints. These represent where these start and
484 #define FIRST_REF_NODE (VEC_length (varinfo_t, varmap))
485 #define LAST_REF_NODE (FIRST_REF_NODE + (FIRST_REF_NODE - 1))
486 #define FIRST_ADDR_NODE (LAST_REF_NODE + 1)
488 /* Return the representative node for NODE, if NODE has been unioned
490 This function performs path compression along the way to finding
491 the representative. */
494 find (unsigned int node
)
496 gcc_assert (node
< graph
->size
);
497 if (graph
->rep
[node
] != node
)
498 return graph
->rep
[node
] = find (graph
->rep
[node
]);
502 /* Union the TO and FROM nodes to the TO nodes.
503 Note that at some point in the future, we may want to do
504 union-by-rank, in which case we are going to have to return the
505 node we unified to. */
508 unite (unsigned int to
, unsigned int from
)
510 gcc_assert (to
< graph
->size
&& from
< graph
->size
);
511 if (to
!= from
&& graph
->rep
[from
] != to
)
513 graph
->rep
[from
] = to
;
519 /* Create a new constraint consisting of LHS and RHS expressions. */
522 new_constraint (const struct constraint_expr lhs
,
523 const struct constraint_expr rhs
)
525 constraint_t ret
= pool_alloc (constraint_pool
);
531 /* Print out constraint C to FILE. */
534 dump_constraint (FILE *file
, constraint_t c
)
536 if (c
->lhs
.type
== ADDRESSOF
)
538 else if (c
->lhs
.type
== DEREF
)
540 fprintf (file
, "%s", get_varinfo_fc (c
->lhs
.var
)->name
);
541 if (c
->lhs
.offset
!= 0)
542 fprintf (file
, " + " HOST_WIDE_INT_PRINT_DEC
, c
->lhs
.offset
);
543 fprintf (file
, " = ");
544 if (c
->rhs
.type
== ADDRESSOF
)
546 else if (c
->rhs
.type
== DEREF
)
548 fprintf (file
, "%s", get_varinfo_fc (c
->rhs
.var
)->name
);
549 if (c
->rhs
.offset
!= 0)
550 fprintf (file
, " + " HOST_WIDE_INT_PRINT_DEC
, c
->rhs
.offset
);
551 fprintf (file
, "\n");
554 /* Print out constraint C to stderr. */
557 debug_constraint (constraint_t c
)
559 dump_constraint (stderr
, c
);
562 /* Print out all constraints to FILE */
565 dump_constraints (FILE *file
)
569 for (i
= 0; VEC_iterate (constraint_t
, constraints
, i
, c
); i
++)
570 dump_constraint (file
, c
);
573 /* Print out all constraints to stderr. */
576 debug_constraints (void)
578 dump_constraints (stderr
);
583 The solver is a simple worklist solver, that works on the following
586 sbitmap changed_nodes = all zeroes;
588 For each node that is not already collapsed:
590 set bit in changed nodes
592 while (changed_count > 0)
594 compute topological ordering for constraint graph
596 find and collapse cycles in the constraint graph (updating
597 changed if necessary)
599 for each node (n) in the graph in topological order:
602 Process each complex constraint associated with the node,
603 updating changed if necessary.
605 For each outgoing edge from n, propagate the solution from n to
606 the destination of the edge, updating changed as necessary.
610 /* Return true if two constraint expressions A and B are equal. */
613 constraint_expr_equal (struct constraint_expr a
, struct constraint_expr b
)
615 return a
.type
== b
.type
&& a
.var
== b
.var
&& a
.offset
== b
.offset
;
618 /* Return true if constraint expression A is less than constraint expression
619 B. This is just arbitrary, but consistent, in order to give them an
623 constraint_expr_less (struct constraint_expr a
, struct constraint_expr b
)
625 if (a
.type
== b
.type
)
628 return a
.offset
< b
.offset
;
630 return a
.var
< b
.var
;
633 return a
.type
< b
.type
;
636 /* Return true if constraint A is less than constraint B. This is just
637 arbitrary, but consistent, in order to give them an ordering. */
640 constraint_less (const constraint_t a
, const constraint_t b
)
642 if (constraint_expr_less (a
->lhs
, b
->lhs
))
644 else if (constraint_expr_less (b
->lhs
, a
->lhs
))
647 return constraint_expr_less (a
->rhs
, b
->rhs
);
650 /* Return true if two constraints A and B are equal. */
653 constraint_equal (struct constraint a
, struct constraint b
)
655 return constraint_expr_equal (a
.lhs
, b
.lhs
)
656 && constraint_expr_equal (a
.rhs
, b
.rhs
);
660 /* Find a constraint LOOKFOR in the sorted constraint vector VEC */
663 constraint_vec_find (VEC(constraint_t
,heap
) *vec
,
664 struct constraint lookfor
)
672 place
= VEC_lower_bound (constraint_t
, vec
, &lookfor
, constraint_less
);
673 if (place
>= VEC_length (constraint_t
, vec
))
675 found
= VEC_index (constraint_t
, vec
, place
);
676 if (!constraint_equal (*found
, lookfor
))
681 /* Union two constraint vectors, TO and FROM. Put the result in TO. */
684 constraint_set_union (VEC(constraint_t
,heap
) **to
,
685 VEC(constraint_t
,heap
) **from
)
690 for (i
= 0; VEC_iterate (constraint_t
, *from
, i
, c
); i
++)
692 if (constraint_vec_find (*to
, *c
) == NULL
)
694 unsigned int place
= VEC_lower_bound (constraint_t
, *to
, c
,
696 VEC_safe_insert (constraint_t
, heap
, *to
, place
, c
);
701 /* Take a solution set SET, add OFFSET to each member of the set, and
702 overwrite SET with the result when done. */
705 solution_set_add (bitmap set
, unsigned HOST_WIDE_INT offset
)
707 bitmap result
= BITMAP_ALLOC (&iteration_obstack
);
710 unsigned HOST_WIDE_INT min
= -1, max
= 0;
712 /* Compute set of vars we can reach from set + offset. */
714 EXECUTE_IF_SET_IN_BITMAP (set
, 0, i
, bi
)
716 if (get_varinfo (i
)->is_artificial_var
717 || get_varinfo (i
)->has_union
718 || get_varinfo (i
)->is_unknown_size_var
)
721 if (get_varinfo (i
)->offset
+ offset
< min
)
722 min
= get_varinfo (i
)->offset
+ offset
;
723 if (get_varinfo (i
)->offset
+ get_varinfo (i
)->size
+ offset
> max
)
725 max
= get_varinfo (i
)->offset
+ get_varinfo (i
)->size
+ offset
;
726 if (max
> get_varinfo (i
)->fullsize
)
727 max
= get_varinfo (i
)->fullsize
;
731 EXECUTE_IF_SET_IN_BITMAP (set
, 0, i
, bi
)
733 /* If this is a properly sized variable, only add offset if it's
734 less than end. Otherwise, it is globbed to a single
737 if (get_varinfo (i
)->offset
+ get_varinfo (i
)->size
- 1 >= min
738 && get_varinfo (i
)->offset
< max
)
740 bitmap_set_bit (result
, i
);
742 else if (get_varinfo (i
)->is_artificial_var
743 || get_varinfo (i
)->has_union
744 || get_varinfo (i
)->is_unknown_size_var
)
746 bitmap_set_bit (result
, i
);
750 bitmap_copy (set
, result
);
751 BITMAP_FREE (result
);
754 /* Union solution sets TO and FROM, and add INC to each member of FROM in the
758 set_union_with_increment (bitmap to
, bitmap from
, unsigned HOST_WIDE_INT inc
)
761 return bitmap_ior_into (to
, from
);
767 tmp
= BITMAP_ALLOC (&iteration_obstack
);
768 bitmap_copy (tmp
, from
);
769 solution_set_add (tmp
, inc
);
770 res
= bitmap_ior_into (to
, tmp
);
776 /* Insert constraint C into the list of complex constraints for graph
780 insert_into_complex (constraint_graph_t graph
,
781 unsigned int var
, constraint_t c
)
783 VEC (constraint_t
, heap
) *complex = graph
->complex[var
];
784 unsigned int place
= VEC_lower_bound (constraint_t
, complex, c
,
787 /* Only insert constraints that do not already exist. */
788 if (place
>= VEC_length (constraint_t
, complex)
789 || !constraint_equal (*c
, *VEC_index (constraint_t
, complex, place
)))
790 VEC_safe_insert (constraint_t
, heap
, graph
->complex[var
], place
, c
);
794 /* Condense two variable nodes into a single variable node, by moving
795 all associated info from SRC to TO. */
798 merge_node_constraints (constraint_graph_t graph
, unsigned int to
,
804 gcc_assert (find (from
) == to
);
806 /* Move all complex constraints from src node into to node */
807 for (i
= 0; VEC_iterate (constraint_t
, graph
->complex[from
], i
, c
); i
++)
809 /* In complex constraints for node src, we may have either
810 a = *src, and *src = a, or an offseted constraint which are
811 always added to the rhs node's constraints. */
813 if (c
->rhs
.type
== DEREF
)
815 else if (c
->lhs
.type
== DEREF
)
820 constraint_set_union (&graph
->complex[to
], &graph
->complex[from
]);
821 VEC_free (constraint_t
, heap
, graph
->complex[from
]);
822 graph
->complex[from
] = NULL
;
826 /* Remove edges involving NODE from GRAPH. */
829 clear_edges_for_node (constraint_graph_t graph
, unsigned int node
)
831 if (graph
->succs
[node
])
832 BITMAP_FREE (graph
->succs
[node
]);
835 /* Merge GRAPH nodes FROM and TO into node TO. */
838 merge_graph_nodes (constraint_graph_t graph
, unsigned int to
,
841 if (graph
->indirect_cycles
[from
] != -1)
843 /* If we have indirect cycles with the from node, and we have
844 none on the to node, the to node has indirect cycles from the
845 from node now that they are unified.
846 If indirect cycles exist on both, unify the nodes that they
847 are in a cycle with, since we know they are in a cycle with
849 if (graph
->indirect_cycles
[to
] == -1)
851 graph
->indirect_cycles
[to
] = graph
->indirect_cycles
[from
];
855 unsigned int tonode
= find (graph
->indirect_cycles
[to
]);
856 unsigned int fromnode
= find (graph
->indirect_cycles
[from
]);
858 if (unite (tonode
, fromnode
))
859 unify_nodes (graph
, tonode
, fromnode
, true);
863 /* Merge all the successor edges. */
864 if (graph
->succs
[from
])
866 if (!graph
->succs
[to
])
867 graph
->succs
[to
] = BITMAP_ALLOC (&pta_obstack
);
868 bitmap_ior_into (graph
->succs
[to
],
872 clear_edges_for_node (graph
, from
);
876 /* Add an indirect graph edge to GRAPH, going from TO to FROM if
877 it doesn't exist in the graph already. */
880 add_implicit_graph_edge (constraint_graph_t graph
, unsigned int to
,
886 if (!graph
->implicit_preds
[to
])
887 graph
->implicit_preds
[to
] = BITMAP_ALLOC (&predbitmap_obstack
);
889 if (!bitmap_bit_p (graph
->implicit_preds
[to
], from
))
891 stats
.num_implicit_edges
++;
892 bitmap_set_bit (graph
->implicit_preds
[to
], from
);
896 /* Add a predecessor graph edge to GRAPH, going from TO to FROM if
897 it doesn't exist in the graph already.
898 Return false if the edge already existed, true otherwise. */
901 add_pred_graph_edge (constraint_graph_t graph
, unsigned int to
,
904 if (!graph
->preds
[to
])
905 graph
->preds
[to
] = BITMAP_ALLOC (&predbitmap_obstack
);
906 if (!bitmap_bit_p (graph
->preds
[to
], from
))
907 bitmap_set_bit (graph
->preds
[to
], from
);
910 /* Add a graph edge to GRAPH, going from FROM to TO if
911 it doesn't exist in the graph already.
912 Return false if the edge already existed, true otherwise. */
915 add_graph_edge (constraint_graph_t graph
, unsigned int to
,
926 if (!graph
->succs
[from
])
927 graph
->succs
[from
] = BITMAP_ALLOC (&pta_obstack
);
928 if (!bitmap_bit_p (graph
->succs
[from
], to
))
931 if (to
< FIRST_REF_NODE
&& from
< FIRST_REF_NODE
)
933 bitmap_set_bit (graph
->succs
[from
], to
);
940 /* Return true if {DEST.SRC} is an existing graph edge in GRAPH. */
943 valid_graph_edge (constraint_graph_t graph
, unsigned int src
,
946 return (graph
->succs
[dest
]
947 && bitmap_bit_p (graph
->succs
[dest
], src
));
950 /* Build the constraint graph, adding only predecessor edges right now. */
953 build_pred_graph (void)
959 graph
= XNEW (struct constraint_graph
);
960 graph
->size
= (VEC_length (varinfo_t
, varmap
)) * 3;
961 graph
->succs
= XCNEWVEC (bitmap
, graph
->size
);
962 graph
->implicit_preds
= XCNEWVEC (bitmap
, graph
->size
);
963 graph
->preds
= XCNEWVEC (bitmap
, graph
->size
);
964 graph
->indirect_cycles
= XNEWVEC (int, VEC_length (varinfo_t
, varmap
));
965 graph
->label
= XCNEWVEC (unsigned int, graph
->size
);
966 graph
->rep
= XNEWVEC (unsigned int, graph
->size
);
967 graph
->eq_rep
= XNEWVEC (int, graph
->size
);
968 graph
->complex = XCNEWVEC (VEC(constraint_t
, heap
) *,
969 VEC_length (varinfo_t
, varmap
));
970 graph
->direct_nodes
= sbitmap_alloc (graph
->size
);
971 sbitmap_zero (graph
->direct_nodes
);
973 for (j
= 0; j
< FIRST_REF_NODE
; j
++)
975 if (!get_varinfo (j
)->is_special_var
)
976 SET_BIT (graph
->direct_nodes
, j
);
979 for (j
= 0; j
< graph
->size
; j
++)
982 graph
->eq_rep
[j
] = -1;
985 for (j
= 0; j
< VEC_length (varinfo_t
, varmap
); j
++)
986 graph
->indirect_cycles
[j
] = -1;
988 for (i
= 0; VEC_iterate (constraint_t
, constraints
, i
, c
); i
++)
990 struct constraint_expr lhs
= c
->lhs
;
991 struct constraint_expr rhs
= c
->rhs
;
992 unsigned int lhsvar
= get_varinfo_fc (lhs
.var
)->id
;
993 unsigned int rhsvar
= get_varinfo_fc (rhs
.var
)->id
;
995 if (lhs
.type
== DEREF
)
998 if (rhs
.offset
== 0 && lhs
.offset
== 0 && rhs
.type
== SCALAR
)
999 add_pred_graph_edge (graph
, FIRST_REF_NODE
+ lhsvar
, rhsvar
);
1000 if (rhs
.type
== ADDRESSOF
)
1001 RESET_BIT (graph
->direct_nodes
, rhsvar
);
1003 else if (rhs
.type
== DEREF
)
1006 if (rhs
.offset
== 0 && lhs
.offset
== 0 && lhs
.type
== SCALAR
)
1007 add_pred_graph_edge (graph
, lhsvar
, FIRST_REF_NODE
+ rhsvar
);
1009 RESET_BIT (graph
->direct_nodes
, lhsvar
);
1011 else if (rhs
.type
== ADDRESSOF
)
1014 add_pred_graph_edge (graph
, lhsvar
, FIRST_ADDR_NODE
+ rhsvar
);
1015 /* Implicitly, *x = y */
1016 add_implicit_graph_edge (graph
, FIRST_REF_NODE
+ lhsvar
, rhsvar
);
1018 RESET_BIT (graph
->direct_nodes
, rhsvar
);
1020 else if (lhsvar
> anything_id
1021 && lhsvar
!= rhsvar
&& lhs
.offset
== 0 && rhs
.offset
== 0)
1024 add_pred_graph_edge (graph
, lhsvar
, rhsvar
);
1025 /* Implicitly, *x = *y */
1026 add_implicit_graph_edge (graph
, FIRST_REF_NODE
+ lhsvar
,
1027 FIRST_REF_NODE
+ rhsvar
);
1029 else if (lhs
.offset
!= 0 || rhs
.offset
!= 0)
1031 if (rhs
.offset
!= 0)
1032 RESET_BIT (graph
->direct_nodes
, lhs
.var
);
1033 if (lhs
.offset
!= 0)
1034 RESET_BIT (graph
->direct_nodes
, rhs
.var
);
1039 /* Build the constraint graph, adding successor edges. */
1042 build_succ_graph (void)
1047 for (i
= 0; VEC_iterate (constraint_t
, constraints
, i
, c
); i
++)
1049 struct constraint_expr lhs
;
1050 struct constraint_expr rhs
;
1051 unsigned int lhsvar
;
1052 unsigned int rhsvar
;
1059 lhsvar
= find (get_varinfo_fc (lhs
.var
)->id
);
1060 rhsvar
= find (get_varinfo_fc (rhs
.var
)->id
);
1062 if (lhs
.type
== DEREF
)
1064 if (rhs
.offset
== 0 && lhs
.offset
== 0 && rhs
.type
== SCALAR
)
1065 add_graph_edge (graph
, FIRST_REF_NODE
+ lhsvar
, rhsvar
);
1067 else if (rhs
.type
== DEREF
)
1069 if (rhs
.offset
== 0 && lhs
.offset
== 0 && lhs
.type
== SCALAR
)
1070 add_graph_edge (graph
, lhsvar
, FIRST_REF_NODE
+ rhsvar
);
1072 else if (rhs
.type
== ADDRESSOF
)
1075 gcc_assert (find (get_varinfo_fc (rhs
.var
)->id
)
1076 == get_varinfo_fc (rhs
.var
)->id
);
1077 bitmap_set_bit (get_varinfo (lhsvar
)->solution
, rhsvar
);
1079 else if (lhsvar
> anything_id
1080 && lhsvar
!= rhsvar
&& lhs
.offset
== 0 && rhs
.offset
== 0)
1082 add_graph_edge (graph
, lhsvar
, rhsvar
);
1088 /* Changed variables on the last iteration. */
1089 static unsigned int changed_count
;
1090 static sbitmap changed
;
1092 DEF_VEC_I(unsigned);
1093 DEF_VEC_ALLOC_I(unsigned,heap
);
1096 /* Strongly Connected Component visitation info. */
1103 unsigned int *node_mapping
;
1105 VEC(unsigned,heap
) *scc_stack
;
1109 /* Recursive routine to find strongly connected components in GRAPH.
1110 SI is the SCC info to store the information in, and N is the id of current
1111 graph node we are processing.
1113 This is Tarjan's strongly connected component finding algorithm, as
1114 modified by Nuutila to keep only non-root nodes on the stack.
1115 The algorithm can be found in "On finding the strongly connected
1116 connected components in a directed graph" by Esko Nuutila and Eljas
1117 Soisalon-Soininen, in Information Processing Letters volume 49,
1118 number 1, pages 9-14. */
1121 scc_visit (constraint_graph_t graph
, struct scc_info
*si
, unsigned int n
)
1125 unsigned int my_dfs
;
1127 SET_BIT (si
->visited
, n
);
1128 si
->dfs
[n
] = si
->current_index
++;
1129 my_dfs
= si
->dfs
[n
];
1131 /* Visit all the successors. */
1132 EXECUTE_IF_IN_NONNULL_BITMAP (graph
->succs
[n
], 0, i
, bi
)
1136 if (i
> LAST_REF_NODE
)
1140 if (TEST_BIT (si
->roots
, w
))
1143 if (!TEST_BIT (si
->visited
, w
))
1144 scc_visit (graph
, si
, w
);
1146 unsigned int t
= find (w
);
1147 unsigned int nnode
= find (n
);
1148 gcc_assert (nnode
== n
);
1150 if (si
->dfs
[t
] < si
->dfs
[nnode
])
1151 si
->dfs
[n
] = si
->dfs
[t
];
1155 /* See if any components have been identified. */
1156 if (si
->dfs
[n
] == my_dfs
)
1158 if (VEC_length (unsigned, si
->scc_stack
) > 0
1159 && si
->dfs
[VEC_last (unsigned, si
->scc_stack
)] >= my_dfs
)
1161 bitmap scc
= BITMAP_ALLOC (NULL
);
1162 bool have_ref_node
= n
>= FIRST_REF_NODE
;
1163 unsigned int lowest_node
;
1166 bitmap_set_bit (scc
, n
);
1168 while (VEC_length (unsigned, si
->scc_stack
) != 0
1169 && si
->dfs
[VEC_last (unsigned, si
->scc_stack
)] >= my_dfs
)
1171 unsigned int w
= VEC_pop (unsigned, si
->scc_stack
);
1173 bitmap_set_bit (scc
, w
);
1174 if (w
>= FIRST_REF_NODE
)
1175 have_ref_node
= true;
1178 lowest_node
= bitmap_first_set_bit (scc
);
1179 gcc_assert (lowest_node
< FIRST_REF_NODE
);
1180 EXECUTE_IF_SET_IN_BITMAP (scc
, 0, i
, bi
)
1182 if (i
< FIRST_REF_NODE
)
1184 /* Mark this node for collapsing. */
1185 if (unite (lowest_node
, i
))
1186 unify_nodes (graph
, lowest_node
, i
, false);
1190 unite (lowest_node
, i
);
1191 graph
->indirect_cycles
[i
- FIRST_REF_NODE
] = lowest_node
;
1195 SET_BIT (si
->roots
, n
);
1198 VEC_safe_push (unsigned, heap
, si
->scc_stack
, n
);
1201 /* Unify node FROM into node TO, updating the changed count if
1202 necessary when UPDATE_CHANGED is true. */
1205 unify_nodes (constraint_graph_t graph
, unsigned int to
, unsigned int from
,
1206 bool update_changed
)
1209 gcc_assert (to
!= from
&& find (to
) == to
);
1210 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
1211 fprintf (dump_file
, "Unifying %s to %s\n",
1212 get_varinfo (from
)->name
,
1213 get_varinfo (to
)->name
);
1216 stats
.unified_vars_dynamic
++;
1218 stats
.unified_vars_static
++;
1220 merge_graph_nodes (graph
, to
, from
);
1221 merge_node_constraints (graph
, to
, from
);
1223 if (update_changed
&& TEST_BIT (changed
, from
))
1225 RESET_BIT (changed
, from
);
1226 if (!TEST_BIT (changed
, to
))
1227 SET_BIT (changed
, to
);
1230 gcc_assert (changed_count
> 0);
1235 /* If the solution changes because of the merging, we need to mark
1236 the variable as changed. */
1237 if (bitmap_ior_into (get_varinfo (to
)->solution
,
1238 get_varinfo (from
)->solution
))
1240 if (update_changed
&& !TEST_BIT (changed
, to
))
1242 SET_BIT (changed
, to
);
1247 BITMAP_FREE (get_varinfo (from
)->solution
);
1248 BITMAP_FREE (get_varinfo (from
)->oldsolution
);
1250 if (stats
.iterations
> 0)
1252 BITMAP_FREE (get_varinfo (to
)->oldsolution
);
1253 get_varinfo (to
)->oldsolution
= BITMAP_ALLOC (&oldpta_obstack
);
1256 if (valid_graph_edge (graph
, to
, to
))
1258 if (graph
->succs
[to
])
1259 bitmap_clear_bit (graph
->succs
[to
], to
);
1263 /* Information needed to compute the topological ordering of a graph. */
1267 /* sbitmap of visited nodes. */
1269 /* Array that stores the topological order of the graph, *in
1271 VEC(unsigned,heap
) *topo_order
;
1275 /* Initialize and return a topological info structure. */
1277 static struct topo_info
*
1278 init_topo_info (void)
1280 size_t size
= VEC_length (varinfo_t
, varmap
);
1281 struct topo_info
*ti
= XNEW (struct topo_info
);
1282 ti
->visited
= sbitmap_alloc (size
);
1283 sbitmap_zero (ti
->visited
);
1284 ti
->topo_order
= VEC_alloc (unsigned, heap
, 1);
1289 /* Free the topological sort info pointed to by TI. */
1292 free_topo_info (struct topo_info
*ti
)
1294 sbitmap_free (ti
->visited
);
1295 VEC_free (unsigned, heap
, ti
->topo_order
);
1299 /* Visit the graph in topological order, and store the order in the
1300 topo_info structure. */
1303 topo_visit (constraint_graph_t graph
, struct topo_info
*ti
,
1309 SET_BIT (ti
->visited
, n
);
1311 if (graph
->succs
[n
])
1312 EXECUTE_IF_SET_IN_BITMAP (graph
->succs
[n
], 0, j
, bi
)
1314 if (!TEST_BIT (ti
->visited
, j
))
1315 topo_visit (graph
, ti
, j
);
1318 VEC_safe_push (unsigned, heap
, ti
->topo_order
, n
);
1321 /* Return true if variable N + OFFSET is a legal field of N. */
1324 type_safe (unsigned int n
, unsigned HOST_WIDE_INT
*offset
)
1326 varinfo_t ninfo
= get_varinfo (n
);
1328 /* For things we've globbed to single variables, any offset into the
1329 variable acts like the entire variable, so that it becomes offset
1331 if (ninfo
->is_special_var
1332 || ninfo
->is_artificial_var
1333 || ninfo
->is_unknown_size_var
)
1338 return (get_varinfo (n
)->offset
+ *offset
) < get_varinfo (n
)->fullsize
;
1341 /* Process a constraint C that represents *x = &y. */
1344 do_da_constraint (constraint_graph_t graph ATTRIBUTE_UNUSED
,
1345 constraint_t c
, bitmap delta
)
1347 unsigned int rhs
= c
->rhs
.var
;
1351 /* For each member j of Delta (Sol(x)), add x to Sol(j) */
1352 EXECUTE_IF_SET_IN_BITMAP (delta
, 0, j
, bi
)
1354 unsigned HOST_WIDE_INT offset
= c
->lhs
.offset
;
1355 if (type_safe (j
, &offset
) && !(get_varinfo (j
)->is_special_var
))
1357 /* *x != NULL && *x != ANYTHING*/
1361 unsigned HOST_WIDE_INT fieldoffset
= get_varinfo (j
)->offset
+ offset
;
1363 v
= first_vi_for_offset (get_varinfo (j
), fieldoffset
);
1367 sol
= get_varinfo (t
)->solution
;
1368 if (!bitmap_bit_p (sol
, rhs
))
1370 bitmap_set_bit (sol
, rhs
);
1371 if (!TEST_BIT (changed
, t
))
1373 SET_BIT (changed
, t
);
1378 else if (0 && dump_file
&& !(get_varinfo (j
)->is_special_var
))
1379 fprintf (dump_file
, "Untypesafe usage in do_da_constraint.\n");
1384 /* Process a constraint C that represents x = *y, using DELTA as the
1385 starting solution. */
1388 do_sd_constraint (constraint_graph_t graph
, constraint_t c
,
1391 unsigned int lhs
= find (c
->lhs
.var
);
1393 bitmap sol
= get_varinfo (lhs
)->solution
;
1397 if (bitmap_bit_p (delta
, anything_id
))
1399 flag
= !bitmap_bit_p (sol
, anything_id
);
1401 bitmap_set_bit (sol
, anything_id
);
1404 /* For each variable j in delta (Sol(y)), add
1405 an edge in the graph from j to x, and union Sol(j) into Sol(x). */
1406 EXECUTE_IF_SET_IN_BITMAP (delta
, 0, j
, bi
)
1408 unsigned HOST_WIDE_INT roffset
= c
->rhs
.offset
;
1409 if (type_safe (j
, &roffset
))
1412 unsigned HOST_WIDE_INT fieldoffset
= get_varinfo (j
)->offset
+ roffset
;
1415 v
= first_vi_for_offset (get_varinfo (j
), fieldoffset
);
1420 /* Adding edges from the special vars is pointless.
1421 They don't have sets that can change. */
1422 if (get_varinfo (t
) ->is_special_var
)
1423 flag
|= bitmap_ior_into (sol
, get_varinfo (t
)->solution
);
1424 else if (add_graph_edge (graph
, lhs
, t
))
1425 flag
|= bitmap_ior_into (sol
, get_varinfo (t
)->solution
);
1427 else if (0 && dump_file
&& !(get_varinfo (j
)->is_special_var
))
1428 fprintf (dump_file
, "Untypesafe usage in do_sd_constraint\n");
1433 /* If the LHS solution changed, mark the var as changed. */
1436 get_varinfo (lhs
)->solution
= sol
;
1437 if (!TEST_BIT (changed
, lhs
))
1439 SET_BIT (changed
, lhs
);
1445 /* Process a constraint C that represents *x = y. */
1448 do_ds_constraint (constraint_t c
, bitmap delta
)
1450 unsigned int rhs
= find (c
->rhs
.var
);
1451 unsigned HOST_WIDE_INT roff
= c
->rhs
.offset
;
1452 bitmap sol
= get_varinfo (rhs
)->solution
;
1456 if (bitmap_bit_p (sol
, anything_id
))
1458 EXECUTE_IF_SET_IN_BITMAP (delta
, 0, j
, bi
)
1460 varinfo_t jvi
= get_varinfo (j
);
1462 unsigned int loff
= c
->lhs
.offset
;
1463 unsigned HOST_WIDE_INT fieldoffset
= jvi
->offset
+ loff
;
1466 v
= first_vi_for_offset (get_varinfo (j
), fieldoffset
);
1471 if (!bitmap_bit_p (get_varinfo (t
)->solution
, anything_id
))
1473 bitmap_set_bit (get_varinfo (t
)->solution
, anything_id
);
1474 if (!TEST_BIT (changed
, t
))
1476 SET_BIT (changed
, t
);
1484 /* For each member j of delta (Sol(x)), add an edge from y to j and
1485 union Sol(y) into Sol(j) */
1486 EXECUTE_IF_SET_IN_BITMAP (delta
, 0, j
, bi
)
1488 unsigned HOST_WIDE_INT loff
= c
->lhs
.offset
;
1489 if (type_safe (j
, &loff
) && !(get_varinfo (j
)->is_special_var
))
1493 unsigned HOST_WIDE_INT fieldoffset
= get_varinfo (j
)->offset
+ loff
;
1496 v
= first_vi_for_offset (get_varinfo (j
), fieldoffset
);
1500 tmp
= get_varinfo (t
)->solution
;
1502 if (set_union_with_increment (tmp
, sol
, roff
))
1504 get_varinfo (t
)->solution
= tmp
;
1506 sol
= get_varinfo (rhs
)->solution
;
1507 if (!TEST_BIT (changed
, t
))
1509 SET_BIT (changed
, t
);
1514 else if (0 && dump_file
&& !(get_varinfo (j
)->is_special_var
))
1515 fprintf (dump_file
, "Untypesafe usage in do_ds_constraint\n");
1519 /* Handle a non-simple (simple meaning requires no iteration),
1520 constraint (IE *x = &y, x = *y, *x = y, and x = y with offsets involved). */
1523 do_complex_constraint (constraint_graph_t graph
, constraint_t c
, bitmap delta
)
1525 if (c
->lhs
.type
== DEREF
)
1527 if (c
->rhs
.type
== ADDRESSOF
)
1530 do_da_constraint (graph
, c
, delta
);
1535 do_ds_constraint (c
, delta
);
1538 else if (c
->rhs
.type
== DEREF
)
1541 if (!(get_varinfo (c
->lhs
.var
)->is_special_var
))
1542 do_sd_constraint (graph
, c
, delta
);
1551 gcc_assert (c
->rhs
.type
== SCALAR
&& c
->lhs
.type
== SCALAR
);
1552 t
= find (c
->rhs
.var
);
1553 solution
= get_varinfo (t
)->solution
;
1554 t
= find (c
->lhs
.var
);
1555 tmp
= get_varinfo (t
)->solution
;
1557 flag
= set_union_with_increment (tmp
, solution
, c
->rhs
.offset
);
1561 get_varinfo (t
)->solution
= tmp
;
1562 if (!TEST_BIT (changed
, t
))
1564 SET_BIT (changed
, t
);
1571 /* Initialize and return a new SCC info structure. */
1573 static struct scc_info
*
1574 init_scc_info (size_t size
)
1576 struct scc_info
*si
= XNEW (struct scc_info
);
1579 si
->current_index
= 0;
1580 si
->visited
= sbitmap_alloc (size
);
1581 sbitmap_zero (si
->visited
);
1582 si
->roots
= sbitmap_alloc (size
);
1583 sbitmap_zero (si
->roots
);
1584 si
->node_mapping
= XNEWVEC (unsigned int, size
);
1585 si
->dfs
= XCNEWVEC (unsigned int, size
);
1587 for (i
= 0; i
< size
; i
++)
1588 si
->node_mapping
[i
] = i
;
1590 si
->scc_stack
= VEC_alloc (unsigned, heap
, 1);
1594 /* Free an SCC info structure pointed to by SI */
1597 free_scc_info (struct scc_info
*si
)
1599 sbitmap_free (si
->visited
);
1600 sbitmap_free (si
->roots
);
1601 free (si
->node_mapping
);
1603 VEC_free (unsigned, heap
, si
->scc_stack
);
1608 /* Find indirect cycles in GRAPH that occur, using strongly connected
1609 components, and note them in the indirect cycles map.
1611 This technique comes from Ben Hardekopf and Calvin Lin,
1612 "It Pays to be Lazy: Fast and Accurate Pointer Analysis for Millions of
1613 Lines of Code", submitted to PLDI 2007. */
1616 find_indirect_cycles (constraint_graph_t graph
)
1619 unsigned int size
= graph
->size
;
1620 struct scc_info
*si
= init_scc_info (size
);
1622 for (i
= 0; i
< MIN (LAST_REF_NODE
, size
); i
++ )
1623 if (!TEST_BIT (si
->visited
, i
) && find (i
) == i
)
1624 scc_visit (graph
, si
, i
);
1629 /* Compute a topological ordering for GRAPH, and store the result in the
1630 topo_info structure TI. */
1633 compute_topo_order (constraint_graph_t graph
,
1634 struct topo_info
*ti
)
1637 unsigned int size
= VEC_length (varinfo_t
, varmap
);
1639 for (i
= 0; i
!= size
; ++i
)
1640 if (!TEST_BIT (ti
->visited
, i
) && find (i
) == i
)
1641 topo_visit (graph
, ti
, i
);
1644 /* Perform offline variable substitution.
1646 This is a linear time way of identifying variables that must have
1647 equivalent points-to sets, including those caused by static cycles,
1648 and single entry subgraphs, in the constraint graph.
1650 The technique is described in "Off-line variable substitution for
1651 scaling points-to analysis" by Atanas Rountev and Satish Chandra,
1652 in "ACM SIGPLAN Notices" volume 35, number 5, pages 47-56.
1654 There is an optimal way to do this involving hash based value
1655 numbering, once the technique is published i will implement it
1658 The general method of finding equivalence classes is as follows:
1659 Add fake nodes (REF nodes) and edges for *a = b and a = *b constraints.
1660 Add fake nodes (ADDRESS nodes) and edges for a = &b constraints.
1661 Initialize all non-REF/ADDRESS nodes to be direct nodes
1662 For each SCC in the predecessor graph:
1663 for each member (x) of the SCC
1664 if x is not a direct node:
1665 set rootnode(SCC) to be not a direct node
1666 collapse node x into rootnode(SCC).
1667 if rootnode(SCC) is not a direct node:
1668 label rootnode(SCC) with a new equivalence class
1670 if all labeled predecessors of rootnode(SCC) have the same
1672 label rootnode(SCC) with this label
1674 label rootnode(SCC) with a new equivalence class
1676 All direct nodes with the same equivalence class can be replaced
1677 with a single representative node.
1678 All unlabeled nodes (label == 0) are not pointers and all edges
1679 involving them can be eliminated.
1680 We perform these optimizations during move_complex_constraints.
1683 static int equivalence_class
;
1685 /* Recursive routine to find strongly connected components in GRAPH,
1686 and label it's nodes with equivalence classes.
1687 This is used during variable substitution to find cycles involving
1688 the regular or implicit predecessors, and label them as equivalent.
1689 The SCC finding algorithm used is the same as that for scc_visit. */
1692 label_visit (constraint_graph_t graph
, struct scc_info
*si
, unsigned int n
)
1696 unsigned int my_dfs
;
1698 gcc_assert (si
->node_mapping
[n
] == n
);
1699 SET_BIT (si
->visited
, n
);
1700 si
->dfs
[n
] = si
->current_index
++;
1701 my_dfs
= si
->dfs
[n
];
1703 /* Visit all the successors. */
1704 EXECUTE_IF_IN_NONNULL_BITMAP (graph
->preds
[n
], 0, i
, bi
)
1706 unsigned int w
= si
->node_mapping
[i
];
1708 if (TEST_BIT (si
->roots
, w
))
1711 if (!TEST_BIT (si
->visited
, w
))
1712 label_visit (graph
, si
, w
);
1714 unsigned int t
= si
->node_mapping
[w
];
1715 unsigned int nnode
= si
->node_mapping
[n
];
1716 gcc_assert (nnode
== n
);
1718 if (si
->dfs
[t
] < si
->dfs
[nnode
])
1719 si
->dfs
[n
] = si
->dfs
[t
];
1723 /* Visit all the implicit predecessors. */
1724 EXECUTE_IF_IN_NONNULL_BITMAP (graph
->implicit_preds
[n
], 0, i
, bi
)
1726 unsigned int w
= si
->node_mapping
[i
];
1728 if (TEST_BIT (si
->roots
, w
))
1731 if (!TEST_BIT (si
->visited
, w
))
1732 label_visit (graph
, si
, w
);
1734 unsigned int t
= si
->node_mapping
[w
];
1735 unsigned int nnode
= si
->node_mapping
[n
];
1736 gcc_assert (nnode
== n
);
1738 if (si
->dfs
[t
] < si
->dfs
[nnode
])
1739 si
->dfs
[n
] = si
->dfs
[t
];
1743 /* See if any components have been identified. */
1744 if (si
->dfs
[n
] == my_dfs
)
1746 while (VEC_length (unsigned, si
->scc_stack
) != 0
1747 && si
->dfs
[VEC_last (unsigned, si
->scc_stack
)] >= my_dfs
)
1749 unsigned int w
= VEC_pop (unsigned, si
->scc_stack
);
1750 si
->node_mapping
[w
] = n
;
1752 if (!TEST_BIT (graph
->direct_nodes
, w
))
1753 RESET_BIT (graph
->direct_nodes
, n
);
1755 SET_BIT (si
->roots
, n
);
1757 if (!TEST_BIT (graph
->direct_nodes
, n
))
1759 graph
->label
[n
] = equivalence_class
++;
1763 unsigned int size
= 0;
1764 unsigned int firstlabel
= ~0;
1766 EXECUTE_IF_IN_NONNULL_BITMAP (graph
->preds
[n
], 0, i
, bi
)
1768 unsigned int j
= si
->node_mapping
[i
];
1770 if (j
== n
|| graph
->label
[j
] == 0)
1773 if (firstlabel
== (unsigned int)~0)
1775 firstlabel
= graph
->label
[j
];
1778 else if (graph
->label
[j
] != firstlabel
)
1783 graph
->label
[n
] = 0;
1785 graph
->label
[n
] = firstlabel
;
1787 graph
->label
[n
] = equivalence_class
++;
1791 VEC_safe_push (unsigned, heap
, si
->scc_stack
, n
);
1794 /* Perform offline variable substitution, discovering equivalence
1795 classes, and eliminating non-pointer variables. */
1797 static struct scc_info
*
1798 perform_var_substitution (constraint_graph_t graph
)
1801 unsigned int size
= graph
->size
;
1802 struct scc_info
*si
= init_scc_info (size
);
1804 bitmap_obstack_initialize (&iteration_obstack
);
1805 equivalence_class
= 0;
1807 /* We only need to visit the non-address nodes for labeling
1808 purposes, as the address nodes will never have any predecessors,
1809 because &x never appears on the LHS of a constraint. */
1810 for (i
= 0; i
< LAST_REF_NODE
; i
++)
1811 if (!TEST_BIT (si
->visited
, si
->node_mapping
[i
]))
1812 label_visit (graph
, si
, si
->node_mapping
[i
]);
1814 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
1815 for (i
= 0; i
< FIRST_REF_NODE
; i
++)
1817 bool direct_node
= TEST_BIT (graph
->direct_nodes
, i
);
1819 "Equivalence class for %s node id %d:%s is %d\n",
1820 direct_node
? "Direct node" : "Indirect node", i
,
1821 get_varinfo (i
)->name
,
1822 graph
->label
[si
->node_mapping
[i
]]);
1825 /* Quickly eliminate our non-pointer variables. */
1827 for (i
= 0; i
< FIRST_REF_NODE
; i
++)
1829 unsigned int node
= si
->node_mapping
[i
];
1831 if (graph
->label
[node
] == 0 && TEST_BIT (graph
->direct_nodes
, node
))
1833 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
1835 "%s is a non-pointer variable, eliminating edges.\n",
1836 get_varinfo (node
)->name
);
1837 stats
.nonpointer_vars
++;
1838 clear_edges_for_node (graph
, node
);
1844 /* Free information that was only necessary for variable
1848 free_var_substitution_info (struct scc_info
*si
)
1851 free (graph
->label
);
1852 free (graph
->eq_rep
);
1853 sbitmap_free (graph
->direct_nodes
);
1854 bitmap_obstack_release (&iteration_obstack
);
1857 /* Return an existing node that is equivalent to NODE, which has
1858 equivalence class LABEL, if one exists. Return NODE otherwise. */
1861 find_equivalent_node (constraint_graph_t graph
,
1862 unsigned int node
, unsigned int label
)
1864 /* If the address version of this variable is unused, we can
1865 substitute it for anything else with the same label.
1866 Otherwise, we know the pointers are equivalent, but not the
1869 if (graph
->label
[FIRST_ADDR_NODE
+ node
] == 0)
1871 gcc_assert (label
< graph
->size
);
1873 if (graph
->eq_rep
[label
] != -1)
1875 /* Unify the two variables since we know they are equivalent. */
1876 if (unite (graph
->eq_rep
[label
], node
))
1877 unify_nodes (graph
, graph
->eq_rep
[label
], node
, false);
1878 return graph
->eq_rep
[label
];
1882 graph
->eq_rep
[label
] = node
;
1888 /* Move complex constraints to the appropriate nodes, and collapse
1889 variables we've discovered are equivalent during variable
1890 substitution. SI is the SCC_INFO that is the result of
1891 perform_variable_substitution. */
1894 move_complex_constraints (constraint_graph_t graph
,
1895 struct scc_info
*si
)
1901 for (j
= 0; j
< graph
->size
; j
++)
1902 gcc_assert (find (j
) == j
);
1904 for (i
= 0; VEC_iterate (constraint_t
, constraints
, i
, c
); i
++)
1906 struct constraint_expr lhs
= c
->lhs
;
1907 struct constraint_expr rhs
= c
->rhs
;
1908 unsigned int lhsvar
= find (get_varinfo_fc (lhs
.var
)->id
);
1909 unsigned int rhsvar
= find (get_varinfo_fc (rhs
.var
)->id
);
1910 unsigned int lhsnode
, rhsnode
;
1911 unsigned int lhslabel
, rhslabel
;
1913 lhsnode
= si
->node_mapping
[lhsvar
];
1914 rhsnode
= si
->node_mapping
[rhsvar
];
1915 lhslabel
= graph
->label
[lhsnode
];
1916 rhslabel
= graph
->label
[rhsnode
];
1918 /* See if it is really a non-pointer variable, and if so, ignore
1922 if (!TEST_BIT (graph
->direct_nodes
, lhsnode
))
1923 lhslabel
= graph
->label
[lhsnode
] = equivalence_class
++;
1926 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
1929 fprintf (dump_file
, "%s is a non-pointer variable,"
1930 "ignoring constraint:",
1931 get_varinfo (lhs
.var
)->name
);
1932 dump_constraint (dump_file
, c
);
1934 VEC_replace (constraint_t
, constraints
, i
, NULL
);
1941 if (!TEST_BIT (graph
->direct_nodes
, rhsnode
))
1942 rhslabel
= graph
->label
[rhsnode
] = equivalence_class
++;
1945 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
1948 fprintf (dump_file
, "%s is a non-pointer variable,"
1949 "ignoring constraint:",
1950 get_varinfo (rhs
.var
)->name
);
1951 dump_constraint (dump_file
, c
);
1953 VEC_replace (constraint_t
, constraints
, i
, NULL
);
1958 lhsvar
= find_equivalent_node (graph
, lhsvar
, lhslabel
);
1959 rhsvar
= find_equivalent_node (graph
, rhsvar
, rhslabel
);
1960 c
->lhs
.var
= lhsvar
;
1961 c
->rhs
.var
= rhsvar
;
1963 if (lhs
.type
== DEREF
)
1965 if (rhs
.type
== ADDRESSOF
|| rhsvar
> anything_id
)
1966 insert_into_complex (graph
, lhsvar
, c
);
1968 else if (rhs
.type
== DEREF
)
1970 if (!(get_varinfo (lhsvar
)->is_special_var
))
1971 insert_into_complex (graph
, rhsvar
, c
);
1973 else if (rhs
.type
!= ADDRESSOF
&& lhsvar
> anything_id
1974 && (lhs
.offset
!= 0 || rhs
.offset
!= 0))
1976 insert_into_complex (graph
, rhsvar
, c
);
1982 /* Eliminate indirect cycles involving NODE. Return true if NODE was
1983 part of an SCC, false otherwise. */
1986 eliminate_indirect_cycles (unsigned int node
)
1988 if (graph
->indirect_cycles
[node
] != -1
1989 && !bitmap_empty_p (get_varinfo (node
)->solution
))
1992 VEC(unsigned,heap
) *queue
= NULL
;
1994 unsigned int to
= find (graph
->indirect_cycles
[node
]);
1997 /* We can't touch the solution set and call unify_nodes
1998 at the same time, because unify_nodes is going to do
1999 bitmap unions into it. */
2001 EXECUTE_IF_SET_IN_BITMAP (get_varinfo (node
)->solution
, 0, i
, bi
)
2003 if (find (i
) == i
&& i
!= to
)
2006 VEC_safe_push (unsigned, heap
, queue
, i
);
2011 VEC_iterate (unsigned, queue
, queuepos
, i
);
2014 unify_nodes (graph
, to
, i
, true);
2016 VEC_free (unsigned, heap
, queue
);
2022 /* Solve the constraint graph GRAPH using our worklist solver.
2023 This is based on the PW* family of solvers from the "Efficient Field
2024 Sensitive Pointer Analysis for C" paper.
2025 It works by iterating over all the graph nodes, processing the complex
2026 constraints and propagating the copy constraints, until everything stops
2027 changed. This corresponds to steps 6-8 in the solving list given above. */
2030 solve_graph (constraint_graph_t graph
)
2032 unsigned int size
= VEC_length (varinfo_t
, varmap
);
2037 changed
= sbitmap_alloc (size
);
2038 sbitmap_zero (changed
);
2040 /* Mark all initial non-collapsed nodes as changed. */
2041 for (i
= 0; i
< size
; i
++)
2043 varinfo_t ivi
= get_varinfo (i
);
2044 if (find (i
) == i
&& !bitmap_empty_p (ivi
->solution
)
2045 && ((graph
->succs
[i
] && !bitmap_empty_p (graph
->succs
[i
]))
2046 || VEC_length (constraint_t
, graph
->complex[i
]) > 0))
2048 SET_BIT (changed
, i
);
2053 /* Allocate a bitmap to be used to store the changed bits. */
2054 pts
= BITMAP_ALLOC (&pta_obstack
);
2056 while (changed_count
> 0)
2059 struct topo_info
*ti
= init_topo_info ();
2062 bitmap_obstack_initialize (&iteration_obstack
);
2064 compute_topo_order (graph
, ti
);
2066 while (VEC_length (unsigned, ti
->topo_order
) != 0)
2069 i
= VEC_pop (unsigned, ti
->topo_order
);
2071 /* If this variable is not a representative, skip it. */
2075 /* In certain indirect cycle cases, we may merge this
2076 variable to another. */
2077 if (eliminate_indirect_cycles (i
) && find (i
) != i
)
2080 /* If the node has changed, we need to process the
2081 complex constraints and outgoing edges again. */
2082 if (TEST_BIT (changed
, i
))
2087 VEC(constraint_t
,heap
) *complex = graph
->complex[i
];
2088 bool solution_empty
;
2090 RESET_BIT (changed
, i
);
2093 /* Compute the changed set of solution bits. */
2094 bitmap_and_compl (pts
, get_varinfo (i
)->solution
,
2095 get_varinfo (i
)->oldsolution
);
2097 if (bitmap_empty_p (pts
))
2100 bitmap_ior_into (get_varinfo (i
)->oldsolution
, pts
);
2102 solution
= get_varinfo (i
)->solution
;
2103 solution_empty
= bitmap_empty_p (solution
);
2105 /* Process the complex constraints */
2106 for (j
= 0; VEC_iterate (constraint_t
, complex, j
, c
); j
++)
2108 /* The only complex constraint that can change our
2109 solution to non-empty, given an empty solution,
2110 is a constraint where the lhs side is receiving
2111 some set from elsewhere. */
2112 if (!solution_empty
|| c
->lhs
.type
!= DEREF
)
2113 do_complex_constraint (graph
, c
, pts
);
2116 solution_empty
= bitmap_empty_p (solution
);
2118 if (!solution_empty
)
2122 /* Propagate solution to all successors. */
2123 EXECUTE_IF_IN_NONNULL_BITMAP (graph
->succs
[i
],
2129 unsigned int to
= find (j
);
2130 tmp
= get_varinfo (to
)->solution
;
2133 /* Don't try to propagate to ourselves. */
2137 flag
= set_union_with_increment (tmp
, pts
, 0);
2141 get_varinfo (to
)->solution
= tmp
;
2142 if (!TEST_BIT (changed
, to
))
2144 SET_BIT (changed
, to
);
2152 free_topo_info (ti
);
2153 bitmap_obstack_release (&iteration_obstack
);
2157 sbitmap_free (changed
);
2158 bitmap_obstack_release (&oldpta_obstack
);
2161 /* Map from trees to variable infos. */
2162 static struct pointer_map_t
*vi_for_tree
;
2165 /* Insert ID as the variable id for tree T in the vi_for_tree map. */
2168 insert_vi_for_tree (tree t
, varinfo_t vi
)
2170 void **slot
= pointer_map_insert (vi_for_tree
, t
);
2172 gcc_assert (*slot
== NULL
);
2176 /* Find the variable info for tree T in VI_FOR_TREE. If T does not
2177 exist in the map, return NULL, otherwise, return the varinfo we found. */
2180 lookup_vi_for_tree (tree t
)
2182 void **slot
= pointer_map_contains (vi_for_tree
, t
);
2186 return (varinfo_t
) *slot
;
2189 /* Return a printable name for DECL */
2192 alias_get_name (tree decl
)
2194 const char *res
= get_name (decl
);
2196 int num_printed
= 0;
2205 if (TREE_CODE (decl
) == SSA_NAME
)
2207 num_printed
= asprintf (&temp
, "%s_%u",
2208 alias_get_name (SSA_NAME_VAR (decl
)),
2209 SSA_NAME_VERSION (decl
));
2211 else if (DECL_P (decl
))
2213 num_printed
= asprintf (&temp
, "D.%u", DECL_UID (decl
));
2215 if (num_printed
> 0)
2217 res
= ggc_strdup (temp
);
2223 /* Find the variable id for tree T in the map.
2224 If T doesn't exist in the map, create an entry for it and return it. */
2227 get_vi_for_tree (tree t
)
2229 void **slot
= pointer_map_contains (vi_for_tree
, t
);
2231 return get_varinfo (create_variable_info_for (t
, alias_get_name (t
)));
2233 return (varinfo_t
) *slot
;
2236 /* Get a constraint expression from an SSA_VAR_P node. */
2238 static struct constraint_expr
2239 get_constraint_exp_from_ssa_var (tree t
)
2241 struct constraint_expr cexpr
;
2243 gcc_assert (SSA_VAR_P (t
) || DECL_P (t
));
2245 /* For parameters, get at the points-to set for the actual parm
2247 if (TREE_CODE (t
) == SSA_NAME
2248 && TREE_CODE (SSA_NAME_VAR (t
)) == PARM_DECL
2249 && default_def (SSA_NAME_VAR (t
)) == t
)
2250 return get_constraint_exp_from_ssa_var (SSA_NAME_VAR (t
));
2252 cexpr
.type
= SCALAR
;
2254 cexpr
.var
= get_vi_for_tree (t
)->id
;
2255 /* If we determine the result is "anything", and we know this is readonly,
2256 say it points to readonly memory instead. */
2257 if (cexpr
.var
== anything_id
&& TREE_READONLY (t
))
2259 cexpr
.type
= ADDRESSOF
;
2260 cexpr
.var
= readonly_id
;
2267 /* Process a completed constraint T, and add it to the constraint
2271 process_constraint (constraint_t t
)
2273 struct constraint_expr rhs
= t
->rhs
;
2274 struct constraint_expr lhs
= t
->lhs
;
2276 gcc_assert (rhs
.var
< VEC_length (varinfo_t
, varmap
));
2277 gcc_assert (lhs
.var
< VEC_length (varinfo_t
, varmap
));
2279 if (lhs
.type
== DEREF
)
2280 get_varinfo (lhs
.var
)->directly_dereferenced
= true;
2281 if (rhs
.type
== DEREF
)
2282 get_varinfo (rhs
.var
)->directly_dereferenced
= true;
2284 if (!use_field_sensitive
)
2290 /* ANYTHING == ANYTHING is pointless. */
2291 if (lhs
.var
== anything_id
&& rhs
.var
== anything_id
)
2294 /* If we have &ANYTHING = something, convert to SOMETHING = &ANYTHING) */
2295 else if (lhs
.var
== anything_id
&& lhs
.type
== ADDRESSOF
)
2300 process_constraint (t
);
2302 /* This can happen in our IR with things like n->a = *p */
2303 else if (rhs
.type
== DEREF
&& lhs
.type
== DEREF
&& rhs
.var
!= anything_id
)
2305 /* Split into tmp = *rhs, *lhs = tmp */
2306 tree rhsdecl
= get_varinfo (rhs
.var
)->decl
;
2307 tree pointertype
= TREE_TYPE (rhsdecl
);
2308 tree pointedtotype
= TREE_TYPE (pointertype
);
2309 tree tmpvar
= create_tmp_var_raw (pointedtotype
, "doubledereftmp");
2310 struct constraint_expr tmplhs
= get_constraint_exp_from_ssa_var (tmpvar
);
2312 /* If this is an aggregate of known size, we should have passed
2313 this off to do_structure_copy, and it should have broken it
2315 gcc_assert (!AGGREGATE_TYPE_P (pointedtotype
)
2316 || get_varinfo (rhs
.var
)->is_unknown_size_var
);
2318 process_constraint (new_constraint (tmplhs
, rhs
));
2319 process_constraint (new_constraint (lhs
, tmplhs
));
2323 gcc_assert (rhs
.type
!= ADDRESSOF
|| rhs
.offset
== 0);
2324 VEC_safe_push (constraint_t
, heap
, constraints
, t
);
2328 /* Return true if T is a variable of a type that could contain
2332 could_have_pointers (tree t
)
2334 tree type
= TREE_TYPE (t
);
2336 if (POINTER_TYPE_P (type
)
2337 || AGGREGATE_TYPE_P (type
)
2338 || TREE_CODE (type
) == COMPLEX_TYPE
)
2344 /* Return the position, in bits, of FIELD_DECL from the beginning of its
2347 static unsigned HOST_WIDE_INT
2348 bitpos_of_field (const tree fdecl
)
2351 if (TREE_CODE (DECL_FIELD_OFFSET (fdecl
)) != INTEGER_CST
2352 || TREE_CODE (DECL_FIELD_BIT_OFFSET (fdecl
)) != INTEGER_CST
)
2355 return (tree_low_cst (DECL_FIELD_OFFSET (fdecl
), 1) * 8)
2356 + tree_low_cst (DECL_FIELD_BIT_OFFSET (fdecl
), 1);
2360 /* Return true if an access to [ACCESSPOS, ACCESSSIZE]
2361 overlaps with a field at [FIELDPOS, FIELDSIZE] */
2364 offset_overlaps_with_access (const unsigned HOST_WIDE_INT fieldpos
,
2365 const unsigned HOST_WIDE_INT fieldsize
,
2366 const unsigned HOST_WIDE_INT accesspos
,
2367 const unsigned HOST_WIDE_INT accesssize
)
2369 if (fieldpos
== accesspos
&& fieldsize
== accesssize
)
2371 if (accesspos
>= fieldpos
&& accesspos
< (fieldpos
+ fieldsize
))
2373 if (accesspos
< fieldpos
&& (accesspos
+ accesssize
> fieldpos
))
2379 /* Given a COMPONENT_REF T, return the constraint_expr for it. */
2382 get_constraint_for_component_ref (tree t
, VEC(ce_s
, heap
) **results
)
2385 HOST_WIDE_INT bitsize
= -1;
2386 HOST_WIDE_INT bitmaxsize
= -1;
2387 HOST_WIDE_INT bitpos
;
2389 struct constraint_expr
*result
;
2390 unsigned int beforelength
= VEC_length (ce_s
, *results
);
2392 /* Some people like to do cute things like take the address of
2395 while (!SSA_VAR_P (forzero
) && !CONSTANT_CLASS_P (forzero
))
2396 forzero
= TREE_OPERAND (forzero
, 0);
2398 if (CONSTANT_CLASS_P (forzero
) && integer_zerop (forzero
))
2400 struct constraint_expr temp
;
2403 temp
.var
= integer_id
;
2405 VEC_safe_push (ce_s
, heap
, *results
, &temp
);
2409 t
= get_ref_base_and_extent (t
, &bitpos
, &bitsize
, &bitmaxsize
);
2411 /* String constants are readonly, so there is nothing to really do
2413 if (TREE_CODE (t
) == STRING_CST
)
2416 get_constraint_for (t
, results
);
2417 result
= VEC_last (ce_s
, *results
);
2418 result
->offset
= bitpos
;
2420 gcc_assert (beforelength
+ 1 == VEC_length (ce_s
, *results
));
2422 /* This can also happen due to weird offsetof type macros. */
2423 if (TREE_CODE (t
) != ADDR_EXPR
&& result
->type
== ADDRESSOF
)
2424 result
->type
= SCALAR
;
2426 if (result
->type
== SCALAR
)
2428 /* In languages like C, you can access one past the end of an
2429 array. You aren't allowed to dereference it, so we can
2430 ignore this constraint. When we handle pointer subtraction,
2431 we may have to do something cute here. */
2433 if (result
->offset
< get_varinfo (result
->var
)->fullsize
2436 /* It's also not true that the constraint will actually start at the
2437 right offset, it may start in some padding. We only care about
2438 setting the constraint to the first actual field it touches, so
2441 for (curr
= get_varinfo (result
->var
); curr
; curr
= curr
->next
)
2443 if (offset_overlaps_with_access (curr
->offset
, curr
->size
,
2444 result
->offset
, bitmaxsize
))
2446 result
->var
= curr
->id
;
2450 /* assert that we found *some* field there. The user couldn't be
2451 accessing *only* padding. */
2452 /* Still the user could access one past the end of an array
2453 embedded in a struct resulting in accessing *only* padding. */
2454 gcc_assert (curr
|| TREE_CODE (TREE_TYPE (orig_t
)) == ARRAY_TYPE
2455 || ref_contains_array_ref (orig_t
));
2457 else if (bitmaxsize
== 0)
2459 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
2460 fprintf (dump_file
, "Access to zero-sized part of variable,"
2464 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
2465 fprintf (dump_file
, "Access to past the end of variable, ignoring\n");
2472 /* Dereference the constraint expression CONS, and return the result.
2473 DEREF (ADDRESSOF) = SCALAR
2474 DEREF (SCALAR) = DEREF
2475 DEREF (DEREF) = (temp = DEREF1; result = DEREF(temp))
2476 This is needed so that we can handle dereferencing DEREF constraints. */
2479 do_deref (VEC (ce_s
, heap
) **constraints
)
2481 struct constraint_expr
*c
;
2484 for (i
= 0; VEC_iterate (ce_s
, *constraints
, i
, c
); i
++)
2486 if (c
->type
== SCALAR
)
2488 else if (c
->type
== ADDRESSOF
)
2490 else if (c
->type
== DEREF
)
2492 tree tmpvar
= create_tmp_var_raw (ptr_type_node
, "dereftmp");
2493 struct constraint_expr tmplhs
= get_constraint_exp_from_ssa_var (tmpvar
);
2494 process_constraint (new_constraint (tmplhs
, *c
));
2495 c
->var
= tmplhs
.var
;
2502 /* Create a nonlocal variable of TYPE to represent nonlocals we can
2506 create_nonlocal_var (tree type
)
2508 tree nonlocal
= create_tmp_var_raw (type
, "NONLOCAL");
2510 if (referenced_vars
)
2511 add_referenced_var (nonlocal
);
2513 DECL_EXTERNAL (nonlocal
) = 1;
2517 /* Given a tree T, return the constraint expression for it. */
2520 get_constraint_for (tree t
, VEC (ce_s
, heap
) **results
)
2522 struct constraint_expr temp
;
2524 /* x = integer is all glommed to a single variable, which doesn't
2525 point to anything by itself. That is, of course, unless it is an
2526 integer constant being treated as a pointer, in which case, we
2527 will return that this is really the addressof anything. This
2528 happens below, since it will fall into the default case. The only
2529 case we know something about an integer treated like a pointer is
2530 when it is the NULL pointer, and then we just say it points to
2532 if (TREE_CODE (t
) == INTEGER_CST
2533 && !POINTER_TYPE_P (TREE_TYPE (t
)))
2535 temp
.var
= integer_id
;
2538 VEC_safe_push (ce_s
, heap
, *results
, &temp
);
2541 else if (TREE_CODE (t
) == INTEGER_CST
2542 && integer_zerop (t
))
2544 temp
.var
= nothing_id
;
2545 temp
.type
= ADDRESSOF
;
2547 VEC_safe_push (ce_s
, heap
, *results
, &temp
);
2551 switch (TREE_CODE_CLASS (TREE_CODE (t
)))
2553 case tcc_expression
:
2555 switch (TREE_CODE (t
))
2559 struct constraint_expr
*c
;
2561 tree exp
= TREE_OPERAND (t
, 0);
2562 tree pttype
= TREE_TYPE (TREE_TYPE (t
));
2564 get_constraint_for (exp
, results
);
2566 /* Make sure we capture constraints to all elements
2568 if ((handled_component_p (exp
)
2569 && ref_contains_array_ref (exp
))
2570 || TREE_CODE (TREE_TYPE (exp
)) == ARRAY_TYPE
)
2572 struct constraint_expr
*origrhs
;
2574 struct constraint_expr tmp
;
2576 if (VEC_length (ce_s
, *results
) == 0)
2579 gcc_assert (VEC_length (ce_s
, *results
) == 1);
2580 origrhs
= VEC_last (ce_s
, *results
);
2582 VEC_pop (ce_s
, *results
);
2583 origvar
= get_varinfo (origrhs
->var
);
2584 for (; origvar
; origvar
= origvar
->next
)
2586 tmp
.var
= origvar
->id
;
2587 VEC_safe_push (ce_s
, heap
, *results
, &tmp
);
2590 else if (VEC_length (ce_s
, *results
) == 1
2591 && (AGGREGATE_TYPE_P (pttype
)
2592 || TREE_CODE (pttype
) == COMPLEX_TYPE
))
2594 struct constraint_expr
*origrhs
;
2596 struct constraint_expr tmp
;
2598 gcc_assert (VEC_length (ce_s
, *results
) == 1);
2599 origrhs
= VEC_last (ce_s
, *results
);
2601 VEC_pop (ce_s
, *results
);
2602 origvar
= get_varinfo (origrhs
->var
);
2603 for (; origvar
; origvar
= origvar
->next
)
2605 tmp
.var
= origvar
->id
;
2606 VEC_safe_push (ce_s
, heap
, *results
, &tmp
);
2610 for (i
= 0; VEC_iterate (ce_s
, *results
, i
, c
); i
++)
2612 if (c
->type
== DEREF
)
2615 c
->type
= ADDRESSOF
;
2621 /* XXX: In interprocedural mode, if we didn't have the
2622 body, we would need to do *each pointer argument =
2624 if (call_expr_flags (t
) & (ECF_MALLOC
| ECF_MAY_BE_ALLOCA
))
2627 tree heapvar
= heapvar_lookup (t
);
2629 if (heapvar
== NULL
)
2631 heapvar
= create_tmp_var_raw (ptr_type_node
, "HEAP");
2632 DECL_EXTERNAL (heapvar
) = 1;
2633 if (referenced_vars
)
2634 add_referenced_var (heapvar
);
2635 heapvar_insert (t
, heapvar
);
2638 temp
.var
= create_variable_info_for (heapvar
,
2639 alias_get_name (heapvar
));
2641 vi
= get_varinfo (temp
.var
);
2642 vi
->is_artificial_var
= 1;
2643 vi
->is_heap_var
= 1;
2644 temp
.type
= ADDRESSOF
;
2646 VEC_safe_push (ce_s
, heap
, *results
, &temp
);
2651 temp
.var
= escaped_vars_id
;
2654 VEC_safe_push (ce_s
, heap
, *results
, &temp
);
2660 temp
.type
= ADDRESSOF
;
2661 temp
.var
= anything_id
;
2663 VEC_safe_push (ce_s
, heap
, *results
, &temp
);
2670 switch (TREE_CODE (t
))
2674 get_constraint_for (TREE_OPERAND (t
, 0), results
);
2679 case ARRAY_RANGE_REF
:
2681 get_constraint_for_component_ref (t
, results
);
2685 temp
.type
= ADDRESSOF
;
2686 temp
.var
= anything_id
;
2688 VEC_safe_push (ce_s
, heap
, *results
, &temp
);
2695 switch (TREE_CODE (t
))
2699 case NON_LVALUE_EXPR
:
2701 tree op
= TREE_OPERAND (t
, 0);
2703 /* Cast from non-pointer to pointers are bad news for us.
2704 Anything else, we see through */
2705 if (!(POINTER_TYPE_P (TREE_TYPE (t
))
2706 && ! POINTER_TYPE_P (TREE_TYPE (op
))))
2708 get_constraint_for (op
, results
);
2716 temp
.type
= ADDRESSOF
;
2717 temp
.var
= anything_id
;
2719 VEC_safe_push (ce_s
, heap
, *results
, &temp
);
2724 case tcc_exceptional
:
2726 switch (TREE_CODE (t
))
2730 get_constraint_for (PHI_RESULT (t
), results
);
2736 struct constraint_expr temp
;
2737 temp
= get_constraint_exp_from_ssa_var (t
);
2738 VEC_safe_push (ce_s
, heap
, *results
, &temp
);
2744 temp
.type
= ADDRESSOF
;
2745 temp
.var
= anything_id
;
2747 VEC_safe_push (ce_s
, heap
, *results
, &temp
);
2752 case tcc_declaration
:
2754 struct constraint_expr temp
;
2755 temp
= get_constraint_exp_from_ssa_var (t
);
2756 VEC_safe_push (ce_s
, heap
, *results
, &temp
);
2761 temp
.type
= ADDRESSOF
;
2762 temp
.var
= anything_id
;
2764 VEC_safe_push (ce_s
, heap
, *results
, &temp
);
2771 /* Handle the structure copy case where we have a simple structure copy
2772 between LHS and RHS that is of SIZE (in bits)
2774 For each field of the lhs variable (lhsfield)
2775 For each field of the rhs variable at lhsfield.offset (rhsfield)
2776 add the constraint lhsfield = rhsfield
2778 If we fail due to some kind of type unsafety or other thing we
2779 can't handle, return false. We expect the caller to collapse the
2780 variable in that case. */
2783 do_simple_structure_copy (const struct constraint_expr lhs
,
2784 const struct constraint_expr rhs
,
2785 const unsigned HOST_WIDE_INT size
)
2787 varinfo_t p
= get_varinfo (lhs
.var
);
2788 unsigned HOST_WIDE_INT pstart
, last
;
2790 last
= p
->offset
+ size
;
2791 for (; p
&& p
->offset
< last
; p
= p
->next
)
2794 struct constraint_expr templhs
= lhs
;
2795 struct constraint_expr temprhs
= rhs
;
2796 unsigned HOST_WIDE_INT fieldoffset
;
2798 templhs
.var
= p
->id
;
2799 q
= get_varinfo (temprhs
.var
);
2800 fieldoffset
= p
->offset
- pstart
;
2801 q
= first_vi_for_offset (q
, q
->offset
+ fieldoffset
);
2804 temprhs
.var
= q
->id
;
2805 process_constraint (new_constraint (templhs
, temprhs
));
2811 /* Handle the structure copy case where we have a structure copy between a
2812 aggregate on the LHS and a dereference of a pointer on the RHS
2813 that is of SIZE (in bits)
2815 For each field of the lhs variable (lhsfield)
2816 rhs.offset = lhsfield->offset
2817 add the constraint lhsfield = rhs
2821 do_rhs_deref_structure_copy (const struct constraint_expr lhs
,
2822 const struct constraint_expr rhs
,
2823 const unsigned HOST_WIDE_INT size
)
2825 varinfo_t p
= get_varinfo (lhs
.var
);
2826 unsigned HOST_WIDE_INT pstart
,last
;
2828 last
= p
->offset
+ size
;
2830 for (; p
&& p
->offset
< last
; p
= p
->next
)
2833 struct constraint_expr templhs
= lhs
;
2834 struct constraint_expr temprhs
= rhs
;
2835 unsigned HOST_WIDE_INT fieldoffset
;
2838 if (templhs
.type
== SCALAR
)
2839 templhs
.var
= p
->id
;
2841 templhs
.offset
= p
->offset
;
2843 q
= get_varinfo (temprhs
.var
);
2844 fieldoffset
= p
->offset
- pstart
;
2845 temprhs
.offset
+= fieldoffset
;
2846 process_constraint (new_constraint (templhs
, temprhs
));
2850 /* Handle the structure copy case where we have a structure copy
2851 between a aggregate on the RHS and a dereference of a pointer on
2852 the LHS that is of SIZE (in bits)
2854 For each field of the rhs variable (rhsfield)
2855 lhs.offset = rhsfield->offset
2856 add the constraint lhs = rhsfield
2860 do_lhs_deref_structure_copy (const struct constraint_expr lhs
,
2861 const struct constraint_expr rhs
,
2862 const unsigned HOST_WIDE_INT size
)
2864 varinfo_t p
= get_varinfo (rhs
.var
);
2865 unsigned HOST_WIDE_INT pstart
,last
;
2867 last
= p
->offset
+ size
;
2869 for (; p
&& p
->offset
< last
; p
= p
->next
)
2872 struct constraint_expr templhs
= lhs
;
2873 struct constraint_expr temprhs
= rhs
;
2874 unsigned HOST_WIDE_INT fieldoffset
;
2877 if (temprhs
.type
== SCALAR
)
2878 temprhs
.var
= p
->id
;
2880 temprhs
.offset
= p
->offset
;
2882 q
= get_varinfo (templhs
.var
);
2883 fieldoffset
= p
->offset
- pstart
;
2884 templhs
.offset
+= fieldoffset
;
2885 process_constraint (new_constraint (templhs
, temprhs
));
2889 /* Sometimes, frontends like to give us bad type information. This
2890 function will collapse all the fields from VAR to the end of VAR,
2891 into VAR, so that we treat those fields as a single variable.
2892 We return the variable they were collapsed into. */
2895 collapse_rest_of_var (unsigned int var
)
2897 varinfo_t currvar
= get_varinfo (var
);
2900 for (field
= currvar
->next
; field
; field
= field
->next
)
2903 fprintf (dump_file
, "Type safety: Collapsing var %s into %s\n",
2904 field
->name
, currvar
->name
);
2906 gcc_assert (!field
->collapsed_to
);
2907 field
->collapsed_to
= currvar
;
2910 currvar
->next
= NULL
;
2911 currvar
->size
= currvar
->fullsize
- currvar
->offset
;
2916 /* Handle aggregate copies by expanding into copies of the respective
2917 fields of the structures. */
2920 do_structure_copy (tree lhsop
, tree rhsop
)
2922 struct constraint_expr lhs
, rhs
, tmp
;
2923 VEC (ce_s
, heap
) *lhsc
= NULL
, *rhsc
= NULL
;
2925 unsigned HOST_WIDE_INT lhssize
;
2926 unsigned HOST_WIDE_INT rhssize
;
2928 get_constraint_for (lhsop
, &lhsc
);
2929 get_constraint_for (rhsop
, &rhsc
);
2930 gcc_assert (VEC_length (ce_s
, lhsc
) == 1);
2931 gcc_assert (VEC_length (ce_s
, rhsc
) == 1);
2932 lhs
= *(VEC_last (ce_s
, lhsc
));
2933 rhs
= *(VEC_last (ce_s
, rhsc
));
2935 VEC_free (ce_s
, heap
, lhsc
);
2936 VEC_free (ce_s
, heap
, rhsc
);
2938 /* If we have special var = x, swap it around. */
2939 if (lhs
.var
<= integer_id
&& !(get_varinfo (rhs
.var
)->is_special_var
))
2946 /* This is fairly conservative for the RHS == ADDRESSOF case, in that it's
2947 possible it's something we could handle. However, most cases falling
2948 into this are dealing with transparent unions, which are slightly
2950 if (rhs
.type
== ADDRESSOF
&& !(get_varinfo (rhs
.var
)->is_special_var
))
2952 rhs
.type
= ADDRESSOF
;
2953 rhs
.var
= anything_id
;
2956 /* If the RHS is a special var, or an addressof, set all the LHS fields to
2957 that special var. */
2958 if (rhs
.var
<= integer_id
)
2960 for (p
= get_varinfo (lhs
.var
); p
; p
= p
->next
)
2962 struct constraint_expr templhs
= lhs
;
2963 struct constraint_expr temprhs
= rhs
;
2965 if (templhs
.type
== SCALAR
)
2966 templhs
.var
= p
->id
;
2968 templhs
.offset
+= p
->offset
;
2969 process_constraint (new_constraint (templhs
, temprhs
));
2974 tree rhstype
= TREE_TYPE (rhsop
);
2975 tree lhstype
= TREE_TYPE (lhsop
);
2979 lhstypesize
= DECL_P (lhsop
) ? DECL_SIZE (lhsop
) : TYPE_SIZE (lhstype
);
2980 rhstypesize
= DECL_P (rhsop
) ? DECL_SIZE (rhsop
) : TYPE_SIZE (rhstype
);
2982 /* If we have a variably sized types on the rhs or lhs, and a deref
2983 constraint, add the constraint, lhsconstraint = &ANYTHING.
2984 This is conservatively correct because either the lhs is an unknown
2985 sized var (if the constraint is SCALAR), or the lhs is a DEREF
2986 constraint, and every variable it can point to must be unknown sized
2987 anyway, so we don't need to worry about fields at all. */
2988 if ((rhs
.type
== DEREF
&& TREE_CODE (rhstypesize
) != INTEGER_CST
)
2989 || (lhs
.type
== DEREF
&& TREE_CODE (lhstypesize
) != INTEGER_CST
))
2991 rhs
.var
= anything_id
;
2992 rhs
.type
= ADDRESSOF
;
2994 process_constraint (new_constraint (lhs
, rhs
));
2998 /* The size only really matters insofar as we don't set more or less of
2999 the variable. If we hit an unknown size var, the size should be the
3000 whole darn thing. */
3001 if (get_varinfo (rhs
.var
)->is_unknown_size_var
)
3004 rhssize
= TREE_INT_CST_LOW (rhstypesize
);
3006 if (get_varinfo (lhs
.var
)->is_unknown_size_var
)
3009 lhssize
= TREE_INT_CST_LOW (lhstypesize
);
3012 if (rhs
.type
== SCALAR
&& lhs
.type
== SCALAR
)
3014 if (!do_simple_structure_copy (lhs
, rhs
, MIN (lhssize
, rhssize
)))
3016 lhs
.var
= collapse_rest_of_var (lhs
.var
);
3017 rhs
.var
= collapse_rest_of_var (rhs
.var
);
3022 process_constraint (new_constraint (lhs
, rhs
));
3025 else if (lhs
.type
!= DEREF
&& rhs
.type
== DEREF
)
3026 do_rhs_deref_structure_copy (lhs
, rhs
, MIN (lhssize
, rhssize
));
3027 else if (lhs
.type
== DEREF
&& rhs
.type
!= DEREF
)
3028 do_lhs_deref_structure_copy (lhs
, rhs
, MIN (lhssize
, rhssize
));
3031 tree pointedtotype
= lhstype
;
3034 gcc_assert (rhs
.type
== DEREF
&& lhs
.type
== DEREF
);
3035 tmpvar
= create_tmp_var_raw (pointedtotype
, "structcopydereftmp");
3036 do_structure_copy (tmpvar
, rhsop
);
3037 do_structure_copy (lhsop
, tmpvar
);
3043 /* Update related alias information kept in AI. This is used when
3044 building name tags, alias sets and deciding grouping heuristics.
3045 STMT is the statement to process. This function also updates
3046 ADDRESSABLE_VARS. */
3049 update_alias_info (tree stmt
, struct alias_info
*ai
)
3052 use_operand_p use_p
;
3054 enum escape_type stmt_escape_type
= is_escape_site (stmt
);
3057 if (stmt_escape_type
== ESCAPE_TO_CALL
3058 || stmt_escape_type
== ESCAPE_TO_PURE_CONST
)
3060 ai
->num_calls_found
++;
3061 if (stmt_escape_type
== ESCAPE_TO_PURE_CONST
)
3062 ai
->num_pure_const_calls_found
++;
3065 /* Mark all the variables whose address are taken by the statement. */
3066 addr_taken
= addresses_taken (stmt
);
3069 bitmap_ior_into (addressable_vars
, addr_taken
);
3071 /* If STMT is an escape point, all the addresses taken by it are
3073 if (stmt_escape_type
!= NO_ESCAPE
)
3078 EXECUTE_IF_SET_IN_BITMAP (addr_taken
, 0, i
, bi
)
3080 tree rvar
= referenced_var (i
);
3081 if (!unmodifiable_var_p (rvar
))
3082 mark_call_clobbered (rvar
, stmt_escape_type
);
3087 /* Process each operand use. If an operand may be aliased, keep
3088 track of how many times it's being used. For pointers, determine
3089 whether they are dereferenced by the statement, or whether their
3090 value escapes, etc. */
3091 FOR_EACH_PHI_OR_STMT_USE (use_p
, stmt
, iter
, SSA_OP_USE
)
3095 struct ptr_info_def
*pi
;
3096 bool is_store
, is_potential_deref
;
3097 unsigned num_uses
, num_derefs
;
3099 op
= USE_FROM_PTR (use_p
);
3101 /* If STMT is a PHI node, OP may be an ADDR_EXPR. If so, add it
3102 to the set of addressable variables. */
3103 if (TREE_CODE (op
) == ADDR_EXPR
)
3105 gcc_assert (TREE_CODE (stmt
) == PHI_NODE
);
3107 /* PHI nodes don't have annotations for pinning the set
3108 of addresses taken, so we collect them here.
3110 FIXME, should we allow PHI nodes to have annotations
3111 so that they can be treated like regular statements?
3112 Currently, they are treated as second-class
3114 add_to_addressable_set (TREE_OPERAND (op
, 0), &addressable_vars
);
3118 /* Ignore constants. */
3119 if (TREE_CODE (op
) != SSA_NAME
)
3122 var
= SSA_NAME_VAR (op
);
3123 v_ann
= var_ann (var
);
3125 /* The base variable of an ssa name must be a GIMPLE register, and thus
3126 it cannot be aliased. */
3127 gcc_assert (!may_be_aliased (var
));
3129 /* We are only interested in pointers. */
3130 if (!POINTER_TYPE_P (TREE_TYPE (op
)))
3133 pi
= get_ptr_info (op
);
3135 /* Add OP to AI->PROCESSED_PTRS, if it's not there already. */
3136 if (!TEST_BIT (ai
->ssa_names_visited
, SSA_NAME_VERSION (op
)))
3138 SET_BIT (ai
->ssa_names_visited
, SSA_NAME_VERSION (op
));
3139 VEC_safe_push (tree
, heap
, ai
->processed_ptrs
, op
);
3142 /* If STMT is a PHI node, then it will not have pointer
3143 dereferences and it will not be an escape point. */
3144 if (TREE_CODE (stmt
) == PHI_NODE
)
3147 /* Determine whether OP is a dereferenced pointer, and if STMT
3148 is an escape point, whether OP escapes. */
3149 count_uses_and_derefs (op
, stmt
, &num_uses
, &num_derefs
, &is_store
);
3151 /* Handle a corner case involving address expressions of the
3152 form '&PTR->FLD'. The problem with these expressions is that
3153 they do not represent a dereference of PTR. However, if some
3154 other transformation propagates them into an INDIRECT_REF
3155 expression, we end up with '*(&PTR->FLD)' which is folded
3158 So, if the original code had no other dereferences of PTR,
3159 the aliaser will not create memory tags for it, and when
3160 &PTR->FLD gets propagated to INDIRECT_REF expressions, the
3161 memory operations will receive no V_MAY_DEF/VUSE operands.
3163 One solution would be to have count_uses_and_derefs consider
3164 &PTR->FLD a dereference of PTR. But that is wrong, since it
3165 is not really a dereference but an offset calculation.
3167 What we do here is to recognize these special ADDR_EXPR
3168 nodes. Since these expressions are never GIMPLE values (they
3169 are not GIMPLE invariants), they can only appear on the RHS
3170 of an assignment and their base address is always an
3171 INDIRECT_REF expression. */
3172 is_potential_deref
= false;
3173 if (TREE_CODE (stmt
) == MODIFY_EXPR
3174 && TREE_CODE (TREE_OPERAND (stmt
, 1)) == ADDR_EXPR
3175 && !is_gimple_val (TREE_OPERAND (stmt
, 1)))
3177 /* If the RHS if of the form &PTR->FLD and PTR == OP, then
3178 this represents a potential dereference of PTR. */
3179 tree rhs
= TREE_OPERAND (stmt
, 1);
3180 tree base
= get_base_address (TREE_OPERAND (rhs
, 0));
3181 if (TREE_CODE (base
) == INDIRECT_REF
3182 && TREE_OPERAND (base
, 0) == op
)
3183 is_potential_deref
= true;
3186 if (num_derefs
> 0 || is_potential_deref
)
3188 /* Mark OP as dereferenced. In a subsequent pass,
3189 dereferenced pointers that point to a set of
3190 variables will be assigned a name tag to alias
3191 all the variables OP points to. */
3192 pi
->is_dereferenced
= 1;
3194 /* Keep track of how many time we've dereferenced each
3196 NUM_REFERENCES_INC (v_ann
);
3198 /* If this is a store operation, mark OP as being
3199 dereferenced to store, otherwise mark it as being
3200 dereferenced to load. */
3202 bitmap_set_bit (ai
->dereferenced_ptrs_store
, DECL_UID (var
));
3204 bitmap_set_bit (ai
->dereferenced_ptrs_load
, DECL_UID (var
));
3207 if (stmt_escape_type
!= NO_ESCAPE
&& num_derefs
< num_uses
)
3209 /* If STMT is an escape point and STMT contains at
3210 least one direct use of OP, then the value of OP
3211 escapes and so the pointed-to variables need to
3212 be marked call-clobbered. */
3213 pi
->value_escapes_p
= 1;
3214 pi
->escape_mask
|= stmt_escape_type
;
3216 /* If the statement makes a function call, assume
3217 that pointer OP will be dereferenced in a store
3218 operation inside the called function. */
3219 if (get_call_expr_in (stmt
)
3220 || stmt_escape_type
== ESCAPE_STORED_IN_GLOBAL
)
3222 bitmap_set_bit (ai
->dereferenced_ptrs_store
, DECL_UID (var
));
3223 pi
->is_dereferenced
= 1;
3228 if (TREE_CODE (stmt
) == PHI_NODE
)
3231 /* Update reference counter for definitions to any
3232 potentially aliased variable. This is used in the alias
3233 grouping heuristics. */
3234 FOR_EACH_SSA_TREE_OPERAND (op
, stmt
, iter
, SSA_OP_DEF
)
3236 tree var
= SSA_NAME_VAR (op
);
3237 var_ann_t ann
= var_ann (var
);
3238 bitmap_set_bit (ai
->written_vars
, DECL_UID (var
));
3239 if (may_be_aliased (var
))
3240 NUM_REFERENCES_INC (ann
);
3244 /* Mark variables in V_MAY_DEF operands as being written to. */
3245 FOR_EACH_SSA_TREE_OPERAND (op
, stmt
, iter
, SSA_OP_VIRTUAL_DEFS
)
3247 tree var
= DECL_P (op
) ? op
: SSA_NAME_VAR (op
);
3248 bitmap_set_bit (ai
->written_vars
, DECL_UID (var
));
3252 /* Handle pointer arithmetic EXPR when creating aliasing constraints.
3253 Expressions of the type PTR + CST can be handled in two ways:
3255 1- If the constraint for PTR is ADDRESSOF for a non-structure
3256 variable, then we can use it directly because adding or
3257 subtracting a constant may not alter the original ADDRESSOF
3258 constraint (i.e., pointer arithmetic may not legally go outside
3259 an object's boundaries).
3261 2- If the constraint for PTR is ADDRESSOF for a structure variable,
3262 then if CST is a compile-time constant that can be used as an
3263 offset, we can determine which sub-variable will be pointed-to
3266 Return true if the expression is handled. For any other kind of
3267 expression, return false so that each operand can be added as a
3268 separate constraint by the caller. */
3271 handle_ptr_arith (VEC (ce_s
, heap
) *lhsc
, tree expr
)
3274 struct constraint_expr
*c
, *c2
;
3277 VEC (ce_s
, heap
) *temp
= NULL
;
3278 unsigned HOST_WIDE_INT rhsoffset
= 0;
3280 if (TREE_CODE (expr
) != PLUS_EXPR
3281 && TREE_CODE (expr
) != MINUS_EXPR
)
3284 op0
= TREE_OPERAND (expr
, 0);
3285 op1
= TREE_OPERAND (expr
, 1);
3287 get_constraint_for (op0
, &temp
);
3288 if (POINTER_TYPE_P (TREE_TYPE (op0
))
3289 && host_integerp (op1
, 1)
3290 && TREE_CODE (expr
) == PLUS_EXPR
)
3292 if ((TREE_INT_CST_LOW (op1
) * BITS_PER_UNIT
) / BITS_PER_UNIT
3293 != TREE_INT_CST_LOW (op1
))
3295 rhsoffset
= TREE_INT_CST_LOW (op1
) * BITS_PER_UNIT
;
3301 for (i
= 0; VEC_iterate (ce_s
, lhsc
, i
, c
); i
++)
3302 for (j
= 0; VEC_iterate (ce_s
, temp
, j
, c2
); j
++)
3304 if (c2
->type
== ADDRESSOF
&& rhsoffset
!= 0)
3306 varinfo_t temp
= get_varinfo (c2
->var
);
3308 /* An access one after the end of an array is valid,
3309 so simply punt on accesses we cannot resolve. */
3310 temp
= first_vi_for_offset (temp
, rhsoffset
);
3317 c2
->offset
= rhsoffset
;
3318 process_constraint (new_constraint (*c
, *c2
));
3321 VEC_free (ce_s
, heap
, temp
);
3327 /* Walk statement T setting up aliasing constraints according to the
3328 references found in T. This function is the main part of the
3329 constraint builder. AI points to auxiliary alias information used
3330 when building alias sets and computing alias grouping heuristics. */
3333 find_func_aliases (tree origt
)
3336 VEC(ce_s
, heap
) *lhsc
= NULL
;
3337 VEC(ce_s
, heap
) *rhsc
= NULL
;
3338 struct constraint_expr
*c
;
3340 if (TREE_CODE (t
) == RETURN_EXPR
&& TREE_OPERAND (t
, 0))
3341 t
= TREE_OPERAND (t
, 0);
3343 /* Now build constraints expressions. */
3344 if (TREE_CODE (t
) == PHI_NODE
)
3346 gcc_assert (!AGGREGATE_TYPE_P (TREE_TYPE (PHI_RESULT (t
))));
3348 /* Only care about pointers and structures containing
3350 if (could_have_pointers (PHI_RESULT (t
)))
3355 /* For a phi node, assign all the arguments to
3357 get_constraint_for (PHI_RESULT (t
), &lhsc
);
3358 for (i
= 0; i
< PHI_NUM_ARGS (t
); i
++)
3361 tree strippedrhs
= PHI_ARG_DEF (t
, i
);
3363 STRIP_NOPS (strippedrhs
);
3364 rhstype
= TREE_TYPE (strippedrhs
);
3365 get_constraint_for (PHI_ARG_DEF (t
, i
), &rhsc
);
3367 for (j
= 0; VEC_iterate (ce_s
, lhsc
, j
, c
); j
++)
3369 struct constraint_expr
*c2
;
3370 while (VEC_length (ce_s
, rhsc
) > 0)
3372 c2
= VEC_last (ce_s
, rhsc
);
3373 process_constraint (new_constraint (*c
, *c2
));
3374 VEC_pop (ce_s
, rhsc
);
3380 /* In IPA mode, we need to generate constraints to pass call
3381 arguments through their calls. There are two case, either a
3382 modify_expr when we are returning a value, or just a plain
3383 call_expr when we are not. */
3384 else if (in_ipa_mode
3385 && ((TREE_CODE (t
) == MODIFY_EXPR
3386 && TREE_CODE (TREE_OPERAND (t
, 1)) == CALL_EXPR
3387 && !(call_expr_flags (TREE_OPERAND (t
, 1))
3388 & (ECF_MALLOC
| ECF_MAY_BE_ALLOCA
)))
3389 || (TREE_CODE (t
) == CALL_EXPR
3390 && !(call_expr_flags (t
)
3391 & (ECF_MALLOC
| ECF_MAY_BE_ALLOCA
)))))
3399 if (TREE_CODE (t
) == MODIFY_EXPR
)
3401 lhsop
= TREE_OPERAND (t
, 0);
3402 rhsop
= TREE_OPERAND (t
, 1);
3409 decl
= get_callee_fndecl (rhsop
);
3411 /* If we can directly resolve the function being called, do so.
3412 Otherwise, it must be some sort of indirect expression that
3413 we should still be able to handle. */
3416 fi
= get_vi_for_tree (decl
);
3420 decl
= TREE_OPERAND (rhsop
, 0);
3421 fi
= get_vi_for_tree (decl
);
3424 /* Assign all the passed arguments to the appropriate incoming
3425 parameters of the function. */
3426 arglist
= TREE_OPERAND (rhsop
, 1);
3428 for (;arglist
; arglist
= TREE_CHAIN (arglist
))
3430 tree arg
= TREE_VALUE (arglist
);
3431 struct constraint_expr lhs
;
3432 struct constraint_expr
*rhsp
;
3434 get_constraint_for (arg
, &rhsc
);
3435 if (TREE_CODE (decl
) != FUNCTION_DECL
)
3444 lhs
.var
= first_vi_for_offset (fi
, i
)->id
;
3447 while (VEC_length (ce_s
, rhsc
) != 0)
3449 rhsp
= VEC_last (ce_s
, rhsc
);
3450 process_constraint (new_constraint (lhs
, *rhsp
));
3451 VEC_pop (ce_s
, rhsc
);
3456 /* If we are returning a value, assign it to the result. */
3459 struct constraint_expr rhs
;
3460 struct constraint_expr
*lhsp
;
3463 get_constraint_for (lhsop
, &lhsc
);
3464 if (TREE_CODE (decl
) != FUNCTION_DECL
)
3473 rhs
.var
= first_vi_for_offset (fi
, i
)->id
;
3476 for (j
= 0; VEC_iterate (ce_s
, lhsc
, j
, lhsp
); j
++)
3477 process_constraint (new_constraint (*lhsp
, rhs
));
3480 /* Otherwise, just a regular assignment statement. */
3481 else if (TREE_CODE (t
) == MODIFY_EXPR
)
3483 tree lhsop
= TREE_OPERAND (t
, 0);
3484 tree rhsop
= TREE_OPERAND (t
, 1);
3487 if ((AGGREGATE_TYPE_P (TREE_TYPE (lhsop
))
3488 || TREE_CODE (TREE_TYPE (lhsop
)) == COMPLEX_TYPE
)
3489 && (AGGREGATE_TYPE_P (TREE_TYPE (rhsop
))
3490 || TREE_CODE (TREE_TYPE (lhsop
)) == COMPLEX_TYPE
))
3492 do_structure_copy (lhsop
, rhsop
);
3496 /* Only care about operations with pointers, structures
3497 containing pointers, dereferences, and call expressions. */
3498 if (could_have_pointers (lhsop
)
3499 || TREE_CODE (rhsop
) == CALL_EXPR
)
3501 get_constraint_for (lhsop
, &lhsc
);
3502 switch (TREE_CODE_CLASS (TREE_CODE (rhsop
)))
3504 /* RHS that consist of unary operations,
3505 exceptional types, or bare decls/constants, get
3506 handled directly by get_constraint_for. */
3508 case tcc_declaration
:
3510 case tcc_exceptional
:
3511 case tcc_expression
:
3516 get_constraint_for (rhsop
, &rhsc
);
3517 for (j
= 0; VEC_iterate (ce_s
, lhsc
, j
, c
); j
++)
3519 struct constraint_expr
*c2
;
3522 for (k
= 0; VEC_iterate (ce_s
, rhsc
, k
, c2
); k
++)
3523 process_constraint (new_constraint (*c
, *c2
));
3531 /* For pointer arithmetic of the form
3532 PTR + CST, we can simply use PTR's
3533 constraint because pointer arithmetic is
3534 not allowed to go out of bounds. */
3535 if (handle_ptr_arith (lhsc
, rhsop
))
3540 /* Otherwise, walk each operand. Notice that we
3541 can't use the operand interface because we need
3542 to process expressions other than simple operands
3543 (e.g. INDIRECT_REF, ADDR_EXPR, CALL_EXPR). */
3545 for (i
= 0; i
< TREE_CODE_LENGTH (TREE_CODE (rhsop
)); i
++)
3547 tree op
= TREE_OPERAND (rhsop
, i
);
3550 gcc_assert (VEC_length (ce_s
, rhsc
) == 0);
3551 get_constraint_for (op
, &rhsc
);
3552 for (j
= 0; VEC_iterate (ce_s
, lhsc
, j
, c
); j
++)
3554 struct constraint_expr
*c2
;
3555 while (VEC_length (ce_s
, rhsc
) > 0)
3557 c2
= VEC_last (ce_s
, rhsc
);
3558 process_constraint (new_constraint (*c
, *c2
));
3559 VEC_pop (ce_s
, rhsc
);
3568 /* After promoting variables and computing aliasing we will
3569 need to re-scan most statements. FIXME: Try to minimize the
3570 number of statements re-scanned. It's not really necessary to
3571 re-scan *all* statements. */
3572 mark_stmt_modified (origt
);
3573 VEC_free (ce_s
, heap
, rhsc
);
3574 VEC_free (ce_s
, heap
, lhsc
);
3578 /* Find the first varinfo in the same variable as START that overlaps with
3580 Effectively, walk the chain of fields for the variable START to find the
3581 first field that overlaps with OFFSET.
3582 Return NULL if we can't find one. */
3585 first_vi_for_offset (varinfo_t start
, unsigned HOST_WIDE_INT offset
)
3587 varinfo_t curr
= start
;
3590 /* We may not find a variable in the field list with the actual
3591 offset when when we have glommed a structure to a variable.
3592 In that case, however, offset should still be within the size
3594 if (offset
>= curr
->offset
&& offset
< (curr
->offset
+ curr
->size
))
3602 /* Insert the varinfo FIELD into the field list for BASE, at the front
3606 insert_into_field_list (varinfo_t base
, varinfo_t field
)
3608 varinfo_t prev
= base
;
3609 varinfo_t curr
= base
->next
;
3615 /* Insert the varinfo FIELD into the field list for BASE, ordered by
3619 insert_into_field_list_sorted (varinfo_t base
, varinfo_t field
)
3621 varinfo_t prev
= base
;
3622 varinfo_t curr
= base
->next
;
3633 if (field
->offset
<= curr
->offset
)
3638 field
->next
= prev
->next
;
3643 /* qsort comparison function for two fieldoff's PA and PB */
3646 fieldoff_compare (const void *pa
, const void *pb
)
3648 const fieldoff_s
*foa
= (const fieldoff_s
*)pa
;
3649 const fieldoff_s
*fob
= (const fieldoff_s
*)pb
;
3650 HOST_WIDE_INT foasize
, fobsize
;
3652 if (foa
->offset
!= fob
->offset
)
3653 return foa
->offset
- fob
->offset
;
3655 foasize
= TREE_INT_CST_LOW (foa
->size
);
3656 fobsize
= TREE_INT_CST_LOW (fob
->size
);
3657 return foasize
- fobsize
;
3660 /* Sort a fieldstack according to the field offset and sizes. */
3662 sort_fieldstack (VEC(fieldoff_s
,heap
) *fieldstack
)
3664 qsort (VEC_address (fieldoff_s
, fieldstack
),
3665 VEC_length (fieldoff_s
, fieldstack
),
3666 sizeof (fieldoff_s
),
3670 /* Given a TYPE, and a vector of field offsets FIELDSTACK, push all the fields
3671 of TYPE onto fieldstack, recording their offsets along the way.
3672 OFFSET is used to keep track of the offset in this entire structure, rather
3673 than just the immediately containing structure. Returns the number
3675 HAS_UNION is set to true if we find a union type as a field of
3679 push_fields_onto_fieldstack (tree type
, VEC(fieldoff_s
,heap
) **fieldstack
,
3680 HOST_WIDE_INT offset
, bool *has_union
)
3684 unsigned HOST_WIDE_INT minoffset
= -1;
3686 if (TREE_CODE (type
) == COMPLEX_TYPE
)
3688 fieldoff_s
*real_part
, *img_part
;
3689 real_part
= VEC_safe_push (fieldoff_s
, heap
, *fieldstack
, NULL
);
3690 real_part
->type
= TREE_TYPE (type
);
3691 real_part
->size
= TYPE_SIZE (TREE_TYPE (type
));
3692 real_part
->offset
= offset
;
3693 real_part
->decl
= NULL_TREE
;
3695 img_part
= VEC_safe_push (fieldoff_s
, heap
, *fieldstack
, NULL
);
3696 img_part
->type
= TREE_TYPE (type
);
3697 img_part
->size
= TYPE_SIZE (TREE_TYPE (type
));
3698 img_part
->offset
= offset
+ TREE_INT_CST_LOW (TYPE_SIZE (TREE_TYPE (type
)));
3699 img_part
->decl
= NULL_TREE
;
3704 if (TREE_CODE (type
) == ARRAY_TYPE
)
3706 tree sz
= TYPE_SIZE (type
);
3707 tree elsz
= TYPE_SIZE (TREE_TYPE (type
));
3712 || ! host_integerp (sz
, 1)
3713 || TREE_INT_CST_LOW (sz
) == 0
3715 || ! host_integerp (elsz
, 1)
3716 || TREE_INT_CST_LOW (elsz
) == 0)
3719 nr
= TREE_INT_CST_LOW (sz
) / TREE_INT_CST_LOW (elsz
);
3720 if (nr
> SALIAS_MAX_ARRAY_ELEMENTS
)
3723 for (i
= 0; i
< nr
; ++i
)
3729 && (TREE_CODE (TREE_TYPE (type
)) == QUAL_UNION_TYPE
3730 || TREE_CODE (TREE_TYPE (type
)) == UNION_TYPE
))
3733 if (!AGGREGATE_TYPE_P (TREE_TYPE (type
))) /* var_can_have_subvars */
3735 else if (!(pushed
= push_fields_onto_fieldstack
3736 (TREE_TYPE (type
), fieldstack
,
3737 offset
+ i
* TREE_INT_CST_LOW (elsz
), has_union
)))
3738 /* Empty structures may have actual size, like in C++. So
3739 see if we didn't push any subfields and the size is
3740 nonzero, push the field onto the stack */
3747 pair
= VEC_safe_push (fieldoff_s
, heap
, *fieldstack
, NULL
);
3748 pair
->type
= TREE_TYPE (type
);
3750 pair
->decl
= NULL_TREE
;
3751 pair
->offset
= offset
+ i
* TREE_INT_CST_LOW (elsz
);
3761 for (field
= TYPE_FIELDS (type
); field
; field
= TREE_CHAIN (field
))
3762 if (TREE_CODE (field
) == FIELD_DECL
)
3768 && (TREE_CODE (TREE_TYPE (field
)) == QUAL_UNION_TYPE
3769 || TREE_CODE (TREE_TYPE (field
)) == UNION_TYPE
))
3772 if (!var_can_have_subvars (field
))
3774 else if (!(pushed
= push_fields_onto_fieldstack
3775 (TREE_TYPE (field
), fieldstack
,
3776 offset
+ bitpos_of_field (field
), has_union
))
3777 && DECL_SIZE (field
)
3778 && !integer_zerop (DECL_SIZE (field
)))
3779 /* Empty structures may have actual size, like in C++. So
3780 see if we didn't push any subfields and the size is
3781 nonzero, push the field onto the stack */
3788 pair
= VEC_safe_push (fieldoff_s
, heap
, *fieldstack
, NULL
);
3789 pair
->type
= TREE_TYPE (field
);
3790 pair
->size
= DECL_SIZE (field
);
3792 pair
->offset
= offset
+ bitpos_of_field (field
);
3798 if (bitpos_of_field (field
) < minoffset
)
3799 minoffset
= bitpos_of_field (field
);
3802 /* We need to create a fake subvar for empty bases. But _only_ for non-empty
3804 if (minoffset
!= 0 && count
!= 0)
3808 pair
= VEC_safe_push (fieldoff_s
, heap
, *fieldstack
, NULL
);
3809 pair
->type
= void_type_node
;
3810 pair
->size
= build_int_cst (size_type_node
, minoffset
);
3812 pair
->offset
= offset
;
3819 /* Create a constraint from ESCAPED_VARS variable to VI. */
3821 make_constraint_from_escaped (varinfo_t vi
)
3823 struct constraint_expr lhs
, rhs
;
3829 rhs
.var
= escaped_vars_id
;
3832 process_constraint (new_constraint (lhs
, rhs
));
3835 /* Create a constraint to the ESCAPED_VARS variable from constraint
3839 make_constraint_to_escaped (struct constraint_expr rhs
)
3841 struct constraint_expr lhs
;
3843 lhs
.var
= escaped_vars_id
;
3847 process_constraint (new_constraint (lhs
, rhs
));
3850 /* Count the number of arguments DECL has, and set IS_VARARGS to true
3851 if it is a varargs function. */
3854 count_num_arguments (tree decl
, bool *is_varargs
)
3859 for (t
= TYPE_ARG_TYPES (TREE_TYPE (decl
));
3863 if (TREE_VALUE (t
) == void_type_node
)
3873 /* Creation function node for DECL, using NAME, and return the index
3874 of the variable we've created for the function. */
3877 create_function_info_for (tree decl
, const char *name
)
3879 unsigned int index
= VEC_length (varinfo_t
, varmap
);
3883 bool is_varargs
= false;
3885 /* Create the variable info. */
3887 vi
= new_var_info (decl
, index
, name
);
3892 vi
->fullsize
= count_num_arguments (decl
, &is_varargs
) + 1;
3893 insert_vi_for_tree (vi
->decl
, vi
);
3894 VEC_safe_push (varinfo_t
, heap
, varmap
, vi
);
3898 /* If it's varargs, we don't know how many arguments it has, so we
3905 vi
->is_unknown_size_var
= true;
3910 arg
= DECL_ARGUMENTS (decl
);
3912 /* Set up variables for each argument. */
3913 for (i
= 1; i
< vi
->fullsize
; i
++)
3916 const char *newname
;
3918 unsigned int newindex
;
3919 tree argdecl
= decl
;
3924 newindex
= VEC_length (varinfo_t
, varmap
);
3925 asprintf (&tempname
, "%s.arg%d", name
, i
-1);
3926 newname
= ggc_strdup (tempname
);
3929 argvi
= new_var_info (argdecl
, newindex
, newname
);
3930 argvi
->decl
= argdecl
;
3931 VEC_safe_push (varinfo_t
, heap
, varmap
, argvi
);
3934 argvi
->fullsize
= vi
->fullsize
;
3935 argvi
->has_union
= false;
3936 insert_into_field_list_sorted (vi
, argvi
);
3937 stats
.total_vars
++;
3940 insert_vi_for_tree (arg
, argvi
);
3941 arg
= TREE_CHAIN (arg
);
3945 /* Create a variable for the return var. */
3946 if (DECL_RESULT (decl
) != NULL
3947 || !VOID_TYPE_P (TREE_TYPE (TREE_TYPE (decl
))))
3950 const char *newname
;
3952 unsigned int newindex
;
3953 tree resultdecl
= decl
;
3957 if (DECL_RESULT (decl
))
3958 resultdecl
= DECL_RESULT (decl
);
3960 newindex
= VEC_length (varinfo_t
, varmap
);
3961 asprintf (&tempname
, "%s.result", name
);
3962 newname
= ggc_strdup (tempname
);
3965 resultvi
= new_var_info (resultdecl
, newindex
, newname
);
3966 resultvi
->decl
= resultdecl
;
3967 VEC_safe_push (varinfo_t
, heap
, varmap
, resultvi
);
3968 resultvi
->offset
= i
;
3970 resultvi
->fullsize
= vi
->fullsize
;
3971 resultvi
->has_union
= false;
3972 insert_into_field_list_sorted (vi
, resultvi
);
3973 stats
.total_vars
++;
3974 if (DECL_RESULT (decl
))
3975 insert_vi_for_tree (DECL_RESULT (decl
), resultvi
);
3981 /* Return true if FIELDSTACK contains fields that overlap.
3982 FIELDSTACK is assumed to be sorted by offset. */
3985 check_for_overlaps (VEC (fieldoff_s
,heap
) *fieldstack
)
3987 fieldoff_s
*fo
= NULL
;
3989 HOST_WIDE_INT lastoffset
= -1;
3991 for (i
= 0; VEC_iterate (fieldoff_s
, fieldstack
, i
, fo
); i
++)
3993 if (fo
->offset
== lastoffset
)
3995 lastoffset
= fo
->offset
;
4000 /* This function is called through walk_tree to walk global
4001 initializers looking for constraints we need to add to the
4005 find_global_initializers (tree
*tp
, int *walk_subtrees ATTRIBUTE_UNUSED
,
4008 varinfo_t vi
= (varinfo_t
)viv
;
4011 switch (TREE_CODE (t
))
4013 /* Dereferences and addressofs are the only important things
4014 here, and i don't even remember if dereferences are legal
4015 here in initializers. */
4019 struct constraint_expr
*c
;
4022 VEC(ce_s
, heap
) *rhsc
= NULL
;
4023 get_constraint_for (t
, &rhsc
);
4024 for (i
= 0; VEC_iterate (ce_s
, rhsc
, i
, c
); i
++)
4026 struct constraint_expr lhs
;
4031 process_constraint (new_constraint (lhs
, *c
));
4034 VEC_free (ce_s
, heap
, rhsc
);
4038 /* We might not have walked this because we skip
4039 DECL_EXTERNALs during the initial scan. */
4040 if (referenced_vars
)
4043 if (referenced_var_check_and_insert (t
))
4044 mark_sym_for_renaming (t
);
4053 /* Create a varinfo structure for NAME and DECL, and add it to VARMAP.
4054 This will also create any varinfo structures necessary for fields
4058 create_variable_info_for (tree decl
, const char *name
)
4060 unsigned int index
= VEC_length (varinfo_t
, varmap
);
4062 tree
decltype = TREE_TYPE (decl
);
4063 tree declsize
= DECL_P (decl
) ? DECL_SIZE (decl
) : TYPE_SIZE (decltype);
4064 bool notokay
= false;
4066 bool is_global
= DECL_P (decl
) ? is_global_var (decl
) : false;
4067 VEC (fieldoff_s
,heap
) *fieldstack
= NULL
;
4069 if (TREE_CODE (decl
) == FUNCTION_DECL
&& in_ipa_mode
)
4070 return create_function_info_for (decl
, name
);
4072 hasunion
= TREE_CODE (decltype) == UNION_TYPE
4073 || TREE_CODE (decltype) == QUAL_UNION_TYPE
;
4074 if (var_can_have_subvars (decl
) && use_field_sensitive
&& !hasunion
)
4076 push_fields_onto_fieldstack (decltype, &fieldstack
, 0, &hasunion
);
4079 VEC_free (fieldoff_s
, heap
, fieldstack
);
4085 /* If the variable doesn't have subvars, we may end up needing to
4086 sort the field list and create fake variables for all the
4088 vi
= new_var_info (decl
, index
, name
);
4091 vi
->has_union
= hasunion
;
4093 || TREE_CODE (declsize
) != INTEGER_CST
4094 || TREE_CODE (decltype) == UNION_TYPE
4095 || TREE_CODE (decltype) == QUAL_UNION_TYPE
)
4097 vi
->is_unknown_size_var
= true;
4103 vi
->fullsize
= TREE_INT_CST_LOW (declsize
);
4104 vi
->size
= vi
->fullsize
;
4107 insert_vi_for_tree (vi
->decl
, vi
);
4108 VEC_safe_push (varinfo_t
, heap
, varmap
, vi
);
4109 if (is_global
&& (!flag_whole_program
|| !in_ipa_mode
))
4111 make_constraint_from_escaped (vi
);
4113 /* If the variable can't be aliased, there is no point in
4114 putting it in the set of nonlocal vars. */
4115 if (may_be_aliased (vi
->decl
))
4117 struct constraint_expr rhs
;
4119 rhs
.type
= ADDRESSOF
;
4121 make_constraint_to_escaped (rhs
);
4124 if (TREE_CODE (decl
) != FUNCTION_DECL
&& DECL_INITIAL (decl
))
4126 walk_tree_without_duplicates (&DECL_INITIAL (decl
),
4127 find_global_initializers
,
4133 if (use_field_sensitive
4135 && !vi
->is_unknown_size_var
4136 && var_can_have_subvars (decl
)
4137 && VEC_length (fieldoff_s
, fieldstack
) <= MAX_FIELDS_FOR_FIELD_SENSITIVE
)
4139 unsigned int newindex
= VEC_length (varinfo_t
, varmap
);
4140 fieldoff_s
*fo
= NULL
;
4143 for (i
= 0; !notokay
&& VEC_iterate (fieldoff_s
, fieldstack
, i
, fo
); i
++)
4146 || TREE_CODE (fo
->size
) != INTEGER_CST
4154 /* We can't sort them if we have a field with a variable sized type,
4155 which will make notokay = true. In that case, we are going to return
4156 without creating varinfos for the fields anyway, so sorting them is a
4160 sort_fieldstack (fieldstack
);
4161 /* Due to some C++ FE issues, like PR 22488, we might end up
4162 what appear to be overlapping fields even though they,
4163 in reality, do not overlap. Until the C++ FE is fixed,
4164 we will simply disable field-sensitivity for these cases. */
4165 notokay
= check_for_overlaps (fieldstack
);
4169 if (VEC_length (fieldoff_s
, fieldstack
) != 0)
4170 fo
= VEC_index (fieldoff_s
, fieldstack
, 0);
4172 if (fo
== NULL
|| notokay
)
4174 vi
->is_unknown_size_var
= 1;
4177 VEC_free (fieldoff_s
, heap
, fieldstack
);
4181 vi
->size
= TREE_INT_CST_LOW (fo
->size
);
4182 vi
->offset
= fo
->offset
;
4183 for (i
= VEC_length (fieldoff_s
, fieldstack
) - 1;
4184 i
>= 1 && VEC_iterate (fieldoff_s
, fieldstack
, i
, fo
);
4188 const char *newname
= "NULL";
4191 newindex
= VEC_length (varinfo_t
, varmap
);
4195 asprintf (&tempname
, "%s.%s",
4196 vi
->name
, alias_get_name (fo
->decl
));
4198 asprintf (&tempname
, "%s." HOST_WIDE_INT_PRINT_DEC
,
4199 vi
->name
, fo
->offset
);
4200 newname
= ggc_strdup (tempname
);
4203 newvi
= new_var_info (decl
, newindex
, newname
);
4204 newvi
->offset
= fo
->offset
;
4205 newvi
->size
= TREE_INT_CST_LOW (fo
->size
);
4206 newvi
->fullsize
= vi
->fullsize
;
4207 insert_into_field_list (vi
, newvi
);
4208 VEC_safe_push (varinfo_t
, heap
, varmap
, newvi
);
4209 if (is_global
&& (!flag_whole_program
|| !in_ipa_mode
))
4211 /* If the variable can't be aliased, there is no point in
4212 putting it in the set of nonlocal vars. */
4213 if (may_be_aliased (vi
->decl
))
4215 struct constraint_expr rhs
;
4218 rhs
.type
= ADDRESSOF
;
4220 make_constraint_to_escaped (rhs
);
4222 make_constraint_from_escaped (newvi
);
4227 VEC_free (fieldoff_s
, heap
, fieldstack
);
4232 /* Print out the points-to solution for VAR to FILE. */
4235 dump_solution_for_var (FILE *file
, unsigned int var
)
4237 varinfo_t vi
= get_varinfo (var
);
4241 if (find (var
) != var
)
4243 varinfo_t vipt
= get_varinfo (find (var
));
4244 fprintf (file
, "%s = same as %s\n", vi
->name
, vipt
->name
);
4248 fprintf (file
, "%s = { ", vi
->name
);
4249 EXECUTE_IF_SET_IN_BITMAP (vi
->solution
, 0, i
, bi
)
4251 fprintf (file
, "%s ", get_varinfo (i
)->name
);
4253 fprintf (file
, "}\n");
4257 /* Print the points-to solution for VAR to stdout. */
4260 debug_solution_for_var (unsigned int var
)
4262 dump_solution_for_var (stdout
, var
);
4265 /* Create varinfo structures for all of the variables in the
4266 function for intraprocedural mode. */
4269 intra_create_variable_infos (void)
4272 struct constraint_expr lhs
, rhs
;
4273 varinfo_t nonlocal_vi
;
4275 /* For each incoming pointer argument arg, ARG = ESCAPED_VARS or a
4276 dummy variable if flag_argument_noalias > 2. */
4277 for (t
= DECL_ARGUMENTS (current_function_decl
); t
; t
= TREE_CHAIN (t
))
4280 unsigned int arg_id
;
4282 if (!could_have_pointers (t
))
4285 arg_id
= get_vi_for_tree (t
)->id
;
4287 /* With flag_argument_noalias greater than two means that the incoming
4288 argument cannot alias anything except for itself so create a HEAP
4290 if (POINTER_TYPE_P (TREE_TYPE (t
))
4291 && flag_argument_noalias
> 2)
4294 tree heapvar
= heapvar_lookup (t
);
4298 lhs
.var
= get_vi_for_tree (t
)->id
;
4300 if (heapvar
== NULL_TREE
)
4302 heapvar
= create_tmp_var_raw (TREE_TYPE (TREE_TYPE (t
)),
4304 DECL_EXTERNAL (heapvar
) = 1;
4305 if (referenced_vars
)
4306 add_referenced_var (heapvar
);
4307 heapvar_insert (t
, heapvar
);
4310 vi
= get_vi_for_tree (heapvar
);
4311 vi
->is_artificial_var
= 1;
4312 vi
->is_heap_var
= 1;
4314 rhs
.type
= ADDRESSOF
;
4316 for (p
= get_varinfo (lhs
.var
); p
; p
= p
->next
)
4318 struct constraint_expr temp
= lhs
;
4320 process_constraint (new_constraint (temp
, rhs
));
4325 for (p
= get_varinfo (arg_id
); p
; p
= p
->next
)
4326 make_constraint_from_escaped (p
);
4330 nonlocal_all
= create_nonlocal_var (void_type_node
);
4332 /* Create variable info for the nonlocal var if it does not
4334 nonlocal_vars_id
= create_variable_info_for (nonlocal_all
,
4335 get_name (nonlocal_all
));
4336 nonlocal_vi
= get_varinfo (nonlocal_vars_id
);
4337 nonlocal_vi
->is_artificial_var
= 1;
4338 nonlocal_vi
->is_heap_var
= 1;
4339 nonlocal_vi
->is_unknown_size_var
= 1;
4340 nonlocal_vi
->directly_dereferenced
= true;
4342 rhs
.var
= nonlocal_vars_id
;
4343 rhs
.type
= ADDRESSOF
;
4346 lhs
.var
= escaped_vars_id
;
4350 process_constraint (new_constraint (lhs
, rhs
));
4353 /* Structure used to put solution bitmaps in a hashtable so they can
4354 be shared among variables with the same points-to set. */
4356 typedef struct shared_bitmap_info
4360 } *shared_bitmap_info_t
;
4362 static htab_t shared_bitmap_table
;
4364 /* Hash function for a shared_bitmap_info_t */
4367 shared_bitmap_hash (const void *p
)
4369 const shared_bitmap_info_t bi
= (shared_bitmap_info_t
) p
;
4370 return bi
->hashcode
;
4373 /* Equality function for two shared_bitmap_info_t's. */
4376 shared_bitmap_eq (const void *p1
, const void *p2
)
4378 const shared_bitmap_info_t sbi1
= (shared_bitmap_info_t
) p1
;
4379 const shared_bitmap_info_t sbi2
= (shared_bitmap_info_t
) p2
;
4380 return bitmap_equal_p (sbi1
->pt_vars
, sbi2
->pt_vars
);
4383 /* Lookup a bitmap in the shared bitmap hashtable, and return an already
4384 existing instance if there is one, NULL otherwise. */
4387 shared_bitmap_lookup (bitmap pt_vars
)
4390 struct shared_bitmap_info sbi
;
4392 sbi
.pt_vars
= pt_vars
;
4393 sbi
.hashcode
= bitmap_hash (pt_vars
);
4395 slot
= htab_find_slot_with_hash (shared_bitmap_table
, &sbi
,
4396 sbi
.hashcode
, NO_INSERT
);
4400 return ((shared_bitmap_info_t
) *slot
)->pt_vars
;
4404 /* Add a bitmap to the shared bitmap hashtable. */
4407 shared_bitmap_add (bitmap pt_vars
)
4410 shared_bitmap_info_t sbi
= XNEW (struct shared_bitmap_info
);
4412 sbi
->pt_vars
= pt_vars
;
4413 sbi
->hashcode
= bitmap_hash (pt_vars
);
4415 slot
= htab_find_slot_with_hash (shared_bitmap_table
, sbi
,
4416 sbi
->hashcode
, INSERT
);
4417 gcc_assert (!*slot
);
4418 *slot
= (void *) sbi
;
4422 /* Set bits in INTO corresponding to the variable uids in solution set
4423 FROM, which came from variable PTR.
4424 For variables that are actually dereferenced, we also use type
4425 based alias analysis to prune the points-to sets. */
4428 set_uids_in_ptset (tree ptr
, bitmap into
, bitmap from
)
4433 unsigned HOST_WIDE_INT ptr_alias_set
= get_alias_set (TREE_TYPE (ptr
));
4435 EXECUTE_IF_SET_IN_BITMAP (from
, 0, i
, bi
)
4437 varinfo_t vi
= get_varinfo (i
);
4438 unsigned HOST_WIDE_INT var_alias_set
;
4440 /* The only artificial variables that are allowed in a may-alias
4441 set are heap variables. */
4442 if (vi
->is_artificial_var
&& !vi
->is_heap_var
)
4445 if (vi
->has_union
&& get_subvars_for_var (vi
->decl
) != NULL
)
4447 /* Variables containing unions may need to be converted to
4448 their SFT's, because SFT's can have unions and we cannot. */
4449 for (sv
= get_subvars_for_var (vi
->decl
); sv
; sv
= sv
->next
)
4450 bitmap_set_bit (into
, DECL_UID (sv
->var
));
4452 else if (TREE_CODE (vi
->decl
) == VAR_DECL
4453 || TREE_CODE (vi
->decl
) == PARM_DECL
4454 || TREE_CODE (vi
->decl
) == RESULT_DECL
)
4456 if (var_can_have_subvars (vi
->decl
)
4457 && get_subvars_for_var (vi
->decl
))
4459 /* If VI->DECL is an aggregate for which we created
4460 SFTs, add the SFT corresponding to VI->OFFSET. */
4461 tree sft
= get_subvar_at (vi
->decl
, vi
->offset
);
4464 var_alias_set
= get_alias_set (sft
);
4465 if (!vi
->directly_dereferenced
4466 || alias_sets_conflict_p (ptr_alias_set
, var_alias_set
))
4467 bitmap_set_bit (into
, DECL_UID (sft
));
4472 /* Otherwise, just add VI->DECL to the alias set.
4473 Don't type prune artificial vars. */
4474 if (vi
->is_artificial_var
)
4475 bitmap_set_bit (into
, DECL_UID (vi
->decl
));
4478 var_alias_set
= get_alias_set (vi
->decl
);
4479 if (!vi
->directly_dereferenced
4480 || alias_sets_conflict_p (ptr_alias_set
, var_alias_set
))
4481 bitmap_set_bit (into
, DECL_UID (vi
->decl
));
4489 static bool have_alias_info
= false;
4491 /* Given a pointer variable P, fill in its points-to set, or return
4492 false if we can't. */
4495 find_what_p_points_to (tree p
)
4500 if (!have_alias_info
)
4503 /* For parameters, get at the points-to set for the actual parm
4505 if (TREE_CODE (p
) == SSA_NAME
4506 && TREE_CODE (SSA_NAME_VAR (p
)) == PARM_DECL
4507 && default_def (SSA_NAME_VAR (p
)) == p
)
4508 lookup_p
= SSA_NAME_VAR (p
);
4510 vi
= lookup_vi_for_tree (lookup_p
);
4514 if (vi
->is_artificial_var
)
4517 /* See if this is a field or a structure. */
4518 if (vi
->size
!= vi
->fullsize
)
4520 /* Nothing currently asks about structure fields directly,
4521 but when they do, we need code here to hand back the
4523 if (!var_can_have_subvars (vi
->decl
)
4524 || get_subvars_for_var (vi
->decl
) == NULL
)
4529 struct ptr_info_def
*pi
= get_ptr_info (p
);
4532 bitmap finished_solution
;
4535 /* This variable may have been collapsed, let's get the real
4537 vi
= get_varinfo (find (vi
->id
));
4539 /* Translate artificial variables into SSA_NAME_PTR_INFO
4541 EXECUTE_IF_SET_IN_BITMAP (vi
->solution
, 0, i
, bi
)
4543 varinfo_t vi
= get_varinfo (i
);
4545 if (vi
->is_artificial_var
)
4547 /* FIXME. READONLY should be handled better so that
4548 flow insensitive aliasing can disregard writable
4550 if (vi
->id
== nothing_id
)
4552 else if (vi
->id
== anything_id
)
4553 pi
->pt_anything
= 1;
4554 else if (vi
->id
== readonly_id
)
4555 pi
->pt_anything
= 1;
4556 else if (vi
->id
== integer_id
)
4557 pi
->pt_anything
= 1;
4558 else if (vi
->is_heap_var
)
4559 pi
->pt_global_mem
= 1;
4563 if (pi
->pt_anything
)
4566 finished_solution
= BITMAP_GGC_ALLOC ();
4567 set_uids_in_ptset (vi
->decl
, finished_solution
, vi
->solution
);
4568 result
= shared_bitmap_lookup (finished_solution
);
4572 shared_bitmap_add (finished_solution
);
4573 pi
->pt_vars
= finished_solution
;
4577 pi
->pt_vars
= result
;
4578 bitmap_clear (finished_solution
);
4581 if (bitmap_empty_p (pi
->pt_vars
))
4593 /* Dump points-to information to OUTFILE. */
4596 dump_sa_points_to_info (FILE *outfile
)
4600 fprintf (outfile
, "\nPoints-to sets\n\n");
4602 if (dump_flags
& TDF_STATS
)
4604 fprintf (outfile
, "Stats:\n");
4605 fprintf (outfile
, "Total vars: %d\n", stats
.total_vars
);
4606 fprintf (outfile
, "Non-pointer vars: %d\n",
4607 stats
.nonpointer_vars
);
4608 fprintf (outfile
, "Statically unified vars: %d\n",
4609 stats
.unified_vars_static
);
4610 fprintf (outfile
, "Dynamically unified vars: %d\n",
4611 stats
.unified_vars_dynamic
);
4612 fprintf (outfile
, "Iterations: %d\n", stats
.iterations
);
4613 fprintf (outfile
, "Number of edges: %d\n", stats
.num_edges
);
4614 fprintf (outfile
, "Number of implicit edges: %d\n",
4615 stats
.num_implicit_edges
);
4618 for (i
= 0; i
< VEC_length (varinfo_t
, varmap
); i
++)
4619 dump_solution_for_var (outfile
, i
);
4623 /* Debug points-to information to stderr. */
4626 debug_sa_points_to_info (void)
4628 dump_sa_points_to_info (stderr
);
4632 /* Initialize the always-existing constraint variables for NULL
4633 ANYTHING, READONLY, and INTEGER */
4636 init_base_vars (void)
4638 struct constraint_expr lhs
, rhs
;
4640 /* Create the NULL variable, used to represent that a variable points
4642 nothing_tree
= create_tmp_var_raw (void_type_node
, "NULL");
4643 var_nothing
= new_var_info (nothing_tree
, 0, "NULL");
4644 insert_vi_for_tree (nothing_tree
, var_nothing
);
4645 var_nothing
->is_artificial_var
= 1;
4646 var_nothing
->offset
= 0;
4647 var_nothing
->size
= ~0;
4648 var_nothing
->fullsize
= ~0;
4649 var_nothing
->is_special_var
= 1;
4651 VEC_safe_push (varinfo_t
, heap
, varmap
, var_nothing
);
4653 /* Create the ANYTHING variable, used to represent that a variable
4654 points to some unknown piece of memory. */
4655 anything_tree
= create_tmp_var_raw (void_type_node
, "ANYTHING");
4656 var_anything
= new_var_info (anything_tree
, 1, "ANYTHING");
4657 insert_vi_for_tree (anything_tree
, var_anything
);
4658 var_anything
->is_artificial_var
= 1;
4659 var_anything
->size
= ~0;
4660 var_anything
->offset
= 0;
4661 var_anything
->next
= NULL
;
4662 var_anything
->fullsize
= ~0;
4663 var_anything
->is_special_var
= 1;
4666 /* Anything points to anything. This makes deref constraints just
4667 work in the presence of linked list and other p = *p type loops,
4668 by saying that *ANYTHING = ANYTHING. */
4669 VEC_safe_push (varinfo_t
, heap
, varmap
, var_anything
);
4671 lhs
.var
= anything_id
;
4673 rhs
.type
= ADDRESSOF
;
4674 rhs
.var
= anything_id
;
4677 /* This specifically does not use process_constraint because
4678 process_constraint ignores all anything = anything constraints, since all
4679 but this one are redundant. */
4680 VEC_safe_push (constraint_t
, heap
, constraints
, new_constraint (lhs
, rhs
));
4682 /* Create the READONLY variable, used to represent that a variable
4683 points to readonly memory. */
4684 readonly_tree
= create_tmp_var_raw (void_type_node
, "READONLY");
4685 var_readonly
= new_var_info (readonly_tree
, 2, "READONLY");
4686 var_readonly
->is_artificial_var
= 1;
4687 var_readonly
->offset
= 0;
4688 var_readonly
->size
= ~0;
4689 var_readonly
->fullsize
= ~0;
4690 var_readonly
->next
= NULL
;
4691 var_readonly
->is_special_var
= 1;
4692 insert_vi_for_tree (readonly_tree
, var_readonly
);
4694 VEC_safe_push (varinfo_t
, heap
, varmap
, var_readonly
);
4696 /* readonly memory points to anything, in order to make deref
4697 easier. In reality, it points to anything the particular
4698 readonly variable can point to, but we don't track this
4701 lhs
.var
= readonly_id
;
4703 rhs
.type
= ADDRESSOF
;
4704 rhs
.var
= anything_id
;
4707 process_constraint (new_constraint (lhs
, rhs
));
4709 /* Create the INTEGER variable, used to represent that a variable points
4711 integer_tree
= create_tmp_var_raw (void_type_node
, "INTEGER");
4712 var_integer
= new_var_info (integer_tree
, 3, "INTEGER");
4713 insert_vi_for_tree (integer_tree
, var_integer
);
4714 var_integer
->is_artificial_var
= 1;
4715 var_integer
->size
= ~0;
4716 var_integer
->fullsize
= ~0;
4717 var_integer
->offset
= 0;
4718 var_integer
->next
= NULL
;
4719 var_integer
->is_special_var
= 1;
4721 VEC_safe_push (varinfo_t
, heap
, varmap
, var_integer
);
4723 /* INTEGER = ANYTHING, because we don't know where a dereference of
4724 a random integer will point to. */
4726 lhs
.var
= integer_id
;
4728 rhs
.type
= ADDRESSOF
;
4729 rhs
.var
= anything_id
;
4731 process_constraint (new_constraint (lhs
, rhs
));
4733 /* Create the ESCAPED_VARS variable used to represent variables that
4734 escape this function. */
4735 escaped_vars_tree
= create_tmp_var_raw (void_type_node
, "ESCAPED_VARS");
4736 var_escaped_vars
= new_var_info (escaped_vars_tree
, 4, "ESCAPED_VARS");
4737 insert_vi_for_tree (escaped_vars_tree
, var_escaped_vars
);
4738 var_escaped_vars
->is_artificial_var
= 1;
4739 var_escaped_vars
->size
= ~0;
4740 var_escaped_vars
->fullsize
= ~0;
4741 var_escaped_vars
->offset
= 0;
4742 var_escaped_vars
->next
= NULL
;
4743 escaped_vars_id
= 4;
4744 VEC_safe_push (varinfo_t
, heap
, varmap
, var_escaped_vars
);
4746 /* ESCAPED_VARS = *ESCAPED_VARS */
4748 lhs
.var
= escaped_vars_id
;
4751 rhs
.var
= escaped_vars_id
;
4753 process_constraint (new_constraint (lhs
, rhs
));
4757 /* Initialize things necessary to perform PTA */
4760 init_alias_vars (void)
4762 bitmap_obstack_initialize (&pta_obstack
);
4763 bitmap_obstack_initialize (&oldpta_obstack
);
4764 bitmap_obstack_initialize (&predbitmap_obstack
);
4766 constraint_pool
= create_alloc_pool ("Constraint pool",
4767 sizeof (struct constraint
), 30);
4768 variable_info_pool
= create_alloc_pool ("Variable info pool",
4769 sizeof (struct variable_info
), 30);
4770 constraints
= VEC_alloc (constraint_t
, heap
, 8);
4771 varmap
= VEC_alloc (varinfo_t
, heap
, 8);
4772 vi_for_tree
= pointer_map_create ();
4774 memset (&stats
, 0, sizeof (stats
));
4775 shared_bitmap_table
= htab_create (511, shared_bitmap_hash
,
4776 shared_bitmap_eq
, free
);
4780 /* Given a statement STMT, generate necessary constraints to
4781 escaped_vars for the escaping variables. */
4784 find_escape_constraints (tree stmt
)
4786 enum escape_type stmt_escape_type
= is_escape_site (stmt
);
4788 VEC(ce_s
, heap
) *rhsc
= NULL
;
4789 struct constraint_expr
*c
;
4792 if (stmt_escape_type
== NO_ESCAPE
)
4795 if (TREE_CODE (stmt
) == RETURN_EXPR
)
4797 /* Returns are either bare, with an embedded MODIFY_EXPR, or
4798 just a plain old expression. */
4799 if (!TREE_OPERAND (stmt
, 0))
4801 if (TREE_CODE (TREE_OPERAND (stmt
, 0)) == MODIFY_EXPR
)
4802 rhs
= TREE_OPERAND (TREE_OPERAND (stmt
, 0), 1);
4804 rhs
= TREE_OPERAND (stmt
, 0);
4806 get_constraint_for (rhs
, &rhsc
);
4807 for (i
= 0; VEC_iterate (ce_s
, rhsc
, i
, c
); i
++)
4808 make_constraint_to_escaped (*c
);
4809 VEC_free (ce_s
, heap
, rhsc
);
4812 else if (TREE_CODE (stmt
) == ASM_EXPR
)
4814 /* Whatever the inputs of the ASM are, escape. */
4817 for (arg
= ASM_INPUTS (stmt
); arg
; arg
= TREE_CHAIN (arg
))
4820 get_constraint_for (TREE_VALUE (arg
), &rhsc
);
4821 for (i
= 0; VEC_iterate (ce_s
, rhsc
, i
, c
); i
++)
4822 make_constraint_to_escaped (*c
);
4823 VEC_free (ce_s
, heap
, rhsc
);
4827 else if (TREE_CODE (stmt
) == CALL_EXPR
4828 || (TREE_CODE (stmt
) == MODIFY_EXPR
4829 && TREE_CODE (TREE_OPERAND (stmt
, 1)) == CALL_EXPR
))
4831 /* Calls cause all of the arguments passed in to escape. */
4834 if (TREE_CODE (stmt
) == MODIFY_EXPR
)
4835 stmt
= TREE_OPERAND (stmt
, 1);
4836 for (arg
= TREE_OPERAND (stmt
, 1); arg
; arg
= TREE_CHAIN (arg
))
4838 if (POINTER_TYPE_P (TREE_TYPE (TREE_VALUE (arg
))))
4841 get_constraint_for (TREE_VALUE (arg
), &rhsc
);
4842 for (i
= 0; VEC_iterate (ce_s
, rhsc
, i
, c
); i
++)
4843 make_constraint_to_escaped (*c
);
4844 VEC_free (ce_s
, heap
, rhsc
);
4851 gcc_assert (TREE_CODE (stmt
) == MODIFY_EXPR
);
4854 gcc_assert (stmt_escape_type
== ESCAPE_BAD_CAST
4855 || stmt_escape_type
== ESCAPE_STORED_IN_GLOBAL
4856 || stmt_escape_type
== ESCAPE_UNKNOWN
);
4857 rhs
= TREE_OPERAND (stmt
, 1);
4859 /* Look through casts for the real escaping variable.
4860 Constants don't really escape, so ignore them.
4861 Otherwise, whatever escapes must be on our RHS. */
4862 if (TREE_CODE (rhs
) == NOP_EXPR
4863 || TREE_CODE (rhs
) == CONVERT_EXPR
4864 || TREE_CODE (rhs
) == NON_LVALUE_EXPR
)
4866 get_constraint_for (TREE_OPERAND (rhs
, 0), &rhsc
);
4868 else if (CONSTANT_CLASS_P (rhs
))
4872 get_constraint_for (rhs
, &rhsc
);
4874 for (i
= 0; VEC_iterate (ce_s
, rhsc
, i
, c
); i
++)
4875 make_constraint_to_escaped (*c
);
4876 VEC_free (ce_s
, heap
, rhsc
);
4880 /* Remove the REF and ADDRESS edges from GRAPH, as well as all the
4881 predecessor edges. */
4884 remove_preds_and_fake_succs (constraint_graph_t graph
)
4888 /* Clear the implicit ref and address nodes from the successor
4890 for (i
= 0; i
< FIRST_REF_NODE
; i
++)
4892 if (graph
->succs
[i
])
4893 bitmap_clear_range (graph
->succs
[i
], FIRST_REF_NODE
,
4894 FIRST_REF_NODE
* 2);
4897 /* Free the successor list for the non-ref nodes. */
4898 for (i
= FIRST_REF_NODE
; i
< graph
->size
; i
++)
4900 if (graph
->succs
[i
])
4901 BITMAP_FREE (graph
->succs
[i
]);
4904 /* Now reallocate the size of the successor list as, and blow away
4905 the predecessor bitmaps. */
4906 graph
->size
= VEC_length (varinfo_t
, varmap
);
4907 graph
->succs
= xrealloc (graph
->succs
, graph
->size
* sizeof (bitmap
));
4909 free (graph
->implicit_preds
);
4910 graph
->implicit_preds
= NULL
;
4911 free (graph
->preds
);
4912 graph
->preds
= NULL
;
4913 bitmap_obstack_release (&predbitmap_obstack
);
4916 /* Create points-to sets for the current function. See the comments
4917 at the start of the file for an algorithmic overview. */
4920 compute_points_to_sets (struct alias_info
*ai
)
4923 struct scc_info
*si
;
4925 timevar_push (TV_TREE_PTA
);
4928 init_alias_heapvars ();
4930 intra_create_variable_infos ();
4932 /* Now walk all statements and derive aliases. */
4935 block_stmt_iterator bsi
;
4938 for (phi
= phi_nodes (bb
); phi
; phi
= TREE_CHAIN (phi
))
4940 if (is_gimple_reg (PHI_RESULT (phi
)))
4942 find_func_aliases (phi
);
4943 /* Update various related attributes like escaped
4944 addresses, pointer dereferences for loads and stores.
4945 This is used when creating name tags and alias
4947 update_alias_info (phi
, ai
);
4951 for (bsi
= bsi_start (bb
); !bsi_end_p (bsi
); bsi_next (&bsi
))
4953 tree stmt
= bsi_stmt (bsi
);
4955 find_func_aliases (stmt
);
4956 find_escape_constraints (stmt
);
4957 /* Update various related attributes like escaped
4958 addresses, pointer dereferences for loads and stores.
4959 This is used when creating name tags and alias
4961 update_alias_info (stmt
, ai
);
4968 fprintf (dump_file
, "Points-to analysis\n\nConstraints:\n\n");
4969 dump_constraints (dump_file
);
4974 "\nCollapsing static cycles and doing variable "
4977 build_pred_graph ();
4978 si
= perform_var_substitution (graph
);
4979 move_complex_constraints (graph
, si
);
4980 free_var_substitution_info (si
);
4982 build_succ_graph ();
4983 find_indirect_cycles (graph
);
4985 /* Implicit nodes and predecessors are no longer necessary at this
4987 remove_preds_and_fake_succs (graph
);
4990 fprintf (dump_file
, "\nSolving graph:\n");
4992 solve_graph (graph
);
4995 dump_sa_points_to_info (dump_file
);
4996 have_alias_info
= true;
4998 timevar_pop (TV_TREE_PTA
);
5001 /* Delete created points-to sets. */
5004 delete_points_to_sets (void)
5009 htab_delete (shared_bitmap_table
);
5010 if (dump_file
&& (dump_flags
& TDF_STATS
))
5011 fprintf (dump_file
, "Points to sets created:%d\n",
5012 stats
.points_to_sets_created
);
5014 pointer_map_destroy (vi_for_tree
);
5015 bitmap_obstack_release (&pta_obstack
);
5016 VEC_free (constraint_t
, heap
, constraints
);
5018 for (i
= 0; VEC_iterate (varinfo_t
, varmap
, i
, v
); i
++)
5019 VEC_free (constraint_t
, heap
, graph
->complex[i
]);
5020 free (graph
->complex);
5023 free (graph
->succs
);
5024 free (graph
->indirect_cycles
);
5027 VEC_free (varinfo_t
, heap
, varmap
);
5028 free_alloc_pool (variable_info_pool
);
5029 free_alloc_pool (constraint_pool
);
5030 have_alias_info
= false;
5033 /* Return true if we should execute IPA PTA. */
5037 return (flag_unit_at_a_time
!= 0
5039 /* Don't bother doing anything if the program has errors. */
5040 && !(errorcount
|| sorrycount
));
5043 /* Execute the driver for IPA PTA. */
5045 ipa_pta_execute (void)
5048 struct cgraph_node
*node
;
5050 init_alias_heapvars ();
5053 for (node
= cgraph_nodes
; node
; node
= node
->next
)
5055 if (!node
->analyzed
|| cgraph_is_master_clone (node
))
5059 varid
= create_function_info_for (node
->decl
,
5060 cgraph_node_name (node
));
5061 if (node
->local
.externally_visible
)
5063 varinfo_t fi
= get_varinfo (varid
);
5064 for (; fi
; fi
= fi
->next
)
5065 make_constraint_from_escaped (fi
);
5069 for (node
= cgraph_nodes
; node
; node
= node
->next
)
5071 if (node
->analyzed
&& cgraph_is_master_clone (node
))
5073 struct function
*cfun
= DECL_STRUCT_FUNCTION (node
->decl
);
5075 tree old_func_decl
= current_function_decl
;
5078 "Generating constraints for %s\n",
5079 cgraph_node_name (node
));
5081 current_function_decl
= node
->decl
;
5083 FOR_EACH_BB_FN (bb
, cfun
)
5085 block_stmt_iterator bsi
;
5088 for (phi
= phi_nodes (bb
); phi
; phi
= TREE_CHAIN (phi
))
5090 if (is_gimple_reg (PHI_RESULT (phi
)))
5092 find_func_aliases (phi
);
5096 for (bsi
= bsi_start (bb
); !bsi_end_p (bsi
); bsi_next (&bsi
))
5098 tree stmt
= bsi_stmt (bsi
);
5099 find_func_aliases (stmt
);
5102 current_function_decl
= old_func_decl
;
5107 /* Make point to anything. */
5111 build_constraint_graph ();
5115 fprintf (dump_file
, "Points-to analysis\n\nConstraints:\n\n");
5116 dump_constraints (dump_file
);
5121 "\nCollapsing static cycles and doing variable "
5124 find_and_collapse_graph_cycles (graph
, false);
5125 perform_var_substitution (graph
);
5128 fprintf (dump_file
, "\nSolving graph:\n");
5130 solve_graph (graph
);
5133 dump_sa_points_to_info (dump_file
);
5135 delete_alias_heapvars ();
5136 delete_points_to_sets ();
5141 struct tree_opt_pass pass_ipa_pta
=
5144 gate_ipa_pta
, /* gate */
5145 ipa_pta_execute
, /* execute */
5148 0, /* static_pass_number */
5149 TV_IPA_PTA
, /* tv_id */
5150 0, /* properties_required */
5151 0, /* properties_provided */
5152 0, /* properties_destroyed */
5153 0, /* todo_flags_start */
5154 0, /* todo_flags_finish */
5158 /* Initialize the heapvar for statement mapping. */
5160 init_alias_heapvars (void)
5162 if (!heapvar_for_stmt
)
5163 heapvar_for_stmt
= htab_create_ggc (11, tree_map_hash
, tree_map_eq
,
5165 nonlocal_all
= NULL_TREE
;
5169 delete_alias_heapvars (void)
5171 nonlocal_all
= NULL_TREE
;
5172 htab_delete (heapvar_for_stmt
);
5173 heapvar_for_stmt
= NULL
;
5176 #include "gt-tree-ssa-structalias.h"