Print this page


Split Close
Expand all
Collapse all
          --- old/src/share/vm/ci/ciMethod.hpp
          +++ new/src/share/vm/ci/ciMethod.hpp
↓ open down ↓ 287 lines elided ↑ open up ↑
 288  288    // Print the bytecodes of this method.
 289  289    void print_codes_on(outputStream* st);
 290  290    void print_codes() {
 291  291      print_codes_on(tty);
 292  292    }
 293  293    void print_codes_on(int from, int to, outputStream* st);
 294  294  
 295  295    // Print the name of this method in various incarnations.
 296  296    void print_name(outputStream* st = tty);
 297  297    void print_short_name(outputStream* st = tty);
 298      -
 299      -  methodOop get_method_handle_target() {
 300      -    KlassHandle receiver_limit; int flags = 0;
 301      -    methodHandle m = MethodHandles::decode_method(get_oop(), receiver_limit, flags);
 302      -    return m();
 303      -  }
 304  298  };
 305  299  
 306  300  #endif // SHARE_VM_CI_CIMETHOD_HPP
    
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX