1 /* go-type-identity.c -- hash and equality identity functions.
3 Copyright 2009 The Go Authors. All rights reserved.
4 Use of this source code is governed by a BSD-style
5 license that can be found in the LICENSE file. */
12 /* The 64-bit type. */
14 typedef unsigned int DItype
__attribute__ ((mode (DI
)));
16 /* An identity hash function for a type. This is used for types where
17 we can simply use the type value itself as a hash code. This is
18 true of, e.g., integers and pointers. */
21 __go_type_hash_identity (const void *key
, uintptr_t key_size
)
25 const unsigned char *p
;
35 #ifdef WORDS_BIGENDIAN
36 __builtin_memcpy (&u
.a
[8 - key_size
], key
, key_size
);
38 __builtin_memcpy (&u
.a
[0], key
, key_size
);
40 if (sizeof (uintptr_t) >= 8)
41 return (uintptr_t) u
.v
;
43 return (uintptr_t) ((u
.v
>> 32) ^ (u
.v
& 0xffffffff));
47 for (i
= 0, p
= (const unsigned char *) key
; i
< key_size
; i
++, p
++)
52 /* An identity equality function for a type. This is used for types
53 where we can check for equality by checking that the values have
57 __go_type_equal_identity (const void *k1
, const void *k2
, uintptr_t key_size
)
59 return __builtin_memcmp (k1
, k2
, key_size
) == 0;