// 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.

// Runtime type representation.

package runtime

import (
	
	
)

type nameOff = abi.NameOff
type typeOff = abi.TypeOff
type textOff = abi.TextOff

type _type = abi.Type

// rtype is a wrapper that allows us to define additional methods.
type rtype struct {
	*abi.Type // embedding is okay here (unlike reflect) because none of this is public
}

func ( rtype) () string {
	 := .nameOff(.Str).Name()
	if .TFlag&abi.TFlagExtraStar != 0 {
		return [1:]
	}
	return 
}

func ( rtype) () *uncommontype {
	return .Uncommon()
}

func ( rtype) () string {
	if .TFlag&abi.TFlagNamed == 0 {
		return ""
	}
	 := .string()
	 := len() - 1
	 := 0
	for  >= 0 && ([] != '.' ||  != 0) {
		switch [] {
		case ']':
			++
		case '[':
			--
		}
		--
	}
	return [+1:]
}

// pkgpath returns the path of the package where t was defined, if
// available. This is not the same as the reflect package's PkgPath
// method, in that it returns the package path for struct and interface
// types, not just named types.
func ( rtype) () string {
	if  := .uncommon();  != nil {
		return .nameOff(.PkgPath).Name()
	}
	switch .Kind_ & kindMask {
	case kindStruct:
		 := (*structtype)(unsafe.Pointer(.Type))
		return .PkgPath.Name()
	case kindInterface:
		 := (*interfacetype)(unsafe.Pointer(.Type))
		return .PkgPath.Name()
	}
	return ""
}

// reflectOffs holds type offsets defined at run time by the reflect package.
//
// When a type is defined at run time, its *rtype data lives on the heap.
// There are a wide range of possible addresses the heap may use, that
// may not be representable as a 32-bit offset. Moreover the GC may
// one day start moving heap memory, in which case there is no stable
// offset that can be defined.
//
// To provide stable offsets, we add pin *rtype objects in a global map
// and treat the offset as an identifier. We use negative offsets that
// do not overlap with any compile-time module offsets.
//
// Entries are created by reflect.addReflectOff.
var reflectOffs struct {
	lock mutex
	next int32
	m    map[int32]unsafe.Pointer
	minv map[unsafe.Pointer]int32
}

func reflectOffsLock() {
	lock(&reflectOffs.lock)
	if raceenabled {
		raceacquire(unsafe.Pointer(&reflectOffs.lock))
	}
}

func reflectOffsUnlock() {
	if raceenabled {
		racerelease(unsafe.Pointer(&reflectOffs.lock))
	}
	unlock(&reflectOffs.lock)
}

func resolveNameOff( unsafe.Pointer,  nameOff) name {
	if  == 0 {
		return name{}
	}
	 := uintptr()
	for  := &firstmoduledata;  != nil;  = .next {
		if  >= .types &&  < .etypes {
			 := .types + uintptr()
			if  > .etypes {
				println("runtime: nameOff", hex(), "out of range", hex(.types), "-", hex(.etypes))
				throw("runtime: name offset out of range")
			}
			return name{Bytes: (*byte)(unsafe.Pointer())}
		}
	}

	// No module found. see if it is a run time name.
	reflectOffsLock()
	,  := reflectOffs.m[int32()]
	reflectOffsUnlock()
	if ! {
		println("runtime: nameOff", hex(), "base", hex(), "not in ranges:")
		for  := &firstmoduledata;  != nil;  = .next {
			println("\ttypes", hex(.types), "etypes", hex(.etypes))
		}
		throw("runtime: name offset base pointer out of range")
	}
	return name{Bytes: (*byte)()}
}

func ( rtype) ( nameOff) name {
	return resolveNameOff(unsafe.Pointer(.Type), )
}

func resolveTypeOff( unsafe.Pointer,  typeOff) *_type {
	if  == 0 ||  == -1 {
		// -1 is the sentinel value for unreachable code.
		// See cmd/link/internal/ld/data.go:relocsym.
		return nil
	}
	 := uintptr()
	var  *moduledata
	for  := &firstmoduledata;  != nil;  = .next {
		if  >= .types &&  < .etypes {
			 = 
			break
		}
	}
	if  == nil {
		reflectOffsLock()
		 := reflectOffs.m[int32()]
		reflectOffsUnlock()
		if  == nil {
			println("runtime: typeOff", hex(), "base", hex(), "not in ranges:")
			for  := &firstmoduledata;  != nil;  = .next {
				println("\ttypes", hex(.types), "etypes", hex(.etypes))
			}
			throw("runtime: type offset base pointer out of range")
		}
		return (*_type)()
	}
	if  := .typemap[];  != nil {
		return 
	}
	 := .types + uintptr()
	if  > .etypes {
		println("runtime: typeOff", hex(), "out of range", hex(.types), "-", hex(.etypes))
		throw("runtime: type offset out of range")
	}
	return (*_type)(unsafe.Pointer())
}

func ( rtype) ( typeOff) *_type {
	return resolveTypeOff(unsafe.Pointer(.Type), )
}

func ( rtype) ( textOff) unsafe.Pointer {
	if  == -1 {
		// -1 is the sentinel value for unreachable code.
		// See cmd/link/internal/ld/data.go:relocsym.
		return unsafe.Pointer(abi.FuncPCABIInternal(unreachableMethod))
	}
	 := uintptr(unsafe.Pointer(.Type))
	var  *moduledata
	for  := &firstmoduledata;  != nil;  = .next {
		if  >= .types &&  < .etypes {
			 = 
			break
		}
	}
	if  == nil {
		reflectOffsLock()
		 := reflectOffs.m[int32()]
		reflectOffsUnlock()
		if  == nil {
			println("runtime: textOff", hex(), "base", hex(), "not in ranges:")
			for  := &firstmoduledata;  != nil;  = .next {
				println("\ttypes", hex(.types), "etypes", hex(.etypes))
			}
			throw("runtime: text offset base pointer out of range")
		}
		return 
	}
	 := .textAddr(uint32())
	return unsafe.Pointer()
}

type uncommontype = abi.UncommonType

type interfacetype = abi.InterfaceType

type maptype = abi.MapType

type arraytype = abi.ArrayType

type chantype = abi.ChanType

type slicetype = abi.SliceType

type functype = abi.FuncType

type ptrtype = abi.PtrType

type name = abi.Name

type structtype = abi.StructType

func pkgPath( name) string {
	if .Bytes == nil || *.Data(0)&(1<<2) == 0 {
		return ""
	}
	,  := .ReadVarint(1)
	 := 1 +  + 
	if *.Data(0)&(1<<1) != 0 {
		,  := .ReadVarint()
		 +=  + 
	}
	var  nameOff
	copy((*[4]byte)(unsafe.Pointer(&))[:], (*[4]byte)(unsafe.Pointer(.Data()))[:])
	 := resolveNameOff(unsafe.Pointer(.Bytes), )
	return .Name()
}

// typelinksinit scans the types from extra modules and builds the
// moduledata typemap used to de-duplicate type pointers.
func typelinksinit() {
	if firstmoduledata.next == nil {
		return
	}
	 := make(map[uint32][]*_type, len(firstmoduledata.typelinks))

	 := activeModules()
	 := [0]
	for ,  := range [1:] {
		// Collect types from the previous module into typehash.
	:
		for ,  := range .typelinks {
			var  *_type
			if .typemap == nil {
				 = (*_type)(unsafe.Pointer(.types + uintptr()))
			} else {
				 = .typemap[typeOff()]
			}
			// Add to typehash if not seen before.
			 := [.Hash]
			for ,  := range  {
				if  ==  {
					continue 
				}
			}
			[.Hash] = append(, )
		}

		if .typemap == nil {
			// If any of this module's typelinks match a type from a
			// prior module, prefer that prior type by adding the offset
			// to this module's typemap.
			 := make(map[typeOff]*_type, len(.typelinks))
			pinnedTypemaps = append(pinnedTypemaps, )
			.typemap = 
			for ,  := range .typelinks {
				 := (*_type)(unsafe.Pointer(.types + uintptr()))
				for ,  := range [.Hash] {
					 := map[_typePair]struct{}{}
					if typesEqual(, , ) {
						 = 
						break
					}
				}
				.typemap[typeOff()] = 
			}
		}

		 = 
	}
}

type _typePair struct {
	t1 *_type
	t2 *_type
}

func toRType( *abi.Type) rtype {
	return rtype{}
}

// typesEqual reports whether two types are equal.
//
// Everywhere in the runtime and reflect packages, it is assumed that
// there is exactly one *_type per Go type, so that pointer equality
// can be used to test if types are equal. There is one place that
// breaks this assumption: buildmode=shared. In this case a type can
// appear as two different pieces of memory. This is hidden from the
// runtime and reflect package by the per-module typemap built in
// typelinksinit. It uses typesEqual to map types from later modules
// back into earlier ones.
//
// Only typelinksinit needs this function.
func typesEqual(,  *_type,  map[_typePair]struct{}) bool {
	 := _typePair{, }
	if ,  := [];  {
		return true
	}

	// mark these types as seen, and thus equivalent which prevents an infinite loop if
	// the two types are identical, but recursively defined and loaded from
	// different modules
	[] = struct{}{}

	if  ==  {
		return true
	}
	 := .Kind_ & kindMask
	if  != .Kind_&kindMask {
		return false
	}
	,  := toRType(), toRType()
	if .string() != .string() {
		return false
	}
	 := .Uncommon()
	 := .Uncommon()
	if  != nil ||  != nil {
		if  == nil ||  == nil {
			return false
		}
		 := .nameOff(.PkgPath).Name()
		 := .nameOff(.PkgPath).Name()
		if  !=  {
			return false
		}
	}
	if kindBool <=  &&  <= kindComplex128 {
		return true
	}
	switch  {
	case kindString, kindUnsafePointer:
		return true
	case kindArray:
		 := (*arraytype)(unsafe.Pointer())
		 := (*arraytype)(unsafe.Pointer())
		return (.Elem, .Elem, ) && .Len == .Len
	case kindChan:
		 := (*chantype)(unsafe.Pointer())
		 := (*chantype)(unsafe.Pointer())
		return .Dir == .Dir && (.Elem, .Elem, )
	case kindFunc:
		 := (*functype)(unsafe.Pointer())
		 := (*functype)(unsafe.Pointer())
		if .OutCount != .OutCount || .InCount != .InCount {
			return false
		}
		,  := .InSlice(), .InSlice()
		for  := 0;  < len(); ++ {
			if !([], [], ) {
				return false
			}
		}
		,  := .OutSlice(), .OutSlice()
		for  := 0;  < len(); ++ {
			if !([], [], ) {
				return false
			}
		}
		return true
	case kindInterface:
		 := (*interfacetype)(unsafe.Pointer())
		 := (*interfacetype)(unsafe.Pointer())
		if .PkgPath.Name() != .PkgPath.Name() {
			return false
		}
		if len(.Methods) != len(.Methods) {
			return false
		}
		for  := range .Methods {
			 := &.Methods[]
			 := &.Methods[]
			// Note the mhdr array can be relocated from
			// another module. See #17724.
			 := resolveNameOff(unsafe.Pointer(), .Name)
			 := resolveNameOff(unsafe.Pointer(), .Name)
			if .Name() != .Name() {
				return false
			}
			if pkgPath() != pkgPath() {
				return false
			}
			 := resolveTypeOff(unsafe.Pointer(), .Typ)
			 := resolveTypeOff(unsafe.Pointer(), .Typ)
			if !(, , ) {
				return false
			}
		}
		return true
	case kindMap:
		 := (*maptype)(unsafe.Pointer())
		 := (*maptype)(unsafe.Pointer())
		return (.Key, .Key, ) && (.Elem, .Elem, )
	case kindPtr:
		 := (*ptrtype)(unsafe.Pointer())
		 := (*ptrtype)(unsafe.Pointer())
		return (.Elem, .Elem, )
	case kindSlice:
		 := (*slicetype)(unsafe.Pointer())
		 := (*slicetype)(unsafe.Pointer())
		return (.Elem, .Elem, )
	case kindStruct:
		 := (*structtype)(unsafe.Pointer())
		 := (*structtype)(unsafe.Pointer())
		if len(.Fields) != len(.Fields) {
			return false
		}
		if .PkgPath.Name() != .PkgPath.Name() {
			return false
		}
		for  := range .Fields {
			 := &.Fields[]
			 := &.Fields[]
			if .Name.Name() != .Name.Name() {
				return false
			}
			if !(.Typ, .Typ, ) {
				return false
			}
			if .Name.Tag() != .Name.Tag() {
				return false
			}
			if .Offset != .Offset {
				return false
			}
			if .Name.IsEmbedded() != .Name.IsEmbedded() {
				return false
			}
		}
		return true
	default:
		println("runtime: impossible type kind", )
		throw("runtime: impossible type kind")
		return false
	}
}