src/share/vm/interpreter/templateInterpreter.hpp

changeset 1145
e5b0439ef4ae
parent 1040
98cb887364d3
child 1161
be93aad57795
     1.1 --- a/src/share/vm/interpreter/templateInterpreter.hpp	Wed Apr 08 00:12:59 2009 -0700
     1.2 +++ b/src/share/vm/interpreter/templateInterpreter.hpp	Wed Apr 08 10:56:49 2009 -0700
     1.3 @@ -1,5 +1,5 @@
     1.4  /*
     1.5 - * Copyright 1997-2007 Sun Microsystems, Inc.  All Rights Reserved.
     1.6 + * Copyright 1997-2009 Sun Microsystems, Inc.  All Rights Reserved.
     1.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     1.8   *
     1.9   * This code is free software; you can redistribute it and/or modify it
    1.10 @@ -77,6 +77,7 @@
    1.11    friend class VMStructs;
    1.12    friend class InterpreterMacroAssembler;
    1.13    friend class TemplateInterpreterGenerator;
    1.14 +  friend class InterpreterGenerator;
    1.15    friend class TemplateTable;
    1.16    // friend class Interpreter;
    1.17   public:
    1.18 @@ -93,6 +94,7 @@
    1.19    static address    _throw_ArrayStoreException_entry;
    1.20    static address    _throw_ArithmeticException_entry;
    1.21    static address    _throw_ClassCastException_entry;
    1.22 +  static address    _throw_WrongMethodType_entry;
    1.23    static address    _throw_NullPointerException_entry;
    1.24    static address    _throw_exception_entry;
    1.25  
    1.26 @@ -137,6 +139,7 @@
    1.27    static address    remove_activation_entry()                   { return _remove_activation_entry; }
    1.28    static address    throw_exception_entry()                     { return _throw_exception_entry; }
    1.29    static address    throw_ArithmeticException_entry()           { return _throw_ArithmeticException_entry; }
    1.30 +  static address    throw_WrongMethodType_entry()               { return _throw_WrongMethodType_entry; }
    1.31    static address    throw_NullPointerException_entry()          { return _throw_NullPointerException_entry; }
    1.32    static address    throw_StackOverflowError_entry()            { return _throw_StackOverflowError_entry; }
    1.33  

mercurial