hotspot/src/share/vm/ci/ciMethod.hpp
changeset 9323 20cc2230dc8a
parent 7913 dd096a83bdbb
child 9329 79c74b9e2afe
equal deleted inserted replaced
9141:b9b83b001cac 9323:20cc2230dc8a
   274   // Print the name of this method in various incarnations.
   274   // Print the name of this method in various incarnations.
   275   void print_name(outputStream* st = tty);
   275   void print_name(outputStream* st = tty);
   276   void print_short_name(outputStream* st = tty);
   276   void print_short_name(outputStream* st = tty);
   277 
   277 
   278   methodOop get_method_handle_target() {
   278   methodOop get_method_handle_target() {
   279     klassOop receiver_limit_oop = NULL;
   279     KlassHandle receiver_limit; int flags = 0;
   280     int flags = 0;
   280     methodHandle m = MethodHandles::decode_method(get_oop(), receiver_limit, flags);
   281     return MethodHandles::decode_method(get_oop(), receiver_limit_oop, flags);
   281     return m();
   282   }
   282   }
   283 };
   283 };
   284 
   284 
   285 #endif // SHARE_VM_CI_CIMETHOD_HPP
   285 #endif // SHARE_VM_CI_CIMETHOD_HPP