Retro68/gcc/libgo/runtime/go-interface-val-compare.c

34 lines
1006 B
C
Raw Normal View History

2012-03-27 23:13:14 +00:00
/* go-interface-val-compare.c -- compare an interface to a value.
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"
#include "interface.h"
/* Compare two interface values. Return 0 for equal, not zero for not
equal (return value is like strcmp). */
2014-09-21 17:33:12 +00:00
intgo
2012-03-27 23:13:14 +00:00
__go_interface_value_compare (
struct __go_interface left,
const struct __go_type_descriptor *right_descriptor,
const void *val)
{
const struct __go_type_descriptor *left_descriptor;
if (left.__methods == NULL)
return 1;
left_descriptor = left.__methods[0];
if (!__go_type_descriptors_equal (left_descriptor, right_descriptor))
return 1;
if (__go_is_pointer_type (left_descriptor))
return left.__object == val ? 0 : 1;
2017-04-10 11:32:00 +00:00
if (!__go_call_equalfn (left_descriptor->__equalfn, left.__object, val,
left_descriptor->__size))
2012-03-27 23:13:14 +00:00
return 1;
return 0;
}