2005-05-20 04:34:42 +08:00
|
|
|
/* endian.h
|
2005-05-20 03:44:31 +08:00
|
|
|
|
|
|
|
This file is part of Cygwin.
|
|
|
|
|
|
|
|
This software is a copyrighted work licensed under the terms of the
|
|
|
|
Cygwin license. Please consult the file "CYGWIN_LICENSE" for
|
|
|
|
details. */
|
|
|
|
|
|
|
|
#ifndef _ENDIAN_H_
|
|
|
|
#define _ENDIAN_H_
|
|
|
|
|
2005-08-07 07:00:06 +08:00
|
|
|
#include <sys/config.h>
|
BSD compatibility for <machine/endian.h>
Introduce <machine/_endian.h> to let target based customization of
<machine/endian.h> via
* _LITTLE_ENDIAN,
* _BIG_ENDIAN,
* _PDP_ENDIAN, and
* _BYTE_ORDER.
defines. Add definitions expected by FreeBSD to
<machine/endian.h> like
* _QUAD_HIGHWORD,
* _QUAD_LOWWORD,
* __bswap16(),
* __bswap32(),
* __bswap64(),
* __htonl(),
* __htons(),
* __ntohl(), and
* __ntohs().
Also, if __BSD_VISIBLE
* LITTLE_ENDIAN,
* BIG_ENDIAN,
* PDP_ENDIAN, and
* BYTE_ORDER.
Targets that define __machine_host_to_from_network_defined in
<machine/_endian.h> must provide their own implementation of
* __htonl(),
* __htons(),
* __ntohl(), and
* __ntohs(),
otherwise a default implementation is provided by <machine/endian.h>.
In case of GCC defines to builtins are used.
Signed-off-by: Sebastian Huber <sebastian.huber@embedded-brains.de>
2016-04-18 21:29:21 +08:00
|
|
|
#include <machine/endian.h>
|
2005-08-07 07:00:06 +08:00
|
|
|
|
2005-11-11 05:17:15 +08:00
|
|
|
/*#ifdef __USE_BSD*/
|
BSD compatibility for <machine/endian.h>
Introduce <machine/_endian.h> to let target based customization of
<machine/endian.h> via
* _LITTLE_ENDIAN,
* _BIG_ENDIAN,
* _PDP_ENDIAN, and
* _BYTE_ORDER.
defines. Add definitions expected by FreeBSD to
<machine/endian.h> like
* _QUAD_HIGHWORD,
* _QUAD_LOWWORD,
* __bswap16(),
* __bswap32(),
* __bswap64(),
* __htonl(),
* __htons(),
* __ntohl(), and
* __ntohs().
Also, if __BSD_VISIBLE
* LITTLE_ENDIAN,
* BIG_ENDIAN,
* PDP_ENDIAN, and
* BYTE_ORDER.
Targets that define __machine_host_to_from_network_defined in
<machine/_endian.h> must provide their own implementation of
* __htonl(),
* __htons(),
* __ntohl(), and
* __ntohs(),
otherwise a default implementation is provided by <machine/endian.h>.
In case of GCC defines to builtins are used.
Signed-off-by: Sebastian Huber <sebastian.huber@embedded-brains.de>
2016-04-18 21:29:21 +08:00
|
|
|
# ifndef LITTLE_ENDIAN
|
|
|
|
# define LITTLE_ENDIAN __LITTLE_ENDIAN
|
|
|
|
# endif
|
|
|
|
# ifndef BIG_ENDIAN
|
|
|
|
# define BIG_ENDIAN __BIG_ENDIAN
|
|
|
|
# endif
|
|
|
|
# ifndef PDP_ENDIAN
|
|
|
|
# define PDP_ENDIAN __PDP_ENDIAN
|
|
|
|
# endif
|
|
|
|
# ifndef BYTE_ORDER
|
|
|
|
# define BYTE_ORDER __BYTE_ORDER
|
|
|
|
# endif
|
2005-11-11 05:17:15 +08:00
|
|
|
/*#endif*/
|
2005-08-07 07:00:06 +08:00
|
|
|
|
|
|
|
#if __BYTE_ORDER == __LITTLE_ENDIAN
|
|
|
|
# define __LONG_LONG_PAIR(HI, LO) LO, HI
|
|
|
|
#elif __BYTE_ORDER == __BIG_ENDIAN
|
|
|
|
# define __LONG_LONG_PAIR(HI, LO) HI, LO
|
|
|
|
#endif
|
* endian.h (htobe16, htobe32, htobe64, be16toh, be32toh, be64toh,
htole16, htole32, htole64, le16toh, le32toh, le64toh): Define.
2010-08-20 20:18:47 +08:00
|
|
|
|
2016-03-15 10:24:29 +08:00
|
|
|
#if __BSD_VISIBLE
|
* endian.h (htobe16, htobe32, htobe64, be16toh, be32toh, be64toh,
htole16, htole32, htole64, le16toh, le32toh, le64toh): Define.
2010-08-20 20:18:47 +08:00
|
|
|
|
|
|
|
#include <byteswap.h>
|
|
|
|
|
|
|
|
#if __BYTE_ORDER == __LITTLE_ENDIAN
|
|
|
|
|
|
|
|
#define htobe16(x) bswap_16(x)
|
|
|
|
#define htobe32(x) bswap_32(x)
|
|
|
|
#define htobe64(x) bswap_64(x)
|
|
|
|
|
|
|
|
#define be16toh(x) bswap_16(x)
|
|
|
|
#define be32toh(x) bswap_32(x)
|
|
|
|
#define be64toh(x) bswap_64(x)
|
|
|
|
|
|
|
|
#define htole16(x) (x)
|
|
|
|
#define htole32(x) (x)
|
|
|
|
#define htole64(x) (x)
|
|
|
|
|
|
|
|
#define le16toh(x) (x)
|
|
|
|
#define le32toh(x) (x)
|
|
|
|
#define le64toh(x) (x)
|
|
|
|
|
|
|
|
#endif /*__BYTE_ORDER == __LITTLE_ENDIAN*/
|
|
|
|
|
|
|
|
#if __BYTE_ORDER == __BIG_ENDIAN
|
|
|
|
|
|
|
|
#define htobe16(x) (x)
|
|
|
|
#define htobe32(x) (x)
|
|
|
|
#define htobe64(x) (x)
|
|
|
|
|
|
|
|
#define be16toh(x) (x)
|
|
|
|
#define be32toh(x) (x)
|
|
|
|
#define be64toh(x) (x)
|
|
|
|
|
|
|
|
#define htole16(x) bswap_16(x)
|
|
|
|
#define htole32(x) bswap_32(x)
|
|
|
|
#define htole64(x) bswap_64(x)
|
|
|
|
|
|
|
|
#define le16toh(x) bswap_16(x)
|
|
|
|
#define le32toh(x) bswap_32(x)
|
|
|
|
#define le64toh(x) bswap_64(x)
|
|
|
|
|
|
|
|
#endif /*__BYTE_ORDER == __BIG_ENDIAN*/
|
|
|
|
|
2016-03-15 10:24:29 +08:00
|
|
|
#endif /*__BSD_VISIBLE*/
|
* endian.h (htobe16, htobe32, htobe64, be16toh, be32toh, be64toh,
htole16, htole32, htole64, le16toh, le32toh, le64toh): Define.
2010-08-20 20:18:47 +08:00
|
|
|
|
2005-08-07 07:00:06 +08:00
|
|
|
#endif /*_ENDIAN_H_*/
|
2005-05-20 03:44:31 +08:00
|
|
|
|