Request for reviews (M): 6941529: SharedRuntime::raw_exception_handler_for_return_address must reset thread MethodHandle flag

Vladimir Kozlov vladimir.kozlov at oracle.com
Wed Apr 7 10:25:54 PDT 2010


>> !   void set_is_method_handle_return(int value)    { _is_method_handle_return = value; }
> 
> Maybe I should change the argument type and do something like:
> 
> void set_is_method_handle_return(bool value)    { _is_method_handle_return = value ? 1 : 0; }

Yes, it would be nice. Smart C++ compilers should fold it so the code should be the same as before.

Thanks,
Vladimir

> 
> -- Christian
> 


More information about the hotspot-compiler-dev mailing list