diff src/share/vm/classfile/classLoader.hpp @ 9159:43223d3f5dcd

Merge with hsx/hotspot-comp
author Gilles Duboscq <duboscq@ssw.jku.at>
date Tue, 16 Apr 2013 17:39:46 +0200
parents b8f261ba79c6 b8b081e53312
children cefad50507d8
line wrap: on
line diff
--- a/src/share/vm/classfile/classLoader.hpp	Tue Apr 16 17:16:06 2013 +0200
+++ b/src/share/vm/classfile/classLoader.hpp	Tue Apr 16 17:39:46 2013 +0200
@@ -340,11 +340,12 @@
   // Force compilation of all methods in all classes in bootstrap class path (stress test)
 #ifndef PRODUCT
  private:
-  static int _compile_the_world_counter;
+  static int _compile_the_world_class_counter;
+  static int _compile_the_world_method_counter;
  public:
   static void compile_the_world();
   static void compile_the_world_in(char* name, Handle loader, TRAPS);
-  static int  compile_the_world_counter() { return _compile_the_world_counter; }
+  static int  compile_the_world_counter() { return _compile_the_world_class_counter; }
 #endif //PRODUCT
 };