Request for reviews (M): 6990192: VM crashes in ciTypeFlow::get_block_for()

Vladimir Kozlov vladimir.kozlov at oracle.com
Tue Oct 19 07:35:38 PDT 2010


Looks good.

Vladimir

On 10/19/10 2:45 AM, Christian Thalinger wrote:
> On Oct 18, 2010, at 7:07 PM, Christian Thalinger wrote:
>> On Oct 18, 2010, at 6:41 PM, Tom Rodriguez wrote:
>>>
>>> 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
>>
>>
>> OK. I wasn't sure I can use cmpxchg_ptr directly, but since I'm handling the barriers myself it should be fine. Thanks!
>
> I'm going to commit as:
>
> http://cr.openjdk.java.net/~twisti/6990192/webrev.02/
>
> Additionally I tested failing JRuby tests.
>
> -- Christian


More information about the hotspot-compiler-dev mailing list