1 /* Tree based points-to analysis
2 Copyright (C) 2005-2018 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 poly_int64 bitsize
= -1;
3195 poly_int64 bitmaxsize
= -1;
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 (maybe_lt (poly_uint64 (bitpos
), get_varinfo (result
.var
)->fullsize
)
3259 && maybe_ne (bitmaxsize
, 0))
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_maybe_overlap_p (poly_int64 (curr
->offset
),
3272 curr
->size
, 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 (known_eq (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. */
3320 HOST_WIDE_INT const_bitpos
;
3321 if (!bitpos
.is_constant (&const_bitpos
)
3322 || const_bitpos
== -1
3323 || maybe_ne (bitsize
, bitmaxsize
)
3324 || AGGREGATE_TYPE_P (TREE_TYPE (orig_t
))
3325 || result
.offset
== UNKNOWN_OFFSET
)
3326 result
.offset
= UNKNOWN_OFFSET
;
3328 result
.offset
+= const_bitpos
;
3330 else if (result
.type
== ADDRESSOF
)
3332 /* We can end up here for component references on constants like
3333 VIEW_CONVERT_EXPR <>({ 0, 1, 2, 3 })[i]. */
3334 result
.type
= SCALAR
;
3335 result
.var
= anything_id
;
3343 /* Dereference the constraint expression CONS, and return the result.
3344 DEREF (ADDRESSOF) = SCALAR
3345 DEREF (SCALAR) = DEREF
3346 DEREF (DEREF) = (temp = DEREF1; result = DEREF(temp))
3347 This is needed so that we can handle dereferencing DEREF constraints. */
3350 do_deref (vec
<ce_s
> *constraints
)
3352 struct constraint_expr
*c
;
3355 FOR_EACH_VEC_ELT (*constraints
, i
, c
)
3357 if (c
->type
== SCALAR
)
3359 else if (c
->type
== ADDRESSOF
)
3361 else if (c
->type
== DEREF
)
3363 struct constraint_expr tmplhs
;
3364 tmplhs
= new_scalar_tmp_constraint_exp ("dereftmp", true);
3365 process_constraint (new_constraint (tmplhs
, *c
));
3366 c
->var
= tmplhs
.var
;
3373 /* Given a tree T, return the constraint expression for taking the
3377 get_constraint_for_address_of (tree t
, vec
<ce_s
> *results
)
3379 struct constraint_expr
*c
;
3382 get_constraint_for_1 (t
, results
, true, true);
3384 FOR_EACH_VEC_ELT (*results
, i
, c
)
3386 if (c
->type
== DEREF
)
3389 c
->type
= ADDRESSOF
;
3393 /* Given a tree T, return the constraint expression for it. */
3396 get_constraint_for_1 (tree t
, vec
<ce_s
> *results
, bool address_p
,
3399 struct constraint_expr temp
;
3401 /* x = integer is all glommed to a single variable, which doesn't
3402 point to anything by itself. That is, of course, unless it is an
3403 integer constant being treated as a pointer, in which case, we
3404 will return that this is really the addressof anything. This
3405 happens below, since it will fall into the default case. The only
3406 case we know something about an integer treated like a pointer is
3407 when it is the NULL pointer, and then we just say it points to
3410 Do not do that if -fno-delete-null-pointer-checks though, because
3411 in that case *NULL does not fail, so it _should_ alias *anything.
3412 It is not worth adding a new option or renaming the existing one,
3413 since this case is relatively obscure. */
3414 if ((TREE_CODE (t
) == INTEGER_CST
3415 && integer_zerop (t
))
3416 /* The only valid CONSTRUCTORs in gimple with pointer typed
3417 elements are zero-initializer. But in IPA mode we also
3418 process global initializers, so verify at least. */
3419 || (TREE_CODE (t
) == CONSTRUCTOR
3420 && CONSTRUCTOR_NELTS (t
) == 0))
3422 if (flag_delete_null_pointer_checks
)
3423 temp
.var
= nothing_id
;
3425 temp
.var
= nonlocal_id
;
3426 temp
.type
= ADDRESSOF
;
3428 results
->safe_push (temp
);
3432 /* String constants are read-only, ideally we'd have a CONST_DECL
3434 if (TREE_CODE (t
) == STRING_CST
)
3436 temp
.var
= string_id
;
3439 results
->safe_push (temp
);
3443 switch (TREE_CODE_CLASS (TREE_CODE (t
)))
3445 case tcc_expression
:
3447 switch (TREE_CODE (t
))
3450 get_constraint_for_address_of (TREE_OPERAND (t
, 0), results
);
3458 switch (TREE_CODE (t
))
3462 struct constraint_expr cs
;
3464 get_constraint_for_ptr_offset (TREE_OPERAND (t
, 0),
3465 TREE_OPERAND (t
, 1), results
);
3468 /* If we are not taking the address then make sure to process
3469 all subvariables we might access. */
3473 cs
= results
->last ();
3474 if (cs
.type
== DEREF
3475 && type_can_have_subvars (TREE_TYPE (t
)))
3477 /* For dereferences this means we have to defer it
3479 results
->last ().offset
= UNKNOWN_OFFSET
;
3482 if (cs
.type
!= SCALAR
)
3485 vi
= get_varinfo (cs
.var
);
3486 curr
= vi_next (vi
);
3487 if (!vi
->is_full_var
3490 unsigned HOST_WIDE_INT size
;
3491 if (tree_fits_uhwi_p (TYPE_SIZE (TREE_TYPE (t
))))
3492 size
= tree_to_uhwi (TYPE_SIZE (TREE_TYPE (t
)));
3495 for (; curr
; curr
= vi_next (curr
))
3497 if (curr
->offset
- vi
->offset
< size
)
3500 results
->safe_push (cs
);
3509 case ARRAY_RANGE_REF
:
3514 get_constraint_for_component_ref (t
, results
, address_p
, lhs_p
);
3516 case VIEW_CONVERT_EXPR
:
3517 get_constraint_for_1 (TREE_OPERAND (t
, 0), results
, address_p
,
3520 /* We are missing handling for TARGET_MEM_REF here. */
3525 case tcc_exceptional
:
3527 switch (TREE_CODE (t
))
3531 get_constraint_for_ssa_var (t
, results
, address_p
);
3539 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (t
), i
, val
)
3541 struct constraint_expr
*rhsp
;
3543 get_constraint_for_1 (val
, &tmp
, address_p
, lhs_p
);
3544 FOR_EACH_VEC_ELT (tmp
, j
, rhsp
)
3545 results
->safe_push (*rhsp
);
3548 /* We do not know whether the constructor was complete,
3549 so technically we have to add &NOTHING or &ANYTHING
3550 like we do for an empty constructor as well. */
3557 case tcc_declaration
:
3559 get_constraint_for_ssa_var (t
, results
, address_p
);
3564 /* We cannot refer to automatic variables through constants. */
3565 temp
.type
= ADDRESSOF
;
3566 temp
.var
= nonlocal_id
;
3568 results
->safe_push (temp
);
3574 /* The default fallback is a constraint from anything. */
3575 temp
.type
= ADDRESSOF
;
3576 temp
.var
= anything_id
;
3578 results
->safe_push (temp
);
3581 /* Given a gimple tree T, return the constraint expression vector for it. */
3584 get_constraint_for (tree t
, vec
<ce_s
> *results
)
3586 gcc_assert (results
->length () == 0);
3588 get_constraint_for_1 (t
, results
, false, true);
3591 /* Given a gimple tree T, return the constraint expression vector for it
3592 to be used as the rhs of a constraint. */
3595 get_constraint_for_rhs (tree t
, vec
<ce_s
> *results
)
3597 gcc_assert (results
->length () == 0);
3599 get_constraint_for_1 (t
, results
, false, false);
3603 /* Efficiently generates constraints from all entries in *RHSC to all
3604 entries in *LHSC. */
3607 process_all_all_constraints (vec
<ce_s
> lhsc
,
3610 struct constraint_expr
*lhsp
, *rhsp
;
3613 if (lhsc
.length () <= 1 || rhsc
.length () <= 1)
3615 FOR_EACH_VEC_ELT (lhsc
, i
, lhsp
)
3616 FOR_EACH_VEC_ELT (rhsc
, j
, rhsp
)
3617 process_constraint (new_constraint (*lhsp
, *rhsp
));
3621 struct constraint_expr tmp
;
3622 tmp
= new_scalar_tmp_constraint_exp ("allalltmp", true);
3623 FOR_EACH_VEC_ELT (rhsc
, i
, rhsp
)
3624 process_constraint (new_constraint (tmp
, *rhsp
));
3625 FOR_EACH_VEC_ELT (lhsc
, i
, lhsp
)
3626 process_constraint (new_constraint (*lhsp
, tmp
));
3630 /* Handle aggregate copies by expanding into copies of the respective
3631 fields of the structures. */
3634 do_structure_copy (tree lhsop
, tree rhsop
)
3636 struct constraint_expr
*lhsp
, *rhsp
;
3637 auto_vec
<ce_s
> lhsc
;
3638 auto_vec
<ce_s
> rhsc
;
3641 get_constraint_for (lhsop
, &lhsc
);
3642 get_constraint_for_rhs (rhsop
, &rhsc
);
3645 if (lhsp
->type
== DEREF
3646 || (lhsp
->type
== ADDRESSOF
&& lhsp
->var
== anything_id
)
3647 || rhsp
->type
== DEREF
)
3649 if (lhsp
->type
== DEREF
)
3651 gcc_assert (lhsc
.length () == 1);
3652 lhsp
->offset
= UNKNOWN_OFFSET
;
3654 if (rhsp
->type
== DEREF
)
3656 gcc_assert (rhsc
.length () == 1);
3657 rhsp
->offset
= UNKNOWN_OFFSET
;
3659 process_all_all_constraints (lhsc
, rhsc
);
3661 else if (lhsp
->type
== SCALAR
3662 && (rhsp
->type
== SCALAR
3663 || rhsp
->type
== ADDRESSOF
))
3665 HOST_WIDE_INT lhssize
, lhsoffset
;
3666 HOST_WIDE_INT rhssize
, rhsoffset
;
3669 if (!get_ref_base_and_extent_hwi (lhsop
, &lhsoffset
, &lhssize
, &reverse
)
3670 || !get_ref_base_and_extent_hwi (rhsop
, &rhsoffset
, &rhssize
,
3673 process_all_all_constraints (lhsc
, rhsc
);
3676 for (j
= 0; lhsc
.iterate (j
, &lhsp
);)
3678 varinfo_t lhsv
, rhsv
;
3680 lhsv
= get_varinfo (lhsp
->var
);
3681 rhsv
= get_varinfo (rhsp
->var
);
3682 if (lhsv
->may_have_pointers
3683 && (lhsv
->is_full_var
3684 || rhsv
->is_full_var
3685 || ranges_overlap_p (lhsv
->offset
+ rhsoffset
, lhsv
->size
,
3686 rhsv
->offset
+ lhsoffset
, rhsv
->size
)))
3687 process_constraint (new_constraint (*lhsp
, *rhsp
));
3688 if (!rhsv
->is_full_var
3689 && (lhsv
->is_full_var
3690 || (lhsv
->offset
+ rhsoffset
+ lhsv
->size
3691 > rhsv
->offset
+ lhsoffset
+ rhsv
->size
)))
3694 if (k
>= rhsc
.length ())
3705 /* Create constraints ID = { rhsc }. */
3708 make_constraints_to (unsigned id
, vec
<ce_s
> rhsc
)
3710 struct constraint_expr
*c
;
3711 struct constraint_expr includes
;
3715 includes
.offset
= 0;
3716 includes
.type
= SCALAR
;
3718 FOR_EACH_VEC_ELT (rhsc
, j
, c
)
3719 process_constraint (new_constraint (includes
, *c
));
3722 /* Create a constraint ID = OP. */
3725 make_constraint_to (unsigned id
, tree op
)
3727 auto_vec
<ce_s
> rhsc
;
3728 get_constraint_for_rhs (op
, &rhsc
);
3729 make_constraints_to (id
, rhsc
);
3732 /* Create a constraint ID = &FROM. */
3735 make_constraint_from (varinfo_t vi
, int from
)
3737 struct constraint_expr lhs
, rhs
;
3745 rhs
.type
= ADDRESSOF
;
3746 process_constraint (new_constraint (lhs
, rhs
));
3749 /* Create a constraint ID = FROM. */
3752 make_copy_constraint (varinfo_t vi
, int from
)
3754 struct constraint_expr lhs
, rhs
;
3763 process_constraint (new_constraint (lhs
, rhs
));
3766 /* Make constraints necessary to make OP escape. */
3769 make_escape_constraint (tree op
)
3771 make_constraint_to (escaped_id
, op
);
3774 /* Add constraints to that the solution of VI is transitively closed. */
3777 make_transitive_closure_constraints (varinfo_t vi
)
3779 struct constraint_expr lhs
, rhs
;
3781 /* VAR = *(VAR + UNKNOWN); */
3787 rhs
.offset
= UNKNOWN_OFFSET
;
3788 process_constraint (new_constraint (lhs
, rhs
));
3791 /* Add constraints to that the solution of VI has all subvariables added. */
3794 make_any_offset_constraints (varinfo_t vi
)
3796 struct constraint_expr lhs
, rhs
;
3798 /* VAR = VAR + UNKNOWN; */
3804 rhs
.offset
= UNKNOWN_OFFSET
;
3805 process_constraint (new_constraint (lhs
, rhs
));
3808 /* Temporary storage for fake var decls. */
3809 struct obstack fake_var_decl_obstack
;
3811 /* Build a fake VAR_DECL acting as referrer to a DECL_UID. */
3814 build_fake_var_decl (tree type
)
3816 tree decl
= (tree
) XOBNEW (&fake_var_decl_obstack
, struct tree_var_decl
);
3817 memset (decl
, 0, sizeof (struct tree_var_decl
));
3818 TREE_SET_CODE (decl
, VAR_DECL
);
3819 TREE_TYPE (decl
) = type
;
3820 DECL_UID (decl
) = allocate_decl_uid ();
3821 SET_DECL_PT_UID (decl
, -1);
3822 layout_decl (decl
, 0);
3826 /* Create a new artificial heap variable with NAME.
3827 Return the created variable. */
3830 make_heapvar (const char *name
, bool add_id
)
3835 heapvar
= build_fake_var_decl (ptr_type_node
);
3836 DECL_EXTERNAL (heapvar
) = 1;
3838 vi
= new_var_info (heapvar
, name
, add_id
);
3839 vi
->is_artificial_var
= true;
3840 vi
->is_heap_var
= true;
3841 vi
->is_unknown_size_var
= true;
3845 vi
->is_full_var
= true;
3846 insert_vi_for_tree (heapvar
, vi
);
3851 /* Create a new artificial heap variable with NAME and make a
3852 constraint from it to LHS. Set flags according to a tag used
3853 for tracking restrict pointers. */
3856 make_constraint_from_restrict (varinfo_t lhs
, const char *name
, bool add_id
)
3858 varinfo_t vi
= make_heapvar (name
, add_id
);
3859 vi
->is_restrict_var
= 1;
3860 vi
->is_global_var
= 1;
3861 vi
->may_have_pointers
= 1;
3862 make_constraint_from (lhs
, vi
->id
);
3866 /* Create a new artificial heap variable with NAME and make a
3867 constraint from it to LHS. Set flags according to a tag used
3868 for tracking restrict pointers and make the artificial heap
3869 point to global memory. */
3872 make_constraint_from_global_restrict (varinfo_t lhs
, const char *name
,
3875 varinfo_t vi
= make_constraint_from_restrict (lhs
, name
, add_id
);
3876 make_copy_constraint (vi
, nonlocal_id
);
3880 /* In IPA mode there are varinfos for different aspects of reach
3881 function designator. One for the points-to set of the return
3882 value, one for the variables that are clobbered by the function,
3883 one for its uses and one for each parameter (including a single
3884 glob for remaining variadic arguments). */
3886 enum { fi_clobbers
= 1, fi_uses
= 2,
3887 fi_static_chain
= 3, fi_result
= 4, fi_parm_base
= 5 };
3889 /* Get a constraint for the requested part of a function designator FI
3890 when operating in IPA mode. */
3892 static struct constraint_expr
3893 get_function_part_constraint (varinfo_t fi
, unsigned part
)
3895 struct constraint_expr c
;
3897 gcc_assert (in_ipa_mode
);
3899 if (fi
->id
== anything_id
)
3901 /* ??? We probably should have a ANYFN special variable. */
3902 c
.var
= anything_id
;
3906 else if (fi
->decl
&& TREE_CODE (fi
->decl
) == FUNCTION_DECL
)
3908 varinfo_t ai
= first_vi_for_offset (fi
, part
);
3912 c
.var
= anything_id
;
3926 /* For non-IPA mode, generate constraints necessary for a call on the
3930 handle_rhs_call (gcall
*stmt
, vec
<ce_s
> *results
)
3932 struct constraint_expr rhsc
;
3934 bool returns_uses
= false;
3936 for (i
= 0; i
< gimple_call_num_args (stmt
); ++i
)
3938 tree arg
= gimple_call_arg (stmt
, i
);
3939 int flags
= gimple_call_arg_flags (stmt
, i
);
3941 /* If the argument is not used we can ignore it. */
3942 if (flags
& EAF_UNUSED
)
3945 /* As we compute ESCAPED context-insensitive we do not gain
3946 any precision with just EAF_NOCLOBBER but not EAF_NOESCAPE
3947 set. The argument would still get clobbered through the
3949 if ((flags
& EAF_NOCLOBBER
)
3950 && (flags
& EAF_NOESCAPE
))
3952 varinfo_t uses
= get_call_use_vi (stmt
);
3953 varinfo_t tem
= new_var_info (NULL_TREE
, "callarg", true);
3954 tem
->is_reg_var
= true;
3955 make_constraint_to (tem
->id
, arg
);
3956 make_any_offset_constraints (tem
);
3957 if (!(flags
& EAF_DIRECT
))
3958 make_transitive_closure_constraints (tem
);
3959 make_copy_constraint (uses
, tem
->id
);
3960 returns_uses
= true;
3962 else if (flags
& EAF_NOESCAPE
)
3964 struct constraint_expr lhs
, rhs
;
3965 varinfo_t uses
= get_call_use_vi (stmt
);
3966 varinfo_t clobbers
= get_call_clobber_vi (stmt
);
3967 varinfo_t tem
= new_var_info (NULL_TREE
, "callarg", true);
3968 tem
->is_reg_var
= true;
3969 make_constraint_to (tem
->id
, arg
);
3970 make_any_offset_constraints (tem
);
3971 if (!(flags
& EAF_DIRECT
))
3972 make_transitive_closure_constraints (tem
);
3973 make_copy_constraint (uses
, tem
->id
);
3974 make_copy_constraint (clobbers
, tem
->id
);
3975 /* Add *tem = nonlocal, do not add *tem = callused as
3976 EAF_NOESCAPE parameters do not escape to other parameters
3977 and all other uses appear in NONLOCAL as well. */
3982 rhs
.var
= nonlocal_id
;
3984 process_constraint (new_constraint (lhs
, rhs
));
3985 returns_uses
= true;
3988 make_escape_constraint (arg
);
3991 /* If we added to the calls uses solution make sure we account for
3992 pointers to it to be returned. */
3995 rhsc
.var
= get_call_use_vi (stmt
)->id
;
3996 rhsc
.offset
= UNKNOWN_OFFSET
;
3998 results
->safe_push (rhsc
);
4001 /* The static chain escapes as well. */
4002 if (gimple_call_chain (stmt
))
4003 make_escape_constraint (gimple_call_chain (stmt
));
4005 /* And if we applied NRV the address of the return slot escapes as well. */
4006 if (gimple_call_return_slot_opt_p (stmt
)
4007 && gimple_call_lhs (stmt
) != NULL_TREE
4008 && TREE_ADDRESSABLE (TREE_TYPE (gimple_call_lhs (stmt
))))
4010 auto_vec
<ce_s
> tmpc
;
4011 struct constraint_expr lhsc
, *c
;
4012 get_constraint_for_address_of (gimple_call_lhs (stmt
), &tmpc
);
4013 lhsc
.var
= escaped_id
;
4016 FOR_EACH_VEC_ELT (tmpc
, i
, c
)
4017 process_constraint (new_constraint (lhsc
, *c
));
4020 /* Regular functions return nonlocal memory. */
4021 rhsc
.var
= nonlocal_id
;
4024 results
->safe_push (rhsc
);
4027 /* For non-IPA mode, generate constraints necessary for a call
4028 that returns a pointer and assigns it to LHS. This simply makes
4029 the LHS point to global and escaped variables. */
4032 handle_lhs_call (gcall
*stmt
, tree lhs
, int flags
, vec
<ce_s
> rhsc
,
4035 auto_vec
<ce_s
> lhsc
;
4037 get_constraint_for (lhs
, &lhsc
);
4038 /* If the store is to a global decl make sure to
4039 add proper escape constraints. */
4040 lhs
= get_base_address (lhs
);
4043 && is_global_var (lhs
))
4045 struct constraint_expr tmpc
;
4046 tmpc
.var
= escaped_id
;
4049 lhsc
.safe_push (tmpc
);
4052 /* If the call returns an argument unmodified override the rhs
4054 if (flags
& ERF_RETURNS_ARG
4055 && (flags
& ERF_RETURN_ARG_MASK
) < gimple_call_num_args (stmt
))
4059 arg
= gimple_call_arg (stmt
, flags
& ERF_RETURN_ARG_MASK
);
4060 get_constraint_for (arg
, &rhsc
);
4061 process_all_all_constraints (lhsc
, rhsc
);
4064 else if (flags
& ERF_NOALIAS
)
4067 struct constraint_expr tmpc
;
4069 vi
= make_heapvar ("HEAP", true);
4070 /* We are marking allocated storage local, we deal with it becoming
4071 global by escaping and setting of vars_contains_escaped_heap. */
4072 DECL_EXTERNAL (vi
->decl
) = 0;
4073 vi
->is_global_var
= 0;
4074 /* If this is not a real malloc call assume the memory was
4075 initialized and thus may point to global memory. All
4076 builtin functions with the malloc attribute behave in a sane way. */
4078 || DECL_BUILT_IN_CLASS (fndecl
) != BUILT_IN_NORMAL
)
4079 make_constraint_from (vi
, nonlocal_id
);
4082 tmpc
.type
= ADDRESSOF
;
4083 rhsc
.safe_push (tmpc
);
4084 process_all_all_constraints (lhsc
, rhsc
);
4088 process_all_all_constraints (lhsc
, rhsc
);
4091 /* For non-IPA mode, generate constraints necessary for a call of a
4092 const function that returns a pointer in the statement STMT. */
4095 handle_const_call (gcall
*stmt
, vec
<ce_s
> *results
)
4097 struct constraint_expr rhsc
;
4099 bool need_uses
= false;
4101 /* Treat nested const functions the same as pure functions as far
4102 as the static chain is concerned. */
4103 if (gimple_call_chain (stmt
))
4105 varinfo_t uses
= get_call_use_vi (stmt
);
4106 make_constraint_to (uses
->id
, gimple_call_chain (stmt
));
4110 /* And if we applied NRV the address of the return slot escapes as well. */
4111 if (gimple_call_return_slot_opt_p (stmt
)
4112 && gimple_call_lhs (stmt
) != NULL_TREE
4113 && TREE_ADDRESSABLE (TREE_TYPE (gimple_call_lhs (stmt
))))
4115 varinfo_t uses
= get_call_use_vi (stmt
);
4116 auto_vec
<ce_s
> tmpc
;
4117 get_constraint_for_address_of (gimple_call_lhs (stmt
), &tmpc
);
4118 make_constraints_to (uses
->id
, tmpc
);
4124 varinfo_t uses
= get_call_use_vi (stmt
);
4125 make_any_offset_constraints (uses
);
4126 make_transitive_closure_constraints (uses
);
4127 rhsc
.var
= uses
->id
;
4130 results
->safe_push (rhsc
);
4133 /* May return offsetted arguments. */
4134 varinfo_t tem
= NULL
;
4135 if (gimple_call_num_args (stmt
) != 0)
4137 tem
= new_var_info (NULL_TREE
, "callarg", true);
4138 tem
->is_reg_var
= true;
4140 for (k
= 0; k
< gimple_call_num_args (stmt
); ++k
)
4142 tree arg
= gimple_call_arg (stmt
, k
);
4143 auto_vec
<ce_s
> argc
;
4144 get_constraint_for_rhs (arg
, &argc
);
4145 make_constraints_to (tem
->id
, argc
);
4152 ce
.offset
= UNKNOWN_OFFSET
;
4153 results
->safe_push (ce
);
4156 /* May return addresses of globals. */
4157 rhsc
.var
= nonlocal_id
;
4159 rhsc
.type
= ADDRESSOF
;
4160 results
->safe_push (rhsc
);
4163 /* For non-IPA mode, generate constraints necessary for a call to a
4164 pure function in statement STMT. */
4167 handle_pure_call (gcall
*stmt
, vec
<ce_s
> *results
)
4169 struct constraint_expr rhsc
;
4171 varinfo_t uses
= NULL
;
4173 /* Memory reached from pointer arguments is call-used. */
4174 for (i
= 0; i
< gimple_call_num_args (stmt
); ++i
)
4176 tree arg
= gimple_call_arg (stmt
, i
);
4179 uses
= get_call_use_vi (stmt
);
4180 make_any_offset_constraints (uses
);
4181 make_transitive_closure_constraints (uses
);
4183 make_constraint_to (uses
->id
, arg
);
4186 /* The static chain is used as well. */
4187 if (gimple_call_chain (stmt
))
4191 uses
= get_call_use_vi (stmt
);
4192 make_any_offset_constraints (uses
);
4193 make_transitive_closure_constraints (uses
);
4195 make_constraint_to (uses
->id
, gimple_call_chain (stmt
));
4198 /* And if we applied NRV the address of the return slot. */
4199 if (gimple_call_return_slot_opt_p (stmt
)
4200 && gimple_call_lhs (stmt
) != NULL_TREE
4201 && TREE_ADDRESSABLE (TREE_TYPE (gimple_call_lhs (stmt
))))
4205 uses
= get_call_use_vi (stmt
);
4206 make_any_offset_constraints (uses
);
4207 make_transitive_closure_constraints (uses
);
4209 auto_vec
<ce_s
> tmpc
;
4210 get_constraint_for_address_of (gimple_call_lhs (stmt
), &tmpc
);
4211 make_constraints_to (uses
->id
, tmpc
);
4214 /* Pure functions may return call-used and nonlocal memory. */
4217 rhsc
.var
= uses
->id
;
4220 results
->safe_push (rhsc
);
4222 rhsc
.var
= nonlocal_id
;
4225 results
->safe_push (rhsc
);
4229 /* Return the varinfo for the callee of CALL. */
4232 get_fi_for_callee (gcall
*call
)
4234 tree decl
, fn
= gimple_call_fn (call
);
4236 if (fn
&& TREE_CODE (fn
) == OBJ_TYPE_REF
)
4237 fn
= OBJ_TYPE_REF_EXPR (fn
);
4239 /* If we can directly resolve the function being called, do so.
4240 Otherwise, it must be some sort of indirect expression that
4241 we should still be able to handle. */
4242 decl
= gimple_call_addr_fndecl (fn
);
4244 return get_vi_for_tree (decl
);
4246 /* If the function is anything other than a SSA name pointer we have no
4247 clue and should be getting ANYFN (well, ANYTHING for now). */
4248 if (!fn
|| TREE_CODE (fn
) != SSA_NAME
)
4249 return get_varinfo (anything_id
);
4251 if (SSA_NAME_IS_DEFAULT_DEF (fn
)
4252 && (TREE_CODE (SSA_NAME_VAR (fn
)) == PARM_DECL
4253 || TREE_CODE (SSA_NAME_VAR (fn
)) == RESULT_DECL
))
4254 fn
= SSA_NAME_VAR (fn
);
4256 return get_vi_for_tree (fn
);
4259 /* Create constraints for assigning call argument ARG to the incoming parameter
4260 INDEX of function FI. */
4263 find_func_aliases_for_call_arg (varinfo_t fi
, unsigned index
, tree arg
)
4265 struct constraint_expr lhs
;
4266 lhs
= get_function_part_constraint (fi
, fi_parm_base
+ index
);
4268 auto_vec
<ce_s
, 2> rhsc
;
4269 get_constraint_for_rhs (arg
, &rhsc
);
4272 struct constraint_expr
*rhsp
;
4273 FOR_EACH_VEC_ELT (rhsc
, j
, rhsp
)
4274 process_constraint (new_constraint (lhs
, *rhsp
));
4277 /* Return true if FNDECL may be part of another lto partition. */
4280 fndecl_maybe_in_other_partition (tree fndecl
)
4282 cgraph_node
*fn_node
= cgraph_node::get (fndecl
);
4283 if (fn_node
== NULL
)
4286 return fn_node
->in_other_partition
;
4289 /* Create constraints for the builtin call T. Return true if the call
4290 was handled, otherwise false. */
4293 find_func_aliases_for_builtin_call (struct function
*fn
, gcall
*t
)
4295 tree fndecl
= gimple_call_fndecl (t
);
4296 auto_vec
<ce_s
, 2> lhsc
;
4297 auto_vec
<ce_s
, 4> rhsc
;
4300 if (gimple_call_builtin_p (t
, BUILT_IN_NORMAL
))
4301 /* ??? All builtins that are handled here need to be handled
4302 in the alias-oracle query functions explicitly! */
4303 switch (DECL_FUNCTION_CODE (fndecl
))
4305 /* All the following functions return a pointer to the same object
4306 as their first argument points to. The functions do not add
4307 to the ESCAPED solution. The functions make the first argument
4308 pointed to memory point to what the second argument pointed to
4309 memory points to. */
4310 case BUILT_IN_STRCPY
:
4311 case BUILT_IN_STRNCPY
:
4312 case BUILT_IN_BCOPY
:
4313 case BUILT_IN_MEMCPY
:
4314 case BUILT_IN_MEMMOVE
:
4315 case BUILT_IN_MEMPCPY
:
4316 case BUILT_IN_STPCPY
:
4317 case BUILT_IN_STPNCPY
:
4318 case BUILT_IN_STRCAT
:
4319 case BUILT_IN_STRNCAT
:
4320 case BUILT_IN_STRCPY_CHK
:
4321 case BUILT_IN_STRNCPY_CHK
:
4322 case BUILT_IN_MEMCPY_CHK
:
4323 case BUILT_IN_MEMMOVE_CHK
:
4324 case BUILT_IN_MEMPCPY_CHK
:
4325 case BUILT_IN_STPCPY_CHK
:
4326 case BUILT_IN_STPNCPY_CHK
:
4327 case BUILT_IN_STRCAT_CHK
:
4328 case BUILT_IN_STRNCAT_CHK
:
4329 case BUILT_IN_TM_MEMCPY
:
4330 case BUILT_IN_TM_MEMMOVE
:
4332 tree res
= gimple_call_lhs (t
);
4333 tree dest
= gimple_call_arg (t
, (DECL_FUNCTION_CODE (fndecl
)
4334 == BUILT_IN_BCOPY
? 1 : 0));
4335 tree src
= gimple_call_arg (t
, (DECL_FUNCTION_CODE (fndecl
)
4336 == BUILT_IN_BCOPY
? 0 : 1));
4337 if (res
!= NULL_TREE
)
4339 get_constraint_for (res
, &lhsc
);
4340 if (DECL_FUNCTION_CODE (fndecl
) == BUILT_IN_MEMPCPY
4341 || DECL_FUNCTION_CODE (fndecl
) == BUILT_IN_STPCPY
4342 || DECL_FUNCTION_CODE (fndecl
) == BUILT_IN_STPNCPY
4343 || DECL_FUNCTION_CODE (fndecl
) == BUILT_IN_MEMPCPY_CHK
4344 || DECL_FUNCTION_CODE (fndecl
) == BUILT_IN_STPCPY_CHK
4345 || DECL_FUNCTION_CODE (fndecl
) == BUILT_IN_STPNCPY_CHK
)
4346 get_constraint_for_ptr_offset (dest
, NULL_TREE
, &rhsc
);
4348 get_constraint_for (dest
, &rhsc
);
4349 process_all_all_constraints (lhsc
, rhsc
);
4353 get_constraint_for_ptr_offset (dest
, NULL_TREE
, &lhsc
);
4354 get_constraint_for_ptr_offset (src
, NULL_TREE
, &rhsc
);
4357 process_all_all_constraints (lhsc
, rhsc
);
4360 case BUILT_IN_MEMSET
:
4361 case BUILT_IN_MEMSET_CHK
:
4362 case BUILT_IN_TM_MEMSET
:
4364 tree res
= gimple_call_lhs (t
);
4365 tree dest
= gimple_call_arg (t
, 0);
4368 struct constraint_expr ac
;
4369 if (res
!= NULL_TREE
)
4371 get_constraint_for (res
, &lhsc
);
4372 get_constraint_for (dest
, &rhsc
);
4373 process_all_all_constraints (lhsc
, rhsc
);
4376 get_constraint_for_ptr_offset (dest
, NULL_TREE
, &lhsc
);
4378 if (flag_delete_null_pointer_checks
4379 && integer_zerop (gimple_call_arg (t
, 1)))
4381 ac
.type
= ADDRESSOF
;
4382 ac
.var
= nothing_id
;
4387 ac
.var
= integer_id
;
4390 FOR_EACH_VEC_ELT (lhsc
, i
, lhsp
)
4391 process_constraint (new_constraint (*lhsp
, ac
));
4394 case BUILT_IN_POSIX_MEMALIGN
:
4396 tree ptrptr
= gimple_call_arg (t
, 0);
4397 get_constraint_for (ptrptr
, &lhsc
);
4399 varinfo_t vi
= make_heapvar ("HEAP", true);
4400 /* We are marking allocated storage local, we deal with it becoming
4401 global by escaping and setting of vars_contains_escaped_heap. */
4402 DECL_EXTERNAL (vi
->decl
) = 0;
4403 vi
->is_global_var
= 0;
4404 struct constraint_expr tmpc
;
4407 tmpc
.type
= ADDRESSOF
;
4408 rhsc
.safe_push (tmpc
);
4409 process_all_all_constraints (lhsc
, rhsc
);
4412 case BUILT_IN_ASSUME_ALIGNED
:
4414 tree res
= gimple_call_lhs (t
);
4415 tree dest
= gimple_call_arg (t
, 0);
4416 if (res
!= NULL_TREE
)
4418 get_constraint_for (res
, &lhsc
);
4419 get_constraint_for (dest
, &rhsc
);
4420 process_all_all_constraints (lhsc
, rhsc
);
4424 /* All the following functions do not return pointers, do not
4425 modify the points-to sets of memory reachable from their
4426 arguments and do not add to the ESCAPED solution. */
4427 case BUILT_IN_SINCOS
:
4428 case BUILT_IN_SINCOSF
:
4429 case BUILT_IN_SINCOSL
:
4430 case BUILT_IN_FREXP
:
4431 case BUILT_IN_FREXPF
:
4432 case BUILT_IN_FREXPL
:
4433 case BUILT_IN_GAMMA_R
:
4434 case BUILT_IN_GAMMAF_R
:
4435 case BUILT_IN_GAMMAL_R
:
4436 case BUILT_IN_LGAMMA_R
:
4437 case BUILT_IN_LGAMMAF_R
:
4438 case BUILT_IN_LGAMMAL_R
:
4440 case BUILT_IN_MODFF
:
4441 case BUILT_IN_MODFL
:
4442 case BUILT_IN_REMQUO
:
4443 case BUILT_IN_REMQUOF
:
4444 case BUILT_IN_REMQUOL
:
4447 case BUILT_IN_STRDUP
:
4448 case BUILT_IN_STRNDUP
:
4449 case BUILT_IN_REALLOC
:
4450 if (gimple_call_lhs (t
))
4452 handle_lhs_call (t
, gimple_call_lhs (t
),
4453 gimple_call_return_flags (t
) | ERF_NOALIAS
,
4455 get_constraint_for_ptr_offset (gimple_call_lhs (t
),
4457 get_constraint_for_ptr_offset (gimple_call_arg (t
, 0),
4461 process_all_all_constraints (lhsc
, rhsc
);
4464 /* For realloc the resulting pointer can be equal to the
4465 argument as well. But only doing this wouldn't be
4466 correct because with ptr == 0 realloc behaves like malloc. */
4467 if (DECL_FUNCTION_CODE (fndecl
) == BUILT_IN_REALLOC
)
4469 get_constraint_for (gimple_call_lhs (t
), &lhsc
);
4470 get_constraint_for (gimple_call_arg (t
, 0), &rhsc
);
4471 process_all_all_constraints (lhsc
, rhsc
);
4476 /* String / character search functions return a pointer into the
4477 source string or NULL. */
4478 case BUILT_IN_INDEX
:
4479 case BUILT_IN_STRCHR
:
4480 case BUILT_IN_STRRCHR
:
4481 case BUILT_IN_MEMCHR
:
4482 case BUILT_IN_STRSTR
:
4483 case BUILT_IN_STRPBRK
:
4484 if (gimple_call_lhs (t
))
4486 tree src
= gimple_call_arg (t
, 0);
4487 get_constraint_for_ptr_offset (src
, NULL_TREE
, &rhsc
);
4488 constraint_expr nul
;
4489 nul
.var
= nothing_id
;
4491 nul
.type
= ADDRESSOF
;
4492 rhsc
.safe_push (nul
);
4493 get_constraint_for (gimple_call_lhs (t
), &lhsc
);
4494 process_all_all_constraints (lhsc
, rhsc
);
4497 /* Pure functions that return something not based on any object and
4498 that use the memory pointed to by their arguments (but not
4500 case BUILT_IN_STRCMP
:
4501 case BUILT_IN_STRCMP_EQ
:
4502 case BUILT_IN_STRNCMP
:
4503 case BUILT_IN_STRNCMP_EQ
:
4504 case BUILT_IN_STRCASECMP
:
4505 case BUILT_IN_STRNCASECMP
:
4506 case BUILT_IN_MEMCMP
:
4508 case BUILT_IN_STRSPN
:
4509 case BUILT_IN_STRCSPN
:
4511 varinfo_t uses
= get_call_use_vi (t
);
4512 make_any_offset_constraints (uses
);
4513 make_constraint_to (uses
->id
, gimple_call_arg (t
, 0));
4514 make_constraint_to (uses
->id
, gimple_call_arg (t
, 1));
4515 /* No constraints are necessary for the return value. */
4518 case BUILT_IN_STRLEN
:
4520 varinfo_t uses
= get_call_use_vi (t
);
4521 make_any_offset_constraints (uses
);
4522 make_constraint_to (uses
->id
, gimple_call_arg (t
, 0));
4523 /* No constraints are necessary for the return value. */
4526 case BUILT_IN_OBJECT_SIZE
:
4527 case BUILT_IN_CONSTANT_P
:
4529 /* No constraints are necessary for the return value or the
4533 /* Trampolines are special - they set up passing the static
4535 case BUILT_IN_INIT_TRAMPOLINE
:
4537 tree tramp
= gimple_call_arg (t
, 0);
4538 tree nfunc
= gimple_call_arg (t
, 1);
4539 tree frame
= gimple_call_arg (t
, 2);
4541 struct constraint_expr lhs
, *rhsp
;
4544 varinfo_t nfi
= NULL
;
4545 gcc_assert (TREE_CODE (nfunc
) == ADDR_EXPR
);
4546 nfi
= lookup_vi_for_tree (TREE_OPERAND (nfunc
, 0));
4549 lhs
= get_function_part_constraint (nfi
, fi_static_chain
);
4550 get_constraint_for (frame
, &rhsc
);
4551 FOR_EACH_VEC_ELT (rhsc
, i
, rhsp
)
4552 process_constraint (new_constraint (lhs
, *rhsp
));
4555 /* Make the frame point to the function for
4556 the trampoline adjustment call. */
4557 get_constraint_for (tramp
, &lhsc
);
4559 get_constraint_for (nfunc
, &rhsc
);
4560 process_all_all_constraints (lhsc
, rhsc
);
4565 /* Else fallthru to generic handling which will let
4566 the frame escape. */
4569 case BUILT_IN_ADJUST_TRAMPOLINE
:
4571 tree tramp
= gimple_call_arg (t
, 0);
4572 tree res
= gimple_call_lhs (t
);
4573 if (in_ipa_mode
&& res
)
4575 get_constraint_for (res
, &lhsc
);
4576 get_constraint_for (tramp
, &rhsc
);
4578 process_all_all_constraints (lhsc
, rhsc
);
4582 CASE_BUILT_IN_TM_STORE (1):
4583 CASE_BUILT_IN_TM_STORE (2):
4584 CASE_BUILT_IN_TM_STORE (4):
4585 CASE_BUILT_IN_TM_STORE (8):
4586 CASE_BUILT_IN_TM_STORE (FLOAT
):
4587 CASE_BUILT_IN_TM_STORE (DOUBLE
):
4588 CASE_BUILT_IN_TM_STORE (LDOUBLE
):
4589 CASE_BUILT_IN_TM_STORE (M64
):
4590 CASE_BUILT_IN_TM_STORE (M128
):
4591 CASE_BUILT_IN_TM_STORE (M256
):
4593 tree addr
= gimple_call_arg (t
, 0);
4594 tree src
= gimple_call_arg (t
, 1);
4596 get_constraint_for (addr
, &lhsc
);
4598 get_constraint_for (src
, &rhsc
);
4599 process_all_all_constraints (lhsc
, rhsc
);
4602 CASE_BUILT_IN_TM_LOAD (1):
4603 CASE_BUILT_IN_TM_LOAD (2):
4604 CASE_BUILT_IN_TM_LOAD (4):
4605 CASE_BUILT_IN_TM_LOAD (8):
4606 CASE_BUILT_IN_TM_LOAD (FLOAT
):
4607 CASE_BUILT_IN_TM_LOAD (DOUBLE
):
4608 CASE_BUILT_IN_TM_LOAD (LDOUBLE
):
4609 CASE_BUILT_IN_TM_LOAD (M64
):
4610 CASE_BUILT_IN_TM_LOAD (M128
):
4611 CASE_BUILT_IN_TM_LOAD (M256
):
4613 tree dest
= gimple_call_lhs (t
);
4614 tree addr
= gimple_call_arg (t
, 0);
4616 get_constraint_for (dest
, &lhsc
);
4617 get_constraint_for (addr
, &rhsc
);
4619 process_all_all_constraints (lhsc
, rhsc
);
4622 /* Variadic argument handling needs to be handled in IPA
4624 case BUILT_IN_VA_START
:
4626 tree valist
= gimple_call_arg (t
, 0);
4627 struct constraint_expr rhs
, *lhsp
;
4629 get_constraint_for_ptr_offset (valist
, NULL_TREE
, &lhsc
);
4631 /* The va_list gets access to pointers in variadic
4632 arguments. Which we know in the case of IPA analysis
4633 and otherwise are just all nonlocal variables. */
4636 fi
= lookup_vi_for_tree (fn
->decl
);
4637 rhs
= get_function_part_constraint (fi
, ~0);
4638 rhs
.type
= ADDRESSOF
;
4642 rhs
.var
= nonlocal_id
;
4643 rhs
.type
= ADDRESSOF
;
4646 FOR_EACH_VEC_ELT (lhsc
, i
, lhsp
)
4647 process_constraint (new_constraint (*lhsp
, rhs
));
4648 /* va_list is clobbered. */
4649 make_constraint_to (get_call_clobber_vi (t
)->id
, valist
);
4652 /* va_end doesn't have any effect that matters. */
4653 case BUILT_IN_VA_END
:
4655 /* Alternate return. Simply give up for now. */
4656 case BUILT_IN_RETURN
:
4660 || !(fi
= get_vi_for_tree (fn
->decl
)))
4661 make_constraint_from (get_varinfo (escaped_id
), anything_id
);
4662 else if (in_ipa_mode
4665 struct constraint_expr lhs
, rhs
;
4666 lhs
= get_function_part_constraint (fi
, fi_result
);
4667 rhs
.var
= anything_id
;
4670 process_constraint (new_constraint (lhs
, rhs
));
4674 case BUILT_IN_GOMP_PARALLEL
:
4675 case BUILT_IN_GOACC_PARALLEL
:
4679 unsigned int fnpos
, argpos
;
4680 switch (DECL_FUNCTION_CODE (fndecl
))
4682 case BUILT_IN_GOMP_PARALLEL
:
4683 /* __builtin_GOMP_parallel (fn, data, num_threads, flags). */
4687 case BUILT_IN_GOACC_PARALLEL
:
4688 /* __builtin_GOACC_parallel (device, fn, mapnum, hostaddrs,
4689 sizes, kinds, ...). */
4697 tree fnarg
= gimple_call_arg (t
, fnpos
);
4698 gcc_assert (TREE_CODE (fnarg
) == ADDR_EXPR
);
4699 tree fndecl
= TREE_OPERAND (fnarg
, 0);
4700 if (fndecl_maybe_in_other_partition (fndecl
))
4701 /* Fallthru to general call handling. */
4704 tree arg
= gimple_call_arg (t
, argpos
);
4706 varinfo_t fi
= get_vi_for_tree (fndecl
);
4707 find_func_aliases_for_call_arg (fi
, 0, arg
);
4710 /* Else fallthru to generic call handling. */
4713 /* printf-style functions may have hooks to set pointers to
4714 point to somewhere into the generated string. Leave them
4715 for a later exercise... */
4717 /* Fallthru to general call handling. */;
4723 /* Create constraints for the call T. */
4726 find_func_aliases_for_call (struct function
*fn
, gcall
*t
)
4728 tree fndecl
= gimple_call_fndecl (t
);
4731 if (fndecl
!= NULL_TREE
4732 && DECL_BUILT_IN (fndecl
)
4733 && find_func_aliases_for_builtin_call (fn
, t
))
4736 fi
= get_fi_for_callee (t
);
4738 || (fi
->decl
&& fndecl
&& !fi
->is_fn_info
))
4740 auto_vec
<ce_s
, 16> rhsc
;
4741 int flags
= gimple_call_flags (t
);
4743 /* Const functions can return their arguments and addresses
4744 of global memory but not of escaped memory. */
4745 if (flags
& (ECF_CONST
|ECF_NOVOPS
))
4747 if (gimple_call_lhs (t
))
4748 handle_const_call (t
, &rhsc
);
4750 /* Pure functions can return addresses in and of memory
4751 reachable from their arguments, but they are not an escape
4752 point for reachable memory of their arguments. */
4753 else if (flags
& (ECF_PURE
|ECF_LOOPING_CONST_OR_PURE
))
4754 handle_pure_call (t
, &rhsc
);
4756 handle_rhs_call (t
, &rhsc
);
4757 if (gimple_call_lhs (t
))
4758 handle_lhs_call (t
, gimple_call_lhs (t
),
4759 gimple_call_return_flags (t
), rhsc
, fndecl
);
4763 auto_vec
<ce_s
, 2> rhsc
;
4767 /* Assign all the passed arguments to the appropriate incoming
4768 parameters of the function. */
4769 for (j
= 0; j
< gimple_call_num_args (t
); j
++)
4771 tree arg
= gimple_call_arg (t
, j
);
4772 find_func_aliases_for_call_arg (fi
, j
, arg
);
4775 /* If we are returning a value, assign it to the result. */
4776 lhsop
= gimple_call_lhs (t
);
4779 auto_vec
<ce_s
, 2> lhsc
;
4780 struct constraint_expr rhs
;
4781 struct constraint_expr
*lhsp
;
4782 bool aggr_p
= aggregate_value_p (lhsop
, gimple_call_fntype (t
));
4784 get_constraint_for (lhsop
, &lhsc
);
4785 rhs
= get_function_part_constraint (fi
, fi_result
);
4788 auto_vec
<ce_s
, 2> tem
;
4789 tem
.quick_push (rhs
);
4791 gcc_checking_assert (tem
.length () == 1);
4794 FOR_EACH_VEC_ELT (lhsc
, j
, lhsp
)
4795 process_constraint (new_constraint (*lhsp
, rhs
));
4797 /* If we pass the result decl by reference, honor that. */
4800 struct constraint_expr lhs
;
4801 struct constraint_expr
*rhsp
;
4803 get_constraint_for_address_of (lhsop
, &rhsc
);
4804 lhs
= get_function_part_constraint (fi
, fi_result
);
4805 FOR_EACH_VEC_ELT (rhsc
, j
, rhsp
)
4806 process_constraint (new_constraint (lhs
, *rhsp
));
4811 /* If we use a static chain, pass it along. */
4812 if (gimple_call_chain (t
))
4814 struct constraint_expr lhs
;
4815 struct constraint_expr
*rhsp
;
4817 get_constraint_for (gimple_call_chain (t
), &rhsc
);
4818 lhs
= get_function_part_constraint (fi
, fi_static_chain
);
4819 FOR_EACH_VEC_ELT (rhsc
, j
, rhsp
)
4820 process_constraint (new_constraint (lhs
, *rhsp
));
4825 /* Walk statement T setting up aliasing constraints according to the
4826 references found in T. This function is the main part of the
4827 constraint builder. AI points to auxiliary alias information used
4828 when building alias sets and computing alias grouping heuristics. */
4831 find_func_aliases (struct function
*fn
, gimple
*origt
)
4834 auto_vec
<ce_s
, 16> lhsc
;
4835 auto_vec
<ce_s
, 16> rhsc
;
4836 struct constraint_expr
*c
;
4839 /* Now build constraints expressions. */
4840 if (gimple_code (t
) == GIMPLE_PHI
)
4845 /* For a phi node, assign all the arguments to
4847 get_constraint_for (gimple_phi_result (t
), &lhsc
);
4848 for (i
= 0; i
< gimple_phi_num_args (t
); i
++)
4850 tree strippedrhs
= PHI_ARG_DEF (t
, i
);
4852 STRIP_NOPS (strippedrhs
);
4853 get_constraint_for_rhs (gimple_phi_arg_def (t
, i
), &rhsc
);
4855 FOR_EACH_VEC_ELT (lhsc
, j
, c
)
4857 struct constraint_expr
*c2
;
4858 while (rhsc
.length () > 0)
4861 process_constraint (new_constraint (*c
, *c2
));
4867 /* In IPA mode, we need to generate constraints to pass call
4868 arguments through their calls. There are two cases,
4869 either a GIMPLE_CALL returning a value, or just a plain
4870 GIMPLE_CALL when we are not.
4872 In non-ipa mode, we need to generate constraints for each
4873 pointer passed by address. */
4874 else if (is_gimple_call (t
))
4875 find_func_aliases_for_call (fn
, as_a
<gcall
*> (t
));
4877 /* Otherwise, just a regular assignment statement. Only care about
4878 operations with pointer result, others are dealt with as escape
4879 points if they have pointer operands. */
4880 else if (is_gimple_assign (t
))
4882 /* Otherwise, just a regular assignment statement. */
4883 tree lhsop
= gimple_assign_lhs (t
);
4884 tree rhsop
= (gimple_num_ops (t
) == 2) ? gimple_assign_rhs1 (t
) : NULL
;
4886 if (rhsop
&& TREE_CLOBBER_P (rhsop
))
4887 /* Ignore clobbers, they don't actually store anything into
4890 else if (rhsop
&& AGGREGATE_TYPE_P (TREE_TYPE (lhsop
)))
4891 do_structure_copy (lhsop
, rhsop
);
4894 enum tree_code code
= gimple_assign_rhs_code (t
);
4896 get_constraint_for (lhsop
, &lhsc
);
4898 if (code
== POINTER_PLUS_EXPR
)
4899 get_constraint_for_ptr_offset (gimple_assign_rhs1 (t
),
4900 gimple_assign_rhs2 (t
), &rhsc
);
4901 else if (code
== BIT_AND_EXPR
4902 && TREE_CODE (gimple_assign_rhs2 (t
)) == INTEGER_CST
)
4904 /* Aligning a pointer via a BIT_AND_EXPR is offsetting
4905 the pointer. Handle it by offsetting it by UNKNOWN. */
4906 get_constraint_for_ptr_offset (gimple_assign_rhs1 (t
),
4909 else if ((CONVERT_EXPR_CODE_P (code
)
4910 && !(POINTER_TYPE_P (gimple_expr_type (t
))
4911 && !POINTER_TYPE_P (TREE_TYPE (rhsop
))))
4912 || gimple_assign_single_p (t
))
4913 get_constraint_for_rhs (rhsop
, &rhsc
);
4914 else if (code
== COND_EXPR
)
4916 /* The result is a merge of both COND_EXPR arms. */
4917 auto_vec
<ce_s
, 2> tmp
;
4918 struct constraint_expr
*rhsp
;
4920 get_constraint_for_rhs (gimple_assign_rhs2 (t
), &rhsc
);
4921 get_constraint_for_rhs (gimple_assign_rhs3 (t
), &tmp
);
4922 FOR_EACH_VEC_ELT (tmp
, i
, rhsp
)
4923 rhsc
.safe_push (*rhsp
);
4925 else if (truth_value_p (code
))
4926 /* Truth value results are not pointer (parts). Or at least
4927 very unreasonable obfuscation of a part. */
4931 /* All other operations are merges. */
4932 auto_vec
<ce_s
, 4> tmp
;
4933 struct constraint_expr
*rhsp
;
4935 get_constraint_for_rhs (gimple_assign_rhs1 (t
), &rhsc
);
4936 for (i
= 2; i
< gimple_num_ops (t
); ++i
)
4938 get_constraint_for_rhs (gimple_op (t
, i
), &tmp
);
4939 FOR_EACH_VEC_ELT (tmp
, j
, rhsp
)
4940 rhsc
.safe_push (*rhsp
);
4944 process_all_all_constraints (lhsc
, rhsc
);
4946 /* If there is a store to a global variable the rhs escapes. */
4947 if ((lhsop
= get_base_address (lhsop
)) != NULL_TREE
4950 varinfo_t vi
= get_vi_for_tree (lhsop
);
4951 if ((! in_ipa_mode
&& vi
->is_global_var
)
4952 || vi
->is_ipa_escape_point
)
4953 make_escape_constraint (rhsop
);
4956 /* Handle escapes through return. */
4957 else if (gimple_code (t
) == GIMPLE_RETURN
4958 && gimple_return_retval (as_a
<greturn
*> (t
)) != NULL_TREE
)
4960 greturn
*return_stmt
= as_a
<greturn
*> (t
);
4963 || !(fi
= get_vi_for_tree (fn
->decl
)))
4964 make_escape_constraint (gimple_return_retval (return_stmt
));
4965 else if (in_ipa_mode
)
4967 struct constraint_expr lhs
;
4968 struct constraint_expr
*rhsp
;
4971 lhs
= get_function_part_constraint (fi
, fi_result
);
4972 get_constraint_for_rhs (gimple_return_retval (return_stmt
), &rhsc
);
4973 FOR_EACH_VEC_ELT (rhsc
, i
, rhsp
)
4974 process_constraint (new_constraint (lhs
, *rhsp
));
4977 /* Handle asms conservatively by adding escape constraints to everything. */
4978 else if (gasm
*asm_stmt
= dyn_cast
<gasm
*> (t
))
4980 unsigned i
, noutputs
;
4981 const char **oconstraints
;
4982 const char *constraint
;
4983 bool allows_mem
, allows_reg
, is_inout
;
4985 noutputs
= gimple_asm_noutputs (asm_stmt
);
4986 oconstraints
= XALLOCAVEC (const char *, noutputs
);
4988 for (i
= 0; i
< noutputs
; ++i
)
4990 tree link
= gimple_asm_output_op (asm_stmt
, i
);
4991 tree op
= TREE_VALUE (link
);
4993 constraint
= TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (link
)));
4994 oconstraints
[i
] = constraint
;
4995 parse_output_constraint (&constraint
, i
, 0, 0, &allows_mem
,
4996 &allows_reg
, &is_inout
);
4998 /* A memory constraint makes the address of the operand escape. */
4999 if (!allows_reg
&& allows_mem
)
5000 make_escape_constraint (build_fold_addr_expr (op
));
5002 /* The asm may read global memory, so outputs may point to
5003 any global memory. */
5006 auto_vec
<ce_s
, 2> lhsc
;
5007 struct constraint_expr rhsc
, *lhsp
;
5009 get_constraint_for (op
, &lhsc
);
5010 rhsc
.var
= nonlocal_id
;
5013 FOR_EACH_VEC_ELT (lhsc
, j
, lhsp
)
5014 process_constraint (new_constraint (*lhsp
, rhsc
));
5017 for (i
= 0; i
< gimple_asm_ninputs (asm_stmt
); ++i
)
5019 tree link
= gimple_asm_input_op (asm_stmt
, i
);
5020 tree op
= TREE_VALUE (link
);
5022 constraint
= TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (link
)));
5024 parse_input_constraint (&constraint
, 0, 0, noutputs
, 0, oconstraints
,
5025 &allows_mem
, &allows_reg
);
5027 /* A memory constraint makes the address of the operand escape. */
5028 if (!allows_reg
&& allows_mem
)
5029 make_escape_constraint (build_fold_addr_expr (op
));
5030 /* Strictly we'd only need the constraint to ESCAPED if
5031 the asm clobbers memory, otherwise using something
5032 along the lines of per-call clobbers/uses would be enough. */
5034 make_escape_constraint (op
);
5040 /* Create a constraint adding to the clobber set of FI the memory
5041 pointed to by PTR. */
5044 process_ipa_clobber (varinfo_t fi
, tree ptr
)
5046 vec
<ce_s
> ptrc
= vNULL
;
5047 struct constraint_expr
*c
, lhs
;
5049 get_constraint_for_rhs (ptr
, &ptrc
);
5050 lhs
= get_function_part_constraint (fi
, fi_clobbers
);
5051 FOR_EACH_VEC_ELT (ptrc
, i
, c
)
5052 process_constraint (new_constraint (lhs
, *c
));
5056 /* Walk statement T setting up clobber and use constraints according to the
5057 references found in T. This function is a main part of the
5058 IPA constraint builder. */
5061 find_func_clobbers (struct function
*fn
, gimple
*origt
)
5064 auto_vec
<ce_s
, 16> lhsc
;
5065 auto_vec
<ce_s
, 16> rhsc
;
5068 /* Add constraints for clobbered/used in IPA mode.
5069 We are not interested in what automatic variables are clobbered
5070 or used as we only use the information in the caller to which
5071 they do not escape. */
5072 gcc_assert (in_ipa_mode
);
5074 /* If the stmt refers to memory in any way it better had a VUSE. */
5075 if (gimple_vuse (t
) == NULL_TREE
)
5078 /* We'd better have function information for the current function. */
5079 fi
= lookup_vi_for_tree (fn
->decl
);
5080 gcc_assert (fi
!= NULL
);
5082 /* Account for stores in assignments and calls. */
5083 if (gimple_vdef (t
) != NULL_TREE
5084 && gimple_has_lhs (t
))
5086 tree lhs
= gimple_get_lhs (t
);
5088 while (handled_component_p (tem
))
5089 tem
= TREE_OPERAND (tem
, 0);
5091 && !auto_var_in_fn_p (tem
, fn
->decl
))
5092 || INDIRECT_REF_P (tem
)
5093 || (TREE_CODE (tem
) == MEM_REF
5094 && !(TREE_CODE (TREE_OPERAND (tem
, 0)) == ADDR_EXPR
5096 (TREE_OPERAND (TREE_OPERAND (tem
, 0), 0), fn
->decl
))))
5098 struct constraint_expr lhsc
, *rhsp
;
5100 lhsc
= get_function_part_constraint (fi
, fi_clobbers
);
5101 get_constraint_for_address_of (lhs
, &rhsc
);
5102 FOR_EACH_VEC_ELT (rhsc
, i
, rhsp
)
5103 process_constraint (new_constraint (lhsc
, *rhsp
));
5108 /* Account for uses in assigments and returns. */
5109 if (gimple_assign_single_p (t
)
5110 || (gimple_code (t
) == GIMPLE_RETURN
5111 && gimple_return_retval (as_a
<greturn
*> (t
)) != NULL_TREE
))
5113 tree rhs
= (gimple_assign_single_p (t
)
5114 ? gimple_assign_rhs1 (t
)
5115 : gimple_return_retval (as_a
<greturn
*> (t
)));
5117 while (handled_component_p (tem
))
5118 tem
= TREE_OPERAND (tem
, 0);
5120 && !auto_var_in_fn_p (tem
, fn
->decl
))
5121 || INDIRECT_REF_P (tem
)
5122 || (TREE_CODE (tem
) == MEM_REF
5123 && !(TREE_CODE (TREE_OPERAND (tem
, 0)) == ADDR_EXPR
5125 (TREE_OPERAND (TREE_OPERAND (tem
, 0), 0), fn
->decl
))))
5127 struct constraint_expr lhs
, *rhsp
;
5129 lhs
= get_function_part_constraint (fi
, fi_uses
);
5130 get_constraint_for_address_of (rhs
, &rhsc
);
5131 FOR_EACH_VEC_ELT (rhsc
, i
, rhsp
)
5132 process_constraint (new_constraint (lhs
, *rhsp
));
5137 if (gcall
*call_stmt
= dyn_cast
<gcall
*> (t
))
5139 varinfo_t cfi
= NULL
;
5140 tree decl
= gimple_call_fndecl (t
);
5141 struct constraint_expr lhs
, rhs
;
5144 /* For builtins we do not have separate function info. For those
5145 we do not generate escapes for we have to generate clobbers/uses. */
5146 if (gimple_call_builtin_p (t
, BUILT_IN_NORMAL
))
5147 switch (DECL_FUNCTION_CODE (decl
))
5149 /* The following functions use and clobber memory pointed to
5150 by their arguments. */
5151 case BUILT_IN_STRCPY
:
5152 case BUILT_IN_STRNCPY
:
5153 case BUILT_IN_BCOPY
:
5154 case BUILT_IN_MEMCPY
:
5155 case BUILT_IN_MEMMOVE
:
5156 case BUILT_IN_MEMPCPY
:
5157 case BUILT_IN_STPCPY
:
5158 case BUILT_IN_STPNCPY
:
5159 case BUILT_IN_STRCAT
:
5160 case BUILT_IN_STRNCAT
:
5161 case BUILT_IN_STRCPY_CHK
:
5162 case BUILT_IN_STRNCPY_CHK
:
5163 case BUILT_IN_MEMCPY_CHK
:
5164 case BUILT_IN_MEMMOVE_CHK
:
5165 case BUILT_IN_MEMPCPY_CHK
:
5166 case BUILT_IN_STPCPY_CHK
:
5167 case BUILT_IN_STPNCPY_CHK
:
5168 case BUILT_IN_STRCAT_CHK
:
5169 case BUILT_IN_STRNCAT_CHK
:
5171 tree dest
= gimple_call_arg (t
, (DECL_FUNCTION_CODE (decl
)
5172 == BUILT_IN_BCOPY
? 1 : 0));
5173 tree src
= gimple_call_arg (t
, (DECL_FUNCTION_CODE (decl
)
5174 == BUILT_IN_BCOPY
? 0 : 1));
5176 struct constraint_expr
*rhsp
, *lhsp
;
5177 get_constraint_for_ptr_offset (dest
, NULL_TREE
, &lhsc
);
5178 lhs
= get_function_part_constraint (fi
, fi_clobbers
);
5179 FOR_EACH_VEC_ELT (lhsc
, i
, lhsp
)
5180 process_constraint (new_constraint (lhs
, *lhsp
));
5181 get_constraint_for_ptr_offset (src
, NULL_TREE
, &rhsc
);
5182 lhs
= get_function_part_constraint (fi
, fi_uses
);
5183 FOR_EACH_VEC_ELT (rhsc
, i
, rhsp
)
5184 process_constraint (new_constraint (lhs
, *rhsp
));
5187 /* The following function clobbers memory pointed to by
5189 case BUILT_IN_MEMSET
:
5190 case BUILT_IN_MEMSET_CHK
:
5191 case BUILT_IN_POSIX_MEMALIGN
:
5193 tree dest
= gimple_call_arg (t
, 0);
5196 get_constraint_for_ptr_offset (dest
, NULL_TREE
, &lhsc
);
5197 lhs
= get_function_part_constraint (fi
, fi_clobbers
);
5198 FOR_EACH_VEC_ELT (lhsc
, i
, lhsp
)
5199 process_constraint (new_constraint (lhs
, *lhsp
));
5202 /* The following functions clobber their second and third
5204 case BUILT_IN_SINCOS
:
5205 case BUILT_IN_SINCOSF
:
5206 case BUILT_IN_SINCOSL
:
5208 process_ipa_clobber (fi
, gimple_call_arg (t
, 1));
5209 process_ipa_clobber (fi
, gimple_call_arg (t
, 2));
5212 /* The following functions clobber their second argument. */
5213 case BUILT_IN_FREXP
:
5214 case BUILT_IN_FREXPF
:
5215 case BUILT_IN_FREXPL
:
5216 case BUILT_IN_LGAMMA_R
:
5217 case BUILT_IN_LGAMMAF_R
:
5218 case BUILT_IN_LGAMMAL_R
:
5219 case BUILT_IN_GAMMA_R
:
5220 case BUILT_IN_GAMMAF_R
:
5221 case BUILT_IN_GAMMAL_R
:
5223 case BUILT_IN_MODFF
:
5224 case BUILT_IN_MODFL
:
5226 process_ipa_clobber (fi
, gimple_call_arg (t
, 1));
5229 /* The following functions clobber their third argument. */
5230 case BUILT_IN_REMQUO
:
5231 case BUILT_IN_REMQUOF
:
5232 case BUILT_IN_REMQUOL
:
5234 process_ipa_clobber (fi
, gimple_call_arg (t
, 2));
5237 /* The following functions neither read nor clobber memory. */
5238 case BUILT_IN_ASSUME_ALIGNED
:
5241 /* Trampolines are of no interest to us. */
5242 case BUILT_IN_INIT_TRAMPOLINE
:
5243 case BUILT_IN_ADJUST_TRAMPOLINE
:
5245 case BUILT_IN_VA_START
:
5246 case BUILT_IN_VA_END
:
5248 case BUILT_IN_GOMP_PARALLEL
:
5249 case BUILT_IN_GOACC_PARALLEL
:
5251 unsigned int fnpos
, argpos
;
5252 unsigned int implicit_use_args
[2];
5253 unsigned int num_implicit_use_args
= 0;
5254 switch (DECL_FUNCTION_CODE (decl
))
5256 case BUILT_IN_GOMP_PARALLEL
:
5257 /* __builtin_GOMP_parallel (fn, data, num_threads, flags). */
5261 case BUILT_IN_GOACC_PARALLEL
:
5262 /* __builtin_GOACC_parallel (device, fn, mapnum, hostaddrs,
5263 sizes, kinds, ...). */
5266 implicit_use_args
[num_implicit_use_args
++] = 4;
5267 implicit_use_args
[num_implicit_use_args
++] = 5;
5273 tree fnarg
= gimple_call_arg (t
, fnpos
);
5274 gcc_assert (TREE_CODE (fnarg
) == ADDR_EXPR
);
5275 tree fndecl
= TREE_OPERAND (fnarg
, 0);
5276 if (fndecl_maybe_in_other_partition (fndecl
))
5277 /* Fallthru to general call handling. */
5280 varinfo_t cfi
= get_vi_for_tree (fndecl
);
5282 tree arg
= gimple_call_arg (t
, argpos
);
5284 /* Parameter passed by value is used. */
5285 lhs
= get_function_part_constraint (fi
, fi_uses
);
5286 struct constraint_expr
*rhsp
;
5287 get_constraint_for (arg
, &rhsc
);
5288 FOR_EACH_VEC_ELT (rhsc
, j
, rhsp
)
5289 process_constraint (new_constraint (lhs
, *rhsp
));
5292 /* Handle parameters used by the call, but not used in cfi, as
5293 implicitly used by cfi. */
5294 lhs
= get_function_part_constraint (cfi
, fi_uses
);
5295 for (unsigned i
= 0; i
< num_implicit_use_args
; ++i
)
5297 tree arg
= gimple_call_arg (t
, implicit_use_args
[i
]);
5298 get_constraint_for (arg
, &rhsc
);
5299 FOR_EACH_VEC_ELT (rhsc
, j
, rhsp
)
5300 process_constraint (new_constraint (lhs
, *rhsp
));
5304 /* The caller clobbers what the callee does. */
5305 lhs
= get_function_part_constraint (fi
, fi_clobbers
);
5306 rhs
= get_function_part_constraint (cfi
, fi_clobbers
);
5307 process_constraint (new_constraint (lhs
, rhs
));
5309 /* The caller uses what the callee does. */
5310 lhs
= get_function_part_constraint (fi
, fi_uses
);
5311 rhs
= get_function_part_constraint (cfi
, fi_uses
);
5312 process_constraint (new_constraint (lhs
, rhs
));
5316 /* printf-style functions may have hooks to set pointers to
5317 point to somewhere into the generated string. Leave them
5318 for a later exercise... */
5320 /* Fallthru to general call handling. */;
5323 /* Parameters passed by value are used. */
5324 lhs
= get_function_part_constraint (fi
, fi_uses
);
5325 for (i
= 0; i
< gimple_call_num_args (t
); i
++)
5327 struct constraint_expr
*rhsp
;
5328 tree arg
= gimple_call_arg (t
, i
);
5330 if (TREE_CODE (arg
) == SSA_NAME
5331 || is_gimple_min_invariant (arg
))
5334 get_constraint_for_address_of (arg
, &rhsc
);
5335 FOR_EACH_VEC_ELT (rhsc
, j
, rhsp
)
5336 process_constraint (new_constraint (lhs
, *rhsp
));
5340 /* Build constraints for propagating clobbers/uses along the
5342 cfi
= get_fi_for_callee (call_stmt
);
5343 if (cfi
->id
== anything_id
)
5345 if (gimple_vdef (t
))
5346 make_constraint_from (first_vi_for_offset (fi
, fi_clobbers
),
5348 make_constraint_from (first_vi_for_offset (fi
, fi_uses
),
5353 /* For callees without function info (that's external functions),
5354 ESCAPED is clobbered and used. */
5356 && TREE_CODE (cfi
->decl
) == FUNCTION_DECL
5357 && !cfi
->is_fn_info
)
5361 if (gimple_vdef (t
))
5362 make_copy_constraint (first_vi_for_offset (fi
, fi_clobbers
),
5364 make_copy_constraint (first_vi_for_offset (fi
, fi_uses
), escaped_id
);
5366 /* Also honor the call statement use/clobber info. */
5367 if ((vi
= lookup_call_clobber_vi (call_stmt
)) != NULL
)
5368 make_copy_constraint (first_vi_for_offset (fi
, fi_clobbers
),
5370 if ((vi
= lookup_call_use_vi (call_stmt
)) != NULL
)
5371 make_copy_constraint (first_vi_for_offset (fi
, fi_uses
),
5376 /* Otherwise the caller clobbers and uses what the callee does.
5377 ??? This should use a new complex constraint that filters
5378 local variables of the callee. */
5379 if (gimple_vdef (t
))
5381 lhs
= get_function_part_constraint (fi
, fi_clobbers
);
5382 rhs
= get_function_part_constraint (cfi
, fi_clobbers
);
5383 process_constraint (new_constraint (lhs
, rhs
));
5385 lhs
= get_function_part_constraint (fi
, fi_uses
);
5386 rhs
= get_function_part_constraint (cfi
, fi_uses
);
5387 process_constraint (new_constraint (lhs
, rhs
));
5389 else if (gimple_code (t
) == GIMPLE_ASM
)
5391 /* ??? Ick. We can do better. */
5392 if (gimple_vdef (t
))
5393 make_constraint_from (first_vi_for_offset (fi
, fi_clobbers
),
5395 make_constraint_from (first_vi_for_offset (fi
, fi_uses
),
5401 /* Find the first varinfo in the same variable as START that overlaps with
5402 OFFSET. Return NULL if we can't find one. */
5405 first_vi_for_offset (varinfo_t start
, unsigned HOST_WIDE_INT offset
)
5407 /* If the offset is outside of the variable, bail out. */
5408 if (offset
>= start
->fullsize
)
5411 /* If we cannot reach offset from start, lookup the first field
5412 and start from there. */
5413 if (start
->offset
> offset
)
5414 start
= get_varinfo (start
->head
);
5418 /* We may not find a variable in the field list with the actual
5419 offset when we have glommed a structure to a variable.
5420 In that case, however, offset should still be within the size
5422 if (offset
>= start
->offset
5423 && (offset
- start
->offset
) < start
->size
)
5426 start
= vi_next (start
);
5432 /* Find the first varinfo in the same variable as START that overlaps with
5433 OFFSET. If there is no such varinfo the varinfo directly preceding
5434 OFFSET is returned. */
5437 first_or_preceding_vi_for_offset (varinfo_t start
,
5438 unsigned HOST_WIDE_INT offset
)
5440 /* If we cannot reach offset from start, lookup the first field
5441 and start from there. */
5442 if (start
->offset
> offset
)
5443 start
= get_varinfo (start
->head
);
5445 /* We may not find a variable in the field list with the actual
5446 offset when we have glommed a structure to a variable.
5447 In that case, however, offset should still be within the size
5449 If we got beyond the offset we look for return the field
5450 directly preceding offset which may be the last field. */
5452 && offset
>= start
->offset
5453 && !((offset
- start
->offset
) < start
->size
))
5454 start
= vi_next (start
);
5460 /* This structure is used during pushing fields onto the fieldstack
5461 to track the offset of the field, since bitpos_of_field gives it
5462 relative to its immediate containing type, and we want it relative
5463 to the ultimate containing object. */
5467 /* Offset from the base of the base containing object to this field. */
5468 HOST_WIDE_INT offset
;
5470 /* Size, in bits, of the field. */
5471 unsigned HOST_WIDE_INT size
;
5473 unsigned has_unknown_size
: 1;
5475 unsigned must_have_pointers
: 1;
5477 unsigned may_have_pointers
: 1;
5479 unsigned only_restrict_pointers
: 1;
5481 tree restrict_pointed_type
;
5483 typedef struct fieldoff fieldoff_s
;
5486 /* qsort comparison function for two fieldoff's PA and PB */
5489 fieldoff_compare (const void *pa
, const void *pb
)
5491 const fieldoff_s
*foa
= (const fieldoff_s
*)pa
;
5492 const fieldoff_s
*fob
= (const fieldoff_s
*)pb
;
5493 unsigned HOST_WIDE_INT foasize
, fobsize
;
5495 if (foa
->offset
< fob
->offset
)
5497 else if (foa
->offset
> fob
->offset
)
5500 foasize
= foa
->size
;
5501 fobsize
= fob
->size
;
5502 if (foasize
< fobsize
)
5504 else if (foasize
> fobsize
)
5509 /* Sort a fieldstack according to the field offset and sizes. */
5511 sort_fieldstack (vec
<fieldoff_s
> fieldstack
)
5513 fieldstack
.qsort (fieldoff_compare
);
5516 /* Return true if T is a type that can have subvars. */
5519 type_can_have_subvars (const_tree t
)
5521 /* Aggregates without overlapping fields can have subvars. */
5522 return TREE_CODE (t
) == RECORD_TYPE
;
5525 /* Return true if V is a tree that we can have subvars for.
5526 Normally, this is any aggregate type. Also complex
5527 types which are not gimple registers can have subvars. */
5530 var_can_have_subvars (const_tree v
)
5532 /* Volatile variables should never have subvars. */
5533 if (TREE_THIS_VOLATILE (v
))
5536 /* Non decls or memory tags can never have subvars. */
5540 return type_can_have_subvars (TREE_TYPE (v
));
5543 /* Return true if T is a type that does contain pointers. */
5546 type_must_have_pointers (tree type
)
5548 if (POINTER_TYPE_P (type
))
5551 if (TREE_CODE (type
) == ARRAY_TYPE
)
5552 return type_must_have_pointers (TREE_TYPE (type
));
5554 /* A function or method can have pointers as arguments, so track
5555 those separately. */
5556 if (TREE_CODE (type
) == FUNCTION_TYPE
5557 || TREE_CODE (type
) == METHOD_TYPE
)
5564 field_must_have_pointers (tree t
)
5566 return type_must_have_pointers (TREE_TYPE (t
));
5569 /* Given a TYPE, and a vector of field offsets FIELDSTACK, push all
5570 the fields of TYPE onto fieldstack, recording their offsets along
5573 OFFSET is used to keep track of the offset in this entire
5574 structure, rather than just the immediately containing structure.
5575 Returns false if the caller is supposed to handle the field we
5579 push_fields_onto_fieldstack (tree type
, vec
<fieldoff_s
> *fieldstack
,
5580 HOST_WIDE_INT offset
)
5583 bool empty_p
= true;
5585 if (TREE_CODE (type
) != RECORD_TYPE
)
5588 /* If the vector of fields is growing too big, bail out early.
5589 Callers check for vec::length <= MAX_FIELDS_FOR_FIELD_SENSITIVE, make
5591 if (fieldstack
->length () > MAX_FIELDS_FOR_FIELD_SENSITIVE
)
5594 for (field
= TYPE_FIELDS (type
); field
; field
= DECL_CHAIN (field
))
5595 if (TREE_CODE (field
) == FIELD_DECL
)
5598 HOST_WIDE_INT foff
= bitpos_of_field (field
);
5599 tree field_type
= TREE_TYPE (field
);
5601 if (!var_can_have_subvars (field
)
5602 || TREE_CODE (field_type
) == QUAL_UNION_TYPE
5603 || TREE_CODE (field_type
) == UNION_TYPE
)
5605 else if (!push_fields_onto_fieldstack
5606 (field_type
, fieldstack
, offset
+ foff
)
5607 && (DECL_SIZE (field
)
5608 && !integer_zerop (DECL_SIZE (field
))))
5609 /* Empty structures may have actual size, like in C++. So
5610 see if we didn't push any subfields and the size is
5611 nonzero, push the field onto the stack. */
5616 fieldoff_s
*pair
= NULL
;
5617 bool has_unknown_size
= false;
5618 bool must_have_pointers_p
;
5620 if (!fieldstack
->is_empty ())
5621 pair
= &fieldstack
->last ();
5623 /* If there isn't anything at offset zero, create sth. */
5625 && offset
+ foff
!= 0)
5628 = {0, offset
+ foff
, false, false, true, false, NULL_TREE
};
5629 pair
= fieldstack
->safe_push (e
);
5632 if (!DECL_SIZE (field
)
5633 || !tree_fits_uhwi_p (DECL_SIZE (field
)))
5634 has_unknown_size
= true;
5636 /* If adjacent fields do not contain pointers merge them. */
5637 must_have_pointers_p
= field_must_have_pointers (field
);
5639 && !has_unknown_size
5640 && !must_have_pointers_p
5641 && !pair
->must_have_pointers
5642 && !pair
->has_unknown_size
5643 && pair
->offset
+ (HOST_WIDE_INT
)pair
->size
== offset
+ foff
)
5645 pair
->size
+= tree_to_uhwi (DECL_SIZE (field
));
5650 e
.offset
= offset
+ foff
;
5651 e
.has_unknown_size
= has_unknown_size
;
5652 if (!has_unknown_size
)
5653 e
.size
= tree_to_uhwi (DECL_SIZE (field
));
5656 e
.must_have_pointers
= must_have_pointers_p
;
5657 e
.may_have_pointers
= true;
5658 e
.only_restrict_pointers
5659 = (!has_unknown_size
5660 && POINTER_TYPE_P (field_type
)
5661 && TYPE_RESTRICT (field_type
));
5662 if (e
.only_restrict_pointers
)
5663 e
.restrict_pointed_type
= TREE_TYPE (field_type
);
5664 fieldstack
->safe_push (e
);
5674 /* Count the number of arguments DECL has, and set IS_VARARGS to true
5675 if it is a varargs function. */
5678 count_num_arguments (tree decl
, bool *is_varargs
)
5680 unsigned int num
= 0;
5683 /* Capture named arguments for K&R functions. They do not
5684 have a prototype and thus no TYPE_ARG_TYPES. */
5685 for (t
= DECL_ARGUMENTS (decl
); t
; t
= DECL_CHAIN (t
))
5688 /* Check if the function has variadic arguments. */
5689 for (t
= TYPE_ARG_TYPES (TREE_TYPE (decl
)); t
; t
= TREE_CHAIN (t
))
5690 if (TREE_VALUE (t
) == void_type_node
)
5698 /* Creation function node for DECL, using NAME, and return the index
5699 of the variable we've created for the function. If NONLOCAL_p, create
5700 initial constraints. */
5703 create_function_info_for (tree decl
, const char *name
, bool add_id
,
5706 struct function
*fn
= DECL_STRUCT_FUNCTION (decl
);
5707 varinfo_t vi
, prev_vi
;
5710 bool is_varargs
= false;
5711 unsigned int num_args
= count_num_arguments (decl
, &is_varargs
);
5713 /* Create the variable info. */
5715 vi
= new_var_info (decl
, name
, add_id
);
5718 vi
->fullsize
= fi_parm_base
+ num_args
;
5720 vi
->may_have_pointers
= false;
5723 insert_vi_for_tree (vi
->decl
, vi
);
5727 /* Create a variable for things the function clobbers and one for
5728 things the function uses. */
5730 varinfo_t clobbervi
, usevi
;
5731 const char *newname
;
5734 tempname
= xasprintf ("%s.clobber", name
);
5735 newname
= ggc_strdup (tempname
);
5738 clobbervi
= new_var_info (NULL
, newname
, false);
5739 clobbervi
->offset
= fi_clobbers
;
5740 clobbervi
->size
= 1;
5741 clobbervi
->fullsize
= vi
->fullsize
;
5742 clobbervi
->is_full_var
= true;
5743 clobbervi
->is_global_var
= false;
5744 clobbervi
->is_reg_var
= true;
5746 gcc_assert (prev_vi
->offset
< clobbervi
->offset
);
5747 prev_vi
->next
= clobbervi
->id
;
5748 prev_vi
= clobbervi
;
5750 tempname
= xasprintf ("%s.use", name
);
5751 newname
= ggc_strdup (tempname
);
5754 usevi
= new_var_info (NULL
, newname
, false);
5755 usevi
->offset
= fi_uses
;
5757 usevi
->fullsize
= vi
->fullsize
;
5758 usevi
->is_full_var
= true;
5759 usevi
->is_global_var
= false;
5760 usevi
->is_reg_var
= true;
5762 gcc_assert (prev_vi
->offset
< usevi
->offset
);
5763 prev_vi
->next
= usevi
->id
;
5767 /* And one for the static chain. */
5768 if (fn
->static_chain_decl
!= NULL_TREE
)
5771 const char *newname
;
5774 tempname
= xasprintf ("%s.chain", name
);
5775 newname
= ggc_strdup (tempname
);
5778 chainvi
= new_var_info (fn
->static_chain_decl
, newname
, false);
5779 chainvi
->offset
= fi_static_chain
;
5781 chainvi
->fullsize
= vi
->fullsize
;
5782 chainvi
->is_full_var
= true;
5783 chainvi
->is_global_var
= false;
5785 insert_vi_for_tree (fn
->static_chain_decl
, chainvi
);
5788 && chainvi
->may_have_pointers
)
5789 make_constraint_from (chainvi
, nonlocal_id
);
5791 gcc_assert (prev_vi
->offset
< chainvi
->offset
);
5792 prev_vi
->next
= chainvi
->id
;
5796 /* Create a variable for the return var. */
5797 if (DECL_RESULT (decl
) != NULL
5798 || !VOID_TYPE_P (TREE_TYPE (TREE_TYPE (decl
))))
5801 const char *newname
;
5803 tree resultdecl
= decl
;
5805 if (DECL_RESULT (decl
))
5806 resultdecl
= DECL_RESULT (decl
);
5808 tempname
= xasprintf ("%s.result", name
);
5809 newname
= ggc_strdup (tempname
);
5812 resultvi
= new_var_info (resultdecl
, newname
, false);
5813 resultvi
->offset
= fi_result
;
5815 resultvi
->fullsize
= vi
->fullsize
;
5816 resultvi
->is_full_var
= true;
5817 if (DECL_RESULT (decl
))
5818 resultvi
->may_have_pointers
= true;
5820 if (DECL_RESULT (decl
))
5821 insert_vi_for_tree (DECL_RESULT (decl
), resultvi
);
5824 && DECL_RESULT (decl
)
5825 && DECL_BY_REFERENCE (DECL_RESULT (decl
)))
5826 make_constraint_from (resultvi
, nonlocal_id
);
5828 gcc_assert (prev_vi
->offset
< resultvi
->offset
);
5829 prev_vi
->next
= resultvi
->id
;
5833 /* We also need to make function return values escape. Nothing
5834 escapes by returning from main though. */
5836 && !MAIN_NAME_P (DECL_NAME (decl
)))
5839 fi
= lookup_vi_for_tree (decl
);
5840 rvi
= first_vi_for_offset (fi
, fi_result
);
5841 if (rvi
&& rvi
->offset
== fi_result
)
5842 make_copy_constraint (get_varinfo (escaped_id
), rvi
->id
);
5845 /* Set up variables for each argument. */
5846 arg
= DECL_ARGUMENTS (decl
);
5847 for (i
= 0; i
< num_args
; i
++)
5850 const char *newname
;
5852 tree argdecl
= decl
;
5857 tempname
= xasprintf ("%s.arg%d", name
, i
);
5858 newname
= ggc_strdup (tempname
);
5861 argvi
= new_var_info (argdecl
, newname
, false);
5862 argvi
->offset
= fi_parm_base
+ i
;
5864 argvi
->is_full_var
= true;
5865 argvi
->fullsize
= vi
->fullsize
;
5867 argvi
->may_have_pointers
= true;
5870 insert_vi_for_tree (arg
, argvi
);
5873 && argvi
->may_have_pointers
)
5874 make_constraint_from (argvi
, nonlocal_id
);
5876 gcc_assert (prev_vi
->offset
< argvi
->offset
);
5877 prev_vi
->next
= argvi
->id
;
5880 arg
= DECL_CHAIN (arg
);
5883 /* Add one representative for all further args. */
5887 const char *newname
;
5891 tempname
= xasprintf ("%s.varargs", name
);
5892 newname
= ggc_strdup (tempname
);
5895 /* We need sth that can be pointed to for va_start. */
5896 decl
= build_fake_var_decl (ptr_type_node
);
5898 argvi
= new_var_info (decl
, newname
, false);
5899 argvi
->offset
= fi_parm_base
+ num_args
;
5901 argvi
->is_full_var
= true;
5902 argvi
->is_heap_var
= true;
5903 argvi
->fullsize
= vi
->fullsize
;
5906 && argvi
->may_have_pointers
)
5907 make_constraint_from (argvi
, nonlocal_id
);
5909 gcc_assert (prev_vi
->offset
< argvi
->offset
);
5910 prev_vi
->next
= argvi
->id
;
5918 /* Return true if FIELDSTACK contains fields that overlap.
5919 FIELDSTACK is assumed to be sorted by offset. */
5922 check_for_overlaps (vec
<fieldoff_s
> fieldstack
)
5924 fieldoff_s
*fo
= NULL
;
5926 HOST_WIDE_INT lastoffset
= -1;
5928 FOR_EACH_VEC_ELT (fieldstack
, i
, fo
)
5930 if (fo
->offset
== lastoffset
)
5932 lastoffset
= fo
->offset
;
5937 /* Create a varinfo structure for NAME and DECL, and add it to VARMAP.
5938 This will also create any varinfo structures necessary for fields
5939 of DECL. DECL is a function parameter if HANDLE_PARAM is set.
5940 HANDLED_STRUCT_TYPE is used to register struct types reached by following
5941 restrict pointers. This is needed to prevent infinite recursion.
5942 If ADD_RESTRICT, pretend that the pointer NAME is restrict even if DECL
5943 does not advertise it. */
5946 create_variable_info_for_1 (tree decl
, const char *name
, bool add_id
,
5947 bool handle_param
, bitmap handled_struct_type
,
5948 bool add_restrict
= false)
5950 varinfo_t vi
, newvi
;
5951 tree decl_type
= TREE_TYPE (decl
);
5952 tree declsize
= DECL_P (decl
) ? DECL_SIZE (decl
) : TYPE_SIZE (decl_type
);
5953 auto_vec
<fieldoff_s
> fieldstack
;
5958 || !tree_fits_uhwi_p (declsize
))
5960 vi
= new_var_info (decl
, name
, add_id
);
5964 vi
->is_unknown_size_var
= true;
5965 vi
->is_full_var
= true;
5966 vi
->may_have_pointers
= true;
5970 /* Collect field information. */
5971 if (use_field_sensitive
5972 && var_can_have_subvars (decl
)
5973 /* ??? Force us to not use subfields for globals in IPA mode.
5974 Else we'd have to parse arbitrary initializers. */
5976 && is_global_var (decl
)))
5978 fieldoff_s
*fo
= NULL
;
5979 bool notokay
= false;
5982 push_fields_onto_fieldstack (decl_type
, &fieldstack
, 0);
5984 for (i
= 0; !notokay
&& fieldstack
.iterate (i
, &fo
); i
++)
5985 if (fo
->has_unknown_size
5992 /* We can't sort them if we have a field with a variable sized type,
5993 which will make notokay = true. In that case, we are going to return
5994 without creating varinfos for the fields anyway, so sorting them is a
5998 sort_fieldstack (fieldstack
);
5999 /* Due to some C++ FE issues, like PR 22488, we might end up
6000 what appear to be overlapping fields even though they,
6001 in reality, do not overlap. Until the C++ FE is fixed,
6002 we will simply disable field-sensitivity for these cases. */
6003 notokay
= check_for_overlaps (fieldstack
);
6007 fieldstack
.release ();
6010 /* If we didn't end up collecting sub-variables create a full
6011 variable for the decl. */
6012 if (fieldstack
.length () == 0
6013 || fieldstack
.length () > MAX_FIELDS_FOR_FIELD_SENSITIVE
)
6015 vi
= new_var_info (decl
, name
, add_id
);
6017 vi
->may_have_pointers
= true;
6018 vi
->fullsize
= tree_to_uhwi (declsize
);
6019 vi
->size
= vi
->fullsize
;
6020 vi
->is_full_var
= true;
6021 if (POINTER_TYPE_P (decl_type
)
6022 && (TYPE_RESTRICT (decl_type
) || add_restrict
))
6023 vi
->only_restrict_pointers
= 1;
6024 if (vi
->only_restrict_pointers
6025 && !type_contains_placeholder_p (TREE_TYPE (decl_type
))
6027 && !bitmap_bit_p (handled_struct_type
,
6028 TYPE_UID (TREE_TYPE (decl_type
))))
6031 tree heapvar
= build_fake_var_decl (TREE_TYPE (decl_type
));
6032 DECL_EXTERNAL (heapvar
) = 1;
6033 if (var_can_have_subvars (heapvar
))
6034 bitmap_set_bit (handled_struct_type
,
6035 TYPE_UID (TREE_TYPE (decl_type
)));
6036 rvi
= create_variable_info_for_1 (heapvar
, "PARM_NOALIAS", true,
6037 true, handled_struct_type
);
6038 if (var_can_have_subvars (heapvar
))
6039 bitmap_clear_bit (handled_struct_type
,
6040 TYPE_UID (TREE_TYPE (decl_type
)));
6041 rvi
->is_restrict_var
= 1;
6042 insert_vi_for_tree (heapvar
, rvi
);
6043 make_constraint_from (vi
, rvi
->id
);
6044 make_param_constraints (rvi
);
6046 fieldstack
.release ();
6050 vi
= new_var_info (decl
, name
, add_id
);
6051 vi
->fullsize
= tree_to_uhwi (declsize
);
6052 if (fieldstack
.length () == 1)
6053 vi
->is_full_var
= true;
6054 for (i
= 0, newvi
= vi
;
6055 fieldstack
.iterate (i
, &fo
);
6056 ++i
, newvi
= vi_next (newvi
))
6058 const char *newname
= NULL
;
6063 if (fieldstack
.length () != 1)
6066 = xasprintf ("%s." HOST_WIDE_INT_PRINT_DEC
6067 "+" HOST_WIDE_INT_PRINT_DEC
, name
,
6068 fo
->offset
, fo
->size
);
6069 newname
= ggc_strdup (tempname
);
6077 newvi
->name
= newname
;
6078 newvi
->offset
= fo
->offset
;
6079 newvi
->size
= fo
->size
;
6080 newvi
->fullsize
= vi
->fullsize
;
6081 newvi
->may_have_pointers
= fo
->may_have_pointers
;
6082 newvi
->only_restrict_pointers
= fo
->only_restrict_pointers
;
6084 && newvi
->only_restrict_pointers
6085 && !type_contains_placeholder_p (fo
->restrict_pointed_type
)
6086 && !bitmap_bit_p (handled_struct_type
,
6087 TYPE_UID (fo
->restrict_pointed_type
)))
6090 tree heapvar
= build_fake_var_decl (fo
->restrict_pointed_type
);
6091 DECL_EXTERNAL (heapvar
) = 1;
6092 if (var_can_have_subvars (heapvar
))
6093 bitmap_set_bit (handled_struct_type
,
6094 TYPE_UID (fo
->restrict_pointed_type
));
6095 rvi
= create_variable_info_for_1 (heapvar
, "PARM_NOALIAS", true,
6096 true, handled_struct_type
);
6097 if (var_can_have_subvars (heapvar
))
6098 bitmap_clear_bit (handled_struct_type
,
6099 TYPE_UID (fo
->restrict_pointed_type
));
6100 rvi
->is_restrict_var
= 1;
6101 insert_vi_for_tree (heapvar
, rvi
);
6102 make_constraint_from (newvi
, rvi
->id
);
6103 make_param_constraints (rvi
);
6105 if (i
+ 1 < fieldstack
.length ())
6107 varinfo_t tem
= new_var_info (decl
, name
, false);
6108 newvi
->next
= tem
->id
;
6117 create_variable_info_for (tree decl
, const char *name
, bool add_id
)
6119 /* First see if we are dealing with an ifunc resolver call and
6120 assiociate that with a call to the resolver function result. */
6123 && TREE_CODE (decl
) == FUNCTION_DECL
6124 && (node
= cgraph_node::get (decl
))
6125 && node
->ifunc_resolver
)
6127 varinfo_t fi
= get_vi_for_tree (node
->get_alias_target ()->decl
);
6129 = get_function_part_constraint (fi
, fi_result
);
6130 fi
= new_var_info (NULL_TREE
, "ifuncres", true);
6131 fi
->is_reg_var
= true;
6132 constraint_expr lhs
;
6136 process_constraint (new_constraint (lhs
, rhs
));
6137 insert_vi_for_tree (decl
, fi
);
6141 varinfo_t vi
= create_variable_info_for_1 (decl
, name
, add_id
, false, NULL
);
6142 unsigned int id
= vi
->id
;
6144 insert_vi_for_tree (decl
, vi
);
6149 /* Create initial constraints for globals. */
6150 for (; vi
; vi
= vi_next (vi
))
6152 if (!vi
->may_have_pointers
6153 || !vi
->is_global_var
)
6156 /* Mark global restrict qualified pointers. */
6157 if ((POINTER_TYPE_P (TREE_TYPE (decl
))
6158 && TYPE_RESTRICT (TREE_TYPE (decl
)))
6159 || vi
->only_restrict_pointers
)
6162 = make_constraint_from_global_restrict (vi
, "GLOBAL_RESTRICT",
6164 /* ??? For now exclude reads from globals as restrict sources
6165 if those are not (indirectly) from incoming parameters. */
6166 rvi
->is_restrict_var
= false;
6170 /* In non-IPA mode the initializer from nonlocal is all we need. */
6172 || DECL_HARD_REGISTER (decl
))
6173 make_copy_constraint (vi
, nonlocal_id
);
6175 /* In IPA mode parse the initializer and generate proper constraints
6179 varpool_node
*vnode
= varpool_node::get (decl
);
6181 /* For escaped variables initialize them from nonlocal. */
6182 if (!vnode
->all_refs_explicit_p ())
6183 make_copy_constraint (vi
, nonlocal_id
);
6185 /* If this is a global variable with an initializer and we are in
6186 IPA mode generate constraints for it. */
6188 for (unsigned idx
= 0; vnode
->iterate_reference (idx
, ref
); ++idx
)
6190 auto_vec
<ce_s
> rhsc
;
6191 struct constraint_expr lhs
, *rhsp
;
6193 get_constraint_for_address_of (ref
->referred
->decl
, &rhsc
);
6197 FOR_EACH_VEC_ELT (rhsc
, i
, rhsp
)
6198 process_constraint (new_constraint (lhs
, *rhsp
));
6199 /* If this is a variable that escapes from the unit
6200 the initializer escapes as well. */
6201 if (!vnode
->all_refs_explicit_p ())
6203 lhs
.var
= escaped_id
;
6206 FOR_EACH_VEC_ELT (rhsc
, i
, rhsp
)
6207 process_constraint (new_constraint (lhs
, *rhsp
));
6216 /* Print out the points-to solution for VAR to FILE. */
6219 dump_solution_for_var (FILE *file
, unsigned int var
)
6221 varinfo_t vi
= get_varinfo (var
);
6225 /* Dump the solution for unified vars anyway, this avoids difficulties
6226 in scanning dumps in the testsuite. */
6227 fprintf (file
, "%s = { ", vi
->name
);
6228 vi
= get_varinfo (find (var
));
6229 EXECUTE_IF_SET_IN_BITMAP (vi
->solution
, 0, i
, bi
)
6230 fprintf (file
, "%s ", get_varinfo (i
)->name
);
6231 fprintf (file
, "}");
6233 /* But note when the variable was unified. */
6235 fprintf (file
, " same as %s", vi
->name
);
6237 fprintf (file
, "\n");
6240 /* Print the points-to solution for VAR to stderr. */
6243 debug_solution_for_var (unsigned int var
)
6245 dump_solution_for_var (stderr
, var
);
6248 /* Register the constraints for function parameter related VI. */
6251 make_param_constraints (varinfo_t vi
)
6253 for (; vi
; vi
= vi_next (vi
))
6255 if (vi
->only_restrict_pointers
)
6257 else if (vi
->may_have_pointers
)
6258 make_constraint_from (vi
, nonlocal_id
);
6260 if (vi
->is_full_var
)
6265 /* Create varinfo structures for all of the variables in the
6266 function for intraprocedural mode. */
6269 intra_create_variable_infos (struct function
*fn
)
6272 bitmap handled_struct_type
= NULL
;
6273 bool this_parm_in_ctor
= DECL_CXX_CONSTRUCTOR_P (fn
->decl
);
6275 /* For each incoming pointer argument arg, create the constraint ARG
6276 = NONLOCAL or a dummy variable if it is a restrict qualified
6277 passed-by-reference argument. */
6278 for (t
= DECL_ARGUMENTS (fn
->decl
); t
; t
= DECL_CHAIN (t
))
6280 if (handled_struct_type
== NULL
)
6281 handled_struct_type
= BITMAP_ALLOC (NULL
);
6284 = create_variable_info_for_1 (t
, alias_get_name (t
), false, true,
6285 handled_struct_type
, this_parm_in_ctor
);
6286 insert_vi_for_tree (t
, p
);
6288 make_param_constraints (p
);
6290 this_parm_in_ctor
= false;
6293 if (handled_struct_type
!= NULL
)
6294 BITMAP_FREE (handled_struct_type
);
6296 /* Add a constraint for a result decl that is passed by reference. */
6297 if (DECL_RESULT (fn
->decl
)
6298 && DECL_BY_REFERENCE (DECL_RESULT (fn
->decl
)))
6300 varinfo_t p
, result_vi
= get_vi_for_tree (DECL_RESULT (fn
->decl
));
6302 for (p
= result_vi
; p
; p
= vi_next (p
))
6303 make_constraint_from (p
, nonlocal_id
);
6306 /* Add a constraint for the incoming static chain parameter. */
6307 if (fn
->static_chain_decl
!= NULL_TREE
)
6309 varinfo_t p
, chain_vi
= get_vi_for_tree (fn
->static_chain_decl
);
6311 for (p
= chain_vi
; p
; p
= vi_next (p
))
6312 make_constraint_from (p
, nonlocal_id
);
6316 /* Structure used to put solution bitmaps in a hashtable so they can
6317 be shared among variables with the same points-to set. */
6319 typedef struct shared_bitmap_info
6323 } *shared_bitmap_info_t
;
6324 typedef const struct shared_bitmap_info
*const_shared_bitmap_info_t
;
6326 /* Shared_bitmap hashtable helpers. */
6328 struct shared_bitmap_hasher
: free_ptr_hash
<shared_bitmap_info
>
6330 static inline hashval_t
hash (const shared_bitmap_info
*);
6331 static inline bool equal (const shared_bitmap_info
*,
6332 const shared_bitmap_info
*);
6335 /* Hash function for a shared_bitmap_info_t */
6338 shared_bitmap_hasher::hash (const shared_bitmap_info
*bi
)
6340 return bi
->hashcode
;
6343 /* Equality function for two shared_bitmap_info_t's. */
6346 shared_bitmap_hasher::equal (const shared_bitmap_info
*sbi1
,
6347 const shared_bitmap_info
*sbi2
)
6349 return bitmap_equal_p (sbi1
->pt_vars
, sbi2
->pt_vars
);
6352 /* Shared_bitmap hashtable. */
6354 static hash_table
<shared_bitmap_hasher
> *shared_bitmap_table
;
6356 /* Lookup a bitmap in the shared bitmap hashtable, and return an already
6357 existing instance if there is one, NULL otherwise. */
6360 shared_bitmap_lookup (bitmap pt_vars
)
6362 shared_bitmap_info
**slot
;
6363 struct shared_bitmap_info sbi
;
6365 sbi
.pt_vars
= pt_vars
;
6366 sbi
.hashcode
= bitmap_hash (pt_vars
);
6368 slot
= shared_bitmap_table
->find_slot (&sbi
, NO_INSERT
);
6372 return (*slot
)->pt_vars
;
6376 /* Add a bitmap to the shared bitmap hashtable. */
6379 shared_bitmap_add (bitmap pt_vars
)
6381 shared_bitmap_info
**slot
;
6382 shared_bitmap_info_t sbi
= XNEW (struct shared_bitmap_info
);
6384 sbi
->pt_vars
= pt_vars
;
6385 sbi
->hashcode
= bitmap_hash (pt_vars
);
6387 slot
= shared_bitmap_table
->find_slot (sbi
, INSERT
);
6388 gcc_assert (!*slot
);
6393 /* Set bits in INTO corresponding to the variable uids in solution set FROM. */
6396 set_uids_in_ptset (bitmap into
, bitmap from
, struct pt_solution
*pt
,
6401 varinfo_t escaped_vi
= get_varinfo (find (escaped_id
));
6402 bool everything_escaped
6403 = escaped_vi
->solution
&& bitmap_bit_p (escaped_vi
->solution
, anything_id
);
6405 EXECUTE_IF_SET_IN_BITMAP (from
, 0, i
, bi
)
6407 varinfo_t vi
= get_varinfo (i
);
6409 /* The only artificial variables that are allowed in a may-alias
6410 set are heap variables. */
6411 if (vi
->is_artificial_var
&& !vi
->is_heap_var
)
6414 if (everything_escaped
6415 || (escaped_vi
->solution
6416 && bitmap_bit_p (escaped_vi
->solution
, i
)))
6418 pt
->vars_contains_escaped
= true;
6419 pt
->vars_contains_escaped_heap
= vi
->is_heap_var
;
6422 if (vi
->is_restrict_var
)
6423 pt
->vars_contains_restrict
= true;
6425 if (VAR_P (vi
->decl
)
6426 || TREE_CODE (vi
->decl
) == PARM_DECL
6427 || TREE_CODE (vi
->decl
) == RESULT_DECL
)
6429 /* If we are in IPA mode we will not recompute points-to
6430 sets after inlining so make sure they stay valid. */
6432 && !DECL_PT_UID_SET_P (vi
->decl
))
6433 SET_DECL_PT_UID (vi
->decl
, DECL_UID (vi
->decl
));
6435 /* Add the decl to the points-to set. Note that the points-to
6436 set contains global variables. */
6437 bitmap_set_bit (into
, DECL_PT_UID (vi
->decl
));
6438 if (vi
->is_global_var
6439 /* In IPA mode the escaped_heap trick doesn't work as
6440 ESCAPED is escaped from the unit but
6441 pt_solution_includes_global needs to answer true for
6442 all variables not automatic within a function.
6443 For the same reason is_global_var is not the
6444 correct flag to track - local variables from other
6445 functions also need to be considered global.
6446 Conveniently all HEAP vars are not put in function
6450 && ! auto_var_in_fn_p (vi
->decl
, fndecl
)))
6451 pt
->vars_contains_nonlocal
= true;
6453 /* If we have a variable that is interposable record that fact
6454 for pointer comparison simplification. */
6455 if (VAR_P (vi
->decl
)
6456 && (TREE_STATIC (vi
->decl
) || DECL_EXTERNAL (vi
->decl
))
6457 && ! decl_binds_to_current_def_p (vi
->decl
))
6458 pt
->vars_contains_interposable
= true;
6461 else if (TREE_CODE (vi
->decl
) == FUNCTION_DECL
6462 || TREE_CODE (vi
->decl
) == LABEL_DECL
)
6464 /* Nothing should read/write from/to code so we can
6465 save bits by not including them in the points-to bitmaps.
6466 Still mark the points-to set as containing global memory
6467 to make code-patching possible - see PR70128. */
6468 pt
->vars_contains_nonlocal
= true;
6474 /* Compute the points-to solution *PT for the variable VI. */
6476 static struct pt_solution
6477 find_what_var_points_to (tree fndecl
, varinfo_t orig_vi
)
6481 bitmap finished_solution
;
6484 struct pt_solution
*pt
;
6486 /* This variable may have been collapsed, let's get the real
6488 vi
= get_varinfo (find (orig_vi
->id
));
6490 /* See if we have already computed the solution and return it. */
6491 pt_solution
**slot
= &final_solutions
->get_or_insert (vi
);
6495 *slot
= pt
= XOBNEW (&final_solutions_obstack
, struct pt_solution
);
6496 memset (pt
, 0, sizeof (struct pt_solution
));
6498 /* Translate artificial variables into SSA_NAME_PTR_INFO
6500 EXECUTE_IF_SET_IN_BITMAP (vi
->solution
, 0, i
, bi
)
6502 varinfo_t vi
= get_varinfo (i
);
6504 if (vi
->is_artificial_var
)
6506 if (vi
->id
== nothing_id
)
6508 else if (vi
->id
== escaped_id
)
6511 pt
->ipa_escaped
= 1;
6514 /* Expand some special vars of ESCAPED in-place here. */
6515 varinfo_t evi
= get_varinfo (find (escaped_id
));
6516 if (bitmap_bit_p (evi
->solution
, nonlocal_id
))
6519 else if (vi
->id
== nonlocal_id
)
6521 else if (vi
->is_heap_var
)
6522 /* We represent heapvars in the points-to set properly. */
6524 else if (vi
->id
== string_id
)
6525 /* Nobody cares - STRING_CSTs are read-only entities. */
6527 else if (vi
->id
== anything_id
6528 || vi
->id
== integer_id
)
6533 /* Instead of doing extra work, simply do not create
6534 elaborate points-to information for pt_anything pointers. */
6538 /* Share the final set of variables when possible. */
6539 finished_solution
= BITMAP_GGC_ALLOC ();
6540 stats
.points_to_sets_created
++;
6542 set_uids_in_ptset (finished_solution
, vi
->solution
, pt
, fndecl
);
6543 result
= shared_bitmap_lookup (finished_solution
);
6546 shared_bitmap_add (finished_solution
);
6547 pt
->vars
= finished_solution
;
6552 bitmap_clear (finished_solution
);
6558 /* Given a pointer variable P, fill in its points-to set. */
6561 find_what_p_points_to (tree fndecl
, tree p
)
6563 struct ptr_info_def
*pi
;
6566 bool nonnull
= get_ptr_nonnull (p
);
6568 /* For parameters, get at the points-to set for the actual parm
6570 if (TREE_CODE (p
) == SSA_NAME
6571 && SSA_NAME_IS_DEFAULT_DEF (p
)
6572 && (TREE_CODE (SSA_NAME_VAR (p
)) == PARM_DECL
6573 || TREE_CODE (SSA_NAME_VAR (p
)) == RESULT_DECL
))
6574 lookup_p
= SSA_NAME_VAR (p
);
6576 vi
= lookup_vi_for_tree (lookup_p
);
6580 pi
= get_ptr_info (p
);
6581 pi
->pt
= find_what_var_points_to (fndecl
, vi
);
6582 /* Conservatively set to NULL from PTA (to true). */
6584 /* Preserve pointer nonnull computed by VRP. See get_ptr_nonnull
6585 in gcc/tree-ssaname.c for more information. */
6587 set_ptr_nonnull (p
);
6591 /* Query statistics for points-to solutions. */
6594 unsigned HOST_WIDE_INT pt_solution_includes_may_alias
;
6595 unsigned HOST_WIDE_INT pt_solution_includes_no_alias
;
6596 unsigned HOST_WIDE_INT pt_solutions_intersect_may_alias
;
6597 unsigned HOST_WIDE_INT pt_solutions_intersect_no_alias
;
6601 dump_pta_stats (FILE *s
)
6603 fprintf (s
, "\nPTA query stats:\n");
6604 fprintf (s
, " pt_solution_includes: "
6605 HOST_WIDE_INT_PRINT_DEC
" disambiguations, "
6606 HOST_WIDE_INT_PRINT_DEC
" queries\n",
6607 pta_stats
.pt_solution_includes_no_alias
,
6608 pta_stats
.pt_solution_includes_no_alias
6609 + pta_stats
.pt_solution_includes_may_alias
);
6610 fprintf (s
, " pt_solutions_intersect: "
6611 HOST_WIDE_INT_PRINT_DEC
" disambiguations, "
6612 HOST_WIDE_INT_PRINT_DEC
" queries\n",
6613 pta_stats
.pt_solutions_intersect_no_alias
,
6614 pta_stats
.pt_solutions_intersect_no_alias
6615 + pta_stats
.pt_solutions_intersect_may_alias
);
6619 /* Reset the points-to solution *PT to a conservative default
6620 (point to anything). */
6623 pt_solution_reset (struct pt_solution
*pt
)
6625 memset (pt
, 0, sizeof (struct pt_solution
));
6626 pt
->anything
= true;
6630 /* Set the points-to solution *PT to point only to the variables
6631 in VARS. VARS_CONTAINS_GLOBAL specifies whether that contains
6632 global variables and VARS_CONTAINS_RESTRICT specifies whether
6633 it contains restrict tag variables. */
6636 pt_solution_set (struct pt_solution
*pt
, bitmap vars
,
6637 bool vars_contains_nonlocal
)
6639 memset (pt
, 0, sizeof (struct pt_solution
));
6641 pt
->vars_contains_nonlocal
= vars_contains_nonlocal
;
6642 pt
->vars_contains_escaped
6643 = (cfun
->gimple_df
->escaped
.anything
6644 || bitmap_intersect_p (cfun
->gimple_df
->escaped
.vars
, vars
));
6647 /* Set the points-to solution *PT to point only to the variable VAR. */
6650 pt_solution_set_var (struct pt_solution
*pt
, tree var
)
6652 memset (pt
, 0, sizeof (struct pt_solution
));
6653 pt
->vars
= BITMAP_GGC_ALLOC ();
6654 bitmap_set_bit (pt
->vars
, DECL_PT_UID (var
));
6655 pt
->vars_contains_nonlocal
= is_global_var (var
);
6656 pt
->vars_contains_escaped
6657 = (cfun
->gimple_df
->escaped
.anything
6658 || bitmap_bit_p (cfun
->gimple_df
->escaped
.vars
, DECL_PT_UID (var
)));
6661 /* Computes the union of the points-to solutions *DEST and *SRC and
6662 stores the result in *DEST. This changes the points-to bitmap
6663 of *DEST and thus may not be used if that might be shared.
6664 The points-to bitmap of *SRC and *DEST will not be shared after
6665 this function if they were not before. */
6668 pt_solution_ior_into (struct pt_solution
*dest
, struct pt_solution
*src
)
6670 dest
->anything
|= src
->anything
;
6673 pt_solution_reset (dest
);
6677 dest
->nonlocal
|= src
->nonlocal
;
6678 dest
->escaped
|= src
->escaped
;
6679 dest
->ipa_escaped
|= src
->ipa_escaped
;
6680 dest
->null
|= src
->null
;
6681 dest
->vars_contains_nonlocal
|= src
->vars_contains_nonlocal
;
6682 dest
->vars_contains_escaped
|= src
->vars_contains_escaped
;
6683 dest
->vars_contains_escaped_heap
|= src
->vars_contains_escaped_heap
;
6688 dest
->vars
= BITMAP_GGC_ALLOC ();
6689 bitmap_ior_into (dest
->vars
, src
->vars
);
6692 /* Return true if the points-to solution *PT is empty. */
6695 pt_solution_empty_p (struct pt_solution
*pt
)
6702 && !bitmap_empty_p (pt
->vars
))
6705 /* If the solution includes ESCAPED, check if that is empty. */
6707 && !pt_solution_empty_p (&cfun
->gimple_df
->escaped
))
6710 /* If the solution includes ESCAPED, check if that is empty. */
6712 && !pt_solution_empty_p (&ipa_escaped_pt
))
6718 /* Return true if the points-to solution *PT only point to a single var, and
6719 return the var uid in *UID. */
6722 pt_solution_singleton_or_null_p (struct pt_solution
*pt
, unsigned *uid
)
6724 if (pt
->anything
|| pt
->nonlocal
|| pt
->escaped
|| pt
->ipa_escaped
6726 || !bitmap_single_bit_set_p (pt
->vars
))
6729 *uid
= bitmap_first_set_bit (pt
->vars
);
6733 /* Return true if the points-to solution *PT includes global memory. */
6736 pt_solution_includes_global (struct pt_solution
*pt
)
6740 || pt
->vars_contains_nonlocal
6741 /* The following is a hack to make the malloc escape hack work.
6742 In reality we'd need different sets for escaped-through-return
6743 and escaped-to-callees and passes would need to be updated. */
6744 || pt
->vars_contains_escaped_heap
)
6747 /* 'escaped' is also a placeholder so we have to look into it. */
6749 return pt_solution_includes_global (&cfun
->gimple_df
->escaped
);
6751 if (pt
->ipa_escaped
)
6752 return pt_solution_includes_global (&ipa_escaped_pt
);
6757 /* Return true if the points-to solution *PT includes the variable
6758 declaration DECL. */
6761 pt_solution_includes_1 (struct pt_solution
*pt
, const_tree decl
)
6767 && is_global_var (decl
))
6771 && bitmap_bit_p (pt
->vars
, DECL_PT_UID (decl
)))
6774 /* If the solution includes ESCAPED, check it. */
6776 && pt_solution_includes_1 (&cfun
->gimple_df
->escaped
, decl
))
6779 /* If the solution includes ESCAPED, check it. */
6781 && pt_solution_includes_1 (&ipa_escaped_pt
, decl
))
6788 pt_solution_includes (struct pt_solution
*pt
, const_tree decl
)
6790 bool res
= pt_solution_includes_1 (pt
, decl
);
6792 ++pta_stats
.pt_solution_includes_may_alias
;
6794 ++pta_stats
.pt_solution_includes_no_alias
;
6798 /* Return true if both points-to solutions PT1 and PT2 have a non-empty
6802 pt_solutions_intersect_1 (struct pt_solution
*pt1
, struct pt_solution
*pt2
)
6804 if (pt1
->anything
|| pt2
->anything
)
6807 /* If either points to unknown global memory and the other points to
6808 any global memory they alias. */
6811 || pt2
->vars_contains_nonlocal
))
6813 && pt1
->vars_contains_nonlocal
))
6816 /* If either points to all escaped memory and the other points to
6817 any escaped memory they alias. */
6820 || pt2
->vars_contains_escaped
))
6822 && pt1
->vars_contains_escaped
))
6825 /* Check the escaped solution if required.
6826 ??? Do we need to check the local against the IPA escaped sets? */
6827 if ((pt1
->ipa_escaped
|| pt2
->ipa_escaped
)
6828 && !pt_solution_empty_p (&ipa_escaped_pt
))
6830 /* If both point to escaped memory and that solution
6831 is not empty they alias. */
6832 if (pt1
->ipa_escaped
&& pt2
->ipa_escaped
)
6835 /* If either points to escaped memory see if the escaped solution
6836 intersects with the other. */
6837 if ((pt1
->ipa_escaped
6838 && pt_solutions_intersect_1 (&ipa_escaped_pt
, pt2
))
6839 || (pt2
->ipa_escaped
6840 && pt_solutions_intersect_1 (&ipa_escaped_pt
, pt1
)))
6844 /* Now both pointers alias if their points-to solution intersects. */
6847 && bitmap_intersect_p (pt1
->vars
, pt2
->vars
));
6851 pt_solutions_intersect (struct pt_solution
*pt1
, struct pt_solution
*pt2
)
6853 bool res
= pt_solutions_intersect_1 (pt1
, pt2
);
6855 ++pta_stats
.pt_solutions_intersect_may_alias
;
6857 ++pta_stats
.pt_solutions_intersect_no_alias
;
6862 /* Dump points-to information to OUTFILE. */
6865 dump_sa_points_to_info (FILE *outfile
)
6869 fprintf (outfile
, "\nPoints-to sets\n\n");
6871 if (dump_flags
& TDF_STATS
)
6873 fprintf (outfile
, "Stats:\n");
6874 fprintf (outfile
, "Total vars: %d\n", stats
.total_vars
);
6875 fprintf (outfile
, "Non-pointer vars: %d\n",
6876 stats
.nonpointer_vars
);
6877 fprintf (outfile
, "Statically unified vars: %d\n",
6878 stats
.unified_vars_static
);
6879 fprintf (outfile
, "Dynamically unified vars: %d\n",
6880 stats
.unified_vars_dynamic
);
6881 fprintf (outfile
, "Iterations: %d\n", stats
.iterations
);
6882 fprintf (outfile
, "Number of edges: %d\n", stats
.num_edges
);
6883 fprintf (outfile
, "Number of implicit edges: %d\n",
6884 stats
.num_implicit_edges
);
6887 for (i
= 1; i
< varmap
.length (); i
++)
6889 varinfo_t vi
= get_varinfo (i
);
6890 if (!vi
->may_have_pointers
)
6892 dump_solution_for_var (outfile
, i
);
6897 /* Debug points-to information to stderr. */
6900 debug_sa_points_to_info (void)
6902 dump_sa_points_to_info (stderr
);
6906 /* Initialize the always-existing constraint variables for NULL
6907 ANYTHING, READONLY, and INTEGER */
6910 init_base_vars (void)
6912 struct constraint_expr lhs
, rhs
;
6913 varinfo_t var_anything
;
6914 varinfo_t var_nothing
;
6915 varinfo_t var_string
;
6916 varinfo_t var_escaped
;
6917 varinfo_t var_nonlocal
;
6918 varinfo_t var_storedanything
;
6919 varinfo_t var_integer
;
6921 /* Variable ID zero is reserved and should be NULL. */
6922 varmap
.safe_push (NULL
);
6924 /* Create the NULL variable, used to represent that a variable points
6926 var_nothing
= new_var_info (NULL_TREE
, "NULL", false);
6927 gcc_assert (var_nothing
->id
== nothing_id
);
6928 var_nothing
->is_artificial_var
= 1;
6929 var_nothing
->offset
= 0;
6930 var_nothing
->size
= ~0;
6931 var_nothing
->fullsize
= ~0;
6932 var_nothing
->is_special_var
= 1;
6933 var_nothing
->may_have_pointers
= 0;
6934 var_nothing
->is_global_var
= 0;
6936 /* Create the ANYTHING variable, used to represent that a variable
6937 points to some unknown piece of memory. */
6938 var_anything
= new_var_info (NULL_TREE
, "ANYTHING", false);
6939 gcc_assert (var_anything
->id
== anything_id
);
6940 var_anything
->is_artificial_var
= 1;
6941 var_anything
->size
= ~0;
6942 var_anything
->offset
= 0;
6943 var_anything
->fullsize
= ~0;
6944 var_anything
->is_special_var
= 1;
6946 /* Anything points to anything. This makes deref constraints just
6947 work in the presence of linked list and other p = *p type loops,
6948 by saying that *ANYTHING = ANYTHING. */
6950 lhs
.var
= anything_id
;
6952 rhs
.type
= ADDRESSOF
;
6953 rhs
.var
= anything_id
;
6956 /* This specifically does not use process_constraint because
6957 process_constraint ignores all anything = anything constraints, since all
6958 but this one are redundant. */
6959 constraints
.safe_push (new_constraint (lhs
, rhs
));
6961 /* Create the STRING variable, used to represent that a variable
6962 points to a string literal. String literals don't contain
6963 pointers so STRING doesn't point to anything. */
6964 var_string
= new_var_info (NULL_TREE
, "STRING", false);
6965 gcc_assert (var_string
->id
== string_id
);
6966 var_string
->is_artificial_var
= 1;
6967 var_string
->offset
= 0;
6968 var_string
->size
= ~0;
6969 var_string
->fullsize
= ~0;
6970 var_string
->is_special_var
= 1;
6971 var_string
->may_have_pointers
= 0;
6973 /* Create the ESCAPED variable, used to represent the set of escaped
6975 var_escaped
= new_var_info (NULL_TREE
, "ESCAPED", false);
6976 gcc_assert (var_escaped
->id
== escaped_id
);
6977 var_escaped
->is_artificial_var
= 1;
6978 var_escaped
->offset
= 0;
6979 var_escaped
->size
= ~0;
6980 var_escaped
->fullsize
= ~0;
6981 var_escaped
->is_special_var
= 0;
6983 /* Create the NONLOCAL variable, used to represent the set of nonlocal
6985 var_nonlocal
= new_var_info (NULL_TREE
, "NONLOCAL", false);
6986 gcc_assert (var_nonlocal
->id
== nonlocal_id
);
6987 var_nonlocal
->is_artificial_var
= 1;
6988 var_nonlocal
->offset
= 0;
6989 var_nonlocal
->size
= ~0;
6990 var_nonlocal
->fullsize
= ~0;
6991 var_nonlocal
->is_special_var
= 1;
6993 /* ESCAPED = *ESCAPED, because escaped is may-deref'd at calls, etc. */
6995 lhs
.var
= escaped_id
;
6998 rhs
.var
= escaped_id
;
7000 process_constraint (new_constraint (lhs
, rhs
));
7002 /* ESCAPED = ESCAPED + UNKNOWN_OFFSET, because if a sub-field escapes the
7003 whole variable escapes. */
7005 lhs
.var
= escaped_id
;
7008 rhs
.var
= escaped_id
;
7009 rhs
.offset
= UNKNOWN_OFFSET
;
7010 process_constraint (new_constraint (lhs
, rhs
));
7012 /* *ESCAPED = NONLOCAL. This is true because we have to assume
7013 everything pointed to by escaped points to what global memory can
7016 lhs
.var
= escaped_id
;
7019 rhs
.var
= nonlocal_id
;
7021 process_constraint (new_constraint (lhs
, rhs
));
7023 /* NONLOCAL = &NONLOCAL, NONLOCAL = &ESCAPED. This is true because
7024 global memory may point to global memory and escaped memory. */
7026 lhs
.var
= nonlocal_id
;
7028 rhs
.type
= ADDRESSOF
;
7029 rhs
.var
= nonlocal_id
;
7031 process_constraint (new_constraint (lhs
, rhs
));
7032 rhs
.type
= ADDRESSOF
;
7033 rhs
.var
= escaped_id
;
7035 process_constraint (new_constraint (lhs
, rhs
));
7037 /* Create the STOREDANYTHING variable, used to represent the set of
7038 variables stored to *ANYTHING. */
7039 var_storedanything
= new_var_info (NULL_TREE
, "STOREDANYTHING", false);
7040 gcc_assert (var_storedanything
->id
== storedanything_id
);
7041 var_storedanything
->is_artificial_var
= 1;
7042 var_storedanything
->offset
= 0;
7043 var_storedanything
->size
= ~0;
7044 var_storedanything
->fullsize
= ~0;
7045 var_storedanything
->is_special_var
= 0;
7047 /* Create the INTEGER variable, used to represent that a variable points
7048 to what an INTEGER "points to". */
7049 var_integer
= new_var_info (NULL_TREE
, "INTEGER", false);
7050 gcc_assert (var_integer
->id
== integer_id
);
7051 var_integer
->is_artificial_var
= 1;
7052 var_integer
->size
= ~0;
7053 var_integer
->fullsize
= ~0;
7054 var_integer
->offset
= 0;
7055 var_integer
->is_special_var
= 1;
7057 /* INTEGER = ANYTHING, because we don't know where a dereference of
7058 a random integer will point to. */
7060 lhs
.var
= integer_id
;
7062 rhs
.type
= ADDRESSOF
;
7063 rhs
.var
= anything_id
;
7065 process_constraint (new_constraint (lhs
, rhs
));
7068 /* Initialize things necessary to perform PTA */
7071 init_alias_vars (void)
7073 use_field_sensitive
= (MAX_FIELDS_FOR_FIELD_SENSITIVE
> 1);
7075 bitmap_obstack_initialize (&pta_obstack
);
7076 bitmap_obstack_initialize (&oldpta_obstack
);
7077 bitmap_obstack_initialize (&predbitmap_obstack
);
7079 constraints
.create (8);
7081 vi_for_tree
= new hash_map
<tree
, varinfo_t
>;
7082 call_stmt_vars
= new hash_map
<gimple
*, varinfo_t
>;
7084 memset (&stats
, 0, sizeof (stats
));
7085 shared_bitmap_table
= new hash_table
<shared_bitmap_hasher
> (511);
7088 gcc_obstack_init (&fake_var_decl_obstack
);
7090 final_solutions
= new hash_map
<varinfo_t
, pt_solution
*>;
7091 gcc_obstack_init (&final_solutions_obstack
);
7094 /* Remove the REF and ADDRESS edges from GRAPH, as well as all the
7095 predecessor edges. */
7098 remove_preds_and_fake_succs (constraint_graph_t graph
)
7102 /* Clear the implicit ref and address nodes from the successor
7104 for (i
= 1; i
< FIRST_REF_NODE
; i
++)
7106 if (graph
->succs
[i
])
7107 bitmap_clear_range (graph
->succs
[i
], FIRST_REF_NODE
,
7108 FIRST_REF_NODE
* 2);
7111 /* Free the successor list for the non-ref nodes. */
7112 for (i
= FIRST_REF_NODE
+ 1; i
< graph
->size
; i
++)
7114 if (graph
->succs
[i
])
7115 BITMAP_FREE (graph
->succs
[i
]);
7118 /* Now reallocate the size of the successor list as, and blow away
7119 the predecessor bitmaps. */
7120 graph
->size
= varmap
.length ();
7121 graph
->succs
= XRESIZEVEC (bitmap
, graph
->succs
, graph
->size
);
7123 free (graph
->implicit_preds
);
7124 graph
->implicit_preds
= NULL
;
7125 free (graph
->preds
);
7126 graph
->preds
= NULL
;
7127 bitmap_obstack_release (&predbitmap_obstack
);
7130 /* Solve the constraint set. */
7133 solve_constraints (void)
7135 struct scc_info
*si
;
7137 /* Sort varinfos so that ones that cannot be pointed to are last.
7138 This makes bitmaps more efficient. */
7139 unsigned int *map
= XNEWVEC (unsigned int, varmap
.length ());
7140 for (unsigned i
= 0; i
< integer_id
+ 1; ++i
)
7142 /* Start with non-register vars (as possibly address-taken), followed
7143 by register vars as conservative set of vars never appearing in
7144 the points-to solution bitmaps. */
7145 unsigned j
= integer_id
+ 1;
7146 for (unsigned i
= integer_id
+ 1; i
< varmap
.length (); ++i
)
7147 if (! varmap
[i
]->is_reg_var
)
7149 for (unsigned i
= integer_id
+ 1; i
< varmap
.length (); ++i
)
7150 if (varmap
[i
]->is_reg_var
)
7152 /* Shuffle varmap according to map. */
7153 for (unsigned i
= integer_id
+ 1; i
< varmap
.length (); ++i
)
7155 while (map
[varmap
[i
]->id
] != i
)
7156 std::swap (varmap
[i
], varmap
[map
[varmap
[i
]->id
]]);
7157 gcc_assert (bitmap_empty_p (varmap
[i
]->solution
));
7159 varmap
[i
]->next
= map
[varmap
[i
]->next
];
7160 varmap
[i
]->head
= map
[varmap
[i
]->head
];
7162 /* Finally rewrite constraints. */
7163 for (unsigned i
= 0; i
< constraints
.length (); ++i
)
7165 constraints
[i
]->lhs
.var
= map
[constraints
[i
]->lhs
.var
];
7166 constraints
[i
]->rhs
.var
= map
[constraints
[i
]->rhs
.var
];
7172 "\nCollapsing static cycles and doing variable "
7175 init_graph (varmap
.length () * 2);
7178 fprintf (dump_file
, "Building predecessor graph\n");
7179 build_pred_graph ();
7182 fprintf (dump_file
, "Detecting pointer and location "
7184 si
= perform_var_substitution (graph
);
7187 fprintf (dump_file
, "Rewriting constraints and unifying "
7189 rewrite_constraints (graph
, si
);
7191 build_succ_graph ();
7193 free_var_substitution_info (si
);
7195 /* Attach complex constraints to graph nodes. */
7196 move_complex_constraints (graph
);
7199 fprintf (dump_file
, "Uniting pointer but not location equivalent "
7201 unite_pointer_equivalences (graph
);
7204 fprintf (dump_file
, "Finding indirect cycles\n");
7205 find_indirect_cycles (graph
);
7207 /* Implicit nodes and predecessors are no longer necessary at this
7209 remove_preds_and_fake_succs (graph
);
7211 if (dump_file
&& (dump_flags
& TDF_GRAPH
))
7213 fprintf (dump_file
, "\n\n// The constraint graph before solve-graph "
7214 "in dot format:\n");
7215 dump_constraint_graph (dump_file
);
7216 fprintf (dump_file
, "\n\n");
7220 fprintf (dump_file
, "Solving graph\n");
7222 solve_graph (graph
);
7224 if (dump_file
&& (dump_flags
& TDF_GRAPH
))
7226 fprintf (dump_file
, "\n\n// The constraint graph after solve-graph "
7227 "in dot format:\n");
7228 dump_constraint_graph (dump_file
);
7229 fprintf (dump_file
, "\n\n");
7233 dump_sa_points_to_info (dump_file
);
7236 /* Create points-to sets for the current function. See the comments
7237 at the start of the file for an algorithmic overview. */
7240 compute_points_to_sets (void)
7245 timevar_push (TV_TREE_PTA
);
7249 intra_create_variable_infos (cfun
);
7251 /* Now walk all statements and build the constraint set. */
7252 FOR_EACH_BB_FN (bb
, cfun
)
7254 for (gphi_iterator gsi
= gsi_start_phis (bb
); !gsi_end_p (gsi
);
7257 gphi
*phi
= gsi
.phi ();
7259 if (! virtual_operand_p (gimple_phi_result (phi
)))
7260 find_func_aliases (cfun
, phi
);
7263 for (gimple_stmt_iterator gsi
= gsi_start_bb (bb
); !gsi_end_p (gsi
);
7266 gimple
*stmt
= gsi_stmt (gsi
);
7268 find_func_aliases (cfun
, stmt
);
7274 fprintf (dump_file
, "Points-to analysis\n\nConstraints:\n\n");
7275 dump_constraints (dump_file
, 0);
7278 /* From the constraints compute the points-to sets. */
7279 solve_constraints ();
7281 /* Compute the points-to set for ESCAPED used for call-clobber analysis. */
7282 cfun
->gimple_df
->escaped
= find_what_var_points_to (cfun
->decl
,
7283 get_varinfo (escaped_id
));
7285 /* Make sure the ESCAPED solution (which is used as placeholder in
7286 other solutions) does not reference itself. This simplifies
7287 points-to solution queries. */
7288 cfun
->gimple_df
->escaped
.escaped
= 0;
7290 /* Compute the points-to sets for pointer SSA_NAMEs. */
7294 FOR_EACH_SSA_NAME (i
, ptr
, cfun
)
7296 if (POINTER_TYPE_P (TREE_TYPE (ptr
)))
7297 find_what_p_points_to (cfun
->decl
, ptr
);
7300 /* Compute the call-used/clobbered sets. */
7301 FOR_EACH_BB_FN (bb
, cfun
)
7303 gimple_stmt_iterator gsi
;
7305 for (gsi
= gsi_start_bb (bb
); !gsi_end_p (gsi
); gsi_next (&gsi
))
7308 struct pt_solution
*pt
;
7310 stmt
= dyn_cast
<gcall
*> (gsi_stmt (gsi
));
7314 pt
= gimple_call_use_set (stmt
);
7315 if (gimple_call_flags (stmt
) & ECF_CONST
)
7316 memset (pt
, 0, sizeof (struct pt_solution
));
7317 else if ((vi
= lookup_call_use_vi (stmt
)) != NULL
)
7319 *pt
= find_what_var_points_to (cfun
->decl
, vi
);
7320 /* Escaped (and thus nonlocal) variables are always
7321 implicitly used by calls. */
7322 /* ??? ESCAPED can be empty even though NONLOCAL
7329 /* If there is nothing special about this call then
7330 we have made everything that is used also escape. */
7331 *pt
= cfun
->gimple_df
->escaped
;
7335 pt
= gimple_call_clobber_set (stmt
);
7336 if (gimple_call_flags (stmt
) & (ECF_CONST
|ECF_PURE
|ECF_NOVOPS
))
7337 memset (pt
, 0, sizeof (struct pt_solution
));
7338 else if ((vi
= lookup_call_clobber_vi (stmt
)) != NULL
)
7340 *pt
= find_what_var_points_to (cfun
->decl
, vi
);
7341 /* Escaped (and thus nonlocal) variables are always
7342 implicitly clobbered by calls. */
7343 /* ??? ESCAPED can be empty even though NONLOCAL
7350 /* If there is nothing special about this call then
7351 we have made everything that is used also escape. */
7352 *pt
= cfun
->gimple_df
->escaped
;
7358 timevar_pop (TV_TREE_PTA
);
7362 /* Delete created points-to sets. */
7365 delete_points_to_sets (void)
7369 delete shared_bitmap_table
;
7370 shared_bitmap_table
= NULL
;
7371 if (dump_file
&& (dump_flags
& TDF_STATS
))
7372 fprintf (dump_file
, "Points to sets created:%d\n",
7373 stats
.points_to_sets_created
);
7376 delete call_stmt_vars
;
7377 bitmap_obstack_release (&pta_obstack
);
7378 constraints
.release ();
7380 for (i
= 0; i
< graph
->size
; i
++)
7381 graph
->complex[i
].release ();
7382 free (graph
->complex);
7385 free (graph
->succs
);
7387 free (graph
->pe_rep
);
7388 free (graph
->indirect_cycles
);
7392 variable_info_pool
.release ();
7393 constraint_pool
.release ();
7395 obstack_free (&fake_var_decl_obstack
, NULL
);
7397 delete final_solutions
;
7398 obstack_free (&final_solutions_obstack
, NULL
);
7403 unsigned short clique
;
7407 /* Mark "other" loads and stores as belonging to CLIQUE and with
7411 visit_loadstore (gimple
*, tree base
, tree ref
, void *data
)
7413 unsigned short clique
= ((vls_data
*) data
)->clique
;
7414 bitmap rvars
= ((vls_data
*) data
)->rvars
;
7415 if (TREE_CODE (base
) == MEM_REF
7416 || TREE_CODE (base
) == TARGET_MEM_REF
)
7418 tree ptr
= TREE_OPERAND (base
, 0);
7419 if (TREE_CODE (ptr
) == SSA_NAME
)
7421 /* For parameters, get at the points-to set for the actual parm
7423 if (SSA_NAME_IS_DEFAULT_DEF (ptr
)
7424 && (TREE_CODE (SSA_NAME_VAR (ptr
)) == PARM_DECL
7425 || TREE_CODE (SSA_NAME_VAR (ptr
)) == RESULT_DECL
))
7426 ptr
= SSA_NAME_VAR (ptr
);
7428 /* We need to make sure 'ptr' doesn't include any of
7429 the restrict tags we added bases for in its points-to set. */
7430 varinfo_t vi
= lookup_vi_for_tree (ptr
);
7434 vi
= get_varinfo (find (vi
->id
));
7435 if (bitmap_intersect_p (rvars
, vi
->solution
))
7439 /* Do not overwrite existing cliques (that includes clique, base
7440 pairs we just set). */
7441 if (MR_DEPENDENCE_CLIQUE (base
) == 0)
7443 MR_DEPENDENCE_CLIQUE (base
) = clique
;
7444 MR_DEPENDENCE_BASE (base
) = 0;
7448 /* For plain decl accesses see whether they are accesses to globals
7449 and rewrite them to MEM_REFs with { clique, 0 }. */
7451 && is_global_var (base
)
7452 /* ??? We can't rewrite a plain decl with the walk_stmt_load_store
7457 while (handled_component_p (*basep
))
7458 basep
= &TREE_OPERAND (*basep
, 0);
7459 gcc_assert (VAR_P (*basep
));
7460 tree ptr
= build_fold_addr_expr (*basep
);
7461 tree zero
= build_int_cst (TREE_TYPE (ptr
), 0);
7462 *basep
= build2 (MEM_REF
, TREE_TYPE (*basep
), ptr
, zero
);
7463 MR_DEPENDENCE_CLIQUE (*basep
) = clique
;
7464 MR_DEPENDENCE_BASE (*basep
) = 0;
7470 /* If REF is a MEM_REF then assign a clique, base pair to it, updating
7471 CLIQUE, *RESTRICT_VAR and LAST_RUID. Return whether dependence info
7472 was assigned to REF. */
7475 maybe_set_dependence_info (tree ref
, tree ptr
,
7476 unsigned short &clique
, varinfo_t restrict_var
,
7477 unsigned short &last_ruid
)
7479 while (handled_component_p (ref
))
7480 ref
= TREE_OPERAND (ref
, 0);
7481 if ((TREE_CODE (ref
) == MEM_REF
7482 || TREE_CODE (ref
) == TARGET_MEM_REF
)
7483 && TREE_OPERAND (ref
, 0) == ptr
)
7485 /* Do not overwrite existing cliques. This avoids overwriting dependence
7486 info inlined from a function with restrict parameters inlined
7487 into a function with restrict parameters. This usually means we
7488 prefer to be precise in innermost loops. */
7489 if (MR_DEPENDENCE_CLIQUE (ref
) == 0)
7492 clique
= ++cfun
->last_clique
;
7493 if (restrict_var
->ruid
== 0)
7494 restrict_var
->ruid
= ++last_ruid
;
7495 MR_DEPENDENCE_CLIQUE (ref
) = clique
;
7496 MR_DEPENDENCE_BASE (ref
) = restrict_var
->ruid
;
7503 /* Compute the set of independend memory references based on restrict
7504 tags and their conservative propagation to the points-to sets. */
7507 compute_dependence_clique (void)
7509 unsigned short clique
= 0;
7510 unsigned short last_ruid
= 0;
7511 bitmap rvars
= BITMAP_ALLOC (NULL
);
7512 for (unsigned i
= 0; i
< num_ssa_names
; ++i
)
7514 tree ptr
= ssa_name (i
);
7515 if (!ptr
|| !POINTER_TYPE_P (TREE_TYPE (ptr
)))
7518 /* Avoid all this when ptr is not dereferenced? */
7520 if (SSA_NAME_IS_DEFAULT_DEF (ptr
)
7521 && (TREE_CODE (SSA_NAME_VAR (ptr
)) == PARM_DECL
7522 || TREE_CODE (SSA_NAME_VAR (ptr
)) == RESULT_DECL
))
7523 p
= SSA_NAME_VAR (ptr
);
7524 varinfo_t vi
= lookup_vi_for_tree (p
);
7527 vi
= get_varinfo (find (vi
->id
));
7530 varinfo_t restrict_var
= NULL
;
7531 EXECUTE_IF_SET_IN_BITMAP (vi
->solution
, 0, j
, bi
)
7533 varinfo_t oi
= get_varinfo (j
);
7534 if (oi
->is_restrict_var
)
7538 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
7540 fprintf (dump_file
, "found restrict pointed-to "
7542 print_generic_expr (dump_file
, ptr
);
7543 fprintf (dump_file
, " but not exclusively\n");
7545 restrict_var
= NULL
;
7550 /* NULL is the only other valid points-to entry. */
7551 else if (oi
->id
!= nothing_id
)
7553 restrict_var
= NULL
;
7557 /* Ok, found that ptr must(!) point to a single(!) restrict
7559 /* ??? PTA isn't really a proper propagation engine to compute
7561 ??? We could handle merging of two restricts by unifying them. */
7564 /* Now look at possible dereferences of ptr. */
7565 imm_use_iterator ui
;
7568 FOR_EACH_IMM_USE_STMT (use_stmt
, ui
, ptr
)
7570 /* ??? Calls and asms. */
7571 if (!gimple_assign_single_p (use_stmt
))
7573 used
|= maybe_set_dependence_info (gimple_assign_lhs (use_stmt
),
7574 ptr
, clique
, restrict_var
,
7576 used
|= maybe_set_dependence_info (gimple_assign_rhs1 (use_stmt
),
7577 ptr
, clique
, restrict_var
,
7581 bitmap_set_bit (rvars
, restrict_var
->id
);
7587 /* Assign the BASE id zero to all accesses not based on a restrict
7588 pointer. That way they get disambiguated against restrict
7589 accesses but not against each other. */
7590 /* ??? For restricts derived from globals (thus not incoming
7591 parameters) we can't restrict scoping properly thus the following
7592 is too aggressive there. For now we have excluded those globals from
7593 getting into the MR_DEPENDENCE machinery. */
7594 vls_data data
= { clique
, rvars
};
7596 FOR_EACH_BB_FN (bb
, cfun
)
7597 for (gimple_stmt_iterator gsi
= gsi_start_bb (bb
);
7598 !gsi_end_p (gsi
); gsi_next (&gsi
))
7600 gimple
*stmt
= gsi_stmt (gsi
);
7601 walk_stmt_load_store_ops (stmt
, &data
,
7602 visit_loadstore
, visit_loadstore
);
7606 BITMAP_FREE (rvars
);
7609 /* Compute points-to information for every SSA_NAME pointer in the
7610 current function and compute the transitive closure of escaped
7611 variables to re-initialize the call-clobber states of local variables. */
7614 compute_may_aliases (void)
7616 if (cfun
->gimple_df
->ipa_pta
)
7620 fprintf (dump_file
, "\nNot re-computing points-to information "
7621 "because IPA points-to information is available.\n\n");
7623 /* But still dump what we have remaining it. */
7624 dump_alias_info (dump_file
);
7630 /* For each pointer P_i, determine the sets of variables that P_i may
7631 point-to. Compute the reachability set of escaped and call-used
7633 compute_points_to_sets ();
7635 /* Debugging dumps. */
7637 dump_alias_info (dump_file
);
7639 /* Compute restrict-based memory disambiguations. */
7640 compute_dependence_clique ();
7642 /* Deallocate memory used by aliasing data structures and the internal
7643 points-to solution. */
7644 delete_points_to_sets ();
7646 gcc_assert (!need_ssa_update_p (cfun
));
7651 /* A dummy pass to cause points-to information to be computed via
7652 TODO_rebuild_alias. */
7656 const pass_data pass_data_build_alias
=
7658 GIMPLE_PASS
, /* type */
7660 OPTGROUP_NONE
, /* optinfo_flags */
7661 TV_NONE
, /* tv_id */
7662 ( PROP_cfg
| PROP_ssa
), /* properties_required */
7663 0, /* properties_provided */
7664 0, /* properties_destroyed */
7665 0, /* todo_flags_start */
7666 TODO_rebuild_alias
, /* todo_flags_finish */
7669 class pass_build_alias
: public gimple_opt_pass
7672 pass_build_alias (gcc::context
*ctxt
)
7673 : gimple_opt_pass (pass_data_build_alias
, ctxt
)
7676 /* opt_pass methods: */
7677 virtual bool gate (function
*) { return flag_tree_pta
; }
7679 }; // class pass_build_alias
7684 make_pass_build_alias (gcc::context
*ctxt
)
7686 return new pass_build_alias (ctxt
);
7689 /* A dummy pass to cause points-to information to be computed via
7690 TODO_rebuild_alias. */
7694 const pass_data pass_data_build_ealias
=
7696 GIMPLE_PASS
, /* type */
7697 "ealias", /* name */
7698 OPTGROUP_NONE
, /* optinfo_flags */
7699 TV_NONE
, /* tv_id */
7700 ( PROP_cfg
| PROP_ssa
), /* properties_required */
7701 0, /* properties_provided */
7702 0, /* properties_destroyed */
7703 0, /* todo_flags_start */
7704 TODO_rebuild_alias
, /* todo_flags_finish */
7707 class pass_build_ealias
: public gimple_opt_pass
7710 pass_build_ealias (gcc::context
*ctxt
)
7711 : gimple_opt_pass (pass_data_build_ealias
, ctxt
)
7714 /* opt_pass methods: */
7715 virtual bool gate (function
*) { return flag_tree_pta
; }
7717 }; // class pass_build_ealias
7722 make_pass_build_ealias (gcc::context
*ctxt
)
7724 return new pass_build_ealias (ctxt
);
7728 /* IPA PTA solutions for ESCAPED. */
7729 struct pt_solution ipa_escaped_pt
7730 = { true, false, false, false, false,
7731 false, false, false, false, false, NULL
};
7733 /* Associate node with varinfo DATA. Worker for
7734 cgraph_for_symbol_thunks_and_aliases. */
7736 associate_varinfo_to_alias (struct cgraph_node
*node
, void *data
)
7739 || (node
->thunk
.thunk_p
7740 && ! node
->global
.inlined_to
))
7742 && !node
->ifunc_resolver
)
7743 insert_vi_for_tree (node
->decl
, (varinfo_t
)data
);
7747 /* Dump varinfo VI to FILE. */
7750 dump_varinfo (FILE *file
, varinfo_t vi
)
7755 fprintf (file
, "%u: %s\n", vi
->id
, vi
->name
);
7757 const char *sep
= " ";
7758 if (vi
->is_artificial_var
)
7759 fprintf (file
, "%sartificial", sep
);
7760 if (vi
->is_special_var
)
7761 fprintf (file
, "%sspecial", sep
);
7762 if (vi
->is_unknown_size_var
)
7763 fprintf (file
, "%sunknown-size", sep
);
7764 if (vi
->is_full_var
)
7765 fprintf (file
, "%sfull", sep
);
7766 if (vi
->is_heap_var
)
7767 fprintf (file
, "%sheap", sep
);
7768 if (vi
->may_have_pointers
)
7769 fprintf (file
, "%smay-have-pointers", sep
);
7770 if (vi
->only_restrict_pointers
)
7771 fprintf (file
, "%sonly-restrict-pointers", sep
);
7772 if (vi
->is_restrict_var
)
7773 fprintf (file
, "%sis-restrict-var", sep
);
7774 if (vi
->is_global_var
)
7775 fprintf (file
, "%sglobal", sep
);
7776 if (vi
->is_ipa_escape_point
)
7777 fprintf (file
, "%sipa-escape-point", sep
);
7779 fprintf (file
, "%sfn-info", sep
);
7781 fprintf (file
, "%srestrict-uid:%u", sep
, vi
->ruid
);
7783 fprintf (file
, "%snext:%u", sep
, vi
->next
);
7784 if (vi
->head
!= vi
->id
)
7785 fprintf (file
, "%shead:%u", sep
, vi
->head
);
7787 fprintf (file
, "%soffset:" HOST_WIDE_INT_PRINT_DEC
, sep
, vi
->offset
);
7788 if (vi
->size
!= ~(unsigned HOST_WIDE_INT
)0)
7789 fprintf (file
, "%ssize:" HOST_WIDE_INT_PRINT_DEC
, sep
, vi
->size
);
7790 if (vi
->fullsize
!= ~(unsigned HOST_WIDE_INT
)0
7791 && vi
->fullsize
!= vi
->size
)
7792 fprintf (file
, "%sfullsize:" HOST_WIDE_INT_PRINT_DEC
, sep
,
7794 fprintf (file
, "\n");
7796 if (vi
->solution
&& !bitmap_empty_p (vi
->solution
))
7800 fprintf (file
, " solution: {");
7801 EXECUTE_IF_SET_IN_BITMAP (vi
->solution
, 0, i
, bi
)
7802 fprintf (file
, " %u", i
);
7803 fprintf (file
, " }\n");
7806 if (vi
->oldsolution
&& !bitmap_empty_p (vi
->oldsolution
)
7807 && !bitmap_equal_p (vi
->solution
, vi
->oldsolution
))
7811 fprintf (file
, " oldsolution: {");
7812 EXECUTE_IF_SET_IN_BITMAP (vi
->oldsolution
, 0, i
, bi
)
7813 fprintf (file
, " %u", i
);
7814 fprintf (file
, " }\n");
7818 /* Dump varinfo VI to stderr. */
7821 debug_varinfo (varinfo_t vi
)
7823 dump_varinfo (stderr
, vi
);
7826 /* Dump varmap to FILE. */
7829 dump_varmap (FILE *file
)
7831 if (varmap
.length () == 0)
7834 fprintf (file
, "variables:\n");
7836 for (unsigned int i
= 0; i
< varmap
.length (); ++i
)
7838 varinfo_t vi
= get_varinfo (i
);
7839 dump_varinfo (file
, vi
);
7842 fprintf (file
, "\n");
7845 /* Dump varmap to stderr. */
7850 dump_varmap (stderr
);
7853 /* Compute whether node is refered to non-locally. Worker for
7854 cgraph_for_symbol_thunks_and_aliases. */
7856 refered_from_nonlocal_fn (struct cgraph_node
*node
, void *data
)
7858 bool *nonlocal_p
= (bool *)data
;
7859 *nonlocal_p
|= (node
->used_from_other_partition
7860 || node
->externally_visible
7861 || node
->force_output
7862 || lookup_attribute ("noipa", DECL_ATTRIBUTES (node
->decl
)));
7866 /* Same for varpool nodes. */
7868 refered_from_nonlocal_var (struct varpool_node
*node
, void *data
)
7870 bool *nonlocal_p
= (bool *)data
;
7871 *nonlocal_p
|= (node
->used_from_other_partition
7872 || node
->externally_visible
7873 || node
->force_output
);
7877 /* Execute the driver for IPA PTA. */
7879 ipa_pta_execute (void)
7881 struct cgraph_node
*node
;
7883 unsigned int from
= 0;
7889 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
7891 symtab
->dump (dump_file
);
7892 fprintf (dump_file
, "\n");
7897 fprintf (dump_file
, "Generating generic constraints\n\n");
7898 dump_constraints (dump_file
, from
);
7899 fprintf (dump_file
, "\n");
7900 from
= constraints
.length ();
7903 /* Build the constraints. */
7904 FOR_EACH_DEFINED_FUNCTION (node
)
7907 /* Nodes without a body are not interesting. Especially do not
7908 visit clones at this point for now - we get duplicate decls
7909 there for inline clones at least. */
7910 if (!node
->has_gimple_body_p () || node
->global
.inlined_to
)
7914 gcc_assert (!node
->clone_of
);
7916 /* For externally visible or attribute used annotated functions use
7917 local constraints for their arguments.
7918 For local functions we see all callers and thus do not need initial
7919 constraints for parameters. */
7920 bool nonlocal_p
= (node
->used_from_other_partition
7921 || node
->externally_visible
7922 || node
->force_output
7923 || lookup_attribute ("noipa",
7924 DECL_ATTRIBUTES (node
->decl
)));
7925 node
->call_for_symbol_thunks_and_aliases (refered_from_nonlocal_fn
,
7928 vi
= create_function_info_for (node
->decl
,
7929 alias_get_name (node
->decl
), false,
7932 && from
!= constraints
.length ())
7935 "Generating intial constraints for %s", node
->name ());
7936 if (DECL_ASSEMBLER_NAME_SET_P (node
->decl
))
7937 fprintf (dump_file
, " (%s)",
7939 (DECL_ASSEMBLER_NAME (node
->decl
)));
7940 fprintf (dump_file
, "\n\n");
7941 dump_constraints (dump_file
, from
);
7942 fprintf (dump_file
, "\n");
7944 from
= constraints
.length ();
7947 node
->call_for_symbol_thunks_and_aliases
7948 (associate_varinfo_to_alias
, vi
, true);
7951 /* Create constraints for global variables and their initializers. */
7952 FOR_EACH_VARIABLE (var
)
7954 if (var
->alias
&& var
->analyzed
)
7957 varinfo_t vi
= get_vi_for_tree (var
->decl
);
7959 /* For the purpose of IPA PTA unit-local globals are not
7961 bool nonlocal_p
= (var
->used_from_other_partition
7962 || var
->externally_visible
7963 || var
->force_output
);
7964 var
->call_for_symbol_and_aliases (refered_from_nonlocal_var
,
7967 vi
->is_ipa_escape_point
= true;
7971 && from
!= constraints
.length ())
7974 "Generating constraints for global initializers\n\n");
7975 dump_constraints (dump_file
, from
);
7976 fprintf (dump_file
, "\n");
7977 from
= constraints
.length ();
7980 FOR_EACH_DEFINED_FUNCTION (node
)
7982 struct function
*func
;
7985 /* Nodes without a body are not interesting. */
7986 if (!node
->has_gimple_body_p () || node
->clone_of
)
7992 "Generating constraints for %s", node
->name ());
7993 if (DECL_ASSEMBLER_NAME_SET_P (node
->decl
))
7994 fprintf (dump_file
, " (%s)",
7996 (DECL_ASSEMBLER_NAME (node
->decl
)));
7997 fprintf (dump_file
, "\n");
8000 func
= DECL_STRUCT_FUNCTION (node
->decl
);
8001 gcc_assert (cfun
== NULL
);
8003 /* Build constriants for the function body. */
8004 FOR_EACH_BB_FN (bb
, func
)
8006 for (gphi_iterator gsi
= gsi_start_phis (bb
); !gsi_end_p (gsi
);
8009 gphi
*phi
= gsi
.phi ();
8011 if (! virtual_operand_p (gimple_phi_result (phi
)))
8012 find_func_aliases (func
, phi
);
8015 for (gimple_stmt_iterator gsi
= gsi_start_bb (bb
); !gsi_end_p (gsi
);
8018 gimple
*stmt
= gsi_stmt (gsi
);
8020 find_func_aliases (func
, stmt
);
8021 find_func_clobbers (func
, stmt
);
8027 fprintf (dump_file
, "\n");
8028 dump_constraints (dump_file
, from
);
8029 fprintf (dump_file
, "\n");
8030 from
= constraints
.length ();
8034 /* From the constraints compute the points-to sets. */
8035 solve_constraints ();
8037 /* Compute the global points-to sets for ESCAPED.
8038 ??? Note that the computed escape set is not correct
8039 for the whole unit as we fail to consider graph edges to
8040 externally visible functions. */
8041 ipa_escaped_pt
= find_what_var_points_to (NULL
, get_varinfo (escaped_id
));
8043 /* Make sure the ESCAPED solution (which is used as placeholder in
8044 other solutions) does not reference itself. This simplifies
8045 points-to solution queries. */
8046 ipa_escaped_pt
.ipa_escaped
= 0;
8048 /* Assign the points-to sets to the SSA names in the unit. */
8049 FOR_EACH_DEFINED_FUNCTION (node
)
8052 struct function
*fn
;
8056 /* Nodes without a body are not interesting. */
8057 if (!node
->has_gimple_body_p () || node
->clone_of
)
8060 fn
= DECL_STRUCT_FUNCTION (node
->decl
);
8062 /* Compute the points-to sets for pointer SSA_NAMEs. */
8063 FOR_EACH_VEC_ELT (*fn
->gimple_df
->ssa_names
, i
, ptr
)
8066 && POINTER_TYPE_P (TREE_TYPE (ptr
)))
8067 find_what_p_points_to (node
->decl
, ptr
);
8070 /* Compute the call-use and call-clobber sets for indirect calls
8071 and calls to external functions. */
8072 FOR_EACH_BB_FN (bb
, fn
)
8074 gimple_stmt_iterator gsi
;
8076 for (gsi
= gsi_start_bb (bb
); !gsi_end_p (gsi
); gsi_next (&gsi
))
8079 struct pt_solution
*pt
;
8083 stmt
= dyn_cast
<gcall
*> (gsi_stmt (gsi
));
8087 /* Handle direct calls to functions with body. */
8088 decl
= gimple_call_fndecl (stmt
);
8091 tree called_decl
= NULL_TREE
;
8092 if (gimple_call_builtin_p (stmt
, BUILT_IN_GOMP_PARALLEL
))
8093 called_decl
= TREE_OPERAND (gimple_call_arg (stmt
, 0), 0);
8094 else if (gimple_call_builtin_p (stmt
, BUILT_IN_GOACC_PARALLEL
))
8095 called_decl
= TREE_OPERAND (gimple_call_arg (stmt
, 1), 0);
8097 if (called_decl
!= NULL_TREE
8098 && !fndecl_maybe_in_other_partition (called_decl
))
8103 && (fi
= lookup_vi_for_tree (decl
))
8106 *gimple_call_clobber_set (stmt
)
8107 = find_what_var_points_to
8108 (node
->decl
, first_vi_for_offset (fi
, fi_clobbers
));
8109 *gimple_call_use_set (stmt
)
8110 = find_what_var_points_to
8111 (node
->decl
, first_vi_for_offset (fi
, fi_uses
));
8113 /* Handle direct calls to external functions. */
8114 else if (decl
&& (!fi
|| fi
->decl
))
8116 pt
= gimple_call_use_set (stmt
);
8117 if (gimple_call_flags (stmt
) & ECF_CONST
)
8118 memset (pt
, 0, sizeof (struct pt_solution
));
8119 else if ((vi
= lookup_call_use_vi (stmt
)) != NULL
)
8121 *pt
= find_what_var_points_to (node
->decl
, vi
);
8122 /* Escaped (and thus nonlocal) variables are always
8123 implicitly used by calls. */
8124 /* ??? ESCAPED can be empty even though NONLOCAL
8127 pt
->ipa_escaped
= 1;
8131 /* If there is nothing special about this call then
8132 we have made everything that is used also escape. */
8133 *pt
= ipa_escaped_pt
;
8137 pt
= gimple_call_clobber_set (stmt
);
8138 if (gimple_call_flags (stmt
) & (ECF_CONST
|ECF_PURE
|ECF_NOVOPS
))
8139 memset (pt
, 0, sizeof (struct pt_solution
));
8140 else if ((vi
= lookup_call_clobber_vi (stmt
)) != NULL
)
8142 *pt
= find_what_var_points_to (node
->decl
, vi
);
8143 /* Escaped (and thus nonlocal) variables are always
8144 implicitly clobbered by calls. */
8145 /* ??? ESCAPED can be empty even though NONLOCAL
8148 pt
->ipa_escaped
= 1;
8152 /* If there is nothing special about this call then
8153 we have made everything that is used also escape. */
8154 *pt
= ipa_escaped_pt
;
8158 /* Handle indirect calls. */
8159 else if ((fi
= get_fi_for_callee (stmt
)))
8161 /* We need to accumulate all clobbers/uses of all possible
8163 fi
= get_varinfo (find (fi
->id
));
8164 /* If we cannot constrain the set of functions we'll end up
8165 calling we end up using/clobbering everything. */
8166 if (bitmap_bit_p (fi
->solution
, anything_id
)
8167 || bitmap_bit_p (fi
->solution
, nonlocal_id
)
8168 || bitmap_bit_p (fi
->solution
, escaped_id
))
8170 pt_solution_reset (gimple_call_clobber_set (stmt
));
8171 pt_solution_reset (gimple_call_use_set (stmt
));
8177 struct pt_solution
*uses
, *clobbers
;
8179 uses
= gimple_call_use_set (stmt
);
8180 clobbers
= gimple_call_clobber_set (stmt
);
8181 memset (uses
, 0, sizeof (struct pt_solution
));
8182 memset (clobbers
, 0, sizeof (struct pt_solution
));
8183 EXECUTE_IF_SET_IN_BITMAP (fi
->solution
, 0, i
, bi
)
8185 struct pt_solution sol
;
8187 vi
= get_varinfo (i
);
8188 if (!vi
->is_fn_info
)
8190 /* ??? We could be more precise here? */
8192 uses
->ipa_escaped
= 1;
8193 clobbers
->nonlocal
= 1;
8194 clobbers
->ipa_escaped
= 1;
8198 if (!uses
->anything
)
8200 sol
= find_what_var_points_to
8202 first_vi_for_offset (vi
, fi_uses
));
8203 pt_solution_ior_into (uses
, &sol
);
8205 if (!clobbers
->anything
)
8207 sol
= find_what_var_points_to
8209 first_vi_for_offset (vi
, fi_clobbers
));
8210 pt_solution_ior_into (clobbers
, &sol
);
8220 fn
->gimple_df
->ipa_pta
= true;
8222 /* We have to re-set the final-solution cache after each function
8223 because what is a "global" is dependent on function context. */
8224 final_solutions
->empty ();
8225 obstack_free (&final_solutions_obstack
, NULL
);
8226 gcc_obstack_init (&final_solutions_obstack
);
8229 delete_points_to_sets ();
8238 const pass_data pass_data_ipa_pta
=
8240 SIMPLE_IPA_PASS
, /* type */
8242 OPTGROUP_NONE
, /* optinfo_flags */
8243 TV_IPA_PTA
, /* tv_id */
8244 0, /* properties_required */
8245 0, /* properties_provided */
8246 0, /* properties_destroyed */
8247 0, /* todo_flags_start */
8248 0, /* todo_flags_finish */
8251 class pass_ipa_pta
: public simple_ipa_opt_pass
8254 pass_ipa_pta (gcc::context
*ctxt
)
8255 : simple_ipa_opt_pass (pass_data_ipa_pta
, ctxt
)
8258 /* opt_pass methods: */
8259 virtual bool gate (function
*)
8263 /* Don't bother doing anything if the program has errors. */
8267 opt_pass
* clone () { return new pass_ipa_pta (m_ctxt
); }
8269 virtual unsigned int execute (function
*) { return ipa_pta_execute (); }
8271 }; // class pass_ipa_pta
8275 simple_ipa_opt_pass
*
8276 make_pass_ipa_pta (gcc::context
*ctxt
)
8278 return new pass_ipa_pta (ctxt
);