< prev index next >

src/hotspot/share/interpreter/templateInterpreter.hpp

Print this page
*** 104,10 ***
--- 104,11 ---
    static address    _throw_ArrayIndexOutOfBoundsException_entry;
    static address    _throw_ArrayStoreException_entry;
    static address    _throw_ArithmeticException_entry;
    static address    _throw_ClassCastException_entry;
    static address    _throw_NullPointerException_entry;
+   static address    _throw_NPE_UninitializedField_entry;
    static address    _throw_exception_entry;
  
    static address    _throw_StackOverflowError_entry;
  
    static address    _cont_resume_interpreter_adapter;

*** 151,10 ***
--- 152,11 ---
  
    static address    remove_activation_entry()                   { return _remove_activation_entry; }
    static address    throw_exception_entry()                     { return _throw_exception_entry; }
    static address    throw_ArithmeticException_entry()           { return _throw_ArithmeticException_entry; }
    static address    throw_NullPointerException_entry()          { return _throw_NullPointerException_entry; }
+   static address    throw_NPE_UninitializedField_entry()        { return _throw_NPE_UninitializedField_entry; }
    static address    throw_StackOverflowError_entry()            { return _throw_StackOverflowError_entry; }
  
    static address    cont_resume_interpreter_adapter()           { return _cont_resume_interpreter_adapter; }
  
    // Code generation
< prev index next >