riscv: allow single-precision float ABI (lp64f / ilp32f)#349
Merged
Conversation
The header rejected __riscv_float_abi_single with an #error, but the F and D extensions share the same FCSR. The hard-float inline implementations below the guard use only csrr/csrw/csrc on fcsr and fflags, both of which are present whenever F is present. So lp64f / ilp32f can use the same code path as the double ABI. Closes JuliaMath#262. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
The lp64f / ilp32f ABI used to be rejected by openlibm_fenv_riscv.h with an #error. Add a compile-only cross job that rebuilds the static library with -mabi=lp64f so the removed #error stays removed. A full lp64f shared-lib link or qemu run is impossible because Ubuntu's gcc-riscv64-linux-gnu ships only the lp64d sysroot; the static archive needs no libc link, so it still compiles riscv64/fenv.c (and every other source) under the single-float ABI. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
ViralBShah
force-pushed
the
fix-262-riscv-lp64f
branch
from
June 22, 2026 23:33
4ed0692 to
ef48409
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Fixes #262. The RISC-V fenv header rejected
__riscv_float_abi_single(lp64f, ilp32f) with an `#error`, but the rejection isn't warranted: the F and D extensions share the same `fcsr` / `fflags` CSRs. The hard-float inline implementations below the guard use only `csrr`/`csrw`/`csrc` on those CSRs, all of which are present whenever F is present.So lp64f / ilp32f can use the existing hard-float code path unchanged.
```diff
-#if !defined(__riscv_float_abi_soft) && !defined(__riscv_float_abi_double)
-#if defined(__riscv_float_abi_single)
-#error single precision floating point ABI not supported
-#else
+#if !defined(__riscv_float_abi_soft) && !defined(__riscv_float_abi_double) && \
#error compiler did not set soft/hard float macros
#endif
-#endif
```
Test plan
doubleABI users; lp64f users no longer hit the `#error`).🤖 Generated with Claude Code