libgo: update to go1.9
[official-gcc.git] / libgo / go / runtime / runtime2.go
blob045e76ff4dfd5f95ab08152328e94558d3289dc7
1 // Copyright 2009 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.
5 package runtime
7 import (
8 "runtime/internal/atomic"
9 "runtime/internal/sys"
10 "unsafe"
13 // defined constants
14 const (
15 // G status
17 // Beyond indicating the general state of a G, the G status
18 // acts like a lock on the goroutine's stack (and hence its
19 // ability to execute user code).
21 // If you add to this list, add to the list
22 // of "okay during garbage collection" status
23 // in mgcmark.go too.
25 // _Gidle means this goroutine was just allocated and has not
26 // yet been initialized.
27 _Gidle = iota // 0
29 // _Grunnable means this goroutine is on a run queue. It is
30 // not currently executing user code. The stack is not owned.
31 _Grunnable // 1
33 // _Grunning means this goroutine may execute user code. The
34 // stack is owned by this goroutine. It is not on a run queue.
35 // It is assigned an M and a P.
36 _Grunning // 2
38 // _Gsyscall means this goroutine is executing a system call.
39 // It is not executing user code. The stack is owned by this
40 // goroutine. It is not on a run queue. It is assigned an M.
41 _Gsyscall // 3
43 // _Gwaiting means this goroutine is blocked in the runtime.
44 // It is not executing user code. It is not on a run queue,
45 // but should be recorded somewhere (e.g., a channel wait
46 // queue) so it can be ready()d when necessary. The stack is
47 // not owned *except* that a channel operation may read or
48 // write parts of the stack under the appropriate channel
49 // lock. Otherwise, it is not safe to access the stack after a
50 // goroutine enters _Gwaiting (e.g., it may get moved).
51 _Gwaiting // 4
53 // _Gmoribund_unused is currently unused, but hardcoded in gdb
54 // scripts.
55 _Gmoribund_unused // 5
57 // _Gdead means this goroutine is currently unused. It may be
58 // just exited, on a free list, or just being initialized. It
59 // is not executing user code. It may or may not have a stack
60 // allocated. The G and its stack (if any) are owned by the M
61 // that is exiting the G or that obtained the G from the free
62 // list.
63 _Gdead // 6
65 // _Genqueue_unused is currently unused.
66 _Genqueue_unused // 7
68 // _Gcopystack means this goroutine's stack is being moved. It
69 // is not executing user code and is not on a run queue. The
70 // stack is owned by the goroutine that put it in _Gcopystack.
71 _Gcopystack // 8
73 // _Gscan combined with one of the above states other than
74 // _Grunning indicates that GC is scanning the stack. The
75 // goroutine is not executing user code and the stack is owned
76 // by the goroutine that set the _Gscan bit.
78 // _Gscanrunning is different: it is used to briefly block
79 // state transitions while GC signals the G to scan its own
80 // stack. This is otherwise like _Grunning.
82 // atomicstatus&~Gscan gives the state the goroutine will
83 // return to when the scan completes.
84 _Gscan = 0x1000
85 _Gscanrunnable = _Gscan + _Grunnable // 0x1001
86 _Gscanrunning = _Gscan + _Grunning // 0x1002
87 _Gscansyscall = _Gscan + _Gsyscall // 0x1003
88 _Gscanwaiting = _Gscan + _Gwaiting // 0x1004
91 const (
92 // P status
93 _Pidle = iota
94 _Prunning // Only this P is allowed to change from _Prunning.
95 _Psyscall
96 _Pgcstop
97 _Pdead
100 // Mutual exclusion locks. In the uncontended case,
101 // as fast as spin locks (just a few user-level instructions),
102 // but on the contention path they sleep in the kernel.
103 // A zeroed Mutex is unlocked (no need to initialize each lock).
104 type mutex struct {
105 // Futex-based impl treats it as uint32 key,
106 // while sema-based impl as M* waitm.
107 // Used to be a union, but unions break precise GC.
108 key uintptr
111 // sleep and wakeup on one-time events.
112 // before any calls to notesleep or notewakeup,
113 // must call noteclear to initialize the Note.
114 // then, exactly one thread can call notesleep
115 // and exactly one thread can call notewakeup (once).
116 // once notewakeup has been called, the notesleep
117 // will return. future notesleep will return immediately.
118 // subsequent noteclear must be called only after
119 // previous notesleep has returned, e.g. it's disallowed
120 // to call noteclear straight after notewakeup.
122 // notetsleep is like notesleep but wakes up after
123 // a given number of nanoseconds even if the event
124 // has not yet happened. if a goroutine uses notetsleep to
125 // wake up early, it must wait to call noteclear until it
126 // can be sure that no other goroutine is calling
127 // notewakeup.
129 // notesleep/notetsleep are generally called on g0,
130 // notetsleepg is similar to notetsleep but is called on user g.
131 type note struct {
132 // Futex-based impl treats it as uint32 key,
133 // while sema-based impl as M* waitm.
134 // Used to be a union, but unions break precise GC.
135 key uintptr
138 type funcval struct {
139 fn uintptr
140 // variable-size, fn-specific data here
143 // The representation of a non-empty interface.
144 // See comment in iface.go for more details on this struct.
145 type iface struct {
146 tab unsafe.Pointer
147 data unsafe.Pointer
150 // The representation of an empty interface.
151 // See comment in iface.go for more details on this struct.
152 type eface struct {
153 _type *_type
154 data unsafe.Pointer
157 func efaceOf(ep *interface{}) *eface {
158 return (*eface)(unsafe.Pointer(ep))
161 // The guintptr, muintptr, and puintptr are all used to bypass write barriers.
162 // It is particularly important to avoid write barriers when the current P has
163 // been released, because the GC thinks the world is stopped, and an
164 // unexpected write barrier would not be synchronized with the GC,
165 // which can lead to a half-executed write barrier that has marked the object
166 // but not queued it. If the GC skips the object and completes before the
167 // queuing can occur, it will incorrectly free the object.
169 // We tried using special assignment functions invoked only when not
170 // holding a running P, but then some updates to a particular memory
171 // word went through write barriers and some did not. This breaks the
172 // write barrier shadow checking mode, and it is also scary: better to have
173 // a word that is completely ignored by the GC than to have one for which
174 // only a few updates are ignored.
176 // Gs, Ms, and Ps are always reachable via true pointers in the
177 // allgs, allm, and allp lists or (during allocation before they reach those lists)
178 // from stack variables.
180 // A guintptr holds a goroutine pointer, but typed as a uintptr
181 // to bypass write barriers. It is used in the Gobuf goroutine state
182 // and in scheduling lists that are manipulated without a P.
184 // The Gobuf.g goroutine pointer is almost always updated by assembly code.
185 // In one of the few places it is updated by Go code - func save - it must be
186 // treated as a uintptr to avoid a write barrier being emitted at a bad time.
187 // Instead of figuring out how to emit the write barriers missing in the
188 // assembly manipulation, we change the type of the field to uintptr,
189 // so that it does not require write barriers at all.
191 // Goroutine structs are published in the allg list and never freed.
192 // That will keep the goroutine structs from being collected.
193 // There is never a time that Gobuf.g's contain the only references
194 // to a goroutine: the publishing of the goroutine in allg comes first.
195 // Goroutine pointers are also kept in non-GC-visible places like TLS,
196 // so I can't see them ever moving. If we did want to start moving data
197 // in the GC, we'd need to allocate the goroutine structs from an
198 // alternate arena. Using guintptr doesn't make that problem any worse.
199 type guintptr uintptr
201 //go:nosplit
202 func (gp guintptr) ptr() *g { return (*g)(unsafe.Pointer(gp)) }
204 //go:nosplit
205 func (gp *guintptr) set(g *g) { *gp = guintptr(unsafe.Pointer(g)) }
207 //go:nosplit
208 func (gp *guintptr) cas(old, new guintptr) bool {
209 return atomic.Casuintptr((*uintptr)(unsafe.Pointer(gp)), uintptr(old), uintptr(new))
212 // setGNoWB performs *gp = new without a write barrier.
213 // For times when it's impractical to use a guintptr.
214 //go:nosplit
215 //go:nowritebarrier
216 func setGNoWB(gp **g, new *g) {
217 (*guintptr)(unsafe.Pointer(gp)).set(new)
220 type puintptr uintptr
222 //go:nosplit
223 func (pp puintptr) ptr() *p { return (*p)(unsafe.Pointer(pp)) }
225 //go:nosplit
226 func (pp *puintptr) set(p *p) { *pp = puintptr(unsafe.Pointer(p)) }
228 type muintptr uintptr
230 //go:nosplit
231 func (mp muintptr) ptr() *m { return (*m)(unsafe.Pointer(mp)) }
233 //go:nosplit
234 func (mp *muintptr) set(m *m) { *mp = muintptr(unsafe.Pointer(m)) }
236 // setMNoWB performs *mp = new without a write barrier.
237 // For times when it's impractical to use an muintptr.
238 //go:nosplit
239 //go:nowritebarrier
240 func setMNoWB(mp **m, new *m) {
241 (*muintptr)(unsafe.Pointer(mp)).set(new)
244 // sudog represents a g in a wait list, such as for sending/receiving
245 // on a channel.
247 // sudog is necessary because the g ↔ synchronization object relation
248 // is many-to-many. A g can be on many wait lists, so there may be
249 // many sudogs for one g; and many gs may be waiting on the same
250 // synchronization object, so there may be many sudogs for one object.
252 // sudogs are allocated from a special pool. Use acquireSudog and
253 // releaseSudog to allocate and free them.
254 type sudog struct {
255 // The following fields are protected by the hchan.lock of the
256 // channel this sudog is blocking on. shrinkstack depends on
257 // this for sudogs involved in channel ops.
259 g *g
260 selectdone *uint32 // CAS to 1 to win select race (may point to stack)
261 next *sudog
262 prev *sudog
263 elem unsafe.Pointer // data element (may point to stack)
265 // The following fields are never accessed concurrently.
266 // For channels, waitlink is only accessed by g.
267 // For semaphores, all fields (including the ones above)
268 // are only accessed when holding a semaRoot lock.
270 acquiretime int64
271 releasetime int64
272 ticket uint32
273 parent *sudog // semaRoot binary tree
274 waitlink *sudog // g.waiting list or semaRoot
275 waittail *sudog // semaRoot
276 c *hchan // channel
280 Not used by gccgo.
282 type libcall struct {
283 fn uintptr
284 n uintptr // number of parameters
285 args uintptr // parameters
286 r1 uintptr // return values
287 r2 uintptr
288 err uintptr // error number
294 Not used by gccgo.
296 // describes how to handle callback
297 type wincallbackcontext struct {
298 gobody unsafe.Pointer // go function to call
299 argsize uintptr // callback arguments size (in bytes)
300 restorestack uintptr // adjust stack on return by (in bytes) (386 only)
301 cleanstack bool
306 Not used by gccgo.
308 // Stack describes a Go execution stack.
309 // The bounds of the stack are exactly [lo, hi),
310 // with no implicit data structures on either side.
311 type stack struct {
312 lo uintptr
313 hi uintptr
317 type g struct {
318 // Stack parameters.
319 // stack describes the actual stack memory: [stack.lo, stack.hi).
320 // stackguard0 is the stack pointer compared in the Go stack growth prologue.
321 // It is stack.lo+StackGuard normally, but can be StackPreempt to trigger a preemption.
322 // stackguard1 is the stack pointer compared in the C stack growth prologue.
323 // It is stack.lo+StackGuard on g0 and gsignal stacks.
324 // It is ~0 on other goroutine stacks, to trigger a call to morestackc (and crash).
325 // Not for gccgo: stack stack // offset known to runtime/cgo
326 // Not for gccgo: stackguard0 uintptr // offset known to liblink
327 // Not for gccgo: stackguard1 uintptr // offset known to liblink
329 _panic *_panic // innermost panic - offset known to liblink
330 _defer *_defer // innermost defer
331 m *m // current m; offset known to arm liblink
332 // Not for gccgo: sched gobuf
333 syscallsp uintptr // if status==Gsyscall, syscallsp = sched.sp to use during gc
334 syscallpc uintptr // if status==Gsyscall, syscallpc = sched.pc to use during gc
335 // Not for gccgo: stktopsp uintptr // expected sp at top of stack, to check in traceback
336 param unsafe.Pointer // passed parameter on wakeup
337 atomicstatus uint32
338 // Not for gccgo: stackLock uint32 // sigprof/scang lock; TODO: fold in to atomicstatus
339 goid int64
340 waitsince int64 // approx time when the g become blocked
341 waitreason string // if status==Gwaiting
342 schedlink guintptr
343 preempt bool // preemption signal, duplicates stackguard0 = stackpreempt
344 paniconfault bool // panic (instead of crash) on unexpected fault address
345 preemptscan bool // preempted g does scan for gc
346 gcscandone bool // g has scanned stack; protected by _Gscan bit in status
347 gcscanvalid bool // false at start of gc cycle, true if G has not run since last scan; TODO: remove?
348 throwsplit bool // must not split stack
349 raceignore int8 // ignore race detection events
350 sysblocktraced bool // StartTrace has emitted EvGoInSyscall about this goroutine
351 sysexitticks int64 // cputicks when syscall has returned (for tracing)
352 traceseq uint64 // trace event sequencer
353 tracelastp puintptr // last P emitted an event for this goroutine
354 lockedm *m
355 sig uint32
356 writebuf []byte
357 sigcode0 uintptr
358 sigcode1 uintptr
359 sigpc uintptr
360 gopc uintptr // pc of go statement that created this goroutine
361 startpc uintptr // pc of goroutine function
362 // Not for gccgo: racectx uintptr
363 waiting *sudog // sudog structures this g is waiting on (that have a valid elem ptr); in lock order
364 // Not for gccgo: cgoCtxt []uintptr // cgo traceback context
365 labels unsafe.Pointer // profiler labels
366 timer *timer // cached timer for time.Sleep
368 // Per-G GC state
370 // gcAssistBytes is this G's GC assist credit in terms of
371 // bytes allocated. If this is positive, then the G has credit
372 // to allocate gcAssistBytes bytes without assisting. If this
373 // is negative, then the G must correct this by performing
374 // scan work. We track this in bytes to make it fast to update
375 // and check for debt in the malloc hot path. The assist ratio
376 // determines how this corresponds to scan work debt.
377 gcAssistBytes int64
379 // Remaining fields are specific to gccgo.
381 exception unsafe.Pointer // current exception being thrown
382 isforeign bool // whether current exception is not from Go
384 // Fields that hold stack and context information if status is Gsyscall
385 gcstack uintptr
386 gcstacksize uintptr
387 gcnextsegment uintptr
388 gcnextsp uintptr
389 gcinitialsp unsafe.Pointer
390 gcregs g_ucontext_t
392 entry func(unsafe.Pointer) // goroutine function to run
393 entryfn uintptr // function address passed to __go_go
394 fromgogo bool // whether entered from gogo function
396 scanningself bool // whether goroutine is scanning its own stack
398 isSystemGoroutine bool // whether goroutine is a "system" goroutine
400 traceback *tracebackg // stack traceback buffer
402 context g_ucontext_t // saved context for setcontext
403 stackcontext [10]uintptr // split-stack context
406 type m struct {
407 g0 *g // goroutine with scheduling stack
408 // Not for gccgo: morebuf gobuf // gobuf arg to morestack
409 // Not for gccgo: divmod uint32 // div/mod denominator for arm - known to liblink
411 // Fields not known to debuggers.
412 procid uint64 // for debuggers, but offset not hard-coded
413 gsignal *g // signal-handling g
414 sigmask sigset // storage for saved signal mask
415 // Not for gccgo: tls [6]uintptr // thread-local storage (for x86 extern register)
416 mstartfn func()
417 curg *g // current running goroutine
418 caughtsig guintptr // goroutine running during fatal signal
419 p puintptr // attached p for executing go code (nil if not executing go code)
420 nextp puintptr
421 id int32
422 mallocing int32
423 throwing int32
424 preemptoff string // if != "", keep curg running on this m
425 locks int32
426 softfloat int32
427 dying int32
428 profilehz int32
429 helpgc int32
430 spinning bool // m is out of work and is actively looking for work
431 blocked bool // m is blocked on a note
432 inwb bool // m is executing a write barrier
433 newSigstack bool // minit on C thread called sigaltstack
434 printlock int8
435 incgo bool // m is executing a cgo call
436 fastrand uint32
437 ncgocall uint64 // number of cgo calls in total
438 ncgo int32 // number of cgo calls currently in progress
439 // Not for gccgo: cgoCallersUse uint32 // if non-zero, cgoCallers in use temporarily
440 // Not for gccgo: cgoCallers *cgoCallers // cgo traceback if crashing in cgo call
441 park note
442 alllink *m // on allm
443 schedlink muintptr
444 mcache *mcache
445 lockedg *g
446 createstack [32]location // stack that created this thread.
447 // Not for gccgo: freglo [16]uint32 // d[i] lsb and f[i]
448 // Not for gccgo: freghi [16]uint32 // d[i] msb and f[i+16]
449 // Not for gccgo: fflag uint32 // floating point compare flags
450 locked uint32 // tracking for lockosthread
451 nextwaitm uintptr // next m waiting for lock
452 needextram bool
453 traceback uint8
454 waitunlockf unsafe.Pointer // todo go func(*g, unsafe.pointer) bool
455 waitlock unsafe.Pointer
456 waittraceev byte
457 waittraceskip int
458 startingtrace bool
459 syscalltick uint32
460 // Not for gccgo: thread uintptr // thread handle
462 // these are here because they are too large to be on the stack
463 // of low-level NOSPLIT functions.
464 // Not for gccgo: libcall libcall
465 // Not for gccgo: libcallpc uintptr // for cpu profiler
466 // Not for gccgo: libcallsp uintptr
467 // Not for gccgo: libcallg guintptr
468 // Not for gccgo: syscall libcall // stores syscall parameters on windows
470 mos mOS
472 // Remaining fields are specific to gccgo.
474 gsignalstack unsafe.Pointer // stack for gsignal
475 gsignalstacksize uintptr
477 dropextram bool // drop after call is done
479 gcing int32
482 type p struct {
483 lock mutex
485 id int32
486 status uint32 // one of pidle/prunning/...
487 link puintptr
488 schedtick uint32 // incremented on every scheduler call
489 syscalltick uint32 // incremented on every system call
490 sysmontick sysmontick // last tick observed by sysmon
491 m muintptr // back-link to associated m (nil if idle)
492 mcache *mcache
493 // Not for gccgo: racectx uintptr
495 // gccgo has only one size of defer.
496 deferpool []*_defer
497 deferpoolbuf [32]*_defer
499 // Cache of goroutine ids, amortizes accesses to runtime·sched.goidgen.
500 goidcache uint64
501 goidcacheend uint64
503 // Queue of runnable goroutines. Accessed without lock.
504 runqhead uint32
505 runqtail uint32
506 runq [256]guintptr
507 // runnext, if non-nil, is a runnable G that was ready'd by
508 // the current G and should be run next instead of what's in
509 // runq if there's time remaining in the running G's time
510 // slice. It will inherit the time left in the current time
511 // slice. If a set of goroutines is locked in a
512 // communicate-and-wait pattern, this schedules that set as a
513 // unit and eliminates the (potentially large) scheduling
514 // latency that otherwise arises from adding the ready'd
515 // goroutines to the end of the run queue.
516 runnext guintptr
518 // Available G's (status == Gdead)
519 gfree *g
520 gfreecnt int32
522 sudogcache []*sudog
523 sudogbuf [128]*sudog
525 tracebuf traceBufPtr
527 // traceSweep indicates the sweep events should be traced.
528 // This is used to defer the sweep start event until a span
529 // has actually been swept.
530 traceSweep bool
531 // traceSwept and traceReclaimed track the number of bytes
532 // swept and reclaimed by sweeping in the current sweep loop.
533 traceSwept, traceReclaimed uintptr
535 palloc persistentAlloc // per-P to avoid mutex
537 // Per-P GC state
538 gcAssistTime int64 // Nanoseconds in assistAlloc
539 gcBgMarkWorker guintptr
540 gcMarkWorkerMode gcMarkWorkerMode
542 // gcw is this P's GC work buffer cache. The work buffer is
543 // filled by write barriers, drained by mutator assists, and
544 // disposed on certain GC state transitions.
545 gcw gcWork
547 runSafePointFn uint32 // if 1, run sched.safePointFn at next safe point
549 pad [sys.CacheLineSize]byte
552 const (
553 // The max value of GOMAXPROCS.
554 // There are no fundamental restrictions on the value.
555 _MaxGomaxprocs = 1 << 10
558 type schedt struct {
559 // accessed atomically. keep at top to ensure alignment on 32-bit systems.
560 goidgen uint64
561 lastpoll uint64
563 lock mutex
565 midle muintptr // idle m's waiting for work
566 nmidle int32 // number of idle m's waiting for work
567 nmidlelocked int32 // number of locked m's waiting for work
568 mcount int32 // number of m's that have been created
569 maxmcount int32 // maximum number of m's allowed (or die)
571 ngsys uint32 // number of system goroutines; updated atomically
573 pidle puintptr // idle p's
574 npidle uint32
575 nmspinning uint32 // See "Worker thread parking/unparking" comment in proc.go.
577 // Global runnable queue.
578 runqhead guintptr
579 runqtail guintptr
580 runqsize int32
582 // Global cache of dead G's.
583 gflock mutex
584 gfree *g
585 ngfree int32
587 // Central cache of sudog structs.
588 sudoglock mutex
589 sudogcache *sudog
591 // Central pool of available defer structs.
592 deferlock mutex
593 deferpool *_defer
595 gcwaiting uint32 // gc is waiting to run
596 stopwait int32
597 stopnote note
598 sysmonwait uint32
599 sysmonnote note
601 // safepointFn should be called on each P at the next GC
602 // safepoint if p.runSafePointFn is set.
603 safePointFn func(*p)
604 safePointWait int32
605 safePointNote note
607 profilehz int32 // cpu profiling rate
609 procresizetime int64 // nanotime() of last change to gomaxprocs
610 totaltime int64 // ∫gomaxprocs dt up to procresizetime
613 // The m.locked word holds two pieces of state counting active calls to LockOSThread/lockOSThread.
614 // The low bit (LockExternal) is a boolean reporting whether any LockOSThread call is active.
615 // External locks are not recursive; a second lock is silently ignored.
616 // The upper bits of m.locked record the nesting depth of calls to lockOSThread
617 // (counting up by LockInternal), popped by unlockOSThread (counting down by LockInternal).
618 // Internal locks can be recursive. For instance, a lock for cgo can occur while the main
619 // goroutine is holding the lock during the initialization phase.
620 const (
621 _LockExternal = 1
622 _LockInternal = 2
625 const (
626 _SigNotify = 1 << iota // let signal.Notify have signal, even if from kernel
627 _SigKill // if signal.Notify doesn't take it, exit quietly
628 _SigThrow // if signal.Notify doesn't take it, exit loudly
629 _SigPanic // if the signal is from the kernel, panic
630 _SigDefault // if the signal isn't explicitly requested, don't monitor it
631 _SigGoExit // cause all runtime procs to exit (only used on Plan 9).
632 _SigSetStack // add SA_ONSTACK to libc handler
633 _SigUnblock // unblocked in minit
636 // Lock-free stack node.
637 // // Also known to export_test.go.
638 type lfnode struct {
639 next uint64
640 pushcnt uintptr
643 type forcegcstate struct {
644 lock mutex
645 g *g
646 idle uint32
649 // startup_random_data holds random bytes initialized at startup. These come from
650 // the ELF AT_RANDOM auxiliary vector (vdso_linux_amd64.go or os_linux_386.go).
651 var startupRandomData []byte
653 // extendRandom extends the random numbers in r[:n] to the whole slice r.
654 // Treats n<0 as n==0.
655 func extendRandom(r []byte, n int) {
656 if n < 0 {
657 n = 0
659 for n < len(r) {
660 // Extend random bits using hash function & time seed
661 w := n
662 if w > 16 {
663 w = 16
665 h := memhash(unsafe.Pointer(&r[n-w]), uintptr(nanotime()), uintptr(w))
666 for i := 0; i < sys.PtrSize && n < len(r); i++ {
667 r[n] = byte(h)
669 h >>= 8
674 // deferred subroutine calls
675 // This is the gccgo version.
676 type _defer struct {
677 // The next entry in the stack.
678 link *_defer
680 // The stack variable for the function which called this defer
681 // statement. This is set to true if we are returning from
682 // that function, false if we are panicing through it.
683 frame *bool
685 // The value of the panic stack when this function is
686 // deferred. This function can not recover this value from
687 // the panic stack. This can happen if a deferred function
688 // has a defer statement itself.
689 panicStack *_panic
691 // The panic that caused the defer to run. This is used to
692 // discard panics that have already been handled.
693 _panic *_panic
695 // The function to call.
696 pfn uintptr
698 // The argument to pass to the function.
699 arg unsafe.Pointer
701 // The return address that a recover thunk matches against.
702 // This is set by __go_set_defer_retaddr which is called by
703 // the thunks created by defer statements.
704 retaddr uintptr
706 // Set to true if a function created by reflect.MakeFunc is
707 // permitted to recover. The return address of such a
708 // function function will be somewhere in libffi, so __retaddr
709 // is not useful.
710 makefunccanrecover bool
713 // panics
714 // This is the gccgo version.
715 type _panic struct {
716 // The next entry in the stack.
717 link *_panic
719 // The value associated with this panic.
720 arg interface{}
722 // Whether this panic has been recovered.
723 recovered bool
725 // Whether this panic was pushed on the stack because of an
726 // exception thrown in some other language.
727 isforeign bool
729 // Whether this panic was already seen by a deferred function
730 // which called panic again.
731 aborted bool
734 const (
735 _TraceRuntimeFrames = 1 << iota // include frames for internal runtime functions.
736 _TraceTrap // the initial PC, SP are from a trap, not a return PC from a call
737 _TraceJumpStack // if traceback is on a systemstack, resume trace at g that called into it
740 // The maximum number of frames we print for a traceback
741 const _TracebackMaxFrames = 100
743 var (
744 allglen uintptr
745 allm *m
746 allp [_MaxGomaxprocs + 1]*p
747 gomaxprocs int32
748 ncpu int32
749 forcegc forcegcstate
750 sched schedt
751 newprocs int32
753 // Information about what cpu features are available.
754 // Set on startup in asm_{x86,amd64}.s.
755 // Packages outside the runtime should not use these
756 // as they are not an external api.
757 cpuid_ecx uint32
758 support_aes bool
760 // cpuid_edx uint32
761 // cpuid_ebx7 uint32
762 // lfenceBeforeRdtsc bool
763 // support_avx bool
764 // support_avx2 bool
765 // support_bmi1 bool
766 // support_bmi2 bool
768 // goarm uint8 // set by cmd/link on arm systems
769 // framepointer_enabled bool // set by cmd/link
772 // Set by the linker so the runtime can determine the buildmode.
773 var (
774 islibrary bool // -buildmode=c-shared
775 isarchive bool // -buildmode=c-archive
778 // Types that are only used by gccgo.
780 // g_ucontext_t is a Go version of the C ucontext_t type, used by getcontext.
781 // _sizeof_ucontext_t is defined by mkrsysinfo.sh from <ucontext.h>.
782 // On some systems getcontext and friends require a value that is
783 // aligned to a 16-byte boundary. We implement this by increasing the
784 // required size and picking an appropriate offset when we use the
785 // array.
786 type g_ucontext_t [(_sizeof_ucontext_t + 15) / unsafe.Sizeof(uintptr(0))]uintptr
788 // sigset is the Go version of the C type sigset_t.
789 // _sigset_t is defined by the Makefile from <signal.h>.
790 type sigset _sigset_t
792 // getMemstats returns a pointer to the internal memstats variable,
793 // for C code.
794 //go:linkname getMemstats runtime.getMemstats
795 func getMemstats() *mstats {
796 return &memstats