File: test_sse2.cpp

package info (click to toggle)
emscripten 2.0.12~dfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 108,440 kB
  • sloc: ansic: 510,324; cpp: 384,763; javascript: 84,341; python: 51,362; sh: 50,019; pascal: 4,159; makefile: 3,409; asm: 2,150; lisp: 1,869; ruby: 488; cs: 142
file content (350 lines) | stat: -rw-r--r-- 10,945 bytes parent folder | download
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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
/*
 * Copyright 2020 The Emscripten Authors.  All rights reserved.
 * Emscripten is available under two separate licenses, the MIT license and the
 * University of Illinois/NCSA Open Source License.  Both these licenses can be
 * found in the LICENSE file.
 */
// This file uses SSE2 by calling different functions with different interesting inputs and prints the results.
// Use a diff tool to compare the results between platforms.

#include <emmintrin.h>
#define ENABLE_SSE2
#include "test_sse.h"

bool testNaNBits = true;

float *interesting_floats = get_interesting_floats();
int numInterestingFloats = sizeof(interesting_floats_)/sizeof(interesting_floats_[0]);
uint32_t *interesting_ints = get_interesting_ints();
int numInterestingInts = sizeof(interesting_ints_)/sizeof(interesting_ints_[0]);
double *interesting_doubles = get_interesting_doubles();
int numInterestingDoubles = sizeof(interesting_doubles_)/sizeof(interesting_doubles_[0]);

void test_arithmetic()
{
	// SSE2 Arithmetic instructions:
	M128i_M128i_M128i(_mm_add_epi16);
	M128i_M128i_M128i(_mm_add_epi32);
	M128i_M128i_M128i(_mm_add_epi64);
	M128i_M128i_M128i(_mm_add_epi8);
	testNaNBits = false;
	Ret_M128d_M128d(__m128d, _mm_add_pd);
	Ret_M128d_M128d(__m128d, _mm_add_sd);
	testNaNBits = true;
	M128i_M128i_M128i(_mm_adds_epi16);
	M128i_M128i_M128i(_mm_adds_epi8);
	M128i_M128i_M128i(_mm_adds_epu16);
	M128i_M128i_M128i(_mm_adds_epu8);
	Ret_M128d_M128d(__m128d, _mm_div_pd);
	Ret_M128d_M128d(__m128d, _mm_div_sd);
	M128i_M128i_M128i(_mm_madd_epi16);
	M128i_M128i_M128i(_mm_mul_epu32);
	testNaNBits = false;
	Ret_M128d_M128d(__m128d, _mm_mul_pd);
	Ret_M128d_M128d(__m128d, _mm_mul_sd);
	testNaNBits = true;
	M128i_M128i_M128i(_mm_mulhi_epi16);
	M128i_M128i_M128i(_mm_mulhi_epu16);
	M128i_M128i_M128i(_mm_mullo_epi16);
	M128i_M128i_M128i(_mm_sad_epu8);
	M128i_M128i_M128i(_mm_sub_epi16);
	M128i_M128i_M128i(_mm_sub_epi32);
	M128i_M128i_M128i(_mm_sub_epi64);
	M128i_M128i_M128i(_mm_sub_epi8);
	Ret_M128d_M128d(__m128d, _mm_sub_pd);
	Ret_M128d_M128d(__m128d, _mm_sub_sd);
	M128i_M128i_M128i(_mm_subs_epi16);
	M128i_M128i_M128i(_mm_subs_epi8);
	M128i_M128i_M128i(_mm_subs_epu16);
	M128i_M128i_M128i(_mm_subs_epu8);
}

void test_cast()
{
	// SSE2 Cast functions:
	Ret_M128d(__m128, _mm_castpd_ps);
	Ret_M128d(__m128i, _mm_castpd_si128);
	Ret_M128(__m128d, _mm_castps_pd);
	Ret_M128(__m128i, _mm_castps_si128);
	Ret_M128i(__m128d, _mm_castsi128_pd);
	Ret_M128i(__m128, _mm_castsi128_ps);
}

void test_compare()
{
	// SSE2 Compare instructions:
	M128i_M128i_M128i(_mm_cmpeq_epi16);
	M128i_M128i_M128i(_mm_cmpeq_epi32);
	M128i_M128i_M128i(_mm_cmpeq_epi8);
	Ret_M128d_M128d(__m128d, _mm_cmpeq_pd);
	Ret_M128d_M128d(__m128d, _mm_cmpeq_sd);
	Ret_M128d_M128d(__m128d, _mm_cmpge_pd);
	Ret_M128d_M128d(__m128d, _mm_cmpge_sd);
	M128i_M128i_M128i(_mm_cmpgt_epi16);
	M128i_M128i_M128i(_mm_cmpgt_epi32);
	M128i_M128i_M128i(_mm_cmpgt_epi8);
	Ret_M128d_M128d(__m128d, _mm_cmpgt_pd);
	Ret_M128d_M128d(__m128d, _mm_cmpgt_sd);
	Ret_M128d_M128d(__m128d, _mm_cmple_pd);
	Ret_M128d_M128d(__m128d, _mm_cmple_sd);
	M128i_M128i_M128i(_mm_cmplt_epi16);
	M128i_M128i_M128i(_mm_cmplt_epi32);
	M128i_M128i_M128i(_mm_cmplt_epi8);
	Ret_M128d_M128d(__m128d, _mm_cmplt_pd);
	Ret_M128d_M128d(__m128d, _mm_cmplt_sd);
	Ret_M128d_M128d(__m128d, _mm_cmpneq_pd);
	Ret_M128d_M128d(__m128d, _mm_cmpneq_sd);
	Ret_M128d_M128d(__m128d, _mm_cmpnge_pd);
	Ret_M128d_M128d(__m128d, _mm_cmpnge_sd);
	Ret_M128d_M128d(__m128d, _mm_cmpngt_pd);
	Ret_M128d_M128d(__m128d, _mm_cmpngt_sd);
	Ret_M128d_M128d(__m128d, _mm_cmpnle_pd);
	Ret_M128d_M128d(__m128d, _mm_cmpnle_sd);
	Ret_M128d_M128d(__m128d, _mm_cmpnlt_pd);
	Ret_M128d_M128d(__m128d, _mm_cmpnlt_sd);
	Ret_M128d_M128d(__m128d, _mm_cmpord_pd);
	Ret_M128d_M128d(__m128d, _mm_cmpord_sd);
	Ret_M128d_M128d(__m128d, _mm_cmpunord_pd);
	Ret_M128d_M128d(__m128d, _mm_cmpunord_sd);
	Ret_M128d_M128d(int, _mm_comieq_sd);
	Ret_M128d_M128d(int, _mm_comige_sd);
	Ret_M128d_M128d(int, _mm_comigt_sd);
	Ret_M128d_M128d(int, _mm_comile_sd);
	Ret_M128d_M128d(int, _mm_comilt_sd);
	Ret_M128d_M128d(int, _mm_comineq_sd);
	Ret_M128d_M128d(int, _mm_ucomieq_sd);
	Ret_M128d_M128d(int, _mm_ucomige_sd);
	Ret_M128d_M128d(int, _mm_ucomigt_sd);
	Ret_M128d_M128d(int, _mm_ucomile_sd);
	Ret_M128d_M128d(int, _mm_ucomilt_sd);
	Ret_M128d_M128d(int, _mm_ucomineq_sd);
}

void test_convert()
{
	// SSE2 Convert instructions:
	Ret_M128i(__m128d, _mm_cvtepi32_pd);
	Ret_M128i(__m128, _mm_cvtepi32_ps);
	Ret_M128d(__m128i, _mm_cvtpd_epi32);
	Ret_M128d(__m128, _mm_cvtpd_ps);
	Ret_M128(__m128i, _mm_cvtps_epi32);
	Ret_M128(__m128d,  _mm_cvtps_pd);
	Ret_M128d(double, _mm_cvtsd_f64);
	Ret_M128d(int, _mm_cvtsd_si32);
	Ret_M128d(int64_t, _mm_cvtsd_si64); // _mm_cvtsd_si64x is an alias to this.
	Ret_M128i(int, _mm_cvtsi128_si32);
	Ret_M128i(int64_t, _mm_cvtsi128_si64); // _mm_cvtsi128_si64x is an alias to this.
	Ret_M128d_int(__m128d, _mm_cvtsi32_sd);
	Ret_int(__m128i, _mm_cvtsi32_si128);
	Ret_M128d_int64(__m128d, _mm_cvtsi64_sd); // _mm_cvtsi64x_sd is an alias to this.
	Ret_int64(__m128i, _mm_cvtsi64_si128); // _mm_cvtsi64x_si128 is an alias to this.
	Ret_M128d_M128(__m128d, _mm_cvtss_sd);
	Ret_M128d(__m128i, _mm_cvttpd_epi32);
	Ret_M128(__m128i, _mm_cvttps_epi32);
	Ret_M128d(int, _mm_cvttsd_si32);
	Ret_M128d(int64_t, _mm_cvttsd_si64); // _mm_cvttsd_si64x is an alias to this.
}
void test_elementarymath()
{
	// SSE2 Elementary Math Functions instructions:
	Ret_M128d(__m128d, _mm_sqrt_pd);
	Ret_M128d_M128d(__m128d, _mm_sqrt_sd);
}

void test_generalsupport()
{
	// SSE2 General Support instructions:
	_mm_clflush(interesting_floats);
	_mm_lfence();
	_mm_mfence();
	_mm_pause();
}

void test_load()
{
	// SSE2 Load functions:
	Ret_DoublePtr(__m128d, _mm_load_pd, 2, 2);
	Ret_DoublePtr(__m128d, _mm_load_pd1, 1, 1);
	Ret_DoublePtr(__m128d, _mm_load_sd, 1, 1);
	Ret_IntPtr(__m128i, _mm_load_si128, __m128i*, 4, 4);
	Ret_DoublePtr(__m128d, _mm_load1_pd, 1, 1);
	Ret_M128d_DoublePtr(__m128d, _mm_loadh_pd, double*, 1, 1);
	Ret_IntPtr(__m128i, _mm_loadl_epi64, __m128i*, 2, 1);
	Ret_M128d_DoublePtr(__m128d, _mm_loadl_pd, double*, 1, 1);
	Ret_DoublePtr(__m128d, _mm_loadr_pd, 2, 2);
	Ret_DoublePtr(__m128d, _mm_loadu_pd, 2, 1);
	Ret_IntPtr(__m128i, _mm_loadu_si128, __m128i*, 4, 1);
	Ret_IntPtr(__m128i, _mm_loadu_si32, __m128i*, 1, 1);
}

void test_logical()
{
	// SSE2 Logical instructions:
	Ret_M128d_M128d(__m128d, _mm_and_pd);
	M128i_M128i_M128i(_mm_and_si128);
	Ret_M128d_M128d(__m128d, _mm_andnot_pd);
	M128i_M128i_M128i(_mm_andnot_si128);
	Ret_M128d_M128d(__m128d, _mm_or_pd);
	M128i_M128i_M128i(_mm_or_si128);
	Ret_M128d_M128d(__m128d, _mm_xor_pd);
	M128i_M128i_M128i(_mm_xor_si128);
}

void test_misc()
{
	// SSE2 Miscellaneous instructions:
	Ret_M128i(int, _mm_movemask_epi8);
	Ret_M128d(int, _mm_movemask_pd);
	M128i_M128i_M128i(_mm_packs_epi16);
	M128i_M128i_M128i(_mm_packs_epi32);
	M128i_M128i_M128i(_mm_packus_epi16);
}

void test_move()
{
	// SSE2 Move instructions:
	Ret_M128i(__m128i, _mm_move_epi64);
	Ret_M128d_M128d(__m128d, _mm_move_sd);
}

void test_probability()
{
	// SSE2 Probability/Statistics instructions:
	M128i_M128i_M128i(_mm_avg_epu16);
	M128i_M128i_M128i(_mm_avg_epu8);
}

void test_set()
{
/*
	// TODO: SSE2 Set functions:
	_mm_set_epi16
	_mm_set_epi32
	_mm_set_epi64
	_mm_set_epi64x
	_mm_set_epi8
	_mm_set_pd
	_mm_set_pd1
	_mm_set_sd
	_mm_set1_epi16
	_mm_set1_epi32
	_mm_set1_epi64
	_mm_set1_epi64x
	_mm_set1_epi8
	_mm_set1_pd
	_mm_setr_epi16
	_mm_setr_epi32
	_mm_setr_epi64
	_mm_setr_epi8
	_mm_setr_pd
	_mm_setzero_pd
	_mm_setzero_si128
*/
}

void test_shift()
{
	// SSE2 Shift instructions:
	M128i_M128i_M128i(_mm_sll_epi16);
	M128i_M128i_M128i(_mm_sll_epi32);
	M128i_M128i_M128i(_mm_sll_epi64);
	Ret_M128i_Tint(__m128i, _mm_slli_epi16);
	Ret_M128i_Tint(__m128i, _mm_slli_epi32);
	Ret_M128i_Tint(__m128i, _mm_slli_epi64);
	Ret_M128i_Tint(__m128i, _mm_slli_si128); // _mm_bslli_si128 is an alias to this.
	M128i_M128i_M128i(_mm_sra_epi16);
	M128i_M128i_M128i(_mm_sra_epi32);
	Ret_M128i_Tint(__m128i, _mm_srai_epi16);
	Ret_M128i_Tint(__m128i, _mm_srai_epi32);
	M128i_M128i_M128i(_mm_srl_epi16);
	M128i_M128i_M128i(_mm_srl_epi32);
	M128i_M128i_M128i(_mm_srl_epi64);
	Ret_M128i_Tint(__m128i, _mm_srli_epi16);
	Ret_M128i_Tint(__m128i, _mm_srli_epi32);
	Ret_M128i_Tint(__m128i, _mm_srli_epi64);
	Ret_M128i_Tint(__m128i, _mm_srli_si128); // _mm_bsrli_si128 is an alias to this.
}

void test_specialmath()
{
	// SSE2 Special Math instructions:
	M128i_M128i_M128i(_mm_max_epi16);
	M128i_M128i_M128i(_mm_max_epu8);
	Ret_M128d_M128d(__m128d, _mm_max_pd);
	Ret_M128d_M128d(__m128d, _mm_max_sd);
	M128i_M128i_M128i(_mm_min_epi16);
	M128i_M128i_M128i(_mm_min_epu8);
	Ret_M128d_M128d(__m128d, _mm_min_pd);
	Ret_M128d_M128d(__m128d, _mm_min_sd);
}

void test_store()
{
	// SSE2 Store instructions:
	void_M128i_M128i_OutIntPtr(_mm_maskmoveu_si128, char*, 16, 1);
	void_OutDoublePtr_M128d(_mm_store_pd, double*, 16, 16);
	void_OutDoublePtr_M128d(_mm_store_sd, double*, 8, 1);
	void_OutIntPtr_M128i(_mm_store_si128, __m128i*, 16, 16);
	void_OutDoublePtr_M128d(_mm_store1_pd, double*, 16, 16); // _mm_store_pd1 is an alias to this.
	void_OutDoublePtr_M128d(_mm_storeh_pd, double*, 8, 1);
	void_OutIntPtr_M128i(_mm_storel_epi64, __m128i*, 8, 1);
	void_OutDoublePtr_M128d(_mm_storel_pd, double*, 8, 1);
	void_OutDoublePtr_M128d(_mm_storer_pd, double*, 16, 16);
	void_OutDoublePtr_M128d(_mm_storeu_pd, double*, 16, 1);
	void_OutIntPtr_M128i(_mm_storeu_si32, __m128i*, 4, 1);
	void_OutIntPtr_M128i(_mm_storeu_si128, __m128i*, 16, 1);
	void_OutDoublePtr_M128d(_mm_stream_pd, double*, 16, 16);
	void_OutIntPtr_M128i(_mm_stream_si128, __m128i*, 16, 16);
	void_OutIntPtr_int(_mm_stream_si32, int*, 4, 1);
	void_OutIntPtr_int64(_mm_stream_si64, long long*, 8, 1);
}

void test_swizzle()
{
	// SSE2 Swizzle instructions:
	Ret_M128i_Tint(int, _mm_extract_epi16);
	Ret_M128i_int_Tint(__m128i, _mm_insert_epi16);
	Ret_M128i_Tint(__m128i, _mm_shuffle_epi32);
	Ret_M128d_M128d_Tint(__m128d, _mm_shuffle_pd);
	Ret_M128i_Tint(__m128i, _mm_shufflehi_epi16);
	Ret_M128i_Tint(__m128i, _mm_shufflelo_epi16);
	M128i_M128i_M128i(_mm_unpackhi_epi16);
	M128i_M128i_M128i(_mm_unpackhi_epi32);
	M128i_M128i_M128i(_mm_unpackhi_epi64);
	M128i_M128i_M128i(_mm_unpackhi_epi8);
	Ret_M128d_M128d(__m128d, _mm_unpackhi_pd);
	M128i_M128i_M128i(_mm_unpacklo_epi16);
	M128i_M128i_M128i(_mm_unpacklo_epi32);
	M128i_M128i_M128i(_mm_unpacklo_epi64);
	M128i_M128i_M128i(_mm_unpacklo_epi8);
	Ret_M128d_M128d(__m128d, _mm_unpacklo_pd);
}

int main()
{
	assert(numInterestingFloats % 4 == 0);
	assert(numInterestingInts % 4 == 0);
	assert(numInterestingDoubles % 4 == 0);	

	test_arithmetic();
	test_cast();
	test_compare();
	test_convert();
	test_elementarymath();
	test_generalsupport();
	test_load();
	test_logical();
	test_misc();
	test_move();
	test_probability();
	test_set();
	test_shift();
	test_specialmath();
	test_store();
	test_swizzle();	

#ifdef __EMSCRIPTEN__
	_mm_undefined_si128();
	_mm_undefined_pd();
#endif
}