/hg/icedtea6: 2009-11-11 Gary Benson <gbenson at redhat.com>

gbenson at icedtea.classpath.org gbenson at icedtea.classpath.org
Wed Nov 11 02:25:48 PST 2009


changeset b078cdccad9c in /hg/icedtea6
details: http://icedtea.classpath.org/hg/icedtea6?cmd=changeset;node=b078cdccad9c
author: Gary Benson <gbenson at redhat.com>
date: Wed Nov 11 10:30:19 2009 +0000

	2009-11-11 Gary Benson <gbenson at redhat.com>

	 * ports/hotspot/src/cpu/zero/vm/entry_zero.hpp
	(ZeroEntry::entry_point): Inlined. (ZeroEntry::invoke):
	Likewise. (ZeroEntry::invoke_osr): Likewise.


diffstat:

2 files changed, 10 insertions(+), 3 deletions(-)
ChangeLog                                    |    7 +++++++
ports/hotspot/src/cpu/zero/vm/entry_zero.hpp |    6 +++---

diffs (39 lines):

diff -r ff96e96a485b -r b078cdccad9c ChangeLog
--- a/ChangeLog	Mon Nov 09 13:07:15 2009 +0100
+++ b/ChangeLog	Wed Nov 11 10:30:19 2009 +0000
@@ -1,3 +1,10 @@ 2009-11-09  Xerxes RÃ¥nby  <xerxes at zafen
+2009-11-11  Gary Benson  <gbenson at redhat.com>
+
+	* ports/hotspot/src/cpu/zero/vm/entry_zero.hpp 
+	(ZeroEntry::entry_point): Inlined.
+	(ZeroEntry::invoke): Likewise.
+	(ZeroEntry::invoke_osr): Likewise.
+
 2009-11-09  Xerxes RÃ¥nby  <xerxes at zafena.se>
 
 	* ports/hotspot/src/share/vm/shark/llvmHeaders.hpp,
diff -r ff96e96a485b -r b078cdccad9c ports/hotspot/src/cpu/zero/vm/entry_zero.hpp
--- a/ports/hotspot/src/cpu/zero/vm/entry_zero.hpp	Mon Nov 09 13:07:15 2009 +0100
+++ b/ports/hotspot/src/cpu/zero/vm/entry_zero.hpp	Wed Nov 11 10:30:19 2009 +0000
@@ -33,7 +33,7 @@ class ZeroEntry {
   address _entry_point;
 
  public:
-  address entry_point() const {
+  inline address entry_point() const {
     return _entry_point;
   }
   void set_entry_point(address entry_point) {
@@ -50,10 +50,10 @@ class ZeroEntry {
                                TRAPS);
 
  public:
-  void invoke(methodOop method, TRAPS) const {
+  inline void invoke(methodOop method, TRAPS) const {
     ((NormalEntryFunc) entry_point())(method, (intptr_t) this, THREAD);
   }
-  void invoke_osr(methodOop method, address osr_buf, TRAPS) const {
+  inline void invoke_osr(methodOop method, address osr_buf, TRAPS) const {
     ((OSREntryFunc) entry_point())(method, osr_buf, (intptr_t) this, THREAD);
   }
 



More information about the distro-pkg-dev mailing list