
This is a large refactor of the cgo package. It should fix a number of smaller problems and be a bit more strict (like upstream CGo): it for example requires every Go file in a package to include the header files it needs instead of piggybacking on imports in earlier files. The main benefit is that it should be a bit more maintainable and easier to add new features in the future (like static functions). This breaks the tinygo.org/x/bluetooth package, which should be updated before this change lands.
149 строки
3,9 КиБ
Go
149 строки
3,9 КиБ
Go
package main
|
|
|
|
import "unsafe"
|
|
|
|
var _ unsafe.Pointer
|
|
|
|
//go:linkname C.CString runtime.cgo_CString
|
|
func C.CString(string) *C.char
|
|
|
|
//go:linkname C.GoString runtime.cgo_GoString
|
|
func C.GoString(*C.char) string
|
|
|
|
//go:linkname C.__GoStringN runtime.cgo_GoStringN
|
|
func C.__GoStringN(*C.char, uintptr) string
|
|
|
|
func C.GoStringN(cstr *C.char, length C.int) string {
|
|
return C.__GoStringN(cstr, uintptr(length))
|
|
}
|
|
|
|
//go:linkname C.__GoBytes runtime.cgo_GoBytes
|
|
func C.__GoBytes(unsafe.Pointer, uintptr) []byte
|
|
|
|
func C.GoBytes(ptr unsafe.Pointer, length C.int) []byte {
|
|
return C.__GoBytes(ptr, uintptr(length))
|
|
}
|
|
|
|
type (
|
|
C.char uint8
|
|
C.schar int8
|
|
C.uchar uint8
|
|
C.short int16
|
|
C.ushort uint16
|
|
C.int int32
|
|
C.uint uint32
|
|
C.long int32
|
|
C.ulong uint32
|
|
C.longlong int64
|
|
C.ulonglong uint64
|
|
)
|
|
type C.myint = C.int
|
|
type C._Ctype_struct___0 struct {
|
|
x C.int
|
|
y C.int
|
|
}
|
|
type C.point2d_t = C._Ctype_struct___0
|
|
type C.struct_point3d struct {
|
|
x C.int
|
|
y C.int
|
|
z C.int
|
|
}
|
|
type C.point3d_t = C.struct_point3d
|
|
type C.struct_type1 struct {
|
|
_type C.int
|
|
__type C.int
|
|
___type C.int
|
|
}
|
|
type C.struct_type2 struct{ _type C.int }
|
|
type C._Ctype_union___1 struct{ i C.int }
|
|
type C.union1_t = C._Ctype_union___1
|
|
type C._Ctype_union___2 struct{ $union uint64 }
|
|
|
|
func (union *C._Ctype_union___2) unionfield_i() *C.int {
|
|
return (*C.int)(unsafe.Pointer(&union.$union))
|
|
}
|
|
func (union *C._Ctype_union___2) unionfield_d() *float64 {
|
|
return (*float64)(unsafe.Pointer(&union.$union))
|
|
}
|
|
func (union *C._Ctype_union___2) unionfield_s() *C.short {
|
|
return (*C.short)(unsafe.Pointer(&union.$union))
|
|
}
|
|
|
|
type C.union3_t = C._Ctype_union___2
|
|
type C.union_union2d struct{ $union [2]uint64 }
|
|
|
|
func (union *C.union_union2d) unionfield_i() *C.int { return (*C.int)(unsafe.Pointer(&union.$union)) }
|
|
func (union *C.union_union2d) unionfield_d() *[2]float64 {
|
|
return (*[2]float64)(unsafe.Pointer(&union.$union))
|
|
}
|
|
|
|
type C.union2d_t = C.union_union2d
|
|
type C._Ctype_union___3 struct{ arr [10]C.uchar }
|
|
type C.unionarray_t = C._Ctype_union___3
|
|
type C._Ctype_union___5 struct{ $union [3]uint32 }
|
|
|
|
func (union *C._Ctype_union___5) unionfield_area() *C.point2d_t {
|
|
return (*C.point2d_t)(unsafe.Pointer(&union.$union))
|
|
}
|
|
func (union *C._Ctype_union___5) unionfield_solid() *C.point3d_t {
|
|
return (*C.point3d_t)(unsafe.Pointer(&union.$union))
|
|
}
|
|
|
|
type C._Ctype_struct___4 struct {
|
|
begin C.point2d_t
|
|
end C.point2d_t
|
|
tag C.int
|
|
|
|
coord C._Ctype_union___5
|
|
}
|
|
type C.struct_nested_t = C._Ctype_struct___4
|
|
type C._Ctype_union___6 struct{ $union [2]uint64 }
|
|
|
|
func (union *C._Ctype_union___6) unionfield_point() *C.point3d_t {
|
|
return (*C.point3d_t)(unsafe.Pointer(&union.$union))
|
|
}
|
|
func (union *C._Ctype_union___6) unionfield_array() *C.unionarray_t {
|
|
return (*C.unionarray_t)(unsafe.Pointer(&union.$union))
|
|
}
|
|
func (union *C._Ctype_union___6) unionfield_thing() *C.union3_t {
|
|
return (*C.union3_t)(unsafe.Pointer(&union.$union))
|
|
}
|
|
|
|
type C.union_nested_t = C._Ctype_union___6
|
|
type C.enum_option = C.int
|
|
type C.option_t = C.enum_option
|
|
type C._Ctype_enum___7 = C.uint
|
|
type C.option2_t = C._Ctype_enum___7
|
|
type C._Ctype_struct___8 struct {
|
|
f float32
|
|
d float64
|
|
ptr *C.int
|
|
}
|
|
type C.types_t = C._Ctype_struct___8
|
|
type C.myIntArray = [10]C.int
|
|
type C._Ctype_struct___9 struct {
|
|
start C.uchar
|
|
__bitfield_1 C.uchar
|
|
|
|
d C.uchar
|
|
e C.uchar
|
|
}
|
|
|
|
func (s *C._Ctype_struct___9) bitfield_a() C.uchar { return s.__bitfield_1 & 0x1f }
|
|
func (s *C._Ctype_struct___9) set_bitfield_a(value C.uchar) {
|
|
s.__bitfield_1 = s.__bitfield_1&^0x1f | value&0x1f<<0
|
|
}
|
|
func (s *C._Ctype_struct___9) bitfield_b() C.uchar {
|
|
return s.__bitfield_1 >> 5 & 0x1
|
|
}
|
|
func (s *C._Ctype_struct___9) set_bitfield_b(value C.uchar) {
|
|
s.__bitfield_1 = s.__bitfield_1&^0x20 | value&0x1<<5
|
|
}
|
|
func (s *C._Ctype_struct___9) bitfield_c() C.uchar {
|
|
return s.__bitfield_1 >> 6
|
|
}
|
|
func (s *C._Ctype_struct___9) set_bitfield_c(value C.uchar,
|
|
|
|
) { s.__bitfield_1 = s.__bitfield_1&0x3f | value<<6 }
|
|
|
|
type C.bitfield_t = C._Ctype_struct___9
|