src/share/vm/memory/universe.hpp

changeset 4062
2a48c84f1d04
parent 4037
da91efe96a93
child 4159
8e47bac5643a
child 4176
4202510ee0fe
     1.1 --- a/src/share/vm/memory/universe.hpp	Thu Sep 13 21:20:26 2012 +0200
     1.2 +++ b/src/share/vm/memory/universe.hpp	Mon Sep 17 10:46:59 2012 -0400
     1.3 @@ -175,6 +175,7 @@
     1.4    static oop          _the_null_string;               // A cache of "null" as a Java string
     1.5    static oop          _the_min_jint_string;          // A cache of "-2147483648" as a Java string
     1.6    static LatestMethodOopCache* _finalizer_register_cache; // static method for registering finalizable objects
     1.7 +  static LatestMethodOopCache* _loader_addClass_cache;    // method for registering loaded classes in class loader vector
     1.8    static ActiveMethodOopsCache* _reflect_invoke_cache;    // method for security checks
     1.9    static oop          _out_of_memory_error_java_heap; // preallocated error object (no backtrace)
    1.10    static oop          _out_of_memory_error_perm_gen;  // preallocated error object (no backtrace)
    1.11 @@ -318,6 +319,7 @@
    1.12    static oop          the_null_string()               { return _the_null_string;               }
    1.13    static oop          the_min_jint_string()          { return _the_min_jint_string;          }
    1.14    static Method*      finalizer_register_method()     { return _finalizer_register_cache->get_Method(); }
    1.15 +  static Method*      loader_addClass_method()        { return _loader_addClass_cache->get_Method(); }
    1.16    static ActiveMethodOopsCache* reflect_invoke_cache() { return _reflect_invoke_cache; }
    1.17    static oop          null_ptr_exception_instance()   { return _null_ptr_exception_instance;   }
    1.18    static oop          arithmetic_exception_instance() { return _arithmetic_exception_instance; }

mercurial