src/share/vm/oops/cpCache.hpp

changeset 8739
0b85ccd62409
parent 8368
32b682649973
child 8856
ac27a9c85bea
child 8997
f8a45a60bc6b
     1.1 --- a/src/share/vm/oops/cpCache.hpp	Tue Dec 13 10:07:12 2016 -0800
     1.2 +++ b/src/share/vm/oops/cpCache.hpp	Tue Dec 13 14:37:04 2016 -0500
     1.3 @@ -229,13 +229,15 @@
     1.4    void set_direct_or_vtable_call(
     1.5      Bytecodes::Code invoke_code,                 // the bytecode used for invoking the method
     1.6      methodHandle    method,                      // the method/prototype if any (NULL, otherwise)
     1.7 -    int             vtable_index                 // the vtable index if any, else negative
     1.8 +    int             vtable_index,                // the vtable index if any, else negative
     1.9 +    bool            sender_is_interface
    1.10    );
    1.11  
    1.12   public:
    1.13    void set_direct_call(                          // sets entry to exact concrete method entry
    1.14      Bytecodes::Code invoke_code,                 // the bytecode used for invoking the method
    1.15 -    methodHandle    method                       // the method to call
    1.16 +    methodHandle    method,                      // the method to call
    1.17 +    bool            sender_is_interface
    1.18    );
    1.19  
    1.20    void set_vtable_call(                          // sets entry to vtable index

mercurial