RFR (XS) 8210357: Zero builds fail after JDK-8207343 (Automate vtable/itable stub size calculation)

Tobias Hartmann tobias.hartmann at oracle.com
Tue Sep 4 11:09:22 UTC 2018


Hi Aleksey,

looks good to me and can be considered trivial.

Best regards,
Tobias


On 04.09.2018 12:33, Aleksey Shipilev wrote:
> Bug:
>   https://bugs.openjdk.java.net/browse/JDK-8210357
> 
> Seems like VtableStub::pd_code_size_limit is gone, and should be purged from Zero too.
> 
> Fix:
> 
> diff -r bc76fd44b029 src/hotspot/cpu/zero/vtableStubs_zero.cpp
> --- a/src/hotspot/cpu/zero/vtableStubs_zero.cpp	Tue Sep 04 12:28:12 2018 +0200
> +++ b/src/hotspot/cpu/zero/vtableStubs_zero.cpp	Tue Sep 04 12:30:21 2018 +0200
> @@ -37,11 +37,6 @@
>    return NULL;
>  }
> 
> -int VtableStub::pd_code_size_limit(bool is_vtable_stub) {
> -  ShouldNotCallThis();
> -  return 0;
> -}
> -
>  int VtableStub::pd_code_alignment() {
>    ShouldNotCallThis();
>    return 0;
> 
> 
> Testing: Linux x86_64 zero build
> 
> Thanks,
> -Aleksey
> 


More information about the hotspot-compiler-dev mailing list