Request for reviews (M): 6990192: VM crashes in ciTypeFlow::get_block_for()
Tom Rodriguez
tom.rodriguez at oracle.com
Mon Oct 18 09:41:26 PDT 2010
On Oct 18, 2010, at 9:25 AM, Christian Thalinger wrote:
> http://cr.openjdk.java.net/~twisti/6990192/webrev.01/
>
> 6990192: VM crashes in ciTypeFlow::get_block_for()
> Reviewed-by:
>
> In SystemDictionary::find_method_handle_invoke when the classes of the
> signature are not on the bootclasspath the method always returns the
> newly created method resulting in an assert in
> ConstantPoolCacheEntry::set_f1.
>
> The fix is to set the first method coming in into the constant pool
> cache. To avoid races this is done atomically.
>
> Additionally the initialization of the invoke-method table is changed
> to be eagerly since initializing it lazily contains another race.
I don't think you want to use atomic_compare_exchange_oop since that is for handling Java fields that might be compressed. The fields in the cpCache are never compressed so you should just use cmpxchg_ptr directly. Otherwise it seems ok.
tom
>
> Tested with testcase mentioned in CR.
More information about the hotspot-compiler-dev
mailing list