powerpc: Work around inline asm issues in alternate feature sections
authorBill Wendling <morbo@google.com>
Fri, 20 Nov 2020 22:40:34 +0000 (14:40 -0800)
committerMichael Ellerman <mpe@ellerman.id.au>
Thu, 26 Nov 2020 11:05:43 +0000 (22:05 +1100)
commitf47462c9d8af437ae7d3ef410cf11513f5e3714c
tree09670d0116c292a3a12327f7d469c8697a59324b
parent215fadfe87259f38418ec78744796f099092fff1
powerpc: Work around inline asm issues in alternate feature sections

The clang toolchain treats inline assembly a bit differently than
straight assembly code. In particular, inline assembly doesn't have
the complete context available to resolve expressions. This is
intentional to avoid divergence in the resulting assembly code.

We can work around this issue by borrowing a workaround done for ARM,
i.e. not directly testing the labels themselves, but by moving the
current output pointer by a value that should always be zero. If this
value is not null, then we will trigger a backward move, which is
explicitly forbidden.

Signed-off-by: Bill Wendling <morbo@google.com>
[mpe: Put it in a macro and only do the workaround for clang]
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Link: https://lore.kernel.org/r/20201120224034.191382-4-morbo@google.com
arch/powerpc/include/asm/feature-fixups.h