Zero tweak

Gary Benson gbenson at redhat.com
Wed Nov 11 05:56:58 PST 2009


Hi all,

This commit inlines a couple of methods in Zero.  I had thought that
declaring methods in the header file caused them to be automatically
inlined, but apparently that isn't the case.  There are probably more
methods that could benefit from this; I only noticed these because
you end up with two frames for every Java call in gdb.

Cheers,
Gary

-- 
http://gbenson.net/
-------------- next part --------------
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-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 @@
   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 @@
                                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