changeset in /hg/icedtea: 2008-02-15 Gary Benson <gbenson at redh...

Gary Benson gbenson at redhat.com
Thu May 29 14:11:49 PDT 2008


changeset 4c9ee6c89afb in /hg/icedtea
details: http://icedtea.classpath.org/hg/icedtea?cmd=changeset;node=4c9ee6c89afb
description:
	2008-02-15  Gary Benson  <gbenson at redhat.com>

		* ports/hotspot/src/cpu/zero/vm/stubRoutines_zero.hpp: Build on x86.
		* ports/hotspot/src/cpu/zero/vm/stubRoutines_zero.cpp: Likewise.

diffstat:

3 files changed, 45 insertions(+)
ChangeLog                                           |    5 +++
ports/hotspot/src/cpu/zero/vm/stubRoutines_zero.cpp |   31 +++++++++++++++++++
ports/hotspot/src/cpu/zero/vm/stubRoutines_zero.hpp |    9 +++++

diffs (63 lines):

diff -r 47d2687b6116 -r 4c9ee6c89afb ChangeLog
--- a/ChangeLog	Fri Feb 15 04:24:25 2008 -0500
+++ b/ChangeLog	Fri Feb 15 10:08:15 2008 -0500
@@ -1,3 +1,8 @@ 2008-02-15  Gary Benson  <gbenson at redhat
+2008-02-15  Gary Benson  <gbenson at redhat.com>
+
+	* ports/hotspot/src/cpu/zero/vm/stubRoutines_zero.hpp: Build on x86.
+	* ports/hotspot/src/cpu/zero/vm/stubRoutines_zero.cpp: Likewise.
+
 2008-02-15  Gary Benson  <gbenson at redhat.com>
 
 	* ports/hotspot/build/linux/makefiles/arm.make: New file.
diff -r 47d2687b6116 -r 4c9ee6c89afb ports/hotspot/src/cpu/zero/vm/stubRoutines_zero.cpp
--- a/ports/hotspot/src/cpu/zero/vm/stubRoutines_zero.cpp	Fri Feb 15 04:24:25 2008 -0500
+++ b/ports/hotspot/src/cpu/zero/vm/stubRoutines_zero.cpp	Fri Feb 15 10:08:15 2008 -0500
@@ -0,0 +1,31 @@
+/*
+ * Copyright 2003-2005 Sun Microsystems, Inc.  All Rights Reserved.
+ * Copyright 2008 Red Hat, Inc.
+ * 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 Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
+ * CA 95054 USA or visit www.sun.com if you need additional information or
+ * have any questions.
+ *
+ */
+
+#include "incls/_precompiled.incl"
+#include "incls/_stubRoutines_zero.cpp.incl"
+
+#ifdef IA32
+address StubRoutines::i486::_call_stub_compiled_return = NULL;
+#endif // IA32
diff -r 47d2687b6116 -r 4c9ee6c89afb ports/hotspot/src/cpu/zero/vm/stubRoutines_zero.hpp
--- a/ports/hotspot/src/cpu/zero/vm/stubRoutines_zero.hpp	Fri Feb 15 04:24:25 2008 -0500
+++ b/ports/hotspot/src/cpu/zero/vm/stubRoutines_zero.hpp	Fri Feb 15 10:08:15 2008 -0500
@@ -39,3 +39,12 @@
     code_size2 = 0       // if these are too small.  Simply increase
   };                     // them if that happens.
 
+#ifdef IA32
+  class i486
+  {
+    friend class VMStructs;
+
+   private:
+    static address _call_stub_compiled_return;
+  };
+#endif // IA32



More information about the distro-pkg-dev mailing list