aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/ChangeLog
diff options
context:
space:
mode:
authorYiran Wang <yiran@google.com>2015-07-08 09:44:03 -0700
committerYiran Wang <yiran@google.com>2015-07-08 09:59:16 -0700
commit5ae0308a147ec3f6502fd321860524e634a647a6 (patch)
tree91cf8eebe473431852889fc0ee7fcaa2127e8e80 /gcc-4.9/gcc/ChangeLog
parent1d9fec7937f45dde5e04cac966a2d9a12f2fc15a (diff)
downloadtoolchain_gcc-5ae0308a147ec3f6502fd321860524e634a647a6.tar.gz
toolchain_gcc-5ae0308a147ec3f6502fd321860524e634a647a6.tar.bz2
toolchain_gcc-5ae0308a147ec3f6502fd321860524e634a647a6.zip
cherry-pick gcc r217091.
This change is re-based and modified to work with the older context, as the context code is changed a lot in GCC trunk. It is about to insert some barriers on stack-pointer register, so that the adjust-stack-pointer code does not get scheduled before any code in the fuction epilogue, which may access some stack space without explicit use of stack pointer. Examples are a load from an auto array and some access to an area of alloca. Anyway, the barriers would make all such alias dependences not violated. For more details, please refer to GCC bug 63293. (Personally I think there may be a bit too many barriers generated.) Change-Id: I61ea54e500b6965feab69a62165d10b6c3a21c20
Diffstat (limited to 'gcc-4.9/gcc/ChangeLog')
-rw-r--r--gcc-4.9/gcc/ChangeLog7
1 files changed, 7 insertions, 0 deletions
diff --git a/gcc-4.9/gcc/ChangeLog b/gcc-4.9/gcc/ChangeLog
index a6c51d36b..c8a6ad1fe 100644
--- a/gcc-4.9/gcc/ChangeLog
+++ b/gcc-4.9/gcc/ChangeLog
@@ -836,6 +836,13 @@
(write_dependence_p): Ditto.
(may_alias_p): Ditto.
+2014-11-04 Jiong Wang <jiong.wang@arm.com>
+2014-11-04 Wilco Dijkstra <wilco.dijkstra@arm.com>
+
+ PR target/63293
+ * config/aarch64/aarch64.c (aarch64_expand_epiloue): Add barriers before
+ stack adjustment.
+
2014-10-31 DJ Delorie <dj@redhat.com>
* expmed.c (strict_volatile_bitfield_p): Fix off-by-one error.