diff src/share/vm/oops/methodData.hpp @ 14543:12eaf1a47a90

removed ResolvedJavaMethod.getCompilerStorage(); moved last compiled graph node count into profiling info (i.e. MethodData metadata)
author Doug Simon <doug.simon@oracle.com>
date Fri, 14 Mar 2014 22:05:50 +0100
parents d8041d695d19
children b51e29501f30 8762b6b8fbb6
line wrap: on
line diff
--- a/src/share/vm/oops/methodData.hpp	Fri Mar 14 18:10:59 2014 +0100
+++ b/src/share/vm/oops/methodData.hpp	Fri Mar 14 22:05:50 2014 +0100
@@ -2203,6 +2203,11 @@
   // Does this method contain anything worth profiling?
   bool              _would_profile;
 
+#ifdef GRAAL
+  // Support for HotSpotMethodData.setCompiledGraphSize(int)
+  int               _graal_node_count;
+#endif
+
   // Size of _data array in bytes.  (Excludes header and extra_data fields.)
   int _data_size;