Integrated: 8351155: C1/C2: Remove 32-bit x86 specific FP rounding support

Aleksey Shipilev shade at openjdk.org
Thu Mar 27 18:14:34 UTC 2025


On Wed, 26 Mar 2025 10:11:25 GMT, Aleksey Shipilev <shade at openjdk.org> wrote:

> C1 and C2 have support for rounding double/floats, to support awkward rounding modes of x87 FPU. With 32-bit x86 port removed, we can remove those parts. This basically deletes all the code that uses `strict_fp_requires_explicit_rounding`, which is now universally `false` for all supported platforms.
> 
> For C1, we remove `RoundFP` op, its associated `lir_roundfp` and related utility methods that insert these nodes in the graph.
> 
> For C2, we remove `RoundDouble` and `RoundFloat` nodes (note there is a confusingly named `RoundDoubleMode` nodes that are not related to this), associated utility methods, AD match rules that reference these nodes (as nops!), and some `Ideal`-s that are no longer needed.
> 
> Additional testing:
>  - [x] Linux x86_64 server fastdebug, `tier1`
>  - [x] Linux x86_64 server fastdebug, `all`

This pull request has now been integrated.

Changeset: b73663a2
Author:    Aleksey Shipilev <shade at openjdk.org>
URL:       https://git.openjdk.org/jdk/commit/b73663a2b4fe7049fc0990c1a1e51221640b4e29
Stats:     547 lines in 48 files changed: 0 ins; 513 del; 34 mod

8351155: C1/C2: Remove 32-bit x86 specific FP rounding support

Reviewed-by: vlivanov, kvn

-------------

PR: https://git.openjdk.org/jdk/pull/24250


More information about the hotspot-dev mailing list