aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.4.3/gcc/tree-ssa-sccvn.c
diff options
context:
space:
mode:
authorJing Yu <jingyu@google.com>2011-01-30 22:18:29 -0800
committerJing Yu <jingyu@google.com>2011-01-30 22:18:29 -0800
commit4a66e756636cb8364582ea503abd10d76f5b4aa3 (patch)
tree9660204ec085888a0601a6460c967b204a63d5f3 /gcc-4.4.3/gcc/tree-ssa-sccvn.c
parentb6be42e837844cce5283f42fcfac31e6d66a277d (diff)
downloadtoolchain_gcc-4a66e756636cb8364582ea503abd10d76f5b4aa3.tar.gz
toolchain_gcc-4a66e756636cb8364582ea503abd10d76f5b4aa3.tar.bz2
toolchain_gcc-4a66e756636cb8364582ea503abd10d76f5b4aa3.zip
Upgrade gcc-4.4.3 for Android toolchain.
- Backport upstream patches to support arm hardfp. - Backport gcc-4.5 patches to support -march=atom. Now it is able to build atom toolchain with glibc from this branch - Develop a bunch of optimizations - Fix a few arm dejagnu failures To-do list: - Support Android/atom - Fix ia32 bootstrap failure Change-Id: I5e10dcd21620d4d8ca984d1d1707a76067e61691
Diffstat (limited to 'gcc-4.4.3/gcc/tree-ssa-sccvn.c')
-rw-r--r--gcc-4.4.3/gcc/tree-ssa-sccvn.c30
1 files changed, 30 insertions, 0 deletions
diff --git a/gcc-4.4.3/gcc/tree-ssa-sccvn.c b/gcc-4.4.3/gcc/tree-ssa-sccvn.c
index aa70b94d5..c1f71da54 100644
--- a/gcc-4.4.3/gcc/tree-ssa-sccvn.c
+++ b/gcc-4.4.3/gcc/tree-ssa-sccvn.c
@@ -1625,6 +1625,36 @@ set_ssa_val_to (tree from, tree to)
return false;
}
+/* Fix up references to VOP SSANAMEs defined by STMT
+ which is to be removed. This function does not
+ fix up references in VUSE/VDEFs which need to be
+ handled seperately. */
+
+void
+fixup_vdef_ssa_val_refs (gimple stmt)
+{
+ struct voptype_d *vdefs;
+ tree var;
+ int i;
+
+ vdefs = gimple_vdef_ops (stmt);
+ while (vdefs)
+ {
+ tree def_nm;
+ tree prev_nm;
+
+ def_nm = VDEF_RESULT (vdefs);
+ prev_nm = VDEF_OP (vdefs, 0);
+
+ for (i = 0; VEC_iterate (tree, SSANAMES (cfun), i, var); i++)
+ {
+ if (var && SSA_VAL (var) == def_nm)
+ set_ssa_val_to (var, prev_nm);
+ }
+ vdefs = vdefs->next;
+ }
+}
+
/* Set all definitions in STMT to value number to themselves.
Return true if a value number changed. */