Package-Level Type Names (total 26, in which 25 are exported)
/* sort exporteds by: | */
ArrayType represents a fixed array type. // array element typeLenuintptr // slice typeTypeType // alignment of variable with this type function for comparing objects of this type
(ptr to object A, ptr to object B) -> ==? // alignment of struct field with this type GCData stores the GC type data for the garbage collector.
If the KindGCProg bit is set in kind, GCData is a GC program.
Otherwise it is a ptrmask bitmap. See mbitmap.go for details. // hash of type; avoids computation in hash tables // enumeration for C // number of (prefix) bytes in the type that can contain pointers // type for pointer to this type, may be zeroType.Size_uintptr // string form // extra type information flags Align returns the alignment of data with type t. ArrayType returns t cast to a *ArrayType, or nil if its tag does not match. ChanDir returns the direction of t if t is a channel type, otherwise InvalidDir (0).(*ArrayType) Common() *Type(*ArrayType) ExportedMethods() []Method(*ArrayType) FieldAlign() int FuncType returns t cast to a *FuncType, or nil if its tag does not match.(*ArrayType) GcSlice(begin, end uintptr) []byte(*ArrayType) HasName() bool IfaceIndir reports whether t is stored indirectly in an interface value. InterfaceType returns t cast to a *InterfaceType, or nil if its tag does not match. isDirectIface reports whether t is stored directly in an interface value.(*ArrayType) Key() *Type(*ArrayType) Kind() Kind MapType returns t cast to a *MapType, or nil if its tag does not match.(*ArrayType) NumMethod() int(*ArrayType) Pointers() bool Size returns the size of data with type t. StructType returns t cast to a *StructType, or nil if its tag does not match. Uncommon returns a pointer to T's "uncommon" data if there is any, otherwise nil
func (*Type).ArrayType() *ArrayType
ChanType represents a channel typeDirChanDirElem*TypeTypeType // alignment of variable with this type function for comparing objects of this type
(ptr to object A, ptr to object B) -> ==? // alignment of struct field with this type GCData stores the GC type data for the garbage collector.
If the KindGCProg bit is set in kind, GCData is a GC program.
Otherwise it is a ptrmask bitmap. See mbitmap.go for details. // hash of type; avoids computation in hash tables // enumeration for C // number of (prefix) bytes in the type that can contain pointers // type for pointer to this type, may be zeroType.Size_uintptr // string form // extra type information flags Align returns the alignment of data with type t. ArrayType returns t cast to a *ArrayType, or nil if its tag does not match. ChanDir returns the direction of t if t is a channel type, otherwise InvalidDir (0).(*ChanType) Common() *Type(*ChanType) ExportedMethods() []Method(*ChanType) FieldAlign() int FuncType returns t cast to a *FuncType, or nil if its tag does not match.(*ChanType) GcSlice(begin, end uintptr) []byte(*ChanType) HasName() bool IfaceIndir reports whether t is stored indirectly in an interface value. InterfaceType returns t cast to a *InterfaceType, or nil if its tag does not match. isDirectIface reports whether t is stored directly in an interface value.(*ChanType) Key() *Type(*ChanType) Kind() Kind Len returns the length of t if t is an array type, otherwise 0 MapType returns t cast to a *MapType, or nil if its tag does not match.(*ChanType) NumMethod() int(*ChanType) Pointers() bool Size returns the size of data with type t. StructType returns t cast to a *StructType, or nil if its tag does not match. Uncommon returns a pointer to T's "uncommon" data if there is any, otherwise nil
func runtime.makechan(t *runtime.chantype, size int) *runtime.hchan
func runtime.makechan64(t *runtime.chantype, size int64) *runtime.hchan
func runtime.reflect_makechan(t *runtime.chantype, size int) *runtime.hchan
funcType represents a function type.
A *Type for each in and out parameter is stored in an array that
directly follows the funcType (and possibly its uncommonType). So
a function type with one method, one input, and one output is:
struct {
funcType
uncommonType
[2]*rtype // [0] is in, [1] is out
}InCountuint16 // top bit is set if last input parameter is ...TypeType // alignment of variable with this type function for comparing objects of this type
(ptr to object A, ptr to object B) -> ==? // alignment of struct field with this type GCData stores the GC type data for the garbage collector.
If the KindGCProg bit is set in kind, GCData is a GC program.
Otherwise it is a ptrmask bitmap. See mbitmap.go for details. // hash of type; avoids computation in hash tables // enumeration for C // number of (prefix) bytes in the type that can contain pointers // type for pointer to this type, may be zeroType.Size_uintptr // string form // extra type information flags Align returns the alignment of data with type t. ArrayType returns t cast to a *ArrayType, or nil if its tag does not match. ChanDir returns the direction of t if t is a channel type, otherwise InvalidDir (0).(*FuncType) Common() *Type Elem returns the element type for t if t is an array, channel, map, pointer, or slice, otherwise nil.(*FuncType) ExportedMethods() []Method(*FuncType) FieldAlign() int FuncType returns t cast to a *FuncType, or nil if its tag does not match.(*FuncType) GcSlice(begin, end uintptr) []byte(*FuncType) HasName() bool IfaceIndir reports whether t is stored indirectly in an interface value.(*FuncType) In(i int) *Type(*FuncType) InSlice() []*Type InterfaceType returns t cast to a *InterfaceType, or nil if its tag does not match. isDirectIface reports whether t is stored directly in an interface value.(*FuncType) IsVariadic() bool(*FuncType) Key() *Type(*FuncType) Kind() Kind Len returns the length of t if t is an array type, otherwise 0 MapType returns t cast to a *MapType, or nil if its tag does not match.(*FuncType) NumIn() int(*FuncType) NumMethod() int(*FuncType) NumOut() int(*FuncType) Out(i int) *Type(*FuncType) OutSlice() []*Type(*FuncType) Pointers() bool Size returns the size of data with type t. StructType returns t cast to a *StructType, or nil if its tag does not match. Uncommon returns a pointer to T's "uncommon" data if there is any, otherwise nil
func (*Type).FuncType() *FuncType
func reflect.methodReceiver(op string, v reflect.Value, methodIndex int) (rcvrtype *Type, t *reflect.funcType, fn unsafe.Pointer)
func reflect.funcLayout(t *reflect.funcType, rcvr *Type) (frametype *Type, framePool *sync.Pool, abid reflect.abiDesc)
func reflect.funcStr(ft *reflect.funcType) string
func reflect.newAbiDesc(t *reflect.funcType, rcvr *Type) reflect.abiDesc
Imethod represents a method on an interface type // name of method // .(*FuncType) underneath
IntArgRegBitmap is a bitmap large enough to hold one bit per
integer argument/return register. Get returns whether the i'th bit of the bitmap is set.
nosplit because it's called in extremely sensitive contexts, like
on the reflectcall return path. Set sets the i'th bit of the bitmap to 1.
func reflect.dumpPtrBitMap(b IntArgRegBitmap)
// sorted by hash // import pathTypeType // alignment of variable with this type function for comparing objects of this type
(ptr to object A, ptr to object B) -> ==? // alignment of struct field with this type GCData stores the GC type data for the garbage collector.
If the KindGCProg bit is set in kind, GCData is a GC program.
Otherwise it is a ptrmask bitmap. See mbitmap.go for details. // hash of type; avoids computation in hash tables // enumeration for C // number of (prefix) bytes in the type that can contain pointers // type for pointer to this type, may be zeroType.Size_uintptr // string form // extra type information flags Align returns the alignment of data with type t. ArrayType returns t cast to a *ArrayType, or nil if its tag does not match. ChanDir returns the direction of t if t is a channel type, otherwise InvalidDir (0).(*InterfaceType) Common() *Type Elem returns the element type for t if t is an array, channel, map, pointer, or slice, otherwise nil.(*InterfaceType) ExportedMethods() []Method(*InterfaceType) FieldAlign() int FuncType returns t cast to a *FuncType, or nil if its tag does not match.(*InterfaceType) GcSlice(begin, end uintptr) []byte(*InterfaceType) HasName() bool IfaceIndir reports whether t is stored indirectly in an interface value. InterfaceType returns t cast to a *InterfaceType, or nil if its tag does not match. isDirectIface reports whether t is stored directly in an interface value.(*InterfaceType) Key() *Type(*InterfaceType) Kind() Kind Len returns the length of t if t is an array type, otherwise 0 MapType returns t cast to a *MapType, or nil if its tag does not match. NumMethod returns the number of interface methods in the type's method set.(*InterfaceType) Pointers() bool Size returns the size of data with type t. StructType returns t cast to a *StructType, or nil if its tag does not match. Uncommon returns a pointer to T's "uncommon" data if there is any, otherwise nil
func (*Type).InterfaceType() *InterfaceType
func runtime.assertE2I(inter *runtime.interfacetype, t *runtime._type) *runtime.itab
func runtime.assertE2I2(inter *runtime.interfacetype, e runtime.eface) (r runtime.iface)
func runtime.assertI2I(inter *runtime.interfacetype, tab *runtime.itab) *runtime.itab
func runtime.assertI2I2(inter *runtime.interfacetype, i runtime.iface) (r runtime.iface)
func runtime.convI2I(dst *runtime.interfacetype, src *runtime.itab) *runtime.itab
func runtime.getitab(inter *runtime.interfacetype, typ *runtime._type, canfail bool) *runtime.itab
func runtime.itabHashFunc(inter *runtime.interfacetype, typ *runtime._type) uintptr
func runtime.reflect_ifaceE2I(inter *runtime.interfacetype, e runtime.eface, dst *runtime.iface)
func runtime.reflectlite_ifaceE2I(inter *runtime.interfacetype, e runtime.eface, dst *runtime.iface)
Method on non-interface type // fn used in interface call (one-word receiver) // method type (without receiver) // name of method // fn used for normal method call
func (*Type).ExportedMethods() []Method
func (*UncommonType).ExportedMethods() []Method
func (*UncommonType).Methods() []Method
Bytes*byte Data does pointer arithmetic on n's Bytes, and that arithmetic is asserted to
be safe because the runtime made the call (other packages use DataChecked) DataChecked does pointer arithmetic on n's Bytes, and that arithmetic is asserted to
be safe for the reason in whySafe (which can appear in a backtrace, etc.) HasTag returns true iff there is tag data following this name IsBlank indicates whether n is "_". IsEmbedded returns true iff n is embedded (an anonymous field). IsExported returns "is n exported?" Name returns the tag string for n, or empty if there is none. ReadVarint parses a varint as encoded by encoding/binary.
It returns the number of encoded bytes and the encoded value. Tag returns the tag string for n, or empty if there is none.
func NewName(n, tag string, exported, embedded bool) Name
func reflect.nameOffFor(t *Type, off reflect.aNameOff) Name
func reflect.newName(n, tag string, exported, embedded bool) Name
func runtime.resolveNameOff(ptrInModule unsafe.Pointer, off runtime.nameOff) runtime.name
func internal/reflectlite.pkgPath(n Name) string
func reflect.pkgPath(n Name) string
func reflect.resolveReflectName(n Name) reflect.aNameOff
func runtime.pkgPath(n runtime.name) string
Offset is for computing offsets of type data structures at compile/link time;
the target platform may not be the host platform. Its state includes the
current offset, necessary alignment for the sequence of types, and the size
of pointers and alignment of slices, interfaces, and strings (this is for tearing-
resistant access to these types, if/when that is supported). // the required alignmentof the container // the current offset // the size of a pointer in bytes // the alignment of slices (and interfaces and strings) Align returns the offset obtained by aligning offset to a multiple of a.
a must be a power of two. D16 returns the offset obtained by appending a 16-bit field to o. D32 returns the offset obtained by appending a 32-bit field to o. D64 returns the offset obtained by appending a 64-bit field to o. D8 returns the offset obtained by appending an 8-bit field to o. Interface returns the offset obtained by appending an interface field to o. Offset returns the struct-aligned offset (size) of o.
This is at least as large as the current internal offset; it may be larger. D64 returns the offset obtained by appending a pointer field to o.( Offset) PlusUncommon() Offset Slice returns the offset obtained by appending a slice field to o. String returns the offset obtained by appending a string field to o.( Offset) align_(a uint8) Offset plus returns the offset obtained by appending a power-of-2-sized-and-aligned object to o.
func CommonOffset(ptrSize int, twoWordAlignSlices bool) Offset
func InitializedOffset(off int, align uint8, ptrSize uint8, twoWordAlignSlices bool) Offset
func NewOffset(ptrSize uint8, twoWordAlignSlices bool) Offset
func Offset.Align(a uint8) Offset
func Offset.D16() Offset
func Offset.D32() Offset
func Offset.D64() Offset
func Offset.D8() Offset
func Offset.Interface() Offset
func Offset.P() Offset
func Offset.PlusUncommon() Offset
func Offset.Slice() Offset
func Offset.String() Offset
func Offset.align_(a uint8) Offset
func Offset.plus(x uint64) Offset
// slice element typeTypeType // alignment of variable with this type function for comparing objects of this type
(ptr to object A, ptr to object B) -> ==? // alignment of struct field with this type GCData stores the GC type data for the garbage collector.
If the KindGCProg bit is set in kind, GCData is a GC program.
Otherwise it is a ptrmask bitmap. See mbitmap.go for details. // hash of type; avoids computation in hash tables // enumeration for C // number of (prefix) bytes in the type that can contain pointers // type for pointer to this type, may be zeroType.Size_uintptr // string form // extra type information flags Align returns the alignment of data with type t. ArrayType returns t cast to a *ArrayType, or nil if its tag does not match. ChanDir returns the direction of t if t is a channel type, otherwise InvalidDir (0).(*PtrType) Common() *Type(*PtrType) ExportedMethods() []Method(*PtrType) FieldAlign() int FuncType returns t cast to a *FuncType, or nil if its tag does not match.(*PtrType) GcSlice(begin, end uintptr) []byte(*PtrType) HasName() bool IfaceIndir reports whether t is stored indirectly in an interface value. InterfaceType returns t cast to a *InterfaceType, or nil if its tag does not match. isDirectIface reports whether t is stored directly in an interface value.(*PtrType) Key() *Type(*PtrType) Kind() Kind Len returns the length of t if t is an array type, otherwise 0 MapType returns t cast to a *MapType, or nil if its tag does not match.(*PtrType) NumMethod() int(*PtrType) Pointers() bool Size returns the size of data with type t. StructType returns t cast to a *StructType, or nil if its tag does not match. Uncommon returns a pointer to T's "uncommon" data if there is any, otherwise nil
func runtime.addfinalizer(p unsafe.Pointer, f *runtime.funcval, nret uintptr, fint *runtime._type, ot *runtime.ptrtype) bool
func runtime.dumpfinalizer(obj unsafe.Pointer, fn *runtime.funcval, fint *runtime._type, ot *runtime.ptrtype)
func runtime.finq_callback(fn *runtime.funcval, obj unsafe.Pointer, nret uintptr, fint *runtime._type, ot *runtime.ptrtype)
func runtime.queuefinalizer(p unsafe.Pointer, fn *runtime.funcval, nret uintptr, fint *runtime._type, ot *runtime.ptrtype)
RegArgs is a struct that has space for each argument
and return value register on the current architecture.
Assembly code knows the layout of the first two fields
of RegArgs.
RegArgs also contains additional space to hold pointers
when it may not be safe to keep them only in the integer
register space otherwise. // untyped float registers Values in these slots should be precisely the bit-by-bit
representation of how they would appear in a register.
This means that on big endian arches, integer values should
be in the top bits of the slot. Floats are usually just
directly represented, but some architectures treat narrow
width floating point values specially (e.g. they're promoted
first, or they need to be NaN-boxed). // untyped integer registers Ptrs is a space that duplicates Ints but with pointer type,
used to make pointers passed or returned in registers
visible to the GC by making the type unsafe.Pointer. ReturnIsPtr is a bitmap that indicates which registers
contain or will contain pointers on the return path from
a reflectcall. The i'th bit indicates whether the i'th
register contains or will contain a valid Go pointer.(*RegArgs) Dump() IntRegArgAddr returns a pointer inside of r.Ints[reg] that is appropriately
offset for an argument of size argSize.
argSize must be non-zero, fit in a register, and a power-of-two.
This method is a helper for dealing with the endianness of different CPU
architectures, since sub-word-sized arguments in big endian architectures
need to be "aligned" to the upper edge of the register to be interpreted
by the CPU correctly.
func reflect.call(stackArgsType *Type, f, stackArgs unsafe.Pointer, stackArgsSize, stackRetOffset, frameSize uint32, regArgs *RegArgs)
func reflect.callMethod(ctxt *reflect.methodValue, frame unsafe.Pointer, retValid *bool, regs *RegArgs)
func reflect.callReflect(ctxt *reflect.makeFuncImpl, frame unsafe.Pointer, retValid *bool, regs *RegArgs)
func reflect.floatFromReg(r *RegArgs, reg int, argSize uintptr, to unsafe.Pointer)
func reflect.floatToReg(r *RegArgs, reg int, argSize uintptr, from unsafe.Pointer)
func reflect.intFromReg(r *RegArgs, reg int, argSize uintptr, to unsafe.Pointer)
func reflect.intToReg(r *RegArgs, reg int, argSize uintptr, from unsafe.Pointer)
func reflect.moveMakeFuncArgPtrs(ctxt *reflect.makeFuncCtxt, args *RegArgs)
func runtime.call1024(typ, fn, stackArgs unsafe.Pointer, stackArgsSize, stackRetOffset, frameSize uint32, regArgs *RegArgs)
func runtime.call1048576(typ, fn, stackArgs unsafe.Pointer, stackArgsSize, stackRetOffset, frameSize uint32, regArgs *RegArgs)
func runtime.call1073741824(typ, fn, stackArgs unsafe.Pointer, stackArgsSize, stackRetOffset, frameSize uint32, regArgs *RegArgs)
func runtime.call128(typ, fn, stackArgs unsafe.Pointer, stackArgsSize, stackRetOffset, frameSize uint32, regArgs *RegArgs)
func runtime.call131072(typ, fn, stackArgs unsafe.Pointer, stackArgsSize, stackRetOffset, frameSize uint32, regArgs *RegArgs)
func runtime.call134217728(typ, fn, stackArgs unsafe.Pointer, stackArgsSize, stackRetOffset, frameSize uint32, regArgs *RegArgs)
func runtime.call16(typ, fn, stackArgs unsafe.Pointer, stackArgsSize, stackRetOffset, frameSize uint32, regArgs *RegArgs)
func runtime.call16384(typ, fn, stackArgs unsafe.Pointer, stackArgsSize, stackRetOffset, frameSize uint32, regArgs *RegArgs)
func runtime.call16777216(typ, fn, stackArgs unsafe.Pointer, stackArgsSize, stackRetOffset, frameSize uint32, regArgs *RegArgs)
func runtime.call2048(typ, fn, stackArgs unsafe.Pointer, stackArgsSize, stackRetOffset, frameSize uint32, regArgs *RegArgs)
func runtime.call2097152(typ, fn, stackArgs unsafe.Pointer, stackArgsSize, stackRetOffset, frameSize uint32, regArgs *RegArgs)
func runtime.call256(typ, fn, stackArgs unsafe.Pointer, stackArgsSize, stackRetOffset, frameSize uint32, regArgs *RegArgs)
func runtime.call262144(typ, fn, stackArgs unsafe.Pointer, stackArgsSize, stackRetOffset, frameSize uint32, regArgs *RegArgs)
func runtime.call268435456(typ, fn, stackArgs unsafe.Pointer, stackArgsSize, stackRetOffset, frameSize uint32, regArgs *RegArgs)
func runtime.call32(typ, fn, stackArgs unsafe.Pointer, stackArgsSize, stackRetOffset, frameSize uint32, regArgs *RegArgs)
func runtime.call32768(typ, fn, stackArgs unsafe.Pointer, stackArgsSize, stackRetOffset, frameSize uint32, regArgs *RegArgs)
func runtime.call33554432(typ, fn, stackArgs unsafe.Pointer, stackArgsSize, stackRetOffset, frameSize uint32, regArgs *RegArgs)
func runtime.call4096(typ, fn, stackArgs unsafe.Pointer, stackArgsSize, stackRetOffset, frameSize uint32, regArgs *RegArgs)
func runtime.call4194304(typ, fn, stackArgs unsafe.Pointer, stackArgsSize, stackRetOffset, frameSize uint32, regArgs *RegArgs)
func runtime.call512(typ, fn, stackArgs unsafe.Pointer, stackArgsSize, stackRetOffset, frameSize uint32, regArgs *RegArgs)
func runtime.call524288(typ, fn, stackArgs unsafe.Pointer, stackArgsSize, stackRetOffset, frameSize uint32, regArgs *RegArgs)
func runtime.call536870912(typ, fn, stackArgs unsafe.Pointer, stackArgsSize, stackRetOffset, frameSize uint32, regArgs *RegArgs)
func runtime.call64(typ, fn, stackArgs unsafe.Pointer, stackArgsSize, stackRetOffset, frameSize uint32, regArgs *RegArgs)
func runtime.call65536(typ, fn, stackArgs unsafe.Pointer, stackArgsSize, stackRetOffset, frameSize uint32, regArgs *RegArgs)
func runtime.call67108864(typ, fn, stackArgs unsafe.Pointer, stackArgsSize, stackRetOffset, frameSize uint32, regArgs *RegArgs)
func runtime.call8192(typ, fn, stackArgs unsafe.Pointer, stackArgsSize, stackRetOffset, frameSize uint32, regArgs *RegArgs)
func runtime.call8388608(typ, fn, stackArgs unsafe.Pointer, stackArgsSize, stackRetOffset, frameSize uint32, regArgs *RegArgs)
func runtime.reflectcall(stackArgsType *runtime._type, fn, stackArgs unsafe.Pointer, stackArgsSize, stackRetOffset, frameSize uint32, regArgs *RegArgs)
func runtime.reflectcallmove(typ *runtime._type, dst, src unsafe.Pointer, size uintptr, regs *RegArgs)
// slice element typeTypeType // alignment of variable with this type function for comparing objects of this type
(ptr to object A, ptr to object B) -> ==? // alignment of struct field with this type GCData stores the GC type data for the garbage collector.
If the KindGCProg bit is set in kind, GCData is a GC program.
Otherwise it is a ptrmask bitmap. See mbitmap.go for details. // hash of type; avoids computation in hash tables // enumeration for C // number of (prefix) bytes in the type that can contain pointers // type for pointer to this type, may be zeroType.Size_uintptr // string form // extra type information flags Align returns the alignment of data with type t. ArrayType returns t cast to a *ArrayType, or nil if its tag does not match. ChanDir returns the direction of t if t is a channel type, otherwise InvalidDir (0).(*SliceType) Common() *Type(*SliceType) ExportedMethods() []Method(*SliceType) FieldAlign() int FuncType returns t cast to a *FuncType, or nil if its tag does not match.(*SliceType) GcSlice(begin, end uintptr) []byte(*SliceType) HasName() bool IfaceIndir reports whether t is stored indirectly in an interface value. InterfaceType returns t cast to a *InterfaceType, or nil if its tag does not match. isDirectIface reports whether t is stored directly in an interface value.(*SliceType) Key() *Type(*SliceType) Kind() Kind Len returns the length of t if t is an array type, otherwise 0 MapType returns t cast to a *MapType, or nil if its tag does not match.(*SliceType) NumMethod() int(*SliceType) Pointers() bool Size returns the size of data with type t. StructType returns t cast to a *StructType, or nil if its tag does not match. Uncommon returns a pointer to T's "uncommon" data if there is any, otherwise nil
Fields[]StructFieldPkgPathNameTypeType // alignment of variable with this type function for comparing objects of this type
(ptr to object A, ptr to object B) -> ==? // alignment of struct field with this type GCData stores the GC type data for the garbage collector.
If the KindGCProg bit is set in kind, GCData is a GC program.
Otherwise it is a ptrmask bitmap. See mbitmap.go for details. // hash of type; avoids computation in hash tables // enumeration for C // number of (prefix) bytes in the type that can contain pointers // type for pointer to this type, may be zeroType.Size_uintptr // string form // extra type information flags Align returns the alignment of data with type t. ArrayType returns t cast to a *ArrayType, or nil if its tag does not match. ChanDir returns the direction of t if t is a channel type, otherwise InvalidDir (0).(*StructType) Common() *Type Elem returns the element type for t if t is an array, channel, map, pointer, or slice, otherwise nil.(*StructType) ExportedMethods() []Method(*StructType) FieldAlign() int FuncType returns t cast to a *FuncType, or nil if its tag does not match.(*StructType) GcSlice(begin, end uintptr) []byte(*StructType) HasName() bool IfaceIndir reports whether t is stored indirectly in an interface value. InterfaceType returns t cast to a *InterfaceType, or nil if its tag does not match. isDirectIface reports whether t is stored directly in an interface value.(*StructType) Key() *Type(*StructType) Kind() Kind Len returns the length of t if t is an array type, otherwise 0 MapType returns t cast to a *MapType, or nil if its tag does not match.(*StructType) NumMethod() int(*StructType) Pointers() bool Size returns the size of data with type t. StructType returns t cast to a *StructType, or nil if its tag does not match. Uncommon returns a pointer to T's "uncommon" data if there is any, otherwise nil
func (*Type).StructType() *StructType
UncommonType is present only for defined types or types with methods
(if T is a defined type, the uncommonTypes for T and *T have methods).
Using a pointer to this struct reduces the overall size required
to describe a non-defined type with no methods. // number of methods // offset from this uncommontype to [mcount]Method // import path; empty for built-in types like int, string // number of exported methods(*UncommonType) ExportedMethods() []Method(*UncommonType) Methods() []Method
func (*Type).Uncommon() *UncommonType
StructTypeStructTypeStructType.Fields[]StructFieldStructType.PkgPathNameStructType.TypeType // alignment of variable with this type function for comparing objects of this type
(ptr to object A, ptr to object B) -> ==? // alignment of struct field with this type GCData stores the GC type data for the garbage collector.
If the KindGCProg bit is set in kind, GCData is a GC program.
Otherwise it is a ptrmask bitmap. See mbitmap.go for details. // hash of type; avoids computation in hash tables // enumeration for C // number of (prefix) bytes in the type that can contain pointers // type for pointer to this type, may be zeroStructType.Type.Size_uintptr // string form // extra type information flagsuUncommonType Align returns the alignment of data with type t. ArrayType returns t cast to a *ArrayType, or nil if its tag does not match. ChanDir returns the direction of t if t is a channel type, otherwise InvalidDir (0).(*structTypeUncommon) Common() *Type Elem returns the element type for t if t is an array, channel, map, pointer, or slice, otherwise nil.(*structTypeUncommon) ExportedMethods() []Method(*structTypeUncommon) FieldAlign() int FuncType returns t cast to a *FuncType, or nil if its tag does not match.(*structTypeUncommon) GcSlice(begin, end uintptr) []byte(*structTypeUncommon) HasName() bool IfaceIndir reports whether t is stored indirectly in an interface value. InterfaceType returns t cast to a *InterfaceType, or nil if its tag does not match. isDirectIface reports whether t is stored directly in an interface value.(*structTypeUncommon) Key() *Type(*structTypeUncommon) Kind() Kind Len returns the length of t if t is an array type, otherwise 0 MapType returns t cast to a *MapType, or nil if its tag does not match.(*structTypeUncommon) NumMethod() int(*structTypeUncommon) Pointers() bool Size returns the size of data with type t. Uncommon returns a pointer to T's "uncommon" data if there is any, otherwise nil
Package-Level Functions (total 19, in which 14 are exported)
CommonOffset returns the Offset to the data after the common portion of type data structures.
CommonSize returns sizeof(Type) for a compilation target with a given ptrSize
FuncPCABI0 returns the entry PC of the function f, which must be a
direct reference of a function defined as ABI0. Otherwise it is a
compile-time error.
Implemented as a compile intrinsic.
FuncPCABIInternal returns the entry PC of the function f. If f is a
direct reference of a function, it must be defined as ABIInternal.
Otherwise it is a compile-time error. If f is not a direct reference
of a defined function, it assumes that f is a func value. Otherwise
the behavior is undefined.
Implemented as a compile intrinsic.
IMethodSize returns sizeof(IMethod) for a compilation target with a given ptrSize
InitializedOffset returns a new Offset with specified offset, alignment, pointer size, and slice alignment.
KindOff returns the offset of Type.Kind_ for a compilation target with a given ptrSize
NewOffset returns a new Offset with offset 0 and alignment 1.
PtrBytes returns the offset of Type.PtrBytes for a compilation target with a given ptrSize
SizeOff returns the offset of Type.Size_ for a compilation target with a given ptrSize
StructFieldSize returns sizeof(StructField) for a compilation target with a given ptrSize
TFlagOff returns the offset of Type.TFlag for a compilation target with a given ptrSize
UncommonSize returns sizeof(UncommonType). This currently does not depend on ptrSize.
This exported function is in an internal package, so it may change to depend on ptrSize in the future.
addChecked returns p+x.
The whySafe string is ignored, so that the function still inlines
as efficiently as p+x, but all call sites should use the string to
record why the addition is safe, which is to say why the addition
does not cause x to advance to the very end of p's allocation
and therefore point incorrectly at the next block in memory.
Package-Level Constants (total 91, all are exported)
ArgsSizeUnknown is set in Func.argsize to mark all functions
whose argument size is unknown (C vararg functions, and
assembly code without an explicit specification).
This value is generated by the compiler, assembler, or linker.
IDs for PCDATA and FUNCDATA tables in Go binaries.
These must agree with ../../../runtime/funcdata.h.
IDs for PCDATA and FUNCDATA tables in Go binaries.
These must agree with ../../../runtime/funcdata.h.
IDs for PCDATA and FUNCDATA tables in Go binaries.
These must agree with ../../../runtime/funcdata.h.
IDs for PCDATA and FUNCDATA tables in Go binaries.
These must agree with ../../../runtime/funcdata.h.
IDs for PCDATA and FUNCDATA tables in Go binaries.
These must agree with ../../../runtime/funcdata.h.
IDs for PCDATA and FUNCDATA tables in Go binaries.
These must agree with ../../../runtime/funcdata.h.
IDs for PCDATA and FUNCDATA tables in Go binaries.
These must agree with ../../../runtime/funcdata.h.
IDs for PCDATA and FUNCDATA tables in Go binaries.
These must agree with ../../../runtime/funcdata.h.
FuncFlagAsm indicates that a function was implemented in assembly.
FuncFlagSPWrite indicates a function that writes an arbitrary value to SP
(any write other than adding or subtracting a constant amount).
The traceback routines cannot encode such changes into the
pcsp tables, so the function traceback cannot safely unwind past
SPWrite functions. Stopping at an SPWrite function is considered
to be an incomplete unwinding of the stack. In certain contexts
(in particular garbage collector stack scans) that is a fatal error.
FuncFlagTopFrame indicates a function that appears at the top of its stack.
The traceback routine stop at such a function and consider that a
successful, complete traversal of the stack.
Examples of TopFrame functions include goexit, which appears
at the top of a user goroutine stack, and mstart, which appears
at the top of a system goroutine stack.
Functions that need frames <= StackBig can assume that neither
SP-framesize nor stackGuard-StackSmall will underflow, and thus use a
more efficient check. In order to ensure this, StackBig must be <= the
size of the unmapped space at zero.
StackNosplitBase is the base maximum number of bytes that a chain of
NOSPLIT functions can use.
This value must be multiplied by the stack guard multiplier, so do not
use it directly. See runtime/stack.go:stackNosplit and
cmd/internal/objabi/stack.go:StackNosplit.
After a stack split check the SP is allowed to be StackSmall bytes below
the stack guard.
Functions that need frames <= StackSmall can perform the stack check
using a single comparison directly between the stack guard and the SP
because we ensure that StackSmall bytes of stack space are available
beyond the stack guard.
TFlagExtraStar means the name in the str field has an
extraneous '*' prefix. This is because for most types T in
a program, the type *T also exists and reusing the str data
saves binary size.
TFlagNamed means the type has a name.
TFlagRegularMemory means that equal and hash functions can treat
this type as a single region of t.size bytes.
TFlagUncommon means that there is a data with a type, UncommonType,
just beyond the shared-per-type common data. That is, the data
for struct types will store their UncommonType at one offset, the
data for interface types will store their UncommonType at a different
offset. UncommonType is always accessed via a pointer that is computed
using trust-us-we-are-the-implementors pointer arithmetic.
For example, if t.Kind() == Struct and t.tflag&TFlagUncommon != 0,
then t has UncommonType data and it can be accessed as:
type structTypeUncommon struct {
structType
u UncommonType
}
u := &(*structTypeUncommon)(unsafe.Pointer(t)).u
UnsafePointRestart1(2) apply on a sequence of instructions, within
which if an async preemption happens, we should back off the PC
to the start of the sequence when resuming.
We need two so we can distinguish the start/end of the sequence
in case that two sequences are next to each other.
Special values for the PCDATA_UnsafePoint table.
Like UnsafePointRestart1, but back to function entry if async preempted.
Special values for the PCDATA_UnsafePoint table.
Special values for the PCDATA_UnsafePoint table.
The pages are generated with Goldsv0.6.7. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds.