go-unsafe-pointer.c 2.7 KB
Newer Older
1 2 3 4 5 6 7 8
/* go-unsafe-pointer.c -- unsafe.Pointer type descriptor 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 <stddef.h>

9
#include "runtime.h"
10
#include "go-type.h"
11
#include "mgc0.h"
12

13 14 15
/* A pointer with a zero value.  */
static void *zero_pointer;

16 17 18 19 20 21
/* This file provides the type descriptor for the unsafe.Pointer type.
   The unsafe package is defined by the compiler itself, which means
   that there is no package to compile to define the type
   descriptor.  */

extern const struct __go_type_descriptor unsafe_Pointer
22
  __asm__ (GOSYM_PREFIX "__go_tdn_unsafe.Pointer");
23

24 25 26
extern const uintptr unsafe_Pointer_gc[]
  __asm__ (GOSYM_PREFIX "__go_tdn_unsafe.Pointer$gc");

27 28 29 30 31 32 33 34 35
/* Used to determine the field alignment.  */
struct field_align
{
  char c;
  void *p;
};

/* The reflection string.  */
#define REFLECTION "unsafe.Pointer"
36
static const String reflection_string =
37
{
38
  (const byte *) REFLECTION,
39 40 41
  sizeof REFLECTION - 1
};

42
const uintptr unsafe_Pointer_gc[] = {sizeof(void*), GC_APTR, 0, GC_END};
43

44 45 46
const struct __go_type_descriptor unsafe_Pointer =
{
  /* __code */
47
  GO_UNSAFE_POINTER | GO_DIRECT_IFACE,
48 49 50 51 52 53 54 55 56 57 58 59
  /* __align */
  __alignof (void *),
  /* __field_align */
  offsetof (struct field_align, p) - 1,
  /* __size */
  sizeof (void *),
  /* __hash */
  78501163U,
  /* __hashfn */
  __go_type_hash_identity,
  /* __equalfn */
  __go_type_equal_identity,
60 61
  /* __gc */
  unsafe_Pointer_gc,
62 63 64
  /* __reflection */
  &reflection_string,
  /* __uncommon */
65 66
  NULL,
  /* __pointer_to_this */
67 68 69
  NULL,
  /* __zero */
  &zero_pointer
70 71 72 73 74 75 76
};

/* We also need the type descriptor for the pointer to unsafe.Pointer,
   since any package which refers to that type descriptor will expect
   it to be defined elsewhere.  */

extern const struct __go_ptr_type pointer_unsafe_Pointer
77
  __asm__ (GOSYM_PREFIX "__go_td_pN14_unsafe.Pointer");
78 79 80

/* The reflection string.  */
#define PREFLECTION "*unsafe.Pointer"
81
static const String preflection_string =
82
{
83
  (const byte *) PREFLECTION,
84 85 86 87 88 89 90 91
  sizeof PREFLECTION - 1,
};

const struct __go_ptr_type pointer_unsafe_Pointer =
{
  /* __common */
  {
    /* __code */
92
    GO_PTR | GO_DIRECT_IFACE,
93 94 95 96 97 98 99 100 101 102 103 104
    /* __align */
    __alignof (void *),
    /* __field_align */
    offsetof (struct field_align, p) - 1,
    /* __size */
    sizeof (void *),
    /* __hash */
    1256018616U,
    /* __hashfn */
    __go_type_hash_identity,
    /* __equalfn */
    __go_type_equal_identity,
105 106
    /* __gc */
    unsafe_Pointer_gc,
107 108 109
    /* __reflection */
    &preflection_string,
    /* __uncommon */
110 111
    NULL,
    /* __pointer_to_this */
112 113 114
    NULL,
    /* __zero */
    &zero_pointer
115 116 117 118
  },
  /* __element_type */
  &unsafe_Pointer
};