summaryrefslogtreecommitdiff
path: root/scripts/Makefile.thinlto
diff options
context:
space:
mode:
authorKumar Kartikeya Dwivedi <memxor@gmail.com>2026-08-25 15:18:33 +0200
committerKumar Kartikeya Dwivedi <memxor@gmail.com>2026-08-25 15:19:22 +0200
commitd83fba28c25ea6d3485072ea173e16b397d45d48 (patch)
tree6f4fe8f2ff89ff8eeda59851e985bd03dcd4e566 /scripts/Makefile.thinlto
parent5e289c5a4a526e870efac0ca658635c47138593a (diff)
parent8f2087a1b43bbc57231eca4b99415cc18fb3429a (diff)
downloadlinux-next-d83fba28c25ea6d3485072ea173e16b397d45d48.tar.gz
linux-next-d83fba28c25ea6d3485072ea173e16b397d45d48.zip
Merge branch 'bpf-riscv-add-support-for-signed-arena-loads'
Chen Pei says: ==================== bpf, riscv: Add support for signed arena loads Hi, Signed loads from arena memory are currently unsupported on riscv64: bpf_jit_supports_insn() rejects BPF_MEMSX loads when in_arena is set, so the verifier fails such programs with "sign extending loads from arena are not supported yet". The x86 and arm64 JITs gained support for them in v6.18 (a91ae3c89311, eab2a71f3a6a). Since compilers are free to generate signed loads into arena memory (e.g. GCC-14 was reported to do so), otherwise valid BPF programs fail to load on riscv64. This series adds BPF_PROBE_MEM32SX support to the RV64 JIT and enables the corresponding selftests on riscv64: 1 implements signed arena loads in the RV64 JIT. The verifier already converts MEMSX loads from PTR_TO_ARENA to BPF_PROBE_MEM32SX once bpf_jit_supports_insn() allows them, so the JIT reuses the existing arena handling: the arena base (RV_REG_ARENA) is added to the source register and the load is emitted with sign extension (lb/lh/lw). BPF_PROBE_MEM32SX is also added to the add_exception_handler() mode gate so faulting loads register an exception table entry that clears the destination register and resumes execution. 2 enables the arena LDSX tests on riscv64: JIT disassembly assertions are added to arena_ldsx_disasm, and arena_ldsx_exception/s8/s16/s32 are now run on riscv64. The series was verified on riscv64 with QEMU (-M virt): all five arena_ldsx tests pass, including the exception path (load from unallocated arena memory returns 0) and the sign-extension values (s8/s16/s32 tests return -1 as expected). The arena_atomics test suite also loads and runs cleanly. Changes in v3: - Restore the pseudo-code form of the PROBE_MEM32SX case comment. Changes in v2: - Fix an extable entry overflow breaking the arena_atomics load. - Collect Reviewed-by on patch 2. Note: the __jited assertions in patch 2 were derived from the JIT register allocation (R0->a5, R1->a0, R8->s3, R9->s4, arena base in s7) and the emit_ldx() code paths; happy to adjust them if a disassembler output detail differs. Thanks, Pei ==================== Link: https://patch.msgid.link/cover.1787140923.git.cp0613@linux.alibaba.com Signed-off-by: Kumar Kartikeya Dwivedi <memxor@gmail.com>
Diffstat (limited to 'scripts/Makefile.thinlto')
0 files changed, 0 insertions, 0 deletions