/hg/icedtea6: Make Thumb2 JIT the default build

enevill at icedtea.classpath.org enevill at icedtea.classpath.org
Tue Feb 9 01:15:39 PST 2010


changeset 748156804502 in /hg/icedtea6
details: http://icedtea.classpath.org/hg/icedtea6?cmd=changeset;node=748156804502
author: Edward Nevill <ed at camswl.com>
date: Tue Feb 09 09:15:27 2010 +0000

	Make Thumb2 JIT the default build


diffstat:

3 files changed, 15 insertions(+)
ChangeLog                                          |    5 +++++
ports/hotspot/src/cpu/zero/vm/cppInterpreter_arm.S |    5 +++++
ports/hotspot/src/cpu/zero/vm/thumb2.cpp           |    5 +++++

diffs (42 lines):

diff -r c399b5cbbbaf -r 748156804502 ChangeLog
--- a/ChangeLog	Wed Feb 03 11:59:46 2010 -0500
+++ b/ChangeLog	Tue Feb 09 09:15:27 2010 +0000
@@ -1,3 +1,8 @@ 2010-02-03  Deepak Bhole <dbhole at redhat.
+2010-02-09  Edward Nevill <ed at camswl.com>
+
+	* cppInterpreter_arm.S / thumb2.cpp
+	Make Thumb2 JIT the default build
+
 2010-02-03  Deepak Bhole <dbhole at redhat.com>
 
 	* plugin/icedteanp/IcedTeaNPPlugin.cc 
diff -r c399b5cbbbaf -r 748156804502 ports/hotspot/src/cpu/zero/vm/cppInterpreter_arm.S
--- a/ports/hotspot/src/cpu/zero/vm/cppInterpreter_arm.S	Wed Feb 03 11:59:46 2010 -0500
+++ b/ports/hotspot/src/cpu/zero/vm/cppInterpreter_arm.S	Tue Feb 09 09:15:27 2010 +0000
@@ -14,6 +14,11 @@
 @ 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.
+
+#undef THUMB2EE
+#if !defined(DISABLE_THUMB2) && defined(HOTSPOT_ASM) && !defined(SHARK)
+#define THUMB2EE
+#endif
 
 #ifdef HOTSPOT_ASM
 
diff -r c399b5cbbbaf -r 748156804502 ports/hotspot/src/cpu/zero/vm/thumb2.cpp
--- a/ports/hotspot/src/cpu/zero/vm/thumb2.cpp	Wed Feb 03 11:59:46 2010 -0500
+++ b/ports/hotspot/src/cpu/zero/vm/thumb2.cpp	Tue Feb 09 09:15:27 2010 +0000
@@ -15,6 +15,11 @@
  * 2 along with this work; if not, write to the Free Software Foundation,
  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  */
+
+#undef THUMB2EE
+#if !defined(DISABLE_THUMB2) && defined(HOTSPOT_ASM) && !defined(SHARK)
+#define THUMB2EE
+#endif
 
 #ifdef THUMB2EE
 



More information about the distro-pkg-dev mailing list