Retro68/gcc/libgo/runtime/go-type-string.c

50 lines
1.1 KiB
C
Raw Normal View History

2012-03-27 23:13:14 +00:00
/* go-type-string.c -- hash and equality string functions.
Copyright 2009 The Go Authors. All rights reserved.
Use of this source code is governed by a BSD-style
license that can be found in the LICENSE file. */
2014-09-21 17:33:12 +00:00
#include "runtime.h"
2012-03-27 23:13:14 +00:00
#include "go-type.h"
2014-09-21 17:33:12 +00:00
#include "go-string.h"
2012-03-27 23:13:14 +00:00
/* A string hash function for a map. */
uintptr_t
__go_type_hash_string (const void *vkey,
uintptr_t key_size __attribute__ ((unused)))
{
uintptr_t ret;
2014-09-21 17:33:12 +00:00
const String *key;
intgo len;
intgo i;
const byte *p;
2012-03-27 23:13:14 +00:00
ret = 5381;
2014-09-21 17:33:12 +00:00
key = (const String *) vkey;
len = key->len;
for (i = 0, p = key->str; i < len; i++, p++)
2012-03-27 23:13:14 +00:00
ret = ret * 33 + *p;
return ret;
}
2017-04-10 11:32:00 +00:00
const FuncVal __go_type_hash_string_descriptor =
{ (void *) __go_type_hash_string };
2012-03-27 23:13:14 +00:00
/* A string equality function for a map. */
_Bool
__go_type_equal_string (const void *vk1, const void *vk2,
uintptr_t key_size __attribute__ ((unused)))
{
2014-09-21 17:33:12 +00:00
const String *k1;
const String *k2;
2012-03-27 23:13:14 +00:00
2014-09-21 17:33:12 +00:00
k1 = (const String *) vk1;
k2 = (const String *) vk2;
return __go_ptr_strings_equal (k1, k2);
2012-03-27 23:13:14 +00:00
}
2017-04-10 11:32:00 +00:00
const FuncVal __go_type_equal_string_descriptor =
{ (void *) __go_type_equal_string };