]> www.infradead.org Git - users/dwmw2/linux.git/commitdiff
x86/bitops: Use TZCNT mnemonic in <asm/bitops.h>
authorUros Bizjak <ubizjak@gmail.com>
Tue, 25 Mar 2025 17:52:01 +0000 (18:52 +0100)
committerIngo Molnar <mingo@kernel.org>
Tue, 25 Mar 2025 21:38:29 +0000 (22:38 +0100)
Current minimum required version of binutils is 2.25,
which supports TZCNT instruction mnemonic.

Replace "REP; BSF" in variable__{ffs,ffz}() function
with this proper mnemonic.

No functional change intended.

Signed-off-by: Uros Bizjak <ubizjak@gmail.com>
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Cc: Andy Lutomirski <luto@kernel.org>
Cc: Brian Gerst <brgerst@gmail.com>
Cc: Juergen Gross <jgross@suse.com>
Cc: H. Peter Anvin <hpa@zytor.com>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Josh Poimboeuf <jpoimboe@redhat.com>
Link: https://lore.kernel.org/r/20250325175215.330659-1-ubizjak@gmail.com
arch/x86/include/asm/bitops.h

index 100413aff6402e37acd4ef5b0c94e98e4d7a1e87..bbaf75ea6703bf767a34234d5ec48a9b8d16cada 100644 (file)
@@ -248,7 +248,7 @@ arch_test_bit_acquire(unsigned long nr, const volatile unsigned long *addr)
 
 static __always_inline unsigned long variable__ffs(unsigned long word)
 {
-       asm("rep; bsf %1,%0"
+       asm("tzcnt %1,%0"
                : "=r" (word)
                : ASM_INPUT_RM (word));
        return word;
@@ -267,7 +267,7 @@ static __always_inline unsigned long variable__ffs(unsigned long word)
 
 static __always_inline unsigned long variable_ffz(unsigned long word)
 {
-       asm("rep; bsf %1,%0"
+       asm("tzcnt %1,%0"
                : "=r" (word)
                : "r" (~word));
        return word;