RFR[M]: Adding MD5 Intrinsic on x86-64
    Vladimir Kozlov 
    vladimir.kozlov at oracle.com
       
    Mon Aug  3 19:18:53 UTC 2020
    
    
  
I reproduced crash with only MD5 changes on my local linux machine during fastdebug build.
Next code in inline_digestBase_implCompressMB should be reversed (get_long_*() should be called for long_state):
    if (long_state) {
      state = get_state_from_digestBase_object(digestBase_obj);
    } else {
      state = get_long_state_from_digestBase_object(digestBase_obj);
    }
Vladimir K
On 8/3/20 11:52 AM, Ludovic Henry wrote:
>> But it looks like it has more changes (windows_aarch64) then just MD5 intrinsic.
>> I will retest again with removed other changes.
> 
> That looks like a mistake with me learning to use Mercurial, sorry about that.
> 
> The only patch you need is `8250902: Implement MD5 Intrinsics on x86`, all the others are my mistake.
>   
> 
    
    
More information about the hotspot-compiler-dev
mailing list