1 /* Tree based points-to analysis
2 Copyright (C) 2005-2014 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"
29 #include "basic-block.h"
31 #include "stor-layout.h"
33 #include "hash-table.h"
34 #include "tree-ssa-alias.h"
35 #include "internal-fn.h"
36 #include "gimple-expr.h"
39 #include "gimple-iterator.h"
40 #include "gimple-ssa.h"
42 #include "stringpool.h"
43 #include "tree-ssanames.h"
44 #include "tree-into-ssa.h"
47 #include "tree-inline.h"
48 #include "diagnostic-core.h"
50 #include "tree-pass.h"
51 #include "alloc-pool.h"
52 #include "splay-tree.h"
56 /* The idea behind this analyzer is to generate set constraints from the
57 program, then solve the resulting constraints in order to generate the
60 Set constraints are a way of modeling program analysis problems that
61 involve sets. They consist of an inclusion constraint language,
62 describing the variables (each variable is a set) and operations that
63 are involved on the variables, and a set of rules that derive facts
64 from these operations. To solve a system of set constraints, you derive
65 all possible facts under the rules, which gives you the correct sets
68 See "Efficient Field-sensitive pointer analysis for C" by "David
69 J. Pearce and Paul H. J. Kelly and Chris Hankin, at
70 http://citeseer.ist.psu.edu/pearce04efficient.html
72 Also see "Ultra-fast Aliasing Analysis using CLA: A Million Lines
73 of C Code in a Second" by ""Nevin Heintze and Olivier Tardieu" at
74 http://citeseer.ist.psu.edu/heintze01ultrafast.html
76 There are three types of real constraint expressions, DEREF,
77 ADDRESSOF, and SCALAR. Each constraint expression consists
78 of a constraint type, a variable, and an offset.
80 SCALAR is a constraint expression type used to represent x, whether
81 it appears on the LHS or the RHS of a statement.
82 DEREF is a constraint expression type used to represent *x, whether
83 it appears on the LHS or the RHS of a statement.
84 ADDRESSOF is a constraint expression used to represent &x, whether
85 it appears on the LHS or the RHS of a statement.
87 Each pointer variable in the program is assigned an integer id, and
88 each field of a structure variable is assigned an integer id as well.
90 Structure variables are linked to their list of fields through a "next
91 field" in each variable that points to the next field in offset
93 Each variable for a structure field has
95 1. "size", that tells the size in bits of that field.
96 2. "fullsize, that tells the size in bits of the entire structure.
97 3. "offset", that tells the offset in bits from the beginning of the
98 structure to this field.
110 foo.a -> id 1, size 32, offset 0, fullsize 64, next foo.b
111 foo.b -> id 2, size 32, offset 32, fullsize 64, next NULL
112 bar -> id 3, size 32, offset 0, fullsize 32, next NULL
115 In order to solve the system of set constraints, the following is
118 1. Each constraint variable x has a solution set associated with it,
121 2. Constraints are separated into direct, copy, and complex.
122 Direct constraints are ADDRESSOF constraints that require no extra
123 processing, such as P = &Q
124 Copy constraints are those of the form P = Q.
125 Complex constraints are all the constraints involving dereferences
126 and offsets (including offsetted copies).
128 3. All direct constraints of the form P = &Q are processed, such
129 that Q is added to Sol(P)
131 4. All complex constraints for a given constraint variable are stored in a
132 linked list attached to that variable's node.
134 5. A directed graph is built out of the copy constraints. Each
135 constraint variable is a node in the graph, and an edge from
136 Q to P is added for each copy constraint of the form P = Q
138 6. The graph is then walked, and solution sets are
139 propagated along the copy edges, such that an edge from Q to P
140 causes Sol(P) <- Sol(P) union Sol(Q).
142 7. As we visit each node, all complex constraints associated with
143 that node are processed by adding appropriate copy edges to the graph, or the
144 appropriate variables to the solution set.
146 8. The process of walking the graph is iterated until no solution
149 Prior to walking the graph in steps 6 and 7, We perform static
150 cycle elimination on the constraint graph, as well
151 as off-line variable substitution.
153 TODO: Adding offsets to pointer-to-structures can be handled (IE not punted
154 on and turned into anything), but isn't. You can just see what offset
155 inside the pointed-to struct it's going to access.
157 TODO: Constant bounded arrays can be handled as if they were structs of the
158 same number of elements.
160 TODO: Modeling heap and incoming pointers becomes much better if we
161 add fields to them as we discover them, which we could do.
163 TODO: We could handle unions, but to be honest, it's probably not
164 worth the pain or slowdown. */
166 /* IPA-PTA optimizations possible.
168 When the indirect function called is ANYTHING we can add disambiguation
169 based on the function signatures (or simply the parameter count which
170 is the varinfo size). We also do not need to consider functions that
171 do not have their address taken.
173 The is_global_var bit which marks escape points is overly conservative
174 in IPA mode. Split it to is_escape_point and is_global_var - only
175 externally visible globals are escape points in IPA mode. This is
176 also needed to fix the pt_solution_includes_global predicate
177 (and thus ptr_deref_may_alias_global_p).
179 The way we introduce DECL_PT_UID to avoid fixing up all points-to
180 sets in the translation unit when we copy a DECL during inlining
181 pessimizes precision. The advantage is that the DECL_PT_UID keeps
182 compile-time and memory usage overhead low - the points-to sets
183 do not grow or get unshared as they would during a fixup phase.
184 An alternative solution is to delay IPA PTA until after all
185 inlining transformations have been applied.
187 The way we propagate clobber/use information isn't optimized.
188 It should use a new complex constraint that properly filters
189 out local variables of the callee (though that would make
190 the sets invalid after inlining). OTOH we might as well
191 admit defeat to WHOPR and simply do all the clobber/use analysis
192 and propagation after PTA finished but before we threw away
193 points-to information for memory variables. WHOPR and PTA
194 do not play along well anyway - the whole constraint solving
195 would need to be done in WPA phase and it will be very interesting
196 to apply the results to local SSA names during LTRANS phase.
198 We probably should compute a per-function unit-ESCAPE solution
199 propagating it simply like the clobber / uses solutions. The
200 solution can go alongside the non-IPA espaced solution and be
201 used to query which vars escape the unit through a function.
203 We never put function decls in points-to sets so we do not
204 keep the set of called functions for indirect calls.
206 And probably more. */
208 static bool use_field_sensitive
= true;
209 static int in_ipa_mode
= 0;
211 /* Used for predecessor bitmaps. */
212 static bitmap_obstack predbitmap_obstack
;
214 /* Used for points-to sets. */
215 static bitmap_obstack pta_obstack
;
217 /* Used for oldsolution members of variables. */
218 static bitmap_obstack oldpta_obstack
;
220 /* Used for per-solver-iteration bitmaps. */
221 static bitmap_obstack iteration_obstack
;
223 static unsigned int create_variable_info_for (tree
, const char *);
224 typedef struct constraint_graph
*constraint_graph_t
;
225 static void unify_nodes (constraint_graph_t
, unsigned int, unsigned int, bool);
228 typedef struct constraint
*constraint_t
;
231 #define EXECUTE_IF_IN_NONNULL_BITMAP(a, b, c, d) \
233 EXECUTE_IF_SET_IN_BITMAP (a, b, c, d)
235 static struct constraint_stats
237 unsigned int total_vars
;
238 unsigned int nonpointer_vars
;
239 unsigned int unified_vars_static
;
240 unsigned int unified_vars_dynamic
;
241 unsigned int iterations
;
242 unsigned int num_edges
;
243 unsigned int num_implicit_edges
;
244 unsigned int points_to_sets_created
;
249 /* ID of this variable */
252 /* True if this is a variable created by the constraint analysis, such as
253 heap variables and constraints we had to break up. */
254 unsigned int is_artificial_var
: 1;
256 /* True if this is a special variable whose solution set should not be
258 unsigned int is_special_var
: 1;
260 /* True for variables whose size is not known or variable. */
261 unsigned int is_unknown_size_var
: 1;
263 /* True for (sub-)fields that represent a whole variable. */
264 unsigned int is_full_var
: 1;
266 /* True if this is a heap variable. */
267 unsigned int is_heap_var
: 1;
269 /* True if this field may contain pointers. */
270 unsigned int may_have_pointers
: 1;
272 /* True if this field has only restrict qualified pointers. */
273 unsigned int only_restrict_pointers
: 1;
275 /* True if this represents a global variable. */
276 unsigned int is_global_var
: 1;
278 /* True if this represents a IPA function info. */
279 unsigned int is_fn_info
: 1;
281 /* The ID of the variable for the next field in this structure
282 or zero for the last field in this structure. */
285 /* The ID of the variable for the first field in this structure. */
288 /* Offset of this variable, in bits, from the base variable */
289 unsigned HOST_WIDE_INT offset
;
291 /* Size of the variable, in bits. */
292 unsigned HOST_WIDE_INT size
;
294 /* Full size of the base variable, in bits. */
295 unsigned HOST_WIDE_INT fullsize
;
297 /* Name of this variable */
300 /* Tree that this variable is associated with. */
303 /* Points-to set for this variable. */
306 /* Old points-to set for this variable. */
309 typedef struct variable_info
*varinfo_t
;
311 static varinfo_t
first_vi_for_offset (varinfo_t
, unsigned HOST_WIDE_INT
);
312 static varinfo_t
first_or_preceding_vi_for_offset (varinfo_t
,
313 unsigned HOST_WIDE_INT
);
314 static varinfo_t
lookup_vi_for_tree (tree
);
315 static inline bool type_can_have_subvars (const_tree
);
317 /* Pool of variable info structures. */
318 static alloc_pool variable_info_pool
;
320 /* Map varinfo to final pt_solution. */
321 static hash_map
<varinfo_t
, pt_solution
*> *final_solutions
;
322 struct obstack final_solutions_obstack
;
324 /* Table of variable info structures for constraint variables.
325 Indexed directly by variable info id. */
326 static vec
<varinfo_t
> varmap
;
328 /* Return the varmap element N */
330 static inline varinfo_t
331 get_varinfo (unsigned int n
)
336 /* Return the next variable in the list of sub-variables of VI
337 or NULL if VI is the last sub-variable. */
339 static inline varinfo_t
340 vi_next (varinfo_t vi
)
342 return get_varinfo (vi
->next
);
345 /* Static IDs for the special variables. Variable ID zero is unused
346 and used as terminator for the sub-variable chain. */
347 enum { nothing_id
= 1, anything_id
= 2, string_id
= 3,
348 escaped_id
= 4, nonlocal_id
= 5,
349 storedanything_id
= 6, integer_id
= 7 };
351 /* Return a new variable info structure consisting for a variable
352 named NAME, and using constraint graph node NODE. Append it
353 to the vector of variable info structures. */
356 new_var_info (tree t
, const char *name
)
358 unsigned index
= varmap
.length ();
359 varinfo_t ret
= (varinfo_t
) pool_alloc (variable_info_pool
);
364 /* Vars without decl are artificial and do not have sub-variables. */
365 ret
->is_artificial_var
= (t
== NULL_TREE
);
366 ret
->is_special_var
= false;
367 ret
->is_unknown_size_var
= false;
368 ret
->is_full_var
= (t
== NULL_TREE
);
369 ret
->is_heap_var
= false;
370 ret
->may_have_pointers
= true;
371 ret
->only_restrict_pointers
= false;
372 ret
->is_global_var
= (t
== NULL_TREE
);
373 ret
->is_fn_info
= false;
375 ret
->is_global_var
= (is_global_var (t
)
376 /* We have to treat even local register variables
378 || (TREE_CODE (t
) == VAR_DECL
379 && DECL_HARD_REGISTER (t
)));
380 ret
->solution
= BITMAP_ALLOC (&pta_obstack
);
381 ret
->oldsolution
= NULL
;
387 varmap
.safe_push (ret
);
393 /* A map mapping call statements to per-stmt variables for uses
394 and clobbers specific to the call. */
395 static hash_map
<gimple
, varinfo_t
> *call_stmt_vars
;
397 /* Lookup or create the variable for the call statement CALL. */
400 get_call_vi (gimple_call call
)
405 varinfo_t
*slot_p
= &call_stmt_vars
->get_or_insert (call
, &existed
);
409 vi
= new_var_info (NULL_TREE
, "CALLUSED");
413 vi
->is_full_var
= true;
415 vi2
= new_var_info (NULL_TREE
, "CALLCLOBBERED");
419 vi2
->is_full_var
= true;
427 /* Lookup the variable for the call statement CALL representing
428 the uses. Returns NULL if there is nothing special about this call. */
431 lookup_call_use_vi (gimple_call call
)
433 varinfo_t
*slot_p
= call_stmt_vars
->get (call
);
440 /* Lookup the variable for the call statement CALL representing
441 the clobbers. Returns NULL if there is nothing special about this call. */
444 lookup_call_clobber_vi (gimple_call call
)
446 varinfo_t uses
= lookup_call_use_vi (call
);
450 return vi_next (uses
);
453 /* Lookup or create the variable for the call statement CALL representing
457 get_call_use_vi (gimple_call call
)
459 return get_call_vi (call
);
462 /* Lookup or create the variable for the call statement CALL representing
465 static varinfo_t ATTRIBUTE_UNUSED
466 get_call_clobber_vi (gimple_call call
)
468 return vi_next (get_call_vi (call
));
472 typedef enum {SCALAR
, DEREF
, ADDRESSOF
} constraint_expr_type
;
474 /* An expression that appears in a constraint. */
476 struct constraint_expr
478 /* Constraint type. */
479 constraint_expr_type type
;
481 /* Variable we are referring to in the constraint. */
484 /* Offset, in bits, of this constraint from the beginning of
485 variables it ends up referring to.
487 IOW, in a deref constraint, we would deref, get the result set,
488 then add OFFSET to each member. */
489 HOST_WIDE_INT offset
;
492 /* Use 0x8000... as special unknown offset. */
493 #define UNKNOWN_OFFSET HOST_WIDE_INT_MIN
495 typedef struct constraint_expr ce_s
;
496 static void get_constraint_for_1 (tree
, vec
<ce_s
> *, bool, bool);
497 static void get_constraint_for (tree
, vec
<ce_s
> *);
498 static void get_constraint_for_rhs (tree
, vec
<ce_s
> *);
499 static void do_deref (vec
<ce_s
> *);
501 /* Our set constraints are made up of two constraint expressions, one
504 As described in the introduction, our set constraints each represent an
505 operation between set valued variables.
509 struct constraint_expr lhs
;
510 struct constraint_expr rhs
;
513 /* List of constraints that we use to build the constraint graph from. */
515 static vec
<constraint_t
> constraints
;
516 static alloc_pool constraint_pool
;
518 /* The constraint graph is represented as an array of bitmaps
519 containing successor nodes. */
521 struct constraint_graph
523 /* Size of this graph, which may be different than the number of
524 nodes in the variable map. */
527 /* Explicit successors of each node. */
530 /* Implicit predecessors of each node (Used for variable
532 bitmap
*implicit_preds
;
534 /* Explicit predecessors of each node (Used for variable substitution). */
537 /* Indirect cycle representatives, or -1 if the node has no indirect
539 int *indirect_cycles
;
541 /* Representative node for a node. rep[a] == a unless the node has
545 /* Equivalence class representative for a label. This is used for
546 variable substitution. */
549 /* Pointer equivalence label for a node. All nodes with the same
550 pointer equivalence label can be unified together at some point
551 (either during constraint optimization or after the constraint
555 /* Pointer equivalence representative for a label. This is used to
556 handle nodes that are pointer equivalent but not location
557 equivalent. We can unite these once the addressof constraints
558 are transformed into initial points-to sets. */
561 /* Pointer equivalence label for each node, used during variable
563 unsigned int *pointer_label
;
565 /* Location equivalence label for each node, used during location
566 equivalence finding. */
567 unsigned int *loc_label
;
569 /* Pointed-by set for each node, used during location equivalence
570 finding. This is pointed-by rather than pointed-to, because it
571 is constructed using the predecessor graph. */
574 /* Points to sets for pointer equivalence. This is *not* the actual
575 points-to sets for nodes. */
578 /* Bitmap of nodes where the bit is set if the node is a direct
579 node. Used for variable substitution. */
580 sbitmap direct_nodes
;
582 /* Bitmap of nodes where the bit is set if the node is address
583 taken. Used for variable substitution. */
584 bitmap address_taken
;
586 /* Vector of complex constraints for each graph node. Complex
587 constraints are those involving dereferences or offsets that are
589 vec
<constraint_t
> *complex;
592 static constraint_graph_t graph
;
594 /* During variable substitution and the offline version of indirect
595 cycle finding, we create nodes to represent dereferences and
596 address taken constraints. These represent where these start and
598 #define FIRST_REF_NODE (varmap).length ()
599 #define LAST_REF_NODE (FIRST_REF_NODE + (FIRST_REF_NODE - 1))
601 /* Return the representative node for NODE, if NODE has been unioned
603 This function performs path compression along the way to finding
604 the representative. */
607 find (unsigned int node
)
609 gcc_checking_assert (node
< graph
->size
);
610 if (graph
->rep
[node
] != node
)
611 return graph
->rep
[node
] = find (graph
->rep
[node
]);
615 /* Union the TO and FROM nodes to the TO nodes.
616 Note that at some point in the future, we may want to do
617 union-by-rank, in which case we are going to have to return the
618 node we unified to. */
621 unite (unsigned int to
, unsigned int from
)
623 gcc_checking_assert (to
< graph
->size
&& from
< graph
->size
);
624 if (to
!= from
&& graph
->rep
[from
] != to
)
626 graph
->rep
[from
] = to
;
632 /* Create a new constraint consisting of LHS and RHS expressions. */
635 new_constraint (const struct constraint_expr lhs
,
636 const struct constraint_expr rhs
)
638 constraint_t ret
= (constraint_t
) pool_alloc (constraint_pool
);
644 /* Print out constraint C to FILE. */
647 dump_constraint (FILE *file
, constraint_t c
)
649 if (c
->lhs
.type
== ADDRESSOF
)
651 else if (c
->lhs
.type
== DEREF
)
653 fprintf (file
, "%s", get_varinfo (c
->lhs
.var
)->name
);
654 if (c
->lhs
.offset
== UNKNOWN_OFFSET
)
655 fprintf (file
, " + UNKNOWN");
656 else if (c
->lhs
.offset
!= 0)
657 fprintf (file
, " + " HOST_WIDE_INT_PRINT_DEC
, c
->lhs
.offset
);
658 fprintf (file
, " = ");
659 if (c
->rhs
.type
== ADDRESSOF
)
661 else if (c
->rhs
.type
== DEREF
)
663 fprintf (file
, "%s", get_varinfo (c
->rhs
.var
)->name
);
664 if (c
->rhs
.offset
== UNKNOWN_OFFSET
)
665 fprintf (file
, " + UNKNOWN");
666 else if (c
->rhs
.offset
!= 0)
667 fprintf (file
, " + " HOST_WIDE_INT_PRINT_DEC
, c
->rhs
.offset
);
671 void debug_constraint (constraint_t
);
672 void debug_constraints (void);
673 void debug_constraint_graph (void);
674 void debug_solution_for_var (unsigned int);
675 void debug_sa_points_to_info (void);
677 /* Print out constraint C to stderr. */
680 debug_constraint (constraint_t c
)
682 dump_constraint (stderr
, c
);
683 fprintf (stderr
, "\n");
686 /* Print out all constraints to FILE */
689 dump_constraints (FILE *file
, int from
)
693 for (i
= from
; constraints
.iterate (i
, &c
); i
++)
696 dump_constraint (file
, c
);
697 fprintf (file
, "\n");
701 /* Print out all constraints to stderr. */
704 debug_constraints (void)
706 dump_constraints (stderr
, 0);
709 /* Print the constraint graph in dot format. */
712 dump_constraint_graph (FILE *file
)
716 /* Only print the graph if it has already been initialized: */
720 /* Prints the header of the dot file: */
721 fprintf (file
, "strict digraph {\n");
722 fprintf (file
, " node [\n shape = box\n ]\n");
723 fprintf (file
, " edge [\n fontsize = \"12\"\n ]\n");
724 fprintf (file
, "\n // List of nodes and complex constraints in "
725 "the constraint graph:\n");
727 /* The next lines print the nodes in the graph together with the
728 complex constraints attached to them. */
729 for (i
= 1; i
< graph
->size
; i
++)
731 if (i
== FIRST_REF_NODE
)
735 if (i
< FIRST_REF_NODE
)
736 fprintf (file
, "\"%s\"", get_varinfo (i
)->name
);
738 fprintf (file
, "\"*%s\"", get_varinfo (i
- FIRST_REF_NODE
)->name
);
739 if (graph
->complex[i
].exists ())
743 fprintf (file
, " [label=\"\\N\\n");
744 for (j
= 0; graph
->complex[i
].iterate (j
, &c
); ++j
)
746 dump_constraint (file
, c
);
747 fprintf (file
, "\\l");
749 fprintf (file
, "\"]");
751 fprintf (file
, ";\n");
754 /* Go over the edges. */
755 fprintf (file
, "\n // Edges in the constraint graph:\n");
756 for (i
= 1; i
< graph
->size
; i
++)
762 EXECUTE_IF_IN_NONNULL_BITMAP (graph
->succs
[i
], 0, j
, bi
)
764 unsigned to
= find (j
);
767 if (i
< FIRST_REF_NODE
)
768 fprintf (file
, "\"%s\"", get_varinfo (i
)->name
);
770 fprintf (file
, "\"*%s\"", get_varinfo (i
- FIRST_REF_NODE
)->name
);
771 fprintf (file
, " -> ");
772 if (to
< FIRST_REF_NODE
)
773 fprintf (file
, "\"%s\"", get_varinfo (to
)->name
);
775 fprintf (file
, "\"*%s\"", get_varinfo (to
- FIRST_REF_NODE
)->name
);
776 fprintf (file
, ";\n");
780 /* Prints the tail of the dot file. */
781 fprintf (file
, "}\n");
784 /* Print out the constraint graph to stderr. */
787 debug_constraint_graph (void)
789 dump_constraint_graph (stderr
);
794 The solver is a simple worklist solver, that works on the following
797 sbitmap changed_nodes = all zeroes;
799 For each node that is not already collapsed:
801 set bit in changed nodes
803 while (changed_count > 0)
805 compute topological ordering for constraint graph
807 find and collapse cycles in the constraint graph (updating
808 changed if necessary)
810 for each node (n) in the graph in topological order:
813 Process each complex constraint associated with the node,
814 updating changed if necessary.
816 For each outgoing edge from n, propagate the solution from n to
817 the destination of the edge, updating changed as necessary.
821 /* Return true if two constraint expressions A and B are equal. */
824 constraint_expr_equal (struct constraint_expr a
, struct constraint_expr b
)
826 return a
.type
== b
.type
&& a
.var
== b
.var
&& a
.offset
== b
.offset
;
829 /* Return true if constraint expression A is less than constraint expression
830 B. This is just arbitrary, but consistent, in order to give them an
834 constraint_expr_less (struct constraint_expr a
, struct constraint_expr b
)
836 if (a
.type
== b
.type
)
839 return a
.offset
< b
.offset
;
841 return a
.var
< b
.var
;
844 return a
.type
< b
.type
;
847 /* Return true if constraint A is less than constraint B. This is just
848 arbitrary, but consistent, in order to give them an ordering. */
851 constraint_less (const constraint_t
&a
, const constraint_t
&b
)
853 if (constraint_expr_less (a
->lhs
, b
->lhs
))
855 else if (constraint_expr_less (b
->lhs
, a
->lhs
))
858 return constraint_expr_less (a
->rhs
, b
->rhs
);
861 /* Return true if two constraints A and B are equal. */
864 constraint_equal (struct constraint a
, struct constraint b
)
866 return constraint_expr_equal (a
.lhs
, b
.lhs
)
867 && constraint_expr_equal (a
.rhs
, b
.rhs
);
871 /* Find a constraint LOOKFOR in the sorted constraint vector VEC */
874 constraint_vec_find (vec
<constraint_t
> vec
,
875 struct constraint lookfor
)
883 place
= vec
.lower_bound (&lookfor
, constraint_less
);
884 if (place
>= vec
.length ())
887 if (!constraint_equal (*found
, lookfor
))
892 /* Union two constraint vectors, TO and FROM. Put the result in TO.
893 Returns true of TO set is changed. */
896 constraint_set_union (vec
<constraint_t
> *to
,
897 vec
<constraint_t
> *from
)
901 bool any_change
= false;
903 FOR_EACH_VEC_ELT (*from
, i
, c
)
905 if (constraint_vec_find (*to
, *c
) == NULL
)
907 unsigned int place
= to
->lower_bound (c
, constraint_less
);
908 to
->safe_insert (place
, c
);
915 /* Expands the solution in SET to all sub-fields of variables included. */
918 solution_set_expand (bitmap set
, bitmap
*expanded
)
926 *expanded
= BITMAP_ALLOC (&iteration_obstack
);
928 /* In a first pass expand to the head of the variables we need to
929 add all sub-fields off. This avoids quadratic behavior. */
930 EXECUTE_IF_SET_IN_BITMAP (set
, 0, j
, bi
)
932 varinfo_t v
= get_varinfo (j
);
933 if (v
->is_artificial_var
936 bitmap_set_bit (*expanded
, v
->head
);
939 /* In the second pass now expand all head variables with subfields. */
940 EXECUTE_IF_SET_IN_BITMAP (*expanded
, 0, j
, bi
)
942 varinfo_t v
= get_varinfo (j
);
945 for (v
= vi_next (v
); v
!= NULL
; v
= vi_next (v
))
946 bitmap_set_bit (*expanded
, v
->id
);
949 /* And finally set the rest of the bits from SET. */
950 bitmap_ior_into (*expanded
, set
);
955 /* Union solution sets TO and DELTA, and add INC to each member of DELTA in the
959 set_union_with_increment (bitmap to
, bitmap delta
, HOST_WIDE_INT inc
,
960 bitmap
*expanded_delta
)
962 bool changed
= false;
966 /* If the solution of DELTA contains anything it is good enough to transfer
968 if (bitmap_bit_p (delta
, anything_id
))
969 return bitmap_set_bit (to
, anything_id
);
971 /* If the offset is unknown we have to expand the solution to
973 if (inc
== UNKNOWN_OFFSET
)
975 delta
= solution_set_expand (delta
, expanded_delta
);
976 changed
|= bitmap_ior_into (to
, delta
);
980 /* For non-zero offset union the offsetted solution into the destination. */
981 EXECUTE_IF_SET_IN_BITMAP (delta
, 0, i
, bi
)
983 varinfo_t vi
= get_varinfo (i
);
985 /* If this is a variable with just one field just set its bit
987 if (vi
->is_artificial_var
988 || vi
->is_unknown_size_var
990 changed
|= bitmap_set_bit (to
, i
);
993 HOST_WIDE_INT fieldoffset
= vi
->offset
+ inc
;
994 unsigned HOST_WIDE_INT size
= vi
->size
;
996 /* If the offset makes the pointer point to before the
997 variable use offset zero for the field lookup. */
999 vi
= get_varinfo (vi
->head
);
1001 vi
= first_or_preceding_vi_for_offset (vi
, fieldoffset
);
1005 changed
|= bitmap_set_bit (to
, vi
->id
);
1010 /* We have to include all fields that overlap the current field
1014 while (vi
->offset
< fieldoffset
+ size
);
1021 /* Insert constraint C into the list of complex constraints for graph
1025 insert_into_complex (constraint_graph_t graph
,
1026 unsigned int var
, constraint_t c
)
1028 vec
<constraint_t
> complex = graph
->complex[var
];
1029 unsigned int place
= complex.lower_bound (c
, constraint_less
);
1031 /* Only insert constraints that do not already exist. */
1032 if (place
>= complex.length ()
1033 || !constraint_equal (*c
, *complex[place
]))
1034 graph
->complex[var
].safe_insert (place
, c
);
1038 /* Condense two variable nodes into a single variable node, by moving
1039 all associated info from FROM to TO. Returns true if TO node's
1040 constraint set changes after the merge. */
1043 merge_node_constraints (constraint_graph_t graph
, unsigned int to
,
1048 bool any_change
= false;
1050 gcc_checking_assert (find (from
) == to
);
1052 /* Move all complex constraints from src node into to node */
1053 FOR_EACH_VEC_ELT (graph
->complex[from
], i
, c
)
1055 /* In complex constraints for node FROM, we may have either
1056 a = *FROM, and *FROM = a, or an offseted constraint which are
1057 always added to the rhs node's constraints. */
1059 if (c
->rhs
.type
== DEREF
)
1061 else if (c
->lhs
.type
== DEREF
)
1067 any_change
= constraint_set_union (&graph
->complex[to
],
1068 &graph
->complex[from
]);
1069 graph
->complex[from
].release ();
1074 /* Remove edges involving NODE from GRAPH. */
1077 clear_edges_for_node (constraint_graph_t graph
, unsigned int node
)
1079 if (graph
->succs
[node
])
1080 BITMAP_FREE (graph
->succs
[node
]);
1083 /* Merge GRAPH nodes FROM and TO into node TO. */
1086 merge_graph_nodes (constraint_graph_t graph
, unsigned int to
,
1089 if (graph
->indirect_cycles
[from
] != -1)
1091 /* If we have indirect cycles with the from node, and we have
1092 none on the to node, the to node has indirect cycles from the
1093 from node now that they are unified.
1094 If indirect cycles exist on both, unify the nodes that they
1095 are in a cycle with, since we know they are in a cycle with
1097 if (graph
->indirect_cycles
[to
] == -1)
1098 graph
->indirect_cycles
[to
] = graph
->indirect_cycles
[from
];
1101 /* Merge all the successor edges. */
1102 if (graph
->succs
[from
])
1104 if (!graph
->succs
[to
])
1105 graph
->succs
[to
] = BITMAP_ALLOC (&pta_obstack
);
1106 bitmap_ior_into (graph
->succs
[to
],
1107 graph
->succs
[from
]);
1110 clear_edges_for_node (graph
, from
);
1114 /* Add an indirect graph edge to GRAPH, going from TO to FROM if
1115 it doesn't exist in the graph already. */
1118 add_implicit_graph_edge (constraint_graph_t graph
, unsigned int to
,
1124 if (!graph
->implicit_preds
[to
])
1125 graph
->implicit_preds
[to
] = BITMAP_ALLOC (&predbitmap_obstack
);
1127 if (bitmap_set_bit (graph
->implicit_preds
[to
], from
))
1128 stats
.num_implicit_edges
++;
1131 /* Add a predecessor graph edge to GRAPH, going from TO to FROM if
1132 it doesn't exist in the graph already.
1133 Return false if the edge already existed, true otherwise. */
1136 add_pred_graph_edge (constraint_graph_t graph
, unsigned int to
,
1139 if (!graph
->preds
[to
])
1140 graph
->preds
[to
] = BITMAP_ALLOC (&predbitmap_obstack
);
1141 bitmap_set_bit (graph
->preds
[to
], from
);
1144 /* Add a graph edge to GRAPH, going from FROM to TO if
1145 it doesn't exist in the graph already.
1146 Return false if the edge already existed, true otherwise. */
1149 add_graph_edge (constraint_graph_t graph
, unsigned int to
,
1160 if (!graph
->succs
[from
])
1161 graph
->succs
[from
] = BITMAP_ALLOC (&pta_obstack
);
1162 if (bitmap_set_bit (graph
->succs
[from
], to
))
1165 if (to
< FIRST_REF_NODE
&& from
< FIRST_REF_NODE
)
1173 /* Initialize the constraint graph structure to contain SIZE nodes. */
1176 init_graph (unsigned int size
)
1180 graph
= XCNEW (struct constraint_graph
);
1182 graph
->succs
= XCNEWVEC (bitmap
, graph
->size
);
1183 graph
->indirect_cycles
= XNEWVEC (int, graph
->size
);
1184 graph
->rep
= XNEWVEC (unsigned int, graph
->size
);
1185 /* ??? Macros do not support template types with multiple arguments,
1186 so we use a typedef to work around it. */
1187 typedef vec
<constraint_t
> vec_constraint_t_heap
;
1188 graph
->complex = XCNEWVEC (vec_constraint_t_heap
, size
);
1189 graph
->pe
= XCNEWVEC (unsigned int, graph
->size
);
1190 graph
->pe_rep
= XNEWVEC (int, graph
->size
);
1192 for (j
= 0; j
< graph
->size
; j
++)
1195 graph
->pe_rep
[j
] = -1;
1196 graph
->indirect_cycles
[j
] = -1;
1200 /* Build the constraint graph, adding only predecessor edges right now. */
1203 build_pred_graph (void)
1209 graph
->implicit_preds
= XCNEWVEC (bitmap
, graph
->size
);
1210 graph
->preds
= XCNEWVEC (bitmap
, graph
->size
);
1211 graph
->pointer_label
= XCNEWVEC (unsigned int, graph
->size
);
1212 graph
->loc_label
= XCNEWVEC (unsigned int, graph
->size
);
1213 graph
->pointed_by
= XCNEWVEC (bitmap
, graph
->size
);
1214 graph
->points_to
= XCNEWVEC (bitmap
, graph
->size
);
1215 graph
->eq_rep
= XNEWVEC (int, graph
->size
);
1216 graph
->direct_nodes
= sbitmap_alloc (graph
->size
);
1217 graph
->address_taken
= BITMAP_ALLOC (&predbitmap_obstack
);
1218 bitmap_clear (graph
->direct_nodes
);
1220 for (j
= 1; j
< FIRST_REF_NODE
; j
++)
1222 if (!get_varinfo (j
)->is_special_var
)
1223 bitmap_set_bit (graph
->direct_nodes
, j
);
1226 for (j
= 0; j
< graph
->size
; j
++)
1227 graph
->eq_rep
[j
] = -1;
1229 for (j
= 0; j
< varmap
.length (); j
++)
1230 graph
->indirect_cycles
[j
] = -1;
1232 FOR_EACH_VEC_ELT (constraints
, i
, c
)
1234 struct constraint_expr lhs
= c
->lhs
;
1235 struct constraint_expr rhs
= c
->rhs
;
1236 unsigned int lhsvar
= lhs
.var
;
1237 unsigned int rhsvar
= rhs
.var
;
1239 if (lhs
.type
== DEREF
)
1242 if (rhs
.offset
== 0 && lhs
.offset
== 0 && rhs
.type
== SCALAR
)
1243 add_pred_graph_edge (graph
, FIRST_REF_NODE
+ lhsvar
, rhsvar
);
1245 else if (rhs
.type
== DEREF
)
1248 if (rhs
.offset
== 0 && lhs
.offset
== 0 && lhs
.type
== SCALAR
)
1249 add_pred_graph_edge (graph
, lhsvar
, FIRST_REF_NODE
+ rhsvar
);
1251 bitmap_clear_bit (graph
->direct_nodes
, lhsvar
);
1253 else if (rhs
.type
== ADDRESSOF
)
1258 if (graph
->points_to
[lhsvar
] == NULL
)
1259 graph
->points_to
[lhsvar
] = BITMAP_ALLOC (&predbitmap_obstack
);
1260 bitmap_set_bit (graph
->points_to
[lhsvar
], rhsvar
);
1262 if (graph
->pointed_by
[rhsvar
] == NULL
)
1263 graph
->pointed_by
[rhsvar
] = BITMAP_ALLOC (&predbitmap_obstack
);
1264 bitmap_set_bit (graph
->pointed_by
[rhsvar
], lhsvar
);
1266 /* Implicitly, *x = y */
1267 add_implicit_graph_edge (graph
, FIRST_REF_NODE
+ lhsvar
, rhsvar
);
1269 /* All related variables are no longer direct nodes. */
1270 bitmap_clear_bit (graph
->direct_nodes
, rhsvar
);
1271 v
= get_varinfo (rhsvar
);
1272 if (!v
->is_full_var
)
1274 v
= get_varinfo (v
->head
);
1277 bitmap_clear_bit (graph
->direct_nodes
, v
->id
);
1282 bitmap_set_bit (graph
->address_taken
, rhsvar
);
1284 else if (lhsvar
> anything_id
1285 && lhsvar
!= rhsvar
&& lhs
.offset
== 0 && rhs
.offset
== 0)
1288 add_pred_graph_edge (graph
, lhsvar
, rhsvar
);
1289 /* Implicitly, *x = *y */
1290 add_implicit_graph_edge (graph
, FIRST_REF_NODE
+ lhsvar
,
1291 FIRST_REF_NODE
+ rhsvar
);
1293 else if (lhs
.offset
!= 0 || rhs
.offset
!= 0)
1295 if (rhs
.offset
!= 0)
1296 bitmap_clear_bit (graph
->direct_nodes
, lhs
.var
);
1297 else if (lhs
.offset
!= 0)
1298 bitmap_clear_bit (graph
->direct_nodes
, rhs
.var
);
1303 /* Build the constraint graph, adding successor edges. */
1306 build_succ_graph (void)
1311 FOR_EACH_VEC_ELT (constraints
, i
, c
)
1313 struct constraint_expr lhs
;
1314 struct constraint_expr rhs
;
1315 unsigned int lhsvar
;
1316 unsigned int rhsvar
;
1323 lhsvar
= find (lhs
.var
);
1324 rhsvar
= find (rhs
.var
);
1326 if (lhs
.type
== DEREF
)
1328 if (rhs
.offset
== 0 && lhs
.offset
== 0 && rhs
.type
== SCALAR
)
1329 add_graph_edge (graph
, FIRST_REF_NODE
+ lhsvar
, rhsvar
);
1331 else if (rhs
.type
== DEREF
)
1333 if (rhs
.offset
== 0 && lhs
.offset
== 0 && lhs
.type
== SCALAR
)
1334 add_graph_edge (graph
, lhsvar
, FIRST_REF_NODE
+ rhsvar
);
1336 else if (rhs
.type
== ADDRESSOF
)
1339 gcc_checking_assert (find (rhs
.var
) == rhs
.var
);
1340 bitmap_set_bit (get_varinfo (lhsvar
)->solution
, rhsvar
);
1342 else if (lhsvar
> anything_id
1343 && lhsvar
!= rhsvar
&& lhs
.offset
== 0 && rhs
.offset
== 0)
1345 add_graph_edge (graph
, lhsvar
, rhsvar
);
1349 /* Add edges from STOREDANYTHING to all non-direct nodes that can
1350 receive pointers. */
1351 t
= find (storedanything_id
);
1352 for (i
= integer_id
+ 1; i
< FIRST_REF_NODE
; ++i
)
1354 if (!bitmap_bit_p (graph
->direct_nodes
, i
)
1355 && get_varinfo (i
)->may_have_pointers
)
1356 add_graph_edge (graph
, find (i
), t
);
1359 /* Everything stored to ANYTHING also potentially escapes. */
1360 add_graph_edge (graph
, find (escaped_id
), t
);
1364 /* Changed variables on the last iteration. */
1365 static bitmap changed
;
1367 /* Strongly Connected Component visitation info. */
1374 unsigned int *node_mapping
;
1376 vec
<unsigned> scc_stack
;
1380 /* Recursive routine to find strongly connected components in GRAPH.
1381 SI is the SCC info to store the information in, and N is the id of current
1382 graph node we are processing.
1384 This is Tarjan's strongly connected component finding algorithm, as
1385 modified by Nuutila to keep only non-root nodes on the stack.
1386 The algorithm can be found in "On finding the strongly connected
1387 connected components in a directed graph" by Esko Nuutila and Eljas
1388 Soisalon-Soininen, in Information Processing Letters volume 49,
1389 number 1, pages 9-14. */
1392 scc_visit (constraint_graph_t graph
, struct scc_info
*si
, unsigned int n
)
1396 unsigned int my_dfs
;
1398 bitmap_set_bit (si
->visited
, n
);
1399 si
->dfs
[n
] = si
->current_index
++;
1400 my_dfs
= si
->dfs
[n
];
1402 /* Visit all the successors. */
1403 EXECUTE_IF_IN_NONNULL_BITMAP (graph
->succs
[n
], 0, i
, bi
)
1407 if (i
> LAST_REF_NODE
)
1411 if (bitmap_bit_p (si
->deleted
, w
))
1414 if (!bitmap_bit_p (si
->visited
, w
))
1415 scc_visit (graph
, si
, w
);
1417 unsigned int t
= find (w
);
1418 gcc_checking_assert (find (n
) == n
);
1419 if (si
->dfs
[t
] < si
->dfs
[n
])
1420 si
->dfs
[n
] = si
->dfs
[t
];
1423 /* See if any components have been identified. */
1424 if (si
->dfs
[n
] == my_dfs
)
1426 if (si
->scc_stack
.length () > 0
1427 && si
->dfs
[si
->scc_stack
.last ()] >= my_dfs
)
1429 bitmap scc
= BITMAP_ALLOC (NULL
);
1430 unsigned int lowest_node
;
1433 bitmap_set_bit (scc
, n
);
1435 while (si
->scc_stack
.length () != 0
1436 && si
->dfs
[si
->scc_stack
.last ()] >= my_dfs
)
1438 unsigned int w
= si
->scc_stack
.pop ();
1440 bitmap_set_bit (scc
, w
);
1443 lowest_node
= bitmap_first_set_bit (scc
);
1444 gcc_assert (lowest_node
< FIRST_REF_NODE
);
1446 /* Collapse the SCC nodes into a single node, and mark the
1448 EXECUTE_IF_SET_IN_BITMAP (scc
, 0, i
, bi
)
1450 if (i
< FIRST_REF_NODE
)
1452 if (unite (lowest_node
, i
))
1453 unify_nodes (graph
, lowest_node
, i
, false);
1457 unite (lowest_node
, i
);
1458 graph
->indirect_cycles
[i
- FIRST_REF_NODE
] = lowest_node
;
1462 bitmap_set_bit (si
->deleted
, n
);
1465 si
->scc_stack
.safe_push (n
);
1468 /* Unify node FROM into node TO, updating the changed count if
1469 necessary when UPDATE_CHANGED is true. */
1472 unify_nodes (constraint_graph_t graph
, unsigned int to
, unsigned int from
,
1473 bool update_changed
)
1475 gcc_checking_assert (to
!= from
&& find (to
) == to
);
1477 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
1478 fprintf (dump_file
, "Unifying %s to %s\n",
1479 get_varinfo (from
)->name
,
1480 get_varinfo (to
)->name
);
1483 stats
.unified_vars_dynamic
++;
1485 stats
.unified_vars_static
++;
1487 merge_graph_nodes (graph
, to
, from
);
1488 if (merge_node_constraints (graph
, to
, from
))
1491 bitmap_set_bit (changed
, to
);
1494 /* Mark TO as changed if FROM was changed. If TO was already marked
1495 as changed, decrease the changed count. */
1498 && bitmap_clear_bit (changed
, from
))
1499 bitmap_set_bit (changed
, to
);
1500 varinfo_t fromvi
= get_varinfo (from
);
1501 if (fromvi
->solution
)
1503 /* If the solution changes because of the merging, we need to mark
1504 the variable as changed. */
1505 varinfo_t tovi
= get_varinfo (to
);
1506 if (bitmap_ior_into (tovi
->solution
, fromvi
->solution
))
1509 bitmap_set_bit (changed
, to
);
1512 BITMAP_FREE (fromvi
->solution
);
1513 if (fromvi
->oldsolution
)
1514 BITMAP_FREE (fromvi
->oldsolution
);
1516 if (stats
.iterations
> 0
1517 && tovi
->oldsolution
)
1518 BITMAP_FREE (tovi
->oldsolution
);
1520 if (graph
->succs
[to
])
1521 bitmap_clear_bit (graph
->succs
[to
], to
);
1524 /* Information needed to compute the topological ordering of a graph. */
1528 /* sbitmap of visited nodes. */
1530 /* Array that stores the topological order of the graph, *in
1532 vec
<unsigned> topo_order
;
1536 /* Initialize and return a topological info structure. */
1538 static struct topo_info
*
1539 init_topo_info (void)
1541 size_t size
= graph
->size
;
1542 struct topo_info
*ti
= XNEW (struct topo_info
);
1543 ti
->visited
= sbitmap_alloc (size
);
1544 bitmap_clear (ti
->visited
);
1545 ti
->topo_order
.create (1);
1550 /* Free the topological sort info pointed to by TI. */
1553 free_topo_info (struct topo_info
*ti
)
1555 sbitmap_free (ti
->visited
);
1556 ti
->topo_order
.release ();
1560 /* Visit the graph in topological order, and store the order in the
1561 topo_info structure. */
1564 topo_visit (constraint_graph_t graph
, struct topo_info
*ti
,
1570 bitmap_set_bit (ti
->visited
, n
);
1572 if (graph
->succs
[n
])
1573 EXECUTE_IF_SET_IN_BITMAP (graph
->succs
[n
], 0, j
, bi
)
1575 if (!bitmap_bit_p (ti
->visited
, j
))
1576 topo_visit (graph
, ti
, j
);
1579 ti
->topo_order
.safe_push (n
);
1582 /* Process a constraint C that represents x = *(y + off), using DELTA as the
1583 starting solution for y. */
1586 do_sd_constraint (constraint_graph_t graph
, constraint_t c
,
1587 bitmap delta
, bitmap
*expanded_delta
)
1589 unsigned int lhs
= c
->lhs
.var
;
1591 bitmap sol
= get_varinfo (lhs
)->solution
;
1594 HOST_WIDE_INT roffset
= c
->rhs
.offset
;
1596 /* Our IL does not allow this. */
1597 gcc_checking_assert (c
->lhs
.offset
== 0);
1599 /* If the solution of Y contains anything it is good enough to transfer
1601 if (bitmap_bit_p (delta
, anything_id
))
1603 flag
|= bitmap_set_bit (sol
, anything_id
);
1607 /* If we do not know at with offset the rhs is dereferenced compute
1608 the reachability set of DELTA, conservatively assuming it is
1609 dereferenced at all valid offsets. */
1610 if (roffset
== UNKNOWN_OFFSET
)
1612 delta
= solution_set_expand (delta
, expanded_delta
);
1613 /* No further offset processing is necessary. */
1617 /* For each variable j in delta (Sol(y)), add
1618 an edge in the graph from j to x, and union Sol(j) into Sol(x). */
1619 EXECUTE_IF_SET_IN_BITMAP (delta
, 0, j
, bi
)
1621 varinfo_t v
= get_varinfo (j
);
1622 HOST_WIDE_INT fieldoffset
= v
->offset
+ roffset
;
1623 unsigned HOST_WIDE_INT size
= v
->size
;
1628 else if (roffset
!= 0)
1630 if (fieldoffset
< 0)
1631 v
= get_varinfo (v
->head
);
1633 v
= first_or_preceding_vi_for_offset (v
, fieldoffset
);
1636 /* We have to include all fields that overlap the current field
1637 shifted by roffset. */
1642 /* Adding edges from the special vars is pointless.
1643 They don't have sets that can change. */
1644 if (get_varinfo (t
)->is_special_var
)
1645 flag
|= bitmap_ior_into (sol
, get_varinfo (t
)->solution
);
1646 /* Merging the solution from ESCAPED needlessly increases
1647 the set. Use ESCAPED as representative instead. */
1648 else if (v
->id
== escaped_id
)
1649 flag
|= bitmap_set_bit (sol
, escaped_id
);
1650 else if (v
->may_have_pointers
1651 && add_graph_edge (graph
, lhs
, t
))
1652 flag
|= bitmap_ior_into (sol
, get_varinfo (t
)->solution
);
1660 while (v
->offset
< fieldoffset
+ size
);
1664 /* If the LHS solution changed, mark the var as changed. */
1667 get_varinfo (lhs
)->solution
= sol
;
1668 bitmap_set_bit (changed
, lhs
);
1672 /* Process a constraint C that represents *(x + off) = y using DELTA
1673 as the starting solution for x. */
1676 do_ds_constraint (constraint_t c
, bitmap delta
, bitmap
*expanded_delta
)
1678 unsigned int rhs
= c
->rhs
.var
;
1679 bitmap sol
= get_varinfo (rhs
)->solution
;
1682 HOST_WIDE_INT loff
= c
->lhs
.offset
;
1683 bool escaped_p
= false;
1685 /* Our IL does not allow this. */
1686 gcc_checking_assert (c
->rhs
.offset
== 0);
1688 /* If the solution of y contains ANYTHING simply use the ANYTHING
1689 solution. This avoids needlessly increasing the points-to sets. */
1690 if (bitmap_bit_p (sol
, anything_id
))
1691 sol
= get_varinfo (find (anything_id
))->solution
;
1693 /* If the solution for x contains ANYTHING we have to merge the
1694 solution of y into all pointer variables which we do via
1696 if (bitmap_bit_p (delta
, anything_id
))
1698 unsigned t
= find (storedanything_id
);
1699 if (add_graph_edge (graph
, t
, rhs
))
1701 if (bitmap_ior_into (get_varinfo (t
)->solution
, sol
))
1702 bitmap_set_bit (changed
, t
);
1707 /* If we do not know at with offset the rhs is dereferenced compute
1708 the reachability set of DELTA, conservatively assuming it is
1709 dereferenced at all valid offsets. */
1710 if (loff
== UNKNOWN_OFFSET
)
1712 delta
= solution_set_expand (delta
, expanded_delta
);
1716 /* For each member j of delta (Sol(x)), add an edge from y to j and
1717 union Sol(y) into Sol(j) */
1718 EXECUTE_IF_SET_IN_BITMAP (delta
, 0, j
, bi
)
1720 varinfo_t v
= get_varinfo (j
);
1722 HOST_WIDE_INT fieldoffset
= v
->offset
+ loff
;
1723 unsigned HOST_WIDE_INT size
= v
->size
;
1729 if (fieldoffset
< 0)
1730 v
= get_varinfo (v
->head
);
1732 v
= first_or_preceding_vi_for_offset (v
, fieldoffset
);
1735 /* We have to include all fields that overlap the current field
1739 if (v
->may_have_pointers
)
1741 /* If v is a global variable then this is an escape point. */
1742 if (v
->is_global_var
1745 t
= find (escaped_id
);
1746 if (add_graph_edge (graph
, t
, rhs
)
1747 && bitmap_ior_into (get_varinfo (t
)->solution
, sol
))
1748 bitmap_set_bit (changed
, t
);
1749 /* Enough to let rhs escape once. */
1753 if (v
->is_special_var
)
1757 if (add_graph_edge (graph
, t
, rhs
)
1758 && bitmap_ior_into (get_varinfo (t
)->solution
, sol
))
1759 bitmap_set_bit (changed
, t
);
1768 while (v
->offset
< fieldoffset
+ size
);
1772 /* Handle a non-simple (simple meaning requires no iteration),
1773 constraint (IE *x = &y, x = *y, *x = y, and x = y with offsets involved). */
1776 do_complex_constraint (constraint_graph_t graph
, constraint_t c
, bitmap delta
,
1777 bitmap
*expanded_delta
)
1779 if (c
->lhs
.type
== DEREF
)
1781 if (c
->rhs
.type
== ADDRESSOF
)
1788 do_ds_constraint (c
, delta
, expanded_delta
);
1791 else if (c
->rhs
.type
== DEREF
)
1794 if (!(get_varinfo (c
->lhs
.var
)->is_special_var
))
1795 do_sd_constraint (graph
, c
, delta
, expanded_delta
);
1802 gcc_checking_assert (c
->rhs
.type
== SCALAR
&& c
->lhs
.type
== SCALAR
1803 && c
->rhs
.offset
!= 0 && c
->lhs
.offset
== 0);
1804 tmp
= get_varinfo (c
->lhs
.var
)->solution
;
1806 flag
= set_union_with_increment (tmp
, delta
, c
->rhs
.offset
,
1810 bitmap_set_bit (changed
, c
->lhs
.var
);
1814 /* Initialize and return a new SCC info structure. */
1816 static struct scc_info
*
1817 init_scc_info (size_t size
)
1819 struct scc_info
*si
= XNEW (struct scc_info
);
1822 si
->current_index
= 0;
1823 si
->visited
= sbitmap_alloc (size
);
1824 bitmap_clear (si
->visited
);
1825 si
->deleted
= sbitmap_alloc (size
);
1826 bitmap_clear (si
->deleted
);
1827 si
->node_mapping
= XNEWVEC (unsigned int, size
);
1828 si
->dfs
= XCNEWVEC (unsigned int, size
);
1830 for (i
= 0; i
< size
; i
++)
1831 si
->node_mapping
[i
] = i
;
1833 si
->scc_stack
.create (1);
1837 /* Free an SCC info structure pointed to by SI */
1840 free_scc_info (struct scc_info
*si
)
1842 sbitmap_free (si
->visited
);
1843 sbitmap_free (si
->deleted
);
1844 free (si
->node_mapping
);
1846 si
->scc_stack
.release ();
1851 /* Find indirect cycles in GRAPH that occur, using strongly connected
1852 components, and note them in the indirect cycles map.
1854 This technique comes from Ben Hardekopf and Calvin Lin,
1855 "It Pays to be Lazy: Fast and Accurate Pointer Analysis for Millions of
1856 Lines of Code", submitted to PLDI 2007. */
1859 find_indirect_cycles (constraint_graph_t graph
)
1862 unsigned int size
= graph
->size
;
1863 struct scc_info
*si
= init_scc_info (size
);
1865 for (i
= 0; i
< MIN (LAST_REF_NODE
, size
); i
++ )
1866 if (!bitmap_bit_p (si
->visited
, i
) && find (i
) == i
)
1867 scc_visit (graph
, si
, i
);
1872 /* Compute a topological ordering for GRAPH, and store the result in the
1873 topo_info structure TI. */
1876 compute_topo_order (constraint_graph_t graph
,
1877 struct topo_info
*ti
)
1880 unsigned int size
= graph
->size
;
1882 for (i
= 0; i
!= size
; ++i
)
1883 if (!bitmap_bit_p (ti
->visited
, i
) && find (i
) == i
)
1884 topo_visit (graph
, ti
, i
);
1887 /* Structure used to for hash value numbering of pointer equivalence
1890 typedef struct equiv_class_label
1893 unsigned int equivalence_class
;
1895 } *equiv_class_label_t
;
1896 typedef const struct equiv_class_label
*const_equiv_class_label_t
;
1898 /* Equiv_class_label hashtable helpers. */
1900 struct equiv_class_hasher
: typed_free_remove
<equiv_class_label
>
1902 typedef equiv_class_label value_type
;
1903 typedef equiv_class_label compare_type
;
1904 static inline hashval_t
hash (const value_type
*);
1905 static inline bool equal (const value_type
*, const compare_type
*);
1908 /* Hash function for a equiv_class_label_t */
1911 equiv_class_hasher::hash (const value_type
*ecl
)
1913 return ecl
->hashcode
;
1916 /* Equality function for two equiv_class_label_t's. */
1919 equiv_class_hasher::equal (const value_type
*eql1
, const compare_type
*eql2
)
1921 return (eql1
->hashcode
== eql2
->hashcode
1922 && bitmap_equal_p (eql1
->labels
, eql2
->labels
));
1925 /* A hashtable for mapping a bitmap of labels->pointer equivalence
1927 static hash_table
<equiv_class_hasher
> *pointer_equiv_class_table
;
1929 /* A hashtable for mapping a bitmap of labels->location equivalence
1931 static hash_table
<equiv_class_hasher
> *location_equiv_class_table
;
1933 /* Lookup a equivalence class in TABLE by the bitmap of LABELS with
1934 hash HAS it contains. Sets *REF_LABELS to the bitmap LABELS
1935 is equivalent to. */
1937 static equiv_class_label
*
1938 equiv_class_lookup_or_add (hash_table
<equiv_class_hasher
> *table
,
1941 equiv_class_label
**slot
;
1942 equiv_class_label ecl
;
1944 ecl
.labels
= labels
;
1945 ecl
.hashcode
= bitmap_hash (labels
);
1946 slot
= table
->find_slot (&ecl
, INSERT
);
1949 *slot
= XNEW (struct equiv_class_label
);
1950 (*slot
)->labels
= labels
;
1951 (*slot
)->hashcode
= ecl
.hashcode
;
1952 (*slot
)->equivalence_class
= 0;
1958 /* Perform offline variable substitution.
1960 This is a worst case quadratic time way of identifying variables
1961 that must have equivalent points-to sets, including those caused by
1962 static cycles, and single entry subgraphs, in the constraint graph.
1964 The technique is described in "Exploiting Pointer and Location
1965 Equivalence to Optimize Pointer Analysis. In the 14th International
1966 Static Analysis Symposium (SAS), August 2007." It is known as the
1967 "HU" algorithm, and is equivalent to value numbering the collapsed
1968 constraint graph including evaluating unions.
1970 The general method of finding equivalence classes is as follows:
1971 Add fake nodes (REF nodes) and edges for *a = b and a = *b constraints.
1972 Initialize all non-REF nodes to be direct nodes.
1973 For each constraint a = a U {b}, we set pts(a) = pts(a) u {fresh
1975 For each constraint containing the dereference, we also do the same
1978 We then compute SCC's in the graph and unify nodes in the same SCC,
1981 For each non-collapsed node x:
1982 Visit all unvisited explicit incoming edges.
1983 Ignoring all non-pointers, set pts(x) = Union of pts(a) for y
1985 Lookup the equivalence class for pts(x).
1986 If we found one, equivalence_class(x) = found class.
1987 Otherwise, equivalence_class(x) = new class, and new_class is
1988 added to the lookup table.
1990 All direct nodes with the same equivalence class can be replaced
1991 with a single representative node.
1992 All unlabeled nodes (label == 0) are not pointers and all edges
1993 involving them can be eliminated.
1994 We perform these optimizations during rewrite_constraints
1996 In addition to pointer equivalence class finding, we also perform
1997 location equivalence class finding. This is the set of variables
1998 that always appear together in points-to sets. We use this to
1999 compress the size of the points-to sets. */
2001 /* Current maximum pointer equivalence class id. */
2002 static int pointer_equiv_class
;
2004 /* Current maximum location equivalence class id. */
2005 static int location_equiv_class
;
2007 /* Recursive routine to find strongly connected components in GRAPH,
2008 and label it's nodes with DFS numbers. */
2011 condense_visit (constraint_graph_t graph
, struct scc_info
*si
, unsigned int n
)
2015 unsigned int my_dfs
;
2017 gcc_checking_assert (si
->node_mapping
[n
] == n
);
2018 bitmap_set_bit (si
->visited
, n
);
2019 si
->dfs
[n
] = si
->current_index
++;
2020 my_dfs
= si
->dfs
[n
];
2022 /* Visit all the successors. */
2023 EXECUTE_IF_IN_NONNULL_BITMAP (graph
->preds
[n
], 0, i
, bi
)
2025 unsigned int w
= si
->node_mapping
[i
];
2027 if (bitmap_bit_p (si
->deleted
, w
))
2030 if (!bitmap_bit_p (si
->visited
, w
))
2031 condense_visit (graph
, si
, w
);
2033 unsigned int t
= si
->node_mapping
[w
];
2034 gcc_checking_assert (si
->node_mapping
[n
] == n
);
2035 if (si
->dfs
[t
] < si
->dfs
[n
])
2036 si
->dfs
[n
] = si
->dfs
[t
];
2039 /* Visit all the implicit predecessors. */
2040 EXECUTE_IF_IN_NONNULL_BITMAP (graph
->implicit_preds
[n
], 0, i
, bi
)
2042 unsigned int w
= si
->node_mapping
[i
];
2044 if (bitmap_bit_p (si
->deleted
, w
))
2047 if (!bitmap_bit_p (si
->visited
, w
))
2048 condense_visit (graph
, si
, w
);
2050 unsigned int t
= si
->node_mapping
[w
];
2051 gcc_assert (si
->node_mapping
[n
] == n
);
2052 if (si
->dfs
[t
] < si
->dfs
[n
])
2053 si
->dfs
[n
] = si
->dfs
[t
];
2056 /* See if any components have been identified. */
2057 if (si
->dfs
[n
] == my_dfs
)
2059 while (si
->scc_stack
.length () != 0
2060 && si
->dfs
[si
->scc_stack
.last ()] >= my_dfs
)
2062 unsigned int w
= si
->scc_stack
.pop ();
2063 si
->node_mapping
[w
] = n
;
2065 if (!bitmap_bit_p (graph
->direct_nodes
, w
))
2066 bitmap_clear_bit (graph
->direct_nodes
, n
);
2068 /* Unify our nodes. */
2069 if (graph
->preds
[w
])
2071 if (!graph
->preds
[n
])
2072 graph
->preds
[n
] = BITMAP_ALLOC (&predbitmap_obstack
);
2073 bitmap_ior_into (graph
->preds
[n
], graph
->preds
[w
]);
2075 if (graph
->implicit_preds
[w
])
2077 if (!graph
->implicit_preds
[n
])
2078 graph
->implicit_preds
[n
] = BITMAP_ALLOC (&predbitmap_obstack
);
2079 bitmap_ior_into (graph
->implicit_preds
[n
],
2080 graph
->implicit_preds
[w
]);
2082 if (graph
->points_to
[w
])
2084 if (!graph
->points_to
[n
])
2085 graph
->points_to
[n
] = BITMAP_ALLOC (&predbitmap_obstack
);
2086 bitmap_ior_into (graph
->points_to
[n
],
2087 graph
->points_to
[w
]);
2090 bitmap_set_bit (si
->deleted
, n
);
2093 si
->scc_stack
.safe_push (n
);
2096 /* Label pointer equivalences.
2098 This performs a value numbering of the constraint graph to
2099 discover which variables will always have the same points-to sets
2100 under the current set of constraints.
2102 The way it value numbers is to store the set of points-to bits
2103 generated by the constraints and graph edges. This is just used as a
2104 hash and equality comparison. The *actual set of points-to bits* is
2105 completely irrelevant, in that we don't care about being able to
2108 The equality values (currently bitmaps) just have to satisfy a few
2109 constraints, the main ones being:
2110 1. The combining operation must be order independent.
2111 2. The end result of a given set of operations must be unique iff the
2112 combination of input values is unique
2116 label_visit (constraint_graph_t graph
, struct scc_info
*si
, unsigned int n
)
2118 unsigned int i
, first_pred
;
2121 bitmap_set_bit (si
->visited
, n
);
2123 /* Label and union our incoming edges's points to sets. */
2125 EXECUTE_IF_IN_NONNULL_BITMAP (graph
->preds
[n
], 0, i
, bi
)
2127 unsigned int w
= si
->node_mapping
[i
];
2128 if (!bitmap_bit_p (si
->visited
, w
))
2129 label_visit (graph
, si
, w
);
2131 /* Skip unused edges */
2132 if (w
== n
|| graph
->pointer_label
[w
] == 0)
2135 if (graph
->points_to
[w
])
2137 if (!graph
->points_to
[n
])
2139 if (first_pred
== -1U)
2143 graph
->points_to
[n
] = BITMAP_ALLOC (&predbitmap_obstack
);
2144 bitmap_ior (graph
->points_to
[n
],
2145 graph
->points_to
[first_pred
],
2146 graph
->points_to
[w
]);
2150 bitmap_ior_into (graph
->points_to
[n
], graph
->points_to
[w
]);
2154 /* Indirect nodes get fresh variables and a new pointer equiv class. */
2155 if (!bitmap_bit_p (graph
->direct_nodes
, n
))
2157 if (!graph
->points_to
[n
])
2159 graph
->points_to
[n
] = BITMAP_ALLOC (&predbitmap_obstack
);
2160 if (first_pred
!= -1U)
2161 bitmap_copy (graph
->points_to
[n
], graph
->points_to
[first_pred
]);
2163 bitmap_set_bit (graph
->points_to
[n
], FIRST_REF_NODE
+ n
);
2164 graph
->pointer_label
[n
] = pointer_equiv_class
++;
2165 equiv_class_label_t ecl
;
2166 ecl
= equiv_class_lookup_or_add (pointer_equiv_class_table
,
2167 graph
->points_to
[n
]);
2168 ecl
->equivalence_class
= graph
->pointer_label
[n
];
2172 /* If there was only a single non-empty predecessor the pointer equiv
2173 class is the same. */
2174 if (!graph
->points_to
[n
])
2176 if (first_pred
!= -1U)
2178 graph
->pointer_label
[n
] = graph
->pointer_label
[first_pred
];
2179 graph
->points_to
[n
] = graph
->points_to
[first_pred
];
2184 if (!bitmap_empty_p (graph
->points_to
[n
]))
2186 equiv_class_label_t ecl
;
2187 ecl
= equiv_class_lookup_or_add (pointer_equiv_class_table
,
2188 graph
->points_to
[n
]);
2189 if (ecl
->equivalence_class
== 0)
2190 ecl
->equivalence_class
= pointer_equiv_class
++;
2193 BITMAP_FREE (graph
->points_to
[n
]);
2194 graph
->points_to
[n
] = ecl
->labels
;
2196 graph
->pointer_label
[n
] = ecl
->equivalence_class
;
2200 /* Print the pred graph in dot format. */
2203 dump_pred_graph (struct scc_info
*si
, FILE *file
)
2207 /* Only print the graph if it has already been initialized: */
2211 /* Prints the header of the dot file: */
2212 fprintf (file
, "strict digraph {\n");
2213 fprintf (file
, " node [\n shape = box\n ]\n");
2214 fprintf (file
, " edge [\n fontsize = \"12\"\n ]\n");
2215 fprintf (file
, "\n // List of nodes and complex constraints in "
2216 "the constraint graph:\n");
2218 /* The next lines print the nodes in the graph together with the
2219 complex constraints attached to them. */
2220 for (i
= 1; i
< graph
->size
; i
++)
2222 if (i
== FIRST_REF_NODE
)
2224 if (si
->node_mapping
[i
] != i
)
2226 if (i
< FIRST_REF_NODE
)
2227 fprintf (file
, "\"%s\"", get_varinfo (i
)->name
);
2229 fprintf (file
, "\"*%s\"", get_varinfo (i
- FIRST_REF_NODE
)->name
);
2230 if (graph
->points_to
[i
]
2231 && !bitmap_empty_p (graph
->points_to
[i
]))
2233 fprintf (file
, "[label=\"%s = {", get_varinfo (i
)->name
);
2236 EXECUTE_IF_SET_IN_BITMAP (graph
->points_to
[i
], 0, j
, bi
)
2237 fprintf (file
, " %d", j
);
2238 fprintf (file
, " }\"]");
2240 fprintf (file
, ";\n");
2243 /* Go over the edges. */
2244 fprintf (file
, "\n // Edges in the constraint graph:\n");
2245 for (i
= 1; i
< graph
->size
; i
++)
2249 if (si
->node_mapping
[i
] != i
)
2251 EXECUTE_IF_IN_NONNULL_BITMAP (graph
->preds
[i
], 0, j
, bi
)
2253 unsigned from
= si
->node_mapping
[j
];
2254 if (from
< FIRST_REF_NODE
)
2255 fprintf (file
, "\"%s\"", get_varinfo (from
)->name
);
2257 fprintf (file
, "\"*%s\"", get_varinfo (from
- FIRST_REF_NODE
)->name
);
2258 fprintf (file
, " -> ");
2259 if (i
< FIRST_REF_NODE
)
2260 fprintf (file
, "\"%s\"", get_varinfo (i
)->name
);
2262 fprintf (file
, "\"*%s\"", get_varinfo (i
- FIRST_REF_NODE
)->name
);
2263 fprintf (file
, ";\n");
2267 /* Prints the tail of the dot file. */
2268 fprintf (file
, "}\n");
2271 /* Perform offline variable substitution, discovering equivalence
2272 classes, and eliminating non-pointer variables. */
2274 static struct scc_info
*
2275 perform_var_substitution (constraint_graph_t graph
)
2278 unsigned int size
= graph
->size
;
2279 struct scc_info
*si
= init_scc_info (size
);
2281 bitmap_obstack_initialize (&iteration_obstack
);
2282 pointer_equiv_class_table
= new hash_table
<equiv_class_hasher
> (511);
2283 location_equiv_class_table
2284 = new hash_table
<equiv_class_hasher
> (511);
2285 pointer_equiv_class
= 1;
2286 location_equiv_class
= 1;
2288 /* Condense the nodes, which means to find SCC's, count incoming
2289 predecessors, and unite nodes in SCC's. */
2290 for (i
= 1; i
< FIRST_REF_NODE
; i
++)
2291 if (!bitmap_bit_p (si
->visited
, si
->node_mapping
[i
]))
2292 condense_visit (graph
, si
, si
->node_mapping
[i
]);
2294 if (dump_file
&& (dump_flags
& TDF_GRAPH
))
2296 fprintf (dump_file
, "\n\n// The constraint graph before var-substitution "
2297 "in dot format:\n");
2298 dump_pred_graph (si
, dump_file
);
2299 fprintf (dump_file
, "\n\n");
2302 bitmap_clear (si
->visited
);
2303 /* Actually the label the nodes for pointer equivalences */
2304 for (i
= 1; i
< FIRST_REF_NODE
; i
++)
2305 if (!bitmap_bit_p (si
->visited
, si
->node_mapping
[i
]))
2306 label_visit (graph
, si
, si
->node_mapping
[i
]);
2308 /* Calculate location equivalence labels. */
2309 for (i
= 1; i
< FIRST_REF_NODE
; i
++)
2315 if (!graph
->pointed_by
[i
])
2317 pointed_by
= BITMAP_ALLOC (&iteration_obstack
);
2319 /* Translate the pointed-by mapping for pointer equivalence
2321 EXECUTE_IF_SET_IN_BITMAP (graph
->pointed_by
[i
], 0, j
, bi
)
2323 bitmap_set_bit (pointed_by
,
2324 graph
->pointer_label
[si
->node_mapping
[j
]]);
2326 /* The original pointed_by is now dead. */
2327 BITMAP_FREE (graph
->pointed_by
[i
]);
2329 /* Look up the location equivalence label if one exists, or make
2331 equiv_class_label_t ecl
;
2332 ecl
= equiv_class_lookup_or_add (location_equiv_class_table
, pointed_by
);
2333 if (ecl
->equivalence_class
== 0)
2334 ecl
->equivalence_class
= location_equiv_class
++;
2337 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
2338 fprintf (dump_file
, "Found location equivalence for node %s\n",
2339 get_varinfo (i
)->name
);
2340 BITMAP_FREE (pointed_by
);
2342 graph
->loc_label
[i
] = ecl
->equivalence_class
;
2346 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
2347 for (i
= 1; i
< FIRST_REF_NODE
; i
++)
2349 unsigned j
= si
->node_mapping
[i
];
2352 fprintf (dump_file
, "%s node id %d ",
2353 bitmap_bit_p (graph
->direct_nodes
, i
)
2354 ? "Direct" : "Indirect", i
);
2355 if (i
< FIRST_REF_NODE
)
2356 fprintf (dump_file
, "\"%s\"", get_varinfo (i
)->name
);
2358 fprintf (dump_file
, "\"*%s\"",
2359 get_varinfo (i
- FIRST_REF_NODE
)->name
);
2360 fprintf (dump_file
, " mapped to SCC leader node id %d ", j
);
2361 if (j
< FIRST_REF_NODE
)
2362 fprintf (dump_file
, "\"%s\"\n", get_varinfo (j
)->name
);
2364 fprintf (dump_file
, "\"*%s\"\n",
2365 get_varinfo (j
- FIRST_REF_NODE
)->name
);
2370 "Equivalence classes for %s node id %d ",
2371 bitmap_bit_p (graph
->direct_nodes
, i
)
2372 ? "direct" : "indirect", i
);
2373 if (i
< FIRST_REF_NODE
)
2374 fprintf (dump_file
, "\"%s\"", get_varinfo (i
)->name
);
2376 fprintf (dump_file
, "\"*%s\"",
2377 get_varinfo (i
- FIRST_REF_NODE
)->name
);
2379 ": pointer %d, location %d\n",
2380 graph
->pointer_label
[i
], graph
->loc_label
[i
]);
2384 /* Quickly eliminate our non-pointer variables. */
2386 for (i
= 1; i
< FIRST_REF_NODE
; i
++)
2388 unsigned int node
= si
->node_mapping
[i
];
2390 if (graph
->pointer_label
[node
] == 0)
2392 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
2394 "%s is a non-pointer variable, eliminating edges.\n",
2395 get_varinfo (node
)->name
);
2396 stats
.nonpointer_vars
++;
2397 clear_edges_for_node (graph
, node
);
2404 /* Free information that was only necessary for variable
2408 free_var_substitution_info (struct scc_info
*si
)
2411 free (graph
->pointer_label
);
2412 free (graph
->loc_label
);
2413 free (graph
->pointed_by
);
2414 free (graph
->points_to
);
2415 free (graph
->eq_rep
);
2416 sbitmap_free (graph
->direct_nodes
);
2417 delete pointer_equiv_class_table
;
2418 pointer_equiv_class_table
= NULL
;
2419 delete location_equiv_class_table
;
2420 location_equiv_class_table
= NULL
;
2421 bitmap_obstack_release (&iteration_obstack
);
2424 /* Return an existing node that is equivalent to NODE, which has
2425 equivalence class LABEL, if one exists. Return NODE otherwise. */
2428 find_equivalent_node (constraint_graph_t graph
,
2429 unsigned int node
, unsigned int label
)
2431 /* If the address version of this variable is unused, we can
2432 substitute it for anything else with the same label.
2433 Otherwise, we know the pointers are equivalent, but not the
2434 locations, and we can unite them later. */
2436 if (!bitmap_bit_p (graph
->address_taken
, node
))
2438 gcc_checking_assert (label
< graph
->size
);
2440 if (graph
->eq_rep
[label
] != -1)
2442 /* Unify the two variables since we know they are equivalent. */
2443 if (unite (graph
->eq_rep
[label
], node
))
2444 unify_nodes (graph
, graph
->eq_rep
[label
], node
, false);
2445 return graph
->eq_rep
[label
];
2449 graph
->eq_rep
[label
] = node
;
2450 graph
->pe_rep
[label
] = node
;
2455 gcc_checking_assert (label
< graph
->size
);
2456 graph
->pe
[node
] = label
;
2457 if (graph
->pe_rep
[label
] == -1)
2458 graph
->pe_rep
[label
] = node
;
2464 /* Unite pointer equivalent but not location equivalent nodes in
2465 GRAPH. This may only be performed once variable substitution is
2469 unite_pointer_equivalences (constraint_graph_t graph
)
2473 /* Go through the pointer equivalences and unite them to their
2474 representative, if they aren't already. */
2475 for (i
= 1; i
< FIRST_REF_NODE
; i
++)
2477 unsigned int label
= graph
->pe
[i
];
2480 int label_rep
= graph
->pe_rep
[label
];
2482 if (label_rep
== -1)
2485 label_rep
= find (label_rep
);
2486 if (label_rep
>= 0 && unite (label_rep
, find (i
)))
2487 unify_nodes (graph
, label_rep
, i
, false);
2492 /* Move complex constraints to the GRAPH nodes they belong to. */
2495 move_complex_constraints (constraint_graph_t graph
)
2500 FOR_EACH_VEC_ELT (constraints
, i
, c
)
2504 struct constraint_expr lhs
= c
->lhs
;
2505 struct constraint_expr rhs
= c
->rhs
;
2507 if (lhs
.type
== DEREF
)
2509 insert_into_complex (graph
, lhs
.var
, c
);
2511 else if (rhs
.type
== DEREF
)
2513 if (!(get_varinfo (lhs
.var
)->is_special_var
))
2514 insert_into_complex (graph
, rhs
.var
, c
);
2516 else if (rhs
.type
!= ADDRESSOF
&& lhs
.var
> anything_id
2517 && (lhs
.offset
!= 0 || rhs
.offset
!= 0))
2519 insert_into_complex (graph
, rhs
.var
, c
);
2526 /* Optimize and rewrite complex constraints while performing
2527 collapsing of equivalent nodes. SI is the SCC_INFO that is the
2528 result of perform_variable_substitution. */
2531 rewrite_constraints (constraint_graph_t graph
,
2532 struct scc_info
*si
)
2537 #ifdef ENABLE_CHECKING
2538 for (unsigned int j
= 0; j
< graph
->size
; j
++)
2539 gcc_assert (find (j
) == j
);
2542 FOR_EACH_VEC_ELT (constraints
, i
, c
)
2544 struct constraint_expr lhs
= c
->lhs
;
2545 struct constraint_expr rhs
= c
->rhs
;
2546 unsigned int lhsvar
= find (lhs
.var
);
2547 unsigned int rhsvar
= find (rhs
.var
);
2548 unsigned int lhsnode
, rhsnode
;
2549 unsigned int lhslabel
, rhslabel
;
2551 lhsnode
= si
->node_mapping
[lhsvar
];
2552 rhsnode
= si
->node_mapping
[rhsvar
];
2553 lhslabel
= graph
->pointer_label
[lhsnode
];
2554 rhslabel
= graph
->pointer_label
[rhsnode
];
2556 /* See if it is really a non-pointer variable, and if so, ignore
2560 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
2563 fprintf (dump_file
, "%s is a non-pointer variable,"
2564 "ignoring constraint:",
2565 get_varinfo (lhs
.var
)->name
);
2566 dump_constraint (dump_file
, c
);
2567 fprintf (dump_file
, "\n");
2569 constraints
[i
] = NULL
;
2575 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
2578 fprintf (dump_file
, "%s is a non-pointer variable,"
2579 "ignoring constraint:",
2580 get_varinfo (rhs
.var
)->name
);
2581 dump_constraint (dump_file
, c
);
2582 fprintf (dump_file
, "\n");
2584 constraints
[i
] = NULL
;
2588 lhsvar
= find_equivalent_node (graph
, lhsvar
, lhslabel
);
2589 rhsvar
= find_equivalent_node (graph
, rhsvar
, rhslabel
);
2590 c
->lhs
.var
= lhsvar
;
2591 c
->rhs
.var
= rhsvar
;
2595 /* Eliminate indirect cycles involving NODE. Return true if NODE was
2596 part of an SCC, false otherwise. */
2599 eliminate_indirect_cycles (unsigned int node
)
2601 if (graph
->indirect_cycles
[node
] != -1
2602 && !bitmap_empty_p (get_varinfo (node
)->solution
))
2605 auto_vec
<unsigned> queue
;
2607 unsigned int to
= find (graph
->indirect_cycles
[node
]);
2610 /* We can't touch the solution set and call unify_nodes
2611 at the same time, because unify_nodes is going to do
2612 bitmap unions into it. */
2614 EXECUTE_IF_SET_IN_BITMAP (get_varinfo (node
)->solution
, 0, i
, bi
)
2616 if (find (i
) == i
&& i
!= to
)
2619 queue
.safe_push (i
);
2624 queue
.iterate (queuepos
, &i
);
2627 unify_nodes (graph
, to
, i
, true);
2634 /* Solve the constraint graph GRAPH using our worklist solver.
2635 This is based on the PW* family of solvers from the "Efficient Field
2636 Sensitive Pointer Analysis for C" paper.
2637 It works by iterating over all the graph nodes, processing the complex
2638 constraints and propagating the copy constraints, until everything stops
2639 changed. This corresponds to steps 6-8 in the solving list given above. */
2642 solve_graph (constraint_graph_t graph
)
2644 unsigned int size
= graph
->size
;
2648 changed
= BITMAP_ALLOC (NULL
);
2650 /* Mark all initial non-collapsed nodes as changed. */
2651 for (i
= 1; i
< size
; i
++)
2653 varinfo_t ivi
= get_varinfo (i
);
2654 if (find (i
) == i
&& !bitmap_empty_p (ivi
->solution
)
2655 && ((graph
->succs
[i
] && !bitmap_empty_p (graph
->succs
[i
]))
2656 || graph
->complex[i
].length () > 0))
2657 bitmap_set_bit (changed
, i
);
2660 /* Allocate a bitmap to be used to store the changed bits. */
2661 pts
= BITMAP_ALLOC (&pta_obstack
);
2663 while (!bitmap_empty_p (changed
))
2666 struct topo_info
*ti
= init_topo_info ();
2669 bitmap_obstack_initialize (&iteration_obstack
);
2671 compute_topo_order (graph
, ti
);
2673 while (ti
->topo_order
.length () != 0)
2676 i
= ti
->topo_order
.pop ();
2678 /* If this variable is not a representative, skip it. */
2682 /* In certain indirect cycle cases, we may merge this
2683 variable to another. */
2684 if (eliminate_indirect_cycles (i
) && find (i
) != i
)
2687 /* If the node has changed, we need to process the
2688 complex constraints and outgoing edges again. */
2689 if (bitmap_clear_bit (changed
, i
))
2694 vec
<constraint_t
> complex = graph
->complex[i
];
2695 varinfo_t vi
= get_varinfo (i
);
2696 bool solution_empty
;
2698 /* Compute the changed set of solution bits. If anything
2699 is in the solution just propagate that. */
2700 if (bitmap_bit_p (vi
->solution
, anything_id
))
2702 /* If anything is also in the old solution there is
2704 ??? But we shouldn't ended up with "changed" set ... */
2706 && bitmap_bit_p (vi
->oldsolution
, anything_id
))
2708 bitmap_copy (pts
, get_varinfo (find (anything_id
))->solution
);
2710 else if (vi
->oldsolution
)
2711 bitmap_and_compl (pts
, vi
->solution
, vi
->oldsolution
);
2713 bitmap_copy (pts
, vi
->solution
);
2715 if (bitmap_empty_p (pts
))
2718 if (vi
->oldsolution
)
2719 bitmap_ior_into (vi
->oldsolution
, pts
);
2722 vi
->oldsolution
= BITMAP_ALLOC (&oldpta_obstack
);
2723 bitmap_copy (vi
->oldsolution
, pts
);
2726 solution
= vi
->solution
;
2727 solution_empty
= bitmap_empty_p (solution
);
2729 /* Process the complex constraints */
2730 bitmap expanded_pts
= NULL
;
2731 FOR_EACH_VEC_ELT (complex, j
, c
)
2733 /* XXX: This is going to unsort the constraints in
2734 some cases, which will occasionally add duplicate
2735 constraints during unification. This does not
2736 affect correctness. */
2737 c
->lhs
.var
= find (c
->lhs
.var
);
2738 c
->rhs
.var
= find (c
->rhs
.var
);
2740 /* The only complex constraint that can change our
2741 solution to non-empty, given an empty solution,
2742 is a constraint where the lhs side is receiving
2743 some set from elsewhere. */
2744 if (!solution_empty
|| c
->lhs
.type
!= DEREF
)
2745 do_complex_constraint (graph
, c
, pts
, &expanded_pts
);
2747 BITMAP_FREE (expanded_pts
);
2749 solution_empty
= bitmap_empty_p (solution
);
2751 if (!solution_empty
)
2754 unsigned eff_escaped_id
= find (escaped_id
);
2756 /* Propagate solution to all successors. */
2757 EXECUTE_IF_IN_NONNULL_BITMAP (graph
->succs
[i
],
2763 unsigned int to
= find (j
);
2764 tmp
= get_varinfo (to
)->solution
;
2767 /* Don't try to propagate to ourselves. */
2771 /* If we propagate from ESCAPED use ESCAPED as
2773 if (i
== eff_escaped_id
)
2774 flag
= bitmap_set_bit (tmp
, escaped_id
);
2776 flag
= bitmap_ior_into (tmp
, pts
);
2779 bitmap_set_bit (changed
, to
);
2784 free_topo_info (ti
);
2785 bitmap_obstack_release (&iteration_obstack
);
2789 BITMAP_FREE (changed
);
2790 bitmap_obstack_release (&oldpta_obstack
);
2793 /* Map from trees to variable infos. */
2794 static hash_map
<tree
, varinfo_t
> *vi_for_tree
;
2797 /* Insert ID as the variable id for tree T in the vi_for_tree map. */
2800 insert_vi_for_tree (tree t
, varinfo_t vi
)
2803 gcc_assert (!vi_for_tree
->put (t
, vi
));
2806 /* Find the variable info for tree T in VI_FOR_TREE. If T does not
2807 exist in the map, return NULL, otherwise, return the varinfo we found. */
2810 lookup_vi_for_tree (tree t
)
2812 varinfo_t
*slot
= vi_for_tree
->get (t
);
2819 /* Return a printable name for DECL */
2822 alias_get_name (tree decl
)
2824 const char *res
= NULL
;
2826 int num_printed
= 0;
2831 if (TREE_CODE (decl
) == SSA_NAME
)
2833 res
= get_name (decl
);
2835 num_printed
= asprintf (&temp
, "%s_%u", res
, SSA_NAME_VERSION (decl
));
2837 num_printed
= asprintf (&temp
, "_%u", SSA_NAME_VERSION (decl
));
2838 if (num_printed
> 0)
2840 res
= ggc_strdup (temp
);
2844 else if (DECL_P (decl
))
2846 if (DECL_ASSEMBLER_NAME_SET_P (decl
))
2847 res
= IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl
));
2850 res
= get_name (decl
);
2853 num_printed
= asprintf (&temp
, "D.%u", DECL_UID (decl
));
2854 if (num_printed
> 0)
2856 res
= ggc_strdup (temp
);
2868 /* Find the variable id for tree T in the map.
2869 If T doesn't exist in the map, create an entry for it and return it. */
2872 get_vi_for_tree (tree t
)
2874 varinfo_t
*slot
= vi_for_tree
->get (t
);
2876 return get_varinfo (create_variable_info_for (t
, alias_get_name (t
)));
2881 /* Get a scalar constraint expression for a new temporary variable. */
2883 static struct constraint_expr
2884 new_scalar_tmp_constraint_exp (const char *name
)
2886 struct constraint_expr tmp
;
2889 vi
= new_var_info (NULL_TREE
, name
);
2893 vi
->is_full_var
= 1;
2902 /* Get a constraint expression vector from an SSA_VAR_P node.
2903 If address_p is true, the result will be taken its address of. */
2906 get_constraint_for_ssa_var (tree t
, vec
<ce_s
> *results
, bool address_p
)
2908 struct constraint_expr cexpr
;
2911 /* We allow FUNCTION_DECLs here even though it doesn't make much sense. */
2912 gcc_assert (TREE_CODE (t
) == SSA_NAME
|| DECL_P (t
));
2914 /* For parameters, get at the points-to set for the actual parm
2916 if (TREE_CODE (t
) == SSA_NAME
2917 && SSA_NAME_IS_DEFAULT_DEF (t
)
2918 && (TREE_CODE (SSA_NAME_VAR (t
)) == PARM_DECL
2919 || TREE_CODE (SSA_NAME_VAR (t
)) == RESULT_DECL
))
2921 get_constraint_for_ssa_var (SSA_NAME_VAR (t
), results
, address_p
);
2925 /* For global variables resort to the alias target. */
2926 if (TREE_CODE (t
) == VAR_DECL
2927 && (TREE_STATIC (t
) || DECL_EXTERNAL (t
)))
2929 varpool_node
*node
= varpool_node::get (t
);
2930 if (node
&& node
->alias
&& node
->analyzed
)
2932 node
= node
->ultimate_alias_target ();
2937 vi
= get_vi_for_tree (t
);
2939 cexpr
.type
= SCALAR
;
2942 /* If we are not taking the address of the constraint expr, add all
2943 sub-fiels of the variable as well. */
2945 && !vi
->is_full_var
)
2947 for (; vi
; vi
= vi_next (vi
))
2950 results
->safe_push (cexpr
);
2955 results
->safe_push (cexpr
);
2958 /* Process constraint T, performing various simplifications and then
2959 adding it to our list of overall constraints. */
2962 process_constraint (constraint_t t
)
2964 struct constraint_expr rhs
= t
->rhs
;
2965 struct constraint_expr lhs
= t
->lhs
;
2967 gcc_assert (rhs
.var
< varmap
.length ());
2968 gcc_assert (lhs
.var
< varmap
.length ());
2970 /* If we didn't get any useful constraint from the lhs we get
2971 &ANYTHING as fallback from get_constraint_for. Deal with
2972 it here by turning it into *ANYTHING. */
2973 if (lhs
.type
== ADDRESSOF
2974 && lhs
.var
== anything_id
)
2977 /* ADDRESSOF on the lhs is invalid. */
2978 gcc_assert (lhs
.type
!= ADDRESSOF
);
2980 /* We shouldn't add constraints from things that cannot have pointers.
2981 It's not completely trivial to avoid in the callers, so do it here. */
2982 if (rhs
.type
!= ADDRESSOF
2983 && !get_varinfo (rhs
.var
)->may_have_pointers
)
2986 /* Likewise adding to the solution of a non-pointer var isn't useful. */
2987 if (!get_varinfo (lhs
.var
)->may_have_pointers
)
2990 /* This can happen in our IR with things like n->a = *p */
2991 if (rhs
.type
== DEREF
&& lhs
.type
== DEREF
&& rhs
.var
!= anything_id
)
2993 /* Split into tmp = *rhs, *lhs = tmp */
2994 struct constraint_expr tmplhs
;
2995 tmplhs
= new_scalar_tmp_constraint_exp ("doubledereftmp");
2996 process_constraint (new_constraint (tmplhs
, rhs
));
2997 process_constraint (new_constraint (lhs
, tmplhs
));
2999 else if (rhs
.type
== ADDRESSOF
&& lhs
.type
== DEREF
)
3001 /* Split into tmp = &rhs, *lhs = tmp */
3002 struct constraint_expr tmplhs
;
3003 tmplhs
= new_scalar_tmp_constraint_exp ("derefaddrtmp");
3004 process_constraint (new_constraint (tmplhs
, rhs
));
3005 process_constraint (new_constraint (lhs
, tmplhs
));
3009 gcc_assert (rhs
.type
!= ADDRESSOF
|| rhs
.offset
== 0);
3010 constraints
.safe_push (t
);
3015 /* Return the position, in bits, of FIELD_DECL from the beginning of its
3018 static HOST_WIDE_INT
3019 bitpos_of_field (const tree fdecl
)
3021 if (!tree_fits_shwi_p (DECL_FIELD_OFFSET (fdecl
))
3022 || !tree_fits_shwi_p (DECL_FIELD_BIT_OFFSET (fdecl
)))
3025 return (tree_to_shwi (DECL_FIELD_OFFSET (fdecl
)) * BITS_PER_UNIT
3026 + tree_to_shwi (DECL_FIELD_BIT_OFFSET (fdecl
)));
3030 /* Get constraint expressions for offsetting PTR by OFFSET. Stores the
3031 resulting constraint expressions in *RESULTS. */
3034 get_constraint_for_ptr_offset (tree ptr
, tree offset
,
3037 struct constraint_expr c
;
3039 HOST_WIDE_INT rhsoffset
;
3041 /* If we do not do field-sensitive PTA adding offsets to pointers
3042 does not change the points-to solution. */
3043 if (!use_field_sensitive
)
3045 get_constraint_for_rhs (ptr
, results
);
3049 /* If the offset is not a non-negative integer constant that fits
3050 in a HOST_WIDE_INT, we have to fall back to a conservative
3051 solution which includes all sub-fields of all pointed-to
3052 variables of ptr. */
3053 if (offset
== NULL_TREE
3054 || TREE_CODE (offset
) != INTEGER_CST
)
3055 rhsoffset
= UNKNOWN_OFFSET
;
3058 /* Sign-extend the offset. */
3059 offset_int soffset
= offset_int::from (offset
, SIGNED
);
3060 if (!wi::fits_shwi_p (soffset
))
3061 rhsoffset
= UNKNOWN_OFFSET
;
3064 /* Make sure the bit-offset also fits. */
3065 HOST_WIDE_INT rhsunitoffset
= soffset
.to_shwi ();
3066 rhsoffset
= rhsunitoffset
* BITS_PER_UNIT
;
3067 if (rhsunitoffset
!= rhsoffset
/ BITS_PER_UNIT
)
3068 rhsoffset
= UNKNOWN_OFFSET
;
3072 get_constraint_for_rhs (ptr
, results
);
3076 /* As we are eventually appending to the solution do not use
3077 vec::iterate here. */
3078 n
= results
->length ();
3079 for (j
= 0; j
< n
; j
++)
3083 curr
= get_varinfo (c
.var
);
3085 if (c
.type
== ADDRESSOF
3086 /* If this varinfo represents a full variable just use it. */
3087 && curr
->is_full_var
)
3089 else if (c
.type
== ADDRESSOF
3090 /* If we do not know the offset add all subfields. */
3091 && rhsoffset
== UNKNOWN_OFFSET
)
3093 varinfo_t temp
= get_varinfo (curr
->head
);
3096 struct constraint_expr c2
;
3098 c2
.type
= ADDRESSOF
;
3100 if (c2
.var
!= c
.var
)
3101 results
->safe_push (c2
);
3102 temp
= vi_next (temp
);
3106 else if (c
.type
== ADDRESSOF
)
3109 unsigned HOST_WIDE_INT offset
= curr
->offset
+ rhsoffset
;
3111 /* If curr->offset + rhsoffset is less than zero adjust it. */
3113 && curr
->offset
< offset
)
3116 /* We have to include all fields that overlap the current
3117 field shifted by rhsoffset. And we include at least
3118 the last or the first field of the variable to represent
3119 reachability of off-bound addresses, in particular &object + 1,
3120 conservatively correct. */
3121 temp
= first_or_preceding_vi_for_offset (curr
, offset
);
3124 temp
= vi_next (temp
);
3126 && temp
->offset
< offset
+ curr
->size
)
3128 struct constraint_expr c2
;
3130 c2
.type
= ADDRESSOF
;
3132 results
->safe_push (c2
);
3133 temp
= vi_next (temp
);
3136 else if (c
.type
== SCALAR
)
3138 gcc_assert (c
.offset
== 0);
3139 c
.offset
= rhsoffset
;
3142 /* We shouldn't get any DEREFs here. */
3150 /* Given a COMPONENT_REF T, return the constraint_expr vector for it.
3151 If address_p is true the result will be taken its address of.
3152 If lhs_p is true then the constraint expression is assumed to be used
3156 get_constraint_for_component_ref (tree t
, vec
<ce_s
> *results
,
3157 bool address_p
, bool lhs_p
)
3160 HOST_WIDE_INT bitsize
= -1;
3161 HOST_WIDE_INT bitmaxsize
= -1;
3162 HOST_WIDE_INT bitpos
;
3165 /* Some people like to do cute things like take the address of
3168 while (handled_component_p (forzero
)
3169 || INDIRECT_REF_P (forzero
)
3170 || TREE_CODE (forzero
) == MEM_REF
)
3171 forzero
= TREE_OPERAND (forzero
, 0);
3173 if (CONSTANT_CLASS_P (forzero
) && integer_zerop (forzero
))
3175 struct constraint_expr temp
;
3178 temp
.var
= integer_id
;
3180 results
->safe_push (temp
);
3184 t
= get_ref_base_and_extent (t
, &bitpos
, &bitsize
, &bitmaxsize
);
3186 /* Pretend to take the address of the base, we'll take care of
3187 adding the required subset of sub-fields below. */
3188 get_constraint_for_1 (t
, results
, true, lhs_p
);
3189 gcc_assert (results
->length () == 1);
3190 struct constraint_expr
&result
= results
->last ();
3192 if (result
.type
== SCALAR
3193 && get_varinfo (result
.var
)->is_full_var
)
3194 /* For single-field vars do not bother about the offset. */
3196 else if (result
.type
== SCALAR
)
3198 /* In languages like C, you can access one past the end of an
3199 array. You aren't allowed to dereference it, so we can
3200 ignore this constraint. When we handle pointer subtraction,
3201 we may have to do something cute here. */
3203 if ((unsigned HOST_WIDE_INT
)bitpos
< get_varinfo (result
.var
)->fullsize
3206 /* It's also not true that the constraint will actually start at the
3207 right offset, it may start in some padding. We only care about
3208 setting the constraint to the first actual field it touches, so
3210 struct constraint_expr cexpr
= result
;
3214 for (curr
= get_varinfo (cexpr
.var
); curr
; curr
= vi_next (curr
))
3216 if (ranges_overlap_p (curr
->offset
, curr
->size
,
3217 bitpos
, bitmaxsize
))
3219 cexpr
.var
= curr
->id
;
3220 results
->safe_push (cexpr
);
3225 /* If we are going to take the address of this field then
3226 to be able to compute reachability correctly add at least
3227 the last field of the variable. */
3228 if (address_p
&& results
->length () == 0)
3230 curr
= get_varinfo (cexpr
.var
);
3231 while (curr
->next
!= 0)
3232 curr
= vi_next (curr
);
3233 cexpr
.var
= curr
->id
;
3234 results
->safe_push (cexpr
);
3236 else if (results
->length () == 0)
3237 /* Assert that we found *some* field there. The user couldn't be
3238 accessing *only* padding. */
3239 /* Still the user could access one past the end of an array
3240 embedded in a struct resulting in accessing *only* padding. */
3241 /* Or accessing only padding via type-punning to a type
3242 that has a filed just in padding space. */
3244 cexpr
.type
= SCALAR
;
3245 cexpr
.var
= anything_id
;
3247 results
->safe_push (cexpr
);
3250 else if (bitmaxsize
== 0)
3252 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
3253 fprintf (dump_file
, "Access to zero-sized part of variable,"
3257 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
3258 fprintf (dump_file
, "Access to past the end of variable, ignoring\n");
3260 else if (result
.type
== DEREF
)
3262 /* If we do not know exactly where the access goes say so. Note
3263 that only for non-structure accesses we know that we access
3264 at most one subfiled of any variable. */
3266 || bitsize
!= bitmaxsize
3267 || AGGREGATE_TYPE_P (TREE_TYPE (orig_t
))
3268 || result
.offset
== UNKNOWN_OFFSET
)
3269 result
.offset
= UNKNOWN_OFFSET
;
3271 result
.offset
+= bitpos
;
3273 else if (result
.type
== ADDRESSOF
)
3275 /* We can end up here for component references on a
3276 VIEW_CONVERT_EXPR <>(&foobar). */
3277 result
.type
= SCALAR
;
3278 result
.var
= anything_id
;
3286 /* Dereference the constraint expression CONS, and return the result.
3287 DEREF (ADDRESSOF) = SCALAR
3288 DEREF (SCALAR) = DEREF
3289 DEREF (DEREF) = (temp = DEREF1; result = DEREF(temp))
3290 This is needed so that we can handle dereferencing DEREF constraints. */
3293 do_deref (vec
<ce_s
> *constraints
)
3295 struct constraint_expr
*c
;
3298 FOR_EACH_VEC_ELT (*constraints
, i
, c
)
3300 if (c
->type
== SCALAR
)
3302 else if (c
->type
== ADDRESSOF
)
3304 else if (c
->type
== DEREF
)
3306 struct constraint_expr tmplhs
;
3307 tmplhs
= new_scalar_tmp_constraint_exp ("dereftmp");
3308 process_constraint (new_constraint (tmplhs
, *c
));
3309 c
->var
= tmplhs
.var
;
3316 /* Given a tree T, return the constraint expression for taking the
3320 get_constraint_for_address_of (tree t
, vec
<ce_s
> *results
)
3322 struct constraint_expr
*c
;
3325 get_constraint_for_1 (t
, results
, true, true);
3327 FOR_EACH_VEC_ELT (*results
, i
, c
)
3329 if (c
->type
== DEREF
)
3332 c
->type
= ADDRESSOF
;
3336 /* Given a tree T, return the constraint expression for it. */
3339 get_constraint_for_1 (tree t
, vec
<ce_s
> *results
, bool address_p
,
3342 struct constraint_expr temp
;
3344 /* x = integer is all glommed to a single variable, which doesn't
3345 point to anything by itself. That is, of course, unless it is an
3346 integer constant being treated as a pointer, in which case, we
3347 will return that this is really the addressof anything. This
3348 happens below, since it will fall into the default case. The only
3349 case we know something about an integer treated like a pointer is
3350 when it is the NULL pointer, and then we just say it points to
3353 Do not do that if -fno-delete-null-pointer-checks though, because
3354 in that case *NULL does not fail, so it _should_ alias *anything.
3355 It is not worth adding a new option or renaming the existing one,
3356 since this case is relatively obscure. */
3357 if ((TREE_CODE (t
) == INTEGER_CST
3358 && integer_zerop (t
))
3359 /* The only valid CONSTRUCTORs in gimple with pointer typed
3360 elements are zero-initializer. But in IPA mode we also
3361 process global initializers, so verify at least. */
3362 || (TREE_CODE (t
) == CONSTRUCTOR
3363 && CONSTRUCTOR_NELTS (t
) == 0))
3365 if (flag_delete_null_pointer_checks
)
3366 temp
.var
= nothing_id
;
3368 temp
.var
= nonlocal_id
;
3369 temp
.type
= ADDRESSOF
;
3371 results
->safe_push (temp
);
3375 /* String constants are read-only, ideally we'd have a CONST_DECL
3377 if (TREE_CODE (t
) == STRING_CST
)
3379 temp
.var
= string_id
;
3382 results
->safe_push (temp
);
3386 switch (TREE_CODE_CLASS (TREE_CODE (t
)))
3388 case tcc_expression
:
3390 switch (TREE_CODE (t
))
3393 get_constraint_for_address_of (TREE_OPERAND (t
, 0), results
);
3401 switch (TREE_CODE (t
))
3405 struct constraint_expr cs
;
3407 get_constraint_for_ptr_offset (TREE_OPERAND (t
, 0),
3408 TREE_OPERAND (t
, 1), results
);
3411 /* If we are not taking the address then make sure to process
3412 all subvariables we might access. */
3416 cs
= results
->last ();
3417 if (cs
.type
== DEREF
3418 && type_can_have_subvars (TREE_TYPE (t
)))
3420 /* For dereferences this means we have to defer it
3422 results
->last ().offset
= UNKNOWN_OFFSET
;
3425 if (cs
.type
!= SCALAR
)
3428 vi
= get_varinfo (cs
.var
);
3429 curr
= vi_next (vi
);
3430 if (!vi
->is_full_var
3433 unsigned HOST_WIDE_INT size
;
3434 if (tree_fits_uhwi_p (TYPE_SIZE (TREE_TYPE (t
))))
3435 size
= tree_to_uhwi (TYPE_SIZE (TREE_TYPE (t
)));
3438 for (; curr
; curr
= vi_next (curr
))
3440 if (curr
->offset
- vi
->offset
< size
)
3443 results
->safe_push (cs
);
3452 case ARRAY_RANGE_REF
:
3454 get_constraint_for_component_ref (t
, results
, address_p
, lhs_p
);
3456 case VIEW_CONVERT_EXPR
:
3457 get_constraint_for_1 (TREE_OPERAND (t
, 0), results
, address_p
,
3460 /* We are missing handling for TARGET_MEM_REF here. */
3465 case tcc_exceptional
:
3467 switch (TREE_CODE (t
))
3471 get_constraint_for_ssa_var (t
, results
, address_p
);
3479 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (t
), i
, val
)
3481 struct constraint_expr
*rhsp
;
3483 get_constraint_for_1 (val
, &tmp
, address_p
, lhs_p
);
3484 FOR_EACH_VEC_ELT (tmp
, j
, rhsp
)
3485 results
->safe_push (*rhsp
);
3488 /* We do not know whether the constructor was complete,
3489 so technically we have to add &NOTHING or &ANYTHING
3490 like we do for an empty constructor as well. */
3497 case tcc_declaration
:
3499 get_constraint_for_ssa_var (t
, results
, address_p
);
3504 /* We cannot refer to automatic variables through constants. */
3505 temp
.type
= ADDRESSOF
;
3506 temp
.var
= nonlocal_id
;
3508 results
->safe_push (temp
);
3514 /* The default fallback is a constraint from anything. */
3515 temp
.type
= ADDRESSOF
;
3516 temp
.var
= anything_id
;
3518 results
->safe_push (temp
);
3521 /* Given a gimple tree T, return the constraint expression vector for it. */
3524 get_constraint_for (tree t
, vec
<ce_s
> *results
)
3526 gcc_assert (results
->length () == 0);
3528 get_constraint_for_1 (t
, results
, false, true);
3531 /* Given a gimple tree T, return the constraint expression vector for it
3532 to be used as the rhs of a constraint. */
3535 get_constraint_for_rhs (tree t
, vec
<ce_s
> *results
)
3537 gcc_assert (results
->length () == 0);
3539 get_constraint_for_1 (t
, results
, false, false);
3543 /* Efficiently generates constraints from all entries in *RHSC to all
3544 entries in *LHSC. */
3547 process_all_all_constraints (vec
<ce_s
> lhsc
,
3550 struct constraint_expr
*lhsp
, *rhsp
;
3553 if (lhsc
.length () <= 1 || rhsc
.length () <= 1)
3555 FOR_EACH_VEC_ELT (lhsc
, i
, lhsp
)
3556 FOR_EACH_VEC_ELT (rhsc
, j
, rhsp
)
3557 process_constraint (new_constraint (*lhsp
, *rhsp
));
3561 struct constraint_expr tmp
;
3562 tmp
= new_scalar_tmp_constraint_exp ("allalltmp");
3563 FOR_EACH_VEC_ELT (rhsc
, i
, rhsp
)
3564 process_constraint (new_constraint (tmp
, *rhsp
));
3565 FOR_EACH_VEC_ELT (lhsc
, i
, lhsp
)
3566 process_constraint (new_constraint (*lhsp
, tmp
));
3570 /* Handle aggregate copies by expanding into copies of the respective
3571 fields of the structures. */
3574 do_structure_copy (tree lhsop
, tree rhsop
)
3576 struct constraint_expr
*lhsp
, *rhsp
;
3577 auto_vec
<ce_s
> lhsc
;
3578 auto_vec
<ce_s
> rhsc
;
3581 get_constraint_for (lhsop
, &lhsc
);
3582 get_constraint_for_rhs (rhsop
, &rhsc
);
3585 if (lhsp
->type
== DEREF
3586 || (lhsp
->type
== ADDRESSOF
&& lhsp
->var
== anything_id
)
3587 || rhsp
->type
== DEREF
)
3589 if (lhsp
->type
== DEREF
)
3591 gcc_assert (lhsc
.length () == 1);
3592 lhsp
->offset
= UNKNOWN_OFFSET
;
3594 if (rhsp
->type
== DEREF
)
3596 gcc_assert (rhsc
.length () == 1);
3597 rhsp
->offset
= UNKNOWN_OFFSET
;
3599 process_all_all_constraints (lhsc
, rhsc
);
3601 else if (lhsp
->type
== SCALAR
3602 && (rhsp
->type
== SCALAR
3603 || rhsp
->type
== ADDRESSOF
))
3605 HOST_WIDE_INT lhssize
, lhsmaxsize
, lhsoffset
;
3606 HOST_WIDE_INT rhssize
, rhsmaxsize
, rhsoffset
;
3608 get_ref_base_and_extent (lhsop
, &lhsoffset
, &lhssize
, &lhsmaxsize
);
3609 get_ref_base_and_extent (rhsop
, &rhsoffset
, &rhssize
, &rhsmaxsize
);
3610 for (j
= 0; lhsc
.iterate (j
, &lhsp
);)
3612 varinfo_t lhsv
, rhsv
;
3614 lhsv
= get_varinfo (lhsp
->var
);
3615 rhsv
= get_varinfo (rhsp
->var
);
3616 if (lhsv
->may_have_pointers
3617 && (lhsv
->is_full_var
3618 || rhsv
->is_full_var
3619 || ranges_overlap_p (lhsv
->offset
+ rhsoffset
, lhsv
->size
,
3620 rhsv
->offset
+ lhsoffset
, rhsv
->size
)))
3621 process_constraint (new_constraint (*lhsp
, *rhsp
));
3622 if (!rhsv
->is_full_var
3623 && (lhsv
->is_full_var
3624 || (lhsv
->offset
+ rhsoffset
+ lhsv
->size
3625 > rhsv
->offset
+ lhsoffset
+ rhsv
->size
)))
3628 if (k
>= rhsc
.length ())
3639 /* Create constraints ID = { rhsc }. */
3642 make_constraints_to (unsigned id
, vec
<ce_s
> rhsc
)
3644 struct constraint_expr
*c
;
3645 struct constraint_expr includes
;
3649 includes
.offset
= 0;
3650 includes
.type
= SCALAR
;
3652 FOR_EACH_VEC_ELT (rhsc
, j
, c
)
3653 process_constraint (new_constraint (includes
, *c
));
3656 /* Create a constraint ID = OP. */
3659 make_constraint_to (unsigned id
, tree op
)
3661 auto_vec
<ce_s
> rhsc
;
3662 get_constraint_for_rhs (op
, &rhsc
);
3663 make_constraints_to (id
, rhsc
);
3666 /* Create a constraint ID = &FROM. */
3669 make_constraint_from (varinfo_t vi
, int from
)
3671 struct constraint_expr lhs
, rhs
;
3679 rhs
.type
= ADDRESSOF
;
3680 process_constraint (new_constraint (lhs
, rhs
));
3683 /* Create a constraint ID = FROM. */
3686 make_copy_constraint (varinfo_t vi
, int from
)
3688 struct constraint_expr lhs
, rhs
;
3697 process_constraint (new_constraint (lhs
, rhs
));
3700 /* Make constraints necessary to make OP escape. */
3703 make_escape_constraint (tree op
)
3705 make_constraint_to (escaped_id
, op
);
3708 /* Add constraints to that the solution of VI is transitively closed. */
3711 make_transitive_closure_constraints (varinfo_t vi
)
3713 struct constraint_expr lhs
, rhs
;
3721 rhs
.offset
= UNKNOWN_OFFSET
;
3722 process_constraint (new_constraint (lhs
, rhs
));
3725 /* Temporary storage for fake var decls. */
3726 struct obstack fake_var_decl_obstack
;
3728 /* Build a fake VAR_DECL acting as referrer to a DECL_UID. */
3731 build_fake_var_decl (tree type
)
3733 tree decl
= (tree
) XOBNEW (&fake_var_decl_obstack
, struct tree_var_decl
);
3734 memset (decl
, 0, sizeof (struct tree_var_decl
));
3735 TREE_SET_CODE (decl
, VAR_DECL
);
3736 TREE_TYPE (decl
) = type
;
3737 DECL_UID (decl
) = allocate_decl_uid ();
3738 SET_DECL_PT_UID (decl
, -1);
3739 layout_decl (decl
, 0);
3743 /* Create a new artificial heap variable with NAME.
3744 Return the created variable. */
3747 make_heapvar (const char *name
)
3752 heapvar
= build_fake_var_decl (ptr_type_node
);
3753 DECL_EXTERNAL (heapvar
) = 1;
3755 vi
= new_var_info (heapvar
, name
);
3756 vi
->is_artificial_var
= true;
3757 vi
->is_heap_var
= true;
3758 vi
->is_unknown_size_var
= true;
3762 vi
->is_full_var
= true;
3763 insert_vi_for_tree (heapvar
, vi
);
3768 /* Create a new artificial heap variable with NAME and make a
3769 constraint from it to LHS. Set flags according to a tag used
3770 for tracking restrict pointers. */
3773 make_constraint_from_restrict (varinfo_t lhs
, const char *name
)
3775 varinfo_t vi
= make_heapvar (name
);
3776 vi
->is_global_var
= 1;
3777 vi
->may_have_pointers
= 1;
3778 make_constraint_from (lhs
, vi
->id
);
3782 /* Create a new artificial heap variable with NAME and make a
3783 constraint from it to LHS. Set flags according to a tag used
3784 for tracking restrict pointers and make the artificial heap
3785 point to global memory. */
3788 make_constraint_from_global_restrict (varinfo_t lhs
, const char *name
)
3790 varinfo_t vi
= make_constraint_from_restrict (lhs
, name
);
3791 make_copy_constraint (vi
, nonlocal_id
);
3795 /* In IPA mode there are varinfos for different aspects of reach
3796 function designator. One for the points-to set of the return
3797 value, one for the variables that are clobbered by the function,
3798 one for its uses and one for each parameter (including a single
3799 glob for remaining variadic arguments). */
3801 enum { fi_clobbers
= 1, fi_uses
= 2,
3802 fi_static_chain
= 3, fi_result
= 4, fi_parm_base
= 5 };
3804 /* Get a constraint for the requested part of a function designator FI
3805 when operating in IPA mode. */
3807 static struct constraint_expr
3808 get_function_part_constraint (varinfo_t fi
, unsigned part
)
3810 struct constraint_expr c
;
3812 gcc_assert (in_ipa_mode
);
3814 if (fi
->id
== anything_id
)
3816 /* ??? We probably should have a ANYFN special variable. */
3817 c
.var
= anything_id
;
3821 else if (TREE_CODE (fi
->decl
) == FUNCTION_DECL
)
3823 varinfo_t ai
= first_vi_for_offset (fi
, part
);
3827 c
.var
= anything_id
;
3841 /* For non-IPA mode, generate constraints necessary for a call on the
3845 handle_rhs_call (gimple_call stmt
, vec
<ce_s
> *results
)
3847 struct constraint_expr rhsc
;
3849 bool returns_uses
= false;
3851 for (i
= 0; i
< gimple_call_num_args (stmt
); ++i
)
3853 tree arg
= gimple_call_arg (stmt
, i
);
3854 int flags
= gimple_call_arg_flags (stmt
, i
);
3856 /* If the argument is not used we can ignore it. */
3857 if (flags
& EAF_UNUSED
)
3860 /* As we compute ESCAPED context-insensitive we do not gain
3861 any precision with just EAF_NOCLOBBER but not EAF_NOESCAPE
3862 set. The argument would still get clobbered through the
3864 if ((flags
& EAF_NOCLOBBER
)
3865 && (flags
& EAF_NOESCAPE
))
3867 varinfo_t uses
= get_call_use_vi (stmt
);
3868 if (!(flags
& EAF_DIRECT
))
3870 varinfo_t tem
= new_var_info (NULL_TREE
, "callarg");
3871 make_constraint_to (tem
->id
, arg
);
3872 make_transitive_closure_constraints (tem
);
3873 make_copy_constraint (uses
, tem
->id
);
3876 make_constraint_to (uses
->id
, arg
);
3877 returns_uses
= true;
3879 else if (flags
& EAF_NOESCAPE
)
3881 struct constraint_expr lhs
, rhs
;
3882 varinfo_t uses
= get_call_use_vi (stmt
);
3883 varinfo_t clobbers
= get_call_clobber_vi (stmt
);
3884 varinfo_t tem
= new_var_info (NULL_TREE
, "callarg");
3885 make_constraint_to (tem
->id
, arg
);
3886 if (!(flags
& EAF_DIRECT
))
3887 make_transitive_closure_constraints (tem
);
3888 make_copy_constraint (uses
, tem
->id
);
3889 make_copy_constraint (clobbers
, tem
->id
);
3890 /* Add *tem = nonlocal, do not add *tem = callused as
3891 EAF_NOESCAPE parameters do not escape to other parameters
3892 and all other uses appear in NONLOCAL as well. */
3897 rhs
.var
= nonlocal_id
;
3899 process_constraint (new_constraint (lhs
, rhs
));
3900 returns_uses
= true;
3903 make_escape_constraint (arg
);
3906 /* If we added to the calls uses solution make sure we account for
3907 pointers to it to be returned. */
3910 rhsc
.var
= get_call_use_vi (stmt
)->id
;
3913 results
->safe_push (rhsc
);
3916 /* The static chain escapes as well. */
3917 if (gimple_call_chain (stmt
))
3918 make_escape_constraint (gimple_call_chain (stmt
));
3920 /* And if we applied NRV the address of the return slot escapes as well. */
3921 if (gimple_call_return_slot_opt_p (stmt
)
3922 && gimple_call_lhs (stmt
) != NULL_TREE
3923 && TREE_ADDRESSABLE (TREE_TYPE (gimple_call_lhs (stmt
))))
3925 auto_vec
<ce_s
> tmpc
;
3926 struct constraint_expr lhsc
, *c
;
3927 get_constraint_for_address_of (gimple_call_lhs (stmt
), &tmpc
);
3928 lhsc
.var
= escaped_id
;
3931 FOR_EACH_VEC_ELT (tmpc
, i
, c
)
3932 process_constraint (new_constraint (lhsc
, *c
));
3935 /* Regular functions return nonlocal memory. */
3936 rhsc
.var
= nonlocal_id
;
3939 results
->safe_push (rhsc
);
3942 /* For non-IPA mode, generate constraints necessary for a call
3943 that returns a pointer and assigns it to LHS. This simply makes
3944 the LHS point to global and escaped variables. */
3947 handle_lhs_call (gimple_call stmt
, tree lhs
, int flags
, vec
<ce_s
> rhsc
,
3950 auto_vec
<ce_s
> lhsc
;
3952 get_constraint_for (lhs
, &lhsc
);
3953 /* If the store is to a global decl make sure to
3954 add proper escape constraints. */
3955 lhs
= get_base_address (lhs
);
3958 && is_global_var (lhs
))
3960 struct constraint_expr tmpc
;
3961 tmpc
.var
= escaped_id
;
3964 lhsc
.safe_push (tmpc
);
3967 /* If the call returns an argument unmodified override the rhs
3969 if (flags
& ERF_RETURNS_ARG
3970 && (flags
& ERF_RETURN_ARG_MASK
) < gimple_call_num_args (stmt
))
3974 arg
= gimple_call_arg (stmt
, flags
& ERF_RETURN_ARG_MASK
);
3975 get_constraint_for (arg
, &rhsc
);
3976 process_all_all_constraints (lhsc
, rhsc
);
3979 else if (flags
& ERF_NOALIAS
)
3982 struct constraint_expr tmpc
;
3984 vi
= make_heapvar ("HEAP");
3985 /* We are marking allocated storage local, we deal with it becoming
3986 global by escaping and setting of vars_contains_escaped_heap. */
3987 DECL_EXTERNAL (vi
->decl
) = 0;
3988 vi
->is_global_var
= 0;
3989 /* If this is not a real malloc call assume the memory was
3990 initialized and thus may point to global memory. All
3991 builtin functions with the malloc attribute behave in a sane way. */
3993 || DECL_BUILT_IN_CLASS (fndecl
) != BUILT_IN_NORMAL
)
3994 make_constraint_from (vi
, nonlocal_id
);
3997 tmpc
.type
= ADDRESSOF
;
3998 rhsc
.safe_push (tmpc
);
3999 process_all_all_constraints (lhsc
, rhsc
);
4003 process_all_all_constraints (lhsc
, rhsc
);
4006 /* For non-IPA mode, generate constraints necessary for a call of a
4007 const function that returns a pointer in the statement STMT. */
4010 handle_const_call (gimple_call stmt
, vec
<ce_s
> *results
)
4012 struct constraint_expr rhsc
;
4015 /* Treat nested const functions the same as pure functions as far
4016 as the static chain is concerned. */
4017 if (gimple_call_chain (stmt
))
4019 varinfo_t uses
= get_call_use_vi (stmt
);
4020 make_transitive_closure_constraints (uses
);
4021 make_constraint_to (uses
->id
, gimple_call_chain (stmt
));
4022 rhsc
.var
= uses
->id
;
4025 results
->safe_push (rhsc
);
4028 /* May return arguments. */
4029 for (k
= 0; k
< gimple_call_num_args (stmt
); ++k
)
4031 tree arg
= gimple_call_arg (stmt
, k
);
4032 auto_vec
<ce_s
> argc
;
4034 struct constraint_expr
*argp
;
4035 get_constraint_for_rhs (arg
, &argc
);
4036 FOR_EACH_VEC_ELT (argc
, i
, argp
)
4037 results
->safe_push (*argp
);
4040 /* May return addresses of globals. */
4041 rhsc
.var
= nonlocal_id
;
4043 rhsc
.type
= ADDRESSOF
;
4044 results
->safe_push (rhsc
);
4047 /* For non-IPA mode, generate constraints necessary for a call to a
4048 pure function in statement STMT. */
4051 handle_pure_call (gimple_call stmt
, vec
<ce_s
> *results
)
4053 struct constraint_expr rhsc
;
4055 varinfo_t uses
= NULL
;
4057 /* Memory reached from pointer arguments is call-used. */
4058 for (i
= 0; i
< gimple_call_num_args (stmt
); ++i
)
4060 tree arg
= gimple_call_arg (stmt
, i
);
4063 uses
= get_call_use_vi (stmt
);
4064 make_transitive_closure_constraints (uses
);
4066 make_constraint_to (uses
->id
, arg
);
4069 /* The static chain is used as well. */
4070 if (gimple_call_chain (stmt
))
4074 uses
= get_call_use_vi (stmt
);
4075 make_transitive_closure_constraints (uses
);
4077 make_constraint_to (uses
->id
, gimple_call_chain (stmt
));
4080 /* Pure functions may return call-used and nonlocal memory. */
4083 rhsc
.var
= uses
->id
;
4086 results
->safe_push (rhsc
);
4088 rhsc
.var
= nonlocal_id
;
4091 results
->safe_push (rhsc
);
4095 /* Return the varinfo for the callee of CALL. */
4098 get_fi_for_callee (gimple_call call
)
4100 tree decl
, fn
= gimple_call_fn (call
);
4102 if (fn
&& TREE_CODE (fn
) == OBJ_TYPE_REF
)
4103 fn
= OBJ_TYPE_REF_EXPR (fn
);
4105 /* If we can directly resolve the function being called, do so.
4106 Otherwise, it must be some sort of indirect expression that
4107 we should still be able to handle. */
4108 decl
= gimple_call_addr_fndecl (fn
);
4110 return get_vi_for_tree (decl
);
4112 /* If the function is anything other than a SSA name pointer we have no
4113 clue and should be getting ANYFN (well, ANYTHING for now). */
4114 if (!fn
|| TREE_CODE (fn
) != SSA_NAME
)
4115 return get_varinfo (anything_id
);
4117 if (SSA_NAME_IS_DEFAULT_DEF (fn
)
4118 && (TREE_CODE (SSA_NAME_VAR (fn
)) == PARM_DECL
4119 || TREE_CODE (SSA_NAME_VAR (fn
)) == RESULT_DECL
))
4120 fn
= SSA_NAME_VAR (fn
);
4122 return get_vi_for_tree (fn
);
4125 /* Create constraints for the builtin call T. Return true if the call
4126 was handled, otherwise false. */
4129 find_func_aliases_for_builtin_call (struct function
*fn
, gimple_call t
)
4131 tree fndecl
= gimple_call_fndecl (t
);
4132 auto_vec
<ce_s
, 2> lhsc
;
4133 auto_vec
<ce_s
, 4> rhsc
;
4136 if (gimple_call_builtin_p (t
, BUILT_IN_NORMAL
))
4137 /* ??? All builtins that are handled here need to be handled
4138 in the alias-oracle query functions explicitly! */
4139 switch (DECL_FUNCTION_CODE (fndecl
))
4141 /* All the following functions return a pointer to the same object
4142 as their first argument points to. The functions do not add
4143 to the ESCAPED solution. The functions make the first argument
4144 pointed to memory point to what the second argument pointed to
4145 memory points to. */
4146 case BUILT_IN_STRCPY
:
4147 case BUILT_IN_STRNCPY
:
4148 case BUILT_IN_BCOPY
:
4149 case BUILT_IN_MEMCPY
:
4150 case BUILT_IN_MEMMOVE
:
4151 case BUILT_IN_MEMPCPY
:
4152 case BUILT_IN_STPCPY
:
4153 case BUILT_IN_STPNCPY
:
4154 case BUILT_IN_STRCAT
:
4155 case BUILT_IN_STRNCAT
:
4156 case BUILT_IN_STRCPY_CHK
:
4157 case BUILT_IN_STRNCPY_CHK
:
4158 case BUILT_IN_MEMCPY_CHK
:
4159 case BUILT_IN_MEMMOVE_CHK
:
4160 case BUILT_IN_MEMPCPY_CHK
:
4161 case BUILT_IN_STPCPY_CHK
:
4162 case BUILT_IN_STPNCPY_CHK
:
4163 case BUILT_IN_STRCAT_CHK
:
4164 case BUILT_IN_STRNCAT_CHK
:
4165 case BUILT_IN_TM_MEMCPY
:
4166 case BUILT_IN_TM_MEMMOVE
:
4168 tree res
= gimple_call_lhs (t
);
4169 tree dest
= gimple_call_arg (t
, (DECL_FUNCTION_CODE (fndecl
)
4170 == BUILT_IN_BCOPY
? 1 : 0));
4171 tree src
= gimple_call_arg (t
, (DECL_FUNCTION_CODE (fndecl
)
4172 == BUILT_IN_BCOPY
? 0 : 1));
4173 if (res
!= NULL_TREE
)
4175 get_constraint_for (res
, &lhsc
);
4176 if (DECL_FUNCTION_CODE (fndecl
) == BUILT_IN_MEMPCPY
4177 || DECL_FUNCTION_CODE (fndecl
) == BUILT_IN_STPCPY
4178 || DECL_FUNCTION_CODE (fndecl
) == BUILT_IN_STPNCPY
4179 || DECL_FUNCTION_CODE (fndecl
) == BUILT_IN_MEMPCPY_CHK
4180 || DECL_FUNCTION_CODE (fndecl
) == BUILT_IN_STPCPY_CHK
4181 || DECL_FUNCTION_CODE (fndecl
) == BUILT_IN_STPNCPY_CHK
)
4182 get_constraint_for_ptr_offset (dest
, NULL_TREE
, &rhsc
);
4184 get_constraint_for (dest
, &rhsc
);
4185 process_all_all_constraints (lhsc
, rhsc
);
4189 get_constraint_for_ptr_offset (dest
, NULL_TREE
, &lhsc
);
4190 get_constraint_for_ptr_offset (src
, NULL_TREE
, &rhsc
);
4193 process_all_all_constraints (lhsc
, rhsc
);
4196 case BUILT_IN_MEMSET
:
4197 case BUILT_IN_MEMSET_CHK
:
4198 case BUILT_IN_TM_MEMSET
:
4200 tree res
= gimple_call_lhs (t
);
4201 tree dest
= gimple_call_arg (t
, 0);
4204 struct constraint_expr ac
;
4205 if (res
!= NULL_TREE
)
4207 get_constraint_for (res
, &lhsc
);
4208 get_constraint_for (dest
, &rhsc
);
4209 process_all_all_constraints (lhsc
, rhsc
);
4212 get_constraint_for_ptr_offset (dest
, NULL_TREE
, &lhsc
);
4214 if (flag_delete_null_pointer_checks
4215 && integer_zerop (gimple_call_arg (t
, 1)))
4217 ac
.type
= ADDRESSOF
;
4218 ac
.var
= nothing_id
;
4223 ac
.var
= integer_id
;
4226 FOR_EACH_VEC_ELT (lhsc
, i
, lhsp
)
4227 process_constraint (new_constraint (*lhsp
, ac
));
4230 case BUILT_IN_POSIX_MEMALIGN
:
4232 tree ptrptr
= gimple_call_arg (t
, 0);
4233 get_constraint_for (ptrptr
, &lhsc
);
4235 varinfo_t vi
= make_heapvar ("HEAP");
4236 /* We are marking allocated storage local, we deal with it becoming
4237 global by escaping and setting of vars_contains_escaped_heap. */
4238 DECL_EXTERNAL (vi
->decl
) = 0;
4239 vi
->is_global_var
= 0;
4240 struct constraint_expr tmpc
;
4243 tmpc
.type
= ADDRESSOF
;
4244 rhsc
.safe_push (tmpc
);
4245 process_all_all_constraints (lhsc
, rhsc
);
4248 case BUILT_IN_ASSUME_ALIGNED
:
4250 tree res
= gimple_call_lhs (t
);
4251 tree dest
= gimple_call_arg (t
, 0);
4252 if (res
!= NULL_TREE
)
4254 get_constraint_for (res
, &lhsc
);
4255 get_constraint_for (dest
, &rhsc
);
4256 process_all_all_constraints (lhsc
, rhsc
);
4260 /* All the following functions do not return pointers, do not
4261 modify the points-to sets of memory reachable from their
4262 arguments and do not add to the ESCAPED solution. */
4263 case BUILT_IN_SINCOS
:
4264 case BUILT_IN_SINCOSF
:
4265 case BUILT_IN_SINCOSL
:
4266 case BUILT_IN_FREXP
:
4267 case BUILT_IN_FREXPF
:
4268 case BUILT_IN_FREXPL
:
4269 case BUILT_IN_GAMMA_R
:
4270 case BUILT_IN_GAMMAF_R
:
4271 case BUILT_IN_GAMMAL_R
:
4272 case BUILT_IN_LGAMMA_R
:
4273 case BUILT_IN_LGAMMAF_R
:
4274 case BUILT_IN_LGAMMAL_R
:
4276 case BUILT_IN_MODFF
:
4277 case BUILT_IN_MODFL
:
4278 case BUILT_IN_REMQUO
:
4279 case BUILT_IN_REMQUOF
:
4280 case BUILT_IN_REMQUOL
:
4283 case BUILT_IN_STRDUP
:
4284 case BUILT_IN_STRNDUP
:
4285 case BUILT_IN_REALLOC
:
4286 if (gimple_call_lhs (t
))
4288 handle_lhs_call (t
, gimple_call_lhs (t
),
4289 gimple_call_return_flags (t
) | ERF_NOALIAS
,
4291 get_constraint_for_ptr_offset (gimple_call_lhs (t
),
4293 get_constraint_for_ptr_offset (gimple_call_arg (t
, 0),
4297 process_all_all_constraints (lhsc
, rhsc
);
4300 /* For realloc the resulting pointer can be equal to the
4301 argument as well. But only doing this wouldn't be
4302 correct because with ptr == 0 realloc behaves like malloc. */
4303 if (DECL_FUNCTION_CODE (fndecl
) == BUILT_IN_REALLOC
)
4305 get_constraint_for (gimple_call_lhs (t
), &lhsc
);
4306 get_constraint_for (gimple_call_arg (t
, 0), &rhsc
);
4307 process_all_all_constraints (lhsc
, rhsc
);
4312 /* String / character search functions return a pointer into the
4313 source string or NULL. */
4314 case BUILT_IN_INDEX
:
4315 case BUILT_IN_STRCHR
:
4316 case BUILT_IN_STRRCHR
:
4317 case BUILT_IN_MEMCHR
:
4318 case BUILT_IN_STRSTR
:
4319 case BUILT_IN_STRPBRK
:
4320 if (gimple_call_lhs (t
))
4322 tree src
= gimple_call_arg (t
, 0);
4323 get_constraint_for_ptr_offset (src
, NULL_TREE
, &rhsc
);
4324 constraint_expr nul
;
4325 nul
.var
= nothing_id
;
4327 nul
.type
= ADDRESSOF
;
4328 rhsc
.safe_push (nul
);
4329 get_constraint_for (gimple_call_lhs (t
), &lhsc
);
4330 process_all_all_constraints (lhsc
, rhsc
);
4333 /* Trampolines are special - they set up passing the static
4335 case BUILT_IN_INIT_TRAMPOLINE
:
4337 tree tramp
= gimple_call_arg (t
, 0);
4338 tree nfunc
= gimple_call_arg (t
, 1);
4339 tree frame
= gimple_call_arg (t
, 2);
4341 struct constraint_expr lhs
, *rhsp
;
4344 varinfo_t nfi
= NULL
;
4345 gcc_assert (TREE_CODE (nfunc
) == ADDR_EXPR
);
4346 nfi
= lookup_vi_for_tree (TREE_OPERAND (nfunc
, 0));
4349 lhs
= get_function_part_constraint (nfi
, fi_static_chain
);
4350 get_constraint_for (frame
, &rhsc
);
4351 FOR_EACH_VEC_ELT (rhsc
, i
, rhsp
)
4352 process_constraint (new_constraint (lhs
, *rhsp
));
4355 /* Make the frame point to the function for
4356 the trampoline adjustment call. */
4357 get_constraint_for (tramp
, &lhsc
);
4359 get_constraint_for (nfunc
, &rhsc
);
4360 process_all_all_constraints (lhsc
, rhsc
);
4365 /* Else fallthru to generic handling which will let
4366 the frame escape. */
4369 case BUILT_IN_ADJUST_TRAMPOLINE
:
4371 tree tramp
= gimple_call_arg (t
, 0);
4372 tree res
= gimple_call_lhs (t
);
4373 if (in_ipa_mode
&& res
)
4375 get_constraint_for (res
, &lhsc
);
4376 get_constraint_for (tramp
, &rhsc
);
4378 process_all_all_constraints (lhsc
, rhsc
);
4382 CASE_BUILT_IN_TM_STORE (1):
4383 CASE_BUILT_IN_TM_STORE (2):
4384 CASE_BUILT_IN_TM_STORE (4):
4385 CASE_BUILT_IN_TM_STORE (8):
4386 CASE_BUILT_IN_TM_STORE (FLOAT
):
4387 CASE_BUILT_IN_TM_STORE (DOUBLE
):
4388 CASE_BUILT_IN_TM_STORE (LDOUBLE
):
4389 CASE_BUILT_IN_TM_STORE (M64
):
4390 CASE_BUILT_IN_TM_STORE (M128
):
4391 CASE_BUILT_IN_TM_STORE (M256
):
4393 tree addr
= gimple_call_arg (t
, 0);
4394 tree src
= gimple_call_arg (t
, 1);
4396 get_constraint_for (addr
, &lhsc
);
4398 get_constraint_for (src
, &rhsc
);
4399 process_all_all_constraints (lhsc
, rhsc
);
4402 CASE_BUILT_IN_TM_LOAD (1):
4403 CASE_BUILT_IN_TM_LOAD (2):
4404 CASE_BUILT_IN_TM_LOAD (4):
4405 CASE_BUILT_IN_TM_LOAD (8):
4406 CASE_BUILT_IN_TM_LOAD (FLOAT
):
4407 CASE_BUILT_IN_TM_LOAD (DOUBLE
):
4408 CASE_BUILT_IN_TM_LOAD (LDOUBLE
):
4409 CASE_BUILT_IN_TM_LOAD (M64
):
4410 CASE_BUILT_IN_TM_LOAD (M128
):
4411 CASE_BUILT_IN_TM_LOAD (M256
):
4413 tree dest
= gimple_call_lhs (t
);
4414 tree addr
= gimple_call_arg (t
, 0);
4416 get_constraint_for (dest
, &lhsc
);
4417 get_constraint_for (addr
, &rhsc
);
4419 process_all_all_constraints (lhsc
, rhsc
);
4422 /* Variadic argument handling needs to be handled in IPA
4424 case BUILT_IN_VA_START
:
4426 tree valist
= gimple_call_arg (t
, 0);
4427 struct constraint_expr rhs
, *lhsp
;
4429 get_constraint_for (valist
, &lhsc
);
4431 /* The va_list gets access to pointers in variadic
4432 arguments. Which we know in the case of IPA analysis
4433 and otherwise are just all nonlocal variables. */
4436 fi
= lookup_vi_for_tree (fn
->decl
);
4437 rhs
= get_function_part_constraint (fi
, ~0);
4438 rhs
.type
= ADDRESSOF
;
4442 rhs
.var
= nonlocal_id
;
4443 rhs
.type
= ADDRESSOF
;
4446 FOR_EACH_VEC_ELT (lhsc
, i
, lhsp
)
4447 process_constraint (new_constraint (*lhsp
, rhs
));
4448 /* va_list is clobbered. */
4449 make_constraint_to (get_call_clobber_vi (t
)->id
, valist
);
4452 /* va_end doesn't have any effect that matters. */
4453 case BUILT_IN_VA_END
:
4455 /* Alternate return. Simply give up for now. */
4456 case BUILT_IN_RETURN
:
4460 || !(fi
= get_vi_for_tree (fn
->decl
)))
4461 make_constraint_from (get_varinfo (escaped_id
), anything_id
);
4462 else if (in_ipa_mode
4465 struct constraint_expr lhs
, rhs
;
4466 lhs
= get_function_part_constraint (fi
, fi_result
);
4467 rhs
.var
= anything_id
;
4470 process_constraint (new_constraint (lhs
, rhs
));
4474 /* printf-style functions may have hooks to set pointers to
4475 point to somewhere into the generated string. Leave them
4476 for a later exercise... */
4478 /* Fallthru to general call handling. */;
4484 /* Create constraints for the call T. */
4487 find_func_aliases_for_call (struct function
*fn
, gimple_call t
)
4489 tree fndecl
= gimple_call_fndecl (t
);
4492 if (fndecl
!= NULL_TREE
4493 && DECL_BUILT_IN (fndecl
)
4494 && find_func_aliases_for_builtin_call (fn
, t
))
4497 fi
= get_fi_for_callee (t
);
4499 || (fndecl
&& !fi
->is_fn_info
))
4501 auto_vec
<ce_s
, 16> rhsc
;
4502 int flags
= gimple_call_flags (t
);
4504 /* Const functions can return their arguments and addresses
4505 of global memory but not of escaped memory. */
4506 if (flags
& (ECF_CONST
|ECF_NOVOPS
))
4508 if (gimple_call_lhs (t
))
4509 handle_const_call (t
, &rhsc
);
4511 /* Pure functions can return addresses in and of memory
4512 reachable from their arguments, but they are not an escape
4513 point for reachable memory of their arguments. */
4514 else if (flags
& (ECF_PURE
|ECF_LOOPING_CONST_OR_PURE
))
4515 handle_pure_call (t
, &rhsc
);
4517 handle_rhs_call (t
, &rhsc
);
4518 if (gimple_call_lhs (t
))
4519 handle_lhs_call (t
, gimple_call_lhs (t
),
4520 gimple_call_return_flags (t
), rhsc
, fndecl
);
4524 auto_vec
<ce_s
, 2> rhsc
;
4528 /* Assign all the passed arguments to the appropriate incoming
4529 parameters of the function. */
4530 for (j
= 0; j
< gimple_call_num_args (t
); j
++)
4532 struct constraint_expr lhs
;
4533 struct constraint_expr
*rhsp
;
4534 tree arg
= gimple_call_arg (t
, j
);
4536 get_constraint_for_rhs (arg
, &rhsc
);
4537 lhs
= get_function_part_constraint (fi
, fi_parm_base
+ j
);
4538 while (rhsc
.length () != 0)
4540 rhsp
= &rhsc
.last ();
4541 process_constraint (new_constraint (lhs
, *rhsp
));
4546 /* If we are returning a value, assign it to the result. */
4547 lhsop
= gimple_call_lhs (t
);
4550 auto_vec
<ce_s
, 2> lhsc
;
4551 struct constraint_expr rhs
;
4552 struct constraint_expr
*lhsp
;
4554 get_constraint_for (lhsop
, &lhsc
);
4555 rhs
= get_function_part_constraint (fi
, fi_result
);
4557 && DECL_RESULT (fndecl
)
4558 && DECL_BY_REFERENCE (DECL_RESULT (fndecl
)))
4560 auto_vec
<ce_s
, 2> tem
;
4561 tem
.quick_push (rhs
);
4563 gcc_checking_assert (tem
.length () == 1);
4566 FOR_EACH_VEC_ELT (lhsc
, j
, lhsp
)
4567 process_constraint (new_constraint (*lhsp
, rhs
));
4570 /* If we pass the result decl by reference, honor that. */
4573 && DECL_RESULT (fndecl
)
4574 && DECL_BY_REFERENCE (DECL_RESULT (fndecl
)))
4576 struct constraint_expr lhs
;
4577 struct constraint_expr
*rhsp
;
4579 get_constraint_for_address_of (lhsop
, &rhsc
);
4580 lhs
= get_function_part_constraint (fi
, fi_result
);
4581 FOR_EACH_VEC_ELT (rhsc
, j
, rhsp
)
4582 process_constraint (new_constraint (lhs
, *rhsp
));
4586 /* If we use a static chain, pass it along. */
4587 if (gimple_call_chain (t
))
4589 struct constraint_expr lhs
;
4590 struct constraint_expr
*rhsp
;
4592 get_constraint_for (gimple_call_chain (t
), &rhsc
);
4593 lhs
= get_function_part_constraint (fi
, fi_static_chain
);
4594 FOR_EACH_VEC_ELT (rhsc
, j
, rhsp
)
4595 process_constraint (new_constraint (lhs
, *rhsp
));
4600 /* Walk statement T setting up aliasing constraints according to the
4601 references found in T. This function is the main part of the
4602 constraint builder. AI points to auxiliary alias information used
4603 when building alias sets and computing alias grouping heuristics. */
4606 find_func_aliases (struct function
*fn
, gimple origt
)
4609 auto_vec
<ce_s
, 16> lhsc
;
4610 auto_vec
<ce_s
, 16> rhsc
;
4611 struct constraint_expr
*c
;
4614 /* Now build constraints expressions. */
4615 if (gimple_code (t
) == GIMPLE_PHI
)
4620 /* For a phi node, assign all the arguments to
4622 get_constraint_for (gimple_phi_result (t
), &lhsc
);
4623 for (i
= 0; i
< gimple_phi_num_args (t
); i
++)
4625 tree strippedrhs
= PHI_ARG_DEF (t
, i
);
4627 STRIP_NOPS (strippedrhs
);
4628 get_constraint_for_rhs (gimple_phi_arg_def (t
, i
), &rhsc
);
4630 FOR_EACH_VEC_ELT (lhsc
, j
, c
)
4632 struct constraint_expr
*c2
;
4633 while (rhsc
.length () > 0)
4636 process_constraint (new_constraint (*c
, *c2
));
4642 /* In IPA mode, we need to generate constraints to pass call
4643 arguments through their calls. There are two cases,
4644 either a GIMPLE_CALL returning a value, or just a plain
4645 GIMPLE_CALL when we are not.
4647 In non-ipa mode, we need to generate constraints for each
4648 pointer passed by address. */
4649 else if (is_gimple_call (t
))
4650 find_func_aliases_for_call (fn
, as_a
<gimple_call
> (t
));
4652 /* Otherwise, just a regular assignment statement. Only care about
4653 operations with pointer result, others are dealt with as escape
4654 points if they have pointer operands. */
4655 else if (is_gimple_assign (t
))
4657 /* Otherwise, just a regular assignment statement. */
4658 tree lhsop
= gimple_assign_lhs (t
);
4659 tree rhsop
= (gimple_num_ops (t
) == 2) ? gimple_assign_rhs1 (t
) : NULL
;
4661 if (rhsop
&& TREE_CLOBBER_P (rhsop
))
4662 /* Ignore clobbers, they don't actually store anything into
4665 else if (rhsop
&& AGGREGATE_TYPE_P (TREE_TYPE (lhsop
)))
4666 do_structure_copy (lhsop
, rhsop
);
4669 enum tree_code code
= gimple_assign_rhs_code (t
);
4671 get_constraint_for (lhsop
, &lhsc
);
4673 if (FLOAT_TYPE_P (TREE_TYPE (lhsop
)))
4674 /* If the operation produces a floating point result then
4675 assume the value is not produced to transfer a pointer. */
4677 else if (code
== POINTER_PLUS_EXPR
)
4678 get_constraint_for_ptr_offset (gimple_assign_rhs1 (t
),
4679 gimple_assign_rhs2 (t
), &rhsc
);
4680 else if (code
== BIT_AND_EXPR
4681 && TREE_CODE (gimple_assign_rhs2 (t
)) == INTEGER_CST
)
4683 /* Aligning a pointer via a BIT_AND_EXPR is offsetting
4684 the pointer. Handle it by offsetting it by UNKNOWN. */
4685 get_constraint_for_ptr_offset (gimple_assign_rhs1 (t
),
4688 else if ((CONVERT_EXPR_CODE_P (code
)
4689 && !(POINTER_TYPE_P (gimple_expr_type (t
))
4690 && !POINTER_TYPE_P (TREE_TYPE (rhsop
))))
4691 || gimple_assign_single_p (t
))
4692 get_constraint_for_rhs (rhsop
, &rhsc
);
4693 else if (code
== COND_EXPR
)
4695 /* The result is a merge of both COND_EXPR arms. */
4696 auto_vec
<ce_s
, 2> tmp
;
4697 struct constraint_expr
*rhsp
;
4699 get_constraint_for_rhs (gimple_assign_rhs2 (t
), &rhsc
);
4700 get_constraint_for_rhs (gimple_assign_rhs3 (t
), &tmp
);
4701 FOR_EACH_VEC_ELT (tmp
, i
, rhsp
)
4702 rhsc
.safe_push (*rhsp
);
4704 else if (truth_value_p (code
))
4705 /* Truth value results are not pointer (parts). Or at least
4706 very very unreasonable obfuscation of a part. */
4710 /* All other operations are merges. */
4711 auto_vec
<ce_s
, 4> tmp
;
4712 struct constraint_expr
*rhsp
;
4714 get_constraint_for_rhs (gimple_assign_rhs1 (t
), &rhsc
);
4715 for (i
= 2; i
< gimple_num_ops (t
); ++i
)
4717 get_constraint_for_rhs (gimple_op (t
, i
), &tmp
);
4718 FOR_EACH_VEC_ELT (tmp
, j
, rhsp
)
4719 rhsc
.safe_push (*rhsp
);
4723 process_all_all_constraints (lhsc
, rhsc
);
4725 /* If there is a store to a global variable the rhs escapes. */
4726 if ((lhsop
= get_base_address (lhsop
)) != NULL_TREE
4728 && is_global_var (lhsop
)
4730 || DECL_EXTERNAL (lhsop
) || TREE_PUBLIC (lhsop
)))
4731 make_escape_constraint (rhsop
);
4733 /* Handle escapes through return. */
4734 else if (gimple_code (t
) == GIMPLE_RETURN
4735 && gimple_return_retval (as_a
<gimple_return
> (t
)) != NULL_TREE
)
4737 gimple_return return_stmt
= as_a
<gimple_return
> (t
);
4740 || !(fi
= get_vi_for_tree (fn
->decl
)))
4741 make_escape_constraint (gimple_return_retval (return_stmt
));
4742 else if (in_ipa_mode
4745 struct constraint_expr lhs
;
4746 struct constraint_expr
*rhsp
;
4749 lhs
= get_function_part_constraint (fi
, fi_result
);
4750 get_constraint_for_rhs (gimple_return_retval (return_stmt
), &rhsc
);
4751 FOR_EACH_VEC_ELT (rhsc
, i
, rhsp
)
4752 process_constraint (new_constraint (lhs
, *rhsp
));
4755 /* Handle asms conservatively by adding escape constraints to everything. */
4756 else if (gimple_asm asm_stmt
= dyn_cast
<gimple_asm
> (t
))
4758 unsigned i
, noutputs
;
4759 const char **oconstraints
;
4760 const char *constraint
;
4761 bool allows_mem
, allows_reg
, is_inout
;
4763 noutputs
= gimple_asm_noutputs (asm_stmt
);
4764 oconstraints
= XALLOCAVEC (const char *, noutputs
);
4766 for (i
= 0; i
< noutputs
; ++i
)
4768 tree link
= gimple_asm_output_op (asm_stmt
, i
);
4769 tree op
= TREE_VALUE (link
);
4771 constraint
= TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (link
)));
4772 oconstraints
[i
] = constraint
;
4773 parse_output_constraint (&constraint
, i
, 0, 0, &allows_mem
,
4774 &allows_reg
, &is_inout
);
4776 /* A memory constraint makes the address of the operand escape. */
4777 if (!allows_reg
&& allows_mem
)
4778 make_escape_constraint (build_fold_addr_expr (op
));
4780 /* The asm may read global memory, so outputs may point to
4781 any global memory. */
4784 auto_vec
<ce_s
, 2> lhsc
;
4785 struct constraint_expr rhsc
, *lhsp
;
4787 get_constraint_for (op
, &lhsc
);
4788 rhsc
.var
= nonlocal_id
;
4791 FOR_EACH_VEC_ELT (lhsc
, j
, lhsp
)
4792 process_constraint (new_constraint (*lhsp
, rhsc
));
4795 for (i
= 0; i
< gimple_asm_ninputs (asm_stmt
); ++i
)
4797 tree link
= gimple_asm_input_op (asm_stmt
, i
);
4798 tree op
= TREE_VALUE (link
);
4800 constraint
= TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (link
)));
4802 parse_input_constraint (&constraint
, 0, 0, noutputs
, 0, oconstraints
,
4803 &allows_mem
, &allows_reg
);
4805 /* A memory constraint makes the address of the operand escape. */
4806 if (!allows_reg
&& allows_mem
)
4807 make_escape_constraint (build_fold_addr_expr (op
));
4808 /* Strictly we'd only need the constraint to ESCAPED if
4809 the asm clobbers memory, otherwise using something
4810 along the lines of per-call clobbers/uses would be enough. */
4812 make_escape_constraint (op
);
4818 /* Create a constraint adding to the clobber set of FI the memory
4819 pointed to by PTR. */
4822 process_ipa_clobber (varinfo_t fi
, tree ptr
)
4824 vec
<ce_s
> ptrc
= vNULL
;
4825 struct constraint_expr
*c
, lhs
;
4827 get_constraint_for_rhs (ptr
, &ptrc
);
4828 lhs
= get_function_part_constraint (fi
, fi_clobbers
);
4829 FOR_EACH_VEC_ELT (ptrc
, i
, c
)
4830 process_constraint (new_constraint (lhs
, *c
));
4834 /* Walk statement T setting up clobber and use constraints according to the
4835 references found in T. This function is a main part of the
4836 IPA constraint builder. */
4839 find_func_clobbers (struct function
*fn
, gimple origt
)
4842 auto_vec
<ce_s
, 16> lhsc
;
4843 auto_vec
<ce_s
, 16> rhsc
;
4846 /* Add constraints for clobbered/used in IPA mode.
4847 We are not interested in what automatic variables are clobbered
4848 or used as we only use the information in the caller to which
4849 they do not escape. */
4850 gcc_assert (in_ipa_mode
);
4852 /* If the stmt refers to memory in any way it better had a VUSE. */
4853 if (gimple_vuse (t
) == NULL_TREE
)
4856 /* We'd better have function information for the current function. */
4857 fi
= lookup_vi_for_tree (fn
->decl
);
4858 gcc_assert (fi
!= NULL
);
4860 /* Account for stores in assignments and calls. */
4861 if (gimple_vdef (t
) != NULL_TREE
4862 && gimple_has_lhs (t
))
4864 tree lhs
= gimple_get_lhs (t
);
4866 while (handled_component_p (tem
))
4867 tem
= TREE_OPERAND (tem
, 0);
4869 && !auto_var_in_fn_p (tem
, fn
->decl
))
4870 || INDIRECT_REF_P (tem
)
4871 || (TREE_CODE (tem
) == MEM_REF
4872 && !(TREE_CODE (TREE_OPERAND (tem
, 0)) == ADDR_EXPR
4874 (TREE_OPERAND (TREE_OPERAND (tem
, 0), 0), fn
->decl
))))
4876 struct constraint_expr lhsc
, *rhsp
;
4878 lhsc
= get_function_part_constraint (fi
, fi_clobbers
);
4879 get_constraint_for_address_of (lhs
, &rhsc
);
4880 FOR_EACH_VEC_ELT (rhsc
, i
, rhsp
)
4881 process_constraint (new_constraint (lhsc
, *rhsp
));
4886 /* Account for uses in assigments and returns. */
4887 if (gimple_assign_single_p (t
)
4888 || (gimple_code (t
) == GIMPLE_RETURN
4889 && gimple_return_retval (as_a
<gimple_return
> (t
)) != NULL_TREE
))
4891 tree rhs
= (gimple_assign_single_p (t
)
4892 ? gimple_assign_rhs1 (t
)
4893 : gimple_return_retval (as_a
<gimple_return
> (t
)));
4895 while (handled_component_p (tem
))
4896 tem
= TREE_OPERAND (tem
, 0);
4898 && !auto_var_in_fn_p (tem
, fn
->decl
))
4899 || INDIRECT_REF_P (tem
)
4900 || (TREE_CODE (tem
) == MEM_REF
4901 && !(TREE_CODE (TREE_OPERAND (tem
, 0)) == ADDR_EXPR
4903 (TREE_OPERAND (TREE_OPERAND (tem
, 0), 0), fn
->decl
))))
4905 struct constraint_expr lhs
, *rhsp
;
4907 lhs
= get_function_part_constraint (fi
, fi_uses
);
4908 get_constraint_for_address_of (rhs
, &rhsc
);
4909 FOR_EACH_VEC_ELT (rhsc
, i
, rhsp
)
4910 process_constraint (new_constraint (lhs
, *rhsp
));
4915 if (gimple_call call_stmt
= dyn_cast
<gimple_call
> (t
))
4917 varinfo_t cfi
= NULL
;
4918 tree decl
= gimple_call_fndecl (t
);
4919 struct constraint_expr lhs
, rhs
;
4922 /* For builtins we do not have separate function info. For those
4923 we do not generate escapes for we have to generate clobbers/uses. */
4924 if (gimple_call_builtin_p (t
, BUILT_IN_NORMAL
))
4925 switch (DECL_FUNCTION_CODE (decl
))
4927 /* The following functions use and clobber memory pointed to
4928 by their arguments. */
4929 case BUILT_IN_STRCPY
:
4930 case BUILT_IN_STRNCPY
:
4931 case BUILT_IN_BCOPY
:
4932 case BUILT_IN_MEMCPY
:
4933 case BUILT_IN_MEMMOVE
:
4934 case BUILT_IN_MEMPCPY
:
4935 case BUILT_IN_STPCPY
:
4936 case BUILT_IN_STPNCPY
:
4937 case BUILT_IN_STRCAT
:
4938 case BUILT_IN_STRNCAT
:
4939 case BUILT_IN_STRCPY_CHK
:
4940 case BUILT_IN_STRNCPY_CHK
:
4941 case BUILT_IN_MEMCPY_CHK
:
4942 case BUILT_IN_MEMMOVE_CHK
:
4943 case BUILT_IN_MEMPCPY_CHK
:
4944 case BUILT_IN_STPCPY_CHK
:
4945 case BUILT_IN_STPNCPY_CHK
:
4946 case BUILT_IN_STRCAT_CHK
:
4947 case BUILT_IN_STRNCAT_CHK
:
4949 tree dest
= gimple_call_arg (t
, (DECL_FUNCTION_CODE (decl
)
4950 == BUILT_IN_BCOPY
? 1 : 0));
4951 tree src
= gimple_call_arg (t
, (DECL_FUNCTION_CODE (decl
)
4952 == BUILT_IN_BCOPY
? 0 : 1));
4954 struct constraint_expr
*rhsp
, *lhsp
;
4955 get_constraint_for_ptr_offset (dest
, NULL_TREE
, &lhsc
);
4956 lhs
= get_function_part_constraint (fi
, fi_clobbers
);
4957 FOR_EACH_VEC_ELT (lhsc
, i
, lhsp
)
4958 process_constraint (new_constraint (lhs
, *lhsp
));
4959 get_constraint_for_ptr_offset (src
, NULL_TREE
, &rhsc
);
4960 lhs
= get_function_part_constraint (fi
, fi_uses
);
4961 FOR_EACH_VEC_ELT (rhsc
, i
, rhsp
)
4962 process_constraint (new_constraint (lhs
, *rhsp
));
4965 /* The following function clobbers memory pointed to by
4967 case BUILT_IN_MEMSET
:
4968 case BUILT_IN_MEMSET_CHK
:
4969 case BUILT_IN_POSIX_MEMALIGN
:
4971 tree dest
= gimple_call_arg (t
, 0);
4974 get_constraint_for_ptr_offset (dest
, NULL_TREE
, &lhsc
);
4975 lhs
= get_function_part_constraint (fi
, fi_clobbers
);
4976 FOR_EACH_VEC_ELT (lhsc
, i
, lhsp
)
4977 process_constraint (new_constraint (lhs
, *lhsp
));
4980 /* The following functions clobber their second and third
4982 case BUILT_IN_SINCOS
:
4983 case BUILT_IN_SINCOSF
:
4984 case BUILT_IN_SINCOSL
:
4986 process_ipa_clobber (fi
, gimple_call_arg (t
, 1));
4987 process_ipa_clobber (fi
, gimple_call_arg (t
, 2));
4990 /* The following functions clobber their second argument. */
4991 case BUILT_IN_FREXP
:
4992 case BUILT_IN_FREXPF
:
4993 case BUILT_IN_FREXPL
:
4994 case BUILT_IN_LGAMMA_R
:
4995 case BUILT_IN_LGAMMAF_R
:
4996 case BUILT_IN_LGAMMAL_R
:
4997 case BUILT_IN_GAMMA_R
:
4998 case BUILT_IN_GAMMAF_R
:
4999 case BUILT_IN_GAMMAL_R
:
5001 case BUILT_IN_MODFF
:
5002 case BUILT_IN_MODFL
:
5004 process_ipa_clobber (fi
, gimple_call_arg (t
, 1));
5007 /* The following functions clobber their third argument. */
5008 case BUILT_IN_REMQUO
:
5009 case BUILT_IN_REMQUOF
:
5010 case BUILT_IN_REMQUOL
:
5012 process_ipa_clobber (fi
, gimple_call_arg (t
, 2));
5015 /* The following functions neither read nor clobber memory. */
5016 case BUILT_IN_ASSUME_ALIGNED
:
5019 /* Trampolines are of no interest to us. */
5020 case BUILT_IN_INIT_TRAMPOLINE
:
5021 case BUILT_IN_ADJUST_TRAMPOLINE
:
5023 case BUILT_IN_VA_START
:
5024 case BUILT_IN_VA_END
:
5026 /* printf-style functions may have hooks to set pointers to
5027 point to somewhere into the generated string. Leave them
5028 for a later exercise... */
5030 /* Fallthru to general call handling. */;
5033 /* Parameters passed by value are used. */
5034 lhs
= get_function_part_constraint (fi
, fi_uses
);
5035 for (i
= 0; i
< gimple_call_num_args (t
); i
++)
5037 struct constraint_expr
*rhsp
;
5038 tree arg
= gimple_call_arg (t
, i
);
5040 if (TREE_CODE (arg
) == SSA_NAME
5041 || is_gimple_min_invariant (arg
))
5044 get_constraint_for_address_of (arg
, &rhsc
);
5045 FOR_EACH_VEC_ELT (rhsc
, j
, rhsp
)
5046 process_constraint (new_constraint (lhs
, *rhsp
));
5050 /* Build constraints for propagating clobbers/uses along the
5052 cfi
= get_fi_for_callee (call_stmt
);
5053 if (cfi
->id
== anything_id
)
5055 if (gimple_vdef (t
))
5056 make_constraint_from (first_vi_for_offset (fi
, fi_clobbers
),
5058 make_constraint_from (first_vi_for_offset (fi
, fi_uses
),
5063 /* For callees without function info (that's external functions),
5064 ESCAPED is clobbered and used. */
5065 if (gimple_call_fndecl (t
)
5066 && !cfi
->is_fn_info
)
5070 if (gimple_vdef (t
))
5071 make_copy_constraint (first_vi_for_offset (fi
, fi_clobbers
),
5073 make_copy_constraint (first_vi_for_offset (fi
, fi_uses
), escaped_id
);
5075 /* Also honor the call statement use/clobber info. */
5076 if ((vi
= lookup_call_clobber_vi (call_stmt
)) != NULL
)
5077 make_copy_constraint (first_vi_for_offset (fi
, fi_clobbers
),
5079 if ((vi
= lookup_call_use_vi (call_stmt
)) != NULL
)
5080 make_copy_constraint (first_vi_for_offset (fi
, fi_uses
),
5085 /* Otherwise the caller clobbers and uses what the callee does.
5086 ??? This should use a new complex constraint that filters
5087 local variables of the callee. */
5088 if (gimple_vdef (t
))
5090 lhs
= get_function_part_constraint (fi
, fi_clobbers
);
5091 rhs
= get_function_part_constraint (cfi
, fi_clobbers
);
5092 process_constraint (new_constraint (lhs
, rhs
));
5094 lhs
= get_function_part_constraint (fi
, fi_uses
);
5095 rhs
= get_function_part_constraint (cfi
, fi_uses
);
5096 process_constraint (new_constraint (lhs
, rhs
));
5098 else if (gimple_code (t
) == GIMPLE_ASM
)
5100 /* ??? Ick. We can do better. */
5101 if (gimple_vdef (t
))
5102 make_constraint_from (first_vi_for_offset (fi
, fi_clobbers
),
5104 make_constraint_from (first_vi_for_offset (fi
, fi_uses
),
5110 /* Find the first varinfo in the same variable as START that overlaps with
5111 OFFSET. Return NULL if we can't find one. */
5114 first_vi_for_offset (varinfo_t start
, unsigned HOST_WIDE_INT offset
)
5116 /* If the offset is outside of the variable, bail out. */
5117 if (offset
>= start
->fullsize
)
5120 /* If we cannot reach offset from start, lookup the first field
5121 and start from there. */
5122 if (start
->offset
> offset
)
5123 start
= get_varinfo (start
->head
);
5127 /* We may not find a variable in the field list with the actual
5128 offset when when we have glommed a structure to a variable.
5129 In that case, however, offset should still be within the size
5131 if (offset
>= start
->offset
5132 && (offset
- start
->offset
) < start
->size
)
5135 start
= vi_next (start
);
5141 /* Find the first varinfo in the same variable as START that overlaps with
5142 OFFSET. If there is no such varinfo the varinfo directly preceding
5143 OFFSET is returned. */
5146 first_or_preceding_vi_for_offset (varinfo_t start
,
5147 unsigned HOST_WIDE_INT offset
)
5149 /* If we cannot reach offset from start, lookup the first field
5150 and start from there. */
5151 if (start
->offset
> offset
)
5152 start
= get_varinfo (start
->head
);
5154 /* We may not find a variable in the field list with the actual
5155 offset when when we have glommed a structure to a variable.
5156 In that case, however, offset should still be within the size
5158 If we got beyond the offset we look for return the field
5159 directly preceding offset which may be the last field. */
5161 && offset
>= start
->offset
5162 && !((offset
- start
->offset
) < start
->size
))
5163 start
= vi_next (start
);
5169 /* This structure is used during pushing fields onto the fieldstack
5170 to track the offset of the field, since bitpos_of_field gives it
5171 relative to its immediate containing type, and we want it relative
5172 to the ultimate containing object. */
5176 /* Offset from the base of the base containing object to this field. */
5177 HOST_WIDE_INT offset
;
5179 /* Size, in bits, of the field. */
5180 unsigned HOST_WIDE_INT size
;
5182 unsigned has_unknown_size
: 1;
5184 unsigned must_have_pointers
: 1;
5186 unsigned may_have_pointers
: 1;
5188 unsigned only_restrict_pointers
: 1;
5190 typedef struct fieldoff fieldoff_s
;
5193 /* qsort comparison function for two fieldoff's PA and PB */
5196 fieldoff_compare (const void *pa
, const void *pb
)
5198 const fieldoff_s
*foa
= (const fieldoff_s
*)pa
;
5199 const fieldoff_s
*fob
= (const fieldoff_s
*)pb
;
5200 unsigned HOST_WIDE_INT foasize
, fobsize
;
5202 if (foa
->offset
< fob
->offset
)
5204 else if (foa
->offset
> fob
->offset
)
5207 foasize
= foa
->size
;
5208 fobsize
= fob
->size
;
5209 if (foasize
< fobsize
)
5211 else if (foasize
> fobsize
)
5216 /* Sort a fieldstack according to the field offset and sizes. */
5218 sort_fieldstack (vec
<fieldoff_s
> fieldstack
)
5220 fieldstack
.qsort (fieldoff_compare
);
5223 /* Return true if T is a type that can have subvars. */
5226 type_can_have_subvars (const_tree t
)
5228 /* Aggregates without overlapping fields can have subvars. */
5229 return TREE_CODE (t
) == RECORD_TYPE
;
5232 /* Return true if V is a tree that we can have subvars for.
5233 Normally, this is any aggregate type. Also complex
5234 types which are not gimple registers can have subvars. */
5237 var_can_have_subvars (const_tree v
)
5239 /* Volatile variables should never have subvars. */
5240 if (TREE_THIS_VOLATILE (v
))
5243 /* Non decls or memory tags can never have subvars. */
5247 return type_can_have_subvars (TREE_TYPE (v
));
5250 /* Return true if T is a type that does contain pointers. */
5253 type_must_have_pointers (tree type
)
5255 if (POINTER_TYPE_P (type
))
5258 if (TREE_CODE (type
) == ARRAY_TYPE
)
5259 return type_must_have_pointers (TREE_TYPE (type
));
5261 /* A function or method can have pointers as arguments, so track
5262 those separately. */
5263 if (TREE_CODE (type
) == FUNCTION_TYPE
5264 || TREE_CODE (type
) == METHOD_TYPE
)
5271 field_must_have_pointers (tree t
)
5273 return type_must_have_pointers (TREE_TYPE (t
));
5276 /* Given a TYPE, and a vector of field offsets FIELDSTACK, push all
5277 the fields of TYPE onto fieldstack, recording their offsets along
5280 OFFSET is used to keep track of the offset in this entire
5281 structure, rather than just the immediately containing structure.
5282 Returns false if the caller is supposed to handle the field we
5286 push_fields_onto_fieldstack (tree type
, vec
<fieldoff_s
> *fieldstack
,
5287 HOST_WIDE_INT offset
)
5290 bool empty_p
= true;
5292 if (TREE_CODE (type
) != RECORD_TYPE
)
5295 /* If the vector of fields is growing too big, bail out early.
5296 Callers check for vec::length <= MAX_FIELDS_FOR_FIELD_SENSITIVE, make
5298 if (fieldstack
->length () > MAX_FIELDS_FOR_FIELD_SENSITIVE
)
5301 for (field
= TYPE_FIELDS (type
); field
; field
= DECL_CHAIN (field
))
5302 if (TREE_CODE (field
) == FIELD_DECL
)
5305 HOST_WIDE_INT foff
= bitpos_of_field (field
);
5307 if (!var_can_have_subvars (field
)
5308 || TREE_CODE (TREE_TYPE (field
)) == QUAL_UNION_TYPE
5309 || TREE_CODE (TREE_TYPE (field
)) == UNION_TYPE
)
5311 else if (!push_fields_onto_fieldstack
5312 (TREE_TYPE (field
), fieldstack
, offset
+ foff
)
5313 && (DECL_SIZE (field
)
5314 && !integer_zerop (DECL_SIZE (field
))))
5315 /* Empty structures may have actual size, like in C++. So
5316 see if we didn't push any subfields and the size is
5317 nonzero, push the field onto the stack. */
5322 fieldoff_s
*pair
= NULL
;
5323 bool has_unknown_size
= false;
5324 bool must_have_pointers_p
;
5326 if (!fieldstack
->is_empty ())
5327 pair
= &fieldstack
->last ();
5329 /* If there isn't anything at offset zero, create sth. */
5331 && offset
+ foff
!= 0)
5333 fieldoff_s e
= {0, offset
+ foff
, false, false, false, false};
5334 pair
= fieldstack
->safe_push (e
);
5337 if (!DECL_SIZE (field
)
5338 || !tree_fits_uhwi_p (DECL_SIZE (field
)))
5339 has_unknown_size
= true;
5341 /* If adjacent fields do not contain pointers merge them. */
5342 must_have_pointers_p
= field_must_have_pointers (field
);
5344 && !has_unknown_size
5345 && !must_have_pointers_p
5346 && !pair
->must_have_pointers
5347 && !pair
->has_unknown_size
5348 && pair
->offset
+ (HOST_WIDE_INT
)pair
->size
== offset
+ foff
)
5350 pair
->size
+= tree_to_uhwi (DECL_SIZE (field
));
5355 e
.offset
= offset
+ foff
;
5356 e
.has_unknown_size
= has_unknown_size
;
5357 if (!has_unknown_size
)
5358 e
.size
= tree_to_uhwi (DECL_SIZE (field
));
5361 e
.must_have_pointers
= must_have_pointers_p
;
5362 e
.may_have_pointers
= true;
5363 e
.only_restrict_pointers
5364 = (!has_unknown_size
5365 && POINTER_TYPE_P (TREE_TYPE (field
))
5366 && TYPE_RESTRICT (TREE_TYPE (field
)));
5367 fieldstack
->safe_push (e
);
5377 /* Count the number of arguments DECL has, and set IS_VARARGS to true
5378 if it is a varargs function. */
5381 count_num_arguments (tree decl
, bool *is_varargs
)
5383 unsigned int num
= 0;
5386 /* Capture named arguments for K&R functions. They do not
5387 have a prototype and thus no TYPE_ARG_TYPES. */
5388 for (t
= DECL_ARGUMENTS (decl
); t
; t
= DECL_CHAIN (t
))
5391 /* Check if the function has variadic arguments. */
5392 for (t
= TYPE_ARG_TYPES (TREE_TYPE (decl
)); t
; t
= TREE_CHAIN (t
))
5393 if (TREE_VALUE (t
) == void_type_node
)
5401 /* Creation function node for DECL, using NAME, and return the index
5402 of the variable we've created for the function. */
5405 create_function_info_for (tree decl
, const char *name
)
5407 struct function
*fn
= DECL_STRUCT_FUNCTION (decl
);
5408 varinfo_t vi
, prev_vi
;
5411 bool is_varargs
= false;
5412 unsigned int num_args
= count_num_arguments (decl
, &is_varargs
);
5414 /* Create the variable info. */
5416 vi
= new_var_info (decl
, name
);
5419 vi
->fullsize
= fi_parm_base
+ num_args
;
5421 vi
->may_have_pointers
= false;
5424 insert_vi_for_tree (vi
->decl
, vi
);
5428 /* Create a variable for things the function clobbers and one for
5429 things the function uses. */
5431 varinfo_t clobbervi
, usevi
;
5432 const char *newname
;
5435 asprintf (&tempname
, "%s.clobber", name
);
5436 newname
= ggc_strdup (tempname
);
5439 clobbervi
= new_var_info (NULL
, newname
);
5440 clobbervi
->offset
= fi_clobbers
;
5441 clobbervi
->size
= 1;
5442 clobbervi
->fullsize
= vi
->fullsize
;
5443 clobbervi
->is_full_var
= true;
5444 clobbervi
->is_global_var
= false;
5445 gcc_assert (prev_vi
->offset
< clobbervi
->offset
);
5446 prev_vi
->next
= clobbervi
->id
;
5447 prev_vi
= clobbervi
;
5449 asprintf (&tempname
, "%s.use", name
);
5450 newname
= ggc_strdup (tempname
);
5453 usevi
= new_var_info (NULL
, newname
);
5454 usevi
->offset
= fi_uses
;
5456 usevi
->fullsize
= vi
->fullsize
;
5457 usevi
->is_full_var
= true;
5458 usevi
->is_global_var
= false;
5459 gcc_assert (prev_vi
->offset
< usevi
->offset
);
5460 prev_vi
->next
= usevi
->id
;
5464 /* And one for the static chain. */
5465 if (fn
->static_chain_decl
!= NULL_TREE
)
5468 const char *newname
;
5471 asprintf (&tempname
, "%s.chain", name
);
5472 newname
= ggc_strdup (tempname
);
5475 chainvi
= new_var_info (fn
->static_chain_decl
, newname
);
5476 chainvi
->offset
= fi_static_chain
;
5478 chainvi
->fullsize
= vi
->fullsize
;
5479 chainvi
->is_full_var
= true;
5480 chainvi
->is_global_var
= false;
5481 gcc_assert (prev_vi
->offset
< chainvi
->offset
);
5482 prev_vi
->next
= chainvi
->id
;
5484 insert_vi_for_tree (fn
->static_chain_decl
, chainvi
);
5487 /* Create a variable for the return var. */
5488 if (DECL_RESULT (decl
) != NULL
5489 || !VOID_TYPE_P (TREE_TYPE (TREE_TYPE (decl
))))
5492 const char *newname
;
5494 tree resultdecl
= decl
;
5496 if (DECL_RESULT (decl
))
5497 resultdecl
= DECL_RESULT (decl
);
5499 asprintf (&tempname
, "%s.result", name
);
5500 newname
= ggc_strdup (tempname
);
5503 resultvi
= new_var_info (resultdecl
, newname
);
5504 resultvi
->offset
= fi_result
;
5506 resultvi
->fullsize
= vi
->fullsize
;
5507 resultvi
->is_full_var
= true;
5508 if (DECL_RESULT (decl
))
5509 resultvi
->may_have_pointers
= true;
5510 gcc_assert (prev_vi
->offset
< resultvi
->offset
);
5511 prev_vi
->next
= resultvi
->id
;
5513 if (DECL_RESULT (decl
))
5514 insert_vi_for_tree (DECL_RESULT (decl
), resultvi
);
5517 /* Set up variables for each argument. */
5518 arg
= DECL_ARGUMENTS (decl
);
5519 for (i
= 0; i
< num_args
; i
++)
5522 const char *newname
;
5524 tree argdecl
= decl
;
5529 asprintf (&tempname
, "%s.arg%d", name
, i
);
5530 newname
= ggc_strdup (tempname
);
5533 argvi
= new_var_info (argdecl
, newname
);
5534 argvi
->offset
= fi_parm_base
+ i
;
5536 argvi
->is_full_var
= true;
5537 argvi
->fullsize
= vi
->fullsize
;
5539 argvi
->may_have_pointers
= true;
5540 gcc_assert (prev_vi
->offset
< argvi
->offset
);
5541 prev_vi
->next
= argvi
->id
;
5545 insert_vi_for_tree (arg
, argvi
);
5546 arg
= DECL_CHAIN (arg
);
5550 /* Add one representative for all further args. */
5554 const char *newname
;
5558 asprintf (&tempname
, "%s.varargs", name
);
5559 newname
= ggc_strdup (tempname
);
5562 /* We need sth that can be pointed to for va_start. */
5563 decl
= build_fake_var_decl (ptr_type_node
);
5565 argvi
= new_var_info (decl
, newname
);
5566 argvi
->offset
= fi_parm_base
+ num_args
;
5568 argvi
->is_full_var
= true;
5569 argvi
->is_heap_var
= true;
5570 argvi
->fullsize
= vi
->fullsize
;
5571 gcc_assert (prev_vi
->offset
< argvi
->offset
);
5572 prev_vi
->next
= argvi
->id
;
5580 /* Return true if FIELDSTACK contains fields that overlap.
5581 FIELDSTACK is assumed to be sorted by offset. */
5584 check_for_overlaps (vec
<fieldoff_s
> fieldstack
)
5586 fieldoff_s
*fo
= NULL
;
5588 HOST_WIDE_INT lastoffset
= -1;
5590 FOR_EACH_VEC_ELT (fieldstack
, i
, fo
)
5592 if (fo
->offset
== lastoffset
)
5594 lastoffset
= fo
->offset
;
5599 /* Create a varinfo structure for NAME and DECL, and add it to VARMAP.
5600 This will also create any varinfo structures necessary for fields
5604 create_variable_info_for_1 (tree decl
, const char *name
)
5606 varinfo_t vi
, newvi
;
5607 tree decl_type
= TREE_TYPE (decl
);
5608 tree declsize
= DECL_P (decl
) ? DECL_SIZE (decl
) : TYPE_SIZE (decl_type
);
5609 auto_vec
<fieldoff_s
> fieldstack
;
5612 varpool_node
*vnode
;
5615 || !tree_fits_uhwi_p (declsize
))
5617 vi
= new_var_info (decl
, name
);
5621 vi
->is_unknown_size_var
= true;
5622 vi
->is_full_var
= true;
5623 vi
->may_have_pointers
= true;
5627 /* Collect field information. */
5628 if (use_field_sensitive
5629 && var_can_have_subvars (decl
)
5630 /* ??? Force us to not use subfields for global initializers
5631 in IPA mode. Else we'd have to parse arbitrary initializers. */
5633 && is_global_var (decl
)
5634 && (vnode
= varpool_node::get (decl
))
5635 && vnode
->get_constructor ()))
5637 fieldoff_s
*fo
= NULL
;
5638 bool notokay
= false;
5641 push_fields_onto_fieldstack (decl_type
, &fieldstack
, 0);
5643 for (i
= 0; !notokay
&& fieldstack
.iterate (i
, &fo
); i
++)
5644 if (fo
->has_unknown_size
5651 /* We can't sort them if we have a field with a variable sized type,
5652 which will make notokay = true. In that case, we are going to return
5653 without creating varinfos for the fields anyway, so sorting them is a
5657 sort_fieldstack (fieldstack
);
5658 /* Due to some C++ FE issues, like PR 22488, we might end up
5659 what appear to be overlapping fields even though they,
5660 in reality, do not overlap. Until the C++ FE is fixed,
5661 we will simply disable field-sensitivity for these cases. */
5662 notokay
= check_for_overlaps (fieldstack
);
5666 fieldstack
.release ();
5669 /* If we didn't end up collecting sub-variables create a full
5670 variable for the decl. */
5671 if (fieldstack
.length () <= 1
5672 || fieldstack
.length () > MAX_FIELDS_FOR_FIELD_SENSITIVE
)
5674 vi
= new_var_info (decl
, name
);
5676 vi
->may_have_pointers
= true;
5677 vi
->fullsize
= tree_to_uhwi (declsize
);
5678 vi
->size
= vi
->fullsize
;
5679 vi
->is_full_var
= true;
5680 fieldstack
.release ();
5684 vi
= new_var_info (decl
, name
);
5685 vi
->fullsize
= tree_to_uhwi (declsize
);
5686 for (i
= 0, newvi
= vi
;
5687 fieldstack
.iterate (i
, &fo
);
5688 ++i
, newvi
= vi_next (newvi
))
5690 const char *newname
= "NULL";
5695 asprintf (&tempname
, "%s." HOST_WIDE_INT_PRINT_DEC
5696 "+" HOST_WIDE_INT_PRINT_DEC
, name
, fo
->offset
, fo
->size
);
5697 newname
= ggc_strdup (tempname
);
5700 newvi
->name
= newname
;
5701 newvi
->offset
= fo
->offset
;
5702 newvi
->size
= fo
->size
;
5703 newvi
->fullsize
= vi
->fullsize
;
5704 newvi
->may_have_pointers
= fo
->may_have_pointers
;
5705 newvi
->only_restrict_pointers
= fo
->only_restrict_pointers
;
5706 if (i
+ 1 < fieldstack
.length ())
5708 varinfo_t tem
= new_var_info (decl
, name
);
5709 newvi
->next
= tem
->id
;
5718 create_variable_info_for (tree decl
, const char *name
)
5720 varinfo_t vi
= create_variable_info_for_1 (decl
, name
);
5721 unsigned int id
= vi
->id
;
5723 insert_vi_for_tree (decl
, vi
);
5725 if (TREE_CODE (decl
) != VAR_DECL
)
5728 /* Create initial constraints for globals. */
5729 for (; vi
; vi
= vi_next (vi
))
5731 if (!vi
->may_have_pointers
5732 || !vi
->is_global_var
)
5735 /* Mark global restrict qualified pointers. */
5736 if ((POINTER_TYPE_P (TREE_TYPE (decl
))
5737 && TYPE_RESTRICT (TREE_TYPE (decl
)))
5738 || vi
->only_restrict_pointers
)
5740 make_constraint_from_global_restrict (vi
, "GLOBAL_RESTRICT");
5744 /* In non-IPA mode the initializer from nonlocal is all we need. */
5746 || DECL_HARD_REGISTER (decl
))
5747 make_copy_constraint (vi
, nonlocal_id
);
5749 /* In IPA mode parse the initializer and generate proper constraints
5753 varpool_node
*vnode
= varpool_node::get (decl
);
5755 /* For escaped variables initialize them from nonlocal. */
5756 if (!vnode
->all_refs_explicit_p ())
5757 make_copy_constraint (vi
, nonlocal_id
);
5759 /* If this is a global variable with an initializer and we are in
5760 IPA mode generate constraints for it. */
5761 if (vnode
->get_constructor ()
5762 && vnode
->definition
)
5764 auto_vec
<ce_s
> rhsc
;
5765 struct constraint_expr lhs
, *rhsp
;
5767 get_constraint_for_rhs (vnode
->get_constructor (), &rhsc
);
5771 FOR_EACH_VEC_ELT (rhsc
, i
, rhsp
)
5772 process_constraint (new_constraint (lhs
, *rhsp
));
5773 /* If this is a variable that escapes from the unit
5774 the initializer escapes as well. */
5775 if (!vnode
->all_refs_explicit_p ())
5777 lhs
.var
= escaped_id
;
5780 FOR_EACH_VEC_ELT (rhsc
, i
, rhsp
)
5781 process_constraint (new_constraint (lhs
, *rhsp
));
5790 /* Print out the points-to solution for VAR to FILE. */
5793 dump_solution_for_var (FILE *file
, unsigned int var
)
5795 varinfo_t vi
= get_varinfo (var
);
5799 /* Dump the solution for unified vars anyway, this avoids difficulties
5800 in scanning dumps in the testsuite. */
5801 fprintf (file
, "%s = { ", vi
->name
);
5802 vi
= get_varinfo (find (var
));
5803 EXECUTE_IF_SET_IN_BITMAP (vi
->solution
, 0, i
, bi
)
5804 fprintf (file
, "%s ", get_varinfo (i
)->name
);
5805 fprintf (file
, "}");
5807 /* But note when the variable was unified. */
5809 fprintf (file
, " same as %s", vi
->name
);
5811 fprintf (file
, "\n");
5814 /* Print the points-to solution for VAR to stderr. */
5817 debug_solution_for_var (unsigned int var
)
5819 dump_solution_for_var (stderr
, var
);
5822 /* Create varinfo structures for all of the variables in the
5823 function for intraprocedural mode. */
5826 intra_create_variable_infos (struct function
*fn
)
5830 /* For each incoming pointer argument arg, create the constraint ARG
5831 = NONLOCAL or a dummy variable if it is a restrict qualified
5832 passed-by-reference argument. */
5833 for (t
= DECL_ARGUMENTS (fn
->decl
); t
; t
= DECL_CHAIN (t
))
5835 varinfo_t p
= get_vi_for_tree (t
);
5837 /* For restrict qualified pointers to objects passed by
5838 reference build a real representative for the pointed-to object.
5839 Treat restrict qualified references the same. */
5840 if (TYPE_RESTRICT (TREE_TYPE (t
))
5841 && ((DECL_BY_REFERENCE (t
) && POINTER_TYPE_P (TREE_TYPE (t
)))
5842 || TREE_CODE (TREE_TYPE (t
)) == REFERENCE_TYPE
)
5843 && !type_contains_placeholder_p (TREE_TYPE (TREE_TYPE (t
))))
5845 struct constraint_expr lhsc
, rhsc
;
5847 tree heapvar
= build_fake_var_decl (TREE_TYPE (TREE_TYPE (t
)));
5848 DECL_EXTERNAL (heapvar
) = 1;
5849 vi
= create_variable_info_for_1 (heapvar
, "PARM_NOALIAS");
5850 insert_vi_for_tree (heapvar
, vi
);
5855 rhsc
.type
= ADDRESSOF
;
5857 process_constraint (new_constraint (lhsc
, rhsc
));
5858 for (; vi
; vi
= vi_next (vi
))
5859 if (vi
->may_have_pointers
)
5861 if (vi
->only_restrict_pointers
)
5862 make_constraint_from_global_restrict (vi
, "GLOBAL_RESTRICT");
5864 make_copy_constraint (vi
, nonlocal_id
);
5869 if (POINTER_TYPE_P (TREE_TYPE (t
))
5870 && TYPE_RESTRICT (TREE_TYPE (t
)))
5871 make_constraint_from_global_restrict (p
, "PARM_RESTRICT");
5874 for (; p
; p
= vi_next (p
))
5876 if (p
->only_restrict_pointers
)
5877 make_constraint_from_global_restrict (p
, "PARM_RESTRICT");
5878 else if (p
->may_have_pointers
)
5879 make_constraint_from (p
, nonlocal_id
);
5884 /* Add a constraint for a result decl that is passed by reference. */
5885 if (DECL_RESULT (fn
->decl
)
5886 && DECL_BY_REFERENCE (DECL_RESULT (fn
->decl
)))
5888 varinfo_t p
, result_vi
= get_vi_for_tree (DECL_RESULT (fn
->decl
));
5890 for (p
= result_vi
; p
; p
= vi_next (p
))
5891 make_constraint_from (p
, nonlocal_id
);
5894 /* Add a constraint for the incoming static chain parameter. */
5895 if (fn
->static_chain_decl
!= NULL_TREE
)
5897 varinfo_t p
, chain_vi
= get_vi_for_tree (fn
->static_chain_decl
);
5899 for (p
= chain_vi
; p
; p
= vi_next (p
))
5900 make_constraint_from (p
, nonlocal_id
);
5904 /* Structure used to put solution bitmaps in a hashtable so they can
5905 be shared among variables with the same points-to set. */
5907 typedef struct shared_bitmap_info
5911 } *shared_bitmap_info_t
;
5912 typedef const struct shared_bitmap_info
*const_shared_bitmap_info_t
;
5914 /* Shared_bitmap hashtable helpers. */
5916 struct shared_bitmap_hasher
: typed_free_remove
<shared_bitmap_info
>
5918 typedef shared_bitmap_info value_type
;
5919 typedef shared_bitmap_info compare_type
;
5920 static inline hashval_t
hash (const value_type
*);
5921 static inline bool equal (const value_type
*, const compare_type
*);
5924 /* Hash function for a shared_bitmap_info_t */
5927 shared_bitmap_hasher::hash (const value_type
*bi
)
5929 return bi
->hashcode
;
5932 /* Equality function for two shared_bitmap_info_t's. */
5935 shared_bitmap_hasher::equal (const value_type
*sbi1
, const compare_type
*sbi2
)
5937 return bitmap_equal_p (sbi1
->pt_vars
, sbi2
->pt_vars
);
5940 /* Shared_bitmap hashtable. */
5942 static hash_table
<shared_bitmap_hasher
> *shared_bitmap_table
;
5944 /* Lookup a bitmap in the shared bitmap hashtable, and return an already
5945 existing instance if there is one, NULL otherwise. */
5948 shared_bitmap_lookup (bitmap pt_vars
)
5950 shared_bitmap_info
**slot
;
5951 struct shared_bitmap_info sbi
;
5953 sbi
.pt_vars
= pt_vars
;
5954 sbi
.hashcode
= bitmap_hash (pt_vars
);
5956 slot
= shared_bitmap_table
->find_slot (&sbi
, NO_INSERT
);
5960 return (*slot
)->pt_vars
;
5964 /* Add a bitmap to the shared bitmap hashtable. */
5967 shared_bitmap_add (bitmap pt_vars
)
5969 shared_bitmap_info
**slot
;
5970 shared_bitmap_info_t sbi
= XNEW (struct shared_bitmap_info
);
5972 sbi
->pt_vars
= pt_vars
;
5973 sbi
->hashcode
= bitmap_hash (pt_vars
);
5975 slot
= shared_bitmap_table
->find_slot (sbi
, INSERT
);
5976 gcc_assert (!*slot
);
5981 /* Set bits in INTO corresponding to the variable uids in solution set FROM. */
5984 set_uids_in_ptset (bitmap into
, bitmap from
, struct pt_solution
*pt
)
5988 varinfo_t escaped_vi
= get_varinfo (find (escaped_id
));
5989 bool everything_escaped
5990 = escaped_vi
->solution
&& bitmap_bit_p (escaped_vi
->solution
, anything_id
);
5992 EXECUTE_IF_SET_IN_BITMAP (from
, 0, i
, bi
)
5994 varinfo_t vi
= get_varinfo (i
);
5996 /* The only artificial variables that are allowed in a may-alias
5997 set are heap variables. */
5998 if (vi
->is_artificial_var
&& !vi
->is_heap_var
)
6001 if (everything_escaped
6002 || (escaped_vi
->solution
6003 && bitmap_bit_p (escaped_vi
->solution
, i
)))
6005 pt
->vars_contains_escaped
= true;
6006 pt
->vars_contains_escaped_heap
= vi
->is_heap_var
;
6009 if (TREE_CODE (vi
->decl
) == VAR_DECL
6010 || TREE_CODE (vi
->decl
) == PARM_DECL
6011 || TREE_CODE (vi
->decl
) == RESULT_DECL
)
6013 /* If we are in IPA mode we will not recompute points-to
6014 sets after inlining so make sure they stay valid. */
6016 && !DECL_PT_UID_SET_P (vi
->decl
))
6017 SET_DECL_PT_UID (vi
->decl
, DECL_UID (vi
->decl
));
6019 /* Add the decl to the points-to set. Note that the points-to
6020 set contains global variables. */
6021 bitmap_set_bit (into
, DECL_PT_UID (vi
->decl
));
6022 if (vi
->is_global_var
)
6023 pt
->vars_contains_nonlocal
= true;
6029 /* Compute the points-to solution *PT for the variable VI. */
6031 static struct pt_solution
6032 find_what_var_points_to (varinfo_t orig_vi
)
6036 bitmap finished_solution
;
6039 struct pt_solution
*pt
;
6041 /* This variable may have been collapsed, let's get the real
6043 vi
= get_varinfo (find (orig_vi
->id
));
6045 /* See if we have already computed the solution and return it. */
6046 pt_solution
**slot
= &final_solutions
->get_or_insert (vi
);
6050 *slot
= pt
= XOBNEW (&final_solutions_obstack
, struct pt_solution
);
6051 memset (pt
, 0, sizeof (struct pt_solution
));
6053 /* Translate artificial variables into SSA_NAME_PTR_INFO
6055 EXECUTE_IF_SET_IN_BITMAP (vi
->solution
, 0, i
, bi
)
6057 varinfo_t vi
= get_varinfo (i
);
6059 if (vi
->is_artificial_var
)
6061 if (vi
->id
== nothing_id
)
6063 else if (vi
->id
== escaped_id
)
6066 pt
->ipa_escaped
= 1;
6069 /* Expand some special vars of ESCAPED in-place here. */
6070 varinfo_t evi
= get_varinfo (find (escaped_id
));
6071 if (bitmap_bit_p (evi
->solution
, nonlocal_id
))
6074 else if (vi
->id
== nonlocal_id
)
6076 else if (vi
->is_heap_var
)
6077 /* We represent heapvars in the points-to set properly. */
6079 else if (vi
->id
== string_id
)
6080 /* Nobody cares - STRING_CSTs are read-only entities. */
6082 else if (vi
->id
== anything_id
6083 || vi
->id
== integer_id
)
6088 /* Instead of doing extra work, simply do not create
6089 elaborate points-to information for pt_anything pointers. */
6093 /* Share the final set of variables when possible. */
6094 finished_solution
= BITMAP_GGC_ALLOC ();
6095 stats
.points_to_sets_created
++;
6097 set_uids_in_ptset (finished_solution
, vi
->solution
, pt
);
6098 result
= shared_bitmap_lookup (finished_solution
);
6101 shared_bitmap_add (finished_solution
);
6102 pt
->vars
= finished_solution
;
6107 bitmap_clear (finished_solution
);
6113 /* Given a pointer variable P, fill in its points-to set. */
6116 find_what_p_points_to (tree p
)
6118 struct ptr_info_def
*pi
;
6122 /* For parameters, get at the points-to set for the actual parm
6124 if (TREE_CODE (p
) == SSA_NAME
6125 && SSA_NAME_IS_DEFAULT_DEF (p
)
6126 && (TREE_CODE (SSA_NAME_VAR (p
)) == PARM_DECL
6127 || TREE_CODE (SSA_NAME_VAR (p
)) == RESULT_DECL
))
6128 lookup_p
= SSA_NAME_VAR (p
);
6130 vi
= lookup_vi_for_tree (lookup_p
);
6134 pi
= get_ptr_info (p
);
6135 pi
->pt
= find_what_var_points_to (vi
);
6139 /* Query statistics for points-to solutions. */
6142 unsigned HOST_WIDE_INT pt_solution_includes_may_alias
;
6143 unsigned HOST_WIDE_INT pt_solution_includes_no_alias
;
6144 unsigned HOST_WIDE_INT pt_solutions_intersect_may_alias
;
6145 unsigned HOST_WIDE_INT pt_solutions_intersect_no_alias
;
6149 dump_pta_stats (FILE *s
)
6151 fprintf (s
, "\nPTA query stats:\n");
6152 fprintf (s
, " pt_solution_includes: "
6153 HOST_WIDE_INT_PRINT_DEC
" disambiguations, "
6154 HOST_WIDE_INT_PRINT_DEC
" queries\n",
6155 pta_stats
.pt_solution_includes_no_alias
,
6156 pta_stats
.pt_solution_includes_no_alias
6157 + pta_stats
.pt_solution_includes_may_alias
);
6158 fprintf (s
, " pt_solutions_intersect: "
6159 HOST_WIDE_INT_PRINT_DEC
" disambiguations, "
6160 HOST_WIDE_INT_PRINT_DEC
" queries\n",
6161 pta_stats
.pt_solutions_intersect_no_alias
,
6162 pta_stats
.pt_solutions_intersect_no_alias
6163 + pta_stats
.pt_solutions_intersect_may_alias
);
6167 /* Reset the points-to solution *PT to a conservative default
6168 (point to anything). */
6171 pt_solution_reset (struct pt_solution
*pt
)
6173 memset (pt
, 0, sizeof (struct pt_solution
));
6174 pt
->anything
= true;
6177 /* Set the points-to solution *PT to point only to the variables
6178 in VARS. VARS_CONTAINS_GLOBAL specifies whether that contains
6179 global variables and VARS_CONTAINS_RESTRICT specifies whether
6180 it contains restrict tag variables. */
6183 pt_solution_set (struct pt_solution
*pt
, bitmap vars
,
6184 bool vars_contains_nonlocal
)
6186 memset (pt
, 0, sizeof (struct pt_solution
));
6188 pt
->vars_contains_nonlocal
= vars_contains_nonlocal
;
6189 pt
->vars_contains_escaped
6190 = (cfun
->gimple_df
->escaped
.anything
6191 || bitmap_intersect_p (cfun
->gimple_df
->escaped
.vars
, vars
));
6194 /* Set the points-to solution *PT to point only to the variable VAR. */
6197 pt_solution_set_var (struct pt_solution
*pt
, tree var
)
6199 memset (pt
, 0, sizeof (struct pt_solution
));
6200 pt
->vars
= BITMAP_GGC_ALLOC ();
6201 bitmap_set_bit (pt
->vars
, DECL_PT_UID (var
));
6202 pt
->vars_contains_nonlocal
= is_global_var (var
);
6203 pt
->vars_contains_escaped
6204 = (cfun
->gimple_df
->escaped
.anything
6205 || bitmap_bit_p (cfun
->gimple_df
->escaped
.vars
, DECL_PT_UID (var
)));
6208 /* Computes the union of the points-to solutions *DEST and *SRC and
6209 stores the result in *DEST. This changes the points-to bitmap
6210 of *DEST and thus may not be used if that might be shared.
6211 The points-to bitmap of *SRC and *DEST will not be shared after
6212 this function if they were not before. */
6215 pt_solution_ior_into (struct pt_solution
*dest
, struct pt_solution
*src
)
6217 dest
->anything
|= src
->anything
;
6220 pt_solution_reset (dest
);
6224 dest
->nonlocal
|= src
->nonlocal
;
6225 dest
->escaped
|= src
->escaped
;
6226 dest
->ipa_escaped
|= src
->ipa_escaped
;
6227 dest
->null
|= src
->null
;
6228 dest
->vars_contains_nonlocal
|= src
->vars_contains_nonlocal
;
6229 dest
->vars_contains_escaped
|= src
->vars_contains_escaped
;
6230 dest
->vars_contains_escaped_heap
|= src
->vars_contains_escaped_heap
;
6235 dest
->vars
= BITMAP_GGC_ALLOC ();
6236 bitmap_ior_into (dest
->vars
, src
->vars
);
6239 /* Return true if the points-to solution *PT is empty. */
6242 pt_solution_empty_p (struct pt_solution
*pt
)
6249 && !bitmap_empty_p (pt
->vars
))
6252 /* If the solution includes ESCAPED, check if that is empty. */
6254 && !pt_solution_empty_p (&cfun
->gimple_df
->escaped
))
6257 /* If the solution includes ESCAPED, check if that is empty. */
6259 && !pt_solution_empty_p (&ipa_escaped_pt
))
6265 /* Return true if the points-to solution *PT only point to a single var, and
6266 return the var uid in *UID. */
6269 pt_solution_singleton_p (struct pt_solution
*pt
, unsigned *uid
)
6271 if (pt
->anything
|| pt
->nonlocal
|| pt
->escaped
|| pt
->ipa_escaped
6272 || pt
->null
|| pt
->vars
== NULL
6273 || !bitmap_single_bit_set_p (pt
->vars
))
6276 *uid
= bitmap_first_set_bit (pt
->vars
);
6280 /* Return true if the points-to solution *PT includes global memory. */
6283 pt_solution_includes_global (struct pt_solution
*pt
)
6287 || pt
->vars_contains_nonlocal
6288 /* The following is a hack to make the malloc escape hack work.
6289 In reality we'd need different sets for escaped-through-return
6290 and escaped-to-callees and passes would need to be updated. */
6291 || pt
->vars_contains_escaped_heap
)
6294 /* 'escaped' is also a placeholder so we have to look into it. */
6296 return pt_solution_includes_global (&cfun
->gimple_df
->escaped
);
6298 if (pt
->ipa_escaped
)
6299 return pt_solution_includes_global (&ipa_escaped_pt
);
6301 /* ??? This predicate is not correct for the IPA-PTA solution
6302 as we do not properly distinguish between unit escape points
6303 and global variables. */
6304 if (cfun
->gimple_df
->ipa_pta
)
6310 /* Return true if the points-to solution *PT includes the variable
6311 declaration DECL. */
6314 pt_solution_includes_1 (struct pt_solution
*pt
, const_tree decl
)
6320 && is_global_var (decl
))
6324 && bitmap_bit_p (pt
->vars
, DECL_PT_UID (decl
)))
6327 /* If the solution includes ESCAPED, check it. */
6329 && pt_solution_includes_1 (&cfun
->gimple_df
->escaped
, decl
))
6332 /* If the solution includes ESCAPED, check it. */
6334 && pt_solution_includes_1 (&ipa_escaped_pt
, decl
))
6341 pt_solution_includes (struct pt_solution
*pt
, const_tree decl
)
6343 bool res
= pt_solution_includes_1 (pt
, decl
);
6345 ++pta_stats
.pt_solution_includes_may_alias
;
6347 ++pta_stats
.pt_solution_includes_no_alias
;
6351 /* Return true if both points-to solutions PT1 and PT2 have a non-empty
6355 pt_solutions_intersect_1 (struct pt_solution
*pt1
, struct pt_solution
*pt2
)
6357 if (pt1
->anything
|| pt2
->anything
)
6360 /* If either points to unknown global memory and the other points to
6361 any global memory they alias. */
6364 || pt2
->vars_contains_nonlocal
))
6366 && pt1
->vars_contains_nonlocal
))
6369 /* If either points to all escaped memory and the other points to
6370 any escaped memory they alias. */
6373 || pt2
->vars_contains_escaped
))
6375 && pt1
->vars_contains_escaped
))
6378 /* Check the escaped solution if required.
6379 ??? Do we need to check the local against the IPA escaped sets? */
6380 if ((pt1
->ipa_escaped
|| pt2
->ipa_escaped
)
6381 && !pt_solution_empty_p (&ipa_escaped_pt
))
6383 /* If both point to escaped memory and that solution
6384 is not empty they alias. */
6385 if (pt1
->ipa_escaped
&& pt2
->ipa_escaped
)
6388 /* If either points to escaped memory see if the escaped solution
6389 intersects with the other. */
6390 if ((pt1
->ipa_escaped
6391 && pt_solutions_intersect_1 (&ipa_escaped_pt
, pt2
))
6392 || (pt2
->ipa_escaped
6393 && pt_solutions_intersect_1 (&ipa_escaped_pt
, pt1
)))
6397 /* Now both pointers alias if their points-to solution intersects. */
6400 && bitmap_intersect_p (pt1
->vars
, pt2
->vars
));
6404 pt_solutions_intersect (struct pt_solution
*pt1
, struct pt_solution
*pt2
)
6406 bool res
= pt_solutions_intersect_1 (pt1
, pt2
);
6408 ++pta_stats
.pt_solutions_intersect_may_alias
;
6410 ++pta_stats
.pt_solutions_intersect_no_alias
;
6415 /* Dump points-to information to OUTFILE. */
6418 dump_sa_points_to_info (FILE *outfile
)
6422 fprintf (outfile
, "\nPoints-to sets\n\n");
6424 if (dump_flags
& TDF_STATS
)
6426 fprintf (outfile
, "Stats:\n");
6427 fprintf (outfile
, "Total vars: %d\n", stats
.total_vars
);
6428 fprintf (outfile
, "Non-pointer vars: %d\n",
6429 stats
.nonpointer_vars
);
6430 fprintf (outfile
, "Statically unified vars: %d\n",
6431 stats
.unified_vars_static
);
6432 fprintf (outfile
, "Dynamically unified vars: %d\n",
6433 stats
.unified_vars_dynamic
);
6434 fprintf (outfile
, "Iterations: %d\n", stats
.iterations
);
6435 fprintf (outfile
, "Number of edges: %d\n", stats
.num_edges
);
6436 fprintf (outfile
, "Number of implicit edges: %d\n",
6437 stats
.num_implicit_edges
);
6440 for (i
= 1; i
< varmap
.length (); i
++)
6442 varinfo_t vi
= get_varinfo (i
);
6443 if (!vi
->may_have_pointers
)
6445 dump_solution_for_var (outfile
, i
);
6450 /* Debug points-to information to stderr. */
6453 debug_sa_points_to_info (void)
6455 dump_sa_points_to_info (stderr
);
6459 /* Initialize the always-existing constraint variables for NULL
6460 ANYTHING, READONLY, and INTEGER */
6463 init_base_vars (void)
6465 struct constraint_expr lhs
, rhs
;
6466 varinfo_t var_anything
;
6467 varinfo_t var_nothing
;
6468 varinfo_t var_string
;
6469 varinfo_t var_escaped
;
6470 varinfo_t var_nonlocal
;
6471 varinfo_t var_storedanything
;
6472 varinfo_t var_integer
;
6474 /* Variable ID zero is reserved and should be NULL. */
6475 varmap
.safe_push (NULL
);
6477 /* Create the NULL variable, used to represent that a variable points
6479 var_nothing
= new_var_info (NULL_TREE
, "NULL");
6480 gcc_assert (var_nothing
->id
== nothing_id
);
6481 var_nothing
->is_artificial_var
= 1;
6482 var_nothing
->offset
= 0;
6483 var_nothing
->size
= ~0;
6484 var_nothing
->fullsize
= ~0;
6485 var_nothing
->is_special_var
= 1;
6486 var_nothing
->may_have_pointers
= 0;
6487 var_nothing
->is_global_var
= 0;
6489 /* Create the ANYTHING variable, used to represent that a variable
6490 points to some unknown piece of memory. */
6491 var_anything
= new_var_info (NULL_TREE
, "ANYTHING");
6492 gcc_assert (var_anything
->id
== anything_id
);
6493 var_anything
->is_artificial_var
= 1;
6494 var_anything
->size
= ~0;
6495 var_anything
->offset
= 0;
6496 var_anything
->fullsize
= ~0;
6497 var_anything
->is_special_var
= 1;
6499 /* Anything points to anything. This makes deref constraints just
6500 work in the presence of linked list and other p = *p type loops,
6501 by saying that *ANYTHING = ANYTHING. */
6503 lhs
.var
= anything_id
;
6505 rhs
.type
= ADDRESSOF
;
6506 rhs
.var
= anything_id
;
6509 /* This specifically does not use process_constraint because
6510 process_constraint ignores all anything = anything constraints, since all
6511 but this one are redundant. */
6512 constraints
.safe_push (new_constraint (lhs
, rhs
));
6514 /* Create the STRING variable, used to represent that a variable
6515 points to a string literal. String literals don't contain
6516 pointers so STRING doesn't point to anything. */
6517 var_string
= new_var_info (NULL_TREE
, "STRING");
6518 gcc_assert (var_string
->id
== string_id
);
6519 var_string
->is_artificial_var
= 1;
6520 var_string
->offset
= 0;
6521 var_string
->size
= ~0;
6522 var_string
->fullsize
= ~0;
6523 var_string
->is_special_var
= 1;
6524 var_string
->may_have_pointers
= 0;
6526 /* Create the ESCAPED variable, used to represent the set of escaped
6528 var_escaped
= new_var_info (NULL_TREE
, "ESCAPED");
6529 gcc_assert (var_escaped
->id
== escaped_id
);
6530 var_escaped
->is_artificial_var
= 1;
6531 var_escaped
->offset
= 0;
6532 var_escaped
->size
= ~0;
6533 var_escaped
->fullsize
= ~0;
6534 var_escaped
->is_special_var
= 0;
6536 /* Create the NONLOCAL variable, used to represent the set of nonlocal
6538 var_nonlocal
= new_var_info (NULL_TREE
, "NONLOCAL");
6539 gcc_assert (var_nonlocal
->id
== nonlocal_id
);
6540 var_nonlocal
->is_artificial_var
= 1;
6541 var_nonlocal
->offset
= 0;
6542 var_nonlocal
->size
= ~0;
6543 var_nonlocal
->fullsize
= ~0;
6544 var_nonlocal
->is_special_var
= 1;
6546 /* ESCAPED = *ESCAPED, because escaped is may-deref'd at calls, etc. */
6548 lhs
.var
= escaped_id
;
6551 rhs
.var
= escaped_id
;
6553 process_constraint (new_constraint (lhs
, rhs
));
6555 /* ESCAPED = ESCAPED + UNKNOWN_OFFSET, because if a sub-field escapes the
6556 whole variable escapes. */
6558 lhs
.var
= escaped_id
;
6561 rhs
.var
= escaped_id
;
6562 rhs
.offset
= UNKNOWN_OFFSET
;
6563 process_constraint (new_constraint (lhs
, rhs
));
6565 /* *ESCAPED = NONLOCAL. This is true because we have to assume
6566 everything pointed to by escaped points to what global memory can
6569 lhs
.var
= escaped_id
;
6572 rhs
.var
= nonlocal_id
;
6574 process_constraint (new_constraint (lhs
, rhs
));
6576 /* NONLOCAL = &NONLOCAL, NONLOCAL = &ESCAPED. This is true because
6577 global memory may point to global memory and escaped memory. */
6579 lhs
.var
= nonlocal_id
;
6581 rhs
.type
= ADDRESSOF
;
6582 rhs
.var
= nonlocal_id
;
6584 process_constraint (new_constraint (lhs
, rhs
));
6585 rhs
.type
= ADDRESSOF
;
6586 rhs
.var
= escaped_id
;
6588 process_constraint (new_constraint (lhs
, rhs
));
6590 /* Create the STOREDANYTHING variable, used to represent the set of
6591 variables stored to *ANYTHING. */
6592 var_storedanything
= new_var_info (NULL_TREE
, "STOREDANYTHING");
6593 gcc_assert (var_storedanything
->id
== storedanything_id
);
6594 var_storedanything
->is_artificial_var
= 1;
6595 var_storedanything
->offset
= 0;
6596 var_storedanything
->size
= ~0;
6597 var_storedanything
->fullsize
= ~0;
6598 var_storedanything
->is_special_var
= 0;
6600 /* Create the INTEGER variable, used to represent that a variable points
6601 to what an INTEGER "points to". */
6602 var_integer
= new_var_info (NULL_TREE
, "INTEGER");
6603 gcc_assert (var_integer
->id
== integer_id
);
6604 var_integer
->is_artificial_var
= 1;
6605 var_integer
->size
= ~0;
6606 var_integer
->fullsize
= ~0;
6607 var_integer
->offset
= 0;
6608 var_integer
->is_special_var
= 1;
6610 /* INTEGER = ANYTHING, because we don't know where a dereference of
6611 a random integer will point to. */
6613 lhs
.var
= integer_id
;
6615 rhs
.type
= ADDRESSOF
;
6616 rhs
.var
= anything_id
;
6618 process_constraint (new_constraint (lhs
, rhs
));
6621 /* Initialize things necessary to perform PTA */
6624 init_alias_vars (void)
6626 use_field_sensitive
= (MAX_FIELDS_FOR_FIELD_SENSITIVE
> 1);
6628 bitmap_obstack_initialize (&pta_obstack
);
6629 bitmap_obstack_initialize (&oldpta_obstack
);
6630 bitmap_obstack_initialize (&predbitmap_obstack
);
6632 constraint_pool
= create_alloc_pool ("Constraint pool",
6633 sizeof (struct constraint
), 30);
6634 variable_info_pool
= create_alloc_pool ("Variable info pool",
6635 sizeof (struct variable_info
), 30);
6636 constraints
.create (8);
6638 vi_for_tree
= new hash_map
<tree
, varinfo_t
>;
6639 call_stmt_vars
= new hash_map
<gimple
, varinfo_t
>;
6641 memset (&stats
, 0, sizeof (stats
));
6642 shared_bitmap_table
= new hash_table
<shared_bitmap_hasher
> (511);
6645 gcc_obstack_init (&fake_var_decl_obstack
);
6647 final_solutions
= new hash_map
<varinfo_t
, pt_solution
*>;
6648 gcc_obstack_init (&final_solutions_obstack
);
6651 /* Remove the REF and ADDRESS edges from GRAPH, as well as all the
6652 predecessor edges. */
6655 remove_preds_and_fake_succs (constraint_graph_t graph
)
6659 /* Clear the implicit ref and address nodes from the successor
6661 for (i
= 1; i
< FIRST_REF_NODE
; i
++)
6663 if (graph
->succs
[i
])
6664 bitmap_clear_range (graph
->succs
[i
], FIRST_REF_NODE
,
6665 FIRST_REF_NODE
* 2);
6668 /* Free the successor list for the non-ref nodes. */
6669 for (i
= FIRST_REF_NODE
+ 1; i
< graph
->size
; i
++)
6671 if (graph
->succs
[i
])
6672 BITMAP_FREE (graph
->succs
[i
]);
6675 /* Now reallocate the size of the successor list as, and blow away
6676 the predecessor bitmaps. */
6677 graph
->size
= varmap
.length ();
6678 graph
->succs
= XRESIZEVEC (bitmap
, graph
->succs
, graph
->size
);
6680 free (graph
->implicit_preds
);
6681 graph
->implicit_preds
= NULL
;
6682 free (graph
->preds
);
6683 graph
->preds
= NULL
;
6684 bitmap_obstack_release (&predbitmap_obstack
);
6687 /* Solve the constraint set. */
6690 solve_constraints (void)
6692 struct scc_info
*si
;
6696 "\nCollapsing static cycles and doing variable "
6699 init_graph (varmap
.length () * 2);
6702 fprintf (dump_file
, "Building predecessor graph\n");
6703 build_pred_graph ();
6706 fprintf (dump_file
, "Detecting pointer and location "
6708 si
= perform_var_substitution (graph
);
6711 fprintf (dump_file
, "Rewriting constraints and unifying "
6713 rewrite_constraints (graph
, si
);
6715 build_succ_graph ();
6717 free_var_substitution_info (si
);
6719 /* Attach complex constraints to graph nodes. */
6720 move_complex_constraints (graph
);
6723 fprintf (dump_file
, "Uniting pointer but not location equivalent "
6725 unite_pointer_equivalences (graph
);
6728 fprintf (dump_file
, "Finding indirect cycles\n");
6729 find_indirect_cycles (graph
);
6731 /* Implicit nodes and predecessors are no longer necessary at this
6733 remove_preds_and_fake_succs (graph
);
6735 if (dump_file
&& (dump_flags
& TDF_GRAPH
))
6737 fprintf (dump_file
, "\n\n// The constraint graph before solve-graph "
6738 "in dot format:\n");
6739 dump_constraint_graph (dump_file
);
6740 fprintf (dump_file
, "\n\n");
6744 fprintf (dump_file
, "Solving graph\n");
6746 solve_graph (graph
);
6748 if (dump_file
&& (dump_flags
& TDF_GRAPH
))
6750 fprintf (dump_file
, "\n\n// The constraint graph after solve-graph "
6751 "in dot format:\n");
6752 dump_constraint_graph (dump_file
);
6753 fprintf (dump_file
, "\n\n");
6757 dump_sa_points_to_info (dump_file
);
6760 /* Create points-to sets for the current function. See the comments
6761 at the start of the file for an algorithmic overview. */
6764 compute_points_to_sets (void)
6770 timevar_push (TV_TREE_PTA
);
6774 intra_create_variable_infos (cfun
);
6776 /* Now walk all statements and build the constraint set. */
6777 FOR_EACH_BB_FN (bb
, cfun
)
6779 gimple_stmt_iterator gsi
;
6781 for (gsi
= gsi_start_phis (bb
); !gsi_end_p (gsi
); gsi_next (&gsi
))
6783 gimple phi
= gsi_stmt (gsi
);
6785 if (! virtual_operand_p (gimple_phi_result (phi
)))
6786 find_func_aliases (cfun
, phi
);
6789 for (gsi
= gsi_start_bb (bb
); !gsi_end_p (gsi
); gsi_next (&gsi
))
6791 gimple stmt
= gsi_stmt (gsi
);
6793 find_func_aliases (cfun
, stmt
);
6799 fprintf (dump_file
, "Points-to analysis\n\nConstraints:\n\n");
6800 dump_constraints (dump_file
, 0);
6803 /* From the constraints compute the points-to sets. */
6804 solve_constraints ();
6806 /* Compute the points-to set for ESCAPED used for call-clobber analysis. */
6807 cfun
->gimple_df
->escaped
= find_what_var_points_to (get_varinfo (escaped_id
));
6809 /* Make sure the ESCAPED solution (which is used as placeholder in
6810 other solutions) does not reference itself. This simplifies
6811 points-to solution queries. */
6812 cfun
->gimple_df
->escaped
.escaped
= 0;
6814 /* Compute the points-to sets for pointer SSA_NAMEs. */
6815 for (i
= 0; i
< num_ssa_names
; ++i
)
6817 tree ptr
= ssa_name (i
);
6819 && POINTER_TYPE_P (TREE_TYPE (ptr
)))
6820 find_what_p_points_to (ptr
);
6823 /* Compute the call-used/clobbered sets. */
6824 FOR_EACH_BB_FN (bb
, cfun
)
6826 gimple_stmt_iterator gsi
;
6828 for (gsi
= gsi_start_bb (bb
); !gsi_end_p (gsi
); gsi_next (&gsi
))
6831 struct pt_solution
*pt
;
6833 stmt
= dyn_cast
<gimple_call
> (gsi_stmt (gsi
));
6837 pt
= gimple_call_use_set (stmt
);
6838 if (gimple_call_flags (stmt
) & ECF_CONST
)
6839 memset (pt
, 0, sizeof (struct pt_solution
));
6840 else if ((vi
= lookup_call_use_vi (stmt
)) != NULL
)
6842 *pt
= find_what_var_points_to (vi
);
6843 /* Escaped (and thus nonlocal) variables are always
6844 implicitly used by calls. */
6845 /* ??? ESCAPED can be empty even though NONLOCAL
6852 /* If there is nothing special about this call then
6853 we have made everything that is used also escape. */
6854 *pt
= cfun
->gimple_df
->escaped
;
6858 pt
= gimple_call_clobber_set (stmt
);
6859 if (gimple_call_flags (stmt
) & (ECF_CONST
|ECF_PURE
|ECF_NOVOPS
))
6860 memset (pt
, 0, sizeof (struct pt_solution
));
6861 else if ((vi
= lookup_call_clobber_vi (stmt
)) != NULL
)
6863 *pt
= find_what_var_points_to (vi
);
6864 /* Escaped (and thus nonlocal) variables are always
6865 implicitly clobbered by calls. */
6866 /* ??? ESCAPED can be empty even though NONLOCAL
6873 /* If there is nothing special about this call then
6874 we have made everything that is used also escape. */
6875 *pt
= cfun
->gimple_df
->escaped
;
6881 timevar_pop (TV_TREE_PTA
);
6885 /* Delete created points-to sets. */
6888 delete_points_to_sets (void)
6892 delete shared_bitmap_table
;
6893 shared_bitmap_table
= NULL
;
6894 if (dump_file
&& (dump_flags
& TDF_STATS
))
6895 fprintf (dump_file
, "Points to sets created:%d\n",
6896 stats
.points_to_sets_created
);
6899 delete call_stmt_vars
;
6900 bitmap_obstack_release (&pta_obstack
);
6901 constraints
.release ();
6903 for (i
= 0; i
< graph
->size
; i
++)
6904 graph
->complex[i
].release ();
6905 free (graph
->complex);
6908 free (graph
->succs
);
6910 free (graph
->pe_rep
);
6911 free (graph
->indirect_cycles
);
6915 free_alloc_pool (variable_info_pool
);
6916 free_alloc_pool (constraint_pool
);
6918 obstack_free (&fake_var_decl_obstack
, NULL
);
6920 delete final_solutions
;
6921 obstack_free (&final_solutions_obstack
, NULL
);
6925 /* Compute points-to information for every SSA_NAME pointer in the
6926 current function and compute the transitive closure of escaped
6927 variables to re-initialize the call-clobber states of local variables. */
6930 compute_may_aliases (void)
6932 if (cfun
->gimple_df
->ipa_pta
)
6936 fprintf (dump_file
, "\nNot re-computing points-to information "
6937 "because IPA points-to information is available.\n\n");
6939 /* But still dump what we have remaining it. */
6940 dump_alias_info (dump_file
);
6946 /* For each pointer P_i, determine the sets of variables that P_i may
6947 point-to. Compute the reachability set of escaped and call-used
6949 compute_points_to_sets ();
6951 /* Debugging dumps. */
6953 dump_alias_info (dump_file
);
6955 /* Deallocate memory used by aliasing data structures and the internal
6956 points-to solution. */
6957 delete_points_to_sets ();
6959 gcc_assert (!need_ssa_update_p (cfun
));
6964 /* A dummy pass to cause points-to information to be computed via
6965 TODO_rebuild_alias. */
6969 const pass_data pass_data_build_alias
=
6971 GIMPLE_PASS
, /* type */
6973 OPTGROUP_NONE
, /* optinfo_flags */
6974 TV_NONE
, /* tv_id */
6975 ( PROP_cfg
| PROP_ssa
), /* properties_required */
6976 0, /* properties_provided */
6977 0, /* properties_destroyed */
6978 0, /* todo_flags_start */
6979 TODO_rebuild_alias
, /* todo_flags_finish */
6982 class pass_build_alias
: public gimple_opt_pass
6985 pass_build_alias (gcc::context
*ctxt
)
6986 : gimple_opt_pass (pass_data_build_alias
, ctxt
)
6989 /* opt_pass methods: */
6990 virtual bool gate (function
*) { return flag_tree_pta
; }
6992 }; // class pass_build_alias
6997 make_pass_build_alias (gcc::context
*ctxt
)
6999 return new pass_build_alias (ctxt
);
7002 /* A dummy pass to cause points-to information to be computed via
7003 TODO_rebuild_alias. */
7007 const pass_data pass_data_build_ealias
=
7009 GIMPLE_PASS
, /* type */
7010 "ealias", /* name */
7011 OPTGROUP_NONE
, /* optinfo_flags */
7012 TV_NONE
, /* tv_id */
7013 ( PROP_cfg
| PROP_ssa
), /* properties_required */
7014 0, /* properties_provided */
7015 0, /* properties_destroyed */
7016 0, /* todo_flags_start */
7017 TODO_rebuild_alias
, /* todo_flags_finish */
7020 class pass_build_ealias
: public gimple_opt_pass
7023 pass_build_ealias (gcc::context
*ctxt
)
7024 : gimple_opt_pass (pass_data_build_ealias
, ctxt
)
7027 /* opt_pass methods: */
7028 virtual bool gate (function
*) { return flag_tree_pta
; }
7030 }; // class pass_build_ealias
7035 make_pass_build_ealias (gcc::context
*ctxt
)
7037 return new pass_build_ealias (ctxt
);
7041 /* IPA PTA solutions for ESCAPED. */
7042 struct pt_solution ipa_escaped_pt
7043 = { true, false, false, false, false, false, false, false, NULL
};
7045 /* Associate node with varinfo DATA. Worker for
7046 cgraph_for_node_and_aliases. */
7048 associate_varinfo_to_alias (struct cgraph_node
*node
, void *data
)
7050 if ((node
->alias
|| node
->thunk
.thunk_p
)
7052 insert_vi_for_tree (node
->decl
, (varinfo_t
)data
);
7056 /* Execute the driver for IPA PTA. */
7058 ipa_pta_execute (void)
7060 struct cgraph_node
*node
;
7068 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
7070 symtab_node::dump_table (dump_file
);
7071 fprintf (dump_file
, "\n");
7074 /* Build the constraints. */
7075 FOR_EACH_DEFINED_FUNCTION (node
)
7078 /* Nodes without a body are not interesting. Especially do not
7079 visit clones at this point for now - we get duplicate decls
7080 there for inline clones at least. */
7081 if (!node
->has_gimple_body_p () || node
->clone_of
)
7085 gcc_assert (!node
->clone_of
);
7087 vi
= create_function_info_for (node
->decl
,
7088 alias_get_name (node
->decl
));
7089 node
->call_for_symbol_thunks_and_aliases
7090 (associate_varinfo_to_alias
, vi
, true);
7093 /* Create constraints for global variables and their initializers. */
7094 FOR_EACH_VARIABLE (var
)
7096 if (var
->alias
&& var
->analyzed
)
7099 get_vi_for_tree (var
->decl
);
7105 "Generating constraints for global initializers\n\n");
7106 dump_constraints (dump_file
, 0);
7107 fprintf (dump_file
, "\n");
7109 from
= constraints
.length ();
7111 FOR_EACH_DEFINED_FUNCTION (node
)
7113 struct function
*func
;
7116 /* Nodes without a body are not interesting. */
7117 if (!node
->has_gimple_body_p () || node
->clone_of
)
7123 "Generating constraints for %s", node
->name ());
7124 if (DECL_ASSEMBLER_NAME_SET_P (node
->decl
))
7125 fprintf (dump_file
, " (%s)",
7127 (DECL_ASSEMBLER_NAME (node
->decl
)));
7128 fprintf (dump_file
, "\n");
7131 func
= DECL_STRUCT_FUNCTION (node
->decl
);
7132 gcc_assert (cfun
== NULL
);
7134 /* For externally visible or attribute used annotated functions use
7135 local constraints for their arguments.
7136 For local functions we see all callers and thus do not need initial
7137 constraints for parameters. */
7138 if (node
->used_from_other_partition
7139 || node
->externally_visible
7140 || node
->force_output
)
7142 intra_create_variable_infos (func
);
7144 /* We also need to make function return values escape. Nothing
7145 escapes by returning from main though. */
7146 if (!MAIN_NAME_P (DECL_NAME (node
->decl
)))
7149 fi
= lookup_vi_for_tree (node
->decl
);
7150 rvi
= first_vi_for_offset (fi
, fi_result
);
7151 if (rvi
&& rvi
->offset
== fi_result
)
7153 struct constraint_expr includes
;
7154 struct constraint_expr var
;
7155 includes
.var
= escaped_id
;
7156 includes
.offset
= 0;
7157 includes
.type
= SCALAR
;
7161 process_constraint (new_constraint (includes
, var
));
7166 /* Build constriants for the function body. */
7167 FOR_EACH_BB_FN (bb
, func
)
7169 gimple_stmt_iterator gsi
;
7171 for (gsi
= gsi_start_phis (bb
); !gsi_end_p (gsi
);
7174 gimple phi
= gsi_stmt (gsi
);
7176 if (! virtual_operand_p (gimple_phi_result (phi
)))
7177 find_func_aliases (func
, phi
);
7180 for (gsi
= gsi_start_bb (bb
); !gsi_end_p (gsi
); gsi_next (&gsi
))
7182 gimple stmt
= gsi_stmt (gsi
);
7184 find_func_aliases (func
, stmt
);
7185 find_func_clobbers (func
, stmt
);
7191 fprintf (dump_file
, "\n");
7192 dump_constraints (dump_file
, from
);
7193 fprintf (dump_file
, "\n");
7195 from
= constraints
.length ();
7198 /* From the constraints compute the points-to sets. */
7199 solve_constraints ();
7201 /* Compute the global points-to sets for ESCAPED.
7202 ??? Note that the computed escape set is not correct
7203 for the whole unit as we fail to consider graph edges to
7204 externally visible functions. */
7205 ipa_escaped_pt
= find_what_var_points_to (get_varinfo (escaped_id
));
7207 /* Make sure the ESCAPED solution (which is used as placeholder in
7208 other solutions) does not reference itself. This simplifies
7209 points-to solution queries. */
7210 ipa_escaped_pt
.ipa_escaped
= 0;
7212 /* Assign the points-to sets to the SSA names in the unit. */
7213 FOR_EACH_DEFINED_FUNCTION (node
)
7216 struct function
*fn
;
7220 /* Nodes without a body are not interesting. */
7221 if (!node
->has_gimple_body_p () || node
->clone_of
)
7224 fn
= DECL_STRUCT_FUNCTION (node
->decl
);
7226 /* Compute the points-to sets for pointer SSA_NAMEs. */
7227 FOR_EACH_VEC_ELT (*fn
->gimple_df
->ssa_names
, i
, ptr
)
7230 && POINTER_TYPE_P (TREE_TYPE (ptr
)))
7231 find_what_p_points_to (ptr
);
7234 /* Compute the call-use and call-clobber sets for indirect calls
7235 and calls to external functions. */
7236 FOR_EACH_BB_FN (bb
, fn
)
7238 gimple_stmt_iterator gsi
;
7240 for (gsi
= gsi_start_bb (bb
); !gsi_end_p (gsi
); gsi_next (&gsi
))
7243 struct pt_solution
*pt
;
7247 stmt
= dyn_cast
<gimple_call
> (gsi_stmt (gsi
));
7251 /* Handle direct calls to functions with body. */
7252 decl
= gimple_call_fndecl (stmt
);
7254 && (fi
= lookup_vi_for_tree (decl
))
7257 *gimple_call_clobber_set (stmt
)
7258 = find_what_var_points_to
7259 (first_vi_for_offset (fi
, fi_clobbers
));
7260 *gimple_call_use_set (stmt
)
7261 = find_what_var_points_to
7262 (first_vi_for_offset (fi
, fi_uses
));
7264 /* Handle direct calls to external functions. */
7267 pt
= gimple_call_use_set (stmt
);
7268 if (gimple_call_flags (stmt
) & ECF_CONST
)
7269 memset (pt
, 0, sizeof (struct pt_solution
));
7270 else if ((vi
= lookup_call_use_vi (stmt
)) != NULL
)
7272 *pt
= find_what_var_points_to (vi
);
7273 /* Escaped (and thus nonlocal) variables are always
7274 implicitly used by calls. */
7275 /* ??? ESCAPED can be empty even though NONLOCAL
7278 pt
->ipa_escaped
= 1;
7282 /* If there is nothing special about this call then
7283 we have made everything that is used also escape. */
7284 *pt
= ipa_escaped_pt
;
7288 pt
= gimple_call_clobber_set (stmt
);
7289 if (gimple_call_flags (stmt
) & (ECF_CONST
|ECF_PURE
|ECF_NOVOPS
))
7290 memset (pt
, 0, sizeof (struct pt_solution
));
7291 else if ((vi
= lookup_call_clobber_vi (stmt
)) != NULL
)
7293 *pt
= find_what_var_points_to (vi
);
7294 /* Escaped (and thus nonlocal) variables are always
7295 implicitly clobbered by calls. */
7296 /* ??? ESCAPED can be empty even though NONLOCAL
7299 pt
->ipa_escaped
= 1;
7303 /* If there is nothing special about this call then
7304 we have made everything that is used also escape. */
7305 *pt
= ipa_escaped_pt
;
7309 /* Handle indirect calls. */
7311 && (fi
= get_fi_for_callee (stmt
)))
7313 /* We need to accumulate all clobbers/uses of all possible
7315 fi
= get_varinfo (find (fi
->id
));
7316 /* If we cannot constrain the set of functions we'll end up
7317 calling we end up using/clobbering everything. */
7318 if (bitmap_bit_p (fi
->solution
, anything_id
)
7319 || bitmap_bit_p (fi
->solution
, nonlocal_id
)
7320 || bitmap_bit_p (fi
->solution
, escaped_id
))
7322 pt_solution_reset (gimple_call_clobber_set (stmt
));
7323 pt_solution_reset (gimple_call_use_set (stmt
));
7329 struct pt_solution
*uses
, *clobbers
;
7331 uses
= gimple_call_use_set (stmt
);
7332 clobbers
= gimple_call_clobber_set (stmt
);
7333 memset (uses
, 0, sizeof (struct pt_solution
));
7334 memset (clobbers
, 0, sizeof (struct pt_solution
));
7335 EXECUTE_IF_SET_IN_BITMAP (fi
->solution
, 0, i
, bi
)
7337 struct pt_solution sol
;
7339 vi
= get_varinfo (i
);
7340 if (!vi
->is_fn_info
)
7342 /* ??? We could be more precise here? */
7344 uses
->ipa_escaped
= 1;
7345 clobbers
->nonlocal
= 1;
7346 clobbers
->ipa_escaped
= 1;
7350 if (!uses
->anything
)
7352 sol
= find_what_var_points_to
7353 (first_vi_for_offset (vi
, fi_uses
));
7354 pt_solution_ior_into (uses
, &sol
);
7356 if (!clobbers
->anything
)
7358 sol
= find_what_var_points_to
7359 (first_vi_for_offset (vi
, fi_clobbers
));
7360 pt_solution_ior_into (clobbers
, &sol
);
7368 fn
->gimple_df
->ipa_pta
= true;
7371 delete_points_to_sets ();
7380 const pass_data pass_data_ipa_pta
=
7382 SIMPLE_IPA_PASS
, /* type */
7384 OPTGROUP_NONE
, /* optinfo_flags */
7385 TV_IPA_PTA
, /* tv_id */
7386 0, /* properties_required */
7387 0, /* properties_provided */
7388 0, /* properties_destroyed */
7389 0, /* todo_flags_start */
7390 0, /* todo_flags_finish */
7393 class pass_ipa_pta
: public simple_ipa_opt_pass
7396 pass_ipa_pta (gcc::context
*ctxt
)
7397 : simple_ipa_opt_pass (pass_data_ipa_pta
, ctxt
)
7400 /* opt_pass methods: */
7401 virtual bool gate (function
*)
7405 /* Don't bother doing anything if the program has errors. */
7409 virtual unsigned int execute (function
*) { return ipa_pta_execute (); }
7411 }; // class pass_ipa_pta
7415 simple_ipa_opt_pass
*
7416 make_pass_ipa_pta (gcc::context
*ctxt
)
7418 return new pass_ipa_pta (ctxt
);