2015-09-25 Vladimir Makarov <vmakarov@redhat.com>
[official-gcc.git] / gcc / tree-ssa-structalias.c
blob8d86dcbf0ccc92fcb87f8ef36a78fc161f74cd63
1 /* Tree based points-to analysis
2 Copyright (C) 2005-2015 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/>. */
21 #include "config.h"
22 #include "system.h"
23 #include "coretypes.h"
24 #include "backend.h"
25 #include "tree.h"
26 #include "gimple.h"
27 #include "rtl.h"
28 #include "ssa.h"
29 #include "flags.h"
30 #include "alias.h"
31 #include "fold-const.h"
32 #include "stor-layout.h"
33 #include "stmt.h"
34 #include "internal-fn.h"
35 #include "gimple-iterator.h"
36 #include "cgraph.h"
37 #include "tree-into-ssa.h"
38 #include "insn-config.h"
39 #include "expmed.h"
40 #include "dojump.h"
41 #include "explow.h"
42 #include "calls.h"
43 #include "emit-rtl.h"
44 #include "varasm.h"
45 #include "expr.h"
46 #include "tree-dfa.h"
47 #include "tree-inline.h"
48 #include "diagnostic-core.h"
49 #include "tree-pass.h"
50 #include "alloc-pool.h"
51 #include "splay-tree.h"
52 #include "params.h"
53 #include "tree-pretty-print.h"
54 #include "gimple-walk.h"
56 /* The idea behind this analyzer is to generate set constraints from the
57 program, then solve the resulting constraints in order to generate the
58 points-to sets.
60 Set constraints are a way of modeling program analysis problems that
61 involve sets. They consist of an inclusion constraint language,
62 describing the variables (each variable is a set) and operations that
63 are involved on the variables, and a set of rules that derive facts
64 from these operations. To solve a system of set constraints, you derive
65 all possible facts under the rules, which gives you the correct sets
66 as a consequence.
68 See "Efficient Field-sensitive pointer analysis for C" by "David
69 J. Pearce and Paul H. J. Kelly and Chris Hankin, at
70 http://citeseer.ist.psu.edu/pearce04efficient.html
72 Also see "Ultra-fast Aliasing Analysis using CLA: A Million Lines
73 of C Code in a Second" by ""Nevin Heintze and Olivier Tardieu" at
74 http://citeseer.ist.psu.edu/heintze01ultrafast.html
76 There are three types of real constraint expressions, DEREF,
77 ADDRESSOF, and SCALAR. Each constraint expression consists
78 of a constraint type, a variable, and an offset.
80 SCALAR is a constraint expression type used to represent x, whether
81 it appears on the LHS or the RHS of a statement.
82 DEREF is a constraint expression type used to represent *x, whether
83 it appears on the LHS or the RHS of a statement.
84 ADDRESSOF is a constraint expression used to represent &x, whether
85 it appears on the LHS or the RHS of a statement.
87 Each pointer variable in the program is assigned an integer id, and
88 each field of a structure variable is assigned an integer id as well.
90 Structure variables are linked to their list of fields through a "next
91 field" in each variable that points to the next field in offset
92 order.
93 Each variable for a structure field has
95 1. "size", that tells the size in bits of that field.
96 2. "fullsize, that tells the size in bits of the entire structure.
97 3. "offset", that tells the offset in bits from the beginning of the
98 structure to this field.
100 Thus,
101 struct f
103 int a;
104 int b;
105 } foo;
106 int *bar;
108 looks like
110 foo.a -> id 1, size 32, offset 0, fullsize 64, next foo.b
111 foo.b -> id 2, size 32, offset 32, fullsize 64, next NULL
112 bar -> id 3, size 32, offset 0, fullsize 32, next NULL
115 In order to solve the system of set constraints, the following is
116 done:
118 1. Each constraint variable x has a solution set associated with it,
119 Sol(x).
121 2. Constraints are separated into direct, copy, and complex.
122 Direct constraints are ADDRESSOF constraints that require no extra
123 processing, such as P = &Q
124 Copy constraints are those of the form P = Q.
125 Complex constraints are all the constraints involving dereferences
126 and offsets (including offsetted copies).
128 3. All direct constraints of the form P = &Q are processed, such
129 that Q is added to Sol(P)
131 4. All complex constraints for a given constraint variable are stored in a
132 linked list attached to that variable's node.
134 5. A directed graph is built out of the copy constraints. Each
135 constraint variable is a node in the graph, and an edge from
136 Q to P is added for each copy constraint of the form P = Q
138 6. The graph is then walked, and solution sets are
139 propagated along the copy edges, such that an edge from Q to P
140 causes Sol(P) <- Sol(P) union Sol(Q).
142 7. As we visit each node, all complex constraints associated with
143 that node are processed by adding appropriate copy edges to the graph, or the
144 appropriate variables to the solution set.
146 8. The process of walking the graph is iterated until no solution
147 sets change.
149 Prior to walking the graph in steps 6 and 7, We perform static
150 cycle elimination on the constraint graph, as well
151 as off-line variable substitution.
153 TODO: Adding offsets to pointer-to-structures can be handled (IE not punted
154 on and turned into anything), but isn't. You can just see what offset
155 inside the pointed-to struct it's going to access.
157 TODO: Constant bounded arrays can be handled as if they were structs of the
158 same number of elements.
160 TODO: Modeling heap and incoming pointers becomes much better if we
161 add fields to them as we discover them, which we could do.
163 TODO: We could handle unions, but to be honest, it's probably not
164 worth the pain or slowdown. */
166 /* IPA-PTA optimizations possible.
168 When the indirect function called is ANYTHING we can add disambiguation
169 based on the function signatures (or simply the parameter count which
170 is the varinfo size). We also do not need to consider functions that
171 do not have their address taken.
173 The is_global_var bit which marks escape points is overly conservative
174 in IPA mode. Split it to is_escape_point and is_global_var - only
175 externally visible globals are escape points in IPA mode. This is
176 also needed to fix the pt_solution_includes_global predicate
177 (and thus ptr_deref_may_alias_global_p).
179 The way we introduce DECL_PT_UID to avoid fixing up all points-to
180 sets in the translation unit when we copy a DECL during inlining
181 pessimizes precision. The advantage is that the DECL_PT_UID keeps
182 compile-time and memory usage overhead low - the points-to sets
183 do not grow or get unshared as they would during a fixup phase.
184 An alternative solution is to delay IPA PTA until after all
185 inlining transformations have been applied.
187 The way we propagate clobber/use information isn't optimized.
188 It should use a new complex constraint that properly filters
189 out local variables of the callee (though that would make
190 the sets invalid after inlining). OTOH we might as well
191 admit defeat to WHOPR and simply do all the clobber/use analysis
192 and propagation after PTA finished but before we threw away
193 points-to information for memory variables. WHOPR and PTA
194 do not play along well anyway - the whole constraint solving
195 would need to be done in WPA phase and it will be very interesting
196 to apply the results to local SSA names during LTRANS phase.
198 We probably should compute a per-function unit-ESCAPE solution
199 propagating it simply like the clobber / uses solutions. The
200 solution can go alongside the non-IPA espaced solution and be
201 used to query which vars escape the unit through a function.
203 We never put function decls in points-to sets so we do not
204 keep the set of called functions for indirect calls.
206 And probably more. */
208 static bool use_field_sensitive = true;
209 static int in_ipa_mode = 0;
211 /* Used for predecessor bitmaps. */
212 static bitmap_obstack predbitmap_obstack;
214 /* Used for points-to sets. */
215 static bitmap_obstack pta_obstack;
217 /* Used for oldsolution members of variables. */
218 static bitmap_obstack oldpta_obstack;
220 /* Used for per-solver-iteration bitmaps. */
221 static bitmap_obstack iteration_obstack;
223 static unsigned int create_variable_info_for (tree, const char *);
224 typedef struct constraint_graph *constraint_graph_t;
225 static void unify_nodes (constraint_graph_t, unsigned int, unsigned int, bool);
227 struct constraint;
228 typedef struct constraint *constraint_t;
231 #define EXECUTE_IF_IN_NONNULL_BITMAP(a, b, c, d) \
232 if (a) \
233 EXECUTE_IF_SET_IN_BITMAP (a, b, c, d)
235 static struct constraint_stats
237 unsigned int total_vars;
238 unsigned int nonpointer_vars;
239 unsigned int unified_vars_static;
240 unsigned int unified_vars_dynamic;
241 unsigned int iterations;
242 unsigned int num_edges;
243 unsigned int num_implicit_edges;
244 unsigned int points_to_sets_created;
245 } stats;
247 struct variable_info
249 /* ID of this variable */
250 unsigned int id;
252 /* True if this is a variable created by the constraint analysis, such as
253 heap variables and constraints we had to break up. */
254 unsigned int is_artificial_var : 1;
256 /* True if this is a special variable whose solution set should not be
257 changed. */
258 unsigned int is_special_var : 1;
260 /* True for variables whose size is not known or variable. */
261 unsigned int is_unknown_size_var : 1;
263 /* True for (sub-)fields that represent a whole variable. */
264 unsigned int is_full_var : 1;
266 /* True if this is a heap variable. */
267 unsigned int is_heap_var : 1;
269 /* True if this field may contain pointers. */
270 unsigned int may_have_pointers : 1;
272 /* True if this field has only restrict qualified pointers. */
273 unsigned int only_restrict_pointers : 1;
275 /* True if this represents a heap var created for a restrict qualified
276 pointer. */
277 unsigned int is_restrict_var : 1;
279 /* True if this represents a global variable. */
280 unsigned int is_global_var : 1;
282 /* True if this represents a IPA function info. */
283 unsigned int is_fn_info : 1;
285 /* ??? Store somewhere better. */
286 unsigned short ruid;
288 /* The ID of the variable for the next field in this structure
289 or zero for the last field in this structure. */
290 unsigned next;
292 /* The ID of the variable for the first field in this structure. */
293 unsigned head;
295 /* Offset of this variable, in bits, from the base variable */
296 unsigned HOST_WIDE_INT offset;
298 /* Size of the variable, in bits. */
299 unsigned HOST_WIDE_INT size;
301 /* Full size of the base variable, in bits. */
302 unsigned HOST_WIDE_INT fullsize;
304 /* Name of this variable */
305 const char *name;
307 /* Tree that this variable is associated with. */
308 tree decl;
310 /* Points-to set for this variable. */
311 bitmap solution;
313 /* Old points-to set for this variable. */
314 bitmap oldsolution;
316 typedef struct variable_info *varinfo_t;
318 static varinfo_t first_vi_for_offset (varinfo_t, unsigned HOST_WIDE_INT);
319 static varinfo_t first_or_preceding_vi_for_offset (varinfo_t,
320 unsigned HOST_WIDE_INT);
321 static varinfo_t lookup_vi_for_tree (tree);
322 static inline bool type_can_have_subvars (const_tree);
324 /* Pool of variable info structures. */
325 static object_allocator<variable_info> variable_info_pool
326 ("Variable info pool");
328 /* Map varinfo to final pt_solution. */
329 static hash_map<varinfo_t, pt_solution *> *final_solutions;
330 struct obstack final_solutions_obstack;
332 /* Table of variable info structures for constraint variables.
333 Indexed directly by variable info id. */
334 static vec<varinfo_t> varmap;
336 /* Return the varmap element N */
338 static inline varinfo_t
339 get_varinfo (unsigned int n)
341 return varmap[n];
344 /* Return the next variable in the list of sub-variables of VI
345 or NULL if VI is the last sub-variable. */
347 static inline varinfo_t
348 vi_next (varinfo_t vi)
350 return get_varinfo (vi->next);
353 /* Static IDs for the special variables. Variable ID zero is unused
354 and used as terminator for the sub-variable chain. */
355 enum { nothing_id = 1, anything_id = 2, string_id = 3,
356 escaped_id = 4, nonlocal_id = 5,
357 storedanything_id = 6, integer_id = 7 };
359 /* Return a new variable info structure consisting for a variable
360 named NAME, and using constraint graph node NODE. Append it
361 to the vector of variable info structures. */
363 static varinfo_t
364 new_var_info (tree t, const char *name)
366 unsigned index = varmap.length ();
367 varinfo_t ret = variable_info_pool.allocate ();
369 ret->id = index;
370 ret->name = name;
371 ret->decl = t;
372 /* Vars without decl are artificial and do not have sub-variables. */
373 ret->is_artificial_var = (t == NULL_TREE);
374 ret->is_special_var = false;
375 ret->is_unknown_size_var = false;
376 ret->is_full_var = (t == NULL_TREE);
377 ret->is_heap_var = false;
378 ret->may_have_pointers = true;
379 ret->only_restrict_pointers = false;
380 ret->is_restrict_var = false;
381 ret->ruid = 0;
382 ret->is_global_var = (t == NULL_TREE);
383 ret->is_fn_info = false;
384 if (t && DECL_P (t))
385 ret->is_global_var = (is_global_var (t)
386 /* We have to treat even local register variables
387 as escape points. */
388 || (TREE_CODE (t) == VAR_DECL
389 && DECL_HARD_REGISTER (t)));
390 ret->solution = BITMAP_ALLOC (&pta_obstack);
391 ret->oldsolution = NULL;
392 ret->next = 0;
393 ret->head = ret->id;
395 stats.total_vars++;
397 varmap.safe_push (ret);
399 return ret;
403 /* A map mapping call statements to per-stmt variables for uses
404 and clobbers specific to the call. */
405 static hash_map<gimple *, varinfo_t> *call_stmt_vars;
407 /* Lookup or create the variable for the call statement CALL. */
409 static varinfo_t
410 get_call_vi (gcall *call)
412 varinfo_t vi, vi2;
414 bool existed;
415 varinfo_t *slot_p = &call_stmt_vars->get_or_insert (call, &existed);
416 if (existed)
417 return *slot_p;
419 vi = new_var_info (NULL_TREE, "CALLUSED");
420 vi->offset = 0;
421 vi->size = 1;
422 vi->fullsize = 2;
423 vi->is_full_var = true;
425 vi2 = new_var_info (NULL_TREE, "CALLCLOBBERED");
426 vi2->offset = 1;
427 vi2->size = 1;
428 vi2->fullsize = 2;
429 vi2->is_full_var = true;
431 vi->next = vi2->id;
433 *slot_p = vi;
434 return vi;
437 /* Lookup the variable for the call statement CALL representing
438 the uses. Returns NULL if there is nothing special about this call. */
440 static varinfo_t
441 lookup_call_use_vi (gcall *call)
443 varinfo_t *slot_p = call_stmt_vars->get (call);
444 if (slot_p)
445 return *slot_p;
447 return NULL;
450 /* Lookup the variable for the call statement CALL representing
451 the clobbers. Returns NULL if there is nothing special about this call. */
453 static varinfo_t
454 lookup_call_clobber_vi (gcall *call)
456 varinfo_t uses = lookup_call_use_vi (call);
457 if (!uses)
458 return NULL;
460 return vi_next (uses);
463 /* Lookup or create the variable for the call statement CALL representing
464 the uses. */
466 static varinfo_t
467 get_call_use_vi (gcall *call)
469 return get_call_vi (call);
472 /* Lookup or create the variable for the call statement CALL representing
473 the clobbers. */
475 static varinfo_t ATTRIBUTE_UNUSED
476 get_call_clobber_vi (gcall *call)
478 return vi_next (get_call_vi (call));
482 enum constraint_expr_type {SCALAR, DEREF, ADDRESSOF};
484 /* An expression that appears in a constraint. */
486 struct constraint_expr
488 /* Constraint type. */
489 constraint_expr_type type;
491 /* Variable we are referring to in the constraint. */
492 unsigned int var;
494 /* Offset, in bits, of this constraint from the beginning of
495 variables it ends up referring to.
497 IOW, in a deref constraint, we would deref, get the result set,
498 then add OFFSET to each member. */
499 HOST_WIDE_INT offset;
502 /* Use 0x8000... as special unknown offset. */
503 #define UNKNOWN_OFFSET HOST_WIDE_INT_MIN
505 typedef struct constraint_expr ce_s;
506 static void get_constraint_for_1 (tree, vec<ce_s> *, bool, bool);
507 static void get_constraint_for (tree, vec<ce_s> *);
508 static void get_constraint_for_rhs (tree, vec<ce_s> *);
509 static void do_deref (vec<ce_s> *);
511 /* Our set constraints are made up of two constraint expressions, one
512 LHS, and one RHS.
514 As described in the introduction, our set constraints each represent an
515 operation between set valued variables.
517 struct constraint
519 struct constraint_expr lhs;
520 struct constraint_expr rhs;
523 /* List of constraints that we use to build the constraint graph from. */
525 static vec<constraint_t> constraints;
526 static object_allocator<constraint> constraint_pool ("Constraint pool");
528 /* The constraint graph is represented as an array of bitmaps
529 containing successor nodes. */
531 struct constraint_graph
533 /* Size of this graph, which may be different than the number of
534 nodes in the variable map. */
535 unsigned int size;
537 /* Explicit successors of each node. */
538 bitmap *succs;
540 /* Implicit predecessors of each node (Used for variable
541 substitution). */
542 bitmap *implicit_preds;
544 /* Explicit predecessors of each node (Used for variable substitution). */
545 bitmap *preds;
547 /* Indirect cycle representatives, or -1 if the node has no indirect
548 cycles. */
549 int *indirect_cycles;
551 /* Representative node for a node. rep[a] == a unless the node has
552 been unified. */
553 unsigned int *rep;
555 /* Equivalence class representative for a label. This is used for
556 variable substitution. */
557 int *eq_rep;
559 /* Pointer equivalence label for a node. All nodes with the same
560 pointer equivalence label can be unified together at some point
561 (either during constraint optimization or after the constraint
562 graph is built). */
563 unsigned int *pe;
565 /* Pointer equivalence representative for a label. This is used to
566 handle nodes that are pointer equivalent but not location
567 equivalent. We can unite these once the addressof constraints
568 are transformed into initial points-to sets. */
569 int *pe_rep;
571 /* Pointer equivalence label for each node, used during variable
572 substitution. */
573 unsigned int *pointer_label;
575 /* Location equivalence label for each node, used during location
576 equivalence finding. */
577 unsigned int *loc_label;
579 /* Pointed-by set for each node, used during location equivalence
580 finding. This is pointed-by rather than pointed-to, because it
581 is constructed using the predecessor graph. */
582 bitmap *pointed_by;
584 /* Points to sets for pointer equivalence. This is *not* the actual
585 points-to sets for nodes. */
586 bitmap *points_to;
588 /* Bitmap of nodes where the bit is set if the node is a direct
589 node. Used for variable substitution. */
590 sbitmap direct_nodes;
592 /* Bitmap of nodes where the bit is set if the node is address
593 taken. Used for variable substitution. */
594 bitmap address_taken;
596 /* Vector of complex constraints for each graph node. Complex
597 constraints are those involving dereferences or offsets that are
598 not 0. */
599 vec<constraint_t> *complex;
602 static constraint_graph_t graph;
604 /* During variable substitution and the offline version of indirect
605 cycle finding, we create nodes to represent dereferences and
606 address taken constraints. These represent where these start and
607 end. */
608 #define FIRST_REF_NODE (varmap).length ()
609 #define LAST_REF_NODE (FIRST_REF_NODE + (FIRST_REF_NODE - 1))
611 /* Return the representative node for NODE, if NODE has been unioned
612 with another NODE.
613 This function performs path compression along the way to finding
614 the representative. */
616 static unsigned int
617 find (unsigned int node)
619 gcc_checking_assert (node < graph->size);
620 if (graph->rep[node] != node)
621 return graph->rep[node] = find (graph->rep[node]);
622 return node;
625 /* Union the TO and FROM nodes to the TO nodes.
626 Note that at some point in the future, we may want to do
627 union-by-rank, in which case we are going to have to return the
628 node we unified to. */
630 static bool
631 unite (unsigned int to, unsigned int from)
633 gcc_checking_assert (to < graph->size && from < graph->size);
634 if (to != from && graph->rep[from] != to)
636 graph->rep[from] = to;
637 return true;
639 return false;
642 /* Create a new constraint consisting of LHS and RHS expressions. */
644 static constraint_t
645 new_constraint (const struct constraint_expr lhs,
646 const struct constraint_expr rhs)
648 constraint_t ret = constraint_pool.allocate ();
649 ret->lhs = lhs;
650 ret->rhs = rhs;
651 return ret;
654 /* Print out constraint C to FILE. */
656 static void
657 dump_constraint (FILE *file, constraint_t c)
659 if (c->lhs.type == ADDRESSOF)
660 fprintf (file, "&");
661 else if (c->lhs.type == DEREF)
662 fprintf (file, "*");
663 fprintf (file, "%s", get_varinfo (c->lhs.var)->name);
664 if (c->lhs.offset == UNKNOWN_OFFSET)
665 fprintf (file, " + UNKNOWN");
666 else if (c->lhs.offset != 0)
667 fprintf (file, " + " HOST_WIDE_INT_PRINT_DEC, c->lhs.offset);
668 fprintf (file, " = ");
669 if (c->rhs.type == ADDRESSOF)
670 fprintf (file, "&");
671 else if (c->rhs.type == DEREF)
672 fprintf (file, "*");
673 fprintf (file, "%s", get_varinfo (c->rhs.var)->name);
674 if (c->rhs.offset == UNKNOWN_OFFSET)
675 fprintf (file, " + UNKNOWN");
676 else if (c->rhs.offset != 0)
677 fprintf (file, " + " HOST_WIDE_INT_PRINT_DEC, c->rhs.offset);
681 void debug_constraint (constraint_t);
682 void debug_constraints (void);
683 void debug_constraint_graph (void);
684 void debug_solution_for_var (unsigned int);
685 void debug_sa_points_to_info (void);
687 /* Print out constraint C to stderr. */
689 DEBUG_FUNCTION void
690 debug_constraint (constraint_t c)
692 dump_constraint (stderr, c);
693 fprintf (stderr, "\n");
696 /* Print out all constraints to FILE */
698 static void
699 dump_constraints (FILE *file, int from)
701 int i;
702 constraint_t c;
703 for (i = from; constraints.iterate (i, &c); i++)
704 if (c)
706 dump_constraint (file, c);
707 fprintf (file, "\n");
711 /* Print out all constraints to stderr. */
713 DEBUG_FUNCTION void
714 debug_constraints (void)
716 dump_constraints (stderr, 0);
719 /* Print the constraint graph in dot format. */
721 static void
722 dump_constraint_graph (FILE *file)
724 unsigned int i;
726 /* Only print the graph if it has already been initialized: */
727 if (!graph)
728 return;
730 /* Prints the header of the dot file: */
731 fprintf (file, "strict digraph {\n");
732 fprintf (file, " node [\n shape = box\n ]\n");
733 fprintf (file, " edge [\n fontsize = \"12\"\n ]\n");
734 fprintf (file, "\n // List of nodes and complex constraints in "
735 "the constraint graph:\n");
737 /* The next lines print the nodes in the graph together with the
738 complex constraints attached to them. */
739 for (i = 1; i < graph->size; i++)
741 if (i == FIRST_REF_NODE)
742 continue;
743 if (find (i) != i)
744 continue;
745 if (i < FIRST_REF_NODE)
746 fprintf (file, "\"%s\"", get_varinfo (i)->name);
747 else
748 fprintf (file, "\"*%s\"", get_varinfo (i - FIRST_REF_NODE)->name);
749 if (graph->complex[i].exists ())
751 unsigned j;
752 constraint_t c;
753 fprintf (file, " [label=\"\\N\\n");
754 for (j = 0; graph->complex[i].iterate (j, &c); ++j)
756 dump_constraint (file, c);
757 fprintf (file, "\\l");
759 fprintf (file, "\"]");
761 fprintf (file, ";\n");
764 /* Go over the edges. */
765 fprintf (file, "\n // Edges in the constraint graph:\n");
766 for (i = 1; i < graph->size; i++)
768 unsigned j;
769 bitmap_iterator bi;
770 if (find (i) != i)
771 continue;
772 EXECUTE_IF_IN_NONNULL_BITMAP (graph->succs[i], 0, j, bi)
774 unsigned to = find (j);
775 if (i == to)
776 continue;
777 if (i < FIRST_REF_NODE)
778 fprintf (file, "\"%s\"", get_varinfo (i)->name);
779 else
780 fprintf (file, "\"*%s\"", get_varinfo (i - FIRST_REF_NODE)->name);
781 fprintf (file, " -> ");
782 if (to < FIRST_REF_NODE)
783 fprintf (file, "\"%s\"", get_varinfo (to)->name);
784 else
785 fprintf (file, "\"*%s\"", get_varinfo (to - FIRST_REF_NODE)->name);
786 fprintf (file, ";\n");
790 /* Prints the tail of the dot file. */
791 fprintf (file, "}\n");
794 /* Print out the constraint graph to stderr. */
796 DEBUG_FUNCTION void
797 debug_constraint_graph (void)
799 dump_constraint_graph (stderr);
802 /* SOLVER FUNCTIONS
804 The solver is a simple worklist solver, that works on the following
805 algorithm:
807 sbitmap changed_nodes = all zeroes;
808 changed_count = 0;
809 For each node that is not already collapsed:
810 changed_count++;
811 set bit in changed nodes
813 while (changed_count > 0)
815 compute topological ordering for constraint graph
817 find and collapse cycles in the constraint graph (updating
818 changed if necessary)
820 for each node (n) in the graph in topological order:
821 changed_count--;
823 Process each complex constraint associated with the node,
824 updating changed if necessary.
826 For each outgoing edge from n, propagate the solution from n to
827 the destination of the edge, updating changed as necessary.
829 } */
831 /* Return true if two constraint expressions A and B are equal. */
833 static bool
834 constraint_expr_equal (struct constraint_expr a, struct constraint_expr b)
836 return a.type == b.type && a.var == b.var && a.offset == b.offset;
839 /* Return true if constraint expression A is less than constraint expression
840 B. This is just arbitrary, but consistent, in order to give them an
841 ordering. */
843 static bool
844 constraint_expr_less (struct constraint_expr a, struct constraint_expr b)
846 if (a.type == b.type)
848 if (a.var == b.var)
849 return a.offset < b.offset;
850 else
851 return a.var < b.var;
853 else
854 return a.type < b.type;
857 /* Return true if constraint A is less than constraint B. This is just
858 arbitrary, but consistent, in order to give them an ordering. */
860 static bool
861 constraint_less (const constraint_t &a, const constraint_t &b)
863 if (constraint_expr_less (a->lhs, b->lhs))
864 return true;
865 else if (constraint_expr_less (b->lhs, a->lhs))
866 return false;
867 else
868 return constraint_expr_less (a->rhs, b->rhs);
871 /* Return true if two constraints A and B are equal. */
873 static bool
874 constraint_equal (struct constraint a, struct constraint b)
876 return constraint_expr_equal (a.lhs, b.lhs)
877 && constraint_expr_equal (a.rhs, b.rhs);
881 /* Find a constraint LOOKFOR in the sorted constraint vector VEC */
883 static constraint_t
884 constraint_vec_find (vec<constraint_t> vec,
885 struct constraint lookfor)
887 unsigned int place;
888 constraint_t found;
890 if (!vec.exists ())
891 return NULL;
893 place = vec.lower_bound (&lookfor, constraint_less);
894 if (place >= vec.length ())
895 return NULL;
896 found = vec[place];
897 if (!constraint_equal (*found, lookfor))
898 return NULL;
899 return found;
902 /* Union two constraint vectors, TO and FROM. Put the result in TO.
903 Returns true of TO set is changed. */
905 static bool
906 constraint_set_union (vec<constraint_t> *to,
907 vec<constraint_t> *from)
909 int i;
910 constraint_t c;
911 bool any_change = false;
913 FOR_EACH_VEC_ELT (*from, i, c)
915 if (constraint_vec_find (*to, *c) == NULL)
917 unsigned int place = to->lower_bound (c, constraint_less);
918 to->safe_insert (place, c);
919 any_change = true;
922 return any_change;
925 /* Expands the solution in SET to all sub-fields of variables included. */
927 static bitmap
928 solution_set_expand (bitmap set, bitmap *expanded)
930 bitmap_iterator bi;
931 unsigned j;
933 if (*expanded)
934 return *expanded;
936 *expanded = BITMAP_ALLOC (&iteration_obstack);
938 /* In a first pass expand to the head of the variables we need to
939 add all sub-fields off. This avoids quadratic behavior. */
940 EXECUTE_IF_SET_IN_BITMAP (set, 0, j, bi)
942 varinfo_t v = get_varinfo (j);
943 if (v->is_artificial_var
944 || v->is_full_var)
945 continue;
946 bitmap_set_bit (*expanded, v->head);
949 /* In the second pass now expand all head variables with subfields. */
950 EXECUTE_IF_SET_IN_BITMAP (*expanded, 0, j, bi)
952 varinfo_t v = get_varinfo (j);
953 if (v->head != j)
954 continue;
955 for (v = vi_next (v); v != NULL; v = vi_next (v))
956 bitmap_set_bit (*expanded, v->id);
959 /* And finally set the rest of the bits from SET. */
960 bitmap_ior_into (*expanded, set);
962 return *expanded;
965 /* Union solution sets TO and DELTA, and add INC to each member of DELTA in the
966 process. */
968 static bool
969 set_union_with_increment (bitmap to, bitmap delta, HOST_WIDE_INT inc,
970 bitmap *expanded_delta)
972 bool changed = false;
973 bitmap_iterator bi;
974 unsigned int i;
976 /* If the solution of DELTA contains anything it is good enough to transfer
977 this to TO. */
978 if (bitmap_bit_p (delta, anything_id))
979 return bitmap_set_bit (to, anything_id);
981 /* If the offset is unknown we have to expand the solution to
982 all subfields. */
983 if (inc == UNKNOWN_OFFSET)
985 delta = solution_set_expand (delta, expanded_delta);
986 changed |= bitmap_ior_into (to, delta);
987 return changed;
990 /* For non-zero offset union the offsetted solution into the destination. */
991 EXECUTE_IF_SET_IN_BITMAP (delta, 0, i, bi)
993 varinfo_t vi = get_varinfo (i);
995 /* If this is a variable with just one field just set its bit
996 in the result. */
997 if (vi->is_artificial_var
998 || vi->is_unknown_size_var
999 || vi->is_full_var)
1000 changed |= bitmap_set_bit (to, i);
1001 else
1003 HOST_WIDE_INT fieldoffset = vi->offset + inc;
1004 unsigned HOST_WIDE_INT size = vi->size;
1006 /* If the offset makes the pointer point to before the
1007 variable use offset zero for the field lookup. */
1008 if (fieldoffset < 0)
1009 vi = get_varinfo (vi->head);
1010 else
1011 vi = first_or_preceding_vi_for_offset (vi, fieldoffset);
1015 changed |= bitmap_set_bit (to, vi->id);
1016 if (vi->is_full_var
1017 || vi->next == 0)
1018 break;
1020 /* We have to include all fields that overlap the current field
1021 shifted by inc. */
1022 vi = vi_next (vi);
1024 while (vi->offset < fieldoffset + size);
1028 return changed;
1031 /* Insert constraint C into the list of complex constraints for graph
1032 node VAR. */
1034 static void
1035 insert_into_complex (constraint_graph_t graph,
1036 unsigned int var, constraint_t c)
1038 vec<constraint_t> complex = graph->complex[var];
1039 unsigned int place = complex.lower_bound (c, constraint_less);
1041 /* Only insert constraints that do not already exist. */
1042 if (place >= complex.length ()
1043 || !constraint_equal (*c, *complex[place]))
1044 graph->complex[var].safe_insert (place, c);
1048 /* Condense two variable nodes into a single variable node, by moving
1049 all associated info from FROM to TO. Returns true if TO node's
1050 constraint set changes after the merge. */
1052 static bool
1053 merge_node_constraints (constraint_graph_t graph, unsigned int to,
1054 unsigned int from)
1056 unsigned int i;
1057 constraint_t c;
1058 bool any_change = false;
1060 gcc_checking_assert (find (from) == to);
1062 /* Move all complex constraints from src node into to node */
1063 FOR_EACH_VEC_ELT (graph->complex[from], i, c)
1065 /* In complex constraints for node FROM, we may have either
1066 a = *FROM, and *FROM = a, or an offseted constraint which are
1067 always added to the rhs node's constraints. */
1069 if (c->rhs.type == DEREF)
1070 c->rhs.var = to;
1071 else if (c->lhs.type == DEREF)
1072 c->lhs.var = to;
1073 else
1074 c->rhs.var = to;
1077 any_change = constraint_set_union (&graph->complex[to],
1078 &graph->complex[from]);
1079 graph->complex[from].release ();
1080 return any_change;
1084 /* Remove edges involving NODE from GRAPH. */
1086 static void
1087 clear_edges_for_node (constraint_graph_t graph, unsigned int node)
1089 if (graph->succs[node])
1090 BITMAP_FREE (graph->succs[node]);
1093 /* Merge GRAPH nodes FROM and TO into node TO. */
1095 static void
1096 merge_graph_nodes (constraint_graph_t graph, unsigned int to,
1097 unsigned int from)
1099 if (graph->indirect_cycles[from] != -1)
1101 /* If we have indirect cycles with the from node, and we have
1102 none on the to node, the to node has indirect cycles from the
1103 from node now that they are unified.
1104 If indirect cycles exist on both, unify the nodes that they
1105 are in a cycle with, since we know they are in a cycle with
1106 each other. */
1107 if (graph->indirect_cycles[to] == -1)
1108 graph->indirect_cycles[to] = graph->indirect_cycles[from];
1111 /* Merge all the successor edges. */
1112 if (graph->succs[from])
1114 if (!graph->succs[to])
1115 graph->succs[to] = BITMAP_ALLOC (&pta_obstack);
1116 bitmap_ior_into (graph->succs[to],
1117 graph->succs[from]);
1120 clear_edges_for_node (graph, from);
1124 /* Add an indirect graph edge to GRAPH, going from TO to FROM if
1125 it doesn't exist in the graph already. */
1127 static void
1128 add_implicit_graph_edge (constraint_graph_t graph, unsigned int to,
1129 unsigned int from)
1131 if (to == from)
1132 return;
1134 if (!graph->implicit_preds[to])
1135 graph->implicit_preds[to] = BITMAP_ALLOC (&predbitmap_obstack);
1137 if (bitmap_set_bit (graph->implicit_preds[to], from))
1138 stats.num_implicit_edges++;
1141 /* Add a predecessor graph edge to GRAPH, going from TO to FROM if
1142 it doesn't exist in the graph already.
1143 Return false if the edge already existed, true otherwise. */
1145 static void
1146 add_pred_graph_edge (constraint_graph_t graph, unsigned int to,
1147 unsigned int from)
1149 if (!graph->preds[to])
1150 graph->preds[to] = BITMAP_ALLOC (&predbitmap_obstack);
1151 bitmap_set_bit (graph->preds[to], from);
1154 /* Add a graph edge to GRAPH, going from FROM to TO if
1155 it doesn't exist in the graph already.
1156 Return false if the edge already existed, true otherwise. */
1158 static bool
1159 add_graph_edge (constraint_graph_t graph, unsigned int to,
1160 unsigned int from)
1162 if (to == from)
1164 return false;
1166 else
1168 bool r = false;
1170 if (!graph->succs[from])
1171 graph->succs[from] = BITMAP_ALLOC (&pta_obstack);
1172 if (bitmap_set_bit (graph->succs[from], to))
1174 r = true;
1175 if (to < FIRST_REF_NODE && from < FIRST_REF_NODE)
1176 stats.num_edges++;
1178 return r;
1183 /* Initialize the constraint graph structure to contain SIZE nodes. */
1185 static void
1186 init_graph (unsigned int size)
1188 unsigned int j;
1190 graph = XCNEW (struct constraint_graph);
1191 graph->size = size;
1192 graph->succs = XCNEWVEC (bitmap, graph->size);
1193 graph->indirect_cycles = XNEWVEC (int, graph->size);
1194 graph->rep = XNEWVEC (unsigned int, graph->size);
1195 /* ??? Macros do not support template types with multiple arguments,
1196 so we use a typedef to work around it. */
1197 typedef vec<constraint_t> vec_constraint_t_heap;
1198 graph->complex = XCNEWVEC (vec_constraint_t_heap, size);
1199 graph->pe = XCNEWVEC (unsigned int, graph->size);
1200 graph->pe_rep = XNEWVEC (int, graph->size);
1202 for (j = 0; j < graph->size; j++)
1204 graph->rep[j] = j;
1205 graph->pe_rep[j] = -1;
1206 graph->indirect_cycles[j] = -1;
1210 /* Build the constraint graph, adding only predecessor edges right now. */
1212 static void
1213 build_pred_graph (void)
1215 int i;
1216 constraint_t c;
1217 unsigned int j;
1219 graph->implicit_preds = XCNEWVEC (bitmap, graph->size);
1220 graph->preds = XCNEWVEC (bitmap, graph->size);
1221 graph->pointer_label = XCNEWVEC (unsigned int, graph->size);
1222 graph->loc_label = XCNEWVEC (unsigned int, graph->size);
1223 graph->pointed_by = XCNEWVEC (bitmap, graph->size);
1224 graph->points_to = XCNEWVEC (bitmap, graph->size);
1225 graph->eq_rep = XNEWVEC (int, graph->size);
1226 graph->direct_nodes = sbitmap_alloc (graph->size);
1227 graph->address_taken = BITMAP_ALLOC (&predbitmap_obstack);
1228 bitmap_clear (graph->direct_nodes);
1230 for (j = 1; j < FIRST_REF_NODE; j++)
1232 if (!get_varinfo (j)->is_special_var)
1233 bitmap_set_bit (graph->direct_nodes, j);
1236 for (j = 0; j < graph->size; j++)
1237 graph->eq_rep[j] = -1;
1239 for (j = 0; j < varmap.length (); j++)
1240 graph->indirect_cycles[j] = -1;
1242 FOR_EACH_VEC_ELT (constraints, i, c)
1244 struct constraint_expr lhs = c->lhs;
1245 struct constraint_expr rhs = c->rhs;
1246 unsigned int lhsvar = lhs.var;
1247 unsigned int rhsvar = rhs.var;
1249 if (lhs.type == DEREF)
1251 /* *x = y. */
1252 if (rhs.offset == 0 && lhs.offset == 0 && rhs.type == SCALAR)
1253 add_pred_graph_edge (graph, FIRST_REF_NODE + lhsvar, rhsvar);
1255 else if (rhs.type == DEREF)
1257 /* x = *y */
1258 if (rhs.offset == 0 && lhs.offset == 0 && lhs.type == SCALAR)
1259 add_pred_graph_edge (graph, lhsvar, FIRST_REF_NODE + rhsvar);
1260 else
1261 bitmap_clear_bit (graph->direct_nodes, lhsvar);
1263 else if (rhs.type == ADDRESSOF)
1265 varinfo_t v;
1267 /* x = &y */
1268 if (graph->points_to[lhsvar] == NULL)
1269 graph->points_to[lhsvar] = BITMAP_ALLOC (&predbitmap_obstack);
1270 bitmap_set_bit (graph->points_to[lhsvar], rhsvar);
1272 if (graph->pointed_by[rhsvar] == NULL)
1273 graph->pointed_by[rhsvar] = BITMAP_ALLOC (&predbitmap_obstack);
1274 bitmap_set_bit (graph->pointed_by[rhsvar], lhsvar);
1276 /* Implicitly, *x = y */
1277 add_implicit_graph_edge (graph, FIRST_REF_NODE + lhsvar, rhsvar);
1279 /* All related variables are no longer direct nodes. */
1280 bitmap_clear_bit (graph->direct_nodes, rhsvar);
1281 v = get_varinfo (rhsvar);
1282 if (!v->is_full_var)
1284 v = get_varinfo (v->head);
1287 bitmap_clear_bit (graph->direct_nodes, v->id);
1288 v = vi_next (v);
1290 while (v != NULL);
1292 bitmap_set_bit (graph->address_taken, rhsvar);
1294 else if (lhsvar > anything_id
1295 && lhsvar != rhsvar && lhs.offset == 0 && rhs.offset == 0)
1297 /* x = y */
1298 add_pred_graph_edge (graph, lhsvar, rhsvar);
1299 /* Implicitly, *x = *y */
1300 add_implicit_graph_edge (graph, FIRST_REF_NODE + lhsvar,
1301 FIRST_REF_NODE + rhsvar);
1303 else if (lhs.offset != 0 || rhs.offset != 0)
1305 if (rhs.offset != 0)
1306 bitmap_clear_bit (graph->direct_nodes, lhs.var);
1307 else if (lhs.offset != 0)
1308 bitmap_clear_bit (graph->direct_nodes, rhs.var);
1313 /* Build the constraint graph, adding successor edges. */
1315 static void
1316 build_succ_graph (void)
1318 unsigned i, t;
1319 constraint_t c;
1321 FOR_EACH_VEC_ELT (constraints, i, c)
1323 struct constraint_expr lhs;
1324 struct constraint_expr rhs;
1325 unsigned int lhsvar;
1326 unsigned int rhsvar;
1328 if (!c)
1329 continue;
1331 lhs = c->lhs;
1332 rhs = c->rhs;
1333 lhsvar = find (lhs.var);
1334 rhsvar = find (rhs.var);
1336 if (lhs.type == DEREF)
1338 if (rhs.offset == 0 && lhs.offset == 0 && rhs.type == SCALAR)
1339 add_graph_edge (graph, FIRST_REF_NODE + lhsvar, rhsvar);
1341 else if (rhs.type == DEREF)
1343 if (rhs.offset == 0 && lhs.offset == 0 && lhs.type == SCALAR)
1344 add_graph_edge (graph, lhsvar, FIRST_REF_NODE + rhsvar);
1346 else if (rhs.type == ADDRESSOF)
1348 /* x = &y */
1349 gcc_checking_assert (find (rhs.var) == rhs.var);
1350 bitmap_set_bit (get_varinfo (lhsvar)->solution, rhsvar);
1352 else if (lhsvar > anything_id
1353 && lhsvar != rhsvar && lhs.offset == 0 && rhs.offset == 0)
1355 add_graph_edge (graph, lhsvar, rhsvar);
1359 /* Add edges from STOREDANYTHING to all non-direct nodes that can
1360 receive pointers. */
1361 t = find (storedanything_id);
1362 for (i = integer_id + 1; i < FIRST_REF_NODE; ++i)
1364 if (!bitmap_bit_p (graph->direct_nodes, i)
1365 && get_varinfo (i)->may_have_pointers)
1366 add_graph_edge (graph, find (i), t);
1369 /* Everything stored to ANYTHING also potentially escapes. */
1370 add_graph_edge (graph, find (escaped_id), t);
1374 /* Changed variables on the last iteration. */
1375 static bitmap changed;
1377 /* Strongly Connected Component visitation info. */
1379 struct scc_info
1381 sbitmap visited;
1382 sbitmap deleted;
1383 unsigned int *dfs;
1384 unsigned int *node_mapping;
1385 int current_index;
1386 vec<unsigned> scc_stack;
1390 /* Recursive routine to find strongly connected components in GRAPH.
1391 SI is the SCC info to store the information in, and N is the id of current
1392 graph node we are processing.
1394 This is Tarjan's strongly connected component finding algorithm, as
1395 modified by Nuutila to keep only non-root nodes on the stack.
1396 The algorithm can be found in "On finding the strongly connected
1397 connected components in a directed graph" by Esko Nuutila and Eljas
1398 Soisalon-Soininen, in Information Processing Letters volume 49,
1399 number 1, pages 9-14. */
1401 static void
1402 scc_visit (constraint_graph_t graph, struct scc_info *si, unsigned int n)
1404 unsigned int i;
1405 bitmap_iterator bi;
1406 unsigned int my_dfs;
1408 bitmap_set_bit (si->visited, n);
1409 si->dfs[n] = si->current_index ++;
1410 my_dfs = si->dfs[n];
1412 /* Visit all the successors. */
1413 EXECUTE_IF_IN_NONNULL_BITMAP (graph->succs[n], 0, i, bi)
1415 unsigned int w;
1417 if (i > LAST_REF_NODE)
1418 break;
1420 w = find (i);
1421 if (bitmap_bit_p (si->deleted, w))
1422 continue;
1424 if (!bitmap_bit_p (si->visited, w))
1425 scc_visit (graph, si, w);
1427 unsigned int t = find (w);
1428 gcc_checking_assert (find (n) == n);
1429 if (si->dfs[t] < si->dfs[n])
1430 si->dfs[n] = si->dfs[t];
1433 /* See if any components have been identified. */
1434 if (si->dfs[n] == my_dfs)
1436 if (si->scc_stack.length () > 0
1437 && si->dfs[si->scc_stack.last ()] >= my_dfs)
1439 bitmap scc = BITMAP_ALLOC (NULL);
1440 unsigned int lowest_node;
1441 bitmap_iterator bi;
1443 bitmap_set_bit (scc, n);
1445 while (si->scc_stack.length () != 0
1446 && si->dfs[si->scc_stack.last ()] >= my_dfs)
1448 unsigned int w = si->scc_stack.pop ();
1450 bitmap_set_bit (scc, w);
1453 lowest_node = bitmap_first_set_bit (scc);
1454 gcc_assert (lowest_node < FIRST_REF_NODE);
1456 /* Collapse the SCC nodes into a single node, and mark the
1457 indirect cycles. */
1458 EXECUTE_IF_SET_IN_BITMAP (scc, 0, i, bi)
1460 if (i < FIRST_REF_NODE)
1462 if (unite (lowest_node, i))
1463 unify_nodes (graph, lowest_node, i, false);
1465 else
1467 unite (lowest_node, i);
1468 graph->indirect_cycles[i - FIRST_REF_NODE] = lowest_node;
1472 bitmap_set_bit (si->deleted, n);
1474 else
1475 si->scc_stack.safe_push (n);
1478 /* Unify node FROM into node TO, updating the changed count if
1479 necessary when UPDATE_CHANGED is true. */
1481 static void
1482 unify_nodes (constraint_graph_t graph, unsigned int to, unsigned int from,
1483 bool update_changed)
1485 gcc_checking_assert (to != from && find (to) == to);
1487 if (dump_file && (dump_flags & TDF_DETAILS))
1488 fprintf (dump_file, "Unifying %s to %s\n",
1489 get_varinfo (from)->name,
1490 get_varinfo (to)->name);
1492 if (update_changed)
1493 stats.unified_vars_dynamic++;
1494 else
1495 stats.unified_vars_static++;
1497 merge_graph_nodes (graph, to, from);
1498 if (merge_node_constraints (graph, to, from))
1500 if (update_changed)
1501 bitmap_set_bit (changed, to);
1504 /* Mark TO as changed if FROM was changed. If TO was already marked
1505 as changed, decrease the changed count. */
1507 if (update_changed
1508 && bitmap_clear_bit (changed, from))
1509 bitmap_set_bit (changed, to);
1510 varinfo_t fromvi = get_varinfo (from);
1511 if (fromvi->solution)
1513 /* If the solution changes because of the merging, we need to mark
1514 the variable as changed. */
1515 varinfo_t tovi = get_varinfo (to);
1516 if (bitmap_ior_into (tovi->solution, fromvi->solution))
1518 if (update_changed)
1519 bitmap_set_bit (changed, to);
1522 BITMAP_FREE (fromvi->solution);
1523 if (fromvi->oldsolution)
1524 BITMAP_FREE (fromvi->oldsolution);
1526 if (stats.iterations > 0
1527 && tovi->oldsolution)
1528 BITMAP_FREE (tovi->oldsolution);
1530 if (graph->succs[to])
1531 bitmap_clear_bit (graph->succs[to], to);
1534 /* Information needed to compute the topological ordering of a graph. */
1536 struct topo_info
1538 /* sbitmap of visited nodes. */
1539 sbitmap visited;
1540 /* Array that stores the topological order of the graph, *in
1541 reverse*. */
1542 vec<unsigned> topo_order;
1546 /* Initialize and return a topological info structure. */
1548 static struct topo_info *
1549 init_topo_info (void)
1551 size_t size = graph->size;
1552 struct topo_info *ti = XNEW (struct topo_info);
1553 ti->visited = sbitmap_alloc (size);
1554 bitmap_clear (ti->visited);
1555 ti->topo_order.create (1);
1556 return ti;
1560 /* Free the topological sort info pointed to by TI. */
1562 static void
1563 free_topo_info (struct topo_info *ti)
1565 sbitmap_free (ti->visited);
1566 ti->topo_order.release ();
1567 free (ti);
1570 /* Visit the graph in topological order, and store the order in the
1571 topo_info structure. */
1573 static void
1574 topo_visit (constraint_graph_t graph, struct topo_info *ti,
1575 unsigned int n)
1577 bitmap_iterator bi;
1578 unsigned int j;
1580 bitmap_set_bit (ti->visited, n);
1582 if (graph->succs[n])
1583 EXECUTE_IF_SET_IN_BITMAP (graph->succs[n], 0, j, bi)
1585 if (!bitmap_bit_p (ti->visited, j))
1586 topo_visit (graph, ti, j);
1589 ti->topo_order.safe_push (n);
1592 /* Process a constraint C that represents x = *(y + off), using DELTA as the
1593 starting solution for y. */
1595 static void
1596 do_sd_constraint (constraint_graph_t graph, constraint_t c,
1597 bitmap delta, bitmap *expanded_delta)
1599 unsigned int lhs = c->lhs.var;
1600 bool flag = false;
1601 bitmap sol = get_varinfo (lhs)->solution;
1602 unsigned int j;
1603 bitmap_iterator bi;
1604 HOST_WIDE_INT roffset = c->rhs.offset;
1606 /* Our IL does not allow this. */
1607 gcc_checking_assert (c->lhs.offset == 0);
1609 /* If the solution of Y contains anything it is good enough to transfer
1610 this to the LHS. */
1611 if (bitmap_bit_p (delta, anything_id))
1613 flag |= bitmap_set_bit (sol, anything_id);
1614 goto done;
1617 /* If we do not know at with offset the rhs is dereferenced compute
1618 the reachability set of DELTA, conservatively assuming it is
1619 dereferenced at all valid offsets. */
1620 if (roffset == UNKNOWN_OFFSET)
1622 delta = solution_set_expand (delta, expanded_delta);
1623 /* No further offset processing is necessary. */
1624 roffset = 0;
1627 /* For each variable j in delta (Sol(y)), add
1628 an edge in the graph from j to x, and union Sol(j) into Sol(x). */
1629 EXECUTE_IF_SET_IN_BITMAP (delta, 0, j, bi)
1631 varinfo_t v = get_varinfo (j);
1632 HOST_WIDE_INT fieldoffset = v->offset + roffset;
1633 unsigned HOST_WIDE_INT size = v->size;
1634 unsigned int t;
1636 if (v->is_full_var)
1638 else if (roffset != 0)
1640 if (fieldoffset < 0)
1641 v = get_varinfo (v->head);
1642 else
1643 v = first_or_preceding_vi_for_offset (v, fieldoffset);
1646 /* We have to include all fields that overlap the current field
1647 shifted by roffset. */
1650 t = find (v->id);
1652 /* Adding edges from the special vars is pointless.
1653 They don't have sets that can change. */
1654 if (get_varinfo (t)->is_special_var)
1655 flag |= bitmap_ior_into (sol, get_varinfo (t)->solution);
1656 /* Merging the solution from ESCAPED needlessly increases
1657 the set. Use ESCAPED as representative instead. */
1658 else if (v->id == escaped_id)
1659 flag |= bitmap_set_bit (sol, escaped_id);
1660 else if (v->may_have_pointers
1661 && add_graph_edge (graph, lhs, t))
1662 flag |= bitmap_ior_into (sol, get_varinfo (t)->solution);
1664 if (v->is_full_var
1665 || v->next == 0)
1666 break;
1668 v = vi_next (v);
1670 while (v->offset < fieldoffset + size);
1673 done:
1674 /* If the LHS solution changed, mark the var as changed. */
1675 if (flag)
1677 get_varinfo (lhs)->solution = sol;
1678 bitmap_set_bit (changed, lhs);
1682 /* Process a constraint C that represents *(x + off) = y using DELTA
1683 as the starting solution for x. */
1685 static void
1686 do_ds_constraint (constraint_t c, bitmap delta, bitmap *expanded_delta)
1688 unsigned int rhs = c->rhs.var;
1689 bitmap sol = get_varinfo (rhs)->solution;
1690 unsigned int j;
1691 bitmap_iterator bi;
1692 HOST_WIDE_INT loff = c->lhs.offset;
1693 bool escaped_p = false;
1695 /* Our IL does not allow this. */
1696 gcc_checking_assert (c->rhs.offset == 0);
1698 /* If the solution of y contains ANYTHING simply use the ANYTHING
1699 solution. This avoids needlessly increasing the points-to sets. */
1700 if (bitmap_bit_p (sol, anything_id))
1701 sol = get_varinfo (find (anything_id))->solution;
1703 /* If the solution for x contains ANYTHING we have to merge the
1704 solution of y into all pointer variables which we do via
1705 STOREDANYTHING. */
1706 if (bitmap_bit_p (delta, anything_id))
1708 unsigned t = find (storedanything_id);
1709 if (add_graph_edge (graph, t, rhs))
1711 if (bitmap_ior_into (get_varinfo (t)->solution, sol))
1712 bitmap_set_bit (changed, t);
1714 return;
1717 /* If we do not know at with offset the rhs is dereferenced compute
1718 the reachability set of DELTA, conservatively assuming it is
1719 dereferenced at all valid offsets. */
1720 if (loff == UNKNOWN_OFFSET)
1722 delta = solution_set_expand (delta, expanded_delta);
1723 loff = 0;
1726 /* For each member j of delta (Sol(x)), add an edge from y to j and
1727 union Sol(y) into Sol(j) */
1728 EXECUTE_IF_SET_IN_BITMAP (delta, 0, j, bi)
1730 varinfo_t v = get_varinfo (j);
1731 unsigned int t;
1732 HOST_WIDE_INT fieldoffset = v->offset + loff;
1733 unsigned HOST_WIDE_INT size = v->size;
1735 if (v->is_full_var)
1737 else if (loff != 0)
1739 if (fieldoffset < 0)
1740 v = get_varinfo (v->head);
1741 else
1742 v = first_or_preceding_vi_for_offset (v, fieldoffset);
1745 /* We have to include all fields that overlap the current field
1746 shifted by loff. */
1749 if (v->may_have_pointers)
1751 /* If v is a global variable then this is an escape point. */
1752 if (v->is_global_var
1753 && !escaped_p)
1755 t = find (escaped_id);
1756 if (add_graph_edge (graph, t, rhs)
1757 && bitmap_ior_into (get_varinfo (t)->solution, sol))
1758 bitmap_set_bit (changed, t);
1759 /* Enough to let rhs escape once. */
1760 escaped_p = true;
1763 if (v->is_special_var)
1764 break;
1766 t = find (v->id);
1767 if (add_graph_edge (graph, t, rhs)
1768 && bitmap_ior_into (get_varinfo (t)->solution, sol))
1769 bitmap_set_bit (changed, t);
1772 if (v->is_full_var
1773 || v->next == 0)
1774 break;
1776 v = vi_next (v);
1778 while (v->offset < fieldoffset + size);
1782 /* Handle a non-simple (simple meaning requires no iteration),
1783 constraint (IE *x = &y, x = *y, *x = y, and x = y with offsets involved). */
1785 static void
1786 do_complex_constraint (constraint_graph_t graph, constraint_t c, bitmap delta,
1787 bitmap *expanded_delta)
1789 if (c->lhs.type == DEREF)
1791 if (c->rhs.type == ADDRESSOF)
1793 gcc_unreachable ();
1795 else
1797 /* *x = y */
1798 do_ds_constraint (c, delta, expanded_delta);
1801 else if (c->rhs.type == DEREF)
1803 /* x = *y */
1804 if (!(get_varinfo (c->lhs.var)->is_special_var))
1805 do_sd_constraint (graph, c, delta, expanded_delta);
1807 else
1809 bitmap tmp;
1810 bool flag = false;
1812 gcc_checking_assert (c->rhs.type == SCALAR && c->lhs.type == SCALAR
1813 && c->rhs.offset != 0 && c->lhs.offset == 0);
1814 tmp = get_varinfo (c->lhs.var)->solution;
1816 flag = set_union_with_increment (tmp, delta, c->rhs.offset,
1817 expanded_delta);
1819 if (flag)
1820 bitmap_set_bit (changed, c->lhs.var);
1824 /* Initialize and return a new SCC info structure. */
1826 static struct scc_info *
1827 init_scc_info (size_t size)
1829 struct scc_info *si = XNEW (struct scc_info);
1830 size_t i;
1832 si->current_index = 0;
1833 si->visited = sbitmap_alloc (size);
1834 bitmap_clear (si->visited);
1835 si->deleted = sbitmap_alloc (size);
1836 bitmap_clear (si->deleted);
1837 si->node_mapping = XNEWVEC (unsigned int, size);
1838 si->dfs = XCNEWVEC (unsigned int, size);
1840 for (i = 0; i < size; i++)
1841 si->node_mapping[i] = i;
1843 si->scc_stack.create (1);
1844 return si;
1847 /* Free an SCC info structure pointed to by SI */
1849 static void
1850 free_scc_info (struct scc_info *si)
1852 sbitmap_free (si->visited);
1853 sbitmap_free (si->deleted);
1854 free (si->node_mapping);
1855 free (si->dfs);
1856 si->scc_stack.release ();
1857 free (si);
1861 /* Find indirect cycles in GRAPH that occur, using strongly connected
1862 components, and note them in the indirect cycles map.
1864 This technique comes from Ben Hardekopf and Calvin Lin,
1865 "It Pays to be Lazy: Fast and Accurate Pointer Analysis for Millions of
1866 Lines of Code", submitted to PLDI 2007. */
1868 static void
1869 find_indirect_cycles (constraint_graph_t graph)
1871 unsigned int i;
1872 unsigned int size = graph->size;
1873 struct scc_info *si = init_scc_info (size);
1875 for (i = 0; i < MIN (LAST_REF_NODE, size); i ++ )
1876 if (!bitmap_bit_p (si->visited, i) && find (i) == i)
1877 scc_visit (graph, si, i);
1879 free_scc_info (si);
1882 /* Compute a topological ordering for GRAPH, and store the result in the
1883 topo_info structure TI. */
1885 static void
1886 compute_topo_order (constraint_graph_t graph,
1887 struct topo_info *ti)
1889 unsigned int i;
1890 unsigned int size = graph->size;
1892 for (i = 0; i != size; ++i)
1893 if (!bitmap_bit_p (ti->visited, i) && find (i) == i)
1894 topo_visit (graph, ti, i);
1897 /* Structure used to for hash value numbering of pointer equivalence
1898 classes. */
1900 typedef struct equiv_class_label
1902 hashval_t hashcode;
1903 unsigned int equivalence_class;
1904 bitmap labels;
1905 } *equiv_class_label_t;
1906 typedef const struct equiv_class_label *const_equiv_class_label_t;
1908 /* Equiv_class_label hashtable helpers. */
1910 struct equiv_class_hasher : free_ptr_hash <equiv_class_label>
1912 static inline hashval_t hash (const equiv_class_label *);
1913 static inline bool equal (const equiv_class_label *,
1914 const equiv_class_label *);
1917 /* Hash function for a equiv_class_label_t */
1919 inline hashval_t
1920 equiv_class_hasher::hash (const equiv_class_label *ecl)
1922 return ecl->hashcode;
1925 /* Equality function for two equiv_class_label_t's. */
1927 inline bool
1928 equiv_class_hasher::equal (const equiv_class_label *eql1,
1929 const equiv_class_label *eql2)
1931 return (eql1->hashcode == eql2->hashcode
1932 && bitmap_equal_p (eql1->labels, eql2->labels));
1935 /* A hashtable for mapping a bitmap of labels->pointer equivalence
1936 classes. */
1937 static hash_table<equiv_class_hasher> *pointer_equiv_class_table;
1939 /* A hashtable for mapping a bitmap of labels->location equivalence
1940 classes. */
1941 static hash_table<equiv_class_hasher> *location_equiv_class_table;
1943 /* Lookup a equivalence class in TABLE by the bitmap of LABELS with
1944 hash HAS it contains. Sets *REF_LABELS to the bitmap LABELS
1945 is equivalent to. */
1947 static equiv_class_label *
1948 equiv_class_lookup_or_add (hash_table<equiv_class_hasher> *table,
1949 bitmap labels)
1951 equiv_class_label **slot;
1952 equiv_class_label ecl;
1954 ecl.labels = labels;
1955 ecl.hashcode = bitmap_hash (labels);
1956 slot = table->find_slot (&ecl, INSERT);
1957 if (!*slot)
1959 *slot = XNEW (struct equiv_class_label);
1960 (*slot)->labels = labels;
1961 (*slot)->hashcode = ecl.hashcode;
1962 (*slot)->equivalence_class = 0;
1965 return *slot;
1968 /* Perform offline variable substitution.
1970 This is a worst case quadratic time way of identifying variables
1971 that must have equivalent points-to sets, including those caused by
1972 static cycles, and single entry subgraphs, in the constraint graph.
1974 The technique is described in "Exploiting Pointer and Location
1975 Equivalence to Optimize Pointer Analysis. In the 14th International
1976 Static Analysis Symposium (SAS), August 2007." It is known as the
1977 "HU" algorithm, and is equivalent to value numbering the collapsed
1978 constraint graph including evaluating unions.
1980 The general method of finding equivalence classes is as follows:
1981 Add fake nodes (REF nodes) and edges for *a = b and a = *b constraints.
1982 Initialize all non-REF nodes to be direct nodes.
1983 For each constraint a = a U {b}, we set pts(a) = pts(a) u {fresh
1984 variable}
1985 For each constraint containing the dereference, we also do the same
1986 thing.
1988 We then compute SCC's in the graph and unify nodes in the same SCC,
1989 including pts sets.
1991 For each non-collapsed node x:
1992 Visit all unvisited explicit incoming edges.
1993 Ignoring all non-pointers, set pts(x) = Union of pts(a) for y
1994 where y->x.
1995 Lookup the equivalence class for pts(x).
1996 If we found one, equivalence_class(x) = found class.
1997 Otherwise, equivalence_class(x) = new class, and new_class is
1998 added to the lookup table.
2000 All direct nodes with the same equivalence class can be replaced
2001 with a single representative node.
2002 All unlabeled nodes (label == 0) are not pointers and all edges
2003 involving them can be eliminated.
2004 We perform these optimizations during rewrite_constraints
2006 In addition to pointer equivalence class finding, we also perform
2007 location equivalence class finding. This is the set of variables
2008 that always appear together in points-to sets. We use this to
2009 compress the size of the points-to sets. */
2011 /* Current maximum pointer equivalence class id. */
2012 static int pointer_equiv_class;
2014 /* Current maximum location equivalence class id. */
2015 static int location_equiv_class;
2017 /* Recursive routine to find strongly connected components in GRAPH,
2018 and label it's nodes with DFS numbers. */
2020 static void
2021 condense_visit (constraint_graph_t graph, struct scc_info *si, unsigned int n)
2023 unsigned int i;
2024 bitmap_iterator bi;
2025 unsigned int my_dfs;
2027 gcc_checking_assert (si->node_mapping[n] == n);
2028 bitmap_set_bit (si->visited, n);
2029 si->dfs[n] = si->current_index ++;
2030 my_dfs = si->dfs[n];
2032 /* Visit all the successors. */
2033 EXECUTE_IF_IN_NONNULL_BITMAP (graph->preds[n], 0, i, bi)
2035 unsigned int w = si->node_mapping[i];
2037 if (bitmap_bit_p (si->deleted, w))
2038 continue;
2040 if (!bitmap_bit_p (si->visited, w))
2041 condense_visit (graph, si, w);
2043 unsigned int t = si->node_mapping[w];
2044 gcc_checking_assert (si->node_mapping[n] == n);
2045 if (si->dfs[t] < si->dfs[n])
2046 si->dfs[n] = si->dfs[t];
2049 /* Visit all the implicit predecessors. */
2050 EXECUTE_IF_IN_NONNULL_BITMAP (graph->implicit_preds[n], 0, i, bi)
2052 unsigned int w = si->node_mapping[i];
2054 if (bitmap_bit_p (si->deleted, w))
2055 continue;
2057 if (!bitmap_bit_p (si->visited, w))
2058 condense_visit (graph, si, w);
2060 unsigned int t = si->node_mapping[w];
2061 gcc_assert (si->node_mapping[n] == n);
2062 if (si->dfs[t] < si->dfs[n])
2063 si->dfs[n] = si->dfs[t];
2066 /* See if any components have been identified. */
2067 if (si->dfs[n] == my_dfs)
2069 while (si->scc_stack.length () != 0
2070 && si->dfs[si->scc_stack.last ()] >= my_dfs)
2072 unsigned int w = si->scc_stack.pop ();
2073 si->node_mapping[w] = n;
2075 if (!bitmap_bit_p (graph->direct_nodes, w))
2076 bitmap_clear_bit (graph->direct_nodes, n);
2078 /* Unify our nodes. */
2079 if (graph->preds[w])
2081 if (!graph->preds[n])
2082 graph->preds[n] = BITMAP_ALLOC (&predbitmap_obstack);
2083 bitmap_ior_into (graph->preds[n], graph->preds[w]);
2085 if (graph->implicit_preds[w])
2087 if (!graph->implicit_preds[n])
2088 graph->implicit_preds[n] = BITMAP_ALLOC (&predbitmap_obstack);
2089 bitmap_ior_into (graph->implicit_preds[n],
2090 graph->implicit_preds[w]);
2092 if (graph->points_to[w])
2094 if (!graph->points_to[n])
2095 graph->points_to[n] = BITMAP_ALLOC (&predbitmap_obstack);
2096 bitmap_ior_into (graph->points_to[n],
2097 graph->points_to[w]);
2100 bitmap_set_bit (si->deleted, n);
2102 else
2103 si->scc_stack.safe_push (n);
2106 /* Label pointer equivalences.
2108 This performs a value numbering of the constraint graph to
2109 discover which variables will always have the same points-to sets
2110 under the current set of constraints.
2112 The way it value numbers is to store the set of points-to bits
2113 generated by the constraints and graph edges. This is just used as a
2114 hash and equality comparison. The *actual set of points-to bits* is
2115 completely irrelevant, in that we don't care about being able to
2116 extract them later.
2118 The equality values (currently bitmaps) just have to satisfy a few
2119 constraints, the main ones being:
2120 1. The combining operation must be order independent.
2121 2. The end result of a given set of operations must be unique iff the
2122 combination of input values is unique
2123 3. Hashable. */
2125 static void
2126 label_visit (constraint_graph_t graph, struct scc_info *si, unsigned int n)
2128 unsigned int i, first_pred;
2129 bitmap_iterator bi;
2131 bitmap_set_bit (si->visited, n);
2133 /* Label and union our incoming edges's points to sets. */
2134 first_pred = -1U;
2135 EXECUTE_IF_IN_NONNULL_BITMAP (graph->preds[n], 0, i, bi)
2137 unsigned int w = si->node_mapping[i];
2138 if (!bitmap_bit_p (si->visited, w))
2139 label_visit (graph, si, w);
2141 /* Skip unused edges */
2142 if (w == n || graph->pointer_label[w] == 0)
2143 continue;
2145 if (graph->points_to[w])
2147 if (!graph->points_to[n])
2149 if (first_pred == -1U)
2150 first_pred = w;
2151 else
2153 graph->points_to[n] = BITMAP_ALLOC (&predbitmap_obstack);
2154 bitmap_ior (graph->points_to[n],
2155 graph->points_to[first_pred],
2156 graph->points_to[w]);
2159 else
2160 bitmap_ior_into (graph->points_to[n], graph->points_to[w]);
2164 /* Indirect nodes get fresh variables and a new pointer equiv class. */
2165 if (!bitmap_bit_p (graph->direct_nodes, n))
2167 if (!graph->points_to[n])
2169 graph->points_to[n] = BITMAP_ALLOC (&predbitmap_obstack);
2170 if (first_pred != -1U)
2171 bitmap_copy (graph->points_to[n], graph->points_to[first_pred]);
2173 bitmap_set_bit (graph->points_to[n], FIRST_REF_NODE + n);
2174 graph->pointer_label[n] = pointer_equiv_class++;
2175 equiv_class_label_t ecl;
2176 ecl = equiv_class_lookup_or_add (pointer_equiv_class_table,
2177 graph->points_to[n]);
2178 ecl->equivalence_class = graph->pointer_label[n];
2179 return;
2182 /* If there was only a single non-empty predecessor the pointer equiv
2183 class is the same. */
2184 if (!graph->points_to[n])
2186 if (first_pred != -1U)
2188 graph->pointer_label[n] = graph->pointer_label[first_pred];
2189 graph->points_to[n] = graph->points_to[first_pred];
2191 return;
2194 if (!bitmap_empty_p (graph->points_to[n]))
2196 equiv_class_label_t ecl;
2197 ecl = equiv_class_lookup_or_add (pointer_equiv_class_table,
2198 graph->points_to[n]);
2199 if (ecl->equivalence_class == 0)
2200 ecl->equivalence_class = pointer_equiv_class++;
2201 else
2203 BITMAP_FREE (graph->points_to[n]);
2204 graph->points_to[n] = ecl->labels;
2206 graph->pointer_label[n] = ecl->equivalence_class;
2210 /* Print the pred graph in dot format. */
2212 static void
2213 dump_pred_graph (struct scc_info *si, FILE *file)
2215 unsigned int i;
2217 /* Only print the graph if it has already been initialized: */
2218 if (!graph)
2219 return;
2221 /* Prints the header of the dot file: */
2222 fprintf (file, "strict digraph {\n");
2223 fprintf (file, " node [\n shape = box\n ]\n");
2224 fprintf (file, " edge [\n fontsize = \"12\"\n ]\n");
2225 fprintf (file, "\n // List of nodes and complex constraints in "
2226 "the constraint graph:\n");
2228 /* The next lines print the nodes in the graph together with the
2229 complex constraints attached to them. */
2230 for (i = 1; i < graph->size; i++)
2232 if (i == FIRST_REF_NODE)
2233 continue;
2234 if (si->node_mapping[i] != i)
2235 continue;
2236 if (i < FIRST_REF_NODE)
2237 fprintf (file, "\"%s\"", get_varinfo (i)->name);
2238 else
2239 fprintf (file, "\"*%s\"", get_varinfo (i - FIRST_REF_NODE)->name);
2240 if (graph->points_to[i]
2241 && !bitmap_empty_p (graph->points_to[i]))
2243 fprintf (file, "[label=\"%s = {", get_varinfo (i)->name);
2244 unsigned j;
2245 bitmap_iterator bi;
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++)
2257 unsigned j;
2258 bitmap_iterator bi;
2259 if (si->node_mapping[i] != i)
2260 continue;
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);
2266 else
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);
2271 else
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)
2287 unsigned int i;
2288 unsigned int size = graph->size;
2289 struct scc_info *si = init_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++)
2321 bitmap pointed_by;
2322 bitmap_iterator bi;
2323 unsigned int j;
2325 if (!graph->pointed_by[i])
2326 continue;
2327 pointed_by = BITMAP_ALLOC (&iteration_obstack);
2329 /* Translate the pointed-by mapping for pointer equivalence
2330 labels. */
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
2340 one otherwise. */
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++;
2345 else
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];
2360 if (j != 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);
2367 else
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);
2373 else
2374 fprintf (dump_file, "\"*%s\"\n",
2375 get_varinfo (j - FIRST_REF_NODE)->name);
2377 else
2379 fprintf (dump_file,
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);
2385 else
2386 fprintf (dump_file, "\"*%s\"",
2387 get_varinfo (i - FIRST_REF_NODE)->name);
2388 fprintf (dump_file,
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))
2403 fprintf (dump_file,
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);
2411 return si;
2414 /* Free information that was only necessary for variable
2415 substitution. */
2417 static void
2418 free_var_substitution_info (struct scc_info *si)
2420 free_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. */
2437 static unsigned int
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];
2457 else
2459 graph->eq_rep[label] = node;
2460 graph->pe_rep[label] = node;
2463 else
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;
2471 return node;
2474 /* Unite pointer equivalent but not location equivalent nodes in
2475 GRAPH. This may only be performed once variable substitution is
2476 finished. */
2478 static void
2479 unite_pointer_equivalences (constraint_graph_t graph)
2481 unsigned int i;
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];
2488 if (label)
2490 int label_rep = graph->pe_rep[label];
2492 if (label_rep == -1)
2493 continue;
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. */
2504 static void
2505 move_complex_constraints (constraint_graph_t graph)
2507 int i;
2508 constraint_t c;
2510 FOR_EACH_VEC_ELT (constraints, i, c)
2512 if (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. */
2540 static void
2541 rewrite_constraints (constraint_graph_t graph,
2542 struct scc_info *si)
2544 int i;
2545 constraint_t c;
2547 #ifdef ENABLE_CHECKING
2548 for (unsigned int j = 0; j < graph->size; j++)
2549 gcc_assert (find (j) == j);
2550 #endif
2552 FOR_EACH_VEC_ELT (constraints, i, c)
2554 struct constraint_expr lhs = c->lhs;
2555 struct constraint_expr rhs = c->rhs;
2556 unsigned int lhsvar = find (lhs.var);
2557 unsigned int rhsvar = find (rhs.var);
2558 unsigned int lhsnode, rhsnode;
2559 unsigned int lhslabel, rhslabel;
2561 lhsnode = si->node_mapping[lhsvar];
2562 rhsnode = si->node_mapping[rhsvar];
2563 lhslabel = graph->pointer_label[lhsnode];
2564 rhslabel = graph->pointer_label[rhsnode];
2566 /* See if it is really a non-pointer variable, and if so, ignore
2567 the constraint. */
2568 if (lhslabel == 0)
2570 if (dump_file && (dump_flags & TDF_DETAILS))
2573 fprintf (dump_file, "%s is a non-pointer variable,"
2574 "ignoring constraint:",
2575 get_varinfo (lhs.var)->name);
2576 dump_constraint (dump_file, c);
2577 fprintf (dump_file, "\n");
2579 constraints[i] = NULL;
2580 continue;
2583 if (rhslabel == 0)
2585 if (dump_file && (dump_flags & TDF_DETAILS))
2588 fprintf (dump_file, "%s is a non-pointer variable,"
2589 "ignoring constraint:",
2590 get_varinfo (rhs.var)->name);
2591 dump_constraint (dump_file, c);
2592 fprintf (dump_file, "\n");
2594 constraints[i] = NULL;
2595 continue;
2598 lhsvar = find_equivalent_node (graph, lhsvar, lhslabel);
2599 rhsvar = find_equivalent_node (graph, rhsvar, rhslabel);
2600 c->lhs.var = lhsvar;
2601 c->rhs.var = rhsvar;
2605 /* Eliminate indirect cycles involving NODE. Return true if NODE was
2606 part of an SCC, false otherwise. */
2608 static bool
2609 eliminate_indirect_cycles (unsigned int node)
2611 if (graph->indirect_cycles[node] != -1
2612 && !bitmap_empty_p (get_varinfo (node)->solution))
2614 unsigned int i;
2615 auto_vec<unsigned> queue;
2616 int queuepos;
2617 unsigned int to = find (graph->indirect_cycles[node]);
2618 bitmap_iterator bi;
2620 /* We can't touch the solution set and call unify_nodes
2621 at the same time, because unify_nodes is going to do
2622 bitmap unions into it. */
2624 EXECUTE_IF_SET_IN_BITMAP (get_varinfo (node)->solution, 0, i, bi)
2626 if (find (i) == i && i != to)
2628 if (unite (to, i))
2629 queue.safe_push (i);
2633 for (queuepos = 0;
2634 queue.iterate (queuepos, &i);
2635 queuepos++)
2637 unify_nodes (graph, to, i, true);
2639 return true;
2641 return false;
2644 /* Solve the constraint graph GRAPH using our worklist solver.
2645 This is based on the PW* family of solvers from the "Efficient Field
2646 Sensitive Pointer Analysis for C" paper.
2647 It works by iterating over all the graph nodes, processing the complex
2648 constraints and propagating the copy constraints, until everything stops
2649 changed. This corresponds to steps 6-8 in the solving list given above. */
2651 static void
2652 solve_graph (constraint_graph_t graph)
2654 unsigned int size = graph->size;
2655 unsigned int i;
2656 bitmap pts;
2658 changed = BITMAP_ALLOC (NULL);
2660 /* Mark all initial non-collapsed nodes as changed. */
2661 for (i = 1; i < size; i++)
2663 varinfo_t ivi = get_varinfo (i);
2664 if (find (i) == i && !bitmap_empty_p (ivi->solution)
2665 && ((graph->succs[i] && !bitmap_empty_p (graph->succs[i]))
2666 || graph->complex[i].length () > 0))
2667 bitmap_set_bit (changed, i);
2670 /* Allocate a bitmap to be used to store the changed bits. */
2671 pts = BITMAP_ALLOC (&pta_obstack);
2673 while (!bitmap_empty_p (changed))
2675 unsigned int i;
2676 struct topo_info *ti = init_topo_info ();
2677 stats.iterations++;
2679 bitmap_obstack_initialize (&iteration_obstack);
2681 compute_topo_order (graph, ti);
2683 while (ti->topo_order.length () != 0)
2686 i = ti->topo_order.pop ();
2688 /* If this variable is not a representative, skip it. */
2689 if (find (i) != i)
2690 continue;
2692 /* In certain indirect cycle cases, we may merge this
2693 variable to another. */
2694 if (eliminate_indirect_cycles (i) && find (i) != i)
2695 continue;
2697 /* If the node has changed, we need to process the
2698 complex constraints and outgoing edges again. */
2699 if (bitmap_clear_bit (changed, i))
2701 unsigned int j;
2702 constraint_t c;
2703 bitmap solution;
2704 vec<constraint_t> complex = graph->complex[i];
2705 varinfo_t vi = get_varinfo (i);
2706 bool solution_empty;
2708 /* Compute the changed set of solution bits. If anything
2709 is in the solution just propagate that. */
2710 if (bitmap_bit_p (vi->solution, anything_id))
2712 /* If anything is also in the old solution there is
2713 nothing to do.
2714 ??? But we shouldn't ended up with "changed" set ... */
2715 if (vi->oldsolution
2716 && bitmap_bit_p (vi->oldsolution, anything_id))
2717 continue;
2718 bitmap_copy (pts, get_varinfo (find (anything_id))->solution);
2720 else if (vi->oldsolution)
2721 bitmap_and_compl (pts, vi->solution, vi->oldsolution);
2722 else
2723 bitmap_copy (pts, vi->solution);
2725 if (bitmap_empty_p (pts))
2726 continue;
2728 if (vi->oldsolution)
2729 bitmap_ior_into (vi->oldsolution, pts);
2730 else
2732 vi->oldsolution = BITMAP_ALLOC (&oldpta_obstack);
2733 bitmap_copy (vi->oldsolution, pts);
2736 solution = vi->solution;
2737 solution_empty = bitmap_empty_p (solution);
2739 /* Process the complex constraints */
2740 bitmap expanded_pts = NULL;
2741 FOR_EACH_VEC_ELT (complex, j, c)
2743 /* XXX: This is going to unsort the constraints in
2744 some cases, which will occasionally add duplicate
2745 constraints during unification. This does not
2746 affect correctness. */
2747 c->lhs.var = find (c->lhs.var);
2748 c->rhs.var = find (c->rhs.var);
2750 /* The only complex constraint that can change our
2751 solution to non-empty, given an empty solution,
2752 is a constraint where the lhs side is receiving
2753 some set from elsewhere. */
2754 if (!solution_empty || c->lhs.type != DEREF)
2755 do_complex_constraint (graph, c, pts, &expanded_pts);
2757 BITMAP_FREE (expanded_pts);
2759 solution_empty = bitmap_empty_p (solution);
2761 if (!solution_empty)
2763 bitmap_iterator bi;
2764 unsigned eff_escaped_id = find (escaped_id);
2766 /* Propagate solution to all successors. */
2767 EXECUTE_IF_IN_NONNULL_BITMAP (graph->succs[i],
2768 0, j, bi)
2770 bitmap tmp;
2771 bool flag;
2773 unsigned int to = find (j);
2774 tmp = get_varinfo (to)->solution;
2775 flag = false;
2777 /* Don't try to propagate to ourselves. */
2778 if (to == i)
2779 continue;
2781 /* If we propagate from ESCAPED use ESCAPED as
2782 placeholder. */
2783 if (i == eff_escaped_id)
2784 flag = bitmap_set_bit (tmp, escaped_id);
2785 else
2786 flag = bitmap_ior_into (tmp, pts);
2788 if (flag)
2789 bitmap_set_bit (changed, to);
2794 free_topo_info (ti);
2795 bitmap_obstack_release (&iteration_obstack);
2798 BITMAP_FREE (pts);
2799 BITMAP_FREE (changed);
2800 bitmap_obstack_release (&oldpta_obstack);
2803 /* Map from trees to variable infos. */
2804 static hash_map<tree, varinfo_t> *vi_for_tree;
2807 /* Insert ID as the variable id for tree T in the vi_for_tree map. */
2809 static void
2810 insert_vi_for_tree (tree t, varinfo_t vi)
2812 gcc_assert (vi);
2813 gcc_assert (!vi_for_tree->put (t, vi));
2816 /* Find the variable info for tree T in VI_FOR_TREE. If T does not
2817 exist in the map, return NULL, otherwise, return the varinfo we found. */
2819 static varinfo_t
2820 lookup_vi_for_tree (tree t)
2822 varinfo_t *slot = vi_for_tree->get (t);
2823 if (slot == NULL)
2824 return NULL;
2826 return *slot;
2829 /* Return a printable name for DECL */
2831 static const char *
2832 alias_get_name (tree decl)
2834 const char *res = NULL;
2835 char *temp;
2836 int num_printed = 0;
2838 if (!dump_file)
2839 return "NULL";
2841 if (TREE_CODE (decl) == SSA_NAME)
2843 res = get_name (decl);
2844 if (res)
2845 num_printed = asprintf (&temp, "%s_%u", res, SSA_NAME_VERSION (decl));
2846 else
2847 num_printed = asprintf (&temp, "_%u", SSA_NAME_VERSION (decl));
2848 if (num_printed > 0)
2850 res = ggc_strdup (temp);
2851 free (temp);
2854 else if (DECL_P (decl))
2856 if (DECL_ASSEMBLER_NAME_SET_P (decl))
2857 res = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl));
2858 else
2860 res = get_name (decl);
2861 if (!res)
2863 num_printed = asprintf (&temp, "D.%u", DECL_UID (decl));
2864 if (num_printed > 0)
2866 res = ggc_strdup (temp);
2867 free (temp);
2872 if (res != NULL)
2873 return res;
2875 return "NULL";
2878 /* Find the variable id for tree T in the map.
2879 If T doesn't exist in the map, create an entry for it and return it. */
2881 static varinfo_t
2882 get_vi_for_tree (tree t)
2884 varinfo_t *slot = vi_for_tree->get (t);
2885 if (slot == NULL)
2886 return get_varinfo (create_variable_info_for (t, alias_get_name (t)));
2888 return *slot;
2891 /* Get a scalar constraint expression for a new temporary variable. */
2893 static struct constraint_expr
2894 new_scalar_tmp_constraint_exp (const char *name)
2896 struct constraint_expr tmp;
2897 varinfo_t vi;
2899 vi = new_var_info (NULL_TREE, name);
2900 vi->offset = 0;
2901 vi->size = -1;
2902 vi->fullsize = -1;
2903 vi->is_full_var = 1;
2905 tmp.var = vi->id;
2906 tmp.type = SCALAR;
2907 tmp.offset = 0;
2909 return tmp;
2912 /* Get a constraint expression vector from an SSA_VAR_P node.
2913 If address_p is true, the result will be taken its address of. */
2915 static void
2916 get_constraint_for_ssa_var (tree t, vec<ce_s> *results, bool address_p)
2918 struct constraint_expr cexpr;
2919 varinfo_t vi;
2921 /* We allow FUNCTION_DECLs here even though it doesn't make much sense. */
2922 gcc_assert (TREE_CODE (t) == SSA_NAME || DECL_P (t));
2924 /* For parameters, get at the points-to set for the actual parm
2925 decl. */
2926 if (TREE_CODE (t) == SSA_NAME
2927 && SSA_NAME_IS_DEFAULT_DEF (t)
2928 && (TREE_CODE (SSA_NAME_VAR (t)) == PARM_DECL
2929 || TREE_CODE (SSA_NAME_VAR (t)) == RESULT_DECL))
2931 get_constraint_for_ssa_var (SSA_NAME_VAR (t), results, address_p);
2932 return;
2935 /* For global variables resort to the alias target. */
2936 if (TREE_CODE (t) == VAR_DECL
2937 && (TREE_STATIC (t) || DECL_EXTERNAL (t)))
2939 varpool_node *node = varpool_node::get (t);
2940 if (node && node->alias && node->analyzed)
2942 node = node->ultimate_alias_target ();
2943 t = node->decl;
2947 vi = get_vi_for_tree (t);
2948 cexpr.var = vi->id;
2949 cexpr.type = SCALAR;
2950 cexpr.offset = 0;
2952 /* If we are not taking the address of the constraint expr, add all
2953 sub-fiels of the variable as well. */
2954 if (!address_p
2955 && !vi->is_full_var)
2957 for (; vi; vi = vi_next (vi))
2959 cexpr.var = vi->id;
2960 results->safe_push (cexpr);
2962 return;
2965 results->safe_push (cexpr);
2968 /* Process constraint T, performing various simplifications and then
2969 adding it to our list of overall constraints. */
2971 static void
2972 process_constraint (constraint_t t)
2974 struct constraint_expr rhs = t->rhs;
2975 struct constraint_expr lhs = t->lhs;
2977 gcc_assert (rhs.var < varmap.length ());
2978 gcc_assert (lhs.var < varmap.length ());
2980 /* If we didn't get any useful constraint from the lhs we get
2981 &ANYTHING as fallback from get_constraint_for. Deal with
2982 it here by turning it into *ANYTHING. */
2983 if (lhs.type == ADDRESSOF
2984 && lhs.var == anything_id)
2985 lhs.type = DEREF;
2987 /* ADDRESSOF on the lhs is invalid. */
2988 gcc_assert (lhs.type != ADDRESSOF);
2990 /* We shouldn't add constraints from things that cannot have pointers.
2991 It's not completely trivial to avoid in the callers, so do it here. */
2992 if (rhs.type != ADDRESSOF
2993 && !get_varinfo (rhs.var)->may_have_pointers)
2994 return;
2996 /* Likewise adding to the solution of a non-pointer var isn't useful. */
2997 if (!get_varinfo (lhs.var)->may_have_pointers)
2998 return;
3000 /* This can happen in our IR with things like n->a = *p */
3001 if (rhs.type == DEREF && lhs.type == DEREF && rhs.var != anything_id)
3003 /* Split into tmp = *rhs, *lhs = tmp */
3004 struct constraint_expr tmplhs;
3005 tmplhs = new_scalar_tmp_constraint_exp ("doubledereftmp");
3006 process_constraint (new_constraint (tmplhs, rhs));
3007 process_constraint (new_constraint (lhs, tmplhs));
3009 else if (rhs.type == ADDRESSOF && lhs.type == DEREF)
3011 /* Split into tmp = &rhs, *lhs = tmp */
3012 struct constraint_expr tmplhs;
3013 tmplhs = new_scalar_tmp_constraint_exp ("derefaddrtmp");
3014 process_constraint (new_constraint (tmplhs, rhs));
3015 process_constraint (new_constraint (lhs, tmplhs));
3017 else
3019 gcc_assert (rhs.type != ADDRESSOF || rhs.offset == 0);
3020 constraints.safe_push (t);
3025 /* Return the position, in bits, of FIELD_DECL from the beginning of its
3026 structure. */
3028 static HOST_WIDE_INT
3029 bitpos_of_field (const tree fdecl)
3031 if (!tree_fits_shwi_p (DECL_FIELD_OFFSET (fdecl))
3032 || !tree_fits_shwi_p (DECL_FIELD_BIT_OFFSET (fdecl)))
3033 return -1;
3035 return (tree_to_shwi (DECL_FIELD_OFFSET (fdecl)) * BITS_PER_UNIT
3036 + tree_to_shwi (DECL_FIELD_BIT_OFFSET (fdecl)));
3040 /* Get constraint expressions for offsetting PTR by OFFSET. Stores the
3041 resulting constraint expressions in *RESULTS. */
3043 static void
3044 get_constraint_for_ptr_offset (tree ptr, tree offset,
3045 vec<ce_s> *results)
3047 struct constraint_expr c;
3048 unsigned int j, n;
3049 HOST_WIDE_INT rhsoffset;
3051 /* If we do not do field-sensitive PTA adding offsets to pointers
3052 does not change the points-to solution. */
3053 if (!use_field_sensitive)
3055 get_constraint_for_rhs (ptr, results);
3056 return;
3059 /* If the offset is not a non-negative integer constant that fits
3060 in a HOST_WIDE_INT, we have to fall back to a conservative
3061 solution which includes all sub-fields of all pointed-to
3062 variables of ptr. */
3063 if (offset == NULL_TREE
3064 || TREE_CODE (offset) != INTEGER_CST)
3065 rhsoffset = UNKNOWN_OFFSET;
3066 else
3068 /* Sign-extend the offset. */
3069 offset_int soffset = offset_int::from (offset, SIGNED);
3070 if (!wi::fits_shwi_p (soffset))
3071 rhsoffset = UNKNOWN_OFFSET;
3072 else
3074 /* Make sure the bit-offset also fits. */
3075 HOST_WIDE_INT rhsunitoffset = soffset.to_shwi ();
3076 rhsoffset = rhsunitoffset * BITS_PER_UNIT;
3077 if (rhsunitoffset != rhsoffset / BITS_PER_UNIT)
3078 rhsoffset = UNKNOWN_OFFSET;
3082 get_constraint_for_rhs (ptr, results);
3083 if (rhsoffset == 0)
3084 return;
3086 /* As we are eventually appending to the solution do not use
3087 vec::iterate here. */
3088 n = results->length ();
3089 for (j = 0; j < n; j++)
3091 varinfo_t curr;
3092 c = (*results)[j];
3093 curr = get_varinfo (c.var);
3095 if (c.type == ADDRESSOF
3096 /* If this varinfo represents a full variable just use it. */
3097 && curr->is_full_var)
3099 else if (c.type == ADDRESSOF
3100 /* If we do not know the offset add all subfields. */
3101 && rhsoffset == UNKNOWN_OFFSET)
3103 varinfo_t temp = get_varinfo (curr->head);
3106 struct constraint_expr c2;
3107 c2.var = temp->id;
3108 c2.type = ADDRESSOF;
3109 c2.offset = 0;
3110 if (c2.var != c.var)
3111 results->safe_push (c2);
3112 temp = vi_next (temp);
3114 while (temp);
3116 else if (c.type == ADDRESSOF)
3118 varinfo_t temp;
3119 unsigned HOST_WIDE_INT offset = curr->offset + rhsoffset;
3121 /* If curr->offset + rhsoffset is less than zero adjust it. */
3122 if (rhsoffset < 0
3123 && curr->offset < offset)
3124 offset = 0;
3126 /* We have to include all fields that overlap the current
3127 field shifted by rhsoffset. And we include at least
3128 the last or the first field of the variable to represent
3129 reachability of off-bound addresses, in particular &object + 1,
3130 conservatively correct. */
3131 temp = first_or_preceding_vi_for_offset (curr, offset);
3132 c.var = temp->id;
3133 c.offset = 0;
3134 temp = vi_next (temp);
3135 while (temp
3136 && temp->offset < offset + curr->size)
3138 struct constraint_expr c2;
3139 c2.var = temp->id;
3140 c2.type = ADDRESSOF;
3141 c2.offset = 0;
3142 results->safe_push (c2);
3143 temp = vi_next (temp);
3146 else if (c.type == SCALAR)
3148 gcc_assert (c.offset == 0);
3149 c.offset = rhsoffset;
3151 else
3152 /* We shouldn't get any DEREFs here. */
3153 gcc_unreachable ();
3155 (*results)[j] = c;
3160 /* Given a COMPONENT_REF T, return the constraint_expr vector for it.
3161 If address_p is true the result will be taken its address of.
3162 If lhs_p is true then the constraint expression is assumed to be used
3163 as the lhs. */
3165 static void
3166 get_constraint_for_component_ref (tree t, vec<ce_s> *results,
3167 bool address_p, bool lhs_p)
3169 tree orig_t = t;
3170 HOST_WIDE_INT bitsize = -1;
3171 HOST_WIDE_INT bitmaxsize = -1;
3172 HOST_WIDE_INT bitpos;
3173 tree forzero;
3175 /* Some people like to do cute things like take the address of
3176 &0->a.b */
3177 forzero = t;
3178 while (handled_component_p (forzero)
3179 || INDIRECT_REF_P (forzero)
3180 || TREE_CODE (forzero) == MEM_REF)
3181 forzero = TREE_OPERAND (forzero, 0);
3183 if (CONSTANT_CLASS_P (forzero) && integer_zerop (forzero))
3185 struct constraint_expr temp;
3187 temp.offset = 0;
3188 temp.var = integer_id;
3189 temp.type = SCALAR;
3190 results->safe_push (temp);
3191 return;
3194 t = get_ref_base_and_extent (t, &bitpos, &bitsize, &bitmaxsize);
3196 /* Pretend to take the address of the base, we'll take care of
3197 adding the required subset of sub-fields below. */
3198 get_constraint_for_1 (t, results, true, lhs_p);
3199 gcc_assert (results->length () == 1);
3200 struct constraint_expr &result = results->last ();
3202 if (result.type == SCALAR
3203 && get_varinfo (result.var)->is_full_var)
3204 /* For single-field vars do not bother about the offset. */
3205 result.offset = 0;
3206 else if (result.type == SCALAR)
3208 /* In languages like C, you can access one past the end of an
3209 array. You aren't allowed to dereference it, so we can
3210 ignore this constraint. When we handle pointer subtraction,
3211 we may have to do something cute here. */
3213 if ((unsigned HOST_WIDE_INT)bitpos < get_varinfo (result.var)->fullsize
3214 && bitmaxsize != 0)
3216 /* It's also not true that the constraint will actually start at the
3217 right offset, it may start in some padding. We only care about
3218 setting the constraint to the first actual field it touches, so
3219 walk to find it. */
3220 struct constraint_expr cexpr = result;
3221 varinfo_t curr;
3222 results->pop ();
3223 cexpr.offset = 0;
3224 for (curr = get_varinfo (cexpr.var); curr; curr = vi_next (curr))
3226 if (ranges_overlap_p (curr->offset, curr->size,
3227 bitpos, bitmaxsize))
3229 cexpr.var = curr->id;
3230 results->safe_push (cexpr);
3231 if (address_p)
3232 break;
3235 /* If we are going to take the address of this field then
3236 to be able to compute reachability correctly add at least
3237 the last field of the variable. */
3238 if (address_p && results->length () == 0)
3240 curr = get_varinfo (cexpr.var);
3241 while (curr->next != 0)
3242 curr = vi_next (curr);
3243 cexpr.var = curr->id;
3244 results->safe_push (cexpr);
3246 else if (results->length () == 0)
3247 /* Assert that we found *some* field there. The user couldn't be
3248 accessing *only* padding. */
3249 /* Still the user could access one past the end of an array
3250 embedded in a struct resulting in accessing *only* padding. */
3251 /* Or accessing only padding via type-punning to a type
3252 that has a filed just in padding space. */
3254 cexpr.type = SCALAR;
3255 cexpr.var = anything_id;
3256 cexpr.offset = 0;
3257 results->safe_push (cexpr);
3260 else if (bitmaxsize == 0)
3262 if (dump_file && (dump_flags & TDF_DETAILS))
3263 fprintf (dump_file, "Access to zero-sized part of variable,"
3264 "ignoring\n");
3266 else
3267 if (dump_file && (dump_flags & TDF_DETAILS))
3268 fprintf (dump_file, "Access to past the end of variable, ignoring\n");
3270 else if (result.type == DEREF)
3272 /* If we do not know exactly where the access goes say so. Note
3273 that only for non-structure accesses we know that we access
3274 at most one subfiled of any variable. */
3275 if (bitpos == -1
3276 || bitsize != bitmaxsize
3277 || AGGREGATE_TYPE_P (TREE_TYPE (orig_t))
3278 || result.offset == UNKNOWN_OFFSET)
3279 result.offset = UNKNOWN_OFFSET;
3280 else
3281 result.offset += bitpos;
3283 else if (result.type == ADDRESSOF)
3285 /* We can end up here for component references on a
3286 VIEW_CONVERT_EXPR <>(&foobar). */
3287 result.type = SCALAR;
3288 result.var = anything_id;
3289 result.offset = 0;
3291 else
3292 gcc_unreachable ();
3296 /* Dereference the constraint expression CONS, and return the result.
3297 DEREF (ADDRESSOF) = SCALAR
3298 DEREF (SCALAR) = DEREF
3299 DEREF (DEREF) = (temp = DEREF1; result = DEREF(temp))
3300 This is needed so that we can handle dereferencing DEREF constraints. */
3302 static void
3303 do_deref (vec<ce_s> *constraints)
3305 struct constraint_expr *c;
3306 unsigned int i = 0;
3308 FOR_EACH_VEC_ELT (*constraints, i, c)
3310 if (c->type == SCALAR)
3311 c->type = DEREF;
3312 else if (c->type == ADDRESSOF)
3313 c->type = SCALAR;
3314 else if (c->type == DEREF)
3316 struct constraint_expr tmplhs;
3317 tmplhs = new_scalar_tmp_constraint_exp ("dereftmp");
3318 process_constraint (new_constraint (tmplhs, *c));
3319 c->var = tmplhs.var;
3321 else
3322 gcc_unreachable ();
3326 /* Given a tree T, return the constraint expression for taking the
3327 address of it. */
3329 static void
3330 get_constraint_for_address_of (tree t, vec<ce_s> *results)
3332 struct constraint_expr *c;
3333 unsigned int i;
3335 get_constraint_for_1 (t, results, true, true);
3337 FOR_EACH_VEC_ELT (*results, i, c)
3339 if (c->type == DEREF)
3340 c->type = SCALAR;
3341 else
3342 c->type = ADDRESSOF;
3346 /* Given a tree T, return the constraint expression for it. */
3348 static void
3349 get_constraint_for_1 (tree t, vec<ce_s> *results, bool address_p,
3350 bool lhs_p)
3352 struct constraint_expr temp;
3354 /* x = integer is all glommed to a single variable, which doesn't
3355 point to anything by itself. That is, of course, unless it is an
3356 integer constant being treated as a pointer, in which case, we
3357 will return that this is really the addressof anything. This
3358 happens below, since it will fall into the default case. The only
3359 case we know something about an integer treated like a pointer is
3360 when it is the NULL pointer, and then we just say it points to
3361 NULL.
3363 Do not do that if -fno-delete-null-pointer-checks though, because
3364 in that case *NULL does not fail, so it _should_ alias *anything.
3365 It is not worth adding a new option or renaming the existing one,
3366 since this case is relatively obscure. */
3367 if ((TREE_CODE (t) == INTEGER_CST
3368 && integer_zerop (t))
3369 /* The only valid CONSTRUCTORs in gimple with pointer typed
3370 elements are zero-initializer. But in IPA mode we also
3371 process global initializers, so verify at least. */
3372 || (TREE_CODE (t) == CONSTRUCTOR
3373 && CONSTRUCTOR_NELTS (t) == 0))
3375 if (flag_delete_null_pointer_checks)
3376 temp.var = nothing_id;
3377 else
3378 temp.var = nonlocal_id;
3379 temp.type = ADDRESSOF;
3380 temp.offset = 0;
3381 results->safe_push (temp);
3382 return;
3385 /* String constants are read-only, ideally we'd have a CONST_DECL
3386 for those. */
3387 if (TREE_CODE (t) == STRING_CST)
3389 temp.var = string_id;
3390 temp.type = SCALAR;
3391 temp.offset = 0;
3392 results->safe_push (temp);
3393 return;
3396 switch (TREE_CODE_CLASS (TREE_CODE (t)))
3398 case tcc_expression:
3400 switch (TREE_CODE (t))
3402 case ADDR_EXPR:
3403 get_constraint_for_address_of (TREE_OPERAND (t, 0), results);
3404 return;
3405 default:;
3407 break;
3409 case tcc_reference:
3411 switch (TREE_CODE (t))
3413 case MEM_REF:
3415 struct constraint_expr cs;
3416 varinfo_t vi, curr;
3417 get_constraint_for_ptr_offset (TREE_OPERAND (t, 0),
3418 TREE_OPERAND (t, 1), results);
3419 do_deref (results);
3421 /* If we are not taking the address then make sure to process
3422 all subvariables we might access. */
3423 if (address_p)
3424 return;
3426 cs = results->last ();
3427 if (cs.type == DEREF
3428 && type_can_have_subvars (TREE_TYPE (t)))
3430 /* For dereferences this means we have to defer it
3431 to solving time. */
3432 results->last ().offset = UNKNOWN_OFFSET;
3433 return;
3435 if (cs.type != SCALAR)
3436 return;
3438 vi = get_varinfo (cs.var);
3439 curr = vi_next (vi);
3440 if (!vi->is_full_var
3441 && curr)
3443 unsigned HOST_WIDE_INT size;
3444 if (tree_fits_uhwi_p (TYPE_SIZE (TREE_TYPE (t))))
3445 size = tree_to_uhwi (TYPE_SIZE (TREE_TYPE (t)));
3446 else
3447 size = -1;
3448 for (; curr; curr = vi_next (curr))
3450 if (curr->offset - vi->offset < size)
3452 cs.var = curr->id;
3453 results->safe_push (cs);
3455 else
3456 break;
3459 return;
3461 case ARRAY_REF:
3462 case ARRAY_RANGE_REF:
3463 case COMPONENT_REF:
3464 case IMAGPART_EXPR:
3465 case REALPART_EXPR:
3466 case BIT_FIELD_REF:
3467 get_constraint_for_component_ref (t, results, address_p, lhs_p);
3468 return;
3469 case VIEW_CONVERT_EXPR:
3470 get_constraint_for_1 (TREE_OPERAND (t, 0), results, address_p,
3471 lhs_p);
3472 return;
3473 /* We are missing handling for TARGET_MEM_REF here. */
3474 default:;
3476 break;
3478 case tcc_exceptional:
3480 switch (TREE_CODE (t))
3482 case SSA_NAME:
3484 get_constraint_for_ssa_var (t, results, address_p);
3485 return;
3487 case CONSTRUCTOR:
3489 unsigned int i;
3490 tree val;
3491 auto_vec<ce_s> tmp;
3492 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (t), i, val)
3494 struct constraint_expr *rhsp;
3495 unsigned j;
3496 get_constraint_for_1 (val, &tmp, address_p, lhs_p);
3497 FOR_EACH_VEC_ELT (tmp, j, rhsp)
3498 results->safe_push (*rhsp);
3499 tmp.truncate (0);
3501 /* We do not know whether the constructor was complete,
3502 so technically we have to add &NOTHING or &ANYTHING
3503 like we do for an empty constructor as well. */
3504 return;
3506 default:;
3508 break;
3510 case tcc_declaration:
3512 get_constraint_for_ssa_var (t, results, address_p);
3513 return;
3515 case tcc_constant:
3517 /* We cannot refer to automatic variables through constants. */
3518 temp.type = ADDRESSOF;
3519 temp.var = nonlocal_id;
3520 temp.offset = 0;
3521 results->safe_push (temp);
3522 return;
3524 default:;
3527 /* The default fallback is a constraint from anything. */
3528 temp.type = ADDRESSOF;
3529 temp.var = anything_id;
3530 temp.offset = 0;
3531 results->safe_push (temp);
3534 /* Given a gimple tree T, return the constraint expression vector for it. */
3536 static void
3537 get_constraint_for (tree t, vec<ce_s> *results)
3539 gcc_assert (results->length () == 0);
3541 get_constraint_for_1 (t, results, false, true);
3544 /* Given a gimple tree T, return the constraint expression vector for it
3545 to be used as the rhs of a constraint. */
3547 static void
3548 get_constraint_for_rhs (tree t, vec<ce_s> *results)
3550 gcc_assert (results->length () == 0);
3552 get_constraint_for_1 (t, results, false, false);
3556 /* Efficiently generates constraints from all entries in *RHSC to all
3557 entries in *LHSC. */
3559 static void
3560 process_all_all_constraints (vec<ce_s> lhsc,
3561 vec<ce_s> rhsc)
3563 struct constraint_expr *lhsp, *rhsp;
3564 unsigned i, j;
3566 if (lhsc.length () <= 1 || rhsc.length () <= 1)
3568 FOR_EACH_VEC_ELT (lhsc, i, lhsp)
3569 FOR_EACH_VEC_ELT (rhsc, j, rhsp)
3570 process_constraint (new_constraint (*lhsp, *rhsp));
3572 else
3574 struct constraint_expr tmp;
3575 tmp = new_scalar_tmp_constraint_exp ("allalltmp");
3576 FOR_EACH_VEC_ELT (rhsc, i, rhsp)
3577 process_constraint (new_constraint (tmp, *rhsp));
3578 FOR_EACH_VEC_ELT (lhsc, i, lhsp)
3579 process_constraint (new_constraint (*lhsp, tmp));
3583 /* Handle aggregate copies by expanding into copies of the respective
3584 fields of the structures. */
3586 static void
3587 do_structure_copy (tree lhsop, tree rhsop)
3589 struct constraint_expr *lhsp, *rhsp;
3590 auto_vec<ce_s> lhsc;
3591 auto_vec<ce_s> rhsc;
3592 unsigned j;
3594 get_constraint_for (lhsop, &lhsc);
3595 get_constraint_for_rhs (rhsop, &rhsc);
3596 lhsp = &lhsc[0];
3597 rhsp = &rhsc[0];
3598 if (lhsp->type == DEREF
3599 || (lhsp->type == ADDRESSOF && lhsp->var == anything_id)
3600 || rhsp->type == DEREF)
3602 if (lhsp->type == DEREF)
3604 gcc_assert (lhsc.length () == 1);
3605 lhsp->offset = UNKNOWN_OFFSET;
3607 if (rhsp->type == DEREF)
3609 gcc_assert (rhsc.length () == 1);
3610 rhsp->offset = UNKNOWN_OFFSET;
3612 process_all_all_constraints (lhsc, rhsc);
3614 else if (lhsp->type == SCALAR
3615 && (rhsp->type == SCALAR
3616 || rhsp->type == ADDRESSOF))
3618 HOST_WIDE_INT lhssize, lhsmaxsize, lhsoffset;
3619 HOST_WIDE_INT rhssize, rhsmaxsize, rhsoffset;
3620 unsigned k = 0;
3621 get_ref_base_and_extent (lhsop, &lhsoffset, &lhssize, &lhsmaxsize);
3622 get_ref_base_and_extent (rhsop, &rhsoffset, &rhssize, &rhsmaxsize);
3623 for (j = 0; lhsc.iterate (j, &lhsp);)
3625 varinfo_t lhsv, rhsv;
3626 rhsp = &rhsc[k];
3627 lhsv = get_varinfo (lhsp->var);
3628 rhsv = get_varinfo (rhsp->var);
3629 if (lhsv->may_have_pointers
3630 && (lhsv->is_full_var
3631 || rhsv->is_full_var
3632 || ranges_overlap_p (lhsv->offset + rhsoffset, lhsv->size,
3633 rhsv->offset + lhsoffset, rhsv->size)))
3634 process_constraint (new_constraint (*lhsp, *rhsp));
3635 if (!rhsv->is_full_var
3636 && (lhsv->is_full_var
3637 || (lhsv->offset + rhsoffset + lhsv->size
3638 > rhsv->offset + lhsoffset + rhsv->size)))
3640 ++k;
3641 if (k >= rhsc.length ())
3642 break;
3644 else
3645 ++j;
3648 else
3649 gcc_unreachable ();
3652 /* Create constraints ID = { rhsc }. */
3654 static void
3655 make_constraints_to (unsigned id, vec<ce_s> rhsc)
3657 struct constraint_expr *c;
3658 struct constraint_expr includes;
3659 unsigned int j;
3661 includes.var = id;
3662 includes.offset = 0;
3663 includes.type = SCALAR;
3665 FOR_EACH_VEC_ELT (rhsc, j, c)
3666 process_constraint (new_constraint (includes, *c));
3669 /* Create a constraint ID = OP. */
3671 static void
3672 make_constraint_to (unsigned id, tree op)
3674 auto_vec<ce_s> rhsc;
3675 get_constraint_for_rhs (op, &rhsc);
3676 make_constraints_to (id, rhsc);
3679 /* Create a constraint ID = &FROM. */
3681 static void
3682 make_constraint_from (varinfo_t vi, int from)
3684 struct constraint_expr lhs, rhs;
3686 lhs.var = vi->id;
3687 lhs.offset = 0;
3688 lhs.type = SCALAR;
3690 rhs.var = from;
3691 rhs.offset = 0;
3692 rhs.type = ADDRESSOF;
3693 process_constraint (new_constraint (lhs, rhs));
3696 /* Create a constraint ID = FROM. */
3698 static void
3699 make_copy_constraint (varinfo_t vi, int from)
3701 struct constraint_expr lhs, rhs;
3703 lhs.var = vi->id;
3704 lhs.offset = 0;
3705 lhs.type = SCALAR;
3707 rhs.var = from;
3708 rhs.offset = 0;
3709 rhs.type = SCALAR;
3710 process_constraint (new_constraint (lhs, rhs));
3713 /* Make constraints necessary to make OP escape. */
3715 static void
3716 make_escape_constraint (tree op)
3718 make_constraint_to (escaped_id, op);
3721 /* Add constraints to that the solution of VI is transitively closed. */
3723 static void
3724 make_transitive_closure_constraints (varinfo_t vi)
3726 struct constraint_expr lhs, rhs;
3728 /* VAR = *VAR; */
3729 lhs.type = SCALAR;
3730 lhs.var = vi->id;
3731 lhs.offset = 0;
3732 rhs.type = DEREF;
3733 rhs.var = vi->id;
3734 rhs.offset = UNKNOWN_OFFSET;
3735 process_constraint (new_constraint (lhs, rhs));
3738 /* Temporary storage for fake var decls. */
3739 struct obstack fake_var_decl_obstack;
3741 /* Build a fake VAR_DECL acting as referrer to a DECL_UID. */
3743 static tree
3744 build_fake_var_decl (tree type)
3746 tree decl = (tree) XOBNEW (&fake_var_decl_obstack, struct tree_var_decl);
3747 memset (decl, 0, sizeof (struct tree_var_decl));
3748 TREE_SET_CODE (decl, VAR_DECL);
3749 TREE_TYPE (decl) = type;
3750 DECL_UID (decl) = allocate_decl_uid ();
3751 SET_DECL_PT_UID (decl, -1);
3752 layout_decl (decl, 0);
3753 return decl;
3756 /* Create a new artificial heap variable with NAME.
3757 Return the created variable. */
3759 static varinfo_t
3760 make_heapvar (const char *name)
3762 varinfo_t vi;
3763 tree heapvar;
3765 heapvar = build_fake_var_decl (ptr_type_node);
3766 DECL_EXTERNAL (heapvar) = 1;
3768 vi = new_var_info (heapvar, name);
3769 vi->is_artificial_var = true;
3770 vi->is_heap_var = true;
3771 vi->is_unknown_size_var = true;
3772 vi->offset = 0;
3773 vi->fullsize = ~0;
3774 vi->size = ~0;
3775 vi->is_full_var = true;
3776 insert_vi_for_tree (heapvar, vi);
3778 return vi;
3781 /* Create a new artificial heap variable with NAME and make a
3782 constraint from it to LHS. Set flags according to a tag used
3783 for tracking restrict pointers. */
3785 static varinfo_t
3786 make_constraint_from_restrict (varinfo_t lhs, const char *name)
3788 varinfo_t vi = make_heapvar (name);
3789 vi->is_restrict_var = 1;
3790 vi->is_global_var = 1;
3791 vi->may_have_pointers = 1;
3792 make_constraint_from (lhs, vi->id);
3793 return vi;
3796 /* Create a new artificial heap variable with NAME and make a
3797 constraint from it to LHS. Set flags according to a tag used
3798 for tracking restrict pointers and make the artificial heap
3799 point to global memory. */
3801 static varinfo_t
3802 make_constraint_from_global_restrict (varinfo_t lhs, const char *name)
3804 varinfo_t vi = make_constraint_from_restrict (lhs, name);
3805 make_copy_constraint (vi, nonlocal_id);
3806 return vi;
3809 /* In IPA mode there are varinfos for different aspects of reach
3810 function designator. One for the points-to set of the return
3811 value, one for the variables that are clobbered by the function,
3812 one for its uses and one for each parameter (including a single
3813 glob for remaining variadic arguments). */
3815 enum { fi_clobbers = 1, fi_uses = 2,
3816 fi_static_chain = 3, fi_result = 4, fi_parm_base = 5 };
3818 /* Get a constraint for the requested part of a function designator FI
3819 when operating in IPA mode. */
3821 static struct constraint_expr
3822 get_function_part_constraint (varinfo_t fi, unsigned part)
3824 struct constraint_expr c;
3826 gcc_assert (in_ipa_mode);
3828 if (fi->id == anything_id)
3830 /* ??? We probably should have a ANYFN special variable. */
3831 c.var = anything_id;
3832 c.offset = 0;
3833 c.type = SCALAR;
3835 else if (TREE_CODE (fi->decl) == FUNCTION_DECL)
3837 varinfo_t ai = first_vi_for_offset (fi, part);
3838 if (ai)
3839 c.var = ai->id;
3840 else
3841 c.var = anything_id;
3842 c.offset = 0;
3843 c.type = SCALAR;
3845 else
3847 c.var = fi->id;
3848 c.offset = part;
3849 c.type = DEREF;
3852 return c;
3855 /* For non-IPA mode, generate constraints necessary for a call on the
3856 RHS. */
3858 static void
3859 handle_rhs_call (gcall *stmt, vec<ce_s> *results)
3861 struct constraint_expr rhsc;
3862 unsigned i;
3863 bool returns_uses = false;
3865 for (i = 0; i < gimple_call_num_args (stmt); ++i)
3867 tree arg = gimple_call_arg (stmt, i);
3868 int flags = gimple_call_arg_flags (stmt, i);
3870 /* If the argument is not used we can ignore it. */
3871 if (flags & EAF_UNUSED)
3872 continue;
3874 /* As we compute ESCAPED context-insensitive we do not gain
3875 any precision with just EAF_NOCLOBBER but not EAF_NOESCAPE
3876 set. The argument would still get clobbered through the
3877 escape solution. */
3878 if ((flags & EAF_NOCLOBBER)
3879 && (flags & EAF_NOESCAPE))
3881 varinfo_t uses = get_call_use_vi (stmt);
3882 if (!(flags & EAF_DIRECT))
3884 varinfo_t tem = new_var_info (NULL_TREE, "callarg");
3885 make_constraint_to (tem->id, arg);
3886 make_transitive_closure_constraints (tem);
3887 make_copy_constraint (uses, tem->id);
3889 else
3890 make_constraint_to (uses->id, arg);
3891 returns_uses = true;
3893 else if (flags & EAF_NOESCAPE)
3895 struct constraint_expr lhs, rhs;
3896 varinfo_t uses = get_call_use_vi (stmt);
3897 varinfo_t clobbers = get_call_clobber_vi (stmt);
3898 varinfo_t tem = new_var_info (NULL_TREE, "callarg");
3899 make_constraint_to (tem->id, arg);
3900 if (!(flags & EAF_DIRECT))
3901 make_transitive_closure_constraints (tem);
3902 make_copy_constraint (uses, tem->id);
3903 make_copy_constraint (clobbers, tem->id);
3904 /* Add *tem = nonlocal, do not add *tem = callused as
3905 EAF_NOESCAPE parameters do not escape to other parameters
3906 and all other uses appear in NONLOCAL as well. */
3907 lhs.type = DEREF;
3908 lhs.var = tem->id;
3909 lhs.offset = 0;
3910 rhs.type = SCALAR;
3911 rhs.var = nonlocal_id;
3912 rhs.offset = 0;
3913 process_constraint (new_constraint (lhs, rhs));
3914 returns_uses = true;
3916 else
3917 make_escape_constraint (arg);
3920 /* If we added to the calls uses solution make sure we account for
3921 pointers to it to be returned. */
3922 if (returns_uses)
3924 rhsc.var = get_call_use_vi (stmt)->id;
3925 rhsc.offset = 0;
3926 rhsc.type = SCALAR;
3927 results->safe_push (rhsc);
3930 /* The static chain escapes as well. */
3931 if (gimple_call_chain (stmt))
3932 make_escape_constraint (gimple_call_chain (stmt));
3934 /* And if we applied NRV the address of the return slot escapes as well. */
3935 if (gimple_call_return_slot_opt_p (stmt)
3936 && gimple_call_lhs (stmt) != NULL_TREE
3937 && TREE_ADDRESSABLE (TREE_TYPE (gimple_call_lhs (stmt))))
3939 auto_vec<ce_s> tmpc;
3940 struct constraint_expr lhsc, *c;
3941 get_constraint_for_address_of (gimple_call_lhs (stmt), &tmpc);
3942 lhsc.var = escaped_id;
3943 lhsc.offset = 0;
3944 lhsc.type = SCALAR;
3945 FOR_EACH_VEC_ELT (tmpc, i, c)
3946 process_constraint (new_constraint (lhsc, *c));
3949 /* Regular functions return nonlocal memory. */
3950 rhsc.var = nonlocal_id;
3951 rhsc.offset = 0;
3952 rhsc.type = SCALAR;
3953 results->safe_push (rhsc);
3956 /* For non-IPA mode, generate constraints necessary for a call
3957 that returns a pointer and assigns it to LHS. This simply makes
3958 the LHS point to global and escaped variables. */
3960 static void
3961 handle_lhs_call (gcall *stmt, tree lhs, int flags, vec<ce_s> rhsc,
3962 tree fndecl)
3964 auto_vec<ce_s> lhsc;
3966 get_constraint_for (lhs, &lhsc);
3967 /* If the store is to a global decl make sure to
3968 add proper escape constraints. */
3969 lhs = get_base_address (lhs);
3970 if (lhs
3971 && DECL_P (lhs)
3972 && is_global_var (lhs))
3974 struct constraint_expr tmpc;
3975 tmpc.var = escaped_id;
3976 tmpc.offset = 0;
3977 tmpc.type = SCALAR;
3978 lhsc.safe_push (tmpc);
3981 /* If the call returns an argument unmodified override the rhs
3982 constraints. */
3983 if (flags & ERF_RETURNS_ARG
3984 && (flags & ERF_RETURN_ARG_MASK) < gimple_call_num_args (stmt))
3986 tree arg;
3987 rhsc.create (0);
3988 arg = gimple_call_arg (stmt, flags & ERF_RETURN_ARG_MASK);
3989 get_constraint_for (arg, &rhsc);
3990 process_all_all_constraints (lhsc, rhsc);
3991 rhsc.release ();
3993 else if (flags & ERF_NOALIAS)
3995 varinfo_t vi;
3996 struct constraint_expr tmpc;
3997 rhsc.create (0);
3998 vi = make_heapvar ("HEAP");
3999 /* We are marking allocated storage local, we deal with it becoming
4000 global by escaping and setting of vars_contains_escaped_heap. */
4001 DECL_EXTERNAL (vi->decl) = 0;
4002 vi->is_global_var = 0;
4003 /* If this is not a real malloc call assume the memory was
4004 initialized and thus may point to global memory. All
4005 builtin functions with the malloc attribute behave in a sane way. */
4006 if (!fndecl
4007 || DECL_BUILT_IN_CLASS (fndecl) != BUILT_IN_NORMAL)
4008 make_constraint_from (vi, nonlocal_id);
4009 tmpc.var = vi->id;
4010 tmpc.offset = 0;
4011 tmpc.type = ADDRESSOF;
4012 rhsc.safe_push (tmpc);
4013 process_all_all_constraints (lhsc, rhsc);
4014 rhsc.release ();
4016 else
4017 process_all_all_constraints (lhsc, rhsc);
4020 /* For non-IPA mode, generate constraints necessary for a call of a
4021 const function that returns a pointer in the statement STMT. */
4023 static void
4024 handle_const_call (gcall *stmt, vec<ce_s> *results)
4026 struct constraint_expr rhsc;
4027 unsigned int k;
4029 /* Treat nested const functions the same as pure functions as far
4030 as the static chain is concerned. */
4031 if (gimple_call_chain (stmt))
4033 varinfo_t uses = get_call_use_vi (stmt);
4034 make_transitive_closure_constraints (uses);
4035 make_constraint_to (uses->id, gimple_call_chain (stmt));
4036 rhsc.var = uses->id;
4037 rhsc.offset = 0;
4038 rhsc.type = SCALAR;
4039 results->safe_push (rhsc);
4042 /* May return arguments. */
4043 for (k = 0; k < gimple_call_num_args (stmt); ++k)
4045 tree arg = gimple_call_arg (stmt, k);
4046 auto_vec<ce_s> argc;
4047 unsigned i;
4048 struct constraint_expr *argp;
4049 get_constraint_for_rhs (arg, &argc);
4050 FOR_EACH_VEC_ELT (argc, i, argp)
4051 results->safe_push (*argp);
4054 /* May return addresses of globals. */
4055 rhsc.var = nonlocal_id;
4056 rhsc.offset = 0;
4057 rhsc.type = ADDRESSOF;
4058 results->safe_push (rhsc);
4061 /* For non-IPA mode, generate constraints necessary for a call to a
4062 pure function in statement STMT. */
4064 static void
4065 handle_pure_call (gcall *stmt, vec<ce_s> *results)
4067 struct constraint_expr rhsc;
4068 unsigned i;
4069 varinfo_t uses = NULL;
4071 /* Memory reached from pointer arguments is call-used. */
4072 for (i = 0; i < gimple_call_num_args (stmt); ++i)
4074 tree arg = gimple_call_arg (stmt, i);
4075 if (!uses)
4077 uses = get_call_use_vi (stmt);
4078 make_transitive_closure_constraints (uses);
4080 make_constraint_to (uses->id, arg);
4083 /* The static chain is used as well. */
4084 if (gimple_call_chain (stmt))
4086 if (!uses)
4088 uses = get_call_use_vi (stmt);
4089 make_transitive_closure_constraints (uses);
4091 make_constraint_to (uses->id, gimple_call_chain (stmt));
4094 /* Pure functions may return call-used and nonlocal memory. */
4095 if (uses)
4097 rhsc.var = uses->id;
4098 rhsc.offset = 0;
4099 rhsc.type = SCALAR;
4100 results->safe_push (rhsc);
4102 rhsc.var = nonlocal_id;
4103 rhsc.offset = 0;
4104 rhsc.type = SCALAR;
4105 results->safe_push (rhsc);
4109 /* Return the varinfo for the callee of CALL. */
4111 static varinfo_t
4112 get_fi_for_callee (gcall *call)
4114 tree decl, fn = gimple_call_fn (call);
4116 if (fn && TREE_CODE (fn) == OBJ_TYPE_REF)
4117 fn = OBJ_TYPE_REF_EXPR (fn);
4119 /* If we can directly resolve the function being called, do so.
4120 Otherwise, it must be some sort of indirect expression that
4121 we should still be able to handle. */
4122 decl = gimple_call_addr_fndecl (fn);
4123 if (decl)
4124 return get_vi_for_tree (decl);
4126 /* If the function is anything other than a SSA name pointer we have no
4127 clue and should be getting ANYFN (well, ANYTHING for now). */
4128 if (!fn || TREE_CODE (fn) != SSA_NAME)
4129 return get_varinfo (anything_id);
4131 if (SSA_NAME_IS_DEFAULT_DEF (fn)
4132 && (TREE_CODE (SSA_NAME_VAR (fn)) == PARM_DECL
4133 || TREE_CODE (SSA_NAME_VAR (fn)) == RESULT_DECL))
4134 fn = SSA_NAME_VAR (fn);
4136 return get_vi_for_tree (fn);
4139 /* Create constraints for the builtin call T. Return true if the call
4140 was handled, otherwise false. */
4142 static bool
4143 find_func_aliases_for_builtin_call (struct function *fn, gcall *t)
4145 tree fndecl = gimple_call_fndecl (t);
4146 auto_vec<ce_s, 2> lhsc;
4147 auto_vec<ce_s, 4> rhsc;
4148 varinfo_t fi;
4150 if (gimple_call_builtin_p (t, BUILT_IN_NORMAL))
4151 /* ??? All builtins that are handled here need to be handled
4152 in the alias-oracle query functions explicitly! */
4153 switch (DECL_FUNCTION_CODE (fndecl))
4155 /* All the following functions return a pointer to the same object
4156 as their first argument points to. The functions do not add
4157 to the ESCAPED solution. The functions make the first argument
4158 pointed to memory point to what the second argument pointed to
4159 memory points to. */
4160 case BUILT_IN_STRCPY:
4161 case BUILT_IN_STRNCPY:
4162 case BUILT_IN_BCOPY:
4163 case BUILT_IN_MEMCPY:
4164 case BUILT_IN_MEMMOVE:
4165 case BUILT_IN_MEMPCPY:
4166 case BUILT_IN_STPCPY:
4167 case BUILT_IN_STPNCPY:
4168 case BUILT_IN_STRCAT:
4169 case BUILT_IN_STRNCAT:
4170 case BUILT_IN_STRCPY_CHK:
4171 case BUILT_IN_STRNCPY_CHK:
4172 case BUILT_IN_MEMCPY_CHK:
4173 case BUILT_IN_MEMMOVE_CHK:
4174 case BUILT_IN_MEMPCPY_CHK:
4175 case BUILT_IN_STPCPY_CHK:
4176 case BUILT_IN_STPNCPY_CHK:
4177 case BUILT_IN_STRCAT_CHK:
4178 case BUILT_IN_STRNCAT_CHK:
4179 case BUILT_IN_TM_MEMCPY:
4180 case BUILT_IN_TM_MEMMOVE:
4182 tree res = gimple_call_lhs (t);
4183 tree dest = gimple_call_arg (t, (DECL_FUNCTION_CODE (fndecl)
4184 == BUILT_IN_BCOPY ? 1 : 0));
4185 tree src = gimple_call_arg (t, (DECL_FUNCTION_CODE (fndecl)
4186 == BUILT_IN_BCOPY ? 0 : 1));
4187 if (res != NULL_TREE)
4189 get_constraint_for (res, &lhsc);
4190 if (DECL_FUNCTION_CODE (fndecl) == BUILT_IN_MEMPCPY
4191 || DECL_FUNCTION_CODE (fndecl) == BUILT_IN_STPCPY
4192 || DECL_FUNCTION_CODE (fndecl) == BUILT_IN_STPNCPY
4193 || DECL_FUNCTION_CODE (fndecl) == BUILT_IN_MEMPCPY_CHK
4194 || DECL_FUNCTION_CODE (fndecl) == BUILT_IN_STPCPY_CHK
4195 || DECL_FUNCTION_CODE (fndecl) == BUILT_IN_STPNCPY_CHK)
4196 get_constraint_for_ptr_offset (dest, NULL_TREE, &rhsc);
4197 else
4198 get_constraint_for (dest, &rhsc);
4199 process_all_all_constraints (lhsc, rhsc);
4200 lhsc.truncate (0);
4201 rhsc.truncate (0);
4203 get_constraint_for_ptr_offset (dest, NULL_TREE, &lhsc);
4204 get_constraint_for_ptr_offset (src, NULL_TREE, &rhsc);
4205 do_deref (&lhsc);
4206 do_deref (&rhsc);
4207 process_all_all_constraints (lhsc, rhsc);
4208 return true;
4210 case BUILT_IN_MEMSET:
4211 case BUILT_IN_MEMSET_CHK:
4212 case BUILT_IN_TM_MEMSET:
4214 tree res = gimple_call_lhs (t);
4215 tree dest = gimple_call_arg (t, 0);
4216 unsigned i;
4217 ce_s *lhsp;
4218 struct constraint_expr ac;
4219 if (res != NULL_TREE)
4221 get_constraint_for (res, &lhsc);
4222 get_constraint_for (dest, &rhsc);
4223 process_all_all_constraints (lhsc, rhsc);
4224 lhsc.truncate (0);
4226 get_constraint_for_ptr_offset (dest, NULL_TREE, &lhsc);
4227 do_deref (&lhsc);
4228 if (flag_delete_null_pointer_checks
4229 && integer_zerop (gimple_call_arg (t, 1)))
4231 ac.type = ADDRESSOF;
4232 ac.var = nothing_id;
4234 else
4236 ac.type = SCALAR;
4237 ac.var = integer_id;
4239 ac.offset = 0;
4240 FOR_EACH_VEC_ELT (lhsc, i, lhsp)
4241 process_constraint (new_constraint (*lhsp, ac));
4242 return true;
4244 case BUILT_IN_POSIX_MEMALIGN:
4246 tree ptrptr = gimple_call_arg (t, 0);
4247 get_constraint_for (ptrptr, &lhsc);
4248 do_deref (&lhsc);
4249 varinfo_t vi = make_heapvar ("HEAP");
4250 /* We are marking allocated storage local, we deal with it becoming
4251 global by escaping and setting of vars_contains_escaped_heap. */
4252 DECL_EXTERNAL (vi->decl) = 0;
4253 vi->is_global_var = 0;
4254 struct constraint_expr tmpc;
4255 tmpc.var = vi->id;
4256 tmpc.offset = 0;
4257 tmpc.type = ADDRESSOF;
4258 rhsc.safe_push (tmpc);
4259 process_all_all_constraints (lhsc, rhsc);
4260 return true;
4262 case BUILT_IN_ASSUME_ALIGNED:
4264 tree res = gimple_call_lhs (t);
4265 tree dest = gimple_call_arg (t, 0);
4266 if (res != NULL_TREE)
4268 get_constraint_for (res, &lhsc);
4269 get_constraint_for (dest, &rhsc);
4270 process_all_all_constraints (lhsc, rhsc);
4272 return true;
4274 /* All the following functions do not return pointers, do not
4275 modify the points-to sets of memory reachable from their
4276 arguments and do not add to the ESCAPED solution. */
4277 case BUILT_IN_SINCOS:
4278 case BUILT_IN_SINCOSF:
4279 case BUILT_IN_SINCOSL:
4280 case BUILT_IN_FREXP:
4281 case BUILT_IN_FREXPF:
4282 case BUILT_IN_FREXPL:
4283 case BUILT_IN_GAMMA_R:
4284 case BUILT_IN_GAMMAF_R:
4285 case BUILT_IN_GAMMAL_R:
4286 case BUILT_IN_LGAMMA_R:
4287 case BUILT_IN_LGAMMAF_R:
4288 case BUILT_IN_LGAMMAL_R:
4289 case BUILT_IN_MODF:
4290 case BUILT_IN_MODFF:
4291 case BUILT_IN_MODFL:
4292 case BUILT_IN_REMQUO:
4293 case BUILT_IN_REMQUOF:
4294 case BUILT_IN_REMQUOL:
4295 case BUILT_IN_FREE:
4296 return true;
4297 case BUILT_IN_STRDUP:
4298 case BUILT_IN_STRNDUP:
4299 case BUILT_IN_REALLOC:
4300 if (gimple_call_lhs (t))
4302 handle_lhs_call (t, gimple_call_lhs (t),
4303 gimple_call_return_flags (t) | ERF_NOALIAS,
4304 vNULL, fndecl);
4305 get_constraint_for_ptr_offset (gimple_call_lhs (t),
4306 NULL_TREE, &lhsc);
4307 get_constraint_for_ptr_offset (gimple_call_arg (t, 0),
4308 NULL_TREE, &rhsc);
4309 do_deref (&lhsc);
4310 do_deref (&rhsc);
4311 process_all_all_constraints (lhsc, rhsc);
4312 lhsc.truncate (0);
4313 rhsc.truncate (0);
4314 /* For realloc the resulting pointer can be equal to the
4315 argument as well. But only doing this wouldn't be
4316 correct because with ptr == 0 realloc behaves like malloc. */
4317 if (DECL_FUNCTION_CODE (fndecl) == BUILT_IN_REALLOC)
4319 get_constraint_for (gimple_call_lhs (t), &lhsc);
4320 get_constraint_for (gimple_call_arg (t, 0), &rhsc);
4321 process_all_all_constraints (lhsc, rhsc);
4323 return true;
4325 break;
4326 /* String / character search functions return a pointer into the
4327 source string or NULL. */
4328 case BUILT_IN_INDEX:
4329 case BUILT_IN_STRCHR:
4330 case BUILT_IN_STRRCHR:
4331 case BUILT_IN_MEMCHR:
4332 case BUILT_IN_STRSTR:
4333 case BUILT_IN_STRPBRK:
4334 if (gimple_call_lhs (t))
4336 tree src = gimple_call_arg (t, 0);
4337 get_constraint_for_ptr_offset (src, NULL_TREE, &rhsc);
4338 constraint_expr nul;
4339 nul.var = nothing_id;
4340 nul.offset = 0;
4341 nul.type = ADDRESSOF;
4342 rhsc.safe_push (nul);
4343 get_constraint_for (gimple_call_lhs (t), &lhsc);
4344 process_all_all_constraints (lhsc, rhsc);
4346 return true;
4347 /* Trampolines are special - they set up passing the static
4348 frame. */
4349 case BUILT_IN_INIT_TRAMPOLINE:
4351 tree tramp = gimple_call_arg (t, 0);
4352 tree nfunc = gimple_call_arg (t, 1);
4353 tree frame = gimple_call_arg (t, 2);
4354 unsigned i;
4355 struct constraint_expr lhs, *rhsp;
4356 if (in_ipa_mode)
4358 varinfo_t nfi = NULL;
4359 gcc_assert (TREE_CODE (nfunc) == ADDR_EXPR);
4360 nfi = lookup_vi_for_tree (TREE_OPERAND (nfunc, 0));
4361 if (nfi)
4363 lhs = get_function_part_constraint (nfi, fi_static_chain);
4364 get_constraint_for (frame, &rhsc);
4365 FOR_EACH_VEC_ELT (rhsc, i, rhsp)
4366 process_constraint (new_constraint (lhs, *rhsp));
4367 rhsc.truncate (0);
4369 /* Make the frame point to the function for
4370 the trampoline adjustment call. */
4371 get_constraint_for (tramp, &lhsc);
4372 do_deref (&lhsc);
4373 get_constraint_for (nfunc, &rhsc);
4374 process_all_all_constraints (lhsc, rhsc);
4376 return true;
4379 /* Else fallthru to generic handling which will let
4380 the frame escape. */
4381 break;
4383 case BUILT_IN_ADJUST_TRAMPOLINE:
4385 tree tramp = gimple_call_arg (t, 0);
4386 tree res = gimple_call_lhs (t);
4387 if (in_ipa_mode && res)
4389 get_constraint_for (res, &lhsc);
4390 get_constraint_for (tramp, &rhsc);
4391 do_deref (&rhsc);
4392 process_all_all_constraints (lhsc, rhsc);
4394 return true;
4396 CASE_BUILT_IN_TM_STORE (1):
4397 CASE_BUILT_IN_TM_STORE (2):
4398 CASE_BUILT_IN_TM_STORE (4):
4399 CASE_BUILT_IN_TM_STORE (8):
4400 CASE_BUILT_IN_TM_STORE (FLOAT):
4401 CASE_BUILT_IN_TM_STORE (DOUBLE):
4402 CASE_BUILT_IN_TM_STORE (LDOUBLE):
4403 CASE_BUILT_IN_TM_STORE (M64):
4404 CASE_BUILT_IN_TM_STORE (M128):
4405 CASE_BUILT_IN_TM_STORE (M256):
4407 tree addr = gimple_call_arg (t, 0);
4408 tree src = gimple_call_arg (t, 1);
4410 get_constraint_for (addr, &lhsc);
4411 do_deref (&lhsc);
4412 get_constraint_for (src, &rhsc);
4413 process_all_all_constraints (lhsc, rhsc);
4414 return true;
4416 CASE_BUILT_IN_TM_LOAD (1):
4417 CASE_BUILT_IN_TM_LOAD (2):
4418 CASE_BUILT_IN_TM_LOAD (4):
4419 CASE_BUILT_IN_TM_LOAD (8):
4420 CASE_BUILT_IN_TM_LOAD (FLOAT):
4421 CASE_BUILT_IN_TM_LOAD (DOUBLE):
4422 CASE_BUILT_IN_TM_LOAD (LDOUBLE):
4423 CASE_BUILT_IN_TM_LOAD (M64):
4424 CASE_BUILT_IN_TM_LOAD (M128):
4425 CASE_BUILT_IN_TM_LOAD (M256):
4427 tree dest = gimple_call_lhs (t);
4428 tree addr = gimple_call_arg (t, 0);
4430 get_constraint_for (dest, &lhsc);
4431 get_constraint_for (addr, &rhsc);
4432 do_deref (&rhsc);
4433 process_all_all_constraints (lhsc, rhsc);
4434 return true;
4436 /* Variadic argument handling needs to be handled in IPA
4437 mode as well. */
4438 case BUILT_IN_VA_START:
4440 tree valist = gimple_call_arg (t, 0);
4441 struct constraint_expr rhs, *lhsp;
4442 unsigned i;
4443 get_constraint_for (valist, &lhsc);
4444 do_deref (&lhsc);
4445 /* The va_list gets access to pointers in variadic
4446 arguments. Which we know in the case of IPA analysis
4447 and otherwise are just all nonlocal variables. */
4448 if (in_ipa_mode)
4450 fi = lookup_vi_for_tree (fn->decl);
4451 rhs = get_function_part_constraint (fi, ~0);
4452 rhs.type = ADDRESSOF;
4454 else
4456 rhs.var = nonlocal_id;
4457 rhs.type = ADDRESSOF;
4458 rhs.offset = 0;
4460 FOR_EACH_VEC_ELT (lhsc, i, lhsp)
4461 process_constraint (new_constraint (*lhsp, rhs));
4462 /* va_list is clobbered. */
4463 make_constraint_to (get_call_clobber_vi (t)->id, valist);
4464 return true;
4466 /* va_end doesn't have any effect that matters. */
4467 case BUILT_IN_VA_END:
4468 return true;
4469 /* Alternate return. Simply give up for now. */
4470 case BUILT_IN_RETURN:
4472 fi = NULL;
4473 if (!in_ipa_mode
4474 || !(fi = get_vi_for_tree (fn->decl)))
4475 make_constraint_from (get_varinfo (escaped_id), anything_id);
4476 else if (in_ipa_mode
4477 && fi != NULL)
4479 struct constraint_expr lhs, rhs;
4480 lhs = get_function_part_constraint (fi, fi_result);
4481 rhs.var = anything_id;
4482 rhs.offset = 0;
4483 rhs.type = SCALAR;
4484 process_constraint (new_constraint (lhs, rhs));
4486 return true;
4488 /* printf-style functions may have hooks to set pointers to
4489 point to somewhere into the generated string. Leave them
4490 for a later exercise... */
4491 default:
4492 /* Fallthru to general call handling. */;
4495 return false;
4498 /* Create constraints for the call T. */
4500 static void
4501 find_func_aliases_for_call (struct function *fn, gcall *t)
4503 tree fndecl = gimple_call_fndecl (t);
4504 varinfo_t fi;
4506 if (fndecl != NULL_TREE
4507 && DECL_BUILT_IN (fndecl)
4508 && find_func_aliases_for_builtin_call (fn, t))
4509 return;
4511 fi = get_fi_for_callee (t);
4512 if (!in_ipa_mode
4513 || (fndecl && !fi->is_fn_info))
4515 auto_vec<ce_s, 16> rhsc;
4516 int flags = gimple_call_flags (t);
4518 /* Const functions can return their arguments and addresses
4519 of global memory but not of escaped memory. */
4520 if (flags & (ECF_CONST|ECF_NOVOPS))
4522 if (gimple_call_lhs (t))
4523 handle_const_call (t, &rhsc);
4525 /* Pure functions can return addresses in and of memory
4526 reachable from their arguments, but they are not an escape
4527 point for reachable memory of their arguments. */
4528 else if (flags & (ECF_PURE|ECF_LOOPING_CONST_OR_PURE))
4529 handle_pure_call (t, &rhsc);
4530 else
4531 handle_rhs_call (t, &rhsc);
4532 if (gimple_call_lhs (t))
4533 handle_lhs_call (t, gimple_call_lhs (t),
4534 gimple_call_return_flags (t), rhsc, fndecl);
4536 else
4538 auto_vec<ce_s, 2> rhsc;
4539 tree lhsop;
4540 unsigned j;
4542 /* Assign all the passed arguments to the appropriate incoming
4543 parameters of the function. */
4544 for (j = 0; j < gimple_call_num_args (t); j++)
4546 struct constraint_expr lhs ;
4547 struct constraint_expr *rhsp;
4548 tree arg = gimple_call_arg (t, j);
4550 get_constraint_for_rhs (arg, &rhsc);
4551 lhs = get_function_part_constraint (fi, fi_parm_base + j);
4552 while (rhsc.length () != 0)
4554 rhsp = &rhsc.last ();
4555 process_constraint (new_constraint (lhs, *rhsp));
4556 rhsc.pop ();
4560 /* If we are returning a value, assign it to the result. */
4561 lhsop = gimple_call_lhs (t);
4562 if (lhsop)
4564 auto_vec<ce_s, 2> lhsc;
4565 struct constraint_expr rhs;
4566 struct constraint_expr *lhsp;
4568 get_constraint_for (lhsop, &lhsc);
4569 rhs = get_function_part_constraint (fi, fi_result);
4570 if (fndecl
4571 && DECL_RESULT (fndecl)
4572 && DECL_BY_REFERENCE (DECL_RESULT (fndecl)))
4574 auto_vec<ce_s, 2> tem;
4575 tem.quick_push (rhs);
4576 do_deref (&tem);
4577 gcc_checking_assert (tem.length () == 1);
4578 rhs = tem[0];
4580 FOR_EACH_VEC_ELT (lhsc, j, lhsp)
4581 process_constraint (new_constraint (*lhsp, rhs));
4584 /* If we pass the result decl by reference, honor that. */
4585 if (lhsop
4586 && fndecl
4587 && DECL_RESULT (fndecl)
4588 && DECL_BY_REFERENCE (DECL_RESULT (fndecl)))
4590 struct constraint_expr lhs;
4591 struct constraint_expr *rhsp;
4593 get_constraint_for_address_of (lhsop, &rhsc);
4594 lhs = get_function_part_constraint (fi, fi_result);
4595 FOR_EACH_VEC_ELT (rhsc, j, rhsp)
4596 process_constraint (new_constraint (lhs, *rhsp));
4597 rhsc.truncate (0);
4600 /* If we use a static chain, pass it along. */
4601 if (gimple_call_chain (t))
4603 struct constraint_expr lhs;
4604 struct constraint_expr *rhsp;
4606 get_constraint_for (gimple_call_chain (t), &rhsc);
4607 lhs = get_function_part_constraint (fi, fi_static_chain);
4608 FOR_EACH_VEC_ELT (rhsc, j, rhsp)
4609 process_constraint (new_constraint (lhs, *rhsp));
4614 /* Walk statement T setting up aliasing constraints according to the
4615 references found in T. This function is the main part of the
4616 constraint builder. AI points to auxiliary alias information used
4617 when building alias sets and computing alias grouping heuristics. */
4619 static void
4620 find_func_aliases (struct function *fn, gimple *origt)
4622 gimple *t = origt;
4623 auto_vec<ce_s, 16> lhsc;
4624 auto_vec<ce_s, 16> rhsc;
4625 struct constraint_expr *c;
4626 varinfo_t fi;
4628 /* Now build constraints expressions. */
4629 if (gimple_code (t) == GIMPLE_PHI)
4631 size_t i;
4632 unsigned int j;
4634 /* For a phi node, assign all the arguments to
4635 the result. */
4636 get_constraint_for (gimple_phi_result (t), &lhsc);
4637 for (i = 0; i < gimple_phi_num_args (t); i++)
4639 tree strippedrhs = PHI_ARG_DEF (t, i);
4641 STRIP_NOPS (strippedrhs);
4642 get_constraint_for_rhs (gimple_phi_arg_def (t, i), &rhsc);
4644 FOR_EACH_VEC_ELT (lhsc, j, c)
4646 struct constraint_expr *c2;
4647 while (rhsc.length () > 0)
4649 c2 = &rhsc.last ();
4650 process_constraint (new_constraint (*c, *c2));
4651 rhsc.pop ();
4656 /* In IPA mode, we need to generate constraints to pass call
4657 arguments through their calls. There are two cases,
4658 either a GIMPLE_CALL returning a value, or just a plain
4659 GIMPLE_CALL when we are not.
4661 In non-ipa mode, we need to generate constraints for each
4662 pointer passed by address. */
4663 else if (is_gimple_call (t))
4664 find_func_aliases_for_call (fn, as_a <gcall *> (t));
4666 /* Otherwise, just a regular assignment statement. Only care about
4667 operations with pointer result, others are dealt with as escape
4668 points if they have pointer operands. */
4669 else if (is_gimple_assign (t))
4671 /* Otherwise, just a regular assignment statement. */
4672 tree lhsop = gimple_assign_lhs (t);
4673 tree rhsop = (gimple_num_ops (t) == 2) ? gimple_assign_rhs1 (t) : NULL;
4675 if (rhsop && TREE_CLOBBER_P (rhsop))
4676 /* Ignore clobbers, they don't actually store anything into
4677 the LHS. */
4679 else if (rhsop && AGGREGATE_TYPE_P (TREE_TYPE (lhsop)))
4680 do_structure_copy (lhsop, rhsop);
4681 else
4683 enum tree_code code = gimple_assign_rhs_code (t);
4685 get_constraint_for (lhsop, &lhsc);
4687 if (code == POINTER_PLUS_EXPR)
4688 get_constraint_for_ptr_offset (gimple_assign_rhs1 (t),
4689 gimple_assign_rhs2 (t), &rhsc);
4690 else if (code == BIT_AND_EXPR
4691 && TREE_CODE (gimple_assign_rhs2 (t)) == INTEGER_CST)
4693 /* Aligning a pointer via a BIT_AND_EXPR is offsetting
4694 the pointer. Handle it by offsetting it by UNKNOWN. */
4695 get_constraint_for_ptr_offset (gimple_assign_rhs1 (t),
4696 NULL_TREE, &rhsc);
4698 else if ((CONVERT_EXPR_CODE_P (code)
4699 && !(POINTER_TYPE_P (gimple_expr_type (t))
4700 && !POINTER_TYPE_P (TREE_TYPE (rhsop))))
4701 || gimple_assign_single_p (t))
4702 get_constraint_for_rhs (rhsop, &rhsc);
4703 else if (code == COND_EXPR)
4705 /* The result is a merge of both COND_EXPR arms. */
4706 auto_vec<ce_s, 2> tmp;
4707 struct constraint_expr *rhsp;
4708 unsigned i;
4709 get_constraint_for_rhs (gimple_assign_rhs2 (t), &rhsc);
4710 get_constraint_for_rhs (gimple_assign_rhs3 (t), &tmp);
4711 FOR_EACH_VEC_ELT (tmp, i, rhsp)
4712 rhsc.safe_push (*rhsp);
4714 else if (truth_value_p (code))
4715 /* Truth value results are not pointer (parts). Or at least
4716 very unreasonable obfuscation of a part. */
4718 else
4720 /* All other operations are merges. */
4721 auto_vec<ce_s, 4> tmp;
4722 struct constraint_expr *rhsp;
4723 unsigned i, j;
4724 get_constraint_for_rhs (gimple_assign_rhs1 (t), &rhsc);
4725 for (i = 2; i < gimple_num_ops (t); ++i)
4727 get_constraint_for_rhs (gimple_op (t, i), &tmp);
4728 FOR_EACH_VEC_ELT (tmp, j, rhsp)
4729 rhsc.safe_push (*rhsp);
4730 tmp.truncate (0);
4733 process_all_all_constraints (lhsc, rhsc);
4735 /* If there is a store to a global variable the rhs escapes. */
4736 if ((lhsop = get_base_address (lhsop)) != NULL_TREE
4737 && DECL_P (lhsop)
4738 && is_global_var (lhsop)
4739 && (!in_ipa_mode
4740 || DECL_EXTERNAL (lhsop) || TREE_PUBLIC (lhsop)))
4741 make_escape_constraint (rhsop);
4743 /* Handle escapes through return. */
4744 else if (gimple_code (t) == GIMPLE_RETURN
4745 && gimple_return_retval (as_a <greturn *> (t)) != NULL_TREE)
4747 greturn *return_stmt = as_a <greturn *> (t);
4748 fi = NULL;
4749 if (!in_ipa_mode
4750 || !(fi = get_vi_for_tree (fn->decl)))
4751 make_escape_constraint (gimple_return_retval (return_stmt));
4752 else if (in_ipa_mode
4753 && fi != NULL)
4755 struct constraint_expr lhs ;
4756 struct constraint_expr *rhsp;
4757 unsigned i;
4759 lhs = get_function_part_constraint (fi, fi_result);
4760 get_constraint_for_rhs (gimple_return_retval (return_stmt), &rhsc);
4761 FOR_EACH_VEC_ELT (rhsc, i, rhsp)
4762 process_constraint (new_constraint (lhs, *rhsp));
4765 /* Handle asms conservatively by adding escape constraints to everything. */
4766 else if (gasm *asm_stmt = dyn_cast <gasm *> (t))
4768 unsigned i, noutputs;
4769 const char **oconstraints;
4770 const char *constraint;
4771 bool allows_mem, allows_reg, is_inout;
4773 noutputs = gimple_asm_noutputs (asm_stmt);
4774 oconstraints = XALLOCAVEC (const char *, noutputs);
4776 for (i = 0; i < noutputs; ++i)
4778 tree link = gimple_asm_output_op (asm_stmt, i);
4779 tree op = TREE_VALUE (link);
4781 constraint = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (link)));
4782 oconstraints[i] = constraint;
4783 parse_output_constraint (&constraint, i, 0, 0, &allows_mem,
4784 &allows_reg, &is_inout);
4786 /* A memory constraint makes the address of the operand escape. */
4787 if (!allows_reg && allows_mem)
4788 make_escape_constraint (build_fold_addr_expr (op));
4790 /* The asm may read global memory, so outputs may point to
4791 any global memory. */
4792 if (op)
4794 auto_vec<ce_s, 2> lhsc;
4795 struct constraint_expr rhsc, *lhsp;
4796 unsigned j;
4797 get_constraint_for (op, &lhsc);
4798 rhsc.var = nonlocal_id;
4799 rhsc.offset = 0;
4800 rhsc.type = SCALAR;
4801 FOR_EACH_VEC_ELT (lhsc, j, lhsp)
4802 process_constraint (new_constraint (*lhsp, rhsc));
4805 for (i = 0; i < gimple_asm_ninputs (asm_stmt); ++i)
4807 tree link = gimple_asm_input_op (asm_stmt, i);
4808 tree op = TREE_VALUE (link);
4810 constraint = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (link)));
4812 parse_input_constraint (&constraint, 0, 0, noutputs, 0, oconstraints,
4813 &allows_mem, &allows_reg);
4815 /* A memory constraint makes the address of the operand escape. */
4816 if (!allows_reg && allows_mem)
4817 make_escape_constraint (build_fold_addr_expr (op));
4818 /* Strictly we'd only need the constraint to ESCAPED if
4819 the asm clobbers memory, otherwise using something
4820 along the lines of per-call clobbers/uses would be enough. */
4821 else if (op)
4822 make_escape_constraint (op);
4828 /* Create a constraint adding to the clobber set of FI the memory
4829 pointed to by PTR. */
4831 static void
4832 process_ipa_clobber (varinfo_t fi, tree ptr)
4834 vec<ce_s> ptrc = vNULL;
4835 struct constraint_expr *c, lhs;
4836 unsigned i;
4837 get_constraint_for_rhs (ptr, &ptrc);
4838 lhs = get_function_part_constraint (fi, fi_clobbers);
4839 FOR_EACH_VEC_ELT (ptrc, i, c)
4840 process_constraint (new_constraint (lhs, *c));
4841 ptrc.release ();
4844 /* Walk statement T setting up clobber and use constraints according to the
4845 references found in T. This function is a main part of the
4846 IPA constraint builder. */
4848 static void
4849 find_func_clobbers (struct function *fn, gimple *origt)
4851 gimple *t = origt;
4852 auto_vec<ce_s, 16> lhsc;
4853 auto_vec<ce_s, 16> rhsc;
4854 varinfo_t fi;
4856 /* Add constraints for clobbered/used in IPA mode.
4857 We are not interested in what automatic variables are clobbered
4858 or used as we only use the information in the caller to which
4859 they do not escape. */
4860 gcc_assert (in_ipa_mode);
4862 /* If the stmt refers to memory in any way it better had a VUSE. */
4863 if (gimple_vuse (t) == NULL_TREE)
4864 return;
4866 /* We'd better have function information for the current function. */
4867 fi = lookup_vi_for_tree (fn->decl);
4868 gcc_assert (fi != NULL);
4870 /* Account for stores in assignments and calls. */
4871 if (gimple_vdef (t) != NULL_TREE
4872 && gimple_has_lhs (t))
4874 tree lhs = gimple_get_lhs (t);
4875 tree tem = lhs;
4876 while (handled_component_p (tem))
4877 tem = TREE_OPERAND (tem, 0);
4878 if ((DECL_P (tem)
4879 && !auto_var_in_fn_p (tem, fn->decl))
4880 || INDIRECT_REF_P (tem)
4881 || (TREE_CODE (tem) == MEM_REF
4882 && !(TREE_CODE (TREE_OPERAND (tem, 0)) == ADDR_EXPR
4883 && auto_var_in_fn_p
4884 (TREE_OPERAND (TREE_OPERAND (tem, 0), 0), fn->decl))))
4886 struct constraint_expr lhsc, *rhsp;
4887 unsigned i;
4888 lhsc = get_function_part_constraint (fi, fi_clobbers);
4889 get_constraint_for_address_of (lhs, &rhsc);
4890 FOR_EACH_VEC_ELT (rhsc, i, rhsp)
4891 process_constraint (new_constraint (lhsc, *rhsp));
4892 rhsc.truncate (0);
4896 /* Account for uses in assigments and returns. */
4897 if (gimple_assign_single_p (t)
4898 || (gimple_code (t) == GIMPLE_RETURN
4899 && gimple_return_retval (as_a <greturn *> (t)) != NULL_TREE))
4901 tree rhs = (gimple_assign_single_p (t)
4902 ? gimple_assign_rhs1 (t)
4903 : gimple_return_retval (as_a <greturn *> (t)));
4904 tree tem = rhs;
4905 while (handled_component_p (tem))
4906 tem = TREE_OPERAND (tem, 0);
4907 if ((DECL_P (tem)
4908 && !auto_var_in_fn_p (tem, fn->decl))
4909 || INDIRECT_REF_P (tem)
4910 || (TREE_CODE (tem) == MEM_REF
4911 && !(TREE_CODE (TREE_OPERAND (tem, 0)) == ADDR_EXPR
4912 && auto_var_in_fn_p
4913 (TREE_OPERAND (TREE_OPERAND (tem, 0), 0), fn->decl))))
4915 struct constraint_expr lhs, *rhsp;
4916 unsigned i;
4917 lhs = get_function_part_constraint (fi, fi_uses);
4918 get_constraint_for_address_of (rhs, &rhsc);
4919 FOR_EACH_VEC_ELT (rhsc, i, rhsp)
4920 process_constraint (new_constraint (lhs, *rhsp));
4921 rhsc.truncate (0);
4925 if (gcall *call_stmt = dyn_cast <gcall *> (t))
4927 varinfo_t cfi = NULL;
4928 tree decl = gimple_call_fndecl (t);
4929 struct constraint_expr lhs, rhs;
4930 unsigned i, j;
4932 /* For builtins we do not have separate function info. For those
4933 we do not generate escapes for we have to generate clobbers/uses. */
4934 if (gimple_call_builtin_p (t, BUILT_IN_NORMAL))
4935 switch (DECL_FUNCTION_CODE (decl))
4937 /* The following functions use and clobber memory pointed to
4938 by their arguments. */
4939 case BUILT_IN_STRCPY:
4940 case BUILT_IN_STRNCPY:
4941 case BUILT_IN_BCOPY:
4942 case BUILT_IN_MEMCPY:
4943 case BUILT_IN_MEMMOVE:
4944 case BUILT_IN_MEMPCPY:
4945 case BUILT_IN_STPCPY:
4946 case BUILT_IN_STPNCPY:
4947 case BUILT_IN_STRCAT:
4948 case BUILT_IN_STRNCAT:
4949 case BUILT_IN_STRCPY_CHK:
4950 case BUILT_IN_STRNCPY_CHK:
4951 case BUILT_IN_MEMCPY_CHK:
4952 case BUILT_IN_MEMMOVE_CHK:
4953 case BUILT_IN_MEMPCPY_CHK:
4954 case BUILT_IN_STPCPY_CHK:
4955 case BUILT_IN_STPNCPY_CHK:
4956 case BUILT_IN_STRCAT_CHK:
4957 case BUILT_IN_STRNCAT_CHK:
4959 tree dest = gimple_call_arg (t, (DECL_FUNCTION_CODE (decl)
4960 == BUILT_IN_BCOPY ? 1 : 0));
4961 tree src = gimple_call_arg (t, (DECL_FUNCTION_CODE (decl)
4962 == BUILT_IN_BCOPY ? 0 : 1));
4963 unsigned i;
4964 struct constraint_expr *rhsp, *lhsp;
4965 get_constraint_for_ptr_offset (dest, NULL_TREE, &lhsc);
4966 lhs = get_function_part_constraint (fi, fi_clobbers);
4967 FOR_EACH_VEC_ELT (lhsc, i, lhsp)
4968 process_constraint (new_constraint (lhs, *lhsp));
4969 get_constraint_for_ptr_offset (src, NULL_TREE, &rhsc);
4970 lhs = get_function_part_constraint (fi, fi_uses);
4971 FOR_EACH_VEC_ELT (rhsc, i, rhsp)
4972 process_constraint (new_constraint (lhs, *rhsp));
4973 return;
4975 /* The following function clobbers memory pointed to by
4976 its argument. */
4977 case BUILT_IN_MEMSET:
4978 case BUILT_IN_MEMSET_CHK:
4979 case BUILT_IN_POSIX_MEMALIGN:
4981 tree dest = gimple_call_arg (t, 0);
4982 unsigned i;
4983 ce_s *lhsp;
4984 get_constraint_for_ptr_offset (dest, NULL_TREE, &lhsc);
4985 lhs = get_function_part_constraint (fi, fi_clobbers);
4986 FOR_EACH_VEC_ELT (lhsc, i, lhsp)
4987 process_constraint (new_constraint (lhs, *lhsp));
4988 return;
4990 /* The following functions clobber their second and third
4991 arguments. */
4992 case BUILT_IN_SINCOS:
4993 case BUILT_IN_SINCOSF:
4994 case BUILT_IN_SINCOSL:
4996 process_ipa_clobber (fi, gimple_call_arg (t, 1));
4997 process_ipa_clobber (fi, gimple_call_arg (t, 2));
4998 return;
5000 /* The following functions clobber their second argument. */
5001 case BUILT_IN_FREXP:
5002 case BUILT_IN_FREXPF:
5003 case BUILT_IN_FREXPL:
5004 case BUILT_IN_LGAMMA_R:
5005 case BUILT_IN_LGAMMAF_R:
5006 case BUILT_IN_LGAMMAL_R:
5007 case BUILT_IN_GAMMA_R:
5008 case BUILT_IN_GAMMAF_R:
5009 case BUILT_IN_GAMMAL_R:
5010 case BUILT_IN_MODF:
5011 case BUILT_IN_MODFF:
5012 case BUILT_IN_MODFL:
5014 process_ipa_clobber (fi, gimple_call_arg (t, 1));
5015 return;
5017 /* The following functions clobber their third argument. */
5018 case BUILT_IN_REMQUO:
5019 case BUILT_IN_REMQUOF:
5020 case BUILT_IN_REMQUOL:
5022 process_ipa_clobber (fi, gimple_call_arg (t, 2));
5023 return;
5025 /* The following functions neither read nor clobber memory. */
5026 case BUILT_IN_ASSUME_ALIGNED:
5027 case BUILT_IN_FREE:
5028 return;
5029 /* Trampolines are of no interest to us. */
5030 case BUILT_IN_INIT_TRAMPOLINE:
5031 case BUILT_IN_ADJUST_TRAMPOLINE:
5032 return;
5033 case BUILT_IN_VA_START:
5034 case BUILT_IN_VA_END:
5035 return;
5036 /* printf-style functions may have hooks to set pointers to
5037 point to somewhere into the generated string. Leave them
5038 for a later exercise... */
5039 default:
5040 /* Fallthru to general call handling. */;
5043 /* Parameters passed by value are used. */
5044 lhs = get_function_part_constraint (fi, fi_uses);
5045 for (i = 0; i < gimple_call_num_args (t); i++)
5047 struct constraint_expr *rhsp;
5048 tree arg = gimple_call_arg (t, i);
5050 if (TREE_CODE (arg) == SSA_NAME
5051 || is_gimple_min_invariant (arg))
5052 continue;
5054 get_constraint_for_address_of (arg, &rhsc);
5055 FOR_EACH_VEC_ELT (rhsc, j, rhsp)
5056 process_constraint (new_constraint (lhs, *rhsp));
5057 rhsc.truncate (0);
5060 /* Build constraints for propagating clobbers/uses along the
5061 callgraph edges. */
5062 cfi = get_fi_for_callee (call_stmt);
5063 if (cfi->id == anything_id)
5065 if (gimple_vdef (t))
5066 make_constraint_from (first_vi_for_offset (fi, fi_clobbers),
5067 anything_id);
5068 make_constraint_from (first_vi_for_offset (fi, fi_uses),
5069 anything_id);
5070 return;
5073 /* For callees without function info (that's external functions),
5074 ESCAPED is clobbered and used. */
5075 if (gimple_call_fndecl (t)
5076 && !cfi->is_fn_info)
5078 varinfo_t vi;
5080 if (gimple_vdef (t))
5081 make_copy_constraint (first_vi_for_offset (fi, fi_clobbers),
5082 escaped_id);
5083 make_copy_constraint (first_vi_for_offset (fi, fi_uses), escaped_id);
5085 /* Also honor the call statement use/clobber info. */
5086 if ((vi = lookup_call_clobber_vi (call_stmt)) != NULL)
5087 make_copy_constraint (first_vi_for_offset (fi, fi_clobbers),
5088 vi->id);
5089 if ((vi = lookup_call_use_vi (call_stmt)) != NULL)
5090 make_copy_constraint (first_vi_for_offset (fi, fi_uses),
5091 vi->id);
5092 return;
5095 /* Otherwise the caller clobbers and uses what the callee does.
5096 ??? This should use a new complex constraint that filters
5097 local variables of the callee. */
5098 if (gimple_vdef (t))
5100 lhs = get_function_part_constraint (fi, fi_clobbers);
5101 rhs = get_function_part_constraint (cfi, fi_clobbers);
5102 process_constraint (new_constraint (lhs, rhs));
5104 lhs = get_function_part_constraint (fi, fi_uses);
5105 rhs = get_function_part_constraint (cfi, fi_uses);
5106 process_constraint (new_constraint (lhs, rhs));
5108 else if (gimple_code (t) == GIMPLE_ASM)
5110 /* ??? Ick. We can do better. */
5111 if (gimple_vdef (t))
5112 make_constraint_from (first_vi_for_offset (fi, fi_clobbers),
5113 anything_id);
5114 make_constraint_from (first_vi_for_offset (fi, fi_uses),
5115 anything_id);
5120 /* Find the first varinfo in the same variable as START that overlaps with
5121 OFFSET. Return NULL if we can't find one. */
5123 static varinfo_t
5124 first_vi_for_offset (varinfo_t start, unsigned HOST_WIDE_INT offset)
5126 /* If the offset is outside of the variable, bail out. */
5127 if (offset >= start->fullsize)
5128 return NULL;
5130 /* If we cannot reach offset from start, lookup the first field
5131 and start from there. */
5132 if (start->offset > offset)
5133 start = get_varinfo (start->head);
5135 while (start)
5137 /* We may not find a variable in the field list with the actual
5138 offset when we have glommed a structure to a variable.
5139 In that case, however, offset should still be within the size
5140 of the variable. */
5141 if (offset >= start->offset
5142 && (offset - start->offset) < start->size)
5143 return start;
5145 start = vi_next (start);
5148 return NULL;
5151 /* Find the first varinfo in the same variable as START that overlaps with
5152 OFFSET. If there is no such varinfo the varinfo directly preceding
5153 OFFSET is returned. */
5155 static varinfo_t
5156 first_or_preceding_vi_for_offset (varinfo_t start,
5157 unsigned HOST_WIDE_INT offset)
5159 /* If we cannot reach offset from start, lookup the first field
5160 and start from there. */
5161 if (start->offset > offset)
5162 start = get_varinfo (start->head);
5164 /* We may not find a variable in the field list with the actual
5165 offset when we have glommed a structure to a variable.
5166 In that case, however, offset should still be within the size
5167 of the variable.
5168 If we got beyond the offset we look for return the field
5169 directly preceding offset which may be the last field. */
5170 while (start->next
5171 && offset >= start->offset
5172 && !((offset - start->offset) < start->size))
5173 start = vi_next (start);
5175 return start;
5179 /* This structure is used during pushing fields onto the fieldstack
5180 to track the offset of the field, since bitpos_of_field gives it
5181 relative to its immediate containing type, and we want it relative
5182 to the ultimate containing object. */
5184 struct fieldoff
5186 /* Offset from the base of the base containing object to this field. */
5187 HOST_WIDE_INT offset;
5189 /* Size, in bits, of the field. */
5190 unsigned HOST_WIDE_INT size;
5192 unsigned has_unknown_size : 1;
5194 unsigned must_have_pointers : 1;
5196 unsigned may_have_pointers : 1;
5198 unsigned only_restrict_pointers : 1;
5200 typedef struct fieldoff fieldoff_s;
5203 /* qsort comparison function for two fieldoff's PA and PB */
5205 static int
5206 fieldoff_compare (const void *pa, const void *pb)
5208 const fieldoff_s *foa = (const fieldoff_s *)pa;
5209 const fieldoff_s *fob = (const fieldoff_s *)pb;
5210 unsigned HOST_WIDE_INT foasize, fobsize;
5212 if (foa->offset < fob->offset)
5213 return -1;
5214 else if (foa->offset > fob->offset)
5215 return 1;
5217 foasize = foa->size;
5218 fobsize = fob->size;
5219 if (foasize < fobsize)
5220 return -1;
5221 else if (foasize > fobsize)
5222 return 1;
5223 return 0;
5226 /* Sort a fieldstack according to the field offset and sizes. */
5227 static void
5228 sort_fieldstack (vec<fieldoff_s> fieldstack)
5230 fieldstack.qsort (fieldoff_compare);
5233 /* Return true if T is a type that can have subvars. */
5235 static inline bool
5236 type_can_have_subvars (const_tree t)
5238 /* Aggregates without overlapping fields can have subvars. */
5239 return TREE_CODE (t) == RECORD_TYPE;
5242 /* Return true if V is a tree that we can have subvars for.
5243 Normally, this is any aggregate type. Also complex
5244 types which are not gimple registers can have subvars. */
5246 static inline bool
5247 var_can_have_subvars (const_tree v)
5249 /* Volatile variables should never have subvars. */
5250 if (TREE_THIS_VOLATILE (v))
5251 return false;
5253 /* Non decls or memory tags can never have subvars. */
5254 if (!DECL_P (v))
5255 return false;
5257 return type_can_have_subvars (TREE_TYPE (v));
5260 /* Return true if T is a type that does contain pointers. */
5262 static bool
5263 type_must_have_pointers (tree type)
5265 if (POINTER_TYPE_P (type))
5266 return true;
5268 if (TREE_CODE (type) == ARRAY_TYPE)
5269 return type_must_have_pointers (TREE_TYPE (type));
5271 /* A function or method can have pointers as arguments, so track
5272 those separately. */
5273 if (TREE_CODE (type) == FUNCTION_TYPE
5274 || TREE_CODE (type) == METHOD_TYPE)
5275 return true;
5277 return false;
5280 static bool
5281 field_must_have_pointers (tree t)
5283 return type_must_have_pointers (TREE_TYPE (t));
5286 /* Given a TYPE, and a vector of field offsets FIELDSTACK, push all
5287 the fields of TYPE onto fieldstack, recording their offsets along
5288 the way.
5290 OFFSET is used to keep track of the offset in this entire
5291 structure, rather than just the immediately containing structure.
5292 Returns false if the caller is supposed to handle the field we
5293 recursed for. */
5295 static bool
5296 push_fields_onto_fieldstack (tree type, vec<fieldoff_s> *fieldstack,
5297 HOST_WIDE_INT offset)
5299 tree field;
5300 bool empty_p = true;
5302 if (TREE_CODE (type) != RECORD_TYPE)
5303 return false;
5305 /* If the vector of fields is growing too big, bail out early.
5306 Callers check for vec::length <= MAX_FIELDS_FOR_FIELD_SENSITIVE, make
5307 sure this fails. */
5308 if (fieldstack->length () > MAX_FIELDS_FOR_FIELD_SENSITIVE)
5309 return false;
5311 for (field = TYPE_FIELDS (type); field; field = DECL_CHAIN (field))
5312 if (TREE_CODE (field) == FIELD_DECL)
5314 bool push = false;
5315 HOST_WIDE_INT foff = bitpos_of_field (field);
5317 if (!var_can_have_subvars (field)
5318 || TREE_CODE (TREE_TYPE (field)) == QUAL_UNION_TYPE
5319 || TREE_CODE (TREE_TYPE (field)) == UNION_TYPE)
5320 push = true;
5321 else if (!push_fields_onto_fieldstack
5322 (TREE_TYPE (field), fieldstack, offset + foff)
5323 && (DECL_SIZE (field)
5324 && !integer_zerop (DECL_SIZE (field))))
5325 /* Empty structures may have actual size, like in C++. So
5326 see if we didn't push any subfields and the size is
5327 nonzero, push the field onto the stack. */
5328 push = true;
5330 if (push)
5332 fieldoff_s *pair = NULL;
5333 bool has_unknown_size = false;
5334 bool must_have_pointers_p;
5336 if (!fieldstack->is_empty ())
5337 pair = &fieldstack->last ();
5339 /* If there isn't anything at offset zero, create sth. */
5340 if (!pair
5341 && offset + foff != 0)
5343 fieldoff_s e = {0, offset + foff, false, false, false, false};
5344 pair = fieldstack->safe_push (e);
5347 if (!DECL_SIZE (field)
5348 || !tree_fits_uhwi_p (DECL_SIZE (field)))
5349 has_unknown_size = true;
5351 /* If adjacent fields do not contain pointers merge them. */
5352 must_have_pointers_p = field_must_have_pointers (field);
5353 if (pair
5354 && !has_unknown_size
5355 && !must_have_pointers_p
5356 && !pair->must_have_pointers
5357 && !pair->has_unknown_size
5358 && pair->offset + (HOST_WIDE_INT)pair->size == offset + foff)
5360 pair->size += tree_to_uhwi (DECL_SIZE (field));
5362 else
5364 fieldoff_s e;
5365 e.offset = offset + foff;
5366 e.has_unknown_size = has_unknown_size;
5367 if (!has_unknown_size)
5368 e.size = tree_to_uhwi (DECL_SIZE (field));
5369 else
5370 e.size = -1;
5371 e.must_have_pointers = must_have_pointers_p;
5372 e.may_have_pointers = true;
5373 e.only_restrict_pointers
5374 = (!has_unknown_size
5375 && POINTER_TYPE_P (TREE_TYPE (field))
5376 && TYPE_RESTRICT (TREE_TYPE (field)));
5377 fieldstack->safe_push (e);
5381 empty_p = false;
5384 return !empty_p;
5387 /* Count the number of arguments DECL has, and set IS_VARARGS to true
5388 if it is a varargs function. */
5390 static unsigned int
5391 count_num_arguments (tree decl, bool *is_varargs)
5393 unsigned int num = 0;
5394 tree t;
5396 /* Capture named arguments for K&R functions. They do not
5397 have a prototype and thus no TYPE_ARG_TYPES. */
5398 for (t = DECL_ARGUMENTS (decl); t; t = DECL_CHAIN (t))
5399 ++num;
5401 /* Check if the function has variadic arguments. */
5402 for (t = TYPE_ARG_TYPES (TREE_TYPE (decl)); t; t = TREE_CHAIN (t))
5403 if (TREE_VALUE (t) == void_type_node)
5404 break;
5405 if (!t)
5406 *is_varargs = true;
5408 return num;
5411 /* Creation function node for DECL, using NAME, and return the index
5412 of the variable we've created for the function. */
5414 static varinfo_t
5415 create_function_info_for (tree decl, const char *name)
5417 struct function *fn = DECL_STRUCT_FUNCTION (decl);
5418 varinfo_t vi, prev_vi;
5419 tree arg;
5420 unsigned int i;
5421 bool is_varargs = false;
5422 unsigned int num_args = count_num_arguments (decl, &is_varargs);
5424 /* Create the variable info. */
5426 vi = new_var_info (decl, name);
5427 vi->offset = 0;
5428 vi->size = 1;
5429 vi->fullsize = fi_parm_base + num_args;
5430 vi->is_fn_info = 1;
5431 vi->may_have_pointers = false;
5432 if (is_varargs)
5433 vi->fullsize = ~0;
5434 insert_vi_for_tree (vi->decl, vi);
5436 prev_vi = vi;
5438 /* Create a variable for things the function clobbers and one for
5439 things the function uses. */
5441 varinfo_t clobbervi, usevi;
5442 const char *newname;
5443 char *tempname;
5445 tempname = xasprintf ("%s.clobber", name);
5446 newname = ggc_strdup (tempname);
5447 free (tempname);
5449 clobbervi = new_var_info (NULL, newname);
5450 clobbervi->offset = fi_clobbers;
5451 clobbervi->size = 1;
5452 clobbervi->fullsize = vi->fullsize;
5453 clobbervi->is_full_var = true;
5454 clobbervi->is_global_var = false;
5455 gcc_assert (prev_vi->offset < clobbervi->offset);
5456 prev_vi->next = clobbervi->id;
5457 prev_vi = clobbervi;
5459 tempname = xasprintf ("%s.use", name);
5460 newname = ggc_strdup (tempname);
5461 free (tempname);
5463 usevi = new_var_info (NULL, newname);
5464 usevi->offset = fi_uses;
5465 usevi->size = 1;
5466 usevi->fullsize = vi->fullsize;
5467 usevi->is_full_var = true;
5468 usevi->is_global_var = false;
5469 gcc_assert (prev_vi->offset < usevi->offset);
5470 prev_vi->next = usevi->id;
5471 prev_vi = usevi;
5474 /* And one for the static chain. */
5475 if (fn->static_chain_decl != NULL_TREE)
5477 varinfo_t chainvi;
5478 const char *newname;
5479 char *tempname;
5481 tempname = xasprintf ("%s.chain", name);
5482 newname = ggc_strdup (tempname);
5483 free (tempname);
5485 chainvi = new_var_info (fn->static_chain_decl, newname);
5486 chainvi->offset = fi_static_chain;
5487 chainvi->size = 1;
5488 chainvi->fullsize = vi->fullsize;
5489 chainvi->is_full_var = true;
5490 chainvi->is_global_var = false;
5491 gcc_assert (prev_vi->offset < chainvi->offset);
5492 prev_vi->next = chainvi->id;
5493 prev_vi = chainvi;
5494 insert_vi_for_tree (fn->static_chain_decl, chainvi);
5497 /* Create a variable for the return var. */
5498 if (DECL_RESULT (decl) != NULL
5499 || !VOID_TYPE_P (TREE_TYPE (TREE_TYPE (decl))))
5501 varinfo_t resultvi;
5502 const char *newname;
5503 char *tempname;
5504 tree resultdecl = decl;
5506 if (DECL_RESULT (decl))
5507 resultdecl = DECL_RESULT (decl);
5509 tempname = xasprintf ("%s.result", name);
5510 newname = ggc_strdup (tempname);
5511 free (tempname);
5513 resultvi = new_var_info (resultdecl, newname);
5514 resultvi->offset = fi_result;
5515 resultvi->size = 1;
5516 resultvi->fullsize = vi->fullsize;
5517 resultvi->is_full_var = true;
5518 if (DECL_RESULT (decl))
5519 resultvi->may_have_pointers = true;
5520 gcc_assert (prev_vi->offset < resultvi->offset);
5521 prev_vi->next = resultvi->id;
5522 prev_vi = resultvi;
5523 if (DECL_RESULT (decl))
5524 insert_vi_for_tree (DECL_RESULT (decl), resultvi);
5527 /* Set up variables for each argument. */
5528 arg = DECL_ARGUMENTS (decl);
5529 for (i = 0; i < num_args; i++)
5531 varinfo_t argvi;
5532 const char *newname;
5533 char *tempname;
5534 tree argdecl = decl;
5536 if (arg)
5537 argdecl = arg;
5539 tempname = xasprintf ("%s.arg%d", name, i);
5540 newname = ggc_strdup (tempname);
5541 free (tempname);
5543 argvi = new_var_info (argdecl, newname);
5544 argvi->offset = fi_parm_base + i;
5545 argvi->size = 1;
5546 argvi->is_full_var = true;
5547 argvi->fullsize = vi->fullsize;
5548 if (arg)
5549 argvi->may_have_pointers = true;
5550 gcc_assert (prev_vi->offset < argvi->offset);
5551 prev_vi->next = argvi->id;
5552 prev_vi = argvi;
5553 if (arg)
5555 insert_vi_for_tree (arg, argvi);
5556 arg = DECL_CHAIN (arg);
5560 /* Add one representative for all further args. */
5561 if (is_varargs)
5563 varinfo_t argvi;
5564 const char *newname;
5565 char *tempname;
5566 tree decl;
5568 tempname = xasprintf ("%s.varargs", name);
5569 newname = ggc_strdup (tempname);
5570 free (tempname);
5572 /* We need sth that can be pointed to for va_start. */
5573 decl = build_fake_var_decl (ptr_type_node);
5575 argvi = new_var_info (decl, newname);
5576 argvi->offset = fi_parm_base + num_args;
5577 argvi->size = ~0;
5578 argvi->is_full_var = true;
5579 argvi->is_heap_var = true;
5580 argvi->fullsize = vi->fullsize;
5581 gcc_assert (prev_vi->offset < argvi->offset);
5582 prev_vi->next = argvi->id;
5583 prev_vi = argvi;
5586 return vi;
5590 /* Return true if FIELDSTACK contains fields that overlap.
5591 FIELDSTACK is assumed to be sorted by offset. */
5593 static bool
5594 check_for_overlaps (vec<fieldoff_s> fieldstack)
5596 fieldoff_s *fo = NULL;
5597 unsigned int i;
5598 HOST_WIDE_INT lastoffset = -1;
5600 FOR_EACH_VEC_ELT (fieldstack, i, fo)
5602 if (fo->offset == lastoffset)
5603 return true;
5604 lastoffset = fo->offset;
5606 return false;
5609 /* Create a varinfo structure for NAME and DECL, and add it to VARMAP.
5610 This will also create any varinfo structures necessary for fields
5611 of DECL. */
5613 static varinfo_t
5614 create_variable_info_for_1 (tree decl, const char *name)
5616 varinfo_t vi, newvi;
5617 tree decl_type = TREE_TYPE (decl);
5618 tree declsize = DECL_P (decl) ? DECL_SIZE (decl) : TYPE_SIZE (decl_type);
5619 auto_vec<fieldoff_s> fieldstack;
5620 fieldoff_s *fo;
5621 unsigned int i;
5623 if (!declsize
5624 || !tree_fits_uhwi_p (declsize))
5626 vi = new_var_info (decl, name);
5627 vi->offset = 0;
5628 vi->size = ~0;
5629 vi->fullsize = ~0;
5630 vi->is_unknown_size_var = true;
5631 vi->is_full_var = true;
5632 vi->may_have_pointers = true;
5633 return vi;
5636 /* Collect field information. */
5637 if (use_field_sensitive
5638 && var_can_have_subvars (decl)
5639 /* ??? Force us to not use subfields for globals in IPA mode.
5640 Else we'd have to parse arbitrary initializers. */
5641 && !(in_ipa_mode
5642 && is_global_var (decl)))
5644 fieldoff_s *fo = NULL;
5645 bool notokay = false;
5646 unsigned int i;
5648 push_fields_onto_fieldstack (decl_type, &fieldstack, 0);
5650 for (i = 0; !notokay && fieldstack.iterate (i, &fo); i++)
5651 if (fo->has_unknown_size
5652 || fo->offset < 0)
5654 notokay = true;
5655 break;
5658 /* We can't sort them if we have a field with a variable sized type,
5659 which will make notokay = true. In that case, we are going to return
5660 without creating varinfos for the fields anyway, so sorting them is a
5661 waste to boot. */
5662 if (!notokay)
5664 sort_fieldstack (fieldstack);
5665 /* Due to some C++ FE issues, like PR 22488, we might end up
5666 what appear to be overlapping fields even though they,
5667 in reality, do not overlap. Until the C++ FE is fixed,
5668 we will simply disable field-sensitivity for these cases. */
5669 notokay = check_for_overlaps (fieldstack);
5672 if (notokay)
5673 fieldstack.release ();
5676 /* If we didn't end up collecting sub-variables create a full
5677 variable for the decl. */
5678 if (fieldstack.length () == 0
5679 || fieldstack.length () > MAX_FIELDS_FOR_FIELD_SENSITIVE)
5681 vi = new_var_info (decl, name);
5682 vi->offset = 0;
5683 vi->may_have_pointers = true;
5684 vi->fullsize = tree_to_uhwi (declsize);
5685 vi->size = vi->fullsize;
5686 vi->is_full_var = true;
5687 if (POINTER_TYPE_P (TREE_TYPE (decl))
5688 && TYPE_RESTRICT (TREE_TYPE (decl)))
5689 vi->only_restrict_pointers = 1;
5690 fieldstack.release ();
5691 return vi;
5694 vi = new_var_info (decl, name);
5695 vi->fullsize = tree_to_uhwi (declsize);
5696 for (i = 0, newvi = vi;
5697 fieldstack.iterate (i, &fo);
5698 ++i, newvi = vi_next (newvi))
5700 const char *newname = NULL;
5701 char *tempname;
5703 if (dump_file)
5705 if (fieldstack.length () != 1)
5707 tempname
5708 = xasprintf ("%s." HOST_WIDE_INT_PRINT_DEC
5709 "+" HOST_WIDE_INT_PRINT_DEC, name,
5710 fo->offset, fo->size);
5711 newname = ggc_strdup (tempname);
5712 free (tempname);
5715 else
5716 newname = "NULL";
5718 if (newname)
5719 newvi->name = newname;
5720 newvi->offset = fo->offset;
5721 newvi->size = fo->size;
5722 newvi->fullsize = vi->fullsize;
5723 newvi->may_have_pointers = fo->may_have_pointers;
5724 newvi->only_restrict_pointers = fo->only_restrict_pointers;
5725 if (i + 1 < fieldstack.length ())
5727 varinfo_t tem = new_var_info (decl, name);
5728 newvi->next = tem->id;
5729 tem->head = vi->id;
5733 return vi;
5736 static unsigned int
5737 create_variable_info_for (tree decl, const char *name)
5739 varinfo_t vi = create_variable_info_for_1 (decl, name);
5740 unsigned int id = vi->id;
5742 insert_vi_for_tree (decl, vi);
5744 if (TREE_CODE (decl) != VAR_DECL)
5745 return id;
5747 /* Create initial constraints for globals. */
5748 for (; vi; vi = vi_next (vi))
5750 if (!vi->may_have_pointers
5751 || !vi->is_global_var)
5752 continue;
5754 /* Mark global restrict qualified pointers. */
5755 if ((POINTER_TYPE_P (TREE_TYPE (decl))
5756 && TYPE_RESTRICT (TREE_TYPE (decl)))
5757 || vi->only_restrict_pointers)
5759 varinfo_t rvi
5760 = make_constraint_from_global_restrict (vi, "GLOBAL_RESTRICT");
5761 /* ??? For now exclude reads from globals as restrict sources
5762 if those are not (indirectly) from incoming parameters. */
5763 rvi->is_restrict_var = false;
5764 continue;
5767 /* In non-IPA mode the initializer from nonlocal is all we need. */
5768 if (!in_ipa_mode
5769 || DECL_HARD_REGISTER (decl))
5770 make_copy_constraint (vi, nonlocal_id);
5772 /* In IPA mode parse the initializer and generate proper constraints
5773 for it. */
5774 else
5776 varpool_node *vnode = varpool_node::get (decl);
5778 /* For escaped variables initialize them from nonlocal. */
5779 if (!vnode->all_refs_explicit_p ())
5780 make_copy_constraint (vi, nonlocal_id);
5782 /* If this is a global variable with an initializer and we are in
5783 IPA mode generate constraints for it. */
5784 ipa_ref *ref;
5785 for (unsigned idx = 0; vnode->iterate_reference (idx, ref); ++idx)
5787 auto_vec<ce_s> rhsc;
5788 struct constraint_expr lhs, *rhsp;
5789 unsigned i;
5790 get_constraint_for_address_of (ref->referred->decl, &rhsc);
5791 lhs.var = vi->id;
5792 lhs.offset = 0;
5793 lhs.type = SCALAR;
5794 FOR_EACH_VEC_ELT (rhsc, i, rhsp)
5795 process_constraint (new_constraint (lhs, *rhsp));
5796 /* If this is a variable that escapes from the unit
5797 the initializer escapes as well. */
5798 if (!vnode->all_refs_explicit_p ())
5800 lhs.var = escaped_id;
5801 lhs.offset = 0;
5802 lhs.type = SCALAR;
5803 FOR_EACH_VEC_ELT (rhsc, i, rhsp)
5804 process_constraint (new_constraint (lhs, *rhsp));
5810 return id;
5813 /* Print out the points-to solution for VAR to FILE. */
5815 static void
5816 dump_solution_for_var (FILE *file, unsigned int var)
5818 varinfo_t vi = get_varinfo (var);
5819 unsigned int i;
5820 bitmap_iterator bi;
5822 /* Dump the solution for unified vars anyway, this avoids difficulties
5823 in scanning dumps in the testsuite. */
5824 fprintf (file, "%s = { ", vi->name);
5825 vi = get_varinfo (find (var));
5826 EXECUTE_IF_SET_IN_BITMAP (vi->solution, 0, i, bi)
5827 fprintf (file, "%s ", get_varinfo (i)->name);
5828 fprintf (file, "}");
5830 /* But note when the variable was unified. */
5831 if (vi->id != var)
5832 fprintf (file, " same as %s", vi->name);
5834 fprintf (file, "\n");
5837 /* Print the points-to solution for VAR to stderr. */
5839 DEBUG_FUNCTION void
5840 debug_solution_for_var (unsigned int var)
5842 dump_solution_for_var (stderr, var);
5845 /* Create varinfo structures for all of the variables in the
5846 function for intraprocedural mode. */
5848 static void
5849 intra_create_variable_infos (struct function *fn)
5851 tree t;
5853 /* For each incoming pointer argument arg, create the constraint ARG
5854 = NONLOCAL or a dummy variable if it is a restrict qualified
5855 passed-by-reference argument. */
5856 for (t = DECL_ARGUMENTS (fn->decl); t; t = DECL_CHAIN (t))
5858 varinfo_t p = get_vi_for_tree (t);
5860 /* For restrict qualified pointers build a representative for
5861 the pointed-to object. Note that this ends up handling
5862 out-of-bound references conservatively by aggregating them
5863 in the first/last subfield of the object. */
5864 if (POINTER_TYPE_P (TREE_TYPE (t))
5865 && TYPE_RESTRICT (TREE_TYPE (t))
5866 && !type_contains_placeholder_p (TREE_TYPE (TREE_TYPE (t))))
5868 struct constraint_expr lhsc, rhsc;
5869 varinfo_t vi;
5870 tree heapvar = build_fake_var_decl (TREE_TYPE (TREE_TYPE (t)));
5871 DECL_EXTERNAL (heapvar) = 1;
5872 vi = create_variable_info_for_1 (heapvar, "PARM_NOALIAS");
5873 vi->is_restrict_var = 1;
5874 insert_vi_for_tree (heapvar, vi);
5875 lhsc.var = p->id;
5876 lhsc.type = SCALAR;
5877 lhsc.offset = 0;
5878 rhsc.var = vi->id;
5879 rhsc.type = ADDRESSOF;
5880 rhsc.offset = 0;
5881 process_constraint (new_constraint (lhsc, rhsc));
5882 for (; vi; vi = vi_next (vi))
5883 if (vi->may_have_pointers)
5885 if (vi->only_restrict_pointers)
5886 make_constraint_from_global_restrict (vi, "GLOBAL_RESTRICT");
5887 else
5888 make_copy_constraint (vi, nonlocal_id);
5890 continue;
5893 if (POINTER_TYPE_P (TREE_TYPE (t))
5894 && TYPE_RESTRICT (TREE_TYPE (t)))
5895 make_constraint_from_global_restrict (p, "PARM_RESTRICT");
5896 else
5898 for (; p; p = vi_next (p))
5900 if (p->only_restrict_pointers)
5901 make_constraint_from_global_restrict (p, "PARM_RESTRICT");
5902 else if (p->may_have_pointers)
5903 make_constraint_from (p, nonlocal_id);
5908 /* Add a constraint for a result decl that is passed by reference. */
5909 if (DECL_RESULT (fn->decl)
5910 && DECL_BY_REFERENCE (DECL_RESULT (fn->decl)))
5912 varinfo_t p, result_vi = get_vi_for_tree (DECL_RESULT (fn->decl));
5914 for (p = result_vi; p; p = vi_next (p))
5915 make_constraint_from (p, nonlocal_id);
5918 /* Add a constraint for the incoming static chain parameter. */
5919 if (fn->static_chain_decl != NULL_TREE)
5921 varinfo_t p, chain_vi = get_vi_for_tree (fn->static_chain_decl);
5923 for (p = chain_vi; p; p = vi_next (p))
5924 make_constraint_from (p, nonlocal_id);
5928 /* Structure used to put solution bitmaps in a hashtable so they can
5929 be shared among variables with the same points-to set. */
5931 typedef struct shared_bitmap_info
5933 bitmap pt_vars;
5934 hashval_t hashcode;
5935 } *shared_bitmap_info_t;
5936 typedef const struct shared_bitmap_info *const_shared_bitmap_info_t;
5938 /* Shared_bitmap hashtable helpers. */
5940 struct shared_bitmap_hasher : free_ptr_hash <shared_bitmap_info>
5942 static inline hashval_t hash (const shared_bitmap_info *);
5943 static inline bool equal (const shared_bitmap_info *,
5944 const shared_bitmap_info *);
5947 /* Hash function for a shared_bitmap_info_t */
5949 inline hashval_t
5950 shared_bitmap_hasher::hash (const shared_bitmap_info *bi)
5952 return bi->hashcode;
5955 /* Equality function for two shared_bitmap_info_t's. */
5957 inline bool
5958 shared_bitmap_hasher::equal (const shared_bitmap_info *sbi1,
5959 const shared_bitmap_info *sbi2)
5961 return bitmap_equal_p (sbi1->pt_vars, sbi2->pt_vars);
5964 /* Shared_bitmap hashtable. */
5966 static hash_table<shared_bitmap_hasher> *shared_bitmap_table;
5968 /* Lookup a bitmap in the shared bitmap hashtable, and return an already
5969 existing instance if there is one, NULL otherwise. */
5971 static bitmap
5972 shared_bitmap_lookup (bitmap pt_vars)
5974 shared_bitmap_info **slot;
5975 struct shared_bitmap_info sbi;
5977 sbi.pt_vars = pt_vars;
5978 sbi.hashcode = bitmap_hash (pt_vars);
5980 slot = shared_bitmap_table->find_slot (&sbi, NO_INSERT);
5981 if (!slot)
5982 return NULL;
5983 else
5984 return (*slot)->pt_vars;
5988 /* Add a bitmap to the shared bitmap hashtable. */
5990 static void
5991 shared_bitmap_add (bitmap pt_vars)
5993 shared_bitmap_info **slot;
5994 shared_bitmap_info_t sbi = XNEW (struct shared_bitmap_info);
5996 sbi->pt_vars = pt_vars;
5997 sbi->hashcode = bitmap_hash (pt_vars);
5999 slot = shared_bitmap_table->find_slot (sbi, INSERT);
6000 gcc_assert (!*slot);
6001 *slot = sbi;
6005 /* Set bits in INTO corresponding to the variable uids in solution set FROM. */
6007 static void
6008 set_uids_in_ptset (bitmap into, bitmap from, struct pt_solution *pt)
6010 unsigned int i;
6011 bitmap_iterator bi;
6012 varinfo_t escaped_vi = get_varinfo (find (escaped_id));
6013 bool everything_escaped
6014 = escaped_vi->solution && bitmap_bit_p (escaped_vi->solution, anything_id);
6016 EXECUTE_IF_SET_IN_BITMAP (from, 0, i, bi)
6018 varinfo_t vi = get_varinfo (i);
6020 /* The only artificial variables that are allowed in a may-alias
6021 set are heap variables. */
6022 if (vi->is_artificial_var && !vi->is_heap_var)
6023 continue;
6025 if (everything_escaped
6026 || (escaped_vi->solution
6027 && bitmap_bit_p (escaped_vi->solution, i)))
6029 pt->vars_contains_escaped = true;
6030 pt->vars_contains_escaped_heap = vi->is_heap_var;
6033 if (TREE_CODE (vi->decl) == VAR_DECL
6034 || TREE_CODE (vi->decl) == PARM_DECL
6035 || TREE_CODE (vi->decl) == RESULT_DECL)
6037 /* If we are in IPA mode we will not recompute points-to
6038 sets after inlining so make sure they stay valid. */
6039 if (in_ipa_mode
6040 && !DECL_PT_UID_SET_P (vi->decl))
6041 SET_DECL_PT_UID (vi->decl, DECL_UID (vi->decl));
6043 /* Add the decl to the points-to set. Note that the points-to
6044 set contains global variables. */
6045 bitmap_set_bit (into, DECL_PT_UID (vi->decl));
6046 if (vi->is_global_var)
6047 pt->vars_contains_nonlocal = true;
6053 /* Compute the points-to solution *PT for the variable VI. */
6055 static struct pt_solution
6056 find_what_var_points_to (varinfo_t orig_vi)
6058 unsigned int i;
6059 bitmap_iterator bi;
6060 bitmap finished_solution;
6061 bitmap result;
6062 varinfo_t vi;
6063 struct pt_solution *pt;
6065 /* This variable may have been collapsed, let's get the real
6066 variable. */
6067 vi = get_varinfo (find (orig_vi->id));
6069 /* See if we have already computed the solution and return it. */
6070 pt_solution **slot = &final_solutions->get_or_insert (vi);
6071 if (*slot != NULL)
6072 return **slot;
6074 *slot = pt = XOBNEW (&final_solutions_obstack, struct pt_solution);
6075 memset (pt, 0, sizeof (struct pt_solution));
6077 /* Translate artificial variables into SSA_NAME_PTR_INFO
6078 attributes. */
6079 EXECUTE_IF_SET_IN_BITMAP (vi->solution, 0, i, bi)
6081 varinfo_t vi = get_varinfo (i);
6083 if (vi->is_artificial_var)
6085 if (vi->id == nothing_id)
6086 pt->null = 1;
6087 else if (vi->id == escaped_id)
6089 if (in_ipa_mode)
6090 pt->ipa_escaped = 1;
6091 else
6092 pt->escaped = 1;
6093 /* Expand some special vars of ESCAPED in-place here. */
6094 varinfo_t evi = get_varinfo (find (escaped_id));
6095 if (bitmap_bit_p (evi->solution, nonlocal_id))
6096 pt->nonlocal = 1;
6098 else if (vi->id == nonlocal_id)
6099 pt->nonlocal = 1;
6100 else if (vi->is_heap_var)
6101 /* We represent heapvars in the points-to set properly. */
6103 else if (vi->id == string_id)
6104 /* Nobody cares - STRING_CSTs are read-only entities. */
6106 else if (vi->id == anything_id
6107 || vi->id == integer_id)
6108 pt->anything = 1;
6112 /* Instead of doing extra work, simply do not create
6113 elaborate points-to information for pt_anything pointers. */
6114 if (pt->anything)
6115 return *pt;
6117 /* Share the final set of variables when possible. */
6118 finished_solution = BITMAP_GGC_ALLOC ();
6119 stats.points_to_sets_created++;
6121 set_uids_in_ptset (finished_solution, vi->solution, pt);
6122 result = shared_bitmap_lookup (finished_solution);
6123 if (!result)
6125 shared_bitmap_add (finished_solution);
6126 pt->vars = finished_solution;
6128 else
6130 pt->vars = result;
6131 bitmap_clear (finished_solution);
6134 return *pt;
6137 /* Given a pointer variable P, fill in its points-to set. */
6139 static void
6140 find_what_p_points_to (tree p)
6142 struct ptr_info_def *pi;
6143 tree lookup_p = p;
6144 varinfo_t vi;
6146 /* For parameters, get at the points-to set for the actual parm
6147 decl. */
6148 if (TREE_CODE (p) == SSA_NAME
6149 && SSA_NAME_IS_DEFAULT_DEF (p)
6150 && (TREE_CODE (SSA_NAME_VAR (p)) == PARM_DECL
6151 || TREE_CODE (SSA_NAME_VAR (p)) == RESULT_DECL))
6152 lookup_p = SSA_NAME_VAR (p);
6154 vi = lookup_vi_for_tree (lookup_p);
6155 if (!vi)
6156 return;
6158 pi = get_ptr_info (p);
6159 pi->pt = find_what_var_points_to (vi);
6163 /* Query statistics for points-to solutions. */
6165 static struct {
6166 unsigned HOST_WIDE_INT pt_solution_includes_may_alias;
6167 unsigned HOST_WIDE_INT pt_solution_includes_no_alias;
6168 unsigned HOST_WIDE_INT pt_solutions_intersect_may_alias;
6169 unsigned HOST_WIDE_INT pt_solutions_intersect_no_alias;
6170 } pta_stats;
6172 void
6173 dump_pta_stats (FILE *s)
6175 fprintf (s, "\nPTA query stats:\n");
6176 fprintf (s, " pt_solution_includes: "
6177 HOST_WIDE_INT_PRINT_DEC" disambiguations, "
6178 HOST_WIDE_INT_PRINT_DEC" queries\n",
6179 pta_stats.pt_solution_includes_no_alias,
6180 pta_stats.pt_solution_includes_no_alias
6181 + pta_stats.pt_solution_includes_may_alias);
6182 fprintf (s, " pt_solutions_intersect: "
6183 HOST_WIDE_INT_PRINT_DEC" disambiguations, "
6184 HOST_WIDE_INT_PRINT_DEC" queries\n",
6185 pta_stats.pt_solutions_intersect_no_alias,
6186 pta_stats.pt_solutions_intersect_no_alias
6187 + pta_stats.pt_solutions_intersect_may_alias);
6191 /* Reset the points-to solution *PT to a conservative default
6192 (point to anything). */
6194 void
6195 pt_solution_reset (struct pt_solution *pt)
6197 memset (pt, 0, sizeof (struct pt_solution));
6198 pt->anything = true;
6201 /* Set the points-to solution *PT to point only to the variables
6202 in VARS. VARS_CONTAINS_GLOBAL specifies whether that contains
6203 global variables and VARS_CONTAINS_RESTRICT specifies whether
6204 it contains restrict tag variables. */
6206 void
6207 pt_solution_set (struct pt_solution *pt, bitmap vars,
6208 bool vars_contains_nonlocal)
6210 memset (pt, 0, sizeof (struct pt_solution));
6211 pt->vars = vars;
6212 pt->vars_contains_nonlocal = vars_contains_nonlocal;
6213 pt->vars_contains_escaped
6214 = (cfun->gimple_df->escaped.anything
6215 || bitmap_intersect_p (cfun->gimple_df->escaped.vars, vars));
6218 /* Set the points-to solution *PT to point only to the variable VAR. */
6220 void
6221 pt_solution_set_var (struct pt_solution *pt, tree var)
6223 memset (pt, 0, sizeof (struct pt_solution));
6224 pt->vars = BITMAP_GGC_ALLOC ();
6225 bitmap_set_bit (pt->vars, DECL_PT_UID (var));
6226 pt->vars_contains_nonlocal = is_global_var (var);
6227 pt->vars_contains_escaped
6228 = (cfun->gimple_df->escaped.anything
6229 || bitmap_bit_p (cfun->gimple_df->escaped.vars, DECL_PT_UID (var)));
6232 /* Computes the union of the points-to solutions *DEST and *SRC and
6233 stores the result in *DEST. This changes the points-to bitmap
6234 of *DEST and thus may not be used if that might be shared.
6235 The points-to bitmap of *SRC and *DEST will not be shared after
6236 this function if they were not before. */
6238 static void
6239 pt_solution_ior_into (struct pt_solution *dest, struct pt_solution *src)
6241 dest->anything |= src->anything;
6242 if (dest->anything)
6244 pt_solution_reset (dest);
6245 return;
6248 dest->nonlocal |= src->nonlocal;
6249 dest->escaped |= src->escaped;
6250 dest->ipa_escaped |= src->ipa_escaped;
6251 dest->null |= src->null;
6252 dest->vars_contains_nonlocal |= src->vars_contains_nonlocal;
6253 dest->vars_contains_escaped |= src->vars_contains_escaped;
6254 dest->vars_contains_escaped_heap |= src->vars_contains_escaped_heap;
6255 if (!src->vars)
6256 return;
6258 if (!dest->vars)
6259 dest->vars = BITMAP_GGC_ALLOC ();
6260 bitmap_ior_into (dest->vars, src->vars);
6263 /* Return true if the points-to solution *PT is empty. */
6265 bool
6266 pt_solution_empty_p (struct pt_solution *pt)
6268 if (pt->anything
6269 || pt->nonlocal)
6270 return false;
6272 if (pt->vars
6273 && !bitmap_empty_p (pt->vars))
6274 return false;
6276 /* If the solution includes ESCAPED, check if that is empty. */
6277 if (pt->escaped
6278 && !pt_solution_empty_p (&cfun->gimple_df->escaped))
6279 return false;
6281 /* If the solution includes ESCAPED, check if that is empty. */
6282 if (pt->ipa_escaped
6283 && !pt_solution_empty_p (&ipa_escaped_pt))
6284 return false;
6286 return true;
6289 /* Return true if the points-to solution *PT only point to a single var, and
6290 return the var uid in *UID. */
6292 bool
6293 pt_solution_singleton_p (struct pt_solution *pt, unsigned *uid)
6295 if (pt->anything || pt->nonlocal || pt->escaped || pt->ipa_escaped
6296 || pt->null || pt->vars == NULL
6297 || !bitmap_single_bit_set_p (pt->vars))
6298 return false;
6300 *uid = bitmap_first_set_bit (pt->vars);
6301 return true;
6304 /* Return true if the points-to solution *PT includes global memory. */
6306 bool
6307 pt_solution_includes_global (struct pt_solution *pt)
6309 if (pt->anything
6310 || pt->nonlocal
6311 || pt->vars_contains_nonlocal
6312 /* The following is a hack to make the malloc escape hack work.
6313 In reality we'd need different sets for escaped-through-return
6314 and escaped-to-callees and passes would need to be updated. */
6315 || pt->vars_contains_escaped_heap)
6316 return true;
6318 /* 'escaped' is also a placeholder so we have to look into it. */
6319 if (pt->escaped)
6320 return pt_solution_includes_global (&cfun->gimple_df->escaped);
6322 if (pt->ipa_escaped)
6323 return pt_solution_includes_global (&ipa_escaped_pt);
6325 /* ??? This predicate is not correct for the IPA-PTA solution
6326 as we do not properly distinguish between unit escape points
6327 and global variables. */
6328 if (cfun->gimple_df->ipa_pta)
6329 return true;
6331 return false;
6334 /* Return true if the points-to solution *PT includes the variable
6335 declaration DECL. */
6337 static bool
6338 pt_solution_includes_1 (struct pt_solution *pt, const_tree decl)
6340 if (pt->anything)
6341 return true;
6343 if (pt->nonlocal
6344 && is_global_var (decl))
6345 return true;
6347 if (pt->vars
6348 && bitmap_bit_p (pt->vars, DECL_PT_UID (decl)))
6349 return true;
6351 /* If the solution includes ESCAPED, check it. */
6352 if (pt->escaped
6353 && pt_solution_includes_1 (&cfun->gimple_df->escaped, decl))
6354 return true;
6356 /* If the solution includes ESCAPED, check it. */
6357 if (pt->ipa_escaped
6358 && pt_solution_includes_1 (&ipa_escaped_pt, decl))
6359 return true;
6361 return false;
6364 bool
6365 pt_solution_includes (struct pt_solution *pt, const_tree decl)
6367 bool res = pt_solution_includes_1 (pt, decl);
6368 if (res)
6369 ++pta_stats.pt_solution_includes_may_alias;
6370 else
6371 ++pta_stats.pt_solution_includes_no_alias;
6372 return res;
6375 /* Return true if both points-to solutions PT1 and PT2 have a non-empty
6376 intersection. */
6378 static bool
6379 pt_solutions_intersect_1 (struct pt_solution *pt1, struct pt_solution *pt2)
6381 if (pt1->anything || pt2->anything)
6382 return true;
6384 /* If either points to unknown global memory and the other points to
6385 any global memory they alias. */
6386 if ((pt1->nonlocal
6387 && (pt2->nonlocal
6388 || pt2->vars_contains_nonlocal))
6389 || (pt2->nonlocal
6390 && pt1->vars_contains_nonlocal))
6391 return true;
6393 /* If either points to all escaped memory and the other points to
6394 any escaped memory they alias. */
6395 if ((pt1->escaped
6396 && (pt2->escaped
6397 || pt2->vars_contains_escaped))
6398 || (pt2->escaped
6399 && pt1->vars_contains_escaped))
6400 return true;
6402 /* Check the escaped solution if required.
6403 ??? Do we need to check the local against the IPA escaped sets? */
6404 if ((pt1->ipa_escaped || pt2->ipa_escaped)
6405 && !pt_solution_empty_p (&ipa_escaped_pt))
6407 /* If both point to escaped memory and that solution
6408 is not empty they alias. */
6409 if (pt1->ipa_escaped && pt2->ipa_escaped)
6410 return true;
6412 /* If either points to escaped memory see if the escaped solution
6413 intersects with the other. */
6414 if ((pt1->ipa_escaped
6415 && pt_solutions_intersect_1 (&ipa_escaped_pt, pt2))
6416 || (pt2->ipa_escaped
6417 && pt_solutions_intersect_1 (&ipa_escaped_pt, pt1)))
6418 return true;
6421 /* Now both pointers alias if their points-to solution intersects. */
6422 return (pt1->vars
6423 && pt2->vars
6424 && bitmap_intersect_p (pt1->vars, pt2->vars));
6427 bool
6428 pt_solutions_intersect (struct pt_solution *pt1, struct pt_solution *pt2)
6430 bool res = pt_solutions_intersect_1 (pt1, pt2);
6431 if (res)
6432 ++pta_stats.pt_solutions_intersect_may_alias;
6433 else
6434 ++pta_stats.pt_solutions_intersect_no_alias;
6435 return res;
6439 /* Dump points-to information to OUTFILE. */
6441 static void
6442 dump_sa_points_to_info (FILE *outfile)
6444 unsigned int i;
6446 fprintf (outfile, "\nPoints-to sets\n\n");
6448 if (dump_flags & TDF_STATS)
6450 fprintf (outfile, "Stats:\n");
6451 fprintf (outfile, "Total vars: %d\n", stats.total_vars);
6452 fprintf (outfile, "Non-pointer vars: %d\n",
6453 stats.nonpointer_vars);
6454 fprintf (outfile, "Statically unified vars: %d\n",
6455 stats.unified_vars_static);
6456 fprintf (outfile, "Dynamically unified vars: %d\n",
6457 stats.unified_vars_dynamic);
6458 fprintf (outfile, "Iterations: %d\n", stats.iterations);
6459 fprintf (outfile, "Number of edges: %d\n", stats.num_edges);
6460 fprintf (outfile, "Number of implicit edges: %d\n",
6461 stats.num_implicit_edges);
6464 for (i = 1; i < varmap.length (); i++)
6466 varinfo_t vi = get_varinfo (i);
6467 if (!vi->may_have_pointers)
6468 continue;
6469 dump_solution_for_var (outfile, i);
6474 /* Debug points-to information to stderr. */
6476 DEBUG_FUNCTION void
6477 debug_sa_points_to_info (void)
6479 dump_sa_points_to_info (stderr);
6483 /* Initialize the always-existing constraint variables for NULL
6484 ANYTHING, READONLY, and INTEGER */
6486 static void
6487 init_base_vars (void)
6489 struct constraint_expr lhs, rhs;
6490 varinfo_t var_anything;
6491 varinfo_t var_nothing;
6492 varinfo_t var_string;
6493 varinfo_t var_escaped;
6494 varinfo_t var_nonlocal;
6495 varinfo_t var_storedanything;
6496 varinfo_t var_integer;
6498 /* Variable ID zero is reserved and should be NULL. */
6499 varmap.safe_push (NULL);
6501 /* Create the NULL variable, used to represent that a variable points
6502 to NULL. */
6503 var_nothing = new_var_info (NULL_TREE, "NULL");
6504 gcc_assert (var_nothing->id == nothing_id);
6505 var_nothing->is_artificial_var = 1;
6506 var_nothing->offset = 0;
6507 var_nothing->size = ~0;
6508 var_nothing->fullsize = ~0;
6509 var_nothing->is_special_var = 1;
6510 var_nothing->may_have_pointers = 0;
6511 var_nothing->is_global_var = 0;
6513 /* Create the ANYTHING variable, used to represent that a variable
6514 points to some unknown piece of memory. */
6515 var_anything = new_var_info (NULL_TREE, "ANYTHING");
6516 gcc_assert (var_anything->id == anything_id);
6517 var_anything->is_artificial_var = 1;
6518 var_anything->size = ~0;
6519 var_anything->offset = 0;
6520 var_anything->fullsize = ~0;
6521 var_anything->is_special_var = 1;
6523 /* Anything points to anything. This makes deref constraints just
6524 work in the presence of linked list and other p = *p type loops,
6525 by saying that *ANYTHING = ANYTHING. */
6526 lhs.type = SCALAR;
6527 lhs.var = anything_id;
6528 lhs.offset = 0;
6529 rhs.type = ADDRESSOF;
6530 rhs.var = anything_id;
6531 rhs.offset = 0;
6533 /* This specifically does not use process_constraint because
6534 process_constraint ignores all anything = anything constraints, since all
6535 but this one are redundant. */
6536 constraints.safe_push (new_constraint (lhs, rhs));
6538 /* Create the STRING variable, used to represent that a variable
6539 points to a string literal. String literals don't contain
6540 pointers so STRING doesn't point to anything. */
6541 var_string = new_var_info (NULL_TREE, "STRING");
6542 gcc_assert (var_string->id == string_id);
6543 var_string->is_artificial_var = 1;
6544 var_string->offset = 0;
6545 var_string->size = ~0;
6546 var_string->fullsize = ~0;
6547 var_string->is_special_var = 1;
6548 var_string->may_have_pointers = 0;
6550 /* Create the ESCAPED variable, used to represent the set of escaped
6551 memory. */
6552 var_escaped = new_var_info (NULL_TREE, "ESCAPED");
6553 gcc_assert (var_escaped->id == escaped_id);
6554 var_escaped->is_artificial_var = 1;
6555 var_escaped->offset = 0;
6556 var_escaped->size = ~0;
6557 var_escaped->fullsize = ~0;
6558 var_escaped->is_special_var = 0;
6560 /* Create the NONLOCAL variable, used to represent the set of nonlocal
6561 memory. */
6562 var_nonlocal = new_var_info (NULL_TREE, "NONLOCAL");
6563 gcc_assert (var_nonlocal->id == nonlocal_id);
6564 var_nonlocal->is_artificial_var = 1;
6565 var_nonlocal->offset = 0;
6566 var_nonlocal->size = ~0;
6567 var_nonlocal->fullsize = ~0;
6568 var_nonlocal->is_special_var = 1;
6570 /* ESCAPED = *ESCAPED, because escaped is may-deref'd at calls, etc. */
6571 lhs.type = SCALAR;
6572 lhs.var = escaped_id;
6573 lhs.offset = 0;
6574 rhs.type = DEREF;
6575 rhs.var = escaped_id;
6576 rhs.offset = 0;
6577 process_constraint (new_constraint (lhs, rhs));
6579 /* ESCAPED = ESCAPED + UNKNOWN_OFFSET, because if a sub-field escapes the
6580 whole variable escapes. */
6581 lhs.type = SCALAR;
6582 lhs.var = escaped_id;
6583 lhs.offset = 0;
6584 rhs.type = SCALAR;
6585 rhs.var = escaped_id;
6586 rhs.offset = UNKNOWN_OFFSET;
6587 process_constraint (new_constraint (lhs, rhs));
6589 /* *ESCAPED = NONLOCAL. This is true because we have to assume
6590 everything pointed to by escaped points to what global memory can
6591 point to. */
6592 lhs.type = DEREF;
6593 lhs.var = escaped_id;
6594 lhs.offset = 0;
6595 rhs.type = SCALAR;
6596 rhs.var = nonlocal_id;
6597 rhs.offset = 0;
6598 process_constraint (new_constraint (lhs, rhs));
6600 /* NONLOCAL = &NONLOCAL, NONLOCAL = &ESCAPED. This is true because
6601 global memory may point to global memory and escaped memory. */
6602 lhs.type = SCALAR;
6603 lhs.var = nonlocal_id;
6604 lhs.offset = 0;
6605 rhs.type = ADDRESSOF;
6606 rhs.var = nonlocal_id;
6607 rhs.offset = 0;
6608 process_constraint (new_constraint (lhs, rhs));
6609 rhs.type = ADDRESSOF;
6610 rhs.var = escaped_id;
6611 rhs.offset = 0;
6612 process_constraint (new_constraint (lhs, rhs));
6614 /* Create the STOREDANYTHING variable, used to represent the set of
6615 variables stored to *ANYTHING. */
6616 var_storedanything = new_var_info (NULL_TREE, "STOREDANYTHING");
6617 gcc_assert (var_storedanything->id == storedanything_id);
6618 var_storedanything->is_artificial_var = 1;
6619 var_storedanything->offset = 0;
6620 var_storedanything->size = ~0;
6621 var_storedanything->fullsize = ~0;
6622 var_storedanything->is_special_var = 0;
6624 /* Create the INTEGER variable, used to represent that a variable points
6625 to what an INTEGER "points to". */
6626 var_integer = new_var_info (NULL_TREE, "INTEGER");
6627 gcc_assert (var_integer->id == integer_id);
6628 var_integer->is_artificial_var = 1;
6629 var_integer->size = ~0;
6630 var_integer->fullsize = ~0;
6631 var_integer->offset = 0;
6632 var_integer->is_special_var = 1;
6634 /* INTEGER = ANYTHING, because we don't know where a dereference of
6635 a random integer will point to. */
6636 lhs.type = SCALAR;
6637 lhs.var = integer_id;
6638 lhs.offset = 0;
6639 rhs.type = ADDRESSOF;
6640 rhs.var = anything_id;
6641 rhs.offset = 0;
6642 process_constraint (new_constraint (lhs, rhs));
6645 /* Initialize things necessary to perform PTA */
6647 static void
6648 init_alias_vars (void)
6650 use_field_sensitive = (MAX_FIELDS_FOR_FIELD_SENSITIVE > 1);
6652 bitmap_obstack_initialize (&pta_obstack);
6653 bitmap_obstack_initialize (&oldpta_obstack);
6654 bitmap_obstack_initialize (&predbitmap_obstack);
6656 constraints.create (8);
6657 varmap.create (8);
6658 vi_for_tree = new hash_map<tree, varinfo_t>;
6659 call_stmt_vars = new hash_map<gimple *, varinfo_t>;
6661 memset (&stats, 0, sizeof (stats));
6662 shared_bitmap_table = new hash_table<shared_bitmap_hasher> (511);
6663 init_base_vars ();
6665 gcc_obstack_init (&fake_var_decl_obstack);
6667 final_solutions = new hash_map<varinfo_t, pt_solution *>;
6668 gcc_obstack_init (&final_solutions_obstack);
6671 /* Remove the REF and ADDRESS edges from GRAPH, as well as all the
6672 predecessor edges. */
6674 static void
6675 remove_preds_and_fake_succs (constraint_graph_t graph)
6677 unsigned int i;
6679 /* Clear the implicit ref and address nodes from the successor
6680 lists. */
6681 for (i = 1; i < FIRST_REF_NODE; i++)
6683 if (graph->succs[i])
6684 bitmap_clear_range (graph->succs[i], FIRST_REF_NODE,
6685 FIRST_REF_NODE * 2);
6688 /* Free the successor list for the non-ref nodes. */
6689 for (i = FIRST_REF_NODE + 1; i < graph->size; i++)
6691 if (graph->succs[i])
6692 BITMAP_FREE (graph->succs[i]);
6695 /* Now reallocate the size of the successor list as, and blow away
6696 the predecessor bitmaps. */
6697 graph->size = varmap.length ();
6698 graph->succs = XRESIZEVEC (bitmap, graph->succs, graph->size);
6700 free (graph->implicit_preds);
6701 graph->implicit_preds = NULL;
6702 free (graph->preds);
6703 graph->preds = NULL;
6704 bitmap_obstack_release (&predbitmap_obstack);
6707 /* Solve the constraint set. */
6709 static void
6710 solve_constraints (void)
6712 struct scc_info *si;
6714 if (dump_file)
6715 fprintf (dump_file,
6716 "\nCollapsing static cycles and doing variable "
6717 "substitution\n");
6719 init_graph (varmap.length () * 2);
6721 if (dump_file)
6722 fprintf (dump_file, "Building predecessor graph\n");
6723 build_pred_graph ();
6725 if (dump_file)
6726 fprintf (dump_file, "Detecting pointer and location "
6727 "equivalences\n");
6728 si = perform_var_substitution (graph);
6730 if (dump_file)
6731 fprintf (dump_file, "Rewriting constraints and unifying "
6732 "variables\n");
6733 rewrite_constraints (graph, si);
6735 build_succ_graph ();
6737 free_var_substitution_info (si);
6739 /* Attach complex constraints to graph nodes. */
6740 move_complex_constraints (graph);
6742 if (dump_file)
6743 fprintf (dump_file, "Uniting pointer but not location equivalent "
6744 "variables\n");
6745 unite_pointer_equivalences (graph);
6747 if (dump_file)
6748 fprintf (dump_file, "Finding indirect cycles\n");
6749 find_indirect_cycles (graph);
6751 /* Implicit nodes and predecessors are no longer necessary at this
6752 point. */
6753 remove_preds_and_fake_succs (graph);
6755 if (dump_file && (dump_flags & TDF_GRAPH))
6757 fprintf (dump_file, "\n\n// The constraint graph before solve-graph "
6758 "in dot format:\n");
6759 dump_constraint_graph (dump_file);
6760 fprintf (dump_file, "\n\n");
6763 if (dump_file)
6764 fprintf (dump_file, "Solving graph\n");
6766 solve_graph (graph);
6768 if (dump_file && (dump_flags & TDF_GRAPH))
6770 fprintf (dump_file, "\n\n// The constraint graph after solve-graph "
6771 "in dot format:\n");
6772 dump_constraint_graph (dump_file);
6773 fprintf (dump_file, "\n\n");
6776 if (dump_file)
6777 dump_sa_points_to_info (dump_file);
6780 /* Create points-to sets for the current function. See the comments
6781 at the start of the file for an algorithmic overview. */
6783 static void
6784 compute_points_to_sets (void)
6786 basic_block bb;
6787 unsigned i;
6788 varinfo_t vi;
6790 timevar_push (TV_TREE_PTA);
6792 init_alias_vars ();
6794 intra_create_variable_infos (cfun);
6796 /* Now walk all statements and build the constraint set. */
6797 FOR_EACH_BB_FN (bb, cfun)
6799 for (gphi_iterator gsi = gsi_start_phis (bb); !gsi_end_p (gsi);
6800 gsi_next (&gsi))
6802 gphi *phi = gsi.phi ();
6804 if (! virtual_operand_p (gimple_phi_result (phi)))
6805 find_func_aliases (cfun, phi);
6808 for (gimple_stmt_iterator gsi = gsi_start_bb (bb); !gsi_end_p (gsi);
6809 gsi_next (&gsi))
6811 gimple *stmt = gsi_stmt (gsi);
6813 find_func_aliases (cfun, stmt);
6817 if (dump_file)
6819 fprintf (dump_file, "Points-to analysis\n\nConstraints:\n\n");
6820 dump_constraints (dump_file, 0);
6823 /* From the constraints compute the points-to sets. */
6824 solve_constraints ();
6826 /* Compute the points-to set for ESCAPED used for call-clobber analysis. */
6827 cfun->gimple_df->escaped = find_what_var_points_to (get_varinfo (escaped_id));
6829 /* Make sure the ESCAPED solution (which is used as placeholder in
6830 other solutions) does not reference itself. This simplifies
6831 points-to solution queries. */
6832 cfun->gimple_df->escaped.escaped = 0;
6834 /* Compute the points-to sets for pointer SSA_NAMEs. */
6835 for (i = 0; i < num_ssa_names; ++i)
6837 tree ptr = ssa_name (i);
6838 if (ptr
6839 && POINTER_TYPE_P (TREE_TYPE (ptr)))
6840 find_what_p_points_to (ptr);
6843 /* Compute the call-used/clobbered sets. */
6844 FOR_EACH_BB_FN (bb, cfun)
6846 gimple_stmt_iterator gsi;
6848 for (gsi = gsi_start_bb (bb); !gsi_end_p (gsi); gsi_next (&gsi))
6850 gcall *stmt;
6851 struct pt_solution *pt;
6853 stmt = dyn_cast <gcall *> (gsi_stmt (gsi));
6854 if (!stmt)
6855 continue;
6857 pt = gimple_call_use_set (stmt);
6858 if (gimple_call_flags (stmt) & ECF_CONST)
6859 memset (pt, 0, sizeof (struct pt_solution));
6860 else if ((vi = lookup_call_use_vi (stmt)) != NULL)
6862 *pt = find_what_var_points_to (vi);
6863 /* Escaped (and thus nonlocal) variables are always
6864 implicitly used by calls. */
6865 /* ??? ESCAPED can be empty even though NONLOCAL
6866 always escaped. */
6867 pt->nonlocal = 1;
6868 pt->escaped = 1;
6870 else
6872 /* If there is nothing special about this call then
6873 we have made everything that is used also escape. */
6874 *pt = cfun->gimple_df->escaped;
6875 pt->nonlocal = 1;
6878 pt = gimple_call_clobber_set (stmt);
6879 if (gimple_call_flags (stmt) & (ECF_CONST|ECF_PURE|ECF_NOVOPS))
6880 memset (pt, 0, sizeof (struct pt_solution));
6881 else if ((vi = lookup_call_clobber_vi (stmt)) != NULL)
6883 *pt = find_what_var_points_to (vi);
6884 /* Escaped (and thus nonlocal) variables are always
6885 implicitly clobbered by calls. */
6886 /* ??? ESCAPED can be empty even though NONLOCAL
6887 always escaped. */
6888 pt->nonlocal = 1;
6889 pt->escaped = 1;
6891 else
6893 /* If there is nothing special about this call then
6894 we have made everything that is used also escape. */
6895 *pt = cfun->gimple_df->escaped;
6896 pt->nonlocal = 1;
6901 timevar_pop (TV_TREE_PTA);
6905 /* Delete created points-to sets. */
6907 static void
6908 delete_points_to_sets (void)
6910 unsigned int i;
6912 delete shared_bitmap_table;
6913 shared_bitmap_table = NULL;
6914 if (dump_file && (dump_flags & TDF_STATS))
6915 fprintf (dump_file, "Points to sets created:%d\n",
6916 stats.points_to_sets_created);
6918 delete vi_for_tree;
6919 delete call_stmt_vars;
6920 bitmap_obstack_release (&pta_obstack);
6921 constraints.release ();
6923 for (i = 0; i < graph->size; i++)
6924 graph->complex[i].release ();
6925 free (graph->complex);
6927 free (graph->rep);
6928 free (graph->succs);
6929 free (graph->pe);
6930 free (graph->pe_rep);
6931 free (graph->indirect_cycles);
6932 free (graph);
6934 varmap.release ();
6935 variable_info_pool.release ();
6936 constraint_pool.release ();
6938 obstack_free (&fake_var_decl_obstack, NULL);
6940 delete final_solutions;
6941 obstack_free (&final_solutions_obstack, NULL);
6944 /* Mark "other" loads and stores as belonging to CLIQUE and with
6945 base zero. */
6947 static bool
6948 visit_loadstore (gimple *, tree base, tree ref, void *clique_)
6950 unsigned short clique = (uintptr_t)clique_;
6951 if (TREE_CODE (base) == MEM_REF
6952 || TREE_CODE (base) == TARGET_MEM_REF)
6954 tree ptr = TREE_OPERAND (base, 0);
6955 if (TREE_CODE (ptr) == SSA_NAME
6956 && ! SSA_NAME_IS_DEFAULT_DEF (ptr))
6958 /* ??? We need to make sure 'ptr' doesn't include any of
6959 the restrict tags we added bases for in its points-to set. */
6960 return false;
6963 /* For now let decls through. */
6965 /* Do not overwrite existing cliques (that includes clique, base
6966 pairs we just set). */
6967 if (MR_DEPENDENCE_CLIQUE (base) == 0)
6969 MR_DEPENDENCE_CLIQUE (base) = clique;
6970 MR_DEPENDENCE_BASE (base) = 0;
6974 /* For plain decl accesses see whether they are accesses to globals
6975 and rewrite them to MEM_REFs with { clique, 0 }. */
6976 if (TREE_CODE (base) == VAR_DECL
6977 && is_global_var (base)
6978 /* ??? We can't rewrite a plain decl with the walk_stmt_load_store
6979 ops callback. */
6980 && base != ref)
6982 tree *basep = &ref;
6983 while (handled_component_p (*basep))
6984 basep = &TREE_OPERAND (*basep, 0);
6985 gcc_assert (TREE_CODE (*basep) == VAR_DECL);
6986 tree ptr = build_fold_addr_expr (*basep);
6987 tree zero = build_int_cst (TREE_TYPE (ptr), 0);
6988 *basep = build2 (MEM_REF, TREE_TYPE (*basep), ptr, zero);
6989 MR_DEPENDENCE_CLIQUE (*basep) = clique;
6990 MR_DEPENDENCE_BASE (*basep) = 0;
6993 return false;
6996 /* If REF is a MEM_REF then assign a clique, base pair to it, updating
6997 CLIQUE, *RESTRICT_VAR and LAST_RUID. Return whether dependence info
6998 was assigned to REF. */
7000 static bool
7001 maybe_set_dependence_info (tree ref, tree ptr,
7002 unsigned short &clique, varinfo_t restrict_var,
7003 unsigned short &last_ruid)
7005 while (handled_component_p (ref))
7006 ref = TREE_OPERAND (ref, 0);
7007 if ((TREE_CODE (ref) == MEM_REF
7008 || TREE_CODE (ref) == TARGET_MEM_REF)
7009 && TREE_OPERAND (ref, 0) == ptr)
7011 /* Do not overwrite existing cliques. This avoids overwriting dependence
7012 info inlined from a function with restrict parameters inlined
7013 into a function with restrict parameters. This usually means we
7014 prefer to be precise in innermost loops. */
7015 if (MR_DEPENDENCE_CLIQUE (ref) == 0)
7017 if (clique == 0)
7018 clique = ++cfun->last_clique;
7019 if (restrict_var->ruid == 0)
7020 restrict_var->ruid = ++last_ruid;
7021 MR_DEPENDENCE_CLIQUE (ref) = clique;
7022 MR_DEPENDENCE_BASE (ref) = restrict_var->ruid;
7023 return true;
7026 return false;
7029 /* Compute the set of independend memory references based on restrict
7030 tags and their conservative propagation to the points-to sets. */
7032 static void
7033 compute_dependence_clique (void)
7035 unsigned short clique = 0;
7036 unsigned short last_ruid = 0;
7037 for (unsigned i = 0; i < num_ssa_names; ++i)
7039 tree ptr = ssa_name (i);
7040 if (!ptr || !POINTER_TYPE_P (TREE_TYPE (ptr)))
7041 continue;
7043 /* Avoid all this when ptr is not dereferenced? */
7044 tree p = ptr;
7045 if (SSA_NAME_IS_DEFAULT_DEF (ptr)
7046 && (TREE_CODE (SSA_NAME_VAR (ptr)) == PARM_DECL
7047 || TREE_CODE (SSA_NAME_VAR (ptr)) == RESULT_DECL))
7048 p = SSA_NAME_VAR (ptr);
7049 varinfo_t vi = lookup_vi_for_tree (p);
7050 if (!vi)
7051 continue;
7052 vi = get_varinfo (find (vi->id));
7053 bitmap_iterator bi;
7054 unsigned j;
7055 varinfo_t restrict_var = NULL;
7056 EXECUTE_IF_SET_IN_BITMAP (vi->solution, 0, j, bi)
7058 varinfo_t oi = get_varinfo (j);
7059 if (oi->is_restrict_var)
7061 if (restrict_var)
7063 if (dump_file && (dump_flags & TDF_DETAILS))
7065 fprintf (dump_file, "found restrict pointed-to "
7066 "for ");
7067 print_generic_expr (dump_file, ptr, 0);
7068 fprintf (dump_file, " but not exclusively\n");
7070 restrict_var = NULL;
7071 break;
7073 restrict_var = oi;
7075 /* NULL is the only other valid points-to entry. */
7076 else if (oi->id != nothing_id)
7078 restrict_var = NULL;
7079 break;
7082 /* Ok, found that ptr must(!) point to a single(!) restrict
7083 variable. */
7084 /* ??? PTA isn't really a proper propagation engine to compute
7085 this property.
7086 ??? We could handle merging of two restricts by unifying them. */
7087 if (restrict_var)
7089 /* Now look at possible dereferences of ptr. */
7090 imm_use_iterator ui;
7091 gimple *use_stmt;
7092 FOR_EACH_IMM_USE_STMT (use_stmt, ui, ptr)
7094 /* ??? Calls and asms. */
7095 if (!gimple_assign_single_p (use_stmt))
7096 continue;
7097 maybe_set_dependence_info (gimple_assign_lhs (use_stmt), ptr,
7098 clique, restrict_var, last_ruid);
7099 maybe_set_dependence_info (gimple_assign_rhs1 (use_stmt), ptr,
7100 clique, restrict_var, last_ruid);
7105 if (clique == 0)
7106 return;
7108 /* Assign the BASE id zero to all accesses not based on a restrict
7109 pointer. That way they get disabiguated against restrict
7110 accesses but not against each other. */
7111 /* ??? For restricts derived from globals (thus not incoming
7112 parameters) we can't restrict scoping properly thus the following
7113 is too aggressive there. For now we have excluded those globals from
7114 getting into the MR_DEPENDENCE machinery. */
7115 basic_block bb;
7116 FOR_EACH_BB_FN (bb, cfun)
7117 for (gimple_stmt_iterator gsi = gsi_start_bb (bb);
7118 !gsi_end_p (gsi); gsi_next (&gsi))
7120 gimple *stmt = gsi_stmt (gsi);
7121 walk_stmt_load_store_ops (stmt, (void *)(uintptr_t)clique,
7122 visit_loadstore, visit_loadstore);
7126 /* Compute points-to information for every SSA_NAME pointer in the
7127 current function and compute the transitive closure of escaped
7128 variables to re-initialize the call-clobber states of local variables. */
7130 unsigned int
7131 compute_may_aliases (void)
7133 if (cfun->gimple_df->ipa_pta)
7135 if (dump_file)
7137 fprintf (dump_file, "\nNot re-computing points-to information "
7138 "because IPA points-to information is available.\n\n");
7140 /* But still dump what we have remaining it. */
7141 dump_alias_info (dump_file);
7144 return 0;
7147 /* For each pointer P_i, determine the sets of variables that P_i may
7148 point-to. Compute the reachability set of escaped and call-used
7149 variables. */
7150 compute_points_to_sets ();
7152 /* Debugging dumps. */
7153 if (dump_file)
7154 dump_alias_info (dump_file);
7156 /* Compute restrict-based memory disambiguations. */
7157 compute_dependence_clique ();
7159 /* Deallocate memory used by aliasing data structures and the internal
7160 points-to solution. */
7161 delete_points_to_sets ();
7163 gcc_assert (!need_ssa_update_p (cfun));
7165 return 0;
7168 /* A dummy pass to cause points-to information to be computed via
7169 TODO_rebuild_alias. */
7171 namespace {
7173 const pass_data pass_data_build_alias =
7175 GIMPLE_PASS, /* type */
7176 "alias", /* name */
7177 OPTGROUP_NONE, /* optinfo_flags */
7178 TV_NONE, /* tv_id */
7179 ( PROP_cfg | PROP_ssa ), /* properties_required */
7180 0, /* properties_provided */
7181 0, /* properties_destroyed */
7182 0, /* todo_flags_start */
7183 TODO_rebuild_alias, /* todo_flags_finish */
7186 class pass_build_alias : public gimple_opt_pass
7188 public:
7189 pass_build_alias (gcc::context *ctxt)
7190 : gimple_opt_pass (pass_data_build_alias, ctxt)
7193 /* opt_pass methods: */
7194 virtual bool gate (function *) { return flag_tree_pta; }
7196 }; // class pass_build_alias
7198 } // anon namespace
7200 gimple_opt_pass *
7201 make_pass_build_alias (gcc::context *ctxt)
7203 return new pass_build_alias (ctxt);
7206 /* A dummy pass to cause points-to information to be computed via
7207 TODO_rebuild_alias. */
7209 namespace {
7211 const pass_data pass_data_build_ealias =
7213 GIMPLE_PASS, /* type */
7214 "ealias", /* name */
7215 OPTGROUP_NONE, /* optinfo_flags */
7216 TV_NONE, /* tv_id */
7217 ( PROP_cfg | PROP_ssa ), /* properties_required */
7218 0, /* properties_provided */
7219 0, /* properties_destroyed */
7220 0, /* todo_flags_start */
7221 TODO_rebuild_alias, /* todo_flags_finish */
7224 class pass_build_ealias : public gimple_opt_pass
7226 public:
7227 pass_build_ealias (gcc::context *ctxt)
7228 : gimple_opt_pass (pass_data_build_ealias, ctxt)
7231 /* opt_pass methods: */
7232 virtual bool gate (function *) { return flag_tree_pta; }
7234 }; // class pass_build_ealias
7236 } // anon namespace
7238 gimple_opt_pass *
7239 make_pass_build_ealias (gcc::context *ctxt)
7241 return new pass_build_ealias (ctxt);
7245 /* IPA PTA solutions for ESCAPED. */
7246 struct pt_solution ipa_escaped_pt
7247 = { true, false, false, false, false, false, false, false, NULL };
7249 /* Associate node with varinfo DATA. Worker for
7250 cgraph_for_node_and_aliases. */
7251 static bool
7252 associate_varinfo_to_alias (struct cgraph_node *node, void *data)
7254 if ((node->alias || node->thunk.thunk_p)
7255 && node->analyzed)
7256 insert_vi_for_tree (node->decl, (varinfo_t)data);
7257 return false;
7260 /* Execute the driver for IPA PTA. */
7261 static unsigned int
7262 ipa_pta_execute (void)
7264 struct cgraph_node *node;
7265 varpool_node *var;
7266 int from;
7268 in_ipa_mode = 1;
7270 init_alias_vars ();
7272 if (dump_file && (dump_flags & TDF_DETAILS))
7274 symtab_node::dump_table (dump_file);
7275 fprintf (dump_file, "\n");
7278 /* Build the constraints. */
7279 FOR_EACH_DEFINED_FUNCTION (node)
7281 varinfo_t vi;
7282 /* Nodes without a body are not interesting. Especially do not
7283 visit clones at this point for now - we get duplicate decls
7284 there for inline clones at least. */
7285 if (!node->has_gimple_body_p () || node->global.inlined_to)
7286 continue;
7287 node->get_body ();
7289 gcc_assert (!node->clone_of);
7291 vi = create_function_info_for (node->decl,
7292 alias_get_name (node->decl));
7293 node->call_for_symbol_thunks_and_aliases
7294 (associate_varinfo_to_alias, vi, true);
7297 /* Create constraints for global variables and their initializers. */
7298 FOR_EACH_VARIABLE (var)
7300 if (var->alias && var->analyzed)
7301 continue;
7303 get_vi_for_tree (var->decl);
7306 if (dump_file)
7308 fprintf (dump_file,
7309 "Generating constraints for global initializers\n\n");
7310 dump_constraints (dump_file, 0);
7311 fprintf (dump_file, "\n");
7313 from = constraints.length ();
7315 FOR_EACH_DEFINED_FUNCTION (node)
7317 struct function *func;
7318 basic_block bb;
7320 /* Nodes without a body are not interesting. */
7321 if (!node->has_gimple_body_p () || node->clone_of)
7322 continue;
7324 if (dump_file)
7326 fprintf (dump_file,
7327 "Generating constraints for %s", node->name ());
7328 if (DECL_ASSEMBLER_NAME_SET_P (node->decl))
7329 fprintf (dump_file, " (%s)",
7330 IDENTIFIER_POINTER
7331 (DECL_ASSEMBLER_NAME (node->decl)));
7332 fprintf (dump_file, "\n");
7335 func = DECL_STRUCT_FUNCTION (node->decl);
7336 gcc_assert (cfun == NULL);
7338 /* For externally visible or attribute used annotated functions use
7339 local constraints for their arguments.
7340 For local functions we see all callers and thus do not need initial
7341 constraints for parameters. */
7342 if (node->used_from_other_partition
7343 || node->externally_visible
7344 || node->force_output
7345 || node->address_taken)
7347 intra_create_variable_infos (func);
7349 /* We also need to make function return values escape. Nothing
7350 escapes by returning from main though. */
7351 if (!MAIN_NAME_P (DECL_NAME (node->decl)))
7353 varinfo_t fi, rvi;
7354 fi = lookup_vi_for_tree (node->decl);
7355 rvi = first_vi_for_offset (fi, fi_result);
7356 if (rvi && rvi->offset == fi_result)
7358 struct constraint_expr includes;
7359 struct constraint_expr var;
7360 includes.var = escaped_id;
7361 includes.offset = 0;
7362 includes.type = SCALAR;
7363 var.var = rvi->id;
7364 var.offset = 0;
7365 var.type = SCALAR;
7366 process_constraint (new_constraint (includes, var));
7371 /* Build constriants for the function body. */
7372 FOR_EACH_BB_FN (bb, func)
7374 for (gphi_iterator gsi = gsi_start_phis (bb); !gsi_end_p (gsi);
7375 gsi_next (&gsi))
7377 gphi *phi = gsi.phi ();
7379 if (! virtual_operand_p (gimple_phi_result (phi)))
7380 find_func_aliases (func, phi);
7383 for (gimple_stmt_iterator gsi = gsi_start_bb (bb); !gsi_end_p (gsi);
7384 gsi_next (&gsi))
7386 gimple *stmt = gsi_stmt (gsi);
7388 find_func_aliases (func, stmt);
7389 find_func_clobbers (func, stmt);
7393 if (dump_file)
7395 fprintf (dump_file, "\n");
7396 dump_constraints (dump_file, from);
7397 fprintf (dump_file, "\n");
7399 from = constraints.length ();
7402 /* From the constraints compute the points-to sets. */
7403 solve_constraints ();
7405 /* Compute the global points-to sets for ESCAPED.
7406 ??? Note that the computed escape set is not correct
7407 for the whole unit as we fail to consider graph edges to
7408 externally visible functions. */
7409 ipa_escaped_pt = find_what_var_points_to (get_varinfo (escaped_id));
7411 /* Make sure the ESCAPED solution (which is used as placeholder in
7412 other solutions) does not reference itself. This simplifies
7413 points-to solution queries. */
7414 ipa_escaped_pt.ipa_escaped = 0;
7416 /* Assign the points-to sets to the SSA names in the unit. */
7417 FOR_EACH_DEFINED_FUNCTION (node)
7419 tree ptr;
7420 struct function *fn;
7421 unsigned i;
7422 basic_block bb;
7424 /* Nodes without a body are not interesting. */
7425 if (!node->has_gimple_body_p () || node->clone_of)
7426 continue;
7428 fn = DECL_STRUCT_FUNCTION (node->decl);
7430 /* Compute the points-to sets for pointer SSA_NAMEs. */
7431 FOR_EACH_VEC_ELT (*fn->gimple_df->ssa_names, i, ptr)
7433 if (ptr
7434 && POINTER_TYPE_P (TREE_TYPE (ptr)))
7435 find_what_p_points_to (ptr);
7438 /* Compute the call-use and call-clobber sets for indirect calls
7439 and calls to external functions. */
7440 FOR_EACH_BB_FN (bb, fn)
7442 gimple_stmt_iterator gsi;
7444 for (gsi = gsi_start_bb (bb); !gsi_end_p (gsi); gsi_next (&gsi))
7446 gcall *stmt;
7447 struct pt_solution *pt;
7448 varinfo_t vi, fi;
7449 tree decl;
7451 stmt = dyn_cast <gcall *> (gsi_stmt (gsi));
7452 if (!stmt)
7453 continue;
7455 /* Handle direct calls to functions with body. */
7456 decl = gimple_call_fndecl (stmt);
7457 if (decl
7458 && (fi = lookup_vi_for_tree (decl))
7459 && fi->is_fn_info)
7461 *gimple_call_clobber_set (stmt)
7462 = find_what_var_points_to
7463 (first_vi_for_offset (fi, fi_clobbers));
7464 *gimple_call_use_set (stmt)
7465 = find_what_var_points_to
7466 (first_vi_for_offset (fi, fi_uses));
7468 /* Handle direct calls to external functions. */
7469 else if (decl)
7471 pt = gimple_call_use_set (stmt);
7472 if (gimple_call_flags (stmt) & ECF_CONST)
7473 memset (pt, 0, sizeof (struct pt_solution));
7474 else if ((vi = lookup_call_use_vi (stmt)) != NULL)
7476 *pt = find_what_var_points_to (vi);
7477 /* Escaped (and thus nonlocal) variables are always
7478 implicitly used by calls. */
7479 /* ??? ESCAPED can be empty even though NONLOCAL
7480 always escaped. */
7481 pt->nonlocal = 1;
7482 pt->ipa_escaped = 1;
7484 else
7486 /* If there is nothing special about this call then
7487 we have made everything that is used also escape. */
7488 *pt = ipa_escaped_pt;
7489 pt->nonlocal = 1;
7492 pt = gimple_call_clobber_set (stmt);
7493 if (gimple_call_flags (stmt) & (ECF_CONST|ECF_PURE|ECF_NOVOPS))
7494 memset (pt, 0, sizeof (struct pt_solution));
7495 else if ((vi = lookup_call_clobber_vi (stmt)) != NULL)
7497 *pt = find_what_var_points_to (vi);
7498 /* Escaped (and thus nonlocal) variables are always
7499 implicitly clobbered by calls. */
7500 /* ??? ESCAPED can be empty even though NONLOCAL
7501 always escaped. */
7502 pt->nonlocal = 1;
7503 pt->ipa_escaped = 1;
7505 else
7507 /* If there is nothing special about this call then
7508 we have made everything that is used also escape. */
7509 *pt = ipa_escaped_pt;
7510 pt->nonlocal = 1;
7513 /* Handle indirect calls. */
7514 else if (!decl
7515 && (fi = get_fi_for_callee (stmt)))
7517 /* We need to accumulate all clobbers/uses of all possible
7518 callees. */
7519 fi = get_varinfo (find (fi->id));
7520 /* If we cannot constrain the set of functions we'll end up
7521 calling we end up using/clobbering everything. */
7522 if (bitmap_bit_p (fi->solution, anything_id)
7523 || bitmap_bit_p (fi->solution, nonlocal_id)
7524 || bitmap_bit_p (fi->solution, escaped_id))
7526 pt_solution_reset (gimple_call_clobber_set (stmt));
7527 pt_solution_reset (gimple_call_use_set (stmt));
7529 else
7531 bitmap_iterator bi;
7532 unsigned i;
7533 struct pt_solution *uses, *clobbers;
7535 uses = gimple_call_use_set (stmt);
7536 clobbers = gimple_call_clobber_set (stmt);
7537 memset (uses, 0, sizeof (struct pt_solution));
7538 memset (clobbers, 0, sizeof (struct pt_solution));
7539 EXECUTE_IF_SET_IN_BITMAP (fi->solution, 0, i, bi)
7541 struct pt_solution sol;
7543 vi = get_varinfo (i);
7544 if (!vi->is_fn_info)
7546 /* ??? We could be more precise here? */
7547 uses->nonlocal = 1;
7548 uses->ipa_escaped = 1;
7549 clobbers->nonlocal = 1;
7550 clobbers->ipa_escaped = 1;
7551 continue;
7554 if (!uses->anything)
7556 sol = find_what_var_points_to
7557 (first_vi_for_offset (vi, fi_uses));
7558 pt_solution_ior_into (uses, &sol);
7560 if (!clobbers->anything)
7562 sol = find_what_var_points_to
7563 (first_vi_for_offset (vi, fi_clobbers));
7564 pt_solution_ior_into (clobbers, &sol);
7572 fn->gimple_df->ipa_pta = true;
7575 delete_points_to_sets ();
7577 in_ipa_mode = 0;
7579 return 0;
7582 namespace {
7584 const pass_data pass_data_ipa_pta =
7586 SIMPLE_IPA_PASS, /* type */
7587 "pta", /* name */
7588 OPTGROUP_NONE, /* optinfo_flags */
7589 TV_IPA_PTA, /* tv_id */
7590 0, /* properties_required */
7591 0, /* properties_provided */
7592 0, /* properties_destroyed */
7593 0, /* todo_flags_start */
7594 0, /* todo_flags_finish */
7597 class pass_ipa_pta : public simple_ipa_opt_pass
7599 public:
7600 pass_ipa_pta (gcc::context *ctxt)
7601 : simple_ipa_opt_pass (pass_data_ipa_pta, ctxt)
7604 /* opt_pass methods: */
7605 virtual bool gate (function *)
7607 return (optimize
7608 && flag_ipa_pta
7609 /* Don't bother doing anything if the program has errors. */
7610 && !seen_error ());
7613 virtual unsigned int execute (function *) { return ipa_pta_execute (); }
7615 }; // class pass_ipa_pta
7617 } // anon namespace
7619 simple_ipa_opt_pass *
7620 make_pass_ipa_pta (gcc::context *ctxt)
7622 return new pass_ipa_pta (ctxt);