2 SDL - Simple DirectMedia Layer
3 Copyright (C) 1997-2006 Sam Lantinga
5 This library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 This library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with this library; if not, write to the Free Software
17 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
23 /* Functions for reading and writing endian-specific values */
28 #include "SDL_stdinc.h"
30 /* The two types of endianness */
31 #define SDL_LIL_ENDIAN 1234
32 #define SDL_BIG_ENDIAN 4321
34 #ifndef SDL_BYTEORDER /* Not defined in SDL_config.h? */
35 #if defined(__hppa__) || \
36 defined(__m68k__) || defined(mc68000) || defined(_M_M68K) || \
37 (defined(__MIPS__) && defined(__MISPEB__)) || \
38 defined(__ppc__) || defined(__POWERPC__) || defined(_M_PPC) || \
40 #define SDL_BYTEORDER SDL_BIG_ENDIAN
42 #define SDL_BYTEORDER SDL_LIL_ENDIAN
44 #endif /* !SDL_BYTEORDER */
47 #include "begin_code.h"
48 /* Set up for C function definitions, even when using C++ */
53 /* Use inline functions for compilers that support them, and static
54 functions for those that do not. Because these functions become
55 static for compilers that do not support inline functions, this
56 header should only be included in files that actually use them.
58 #if defined(__GNUC__) && defined(__i386__) && \
59 !(__GNUC__ == 2 && __GNUC_MINOR__ <= 95 /* broken gcc version */)
60 static __inline__ Uint16
SDL_Swap16(Uint16 x
)
62 __asm__("xchgb %b0,%h0" : "=q" (x
) : "0" (x
));
65 #elif defined(__GNUC__) && defined(__x86_64__)
66 static __inline__ Uint16
SDL_Swap16(Uint16 x
)
68 __asm__("xchgb %b0,%h0" : "=Q" (x
) : "0" (x
));
71 #elif defined(__GNUC__) && (defined(__powerpc__) || defined(__ppc__))
72 static __inline__ Uint16
SDL_Swap16(Uint16 x
)
76 __asm__("rlwimi %0,%2,8,16,23" : "=&r" (result
) : "0" (x
>> 8), "r" (x
));
79 #elif defined(__GNUC__) && (defined(__M68000__) || defined(__M68020__))
80 static __inline__ Uint16
SDL_Swap16(Uint16 x
)
82 __asm__("rorw #8,%0" : "=d" (x
) : "0" (x
) : "cc");
86 static __inline__ Uint16
SDL_Swap16(Uint16 x
) {
87 return((x
<<8)|(x
>>8));
91 #if defined(__GNUC__) && defined(__i386__) && \
92 !(__GNUC__ == 2 && __GNUC_MINOR__ <= 95 /* broken gcc version */)
93 static __inline__ Uint32
SDL_Swap32(Uint32 x
)
95 __asm__("bswap %0" : "=r" (x
) : "0" (x
));
98 #elif defined(__GNUC__) && defined(__x86_64__)
99 static __inline__ Uint32
SDL_Swap32(Uint32 x
)
101 __asm__("bswapl %0" : "=r" (x
) : "0" (x
));
104 #elif defined(__GNUC__) && (defined(__powerpc__) || defined(__ppc__))
105 static __inline__ Uint32
SDL_Swap32(Uint32 x
)
109 __asm__("rlwimi %0,%2,24,16,23" : "=&r" (result
) : "0" (x
>>24), "r" (x
));
110 __asm__("rlwimi %0,%2,8,8,15" : "=&r" (result
) : "0" (result
), "r" (x
));
111 __asm__("rlwimi %0,%2,24,0,7" : "=&r" (result
) : "0" (result
), "r" (x
));
114 #elif defined(__GNUC__) && (defined(__M68000__) || defined(__M68020__))
115 static __inline__ Uint32
SDL_Swap32(Uint32 x
)
117 __asm__("rorw #8,%0\n\tswap %0\n\trorw #8,%0" : "=d" (x
) : "0" (x
) : "cc");
121 static __inline__ Uint32
SDL_Swap32(Uint32 x
) {
122 return((x
<<24)|((x
<<8)&0x00FF0000)|((x
>>8)&0x0000FF00)|(x
>>24));
126 #ifdef SDL_HAS_64BIT_TYPE
127 #if defined(__GNUC__) && defined(__i386__) && \
128 !(__GNUC__ == 2 && __GNUC_MINOR__ <= 95 /* broken gcc version */)
129 static __inline__ Uint64
SDL_Swap64(Uint64 x
)
132 struct { Uint32 a
,b
; } s
;
136 __asm__("bswapl %0 ; bswapl %1 ; xchgl %0,%1"
137 : "=r" (v
.s
.a
), "=r" (v
.s
.b
)
138 : "0" (v
.s
.a
), "1" (v
.s
.b
));
141 #elif defined(__GNUC__) && defined(__x86_64__)
142 static __inline__ Uint64
SDL_Swap64(Uint64 x
)
144 __asm__("bswapq %0" : "=r" (x
) : "0" (x
));
148 static __inline__ Uint64
SDL_Swap64(Uint64 x
)
152 /* Separate into high and low 32-bit values and swap them */
153 lo
= (Uint32
)(x
&0xFFFFFFFF);
155 hi
= (Uint32
)(x
&0xFFFFFFFF);
163 /* This is mainly to keep compilers from complaining in SDL code.
164 If there is no real 64-bit datatype, then compilers will complain about
165 the fake 64-bit datatype that SDL provides when it compiles user code.
167 #define SDL_Swap64(X) (X)
168 #endif /* SDL_HAS_64BIT_TYPE */
171 /* Byteswap item from the specified endianness to the native endianness */
172 #if SDL_BYTEORDER == SDL_LIL_ENDIAN
173 #define SDL_SwapLE16(X) (X)
174 #define SDL_SwapLE32(X) (X)
175 #define SDL_SwapLE64(X) (X)
176 #define SDL_SwapBE16(X) SDL_Swap16(X)
177 #define SDL_SwapBE32(X) SDL_Swap32(X)
178 #define SDL_SwapBE64(X) SDL_Swap64(X)
180 #define SDL_SwapLE16(X) SDL_Swap16(X)
181 #define SDL_SwapLE32(X) SDL_Swap32(X)
182 #define SDL_SwapLE64(X) SDL_Swap64(X)
183 #define SDL_SwapBE16(X) (X)
184 #define SDL_SwapBE32(X) (X)
185 #define SDL_SwapBE64(X) (X)
188 /* Ends C function definitions when using C++ */
192 #include "close_code.h"
194 #endif /* _SDL_endian_h */