On Thu, Nov 29, 2018 at 09:03:54AM +0000, Julien Thierry wrote: > > > On 29/11/18 04:19, Nick Desaulniers wrote: > > Fixes the warning produced from Clang: > > ./include/asm-generic/io.h:711:9: warning: value size does not match > > register size specified by the constraint and modifier > > [-Wasm-operand-widths] > > return readl(addr); > > ^ > > ./arch/arm64/include/asm/io.h:149:58: note: expanded from macro 'readl' > > ^ > > ./include/asm-generic/io.h:711:9: note: use constraint modifier "w" > > ./arch/arm64/include/asm/io.h:149:50: note: expanded from macro 'readl' > > ^ > > ./arch/arm64/include/asm/io.h:118:25: note: expanded from macro '__iormb' > > asm volatile("eor %w0, %1, %1\n" \ > > ^ > > Why does the "eor %0, %1, %1" become "eor %w0, %1, %1" ? > The variable passed to the inline assembly for %0 is unsigned long, so > always 64-bits wide on arm64. Why is clang trying to use a 32-bit > register for it?
Yeah, the message above looks bogus to me. I can see %1 being 32-bit for read[bwl], so maybe clang is just getting the diagnostic wrong. If so, I wonder if the following fixes the problem: diff --git a/arch/arm64/include/asm/io.h b/arch/arm64/include/asm/io.h index d42d00d8d5b6..13befec8b64e 100644 --- a/arch/arm64/include/asm/io.h +++ b/arch/arm64/include/asm/io.h @@ -117,7 +117,7 @@ static inline u64 __raw_readq(const volatile void __iomem *addr) */ \ asm volatile("eor %0, %1, %1\n" \ "cbnz %0, ." \ - : "=r" (tmp) : "r" (v) : "memory"); \ + : "=r" (tmp) : "r" (unsigned long)(v) : "memory"); \ }) #define __iowmb() wmb() Will