diff src/share/vm/oops/method.hpp @ 7968:44c5fcd9cb25

8006280: Need to reorder metadata structures to reduce size (64-bit) Summary: Reordered Klass, InstanceKlass and Method to save 8 bytes each Reviewed-by: coleenp, jiangli Contributed-by: ioi.lam@oracle.com
author iklam
date Thu, 24 Jan 2013 10:57:38 -0800
parents 18c3c3fa291b
children 1eae78177059
line wrap: on
line diff
--- a/src/share/vm/oops/method.hpp	Thu Jan 24 23:30:45 2013 -0800
+++ b/src/share/vm/oops/method.hpp	Thu Jan 24 10:57:38 2013 -0800
@@ -127,8 +127,8 @@
   InvocationCounter _backedge_counter;           // Incremented before each backedge taken - used to trigger frequencey-based optimizations
 
 #ifdef TIERED
+  float             _rate;                        // Events (invocation and backedge counter increments) per millisecond
   jlong             _prev_time;                   // Previous time the rate was acquired
-  float             _rate;                        // Events (invocation and backedge counter increments) per millisecond
 #endif
 
 #ifndef PRODUCT