aboutsummaryrefslogtreecommitdiff
path: root/gcc/tree-ssa-copy.c
blob: 027cde018d273059c9e6d47a955e2d92da7ba9c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
/* Const/copy propagation and SSA_NAME replacement support routines.
   Copyright (C) 2004 Free Software Foundation, Inc.

This file is part of GCC.

GCC is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2, or (at your option)
any later version.

GCC is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with GCC; see the file COPYING.  If not, write to
the Free Software Foundation, 59 Temple Place - Suite 330,
Boston, MA 02111-1307, USA.  */

#include "config.h"
#include "system.h"
#include "coretypes.h"
#include "tm.h"
#include "tree.h"
#include "flags.h"
#include "rtl.h"
#include "tm_p.h"
#include "ggc.h"
#include "basic-block.h"
#include "output.h"
#include "errors.h"
#include "expr.h"
#include "function.h"
#include "diagnostic.h"
#include "timevar.h"
#include "tree-dump.h"
#include "tree-flow.h"
#include "tree-pass.h"
#include "langhooks.h"

/* This file provides a handful of interfaces for performing const/copy
   propagation and simple expression replacement which keep variable
   annotations up-to-date.

   We require that for any copy operation where the RHS and LHS have
   a non-null memory tag that the memory tag be the same.   It is OK
   for one or both of the memory tags to be NULL.

   We also require tracking if a variable is dereferenced in a load or
   store operation.

   We enforce these requirements by having all copy propagation and
   replacements of one SSA_NAME with a different SSA_NAME to use the
   APIs defined in this file.  */

/* Given two SSA_NAMEs, replace the one pointed to by OP_P with VAR.

   If *OP_P is a pointer, copy the memory tag used originally by *OP_P into
   VAR.  This is needed in cases where VAR had never been dereferenced in the
   program.

   If FOR_PROPAGATION is true, then perform additional checks to ensure
   that const/copy propagation of var for *OP_P is valid.  */
   
static void
replace_ssa_names (tree *op_p,
		   tree var,
		   bool for_propagation ATTRIBUTE_UNUSED)
{
#if defined ENABLE_CHECKING
  if (for_propagation && !may_propagate_copy (*op_p, var))
    abort ();
#endif

  /* If VAR doesn't have a memory tag, copy the one from the original
     operand.  Also copy the dereferenced flags.  */
  if (POINTER_TYPE_P (TREE_TYPE (*op_p)))
    {
      var_ann_t new_ann = var_ann (SSA_NAME_VAR (var));
      var_ann_t orig_ann = var_ann (SSA_NAME_VAR (*op_p));

      if (new_ann->type_mem_tag == NULL_TREE)
	new_ann->type_mem_tag = orig_ann->type_mem_tag;
      else if (orig_ann->type_mem_tag == NULL_TREE)
	orig_ann->type_mem_tag = new_ann->type_mem_tag;
      else if (new_ann->type_mem_tag != orig_ann->type_mem_tag)
	abort ();
    }

  *op_p = var;
}

/* Common code for propagate_value and replace_exp.

   Replace *OP_P with VAL.  FOR_PROPAGATION indicates if the replacement
   is done to propagate a value or not.  */

static void
replace_exp_1 (tree *op_p, tree val, bool for_propagation)
{
  if (TREE_CODE (val) == SSA_NAME)
    {
      if (TREE_CODE (*op_p) == SSA_NAME)
	replace_ssa_names (op_p, val, for_propagation);
      else
	*op_p = val;
    }
  else
    *op_p = lhd_unsave_expr_now (val);
}

/* Propagate the value VAL (assumed to be a constant or another SSA_NAME)
   into the operand pointed by OP_P.

   Use this version for const/copy propagation as it will perform additional
   checks to ensure validity of the const/copy propagation.  */

void
propagate_value (tree *op_p, tree val)
{
  replace_exp_1 (op_p, val, true);
}

/* Replace *OP_P with value VAL (assumed to be a constant or another SSA_NAME).

   Use this version when not const/copy propagating values.  For example,
   PRE uses this version when building expressions as they would appear
   in specific blocks taking into account actions of PHI nodes.  */

void
replace_exp (tree *op_p, tree val)
{
  replace_exp_1 (op_p, val, false);
}

/* CONST_AND_COPIES is a table which maps an SSA_NAME to the current
   known value for that SSA_NAME (or NULL if no value is known).  

   Propagate values from CONST_AND_COPIES into the uses, vuses and
   vdef_ops of STMT.  */

bool
cprop_into_stmt (tree stmt, varray_type const_and_copies)
{
  size_t i, table_size[3];
  vuse_optype vuses;
  vdef_optype vdefs;
  use_optype uses;
  bool may_have_exposed_new_symbols = false;
  stmt_ann_t ann = stmt_ann (stmt);
  int table_index;

  uses = USE_OPS (ann);
  vuses = VUSE_OPS (ann);
  vdefs = VDEF_OPS (ann);

  /* Const/copy propagate into USES, VUSES and the RHS of VDEFs.  */
  table_size[0] = NUM_USES (uses);
  table_size[1] = NUM_VUSES (vuses);
  table_size[2] = NUM_VDEFS (vdefs);
  for (table_index = 0; table_index < 3; table_index++)
    {
      for (i = 0; i < table_size[table_index]; i++)
	{
	  tree val;
	  tree *op_p;

	  switch (table_index)
	  {
	    case 0:
	      op_p = USE_OP_PTR (uses, i);
	      break;
	    case 1:
	      op_p = VUSE_OP_PTR (vuses, i);
	      break;
	    case 2:
	      op_p = VDEF_OP_PTR (vdefs, i);
	      break;
	    default:
	      abort();
	  }

	  /* If the operand is not an ssa variable, then there is nothing
	     to do.  */
	  if (TREE_CODE (*op_p) != SSA_NAME)
	    continue;

	  /* If the operand has a known constant value or it is known to be a
	     copy of some other variable, use the value or copy stored in
	     CONST_AND_COPIES.  */
	  val = VARRAY_TREE (const_and_copies, SSA_NAME_VERSION (*op_p));
	  if (val)
	    {
	      tree op_type, val_type;

	      /* Do not change the base variable in the virtual operand
		 tables.  That would make it impossible to reconstruct
		 the renamed virtual operand if we later modify this
		 statement.  Also only allow the new value to be an SSA_NAME
		 for propagation into virtual operands.  */
	      if (table_index > 0
		  && (get_virtual_var (val) != get_virtual_var (*op_p)
		      || TREE_CODE (val) != SSA_NAME))
		continue;

	      /* Get the toplevel type of each operand.  */
	      op_type = TREE_TYPE (*op_p);
	      val_type = TREE_TYPE (val);

	      /* While both types are pointers, get the type of the object
		 pointed to.  */
	      while (POINTER_TYPE_P (op_type) && POINTER_TYPE_P (val_type))
		{
		  op_type = TREE_TYPE (op_type);
		  val_type = TREE_TYPE (val_type);
		}

	      /* Make sure underlying types match before propagating a
		 constant by converting the constant to the proper type.  Note
		 that convert may return a non-gimple expression, in which case
		 we ignore this propagation opportunity.  */
	     if (!lang_hooks.types_compatible_p (op_type, val_type)
	           && TREE_CODE (val) != SSA_NAME)
		{
		  val = convert (TREE_TYPE (*op_p), val);
		  if (!is_gimple_min_invariant (val)
		      && TREE_CODE (val) != SSA_NAME)
		    continue;
		}

	      /* Certain operands are not allowed to be copy propagated due
		 to their interaction with exception handling and some GCC
		 extensions.  */
	      if (TREE_CODE (val) == SSA_NAME
		  && !may_propagate_copy (*op_p, val))
		continue;

	      /* Dump details.  */
	      if (dump_file && (dump_flags & TDF_DETAILS))
		{
		  fprintf (dump_file, "  Replaced '");
		  print_generic_expr (dump_file, *op_p, dump_flags);
		  fprintf (dump_file, "' with %s '",
			   (TREE_CODE (val) != SSA_NAME
			      ? "constant" : "variable"));
		  print_generic_expr (dump_file, val, dump_flags);
		  fprintf (dump_file, "'\n");
		}

	      /* If VAL is an ADDR_EXPR or a constant of pointer type, note
		 that we may have exposed a new symbol for SSA renaming.  */
	      if (TREE_CODE (val) == ADDR_EXPR
		  || (POINTER_TYPE_P (TREE_TYPE (*op_p))
		      && is_gimple_min_invariant (val)))
		may_have_exposed_new_symbols = true;

	      propagate_value (op_p, val);

	      /* And note that we modified this statement.  This is now
		 safe, even if we changed virtual operands since we will
		 rescan the statement and rewrite its operands again.  */
	      ann->modified = 1;
	    }
	}
    }

  return may_have_exposed_new_symbols;
}

/* CONST_AND_COPIES is a table which maps an SSA_NAME to the current
   known value for that SSA_NAME (or NULL if no value is known).  

   Propagate values from CONST_AND_COPIES into the PHI nodes of the
   successors of BB.  */

void
cprop_into_successor_phis (basic_block bb, varray_type const_and_copies)
{
  edge e;

  /* This can get rather expensive if the implementation is naive in
     how it finds the phi alternative associated with a particular edge.  */
  for (e = bb->succ; e; e = e->succ_next)
    {
      tree phi;
      int phi_num_args;
      int hint;

      /* If this is an abnormal edge, then we do not want to copy propagate
	 into the PHI alternative associated with this edge.  */
      if (e->flags & EDGE_ABNORMAL)
	continue;

      phi = phi_nodes (e->dest);
      if (! phi)
	continue;

      /* There is no guarantee that for any two PHI nodes in a block that
	 the phi alternative associated with a particular edge will be
	 at the same index in the phi alternative array.

	 However, it is very likely they will be the same.  So we keep
	 track of the index of the alternative where we found the edge in
	 the previous phi node and check that index first in the next
	 phi node.  If that hint fails, then we actually search all
	 the entries.  */
      phi_num_args = PHI_NUM_ARGS (phi);
      hint = phi_num_args;
      for ( ; phi; phi = TREE_CHAIN (phi))
	{
	  int i;
	  tree new;
	  tree *orig_p;

	  /* If the hint is valid (!= phi_num_args), see if it points
	     us to the desired phi alternative.  */
	  if (hint != phi_num_args && PHI_ARG_EDGE (phi, hint) == e)
	    ;
	  else
	    {
	      /* The hint was either invalid or did not point to the
		 correct phi alternative.  Search all the alternatives
		 for the correct one.  Update the hint.  */
	      for (i = 0; i < phi_num_args; i++)
		if (PHI_ARG_EDGE (phi, i) == e)
		  break;
	      hint = i;
	    }

#ifdef ENABLE_CHECKING
	  /* If we did not find the proper alternative, then something is
	     horribly wrong.  */
	  if (hint == phi_num_args)
	    abort ();
#endif

	  /* The alternative may be associated with a constant, so verify
	     it is an SSA_NAME before doing anything with it.  */
	  orig_p = &PHI_ARG_DEF (phi, hint);
	  if (TREE_CODE (*orig_p) != SSA_NAME)
	    continue;

	  /* If we have *ORIG_P in our constant/copy table, then replace
	     ORIG_P with its value in our constant/copy table.  */
	  new = VARRAY_TREE (const_and_copies, SSA_NAME_VERSION (*orig_p));
	  if (new
	      && (TREE_CODE (new) == SSA_NAME
		  || is_gimple_min_invariant (new))
	      && may_propagate_copy (*orig_p, new))
	    propagate_value (orig_p, new);
	}
    }
}