installer: Finish incomplete commit to merge nrelease/{installer,root}.
[dragonfly.git] / sys / cpu / amd64 / include / endian.h
1 /*-
2  * Copyright (c) 1987, 1991 Regents of the University of California.
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  * 3. All advertising materials mentioning features or use of this software
14  *    must display the following acknowledgement:
15  *      This product includes software developed by the University of
16  *      California, Berkeley and its contributors.
17  * 4. Neither the name of the University nor the names of its contributors
18  *    may be used to endorse or promote products derived from this software
19  *    without specific prior written permission.
20  *
21  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31  * SUCH DAMAGE.
32  *
33  *      @(#)endian.h    7.8 (Berkeley) 4/3/91
34  * $FreeBSD: src/sys/amd64/include/endian.h,v 1.5 2003/09/22 22:37:49 peter Exp $
35  * $DragonFly: src/sys/cpu/amd64/include/endian.h,v 1.1 2007/08/21 19:40:24 corecode Exp $
36  */
37
38 #ifndef _CPU_ENDIAN_H_
39 #define _CPU_ENDIAN_H_
40
41 #ifndef _KERNEL
42 #include <sys/cdefs.h>
43 #endif
44
45 #include <machine/stdint.h>
46
47 /*
48  * Define the order of 32-bit words in 64-bit words.
49  */
50 #define _QUAD_HIGHWORD 1
51 #define _QUAD_LOWWORD 0
52
53 /*
54  * Definitions for byte order, according to byte significance from low
55  * address to high.
56  */
57 #define _LITTLE_ENDIAN  1234    /* LSB first: i386, vax */
58 #define _BIG_ENDIAN     4321    /* MSB first: 68000, ibm, net */
59 #define _PDP_ENDIAN     3412    /* LSB first in word, MSW first in long */
60
61 #define _BYTE_ORDER     _LITTLE_ENDIAN
62
63 /*
64  * Deprecated variants that don't have enough underscores to be useful in more
65  * strict namespaces.
66  */
67 #if __BSD_VISIBLE
68 #define LITTLE_ENDIAN   _LITTLE_ENDIAN
69 #define BIG_ENDIAN      _BIG_ENDIAN
70 #define PDP_ENDIAN      _PDP_ENDIAN
71 #define BYTE_ORDER      _BYTE_ORDER
72 #endif
73
74 #ifdef __GNUC__
75
76 #define __word_swap_int_var(x) \
77 __extension__ ({ register __uint32_t __X = (x); \
78    __asm ("rorl $16, %0" : "+r" (__X)); \
79    __X; })
80
81 #ifdef __OPTIMIZE__
82
83 #define __word_swap_int_const(x) \
84         ((((x) & 0xffff0000) >> 16) | \
85          (((x) & 0x0000ffff) << 16))
86 #define __word_swap_int(x) (__builtin_constant_p(x) ? \
87         __word_swap_int_const(x) : __word_swap_int_var(x))
88
89 #else   /* __OPTIMIZE__ */
90
91 #define __word_swap_int(x) __word_swap_int_var(x)
92
93 #endif  /* __OPTIMIZE__ */
94
95 #define __byte_swap_int_var(x) \
96 __extension__ ({ register __uint32_t __X = (x); \
97    __asm ("bswap %0" : "+r" (__X)); \
98    __X; })
99
100 #ifdef __OPTIMIZE__
101
102 #define __byte_swap_int_const(x) \
103         ((((x) & 0xff000000) >> 24) | \
104          (((x) & 0x00ff0000) >>  8) | \
105          (((x) & 0x0000ff00) <<  8) | \
106          (((x) & 0x000000ff) << 24))
107 #define __byte_swap_int(x) (__builtin_constant_p(x) ? \
108         __byte_swap_int_const(x) : __byte_swap_int_var(x))
109
110 #else   /* __OPTIMIZE__ */
111
112 #define __byte_swap_int(x) __byte_swap_int_var(x)
113
114 #endif  /* __OPTIMIZE__ */
115
116 #define __byte_swap_long_var(x) \
117 __extension__ ({ register __uint64_t __X = (x); \
118    __asm ("bswap %0" : "+r" (__X)); \
119    __X; })
120
121 #define __byte_swap_long_const(x) \
122         (((x >> 56) | \
123          ((x >> 40) & 0xff00) | \
124          ((x >> 24) & 0xff0000) | \
125          ((x >> 8) & 0xff000000) | \
126          ((x << 8) & ((__uint64_t)0xff << 32)) | \
127          ((x << 24) & ((__uint64_t)0xff << 40)) | \
128          ((x << 40) & ((__uint64_t)0xff << 48)) | \
129          ((x << 56))))
130
131 #ifdef __i386__
132
133 #define __byte_swap_long(x)     __byte_swap_long_const(x)
134
135 #else
136
137 #ifdef __OPTIMIZE__
138 #define __byte_swap_long(x)     (__builtin_constant_p(x) ? \
139         __byte_swap_long_const(x) : __byte_swap_long_var(x))
140 #else   /* __OPTIMIZE__ */
141 #define __byte_swap_long(x)     __byte_swap_long_var(x)
142 #endif  /* __OPTIMIZE__ */
143
144 #endif  /* __i386__ */
145
146 #define __byte_swap_word_var(x) \
147 __extension__ ({ register __uint16_t __X = (x); \
148    __asm ("xchgb %h0, %b0" : "+Q" (__X)); \
149    __X; })
150
151 #ifdef __OPTIMIZE__
152
153 #define __byte_swap_word_const(x) \
154         ((((x) & 0xff00) >> 8) | \
155          (((x) & 0x00ff) << 8))
156
157 #define __byte_swap_word(x) (__builtin_constant_p(x) ? \
158         __byte_swap_word_const(x) : __byte_swap_word_var(x))
159
160 #else   /* __OPTIMIZE__ */
161
162 #define __byte_swap_word(x) __byte_swap_word_var(x)
163
164 #endif  /* __OPTIMIZE__ */
165
166 static __inline __uint64_t
167 __bswap64(__uint64_t _x)
168 {
169
170         return (__byte_swap_long(_x));
171 }
172
173 static __inline __uint32_t
174 __bswap32(__uint32_t _x)
175 {
176
177         return (__byte_swap_int(_x));
178 }
179
180 static __inline __uint16_t
181 __bswap16(__uint16_t _x)
182 {
183
184         return (__byte_swap_word(_x));
185 }
186
187 #define __htonl(x)      __bswap32(x)
188 #define __htons(x)      __bswap16(x)
189 #define __ntohl(x)      __bswap32(x)
190 #define __ntohs(x)      __bswap16(x)
191
192 #else /* !__GNUC__ */
193
194 /*
195  * No optimizations are available for this compiler.  Fall back to
196  * non-optimized functions by defining the constant usually used to prevent
197  * redefinition.
198  */
199 #define _BYTEORDER_FUNC_DEFINED
200
201 #endif /* __GNUC__ */
202
203 #endif /* !_CPU_ENDIAN_H_ */