Mercurial > vec
annotate test/test_align.h @ 29:e59c91d050c0
*: add aligned malloc stuff :)
| author | Paper <paper@tflc.us> |
|---|---|
| date | Thu, 24 Apr 2025 17:12:05 -0400 |
| parents | 41dd962abdd1 |
| children | 641d8c79b1da |
| rev | line source |
|---|---|
| 3 | 1 static int test_align(void) |
| 2 { | |
| 3 int ret = 0; | |
| 29 | 4 int i; |
| 3 | 5 |
| 6 #define RUN_TEST(sign, csign, bits, size) \ | |
| 7 do { \ | |
| 8 /* allocate the aligned array */ \ | |
| 9 V##csign##INT##bits##x##size##_ALIGNED_ARRAY(vec_arr); \ | |
| 10 \ | |
| 11 /* fill the values */ \ | |
| 29 | 12 for (i = 0; i < size; i++) \ |
| 3 | 13 vec_arr[i] = i; \ |
| 14 \ | |
| 15 /* try to load it */ \ | |
| 16 v##sign##int##bits##x##size vec = v##sign##int##bits##x##size##_load_aligned(vec_arr); \ | |
| 17 \ | |
| 18 /* now allocate an output array */ \ | |
| 19 V##csign##INT##bits##x##size##_ALIGNED_ARRAY(vec_arr_out); \ | |
| 20 \ | |
| 21 /* try storing it */ \ | |
| 22 v##sign##int##bits##x##size##_store_aligned(vec, vec_arr_out); \ | |
| 23 \ | |
| 24 /* mark success or failure */ \ | |
|
13
53197dbf4e8e
vec.h: initial refactor for runtime SSE and stuff
Paper <paper@tflc.us>
parents:
9
diff
changeset
|
25 ret |= !!memcmp(vec_arr, vec_arr_out, size * sizeof(*vec_arr)); \ |
|
4
75ab77f874e2
*: aligned generics, fixed altivec, aligned tests...
Paper <paper@tflc.us>
parents:
3
diff
changeset
|
26 \ |
|
75ab77f874e2
*: aligned generics, fixed altivec, aligned tests...
Paper <paper@tflc.us>
parents:
3
diff
changeset
|
27 ret |= !V##csign##INT##bits##x##size##_PTR_ALIGNED(vec_arr); \ |
|
75ab77f874e2
*: aligned generics, fixed altivec, aligned tests...
Paper <paper@tflc.us>
parents:
3
diff
changeset
|
28 ret |= !V##csign##INT##bits##x##size##_PTR_ALIGNED(vec_arr_out); \ |
| 3 | 29 } while (0); |
| 30 | |
| 31 #define RUN_TESTS(bits, size) \ | |
| 32 RUN_TEST( , , bits, size) \ | |
| 33 RUN_TEST(u, U, bits, size) | |
| 34 | |
|
17
41dd962abdd1
*: allow compiling vec in a C++ translation unit
Paper <paper@tflc.us>
parents:
15
diff
changeset
|
35 RUN_TESTS(8, 2) |
|
41dd962abdd1
*: allow compiling vec in a C++ translation unit
Paper <paper@tflc.us>
parents:
15
diff
changeset
|
36 |
|
41dd962abdd1
*: allow compiling vec in a C++ translation unit
Paper <paper@tflc.us>
parents:
15
diff
changeset
|
37 RUN_TESTS(8, 4) |
|
41dd962abdd1
*: allow compiling vec in a C++ translation unit
Paper <paper@tflc.us>
parents:
15
diff
changeset
|
38 RUN_TESTS(16, 2) |
|
41dd962abdd1
*: allow compiling vec in a C++ translation unit
Paper <paper@tflc.us>
parents:
15
diff
changeset
|
39 |
|
15
e05c257c6a23
*: huge refactor, add many new x86 intrinsics and the like
Paper <paper@tflc.us>
parents:
13
diff
changeset
|
40 RUN_TESTS(8, 8) |
|
e05c257c6a23
*: huge refactor, add many new x86 intrinsics and the like
Paper <paper@tflc.us>
parents:
13
diff
changeset
|
41 RUN_TESTS(16, 4) |
|
e05c257c6a23
*: huge refactor, add many new x86 intrinsics and the like
Paper <paper@tflc.us>
parents:
13
diff
changeset
|
42 RUN_TESTS(32, 2) |
|
e05c257c6a23
*: huge refactor, add many new x86 intrinsics and the like
Paper <paper@tflc.us>
parents:
13
diff
changeset
|
43 |
| 3 | 44 RUN_TESTS(8, 16) |
|
15
e05c257c6a23
*: huge refactor, add many new x86 intrinsics and the like
Paper <paper@tflc.us>
parents:
13
diff
changeset
|
45 RUN_TESTS(16, 8) |
|
e05c257c6a23
*: huge refactor, add many new x86 intrinsics and the like
Paper <paper@tflc.us>
parents:
13
diff
changeset
|
46 RUN_TESTS(32, 4) |
|
e05c257c6a23
*: huge refactor, add many new x86 intrinsics and the like
Paper <paper@tflc.us>
parents:
13
diff
changeset
|
47 RUN_TESTS(64, 2) |
|
e05c257c6a23
*: huge refactor, add many new x86 intrinsics and the like
Paper <paper@tflc.us>
parents:
13
diff
changeset
|
48 |
|
e05c257c6a23
*: huge refactor, add many new x86 intrinsics and the like
Paper <paper@tflc.us>
parents:
13
diff
changeset
|
49 RUN_TESTS(8, 32) |
|
e05c257c6a23
*: huge refactor, add many new x86 intrinsics and the like
Paper <paper@tflc.us>
parents:
13
diff
changeset
|
50 RUN_TESTS(16, 16) |
|
e05c257c6a23
*: huge refactor, add many new x86 intrinsics and the like
Paper <paper@tflc.us>
parents:
13
diff
changeset
|
51 RUN_TESTS(32, 8) |
|
e05c257c6a23
*: huge refactor, add many new x86 intrinsics and the like
Paper <paper@tflc.us>
parents:
13
diff
changeset
|
52 RUN_TESTS(64, 4) |
|
e05c257c6a23
*: huge refactor, add many new x86 intrinsics and the like
Paper <paper@tflc.us>
parents:
13
diff
changeset
|
53 |
|
e05c257c6a23
*: huge refactor, add many new x86 intrinsics and the like
Paper <paper@tflc.us>
parents:
13
diff
changeset
|
54 RUN_TESTS(8, 64) |
|
e05c257c6a23
*: huge refactor, add many new x86 intrinsics and the like
Paper <paper@tflc.us>
parents:
13
diff
changeset
|
55 RUN_TESTS(16, 32) |
|
e05c257c6a23
*: huge refactor, add many new x86 intrinsics and the like
Paper <paper@tflc.us>
parents:
13
diff
changeset
|
56 RUN_TESTS(32, 16) |
|
e05c257c6a23
*: huge refactor, add many new x86 intrinsics and the like
Paper <paper@tflc.us>
parents:
13
diff
changeset
|
57 RUN_TESTS(64, 8) |
|
9
6ff0b7a44bb6
generic: add initial support for 256-bit and 512-bit types
Paper <paper@tflc.us>
parents:
4
diff
changeset
|
58 |
| 3 | 59 #undef RUN_TESTS |
| 60 #undef RUN_TEST | |
| 61 | |
| 29 | 62 for (i = 0; i < 50; i++) { |
| 63 void *q = vec_malloc(i); | |
| 64 | |
| 65 ret |= !!((uintptr_t)q & 63); | |
| 66 | |
| 67 /* try a bigger size */ | |
| 68 q = vec_realloc(q, i + 10); | |
| 69 | |
| 70 ret |= !!((uintptr_t)q & 63); | |
| 71 | |
| 72 /* now a smaller one */ | |
| 73 q = vec_realloc(q, i - 10); | |
| 74 | |
| 75 ret |= !!((uintptr_t)q & 63); | |
| 76 | |
| 77 vec_free(q); | |
| 78 } | |
| 79 | |
| 3 | 80 return ret; |
| 81 } |
