上卷 程序设计
中卷 标准库
- bufio 1.18
- bytes 1.18
- io 1.18
- container 1.18
- encoding 1.18
- crypto 1.18
- hash 1.18
- index 1.18
- sort 1.18
- context 1.18
- database 1.18
- connection
- query
- queryrow
- exec
- prepare
- transaction
- scan & null
- context
- tcp
- udp
- http
- server
- handler
- client
- h2、tls
- url
- rpc
- exec
- signal
- embed 1.18
- plugin 1.18
- reflect 1.18
- runtime 1.18
- KeepAlived
- ReadMemStats
- SetFinalizer
- Stack
- sync 1.18
- atomic
- mutex
- rwmutex
- waitgroup
- cond
- once
- map
- pool
- copycheck
- nocopy
- unsafe 1.18
- fmt 1.18
- log 1.18
- math 1.18
- time 1.18
- timer
下卷 运行时
源码剖析
附录
文章来源于网络收集而来,版权归原创者所有,如有侵权请及时联系!
4.6.2 分配
优先从 cache 本地无锁获取。
同样以等级为索引的链表数组。
链表存储的是分割好的内存地址。
提取后通过
[stack.lo, hi)
设定边界。
// mcache.go type mcache struct { stackcache [_NumStackOrders]stackfreelist } type stackfreelist struct { list gclinkptr // linked list of free stacks size uintptr // total size of stacks in list }
分配时有大小上限。
如果超出,就直接从全局大块缓存获取。
// malloc.go // Per-P, per order stack segment cache size. _StackCacheSize = 32 * 1024
// stack.go // Global pool of large stack spans. var stackLarge struct { lock mutex free [heapAddrBits - pageShift]mSpanList // free lists by log_2(s.npages) }
大块先从全局缓存找,或直接从 heap 分配。
// stack.go // stackalloc allocates an n byte stack. func stackalloc(n uint32) stack { // 判断是否超过限制。 if n < _FixedStack<<_NumStackOrders && n < _StackCacheSize { // 计算所属大小等级。 order := uint8(0) n2 := n for n2 > _FixedStack { order++ n2 >>= 1 } var x gclinkptr if stackNoCache != 0 || thisg.m.p == 0 || thisg.m.preemptoff != "" { // 直接从全局 pool 分配。 x = stackpoolalloc(order) } else { // 从 cache 对应等级链表获取。 c := thisg.m.p.ptr().mcache x = c.stackcache[order].list if x.ptr() == nil { // 扩容,重试。 stackcacherefill(c, order) x = c.stackcache[order].list } c.stackcache[order].list = x.ptr().next c.stackcache[order].size -= uintptr(n) } v = unsafe.Pointer(x) } else { // 超出上限。 var s *mspan npage := uintptr(n) >> _PageShift log2npage := stacklog2(npage) // 从全局大缓存获取。 if !stackLarge.free[log2npage].isEmpty() { s = stackLarge.free[log2npage].first stackLarge.free[log2npage].remove(s) } // 直接从堆获取。 if s == nil { s = mheap_.allocManual(npage, &memstats.stacks_inuse) s.elemsize = uintptr(n) } v = unsafe.Pointer(s.base()) } return stack{uintptr(v), uintptr(v) + uintptr(n)} }
除 malg 外,从复用列表获取 dead G 时,也可能重分配栈内存。
// proc.go // Get from gfree list. func gfget(_p_ *p) *g { if gp.stack.lo == 0 { systemstack(func() { gp.stack = stackalloc(_FixedStack) }) gp.stackguard0 = gp.stack.lo + _StackGuard } }
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论