blob: 886048548768d010b3048cdfc0091e8eb1445fd2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
/* go-unreflect.c -- implement unsafe.Unreflect for Go.
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. */
#include "go-alloc.h"
#include "go-type.h"
#include "interface.h"
/* Implement unsafe.Unreflect. */
struct __go_empty_interface Unreflect (struct __go_empty_interface type,
void *object)
asm ("libgo_unsafe.unsafe.Unreflect");
struct __go_empty_interface
Unreflect (struct __go_empty_interface type, void *object)
{
struct __go_empty_interface ret;
/* FIXME: We should check __type_descriptor to verify that this is
really a type descriptor. */
ret.__type_descriptor = type.__object;
if (__go_is_pointer_type (ret.__type_descriptor))
ret.__object = *(void **) object;
else
ret.__object = object;
return ret;
}
|