github.com/mtsmfm/go/src@v0.0.0-20221020090648-44bdcb9f8fde/runtime/mem_darwin.go (about) 1 // Copyright 2018 The Go Authors. All rights reserved. 2 // Use of this source code is governed by a BSD-style 3 // license that can be found in the LICENSE file. 4 5 package runtime 6 7 import ( 8 "unsafe" 9 ) 10 11 // Don't split the stack as this function may be invoked without a valid G, 12 // which prevents us from allocating more stack. 13 // 14 //go:nosplit 15 func sysAllocOS(n uintptr) unsafe.Pointer { 16 v, err := mmap(nil, n, _PROT_READ|_PROT_WRITE, _MAP_ANON|_MAP_PRIVATE, -1, 0) 17 if err != 0 { 18 return nil 19 } 20 return v 21 } 22 23 func sysUnusedOS(v unsafe.Pointer, n uintptr) { 24 // MADV_FREE_REUSABLE is like MADV_FREE except it also propagates 25 // accounting information about the process to task_info. 26 madvise(v, n, _MADV_FREE_REUSABLE) 27 } 28 29 func sysUsedOS(v unsafe.Pointer, n uintptr) { 30 // MADV_FREE_REUSE is necessary to keep the kernel's accounting 31 // accurate. If called on any memory region that hasn't been 32 // MADV_FREE_REUSABLE'd, it's a no-op. 33 madvise(v, n, _MADV_FREE_REUSE) 34 } 35 36 func sysHugePageOS(v unsafe.Pointer, n uintptr) { 37 } 38 39 // Don't split the stack as this function may be invoked without a valid G, 40 // which prevents us from allocating more stack. 41 // 42 //go:nosplit 43 func sysFreeOS(v unsafe.Pointer, n uintptr) { 44 munmap(v, n) 45 } 46 47 func sysFaultOS(v unsafe.Pointer, n uintptr) { 48 mmap(v, n, _PROT_NONE, _MAP_ANON|_MAP_PRIVATE|_MAP_FIXED, -1, 0) 49 } 50 51 func sysReserveOS(v unsafe.Pointer, n uintptr) unsafe.Pointer { 52 p, err := mmap(v, n, _PROT_NONE, _MAP_ANON|_MAP_PRIVATE, -1, 0) 53 if err != 0 { 54 return nil 55 } 56 return p 57 } 58 59 const _ENOMEM = 12 60 61 func sysMapOS(v unsafe.Pointer, n uintptr) { 62 p, err := mmap(v, n, _PROT_READ|_PROT_WRITE, _MAP_ANON|_MAP_FIXED|_MAP_PRIVATE, -1, 0) 63 if err == _ENOMEM { 64 throw("runtime: out of memory") 65 } 66 if p != v || err != 0 { 67 print("runtime: mmap(", v, ", ", n, ") returned ", p, ", ", err, "\n") 68 throw("runtime: cannot map pages in arena address space") 69 } 70 }