src/share/vm/memory/universe.hpp

changeset 6134
9d15b81d5d1b
parent 5737
da051ce490eb
child 6876
710a3c8b516e
child 7164
fa6c442c59ee
     1.1 --- a/src/share/vm/memory/universe.hpp	Fri Nov 22 13:42:46 2013 -0800
     1.2 +++ b/src/share/vm/memory/universe.hpp	Tue Nov 26 18:16:04 2013 -0500
     1.3 @@ -149,6 +149,8 @@
     1.4    static LatestMethodCache* _loader_addClass_cache;    // method for registering loaded classes in class loader vector
     1.5    static LatestMethodCache* _pd_implies_cache;         // method for checking protection domain attributes
     1.6  
     1.7 +  static Method* _throw_illegal_access_error;
     1.8 +
     1.9    // preallocated error objects (no backtrace)
    1.10    static oop          _out_of_memory_error_java_heap;
    1.11    static oop          _out_of_memory_error_metaspace;
    1.12 @@ -305,6 +307,7 @@
    1.13    static oop          arithmetic_exception_instance() { return _arithmetic_exception_instance; }
    1.14    static oop          virtual_machine_error_instance() { return _virtual_machine_error_instance; }
    1.15    static oop          vm_exception()                  { return _vm_exception; }
    1.16 +  static Method*      throw_illegal_access_error()    { return _throw_illegal_access_error; }
    1.17  
    1.18    static Array<int>*       the_empty_int_array()    { return _the_empty_int_array; }
    1.19    static Array<u2>*        the_empty_short_array()  { return _the_empty_short_array; }

mercurial