1 /* 2 * Copyright (c) 2001 David E. O'Brien 3 * 4 * Redistribution and use in source and binary forms, with or without 5 * modification, are permitted provided that the following conditions 6 * are met: 7 * 1. Redistributions of source code must retain the above copyright 8 * notice, this list of conditions and the following disclaimer. 9 * 2. Redistributions in binary form must reproduce the above copyright 10 * notice, this list of conditions and the following disclaimer in the 11 * documentation and/or other materials provided with the distribution. 12 * 3. Neither the name of the University nor the names of its contributors 13 * may be used to endorse or promote products derived from this software 14 * without specific prior written permission. 15 * 16 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 17 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 18 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 19 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 20 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 21 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 22 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 23 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 24 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 25 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 26 * SUCH DAMAGE. 27 * 28 * @(#)endian.h 8.1 (Berkeley) 6/10/93 29 * $NetBSD: endian.h,v 1.7 1999/08/21 05:53:51 simonb Exp $ 30 * $FreeBSD$ 31 */ 32 33 #ifndef _ENDIAN_H_ 34 #define _ENDIAN_H_ 35 36 #include <sys/_types.h> 37 38 /* 39 * Definitions for byte order, according to byte significance from low 40 * address to high. 41 */ 42 #define _LITTLE_ENDIAN 1234 /* LSB first: i386, vax */ 43 #define _BIG_ENDIAN 4321 /* MSB first: 68000, ibm, net */ 44 #define _PDP_ENDIAN 3412 /* LSB first in word, MSW first in long */ 45 46 #define _BYTE_ORDER _LITTLE_ENDIAN 47 48 #if __BSD_VISIBLE 49 #define LITTLE_ENDIAN _LITTLE_ENDIAN 50 #define BIG_ENDIAN _BIG_ENDIAN 51 #define PDP_ENDIAN _PDP_ENDIAN 52 #define BYTE_ORDER _BYTE_ORDER 53 #endif 54 55 #define _QUAD_HIGHWORD 1 56 #define _QUAD_LOWWORD 0 57 #define __ntohl(x) (__bswap32(x)) 58 #define __ntohs(x) (__bswap16(x)) 59 #define __htonl(x) (__bswap16(x)) 60 #define __htons(x) (__bswap32(x)) 61 62 static __inline __uint64_t 63 __bswap64(__uint64_t _x) 64 { 65 66 return ((_x >> 56) | ((_x >> 40) & 0xff00) | ((_x >> 24) & 0xff0000) | 67 ((_x >> 8) & 0xff000000) | ((_x << 8) & ((__uint64_t)0xff << 32)) | 68 ((_x << 24) & ((__uint64_t)0xff << 40)) | 69 ((_x << 40) & ((__uint64_t)0xff << 48)) | ((_x << 56))); 70 } 71 72 static __inline __uint32_t 73 __bswap32(__uint32_t v) 74 { 75 __uint32_t t1; 76 77 t1 = v ^ ((v << 16) | (v >> 16)); 78 t1 &= 0xff00ffffU; 79 v = (v >> 8) | (v << 24); 80 v ^= (t1 >> 8); 81 82 return (v); 83 } 84 85 static __inline __uint16_t 86 __bswap16(__uint32_t v) 87 { 88 __asm __volatile( 89 "mov %0, %1, ror #8\n" 90 "orr %0, %0, %0, lsr #16\n" 91 "bic %0, %0, %0, lsl #16" 92 : "=r" (v) 93 : "0" (v)); 94 95 return (v); 96 } 97 #endif /* !_ENDIAN_H_ */ 98