Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Latest commit

 

History

History
231 lines (198 loc) · 5.31 KB

File metadata and controls

231 lines (198 loc) · 5.31 KB
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
/**
* Automated SDL platform test.
*
* Based off of testplatform.c.
*
* Written by Edgar Simo "bobbens"
*
* Released under Public Domain.
*/
#include "SDL.h"
#include "SDL_at.h"
#include "SDL_endian.h"
#include "SDL_cpuinfo.h"
/*
* Prototypes.
*/
static int plat_testSize( size_t sizeoftype, size_t hardcodetype );
static void plat_testTypes (void);
/**
* @brief Test size.
*
* @note Watcom C flags these as Warning 201: "Unreachable code" if you just
* compare them directly, so we push it through a function to keep the
* compiler quiet. --ryan.
*/
static int plat_testSize( size_t sizeoftype, size_t hardcodetype )
{
return sizeoftype != hardcodetype;
}
/**
* @brief Tests type size.
*/
static void plat_testTypes (void)
{
int ret;
SDL_ATbegin( "Type size" );
ret = plat_testSize( sizeof(Uint8), 1 );
if (SDL_ATvassert( ret == 0, "sizeof(Uint8) = %ul instead of 1", sizeof(Uint8) ))
return;
ret = plat_testSize( sizeof(Uint16), 2 );
if (SDL_ATvassert( ret == 0, "sizeof(Uint16) = %ul instead of 2", sizeof(Uint16) ))
return;
ret = plat_testSize( sizeof(Uint32), 4 );
if (SDL_ATvassert( ret == 0, "sizeof(Uint32) = %ul instead of 4", sizeof(Uint32) ))
return;
#ifdef SDL_HAS_64BIT_TYPE
ret = plat_testSize( sizeof(Uint64), 8 );
if (SDL_ATvassert( ret == 0, "sizeof(Uint64) = %ul instead of 8", sizeof(Uint64) ))
return;
#endif /* SDL_HAS_64BIT_TYPE */
SDL_ATend();
}
/**
* @brief Tests platform endianness.
*/
static void plat_testEndian (void)
{
Uint16 value = 0x1234;
int real_byteorder;
Uint16 value16 = 0xCDAB;
Uint16 swapped16 = 0xABCD;
Uint32 value32 = 0xEFBEADDE;
Uint32 swapped32 = 0xDEADBEEF;
#ifdef SDL_HAS_64BIT_TYPE
Uint64 value64, swapped64;
value64 = 0xEFBEADDE;
value64 <<= 32;
value64 |= 0xCDAB3412;
swapped64 = 0x1234ABCD;
swapped64 <<= 32;
swapped64 |= 0xDEADBEEF;
#endif
SDL_ATbegin( "Endianness" );
/* Test endianness. */
if ((*((char *) &value) >> 4) == 0x1) {
real_byteorder = SDL_BIG_ENDIAN;
} else {
real_byteorder = SDL_LIL_ENDIAN;
}
if (SDL_ATvassert( real_byteorder == SDL_BYTEORDER,
"Machine detected as %s endian but appears to be %s endian.",
(SDL_BYTEORDER == SDL_LIL_ENDIAN) ? "little" : "big",
(real_byteorder == SDL_LIL_ENDIAN) ? "little" : "big" ))
return;
/* Test 16 swap. */
if (SDL_ATvassert( SDL_Swap16(value16) == swapped16,
"16 bit swapped incorrectly: 0x%X => 0x%X",
value16, SDL_Swap16(value16) ))
return;
/* Test 32 swap. */
if (SDL_ATvassert( SDL_Swap32(value32) == swapped32,
"32 bit swapped incorrectly: 0x%X => 0x%X",
value32, SDL_Swap32(value32) ))
return;
#ifdef SDL_HAS_64BIT_TYPE
/* Test 64 swap. */
if (SDL_ATvassert( SDL_Swap64(value64) == swapped64,
#ifdef _MSC_VER
"64 bit swapped incorrectly: 0x%I64X => 0x%I64X",
#else
"64 bit swapped incorrectly: 0x%llX => 0x%llX",
#endif
value64, SDL_Swap64(value64) ))
return;
#endif
SDL_ATend();
}
Aug 2, 2009
Aug 2, 2009
134
/**
Aug 6, 2009
Aug 6, 2009
135
* @brief Gets the name of the platform.
Aug 2, 2009
Aug 2, 2009
136
*/
Aug 6, 2009
Aug 6, 2009
137
const char *platform_getPlatform (void)
Aug 6, 2009
Aug 6, 2009
139
return
Aug 3, 2009
Aug 3, 2009
140
#if __AIX__
Aug 6, 2009
Aug 6, 2009
141
"AIX"
Aug 3, 2009
Aug 3, 2009
142
#elif __BEOS__
Aug 6, 2009
Aug 6, 2009
143
"BeOS"
Aug 3, 2009
Aug 3, 2009
144
#elif __BSDI__
Aug 6, 2009
Aug 6, 2009
145
"BSDI"
Aug 3, 2009
Aug 3, 2009
146
#elif __DREAMCAST__
Aug 6, 2009
Aug 6, 2009
147
"Dreamcast"
Aug 3, 2009
Aug 3, 2009
148
149
#elif __FREEBSD__
Aug 6, 2009
Aug 6, 2009
150
"FreeBSD"
Aug 3, 2009
Aug 3, 2009
151
#elif __HPUX__
Aug 6, 2009
Aug 6, 2009
152
"HP-UX"
Aug 3, 2009
Aug 3, 2009
153
#elif __IRIX__
Aug 6, 2009
Aug 6, 2009
154
"Irix"
Aug 3, 2009
Aug 3, 2009
155
#elif __LINUX__
Aug 6, 2009
Aug 6, 2009
156
"Linux"
Aug 3, 2009
Aug 3, 2009
157
#elif __MINT__
Aug 6, 2009
Aug 6, 2009
158
"Atari MiNT"
Aug 3, 2009
Aug 3, 2009
159
#elif __MACOS__
Aug 6, 2009
Aug 6, 2009
160
"MacOS Classic"
Aug 3, 2009
Aug 3, 2009
161
#elif __MACOSX__
Aug 6, 2009
Aug 6, 2009
162
"Mac OS X"
Aug 3, 2009
Aug 3, 2009
163
#elif __NETBSD__
Aug 6, 2009
Aug 6, 2009
164
"NetBSD"
Aug 3, 2009
Aug 3, 2009
165
#elif __OPENBSD__
Aug 6, 2009
Aug 6, 2009
166
"OpenBSD"
Aug 3, 2009
Aug 3, 2009
167
#elif __OS2__
Aug 6, 2009
Aug 6, 2009
168
"OS/2"
Aug 3, 2009
Aug 3, 2009
169
#elif __OSF__
Aug 6, 2009
Aug 6, 2009
170
"OSF/1"
Aug 3, 2009
Aug 3, 2009
171
#elif __QNXNTO__
Aug 6, 2009
Aug 6, 2009
172
"QNX Neutrino"
Aug 3, 2009
Aug 3, 2009
173
#elif __RISCOS__
Aug 6, 2009
Aug 6, 2009
174
"RISC OS"
Aug 3, 2009
Aug 3, 2009
175
#elif __SOLARIS__
Aug 6, 2009
Aug 6, 2009
176
"Solaris"
Aug 3, 2009
Aug 3, 2009
177
178
#elif __WIN32__
#ifdef _WIN32_WCE
Aug 6, 2009
Aug 6, 2009
179
"Windows CE"
Aug 3, 2009
Aug 3, 2009
180
#else
Aug 6, 2009
Aug 6, 2009
181
"Windows"
Aug 3, 2009
Aug 3, 2009
182
183
#endif
#elif __IPHONEOS__
Aug 6, 2009
Aug 6, 2009
184
"iPhone OS"
Aug 3, 2009
Aug 3, 2009
185
#else
Aug 6, 2009
Aug 6, 2009
186
"an unknown operating system! (see SDL_platform.h)"
Aug 3, 2009
Aug 3, 2009
187
#endif
Aug 6, 2009
Aug 6, 2009
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
;
}
/**
* @brief Platform test entrypoint.
*/
#ifdef TEST_STANDALONE
int main( int argc, const char *argv[] )
{
(void) argc;
(void) argv;
#else /* TEST_STANDALONE */
int test_platform (void)
{
#endif /* TEST_STANDALONE */
SDL_ATinit( "Platform" );
/* Debug information. */
SDL_ATprintVerbose( 1, "%s System detected\n", platform_getPlatform() );
Aug 3, 2009
Aug 3, 2009
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
SDL_ATprintVerbose( 1, "System is %s endian\n",
#ifdef SDL_LIL_ENDIAN
"little"
#else
"big"
#endif
);
SDL_ATprintVerbose( 1, "Available extensions:\n" );
SDL_ATprintVerbose( 1, " RDTSC %s\n", SDL_HasRDTSC()? "detected" : "not detected" );
SDL_ATprintVerbose( 1, " MMX %s\n", SDL_HasMMX()? "detected" : "not detected" );
SDL_ATprintVerbose( 1, " MMX Ext %s\n", SDL_HasMMXExt()? "detected" : "not detected" );
SDL_ATprintVerbose( 1, " 3DNow %s\n", SDL_Has3DNow()? "detected" : "not detected" );
SDL_ATprintVerbose( 1, " 3DNow Ext %s\n",
SDL_Has3DNowExt()? "detected" : "not detected" );
SDL_ATprintVerbose( 1, " SSE %s\n", SDL_HasSSE()? "detected" : "not detected" );
SDL_ATprintVerbose( 1, " SSE2 %s\n", SDL_HasSSE2()? "detected" : "not detected" );
SDL_ATprintVerbose( 1, " AltiVec %s\n", SDL_HasAltiVec()? "detected" : "not detected" );
227
228
229
plat_testTypes();
plat_testEndian();
Aug 2, 2009
Aug 2, 2009
230
return SDL_ATfinish();