freebsd-dev/sys/libkern/alpha
Thomas Moestl 90ce56c287 Add the following functions/macros to support byte order conversions and
device drivers for bus system with other endinesses than the CPU (using
interfaces compatible to NetBSD):

- bwap16() and bswap32(). These have optimized implementations on some
  architectures; for those that don't, there exist generic implementations.
- macros to convert from a certain byte order to host byte order and vice
  versa, using a naming scheme like le16toh(), htole16().
  These are implemented using the bswap functions.
- stream bus space access functions, which do not perform a byte order
  conversion (while the normal access functions would if the bus endianess
  differs from the CPU endianess).

htons(), htonl(), ntohs() and ntohl() are implemented using the new
functions above for kernel usage. None of the above interfaces is currently
exported to user land.

Make use of the new functions in a few places where local implementations
of the same functionality existed.

Reviewed by:	mike, bde
Tested on alpha by:	mike
2002-02-27 17:16:18 +00:00
..
bswap16.S Add the following functions/macros to support byte order conversions and 2002-02-27 17:16:18 +00:00
bswap32.S Add the following functions/macros to support byte order conversions and 2002-02-27 17:16:18 +00:00
byte_swap_2.S Add the following functions/macros to support byte order conversions and 2002-02-27 17:16:18 +00:00
byte_swap_4.S Add the following functions/macros to support byte order conversions and 2002-02-27 17:16:18 +00:00