1997-07-24 01:36:01 +00:00
|
|
|
/* Macros to swap the order of bytes in integer values.
|
2018-01-01 00:32:25 +00:00
|
|
|
Copyright (C) 1997-2018 Free Software Foundation, Inc.
|
1997-07-24 01:36:01 +00: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 04:58:11 +00: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 01:36:01 +00: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 04:58:11 +00:00
|
|
|
Lesser General Public License for more details.
|
1997-07-24 01:36:01 +00:00
|
|
|
|
2001-07-06 04:58:11 +00:00
|
|
|
You should have received a copy of the GNU Lesser General Public
|
2012-02-09 23:18:22 +00:00
|
|
|
License along with the GNU C Library; if not, see
|
|
|
|
<http://www.gnu.org/licenses/>. */
|
1997-07-24 01:36:01 +00:00
|
|
|
|
2008-05-15 02:54:33 +00:00
|
|
|
#if !defined _BYTESWAP_H && !defined _NETINET_IN_H && !defined _ENDIAN_H
|
1997-11-26 04:23:08 +00:00
|
|
|
# error "Never use <bits/byteswap.h> directly; include <byteswap.h> instead."
|
|
|
|
#endif
|
1997-07-24 01:36:01 +00:00
|
|
|
|
2002-01-08 10:19:35 +00:00
|
|
|
#ifndef _BITS_BYTESWAP_H
|
|
|
|
#define _BITS_BYTESWAP_H 1
|
|
|
|
|
2012-04-06 23:13:40 +00:00
|
|
|
#include <features.h>
|
2012-11-20 00:04:45 +00:00
|
|
|
#include <bits/types.h>
|
2012-04-06 23:13:40 +00:00
|
|
|
|
1997-07-24 01:36:01 +00:00
|
|
|
/* Swap bytes in 16 bit value. */
|
2005-10-10 15:49:43 +00:00
|
|
|
#define __bswap_constant_16(x) \
|
2012-06-21 13:49:33 +00:00
|
|
|
((unsigned short int)((((x) >> 8) & 0xffu) | (((x) & 0xffu) << 8)))
|
2005-10-10 15:49:43 +00:00
|
|
|
|
2012-04-06 22:13:09 +00:00
|
|
|
/* Get __bswap_16. */
|
|
|
|
#include <bits/byteswap-16.h>
|
1997-07-24 01:36:01 +00:00
|
|
|
|
|
|
|
/* Swap bytes in 32 bit value. */
|
2005-10-10 15:49:43 +00:00
|
|
|
#define __bswap_constant_32(x) \
|
|
|
|
((((x) & 0xff000000u) >> 24) | (((x) & 0x00ff0000u) >> 8) | \
|
|
|
|
(((x) & 0x0000ff00u) << 8) | (((x) & 0x000000ffu) << 24))
|
|
|
|
|
1998-08-08 20:02:34 +00:00
|
|
|
#ifdef __GNUC__
|
2012-11-29 04:04:32 +00:00
|
|
|
# if __GNUC_PREREQ (4, 3)
|
2012-04-06 23:13:40 +00:00
|
|
|
static __inline unsigned int
|
|
|
|
__bswap_32 (unsigned int __bsx)
|
|
|
|
{
|
|
|
|
return __builtin_bswap32 (__bsx);
|
|
|
|
}
|
|
|
|
# else
|
|
|
|
# define __bswap_32(x) \
|
2005-02-15 22:53:48 +00:00
|
|
|
(__extension__ \
|
2013-06-07 22:24:35 +00:00
|
|
|
({ unsigned int __bsx = (x); __bswap_constant_32 (__bsx); }))
|
2012-04-06 23:13:40 +00:00
|
|
|
# endif
|
1998-08-08 20:02:34 +00:00
|
|
|
#else
|
|
|
|
static __inline unsigned int
|
1998-11-20 17:27:07 +00:00
|
|
|
__bswap_32 (unsigned int __bsx)
|
1998-08-08 20:02:34 +00:00
|
|
|
{
|
2005-10-10 15:49:43 +00:00
|
|
|
return __bswap_constant_32 (__bsx);
|
1998-08-08 20:02:34 +00:00
|
|
|
}
|
|
|
|
#endif
|
1997-07-24 01:36:01 +00:00
|
|
|
|
|
|
|
/* Swap bytes in 64 bit value. */
|
2012-04-06 23:13:40 +00:00
|
|
|
#if __GNUC_PREREQ (2, 0)
|
2001-01-07 20:02:56 +00:00
|
|
|
# define __bswap_constant_64(x) \
|
2011-12-23 18:52:59 +00:00
|
|
|
(__extension__ ((((x) & 0xff00000000000000ull) >> 56) \
|
|
|
|
| (((x) & 0x00ff000000000000ull) >> 40) \
|
|
|
|
| (((x) & 0x0000ff0000000000ull) >> 24) \
|
|
|
|
| (((x) & 0x000000ff00000000ull) >> 8) \
|
|
|
|
| (((x) & 0x00000000ff000000ull) << 8) \
|
|
|
|
| (((x) & 0x0000000000ff0000ull) << 24) \
|
|
|
|
| (((x) & 0x000000000000ff00ull) << 40) \
|
|
|
|
| (((x) & 0x00000000000000ffull) << 56)))
|
2000-12-27 20:01:21 +00:00
|
|
|
|
2012-11-29 04:04:32 +00:00
|
|
|
# if __GNUC_PREREQ (4, 3)
|
2012-11-20 00:04:45 +00:00
|
|
|
static __inline __uint64_t
|
|
|
|
__bswap_64 (__uint64_t __bsx)
|
2012-04-06 23:13:40 +00:00
|
|
|
{
|
|
|
|
return __builtin_bswap64 (__bsx);
|
|
|
|
}
|
|
|
|
# else
|
|
|
|
# define __bswap_64(x) \
|
1998-10-01 11:00:26 +00:00
|
|
|
(__extension__ \
|
2012-11-20 00:04:45 +00:00
|
|
|
({ union { __extension__ __uint64_t __ll; \
|
2001-01-07 20:02:56 +00:00
|
|
|
unsigned int __l[2]; } __w, __r; \
|
2011-12-23 18:52:59 +00:00
|
|
|
if (__builtin_constant_p (x)) \
|
2000-12-27 20:01:21 +00:00
|
|
|
__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 11:00:26 +00:00
|
|
|
__r.__ll; }))
|
2012-04-06 23:13:40 +00:00
|
|
|
# endif
|
2013-01-11 21:13:25 +00:00
|
|
|
#else
|
2012-03-28 14:39:25 +00:00
|
|
|
# define __bswap_constant_64(x) \
|
|
|
|
((((x) & 0xff00000000000000ull) >> 56) \
|
|
|
|
| (((x) & 0x00ff000000000000ull) >> 40) \
|
|
|
|
| (((x) & 0x0000ff0000000000ull) >> 24) \
|
|
|
|
| (((x) & 0x000000ff00000000ull) >> 8) \
|
|
|
|
| (((x) & 0x00000000ff000000ull) << 8) \
|
|
|
|
| (((x) & 0x0000000000ff0000ull) << 24) \
|
|
|
|
| (((x) & 0x000000000000ff00ull) << 40) \
|
|
|
|
| (((x) & 0x00000000000000ffull) << 56))
|
|
|
|
|
2012-11-20 00:04:45 +00:00
|
|
|
static __inline __uint64_t
|
|
|
|
__bswap_64 (__uint64_t __bsx)
|
2012-03-28 14:39:25 +00:00
|
|
|
{
|
|
|
|
return __bswap_constant_64 (__bsx);
|
|
|
|
}
|
1997-07-24 01:36:01 +00:00
|
|
|
#endif
|
2002-01-08 10:19:35 +00:00
|
|
|
|
|
|
|
#endif /* _BITS_BYTESWAP_H */
|