changeset in /hg/icedtea: 2008-01-31 Gary Benson <gbenson at redh...

Gary Benson gbenson at redhat.com
Thu Jan 31 06:04:55 PST 2008


changeset 6167708eea3d in /hg/icedtea
details: http://icedtea.classpath.org/hg/icedtea?cmd=changeset;node=6167708eea3d
description:
	2008-01-31  Gary Benson  <gbenson at redhat.com>

		* ports/hotspot/src/cpu/zero/vm/bytecodeInterpreter_zero.hpp
		(LOTS_OF_REGS): Define as appropriate for lots of targets.

diffstat:

2 files changed, 8 insertions(+), 1 deletion(-)
ChangeLog                                                  |    5 +++++
ports/hotspot/src/cpu/zero/vm/bytecodeInterpreter_zero.hpp |    4 +++-

diffs (27 lines):

diff -r 36c1000392c9 -r 6167708eea3d ChangeLog
--- a/ChangeLog	Thu Jan 31 13:56:43 2008 +0000
+++ b/ChangeLog	Thu Jan 31 14:04:45 2008 +0000
@@ -1,3 +1,8 @@ 2008-01-31  Gary Benson  <gbenson at redhat
+2008-01-31  Gary Benson  <gbenson at redhat.com>
+
+	* ports/hotspot/src/cpu/zero/vm/bytecodeInterpreter_zero.hpp
+	(LOTS_OF_REGS): Define as appropriate for lots of targets.
+
 2008-01-31  Gary Benson  <gbenson at redhat.com>
 
 	* ports/hotspot/src/cpu/zero/vm/bytes_zero.hpp
diff -r 36c1000392c9 -r 6167708eea3d ports/hotspot/src/cpu/zero/vm/bytecodeInterpreter_zero.hpp
--- a/ports/hotspot/src/cpu/zero/vm/bytecodeInterpreter_zero.hpp	Thu Jan 31 13:56:43 2008 +0000
+++ b/ports/hotspot/src/cpu/zero/vm/bytecodeInterpreter_zero.hpp	Thu Jan 31 14:04:45 2008 +0000
@@ -25,8 +25,10 @@
 
 // Platform specific for C++ based Interpreter
 
-#ifdef PPC
+#if defined(PPC) || defined(SPARC) || defined(IA64)
 #define LOTS_OF_REGS   // Use plenty of registers
+#elif defined(IA32) || defined(AMD64) || defined(ARM) || defined(S390)
+#undef LOTS_OF_REGS    // Loser platforms
 #else
 #error Add LOTS_OF_REGS as appropriate
 #endif



More information about the distro-pkg-dev mailing list