From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mail-wm1-f68.google.com (mail-wm1-f68.google.com [209.85.128.68]) by mx.groups.io with SMTP id smtpd.web12.8856.1590659344799427968 for ; Thu, 28 May 2020 02:49:05 -0700 Authentication-Results: mx.groups.io; dkim=pass header.i=@nuviainc-com.20150623.gappssmtp.com header.s=20150623 header.b=ixaq+bir; spf=pass (domain: nuviainc.com, ip: 209.85.128.68, mailfrom: leif@nuviainc.com) Received: by mail-wm1-f68.google.com with SMTP id r15so2449410wmh.5 for ; Thu, 28 May 2020 02:49:04 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=nuviainc-com.20150623.gappssmtp.com; s=20150623; h=date:from:to:cc:subject:message-id:references:mime-version :content-disposition:in-reply-to:user-agent; bh=a8xinehM/+7+6pxDBu1iuZ4fXJQy4AnfI9RXNqT/pAQ=; b=ixaq+birK2u/8Ug/MDVV061hG/K2lZbPZrralh6SdepTfV+V0yA0eyVvDm27iaw4xe dM4ZGhu65sd4da+LtDLFxwi3bNpYbzvV5K5/ZiF5FhAG5LZB8QEEJywVuEXxq1tS1z9J uUA4GkJk1RfNW3FqS0oyyzshOznRpNyYDCaeKPLyCmWD9XpBlIWXIihoxXHmG1cqbXyK XKnYp2tGn1d8ks5+t6F7Wslf7zCJTbCg/LYMSGzYY2iHk94nsOT+5ACGTprR6oCOE6yn zqpkR3U9XraNmPTvGqAQMS7i7qAWKhz/Uv7ipC776+UCLFHUYjGkvjop4uArRr39xJ2d 9BZg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:date:from:to:cc:subject:message-id:references :mime-version:content-disposition:in-reply-to:user-agent; bh=a8xinehM/+7+6pxDBu1iuZ4fXJQy4AnfI9RXNqT/pAQ=; b=mWK4v03Awu41p6xlgrC0kCICLnm+hPWXVZr/TJ+dH4sXxmDpH38M6OtD+1IC49RqI0 wD6Dy9QVItvBnjfcHfNNIgpBZ38fF90UjFDyZIGqlMjEAh2fRWnO1j7SygXFhsoXSZRL QY/YX/V+KmA81gCcSPtoML0gmarIeKgHEiYfkXaQ+wIHWOHmyF9gGT8XuwnqrpwaKUxI Vc7BE7hxcrSwvBEwstGTqdWamj1OCJ4BWKvyehvYT+7pEaNpCHkYfDGM7AAmaRb8FPVx xWZTlsXWsU1p6JWEmuMd3wdil+w5Ger/NAiaHkdwUEnmZ2UUbjU7+sa1bq3L78zO+BTt GITw== X-Gm-Message-State: AOAM532EKHBUKj8mWG9OhPiI9PxSQL+2M+Gc1BA/6H0Bx3i1C0E0jUl/ 8O3WHpwEP75dFKKkNUGzaRR/kg== X-Google-Smtp-Source: ABdhPJwLCJwkzEFs/DuseMtcu8xhMk2waYnbqlEiQdkMB+naW91wvwYbCcEAnd3ipXBLeMs/LG5Z5w== X-Received: by 2002:a1c:a74d:: with SMTP id q74mr2577927wme.177.1590659343350; Thu, 28 May 2020 02:49:03 -0700 (PDT) Return-Path: Received: from vanye ([2001:470:1f09:12f0:b26e:bfff:fea9:f1b8]) by smtp.gmail.com with ESMTPSA id u4sm5840464wmb.48.2020.05.28.02.49.02 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Thu, 28 May 2020 02:49:02 -0700 (PDT) Date: Thu, 28 May 2020 10:49:00 +0100 From: "Leif Lindholm" To: Gary Lin Cc: devel@edk2.groups.io, ard.biesheuvel@arm.com, lersek@redhat.com, liming.gao@intel.com Subject: Re: [edk2-devel] [PATCH v2] ArmPkg/CompilerIntrinsicsLib: provide atomics intrinsics Message-ID: <20200528094900.GB1923@vanye> References: <20200520114448.26104-1-ard.biesheuvel@arm.com> <20200528013633.GF24379@GaryWorkstation> MIME-Version: 1.0 In-Reply-To: <20200528013633.GF24379@GaryWorkstation> User-Agent: Mutt/1.10.1 (2018-07-13) Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Thu, May 28, 2020 at 09:36:33 +0800, Gary Lin wrote: > On Wed, May 20, 2020 at 01:44:48PM +0200, Ard Biesheuvel wrote: > > Gary reports the GCC 10 will emit calls to atomics intrinsics routines > > unless -mno-outline-atomics is specified. This means GCC-10 introduces > > new intrinsics, and even though it would be possible to work around this > > by specifying the command line option, this would require a new GCC10 > > toolchain profile to be created, which we prefer to avoid. > > > > So instead, add the new intrinsics to our library so they are provided > > when necessary. > > > > Signed-off-by: Ard Biesheuvel > After applying this patch, gcc 10 can build ArmVirtPkg without the > linking error. > > Tested-by: Gary Lin Thanks Gary. Liming, can we consider this patch for stable tag please? With an added link to https://bugzilla.tianocore.org/show_bug.cgi?id=2723 in the commit message: Reviewed-by: Leif Lindholm / Leif > > --- > > v2: > > - add missing .globl to export the functions from the object file > > - add function end markers so the size of each is visible in the ELF metadata > > - add some comments to describe what is going on > > > > ArmPkg/Library/CompilerIntrinsicsLib/CompilerIntrinsicsLib.inf | 3 + > > ArmPkg/Library/CompilerIntrinsicsLib/AArch64/Atomics.S | 142 ++++++++++++++++++++ > > 2 files changed, 145 insertions(+) > > > > diff --git a/ArmPkg/Library/CompilerIntrinsicsLib/CompilerIntrinsicsLib.inf b/ArmPkg/Library/CompilerIntrinsicsLib/CompilerIntrinsicsLib.inf > > index d5bad9467758..fcf48c678119 100644 > > --- a/ArmPkg/Library/CompilerIntrinsicsLib/CompilerIntrinsicsLib.inf > > +++ b/ArmPkg/Library/CompilerIntrinsicsLib/CompilerIntrinsicsLib.inf > > @@ -79,6 +79,9 @@ [Sources.ARM] > > Arm/ldivmod.asm | MSFT > > Arm/llsr.asm | MSFT > > > > +[Sources.AARCH64] > > + AArch64/Atomics.S | GCC > > + > > [Packages] > > MdePkg/MdePkg.dec > > ArmPkg/ArmPkg.dec > > diff --git a/ArmPkg/Library/CompilerIntrinsicsLib/AArch64/Atomics.S b/ArmPkg/Library/CompilerIntrinsicsLib/AArch64/Atomics.S > > new file mode 100644 > > index 000000000000..dc61d6bb8e52 > > --- /dev/null > > +++ b/ArmPkg/Library/CompilerIntrinsicsLib/AArch64/Atomics.S > > @@ -0,0 +1,142 @@ > > +#------------------------------------------------------------------------------ > > +# > > +# Copyright (c) 2020, Arm, Limited. All rights reserved.
> > +# > > +# SPDX-License-Identifier: BSD-2-Clause-Patent > > +# > > +#------------------------------------------------------------------------------ > > + > > + /* > > + * Provide the GCC intrinsics that are required when using GCC 9 or > > + * later with the -moutline-atomics options (which became the default > > + * in GCC 10) > > + */ > > + .arch armv8-a > > + > > + .macro reg_alias, pfx, sz > > + r0_\sz .req \pfx\()0 > > + r1_\sz .req \pfx\()1 > > + tmp0_\sz .req \pfx\()16 > > + tmp1_\sz .req \pfx\()17 > > + .endm > > + > > + /* > > + * Define register aliases of the right type for each size > > + * (xN for 8 bytes, wN for everything smaller) > > + */ > > + reg_alias w, 1 > > + reg_alias w, 2 > > + reg_alias w, 4 > > + reg_alias x, 8 > > + > > + .macro fn_start, name:req > > + .section .text.\name > > + .globl \name > > + .type \name, %function > > +\name\(): > > + .endm > > + > > + .macro fn_end, name:req > > + .size \name, . - \name > > + .endm > > + > > + /* > > + * Emit an atomic helper for \model with operands of size \sz, using > > + * the operation specified by \insn (which is the LSE name), and which > > + * can be implemented using the generic load-locked/store-conditional > > + * (LL/SC) sequence below, using the arithmetic operation given by > > + * \opc. > > + */ > > + .macro emit_ld_sz, sz:req, insn:req, opc:req, model:req, s, a, l > > + fn_start __aarch64_\insn\()\sz\()\model > > + mov tmp0_\sz, r0_\sz > > +0: ld\a\()xr\s r0_\sz, [x1] > > + .ifnc \insn, swp > > + \opc tmp1_\sz, r0_\sz, tmp0_\sz > > + .else > > + \opc tmp1_\sz, tmp0_\sz > > + .endif > > + st\l\()xr\s w15, tmp1_\sz, [x1] > > + cbnz w15, 0b > > + ret > > + fn_end __aarch64_\insn\()\sz\()\model > > + .endm > > + > > + /* > > + * Emit atomic helpers for \model for operand sizes in the > > + * set {1, 2, 4, 8}, for the instruction pattern given by > > + * \insn. (This is the LSE name, but this implementation uses > > + * the generic LL/SC sequence using \opc as the arithmetic > > + * operation on the target.) > > + */ > > + .macro emit_ld, insn:req, opc:req, model:req, a, l > > + emit_ld_sz 1, \insn, \opc, \model, b, \a, \l > > + emit_ld_sz 2, \insn, \opc, \model, h, \a, \l > > + emit_ld_sz 4, \insn, \opc, \model, , \a, \l > > + emit_ld_sz 8, \insn, \opc, \model, , \a, \l > > + .endm > > + > > + /* > > + * Emit the compare and swap helper for \model and size \sz > > + * using LL/SC instructions. > > + */ > > + .macro emit_cas_sz, sz:req, model:req, uxt:req, s, a, l > > + fn_start __aarch64_cas\sz\()\model > > + \uxt tmp0_\sz, r0_\sz > > +0: ld\a\()xr\s r0_\sz, [x2] > > + cmp r0_\sz, tmp0_\sz > > + bne 1f > > + st\l\()xr\s w15, r1_\sz, [x2] > > + cbnz w15, 0b > > +1: ret > > + fn_end __aarch64_cas\sz\()\model > > + .endm > > + > > + /* > > + * Emit compare-and-swap helpers for \model for operand sizes in the > > + * set {1, 2, 4, 8, 16}. > > + */ > > + .macro emit_cas, model:req, a, l > > + emit_cas_sz 1, \model, uxtb, b, \a, \l > > + emit_cas_sz 2, \model, uxth, h, \a, \l > > + emit_cas_sz 4, \model, mov , , \a, \l > > + emit_cas_sz 8, \model, mov , , \a, \l > > + > > + /* > > + * We cannot use the parameterized sequence for 16 byte CAS, so we > > + * need to define it explicitly. > > + */ > > + fn_start __aarch64_cas16\model > > + mov x16, x0 > > + mov x17, x1 > > +0: ld\a\()xp x0, x1, [x4] > > + cmp x0, x16 > > + ccmp x1, x17, #0, eq > > + bne 1f > > + st\l\()xp w15, x16, x17, [x4] > > + cbnz w15, 0b > > +1: ret > > + fn_end __aarch64_cas16\model > > + .endm > > + > > + /* > > + * Emit the set of GCC outline atomic helper functions for > > + * the memory ordering model given by \model: > > + * - relax unordered loads and stores > > + * - acq load-acquire, unordered store > > + * - rel unordered load, store-release > > + * - acq_rel load-acquire, store-release > > + */ > > + .macro emit_model, model:req, a, l > > + emit_ld ldadd, add, \model, \a, \l > > + emit_ld ldclr, bic, \model, \a, \l > > + emit_ld ldeor, eor, \model, \a, \l > > + emit_ld ldset, orr, \model, \a, \l > > + emit_ld swp, mov, \model, \a, \l > > + emit_cas \model, \a, \l > > + .endm > > + > > + emit_model _relax > > + emit_model _acq, a > > + emit_model _rel,, l > > + emit_model _acq_rel, a, l > > -- > > 2.17.1 > > > > > > > >