/hg/release/icedtea7-forest-2.6/hotspot: 3 new changesets
andrew at icedtea.classpath.org
andrew at icedtea.classpath.org
Fri Oct 28 02:56:02 UTC 2016
changeset b2f113534842 in /hg/release/icedtea7-forest-2.6/hotspot
details: http://icedtea.classpath.org/hg/release/icedtea7-forest-2.6/hotspot?cmd=changeset;node=b2f113534842
author: andrew
date: Thu Oct 27 06:57:51 2016 +0100
PR3211: AArch64 build fails with pre-compiled headers disabled
Contributed-by: Tiago St?rmer Daitx <tdaitx at gmail.com>
changeset 6b87ff3af68f in /hg/release/icedtea7-forest-2.6/hotspot
details: http://icedtea.classpath.org/hg/release/icedtea7-forest-2.6/hotspot?cmd=changeset;node=6b87ff3af68f
author: andrew
date: Fri Oct 28 02:39:04 2016 +0100
PR3209: Backed out changeset 0771982261c9
changeset 4fe1f6b9a13b in /hg/release/icedtea7-forest-2.6/hotspot
details: http://icedtea.classpath.org/hg/release/icedtea7-forest-2.6/hotspot?cmd=changeset;node=4fe1f6b9a13b
author: andrew
date: Fri Oct 28 03:58:19 2016 +0100
Added tag icedtea-2.6.8pre01 for changeset 6b87ff3af68f
diffstat:
.hgtags | 1 +
src/cpu/aarch64/vm/assembler_aarch64.cpp | 1 +
src/cpu/aarch64/vm/vm_version_aarch64.cpp | 3 +++
src/share/vm/opto/lcm.cpp | 7 ++-----
4 files changed, 7 insertions(+), 5 deletions(-)
diffs (52 lines):
diff -r 0771982261c9 -r 4fe1f6b9a13b .hgtags
--- a/.hgtags Wed Oct 26 05:40:47 2016 +0100
+++ b/.hgtags Fri Oct 28 03:58:19 2016 +0100
@@ -895,3 +895,4 @@
14d0f4da4a74897fc3274f8f549f41544bb4625a jdk7u111-b00
9efa3fae3c278a7f48badec775d7f9b2d5320b6d jdk7u111-b01
75297b84957ed87867b0863be1a895a0de76d994 icedtea-2.6.7
+6b87ff3af68f636e473e2254c8e9a8c36ca514a6 icedtea-2.6.8pre01
diff -r 0771982261c9 -r 4fe1f6b9a13b src/cpu/aarch64/vm/assembler_aarch64.cpp
--- a/src/cpu/aarch64/vm/assembler_aarch64.cpp Wed Oct 26 05:40:47 2016 +0100
+++ b/src/cpu/aarch64/vm/assembler_aarch64.cpp Fri Oct 28 03:58:19 2016 +0100
@@ -64,6 +64,7 @@
#include "gc_implementation/g1/heapRegion.hpp"
#endif
+#include "opto/compile.hpp"
extern "C" void entry(CodeBuffer *cb);
diff -r 0771982261c9 -r 4fe1f6b9a13b src/cpu/aarch64/vm/vm_version_aarch64.cpp
--- a/src/cpu/aarch64/vm/vm_version_aarch64.cpp Wed Oct 26 05:40:47 2016 +0100
+++ b/src/cpu/aarch64/vm/vm_version_aarch64.cpp Fri Oct 28 03:58:19 2016 +0100
@@ -25,6 +25,9 @@
*/
#include "precompiled.hpp"
+#include "asm/assembler.hpp"
+#include "asm/assembler.inline.hpp"
+#include "utilities/sizes.hpp"
#include "assembler_aarch64.hpp"
#include "memory/resourceArea.hpp"
#include "runtime/java.hpp"
diff -r 0771982261c9 -r 4fe1f6b9a13b src/share/vm/opto/lcm.cpp
--- a/src/share/vm/opto/lcm.cpp Wed Oct 26 05:40:47 2016 +0100
+++ b/src/share/vm/opto/lcm.cpp Fri Oct 28 03:58:19 2016 +0100
@@ -1068,14 +1068,11 @@
Block *sb = _succs[i];
// Clone the entire area; ignoring the edge fixup for now.
for( uint j = end; j > beg; j-- ) {
+ // It is safe here to clone a node with anti_dependence
+ // since clones dominate on each path.
Node *clone = _nodes[j-1]->clone();
sb->_nodes.insert( 1, clone );
bbs.map(clone->_idx,sb);
-#ifdef AARCH64
- if (clone->needs_anti_dependence_check()) {
- insert_anti_dependences(sb, clone);
- }
-#endif
}
}
More information about the distro-pkg-dev
mailing list