1 #ifndef _ASM_X86_BYTEORDER_H
2 #define _ASM_X86_BYTEORDER_H
5 #include <linux/compiler.h>
11 static inline __attribute_const__ __u32
___arch__swab32(__u32 x
)
13 #ifdef CONFIG_X86_BSWAP
14 asm("bswap %0" : "=r" (x
) : "0" (x
));
16 asm("xchgb %b0,%h0\n\t" /* swap lower bytes */
17 "rorl $16,%0\n\t" /* swap words */
18 "xchgb %b0,%h0" /* swap higher bytes */
25 static inline __attribute_const__ __u64
___arch__swab64(__u64 val
)
35 #ifdef CONFIG_X86_BSWAP
36 asm("bswapl %0 ; bswapl %1 ; xchgl %0,%1"
37 : "=r" (v
.s
.a
), "=r" (v
.s
.b
)
38 : "0" (v
.s
.a
), "1" (v
.s
.b
));
40 v
.s
.a
= ___arch__swab32(v
.s
.a
);
41 v
.s
.b
= ___arch__swab32(v
.s
.b
);
43 : "=r" (v
.s
.a
), "=r" (v
.s
.b
)
44 : "0" (v
.s
.a
), "1" (v
.s
.b
));
51 static inline __attribute_const__ __u64
___arch__swab64(__u64 x
)
59 static inline __attribute_const__ __u32
___arch__swab32(__u32 x
)
69 /* Do not define swab16. Gcc is smart enough to recognize "C" version and
70 convert it into rotation or exhange. */
72 #define __arch__swab64(x) ___arch__swab64(x)
73 #define __arch__swab32(x) ___arch__swab32(x)
75 #define __BYTEORDER_HAS_U64__
79 #include <linux/byteorder/little_endian.h>
81 #endif /* _ASM_X86_BYTEORDER_H */