mailing list of musl libc
 help / color / mirror / code / Atom feed
From: Pincheng Wang <pincheng.plct@isrc.iscas.ac.cn>
To: musl@lists.openwall.com
Subject: Re: [musl] [PATCH 0/1] riscv: Add support for Zacas in atomic operations
Date: Thu, 16 Oct 2025 23:37:36 +0800	[thread overview]
Message-ID: <d6789d7c-f58c-49b1-9677-b922266fb80d@isrc.iscas.ac.cn> (raw)
In-Reply-To: <20250918164720.337994-1-pincheng.plct@isrc.iscas.ac.cn>

On 2025/9/19 00:47, Pincheng Wang wrote:
> Hi all,
> 
> This patch adds support for the RISC-V Zacas (Atomic Compare-and-Swap)
> extension in musl's atomic operations for both riscv64 and riscv32.
> 
> Currently, musl implements a_cas using a
> Load-Reserved/Store-Conditional (lr/sc) loop that:
> - Requires at least four instructions (lr+bne+sc+bnez) per CAS
>    operation,
> - Contains a retry loop under contention,
> - Incurs branch penalties that may cause pipeline stalls.
> 
> Zacas introduces amocas.w.aqrl/amocas.d.aqrl instructions that perform
> CAS atomically in a single instruction, eliminating retry loops and
> conditional branches.
> 
> Due to hardware limitations, we evaluated this change under QEMU using
> both mcycle and minstret counters. The results show clear benefits:
> 
> Metric											lr/sc	Zacas	Improvement
> Instr. per CAS (50k ops average)				15.04	8.36	-44.4%
> Instr. per op (single-thread)					23.61	14.25	-39.6%
> Instr. per op (multi-thread, high contention)	528.24	251.14	-52.5%
> 
> In addition, libc.a size is reduced by ~1.2% due to removal of loop
> code.
> 
> The patch automatically falls back to the lr/sc implementation on
> systems where Zacas is not available, preserving full backward
> compatibility.
> 
> This work provides a measurable reduction in instruction count,
> execution cycles and binary size, improving scalability of
> synchronization primitives under load.
> 
> Thanks for reviewing!
> 
> Best regards,
> Pincheng Wang
> 
> 
> Pincheng Wang (1):
>    riscv: add Zacas extension support for atomic CAS
> 
>   arch/riscv32/atomic_arch.h | 17 +++++++++++++++++
>   arch/riscv64/atomic_arch.h | 30 ++++++++++++++++++++++++++++++
>   2 files changed, 47 insertions(+)
> 

Hi all,

Friendly ping regarding my earlier patch on enabling the RISC-V Zacas 
(amocas.{w,d}) path for a_cas()/a_cas_p().

Best regards,
Pincheng Wang


      parent reply	other threads:[~2025-10-16 15:37 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-09-18 16:47 Pincheng Wang
2025-09-18 16:47 ` [musl] [PATCH 1/1] riscv: add Zacas extension support for atomic CAS Pincheng Wang
2025-10-21  0:30   ` Szabolcs Nagy
2025-10-21  3:05     ` Pincheng Wang
2025-10-16 15:37 ` Pincheng Wang [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=d6789d7c-f58c-49b1-9677-b922266fb80d@isrc.iscas.ac.cn \
    --to=pincheng.plct@isrc.iscas.ac.cn \
    --cc=musl@lists.openwall.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/musl/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).