1 /* Const/copy propagation and SSA_NAME replacement support routines.
2 Copyright (C) 2004 Free Software Foundation, Inc.
4 This file is part of GCC.
6 GCC is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
11 GCC is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GCC; see the file COPYING. If not, write to
18 the Free Software Foundation, 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. */
23 #include "coretypes.h"
30 #include "basic-block.h"
35 #include "diagnostic.h"
37 #include "tree-dump.h"
38 #include "tree-flow.h"
39 #include "tree-pass.h"
40 #include "langhooks.h"
42 /* This file provides a handful of interfaces for performing const/copy
43 propagation and simple expression replacement which keep variable
44 annotations up-to-date.
46 We require that for any copy operation where the RHS and LHS have
47 a non-null memory tag that the memory tag be the same. It is OK
48 for one or both of the memory tags to be NULL.
50 We also require tracking if a variable is dereferenced in a load or
53 We enforce these requirements by having all copy propagation and
54 replacements of one SSA_NAME with a different SSA_NAME to use the
55 APIs defined in this file. */
58 /* Return true if we may propagate ORIG into DEST, false otherwise. */
61 may_propagate_copy (tree dest
, tree orig
)
63 tree type_d
= TREE_TYPE (dest
);
64 tree type_o
= TREE_TYPE (orig
);
66 /* Do not copy between types for which we *do* need a conversion. */
67 if (!tree_ssa_useless_type_conversion_1 (type_d
, type_o
))
70 /* FIXME. GIMPLE is allowing pointer assignments and comparisons of
71 pointers that have different alias sets. This means that these
72 pointers will have different memory tags associated to them.
74 If we allow copy propagation in these cases, statements de-referencing
75 the new pointer will now have a reference to a different memory tag
76 with potentially incorrect SSA information.
78 This was showing up in libjava/java/util/zip/ZipFile.java with code
81 struct java.io.BufferedInputStream *T.660;
82 struct java.io.BufferedInputStream *T.647;
83 struct java.io.InputStream *is;
84 struct java.io.InputStream *is.662;
87 is = T.660; <-- This ought to be type-casted
90 Also, f/name.c exposed a similar problem with a COND_EXPR predicate
91 that was causing DOM to generate and equivalence with two pointers of
92 alias-incompatible types:
94 struct _ffename_space *n;
103 I think that GIMPLE should emit the appropriate type-casts. For the
104 time being, blocking copy-propagation in these cases is the safe thing
106 if (TREE_CODE (dest
) == SSA_NAME
&& TREE_CODE (orig
) == SSA_NAME
107 && POINTER_TYPE_P (type_d
) && POINTER_TYPE_P (type_o
))
109 tree mt_dest
= var_ann (SSA_NAME_VAR (dest
))->type_mem_tag
;
110 tree mt_orig
= var_ann (SSA_NAME_VAR (orig
))->type_mem_tag
;
111 if (mt_dest
&& mt_orig
&& mt_dest
!= mt_orig
)
113 else if (!lang_hooks
.types_compatible_p (type_d
, type_o
))
115 else if (!alias_sets_conflict_p (get_alias_set (type_d
),
116 get_alias_set (type_o
)))
120 /* If the destination is a SSA_NAME for a virtual operand, then we have
121 some special cases to handle. */
122 if (TREE_CODE (dest
) == SSA_NAME
&& !is_gimple_reg (dest
))
124 /* If both operands are SSA_NAMEs referring to virtual operands, then
125 we can always propagate. */
126 if (TREE_CODE (orig
) == SSA_NAME
)
128 if (!is_gimple_reg (orig
))
131 #ifdef ENABLE_CHECKING
132 /* If we have one real and one virtual operand, then something has
133 gone terribly wrong. */
134 if (is_gimple_reg (orig
))
139 /* We have a "copy" from something like a constant into a virtual
140 operand. Reject these. */
144 /* If ORIG flows in from an abnormal edge, it cannot be propagated. */
145 if (TREE_CODE (orig
) == SSA_NAME
146 && SSA_NAME_OCCURS_IN_ABNORMAL_PHI (orig
))
149 /* If DEST is an SSA_NAME that flows from an abnormal edge or if it
150 represents a hard register, then it cannot be replaced. */
151 if (TREE_CODE (dest
) == SSA_NAME
152 && (SSA_NAME_OCCURS_IN_ABNORMAL_PHI (dest
)
153 || DECL_HARD_REGISTER (SSA_NAME_VAR (dest
))))
156 /* Anything else is OK. */
161 /* Given two SSA_NAMEs pointers ORIG and NEW such that we are copy
162 propagating NEW into ORIG, consolidate aliasing information so that
163 they both share the same memory tags. */
166 merge_alias_info (tree orig
, tree
new)
168 tree new_sym
= SSA_NAME_VAR (new);
169 tree orig_sym
= SSA_NAME_VAR (orig
);
170 var_ann_t new_ann
= var_ann (new_sym
);
171 var_ann_t orig_ann
= var_ann (orig_sym
);
173 #if defined ENABLE_CHECKING
174 if (!POINTER_TYPE_P (TREE_TYPE (orig
))
175 || !POINTER_TYPE_P (TREE_TYPE (new))
176 || !lang_hooks
.types_compatible_p (TREE_TYPE (orig
), TREE_TYPE (new)))
179 /* If the pointed-to alias sets are different, these two pointers
180 would never have the same memory tag. In this case, NEW should
181 not have been propagated into ORIG. */
182 if (get_alias_set (TREE_TYPE (TREE_TYPE (new_sym
)))
183 != get_alias_set (TREE_TYPE (TREE_TYPE (orig_sym
))))
187 /* Merge type-based alias info. */
188 if (new_ann
->type_mem_tag
== NULL_TREE
)
189 new_ann
->type_mem_tag
= orig_ann
->type_mem_tag
;
190 else if (orig_ann
->type_mem_tag
== NULL_TREE
)
191 orig_ann
->type_mem_tag
= new_ann
->type_mem_tag
;
192 else if (new_ann
->type_mem_tag
!= orig_ann
->type_mem_tag
)
197 /* Common code for propagate_value and replace_exp.
199 Replace use operand OP_P with VAL. FOR_PROPAGATION indicates if the
200 replacement is done to propagate a value or not. */
203 replace_exp_1 (use_operand_p op_p
, tree val
,
204 bool for_propagation ATTRIBUTE_UNUSED
)
206 tree op
= USE_FROM_PTR (op_p
);
208 #if defined ENABLE_CHECKING
210 && TREE_CODE (op
) == SSA_NAME
211 && TREE_CODE (val
) == SSA_NAME
212 && !may_propagate_copy (op
, val
))
216 if (TREE_CODE (val
) == SSA_NAME
)
218 if (TREE_CODE (op
) == SSA_NAME
&& POINTER_TYPE_P (TREE_TYPE (op
)))
219 merge_alias_info (op
, val
);
223 SET_USE (op_p
, unsave_expr_now (val
));
227 /* Propagate the value VAL (assumed to be a constant or another SSA_NAME)
228 into the operand pointed by OP_P.
230 Use this version for const/copy propagation as it will perform additional
231 checks to ensure validity of the const/copy propagation. */
234 propagate_value (use_operand_p op_p
, tree val
)
236 replace_exp_1 (op_p
, val
, true);
240 /* Propagate the value VAL (assumed to be a constant or another SSA_NAME)
241 into the tree pointed by OP_P.
243 Use this version for const/copy propagation when SSA operands are not
244 available. It will perform the additional checks to ensure validity of
245 the const/copy propagation, but will not update any operand information.
246 Be sure to mark the stmt as modified. */
249 propagate_tree_value (tree
*op_p
, tree val
)
251 #if defined ENABLE_CHECKING
252 if (TREE_CODE (val
) == SSA_NAME
253 && TREE_CODE (*op_p
) == SSA_NAME
254 && !may_propagate_copy (*op_p
, val
))
258 if (TREE_CODE (val
) == SSA_NAME
)
260 if (TREE_CODE (*op_p
) == SSA_NAME
&& POINTER_TYPE_P (TREE_TYPE (*op_p
)))
261 merge_alias_info (*op_p
, val
);
265 *op_p
= unsave_expr_now (val
);
269 /* Replace *OP_P with value VAL (assumed to be a constant or another SSA_NAME).
271 Use this version when not const/copy propagating values. For example,
272 PRE uses this version when building expressions as they would appear
273 in specific blocks taking into account actions of PHI nodes. */
276 replace_exp (use_operand_p op_p
, tree val
)
278 replace_exp_1 (op_p
, val
, false);