src/share/vm/memory/universe.hpp

changeset 5338
cedf20e2a655
parent 5337
de2d15ce3d4a
parent 5252
3a0774193f71
child 5508
85147f28faba
     1.1 --- a/src/share/vm/memory/universe.hpp	Tue Jul 02 08:42:37 2013 -0400
     1.2 +++ b/src/share/vm/memory/universe.hpp	Tue Jul 02 16:54:24 2013 +0200
     1.3 @@ -176,6 +176,7 @@
     1.4    static oop          _the_min_jint_string;          // A cache of "-2147483648" as a Java string
     1.5    static LatestMethodOopCache* _finalizer_register_cache; // static method for registering finalizable objects
     1.6    static LatestMethodOopCache* _loader_addClass_cache;    // method for registering loaded classes in class loader vector
     1.7 +  static LatestMethodOopCache* _pd_implies_cache;         // method for checking protection domain attributes
     1.8    static ActiveMethodOopsCache* _reflect_invoke_cache;    // method for security checks
     1.9    // preallocated error objects (no backtrace)
    1.10    static oop          _out_of_memory_error_java_heap;
    1.11 @@ -335,7 +336,10 @@
    1.12    static oop          the_min_jint_string()          { return _the_min_jint_string;          }
    1.13    static Method*      finalizer_register_method()     { return _finalizer_register_cache->get_Method(); }
    1.14    static Method*      loader_addClass_method()        { return _loader_addClass_cache->get_Method(); }
    1.15 +
    1.16 +  static Method*      protection_domain_implies_method() { return _pd_implies_cache->get_Method(); }
    1.17    static ActiveMethodOopsCache* reflect_invoke_cache() { return _reflect_invoke_cache; }
    1.18 +
    1.19    static oop          null_ptr_exception_instance()   { return _null_ptr_exception_instance;   }
    1.20    static oop          arithmetic_exception_instance() { return _arithmetic_exception_instance; }
    1.21    static oop          virtual_machine_error_instance() { return _virtual_machine_error_instance; }

mercurial