thw*_*hwd 9

这是地图标题的定义:

// A header for a Go map.
type hmap struct {
    // Note: the format of the Hmap is encoded in ../../cmd/gc/reflect.c and
    // ../reflect/type.go.  Don't change this structure without also changing that code!
    count int // # live cells == size of map.  Must be first (used by len() builtin)
    flags uint32
    hash0 uint32 // hash seed
    B     uint8  // log_2 of # of buckets (can hold up to loadFactor * 2^B items)

    buckets    unsafe.Pointer // array of 2^B Buckets. may be nil if count==0.
    oldbuckets unsafe.Pointer // previous bucket array of half the size, non-nil only when growing
    nevacuate  uintptr        // progress counter for evacuation (buckets less than this have been evacuated)
}

计算它的大小非常简单(unsafe.Sizeof).

这是地图指向的每个桶的定义:

// A bucket for a Go map.
type bmap struct {
    tophash [bucketCnt]uint8
    // Followed by bucketCnt keys and then bucketCnt values.
    // NOTE: packing all the keys together and then all the values together makes the
    // code a bit more complicated than alternating key/value/key/value/... but it allows
    // us to eliminate padding which would be needed for, e.g., map[int64]int8.
    // Followed by an overflow pointer.
}
bucketCnt
bucketCnt     = 1 << bucketCntBits // equals decimal 8
bucketCntBits = 3

最终的计算是:

unsafe.Sizeof(hmap) + (len(theMap) * 8) + (len(theMap) * 8 * unsafe.Sizeof(x)) + (len(theMap) * 8 * unsafe.Sizeof(y))
theMapxy
hmapthunk.s
  • JFYI`thunk.s`已替换为[`// go:linkname`编译器指令](https://golang.org/cmd/compile/#hdr-Compiler_Directives). (2认同)
  • 你能更新这个答案吗?显然,这些都不起作用了。hmap结构完全不同,您的答案不考虑容量,也无法通过汇编共享结构(也不能通过go:linkname共享) (2认同)