1 /* Tree based points-to analysis
2 Copyright (C) 2005-2017 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"
28 #include "alloc-pool.h"
29 #include "tree-pass.h"
32 #include "tree-pretty-print.h"
33 #include "diagnostic-core.h"
34 #include "fold-const.h"
35 #include "stor-layout.h"
37 #include "gimple-iterator.h"
38 #include "tree-into-ssa.h"
41 #include "gimple-walk.h"
43 #include "stringpool.h"
46 /* The idea behind this analyzer is to generate set constraints from the
47 program, then solve the resulting constraints in order to generate the
50 Set constraints are a way of modeling program analysis problems that
51 involve sets. They consist of an inclusion constraint language,
52 describing the variables (each variable is a set) and operations that
53 are involved on the variables, and a set of rules that derive facts
54 from these operations. To solve a system of set constraints, you derive
55 all possible facts under the rules, which gives you the correct sets
58 See "Efficient Field-sensitive pointer analysis for C" by "David
59 J. Pearce and Paul H. J. Kelly and Chris Hankin, at
60 http://citeseer.ist.psu.edu/pearce04efficient.html
62 Also see "Ultra-fast Aliasing Analysis using CLA: A Million Lines
63 of C Code in a Second" by ""Nevin Heintze and Olivier Tardieu" at
64 http://citeseer.ist.psu.edu/heintze01ultrafast.html
66 There are three types of real constraint expressions, DEREF,
67 ADDRESSOF, and SCALAR. Each constraint expression consists
68 of a constraint type, a variable, and an offset.
70 SCALAR is a constraint expression type used to represent x, whether
71 it appears on the LHS or the RHS of a statement.
72 DEREF is a constraint expression type used to represent *x, whether
73 it appears on the LHS or the RHS of a statement.
74 ADDRESSOF is a constraint expression used to represent &x, whether
75 it appears on the LHS or the RHS of a statement.
77 Each pointer variable in the program is assigned an integer id, and
78 each field of a structure variable is assigned an integer id as well.
80 Structure variables are linked to their list of fields through a "next
81 field" in each variable that points to the next field in offset
83 Each variable for a structure field has
85 1. "size", that tells the size in bits of that field.
86 2. "fullsize, that tells the size in bits of the entire structure.
87 3. "offset", that tells the offset in bits from the beginning of the
88 structure to this field.
100 foo.a -> id 1, size 32, offset 0, fullsize 64, next foo.b
101 foo.b -> id 2, size 32, offset 32, fullsize 64, next NULL
102 bar -> id 3, size 32, offset 0, fullsize 32, next NULL
105 In order to solve the system of set constraints, the following is
108 1. Each constraint variable x has a solution set associated with it,
111 2. Constraints are separated into direct, copy, and complex.
112 Direct constraints are ADDRESSOF constraints that require no extra
113 processing, such as P = &Q
114 Copy constraints are those of the form P = Q.
115 Complex constraints are all the constraints involving dereferences
116 and offsets (including offsetted copies).
118 3. All direct constraints of the form P = &Q are processed, such
119 that Q is added to Sol(P)
121 4. All complex constraints for a given constraint variable are stored in a
122 linked list attached to that variable's node.
124 5. A directed graph is built out of the copy constraints. Each
125 constraint variable is a node in the graph, and an edge from
126 Q to P is added for each copy constraint of the form P = Q
128 6. The graph is then walked, and solution sets are
129 propagated along the copy edges, such that an edge from Q to P
130 causes Sol(P) <- Sol(P) union Sol(Q).
132 7. As we visit each node, all complex constraints associated with
133 that node are processed by adding appropriate copy edges to the graph, or the
134 appropriate variables to the solution set.
136 8. The process of walking the graph is iterated until no solution
139 Prior to walking the graph in steps 6 and 7, We perform static
140 cycle elimination on the constraint graph, as well
141 as off-line variable substitution.
143 TODO: Adding offsets to pointer-to-structures can be handled (IE not punted
144 on and turned into anything), but isn't. You can just see what offset
145 inside the pointed-to struct it's going to access.
147 TODO: Constant bounded arrays can be handled as if they were structs of the
148 same number of elements.
150 TODO: Modeling heap and incoming pointers becomes much better if we
151 add fields to them as we discover them, which we could do.
153 TODO: We could handle unions, but to be honest, it's probably not
154 worth the pain or slowdown. */
156 /* IPA-PTA optimizations possible.
158 When the indirect function called is ANYTHING we can add disambiguation
159 based on the function signatures (or simply the parameter count which
160 is the varinfo size). We also do not need to consider functions that
161 do not have their address taken.
163 The is_global_var bit which marks escape points is overly conservative
164 in IPA mode. Split it to is_escape_point and is_global_var - only
165 externally visible globals are escape points in IPA mode.
166 There is now is_ipa_escape_point but this is only used in a few
169 The way we introduce DECL_PT_UID to avoid fixing up all points-to
170 sets in the translation unit when we copy a DECL during inlining
171 pessimizes precision. The advantage is that the DECL_PT_UID keeps
172 compile-time and memory usage overhead low - the points-to sets
173 do not grow or get unshared as they would during a fixup phase.
174 An alternative solution is to delay IPA PTA until after all
175 inlining transformations have been applied.
177 The way we propagate clobber/use information isn't optimized.
178 It should use a new complex constraint that properly filters
179 out local variables of the callee (though that would make
180 the sets invalid after inlining). OTOH we might as well
181 admit defeat to WHOPR and simply do all the clobber/use analysis
182 and propagation after PTA finished but before we threw away
183 points-to information for memory variables. WHOPR and PTA
184 do not play along well anyway - the whole constraint solving
185 would need to be done in WPA phase and it will be very interesting
186 to apply the results to local SSA names during LTRANS phase.
188 We probably should compute a per-function unit-ESCAPE solution
189 propagating it simply like the clobber / uses solutions. The
190 solution can go alongside the non-IPA espaced solution and be
191 used to query which vars escape the unit through a function.
192 This is also required to make the escaped-HEAP trick work in IPA mode.
194 We never put function decls in points-to sets so we do not
195 keep the set of called functions for indirect calls.
197 And probably more. */
199 static bool use_field_sensitive
= true;
200 static int in_ipa_mode
= 0;
202 /* Used for predecessor bitmaps. */
203 static bitmap_obstack predbitmap_obstack
;
205 /* Used for points-to sets. */
206 static bitmap_obstack pta_obstack
;
208 /* Used for oldsolution members of variables. */
209 static bitmap_obstack oldpta_obstack
;
211 /* Used for per-solver-iteration bitmaps. */
212 static bitmap_obstack iteration_obstack
;
214 static unsigned int create_variable_info_for (tree
, const char *, bool);
215 typedef struct constraint_graph
*constraint_graph_t
;
216 static void unify_nodes (constraint_graph_t
, unsigned int, unsigned int, bool);
219 typedef struct constraint
*constraint_t
;
222 #define EXECUTE_IF_IN_NONNULL_BITMAP(a, b, c, d) \
224 EXECUTE_IF_SET_IN_BITMAP (a, b, c, d)
226 static struct constraint_stats
228 unsigned int total_vars
;
229 unsigned int nonpointer_vars
;
230 unsigned int unified_vars_static
;
231 unsigned int unified_vars_dynamic
;
232 unsigned int iterations
;
233 unsigned int num_edges
;
234 unsigned int num_implicit_edges
;
235 unsigned int points_to_sets_created
;
240 /* ID of this variable */
243 /* True if this is a variable created by the constraint analysis, such as
244 heap variables and constraints we had to break up. */
245 unsigned int is_artificial_var
: 1;
247 /* True if this is a special variable whose solution set should not be
249 unsigned int is_special_var
: 1;
251 /* True for variables whose size is not known or variable. */
252 unsigned int is_unknown_size_var
: 1;
254 /* True for (sub-)fields that represent a whole variable. */
255 unsigned int is_full_var
: 1;
257 /* True if this is a heap variable. */
258 unsigned int is_heap_var
: 1;
260 /* True if this is a register variable. */
261 unsigned int is_reg_var
: 1;
263 /* True if this field may contain pointers. */
264 unsigned int may_have_pointers
: 1;
266 /* True if this field has only restrict qualified pointers. */
267 unsigned int only_restrict_pointers
: 1;
269 /* True if this represents a heap var created for a restrict qualified
271 unsigned int is_restrict_var
: 1;
273 /* True if this represents a global variable. */
274 unsigned int is_global_var
: 1;
276 /* True if this represents a module escape point for IPA analysis. */
277 unsigned int is_ipa_escape_point
: 1;
279 /* True if this represents a IPA function info. */
280 unsigned int is_fn_info
: 1;
282 /* ??? Store somewhere better. */
285 /* The ID of the variable for the next field in this structure
286 or zero for the last field in this structure. */
289 /* The ID of the variable for the first field in this structure. */
292 /* Offset of this variable, in bits, from the base variable */
293 unsigned HOST_WIDE_INT offset
;
295 /* Size of the variable, in bits. */
296 unsigned HOST_WIDE_INT size
;
298 /* Full size of the base variable, in bits. */
299 unsigned HOST_WIDE_INT fullsize
;
301 /* Name of this variable */
304 /* Tree that this variable is associated with. */
307 /* Points-to set for this variable. */
310 /* Old points-to set for this variable. */
313 typedef struct variable_info
*varinfo_t
;
315 static varinfo_t
first_vi_for_offset (varinfo_t
, unsigned HOST_WIDE_INT
);
316 static varinfo_t
first_or_preceding_vi_for_offset (varinfo_t
,
317 unsigned HOST_WIDE_INT
);
318 static varinfo_t
lookup_vi_for_tree (tree
);
319 static inline bool type_can_have_subvars (const_tree
);
320 static void make_param_constraints (varinfo_t
);
322 /* Pool of variable info structures. */
323 static object_allocator
<variable_info
> variable_info_pool
324 ("Variable info pool");
326 /* Map varinfo to final pt_solution. */
327 static hash_map
<varinfo_t
, pt_solution
*> *final_solutions
;
328 struct obstack final_solutions_obstack
;
330 /* Table of variable info structures for constraint variables.
331 Indexed directly by variable info id. */
332 static vec
<varinfo_t
> varmap
;
334 /* Return the varmap element N */
336 static inline varinfo_t
337 get_varinfo (unsigned int n
)
342 /* Return the next variable in the list of sub-variables of VI
343 or NULL if VI is the last sub-variable. */
345 static inline varinfo_t
346 vi_next (varinfo_t vi
)
348 return get_varinfo (vi
->next
);
351 /* Static IDs for the special variables. Variable ID zero is unused
352 and used as terminator for the sub-variable chain. */
353 enum { nothing_id
= 1, anything_id
= 2, string_id
= 3,
354 escaped_id
= 4, nonlocal_id
= 5,
355 storedanything_id
= 6, integer_id
= 7 };
357 /* Return a new variable info structure consisting for a variable
358 named NAME, and using constraint graph node NODE. Append it
359 to the vector of variable info structures. */
362 new_var_info (tree t
, const char *name
, bool add_id
)
364 unsigned index
= varmap
.length ();
365 varinfo_t ret
= variable_info_pool
.allocate ();
367 if (dump_file
&& add_id
)
369 char *tempname
= xasprintf ("%s(%d)", name
, index
);
370 name
= ggc_strdup (tempname
);
377 /* Vars without decl are artificial and do not have sub-variables. */
378 ret
->is_artificial_var
= (t
== NULL_TREE
);
379 ret
->is_special_var
= false;
380 ret
->is_unknown_size_var
= false;
381 ret
->is_full_var
= (t
== NULL_TREE
);
382 ret
->is_heap_var
= false;
383 ret
->may_have_pointers
= true;
384 ret
->only_restrict_pointers
= false;
385 ret
->is_restrict_var
= false;
387 ret
->is_global_var
= (t
== NULL_TREE
);
388 ret
->is_ipa_escape_point
= false;
389 ret
->is_fn_info
= false;
391 ret
->is_global_var
= (is_global_var (t
)
392 /* We have to treat even local register variables
394 || (VAR_P (t
) && DECL_HARD_REGISTER (t
)));
395 ret
->is_reg_var
= (t
&& TREE_CODE (t
) == SSA_NAME
);
396 ret
->solution
= BITMAP_ALLOC (&pta_obstack
);
397 ret
->oldsolution
= NULL
;
403 varmap
.safe_push (ret
);
408 /* A map mapping call statements to per-stmt variables for uses
409 and clobbers specific to the call. */
410 static hash_map
<gimple
*, varinfo_t
> *call_stmt_vars
;
412 /* Lookup or create the variable for the call statement CALL. */
415 get_call_vi (gcall
*call
)
420 varinfo_t
*slot_p
= &call_stmt_vars
->get_or_insert (call
, &existed
);
424 vi
= new_var_info (NULL_TREE
, "CALLUSED", true);
428 vi
->is_full_var
= true;
429 vi
->is_reg_var
= true;
431 vi2
= new_var_info (NULL_TREE
, "CALLCLOBBERED", true);
435 vi2
->is_full_var
= true;
436 vi2
->is_reg_var
= true;
444 /* Lookup the variable for the call statement CALL representing
445 the uses. Returns NULL if there is nothing special about this call. */
448 lookup_call_use_vi (gcall
*call
)
450 varinfo_t
*slot_p
= call_stmt_vars
->get (call
);
457 /* Lookup the variable for the call statement CALL representing
458 the clobbers. Returns NULL if there is nothing special about this call. */
461 lookup_call_clobber_vi (gcall
*call
)
463 varinfo_t uses
= lookup_call_use_vi (call
);
467 return vi_next (uses
);
470 /* Lookup or create the variable for the call statement CALL representing
474 get_call_use_vi (gcall
*call
)
476 return get_call_vi (call
);
479 /* Lookup or create the variable for the call statement CALL representing
482 static varinfo_t ATTRIBUTE_UNUSED
483 get_call_clobber_vi (gcall
*call
)
485 return vi_next (get_call_vi (call
));
489 enum constraint_expr_type
{SCALAR
, DEREF
, ADDRESSOF
};
491 /* An expression that appears in a constraint. */
493 struct constraint_expr
495 /* Constraint type. */
496 constraint_expr_type type
;
498 /* Variable we are referring to in the constraint. */
501 /* Offset, in bits, of this constraint from the beginning of
502 variables it ends up referring to.
504 IOW, in a deref constraint, we would deref, get the result set,
505 then add OFFSET to each member. */
506 HOST_WIDE_INT offset
;
509 /* Use 0x8000... as special unknown offset. */
510 #define UNKNOWN_OFFSET HOST_WIDE_INT_MIN
512 typedef struct constraint_expr ce_s
;
513 static void get_constraint_for_1 (tree
, vec
<ce_s
> *, bool, bool);
514 static void get_constraint_for (tree
, vec
<ce_s
> *);
515 static void get_constraint_for_rhs (tree
, vec
<ce_s
> *);
516 static void do_deref (vec
<ce_s
> *);
518 /* Our set constraints are made up of two constraint expressions, one
521 As described in the introduction, our set constraints each represent an
522 operation between set valued variables.
526 struct constraint_expr lhs
;
527 struct constraint_expr rhs
;
530 /* List of constraints that we use to build the constraint graph from. */
532 static vec
<constraint_t
> constraints
;
533 static object_allocator
<constraint
> constraint_pool ("Constraint pool");
535 /* The constraint graph is represented as an array of bitmaps
536 containing successor nodes. */
538 struct constraint_graph
540 /* Size of this graph, which may be different than the number of
541 nodes in the variable map. */
544 /* Explicit successors of each node. */
547 /* Implicit predecessors of each node (Used for variable
549 bitmap
*implicit_preds
;
551 /* Explicit predecessors of each node (Used for variable substitution). */
554 /* Indirect cycle representatives, or -1 if the node has no indirect
556 int *indirect_cycles
;
558 /* Representative node for a node. rep[a] == a unless the node has
562 /* Equivalence class representative for a label. This is used for
563 variable substitution. */
566 /* Pointer equivalence label for a node. All nodes with the same
567 pointer equivalence label can be unified together at some point
568 (either during constraint optimization or after the constraint
572 /* Pointer equivalence representative for a label. This is used to
573 handle nodes that are pointer equivalent but not location
574 equivalent. We can unite these once the addressof constraints
575 are transformed into initial points-to sets. */
578 /* Pointer equivalence label for each node, used during variable
580 unsigned int *pointer_label
;
582 /* Location equivalence label for each node, used during location
583 equivalence finding. */
584 unsigned int *loc_label
;
586 /* Pointed-by set for each node, used during location equivalence
587 finding. This is pointed-by rather than pointed-to, because it
588 is constructed using the predecessor graph. */
591 /* Points to sets for pointer equivalence. This is *not* the actual
592 points-to sets for nodes. */
595 /* Bitmap of nodes where the bit is set if the node is a direct
596 node. Used for variable substitution. */
597 sbitmap direct_nodes
;
599 /* Bitmap of nodes where the bit is set if the node is address
600 taken. Used for variable substitution. */
601 bitmap address_taken
;
603 /* Vector of complex constraints for each graph node. Complex
604 constraints are those involving dereferences or offsets that are
606 vec
<constraint_t
> *complex;
609 static constraint_graph_t graph
;
611 /* During variable substitution and the offline version of indirect
612 cycle finding, we create nodes to represent dereferences and
613 address taken constraints. These represent where these start and
615 #define FIRST_REF_NODE (varmap).length ()
616 #define LAST_REF_NODE (FIRST_REF_NODE + (FIRST_REF_NODE - 1))
618 /* Return the representative node for NODE, if NODE has been unioned
620 This function performs path compression along the way to finding
621 the representative. */
624 find (unsigned int node
)
626 gcc_checking_assert (node
< graph
->size
);
627 if (graph
->rep
[node
] != node
)
628 return graph
->rep
[node
] = find (graph
->rep
[node
]);
632 /* Union the TO and FROM nodes to the TO nodes.
633 Note that at some point in the future, we may want to do
634 union-by-rank, in which case we are going to have to return the
635 node we unified to. */
638 unite (unsigned int to
, unsigned int from
)
640 gcc_checking_assert (to
< graph
->size
&& from
< graph
->size
);
641 if (to
!= from
&& graph
->rep
[from
] != to
)
643 graph
->rep
[from
] = to
;
649 /* Create a new constraint consisting of LHS and RHS expressions. */
652 new_constraint (const struct constraint_expr lhs
,
653 const struct constraint_expr rhs
)
655 constraint_t ret
= constraint_pool
.allocate ();
661 /* Print out constraint C to FILE. */
664 dump_constraint (FILE *file
, constraint_t c
)
666 if (c
->lhs
.type
== ADDRESSOF
)
668 else if (c
->lhs
.type
== DEREF
)
670 fprintf (file
, "%s", get_varinfo (c
->lhs
.var
)->name
);
671 if (c
->lhs
.offset
== UNKNOWN_OFFSET
)
672 fprintf (file
, " + UNKNOWN");
673 else if (c
->lhs
.offset
!= 0)
674 fprintf (file
, " + " HOST_WIDE_INT_PRINT_DEC
, c
->lhs
.offset
);
675 fprintf (file
, " = ");
676 if (c
->rhs
.type
== ADDRESSOF
)
678 else if (c
->rhs
.type
== DEREF
)
680 fprintf (file
, "%s", get_varinfo (c
->rhs
.var
)->name
);
681 if (c
->rhs
.offset
== UNKNOWN_OFFSET
)
682 fprintf (file
, " + UNKNOWN");
683 else if (c
->rhs
.offset
!= 0)
684 fprintf (file
, " + " HOST_WIDE_INT_PRINT_DEC
, c
->rhs
.offset
);
688 void debug_constraint (constraint_t
);
689 void debug_constraints (void);
690 void debug_constraint_graph (void);
691 void debug_solution_for_var (unsigned int);
692 void debug_sa_points_to_info (void);
693 void debug_varinfo (varinfo_t
);
694 void debug_varmap (void);
696 /* Print out constraint C to stderr. */
699 debug_constraint (constraint_t c
)
701 dump_constraint (stderr
, c
);
702 fprintf (stderr
, "\n");
705 /* Print out all constraints to FILE */
708 dump_constraints (FILE *file
, int from
)
712 for (i
= from
; constraints
.iterate (i
, &c
); i
++)
715 dump_constraint (file
, c
);
716 fprintf (file
, "\n");
720 /* Print out all constraints to stderr. */
723 debug_constraints (void)
725 dump_constraints (stderr
, 0);
728 /* Print the constraint graph in dot format. */
731 dump_constraint_graph (FILE *file
)
735 /* Only print the graph if it has already been initialized: */
739 /* Prints the header of the dot file: */
740 fprintf (file
, "strict digraph {\n");
741 fprintf (file
, " node [\n shape = box\n ]\n");
742 fprintf (file
, " edge [\n fontsize = \"12\"\n ]\n");
743 fprintf (file
, "\n // List of nodes and complex constraints in "
744 "the constraint graph:\n");
746 /* The next lines print the nodes in the graph together with the
747 complex constraints attached to them. */
748 for (i
= 1; i
< graph
->size
; i
++)
750 if (i
== FIRST_REF_NODE
)
754 if (i
< FIRST_REF_NODE
)
755 fprintf (file
, "\"%s\"", get_varinfo (i
)->name
);
757 fprintf (file
, "\"*%s\"", get_varinfo (i
- FIRST_REF_NODE
)->name
);
758 if (graph
->complex[i
].exists ())
762 fprintf (file
, " [label=\"\\N\\n");
763 for (j
= 0; graph
->complex[i
].iterate (j
, &c
); ++j
)
765 dump_constraint (file
, c
);
766 fprintf (file
, "\\l");
768 fprintf (file
, "\"]");
770 fprintf (file
, ";\n");
773 /* Go over the edges. */
774 fprintf (file
, "\n // Edges in the constraint graph:\n");
775 for (i
= 1; i
< graph
->size
; i
++)
781 EXECUTE_IF_IN_NONNULL_BITMAP (graph
->succs
[i
], 0, j
, bi
)
783 unsigned to
= find (j
);
786 if (i
< FIRST_REF_NODE
)
787 fprintf (file
, "\"%s\"", get_varinfo (i
)->name
);
789 fprintf (file
, "\"*%s\"", get_varinfo (i
- FIRST_REF_NODE
)->name
);
790 fprintf (file
, " -> ");
791 if (to
< FIRST_REF_NODE
)
792 fprintf (file
, "\"%s\"", get_varinfo (to
)->name
);
794 fprintf (file
, "\"*%s\"", get_varinfo (to
- FIRST_REF_NODE
)->name
);
795 fprintf (file
, ";\n");
799 /* Prints the tail of the dot file. */
800 fprintf (file
, "}\n");
803 /* Print out the constraint graph to stderr. */
806 debug_constraint_graph (void)
808 dump_constraint_graph (stderr
);
813 The solver is a simple worklist solver, that works on the following
816 sbitmap changed_nodes = all zeroes;
818 For each node that is not already collapsed:
820 set bit in changed nodes
822 while (changed_count > 0)
824 compute topological ordering for constraint graph
826 find and collapse cycles in the constraint graph (updating
827 changed if necessary)
829 for each node (n) in the graph in topological order:
832 Process each complex constraint associated with the node,
833 updating changed if necessary.
835 For each outgoing edge from n, propagate the solution from n to
836 the destination of the edge, updating changed as necessary.
840 /* Return true if two constraint expressions A and B are equal. */
843 constraint_expr_equal (struct constraint_expr a
, struct constraint_expr b
)
845 return a
.type
== b
.type
&& a
.var
== b
.var
&& a
.offset
== b
.offset
;
848 /* Return true if constraint expression A is less than constraint expression
849 B. This is just arbitrary, but consistent, in order to give them an
853 constraint_expr_less (struct constraint_expr a
, struct constraint_expr b
)
855 if (a
.type
== b
.type
)
858 return a
.offset
< b
.offset
;
860 return a
.var
< b
.var
;
863 return a
.type
< b
.type
;
866 /* Return true if constraint A is less than constraint B. This is just
867 arbitrary, but consistent, in order to give them an ordering. */
870 constraint_less (const constraint_t
&a
, const constraint_t
&b
)
872 if (constraint_expr_less (a
->lhs
, b
->lhs
))
874 else if (constraint_expr_less (b
->lhs
, a
->lhs
))
877 return constraint_expr_less (a
->rhs
, b
->rhs
);
880 /* Return true if two constraints A and B are equal. */
883 constraint_equal (struct constraint a
, struct constraint b
)
885 return constraint_expr_equal (a
.lhs
, b
.lhs
)
886 && constraint_expr_equal (a
.rhs
, b
.rhs
);
890 /* Find a constraint LOOKFOR in the sorted constraint vector VEC */
893 constraint_vec_find (vec
<constraint_t
> vec
,
894 struct constraint lookfor
)
902 place
= vec
.lower_bound (&lookfor
, constraint_less
);
903 if (place
>= vec
.length ())
906 if (!constraint_equal (*found
, lookfor
))
911 /* Union two constraint vectors, TO and FROM. Put the result in TO.
912 Returns true of TO set is changed. */
915 constraint_set_union (vec
<constraint_t
> *to
,
916 vec
<constraint_t
> *from
)
920 bool any_change
= false;
922 FOR_EACH_VEC_ELT (*from
, i
, c
)
924 if (constraint_vec_find (*to
, *c
) == NULL
)
926 unsigned int place
= to
->lower_bound (c
, constraint_less
);
927 to
->safe_insert (place
, c
);
934 /* Expands the solution in SET to all sub-fields of variables included. */
937 solution_set_expand (bitmap set
, bitmap
*expanded
)
945 *expanded
= BITMAP_ALLOC (&iteration_obstack
);
947 /* In a first pass expand to the head of the variables we need to
948 add all sub-fields off. This avoids quadratic behavior. */
949 EXECUTE_IF_SET_IN_BITMAP (set
, 0, j
, bi
)
951 varinfo_t v
= get_varinfo (j
);
952 if (v
->is_artificial_var
955 bitmap_set_bit (*expanded
, v
->head
);
958 /* In the second pass now expand all head variables with subfields. */
959 EXECUTE_IF_SET_IN_BITMAP (*expanded
, 0, j
, bi
)
961 varinfo_t v
= get_varinfo (j
);
964 for (v
= vi_next (v
); v
!= NULL
; v
= vi_next (v
))
965 bitmap_set_bit (*expanded
, v
->id
);
968 /* And finally set the rest of the bits from SET. */
969 bitmap_ior_into (*expanded
, set
);
974 /* Union solution sets TO and DELTA, and add INC to each member of DELTA in the
978 set_union_with_increment (bitmap to
, bitmap delta
, HOST_WIDE_INT inc
,
979 bitmap
*expanded_delta
)
981 bool changed
= false;
985 /* If the solution of DELTA contains anything it is good enough to transfer
987 if (bitmap_bit_p (delta
, anything_id
))
988 return bitmap_set_bit (to
, anything_id
);
990 /* If the offset is unknown we have to expand the solution to
992 if (inc
== UNKNOWN_OFFSET
)
994 delta
= solution_set_expand (delta
, expanded_delta
);
995 changed
|= bitmap_ior_into (to
, delta
);
999 /* For non-zero offset union the offsetted solution into the destination. */
1000 EXECUTE_IF_SET_IN_BITMAP (delta
, 0, i
, bi
)
1002 varinfo_t vi
= get_varinfo (i
);
1004 /* If this is a variable with just one field just set its bit
1006 if (vi
->is_artificial_var
1007 || vi
->is_unknown_size_var
1009 changed
|= bitmap_set_bit (to
, i
);
1012 HOST_WIDE_INT fieldoffset
= vi
->offset
+ inc
;
1013 unsigned HOST_WIDE_INT size
= vi
->size
;
1015 /* If the offset makes the pointer point to before the
1016 variable use offset zero for the field lookup. */
1017 if (fieldoffset
< 0)
1018 vi
= get_varinfo (vi
->head
);
1020 vi
= first_or_preceding_vi_for_offset (vi
, fieldoffset
);
1024 changed
|= bitmap_set_bit (to
, vi
->id
);
1029 /* We have to include all fields that overlap the current field
1033 while (vi
->offset
< fieldoffset
+ size
);
1040 /* Insert constraint C into the list of complex constraints for graph
1044 insert_into_complex (constraint_graph_t graph
,
1045 unsigned int var
, constraint_t c
)
1047 vec
<constraint_t
> complex = graph
->complex[var
];
1048 unsigned int place
= complex.lower_bound (c
, constraint_less
);
1050 /* Only insert constraints that do not already exist. */
1051 if (place
>= complex.length ()
1052 || !constraint_equal (*c
, *complex[place
]))
1053 graph
->complex[var
].safe_insert (place
, c
);
1057 /* Condense two variable nodes into a single variable node, by moving
1058 all associated info from FROM to TO. Returns true if TO node's
1059 constraint set changes after the merge. */
1062 merge_node_constraints (constraint_graph_t graph
, unsigned int to
,
1067 bool any_change
= false;
1069 gcc_checking_assert (find (from
) == to
);
1071 /* Move all complex constraints from src node into to node */
1072 FOR_EACH_VEC_ELT (graph
->complex[from
], i
, c
)
1074 /* In complex constraints for node FROM, we may have either
1075 a = *FROM, and *FROM = a, or an offseted constraint which are
1076 always added to the rhs node's constraints. */
1078 if (c
->rhs
.type
== DEREF
)
1080 else if (c
->lhs
.type
== DEREF
)
1086 any_change
= constraint_set_union (&graph
->complex[to
],
1087 &graph
->complex[from
]);
1088 graph
->complex[from
].release ();
1093 /* Remove edges involving NODE from GRAPH. */
1096 clear_edges_for_node (constraint_graph_t graph
, unsigned int node
)
1098 if (graph
->succs
[node
])
1099 BITMAP_FREE (graph
->succs
[node
]);
1102 /* Merge GRAPH nodes FROM and TO into node TO. */
1105 merge_graph_nodes (constraint_graph_t graph
, unsigned int to
,
1108 if (graph
->indirect_cycles
[from
] != -1)
1110 /* If we have indirect cycles with the from node, and we have
1111 none on the to node, the to node has indirect cycles from the
1112 from node now that they are unified.
1113 If indirect cycles exist on both, unify the nodes that they
1114 are in a cycle with, since we know they are in a cycle with
1116 if (graph
->indirect_cycles
[to
] == -1)
1117 graph
->indirect_cycles
[to
] = graph
->indirect_cycles
[from
];
1120 /* Merge all the successor edges. */
1121 if (graph
->succs
[from
])
1123 if (!graph
->succs
[to
])
1124 graph
->succs
[to
] = BITMAP_ALLOC (&pta_obstack
);
1125 bitmap_ior_into (graph
->succs
[to
],
1126 graph
->succs
[from
]);
1129 clear_edges_for_node (graph
, from
);
1133 /* Add an indirect graph edge to GRAPH, going from TO to FROM if
1134 it doesn't exist in the graph already. */
1137 add_implicit_graph_edge (constraint_graph_t graph
, unsigned int to
,
1143 if (!graph
->implicit_preds
[to
])
1144 graph
->implicit_preds
[to
] = BITMAP_ALLOC (&predbitmap_obstack
);
1146 if (bitmap_set_bit (graph
->implicit_preds
[to
], from
))
1147 stats
.num_implicit_edges
++;
1150 /* Add a predecessor graph edge to GRAPH, going from TO to FROM if
1151 it doesn't exist in the graph already.
1152 Return false if the edge already existed, true otherwise. */
1155 add_pred_graph_edge (constraint_graph_t graph
, unsigned int to
,
1158 if (!graph
->preds
[to
])
1159 graph
->preds
[to
] = BITMAP_ALLOC (&predbitmap_obstack
);
1160 bitmap_set_bit (graph
->preds
[to
], from
);
1163 /* Add a graph edge to GRAPH, going from FROM to TO if
1164 it doesn't exist in the graph already.
1165 Return false if the edge already existed, true otherwise. */
1168 add_graph_edge (constraint_graph_t graph
, unsigned int to
,
1179 if (!graph
->succs
[from
])
1180 graph
->succs
[from
] = BITMAP_ALLOC (&pta_obstack
);
1181 if (bitmap_set_bit (graph
->succs
[from
], to
))
1184 if (to
< FIRST_REF_NODE
&& from
< FIRST_REF_NODE
)
1192 /* Initialize the constraint graph structure to contain SIZE nodes. */
1195 init_graph (unsigned int size
)
1199 graph
= XCNEW (struct constraint_graph
);
1201 graph
->succs
= XCNEWVEC (bitmap
, graph
->size
);
1202 graph
->indirect_cycles
= XNEWVEC (int, graph
->size
);
1203 graph
->rep
= XNEWVEC (unsigned int, graph
->size
);
1204 /* ??? Macros do not support template types with multiple arguments,
1205 so we use a typedef to work around it. */
1206 typedef vec
<constraint_t
> vec_constraint_t_heap
;
1207 graph
->complex = XCNEWVEC (vec_constraint_t_heap
, size
);
1208 graph
->pe
= XCNEWVEC (unsigned int, graph
->size
);
1209 graph
->pe_rep
= XNEWVEC (int, graph
->size
);
1211 for (j
= 0; j
< graph
->size
; j
++)
1214 graph
->pe_rep
[j
] = -1;
1215 graph
->indirect_cycles
[j
] = -1;
1219 /* Build the constraint graph, adding only predecessor edges right now. */
1222 build_pred_graph (void)
1228 graph
->implicit_preds
= XCNEWVEC (bitmap
, graph
->size
);
1229 graph
->preds
= XCNEWVEC (bitmap
, graph
->size
);
1230 graph
->pointer_label
= XCNEWVEC (unsigned int, graph
->size
);
1231 graph
->loc_label
= XCNEWVEC (unsigned int, graph
->size
);
1232 graph
->pointed_by
= XCNEWVEC (bitmap
, graph
->size
);
1233 graph
->points_to
= XCNEWVEC (bitmap
, graph
->size
);
1234 graph
->eq_rep
= XNEWVEC (int, graph
->size
);
1235 graph
->direct_nodes
= sbitmap_alloc (graph
->size
);
1236 graph
->address_taken
= BITMAP_ALLOC (&predbitmap_obstack
);
1237 bitmap_clear (graph
->direct_nodes
);
1239 for (j
= 1; j
< FIRST_REF_NODE
; j
++)
1241 if (!get_varinfo (j
)->is_special_var
)
1242 bitmap_set_bit (graph
->direct_nodes
, j
);
1245 for (j
= 0; j
< graph
->size
; j
++)
1246 graph
->eq_rep
[j
] = -1;
1248 for (j
= 0; j
< varmap
.length (); j
++)
1249 graph
->indirect_cycles
[j
] = -1;
1251 FOR_EACH_VEC_ELT (constraints
, i
, c
)
1253 struct constraint_expr lhs
= c
->lhs
;
1254 struct constraint_expr rhs
= c
->rhs
;
1255 unsigned int lhsvar
= lhs
.var
;
1256 unsigned int rhsvar
= rhs
.var
;
1258 if (lhs
.type
== DEREF
)
1261 if (rhs
.offset
== 0 && lhs
.offset
== 0 && rhs
.type
== SCALAR
)
1262 add_pred_graph_edge (graph
, FIRST_REF_NODE
+ lhsvar
, rhsvar
);
1264 else if (rhs
.type
== DEREF
)
1267 if (rhs
.offset
== 0 && lhs
.offset
== 0 && lhs
.type
== SCALAR
)
1268 add_pred_graph_edge (graph
, lhsvar
, FIRST_REF_NODE
+ rhsvar
);
1270 bitmap_clear_bit (graph
->direct_nodes
, lhsvar
);
1272 else if (rhs
.type
== ADDRESSOF
)
1277 if (graph
->points_to
[lhsvar
] == NULL
)
1278 graph
->points_to
[lhsvar
] = BITMAP_ALLOC (&predbitmap_obstack
);
1279 bitmap_set_bit (graph
->points_to
[lhsvar
], rhsvar
);
1281 if (graph
->pointed_by
[rhsvar
] == NULL
)
1282 graph
->pointed_by
[rhsvar
] = BITMAP_ALLOC (&predbitmap_obstack
);
1283 bitmap_set_bit (graph
->pointed_by
[rhsvar
], lhsvar
);
1285 /* Implicitly, *x = y */
1286 add_implicit_graph_edge (graph
, FIRST_REF_NODE
+ lhsvar
, rhsvar
);
1288 /* All related variables are no longer direct nodes. */
1289 bitmap_clear_bit (graph
->direct_nodes
, rhsvar
);
1290 v
= get_varinfo (rhsvar
);
1291 if (!v
->is_full_var
)
1293 v
= get_varinfo (v
->head
);
1296 bitmap_clear_bit (graph
->direct_nodes
, v
->id
);
1301 bitmap_set_bit (graph
->address_taken
, rhsvar
);
1303 else if (lhsvar
> anything_id
1304 && lhsvar
!= rhsvar
&& lhs
.offset
== 0 && rhs
.offset
== 0)
1307 add_pred_graph_edge (graph
, lhsvar
, rhsvar
);
1308 /* Implicitly, *x = *y */
1309 add_implicit_graph_edge (graph
, FIRST_REF_NODE
+ lhsvar
,
1310 FIRST_REF_NODE
+ rhsvar
);
1312 else if (lhs
.offset
!= 0 || rhs
.offset
!= 0)
1314 if (rhs
.offset
!= 0)
1315 bitmap_clear_bit (graph
->direct_nodes
, lhs
.var
);
1316 else if (lhs
.offset
!= 0)
1317 bitmap_clear_bit (graph
->direct_nodes
, rhs
.var
);
1322 /* Build the constraint graph, adding successor edges. */
1325 build_succ_graph (void)
1330 FOR_EACH_VEC_ELT (constraints
, i
, c
)
1332 struct constraint_expr lhs
;
1333 struct constraint_expr rhs
;
1334 unsigned int lhsvar
;
1335 unsigned int rhsvar
;
1342 lhsvar
= find (lhs
.var
);
1343 rhsvar
= find (rhs
.var
);
1345 if (lhs
.type
== DEREF
)
1347 if (rhs
.offset
== 0 && lhs
.offset
== 0 && rhs
.type
== SCALAR
)
1348 add_graph_edge (graph
, FIRST_REF_NODE
+ lhsvar
, rhsvar
);
1350 else if (rhs
.type
== DEREF
)
1352 if (rhs
.offset
== 0 && lhs
.offset
== 0 && lhs
.type
== SCALAR
)
1353 add_graph_edge (graph
, lhsvar
, FIRST_REF_NODE
+ rhsvar
);
1355 else if (rhs
.type
== ADDRESSOF
)
1358 gcc_checking_assert (find (rhs
.var
) == rhs
.var
);
1359 bitmap_set_bit (get_varinfo (lhsvar
)->solution
, rhsvar
);
1361 else if (lhsvar
> anything_id
1362 && lhsvar
!= rhsvar
&& lhs
.offset
== 0 && rhs
.offset
== 0)
1364 add_graph_edge (graph
, lhsvar
, rhsvar
);
1368 /* Add edges from STOREDANYTHING to all non-direct nodes that can
1369 receive pointers. */
1370 t
= find (storedanything_id
);
1371 for (i
= integer_id
+ 1; i
< FIRST_REF_NODE
; ++i
)
1373 if (!bitmap_bit_p (graph
->direct_nodes
, i
)
1374 && get_varinfo (i
)->may_have_pointers
)
1375 add_graph_edge (graph
, find (i
), t
);
1378 /* Everything stored to ANYTHING also potentially escapes. */
1379 add_graph_edge (graph
, find (escaped_id
), t
);
1383 /* Changed variables on the last iteration. */
1384 static bitmap changed
;
1386 /* Strongly Connected Component visitation info. */
1390 scc_info (size_t size
);
1393 auto_sbitmap visited
;
1394 auto_sbitmap deleted
;
1396 unsigned int *node_mapping
;
1398 auto_vec
<unsigned> scc_stack
;
1402 /* Recursive routine to find strongly connected components in GRAPH.
1403 SI is the SCC info to store the information in, and N is the id of current
1404 graph node we are processing.
1406 This is Tarjan's strongly connected component finding algorithm, as
1407 modified by Nuutila to keep only non-root nodes on the stack.
1408 The algorithm can be found in "On finding the strongly connected
1409 connected components in a directed graph" by Esko Nuutila and Eljas
1410 Soisalon-Soininen, in Information Processing Letters volume 49,
1411 number 1, pages 9-14. */
1414 scc_visit (constraint_graph_t graph
, struct scc_info
*si
, unsigned int n
)
1418 unsigned int my_dfs
;
1420 bitmap_set_bit (si
->visited
, n
);
1421 si
->dfs
[n
] = si
->current_index
++;
1422 my_dfs
= si
->dfs
[n
];
1424 /* Visit all the successors. */
1425 EXECUTE_IF_IN_NONNULL_BITMAP (graph
->succs
[n
], 0, i
, bi
)
1429 if (i
> LAST_REF_NODE
)
1433 if (bitmap_bit_p (si
->deleted
, w
))
1436 if (!bitmap_bit_p (si
->visited
, w
))
1437 scc_visit (graph
, si
, w
);
1439 unsigned int t
= find (w
);
1440 gcc_checking_assert (find (n
) == n
);
1441 if (si
->dfs
[t
] < si
->dfs
[n
])
1442 si
->dfs
[n
] = si
->dfs
[t
];
1445 /* See if any components have been identified. */
1446 if (si
->dfs
[n
] == my_dfs
)
1448 if (si
->scc_stack
.length () > 0
1449 && si
->dfs
[si
->scc_stack
.last ()] >= my_dfs
)
1451 bitmap scc
= BITMAP_ALLOC (NULL
);
1452 unsigned int lowest_node
;
1455 bitmap_set_bit (scc
, n
);
1457 while (si
->scc_stack
.length () != 0
1458 && si
->dfs
[si
->scc_stack
.last ()] >= my_dfs
)
1460 unsigned int w
= si
->scc_stack
.pop ();
1462 bitmap_set_bit (scc
, w
);
1465 lowest_node
= bitmap_first_set_bit (scc
);
1466 gcc_assert (lowest_node
< FIRST_REF_NODE
);
1468 /* Collapse the SCC nodes into a single node, and mark the
1470 EXECUTE_IF_SET_IN_BITMAP (scc
, 0, i
, bi
)
1472 if (i
< FIRST_REF_NODE
)
1474 if (unite (lowest_node
, i
))
1475 unify_nodes (graph
, lowest_node
, i
, false);
1479 unite (lowest_node
, i
);
1480 graph
->indirect_cycles
[i
- FIRST_REF_NODE
] = lowest_node
;
1484 bitmap_set_bit (si
->deleted
, n
);
1487 si
->scc_stack
.safe_push (n
);
1490 /* Unify node FROM into node TO, updating the changed count if
1491 necessary when UPDATE_CHANGED is true. */
1494 unify_nodes (constraint_graph_t graph
, unsigned int to
, unsigned int from
,
1495 bool update_changed
)
1497 gcc_checking_assert (to
!= from
&& find (to
) == to
);
1499 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
1500 fprintf (dump_file
, "Unifying %s to %s\n",
1501 get_varinfo (from
)->name
,
1502 get_varinfo (to
)->name
);
1505 stats
.unified_vars_dynamic
++;
1507 stats
.unified_vars_static
++;
1509 merge_graph_nodes (graph
, to
, from
);
1510 if (merge_node_constraints (graph
, to
, from
))
1513 bitmap_set_bit (changed
, to
);
1516 /* Mark TO as changed if FROM was changed. If TO was already marked
1517 as changed, decrease the changed count. */
1520 && bitmap_clear_bit (changed
, from
))
1521 bitmap_set_bit (changed
, to
);
1522 varinfo_t fromvi
= get_varinfo (from
);
1523 if (fromvi
->solution
)
1525 /* If the solution changes because of the merging, we need to mark
1526 the variable as changed. */
1527 varinfo_t tovi
= get_varinfo (to
);
1528 if (bitmap_ior_into (tovi
->solution
, fromvi
->solution
))
1531 bitmap_set_bit (changed
, to
);
1534 BITMAP_FREE (fromvi
->solution
);
1535 if (fromvi
->oldsolution
)
1536 BITMAP_FREE (fromvi
->oldsolution
);
1538 if (stats
.iterations
> 0
1539 && tovi
->oldsolution
)
1540 BITMAP_FREE (tovi
->oldsolution
);
1542 if (graph
->succs
[to
])
1543 bitmap_clear_bit (graph
->succs
[to
], to
);
1546 /* Information needed to compute the topological ordering of a graph. */
1550 /* sbitmap of visited nodes. */
1552 /* Array that stores the topological order of the graph, *in
1554 vec
<unsigned> topo_order
;
1558 /* Initialize and return a topological info structure. */
1560 static struct topo_info
*
1561 init_topo_info (void)
1563 size_t size
= graph
->size
;
1564 struct topo_info
*ti
= XNEW (struct topo_info
);
1565 ti
->visited
= sbitmap_alloc (size
);
1566 bitmap_clear (ti
->visited
);
1567 ti
->topo_order
.create (1);
1572 /* Free the topological sort info pointed to by TI. */
1575 free_topo_info (struct topo_info
*ti
)
1577 sbitmap_free (ti
->visited
);
1578 ti
->topo_order
.release ();
1582 /* Visit the graph in topological order, and store the order in the
1583 topo_info structure. */
1586 topo_visit (constraint_graph_t graph
, struct topo_info
*ti
,
1592 bitmap_set_bit (ti
->visited
, n
);
1594 if (graph
->succs
[n
])
1595 EXECUTE_IF_SET_IN_BITMAP (graph
->succs
[n
], 0, j
, bi
)
1597 if (!bitmap_bit_p (ti
->visited
, j
))
1598 topo_visit (graph
, ti
, j
);
1601 ti
->topo_order
.safe_push (n
);
1604 /* Process a constraint C that represents x = *(y + off), using DELTA as the
1605 starting solution for y. */
1608 do_sd_constraint (constraint_graph_t graph
, constraint_t c
,
1609 bitmap delta
, bitmap
*expanded_delta
)
1611 unsigned int lhs
= c
->lhs
.var
;
1613 bitmap sol
= get_varinfo (lhs
)->solution
;
1616 HOST_WIDE_INT roffset
= c
->rhs
.offset
;
1618 /* Our IL does not allow this. */
1619 gcc_checking_assert (c
->lhs
.offset
== 0);
1621 /* If the solution of Y contains anything it is good enough to transfer
1623 if (bitmap_bit_p (delta
, anything_id
))
1625 flag
|= bitmap_set_bit (sol
, anything_id
);
1629 /* If we do not know at with offset the rhs is dereferenced compute
1630 the reachability set of DELTA, conservatively assuming it is
1631 dereferenced at all valid offsets. */
1632 if (roffset
== UNKNOWN_OFFSET
)
1634 delta
= solution_set_expand (delta
, expanded_delta
);
1635 /* No further offset processing is necessary. */
1639 /* For each variable j in delta (Sol(y)), add
1640 an edge in the graph from j to x, and union Sol(j) into Sol(x). */
1641 EXECUTE_IF_SET_IN_BITMAP (delta
, 0, j
, bi
)
1643 varinfo_t v
= get_varinfo (j
);
1644 HOST_WIDE_INT fieldoffset
= v
->offset
+ roffset
;
1645 unsigned HOST_WIDE_INT size
= v
->size
;
1650 else if (roffset
!= 0)
1652 if (fieldoffset
< 0)
1653 v
= get_varinfo (v
->head
);
1655 v
= first_or_preceding_vi_for_offset (v
, fieldoffset
);
1658 /* We have to include all fields that overlap the current field
1659 shifted by roffset. */
1664 /* Adding edges from the special vars is pointless.
1665 They don't have sets that can change. */
1666 if (get_varinfo (t
)->is_special_var
)
1667 flag
|= bitmap_ior_into (sol
, get_varinfo (t
)->solution
);
1668 /* Merging the solution from ESCAPED needlessly increases
1669 the set. Use ESCAPED as representative instead. */
1670 else if (v
->id
== escaped_id
)
1671 flag
|= bitmap_set_bit (sol
, escaped_id
);
1672 else if (v
->may_have_pointers
1673 && add_graph_edge (graph
, lhs
, t
))
1674 flag
|= bitmap_ior_into (sol
, get_varinfo (t
)->solution
);
1682 while (v
->offset
< fieldoffset
+ size
);
1686 /* If the LHS solution changed, mark the var as changed. */
1689 get_varinfo (lhs
)->solution
= sol
;
1690 bitmap_set_bit (changed
, lhs
);
1694 /* Process a constraint C that represents *(x + off) = y using DELTA
1695 as the starting solution for x. */
1698 do_ds_constraint (constraint_t c
, bitmap delta
, bitmap
*expanded_delta
)
1700 unsigned int rhs
= c
->rhs
.var
;
1701 bitmap sol
= get_varinfo (rhs
)->solution
;
1704 HOST_WIDE_INT loff
= c
->lhs
.offset
;
1705 bool escaped_p
= false;
1707 /* Our IL does not allow this. */
1708 gcc_checking_assert (c
->rhs
.offset
== 0);
1710 /* If the solution of y contains ANYTHING simply use the ANYTHING
1711 solution. This avoids needlessly increasing the points-to sets. */
1712 if (bitmap_bit_p (sol
, anything_id
))
1713 sol
= get_varinfo (find (anything_id
))->solution
;
1715 /* If the solution for x contains ANYTHING we have to merge the
1716 solution of y into all pointer variables which we do via
1718 if (bitmap_bit_p (delta
, anything_id
))
1720 unsigned t
= find (storedanything_id
);
1721 if (add_graph_edge (graph
, t
, rhs
))
1723 if (bitmap_ior_into (get_varinfo (t
)->solution
, sol
))
1724 bitmap_set_bit (changed
, t
);
1729 /* If we do not know at with offset the rhs is dereferenced compute
1730 the reachability set of DELTA, conservatively assuming it is
1731 dereferenced at all valid offsets. */
1732 if (loff
== UNKNOWN_OFFSET
)
1734 delta
= solution_set_expand (delta
, expanded_delta
);
1738 /* For each member j of delta (Sol(x)), add an edge from y to j and
1739 union Sol(y) into Sol(j) */
1740 EXECUTE_IF_SET_IN_BITMAP (delta
, 0, j
, bi
)
1742 varinfo_t v
= get_varinfo (j
);
1744 HOST_WIDE_INT fieldoffset
= v
->offset
+ loff
;
1745 unsigned HOST_WIDE_INT size
= v
->size
;
1751 if (fieldoffset
< 0)
1752 v
= get_varinfo (v
->head
);
1754 v
= first_or_preceding_vi_for_offset (v
, fieldoffset
);
1757 /* We have to include all fields that overlap the current field
1761 if (v
->may_have_pointers
)
1763 /* If v is a global variable then this is an escape point. */
1764 if (v
->is_global_var
1767 t
= find (escaped_id
);
1768 if (add_graph_edge (graph
, t
, rhs
)
1769 && bitmap_ior_into (get_varinfo (t
)->solution
, sol
))
1770 bitmap_set_bit (changed
, t
);
1771 /* Enough to let rhs escape once. */
1775 if (v
->is_special_var
)
1779 if (add_graph_edge (graph
, t
, rhs
)
1780 && bitmap_ior_into (get_varinfo (t
)->solution
, sol
))
1781 bitmap_set_bit (changed
, t
);
1790 while (v
->offset
< fieldoffset
+ size
);
1794 /* Handle a non-simple (simple meaning requires no iteration),
1795 constraint (IE *x = &y, x = *y, *x = y, and x = y with offsets involved). */
1798 do_complex_constraint (constraint_graph_t graph
, constraint_t c
, bitmap delta
,
1799 bitmap
*expanded_delta
)
1801 if (c
->lhs
.type
== DEREF
)
1803 if (c
->rhs
.type
== ADDRESSOF
)
1810 do_ds_constraint (c
, delta
, expanded_delta
);
1813 else if (c
->rhs
.type
== DEREF
)
1816 if (!(get_varinfo (c
->lhs
.var
)->is_special_var
))
1817 do_sd_constraint (graph
, c
, delta
, expanded_delta
);
1824 gcc_checking_assert (c
->rhs
.type
== SCALAR
&& c
->lhs
.type
== SCALAR
1825 && c
->rhs
.offset
!= 0 && c
->lhs
.offset
== 0);
1826 tmp
= get_varinfo (c
->lhs
.var
)->solution
;
1828 flag
= set_union_with_increment (tmp
, delta
, c
->rhs
.offset
,
1832 bitmap_set_bit (changed
, c
->lhs
.var
);
1836 /* Initialize and return a new SCC info structure. */
1838 scc_info::scc_info (size_t size
) :
1839 visited (size
), deleted (size
), current_index (0), scc_stack (1)
1841 bitmap_clear (visited
);
1842 bitmap_clear (deleted
);
1843 node_mapping
= XNEWVEC (unsigned int, size
);
1844 dfs
= XCNEWVEC (unsigned int, size
);
1846 for (size_t i
= 0; i
< size
; i
++)
1847 node_mapping
[i
] = i
;
1850 /* Free an SCC info structure pointed to by SI */
1852 scc_info::~scc_info ()
1854 free (node_mapping
);
1859 /* Find indirect cycles in GRAPH that occur, using strongly connected
1860 components, and note them in the indirect cycles map.
1862 This technique comes from Ben Hardekopf and Calvin Lin,
1863 "It Pays to be Lazy: Fast and Accurate Pointer Analysis for Millions of
1864 Lines of Code", submitted to PLDI 2007. */
1867 find_indirect_cycles (constraint_graph_t graph
)
1870 unsigned int size
= graph
->size
;
1873 for (i
= 0; i
< MIN (LAST_REF_NODE
, size
); i
++ )
1874 if (!bitmap_bit_p (si
.visited
, i
) && find (i
) == i
)
1875 scc_visit (graph
, &si
, i
);
1878 /* Compute a topological ordering for GRAPH, and store the result in the
1879 topo_info structure TI. */
1882 compute_topo_order (constraint_graph_t graph
,
1883 struct topo_info
*ti
)
1886 unsigned int size
= graph
->size
;
1888 for (i
= 0; i
!= size
; ++i
)
1889 if (!bitmap_bit_p (ti
->visited
, i
) && find (i
) == i
)
1890 topo_visit (graph
, ti
, i
);
1893 /* Structure used to for hash value numbering of pointer equivalence
1896 typedef struct equiv_class_label
1899 unsigned int equivalence_class
;
1901 } *equiv_class_label_t
;
1902 typedef const struct equiv_class_label
*const_equiv_class_label_t
;
1904 /* Equiv_class_label hashtable helpers. */
1906 struct equiv_class_hasher
: free_ptr_hash
<equiv_class_label
>
1908 static inline hashval_t
hash (const equiv_class_label
*);
1909 static inline bool equal (const equiv_class_label
*,
1910 const equiv_class_label
*);
1913 /* Hash function for a equiv_class_label_t */
1916 equiv_class_hasher::hash (const equiv_class_label
*ecl
)
1918 return ecl
->hashcode
;
1921 /* Equality function for two equiv_class_label_t's. */
1924 equiv_class_hasher::equal (const equiv_class_label
*eql1
,
1925 const equiv_class_label
*eql2
)
1927 return (eql1
->hashcode
== eql2
->hashcode
1928 && bitmap_equal_p (eql1
->labels
, eql2
->labels
));
1931 /* A hashtable for mapping a bitmap of labels->pointer equivalence
1933 static hash_table
<equiv_class_hasher
> *pointer_equiv_class_table
;
1935 /* A hashtable for mapping a bitmap of labels->location equivalence
1937 static hash_table
<equiv_class_hasher
> *location_equiv_class_table
;
1939 /* Lookup a equivalence class in TABLE by the bitmap of LABELS with
1940 hash HAS it contains. Sets *REF_LABELS to the bitmap LABELS
1941 is equivalent to. */
1943 static equiv_class_label
*
1944 equiv_class_lookup_or_add (hash_table
<equiv_class_hasher
> *table
,
1947 equiv_class_label
**slot
;
1948 equiv_class_label ecl
;
1950 ecl
.labels
= labels
;
1951 ecl
.hashcode
= bitmap_hash (labels
);
1952 slot
= table
->find_slot (&ecl
, INSERT
);
1955 *slot
= XNEW (struct equiv_class_label
);
1956 (*slot
)->labels
= labels
;
1957 (*slot
)->hashcode
= ecl
.hashcode
;
1958 (*slot
)->equivalence_class
= 0;
1964 /* Perform offline variable substitution.
1966 This is a worst case quadratic time way of identifying variables
1967 that must have equivalent points-to sets, including those caused by
1968 static cycles, and single entry subgraphs, in the constraint graph.
1970 The technique is described in "Exploiting Pointer and Location
1971 Equivalence to Optimize Pointer Analysis. In the 14th International
1972 Static Analysis Symposium (SAS), August 2007." It is known as the
1973 "HU" algorithm, and is equivalent to value numbering the collapsed
1974 constraint graph including evaluating unions.
1976 The general method of finding equivalence classes is as follows:
1977 Add fake nodes (REF nodes) and edges for *a = b and a = *b constraints.
1978 Initialize all non-REF nodes to be direct nodes.
1979 For each constraint a = a U {b}, we set pts(a) = pts(a) u {fresh
1981 For each constraint containing the dereference, we also do the same
1984 We then compute SCC's in the graph and unify nodes in the same SCC,
1987 For each non-collapsed node x:
1988 Visit all unvisited explicit incoming edges.
1989 Ignoring all non-pointers, set pts(x) = Union of pts(a) for y
1991 Lookup the equivalence class for pts(x).
1992 If we found one, equivalence_class(x) = found class.
1993 Otherwise, equivalence_class(x) = new class, and new_class is
1994 added to the lookup table.
1996 All direct nodes with the same equivalence class can be replaced
1997 with a single representative node.
1998 All unlabeled nodes (label == 0) are not pointers and all edges
1999 involving them can be eliminated.
2000 We perform these optimizations during rewrite_constraints
2002 In addition to pointer equivalence class finding, we also perform
2003 location equivalence class finding. This is the set of variables
2004 that always appear together in points-to sets. We use this to
2005 compress the size of the points-to sets. */
2007 /* Current maximum pointer equivalence class id. */
2008 static int pointer_equiv_class
;
2010 /* Current maximum location equivalence class id. */
2011 static int location_equiv_class
;
2013 /* Recursive routine to find strongly connected components in GRAPH,
2014 and label it's nodes with DFS numbers. */
2017 condense_visit (constraint_graph_t graph
, struct scc_info
*si
, unsigned int n
)
2021 unsigned int my_dfs
;
2023 gcc_checking_assert (si
->node_mapping
[n
] == n
);
2024 bitmap_set_bit (si
->visited
, n
);
2025 si
->dfs
[n
] = si
->current_index
++;
2026 my_dfs
= si
->dfs
[n
];
2028 /* Visit all the successors. */
2029 EXECUTE_IF_IN_NONNULL_BITMAP (graph
->preds
[n
], 0, i
, bi
)
2031 unsigned int w
= si
->node_mapping
[i
];
2033 if (bitmap_bit_p (si
->deleted
, w
))
2036 if (!bitmap_bit_p (si
->visited
, w
))
2037 condense_visit (graph
, si
, w
);
2039 unsigned int t
= si
->node_mapping
[w
];
2040 gcc_checking_assert (si
->node_mapping
[n
] == n
);
2041 if (si
->dfs
[t
] < si
->dfs
[n
])
2042 si
->dfs
[n
] = si
->dfs
[t
];
2045 /* Visit all the implicit predecessors. */
2046 EXECUTE_IF_IN_NONNULL_BITMAP (graph
->implicit_preds
[n
], 0, i
, bi
)
2048 unsigned int w
= si
->node_mapping
[i
];
2050 if (bitmap_bit_p (si
->deleted
, w
))
2053 if (!bitmap_bit_p (si
->visited
, w
))
2054 condense_visit (graph
, si
, w
);
2056 unsigned int t
= si
->node_mapping
[w
];
2057 gcc_assert (si
->node_mapping
[n
] == n
);
2058 if (si
->dfs
[t
] < si
->dfs
[n
])
2059 si
->dfs
[n
] = si
->dfs
[t
];
2062 /* See if any components have been identified. */
2063 if (si
->dfs
[n
] == my_dfs
)
2065 while (si
->scc_stack
.length () != 0
2066 && si
->dfs
[si
->scc_stack
.last ()] >= my_dfs
)
2068 unsigned int w
= si
->scc_stack
.pop ();
2069 si
->node_mapping
[w
] = n
;
2071 if (!bitmap_bit_p (graph
->direct_nodes
, w
))
2072 bitmap_clear_bit (graph
->direct_nodes
, n
);
2074 /* Unify our nodes. */
2075 if (graph
->preds
[w
])
2077 if (!graph
->preds
[n
])
2078 graph
->preds
[n
] = BITMAP_ALLOC (&predbitmap_obstack
);
2079 bitmap_ior_into (graph
->preds
[n
], graph
->preds
[w
]);
2081 if (graph
->implicit_preds
[w
])
2083 if (!graph
->implicit_preds
[n
])
2084 graph
->implicit_preds
[n
] = BITMAP_ALLOC (&predbitmap_obstack
);
2085 bitmap_ior_into (graph
->implicit_preds
[n
],
2086 graph
->implicit_preds
[w
]);
2088 if (graph
->points_to
[w
])
2090 if (!graph
->points_to
[n
])
2091 graph
->points_to
[n
] = BITMAP_ALLOC (&predbitmap_obstack
);
2092 bitmap_ior_into (graph
->points_to
[n
],
2093 graph
->points_to
[w
]);
2096 bitmap_set_bit (si
->deleted
, n
);
2099 si
->scc_stack
.safe_push (n
);
2102 /* Label pointer equivalences.
2104 This performs a value numbering of the constraint graph to
2105 discover which variables will always have the same points-to sets
2106 under the current set of constraints.
2108 The way it value numbers is to store the set of points-to bits
2109 generated by the constraints and graph edges. This is just used as a
2110 hash and equality comparison. The *actual set of points-to bits* is
2111 completely irrelevant, in that we don't care about being able to
2114 The equality values (currently bitmaps) just have to satisfy a few
2115 constraints, the main ones being:
2116 1. The combining operation must be order independent.
2117 2. The end result of a given set of operations must be unique iff the
2118 combination of input values is unique
2122 label_visit (constraint_graph_t graph
, struct scc_info
*si
, unsigned int n
)
2124 unsigned int i
, first_pred
;
2127 bitmap_set_bit (si
->visited
, n
);
2129 /* Label and union our incoming edges's points to sets. */
2131 EXECUTE_IF_IN_NONNULL_BITMAP (graph
->preds
[n
], 0, i
, bi
)
2133 unsigned int w
= si
->node_mapping
[i
];
2134 if (!bitmap_bit_p (si
->visited
, w
))
2135 label_visit (graph
, si
, w
);
2137 /* Skip unused edges */
2138 if (w
== n
|| graph
->pointer_label
[w
] == 0)
2141 if (graph
->points_to
[w
])
2143 if (!graph
->points_to
[n
])
2145 if (first_pred
== -1U)
2149 graph
->points_to
[n
] = BITMAP_ALLOC (&predbitmap_obstack
);
2150 bitmap_ior (graph
->points_to
[n
],
2151 graph
->points_to
[first_pred
],
2152 graph
->points_to
[w
]);
2156 bitmap_ior_into (graph
->points_to
[n
], graph
->points_to
[w
]);
2160 /* Indirect nodes get fresh variables and a new pointer equiv class. */
2161 if (!bitmap_bit_p (graph
->direct_nodes
, n
))
2163 if (!graph
->points_to
[n
])
2165 graph
->points_to
[n
] = BITMAP_ALLOC (&predbitmap_obstack
);
2166 if (first_pred
!= -1U)
2167 bitmap_copy (graph
->points_to
[n
], graph
->points_to
[first_pred
]);
2169 bitmap_set_bit (graph
->points_to
[n
], FIRST_REF_NODE
+ n
);
2170 graph
->pointer_label
[n
] = pointer_equiv_class
++;
2171 equiv_class_label_t ecl
;
2172 ecl
= equiv_class_lookup_or_add (pointer_equiv_class_table
,
2173 graph
->points_to
[n
]);
2174 ecl
->equivalence_class
= graph
->pointer_label
[n
];
2178 /* If there was only a single non-empty predecessor the pointer equiv
2179 class is the same. */
2180 if (!graph
->points_to
[n
])
2182 if (first_pred
!= -1U)
2184 graph
->pointer_label
[n
] = graph
->pointer_label
[first_pred
];
2185 graph
->points_to
[n
] = graph
->points_to
[first_pred
];
2190 if (!bitmap_empty_p (graph
->points_to
[n
]))
2192 equiv_class_label_t ecl
;
2193 ecl
= equiv_class_lookup_or_add (pointer_equiv_class_table
,
2194 graph
->points_to
[n
]);
2195 if (ecl
->equivalence_class
== 0)
2196 ecl
->equivalence_class
= pointer_equiv_class
++;
2199 BITMAP_FREE (graph
->points_to
[n
]);
2200 graph
->points_to
[n
] = ecl
->labels
;
2202 graph
->pointer_label
[n
] = ecl
->equivalence_class
;
2206 /* Print the pred graph in dot format. */
2209 dump_pred_graph (struct scc_info
*si
, FILE *file
)
2213 /* Only print the graph if it has already been initialized: */
2217 /* Prints the header of the dot file: */
2218 fprintf (file
, "strict digraph {\n");
2219 fprintf (file
, " node [\n shape = box\n ]\n");
2220 fprintf (file
, " edge [\n fontsize = \"12\"\n ]\n");
2221 fprintf (file
, "\n // List of nodes and complex constraints in "
2222 "the constraint graph:\n");
2224 /* The next lines print the nodes in the graph together with the
2225 complex constraints attached to them. */
2226 for (i
= 1; i
< graph
->size
; i
++)
2228 if (i
== FIRST_REF_NODE
)
2230 if (si
->node_mapping
[i
] != i
)
2232 if (i
< FIRST_REF_NODE
)
2233 fprintf (file
, "\"%s\"", get_varinfo (i
)->name
);
2235 fprintf (file
, "\"*%s\"", get_varinfo (i
- FIRST_REF_NODE
)->name
);
2236 if (graph
->points_to
[i
]
2237 && !bitmap_empty_p (graph
->points_to
[i
]))
2239 if (i
< FIRST_REF_NODE
)
2240 fprintf (file
, "[label=\"%s = {", get_varinfo (i
)->name
);
2242 fprintf (file
, "[label=\"*%s = {",
2243 get_varinfo (i
- FIRST_REF_NODE
)->name
);
2246 EXECUTE_IF_SET_IN_BITMAP (graph
->points_to
[i
], 0, j
, bi
)
2247 fprintf (file
, " %d", j
);
2248 fprintf (file
, " }\"]");
2250 fprintf (file
, ";\n");
2253 /* Go over the edges. */
2254 fprintf (file
, "\n // Edges in the constraint graph:\n");
2255 for (i
= 1; i
< graph
->size
; i
++)
2259 if (si
->node_mapping
[i
] != i
)
2261 EXECUTE_IF_IN_NONNULL_BITMAP (graph
->preds
[i
], 0, j
, bi
)
2263 unsigned from
= si
->node_mapping
[j
];
2264 if (from
< FIRST_REF_NODE
)
2265 fprintf (file
, "\"%s\"", get_varinfo (from
)->name
);
2267 fprintf (file
, "\"*%s\"", get_varinfo (from
- FIRST_REF_NODE
)->name
);
2268 fprintf (file
, " -> ");
2269 if (i
< FIRST_REF_NODE
)
2270 fprintf (file
, "\"%s\"", get_varinfo (i
)->name
);
2272 fprintf (file
, "\"*%s\"", get_varinfo (i
- FIRST_REF_NODE
)->name
);
2273 fprintf (file
, ";\n");
2277 /* Prints the tail of the dot file. */
2278 fprintf (file
, "}\n");
2281 /* Perform offline variable substitution, discovering equivalence
2282 classes, and eliminating non-pointer variables. */
2284 static struct scc_info
*
2285 perform_var_substitution (constraint_graph_t graph
)
2288 unsigned int size
= graph
->size
;
2289 scc_info
*si
= new scc_info (size
);
2291 bitmap_obstack_initialize (&iteration_obstack
);
2292 pointer_equiv_class_table
= new hash_table
<equiv_class_hasher
> (511);
2293 location_equiv_class_table
2294 = new hash_table
<equiv_class_hasher
> (511);
2295 pointer_equiv_class
= 1;
2296 location_equiv_class
= 1;
2298 /* Condense the nodes, which means to find SCC's, count incoming
2299 predecessors, and unite nodes in SCC's. */
2300 for (i
= 1; i
< FIRST_REF_NODE
; i
++)
2301 if (!bitmap_bit_p (si
->visited
, si
->node_mapping
[i
]))
2302 condense_visit (graph
, si
, si
->node_mapping
[i
]);
2304 if (dump_file
&& (dump_flags
& TDF_GRAPH
))
2306 fprintf (dump_file
, "\n\n// The constraint graph before var-substitution "
2307 "in dot format:\n");
2308 dump_pred_graph (si
, dump_file
);
2309 fprintf (dump_file
, "\n\n");
2312 bitmap_clear (si
->visited
);
2313 /* Actually the label the nodes for pointer equivalences */
2314 for (i
= 1; i
< FIRST_REF_NODE
; i
++)
2315 if (!bitmap_bit_p (si
->visited
, si
->node_mapping
[i
]))
2316 label_visit (graph
, si
, si
->node_mapping
[i
]);
2318 /* Calculate location equivalence labels. */
2319 for (i
= 1; i
< FIRST_REF_NODE
; i
++)
2325 if (!graph
->pointed_by
[i
])
2327 pointed_by
= BITMAP_ALLOC (&iteration_obstack
);
2329 /* Translate the pointed-by mapping for pointer equivalence
2331 EXECUTE_IF_SET_IN_BITMAP (graph
->pointed_by
[i
], 0, j
, bi
)
2333 bitmap_set_bit (pointed_by
,
2334 graph
->pointer_label
[si
->node_mapping
[j
]]);
2336 /* The original pointed_by is now dead. */
2337 BITMAP_FREE (graph
->pointed_by
[i
]);
2339 /* Look up the location equivalence label if one exists, or make
2341 equiv_class_label_t ecl
;
2342 ecl
= equiv_class_lookup_or_add (location_equiv_class_table
, pointed_by
);
2343 if (ecl
->equivalence_class
== 0)
2344 ecl
->equivalence_class
= location_equiv_class
++;
2347 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
2348 fprintf (dump_file
, "Found location equivalence for node %s\n",
2349 get_varinfo (i
)->name
);
2350 BITMAP_FREE (pointed_by
);
2352 graph
->loc_label
[i
] = ecl
->equivalence_class
;
2356 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
2357 for (i
= 1; i
< FIRST_REF_NODE
; i
++)
2359 unsigned j
= si
->node_mapping
[i
];
2362 fprintf (dump_file
, "%s node id %d ",
2363 bitmap_bit_p (graph
->direct_nodes
, i
)
2364 ? "Direct" : "Indirect", i
);
2365 if (i
< FIRST_REF_NODE
)
2366 fprintf (dump_file
, "\"%s\"", get_varinfo (i
)->name
);
2368 fprintf (dump_file
, "\"*%s\"",
2369 get_varinfo (i
- FIRST_REF_NODE
)->name
);
2370 fprintf (dump_file
, " mapped to SCC leader node id %d ", j
);
2371 if (j
< FIRST_REF_NODE
)
2372 fprintf (dump_file
, "\"%s\"\n", get_varinfo (j
)->name
);
2374 fprintf (dump_file
, "\"*%s\"\n",
2375 get_varinfo (j
- FIRST_REF_NODE
)->name
);
2380 "Equivalence classes for %s node id %d ",
2381 bitmap_bit_p (graph
->direct_nodes
, i
)
2382 ? "direct" : "indirect", i
);
2383 if (i
< FIRST_REF_NODE
)
2384 fprintf (dump_file
, "\"%s\"", get_varinfo (i
)->name
);
2386 fprintf (dump_file
, "\"*%s\"",
2387 get_varinfo (i
- FIRST_REF_NODE
)->name
);
2389 ": pointer %d, location %d\n",
2390 graph
->pointer_label
[i
], graph
->loc_label
[i
]);
2394 /* Quickly eliminate our non-pointer variables. */
2396 for (i
= 1; i
< FIRST_REF_NODE
; i
++)
2398 unsigned int node
= si
->node_mapping
[i
];
2400 if (graph
->pointer_label
[node
] == 0)
2402 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
2404 "%s is a non-pointer variable, eliminating edges.\n",
2405 get_varinfo (node
)->name
);
2406 stats
.nonpointer_vars
++;
2407 clear_edges_for_node (graph
, node
);
2414 /* Free information that was only necessary for variable
2418 free_var_substitution_info (struct scc_info
*si
)
2421 free (graph
->pointer_label
);
2422 free (graph
->loc_label
);
2423 free (graph
->pointed_by
);
2424 free (graph
->points_to
);
2425 free (graph
->eq_rep
);
2426 sbitmap_free (graph
->direct_nodes
);
2427 delete pointer_equiv_class_table
;
2428 pointer_equiv_class_table
= NULL
;
2429 delete location_equiv_class_table
;
2430 location_equiv_class_table
= NULL
;
2431 bitmap_obstack_release (&iteration_obstack
);
2434 /* Return an existing node that is equivalent to NODE, which has
2435 equivalence class LABEL, if one exists. Return NODE otherwise. */
2438 find_equivalent_node (constraint_graph_t graph
,
2439 unsigned int node
, unsigned int label
)
2441 /* If the address version of this variable is unused, we can
2442 substitute it for anything else with the same label.
2443 Otherwise, we know the pointers are equivalent, but not the
2444 locations, and we can unite them later. */
2446 if (!bitmap_bit_p (graph
->address_taken
, node
))
2448 gcc_checking_assert (label
< graph
->size
);
2450 if (graph
->eq_rep
[label
] != -1)
2452 /* Unify the two variables since we know they are equivalent. */
2453 if (unite (graph
->eq_rep
[label
], node
))
2454 unify_nodes (graph
, graph
->eq_rep
[label
], node
, false);
2455 return graph
->eq_rep
[label
];
2459 graph
->eq_rep
[label
] = node
;
2460 graph
->pe_rep
[label
] = node
;
2465 gcc_checking_assert (label
< graph
->size
);
2466 graph
->pe
[node
] = label
;
2467 if (graph
->pe_rep
[label
] == -1)
2468 graph
->pe_rep
[label
] = node
;
2474 /* Unite pointer equivalent but not location equivalent nodes in
2475 GRAPH. This may only be performed once variable substitution is
2479 unite_pointer_equivalences (constraint_graph_t graph
)
2483 /* Go through the pointer equivalences and unite them to their
2484 representative, if they aren't already. */
2485 for (i
= 1; i
< FIRST_REF_NODE
; i
++)
2487 unsigned int label
= graph
->pe
[i
];
2490 int label_rep
= graph
->pe_rep
[label
];
2492 if (label_rep
== -1)
2495 label_rep
= find (label_rep
);
2496 if (label_rep
>= 0 && unite (label_rep
, find (i
)))
2497 unify_nodes (graph
, label_rep
, i
, false);
2502 /* Move complex constraints to the GRAPH nodes they belong to. */
2505 move_complex_constraints (constraint_graph_t graph
)
2510 FOR_EACH_VEC_ELT (constraints
, i
, c
)
2514 struct constraint_expr lhs
= c
->lhs
;
2515 struct constraint_expr rhs
= c
->rhs
;
2517 if (lhs
.type
== DEREF
)
2519 insert_into_complex (graph
, lhs
.var
, c
);
2521 else if (rhs
.type
== DEREF
)
2523 if (!(get_varinfo (lhs
.var
)->is_special_var
))
2524 insert_into_complex (graph
, rhs
.var
, c
);
2526 else if (rhs
.type
!= ADDRESSOF
&& lhs
.var
> anything_id
2527 && (lhs
.offset
!= 0 || rhs
.offset
!= 0))
2529 insert_into_complex (graph
, rhs
.var
, c
);
2536 /* Optimize and rewrite complex constraints while performing
2537 collapsing of equivalent nodes. SI is the SCC_INFO that is the
2538 result of perform_variable_substitution. */
2541 rewrite_constraints (constraint_graph_t graph
,
2542 struct scc_info
*si
)
2549 for (unsigned int j
= 0; j
< graph
->size
; j
++)
2550 gcc_assert (find (j
) == j
);
2553 FOR_EACH_VEC_ELT (constraints
, i
, c
)
2555 struct constraint_expr lhs
= c
->lhs
;
2556 struct constraint_expr rhs
= c
->rhs
;
2557 unsigned int lhsvar
= find (lhs
.var
);
2558 unsigned int rhsvar
= find (rhs
.var
);
2559 unsigned int lhsnode
, rhsnode
;
2560 unsigned int lhslabel
, rhslabel
;
2562 lhsnode
= si
->node_mapping
[lhsvar
];
2563 rhsnode
= si
->node_mapping
[rhsvar
];
2564 lhslabel
= graph
->pointer_label
[lhsnode
];
2565 rhslabel
= graph
->pointer_label
[rhsnode
];
2567 /* See if it is really a non-pointer variable, and if so, ignore
2571 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
2574 fprintf (dump_file
, "%s is a non-pointer variable, "
2575 "ignoring constraint:",
2576 get_varinfo (lhs
.var
)->name
);
2577 dump_constraint (dump_file
, c
);
2578 fprintf (dump_file
, "\n");
2580 constraints
[i
] = NULL
;
2586 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
2589 fprintf (dump_file
, "%s is a non-pointer variable, "
2590 "ignoring constraint:",
2591 get_varinfo (rhs
.var
)->name
);
2592 dump_constraint (dump_file
, c
);
2593 fprintf (dump_file
, "\n");
2595 constraints
[i
] = NULL
;
2599 lhsvar
= find_equivalent_node (graph
, lhsvar
, lhslabel
);
2600 rhsvar
= find_equivalent_node (graph
, rhsvar
, rhslabel
);
2601 c
->lhs
.var
= lhsvar
;
2602 c
->rhs
.var
= rhsvar
;
2606 /* Eliminate indirect cycles involving NODE. Return true if NODE was
2607 part of an SCC, false otherwise. */
2610 eliminate_indirect_cycles (unsigned int node
)
2612 if (graph
->indirect_cycles
[node
] != -1
2613 && !bitmap_empty_p (get_varinfo (node
)->solution
))
2616 auto_vec
<unsigned> queue
;
2618 unsigned int to
= find (graph
->indirect_cycles
[node
]);
2621 /* We can't touch the solution set and call unify_nodes
2622 at the same time, because unify_nodes is going to do
2623 bitmap unions into it. */
2625 EXECUTE_IF_SET_IN_BITMAP (get_varinfo (node
)->solution
, 0, i
, bi
)
2627 if (find (i
) == i
&& i
!= to
)
2630 queue
.safe_push (i
);
2635 queue
.iterate (queuepos
, &i
);
2638 unify_nodes (graph
, to
, i
, true);
2645 /* Solve the constraint graph GRAPH using our worklist solver.
2646 This is based on the PW* family of solvers from the "Efficient Field
2647 Sensitive Pointer Analysis for C" paper.
2648 It works by iterating over all the graph nodes, processing the complex
2649 constraints and propagating the copy constraints, until everything stops
2650 changed. This corresponds to steps 6-8 in the solving list given above. */
2653 solve_graph (constraint_graph_t graph
)
2655 unsigned int size
= graph
->size
;
2659 changed
= BITMAP_ALLOC (NULL
);
2661 /* Mark all initial non-collapsed nodes as changed. */
2662 for (i
= 1; i
< size
; i
++)
2664 varinfo_t ivi
= get_varinfo (i
);
2665 if (find (i
) == i
&& !bitmap_empty_p (ivi
->solution
)
2666 && ((graph
->succs
[i
] && !bitmap_empty_p (graph
->succs
[i
]))
2667 || graph
->complex[i
].length () > 0))
2668 bitmap_set_bit (changed
, i
);
2671 /* Allocate a bitmap to be used to store the changed bits. */
2672 pts
= BITMAP_ALLOC (&pta_obstack
);
2674 while (!bitmap_empty_p (changed
))
2677 struct topo_info
*ti
= init_topo_info ();
2680 bitmap_obstack_initialize (&iteration_obstack
);
2682 compute_topo_order (graph
, ti
);
2684 while (ti
->topo_order
.length () != 0)
2687 i
= ti
->topo_order
.pop ();
2689 /* If this variable is not a representative, skip it. */
2693 /* In certain indirect cycle cases, we may merge this
2694 variable to another. */
2695 if (eliminate_indirect_cycles (i
) && find (i
) != i
)
2698 /* If the node has changed, we need to process the
2699 complex constraints and outgoing edges again. */
2700 if (bitmap_clear_bit (changed
, i
))
2705 vec
<constraint_t
> complex = graph
->complex[i
];
2706 varinfo_t vi
= get_varinfo (i
);
2707 bool solution_empty
;
2709 /* Compute the changed set of solution bits. If anything
2710 is in the solution just propagate that. */
2711 if (bitmap_bit_p (vi
->solution
, anything_id
))
2713 /* If anything is also in the old solution there is
2715 ??? But we shouldn't ended up with "changed" set ... */
2717 && bitmap_bit_p (vi
->oldsolution
, anything_id
))
2719 bitmap_copy (pts
, get_varinfo (find (anything_id
))->solution
);
2721 else if (vi
->oldsolution
)
2722 bitmap_and_compl (pts
, vi
->solution
, vi
->oldsolution
);
2724 bitmap_copy (pts
, vi
->solution
);
2726 if (bitmap_empty_p (pts
))
2729 if (vi
->oldsolution
)
2730 bitmap_ior_into (vi
->oldsolution
, pts
);
2733 vi
->oldsolution
= BITMAP_ALLOC (&oldpta_obstack
);
2734 bitmap_copy (vi
->oldsolution
, pts
);
2737 solution
= vi
->solution
;
2738 solution_empty
= bitmap_empty_p (solution
);
2740 /* Process the complex constraints */
2741 bitmap expanded_pts
= NULL
;
2742 FOR_EACH_VEC_ELT (complex, j
, c
)
2744 /* XXX: This is going to unsort the constraints in
2745 some cases, which will occasionally add duplicate
2746 constraints during unification. This does not
2747 affect correctness. */
2748 c
->lhs
.var
= find (c
->lhs
.var
);
2749 c
->rhs
.var
= find (c
->rhs
.var
);
2751 /* The only complex constraint that can change our
2752 solution to non-empty, given an empty solution,
2753 is a constraint where the lhs side is receiving
2754 some set from elsewhere. */
2755 if (!solution_empty
|| c
->lhs
.type
!= DEREF
)
2756 do_complex_constraint (graph
, c
, pts
, &expanded_pts
);
2758 BITMAP_FREE (expanded_pts
);
2760 solution_empty
= bitmap_empty_p (solution
);
2762 if (!solution_empty
)
2765 unsigned eff_escaped_id
= find (escaped_id
);
2767 /* Propagate solution to all successors. */
2768 unsigned to_remove
= ~0U;
2769 EXECUTE_IF_IN_NONNULL_BITMAP (graph
->succs
[i
],
2772 if (to_remove
!= ~0U)
2774 bitmap_clear_bit (graph
->succs
[i
], to_remove
);
2777 unsigned int to
= find (j
);
2780 /* Update the succ graph, avoiding duplicate
2783 if (! bitmap_set_bit (graph
->succs
[i
], to
))
2785 /* We eventually end up processing 'to' twice
2786 as it is undefined whether bitmap iteration
2787 iterates over bits set during iteration.
2788 Play safe instead of doing tricks. */
2790 /* Don't try to propagate to ourselves. */
2794 bitmap tmp
= get_varinfo (to
)->solution
;
2797 /* If we propagate from ESCAPED use ESCAPED as
2799 if (i
== eff_escaped_id
)
2800 flag
= bitmap_set_bit (tmp
, escaped_id
);
2802 flag
= bitmap_ior_into (tmp
, pts
);
2805 bitmap_set_bit (changed
, to
);
2807 if (to_remove
!= ~0U)
2808 bitmap_clear_bit (graph
->succs
[i
], to_remove
);
2812 free_topo_info (ti
);
2813 bitmap_obstack_release (&iteration_obstack
);
2817 BITMAP_FREE (changed
);
2818 bitmap_obstack_release (&oldpta_obstack
);
2821 /* Map from trees to variable infos. */
2822 static hash_map
<tree
, varinfo_t
> *vi_for_tree
;
2825 /* Insert ID as the variable id for tree T in the vi_for_tree map. */
2828 insert_vi_for_tree (tree t
, varinfo_t vi
)
2831 gcc_assert (!vi_for_tree
->put (t
, vi
));
2834 /* Find the variable info for tree T in VI_FOR_TREE. If T does not
2835 exist in the map, return NULL, otherwise, return the varinfo we found. */
2838 lookup_vi_for_tree (tree t
)
2840 varinfo_t
*slot
= vi_for_tree
->get (t
);
2847 /* Return a printable name for DECL */
2850 alias_get_name (tree decl
)
2852 const char *res
= "NULL";
2856 if (TREE_CODE (decl
) == SSA_NAME
)
2858 res
= get_name (decl
);
2859 temp
= xasprintf ("%s_%u", res
? res
: "", SSA_NAME_VERSION (decl
));
2861 else if (HAS_DECL_ASSEMBLER_NAME_P (decl
)
2862 && DECL_ASSEMBLER_NAME_SET_P (decl
))
2863 res
= IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME_RAW (decl
));
2864 else if (DECL_P (decl
))
2866 res
= get_name (decl
);
2868 temp
= xasprintf ("D.%u", DECL_UID (decl
));
2873 res
= ggc_strdup (temp
);
2881 /* Find the variable id for tree T in the map.
2882 If T doesn't exist in the map, create an entry for it and return it. */
2885 get_vi_for_tree (tree t
)
2887 varinfo_t
*slot
= vi_for_tree
->get (t
);
2890 unsigned int id
= create_variable_info_for (t
, alias_get_name (t
), false);
2891 return get_varinfo (id
);
2897 /* Get a scalar constraint expression for a new temporary variable. */
2899 static struct constraint_expr
2900 new_scalar_tmp_constraint_exp (const char *name
, bool add_id
)
2902 struct constraint_expr tmp
;
2905 vi
= new_var_info (NULL_TREE
, name
, add_id
);
2909 vi
->is_full_var
= 1;
2919 /* Get a constraint expression vector from an SSA_VAR_P node.
2920 If address_p is true, the result will be taken its address of. */
2923 get_constraint_for_ssa_var (tree t
, vec
<ce_s
> *results
, bool address_p
)
2925 struct constraint_expr cexpr
;
2928 /* We allow FUNCTION_DECLs here even though it doesn't make much sense. */
2929 gcc_assert (TREE_CODE (t
) == SSA_NAME
|| DECL_P (t
));
2931 /* For parameters, get at the points-to set for the actual parm
2933 if (TREE_CODE (t
) == SSA_NAME
2934 && SSA_NAME_IS_DEFAULT_DEF (t
)
2935 && (TREE_CODE (SSA_NAME_VAR (t
)) == PARM_DECL
2936 || TREE_CODE (SSA_NAME_VAR (t
)) == RESULT_DECL
))
2938 get_constraint_for_ssa_var (SSA_NAME_VAR (t
), results
, address_p
);
2942 /* For global variables resort to the alias target. */
2943 if (VAR_P (t
) && (TREE_STATIC (t
) || DECL_EXTERNAL (t
)))
2945 varpool_node
*node
= varpool_node::get (t
);
2946 if (node
&& node
->alias
&& node
->analyzed
)
2948 node
= node
->ultimate_alias_target ();
2949 /* Canonicalize the PT uid of all aliases to the ultimate target.
2950 ??? Hopefully the set of aliases can't change in a way that
2951 changes the ultimate alias target. */
2952 gcc_assert ((! DECL_PT_UID_SET_P (node
->decl
)
2953 || DECL_PT_UID (node
->decl
) == DECL_UID (node
->decl
))
2954 && (! DECL_PT_UID_SET_P (t
)
2955 || DECL_PT_UID (t
) == DECL_UID (node
->decl
)));
2956 DECL_PT_UID (t
) = DECL_UID (node
->decl
);
2960 /* If this is decl may bind to NULL note that. */
2962 && (! node
|| ! node
->nonzero_address ()))
2964 cexpr
.var
= nothing_id
;
2965 cexpr
.type
= SCALAR
;
2967 results
->safe_push (cexpr
);
2971 vi
= get_vi_for_tree (t
);
2973 cexpr
.type
= SCALAR
;
2976 /* If we are not taking the address of the constraint expr, add all
2977 sub-fiels of the variable as well. */
2979 && !vi
->is_full_var
)
2981 for (; vi
; vi
= vi_next (vi
))
2984 results
->safe_push (cexpr
);
2989 results
->safe_push (cexpr
);
2992 /* Process constraint T, performing various simplifications and then
2993 adding it to our list of overall constraints. */
2996 process_constraint (constraint_t t
)
2998 struct constraint_expr rhs
= t
->rhs
;
2999 struct constraint_expr lhs
= t
->lhs
;
3001 gcc_assert (rhs
.var
< varmap
.length ());
3002 gcc_assert (lhs
.var
< varmap
.length ());
3004 /* If we didn't get any useful constraint from the lhs we get
3005 &ANYTHING as fallback from get_constraint_for. Deal with
3006 it here by turning it into *ANYTHING. */
3007 if (lhs
.type
== ADDRESSOF
3008 && lhs
.var
== anything_id
)
3011 /* ADDRESSOF on the lhs is invalid. */
3012 gcc_assert (lhs
.type
!= ADDRESSOF
);
3014 /* We shouldn't add constraints from things that cannot have pointers.
3015 It's not completely trivial to avoid in the callers, so do it here. */
3016 if (rhs
.type
!= ADDRESSOF
3017 && !get_varinfo (rhs
.var
)->may_have_pointers
)
3020 /* Likewise adding to the solution of a non-pointer var isn't useful. */
3021 if (!get_varinfo (lhs
.var
)->may_have_pointers
)
3024 /* This can happen in our IR with things like n->a = *p */
3025 if (rhs
.type
== DEREF
&& lhs
.type
== DEREF
&& rhs
.var
!= anything_id
)
3027 /* Split into tmp = *rhs, *lhs = tmp */
3028 struct constraint_expr tmplhs
;
3029 tmplhs
= new_scalar_tmp_constraint_exp ("doubledereftmp", true);
3030 process_constraint (new_constraint (tmplhs
, rhs
));
3031 process_constraint (new_constraint (lhs
, tmplhs
));
3033 else if ((rhs
.type
!= SCALAR
|| rhs
.offset
!= 0) && lhs
.type
== DEREF
)
3035 /* Split into tmp = &rhs, *lhs = tmp */
3036 struct constraint_expr tmplhs
;
3037 tmplhs
= new_scalar_tmp_constraint_exp ("derefaddrtmp", true);
3038 process_constraint (new_constraint (tmplhs
, rhs
));
3039 process_constraint (new_constraint (lhs
, tmplhs
));
3043 gcc_assert (rhs
.type
!= ADDRESSOF
|| rhs
.offset
== 0);
3044 constraints
.safe_push (t
);
3049 /* Return the position, in bits, of FIELD_DECL from the beginning of its
3052 static HOST_WIDE_INT
3053 bitpos_of_field (const tree fdecl
)
3055 if (!tree_fits_shwi_p (DECL_FIELD_OFFSET (fdecl
))
3056 || !tree_fits_shwi_p (DECL_FIELD_BIT_OFFSET (fdecl
)))
3059 return (tree_to_shwi (DECL_FIELD_OFFSET (fdecl
)) * BITS_PER_UNIT
3060 + tree_to_shwi (DECL_FIELD_BIT_OFFSET (fdecl
)));
3064 /* Get constraint expressions for offsetting PTR by OFFSET. Stores the
3065 resulting constraint expressions in *RESULTS. */
3068 get_constraint_for_ptr_offset (tree ptr
, tree offset
,
3071 struct constraint_expr c
;
3073 HOST_WIDE_INT rhsoffset
;
3075 /* If we do not do field-sensitive PTA adding offsets to pointers
3076 does not change the points-to solution. */
3077 if (!use_field_sensitive
)
3079 get_constraint_for_rhs (ptr
, results
);
3083 /* If the offset is not a non-negative integer constant that fits
3084 in a HOST_WIDE_INT, we have to fall back to a conservative
3085 solution which includes all sub-fields of all pointed-to
3086 variables of ptr. */
3087 if (offset
== NULL_TREE
3088 || TREE_CODE (offset
) != INTEGER_CST
)
3089 rhsoffset
= UNKNOWN_OFFSET
;
3092 /* Sign-extend the offset. */
3093 offset_int soffset
= offset_int::from (wi::to_wide (offset
), SIGNED
);
3094 if (!wi::fits_shwi_p (soffset
))
3095 rhsoffset
= UNKNOWN_OFFSET
;
3098 /* Make sure the bit-offset also fits. */
3099 HOST_WIDE_INT rhsunitoffset
= soffset
.to_shwi ();
3100 rhsoffset
= rhsunitoffset
* (unsigned HOST_WIDE_INT
) BITS_PER_UNIT
;
3101 if (rhsunitoffset
!= rhsoffset
/ BITS_PER_UNIT
)
3102 rhsoffset
= UNKNOWN_OFFSET
;
3106 get_constraint_for_rhs (ptr
, results
);
3110 /* As we are eventually appending to the solution do not use
3111 vec::iterate here. */
3112 n
= results
->length ();
3113 for (j
= 0; j
< n
; j
++)
3117 curr
= get_varinfo (c
.var
);
3119 if (c
.type
== ADDRESSOF
3120 /* If this varinfo represents a full variable just use it. */
3121 && curr
->is_full_var
)
3123 else if (c
.type
== ADDRESSOF
3124 /* If we do not know the offset add all subfields. */
3125 && rhsoffset
== UNKNOWN_OFFSET
)
3127 varinfo_t temp
= get_varinfo (curr
->head
);
3130 struct constraint_expr c2
;
3132 c2
.type
= ADDRESSOF
;
3134 if (c2
.var
!= c
.var
)
3135 results
->safe_push (c2
);
3136 temp
= vi_next (temp
);
3140 else if (c
.type
== ADDRESSOF
)
3143 unsigned HOST_WIDE_INT offset
= curr
->offset
+ rhsoffset
;
3145 /* If curr->offset + rhsoffset is less than zero adjust it. */
3147 && curr
->offset
< offset
)
3150 /* We have to include all fields that overlap the current
3151 field shifted by rhsoffset. And we include at least
3152 the last or the first field of the variable to represent
3153 reachability of off-bound addresses, in particular &object + 1,
3154 conservatively correct. */
3155 temp
= first_or_preceding_vi_for_offset (curr
, offset
);
3158 temp
= vi_next (temp
);
3160 && temp
->offset
< offset
+ curr
->size
)
3162 struct constraint_expr c2
;
3164 c2
.type
= ADDRESSOF
;
3166 results
->safe_push (c2
);
3167 temp
= vi_next (temp
);
3170 else if (c
.type
== SCALAR
)
3172 gcc_assert (c
.offset
== 0);
3173 c
.offset
= rhsoffset
;
3176 /* We shouldn't get any DEREFs here. */
3184 /* Given a COMPONENT_REF T, return the constraint_expr vector for it.
3185 If address_p is true the result will be taken its address of.
3186 If lhs_p is true then the constraint expression is assumed to be used
3190 get_constraint_for_component_ref (tree t
, vec
<ce_s
> *results
,
3191 bool address_p
, bool lhs_p
)
3194 HOST_WIDE_INT bitsize
= -1;
3195 HOST_WIDE_INT bitmaxsize
= -1;
3196 HOST_WIDE_INT bitpos
;
3200 /* Some people like to do cute things like take the address of
3203 while (handled_component_p (forzero
)
3204 || INDIRECT_REF_P (forzero
)
3205 || TREE_CODE (forzero
) == MEM_REF
)
3206 forzero
= TREE_OPERAND (forzero
, 0);
3208 if (CONSTANT_CLASS_P (forzero
) && integer_zerop (forzero
))
3210 struct constraint_expr temp
;
3213 temp
.var
= integer_id
;
3215 results
->safe_push (temp
);
3219 t
= get_ref_base_and_extent (t
, &bitpos
, &bitsize
, &bitmaxsize
, &reverse
);
3221 /* We can end up here for component references on a
3222 VIEW_CONVERT_EXPR <>(&foobar) or things like a
3223 BIT_FIELD_REF <&MEM[(void *)&b + 4B], ...>. So for
3224 symbolic constants simply give up. */
3225 if (TREE_CODE (t
) == ADDR_EXPR
)
3227 constraint_expr result
;
3228 result
.type
= SCALAR
;
3229 result
.var
= anything_id
;
3231 results
->safe_push (result
);
3235 /* Pretend to take the address of the base, we'll take care of
3236 adding the required subset of sub-fields below. */
3237 get_constraint_for_1 (t
, results
, true, lhs_p
);
3238 /* Strip off nothing_id. */
3239 if (results
->length () == 2)
3241 gcc_assert ((*results
)[0].var
== nothing_id
);
3242 results
->unordered_remove (0);
3244 gcc_assert (results
->length () == 1);
3245 struct constraint_expr
&result
= results
->last ();
3247 if (result
.type
== SCALAR
3248 && get_varinfo (result
.var
)->is_full_var
)
3249 /* For single-field vars do not bother about the offset. */
3251 else if (result
.type
== SCALAR
)
3253 /* In languages like C, you can access one past the end of an
3254 array. You aren't allowed to dereference it, so we can
3255 ignore this constraint. When we handle pointer subtraction,
3256 we may have to do something cute here. */
3258 if ((unsigned HOST_WIDE_INT
)bitpos
< get_varinfo (result
.var
)->fullsize
3261 /* It's also not true that the constraint will actually start at the
3262 right offset, it may start in some padding. We only care about
3263 setting the constraint to the first actual field it touches, so
3265 struct constraint_expr cexpr
= result
;
3269 for (curr
= get_varinfo (cexpr
.var
); curr
; curr
= vi_next (curr
))
3271 if (ranges_overlap_p (curr
->offset
, curr
->size
,
3272 bitpos
, bitmaxsize
))
3274 cexpr
.var
= curr
->id
;
3275 results
->safe_push (cexpr
);
3280 /* If we are going to take the address of this field then
3281 to be able to compute reachability correctly add at least
3282 the last field of the variable. */
3283 if (address_p
&& results
->length () == 0)
3285 curr
= get_varinfo (cexpr
.var
);
3286 while (curr
->next
!= 0)
3287 curr
= vi_next (curr
);
3288 cexpr
.var
= curr
->id
;
3289 results
->safe_push (cexpr
);
3291 else if (results
->length () == 0)
3292 /* Assert that we found *some* field there. The user couldn't be
3293 accessing *only* padding. */
3294 /* Still the user could access one past the end of an array
3295 embedded in a struct resulting in accessing *only* padding. */
3296 /* Or accessing only padding via type-punning to a type
3297 that has a filed just in padding space. */
3299 cexpr
.type
= SCALAR
;
3300 cexpr
.var
= anything_id
;
3302 results
->safe_push (cexpr
);
3305 else if (bitmaxsize
== 0)
3307 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
3308 fprintf (dump_file
, "Access to zero-sized part of variable, "
3312 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
3313 fprintf (dump_file
, "Access to past the end of variable, ignoring\n");
3315 else if (result
.type
== DEREF
)
3317 /* If we do not know exactly where the access goes say so. Note
3318 that only for non-structure accesses we know that we access
3319 at most one subfiled of any variable. */
3321 || bitsize
!= bitmaxsize
3322 || AGGREGATE_TYPE_P (TREE_TYPE (orig_t
))
3323 || result
.offset
== UNKNOWN_OFFSET
)
3324 result
.offset
= UNKNOWN_OFFSET
;
3326 result
.offset
+= bitpos
;
3328 else if (result
.type
== ADDRESSOF
)
3330 /* We can end up here for component references on constants like
3331 VIEW_CONVERT_EXPR <>({ 0, 1, 2, 3 })[i]. */
3332 result
.type
= SCALAR
;
3333 result
.var
= anything_id
;
3341 /* Dereference the constraint expression CONS, and return the result.
3342 DEREF (ADDRESSOF) = SCALAR
3343 DEREF (SCALAR) = DEREF
3344 DEREF (DEREF) = (temp = DEREF1; result = DEREF(temp))
3345 This is needed so that we can handle dereferencing DEREF constraints. */
3348 do_deref (vec
<ce_s
> *constraints
)
3350 struct constraint_expr
*c
;
3353 FOR_EACH_VEC_ELT (*constraints
, i
, c
)
3355 if (c
->type
== SCALAR
)
3357 else if (c
->type
== ADDRESSOF
)
3359 else if (c
->type
== DEREF
)
3361 struct constraint_expr tmplhs
;
3362 tmplhs
= new_scalar_tmp_constraint_exp ("dereftmp", true);
3363 process_constraint (new_constraint (tmplhs
, *c
));
3364 c
->var
= tmplhs
.var
;
3371 /* Given a tree T, return the constraint expression for taking the
3375 get_constraint_for_address_of (tree t
, vec
<ce_s
> *results
)
3377 struct constraint_expr
*c
;
3380 get_constraint_for_1 (t
, results
, true, true);
3382 FOR_EACH_VEC_ELT (*results
, i
, c
)
3384 if (c
->type
== DEREF
)
3387 c
->type
= ADDRESSOF
;
3391 /* Given a tree T, return the constraint expression for it. */
3394 get_constraint_for_1 (tree t
, vec
<ce_s
> *results
, bool address_p
,
3397 struct constraint_expr temp
;
3399 /* x = integer is all glommed to a single variable, which doesn't
3400 point to anything by itself. That is, of course, unless it is an
3401 integer constant being treated as a pointer, in which case, we
3402 will return that this is really the addressof anything. This
3403 happens below, since it will fall into the default case. The only
3404 case we know something about an integer treated like a pointer is
3405 when it is the NULL pointer, and then we just say it points to
3408 Do not do that if -fno-delete-null-pointer-checks though, because
3409 in that case *NULL does not fail, so it _should_ alias *anything.
3410 It is not worth adding a new option or renaming the existing one,
3411 since this case is relatively obscure. */
3412 if ((TREE_CODE (t
) == INTEGER_CST
3413 && integer_zerop (t
))
3414 /* The only valid CONSTRUCTORs in gimple with pointer typed
3415 elements are zero-initializer. But in IPA mode we also
3416 process global initializers, so verify at least. */
3417 || (TREE_CODE (t
) == CONSTRUCTOR
3418 && CONSTRUCTOR_NELTS (t
) == 0))
3420 if (flag_delete_null_pointer_checks
)
3421 temp
.var
= nothing_id
;
3423 temp
.var
= nonlocal_id
;
3424 temp
.type
= ADDRESSOF
;
3426 results
->safe_push (temp
);
3430 /* String constants are read-only, ideally we'd have a CONST_DECL
3432 if (TREE_CODE (t
) == STRING_CST
)
3434 temp
.var
= string_id
;
3437 results
->safe_push (temp
);
3441 switch (TREE_CODE_CLASS (TREE_CODE (t
)))
3443 case tcc_expression
:
3445 switch (TREE_CODE (t
))
3448 get_constraint_for_address_of (TREE_OPERAND (t
, 0), results
);
3456 switch (TREE_CODE (t
))
3460 struct constraint_expr cs
;
3462 get_constraint_for_ptr_offset (TREE_OPERAND (t
, 0),
3463 TREE_OPERAND (t
, 1), results
);
3466 /* If we are not taking the address then make sure to process
3467 all subvariables we might access. */
3471 cs
= results
->last ();
3472 if (cs
.type
== DEREF
3473 && type_can_have_subvars (TREE_TYPE (t
)))
3475 /* For dereferences this means we have to defer it
3477 results
->last ().offset
= UNKNOWN_OFFSET
;
3480 if (cs
.type
!= SCALAR
)
3483 vi
= get_varinfo (cs
.var
);
3484 curr
= vi_next (vi
);
3485 if (!vi
->is_full_var
3488 unsigned HOST_WIDE_INT size
;
3489 if (tree_fits_uhwi_p (TYPE_SIZE (TREE_TYPE (t
))))
3490 size
= tree_to_uhwi (TYPE_SIZE (TREE_TYPE (t
)));
3493 for (; curr
; curr
= vi_next (curr
))
3495 if (curr
->offset
- vi
->offset
< size
)
3498 results
->safe_push (cs
);
3507 case ARRAY_RANGE_REF
:
3512 get_constraint_for_component_ref (t
, results
, address_p
, lhs_p
);
3514 case VIEW_CONVERT_EXPR
:
3515 get_constraint_for_1 (TREE_OPERAND (t
, 0), results
, address_p
,
3518 /* We are missing handling for TARGET_MEM_REF here. */
3523 case tcc_exceptional
:
3525 switch (TREE_CODE (t
))
3529 get_constraint_for_ssa_var (t
, results
, address_p
);
3537 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (t
), i
, val
)
3539 struct constraint_expr
*rhsp
;
3541 get_constraint_for_1 (val
, &tmp
, address_p
, lhs_p
);
3542 FOR_EACH_VEC_ELT (tmp
, j
, rhsp
)
3543 results
->safe_push (*rhsp
);
3546 /* We do not know whether the constructor was complete,
3547 so technically we have to add &NOTHING or &ANYTHING
3548 like we do for an empty constructor as well. */
3555 case tcc_declaration
:
3557 get_constraint_for_ssa_var (t
, results
, address_p
);
3562 /* We cannot refer to automatic variables through constants. */
3563 temp
.type
= ADDRESSOF
;
3564 temp
.var
= nonlocal_id
;
3566 results
->safe_push (temp
);
3572 /* The default fallback is a constraint from anything. */
3573 temp
.type
= ADDRESSOF
;
3574 temp
.var
= anything_id
;
3576 results
->safe_push (temp
);
3579 /* Given a gimple tree T, return the constraint expression vector for it. */
3582 get_constraint_for (tree t
, vec
<ce_s
> *results
)
3584 gcc_assert (results
->length () == 0);
3586 get_constraint_for_1 (t
, results
, false, true);
3589 /* Given a gimple tree T, return the constraint expression vector for it
3590 to be used as the rhs of a constraint. */
3593 get_constraint_for_rhs (tree t
, vec
<ce_s
> *results
)
3595 gcc_assert (results
->length () == 0);
3597 get_constraint_for_1 (t
, results
, false, false);
3601 /* Efficiently generates constraints from all entries in *RHSC to all
3602 entries in *LHSC. */
3605 process_all_all_constraints (vec
<ce_s
> lhsc
,
3608 struct constraint_expr
*lhsp
, *rhsp
;
3611 if (lhsc
.length () <= 1 || rhsc
.length () <= 1)
3613 FOR_EACH_VEC_ELT (lhsc
, i
, lhsp
)
3614 FOR_EACH_VEC_ELT (rhsc
, j
, rhsp
)
3615 process_constraint (new_constraint (*lhsp
, *rhsp
));
3619 struct constraint_expr tmp
;
3620 tmp
= new_scalar_tmp_constraint_exp ("allalltmp", true);
3621 FOR_EACH_VEC_ELT (rhsc
, i
, rhsp
)
3622 process_constraint (new_constraint (tmp
, *rhsp
));
3623 FOR_EACH_VEC_ELT (lhsc
, i
, lhsp
)
3624 process_constraint (new_constraint (*lhsp
, tmp
));
3628 /* Handle aggregate copies by expanding into copies of the respective
3629 fields of the structures. */
3632 do_structure_copy (tree lhsop
, tree rhsop
)
3634 struct constraint_expr
*lhsp
, *rhsp
;
3635 auto_vec
<ce_s
> lhsc
;
3636 auto_vec
<ce_s
> rhsc
;
3639 get_constraint_for (lhsop
, &lhsc
);
3640 get_constraint_for_rhs (rhsop
, &rhsc
);
3643 if (lhsp
->type
== DEREF
3644 || (lhsp
->type
== ADDRESSOF
&& lhsp
->var
== anything_id
)
3645 || rhsp
->type
== DEREF
)
3647 if (lhsp
->type
== DEREF
)
3649 gcc_assert (lhsc
.length () == 1);
3650 lhsp
->offset
= UNKNOWN_OFFSET
;
3652 if (rhsp
->type
== DEREF
)
3654 gcc_assert (rhsc
.length () == 1);
3655 rhsp
->offset
= UNKNOWN_OFFSET
;
3657 process_all_all_constraints (lhsc
, rhsc
);
3659 else if (lhsp
->type
== SCALAR
3660 && (rhsp
->type
== SCALAR
3661 || rhsp
->type
== ADDRESSOF
))
3663 HOST_WIDE_INT lhssize
, lhsmaxsize
, lhsoffset
;
3664 HOST_WIDE_INT rhssize
, rhsmaxsize
, rhsoffset
;
3667 get_ref_base_and_extent (lhsop
, &lhsoffset
, &lhssize
, &lhsmaxsize
,
3669 get_ref_base_and_extent (rhsop
, &rhsoffset
, &rhssize
, &rhsmaxsize
,
3671 for (j
= 0; lhsc
.iterate (j
, &lhsp
);)
3673 varinfo_t lhsv
, rhsv
;
3675 lhsv
= get_varinfo (lhsp
->var
);
3676 rhsv
= get_varinfo (rhsp
->var
);
3677 if (lhsv
->may_have_pointers
3678 && (lhsv
->is_full_var
3679 || rhsv
->is_full_var
3680 || ranges_overlap_p (lhsv
->offset
+ rhsoffset
, lhsv
->size
,
3681 rhsv
->offset
+ lhsoffset
, rhsv
->size
)))
3682 process_constraint (new_constraint (*lhsp
, *rhsp
));
3683 if (!rhsv
->is_full_var
3684 && (lhsv
->is_full_var
3685 || (lhsv
->offset
+ rhsoffset
+ lhsv
->size
3686 > rhsv
->offset
+ lhsoffset
+ rhsv
->size
)))
3689 if (k
>= rhsc
.length ())
3700 /* Create constraints ID = { rhsc }. */
3703 make_constraints_to (unsigned id
, vec
<ce_s
> rhsc
)
3705 struct constraint_expr
*c
;
3706 struct constraint_expr includes
;
3710 includes
.offset
= 0;
3711 includes
.type
= SCALAR
;
3713 FOR_EACH_VEC_ELT (rhsc
, j
, c
)
3714 process_constraint (new_constraint (includes
, *c
));
3717 /* Create a constraint ID = OP. */
3720 make_constraint_to (unsigned id
, tree op
)
3722 auto_vec
<ce_s
> rhsc
;
3723 get_constraint_for_rhs (op
, &rhsc
);
3724 make_constraints_to (id
, rhsc
);
3727 /* Create a constraint ID = &FROM. */
3730 make_constraint_from (varinfo_t vi
, int from
)
3732 struct constraint_expr lhs
, rhs
;
3740 rhs
.type
= ADDRESSOF
;
3741 process_constraint (new_constraint (lhs
, rhs
));
3744 /* Create a constraint ID = FROM. */
3747 make_copy_constraint (varinfo_t vi
, int from
)
3749 struct constraint_expr lhs
, rhs
;
3758 process_constraint (new_constraint (lhs
, rhs
));
3761 /* Make constraints necessary to make OP escape. */
3764 make_escape_constraint (tree op
)
3766 make_constraint_to (escaped_id
, op
);
3769 /* Add constraints to that the solution of VI is transitively closed. */
3772 make_transitive_closure_constraints (varinfo_t vi
)
3774 struct constraint_expr lhs
, rhs
;
3776 /* VAR = *(VAR + UNKNOWN); */
3782 rhs
.offset
= UNKNOWN_OFFSET
;
3783 process_constraint (new_constraint (lhs
, rhs
));
3786 /* Add constraints to that the solution of VI has all subvariables added. */
3789 make_any_offset_constraints (varinfo_t vi
)
3791 struct constraint_expr lhs
, rhs
;
3793 /* VAR = VAR + UNKNOWN; */
3799 rhs
.offset
= UNKNOWN_OFFSET
;
3800 process_constraint (new_constraint (lhs
, rhs
));
3803 /* Temporary storage for fake var decls. */
3804 struct obstack fake_var_decl_obstack
;
3806 /* Build a fake VAR_DECL acting as referrer to a DECL_UID. */
3809 build_fake_var_decl (tree type
)
3811 tree decl
= (tree
) XOBNEW (&fake_var_decl_obstack
, struct tree_var_decl
);
3812 memset (decl
, 0, sizeof (struct tree_var_decl
));
3813 TREE_SET_CODE (decl
, VAR_DECL
);
3814 TREE_TYPE (decl
) = type
;
3815 DECL_UID (decl
) = allocate_decl_uid ();
3816 SET_DECL_PT_UID (decl
, -1);
3817 layout_decl (decl
, 0);
3821 /* Create a new artificial heap variable with NAME.
3822 Return the created variable. */
3825 make_heapvar (const char *name
, bool add_id
)
3830 heapvar
= build_fake_var_decl (ptr_type_node
);
3831 DECL_EXTERNAL (heapvar
) = 1;
3833 vi
= new_var_info (heapvar
, name
, add_id
);
3834 vi
->is_artificial_var
= true;
3835 vi
->is_heap_var
= true;
3836 vi
->is_unknown_size_var
= true;
3840 vi
->is_full_var
= true;
3841 insert_vi_for_tree (heapvar
, vi
);
3846 /* Create a new artificial heap variable with NAME and make a
3847 constraint from it to LHS. Set flags according to a tag used
3848 for tracking restrict pointers. */
3851 make_constraint_from_restrict (varinfo_t lhs
, const char *name
, bool add_id
)
3853 varinfo_t vi
= make_heapvar (name
, add_id
);
3854 vi
->is_restrict_var
= 1;
3855 vi
->is_global_var
= 1;
3856 vi
->may_have_pointers
= 1;
3857 make_constraint_from (lhs
, vi
->id
);
3861 /* Create a new artificial heap variable with NAME and make a
3862 constraint from it to LHS. Set flags according to a tag used
3863 for tracking restrict pointers and make the artificial heap
3864 point to global memory. */
3867 make_constraint_from_global_restrict (varinfo_t lhs
, const char *name
,
3870 varinfo_t vi
= make_constraint_from_restrict (lhs
, name
, add_id
);
3871 make_copy_constraint (vi
, nonlocal_id
);
3875 /* In IPA mode there are varinfos for different aspects of reach
3876 function designator. One for the points-to set of the return
3877 value, one for the variables that are clobbered by the function,
3878 one for its uses and one for each parameter (including a single
3879 glob for remaining variadic arguments). */
3881 enum { fi_clobbers
= 1, fi_uses
= 2,
3882 fi_static_chain
= 3, fi_result
= 4, fi_parm_base
= 5 };
3884 /* Get a constraint for the requested part of a function designator FI
3885 when operating in IPA mode. */
3887 static struct constraint_expr
3888 get_function_part_constraint (varinfo_t fi
, unsigned part
)
3890 struct constraint_expr c
;
3892 gcc_assert (in_ipa_mode
);
3894 if (fi
->id
== anything_id
)
3896 /* ??? We probably should have a ANYFN special variable. */
3897 c
.var
= anything_id
;
3901 else if (TREE_CODE (fi
->decl
) == FUNCTION_DECL
)
3903 varinfo_t ai
= first_vi_for_offset (fi
, part
);
3907 c
.var
= anything_id
;
3921 /* For non-IPA mode, generate constraints necessary for a call on the
3925 handle_rhs_call (gcall
*stmt
, vec
<ce_s
> *results
)
3927 struct constraint_expr rhsc
;
3929 bool returns_uses
= false;
3931 for (i
= 0; i
< gimple_call_num_args (stmt
); ++i
)
3933 tree arg
= gimple_call_arg (stmt
, i
);
3934 int flags
= gimple_call_arg_flags (stmt
, i
);
3936 /* If the argument is not used we can ignore it. */
3937 if (flags
& EAF_UNUSED
)
3940 /* As we compute ESCAPED context-insensitive we do not gain
3941 any precision with just EAF_NOCLOBBER but not EAF_NOESCAPE
3942 set. The argument would still get clobbered through the
3944 if ((flags
& EAF_NOCLOBBER
)
3945 && (flags
& EAF_NOESCAPE
))
3947 varinfo_t uses
= get_call_use_vi (stmt
);
3948 varinfo_t tem
= new_var_info (NULL_TREE
, "callarg", true);
3949 tem
->is_reg_var
= true;
3950 make_constraint_to (tem
->id
, arg
);
3951 make_any_offset_constraints (tem
);
3952 if (!(flags
& EAF_DIRECT
))
3953 make_transitive_closure_constraints (tem
);
3954 make_copy_constraint (uses
, tem
->id
);
3955 returns_uses
= true;
3957 else if (flags
& EAF_NOESCAPE
)
3959 struct constraint_expr lhs
, rhs
;
3960 varinfo_t uses
= get_call_use_vi (stmt
);
3961 varinfo_t clobbers
= get_call_clobber_vi (stmt
);
3962 varinfo_t tem
= new_var_info (NULL_TREE
, "callarg", true);
3963 tem
->is_reg_var
= true;
3964 make_constraint_to (tem
->id
, arg
);
3965 make_any_offset_constraints (tem
);
3966 if (!(flags
& EAF_DIRECT
))
3967 make_transitive_closure_constraints (tem
);
3968 make_copy_constraint (uses
, tem
->id
);
3969 make_copy_constraint (clobbers
, tem
->id
);
3970 /* Add *tem = nonlocal, do not add *tem = callused as
3971 EAF_NOESCAPE parameters do not escape to other parameters
3972 and all other uses appear in NONLOCAL as well. */
3977 rhs
.var
= nonlocal_id
;
3979 process_constraint (new_constraint (lhs
, rhs
));
3980 returns_uses
= true;
3983 make_escape_constraint (arg
);
3986 /* If we added to the calls uses solution make sure we account for
3987 pointers to it to be returned. */
3990 rhsc
.var
= get_call_use_vi (stmt
)->id
;
3991 rhsc
.offset
= UNKNOWN_OFFSET
;
3993 results
->safe_push (rhsc
);
3996 /* The static chain escapes as well. */
3997 if (gimple_call_chain (stmt
))
3998 make_escape_constraint (gimple_call_chain (stmt
));
4000 /* And if we applied NRV the address of the return slot escapes as well. */
4001 if (gimple_call_return_slot_opt_p (stmt
)
4002 && gimple_call_lhs (stmt
) != NULL_TREE
4003 && TREE_ADDRESSABLE (TREE_TYPE (gimple_call_lhs (stmt
))))
4005 auto_vec
<ce_s
> tmpc
;
4006 struct constraint_expr lhsc
, *c
;
4007 get_constraint_for_address_of (gimple_call_lhs (stmt
), &tmpc
);
4008 lhsc
.var
= escaped_id
;
4011 FOR_EACH_VEC_ELT (tmpc
, i
, c
)
4012 process_constraint (new_constraint (lhsc
, *c
));
4015 /* Regular functions return nonlocal memory. */
4016 rhsc
.var
= nonlocal_id
;
4019 results
->safe_push (rhsc
);
4022 /* For non-IPA mode, generate constraints necessary for a call
4023 that returns a pointer and assigns it to LHS. This simply makes
4024 the LHS point to global and escaped variables. */
4027 handle_lhs_call (gcall
*stmt
, tree lhs
, int flags
, vec
<ce_s
> rhsc
,
4030 auto_vec
<ce_s
> lhsc
;
4032 get_constraint_for (lhs
, &lhsc
);
4033 /* If the store is to a global decl make sure to
4034 add proper escape constraints. */
4035 lhs
= get_base_address (lhs
);
4038 && is_global_var (lhs
))
4040 struct constraint_expr tmpc
;
4041 tmpc
.var
= escaped_id
;
4044 lhsc
.safe_push (tmpc
);
4047 /* If the call returns an argument unmodified override the rhs
4049 if (flags
& ERF_RETURNS_ARG
4050 && (flags
& ERF_RETURN_ARG_MASK
) < gimple_call_num_args (stmt
))
4054 arg
= gimple_call_arg (stmt
, flags
& ERF_RETURN_ARG_MASK
);
4055 get_constraint_for (arg
, &rhsc
);
4056 process_all_all_constraints (lhsc
, rhsc
);
4059 else if (flags
& ERF_NOALIAS
)
4062 struct constraint_expr tmpc
;
4064 vi
= make_heapvar ("HEAP", true);
4065 /* We are marking allocated storage local, we deal with it becoming
4066 global by escaping and setting of vars_contains_escaped_heap. */
4067 DECL_EXTERNAL (vi
->decl
) = 0;
4068 vi
->is_global_var
= 0;
4069 /* If this is not a real malloc call assume the memory was
4070 initialized and thus may point to global memory. All
4071 builtin functions with the malloc attribute behave in a sane way. */
4073 || DECL_BUILT_IN_CLASS (fndecl
) != BUILT_IN_NORMAL
)
4074 make_constraint_from (vi
, nonlocal_id
);
4077 tmpc
.type
= ADDRESSOF
;
4078 rhsc
.safe_push (tmpc
);
4079 process_all_all_constraints (lhsc
, rhsc
);
4083 process_all_all_constraints (lhsc
, rhsc
);
4086 /* For non-IPA mode, generate constraints necessary for a call of a
4087 const function that returns a pointer in the statement STMT. */
4090 handle_const_call (gcall
*stmt
, vec
<ce_s
> *results
)
4092 struct constraint_expr rhsc
;
4094 bool need_uses
= false;
4096 /* Treat nested const functions the same as pure functions as far
4097 as the static chain is concerned. */
4098 if (gimple_call_chain (stmt
))
4100 varinfo_t uses
= get_call_use_vi (stmt
);
4101 make_constraint_to (uses
->id
, gimple_call_chain (stmt
));
4105 /* And if we applied NRV the address of the return slot escapes as well. */
4106 if (gimple_call_return_slot_opt_p (stmt
)
4107 && gimple_call_lhs (stmt
) != NULL_TREE
4108 && TREE_ADDRESSABLE (TREE_TYPE (gimple_call_lhs (stmt
))))
4110 varinfo_t uses
= get_call_use_vi (stmt
);
4111 auto_vec
<ce_s
> tmpc
;
4112 get_constraint_for_address_of (gimple_call_lhs (stmt
), &tmpc
);
4113 make_constraints_to (uses
->id
, tmpc
);
4119 varinfo_t uses
= get_call_use_vi (stmt
);
4120 make_any_offset_constraints (uses
);
4121 make_transitive_closure_constraints (uses
);
4122 rhsc
.var
= uses
->id
;
4125 results
->safe_push (rhsc
);
4128 /* May return offsetted arguments. */
4129 varinfo_t tem
= NULL
;
4130 if (gimple_call_num_args (stmt
) != 0)
4132 tem
= new_var_info (NULL_TREE
, "callarg", true);
4133 tem
->is_reg_var
= true;
4135 for (k
= 0; k
< gimple_call_num_args (stmt
); ++k
)
4137 tree arg
= gimple_call_arg (stmt
, k
);
4138 auto_vec
<ce_s
> argc
;
4139 get_constraint_for_rhs (arg
, &argc
);
4140 make_constraints_to (tem
->id
, argc
);
4147 ce
.offset
= UNKNOWN_OFFSET
;
4148 results
->safe_push (ce
);
4151 /* May return addresses of globals. */
4152 rhsc
.var
= nonlocal_id
;
4154 rhsc
.type
= ADDRESSOF
;
4155 results
->safe_push (rhsc
);
4158 /* For non-IPA mode, generate constraints necessary for a call to a
4159 pure function in statement STMT. */
4162 handle_pure_call (gcall
*stmt
, vec
<ce_s
> *results
)
4164 struct constraint_expr rhsc
;
4166 varinfo_t uses
= NULL
;
4168 /* Memory reached from pointer arguments is call-used. */
4169 for (i
= 0; i
< gimple_call_num_args (stmt
); ++i
)
4171 tree arg
= gimple_call_arg (stmt
, i
);
4174 uses
= get_call_use_vi (stmt
);
4175 make_any_offset_constraints (uses
);
4176 make_transitive_closure_constraints (uses
);
4178 make_constraint_to (uses
->id
, arg
);
4181 /* The static chain is used as well. */
4182 if (gimple_call_chain (stmt
))
4186 uses
= get_call_use_vi (stmt
);
4187 make_any_offset_constraints (uses
);
4188 make_transitive_closure_constraints (uses
);
4190 make_constraint_to (uses
->id
, gimple_call_chain (stmt
));
4193 /* And if we applied NRV the address of the return slot. */
4194 if (gimple_call_return_slot_opt_p (stmt
)
4195 && gimple_call_lhs (stmt
) != NULL_TREE
4196 && TREE_ADDRESSABLE (TREE_TYPE (gimple_call_lhs (stmt
))))
4200 uses
= get_call_use_vi (stmt
);
4201 make_any_offset_constraints (uses
);
4202 make_transitive_closure_constraints (uses
);
4204 auto_vec
<ce_s
> tmpc
;
4205 get_constraint_for_address_of (gimple_call_lhs (stmt
), &tmpc
);
4206 make_constraints_to (uses
->id
, tmpc
);
4209 /* Pure functions may return call-used and nonlocal memory. */
4212 rhsc
.var
= uses
->id
;
4215 results
->safe_push (rhsc
);
4217 rhsc
.var
= nonlocal_id
;
4220 results
->safe_push (rhsc
);
4224 /* Return the varinfo for the callee of CALL. */
4227 get_fi_for_callee (gcall
*call
)
4229 tree decl
, fn
= gimple_call_fn (call
);
4231 if (fn
&& TREE_CODE (fn
) == OBJ_TYPE_REF
)
4232 fn
= OBJ_TYPE_REF_EXPR (fn
);
4234 /* If we can directly resolve the function being called, do so.
4235 Otherwise, it must be some sort of indirect expression that
4236 we should still be able to handle. */
4237 decl
= gimple_call_addr_fndecl (fn
);
4239 return get_vi_for_tree (decl
);
4241 /* If the function is anything other than a SSA name pointer we have no
4242 clue and should be getting ANYFN (well, ANYTHING for now). */
4243 if (!fn
|| TREE_CODE (fn
) != SSA_NAME
)
4244 return get_varinfo (anything_id
);
4246 if (SSA_NAME_IS_DEFAULT_DEF (fn
)
4247 && (TREE_CODE (SSA_NAME_VAR (fn
)) == PARM_DECL
4248 || TREE_CODE (SSA_NAME_VAR (fn
)) == RESULT_DECL
))
4249 fn
= SSA_NAME_VAR (fn
);
4251 return get_vi_for_tree (fn
);
4254 /* Create constraints for assigning call argument ARG to the incoming parameter
4255 INDEX of function FI. */
4258 find_func_aliases_for_call_arg (varinfo_t fi
, unsigned index
, tree arg
)
4260 struct constraint_expr lhs
;
4261 lhs
= get_function_part_constraint (fi
, fi_parm_base
+ index
);
4263 auto_vec
<ce_s
, 2> rhsc
;
4264 get_constraint_for_rhs (arg
, &rhsc
);
4267 struct constraint_expr
*rhsp
;
4268 FOR_EACH_VEC_ELT (rhsc
, j
, rhsp
)
4269 process_constraint (new_constraint (lhs
, *rhsp
));
4272 /* Return true if FNDECL may be part of another lto partition. */
4275 fndecl_maybe_in_other_partition (tree fndecl
)
4277 cgraph_node
*fn_node
= cgraph_node::get (fndecl
);
4278 if (fn_node
== NULL
)
4281 return fn_node
->in_other_partition
;
4284 /* Create constraints for the builtin call T. Return true if the call
4285 was handled, otherwise false. */
4288 find_func_aliases_for_builtin_call (struct function
*fn
, gcall
*t
)
4290 tree fndecl
= gimple_call_fndecl (t
);
4291 auto_vec
<ce_s
, 2> lhsc
;
4292 auto_vec
<ce_s
, 4> rhsc
;
4295 if (gimple_call_builtin_p (t
, BUILT_IN_NORMAL
))
4296 /* ??? All builtins that are handled here need to be handled
4297 in the alias-oracle query functions explicitly! */
4298 switch (DECL_FUNCTION_CODE (fndecl
))
4300 /* All the following functions return a pointer to the same object
4301 as their first argument points to. The functions do not add
4302 to the ESCAPED solution. The functions make the first argument
4303 pointed to memory point to what the second argument pointed to
4304 memory points to. */
4305 case BUILT_IN_STRCPY
:
4306 case BUILT_IN_STRNCPY
:
4307 case BUILT_IN_BCOPY
:
4308 case BUILT_IN_MEMCPY
:
4309 case BUILT_IN_MEMMOVE
:
4310 case BUILT_IN_MEMPCPY
:
4311 case BUILT_IN_STPCPY
:
4312 case BUILT_IN_STPNCPY
:
4313 case BUILT_IN_STRCAT
:
4314 case BUILT_IN_STRNCAT
:
4315 case BUILT_IN_STRCPY_CHK
:
4316 case BUILT_IN_STRNCPY_CHK
:
4317 case BUILT_IN_MEMCPY_CHK
:
4318 case BUILT_IN_MEMMOVE_CHK
:
4319 case BUILT_IN_MEMPCPY_CHK
:
4320 case BUILT_IN_STPCPY_CHK
:
4321 case BUILT_IN_STPNCPY_CHK
:
4322 case BUILT_IN_STRCAT_CHK
:
4323 case BUILT_IN_STRNCAT_CHK
:
4324 case BUILT_IN_TM_MEMCPY
:
4325 case BUILT_IN_TM_MEMMOVE
:
4327 tree res
= gimple_call_lhs (t
);
4328 tree dest
= gimple_call_arg (t
, (DECL_FUNCTION_CODE (fndecl
)
4329 == BUILT_IN_BCOPY
? 1 : 0));
4330 tree src
= gimple_call_arg (t
, (DECL_FUNCTION_CODE (fndecl
)
4331 == BUILT_IN_BCOPY
? 0 : 1));
4332 if (res
!= NULL_TREE
)
4334 get_constraint_for (res
, &lhsc
);
4335 if (DECL_FUNCTION_CODE (fndecl
) == BUILT_IN_MEMPCPY
4336 || DECL_FUNCTION_CODE (fndecl
) == BUILT_IN_STPCPY
4337 || DECL_FUNCTION_CODE (fndecl
) == BUILT_IN_STPNCPY
4338 || DECL_FUNCTION_CODE (fndecl
) == BUILT_IN_MEMPCPY_CHK
4339 || DECL_FUNCTION_CODE (fndecl
) == BUILT_IN_STPCPY_CHK
4340 || DECL_FUNCTION_CODE (fndecl
) == BUILT_IN_STPNCPY_CHK
)
4341 get_constraint_for_ptr_offset (dest
, NULL_TREE
, &rhsc
);
4343 get_constraint_for (dest
, &rhsc
);
4344 process_all_all_constraints (lhsc
, rhsc
);
4348 get_constraint_for_ptr_offset (dest
, NULL_TREE
, &lhsc
);
4349 get_constraint_for_ptr_offset (src
, NULL_TREE
, &rhsc
);
4352 process_all_all_constraints (lhsc
, rhsc
);
4355 case BUILT_IN_MEMSET
:
4356 case BUILT_IN_MEMSET_CHK
:
4357 case BUILT_IN_TM_MEMSET
:
4359 tree res
= gimple_call_lhs (t
);
4360 tree dest
= gimple_call_arg (t
, 0);
4363 struct constraint_expr ac
;
4364 if (res
!= NULL_TREE
)
4366 get_constraint_for (res
, &lhsc
);
4367 get_constraint_for (dest
, &rhsc
);
4368 process_all_all_constraints (lhsc
, rhsc
);
4371 get_constraint_for_ptr_offset (dest
, NULL_TREE
, &lhsc
);
4373 if (flag_delete_null_pointer_checks
4374 && integer_zerop (gimple_call_arg (t
, 1)))
4376 ac
.type
= ADDRESSOF
;
4377 ac
.var
= nothing_id
;
4382 ac
.var
= integer_id
;
4385 FOR_EACH_VEC_ELT (lhsc
, i
, lhsp
)
4386 process_constraint (new_constraint (*lhsp
, ac
));
4389 case BUILT_IN_POSIX_MEMALIGN
:
4391 tree ptrptr
= gimple_call_arg (t
, 0);
4392 get_constraint_for (ptrptr
, &lhsc
);
4394 varinfo_t vi
= make_heapvar ("HEAP", true);
4395 /* We are marking allocated storage local, we deal with it becoming
4396 global by escaping and setting of vars_contains_escaped_heap. */
4397 DECL_EXTERNAL (vi
->decl
) = 0;
4398 vi
->is_global_var
= 0;
4399 struct constraint_expr tmpc
;
4402 tmpc
.type
= ADDRESSOF
;
4403 rhsc
.safe_push (tmpc
);
4404 process_all_all_constraints (lhsc
, rhsc
);
4407 case BUILT_IN_ASSUME_ALIGNED
:
4409 tree res
= gimple_call_lhs (t
);
4410 tree dest
= gimple_call_arg (t
, 0);
4411 if (res
!= NULL_TREE
)
4413 get_constraint_for (res
, &lhsc
);
4414 get_constraint_for (dest
, &rhsc
);
4415 process_all_all_constraints (lhsc
, rhsc
);
4419 /* All the following functions do not return pointers, do not
4420 modify the points-to sets of memory reachable from their
4421 arguments and do not add to the ESCAPED solution. */
4422 case BUILT_IN_SINCOS
:
4423 case BUILT_IN_SINCOSF
:
4424 case BUILT_IN_SINCOSL
:
4425 case BUILT_IN_FREXP
:
4426 case BUILT_IN_FREXPF
:
4427 case BUILT_IN_FREXPL
:
4428 case BUILT_IN_GAMMA_R
:
4429 case BUILT_IN_GAMMAF_R
:
4430 case BUILT_IN_GAMMAL_R
:
4431 case BUILT_IN_LGAMMA_R
:
4432 case BUILT_IN_LGAMMAF_R
:
4433 case BUILT_IN_LGAMMAL_R
:
4435 case BUILT_IN_MODFF
:
4436 case BUILT_IN_MODFL
:
4437 case BUILT_IN_REMQUO
:
4438 case BUILT_IN_REMQUOF
:
4439 case BUILT_IN_REMQUOL
:
4442 case BUILT_IN_STRDUP
:
4443 case BUILT_IN_STRNDUP
:
4444 case BUILT_IN_REALLOC
:
4445 if (gimple_call_lhs (t
))
4447 handle_lhs_call (t
, gimple_call_lhs (t
),
4448 gimple_call_return_flags (t
) | ERF_NOALIAS
,
4450 get_constraint_for_ptr_offset (gimple_call_lhs (t
),
4452 get_constraint_for_ptr_offset (gimple_call_arg (t
, 0),
4456 process_all_all_constraints (lhsc
, rhsc
);
4459 /* For realloc the resulting pointer can be equal to the
4460 argument as well. But only doing this wouldn't be
4461 correct because with ptr == 0 realloc behaves like malloc. */
4462 if (DECL_FUNCTION_CODE (fndecl
) == BUILT_IN_REALLOC
)
4464 get_constraint_for (gimple_call_lhs (t
), &lhsc
);
4465 get_constraint_for (gimple_call_arg (t
, 0), &rhsc
);
4466 process_all_all_constraints (lhsc
, rhsc
);
4471 /* String / character search functions return a pointer into the
4472 source string or NULL. */
4473 case BUILT_IN_INDEX
:
4474 case BUILT_IN_STRCHR
:
4475 case BUILT_IN_STRRCHR
:
4476 case BUILT_IN_MEMCHR
:
4477 case BUILT_IN_STRSTR
:
4478 case BUILT_IN_STRPBRK
:
4479 if (gimple_call_lhs (t
))
4481 tree src
= gimple_call_arg (t
, 0);
4482 get_constraint_for_ptr_offset (src
, NULL_TREE
, &rhsc
);
4483 constraint_expr nul
;
4484 nul
.var
= nothing_id
;
4486 nul
.type
= ADDRESSOF
;
4487 rhsc
.safe_push (nul
);
4488 get_constraint_for (gimple_call_lhs (t
), &lhsc
);
4489 process_all_all_constraints (lhsc
, rhsc
);
4492 /* Pure functions that return something not based on any object and
4493 that use the memory pointed to by their arguments (but not
4495 case BUILT_IN_STRCMP
:
4496 case BUILT_IN_STRNCMP
:
4497 case BUILT_IN_STRCASECMP
:
4498 case BUILT_IN_STRNCASECMP
:
4499 case BUILT_IN_MEMCMP
:
4501 case BUILT_IN_STRSPN
:
4502 case BUILT_IN_STRCSPN
:
4504 varinfo_t uses
= get_call_use_vi (t
);
4505 make_any_offset_constraints (uses
);
4506 make_constraint_to (uses
->id
, gimple_call_arg (t
, 0));
4507 make_constraint_to (uses
->id
, gimple_call_arg (t
, 1));
4508 /* No constraints are necessary for the return value. */
4511 case BUILT_IN_STRLEN
:
4513 varinfo_t uses
= get_call_use_vi (t
);
4514 make_any_offset_constraints (uses
);
4515 make_constraint_to (uses
->id
, gimple_call_arg (t
, 0));
4516 /* No constraints are necessary for the return value. */
4519 case BUILT_IN_OBJECT_SIZE
:
4520 case BUILT_IN_CONSTANT_P
:
4522 /* No constraints are necessary for the return value or the
4526 /* Trampolines are special - they set up passing the static
4528 case BUILT_IN_INIT_TRAMPOLINE
:
4530 tree tramp
= gimple_call_arg (t
, 0);
4531 tree nfunc
= gimple_call_arg (t
, 1);
4532 tree frame
= gimple_call_arg (t
, 2);
4534 struct constraint_expr lhs
, *rhsp
;
4537 varinfo_t nfi
= NULL
;
4538 gcc_assert (TREE_CODE (nfunc
) == ADDR_EXPR
);
4539 nfi
= lookup_vi_for_tree (TREE_OPERAND (nfunc
, 0));
4542 lhs
= get_function_part_constraint (nfi
, fi_static_chain
);
4543 get_constraint_for (frame
, &rhsc
);
4544 FOR_EACH_VEC_ELT (rhsc
, i
, rhsp
)
4545 process_constraint (new_constraint (lhs
, *rhsp
));
4548 /* Make the frame point to the function for
4549 the trampoline adjustment call. */
4550 get_constraint_for (tramp
, &lhsc
);
4552 get_constraint_for (nfunc
, &rhsc
);
4553 process_all_all_constraints (lhsc
, rhsc
);
4558 /* Else fallthru to generic handling which will let
4559 the frame escape. */
4562 case BUILT_IN_ADJUST_TRAMPOLINE
:
4564 tree tramp
= gimple_call_arg (t
, 0);
4565 tree res
= gimple_call_lhs (t
);
4566 if (in_ipa_mode
&& res
)
4568 get_constraint_for (res
, &lhsc
);
4569 get_constraint_for (tramp
, &rhsc
);
4571 process_all_all_constraints (lhsc
, rhsc
);
4575 CASE_BUILT_IN_TM_STORE (1):
4576 CASE_BUILT_IN_TM_STORE (2):
4577 CASE_BUILT_IN_TM_STORE (4):
4578 CASE_BUILT_IN_TM_STORE (8):
4579 CASE_BUILT_IN_TM_STORE (FLOAT
):
4580 CASE_BUILT_IN_TM_STORE (DOUBLE
):
4581 CASE_BUILT_IN_TM_STORE (LDOUBLE
):
4582 CASE_BUILT_IN_TM_STORE (M64
):
4583 CASE_BUILT_IN_TM_STORE (M128
):
4584 CASE_BUILT_IN_TM_STORE (M256
):
4586 tree addr
= gimple_call_arg (t
, 0);
4587 tree src
= gimple_call_arg (t
, 1);
4589 get_constraint_for (addr
, &lhsc
);
4591 get_constraint_for (src
, &rhsc
);
4592 process_all_all_constraints (lhsc
, rhsc
);
4595 CASE_BUILT_IN_TM_LOAD (1):
4596 CASE_BUILT_IN_TM_LOAD (2):
4597 CASE_BUILT_IN_TM_LOAD (4):
4598 CASE_BUILT_IN_TM_LOAD (8):
4599 CASE_BUILT_IN_TM_LOAD (FLOAT
):
4600 CASE_BUILT_IN_TM_LOAD (DOUBLE
):
4601 CASE_BUILT_IN_TM_LOAD (LDOUBLE
):
4602 CASE_BUILT_IN_TM_LOAD (M64
):
4603 CASE_BUILT_IN_TM_LOAD (M128
):
4604 CASE_BUILT_IN_TM_LOAD (M256
):
4606 tree dest
= gimple_call_lhs (t
);
4607 tree addr
= gimple_call_arg (t
, 0);
4609 get_constraint_for (dest
, &lhsc
);
4610 get_constraint_for (addr
, &rhsc
);
4612 process_all_all_constraints (lhsc
, rhsc
);
4615 /* Variadic argument handling needs to be handled in IPA
4617 case BUILT_IN_VA_START
:
4619 tree valist
= gimple_call_arg (t
, 0);
4620 struct constraint_expr rhs
, *lhsp
;
4622 get_constraint_for_ptr_offset (valist
, NULL_TREE
, &lhsc
);
4624 /* The va_list gets access to pointers in variadic
4625 arguments. Which we know in the case of IPA analysis
4626 and otherwise are just all nonlocal variables. */
4629 fi
= lookup_vi_for_tree (fn
->decl
);
4630 rhs
= get_function_part_constraint (fi
, ~0);
4631 rhs
.type
= ADDRESSOF
;
4635 rhs
.var
= nonlocal_id
;
4636 rhs
.type
= ADDRESSOF
;
4639 FOR_EACH_VEC_ELT (lhsc
, i
, lhsp
)
4640 process_constraint (new_constraint (*lhsp
, rhs
));
4641 /* va_list is clobbered. */
4642 make_constraint_to (get_call_clobber_vi (t
)->id
, valist
);
4645 /* va_end doesn't have any effect that matters. */
4646 case BUILT_IN_VA_END
:
4648 /* Alternate return. Simply give up for now. */
4649 case BUILT_IN_RETURN
:
4653 || !(fi
= get_vi_for_tree (fn
->decl
)))
4654 make_constraint_from (get_varinfo (escaped_id
), anything_id
);
4655 else if (in_ipa_mode
4658 struct constraint_expr lhs
, rhs
;
4659 lhs
= get_function_part_constraint (fi
, fi_result
);
4660 rhs
.var
= anything_id
;
4663 process_constraint (new_constraint (lhs
, rhs
));
4667 case BUILT_IN_GOMP_PARALLEL
:
4668 case BUILT_IN_GOACC_PARALLEL
:
4672 unsigned int fnpos
, argpos
;
4673 switch (DECL_FUNCTION_CODE (fndecl
))
4675 case BUILT_IN_GOMP_PARALLEL
:
4676 /* __builtin_GOMP_parallel (fn, data, num_threads, flags). */
4680 case BUILT_IN_GOACC_PARALLEL
:
4681 /* __builtin_GOACC_parallel (device, fn, mapnum, hostaddrs,
4682 sizes, kinds, ...). */
4690 tree fnarg
= gimple_call_arg (t
, fnpos
);
4691 gcc_assert (TREE_CODE (fnarg
) == ADDR_EXPR
);
4692 tree fndecl
= TREE_OPERAND (fnarg
, 0);
4693 if (fndecl_maybe_in_other_partition (fndecl
))
4694 /* Fallthru to general call handling. */
4697 tree arg
= gimple_call_arg (t
, argpos
);
4699 varinfo_t fi
= get_vi_for_tree (fndecl
);
4700 find_func_aliases_for_call_arg (fi
, 0, arg
);
4703 /* Else fallthru to generic call handling. */
4706 /* printf-style functions may have hooks to set pointers to
4707 point to somewhere into the generated string. Leave them
4708 for a later exercise... */
4710 /* Fallthru to general call handling. */;
4716 /* Create constraints for the call T. */
4719 find_func_aliases_for_call (struct function
*fn
, gcall
*t
)
4721 tree fndecl
= gimple_call_fndecl (t
);
4724 if (fndecl
!= NULL_TREE
4725 && DECL_BUILT_IN (fndecl
)
4726 && find_func_aliases_for_builtin_call (fn
, t
))
4729 fi
= get_fi_for_callee (t
);
4731 || (fndecl
&& !fi
->is_fn_info
))
4733 auto_vec
<ce_s
, 16> rhsc
;
4734 int flags
= gimple_call_flags (t
);
4736 /* Const functions can return their arguments and addresses
4737 of global memory but not of escaped memory. */
4738 if (flags
& (ECF_CONST
|ECF_NOVOPS
))
4740 if (gimple_call_lhs (t
))
4741 handle_const_call (t
, &rhsc
);
4743 /* Pure functions can return addresses in and of memory
4744 reachable from their arguments, but they are not an escape
4745 point for reachable memory of their arguments. */
4746 else if (flags
& (ECF_PURE
|ECF_LOOPING_CONST_OR_PURE
))
4747 handle_pure_call (t
, &rhsc
);
4749 handle_rhs_call (t
, &rhsc
);
4750 if (gimple_call_lhs (t
))
4751 handle_lhs_call (t
, gimple_call_lhs (t
),
4752 gimple_call_return_flags (t
), rhsc
, fndecl
);
4756 auto_vec
<ce_s
, 2> rhsc
;
4760 /* Assign all the passed arguments to the appropriate incoming
4761 parameters of the function. */
4762 for (j
= 0; j
< gimple_call_num_args (t
); j
++)
4764 tree arg
= gimple_call_arg (t
, j
);
4765 find_func_aliases_for_call_arg (fi
, j
, arg
);
4768 /* If we are returning a value, assign it to the result. */
4769 lhsop
= gimple_call_lhs (t
);
4772 auto_vec
<ce_s
, 2> lhsc
;
4773 struct constraint_expr rhs
;
4774 struct constraint_expr
*lhsp
;
4775 bool aggr_p
= aggregate_value_p (lhsop
, gimple_call_fntype (t
));
4777 get_constraint_for (lhsop
, &lhsc
);
4778 rhs
= get_function_part_constraint (fi
, fi_result
);
4781 auto_vec
<ce_s
, 2> tem
;
4782 tem
.quick_push (rhs
);
4784 gcc_checking_assert (tem
.length () == 1);
4787 FOR_EACH_VEC_ELT (lhsc
, j
, lhsp
)
4788 process_constraint (new_constraint (*lhsp
, rhs
));
4790 /* If we pass the result decl by reference, honor that. */
4793 struct constraint_expr lhs
;
4794 struct constraint_expr
*rhsp
;
4796 get_constraint_for_address_of (lhsop
, &rhsc
);
4797 lhs
= get_function_part_constraint (fi
, fi_result
);
4798 FOR_EACH_VEC_ELT (rhsc
, j
, rhsp
)
4799 process_constraint (new_constraint (lhs
, *rhsp
));
4804 /* If we use a static chain, pass it along. */
4805 if (gimple_call_chain (t
))
4807 struct constraint_expr lhs
;
4808 struct constraint_expr
*rhsp
;
4810 get_constraint_for (gimple_call_chain (t
), &rhsc
);
4811 lhs
= get_function_part_constraint (fi
, fi_static_chain
);
4812 FOR_EACH_VEC_ELT (rhsc
, j
, rhsp
)
4813 process_constraint (new_constraint (lhs
, *rhsp
));
4818 /* Walk statement T setting up aliasing constraints according to the
4819 references found in T. This function is the main part of the
4820 constraint builder. AI points to auxiliary alias information used
4821 when building alias sets and computing alias grouping heuristics. */
4824 find_func_aliases (struct function
*fn
, gimple
*origt
)
4827 auto_vec
<ce_s
, 16> lhsc
;
4828 auto_vec
<ce_s
, 16> rhsc
;
4829 struct constraint_expr
*c
;
4832 /* Now build constraints expressions. */
4833 if (gimple_code (t
) == GIMPLE_PHI
)
4838 /* For a phi node, assign all the arguments to
4840 get_constraint_for (gimple_phi_result (t
), &lhsc
);
4841 for (i
= 0; i
< gimple_phi_num_args (t
); i
++)
4843 tree strippedrhs
= PHI_ARG_DEF (t
, i
);
4845 STRIP_NOPS (strippedrhs
);
4846 get_constraint_for_rhs (gimple_phi_arg_def (t
, i
), &rhsc
);
4848 FOR_EACH_VEC_ELT (lhsc
, j
, c
)
4850 struct constraint_expr
*c2
;
4851 while (rhsc
.length () > 0)
4854 process_constraint (new_constraint (*c
, *c2
));
4860 /* In IPA mode, we need to generate constraints to pass call
4861 arguments through their calls. There are two cases,
4862 either a GIMPLE_CALL returning a value, or just a plain
4863 GIMPLE_CALL when we are not.
4865 In non-ipa mode, we need to generate constraints for each
4866 pointer passed by address. */
4867 else if (is_gimple_call (t
))
4868 find_func_aliases_for_call (fn
, as_a
<gcall
*> (t
));
4870 /* Otherwise, just a regular assignment statement. Only care about
4871 operations with pointer result, others are dealt with as escape
4872 points if they have pointer operands. */
4873 else if (is_gimple_assign (t
))
4875 /* Otherwise, just a regular assignment statement. */
4876 tree lhsop
= gimple_assign_lhs (t
);
4877 tree rhsop
= (gimple_num_ops (t
) == 2) ? gimple_assign_rhs1 (t
) : NULL
;
4879 if (rhsop
&& TREE_CLOBBER_P (rhsop
))
4880 /* Ignore clobbers, they don't actually store anything into
4883 else if (rhsop
&& AGGREGATE_TYPE_P (TREE_TYPE (lhsop
)))
4884 do_structure_copy (lhsop
, rhsop
);
4887 enum tree_code code
= gimple_assign_rhs_code (t
);
4889 get_constraint_for (lhsop
, &lhsc
);
4891 if (code
== POINTER_PLUS_EXPR
)
4892 get_constraint_for_ptr_offset (gimple_assign_rhs1 (t
),
4893 gimple_assign_rhs2 (t
), &rhsc
);
4894 else if (code
== BIT_AND_EXPR
4895 && TREE_CODE (gimple_assign_rhs2 (t
)) == INTEGER_CST
)
4897 /* Aligning a pointer via a BIT_AND_EXPR is offsetting
4898 the pointer. Handle it by offsetting it by UNKNOWN. */
4899 get_constraint_for_ptr_offset (gimple_assign_rhs1 (t
),
4902 else if ((CONVERT_EXPR_CODE_P (code
)
4903 && !(POINTER_TYPE_P (gimple_expr_type (t
))
4904 && !POINTER_TYPE_P (TREE_TYPE (rhsop
))))
4905 || gimple_assign_single_p (t
))
4906 get_constraint_for_rhs (rhsop
, &rhsc
);
4907 else if (code
== COND_EXPR
)
4909 /* The result is a merge of both COND_EXPR arms. */
4910 auto_vec
<ce_s
, 2> tmp
;
4911 struct constraint_expr
*rhsp
;
4913 get_constraint_for_rhs (gimple_assign_rhs2 (t
), &rhsc
);
4914 get_constraint_for_rhs (gimple_assign_rhs3 (t
), &tmp
);
4915 FOR_EACH_VEC_ELT (tmp
, i
, rhsp
)
4916 rhsc
.safe_push (*rhsp
);
4918 else if (truth_value_p (code
))
4919 /* Truth value results are not pointer (parts). Or at least
4920 very unreasonable obfuscation of a part. */
4924 /* All other operations are merges. */
4925 auto_vec
<ce_s
, 4> tmp
;
4926 struct constraint_expr
*rhsp
;
4928 get_constraint_for_rhs (gimple_assign_rhs1 (t
), &rhsc
);
4929 for (i
= 2; i
< gimple_num_ops (t
); ++i
)
4931 get_constraint_for_rhs (gimple_op (t
, i
), &tmp
);
4932 FOR_EACH_VEC_ELT (tmp
, j
, rhsp
)
4933 rhsc
.safe_push (*rhsp
);
4937 process_all_all_constraints (lhsc
, rhsc
);
4939 /* If there is a store to a global variable the rhs escapes. */
4940 if ((lhsop
= get_base_address (lhsop
)) != NULL_TREE
4943 varinfo_t vi
= get_vi_for_tree (lhsop
);
4944 if ((! in_ipa_mode
&& vi
->is_global_var
)
4945 || vi
->is_ipa_escape_point
)
4946 make_escape_constraint (rhsop
);
4949 /* Handle escapes through return. */
4950 else if (gimple_code (t
) == GIMPLE_RETURN
4951 && gimple_return_retval (as_a
<greturn
*> (t
)) != NULL_TREE
)
4953 greturn
*return_stmt
= as_a
<greturn
*> (t
);
4956 || !(fi
= get_vi_for_tree (fn
->decl
)))
4957 make_escape_constraint (gimple_return_retval (return_stmt
));
4958 else if (in_ipa_mode
)
4960 struct constraint_expr lhs
;
4961 struct constraint_expr
*rhsp
;
4964 lhs
= get_function_part_constraint (fi
, fi_result
);
4965 get_constraint_for_rhs (gimple_return_retval (return_stmt
), &rhsc
);
4966 FOR_EACH_VEC_ELT (rhsc
, i
, rhsp
)
4967 process_constraint (new_constraint (lhs
, *rhsp
));
4970 /* Handle asms conservatively by adding escape constraints to everything. */
4971 else if (gasm
*asm_stmt
= dyn_cast
<gasm
*> (t
))
4973 unsigned i
, noutputs
;
4974 const char **oconstraints
;
4975 const char *constraint
;
4976 bool allows_mem
, allows_reg
, is_inout
;
4978 noutputs
= gimple_asm_noutputs (asm_stmt
);
4979 oconstraints
= XALLOCAVEC (const char *, noutputs
);
4981 for (i
= 0; i
< noutputs
; ++i
)
4983 tree link
= gimple_asm_output_op (asm_stmt
, i
);
4984 tree op
= TREE_VALUE (link
);
4986 constraint
= TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (link
)));
4987 oconstraints
[i
] = constraint
;
4988 parse_output_constraint (&constraint
, i
, 0, 0, &allows_mem
,
4989 &allows_reg
, &is_inout
);
4991 /* A memory constraint makes the address of the operand escape. */
4992 if (!allows_reg
&& allows_mem
)
4993 make_escape_constraint (build_fold_addr_expr (op
));
4995 /* The asm may read global memory, so outputs may point to
4996 any global memory. */
4999 auto_vec
<ce_s
, 2> lhsc
;
5000 struct constraint_expr rhsc
, *lhsp
;
5002 get_constraint_for (op
, &lhsc
);
5003 rhsc
.var
= nonlocal_id
;
5006 FOR_EACH_VEC_ELT (lhsc
, j
, lhsp
)
5007 process_constraint (new_constraint (*lhsp
, rhsc
));
5010 for (i
= 0; i
< gimple_asm_ninputs (asm_stmt
); ++i
)
5012 tree link
= gimple_asm_input_op (asm_stmt
, i
);
5013 tree op
= TREE_VALUE (link
);
5015 constraint
= TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (link
)));
5017 parse_input_constraint (&constraint
, 0, 0, noutputs
, 0, oconstraints
,
5018 &allows_mem
, &allows_reg
);
5020 /* A memory constraint makes the address of the operand escape. */
5021 if (!allows_reg
&& allows_mem
)
5022 make_escape_constraint (build_fold_addr_expr (op
));
5023 /* Strictly we'd only need the constraint to ESCAPED if
5024 the asm clobbers memory, otherwise using something
5025 along the lines of per-call clobbers/uses would be enough. */
5027 make_escape_constraint (op
);
5033 /* Create a constraint adding to the clobber set of FI the memory
5034 pointed to by PTR. */
5037 process_ipa_clobber (varinfo_t fi
, tree ptr
)
5039 vec
<ce_s
> ptrc
= vNULL
;
5040 struct constraint_expr
*c
, lhs
;
5042 get_constraint_for_rhs (ptr
, &ptrc
);
5043 lhs
= get_function_part_constraint (fi
, fi_clobbers
);
5044 FOR_EACH_VEC_ELT (ptrc
, i
, c
)
5045 process_constraint (new_constraint (lhs
, *c
));
5049 /* Walk statement T setting up clobber and use constraints according to the
5050 references found in T. This function is a main part of the
5051 IPA constraint builder. */
5054 find_func_clobbers (struct function
*fn
, gimple
*origt
)
5057 auto_vec
<ce_s
, 16> lhsc
;
5058 auto_vec
<ce_s
, 16> rhsc
;
5061 /* Add constraints for clobbered/used in IPA mode.
5062 We are not interested in what automatic variables are clobbered
5063 or used as we only use the information in the caller to which
5064 they do not escape. */
5065 gcc_assert (in_ipa_mode
);
5067 /* If the stmt refers to memory in any way it better had a VUSE. */
5068 if (gimple_vuse (t
) == NULL_TREE
)
5071 /* We'd better have function information for the current function. */
5072 fi
= lookup_vi_for_tree (fn
->decl
);
5073 gcc_assert (fi
!= NULL
);
5075 /* Account for stores in assignments and calls. */
5076 if (gimple_vdef (t
) != NULL_TREE
5077 && gimple_has_lhs (t
))
5079 tree lhs
= gimple_get_lhs (t
);
5081 while (handled_component_p (tem
))
5082 tem
= TREE_OPERAND (tem
, 0);
5084 && !auto_var_in_fn_p (tem
, fn
->decl
))
5085 || INDIRECT_REF_P (tem
)
5086 || (TREE_CODE (tem
) == MEM_REF
5087 && !(TREE_CODE (TREE_OPERAND (tem
, 0)) == ADDR_EXPR
5089 (TREE_OPERAND (TREE_OPERAND (tem
, 0), 0), fn
->decl
))))
5091 struct constraint_expr lhsc
, *rhsp
;
5093 lhsc
= get_function_part_constraint (fi
, fi_clobbers
);
5094 get_constraint_for_address_of (lhs
, &rhsc
);
5095 FOR_EACH_VEC_ELT (rhsc
, i
, rhsp
)
5096 process_constraint (new_constraint (lhsc
, *rhsp
));
5101 /* Account for uses in assigments and returns. */
5102 if (gimple_assign_single_p (t
)
5103 || (gimple_code (t
) == GIMPLE_RETURN
5104 && gimple_return_retval (as_a
<greturn
*> (t
)) != NULL_TREE
))
5106 tree rhs
= (gimple_assign_single_p (t
)
5107 ? gimple_assign_rhs1 (t
)
5108 : gimple_return_retval (as_a
<greturn
*> (t
)));
5110 while (handled_component_p (tem
))
5111 tem
= TREE_OPERAND (tem
, 0);
5113 && !auto_var_in_fn_p (tem
, fn
->decl
))
5114 || INDIRECT_REF_P (tem
)
5115 || (TREE_CODE (tem
) == MEM_REF
5116 && !(TREE_CODE (TREE_OPERAND (tem
, 0)) == ADDR_EXPR
5118 (TREE_OPERAND (TREE_OPERAND (tem
, 0), 0), fn
->decl
))))
5120 struct constraint_expr lhs
, *rhsp
;
5122 lhs
= get_function_part_constraint (fi
, fi_uses
);
5123 get_constraint_for_address_of (rhs
, &rhsc
);
5124 FOR_EACH_VEC_ELT (rhsc
, i
, rhsp
)
5125 process_constraint (new_constraint (lhs
, *rhsp
));
5130 if (gcall
*call_stmt
= dyn_cast
<gcall
*> (t
))
5132 varinfo_t cfi
= NULL
;
5133 tree decl
= gimple_call_fndecl (t
);
5134 struct constraint_expr lhs
, rhs
;
5137 /* For builtins we do not have separate function info. For those
5138 we do not generate escapes for we have to generate clobbers/uses. */
5139 if (gimple_call_builtin_p (t
, BUILT_IN_NORMAL
))
5140 switch (DECL_FUNCTION_CODE (decl
))
5142 /* The following functions use and clobber memory pointed to
5143 by their arguments. */
5144 case BUILT_IN_STRCPY
:
5145 case BUILT_IN_STRNCPY
:
5146 case BUILT_IN_BCOPY
:
5147 case BUILT_IN_MEMCPY
:
5148 case BUILT_IN_MEMMOVE
:
5149 case BUILT_IN_MEMPCPY
:
5150 case BUILT_IN_STPCPY
:
5151 case BUILT_IN_STPNCPY
:
5152 case BUILT_IN_STRCAT
:
5153 case BUILT_IN_STRNCAT
:
5154 case BUILT_IN_STRCPY_CHK
:
5155 case BUILT_IN_STRNCPY_CHK
:
5156 case BUILT_IN_MEMCPY_CHK
:
5157 case BUILT_IN_MEMMOVE_CHK
:
5158 case BUILT_IN_MEMPCPY_CHK
:
5159 case BUILT_IN_STPCPY_CHK
:
5160 case BUILT_IN_STPNCPY_CHK
:
5161 case BUILT_IN_STRCAT_CHK
:
5162 case BUILT_IN_STRNCAT_CHK
:
5164 tree dest
= gimple_call_arg (t
, (DECL_FUNCTION_CODE (decl
)
5165 == BUILT_IN_BCOPY
? 1 : 0));
5166 tree src
= gimple_call_arg (t
, (DECL_FUNCTION_CODE (decl
)
5167 == BUILT_IN_BCOPY
? 0 : 1));
5169 struct constraint_expr
*rhsp
, *lhsp
;
5170 get_constraint_for_ptr_offset (dest
, NULL_TREE
, &lhsc
);
5171 lhs
= get_function_part_constraint (fi
, fi_clobbers
);
5172 FOR_EACH_VEC_ELT (lhsc
, i
, lhsp
)
5173 process_constraint (new_constraint (lhs
, *lhsp
));
5174 get_constraint_for_ptr_offset (src
, NULL_TREE
, &rhsc
);
5175 lhs
= get_function_part_constraint (fi
, fi_uses
);
5176 FOR_EACH_VEC_ELT (rhsc
, i
, rhsp
)
5177 process_constraint (new_constraint (lhs
, *rhsp
));
5180 /* The following function clobbers memory pointed to by
5182 case BUILT_IN_MEMSET
:
5183 case BUILT_IN_MEMSET_CHK
:
5184 case BUILT_IN_POSIX_MEMALIGN
:
5186 tree dest
= gimple_call_arg (t
, 0);
5189 get_constraint_for_ptr_offset (dest
, NULL_TREE
, &lhsc
);
5190 lhs
= get_function_part_constraint (fi
, fi_clobbers
);
5191 FOR_EACH_VEC_ELT (lhsc
, i
, lhsp
)
5192 process_constraint (new_constraint (lhs
, *lhsp
));
5195 /* The following functions clobber their second and third
5197 case BUILT_IN_SINCOS
:
5198 case BUILT_IN_SINCOSF
:
5199 case BUILT_IN_SINCOSL
:
5201 process_ipa_clobber (fi
, gimple_call_arg (t
, 1));
5202 process_ipa_clobber (fi
, gimple_call_arg (t
, 2));
5205 /* The following functions clobber their second argument. */
5206 case BUILT_IN_FREXP
:
5207 case BUILT_IN_FREXPF
:
5208 case BUILT_IN_FREXPL
:
5209 case BUILT_IN_LGAMMA_R
:
5210 case BUILT_IN_LGAMMAF_R
:
5211 case BUILT_IN_LGAMMAL_R
:
5212 case BUILT_IN_GAMMA_R
:
5213 case BUILT_IN_GAMMAF_R
:
5214 case BUILT_IN_GAMMAL_R
:
5216 case BUILT_IN_MODFF
:
5217 case BUILT_IN_MODFL
:
5219 process_ipa_clobber (fi
, gimple_call_arg (t
, 1));
5222 /* The following functions clobber their third argument. */
5223 case BUILT_IN_REMQUO
:
5224 case BUILT_IN_REMQUOF
:
5225 case BUILT_IN_REMQUOL
:
5227 process_ipa_clobber (fi
, gimple_call_arg (t
, 2));
5230 /* The following functions neither read nor clobber memory. */
5231 case BUILT_IN_ASSUME_ALIGNED
:
5234 /* Trampolines are of no interest to us. */
5235 case BUILT_IN_INIT_TRAMPOLINE
:
5236 case BUILT_IN_ADJUST_TRAMPOLINE
:
5238 case BUILT_IN_VA_START
:
5239 case BUILT_IN_VA_END
:
5241 case BUILT_IN_GOMP_PARALLEL
:
5242 case BUILT_IN_GOACC_PARALLEL
:
5244 unsigned int fnpos
, argpos
;
5245 unsigned int implicit_use_args
[2];
5246 unsigned int num_implicit_use_args
= 0;
5247 switch (DECL_FUNCTION_CODE (decl
))
5249 case BUILT_IN_GOMP_PARALLEL
:
5250 /* __builtin_GOMP_parallel (fn, data, num_threads, flags). */
5254 case BUILT_IN_GOACC_PARALLEL
:
5255 /* __builtin_GOACC_parallel (device, fn, mapnum, hostaddrs,
5256 sizes, kinds, ...). */
5259 implicit_use_args
[num_implicit_use_args
++] = 4;
5260 implicit_use_args
[num_implicit_use_args
++] = 5;
5266 tree fnarg
= gimple_call_arg (t
, fnpos
);
5267 gcc_assert (TREE_CODE (fnarg
) == ADDR_EXPR
);
5268 tree fndecl
= TREE_OPERAND (fnarg
, 0);
5269 if (fndecl_maybe_in_other_partition (fndecl
))
5270 /* Fallthru to general call handling. */
5273 varinfo_t cfi
= get_vi_for_tree (fndecl
);
5275 tree arg
= gimple_call_arg (t
, argpos
);
5277 /* Parameter passed by value is used. */
5278 lhs
= get_function_part_constraint (fi
, fi_uses
);
5279 struct constraint_expr
*rhsp
;
5280 get_constraint_for (arg
, &rhsc
);
5281 FOR_EACH_VEC_ELT (rhsc
, j
, rhsp
)
5282 process_constraint (new_constraint (lhs
, *rhsp
));
5285 /* Handle parameters used by the call, but not used in cfi, as
5286 implicitly used by cfi. */
5287 lhs
= get_function_part_constraint (cfi
, fi_uses
);
5288 for (unsigned i
= 0; i
< num_implicit_use_args
; ++i
)
5290 tree arg
= gimple_call_arg (t
, implicit_use_args
[i
]);
5291 get_constraint_for (arg
, &rhsc
);
5292 FOR_EACH_VEC_ELT (rhsc
, j
, rhsp
)
5293 process_constraint (new_constraint (lhs
, *rhsp
));
5297 /* The caller clobbers what the callee does. */
5298 lhs
= get_function_part_constraint (fi
, fi_clobbers
);
5299 rhs
= get_function_part_constraint (cfi
, fi_clobbers
);
5300 process_constraint (new_constraint (lhs
, rhs
));
5302 /* The caller uses what the callee does. */
5303 lhs
= get_function_part_constraint (fi
, fi_uses
);
5304 rhs
= get_function_part_constraint (cfi
, fi_uses
);
5305 process_constraint (new_constraint (lhs
, rhs
));
5309 /* printf-style functions may have hooks to set pointers to
5310 point to somewhere into the generated string. Leave them
5311 for a later exercise... */
5313 /* Fallthru to general call handling. */;
5316 /* Parameters passed by value are used. */
5317 lhs
= get_function_part_constraint (fi
, fi_uses
);
5318 for (i
= 0; i
< gimple_call_num_args (t
); i
++)
5320 struct constraint_expr
*rhsp
;
5321 tree arg
= gimple_call_arg (t
, i
);
5323 if (TREE_CODE (arg
) == SSA_NAME
5324 || is_gimple_min_invariant (arg
))
5327 get_constraint_for_address_of (arg
, &rhsc
);
5328 FOR_EACH_VEC_ELT (rhsc
, j
, rhsp
)
5329 process_constraint (new_constraint (lhs
, *rhsp
));
5333 /* Build constraints for propagating clobbers/uses along the
5335 cfi
= get_fi_for_callee (call_stmt
);
5336 if (cfi
->id
== anything_id
)
5338 if (gimple_vdef (t
))
5339 make_constraint_from (first_vi_for_offset (fi
, fi_clobbers
),
5341 make_constraint_from (first_vi_for_offset (fi
, fi_uses
),
5346 /* For callees without function info (that's external functions),
5347 ESCAPED is clobbered and used. */
5348 if (gimple_call_fndecl (t
)
5349 && !cfi
->is_fn_info
)
5353 if (gimple_vdef (t
))
5354 make_copy_constraint (first_vi_for_offset (fi
, fi_clobbers
),
5356 make_copy_constraint (first_vi_for_offset (fi
, fi_uses
), escaped_id
);
5358 /* Also honor the call statement use/clobber info. */
5359 if ((vi
= lookup_call_clobber_vi (call_stmt
)) != NULL
)
5360 make_copy_constraint (first_vi_for_offset (fi
, fi_clobbers
),
5362 if ((vi
= lookup_call_use_vi (call_stmt
)) != NULL
)
5363 make_copy_constraint (first_vi_for_offset (fi
, fi_uses
),
5368 /* Otherwise the caller clobbers and uses what the callee does.
5369 ??? This should use a new complex constraint that filters
5370 local variables of the callee. */
5371 if (gimple_vdef (t
))
5373 lhs
= get_function_part_constraint (fi
, fi_clobbers
);
5374 rhs
= get_function_part_constraint (cfi
, fi_clobbers
);
5375 process_constraint (new_constraint (lhs
, rhs
));
5377 lhs
= get_function_part_constraint (fi
, fi_uses
);
5378 rhs
= get_function_part_constraint (cfi
, fi_uses
);
5379 process_constraint (new_constraint (lhs
, rhs
));
5381 else if (gimple_code (t
) == GIMPLE_ASM
)
5383 /* ??? Ick. We can do better. */
5384 if (gimple_vdef (t
))
5385 make_constraint_from (first_vi_for_offset (fi
, fi_clobbers
),
5387 make_constraint_from (first_vi_for_offset (fi
, fi_uses
),
5393 /* Find the first varinfo in the same variable as START that overlaps with
5394 OFFSET. Return NULL if we can't find one. */
5397 first_vi_for_offset (varinfo_t start
, unsigned HOST_WIDE_INT offset
)
5399 /* If the offset is outside of the variable, bail out. */
5400 if (offset
>= start
->fullsize
)
5403 /* If we cannot reach offset from start, lookup the first field
5404 and start from there. */
5405 if (start
->offset
> offset
)
5406 start
= get_varinfo (start
->head
);
5410 /* We may not find a variable in the field list with the actual
5411 offset when we have glommed a structure to a variable.
5412 In that case, however, offset should still be within the size
5414 if (offset
>= start
->offset
5415 && (offset
- start
->offset
) < start
->size
)
5418 start
= vi_next (start
);
5424 /* Find the first varinfo in the same variable as START that overlaps with
5425 OFFSET. If there is no such varinfo the varinfo directly preceding
5426 OFFSET is returned. */
5429 first_or_preceding_vi_for_offset (varinfo_t start
,
5430 unsigned HOST_WIDE_INT offset
)
5432 /* If we cannot reach offset from start, lookup the first field
5433 and start from there. */
5434 if (start
->offset
> offset
)
5435 start
= get_varinfo (start
->head
);
5437 /* We may not find a variable in the field list with the actual
5438 offset when we have glommed a structure to a variable.
5439 In that case, however, offset should still be within the size
5441 If we got beyond the offset we look for return the field
5442 directly preceding offset which may be the last field. */
5444 && offset
>= start
->offset
5445 && !((offset
- start
->offset
) < start
->size
))
5446 start
= vi_next (start
);
5452 /* This structure is used during pushing fields onto the fieldstack
5453 to track the offset of the field, since bitpos_of_field gives it
5454 relative to its immediate containing type, and we want it relative
5455 to the ultimate containing object. */
5459 /* Offset from the base of the base containing object to this field. */
5460 HOST_WIDE_INT offset
;
5462 /* Size, in bits, of the field. */
5463 unsigned HOST_WIDE_INT size
;
5465 unsigned has_unknown_size
: 1;
5467 unsigned must_have_pointers
: 1;
5469 unsigned may_have_pointers
: 1;
5471 unsigned only_restrict_pointers
: 1;
5473 tree restrict_pointed_type
;
5475 typedef struct fieldoff fieldoff_s
;
5478 /* qsort comparison function for two fieldoff's PA and PB */
5481 fieldoff_compare (const void *pa
, const void *pb
)
5483 const fieldoff_s
*foa
= (const fieldoff_s
*)pa
;
5484 const fieldoff_s
*fob
= (const fieldoff_s
*)pb
;
5485 unsigned HOST_WIDE_INT foasize
, fobsize
;
5487 if (foa
->offset
< fob
->offset
)
5489 else if (foa
->offset
> fob
->offset
)
5492 foasize
= foa
->size
;
5493 fobsize
= fob
->size
;
5494 if (foasize
< fobsize
)
5496 else if (foasize
> fobsize
)
5501 /* Sort a fieldstack according to the field offset and sizes. */
5503 sort_fieldstack (vec
<fieldoff_s
> fieldstack
)
5505 fieldstack
.qsort (fieldoff_compare
);
5508 /* Return true if T is a type that can have subvars. */
5511 type_can_have_subvars (const_tree t
)
5513 /* Aggregates without overlapping fields can have subvars. */
5514 return TREE_CODE (t
) == RECORD_TYPE
;
5517 /* Return true if V is a tree that we can have subvars for.
5518 Normally, this is any aggregate type. Also complex
5519 types which are not gimple registers can have subvars. */
5522 var_can_have_subvars (const_tree v
)
5524 /* Volatile variables should never have subvars. */
5525 if (TREE_THIS_VOLATILE (v
))
5528 /* Non decls or memory tags can never have subvars. */
5532 return type_can_have_subvars (TREE_TYPE (v
));
5535 /* Return true if T is a type that does contain pointers. */
5538 type_must_have_pointers (tree type
)
5540 if (POINTER_TYPE_P (type
))
5543 if (TREE_CODE (type
) == ARRAY_TYPE
)
5544 return type_must_have_pointers (TREE_TYPE (type
));
5546 /* A function or method can have pointers as arguments, so track
5547 those separately. */
5548 if (TREE_CODE (type
) == FUNCTION_TYPE
5549 || TREE_CODE (type
) == METHOD_TYPE
)
5556 field_must_have_pointers (tree t
)
5558 return type_must_have_pointers (TREE_TYPE (t
));
5561 /* Given a TYPE, and a vector of field offsets FIELDSTACK, push all
5562 the fields of TYPE onto fieldstack, recording their offsets along
5565 OFFSET is used to keep track of the offset in this entire
5566 structure, rather than just the immediately containing structure.
5567 Returns false if the caller is supposed to handle the field we
5571 push_fields_onto_fieldstack (tree type
, vec
<fieldoff_s
> *fieldstack
,
5572 HOST_WIDE_INT offset
)
5575 bool empty_p
= true;
5577 if (TREE_CODE (type
) != RECORD_TYPE
)
5580 /* If the vector of fields is growing too big, bail out early.
5581 Callers check for vec::length <= MAX_FIELDS_FOR_FIELD_SENSITIVE, make
5583 if (fieldstack
->length () > MAX_FIELDS_FOR_FIELD_SENSITIVE
)
5586 for (field
= TYPE_FIELDS (type
); field
; field
= DECL_CHAIN (field
))
5587 if (TREE_CODE (field
) == FIELD_DECL
)
5590 HOST_WIDE_INT foff
= bitpos_of_field (field
);
5591 tree field_type
= TREE_TYPE (field
);
5593 if (!var_can_have_subvars (field
)
5594 || TREE_CODE (field_type
) == QUAL_UNION_TYPE
5595 || TREE_CODE (field_type
) == UNION_TYPE
)
5597 else if (!push_fields_onto_fieldstack
5598 (field_type
, fieldstack
, offset
+ foff
)
5599 && (DECL_SIZE (field
)
5600 && !integer_zerop (DECL_SIZE (field
))))
5601 /* Empty structures may have actual size, like in C++. So
5602 see if we didn't push any subfields and the size is
5603 nonzero, push the field onto the stack. */
5608 fieldoff_s
*pair
= NULL
;
5609 bool has_unknown_size
= false;
5610 bool must_have_pointers_p
;
5612 if (!fieldstack
->is_empty ())
5613 pair
= &fieldstack
->last ();
5615 /* If there isn't anything at offset zero, create sth. */
5617 && offset
+ foff
!= 0)
5620 = {0, offset
+ foff
, false, false, true, false, NULL_TREE
};
5621 pair
= fieldstack
->safe_push (e
);
5624 if (!DECL_SIZE (field
)
5625 || !tree_fits_uhwi_p (DECL_SIZE (field
)))
5626 has_unknown_size
= true;
5628 /* If adjacent fields do not contain pointers merge them. */
5629 must_have_pointers_p
= field_must_have_pointers (field
);
5631 && !has_unknown_size
5632 && !must_have_pointers_p
5633 && !pair
->must_have_pointers
5634 && !pair
->has_unknown_size
5635 && pair
->offset
+ (HOST_WIDE_INT
)pair
->size
== offset
+ foff
)
5637 pair
->size
+= tree_to_uhwi (DECL_SIZE (field
));
5642 e
.offset
= offset
+ foff
;
5643 e
.has_unknown_size
= has_unknown_size
;
5644 if (!has_unknown_size
)
5645 e
.size
= tree_to_uhwi (DECL_SIZE (field
));
5648 e
.must_have_pointers
= must_have_pointers_p
;
5649 e
.may_have_pointers
= true;
5650 e
.only_restrict_pointers
5651 = (!has_unknown_size
5652 && POINTER_TYPE_P (field_type
)
5653 && TYPE_RESTRICT (field_type
));
5654 if (e
.only_restrict_pointers
)
5655 e
.restrict_pointed_type
= TREE_TYPE (field_type
);
5656 fieldstack
->safe_push (e
);
5666 /* Count the number of arguments DECL has, and set IS_VARARGS to true
5667 if it is a varargs function. */
5670 count_num_arguments (tree decl
, bool *is_varargs
)
5672 unsigned int num
= 0;
5675 /* Capture named arguments for K&R functions. They do not
5676 have a prototype and thus no TYPE_ARG_TYPES. */
5677 for (t
= DECL_ARGUMENTS (decl
); t
; t
= DECL_CHAIN (t
))
5680 /* Check if the function has variadic arguments. */
5681 for (t
= TYPE_ARG_TYPES (TREE_TYPE (decl
)); t
; t
= TREE_CHAIN (t
))
5682 if (TREE_VALUE (t
) == void_type_node
)
5690 /* Creation function node for DECL, using NAME, and return the index
5691 of the variable we've created for the function. If NONLOCAL_p, create
5692 initial constraints. */
5695 create_function_info_for (tree decl
, const char *name
, bool add_id
,
5698 struct function
*fn
= DECL_STRUCT_FUNCTION (decl
);
5699 varinfo_t vi
, prev_vi
;
5702 bool is_varargs
= false;
5703 unsigned int num_args
= count_num_arguments (decl
, &is_varargs
);
5705 /* Create the variable info. */
5707 vi
= new_var_info (decl
, name
, add_id
);
5710 vi
->fullsize
= fi_parm_base
+ num_args
;
5712 vi
->may_have_pointers
= false;
5715 insert_vi_for_tree (vi
->decl
, vi
);
5719 /* Create a variable for things the function clobbers and one for
5720 things the function uses. */
5722 varinfo_t clobbervi
, usevi
;
5723 const char *newname
;
5726 tempname
= xasprintf ("%s.clobber", name
);
5727 newname
= ggc_strdup (tempname
);
5730 clobbervi
= new_var_info (NULL
, newname
, false);
5731 clobbervi
->offset
= fi_clobbers
;
5732 clobbervi
->size
= 1;
5733 clobbervi
->fullsize
= vi
->fullsize
;
5734 clobbervi
->is_full_var
= true;
5735 clobbervi
->is_global_var
= false;
5736 clobbervi
->is_reg_var
= true;
5738 gcc_assert (prev_vi
->offset
< clobbervi
->offset
);
5739 prev_vi
->next
= clobbervi
->id
;
5740 prev_vi
= clobbervi
;
5742 tempname
= xasprintf ("%s.use", name
);
5743 newname
= ggc_strdup (tempname
);
5746 usevi
= new_var_info (NULL
, newname
, false);
5747 usevi
->offset
= fi_uses
;
5749 usevi
->fullsize
= vi
->fullsize
;
5750 usevi
->is_full_var
= true;
5751 usevi
->is_global_var
= false;
5752 usevi
->is_reg_var
= true;
5754 gcc_assert (prev_vi
->offset
< usevi
->offset
);
5755 prev_vi
->next
= usevi
->id
;
5759 /* And one for the static chain. */
5760 if (fn
->static_chain_decl
!= NULL_TREE
)
5763 const char *newname
;
5766 tempname
= xasprintf ("%s.chain", name
);
5767 newname
= ggc_strdup (tempname
);
5770 chainvi
= new_var_info (fn
->static_chain_decl
, newname
, false);
5771 chainvi
->offset
= fi_static_chain
;
5773 chainvi
->fullsize
= vi
->fullsize
;
5774 chainvi
->is_full_var
= true;
5775 chainvi
->is_global_var
= false;
5777 insert_vi_for_tree (fn
->static_chain_decl
, chainvi
);
5780 && chainvi
->may_have_pointers
)
5781 make_constraint_from (chainvi
, nonlocal_id
);
5783 gcc_assert (prev_vi
->offset
< chainvi
->offset
);
5784 prev_vi
->next
= chainvi
->id
;
5788 /* Create a variable for the return var. */
5789 if (DECL_RESULT (decl
) != NULL
5790 || !VOID_TYPE_P (TREE_TYPE (TREE_TYPE (decl
))))
5793 const char *newname
;
5795 tree resultdecl
= decl
;
5797 if (DECL_RESULT (decl
))
5798 resultdecl
= DECL_RESULT (decl
);
5800 tempname
= xasprintf ("%s.result", name
);
5801 newname
= ggc_strdup (tempname
);
5804 resultvi
= new_var_info (resultdecl
, newname
, false);
5805 resultvi
->offset
= fi_result
;
5807 resultvi
->fullsize
= vi
->fullsize
;
5808 resultvi
->is_full_var
= true;
5809 if (DECL_RESULT (decl
))
5810 resultvi
->may_have_pointers
= true;
5812 if (DECL_RESULT (decl
))
5813 insert_vi_for_tree (DECL_RESULT (decl
), resultvi
);
5816 && DECL_RESULT (decl
)
5817 && DECL_BY_REFERENCE (DECL_RESULT (decl
)))
5818 make_constraint_from (resultvi
, nonlocal_id
);
5820 gcc_assert (prev_vi
->offset
< resultvi
->offset
);
5821 prev_vi
->next
= resultvi
->id
;
5825 /* We also need to make function return values escape. Nothing
5826 escapes by returning from main though. */
5828 && !MAIN_NAME_P (DECL_NAME (decl
)))
5831 fi
= lookup_vi_for_tree (decl
);
5832 rvi
= first_vi_for_offset (fi
, fi_result
);
5833 if (rvi
&& rvi
->offset
== fi_result
)
5834 make_copy_constraint (get_varinfo (escaped_id
), rvi
->id
);
5837 /* Set up variables for each argument. */
5838 arg
= DECL_ARGUMENTS (decl
);
5839 for (i
= 0; i
< num_args
; i
++)
5842 const char *newname
;
5844 tree argdecl
= decl
;
5849 tempname
= xasprintf ("%s.arg%d", name
, i
);
5850 newname
= ggc_strdup (tempname
);
5853 argvi
= new_var_info (argdecl
, newname
, false);
5854 argvi
->offset
= fi_parm_base
+ i
;
5856 argvi
->is_full_var
= true;
5857 argvi
->fullsize
= vi
->fullsize
;
5859 argvi
->may_have_pointers
= true;
5862 insert_vi_for_tree (arg
, argvi
);
5865 && argvi
->may_have_pointers
)
5866 make_constraint_from (argvi
, nonlocal_id
);
5868 gcc_assert (prev_vi
->offset
< argvi
->offset
);
5869 prev_vi
->next
= argvi
->id
;
5872 arg
= DECL_CHAIN (arg
);
5875 /* Add one representative for all further args. */
5879 const char *newname
;
5883 tempname
= xasprintf ("%s.varargs", name
);
5884 newname
= ggc_strdup (tempname
);
5887 /* We need sth that can be pointed to for va_start. */
5888 decl
= build_fake_var_decl (ptr_type_node
);
5890 argvi
= new_var_info (decl
, newname
, false);
5891 argvi
->offset
= fi_parm_base
+ num_args
;
5893 argvi
->is_full_var
= true;
5894 argvi
->is_heap_var
= true;
5895 argvi
->fullsize
= vi
->fullsize
;
5898 && argvi
->may_have_pointers
)
5899 make_constraint_from (argvi
, nonlocal_id
);
5901 gcc_assert (prev_vi
->offset
< argvi
->offset
);
5902 prev_vi
->next
= argvi
->id
;
5910 /* Return true if FIELDSTACK contains fields that overlap.
5911 FIELDSTACK is assumed to be sorted by offset. */
5914 check_for_overlaps (vec
<fieldoff_s
> fieldstack
)
5916 fieldoff_s
*fo
= NULL
;
5918 HOST_WIDE_INT lastoffset
= -1;
5920 FOR_EACH_VEC_ELT (fieldstack
, i
, fo
)
5922 if (fo
->offset
== lastoffset
)
5924 lastoffset
= fo
->offset
;
5929 /* Create a varinfo structure for NAME and DECL, and add it to VARMAP.
5930 This will also create any varinfo structures necessary for fields
5931 of DECL. DECL is a function parameter if HANDLE_PARAM is set.
5932 HANDLED_STRUCT_TYPE is used to register struct types reached by following
5933 restrict pointers. This is needed to prevent infinite recursion. */
5936 create_variable_info_for_1 (tree decl
, const char *name
, bool add_id
,
5937 bool handle_param
, bitmap handled_struct_type
)
5939 varinfo_t vi
, newvi
;
5940 tree decl_type
= TREE_TYPE (decl
);
5941 tree declsize
= DECL_P (decl
) ? DECL_SIZE (decl
) : TYPE_SIZE (decl_type
);
5942 auto_vec
<fieldoff_s
> fieldstack
;
5947 || !tree_fits_uhwi_p (declsize
))
5949 vi
= new_var_info (decl
, name
, add_id
);
5953 vi
->is_unknown_size_var
= true;
5954 vi
->is_full_var
= true;
5955 vi
->may_have_pointers
= true;
5959 /* Collect field information. */
5960 if (use_field_sensitive
5961 && var_can_have_subvars (decl
)
5962 /* ??? Force us to not use subfields for globals in IPA mode.
5963 Else we'd have to parse arbitrary initializers. */
5965 && is_global_var (decl
)))
5967 fieldoff_s
*fo
= NULL
;
5968 bool notokay
= false;
5971 push_fields_onto_fieldstack (decl_type
, &fieldstack
, 0);
5973 for (i
= 0; !notokay
&& fieldstack
.iterate (i
, &fo
); i
++)
5974 if (fo
->has_unknown_size
5981 /* We can't sort them if we have a field with a variable sized type,
5982 which will make notokay = true. In that case, we are going to return
5983 without creating varinfos for the fields anyway, so sorting them is a
5987 sort_fieldstack (fieldstack
);
5988 /* Due to some C++ FE issues, like PR 22488, we might end up
5989 what appear to be overlapping fields even though they,
5990 in reality, do not overlap. Until the C++ FE is fixed,
5991 we will simply disable field-sensitivity for these cases. */
5992 notokay
= check_for_overlaps (fieldstack
);
5996 fieldstack
.release ();
5999 /* If we didn't end up collecting sub-variables create a full
6000 variable for the decl. */
6001 if (fieldstack
.length () == 0
6002 || fieldstack
.length () > MAX_FIELDS_FOR_FIELD_SENSITIVE
)
6004 vi
= new_var_info (decl
, name
, add_id
);
6006 vi
->may_have_pointers
= true;
6007 vi
->fullsize
= tree_to_uhwi (declsize
);
6008 vi
->size
= vi
->fullsize
;
6009 vi
->is_full_var
= true;
6010 if (POINTER_TYPE_P (decl_type
)
6011 && TYPE_RESTRICT (decl_type
))
6012 vi
->only_restrict_pointers
= 1;
6013 if (vi
->only_restrict_pointers
6014 && !type_contains_placeholder_p (TREE_TYPE (decl_type
))
6016 && !bitmap_bit_p (handled_struct_type
,
6017 TYPE_UID (TREE_TYPE (decl_type
))))
6020 tree heapvar
= build_fake_var_decl (TREE_TYPE (decl_type
));
6021 DECL_EXTERNAL (heapvar
) = 1;
6022 if (var_can_have_subvars (heapvar
))
6023 bitmap_set_bit (handled_struct_type
,
6024 TYPE_UID (TREE_TYPE (decl_type
)));
6025 rvi
= create_variable_info_for_1 (heapvar
, "PARM_NOALIAS", true,
6026 true, handled_struct_type
);
6027 if (var_can_have_subvars (heapvar
))
6028 bitmap_clear_bit (handled_struct_type
,
6029 TYPE_UID (TREE_TYPE (decl_type
)));
6030 rvi
->is_restrict_var
= 1;
6031 insert_vi_for_tree (heapvar
, rvi
);
6032 make_constraint_from (vi
, rvi
->id
);
6033 make_param_constraints (rvi
);
6035 fieldstack
.release ();
6039 vi
= new_var_info (decl
, name
, add_id
);
6040 vi
->fullsize
= tree_to_uhwi (declsize
);
6041 if (fieldstack
.length () == 1)
6042 vi
->is_full_var
= true;
6043 for (i
= 0, newvi
= vi
;
6044 fieldstack
.iterate (i
, &fo
);
6045 ++i
, newvi
= vi_next (newvi
))
6047 const char *newname
= NULL
;
6052 if (fieldstack
.length () != 1)
6055 = xasprintf ("%s." HOST_WIDE_INT_PRINT_DEC
6056 "+" HOST_WIDE_INT_PRINT_DEC
, name
,
6057 fo
->offset
, fo
->size
);
6058 newname
= ggc_strdup (tempname
);
6066 newvi
->name
= newname
;
6067 newvi
->offset
= fo
->offset
;
6068 newvi
->size
= fo
->size
;
6069 newvi
->fullsize
= vi
->fullsize
;
6070 newvi
->may_have_pointers
= fo
->may_have_pointers
;
6071 newvi
->only_restrict_pointers
= fo
->only_restrict_pointers
;
6073 && newvi
->only_restrict_pointers
6074 && !type_contains_placeholder_p (fo
->restrict_pointed_type
)
6075 && !bitmap_bit_p (handled_struct_type
,
6076 TYPE_UID (fo
->restrict_pointed_type
)))
6079 tree heapvar
= build_fake_var_decl (fo
->restrict_pointed_type
);
6080 DECL_EXTERNAL (heapvar
) = 1;
6081 if (var_can_have_subvars (heapvar
))
6082 bitmap_set_bit (handled_struct_type
,
6083 TYPE_UID (fo
->restrict_pointed_type
));
6084 rvi
= create_variable_info_for_1 (heapvar
, "PARM_NOALIAS", true,
6085 true, handled_struct_type
);
6086 if (var_can_have_subvars (heapvar
))
6087 bitmap_clear_bit (handled_struct_type
,
6088 TYPE_UID (fo
->restrict_pointed_type
));
6089 rvi
->is_restrict_var
= 1;
6090 insert_vi_for_tree (heapvar
, rvi
);
6091 make_constraint_from (newvi
, rvi
->id
);
6092 make_param_constraints (rvi
);
6094 if (i
+ 1 < fieldstack
.length ())
6096 varinfo_t tem
= new_var_info (decl
, name
, false);
6097 newvi
->next
= tem
->id
;
6106 create_variable_info_for (tree decl
, const char *name
, bool add_id
)
6108 varinfo_t vi
= create_variable_info_for_1 (decl
, name
, add_id
, false, NULL
);
6109 unsigned int id
= vi
->id
;
6111 insert_vi_for_tree (decl
, vi
);
6116 /* Create initial constraints for globals. */
6117 for (; vi
; vi
= vi_next (vi
))
6119 if (!vi
->may_have_pointers
6120 || !vi
->is_global_var
)
6123 /* Mark global restrict qualified pointers. */
6124 if ((POINTER_TYPE_P (TREE_TYPE (decl
))
6125 && TYPE_RESTRICT (TREE_TYPE (decl
)))
6126 || vi
->only_restrict_pointers
)
6129 = make_constraint_from_global_restrict (vi
, "GLOBAL_RESTRICT",
6131 /* ??? For now exclude reads from globals as restrict sources
6132 if those are not (indirectly) from incoming parameters. */
6133 rvi
->is_restrict_var
= false;
6137 /* In non-IPA mode the initializer from nonlocal is all we need. */
6139 || DECL_HARD_REGISTER (decl
))
6140 make_copy_constraint (vi
, nonlocal_id
);
6142 /* In IPA mode parse the initializer and generate proper constraints
6146 varpool_node
*vnode
= varpool_node::get (decl
);
6148 /* For escaped variables initialize them from nonlocal. */
6149 if (!vnode
->all_refs_explicit_p ())
6150 make_copy_constraint (vi
, nonlocal_id
);
6152 /* If this is a global variable with an initializer and we are in
6153 IPA mode generate constraints for it. */
6155 for (unsigned idx
= 0; vnode
->iterate_reference (idx
, ref
); ++idx
)
6157 auto_vec
<ce_s
> rhsc
;
6158 struct constraint_expr lhs
, *rhsp
;
6160 get_constraint_for_address_of (ref
->referred
->decl
, &rhsc
);
6164 FOR_EACH_VEC_ELT (rhsc
, i
, rhsp
)
6165 process_constraint (new_constraint (lhs
, *rhsp
));
6166 /* If this is a variable that escapes from the unit
6167 the initializer escapes as well. */
6168 if (!vnode
->all_refs_explicit_p ())
6170 lhs
.var
= escaped_id
;
6173 FOR_EACH_VEC_ELT (rhsc
, i
, rhsp
)
6174 process_constraint (new_constraint (lhs
, *rhsp
));
6183 /* Print out the points-to solution for VAR to FILE. */
6186 dump_solution_for_var (FILE *file
, unsigned int var
)
6188 varinfo_t vi
= get_varinfo (var
);
6192 /* Dump the solution for unified vars anyway, this avoids difficulties
6193 in scanning dumps in the testsuite. */
6194 fprintf (file
, "%s = { ", vi
->name
);
6195 vi
= get_varinfo (find (var
));
6196 EXECUTE_IF_SET_IN_BITMAP (vi
->solution
, 0, i
, bi
)
6197 fprintf (file
, "%s ", get_varinfo (i
)->name
);
6198 fprintf (file
, "}");
6200 /* But note when the variable was unified. */
6202 fprintf (file
, " same as %s", vi
->name
);
6204 fprintf (file
, "\n");
6207 /* Print the points-to solution for VAR to stderr. */
6210 debug_solution_for_var (unsigned int var
)
6212 dump_solution_for_var (stderr
, var
);
6215 /* Register the constraints for function parameter related VI. */
6218 make_param_constraints (varinfo_t vi
)
6220 for (; vi
; vi
= vi_next (vi
))
6222 if (vi
->only_restrict_pointers
)
6224 else if (vi
->may_have_pointers
)
6225 make_constraint_from (vi
, nonlocal_id
);
6227 if (vi
->is_full_var
)
6232 /* Create varinfo structures for all of the variables in the
6233 function for intraprocedural mode. */
6236 intra_create_variable_infos (struct function
*fn
)
6239 bitmap handled_struct_type
= NULL
;
6241 /* For each incoming pointer argument arg, create the constraint ARG
6242 = NONLOCAL or a dummy variable if it is a restrict qualified
6243 passed-by-reference argument. */
6244 for (t
= DECL_ARGUMENTS (fn
->decl
); t
; t
= DECL_CHAIN (t
))
6246 if (handled_struct_type
== NULL
)
6247 handled_struct_type
= BITMAP_ALLOC (NULL
);
6250 = create_variable_info_for_1 (t
, alias_get_name (t
), false, true,
6251 handled_struct_type
);
6252 insert_vi_for_tree (t
, p
);
6254 make_param_constraints (p
);
6257 if (handled_struct_type
!= NULL
)
6258 BITMAP_FREE (handled_struct_type
);
6260 /* Add a constraint for a result decl that is passed by reference. */
6261 if (DECL_RESULT (fn
->decl
)
6262 && DECL_BY_REFERENCE (DECL_RESULT (fn
->decl
)))
6264 varinfo_t p
, result_vi
= get_vi_for_tree (DECL_RESULT (fn
->decl
));
6266 for (p
= result_vi
; p
; p
= vi_next (p
))
6267 make_constraint_from (p
, nonlocal_id
);
6270 /* Add a constraint for the incoming static chain parameter. */
6271 if (fn
->static_chain_decl
!= NULL_TREE
)
6273 varinfo_t p
, chain_vi
= get_vi_for_tree (fn
->static_chain_decl
);
6275 for (p
= chain_vi
; p
; p
= vi_next (p
))
6276 make_constraint_from (p
, nonlocal_id
);
6280 /* Structure used to put solution bitmaps in a hashtable so they can
6281 be shared among variables with the same points-to set. */
6283 typedef struct shared_bitmap_info
6287 } *shared_bitmap_info_t
;
6288 typedef const struct shared_bitmap_info
*const_shared_bitmap_info_t
;
6290 /* Shared_bitmap hashtable helpers. */
6292 struct shared_bitmap_hasher
: free_ptr_hash
<shared_bitmap_info
>
6294 static inline hashval_t
hash (const shared_bitmap_info
*);
6295 static inline bool equal (const shared_bitmap_info
*,
6296 const shared_bitmap_info
*);
6299 /* Hash function for a shared_bitmap_info_t */
6302 shared_bitmap_hasher::hash (const shared_bitmap_info
*bi
)
6304 return bi
->hashcode
;
6307 /* Equality function for two shared_bitmap_info_t's. */
6310 shared_bitmap_hasher::equal (const shared_bitmap_info
*sbi1
,
6311 const shared_bitmap_info
*sbi2
)
6313 return bitmap_equal_p (sbi1
->pt_vars
, sbi2
->pt_vars
);
6316 /* Shared_bitmap hashtable. */
6318 static hash_table
<shared_bitmap_hasher
> *shared_bitmap_table
;
6320 /* Lookup a bitmap in the shared bitmap hashtable, and return an already
6321 existing instance if there is one, NULL otherwise. */
6324 shared_bitmap_lookup (bitmap pt_vars
)
6326 shared_bitmap_info
**slot
;
6327 struct shared_bitmap_info sbi
;
6329 sbi
.pt_vars
= pt_vars
;
6330 sbi
.hashcode
= bitmap_hash (pt_vars
);
6332 slot
= shared_bitmap_table
->find_slot (&sbi
, NO_INSERT
);
6336 return (*slot
)->pt_vars
;
6340 /* Add a bitmap to the shared bitmap hashtable. */
6343 shared_bitmap_add (bitmap pt_vars
)
6345 shared_bitmap_info
**slot
;
6346 shared_bitmap_info_t sbi
= XNEW (struct shared_bitmap_info
);
6348 sbi
->pt_vars
= pt_vars
;
6349 sbi
->hashcode
= bitmap_hash (pt_vars
);
6351 slot
= shared_bitmap_table
->find_slot (sbi
, INSERT
);
6352 gcc_assert (!*slot
);
6357 /* Set bits in INTO corresponding to the variable uids in solution set FROM. */
6360 set_uids_in_ptset (bitmap into
, bitmap from
, struct pt_solution
*pt
,
6365 varinfo_t escaped_vi
= get_varinfo (find (escaped_id
));
6366 bool everything_escaped
6367 = escaped_vi
->solution
&& bitmap_bit_p (escaped_vi
->solution
, anything_id
);
6369 EXECUTE_IF_SET_IN_BITMAP (from
, 0, i
, bi
)
6371 varinfo_t vi
= get_varinfo (i
);
6373 /* The only artificial variables that are allowed in a may-alias
6374 set are heap variables. */
6375 if (vi
->is_artificial_var
&& !vi
->is_heap_var
)
6378 if (everything_escaped
6379 || (escaped_vi
->solution
6380 && bitmap_bit_p (escaped_vi
->solution
, i
)))
6382 pt
->vars_contains_escaped
= true;
6383 pt
->vars_contains_escaped_heap
= vi
->is_heap_var
;
6386 if (vi
->is_restrict_var
)
6387 pt
->vars_contains_restrict
= true;
6389 if (VAR_P (vi
->decl
)
6390 || TREE_CODE (vi
->decl
) == PARM_DECL
6391 || TREE_CODE (vi
->decl
) == RESULT_DECL
)
6393 /* If we are in IPA mode we will not recompute points-to
6394 sets after inlining so make sure they stay valid. */
6396 && !DECL_PT_UID_SET_P (vi
->decl
))
6397 SET_DECL_PT_UID (vi
->decl
, DECL_UID (vi
->decl
));
6399 /* Add the decl to the points-to set. Note that the points-to
6400 set contains global variables. */
6401 bitmap_set_bit (into
, DECL_PT_UID (vi
->decl
));
6402 if (vi
->is_global_var
6403 /* In IPA mode the escaped_heap trick doesn't work as
6404 ESCAPED is escaped from the unit but
6405 pt_solution_includes_global needs to answer true for
6406 all variables not automatic within a function.
6407 For the same reason is_global_var is not the
6408 correct flag to track - local variables from other
6409 functions also need to be considered global.
6410 Conveniently all HEAP vars are not put in function
6414 && ! auto_var_in_fn_p (vi
->decl
, fndecl
)))
6415 pt
->vars_contains_nonlocal
= true;
6417 /* If we have a variable that is interposable record that fact
6418 for pointer comparison simplification. */
6419 if (VAR_P (vi
->decl
)
6420 && (TREE_STATIC (vi
->decl
) || DECL_EXTERNAL (vi
->decl
))
6421 && ! decl_binds_to_current_def_p (vi
->decl
))
6422 pt
->vars_contains_interposable
= true;
6425 else if (TREE_CODE (vi
->decl
) == FUNCTION_DECL
6426 || TREE_CODE (vi
->decl
) == LABEL_DECL
)
6428 /* Nothing should read/write from/to code so we can
6429 save bits by not including them in the points-to bitmaps.
6430 Still mark the points-to set as containing global memory
6431 to make code-patching possible - see PR70128. */
6432 pt
->vars_contains_nonlocal
= true;
6438 /* Compute the points-to solution *PT for the variable VI. */
6440 static struct pt_solution
6441 find_what_var_points_to (tree fndecl
, varinfo_t orig_vi
)
6445 bitmap finished_solution
;
6448 struct pt_solution
*pt
;
6450 /* This variable may have been collapsed, let's get the real
6452 vi
= get_varinfo (find (orig_vi
->id
));
6454 /* See if we have already computed the solution and return it. */
6455 pt_solution
**slot
= &final_solutions
->get_or_insert (vi
);
6459 *slot
= pt
= XOBNEW (&final_solutions_obstack
, struct pt_solution
);
6460 memset (pt
, 0, sizeof (struct pt_solution
));
6462 /* Translate artificial variables into SSA_NAME_PTR_INFO
6464 EXECUTE_IF_SET_IN_BITMAP (vi
->solution
, 0, i
, bi
)
6466 varinfo_t vi
= get_varinfo (i
);
6468 if (vi
->is_artificial_var
)
6470 if (vi
->id
== nothing_id
)
6472 else if (vi
->id
== escaped_id
)
6475 pt
->ipa_escaped
= 1;
6478 /* Expand some special vars of ESCAPED in-place here. */
6479 varinfo_t evi
= get_varinfo (find (escaped_id
));
6480 if (bitmap_bit_p (evi
->solution
, nonlocal_id
))
6483 else if (vi
->id
== nonlocal_id
)
6485 else if (vi
->is_heap_var
)
6486 /* We represent heapvars in the points-to set properly. */
6488 else if (vi
->id
== string_id
)
6489 /* Nobody cares - STRING_CSTs are read-only entities. */
6491 else if (vi
->id
== anything_id
6492 || vi
->id
== integer_id
)
6497 /* Instead of doing extra work, simply do not create
6498 elaborate points-to information for pt_anything pointers. */
6502 /* Share the final set of variables when possible. */
6503 finished_solution
= BITMAP_GGC_ALLOC ();
6504 stats
.points_to_sets_created
++;
6506 set_uids_in_ptset (finished_solution
, vi
->solution
, pt
, fndecl
);
6507 result
= shared_bitmap_lookup (finished_solution
);
6510 shared_bitmap_add (finished_solution
);
6511 pt
->vars
= finished_solution
;
6516 bitmap_clear (finished_solution
);
6522 /* Given a pointer variable P, fill in its points-to set. */
6525 find_what_p_points_to (tree fndecl
, tree p
)
6527 struct ptr_info_def
*pi
;
6530 bool nonnull
= get_ptr_nonnull (p
);
6532 /* For parameters, get at the points-to set for the actual parm
6534 if (TREE_CODE (p
) == SSA_NAME
6535 && SSA_NAME_IS_DEFAULT_DEF (p
)
6536 && (TREE_CODE (SSA_NAME_VAR (p
)) == PARM_DECL
6537 || TREE_CODE (SSA_NAME_VAR (p
)) == RESULT_DECL
))
6538 lookup_p
= SSA_NAME_VAR (p
);
6540 vi
= lookup_vi_for_tree (lookup_p
);
6544 pi
= get_ptr_info (p
);
6545 pi
->pt
= find_what_var_points_to (fndecl
, vi
);
6546 /* Conservatively set to NULL from PTA (to true). */
6548 /* Preserve pointer nonnull computed by VRP. See get_ptr_nonnull
6549 in gcc/tree-ssaname.c for more information. */
6551 set_ptr_nonnull (p
);
6555 /* Query statistics for points-to solutions. */
6558 unsigned HOST_WIDE_INT pt_solution_includes_may_alias
;
6559 unsigned HOST_WIDE_INT pt_solution_includes_no_alias
;
6560 unsigned HOST_WIDE_INT pt_solutions_intersect_may_alias
;
6561 unsigned HOST_WIDE_INT pt_solutions_intersect_no_alias
;
6565 dump_pta_stats (FILE *s
)
6567 fprintf (s
, "\nPTA query stats:\n");
6568 fprintf (s
, " pt_solution_includes: "
6569 HOST_WIDE_INT_PRINT_DEC
" disambiguations, "
6570 HOST_WIDE_INT_PRINT_DEC
" queries\n",
6571 pta_stats
.pt_solution_includes_no_alias
,
6572 pta_stats
.pt_solution_includes_no_alias
6573 + pta_stats
.pt_solution_includes_may_alias
);
6574 fprintf (s
, " pt_solutions_intersect: "
6575 HOST_WIDE_INT_PRINT_DEC
" disambiguations, "
6576 HOST_WIDE_INT_PRINT_DEC
" queries\n",
6577 pta_stats
.pt_solutions_intersect_no_alias
,
6578 pta_stats
.pt_solutions_intersect_no_alias
6579 + pta_stats
.pt_solutions_intersect_may_alias
);
6583 /* Reset the points-to solution *PT to a conservative default
6584 (point to anything). */
6587 pt_solution_reset (struct pt_solution
*pt
)
6589 memset (pt
, 0, sizeof (struct pt_solution
));
6590 pt
->anything
= true;
6594 /* Set the points-to solution *PT to point only to the variables
6595 in VARS. VARS_CONTAINS_GLOBAL specifies whether that contains
6596 global variables and VARS_CONTAINS_RESTRICT specifies whether
6597 it contains restrict tag variables. */
6600 pt_solution_set (struct pt_solution
*pt
, bitmap vars
,
6601 bool vars_contains_nonlocal
)
6603 memset (pt
, 0, sizeof (struct pt_solution
));
6605 pt
->vars_contains_nonlocal
= vars_contains_nonlocal
;
6606 pt
->vars_contains_escaped
6607 = (cfun
->gimple_df
->escaped
.anything
6608 || bitmap_intersect_p (cfun
->gimple_df
->escaped
.vars
, vars
));
6611 /* Set the points-to solution *PT to point only to the variable VAR. */
6614 pt_solution_set_var (struct pt_solution
*pt
, tree var
)
6616 memset (pt
, 0, sizeof (struct pt_solution
));
6617 pt
->vars
= BITMAP_GGC_ALLOC ();
6618 bitmap_set_bit (pt
->vars
, DECL_PT_UID (var
));
6619 pt
->vars_contains_nonlocal
= is_global_var (var
);
6620 pt
->vars_contains_escaped
6621 = (cfun
->gimple_df
->escaped
.anything
6622 || bitmap_bit_p (cfun
->gimple_df
->escaped
.vars
, DECL_PT_UID (var
)));
6625 /* Computes the union of the points-to solutions *DEST and *SRC and
6626 stores the result in *DEST. This changes the points-to bitmap
6627 of *DEST and thus may not be used if that might be shared.
6628 The points-to bitmap of *SRC and *DEST will not be shared after
6629 this function if they were not before. */
6632 pt_solution_ior_into (struct pt_solution
*dest
, struct pt_solution
*src
)
6634 dest
->anything
|= src
->anything
;
6637 pt_solution_reset (dest
);
6641 dest
->nonlocal
|= src
->nonlocal
;
6642 dest
->escaped
|= src
->escaped
;
6643 dest
->ipa_escaped
|= src
->ipa_escaped
;
6644 dest
->null
|= src
->null
;
6645 dest
->vars_contains_nonlocal
|= src
->vars_contains_nonlocal
;
6646 dest
->vars_contains_escaped
|= src
->vars_contains_escaped
;
6647 dest
->vars_contains_escaped_heap
|= src
->vars_contains_escaped_heap
;
6652 dest
->vars
= BITMAP_GGC_ALLOC ();
6653 bitmap_ior_into (dest
->vars
, src
->vars
);
6656 /* Return true if the points-to solution *PT is empty. */
6659 pt_solution_empty_p (struct pt_solution
*pt
)
6666 && !bitmap_empty_p (pt
->vars
))
6669 /* If the solution includes ESCAPED, check if that is empty. */
6671 && !pt_solution_empty_p (&cfun
->gimple_df
->escaped
))
6674 /* If the solution includes ESCAPED, check if that is empty. */
6676 && !pt_solution_empty_p (&ipa_escaped_pt
))
6682 /* Return true if the points-to solution *PT only point to a single var, and
6683 return the var uid in *UID. */
6686 pt_solution_singleton_or_null_p (struct pt_solution
*pt
, unsigned *uid
)
6688 if (pt
->anything
|| pt
->nonlocal
|| pt
->escaped
|| pt
->ipa_escaped
6690 || !bitmap_single_bit_set_p (pt
->vars
))
6693 *uid
= bitmap_first_set_bit (pt
->vars
);
6697 /* Return true if the points-to solution *PT includes global memory. */
6700 pt_solution_includes_global (struct pt_solution
*pt
)
6704 || pt
->vars_contains_nonlocal
6705 /* The following is a hack to make the malloc escape hack work.
6706 In reality we'd need different sets for escaped-through-return
6707 and escaped-to-callees and passes would need to be updated. */
6708 || pt
->vars_contains_escaped_heap
)
6711 /* 'escaped' is also a placeholder so we have to look into it. */
6713 return pt_solution_includes_global (&cfun
->gimple_df
->escaped
);
6715 if (pt
->ipa_escaped
)
6716 return pt_solution_includes_global (&ipa_escaped_pt
);
6721 /* Return true if the points-to solution *PT includes the variable
6722 declaration DECL. */
6725 pt_solution_includes_1 (struct pt_solution
*pt
, const_tree decl
)
6731 && is_global_var (decl
))
6735 && bitmap_bit_p (pt
->vars
, DECL_PT_UID (decl
)))
6738 /* If the solution includes ESCAPED, check it. */
6740 && pt_solution_includes_1 (&cfun
->gimple_df
->escaped
, decl
))
6743 /* If the solution includes ESCAPED, check it. */
6745 && pt_solution_includes_1 (&ipa_escaped_pt
, decl
))
6752 pt_solution_includes (struct pt_solution
*pt
, const_tree decl
)
6754 bool res
= pt_solution_includes_1 (pt
, decl
);
6756 ++pta_stats
.pt_solution_includes_may_alias
;
6758 ++pta_stats
.pt_solution_includes_no_alias
;
6762 /* Return true if both points-to solutions PT1 and PT2 have a non-empty
6766 pt_solutions_intersect_1 (struct pt_solution
*pt1
, struct pt_solution
*pt2
)
6768 if (pt1
->anything
|| pt2
->anything
)
6771 /* If either points to unknown global memory and the other points to
6772 any global memory they alias. */
6775 || pt2
->vars_contains_nonlocal
))
6777 && pt1
->vars_contains_nonlocal
))
6780 /* If either points to all escaped memory and the other points to
6781 any escaped memory they alias. */
6784 || pt2
->vars_contains_escaped
))
6786 && pt1
->vars_contains_escaped
))
6789 /* Check the escaped solution if required.
6790 ??? Do we need to check the local against the IPA escaped sets? */
6791 if ((pt1
->ipa_escaped
|| pt2
->ipa_escaped
)
6792 && !pt_solution_empty_p (&ipa_escaped_pt
))
6794 /* If both point to escaped memory and that solution
6795 is not empty they alias. */
6796 if (pt1
->ipa_escaped
&& pt2
->ipa_escaped
)
6799 /* If either points to escaped memory see if the escaped solution
6800 intersects with the other. */
6801 if ((pt1
->ipa_escaped
6802 && pt_solutions_intersect_1 (&ipa_escaped_pt
, pt2
))
6803 || (pt2
->ipa_escaped
6804 && pt_solutions_intersect_1 (&ipa_escaped_pt
, pt1
)))
6808 /* Now both pointers alias if their points-to solution intersects. */
6811 && bitmap_intersect_p (pt1
->vars
, pt2
->vars
));
6815 pt_solutions_intersect (struct pt_solution
*pt1
, struct pt_solution
*pt2
)
6817 bool res
= pt_solutions_intersect_1 (pt1
, pt2
);
6819 ++pta_stats
.pt_solutions_intersect_may_alias
;
6821 ++pta_stats
.pt_solutions_intersect_no_alias
;
6826 /* Dump points-to information to OUTFILE. */
6829 dump_sa_points_to_info (FILE *outfile
)
6833 fprintf (outfile
, "\nPoints-to sets\n\n");
6835 if (dump_flags
& TDF_STATS
)
6837 fprintf (outfile
, "Stats:\n");
6838 fprintf (outfile
, "Total vars: %d\n", stats
.total_vars
);
6839 fprintf (outfile
, "Non-pointer vars: %d\n",
6840 stats
.nonpointer_vars
);
6841 fprintf (outfile
, "Statically unified vars: %d\n",
6842 stats
.unified_vars_static
);
6843 fprintf (outfile
, "Dynamically unified vars: %d\n",
6844 stats
.unified_vars_dynamic
);
6845 fprintf (outfile
, "Iterations: %d\n", stats
.iterations
);
6846 fprintf (outfile
, "Number of edges: %d\n", stats
.num_edges
);
6847 fprintf (outfile
, "Number of implicit edges: %d\n",
6848 stats
.num_implicit_edges
);
6851 for (i
= 1; i
< varmap
.length (); i
++)
6853 varinfo_t vi
= get_varinfo (i
);
6854 if (!vi
->may_have_pointers
)
6856 dump_solution_for_var (outfile
, i
);
6861 /* Debug points-to information to stderr. */
6864 debug_sa_points_to_info (void)
6866 dump_sa_points_to_info (stderr
);
6870 /* Initialize the always-existing constraint variables for NULL
6871 ANYTHING, READONLY, and INTEGER */
6874 init_base_vars (void)
6876 struct constraint_expr lhs
, rhs
;
6877 varinfo_t var_anything
;
6878 varinfo_t var_nothing
;
6879 varinfo_t var_string
;
6880 varinfo_t var_escaped
;
6881 varinfo_t var_nonlocal
;
6882 varinfo_t var_storedanything
;
6883 varinfo_t var_integer
;
6885 /* Variable ID zero is reserved and should be NULL. */
6886 varmap
.safe_push (NULL
);
6888 /* Create the NULL variable, used to represent that a variable points
6890 var_nothing
= new_var_info (NULL_TREE
, "NULL", false);
6891 gcc_assert (var_nothing
->id
== nothing_id
);
6892 var_nothing
->is_artificial_var
= 1;
6893 var_nothing
->offset
= 0;
6894 var_nothing
->size
= ~0;
6895 var_nothing
->fullsize
= ~0;
6896 var_nothing
->is_special_var
= 1;
6897 var_nothing
->may_have_pointers
= 0;
6898 var_nothing
->is_global_var
= 0;
6900 /* Create the ANYTHING variable, used to represent that a variable
6901 points to some unknown piece of memory. */
6902 var_anything
= new_var_info (NULL_TREE
, "ANYTHING", false);
6903 gcc_assert (var_anything
->id
== anything_id
);
6904 var_anything
->is_artificial_var
= 1;
6905 var_anything
->size
= ~0;
6906 var_anything
->offset
= 0;
6907 var_anything
->fullsize
= ~0;
6908 var_anything
->is_special_var
= 1;
6910 /* Anything points to anything. This makes deref constraints just
6911 work in the presence of linked list and other p = *p type loops,
6912 by saying that *ANYTHING = ANYTHING. */
6914 lhs
.var
= anything_id
;
6916 rhs
.type
= ADDRESSOF
;
6917 rhs
.var
= anything_id
;
6920 /* This specifically does not use process_constraint because
6921 process_constraint ignores all anything = anything constraints, since all
6922 but this one are redundant. */
6923 constraints
.safe_push (new_constraint (lhs
, rhs
));
6925 /* Create the STRING variable, used to represent that a variable
6926 points to a string literal. String literals don't contain
6927 pointers so STRING doesn't point to anything. */
6928 var_string
= new_var_info (NULL_TREE
, "STRING", false);
6929 gcc_assert (var_string
->id
== string_id
);
6930 var_string
->is_artificial_var
= 1;
6931 var_string
->offset
= 0;
6932 var_string
->size
= ~0;
6933 var_string
->fullsize
= ~0;
6934 var_string
->is_special_var
= 1;
6935 var_string
->may_have_pointers
= 0;
6937 /* Create the ESCAPED variable, used to represent the set of escaped
6939 var_escaped
= new_var_info (NULL_TREE
, "ESCAPED", false);
6940 gcc_assert (var_escaped
->id
== escaped_id
);
6941 var_escaped
->is_artificial_var
= 1;
6942 var_escaped
->offset
= 0;
6943 var_escaped
->size
= ~0;
6944 var_escaped
->fullsize
= ~0;
6945 var_escaped
->is_special_var
= 0;
6947 /* Create the NONLOCAL variable, used to represent the set of nonlocal
6949 var_nonlocal
= new_var_info (NULL_TREE
, "NONLOCAL", false);
6950 gcc_assert (var_nonlocal
->id
== nonlocal_id
);
6951 var_nonlocal
->is_artificial_var
= 1;
6952 var_nonlocal
->offset
= 0;
6953 var_nonlocal
->size
= ~0;
6954 var_nonlocal
->fullsize
= ~0;
6955 var_nonlocal
->is_special_var
= 1;
6957 /* ESCAPED = *ESCAPED, because escaped is may-deref'd at calls, etc. */
6959 lhs
.var
= escaped_id
;
6962 rhs
.var
= escaped_id
;
6964 process_constraint (new_constraint (lhs
, rhs
));
6966 /* ESCAPED = ESCAPED + UNKNOWN_OFFSET, because if a sub-field escapes the
6967 whole variable escapes. */
6969 lhs
.var
= escaped_id
;
6972 rhs
.var
= escaped_id
;
6973 rhs
.offset
= UNKNOWN_OFFSET
;
6974 process_constraint (new_constraint (lhs
, rhs
));
6976 /* *ESCAPED = NONLOCAL. This is true because we have to assume
6977 everything pointed to by escaped points to what global memory can
6980 lhs
.var
= escaped_id
;
6983 rhs
.var
= nonlocal_id
;
6985 process_constraint (new_constraint (lhs
, rhs
));
6987 /* NONLOCAL = &NONLOCAL, NONLOCAL = &ESCAPED. This is true because
6988 global memory may point to global memory and escaped memory. */
6990 lhs
.var
= nonlocal_id
;
6992 rhs
.type
= ADDRESSOF
;
6993 rhs
.var
= nonlocal_id
;
6995 process_constraint (new_constraint (lhs
, rhs
));
6996 rhs
.type
= ADDRESSOF
;
6997 rhs
.var
= escaped_id
;
6999 process_constraint (new_constraint (lhs
, rhs
));
7001 /* Create the STOREDANYTHING variable, used to represent the set of
7002 variables stored to *ANYTHING. */
7003 var_storedanything
= new_var_info (NULL_TREE
, "STOREDANYTHING", false);
7004 gcc_assert (var_storedanything
->id
== storedanything_id
);
7005 var_storedanything
->is_artificial_var
= 1;
7006 var_storedanything
->offset
= 0;
7007 var_storedanything
->size
= ~0;
7008 var_storedanything
->fullsize
= ~0;
7009 var_storedanything
->is_special_var
= 0;
7011 /* Create the INTEGER variable, used to represent that a variable points
7012 to what an INTEGER "points to". */
7013 var_integer
= new_var_info (NULL_TREE
, "INTEGER", false);
7014 gcc_assert (var_integer
->id
== integer_id
);
7015 var_integer
->is_artificial_var
= 1;
7016 var_integer
->size
= ~0;
7017 var_integer
->fullsize
= ~0;
7018 var_integer
->offset
= 0;
7019 var_integer
->is_special_var
= 1;
7021 /* INTEGER = ANYTHING, because we don't know where a dereference of
7022 a random integer will point to. */
7024 lhs
.var
= integer_id
;
7026 rhs
.type
= ADDRESSOF
;
7027 rhs
.var
= anything_id
;
7029 process_constraint (new_constraint (lhs
, rhs
));
7032 /* Initialize things necessary to perform PTA */
7035 init_alias_vars (void)
7037 use_field_sensitive
= (MAX_FIELDS_FOR_FIELD_SENSITIVE
> 1);
7039 bitmap_obstack_initialize (&pta_obstack
);
7040 bitmap_obstack_initialize (&oldpta_obstack
);
7041 bitmap_obstack_initialize (&predbitmap_obstack
);
7043 constraints
.create (8);
7045 vi_for_tree
= new hash_map
<tree
, varinfo_t
>;
7046 call_stmt_vars
= new hash_map
<gimple
*, varinfo_t
>;
7048 memset (&stats
, 0, sizeof (stats
));
7049 shared_bitmap_table
= new hash_table
<shared_bitmap_hasher
> (511);
7052 gcc_obstack_init (&fake_var_decl_obstack
);
7054 final_solutions
= new hash_map
<varinfo_t
, pt_solution
*>;
7055 gcc_obstack_init (&final_solutions_obstack
);
7058 /* Remove the REF and ADDRESS edges from GRAPH, as well as all the
7059 predecessor edges. */
7062 remove_preds_and_fake_succs (constraint_graph_t graph
)
7066 /* Clear the implicit ref and address nodes from the successor
7068 for (i
= 1; i
< FIRST_REF_NODE
; i
++)
7070 if (graph
->succs
[i
])
7071 bitmap_clear_range (graph
->succs
[i
], FIRST_REF_NODE
,
7072 FIRST_REF_NODE
* 2);
7075 /* Free the successor list for the non-ref nodes. */
7076 for (i
= FIRST_REF_NODE
+ 1; i
< graph
->size
; i
++)
7078 if (graph
->succs
[i
])
7079 BITMAP_FREE (graph
->succs
[i
]);
7082 /* Now reallocate the size of the successor list as, and blow away
7083 the predecessor bitmaps. */
7084 graph
->size
= varmap
.length ();
7085 graph
->succs
= XRESIZEVEC (bitmap
, graph
->succs
, graph
->size
);
7087 free (graph
->implicit_preds
);
7088 graph
->implicit_preds
= NULL
;
7089 free (graph
->preds
);
7090 graph
->preds
= NULL
;
7091 bitmap_obstack_release (&predbitmap_obstack
);
7094 /* Solve the constraint set. */
7097 solve_constraints (void)
7099 struct scc_info
*si
;
7101 /* Sort varinfos so that ones that cannot be pointed to are last.
7102 This makes bitmaps more efficient. */
7103 unsigned int *map
= XNEWVEC (unsigned int, varmap
.length ());
7104 for (unsigned i
= 0; i
< integer_id
+ 1; ++i
)
7106 /* Start with non-register vars (as possibly address-taken), followed
7107 by register vars as conservative set of vars never appearing in
7108 the points-to solution bitmaps. */
7109 unsigned j
= integer_id
+ 1;
7110 for (unsigned i
= integer_id
+ 1; i
< varmap
.length (); ++i
)
7111 if (! varmap
[i
]->is_reg_var
)
7113 for (unsigned i
= integer_id
+ 1; i
< varmap
.length (); ++i
)
7114 if (varmap
[i
]->is_reg_var
)
7116 /* Shuffle varmap according to map. */
7117 for (unsigned i
= integer_id
+ 1; i
< varmap
.length (); ++i
)
7119 while (map
[varmap
[i
]->id
] != i
)
7120 std::swap (varmap
[i
], varmap
[map
[varmap
[i
]->id
]]);
7121 gcc_assert (bitmap_empty_p (varmap
[i
]->solution
));
7123 varmap
[i
]->next
= map
[varmap
[i
]->next
];
7124 varmap
[i
]->head
= map
[varmap
[i
]->head
];
7126 /* Finally rewrite constraints. */
7127 for (unsigned i
= 0; i
< constraints
.length (); ++i
)
7129 constraints
[i
]->lhs
.var
= map
[constraints
[i
]->lhs
.var
];
7130 constraints
[i
]->rhs
.var
= map
[constraints
[i
]->rhs
.var
];
7136 "\nCollapsing static cycles and doing variable "
7139 init_graph (varmap
.length () * 2);
7142 fprintf (dump_file
, "Building predecessor graph\n");
7143 build_pred_graph ();
7146 fprintf (dump_file
, "Detecting pointer and location "
7148 si
= perform_var_substitution (graph
);
7151 fprintf (dump_file
, "Rewriting constraints and unifying "
7153 rewrite_constraints (graph
, si
);
7155 build_succ_graph ();
7157 free_var_substitution_info (si
);
7159 /* Attach complex constraints to graph nodes. */
7160 move_complex_constraints (graph
);
7163 fprintf (dump_file
, "Uniting pointer but not location equivalent "
7165 unite_pointer_equivalences (graph
);
7168 fprintf (dump_file
, "Finding indirect cycles\n");
7169 find_indirect_cycles (graph
);
7171 /* Implicit nodes and predecessors are no longer necessary at this
7173 remove_preds_and_fake_succs (graph
);
7175 if (dump_file
&& (dump_flags
& TDF_GRAPH
))
7177 fprintf (dump_file
, "\n\n// The constraint graph before solve-graph "
7178 "in dot format:\n");
7179 dump_constraint_graph (dump_file
);
7180 fprintf (dump_file
, "\n\n");
7184 fprintf (dump_file
, "Solving graph\n");
7186 solve_graph (graph
);
7188 if (dump_file
&& (dump_flags
& TDF_GRAPH
))
7190 fprintf (dump_file
, "\n\n// The constraint graph after solve-graph "
7191 "in dot format:\n");
7192 dump_constraint_graph (dump_file
);
7193 fprintf (dump_file
, "\n\n");
7197 dump_sa_points_to_info (dump_file
);
7200 /* Create points-to sets for the current function. See the comments
7201 at the start of the file for an algorithmic overview. */
7204 compute_points_to_sets (void)
7209 timevar_push (TV_TREE_PTA
);
7213 intra_create_variable_infos (cfun
);
7215 /* Now walk all statements and build the constraint set. */
7216 FOR_EACH_BB_FN (bb
, cfun
)
7218 for (gphi_iterator gsi
= gsi_start_phis (bb
); !gsi_end_p (gsi
);
7221 gphi
*phi
= gsi
.phi ();
7223 if (! virtual_operand_p (gimple_phi_result (phi
)))
7224 find_func_aliases (cfun
, phi
);
7227 for (gimple_stmt_iterator gsi
= gsi_start_bb (bb
); !gsi_end_p (gsi
);
7230 gimple
*stmt
= gsi_stmt (gsi
);
7232 find_func_aliases (cfun
, stmt
);
7238 fprintf (dump_file
, "Points-to analysis\n\nConstraints:\n\n");
7239 dump_constraints (dump_file
, 0);
7242 /* From the constraints compute the points-to sets. */
7243 solve_constraints ();
7245 /* Compute the points-to set for ESCAPED used for call-clobber analysis. */
7246 cfun
->gimple_df
->escaped
= find_what_var_points_to (cfun
->decl
,
7247 get_varinfo (escaped_id
));
7249 /* Make sure the ESCAPED solution (which is used as placeholder in
7250 other solutions) does not reference itself. This simplifies
7251 points-to solution queries. */
7252 cfun
->gimple_df
->escaped
.escaped
= 0;
7254 /* Compute the points-to sets for pointer SSA_NAMEs. */
7258 FOR_EACH_SSA_NAME (i
, ptr
, cfun
)
7260 if (POINTER_TYPE_P (TREE_TYPE (ptr
)))
7261 find_what_p_points_to (cfun
->decl
, ptr
);
7264 /* Compute the call-used/clobbered sets. */
7265 FOR_EACH_BB_FN (bb
, cfun
)
7267 gimple_stmt_iterator gsi
;
7269 for (gsi
= gsi_start_bb (bb
); !gsi_end_p (gsi
); gsi_next (&gsi
))
7272 struct pt_solution
*pt
;
7274 stmt
= dyn_cast
<gcall
*> (gsi_stmt (gsi
));
7278 pt
= gimple_call_use_set (stmt
);
7279 if (gimple_call_flags (stmt
) & ECF_CONST
)
7280 memset (pt
, 0, sizeof (struct pt_solution
));
7281 else if ((vi
= lookup_call_use_vi (stmt
)) != NULL
)
7283 *pt
= find_what_var_points_to (cfun
->decl
, vi
);
7284 /* Escaped (and thus nonlocal) variables are always
7285 implicitly used by calls. */
7286 /* ??? ESCAPED can be empty even though NONLOCAL
7293 /* If there is nothing special about this call then
7294 we have made everything that is used also escape. */
7295 *pt
= cfun
->gimple_df
->escaped
;
7299 pt
= gimple_call_clobber_set (stmt
);
7300 if (gimple_call_flags (stmt
) & (ECF_CONST
|ECF_PURE
|ECF_NOVOPS
))
7301 memset (pt
, 0, sizeof (struct pt_solution
));
7302 else if ((vi
= lookup_call_clobber_vi (stmt
)) != NULL
)
7304 *pt
= find_what_var_points_to (cfun
->decl
, vi
);
7305 /* Escaped (and thus nonlocal) variables are always
7306 implicitly clobbered by calls. */
7307 /* ??? ESCAPED can be empty even though NONLOCAL
7314 /* If there is nothing special about this call then
7315 we have made everything that is used also escape. */
7316 *pt
= cfun
->gimple_df
->escaped
;
7322 timevar_pop (TV_TREE_PTA
);
7326 /* Delete created points-to sets. */
7329 delete_points_to_sets (void)
7333 delete shared_bitmap_table
;
7334 shared_bitmap_table
= NULL
;
7335 if (dump_file
&& (dump_flags
& TDF_STATS
))
7336 fprintf (dump_file
, "Points to sets created:%d\n",
7337 stats
.points_to_sets_created
);
7340 delete call_stmt_vars
;
7341 bitmap_obstack_release (&pta_obstack
);
7342 constraints
.release ();
7344 for (i
= 0; i
< graph
->size
; i
++)
7345 graph
->complex[i
].release ();
7346 free (graph
->complex);
7349 free (graph
->succs
);
7351 free (graph
->pe_rep
);
7352 free (graph
->indirect_cycles
);
7356 variable_info_pool
.release ();
7357 constraint_pool
.release ();
7359 obstack_free (&fake_var_decl_obstack
, NULL
);
7361 delete final_solutions
;
7362 obstack_free (&final_solutions_obstack
, NULL
);
7367 unsigned short clique
;
7371 /* Mark "other" loads and stores as belonging to CLIQUE and with
7375 visit_loadstore (gimple
*, tree base
, tree ref
, void *data
)
7377 unsigned short clique
= ((vls_data
*) data
)->clique
;
7378 bitmap rvars
= ((vls_data
*) data
)->rvars
;
7379 if (TREE_CODE (base
) == MEM_REF
7380 || TREE_CODE (base
) == TARGET_MEM_REF
)
7382 tree ptr
= TREE_OPERAND (base
, 0);
7383 if (TREE_CODE (ptr
) == SSA_NAME
)
7385 /* For parameters, get at the points-to set for the actual parm
7387 if (SSA_NAME_IS_DEFAULT_DEF (ptr
)
7388 && (TREE_CODE (SSA_NAME_VAR (ptr
)) == PARM_DECL
7389 || TREE_CODE (SSA_NAME_VAR (ptr
)) == RESULT_DECL
))
7390 ptr
= SSA_NAME_VAR (ptr
);
7392 /* We need to make sure 'ptr' doesn't include any of
7393 the restrict tags we added bases for in its points-to set. */
7394 varinfo_t vi
= lookup_vi_for_tree (ptr
);
7398 vi
= get_varinfo (find (vi
->id
));
7399 if (bitmap_intersect_p (rvars
, vi
->solution
))
7403 /* Do not overwrite existing cliques (that includes clique, base
7404 pairs we just set). */
7405 if (MR_DEPENDENCE_CLIQUE (base
) == 0)
7407 MR_DEPENDENCE_CLIQUE (base
) = clique
;
7408 MR_DEPENDENCE_BASE (base
) = 0;
7412 /* For plain decl accesses see whether they are accesses to globals
7413 and rewrite them to MEM_REFs with { clique, 0 }. */
7415 && is_global_var (base
)
7416 /* ??? We can't rewrite a plain decl with the walk_stmt_load_store
7421 while (handled_component_p (*basep
))
7422 basep
= &TREE_OPERAND (*basep
, 0);
7423 gcc_assert (VAR_P (*basep
));
7424 tree ptr
= build_fold_addr_expr (*basep
);
7425 tree zero
= build_int_cst (TREE_TYPE (ptr
), 0);
7426 *basep
= build2 (MEM_REF
, TREE_TYPE (*basep
), ptr
, zero
);
7427 MR_DEPENDENCE_CLIQUE (*basep
) = clique
;
7428 MR_DEPENDENCE_BASE (*basep
) = 0;
7434 /* If REF is a MEM_REF then assign a clique, base pair to it, updating
7435 CLIQUE, *RESTRICT_VAR and LAST_RUID. Return whether dependence info
7436 was assigned to REF. */
7439 maybe_set_dependence_info (tree ref
, tree ptr
,
7440 unsigned short &clique
, varinfo_t restrict_var
,
7441 unsigned short &last_ruid
)
7443 while (handled_component_p (ref
))
7444 ref
= TREE_OPERAND (ref
, 0);
7445 if ((TREE_CODE (ref
) == MEM_REF
7446 || TREE_CODE (ref
) == TARGET_MEM_REF
)
7447 && TREE_OPERAND (ref
, 0) == ptr
)
7449 /* Do not overwrite existing cliques. This avoids overwriting dependence
7450 info inlined from a function with restrict parameters inlined
7451 into a function with restrict parameters. This usually means we
7452 prefer to be precise in innermost loops. */
7453 if (MR_DEPENDENCE_CLIQUE (ref
) == 0)
7456 clique
= ++cfun
->last_clique
;
7457 if (restrict_var
->ruid
== 0)
7458 restrict_var
->ruid
= ++last_ruid
;
7459 MR_DEPENDENCE_CLIQUE (ref
) = clique
;
7460 MR_DEPENDENCE_BASE (ref
) = restrict_var
->ruid
;
7467 /* Compute the set of independend memory references based on restrict
7468 tags and their conservative propagation to the points-to sets. */
7471 compute_dependence_clique (void)
7473 unsigned short clique
= 0;
7474 unsigned short last_ruid
= 0;
7475 bitmap rvars
= BITMAP_ALLOC (NULL
);
7476 for (unsigned i
= 0; i
< num_ssa_names
; ++i
)
7478 tree ptr
= ssa_name (i
);
7479 if (!ptr
|| !POINTER_TYPE_P (TREE_TYPE (ptr
)))
7482 /* Avoid all this when ptr is not dereferenced? */
7484 if (SSA_NAME_IS_DEFAULT_DEF (ptr
)
7485 && (TREE_CODE (SSA_NAME_VAR (ptr
)) == PARM_DECL
7486 || TREE_CODE (SSA_NAME_VAR (ptr
)) == RESULT_DECL
))
7487 p
= SSA_NAME_VAR (ptr
);
7488 varinfo_t vi
= lookup_vi_for_tree (p
);
7491 vi
= get_varinfo (find (vi
->id
));
7494 varinfo_t restrict_var
= NULL
;
7495 EXECUTE_IF_SET_IN_BITMAP (vi
->solution
, 0, j
, bi
)
7497 varinfo_t oi
= get_varinfo (j
);
7498 if (oi
->is_restrict_var
)
7502 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
7504 fprintf (dump_file
, "found restrict pointed-to "
7506 print_generic_expr (dump_file
, ptr
);
7507 fprintf (dump_file
, " but not exclusively\n");
7509 restrict_var
= NULL
;
7514 /* NULL is the only other valid points-to entry. */
7515 else if (oi
->id
!= nothing_id
)
7517 restrict_var
= NULL
;
7521 /* Ok, found that ptr must(!) point to a single(!) restrict
7523 /* ??? PTA isn't really a proper propagation engine to compute
7525 ??? We could handle merging of two restricts by unifying them. */
7528 /* Now look at possible dereferences of ptr. */
7529 imm_use_iterator ui
;
7532 FOR_EACH_IMM_USE_STMT (use_stmt
, ui
, ptr
)
7534 /* ??? Calls and asms. */
7535 if (!gimple_assign_single_p (use_stmt
))
7537 used
|= maybe_set_dependence_info (gimple_assign_lhs (use_stmt
),
7538 ptr
, clique
, restrict_var
,
7540 used
|= maybe_set_dependence_info (gimple_assign_rhs1 (use_stmt
),
7541 ptr
, clique
, restrict_var
,
7545 bitmap_set_bit (rvars
, restrict_var
->id
);
7551 /* Assign the BASE id zero to all accesses not based on a restrict
7552 pointer. That way they get disambiguated against restrict
7553 accesses but not against each other. */
7554 /* ??? For restricts derived from globals (thus not incoming
7555 parameters) we can't restrict scoping properly thus the following
7556 is too aggressive there. For now we have excluded those globals from
7557 getting into the MR_DEPENDENCE machinery. */
7558 vls_data data
= { clique
, rvars
};
7560 FOR_EACH_BB_FN (bb
, cfun
)
7561 for (gimple_stmt_iterator gsi
= gsi_start_bb (bb
);
7562 !gsi_end_p (gsi
); gsi_next (&gsi
))
7564 gimple
*stmt
= gsi_stmt (gsi
);
7565 walk_stmt_load_store_ops (stmt
, &data
,
7566 visit_loadstore
, visit_loadstore
);
7570 BITMAP_FREE (rvars
);
7573 /* Compute points-to information for every SSA_NAME pointer in the
7574 current function and compute the transitive closure of escaped
7575 variables to re-initialize the call-clobber states of local variables. */
7578 compute_may_aliases (void)
7580 if (cfun
->gimple_df
->ipa_pta
)
7584 fprintf (dump_file
, "\nNot re-computing points-to information "
7585 "because IPA points-to information is available.\n\n");
7587 /* But still dump what we have remaining it. */
7588 dump_alias_info (dump_file
);
7594 /* For each pointer P_i, determine the sets of variables that P_i may
7595 point-to. Compute the reachability set of escaped and call-used
7597 compute_points_to_sets ();
7599 /* Debugging dumps. */
7601 dump_alias_info (dump_file
);
7603 /* Compute restrict-based memory disambiguations. */
7604 compute_dependence_clique ();
7606 /* Deallocate memory used by aliasing data structures and the internal
7607 points-to solution. */
7608 delete_points_to_sets ();
7610 gcc_assert (!need_ssa_update_p (cfun
));
7615 /* A dummy pass to cause points-to information to be computed via
7616 TODO_rebuild_alias. */
7620 const pass_data pass_data_build_alias
=
7622 GIMPLE_PASS
, /* type */
7624 OPTGROUP_NONE
, /* optinfo_flags */
7625 TV_NONE
, /* tv_id */
7626 ( PROP_cfg
| PROP_ssa
), /* properties_required */
7627 0, /* properties_provided */
7628 0, /* properties_destroyed */
7629 0, /* todo_flags_start */
7630 TODO_rebuild_alias
, /* todo_flags_finish */
7633 class pass_build_alias
: public gimple_opt_pass
7636 pass_build_alias (gcc::context
*ctxt
)
7637 : gimple_opt_pass (pass_data_build_alias
, ctxt
)
7640 /* opt_pass methods: */
7641 virtual bool gate (function
*) { return flag_tree_pta
; }
7643 }; // class pass_build_alias
7648 make_pass_build_alias (gcc::context
*ctxt
)
7650 return new pass_build_alias (ctxt
);
7653 /* A dummy pass to cause points-to information to be computed via
7654 TODO_rebuild_alias. */
7658 const pass_data pass_data_build_ealias
=
7660 GIMPLE_PASS
, /* type */
7661 "ealias", /* name */
7662 OPTGROUP_NONE
, /* optinfo_flags */
7663 TV_NONE
, /* tv_id */
7664 ( PROP_cfg
| PROP_ssa
), /* properties_required */
7665 0, /* properties_provided */
7666 0, /* properties_destroyed */
7667 0, /* todo_flags_start */
7668 TODO_rebuild_alias
, /* todo_flags_finish */
7671 class pass_build_ealias
: public gimple_opt_pass
7674 pass_build_ealias (gcc::context
*ctxt
)
7675 : gimple_opt_pass (pass_data_build_ealias
, ctxt
)
7678 /* opt_pass methods: */
7679 virtual bool gate (function
*) { return flag_tree_pta
; }
7681 }; // class pass_build_ealias
7686 make_pass_build_ealias (gcc::context
*ctxt
)
7688 return new pass_build_ealias (ctxt
);
7692 /* IPA PTA solutions for ESCAPED. */
7693 struct pt_solution ipa_escaped_pt
7694 = { true, false, false, false, false,
7695 false, false, false, false, false, NULL
};
7697 /* Associate node with varinfo DATA. Worker for
7698 cgraph_for_symbol_thunks_and_aliases. */
7700 associate_varinfo_to_alias (struct cgraph_node
*node
, void *data
)
7703 || (node
->thunk
.thunk_p
7704 && ! node
->global
.inlined_to
))
7706 insert_vi_for_tree (node
->decl
, (varinfo_t
)data
);
7710 /* Dump varinfo VI to FILE. */
7713 dump_varinfo (FILE *file
, varinfo_t vi
)
7718 fprintf (file
, "%u: %s\n", vi
->id
, vi
->name
);
7720 const char *sep
= " ";
7721 if (vi
->is_artificial_var
)
7722 fprintf (file
, "%sartificial", sep
);
7723 if (vi
->is_special_var
)
7724 fprintf (file
, "%sspecial", sep
);
7725 if (vi
->is_unknown_size_var
)
7726 fprintf (file
, "%sunknown-size", sep
);
7727 if (vi
->is_full_var
)
7728 fprintf (file
, "%sfull", sep
);
7729 if (vi
->is_heap_var
)
7730 fprintf (file
, "%sheap", sep
);
7731 if (vi
->may_have_pointers
)
7732 fprintf (file
, "%smay-have-pointers", sep
);
7733 if (vi
->only_restrict_pointers
)
7734 fprintf (file
, "%sonly-restrict-pointers", sep
);
7735 if (vi
->is_restrict_var
)
7736 fprintf (file
, "%sis-restrict-var", sep
);
7737 if (vi
->is_global_var
)
7738 fprintf (file
, "%sglobal", sep
);
7739 if (vi
->is_ipa_escape_point
)
7740 fprintf (file
, "%sipa-escape-point", sep
);
7742 fprintf (file
, "%sfn-info", sep
);
7744 fprintf (file
, "%srestrict-uid:%u", sep
, vi
->ruid
);
7746 fprintf (file
, "%snext:%u", sep
, vi
->next
);
7747 if (vi
->head
!= vi
->id
)
7748 fprintf (file
, "%shead:%u", sep
, vi
->head
);
7750 fprintf (file
, "%soffset:" HOST_WIDE_INT_PRINT_DEC
, sep
, vi
->offset
);
7751 if (vi
->size
!= ~(unsigned HOST_WIDE_INT
)0)
7752 fprintf (file
, "%ssize:" HOST_WIDE_INT_PRINT_DEC
, sep
, vi
->size
);
7753 if (vi
->fullsize
!= ~(unsigned HOST_WIDE_INT
)0
7754 && vi
->fullsize
!= vi
->size
)
7755 fprintf (file
, "%sfullsize:" HOST_WIDE_INT_PRINT_DEC
, sep
,
7757 fprintf (file
, "\n");
7759 if (vi
->solution
&& !bitmap_empty_p (vi
->solution
))
7763 fprintf (file
, " solution: {");
7764 EXECUTE_IF_SET_IN_BITMAP (vi
->solution
, 0, i
, bi
)
7765 fprintf (file
, " %u", i
);
7766 fprintf (file
, " }\n");
7769 if (vi
->oldsolution
&& !bitmap_empty_p (vi
->oldsolution
)
7770 && !bitmap_equal_p (vi
->solution
, vi
->oldsolution
))
7774 fprintf (file
, " oldsolution: {");
7775 EXECUTE_IF_SET_IN_BITMAP (vi
->oldsolution
, 0, i
, bi
)
7776 fprintf (file
, " %u", i
);
7777 fprintf (file
, " }\n");
7781 /* Dump varinfo VI to stderr. */
7784 debug_varinfo (varinfo_t vi
)
7786 dump_varinfo (stderr
, vi
);
7789 /* Dump varmap to FILE. */
7792 dump_varmap (FILE *file
)
7794 if (varmap
.length () == 0)
7797 fprintf (file
, "variables:\n");
7799 for (unsigned int i
= 0; i
< varmap
.length (); ++i
)
7801 varinfo_t vi
= get_varinfo (i
);
7802 dump_varinfo (file
, vi
);
7805 fprintf (file
, "\n");
7808 /* Dump varmap to stderr. */
7813 dump_varmap (stderr
);
7816 /* Compute whether node is refered to non-locally. Worker for
7817 cgraph_for_symbol_thunks_and_aliases. */
7819 refered_from_nonlocal_fn (struct cgraph_node
*node
, void *data
)
7821 bool *nonlocal_p
= (bool *)data
;
7822 *nonlocal_p
|= (node
->used_from_other_partition
7823 || node
->externally_visible
7824 || node
->force_output
7825 || lookup_attribute ("noipa", DECL_ATTRIBUTES (node
->decl
)));
7829 /* Same for varpool nodes. */
7831 refered_from_nonlocal_var (struct varpool_node
*node
, void *data
)
7833 bool *nonlocal_p
= (bool *)data
;
7834 *nonlocal_p
|= (node
->used_from_other_partition
7835 || node
->externally_visible
7836 || node
->force_output
);
7840 /* Execute the driver for IPA PTA. */
7842 ipa_pta_execute (void)
7844 struct cgraph_node
*node
;
7846 unsigned int from
= 0;
7852 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
7854 symtab
->dump (dump_file
);
7855 fprintf (dump_file
, "\n");
7860 fprintf (dump_file
, "Generating generic constraints\n\n");
7861 dump_constraints (dump_file
, from
);
7862 fprintf (dump_file
, "\n");
7863 from
= constraints
.length ();
7866 /* Build the constraints. */
7867 FOR_EACH_DEFINED_FUNCTION (node
)
7870 /* Nodes without a body are not interesting. Especially do not
7871 visit clones at this point for now - we get duplicate decls
7872 there for inline clones at least. */
7873 if (!node
->has_gimple_body_p () || node
->global
.inlined_to
)
7877 gcc_assert (!node
->clone_of
);
7879 /* For externally visible or attribute used annotated functions use
7880 local constraints for their arguments.
7881 For local functions we see all callers and thus do not need initial
7882 constraints for parameters. */
7883 bool nonlocal_p
= (node
->used_from_other_partition
7884 || node
->externally_visible
7885 || node
->force_output
7886 || lookup_attribute ("noipa",
7887 DECL_ATTRIBUTES (node
->decl
)));
7888 node
->call_for_symbol_thunks_and_aliases (refered_from_nonlocal_fn
,
7891 vi
= create_function_info_for (node
->decl
,
7892 alias_get_name (node
->decl
), false,
7895 && from
!= constraints
.length ())
7898 "Generating intial constraints for %s", node
->name ());
7899 if (DECL_ASSEMBLER_NAME_SET_P (node
->decl
))
7900 fprintf (dump_file
, " (%s)",
7902 (DECL_ASSEMBLER_NAME (node
->decl
)));
7903 fprintf (dump_file
, "\n\n");
7904 dump_constraints (dump_file
, from
);
7905 fprintf (dump_file
, "\n");
7907 from
= constraints
.length ();
7910 node
->call_for_symbol_thunks_and_aliases
7911 (associate_varinfo_to_alias
, vi
, true);
7914 /* Create constraints for global variables and their initializers. */
7915 FOR_EACH_VARIABLE (var
)
7917 if (var
->alias
&& var
->analyzed
)
7920 varinfo_t vi
= get_vi_for_tree (var
->decl
);
7922 /* For the purpose of IPA PTA unit-local globals are not
7924 bool nonlocal_p
= (var
->used_from_other_partition
7925 || var
->externally_visible
7926 || var
->force_output
);
7927 var
->call_for_symbol_and_aliases (refered_from_nonlocal_var
,
7930 vi
->is_ipa_escape_point
= true;
7934 && from
!= constraints
.length ())
7937 "Generating constraints for global initializers\n\n");
7938 dump_constraints (dump_file
, from
);
7939 fprintf (dump_file
, "\n");
7940 from
= constraints
.length ();
7943 FOR_EACH_DEFINED_FUNCTION (node
)
7945 struct function
*func
;
7948 /* Nodes without a body are not interesting. */
7949 if (!node
->has_gimple_body_p () || node
->clone_of
)
7955 "Generating constraints for %s", node
->name ());
7956 if (DECL_ASSEMBLER_NAME_SET_P (node
->decl
))
7957 fprintf (dump_file
, " (%s)",
7959 (DECL_ASSEMBLER_NAME (node
->decl
)));
7960 fprintf (dump_file
, "\n");
7963 func
= DECL_STRUCT_FUNCTION (node
->decl
);
7964 gcc_assert (cfun
== NULL
);
7966 /* Build constriants for the function body. */
7967 FOR_EACH_BB_FN (bb
, func
)
7969 for (gphi_iterator gsi
= gsi_start_phis (bb
); !gsi_end_p (gsi
);
7972 gphi
*phi
= gsi
.phi ();
7974 if (! virtual_operand_p (gimple_phi_result (phi
)))
7975 find_func_aliases (func
, phi
);
7978 for (gimple_stmt_iterator gsi
= gsi_start_bb (bb
); !gsi_end_p (gsi
);
7981 gimple
*stmt
= gsi_stmt (gsi
);
7983 find_func_aliases (func
, stmt
);
7984 find_func_clobbers (func
, stmt
);
7990 fprintf (dump_file
, "\n");
7991 dump_constraints (dump_file
, from
);
7992 fprintf (dump_file
, "\n");
7993 from
= constraints
.length ();
7997 /* From the constraints compute the points-to sets. */
7998 solve_constraints ();
8000 /* Compute the global points-to sets for ESCAPED.
8001 ??? Note that the computed escape set is not correct
8002 for the whole unit as we fail to consider graph edges to
8003 externally visible functions. */
8004 ipa_escaped_pt
= find_what_var_points_to (NULL
, get_varinfo (escaped_id
));
8006 /* Make sure the ESCAPED solution (which is used as placeholder in
8007 other solutions) does not reference itself. This simplifies
8008 points-to solution queries. */
8009 ipa_escaped_pt
.ipa_escaped
= 0;
8011 /* Assign the points-to sets to the SSA names in the unit. */
8012 FOR_EACH_DEFINED_FUNCTION (node
)
8015 struct function
*fn
;
8019 /* Nodes without a body are not interesting. */
8020 if (!node
->has_gimple_body_p () || node
->clone_of
)
8023 fn
= DECL_STRUCT_FUNCTION (node
->decl
);
8025 /* Compute the points-to sets for pointer SSA_NAMEs. */
8026 FOR_EACH_VEC_ELT (*fn
->gimple_df
->ssa_names
, i
, ptr
)
8029 && POINTER_TYPE_P (TREE_TYPE (ptr
)))
8030 find_what_p_points_to (node
->decl
, ptr
);
8033 /* Compute the call-use and call-clobber sets for indirect calls
8034 and calls to external functions. */
8035 FOR_EACH_BB_FN (bb
, fn
)
8037 gimple_stmt_iterator gsi
;
8039 for (gsi
= gsi_start_bb (bb
); !gsi_end_p (gsi
); gsi_next (&gsi
))
8042 struct pt_solution
*pt
;
8046 stmt
= dyn_cast
<gcall
*> (gsi_stmt (gsi
));
8050 /* Handle direct calls to functions with body. */
8051 decl
= gimple_call_fndecl (stmt
);
8054 tree called_decl
= NULL_TREE
;
8055 if (gimple_call_builtin_p (stmt
, BUILT_IN_GOMP_PARALLEL
))
8056 called_decl
= TREE_OPERAND (gimple_call_arg (stmt
, 0), 0);
8057 else if (gimple_call_builtin_p (stmt
, BUILT_IN_GOACC_PARALLEL
))
8058 called_decl
= TREE_OPERAND (gimple_call_arg (stmt
, 1), 0);
8060 if (called_decl
!= NULL_TREE
8061 && !fndecl_maybe_in_other_partition (called_decl
))
8066 && (fi
= lookup_vi_for_tree (decl
))
8069 *gimple_call_clobber_set (stmt
)
8070 = find_what_var_points_to
8071 (node
->decl
, first_vi_for_offset (fi
, fi_clobbers
));
8072 *gimple_call_use_set (stmt
)
8073 = find_what_var_points_to
8074 (node
->decl
, first_vi_for_offset (fi
, fi_uses
));
8076 /* Handle direct calls to external functions. */
8079 pt
= gimple_call_use_set (stmt
);
8080 if (gimple_call_flags (stmt
) & ECF_CONST
)
8081 memset (pt
, 0, sizeof (struct pt_solution
));
8082 else if ((vi
= lookup_call_use_vi (stmt
)) != NULL
)
8084 *pt
= find_what_var_points_to (node
->decl
, vi
);
8085 /* Escaped (and thus nonlocal) variables are always
8086 implicitly used by calls. */
8087 /* ??? ESCAPED can be empty even though NONLOCAL
8090 pt
->ipa_escaped
= 1;
8094 /* If there is nothing special about this call then
8095 we have made everything that is used also escape. */
8096 *pt
= ipa_escaped_pt
;
8100 pt
= gimple_call_clobber_set (stmt
);
8101 if (gimple_call_flags (stmt
) & (ECF_CONST
|ECF_PURE
|ECF_NOVOPS
))
8102 memset (pt
, 0, sizeof (struct pt_solution
));
8103 else if ((vi
= lookup_call_clobber_vi (stmt
)) != NULL
)
8105 *pt
= find_what_var_points_to (node
->decl
, vi
);
8106 /* Escaped (and thus nonlocal) variables are always
8107 implicitly clobbered by calls. */
8108 /* ??? ESCAPED can be empty even though NONLOCAL
8111 pt
->ipa_escaped
= 1;
8115 /* If there is nothing special about this call then
8116 we have made everything that is used also escape. */
8117 *pt
= ipa_escaped_pt
;
8121 /* Handle indirect calls. */
8123 && (fi
= get_fi_for_callee (stmt
)))
8125 /* We need to accumulate all clobbers/uses of all possible
8127 fi
= get_varinfo (find (fi
->id
));
8128 /* If we cannot constrain the set of functions we'll end up
8129 calling we end up using/clobbering everything. */
8130 if (bitmap_bit_p (fi
->solution
, anything_id
)
8131 || bitmap_bit_p (fi
->solution
, nonlocal_id
)
8132 || bitmap_bit_p (fi
->solution
, escaped_id
))
8134 pt_solution_reset (gimple_call_clobber_set (stmt
));
8135 pt_solution_reset (gimple_call_use_set (stmt
));
8141 struct pt_solution
*uses
, *clobbers
;
8143 uses
= gimple_call_use_set (stmt
);
8144 clobbers
= gimple_call_clobber_set (stmt
);
8145 memset (uses
, 0, sizeof (struct pt_solution
));
8146 memset (clobbers
, 0, sizeof (struct pt_solution
));
8147 EXECUTE_IF_SET_IN_BITMAP (fi
->solution
, 0, i
, bi
)
8149 struct pt_solution sol
;
8151 vi
= get_varinfo (i
);
8152 if (!vi
->is_fn_info
)
8154 /* ??? We could be more precise here? */
8156 uses
->ipa_escaped
= 1;
8157 clobbers
->nonlocal
= 1;
8158 clobbers
->ipa_escaped
= 1;
8162 if (!uses
->anything
)
8164 sol
= find_what_var_points_to
8166 first_vi_for_offset (vi
, fi_uses
));
8167 pt_solution_ior_into (uses
, &sol
);
8169 if (!clobbers
->anything
)
8171 sol
= find_what_var_points_to
8173 first_vi_for_offset (vi
, fi_clobbers
));
8174 pt_solution_ior_into (clobbers
, &sol
);
8182 fn
->gimple_df
->ipa_pta
= true;
8184 /* We have to re-set the final-solution cache after each function
8185 because what is a "global" is dependent on function context. */
8186 final_solutions
->empty ();
8187 obstack_free (&final_solutions_obstack
, NULL
);
8188 gcc_obstack_init (&final_solutions_obstack
);
8191 delete_points_to_sets ();
8200 const pass_data pass_data_ipa_pta
=
8202 SIMPLE_IPA_PASS
, /* type */
8204 OPTGROUP_NONE
, /* optinfo_flags */
8205 TV_IPA_PTA
, /* tv_id */
8206 0, /* properties_required */
8207 0, /* properties_provided */
8208 0, /* properties_destroyed */
8209 0, /* todo_flags_start */
8210 0, /* todo_flags_finish */
8213 class pass_ipa_pta
: public simple_ipa_opt_pass
8216 pass_ipa_pta (gcc::context
*ctxt
)
8217 : simple_ipa_opt_pass (pass_data_ipa_pta
, ctxt
)
8220 /* opt_pass methods: */
8221 virtual bool gate (function
*)
8225 /* Don't bother doing anything if the program has errors. */
8229 opt_pass
* clone () { return new pass_ipa_pta (m_ctxt
); }
8231 virtual unsigned int execute (function
*) { return ipa_pta_execute (); }
8233 }; // class pass_ipa_pta
8237 simple_ipa_opt_pass
*
8238 make_pass_ipa_pta (gcc::context
*ctxt
)
8240 return new pass_ipa_pta (ctxt
);