RFR: 8315066: Add unsigned bounds and known bits to TypeInt/Long [v13]
Quan Anh Mai
qamai at openjdk.org
Thu Sep 5 16:47:55 UTC 2024
On Thu, 5 Sep 2024 16:24:17 GMT, Vladimir Kozlov <kvn at openjdk.org> wrote:
>> Quan Anh Mai has updated the pull request incrementally with two additional commits since the last revision:
>>
>> - rename tests
>> - more explanation
>
> src/hotspot/share/opto/type.cpp line 1705:
>
>> 1703: bool TypeInt::empty(void) const {
>> 1704: return false;
>> 1705: }
>
> I would like to see assert(_lo <= _hi) here since you unconditionally return `false`.
`_lo <= _hi` (and other invariants) is checked in `verify_constraints` when creating the `TypeInt` instance.
-------------
PR Review Comment: https://git.openjdk.org/jdk/pull/17508#discussion_r1745868702
More information about the hotspot-compiler-dev
mailing list