Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1625374
| From | Paul Gortmaker <paul.gortmaker@windriver.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | Re: [PATCH v2] crypto: arm64/sha: Add constant operand modifier to ASM_EXPORT |
| Date | 2017-04-18 16:50 +0200 |
| Message-ID | <txCC6-7kc-5@gated-at.bofh.it> (permalink) |
| References | <tsY0x-6cV-9@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
On Wed, Apr 5, 2017 at 2:34 PM, Matthias Kaehlcke <mka@chromium.org> wrote:
> The operand is an integer constant, make the constness explicit by
> adding the modifier. This is needed for clang to generate valid code
> and also works with gcc.
Actually it doesn't work with all gcc. I've got an older arm64 toolchain that I
only use for syntax checking (and hence I don't care if it is the latest and
greatest) and this commit breaks it:
arch/arm64/crypto/sha1-ce-glue.c:21:2: error: invalid 'asm': invalid
operand prefix '%c'
asm(".globl " #sym "; .set " #sym ", %c0" :: "i"(val));
I'm currently reverting this change locally so I can continue to use the old
toolchain:
$ aarch64-linux-gnu-gcc --version
aarch64-linux-gnu-gcc (crosstool-NG linaro-1.13.1-4.8-2013.12 - Linaro
GCC 2013.11) 4.8.3 20131202 (prerelease)
Copyright (C) 2013 Free Software Foundation, Inc.
$ aarch64-linux-gnu-as --version
GNU assembler (crosstool-NG linaro-1.13.1-4.8-2013.12 - Linaro GCC
2013.11) 2.24.0.20131220
Copyright 2013 Free Software Foundation, Inc.
Maybe it is finally too old and nobody cares, but I thought it worth a mention.
Paul.
--
>
> Also change the constraint of the operand from 'I' ("Integer constant
> that is valid as an immediate operand in an ADD instruction", AArch64)
> to 'i' ("An immediate integer operand").
>
> Based-on-patch-from: Greg Hackmann <ghackmann@google.com>
> Signed-off-by: Greg Hackmann <ghackmann@google.com>
> Signed-off-by: Matthias Kaehlcke <mka@chromium.org>
> ---
> Changes in v2:
> - Changed operand constraint from I to i
> - Updated commit message
> - Changed 'From' tag to 'Based-on-patch-from'
>
> arch/arm64/crypto/sha1-ce-glue.c | 2 +-
> arch/arm64/crypto/sha2-ce-glue.c | 2 +-
> 2 files changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/arch/arm64/crypto/sha1-ce-glue.c b/arch/arm64/crypto/sha1-ce-glue.c
> index aefda9868627..6b520e3f3ab1 100644
> --- a/arch/arm64/crypto/sha1-ce-glue.c
> +++ b/arch/arm64/crypto/sha1-ce-glue.c
> @@ -18,7 +18,7 @@
> #include <linux/module.h>
>
> #define ASM_EXPORT(sym, val) \
> - asm(".globl " #sym "; .set " #sym ", %0" :: "I"(val));
> + asm(".globl " #sym "; .set " #sym ", %c0" :: "i"(val));
>
> MODULE_DESCRIPTION("SHA1 secure hash using ARMv8 Crypto Extensions");
> MODULE_AUTHOR("Ard Biesheuvel <ard.biesheuvel@linaro.org>");
> diff --git a/arch/arm64/crypto/sha2-ce-glue.c b/arch/arm64/crypto/sha2-ce-glue.c
> index 7cd587564a41..e3abe11de48c 100644
> --- a/arch/arm64/crypto/sha2-ce-glue.c
> +++ b/arch/arm64/crypto/sha2-ce-glue.c
> @@ -18,7 +18,7 @@
> #include <linux/module.h>
>
> #define ASM_EXPORT(sym, val) \
> - asm(".globl " #sym "; .set " #sym ", %0" :: "I"(val));
> + asm(".globl " #sym "; .set " #sym ", %c0" :: "i"(val));
>
> MODULE_DESCRIPTION("SHA-224/SHA-256 secure hash using ARMv8 Crypto Extensions");
> MODULE_AUTHOR("Ard Biesheuvel <ard.biesheuvel@linaro.org>");
> --
> 2.12.2.715.g7642488e1d-goog
>
Back to linux.kernel | Previous | Next — Next in thread | Find similar | Unroll thread
Re: [PATCH v2] crypto: arm64/sha: Add constant operand modifier to ASM_EXPORT Paul Gortmaker <paul.gortmaker@windriver.com> - 2017-04-18 16:50 +0200
Re: [PATCH v2] crypto: arm64/sha: Add constant operand modifier to ASM_EXPORT Ard Biesheuvel <ard.biesheuvel@linaro.org> - 2017-04-18 17:40 +0200
Re: [PATCH v2] crypto: arm64/sha: Add constant operand modifier to ASM_EXPORT Matthias Kaehlcke <mka@chromium.org> - 2017-04-18 19:40 +0200
Re: [PATCH v2] crypto: arm64/sha: Add constant operand modifier to ASM_EXPORT Herbert Xu <herbert@gondor.apana.org.au> - 2017-04-24 10:10 +0200
Re: [PATCH v2] crypto: arm64/sha: Add constant operand modifier to ASM_EXPORT Ard Biesheuvel <ard.biesheuvel@linaro.org> - 2017-04-24 10:10 +0200
Re: [PATCH v2] crypto: arm64/sha: Add constant operand modifier to ASM_EXPORT Herbert Xu <herbert@gondor.apana.org.au> - 2017-04-24 10:20 +0200
csiph-web