annotate Plugins/Input/shorten/bswap.h @ 920:999d1af32ab4 trunk

[svn] Extra_stereo effect plugin ported by deitarion. Some last pointer-related touchups by nemo & me.
author chainsaw
date Sat, 08 Apr 2006 19:44:43 -0700
parents 5da5c262b1ef
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
915
5da5c262b1ef [svn] - input proposed shorten input plugin for hacking
nenolod
parents:
diff changeset
1 /**
5da5c262b1ef [svn] - input proposed shorten input plugin for hacking
nenolod
parents:
diff changeset
2 * @file bswap.h
5da5c262b1ef [svn] - input proposed shorten input plugin for hacking
nenolod
parents:
diff changeset
3 * byte swap.
5da5c262b1ef [svn] - input proposed shorten input plugin for hacking
nenolod
parents:
diff changeset
4 */
5da5c262b1ef [svn] - input proposed shorten input plugin for hacking
nenolod
parents:
diff changeset
5
5da5c262b1ef [svn] - input proposed shorten input plugin for hacking
nenolod
parents:
diff changeset
6 #ifndef __BSWAP_H__
5da5c262b1ef [svn] - input proposed shorten input plugin for hacking
nenolod
parents:
diff changeset
7 #define __BSWAP_H__
5da5c262b1ef [svn] - input proposed shorten input plugin for hacking
nenolod
parents:
diff changeset
8
5da5c262b1ef [svn] - input proposed shorten input plugin for hacking
nenolod
parents:
diff changeset
9 #ifdef HAVE_BYTESWAP_H
5da5c262b1ef [svn] - input proposed shorten input plugin for hacking
nenolod
parents:
diff changeset
10 #include <byteswap.h>
5da5c262b1ef [svn] - input proposed shorten input plugin for hacking
nenolod
parents:
diff changeset
11 #else
5da5c262b1ef [svn] - input proposed shorten input plugin for hacking
nenolod
parents:
diff changeset
12
5da5c262b1ef [svn] - input proposed shorten input plugin for hacking
nenolod
parents:
diff changeset
13 #ifdef ARCH_X86
5da5c262b1ef [svn] - input proposed shorten input plugin for hacking
nenolod
parents:
diff changeset
14 static inline unsigned short ByteSwap16(unsigned short x)
5da5c262b1ef [svn] - input proposed shorten input plugin for hacking
nenolod
parents:
diff changeset
15 {
5da5c262b1ef [svn] - input proposed shorten input plugin for hacking
nenolod
parents:
diff changeset
16 __asm("xchgb %b0,%h0" :
5da5c262b1ef [svn] - input proposed shorten input plugin for hacking
nenolod
parents:
diff changeset
17 "=q" (x) :
5da5c262b1ef [svn] - input proposed shorten input plugin for hacking
nenolod
parents:
diff changeset
18 "0" (x));
5da5c262b1ef [svn] - input proposed shorten input plugin for hacking
nenolod
parents:
diff changeset
19 return x;
5da5c262b1ef [svn] - input proposed shorten input plugin for hacking
nenolod
parents:
diff changeset
20 }
5da5c262b1ef [svn] - input proposed shorten input plugin for hacking
nenolod
parents:
diff changeset
21 #define bswap_16(x) ByteSwap16(x)
5da5c262b1ef [svn] - input proposed shorten input plugin for hacking
nenolod
parents:
diff changeset
22
5da5c262b1ef [svn] - input proposed shorten input plugin for hacking
nenolod
parents:
diff changeset
23 static inline unsigned int ByteSwap32(unsigned int x)
5da5c262b1ef [svn] - input proposed shorten input plugin for hacking
nenolod
parents:
diff changeset
24 {
5da5c262b1ef [svn] - input proposed shorten input plugin for hacking
nenolod
parents:
diff changeset
25 #if __CPU__ > 386
5da5c262b1ef [svn] - input proposed shorten input plugin for hacking
nenolod
parents:
diff changeset
26 __asm("bswap %0":
5da5c262b1ef [svn] - input proposed shorten input plugin for hacking
nenolod
parents:
diff changeset
27 "=r" (x) :
5da5c262b1ef [svn] - input proposed shorten input plugin for hacking
nenolod
parents:
diff changeset
28 #else
5da5c262b1ef [svn] - input proposed shorten input plugin for hacking
nenolod
parents:
diff changeset
29 __asm("xchgb %b0,%h0\n"
5da5c262b1ef [svn] - input proposed shorten input plugin for hacking
nenolod
parents:
diff changeset
30 " rorl $16,%0\n"
5da5c262b1ef [svn] - input proposed shorten input plugin for hacking
nenolod
parents:
diff changeset
31 " xchgb %b0,%h0":
5da5c262b1ef [svn] - input proposed shorten input plugin for hacking
nenolod
parents:
diff changeset
32 "=q" (x) :
5da5c262b1ef [svn] - input proposed shorten input plugin for hacking
nenolod
parents:
diff changeset
33 #endif
5da5c262b1ef [svn] - input proposed shorten input plugin for hacking
nenolod
parents:
diff changeset
34 "0" (x));
5da5c262b1ef [svn] - input proposed shorten input plugin for hacking
nenolod
parents:
diff changeset
35 return x;
5da5c262b1ef [svn] - input proposed shorten input plugin for hacking
nenolod
parents:
diff changeset
36 }
5da5c262b1ef [svn] - input proposed shorten input plugin for hacking
nenolod
parents:
diff changeset
37 #define bswap_32(x) ByteSwap32(x)
5da5c262b1ef [svn] - input proposed shorten input plugin for hacking
nenolod
parents:
diff changeset
38
5da5c262b1ef [svn] - input proposed shorten input plugin for hacking
nenolod
parents:
diff changeset
39 static inline unsigned long long int ByteSwap64(unsigned long long int x)
5da5c262b1ef [svn] - input proposed shorten input plugin for hacking
nenolod
parents:
diff changeset
40 {
5da5c262b1ef [svn] - input proposed shorten input plugin for hacking
nenolod
parents:
diff changeset
41 register union { __extension__ uint64_t __ll;
5da5c262b1ef [svn] - input proposed shorten input plugin for hacking
nenolod
parents:
diff changeset
42 uint32_t __l[2]; } __x;
5da5c262b1ef [svn] - input proposed shorten input plugin for hacking
nenolod
parents:
diff changeset
43 asm("xchgl %0,%1":
5da5c262b1ef [svn] - input proposed shorten input plugin for hacking
nenolod
parents:
diff changeset
44 "=r"(__x.__l[0]),"=r"(__x.__l[1]):
5da5c262b1ef [svn] - input proposed shorten input plugin for hacking
nenolod
parents:
diff changeset
45 "0"(bswap_32((unsigned long)x)),"1"(bswap_32((unsigned long)(x>>32))));
5da5c262b1ef [svn] - input proposed shorten input plugin for hacking
nenolod
parents:
diff changeset
46 return __x.__ll;
5da5c262b1ef [svn] - input proposed shorten input plugin for hacking
nenolod
parents:
diff changeset
47 }
5da5c262b1ef [svn] - input proposed shorten input plugin for hacking
nenolod
parents:
diff changeset
48 #define bswap_64(x) ByteSwap64(x)
5da5c262b1ef [svn] - input proposed shorten input plugin for hacking
nenolod
parents:
diff changeset
49
5da5c262b1ef [svn] - input proposed shorten input plugin for hacking
nenolod
parents:
diff changeset
50 #elif defined(ARCH_SH4)
5da5c262b1ef [svn] - input proposed shorten input plugin for hacking
nenolod
parents:
diff changeset
51
5da5c262b1ef [svn] - input proposed shorten input plugin for hacking
nenolod
parents:
diff changeset
52 static inline uint16_t ByteSwap16(uint16_t x) {
5da5c262b1ef [svn] - input proposed shorten input plugin for hacking
nenolod
parents:
diff changeset
53 __asm__("swap.b %0,%0":"=r"(x):"0"(x));
5da5c262b1ef [svn] - input proposed shorten input plugin for hacking
nenolod
parents:
diff changeset
54 return x;
5da5c262b1ef [svn] - input proposed shorten input plugin for hacking
nenolod
parents:
diff changeset
55 }
5da5c262b1ef [svn] - input proposed shorten input plugin for hacking
nenolod
parents:
diff changeset
56
5da5c262b1ef [svn] - input proposed shorten input plugin for hacking
nenolod
parents:
diff changeset
57 static inline uint32_t ByteSwap32(uint32_t x) {
5da5c262b1ef [svn] - input proposed shorten input plugin for hacking
nenolod
parents:
diff changeset
58 __asm__(
5da5c262b1ef [svn] - input proposed shorten input plugin for hacking
nenolod
parents:
diff changeset
59 "swap.b %0,%0\n"
5da5c262b1ef [svn] - input proposed shorten input plugin for hacking
nenolod
parents:
diff changeset
60 "swap.w %0,%0\n"
5da5c262b1ef [svn] - input proposed shorten input plugin for hacking
nenolod
parents:
diff changeset
61 "swap.b %0,%0\n"
5da5c262b1ef [svn] - input proposed shorten input plugin for hacking
nenolod
parents:
diff changeset
62 :"=r"(x):"0"(x));
5da5c262b1ef [svn] - input proposed shorten input plugin for hacking
nenolod
parents:
diff changeset
63 return x;
5da5c262b1ef [svn] - input proposed shorten input plugin for hacking
nenolod
parents:
diff changeset
64 }
5da5c262b1ef [svn] - input proposed shorten input plugin for hacking
nenolod
parents:
diff changeset
65
5da5c262b1ef [svn] - input proposed shorten input plugin for hacking
nenolod
parents:
diff changeset
66 #define bswap_16(x) ByteSwap16(x)
5da5c262b1ef [svn] - input proposed shorten input plugin for hacking
nenolod
parents:
diff changeset
67 #define bswap_32(x) ByteSwap32(x)
5da5c262b1ef [svn] - input proposed shorten input plugin for hacking
nenolod
parents:
diff changeset
68
5da5c262b1ef [svn] - input proposed shorten input plugin for hacking
nenolod
parents:
diff changeset
69 static inline uint64_t ByteSwap64(uint64_t x)
5da5c262b1ef [svn] - input proposed shorten input plugin for hacking
nenolod
parents:
diff changeset
70 {
5da5c262b1ef [svn] - input proposed shorten input plugin for hacking
nenolod
parents:
diff changeset
71 union {
5da5c262b1ef [svn] - input proposed shorten input plugin for hacking
nenolod
parents:
diff changeset
72 uint64_t ll;
5da5c262b1ef [svn] - input proposed shorten input plugin for hacking
nenolod
parents:
diff changeset
73 struct {
5da5c262b1ef [svn] - input proposed shorten input plugin for hacking
nenolod
parents:
diff changeset
74 uint32_t l,h;
5da5c262b1ef [svn] - input proposed shorten input plugin for hacking
nenolod
parents:
diff changeset
75 } l;
5da5c262b1ef [svn] - input proposed shorten input plugin for hacking
nenolod
parents:
diff changeset
76 } r;
5da5c262b1ef [svn] - input proposed shorten input plugin for hacking
nenolod
parents:
diff changeset
77 r.l.l = bswap_32 (x);
5da5c262b1ef [svn] - input proposed shorten input plugin for hacking
nenolod
parents:
diff changeset
78 r.l.h = bswap_32 (x>>32);
5da5c262b1ef [svn] - input proposed shorten input plugin for hacking
nenolod
parents:
diff changeset
79 return r.ll;
5da5c262b1ef [svn] - input proposed shorten input plugin for hacking
nenolod
parents:
diff changeset
80 }
5da5c262b1ef [svn] - input proposed shorten input plugin for hacking
nenolod
parents:
diff changeset
81 #define bswap_64(x) ByteSwap64(x)
5da5c262b1ef [svn] - input proposed shorten input plugin for hacking
nenolod
parents:
diff changeset
82
5da5c262b1ef [svn] - input proposed shorten input plugin for hacking
nenolod
parents:
diff changeset
83 #else
5da5c262b1ef [svn] - input proposed shorten input plugin for hacking
nenolod
parents:
diff changeset
84
5da5c262b1ef [svn] - input proposed shorten input plugin for hacking
nenolod
parents:
diff changeset
85 #define bswap_16(x) (((x) & 0x00ff) << 8 | ((x) & 0xff00) >> 8)
5da5c262b1ef [svn] - input proposed shorten input plugin for hacking
nenolod
parents:
diff changeset
86
5da5c262b1ef [svn] - input proposed shorten input plugin for hacking
nenolod
parents:
diff changeset
87
5da5c262b1ef [svn] - input proposed shorten input plugin for hacking
nenolod
parents:
diff changeset
88 // code from bits/byteswap.h (C) 1997, 1998 Free Software Foundation, Inc.
5da5c262b1ef [svn] - input proposed shorten input plugin for hacking
nenolod
parents:
diff changeset
89 #define bswap_32(x) \
5da5c262b1ef [svn] - input proposed shorten input plugin for hacking
nenolod
parents:
diff changeset
90 ((((x) & 0xff000000) >> 24) | (((x) & 0x00ff0000) >> 8) | \
5da5c262b1ef [svn] - input proposed shorten input plugin for hacking
nenolod
parents:
diff changeset
91 (((x) & 0x0000ff00) << 8) | (((x) & 0x000000ff) << 24))
5da5c262b1ef [svn] - input proposed shorten input plugin for hacking
nenolod
parents:
diff changeset
92
5da5c262b1ef [svn] - input proposed shorten input plugin for hacking
nenolod
parents:
diff changeset
93 static inline uint64_t ByteSwap64(uint64_t x)
5da5c262b1ef [svn] - input proposed shorten input plugin for hacking
nenolod
parents:
diff changeset
94 {
5da5c262b1ef [svn] - input proposed shorten input plugin for hacking
nenolod
parents:
diff changeset
95 union {
5da5c262b1ef [svn] - input proposed shorten input plugin for hacking
nenolod
parents:
diff changeset
96 uint64_t ll;
5da5c262b1ef [svn] - input proposed shorten input plugin for hacking
nenolod
parents:
diff changeset
97 uint32_t l[2];
5da5c262b1ef [svn] - input proposed shorten input plugin for hacking
nenolod
parents:
diff changeset
98 } w, r;
5da5c262b1ef [svn] - input proposed shorten input plugin for hacking
nenolod
parents:
diff changeset
99 w.ll = x;
5da5c262b1ef [svn] - input proposed shorten input plugin for hacking
nenolod
parents:
diff changeset
100 r.l[0] = bswap_32 (w.l[1]);
5da5c262b1ef [svn] - input proposed shorten input plugin for hacking
nenolod
parents:
diff changeset
101 r.l[1] = bswap_32 (w.l[0]);
5da5c262b1ef [svn] - input proposed shorten input plugin for hacking
nenolod
parents:
diff changeset
102 return r.ll;
5da5c262b1ef [svn] - input proposed shorten input plugin for hacking
nenolod
parents:
diff changeset
103 }
5da5c262b1ef [svn] - input proposed shorten input plugin for hacking
nenolod
parents:
diff changeset
104 #define bswap_64(x) ByteSwap64(x)
5da5c262b1ef [svn] - input proposed shorten input plugin for hacking
nenolod
parents:
diff changeset
105
5da5c262b1ef [svn] - input proposed shorten input plugin for hacking
nenolod
parents:
diff changeset
106 #endif /* !ARCH_X86 */
5da5c262b1ef [svn] - input proposed shorten input plugin for hacking
nenolod
parents:
diff changeset
107
5da5c262b1ef [svn] - input proposed shorten input plugin for hacking
nenolod
parents:
diff changeset
108 #endif /* !HAVE_BYTESWAP_H */
5da5c262b1ef [svn] - input proposed shorten input plugin for hacking
nenolod
parents:
diff changeset
109
5da5c262b1ef [svn] - input proposed shorten input plugin for hacking
nenolod
parents:
diff changeset
110 // be2me ... BigEndian to MachineEndian
5da5c262b1ef [svn] - input proposed shorten input plugin for hacking
nenolod
parents:
diff changeset
111 // le2me ... LittleEndian to MachineEndian
5da5c262b1ef [svn] - input proposed shorten input plugin for hacking
nenolod
parents:
diff changeset
112
5da5c262b1ef [svn] - input proposed shorten input plugin for hacking
nenolod
parents:
diff changeset
113 #ifdef WORDS_BIGENDIAN
5da5c262b1ef [svn] - input proposed shorten input plugin for hacking
nenolod
parents:
diff changeset
114 #define be2me_16(x) (x)
5da5c262b1ef [svn] - input proposed shorten input plugin for hacking
nenolod
parents:
diff changeset
115 #define be2me_32(x) (x)
5da5c262b1ef [svn] - input proposed shorten input plugin for hacking
nenolod
parents:
diff changeset
116 #define be2me_64(x) (x)
5da5c262b1ef [svn] - input proposed shorten input plugin for hacking
nenolod
parents:
diff changeset
117 #define le2me_16(x) bswap_16(x)
5da5c262b1ef [svn] - input proposed shorten input plugin for hacking
nenolod
parents:
diff changeset
118 #define le2me_32(x) bswap_32(x)
5da5c262b1ef [svn] - input proposed shorten input plugin for hacking
nenolod
parents:
diff changeset
119 #define le2me_64(x) bswap_64(x)
5da5c262b1ef [svn] - input proposed shorten input plugin for hacking
nenolod
parents:
diff changeset
120 #else
5da5c262b1ef [svn] - input proposed shorten input plugin for hacking
nenolod
parents:
diff changeset
121 #define be2me_16(x) bswap_16(x)
5da5c262b1ef [svn] - input proposed shorten input plugin for hacking
nenolod
parents:
diff changeset
122 #define be2me_32(x) bswap_32(x)
5da5c262b1ef [svn] - input proposed shorten input plugin for hacking
nenolod
parents:
diff changeset
123 #define be2me_64(x) bswap_64(x)
5da5c262b1ef [svn] - input proposed shorten input plugin for hacking
nenolod
parents:
diff changeset
124 #define le2me_16(x) (x)
5da5c262b1ef [svn] - input proposed shorten input plugin for hacking
nenolod
parents:
diff changeset
125 #define le2me_32(x) (x)
5da5c262b1ef [svn] - input proposed shorten input plugin for hacking
nenolod
parents:
diff changeset
126 #define le2me_64(x) (x)
5da5c262b1ef [svn] - input proposed shorten input plugin for hacking
nenolod
parents:
diff changeset
127 #endif
5da5c262b1ef [svn] - input proposed shorten input plugin for hacking
nenolod
parents:
diff changeset
128
5da5c262b1ef [svn] - input proposed shorten input plugin for hacking
nenolod
parents:
diff changeset
129 #endif /* __BSWAP_H__ */