package gclayout import "unsafe" // Internal constants for gc layout // See runtime/gc_precise.go type Layout uintptr const ( // 16-bit int => bits = 4 // 32-bit int => bits = 5 // 64-bit int => bits = 6 sizeBits = 4 + unsafe.Sizeof(uintptr(0))/4 sizeShift = sizeBits + 1 NoPtrs = Layout(uintptr(0b0<