2015-06-11 Paul Thomas <pault@gcc.gnu.org>
[official-gcc.git] / gcc / tree-ssa-scopedtables.c
blob16f279da58794cb7460e55360790952d7ab417da
1 /* Header file for SSA dominator optimizations.
2 Copyright (C) 2013-2015 Free Software Foundation, Inc.
4 This file is part of GCC.
6 GCC is free software; you can redistribute it and/or modify it under
7 the terms of the GNU General Public License as published by the Free
8 Software Foundation; either version 3, or (at your option) any later
9 version.
11 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
12 WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14 for more details.
16 You should have received a copy of the GNU General Public License
17 along with GCC; see the file COPYING3. If not see
18 <http://www.gnu.org/licenses/>. */
20 #include "config.h"
21 #include "system.h"
22 #include "coretypes.h"
23 #include "tm.h"
24 #include "input.h"
25 #include "alias.h"
26 #include "symtab.h"
27 #include "tree.h"
28 #include "tree-pretty-print.h"
29 #include "tree-pass.h"
30 #include "tree-ssa-scopedtables.h"
31 #include "tree-ssa-threadedge.h"
33 const_and_copies::const_and_copies (FILE *file, int flags)
35 stack.create (20);
36 dump_file = file;
37 dump_flags = flags;
40 /* Pop entries off the stack until we hit the NULL marker.
41 For each entry popped, use the SRC/DEST pair to restore
42 SRC to its prior value. */
44 void
45 const_and_copies::pop_to_marker (void)
47 while (stack.length () > 0)
49 tree prev_value, dest;
51 dest = stack.pop ();
53 /* A NULL value indicates we should stop unwinding, otherwise
54 pop off the next entry as they're recorded in pairs. */
55 if (dest == NULL)
56 break;
58 if (dump_file && (dump_flags & TDF_DETAILS))
60 fprintf (dump_file, "<<<< COPY ");
61 print_generic_expr (dump_file, dest, 0);
62 fprintf (dump_file, " = ");
63 print_generic_expr (dump_file, SSA_NAME_VALUE (dest), 0);
64 fprintf (dump_file, "\n");
67 prev_value = stack.pop ();
68 set_ssa_name_value (dest, prev_value);
72 /* Record that X has the value Y. */
74 void
75 const_and_copies::record_const_or_copy (tree x, tree y)
77 record_const_or_copy (x, y, SSA_NAME_VALUE (x));
80 /* Record that X has the value Y and that X's previous value is PREV_X. */
82 void
83 const_and_copies::record_const_or_copy (tree x, tree y, tree prev_x)
85 /* Y may be NULL if we are invalidating entries in the table. */
86 if (y && TREE_CODE (y) == SSA_NAME)
88 tree tmp = SSA_NAME_VALUE (y);
89 y = tmp ? tmp : y;
92 if (dump_file && (dump_flags & TDF_DETAILS))
94 fprintf (dump_file, "0>>> COPY ");
95 print_generic_expr (dump_file, x, 0);
96 fprintf (dump_file, " = ");
97 print_generic_expr (dump_file, y, 0);
98 fprintf (dump_file, "\n");
101 set_ssa_name_value (x, y);
102 stack.reserve (2);
103 stack.quick_push (prev_x);
104 stack.quick_push (x);
107 /* A new value has been assigned to LHS. If necessary, invalidate any
108 equivalences that are no longer valid. This includes invaliding
109 LHS and any objects that are currently equivalent to LHS.
111 Finding the objects that are currently marked as equivalent to LHS
112 is a bit tricky. We could walk the ssa names and see if any have
113 SSA_NAME_VALUE that is the same as LHS. That's expensive.
115 However, it's far more efficient to look at the unwinding stack as
116 that will have all context sensitive equivalences which are the only
117 ones that we really have to worry about here. */
118 void
119 const_and_copies::invalidate (tree lhs)
122 /* The stack is an unwinding stack. If the current element is NULL
123 then it's a "stop unwinding" marker. Else the current marker is
124 the SSA_NAME with an equivalence and the prior entry in the stack
125 is what the current element is equivalent to. */
126 for (int i = stack.length() - 1; i >= 0; i--)
128 /* Ignore the stop unwinding markers. */
129 if ((stack)[i] == NULL)
130 continue;
132 /* We want to check the current value of stack[i] to see if
133 it matches LHS. If so, then invalidate. */
134 if (SSA_NAME_VALUE ((stack)[i]) == lhs)
135 record_const_or_copy ((stack)[i], NULL_TREE);
137 /* Remember, we're dealing with two elements in this case. */
138 i--;
141 /* And invalidate any known value for LHS itself. */
142 if (SSA_NAME_VALUE (lhs))
143 record_const_or_copy (lhs, NULL_TREE);