]>
git.proxmox.com Git - rustc.git/blob - src/jemalloc/test/unit/hash.c
2 * This file is based on code that is part of SMHasher
3 * (https://code.google.com/p/smhasher/), and is subject to the MIT license
4 * (http://www.opensource.org/licenses/mit-license.php). Both email addresses
5 * associated with the source code's revision history belong to Austin Appleby,
6 * and the revision history ranges from 2010 to 2012. Therefore the copyright
7 * and license are here taken to be:
9 * Copyright (c) 2010-2012 Austin Appleby
11 * Permission is hereby granted, free of charge, to any person obtaining a copy
12 * of this software and associated documentation files (the "Software"), to deal
13 * in the Software without restriction, including without limitation the rights
14 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
15 * copies of the Software, and to permit persons to whom the Software is
16 * furnished to do so, subject to the following conditions:
18 * The above copyright notice and this permission notice shall be included in
19 * all copies or substantial portions of the Software.
21 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
22 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
23 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
24 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
25 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
26 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
30 #include "test/jemalloc_test.h"
39 hash_variant_bits(hash_variant_t variant
)
43 case hash_variant_x86_32
: return (32);
44 case hash_variant_x86_128
: return (128);
45 case hash_variant_x64_128
: return (128);
46 default: not_reached();
51 hash_variant_string(hash_variant_t variant
)
55 case hash_variant_x86_32
: return ("hash_x86_32");
56 case hash_variant_x86_128
: return ("hash_x86_128");
57 case hash_variant_x64_128
: return ("hash_x64_128");
58 default: not_reached();
64 hash_variant_verify_key(hash_variant_t variant
, uint8_t *key
)
66 const int hashbytes
= hash_variant_bits(variant
) / 8;
67 const int hashes_size
= hashbytes
* 256;
68 VARIABLE_ARRAY(uint8_t, hashes
, hashes_size
);
69 VARIABLE_ARRAY(uint8_t, final
, hashbytes
);
71 uint32_t computed
, expected
;
73 memset(key
, 0, KEY_SIZE
);
74 memset(hashes
, 0, hashes_size
);
75 memset(final
, 0, hashbytes
);
78 * Hash keys of the form {0}, {0,1}, {0,1,2}, ..., {0,1,...,255} as the
81 for (i
= 0; i
< 256; i
++) {
84 case hash_variant_x86_32
: {
86 out
= hash_x86_32(key
, i
, 256-i
);
87 memcpy(&hashes
[i
*hashbytes
], &out
, hashbytes
);
89 } case hash_variant_x86_128
: {
91 hash_x86_128(key
, i
, 256-i
, out
);
92 memcpy(&hashes
[i
*hashbytes
], out
, hashbytes
);
94 } case hash_variant_x64_128
: {
96 hash_x64_128(key
, i
, 256-i
, out
);
97 memcpy(&hashes
[i
*hashbytes
], out
, hashbytes
);
99 } default: not_reached();
103 /* Hash the result array. */
105 case hash_variant_x86_32
: {
106 uint32_t out
= hash_x86_32(hashes
, hashes_size
, 0);
107 memcpy(final
, &out
, sizeof(out
));
109 } case hash_variant_x86_128
: {
111 hash_x86_128(hashes
, hashes_size
, 0, out
);
112 memcpy(final
, out
, sizeof(out
));
114 } case hash_variant_x64_128
: {
116 hash_x64_128(hashes
, hashes_size
, 0, out
);
117 memcpy(final
, out
, sizeof(out
));
119 } default: not_reached();
122 computed
= (final
[0] << 0) | (final
[1] << 8) | (final
[2] << 16) |
126 #ifdef JEMALLOC_BIG_ENDIAN
127 case hash_variant_x86_32
: expected
= 0x6213303eU
; break;
128 case hash_variant_x86_128
: expected
= 0x266820caU
; break;
129 case hash_variant_x64_128
: expected
= 0xcc622b6fU
; break;
131 case hash_variant_x86_32
: expected
= 0xb0f57ee3U
; break;
132 case hash_variant_x86_128
: expected
= 0xb3ece62aU
; break;
133 case hash_variant_x64_128
: expected
= 0x6384ba69U
; break;
135 default: not_reached();
138 assert_u32_eq(computed
, expected
,
139 "Hash mismatch for %s(): expected %#x but got %#x",
140 hash_variant_string(variant
), expected
, computed
);
144 hash_variant_verify(hash_variant_t variant
)
147 uint8_t key
[KEY_SIZE
+ (MAX_ALIGN
- 1)];
150 for (i
= 0; i
< MAX_ALIGN
; i
++)
151 hash_variant_verify_key(variant
, &key
[i
]);
156 TEST_BEGIN(test_hash_x86_32
)
159 hash_variant_verify(hash_variant_x86_32
);
163 TEST_BEGIN(test_hash_x86_128
)
166 hash_variant_verify(hash_variant_x86_128
);
170 TEST_BEGIN(test_hash_x64_128
)
173 hash_variant_verify(hash_variant_x64_128
);