const runtime/internal/sys.MinFrameSize
10 uses
runtime/internal/sys (current package)
consts.go#L32: const MinFrameSize = goarch.MinFrameSize
runtime
cgocall.go#L346: sched.sp = *(*uintptr)(unsafe.Pointer(sched.sp + alignUp(sys.MinFrameSize, sys.StackAlign)))
panic.go#L1027: return getcallersp() + sys.MinFrameSize
proc.go#L4516: totalSize := uintptr(4*goarch.PtrSize + sys.MinFrameSize) // extra space in case of reads slightly beyond frame
proc.go#L4524: spArg += sys.MinFrameSize
stkframe.go#L106: arg0 := frame.sp + sys.MinFrameSize
stkframe.go#L188: minsize = sys.MinFrameSize
traceback.go#L23: const usesLR = sys.MinFrameSize > 0
traceback.go#L415: frame.argp = frame.fp + sys.MinFrameSize
traceback.go#L508: frame.sp += alignUp(sys.MinFrameSize, sys.StackAlign)
The pages are generated with Golds v0.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. |