func runtime.persistentalloc
18 uses
runtime (current package)
iface.go#L66: m = (*itab)(persistentalloc(unsafe.Sizeof(itab{})+uintptr(len(inter.mhdr)-1)*sys.PtrSize, 0, &memstats.other_sys))
malloc.go#L737: l2 = (*[1 << arenaL2Bits]*heapArena)(persistentalloc(unsafe.Sizeof(*l2), sys.PtrSize, nil))
malloc.go#L750: r = (*heapArena)(persistentalloc(unsafe.Sizeof(*r), sys.PtrSize, &memstats.gcMiscSys))
malloc.go#L762: newArray := (*notInHeap)(persistentalloc(size, sys.PtrSize, &memstats.gcMiscSys))
malloc.go#L935: return persistentalloc(size, align, &memstats.other_sys)
malloc.go#L1311: func persistentalloc(size, align uintptr, sysStat *sysMemStat) unsafe.Pointer {
mbitmap.go#L1015: debugPtrmask.data = (*byte)(persistentalloc(1<<20, 1, &memstats.other_sys))
mbitmap.go#L1553: x := (*[1 << 30]byte)(persistentalloc(n+1, 1, &memstats.buckhash_sys))[:n+1]
mcheckmark.go#L46: bitmap = (*checkmarksMap)(persistentalloc(unsafe.Sizeof(*bitmap), 0, &memstats.gcMiscSys))
mfinal.go#L91: finc = (*finblock)(persistentalloc(_FinBlockSize, 0, &memstats.gcMiscSys))
mfixalloc.go#L80: f.chunk = uintptr(persistentalloc(_FixAllocChunk, 0, f.stat))
mprof.go#L173: b := (*bucket)(persistentalloc(size, 0, &memstats.buckhash_sys))
mranges.go#L170: ranges.array = (*notInHeap)(persistentalloc(unsafe.Sizeof(addrRange{})*uintptr(ranges.cap), sys.PtrSize, sysStat))
mranges.go#L297: ranges.array = (*notInHeap)(persistentalloc(unsafe.Sizeof(addrRange{})*uintptr(ranges.cap), sys.PtrSize, a.sysStat))
mranges.go#L367: ranges.array = (*notInHeap)(persistentalloc(unsafe.Sizeof(addrRange{})*uintptr(ranges.cap), sys.PtrSize, b.sysStat))
mspanset.go#L105: newSpine := persistentalloc(newCap*sys.PtrSize, cpu.CacheLineSize, &memstats.gcMiscSys)
mspanset.go#L286: return (*spanSetBlock)(persistentalloc(unsafe.Sizeof(spanSetBlock{}), cpu.CacheLineSize, &memstats.gcMiscSys))
netpoll.go#L539: mem := persistentalloc(n*pdSize, 0, &memstats.other_sys)
 |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin 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. |