comparison src/share/vm/ci/ciMethod.hpp @ 4117:a04a201f0f5a

7108383: JSR 292: JRuby bench_define_method_methods.rb: assert(slow_jvms != NULL) failed: miss path must not Reviewed-by: kvn, never
author twisti
date Thu, 17 Nov 2011 04:07:30 -0800
parents 5eb9169b1a14
children 6d8f36bcef55
comparison
equal deleted inserted replaced
4116:973293defacd 4117:a04a201f0f5a
293 void print_codes_on(int from, int to, outputStream* st); 293 void print_codes_on(int from, int to, outputStream* st);
294 294
295 // Print the name of this method in various incarnations. 295 // Print the name of this method in various incarnations.
296 void print_name(outputStream* st = tty); 296 void print_name(outputStream* st = tty);
297 void print_short_name(outputStream* st = tty); 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 #endif // SHARE_VM_CI_CIMETHOD_HPP 300 #endif // SHARE_VM_CI_CIMETHOD_HPP