Keith Randall | 61dca94 | 2014-06-16 23:03:03 -0700 | [diff] [blame] | 1 | // Copyright 2014 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 "unsafe" |
| 8 | |
| 9 | // Declarations for runtime services implemented in C or assembly. |
| 10 | // C implementations of these functions are in stubs.goc. |
| 11 | // Assembly implementations are in various files, see comments with |
| 12 | // each function. |
| 13 | |
Keith Randall | 0c6b55e | 2014-07-16 14:16:19 -0700 | [diff] [blame] | 14 | const ( |
| 15 | ptrSize = unsafe.Sizeof((*byte)(nil)) |
| 16 | ) |
| 17 | |
Keith Randall | 61dca94 | 2014-06-16 23:03:03 -0700 | [diff] [blame] | 18 | //go:noescape |
Keith Randall | 0c6b55e | 2014-07-16 14:16:19 -0700 | [diff] [blame] | 19 | func racereadpc(addr unsafe.Pointer, callpc, pc uintptr) |
| 20 | |
| 21 | //go:noescape |
| 22 | func racewritepc(addr unsafe.Pointer, callpc, pc uintptr) |
| 23 | |
| 24 | //go:noescape |
Keith Randall | 61dca94 | 2014-06-16 23:03:03 -0700 | [diff] [blame] | 25 | func racereadrangepc(addr unsafe.Pointer, len int, callpc, pc uintptr) |
Keith Randall | 0c6b55e | 2014-07-16 14:16:19 -0700 | [diff] [blame] | 26 | |
Keith Randall | cc9ec52 | 2014-07-31 12:43:40 -0700 | [diff] [blame] | 27 | //go:noescape |
| 28 | func racewriterangepc(addr unsafe.Pointer, len int, callpc, pc uintptr) |
| 29 | |
Keith Randall | 9a1e142 | 2014-08-24 12:31:03 +0400 | [diff] [blame] | 30 | //go:noescape |
| 31 | func raceacquire(addr unsafe.Pointer) |
| 32 | |
| 33 | //go:noescape |
| 34 | func racerelease(addr unsafe.Pointer) |
| 35 | |
| 36 | //go:noescape |
| 37 | func raceacquireg(gp *g, addr unsafe.Pointer) |
| 38 | |
| 39 | //go:noescape |
| 40 | func racereleaseg(gp *g, addr unsafe.Pointer) |
| 41 | |
Keith Randall | c46bcd4 | 2014-08-28 13:23:10 -0700 | [diff] [blame] | 42 | func racefingo() |
| 43 | |
Keith Randall | 0c6b55e | 2014-07-16 14:16:19 -0700 | [diff] [blame] | 44 | // Should be a built-in for unsafe.Pointer? |
| 45 | func add(p unsafe.Pointer, x uintptr) unsafe.Pointer { |
| 46 | return unsafe.Pointer(uintptr(p) + x) |
| 47 | } |
| 48 | |
Keith Randall | 4aa5043 | 2014-07-30 09:01:52 -0700 | [diff] [blame] | 49 | // n must be a power of 2 |
| 50 | func roundup(p unsafe.Pointer, n uintptr) unsafe.Pointer { |
Russ Cox | 6c67dd9 | 2014-08-24 20:28:29 -0400 | [diff] [blame] | 51 | delta := -uintptr(p) & (n - 1) |
| 52 | return unsafe.Pointer(uintptr(p) + delta) |
Keith Randall | 4aa5043 | 2014-07-30 09:01:52 -0700 | [diff] [blame] | 53 | } |
| 54 | |
Keith Randall | 0c6b55e | 2014-07-16 14:16:19 -0700 | [diff] [blame] | 55 | // in stubs.goc |
Dmitriy Vyukov | 684de04 | 2014-08-21 20:41:09 +0400 | [diff] [blame] | 56 | func getg() *g |
Keith Randall | 4aa5043 | 2014-07-30 09:01:52 -0700 | [diff] [blame] | 57 | func acquirem() *m |
| 58 | func releasem(mp *m) |
Dmitriy Vyukov | 30940cf | 2014-08-18 16:33:39 +0400 | [diff] [blame] | 59 | func gomcache() *mcache |
Keith Randall | 4aa5043 | 2014-07-30 09:01:52 -0700 | [diff] [blame] | 60 | |
Keith Randall | e359bea | 2014-08-06 14:33:57 -0700 | [diff] [blame] | 61 | // An mFunction represents a C function that runs on the M stack. It |
| 62 | // can be called from Go using mcall or onM. Through the magic of |
| 63 | // linking, an mFunction variable and the corresponding C code entry |
| 64 | // point live at the same address. |
| 65 | type mFunction byte |
Keith Randall | 4aa5043 | 2014-07-30 09:01:52 -0700 | [diff] [blame] | 66 | |
Keith Randall | e359bea | 2014-08-06 14:33:57 -0700 | [diff] [blame] | 67 | // in asm_*.s |
| 68 | func mcall(fn *mFunction) |
| 69 | func onM(fn *mFunction) |
| 70 | |
| 71 | // C functions that run on the M stack. Call these like |
| 72 | // mcall(&mcacheRefill_m) |
Keith Randall | 4aa5043 | 2014-07-30 09:01:52 -0700 | [diff] [blame] | 73 | // Arguments should be passed in m->scalararg[x] and |
| 74 | // m->ptrarg[x]. Return values can be passed in those |
| 75 | // same slots. |
Keith Randall | e359bea | 2014-08-06 14:33:57 -0700 | [diff] [blame] | 76 | var ( |
| 77 | mcacheRefill_m, |
| 78 | largeAlloc_m, |
| 79 | mprofMalloc_m, |
| 80 | gc_m, |
| 81 | setFinalizer_m, |
Keith Randall | c46bcd4 | 2014-08-28 13:23:10 -0700 | [diff] [blame] | 82 | removeFinalizer_m, |
Dmitriy Vyukov | aac7f1a | 2014-08-07 13:34:30 +0400 | [diff] [blame] | 83 | markallocated_m, |
| 84 | unrollgcprog_m, |
Dmitriy Vyukov | 5d40742 | 2014-08-19 11:49:59 +0400 | [diff] [blame] | 85 | unrollgcproginplace_m, |
Dmitriy Vyukov | 684de04 | 2014-08-21 20:41:09 +0400 | [diff] [blame] | 86 | gosched_m, |
Sanjay Menakuru | ef50462 | 2014-08-24 20:27:00 -0700 | [diff] [blame] | 87 | setgcpercent_m, |
| 88 | setmaxthreads_m, |
Dmitriy Vyukov | 684de04 | 2014-08-21 20:41:09 +0400 | [diff] [blame] | 89 | ready_m, |
| 90 | park_m, |
Dmitriy Vyukov | afb2260 | 2014-08-22 22:13:01 +0400 | [diff] [blame] | 91 | notewakeup_m, |
| 92 | notetsleepg_m mFunction |
Keith Randall | e359bea | 2014-08-06 14:33:57 -0700 | [diff] [blame] | 93 | ) |
Keith Randall | 0c6b55e | 2014-07-16 14:16:19 -0700 | [diff] [blame] | 94 | |
Russ Cox | d21638b | 2014-08-27 21:59:49 -0400 | [diff] [blame] | 95 | func blockevent(int64, int32) |
| 96 | |
Keith Randall | 0c6b55e | 2014-07-16 14:16:19 -0700 | [diff] [blame] | 97 | // memclr clears n bytes starting at ptr. |
| 98 | // in memclr_*.s |
Keith Randall | 483cb61 | 2014-08-07 13:58:42 -0700 | [diff] [blame] | 99 | //go:noescape |
Keith Randall | 0c6b55e | 2014-07-16 14:16:19 -0700 | [diff] [blame] | 100 | func memclr(ptr unsafe.Pointer, n uintptr) |
| 101 | |
Keith Randall | 4aa5043 | 2014-07-30 09:01:52 -0700 | [diff] [blame] | 102 | func racemalloc(p unsafe.Pointer, size uintptr) |
| 103 | func tracealloc(p unsafe.Pointer, size uintptr, typ *_type) |
| 104 | |
Keith Randall | 0c6b55e | 2014-07-16 14:16:19 -0700 | [diff] [blame] | 105 | // memmove copies n bytes from "from" to "to". |
| 106 | // in memmove_*.s |
Keith Randall | 483cb61 | 2014-08-07 13:58:42 -0700 | [diff] [blame] | 107 | //go:noescape |
Keith Randall | 0c6b55e | 2014-07-16 14:16:19 -0700 | [diff] [blame] | 108 | func memmove(to unsafe.Pointer, from unsafe.Pointer, n uintptr) |
| 109 | |
| 110 | // in asm_*.s |
| 111 | func fastrand2() uint32 |
| 112 | |
Keith Randall | 4aa5043 | 2014-07-30 09:01:52 -0700 | [diff] [blame] | 113 | const ( |
| 114 | gcpercentUnknown = -2 |
| 115 | concurrentSweep = true |
| 116 | ) |
| 117 | |
Keith Randall | 4aa5043 | 2014-07-30 09:01:52 -0700 | [diff] [blame] | 118 | func gosched() |
| 119 | func starttheworld() |
| 120 | func stoptheworld() |
| 121 | func clearpools() |
| 122 | |
Keith Randall | 0c6b55e | 2014-07-16 14:16:19 -0700 | [diff] [blame] | 123 | // exported value for testing |
| 124 | var hashLoad = loadFactor |
| 125 | |
| 126 | // in asm_*.s |
| 127 | //go:noescape |
Keith Randall | 7aa4e5a | 2014-08-07 14:52:55 -0700 | [diff] [blame] | 128 | func memeq(a, b unsafe.Pointer, size uintptr) bool |
Keith Randall | 0c6b55e | 2014-07-16 14:16:19 -0700 | [diff] [blame] | 129 | |
Keith Randall | 483cb61 | 2014-08-07 13:58:42 -0700 | [diff] [blame] | 130 | // Code pointers for the nohash/noequal algorithms. Used for producing better error messages. |
Keith Randall | 0c6b55e | 2014-07-16 14:16:19 -0700 | [diff] [blame] | 131 | var nohashcode uintptr |
Keith Randall | 483cb61 | 2014-08-07 13:58:42 -0700 | [diff] [blame] | 132 | var noequalcode uintptr |
Dave Cheney | ec5d7ba | 2014-07-18 16:30:38 +1000 | [diff] [blame] | 133 | |
| 134 | // Go version of runtime.throw. |
| 135 | // in panic.c |
Dave Cheney | 355c38d | 2014-07-23 07:08:52 +1000 | [diff] [blame] | 136 | func gothrow(s string) |
Keith Randall | 4aa5043 | 2014-07-30 09:01:52 -0700 | [diff] [blame] | 137 | |
Keith Randall | a2a9768 | 2014-07-31 15:07:05 -0700 | [diff] [blame] | 138 | // Return the Go equivalent of the C Alg structure. |
| 139 | // TODO: at some point Go will hold the truth for the layout |
| 140 | // of runtime structures and C will be derived from it (if |
| 141 | // needed at all). At that point this function can go away. |
| 142 | type goalgtype struct { |
| 143 | // function for hashing objects of this type |
| 144 | // (ptr to object, size, seed) -> hash |
| 145 | hash func(unsafe.Pointer, uintptr, uintptr) uintptr |
Keith Randall | 7aa4e5a | 2014-08-07 14:52:55 -0700 | [diff] [blame] | 146 | // function for comparing objects of this type |
| 147 | // (ptr to object A, ptr to object B, size) -> ==? |
| 148 | equal func(unsafe.Pointer, unsafe.Pointer, uintptr) bool |
Keith Randall | a2a9768 | 2014-07-31 15:07:05 -0700 | [diff] [blame] | 149 | } |
| 150 | |
| 151 | func goalg(a *alg) *goalgtype { |
| 152 | return (*goalgtype)(unsafe.Pointer(a)) |
| 153 | } |
| 154 | |
| 155 | // noescape hides a pointer from escape analysis. noescape is |
| 156 | // the identity function but escape analysis doesn't think the |
| 157 | // output depends on the input. noescape is inlined and currently |
| 158 | // compiles down to a single xor instruction. |
| 159 | // USE CAREFULLY! |
| 160 | func noescape(p unsafe.Pointer) unsafe.Pointer { |
| 161 | x := uintptr(p) |
| 162 | return unsafe.Pointer(x ^ 0) |
| 163 | } |
Keith Randall | 483cb61 | 2014-08-07 13:58:42 -0700 | [diff] [blame] | 164 | |
Dmitriy Vyukov | afb2260 | 2014-08-22 22:13:01 +0400 | [diff] [blame] | 165 | func exitsyscall() |
Rémy Oudompheng | 39ffa8b | 2014-08-26 08:34:46 +0200 | [diff] [blame] | 166 | |
Brad Fitzpatrick | 9a5654a | 2014-08-27 09:31:32 -0700 | [diff] [blame] | 167 | func goroutineheader(gp *g) |
Rémy Oudompheng | 39ffa8b | 2014-08-26 08:34:46 +0200 | [diff] [blame] | 168 | func traceback(pc, sp, lr uintptr, gp *g) |
| 169 | func tracebackothers(gp *g) |
Russ Cox | 25f6b02 | 2014-08-27 11:32:17 -0400 | [diff] [blame] | 170 | |
| 171 | func cgocallback(fn, frame unsafe.Pointer, framesize uintptr) |
| 172 | func gogo(buf *gobuf) |
| 173 | func gosave(buf *gobuf) |
| 174 | func open(name *byte, mode, perm int32) int32 |
| 175 | func read(fd int32, p unsafe.Pointer, n int32) int32 |
Russ Cox | 25f6b02 | 2014-08-27 11:32:17 -0400 | [diff] [blame] | 176 | func close(fd int32) int32 |
| 177 | func mincore(addr unsafe.Pointer, n uintptr, dst *byte) int32 |
| 178 | func jmpdefer(fv *funcval, argp unsafe.Pointer) |
| 179 | func exit1(code int32) |
| 180 | func asminit() |
Russ Cox | 25f6b02 | 2014-08-27 11:32:17 -0400 | [diff] [blame] | 181 | func setg(gg *g) |
| 182 | func exit(code int32) |
| 183 | func breakpoint() |
| 184 | func asmcgocall(fn, arg unsafe.Pointer) |
| 185 | func nanotime() int64 |
| 186 | func usleep(usec uint32) |
| 187 | func cputicks() int64 |
| 188 | func mmap(addr unsafe.Pointer, n uintptr, prot, flags, fd int32, off uint32) unsafe.Pointer |
| 189 | func munmap(addr unsafe.Pointer, n uintptr) |
| 190 | func madvise(addr unsafe.Pointer, n uintptr, flags int32) |
Russ Cox | 25f6b02 | 2014-08-27 11:32:17 -0400 | [diff] [blame] | 191 | func newstackcall(fv *funcval, addr unsafe.Pointer, size uint32) |
Keith Randall | c46bcd4 | 2014-08-28 13:23:10 -0700 | [diff] [blame] | 192 | func reflectcall(fn, arg unsafe.Pointer, n uint32, retoffset uint32) |
Russ Cox | 25f6b02 | 2014-08-27 11:32:17 -0400 | [diff] [blame] | 193 | func procyield(cycles uint32) |
| 194 | func osyield() |
| 195 | func cgocallback_gofunc(fv *funcval, frame unsafe.Pointer, framesize uintptr) |
Russ Cox | d21638b | 2014-08-27 21:59:49 -0400 | [diff] [blame] | 196 | func persistentalloc(size, align uintptr, stat *uint64) unsafe.Pointer |
| 197 | func readgogc() int32 |
| 198 | func notetsleepg(n *note, ns int64) |
| 199 | func notetsleep(n *note, ns int64) |
| 200 | func notewakeup(n *note) |
| 201 | func notesleep(n *note) |
| 202 | func noteclear(n *note) |
Russ Cox | 8ecb9a7 | 2014-08-27 23:32:49 -0400 | [diff] [blame] | 203 | func lock(lk *mutex) |
| 204 | func unlock(lk *mutex) |
Keith Randall | c46bcd4 | 2014-08-28 13:23:10 -0700 | [diff] [blame] | 205 | func purgecachedstats(c *mcache) |
Russ Cox | d21638b | 2014-08-27 21:59:49 -0400 | [diff] [blame] | 206 | |
| 207 | //go:noescape |
Russ Cox | 597b266 | 2014-08-28 23:26:40 -0400 | [diff] [blame^] | 208 | func write(fd uintptr, p unsafe.Pointer, n int32) int32 |
| 209 | |
| 210 | //go:noescape |
Russ Cox | d21638b | 2014-08-27 21:59:49 -0400 | [diff] [blame] | 211 | func cas(ptr *uint32, old, new uint32) bool |
| 212 | |
| 213 | //go:noescape |
| 214 | func cas64(ptr *uint64, old, new uint64) bool |
| 215 | |
| 216 | //go:noescape |
| 217 | func casp(ptr *unsafe.Pointer, old, new unsafe.Pointer) bool |
| 218 | |
| 219 | //go:noescape |
| 220 | func casuintptr(ptr *uintptr, old, new uintptr) bool |
| 221 | |
| 222 | //go:noescape |
| 223 | func xadd(ptr *uint32, delta int32) uint32 |
| 224 | |
| 225 | //go:noescape |
| 226 | func xadd64(ptr *uint64, delta int64) uint64 |
| 227 | |
| 228 | //go:noescape |
| 229 | func xchg(ptr *uint32, new uint32) uint32 |
| 230 | |
| 231 | //go:noescape |
| 232 | func xchg64(ptr *uint64, new uint64) uint64 |
| 233 | |
| 234 | //go:noescape |
| 235 | func xchgp(ptr unsafe.Pointer, new unsafe.Pointer) unsafe.Pointer |
| 236 | |
| 237 | //go:noescape |
| 238 | func atomicstore(ptr *uint32, val uint32) |
| 239 | |
| 240 | //go:noescape |
| 241 | func atomicstore64(ptr *uint64, val uint64) |
| 242 | |
| 243 | //go:noescape |
| 244 | func atomicstorep(ptr unsafe.Pointer, val unsafe.Pointer) |
| 245 | |
| 246 | //go:noescape |
| 247 | func atomicload(ptr *uint32) uint32 |
| 248 | |
| 249 | //go:noescape |
| 250 | func atomicload64(ptr *uint64) uint64 |
| 251 | |
| 252 | //go:noescape |
| 253 | func atomicloadp(ptr unsafe.Pointer) unsafe.Pointer |
| 254 | |
| 255 | //go:noescape |
| 256 | func atomicor8(ptr *uint8, val uint8) |
| 257 | |
| 258 | //go:noescape |
| 259 | func setcallerpc(argp unsafe.Pointer, pc uintptr) |
| 260 | |
| 261 | //go:noescape |
| 262 | func getcallerpc(argp unsafe.Pointer) uintptr |
| 263 | |
| 264 | //go:noescape |
| 265 | func getcallersp(argp unsafe.Pointer) uintptr |