1997-07-24 03:36:01 +02:00
|
|
|
/* Macros to swap the order of bytes in integer values.
|
2008-05-15 04:54:33 +02:00
|
|
|
Copyright (C) 1997,1998,2000-2002,2005,2008 Free Software Foundation, Inc.
|
1997-07-24 03:36:01 +02:00
|
|
|
This file is part of the GNU C Library.
|
|
|
|
|
|
|
|
The GNU C Library is free software; you can redistribute it and/or
|
2001-07-06 06:58:11 +02:00
|
|
|
modify it under the terms of the GNU Lesser General Public
|
|
|
|
License as published by the Free Software Foundation; either
|
|
|
|
version 2.1 of the License, or (at your option) any later version.
|
1997-07-24 03:36:01 +02:00
|
|
|
|
|
|
|
The GNU C Library is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
2001-07-06 06:58:11 +02:00
|
|
|
Lesser General Public License for more details.
|
1997-07-24 03:36:01 +02:00
|
|
|
|
2001-07-06 06:58:11 +02:00
|
|
|
You should have received a copy of the GNU Lesser General Public
|
|
|
|
License along with the GNU C Library; if not, write to the Free
|
|
|
|
Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
|
|
|
|
02111-1307 USA. */
|
1997-07-24 03:36:01 +02:00
|
|
|
|
2008-05-15 04:54:33 +02:00
|
|
|
#if !defined _BYTESWAP_H && !defined _NETINET_IN_H && !defined _ENDIAN_H
|
1997-11-26 05:23:08 +01:00
|
|
|
# error "Never use <bits/byteswap.h> directly; include <byteswap.h> instead."
|
|
|
|
#endif
|
1997-07-24 03:36:01 +02:00
|
|
|
|
2002-01-08 11:19:35 +01:00
|
|
|
#ifndef _BITS_BYTESWAP_H
|
|
|
|
#define _BITS_BYTESWAP_H 1
|
|
|
|
|
1997-07-24 03:36:01 +02:00
|
|
|
/* Swap bytes in 16 bit value. */
|
2005-10-10 17:49:43 +02:00
|
|
|
#define __bswap_constant_16(x) \
|
|
|
|
((((x) >> 8) & 0xffu) | (((x) & 0xffu) << 8))
|
|
|
|
|
1998-08-08 22:02:34 +02:00
|
|
|
#ifdef __GNUC__
|
|
|
|
# define __bswap_16(x) \
|
|
|
|
(__extension__ \
|
2005-10-10 17:49:43 +02:00
|
|
|
({ unsigned short int __bsx = (x); __bswap_constant_16 (__bsx); }))
|
1998-08-08 22:02:34 +02:00
|
|
|
#else
|
|
|
|
static __inline unsigned short int
|
1998-11-20 18:27:07 +01:00
|
|
|
__bswap_16 (unsigned short int __bsx)
|
1998-08-08 22:02:34 +02:00
|
|
|
{
|
2005-10-10 17:49:43 +02:00
|
|
|
return __bswap_constant_16 (__bsx);
|
1998-08-08 22:02:34 +02:00
|
|
|
}
|
|
|
|
#endif
|
1997-07-24 03:36:01 +02:00
|
|
|
|
|
|
|
/* Swap bytes in 32 bit value. */
|
2005-10-10 17:49:43 +02:00
|
|
|
#define __bswap_constant_32(x) \
|
|
|
|
((((x) & 0xff000000u) >> 24) | (((x) & 0x00ff0000u) >> 8) | \
|
|
|
|
(((x) & 0x0000ff00u) << 8) | (((x) & 0x000000ffu) << 24))
|
|
|
|
|
1998-08-08 22:02:34 +02:00
|
|
|
#ifdef __GNUC__
|
|
|
|
# define __bswap_32(x) \
|
2005-02-15 23:53:48 +01:00
|
|
|
(__extension__ \
|
2005-10-10 17:49:43 +02:00
|
|
|
({ register unsigned int __bsx = (x); __bswap_constant_32 (__bsx); }))
|
1998-08-08 22:02:34 +02:00
|
|
|
#else
|
|
|
|
static __inline unsigned int
|
1998-11-20 18:27:07 +01:00
|
|
|
__bswap_32 (unsigned int __bsx)
|
1998-08-08 22:02:34 +02:00
|
|
|
{
|
2005-10-10 17:49:43 +02:00
|
|
|
return __bswap_constant_32 (__bsx);
|
1998-08-08 22:02:34 +02:00
|
|
|
}
|
|
|
|
#endif
|
1997-07-24 03:36:01 +02:00
|
|
|
|
|
|
|
#if defined __GNUC__ && __GNUC__ >= 2
|
|
|
|
/* Swap bytes in 64 bit value. */
|
2001-01-07 21:02:56 +01:00
|
|
|
# define __bswap_constant_64(x) \
|
2000-12-27 21:01:21 +01:00
|
|
|
((((x) & 0xff00000000000000ull) >> 56) \
|
|
|
|
| (((x) & 0x00ff000000000000ull) >> 40) \
|
|
|
|
| (((x) & 0x0000ff0000000000ull) >> 24) \
|
|
|
|
| (((x) & 0x000000ff00000000ull) >> 8) \
|
|
|
|
| (((x) & 0x00000000ff000000ull) << 8) \
|
|
|
|
| (((x) & 0x0000000000ff0000ull) << 24) \
|
|
|
|
| (((x) & 0x000000000000ff00ull) << 40) \
|
|
|
|
| (((x) & 0x00000000000000ffull) << 56))
|
|
|
|
|
1997-07-24 03:36:01 +02:00
|
|
|
# define __bswap_64(x) \
|
1998-10-01 13:00:26 +02:00
|
|
|
(__extension__ \
|
2000-12-27 21:01:21 +01:00
|
|
|
({ union { __extension__ unsigned long long int __ll; \
|
2001-01-07 21:02:56 +01:00
|
|
|
unsigned int __l[2]; } __w, __r; \
|
2000-12-27 21:01:21 +01:00
|
|
|
if (__builtin_constant_p (x)) \
|
|
|
|
__r.__ll = __bswap_constant_64 (x); \
|
|
|
|
else \
|
|
|
|
{ \
|
|
|
|
__w.__ll = (x); \
|
|
|
|
__r.__l[0] = __bswap_32 (__w.__l[1]); \
|
|
|
|
__r.__l[1] = __bswap_32 (__w.__l[0]); \
|
|
|
|
} \
|
1998-10-01 13:00:26 +02:00
|
|
|
__r.__ll; }))
|
1997-07-24 03:36:01 +02:00
|
|
|
#endif
|
2002-01-08 11:19:35 +01:00
|
|
|
|
|
|
|
#endif /* _BITS_BYTESWAP_H */
|