/hg/release/icedtea7-forest-2.5/hotspot: 2 new changesets

andrew at icedtea.classpath.org andrew at icedtea.classpath.org
Thu Jun 5 21:21:10 UTC 2014


changeset d2b1b4cda049 in /hg/release/icedtea7-forest-2.5/hotspot
details: http://icedtea.classpath.org/hg/release/icedtea7-forest-2.5/hotspot?cmd=changeset;node=d2b1b4cda049
author: andrew
date: Thu Jun 05 16:52:33 2014 +0100

	Added tag icedtea-2.5pre07 for changeset f106b1f551d7


changeset 5dc3dd2819c8 in /hg/release/icedtea7-forest-2.5/hotspot
details: http://icedtea.classpath.org/hg/release/icedtea7-forest-2.5/hotspot?cmd=changeset;node=5dc3dd2819c8
author: andrew
date: Thu Jun 05 22:19:11 2014 +0100

	PR1835: Missing file in backport of ppc64le JIT support


diffstat:

 .hgtags                                            |   1 +
 src/os_cpu/linux_ppc/vm/bytes_linux_ppc.inline.hpp |  39 ++++++++++++++++++++++
 2 files changed, 40 insertions(+), 0 deletions(-)

diffs (51 lines):

diff -r f106b1f551d7 -r 5dc3dd2819c8 .hgtags
--- a/.hgtags	Wed Jun 04 15:54:23 2014 +0100
+++ b/.hgtags	Thu Jun 05 22:19:11 2014 +0100
@@ -680,3 +680,4 @@
 617a6338e0c4f7699eed5061d7e8f576c3ace029 jdk7u60-b17
 361493c7cdb5f75b28efc63389d6cebaaaa43a2c jdk7u60-b19
 13f561930b3e80a94e2baddc51dfc6c43c5ca601 jdk7u60-b30
+f106b1f551d7ae8ef8d493b87818ada0f0bcdd8f icedtea-2.5pre07
diff -r f106b1f551d7 -r 5dc3dd2819c8 src/os_cpu/linux_ppc/vm/bytes_linux_ppc.inline.hpp
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/os_cpu/linux_ppc/vm/bytes_linux_ppc.inline.hpp	Thu Jun 05 22:19:11 2014 +0100
@@ -0,0 +1,39 @@
+/*
+ * Copyright (c) 2002, 2013, Oracle and/or its affiliates. All rights reserved.
+ * Copyright 2014 Google Inc.  All rights reserved.
+ * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+ *
+ * This code is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU General Public License version 2 only, as
+ * published by the Free Software Foundation.
+ *
+ * This code 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
+ * version 2 for more details (a copy is included in the LICENSE file that
+ * accompanied this code).
+ *
+ * You should have received a copy of the GNU General Public License version
+ * 2 along with this work; if not, write to the Free Software Foundation,
+ * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
+ *
+ * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
+ * or visit www.oracle.com if you need additional information or have any
+ * questions.
+ *
+ */
+
+#ifndef OS_CPU_LINUX_PPC_VM_BYTES_LINUX_PPC_INLINE_HPP
+#define OS_CPU_LINUX_PPC_VM_BYTES_LINUX_PPC_INLINE_HPP
+
+#if defined(VM_LITTLE_ENDIAN)
+#include <byteswap.h>
+
+// Efficient swapping of data bytes from Java byte
+// ordering to native byte ordering and vice versa.
+inline u2 Bytes::swap_u2(u2 x) { return bswap_16(x); }
+inline u4 Bytes::swap_u4(u4 x) { return bswap_32(x); }
+inline u8 Bytes::swap_u8(u8 x) { return bswap_64(x); }
+#endif // VM_LITTLE_ENDIAN
+
+#endif // OS_CPU_LINUX_PPC_VM_BYTES_LINUX_PPC_INLINE_HPP


More information about the distro-pkg-dev mailing list