blob: 26126fcf9a49adcdad571add4fe3fdf49c6aa6a1 [file] [log] [blame]
Keith Randall61dca942014-06-16 23:03:03 -07001// 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
5package runtime
6
7import "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 Randall0c6b55e2014-07-16 14:16:19 -070014const (
15 ptrSize = unsafe.Sizeof((*byte)(nil))
16)
17
Keith Randall61dca942014-06-16 23:03:03 -070018//go:noescape
Keith Randall0c6b55e2014-07-16 14:16:19 -070019func racereadpc(addr unsafe.Pointer, callpc, pc uintptr)
20
21//go:noescape
22func racewritepc(addr unsafe.Pointer, callpc, pc uintptr)
23
24//go:noescape
Keith Randall61dca942014-06-16 23:03:03 -070025func racereadrangepc(addr unsafe.Pointer, len int, callpc, pc uintptr)
Keith Randall0c6b55e2014-07-16 14:16:19 -070026
Keith Randallcc9ec522014-07-31 12:43:40 -070027//go:noescape
28func racewriterangepc(addr unsafe.Pointer, len int, callpc, pc uintptr)
29
Keith Randall9a1e1422014-08-24 12:31:03 +040030//go:noescape
31func raceacquire(addr unsafe.Pointer)
32
33//go:noescape
34func racerelease(addr unsafe.Pointer)
35
36//go:noescape
37func raceacquireg(gp *g, addr unsafe.Pointer)
38
39//go:noescape
40func racereleaseg(gp *g, addr unsafe.Pointer)
41
Keith Randallc46bcd42014-08-28 13:23:10 -070042func racefingo()
43
Keith Randall0c6b55e2014-07-16 14:16:19 -070044// Should be a built-in for unsafe.Pointer?
45func add(p unsafe.Pointer, x uintptr) unsafe.Pointer {
46 return unsafe.Pointer(uintptr(p) + x)
47}
48
Keith Randall4aa50432014-07-30 09:01:52 -070049// n must be a power of 2
50func roundup(p unsafe.Pointer, n uintptr) unsafe.Pointer {
Russ Cox6c67dd92014-08-24 20:28:29 -040051 delta := -uintptr(p) & (n - 1)
52 return unsafe.Pointer(uintptr(p) + delta)
Keith Randall4aa50432014-07-30 09:01:52 -070053}
54
Keith Randall0c6b55e2014-07-16 14:16:19 -070055// in stubs.goc
Dmitriy Vyukov684de042014-08-21 20:41:09 +040056func getg() *g
Keith Randall4aa50432014-07-30 09:01:52 -070057func acquirem() *m
58func releasem(mp *m)
Dmitriy Vyukov30940cf2014-08-18 16:33:39 +040059func gomcache() *mcache
Keith Randall4aa50432014-07-30 09:01:52 -070060
Keith Randalle359bea2014-08-06 14:33:57 -070061// 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.
65type mFunction byte
Keith Randall4aa50432014-07-30 09:01:52 -070066
Keith Randalle359bea2014-08-06 14:33:57 -070067// in asm_*.s
68func mcall(fn *mFunction)
69func onM(fn *mFunction)
70
71// C functions that run on the M stack. Call these like
72// mcall(&mcacheRefill_m)
Keith Randall4aa50432014-07-30 09:01:52 -070073// Arguments should be passed in m->scalararg[x] and
74// m->ptrarg[x]. Return values can be passed in those
75// same slots.
Keith Randalle359bea2014-08-06 14:33:57 -070076var (
77 mcacheRefill_m,
78 largeAlloc_m,
79 mprofMalloc_m,
80 gc_m,
81 setFinalizer_m,
Keith Randallc46bcd42014-08-28 13:23:10 -070082 removeFinalizer_m,
Dmitriy Vyukovaac7f1a2014-08-07 13:34:30 +040083 markallocated_m,
84 unrollgcprog_m,
Dmitriy Vyukov5d407422014-08-19 11:49:59 +040085 unrollgcproginplace_m,
Dmitriy Vyukov684de042014-08-21 20:41:09 +040086 gosched_m,
Sanjay Menakuruef504622014-08-24 20:27:00 -070087 setgcpercent_m,
88 setmaxthreads_m,
Dmitriy Vyukov684de042014-08-21 20:41:09 +040089 ready_m,
90 park_m,
Dmitriy Vyukovafb22602014-08-22 22:13:01 +040091 notewakeup_m,
92 notetsleepg_m mFunction
Keith Randalle359bea2014-08-06 14:33:57 -070093)
Keith Randall0c6b55e2014-07-16 14:16:19 -070094
Russ Coxd21638b2014-08-27 21:59:49 -040095func blockevent(int64, int32)
96
Keith Randall0c6b55e2014-07-16 14:16:19 -070097// memclr clears n bytes starting at ptr.
98// in memclr_*.s
Keith Randall483cb612014-08-07 13:58:42 -070099//go:noescape
Keith Randall0c6b55e2014-07-16 14:16:19 -0700100func memclr(ptr unsafe.Pointer, n uintptr)
101
Keith Randall4aa50432014-07-30 09:01:52 -0700102func racemalloc(p unsafe.Pointer, size uintptr)
103func tracealloc(p unsafe.Pointer, size uintptr, typ *_type)
104
Keith Randall0c6b55e2014-07-16 14:16:19 -0700105// memmove copies n bytes from "from" to "to".
106// in memmove_*.s
Keith Randall483cb612014-08-07 13:58:42 -0700107//go:noescape
Keith Randall0c6b55e2014-07-16 14:16:19 -0700108func memmove(to unsafe.Pointer, from unsafe.Pointer, n uintptr)
109
110// in asm_*.s
111func fastrand2() uint32
112
Keith Randall4aa50432014-07-30 09:01:52 -0700113const (
114 gcpercentUnknown = -2
115 concurrentSweep = true
116)
117
Keith Randall4aa50432014-07-30 09:01:52 -0700118func gosched()
119func starttheworld()
120func stoptheworld()
121func clearpools()
122
Keith Randall0c6b55e2014-07-16 14:16:19 -0700123// exported value for testing
124var hashLoad = loadFactor
125
126// in asm_*.s
127//go:noescape
Keith Randall7aa4e5a2014-08-07 14:52:55 -0700128func memeq(a, b unsafe.Pointer, size uintptr) bool
Keith Randall0c6b55e2014-07-16 14:16:19 -0700129
Keith Randall483cb612014-08-07 13:58:42 -0700130// Code pointers for the nohash/noequal algorithms. Used for producing better error messages.
Keith Randall0c6b55e2014-07-16 14:16:19 -0700131var nohashcode uintptr
Keith Randall483cb612014-08-07 13:58:42 -0700132var noequalcode uintptr
Dave Cheneyec5d7ba2014-07-18 16:30:38 +1000133
134// Go version of runtime.throw.
135// in panic.c
Dave Cheney355c38d2014-07-23 07:08:52 +1000136func gothrow(s string)
Keith Randall4aa50432014-07-30 09:01:52 -0700137
Keith Randalla2a97682014-07-31 15:07:05 -0700138// 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.
142type 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 Randall7aa4e5a2014-08-07 14:52:55 -0700146 // 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 Randalla2a97682014-07-31 15:07:05 -0700149}
150
151func 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!
160func noescape(p unsafe.Pointer) unsafe.Pointer {
161 x := uintptr(p)
162 return unsafe.Pointer(x ^ 0)
163}
Keith Randall483cb612014-08-07 13:58:42 -0700164
Dmitriy Vyukovafb22602014-08-22 22:13:01 +0400165func exitsyscall()
Rémy Oudompheng39ffa8b2014-08-26 08:34:46 +0200166
Brad Fitzpatrick9a5654a2014-08-27 09:31:32 -0700167func goroutineheader(gp *g)
Rémy Oudompheng39ffa8b2014-08-26 08:34:46 +0200168func traceback(pc, sp, lr uintptr, gp *g)
169func tracebackothers(gp *g)
Russ Cox25f6b022014-08-27 11:32:17 -0400170
171func cgocallback(fn, frame unsafe.Pointer, framesize uintptr)
172func gogo(buf *gobuf)
173func gosave(buf *gobuf)
174func open(name *byte, mode, perm int32) int32
175func read(fd int32, p unsafe.Pointer, n int32) int32
Russ Cox25f6b022014-08-27 11:32:17 -0400176func close(fd int32) int32
177func mincore(addr unsafe.Pointer, n uintptr, dst *byte) int32
178func jmpdefer(fv *funcval, argp unsafe.Pointer)
179func exit1(code int32)
180func asminit()
Russ Cox25f6b022014-08-27 11:32:17 -0400181func setg(gg *g)
182func exit(code int32)
183func breakpoint()
184func asmcgocall(fn, arg unsafe.Pointer)
185func nanotime() int64
186func usleep(usec uint32)
187func cputicks() int64
188func mmap(addr unsafe.Pointer, n uintptr, prot, flags, fd int32, off uint32) unsafe.Pointer
189func munmap(addr unsafe.Pointer, n uintptr)
190func madvise(addr unsafe.Pointer, n uintptr, flags int32)
Russ Cox25f6b022014-08-27 11:32:17 -0400191func newstackcall(fv *funcval, addr unsafe.Pointer, size uint32)
Keith Randallc46bcd42014-08-28 13:23:10 -0700192func reflectcall(fn, arg unsafe.Pointer, n uint32, retoffset uint32)
Russ Cox25f6b022014-08-27 11:32:17 -0400193func procyield(cycles uint32)
194func osyield()
195func cgocallback_gofunc(fv *funcval, frame unsafe.Pointer, framesize uintptr)
Russ Coxd21638b2014-08-27 21:59:49 -0400196func persistentalloc(size, align uintptr, stat *uint64) unsafe.Pointer
197func readgogc() int32
198func notetsleepg(n *note, ns int64)
199func notetsleep(n *note, ns int64)
200func notewakeup(n *note)
201func notesleep(n *note)
202func noteclear(n *note)
Russ Cox8ecb9a72014-08-27 23:32:49 -0400203func lock(lk *mutex)
204func unlock(lk *mutex)
Keith Randallc46bcd42014-08-28 13:23:10 -0700205func purgecachedstats(c *mcache)
Russ Coxd21638b2014-08-27 21:59:49 -0400206
207//go:noescape
Russ Cox597b2662014-08-28 23:26:40 -0400208func write(fd uintptr, p unsafe.Pointer, n int32) int32
209
210//go:noescape
Russ Coxd21638b2014-08-27 21:59:49 -0400211func cas(ptr *uint32, old, new uint32) bool
212
213//go:noescape
214func cas64(ptr *uint64, old, new uint64) bool
215
216//go:noescape
217func casp(ptr *unsafe.Pointer, old, new unsafe.Pointer) bool
218
219//go:noescape
220func casuintptr(ptr *uintptr, old, new uintptr) bool
221
222//go:noescape
223func xadd(ptr *uint32, delta int32) uint32
224
225//go:noescape
226func xadd64(ptr *uint64, delta int64) uint64
227
228//go:noescape
229func xchg(ptr *uint32, new uint32) uint32
230
231//go:noescape
232func xchg64(ptr *uint64, new uint64) uint64
233
234//go:noescape
235func xchgp(ptr unsafe.Pointer, new unsafe.Pointer) unsafe.Pointer
236
237//go:noescape
238func atomicstore(ptr *uint32, val uint32)
239
240//go:noescape
241func atomicstore64(ptr *uint64, val uint64)
242
243//go:noescape
244func atomicstorep(ptr unsafe.Pointer, val unsafe.Pointer)
245
246//go:noescape
247func atomicload(ptr *uint32) uint32
248
249//go:noescape
250func atomicload64(ptr *uint64) uint64
251
252//go:noescape
253func atomicloadp(ptr unsafe.Pointer) unsafe.Pointer
254
255//go:noescape
256func atomicor8(ptr *uint8, val uint8)
257
258//go:noescape
259func setcallerpc(argp unsafe.Pointer, pc uintptr)
260
261//go:noescape
262func getcallerpc(argp unsafe.Pointer) uintptr
263
264//go:noescape
265func getcallersp(argp unsafe.Pointer) uintptr