2010-12-03 05:34:57 +01: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. */
|
|
|
|
|
2012-11-01 04:02:13 +01:00
|
|
|
#include "runtime.h"
|
2010-12-03 05:34:57 +01:00
|
|
|
#include "go-type.h"
|
2012-11-01 04:02:13 +01:00
|
|
|
#include "go-string.h"
|
2010-12-03 05:34:57 +01:00
|
|
|
|
|
|
|
/* A string hash function for a map. */
|
|
|
|
|
2012-01-06 22:47:49 +01:00
|
|
|
uintptr_t
|
2010-12-03 05:34:57 +01:00
|
|
|
__go_type_hash_string (const void *vkey,
|
2012-01-06 22:47:49 +01:00
|
|
|
uintptr_t key_size __attribute__ ((unused)))
|
2010-12-03 05:34:57 +01:00
|
|
|
{
|
2012-01-06 22:47:49 +01:00
|
|
|
uintptr_t ret;
|
2012-11-01 04:02:13 +01:00
|
|
|
const String *key;
|
|
|
|
intgo len;
|
|
|
|
intgo i;
|
|
|
|
const byte *p;
|
2010-12-03 05:34:57 +01:00
|
|
|
|
|
|
|
ret = 5381;
|
2012-11-01 04:02:13 +01:00
|
|
|
key = (const String *) vkey;
|
|
|
|
len = key->len;
|
|
|
|
for (i = 0, p = key->str; i < len; i++, p++)
|
2010-12-03 05:34:57 +01:00
|
|
|
ret = ret * 33 + *p;
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2015-10-29 18:14:51 +01:00
|
|
|
const FuncVal __go_type_hash_string_descriptor =
|
|
|
|
{ (void *) __go_type_hash_string };
|
|
|
|
|
2010-12-03 05:34:57 +01:00
|
|
|
/* A string equality function for a map. */
|
|
|
|
|
|
|
|
_Bool
|
|
|
|
__go_type_equal_string (const void *vk1, const void *vk2,
|
2012-01-06 22:47:49 +01:00
|
|
|
uintptr_t key_size __attribute__ ((unused)))
|
2010-12-03 05:34:57 +01:00
|
|
|
{
|
2012-11-01 04:02:13 +01:00
|
|
|
const String *k1;
|
|
|
|
const String *k2;
|
2010-12-03 05:34:57 +01:00
|
|
|
|
2012-11-01 04:02:13 +01:00
|
|
|
k1 = (const String *) vk1;
|
|
|
|
k2 = (const String *) vk2;
|
|
|
|
return __go_ptr_strings_equal (k1, k2);
|
2010-12-03 05:34:57 +01:00
|
|
|
}
|
2015-10-29 18:14:51 +01:00
|
|
|
|
|
|
|
const FuncVal __go_type_equal_string_descriptor =
|
|
|
|
{ (void *) __go_type_equal_string };
|