]> Cypherpunks.ru repositories - gostls13.git/blob - src/runtime/proc.go
runtime: factor our oneNewExtraM trace code
[gostls13.git] / src / runtime / proc.go
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 (
8         "internal/abi"
9         "internal/cpu"
10         "internal/goarch"
11         "runtime/internal/atomic"
12         "runtime/internal/sys"
13         "unsafe"
14 )
15
16 // set using cmd/go/internal/modload.ModInfoProg
17 var modinfo string
18
19 // Goroutine scheduler
20 // The scheduler's job is to distribute ready-to-run goroutines over worker threads.
21 //
22 // The main concepts are:
23 // G - goroutine.
24 // M - worker thread, or machine.
25 // P - processor, a resource that is required to execute Go code.
26 //     M must have an associated P to execute Go code, however it can be
27 //     blocked or in a syscall w/o an associated P.
28 //
29 // Design doc at https://golang.org/s/go11sched.
30
31 // Worker thread parking/unparking.
32 // We need to balance between keeping enough running worker threads to utilize
33 // available hardware parallelism and parking excessive running worker threads
34 // to conserve CPU resources and power. This is not simple for two reasons:
35 // (1) scheduler state is intentionally distributed (in particular, per-P work
36 // queues), so it is not possible to compute global predicates on fast paths;
37 // (2) for optimal thread management we would need to know the future (don't park
38 // a worker thread when a new goroutine will be readied in near future).
39 //
40 // Three rejected approaches that would work badly:
41 // 1. Centralize all scheduler state (would inhibit scalability).
42 // 2. Direct goroutine handoff. That is, when we ready a new goroutine and there
43 //    is a spare P, unpark a thread and handoff it the thread and the goroutine.
44 //    This would lead to thread state thrashing, as the thread that readied the
45 //    goroutine can be out of work the very next moment, we will need to park it.
46 //    Also, it would destroy locality of computation as we want to preserve
47 //    dependent goroutines on the same thread; and introduce additional latency.
48 // 3. Unpark an additional thread whenever we ready a goroutine and there is an
49 //    idle P, but don't do handoff. This would lead to excessive thread parking/
50 //    unparking as the additional threads will instantly park without discovering
51 //    any work to do.
52 //
53 // The current approach:
54 //
55 // This approach applies to three primary sources of potential work: readying a
56 // goroutine, new/modified-earlier timers, and idle-priority GC. See below for
57 // additional details.
58 //
59 // We unpark an additional thread when we submit work if (this is wakep()):
60 // 1. There is an idle P, and
61 // 2. There are no "spinning" worker threads.
62 //
63 // A worker thread is considered spinning if it is out of local work and did
64 // not find work in the global run queue or netpoller; the spinning state is
65 // denoted in m.spinning and in sched.nmspinning. Threads unparked this way are
66 // also considered spinning; we don't do goroutine handoff so such threads are
67 // out of work initially. Spinning threads spin on looking for work in per-P
68 // run queues and timer heaps or from the GC before parking. If a spinning
69 // thread finds work it takes itself out of the spinning state and proceeds to
70 // execution. If it does not find work it takes itself out of the spinning
71 // state and then parks.
72 //
73 // If there is at least one spinning thread (sched.nmspinning>1), we don't
74 // unpark new threads when submitting work. To compensate for that, if the last
75 // spinning thread finds work and stops spinning, it must unpark a new spinning
76 // thread. This approach smooths out unjustified spikes of thread unparking,
77 // but at the same time guarantees eventual maximal CPU parallelism
78 // utilization.
79 //
80 // The main implementation complication is that we need to be very careful
81 // during spinning->non-spinning thread transition. This transition can race
82 // with submission of new work, and either one part or another needs to unpark
83 // another worker thread. If they both fail to do that, we can end up with
84 // semi-persistent CPU underutilization.
85 //
86 // The general pattern for submission is:
87 // 1. Submit work to the local run queue, timer heap, or GC state.
88 // 2. #StoreLoad-style memory barrier.
89 // 3. Check sched.nmspinning.
90 //
91 // The general pattern for spinning->non-spinning transition is:
92 // 1. Decrement nmspinning.
93 // 2. #StoreLoad-style memory barrier.
94 // 3. Check all per-P work queues and GC for new work.
95 //
96 // Note that all this complexity does not apply to global run queue as we are
97 // not sloppy about thread unparking when submitting to global queue. Also see
98 // comments for nmspinning manipulation.
99 //
100 // How these different sources of work behave varies, though it doesn't affect
101 // the synchronization approach:
102 // * Ready goroutine: this is an obvious source of work; the goroutine is
103 //   immediately ready and must run on some thread eventually.
104 // * New/modified-earlier timer: The current timer implementation (see time.go)
105 //   uses netpoll in a thread with no work available to wait for the soonest
106 //   timer. If there is no thread waiting, we want a new spinning thread to go
107 //   wait.
108 // * Idle-priority GC: The GC wakes a stopped idle thread to contribute to
109 //   background GC work (note: currently disabled per golang.org/issue/19112).
110 //   Also see golang.org/issue/44313, as this should be extended to all GC
111 //   workers.
112
113 var (
114         m0           m
115         g0           g
116         mcache0      *mcache
117         raceprocctx0 uintptr
118         raceFiniLock mutex
119 )
120
121 // This slice records the initializing tasks that need to be
122 // done to start up the runtime. It is built by the linker.
123 var runtime_inittasks []*initTask
124
125 // main_init_done is a signal used by cgocallbackg that initialization
126 // has been completed. It is made before _cgo_notify_runtime_init_done,
127 // so all cgo calls can rely on it existing. When main_init is complete,
128 // it is closed, meaning cgocallbackg can reliably receive from it.
129 var main_init_done chan bool
130
131 //go:linkname main_main main.main
132 func main_main()
133
134 // mainStarted indicates that the main M has started.
135 var mainStarted bool
136
137 // runtimeInitTime is the nanotime() at which the runtime started.
138 var runtimeInitTime int64
139
140 // Value to use for signal mask for newly created M's.
141 var initSigmask sigset
142
143 // The main goroutine.
144 func main() {
145         mp := getg().m
146
147         // Racectx of m0->g0 is used only as the parent of the main goroutine.
148         // It must not be used for anything else.
149         mp.g0.racectx = 0
150
151         // Max stack size is 1 GB on 64-bit, 250 MB on 32-bit.
152         // Using decimal instead of binary GB and MB because
153         // they look nicer in the stack overflow failure message.
154         if goarch.PtrSize == 8 {
155                 maxstacksize = 1000000000
156         } else {
157                 maxstacksize = 250000000
158         }
159
160         // An upper limit for max stack size. Used to avoid random crashes
161         // after calling SetMaxStack and trying to allocate a stack that is too big,
162         // since stackalloc works with 32-bit sizes.
163         maxstackceiling = 2 * maxstacksize
164
165         // Allow newproc to start new Ms.
166         mainStarted = true
167
168         if GOARCH != "wasm" { // no threads on wasm yet, so no sysmon
169                 systemstack(func() {
170                         newm(sysmon, nil, -1)
171                 })
172         }
173
174         // Lock the main goroutine onto this, the main OS thread,
175         // during initialization. Most programs won't care, but a few
176         // do require certain calls to be made by the main thread.
177         // Those can arrange for main.main to run in the main thread
178         // by calling runtime.LockOSThread during initialization
179         // to preserve the lock.
180         lockOSThread()
181
182         if mp != &m0 {
183                 throw("runtime.main not on m0")
184         }
185
186         // Record when the world started.
187         // Must be before doInit for tracing init.
188         runtimeInitTime = nanotime()
189         if runtimeInitTime == 0 {
190                 throw("nanotime returning zero")
191         }
192
193         if debug.inittrace != 0 {
194                 inittrace.id = getg().goid
195                 inittrace.active = true
196         }
197
198         doInit(runtime_inittasks) // Must be before defer.
199
200         // Defer unlock so that runtime.Goexit during init does the unlock too.
201         needUnlock := true
202         defer func() {
203                 if needUnlock {
204                         unlockOSThread()
205                 }
206         }()
207
208         gcenable()
209
210         main_init_done = make(chan bool)
211         if iscgo {
212                 if _cgo_thread_start == nil {
213                         throw("_cgo_thread_start missing")
214                 }
215                 if GOOS != "windows" {
216                         if _cgo_setenv == nil {
217                                 throw("_cgo_setenv missing")
218                         }
219                         if _cgo_unsetenv == nil {
220                                 throw("_cgo_unsetenv missing")
221                         }
222                 }
223                 if _cgo_notify_runtime_init_done == nil {
224                         throw("_cgo_notify_runtime_init_done missing")
225                 }
226                 // Start the template thread in case we enter Go from
227                 // a C-created thread and need to create a new thread.
228                 startTemplateThread()
229                 cgocall(_cgo_notify_runtime_init_done, nil)
230         }
231
232         // Run the initializing tasks. Depending on build mode this
233         // list can arrive a few different ways, but it will always
234         // contain the init tasks computed by the linker for all the
235         // packages in the program (excluding those added at runtime
236         // by package plugin).
237         for _, m := range activeModules() {
238                 doInit(m.inittasks)
239         }
240
241         // Disable init tracing after main init done to avoid overhead
242         // of collecting statistics in malloc and newproc
243         inittrace.active = false
244
245         close(main_init_done)
246
247         needUnlock = false
248         unlockOSThread()
249
250         if isarchive || islibrary {
251                 // A program compiled with -buildmode=c-archive or c-shared
252                 // has a main, but it is not executed.
253                 return
254         }
255         fn := main_main // make an indirect call, as the linker doesn't know the address of the main package when laying down the runtime
256         fn()
257         if raceenabled {
258                 runExitHooks(0) // run hooks now, since racefini does not return
259                 racefini()
260         }
261
262         // Make racy client program work: if panicking on
263         // another goroutine at the same time as main returns,
264         // let the other goroutine finish printing the panic trace.
265         // Once it does, it will exit. See issues 3934 and 20018.
266         if runningPanicDefers.Load() != 0 {
267                 // Running deferred functions should not take long.
268                 for c := 0; c < 1000; c++ {
269                         if runningPanicDefers.Load() == 0 {
270                                 break
271                         }
272                         Gosched()
273                 }
274         }
275         if panicking.Load() != 0 {
276                 gopark(nil, nil, waitReasonPanicWait, traceEvGoStop, 1)
277         }
278         runExitHooks(0)
279
280         exit(0)
281         for {
282                 var x *int32
283                 *x = 0
284         }
285 }
286
287 // os_beforeExit is called from os.Exit(0).
288 //
289 //go:linkname os_beforeExit os.runtime_beforeExit
290 func os_beforeExit(exitCode int) {
291         runExitHooks(exitCode)
292         if exitCode == 0 && raceenabled {
293                 racefini()
294         }
295 }
296
297 // start forcegc helper goroutine
298 func init() {
299         go forcegchelper()
300 }
301
302 func forcegchelper() {
303         forcegc.g = getg()
304         lockInit(&forcegc.lock, lockRankForcegc)
305         for {
306                 lock(&forcegc.lock)
307                 if forcegc.idle.Load() {
308                         throw("forcegc: phase error")
309                 }
310                 forcegc.idle.Store(true)
311                 goparkunlock(&forcegc.lock, waitReasonForceGCIdle, traceEvGoBlock, 1)
312                 // this goroutine is explicitly resumed by sysmon
313                 if debug.gctrace > 0 {
314                         println("GC forced")
315                 }
316                 // Time-triggered, fully concurrent.
317                 gcStart(gcTrigger{kind: gcTriggerTime, now: nanotime()})
318         }
319 }
320
321 // Gosched yields the processor, allowing other goroutines to run. It does not
322 // suspend the current goroutine, so execution resumes automatically.
323 //
324 //go:nosplit
325 func Gosched() {
326         checkTimeouts()
327         mcall(gosched_m)
328 }
329
330 // goschedguarded yields the processor like gosched, but also checks
331 // for forbidden states and opts out of the yield in those cases.
332 //
333 //go:nosplit
334 func goschedguarded() {
335         mcall(goschedguarded_m)
336 }
337
338 // goschedIfBusy yields the processor like gosched, but only does so if
339 // there are no idle Ps or if we're on the only P and there's nothing in
340 // the run queue. In both cases, there is freely available idle time.
341 //
342 //go:nosplit
343 func goschedIfBusy() {
344         gp := getg()
345         // Call gosched if gp.preempt is set; we may be in a tight loop that
346         // doesn't otherwise yield.
347         if !gp.preempt && sched.npidle.Load() > 0 {
348                 return
349         }
350         mcall(gosched_m)
351 }
352
353 // Puts the current goroutine into a waiting state and calls unlockf on the
354 // system stack.
355 //
356 // If unlockf returns false, the goroutine is resumed.
357 //
358 // unlockf must not access this G's stack, as it may be moved between
359 // the call to gopark and the call to unlockf.
360 //
361 // Note that because unlockf is called after putting the G into a waiting
362 // state, the G may have already been readied by the time unlockf is called
363 // unless there is external synchronization preventing the G from being
364 // readied. If unlockf returns false, it must guarantee that the G cannot be
365 // externally readied.
366 //
367 // Reason explains why the goroutine has been parked. It is displayed in stack
368 // traces and heap dumps. Reasons should be unique and descriptive. Do not
369 // re-use reasons, add new ones.
370 func gopark(unlockf func(*g, unsafe.Pointer) bool, lock unsafe.Pointer, reason waitReason, traceEv byte, traceskip int) {
371         if reason != waitReasonSleep {
372                 checkTimeouts() // timeouts may expire while two goroutines keep the scheduler busy
373         }
374         mp := acquirem()
375         gp := mp.curg
376         status := readgstatus(gp)
377         if status != _Grunning && status != _Gscanrunning {
378                 throw("gopark: bad g status")
379         }
380         mp.waitlock = lock
381         mp.waitunlockf = unlockf
382         gp.waitreason = reason
383         mp.waittraceev = traceEv
384         mp.waittraceskip = traceskip
385         releasem(mp)
386         // can't do anything that might move the G between Ms here.
387         mcall(park_m)
388 }
389
390 // Puts the current goroutine into a waiting state and unlocks the lock.
391 // The goroutine can be made runnable again by calling goready(gp).
392 func goparkunlock(lock *mutex, reason waitReason, traceEv byte, traceskip int) {
393         gopark(parkunlock_c, unsafe.Pointer(lock), reason, traceEv, traceskip)
394 }
395
396 func goready(gp *g, traceskip int) {
397         systemstack(func() {
398                 ready(gp, traceskip, true)
399         })
400 }
401
402 //go:nosplit
403 func acquireSudog() *sudog {
404         // Delicate dance: the semaphore implementation calls
405         // acquireSudog, acquireSudog calls new(sudog),
406         // new calls malloc, malloc can call the garbage collector,
407         // and the garbage collector calls the semaphore implementation
408         // in stopTheWorld.
409         // Break the cycle by doing acquirem/releasem around new(sudog).
410         // The acquirem/releasem increments m.locks during new(sudog),
411         // which keeps the garbage collector from being invoked.
412         mp := acquirem()
413         pp := mp.p.ptr()
414         if len(pp.sudogcache) == 0 {
415                 lock(&sched.sudoglock)
416                 // First, try to grab a batch from central cache.
417                 for len(pp.sudogcache) < cap(pp.sudogcache)/2 && sched.sudogcache != nil {
418                         s := sched.sudogcache
419                         sched.sudogcache = s.next
420                         s.next = nil
421                         pp.sudogcache = append(pp.sudogcache, s)
422                 }
423                 unlock(&sched.sudoglock)
424                 // If the central cache is empty, allocate a new one.
425                 if len(pp.sudogcache) == 0 {
426                         pp.sudogcache = append(pp.sudogcache, new(sudog))
427                 }
428         }
429         n := len(pp.sudogcache)
430         s := pp.sudogcache[n-1]
431         pp.sudogcache[n-1] = nil
432         pp.sudogcache = pp.sudogcache[:n-1]
433         if s.elem != nil {
434                 throw("acquireSudog: found s.elem != nil in cache")
435         }
436         releasem(mp)
437         return s
438 }
439
440 //go:nosplit
441 func releaseSudog(s *sudog) {
442         if s.elem != nil {
443                 throw("runtime: sudog with non-nil elem")
444         }
445         if s.isSelect {
446                 throw("runtime: sudog with non-false isSelect")
447         }
448         if s.next != nil {
449                 throw("runtime: sudog with non-nil next")
450         }
451         if s.prev != nil {
452                 throw("runtime: sudog with non-nil prev")
453         }
454         if s.waitlink != nil {
455                 throw("runtime: sudog with non-nil waitlink")
456         }
457         if s.c != nil {
458                 throw("runtime: sudog with non-nil c")
459         }
460         gp := getg()
461         if gp.param != nil {
462                 throw("runtime: releaseSudog with non-nil gp.param")
463         }
464         mp := acquirem() // avoid rescheduling to another P
465         pp := mp.p.ptr()
466         if len(pp.sudogcache) == cap(pp.sudogcache) {
467                 // Transfer half of local cache to the central cache.
468                 var first, last *sudog
469                 for len(pp.sudogcache) > cap(pp.sudogcache)/2 {
470                         n := len(pp.sudogcache)
471                         p := pp.sudogcache[n-1]
472                         pp.sudogcache[n-1] = nil
473                         pp.sudogcache = pp.sudogcache[:n-1]
474                         if first == nil {
475                                 first = p
476                         } else {
477                                 last.next = p
478                         }
479                         last = p
480                 }
481                 lock(&sched.sudoglock)
482                 last.next = sched.sudogcache
483                 sched.sudogcache = first
484                 unlock(&sched.sudoglock)
485         }
486         pp.sudogcache = append(pp.sudogcache, s)
487         releasem(mp)
488 }
489
490 // called from assembly.
491 func badmcall(fn func(*g)) {
492         throw("runtime: mcall called on m->g0 stack")
493 }
494
495 func badmcall2(fn func(*g)) {
496         throw("runtime: mcall function returned")
497 }
498
499 func badreflectcall() {
500         panic(plainError("arg size to reflect.call more than 1GB"))
501 }
502
503 //go:nosplit
504 //go:nowritebarrierrec
505 func badmorestackg0() {
506         writeErrStr("fatal: morestack on g0\n")
507 }
508
509 //go:nosplit
510 //go:nowritebarrierrec
511 func badmorestackgsignal() {
512         writeErrStr("fatal: morestack on gsignal\n")
513 }
514
515 //go:nosplit
516 func badctxt() {
517         throw("ctxt != 0")
518 }
519
520 func lockedOSThread() bool {
521         gp := getg()
522         return gp.lockedm != 0 && gp.m.lockedg != 0
523 }
524
525 var (
526         // allgs contains all Gs ever created (including dead Gs), and thus
527         // never shrinks.
528         //
529         // Access via the slice is protected by allglock or stop-the-world.
530         // Readers that cannot take the lock may (carefully!) use the atomic
531         // variables below.
532         allglock mutex
533         allgs    []*g
534
535         // allglen and allgptr are atomic variables that contain len(allgs) and
536         // &allgs[0] respectively. Proper ordering depends on totally-ordered
537         // loads and stores. Writes are protected by allglock.
538         //
539         // allgptr is updated before allglen. Readers should read allglen
540         // before allgptr to ensure that allglen is always <= len(allgptr). New
541         // Gs appended during the race can be missed. For a consistent view of
542         // all Gs, allglock must be held.
543         //
544         // allgptr copies should always be stored as a concrete type or
545         // unsafe.Pointer, not uintptr, to ensure that GC can still reach it
546         // even if it points to a stale array.
547         allglen uintptr
548         allgptr **g
549 )
550
551 func allgadd(gp *g) {
552         if readgstatus(gp) == _Gidle {
553                 throw("allgadd: bad status Gidle")
554         }
555
556         lock(&allglock)
557         allgs = append(allgs, gp)
558         if &allgs[0] != allgptr {
559                 atomicstorep(unsafe.Pointer(&allgptr), unsafe.Pointer(&allgs[0]))
560         }
561         atomic.Storeuintptr(&allglen, uintptr(len(allgs)))
562         unlock(&allglock)
563 }
564
565 // allGsSnapshot returns a snapshot of the slice of all Gs.
566 //
567 // The world must be stopped or allglock must be held.
568 func allGsSnapshot() []*g {
569         assertWorldStoppedOrLockHeld(&allglock)
570
571         // Because the world is stopped or allglock is held, allgadd
572         // cannot happen concurrently with this. allgs grows
573         // monotonically and existing entries never change, so we can
574         // simply return a copy of the slice header. For added safety,
575         // we trim everything past len because that can still change.
576         return allgs[:len(allgs):len(allgs)]
577 }
578
579 // atomicAllG returns &allgs[0] and len(allgs) for use with atomicAllGIndex.
580 func atomicAllG() (**g, uintptr) {
581         length := atomic.Loaduintptr(&allglen)
582         ptr := (**g)(atomic.Loadp(unsafe.Pointer(&allgptr)))
583         return ptr, length
584 }
585
586 // atomicAllGIndex returns ptr[i] with the allgptr returned from atomicAllG.
587 func atomicAllGIndex(ptr **g, i uintptr) *g {
588         return *(**g)(add(unsafe.Pointer(ptr), i*goarch.PtrSize))
589 }
590
591 // forEachG calls fn on every G from allgs.
592 //
593 // forEachG takes a lock to exclude concurrent addition of new Gs.
594 func forEachG(fn func(gp *g)) {
595         lock(&allglock)
596         for _, gp := range allgs {
597                 fn(gp)
598         }
599         unlock(&allglock)
600 }
601
602 // forEachGRace calls fn on every G from allgs.
603 //
604 // forEachGRace avoids locking, but does not exclude addition of new Gs during
605 // execution, which may be missed.
606 func forEachGRace(fn func(gp *g)) {
607         ptr, length := atomicAllG()
608         for i := uintptr(0); i < length; i++ {
609                 gp := atomicAllGIndex(ptr, i)
610                 fn(gp)
611         }
612         return
613 }
614
615 const (
616         // Number of goroutine ids to grab from sched.goidgen to local per-P cache at once.
617         // 16 seems to provide enough amortization, but other than that it's mostly arbitrary number.
618         _GoidCacheBatch = 16
619 )
620
621 // cpuinit sets up CPU feature flags and calls internal/cpu.Initialize. env should be the complete
622 // value of the GODEBUG environment variable.
623 func cpuinit(env string) {
624         switch GOOS {
625         case "aix", "darwin", "ios", "dragonfly", "freebsd", "netbsd", "openbsd", "illumos", "solaris", "linux":
626                 cpu.DebugOptions = true
627         }
628         cpu.Initialize(env)
629
630         // Support cpu feature variables are used in code generated by the compiler
631         // to guard execution of instructions that can not be assumed to be always supported.
632         switch GOARCH {
633         case "386", "amd64":
634                 x86HasPOPCNT = cpu.X86.HasPOPCNT
635                 x86HasSSE41 = cpu.X86.HasSSE41
636                 x86HasFMA = cpu.X86.HasFMA
637
638         case "arm":
639                 armHasVFPv4 = cpu.ARM.HasVFPv4
640
641         case "arm64":
642                 arm64HasATOMICS = cpu.ARM64.HasATOMICS
643         }
644 }
645
646 // getGodebugEarly extracts the environment variable GODEBUG from the environment on
647 // Unix-like operating systems and returns it. This function exists to extract GODEBUG
648 // early before much of the runtime is initialized.
649 func getGodebugEarly() string {
650         const prefix = "GODEBUG="
651         var env string
652         switch GOOS {
653         case "aix", "darwin", "ios", "dragonfly", "freebsd", "netbsd", "openbsd", "illumos", "solaris", "linux":
654                 // Similar to goenv_unix but extracts the environment value for
655                 // GODEBUG directly.
656                 // TODO(moehrmann): remove when general goenvs() can be called before cpuinit()
657                 n := int32(0)
658                 for argv_index(argv, argc+1+n) != nil {
659                         n++
660                 }
661
662                 for i := int32(0); i < n; i++ {
663                         p := argv_index(argv, argc+1+i)
664                         s := unsafe.String(p, findnull(p))
665
666                         if hasPrefix(s, prefix) {
667                                 env = gostring(p)[len(prefix):]
668                                 break
669                         }
670                 }
671         }
672         return env
673 }
674
675 // The bootstrap sequence is:
676 //
677 //      call osinit
678 //      call schedinit
679 //      make & queue new G
680 //      call runtime·mstart
681 //
682 // The new G calls runtime·main.
683 func schedinit() {
684         lockInit(&sched.lock, lockRankSched)
685         lockInit(&sched.sysmonlock, lockRankSysmon)
686         lockInit(&sched.deferlock, lockRankDefer)
687         lockInit(&sched.sudoglock, lockRankSudog)
688         lockInit(&deadlock, lockRankDeadlock)
689         lockInit(&paniclk, lockRankPanic)
690         lockInit(&allglock, lockRankAllg)
691         lockInit(&allpLock, lockRankAllp)
692         lockInit(&reflectOffs.lock, lockRankReflectOffs)
693         lockInit(&finlock, lockRankFin)
694         lockInit(&cpuprof.lock, lockRankCpuprof)
695         traceLockInit()
696         // Enforce that this lock is always a leaf lock.
697         // All of this lock's critical sections should be
698         // extremely short.
699         lockInit(&memstats.heapStats.noPLock, lockRankLeafRank)
700
701         // raceinit must be the first call to race detector.
702         // In particular, it must be done before mallocinit below calls racemapshadow.
703         gp := getg()
704         if raceenabled {
705                 gp.racectx, raceprocctx0 = raceinit()
706         }
707
708         sched.maxmcount = 10000
709
710         // The world starts stopped.
711         worldStopped()
712
713         moduledataverify()
714         stackinit()
715         mallocinit()
716         godebug := getGodebugEarly()
717         initPageTrace(godebug) // must run after mallocinit but before anything allocates
718         cpuinit(godebug)       // must run before alginit
719         alginit()              // maps, hash, fastrand must not be used before this call
720         fastrandinit()         // must run before mcommoninit
721         mcommoninit(gp.m, -1)
722         modulesinit()   // provides activeModules
723         typelinksinit() // uses maps, activeModules
724         itabsinit()     // uses activeModules
725         stkobjinit()    // must run before GC starts
726
727         sigsave(&gp.m.sigmask)
728         initSigmask = gp.m.sigmask
729
730         goargs()
731         goenvs()
732         parsedebugvars()
733         gcinit()
734
735         // if disableMemoryProfiling is set, update MemProfileRate to 0 to turn off memprofile.
736         // Note: parsedebugvars may update MemProfileRate, but when disableMemoryProfiling is
737         // set to true by the linker, it means that nothing is consuming the profile, it is
738         // safe to set MemProfileRate to 0.
739         if disableMemoryProfiling {
740                 MemProfileRate = 0
741         }
742
743         lock(&sched.lock)
744         sched.lastpoll.Store(nanotime())
745         procs := ncpu
746         if n, ok := atoi32(gogetenv("GOMAXPROCS")); ok && n > 0 {
747                 procs = n
748         }
749         if procresize(procs) != nil {
750                 throw("unknown runnable goroutine during bootstrap")
751         }
752         unlock(&sched.lock)
753
754         // World is effectively started now, as P's can run.
755         worldStarted()
756
757         if buildVersion == "" {
758                 // Condition should never trigger. This code just serves
759                 // to ensure runtime·buildVersion is kept in the resulting binary.
760                 buildVersion = "unknown"
761         }
762         if len(modinfo) == 1 {
763                 // Condition should never trigger. This code just serves
764                 // to ensure runtime·modinfo is kept in the resulting binary.
765                 modinfo = ""
766         }
767 }
768
769 func dumpgstatus(gp *g) {
770         thisg := getg()
771         print("runtime:   gp: gp=", gp, ", goid=", gp.goid, ", gp->atomicstatus=", readgstatus(gp), "\n")
772         print("runtime: getg:  g=", thisg, ", goid=", thisg.goid, ",  g->atomicstatus=", readgstatus(thisg), "\n")
773 }
774
775 // sched.lock must be held.
776 func checkmcount() {
777         assertLockHeld(&sched.lock)
778
779         // Exclude extra M's, which are used for cgocallback from threads
780         // created in C.
781         //
782         // The purpose of the SetMaxThreads limit is to avoid accidental fork
783         // bomb from something like millions of goroutines blocking on system
784         // calls, causing the runtime to create millions of threads. By
785         // definition, this isn't a problem for threads created in C, so we
786         // exclude them from the limit. See https://go.dev/issue/60004.
787         count := mcount() - int32(extraMInUse.Load()) - int32(extraMLength.Load())
788         if count > sched.maxmcount {
789                 print("runtime: program exceeds ", sched.maxmcount, "-thread limit\n")
790                 throw("thread exhaustion")
791         }
792 }
793
794 // mReserveID returns the next ID to use for a new m. This new m is immediately
795 // considered 'running' by checkdead.
796 //
797 // sched.lock must be held.
798 func mReserveID() int64 {
799         assertLockHeld(&sched.lock)
800
801         if sched.mnext+1 < sched.mnext {
802                 throw("runtime: thread ID overflow")
803         }
804         id := sched.mnext
805         sched.mnext++
806         checkmcount()
807         return id
808 }
809
810 // Pre-allocated ID may be passed as 'id', or omitted by passing -1.
811 func mcommoninit(mp *m, id int64) {
812         gp := getg()
813
814         // g0 stack won't make sense for user (and is not necessary unwindable).
815         if gp != gp.m.g0 {
816                 callers(1, mp.createstack[:])
817         }
818
819         lock(&sched.lock)
820
821         if id >= 0 {
822                 mp.id = id
823         } else {
824                 mp.id = mReserveID()
825         }
826
827         lo := uint32(int64Hash(uint64(mp.id), fastrandseed))
828         hi := uint32(int64Hash(uint64(cputicks()), ^fastrandseed))
829         if lo|hi == 0 {
830                 hi = 1
831         }
832         // Same behavior as for 1.17.
833         // TODO: Simplify this.
834         if goarch.BigEndian {
835                 mp.fastrand = uint64(lo)<<32 | uint64(hi)
836         } else {
837                 mp.fastrand = uint64(hi)<<32 | uint64(lo)
838         }
839
840         mpreinit(mp)
841         if mp.gsignal != nil {
842                 mp.gsignal.stackguard1 = mp.gsignal.stack.lo + stackGuard
843         }
844
845         // Add to allm so garbage collector doesn't free g->m
846         // when it is just in a register or thread-local storage.
847         mp.alllink = allm
848
849         // NumCgoCall() iterates over allm w/o schedlock,
850         // so we need to publish it safely.
851         atomicstorep(unsafe.Pointer(&allm), unsafe.Pointer(mp))
852         unlock(&sched.lock)
853
854         // Allocate memory to hold a cgo traceback if the cgo call crashes.
855         if iscgo || GOOS == "solaris" || GOOS == "illumos" || GOOS == "windows" {
856                 mp.cgoCallers = new(cgoCallers)
857         }
858 }
859
860 func (mp *m) becomeSpinning() {
861         mp.spinning = true
862         sched.nmspinning.Add(1)
863         sched.needspinning.Store(0)
864 }
865
866 func (mp *m) hasCgoOnStack() bool {
867         return mp.ncgo > 0 || mp.isextra
868 }
869
870 var fastrandseed uintptr
871
872 func fastrandinit() {
873         s := (*[unsafe.Sizeof(fastrandseed)]byte)(unsafe.Pointer(&fastrandseed))[:]
874         getRandomData(s)
875 }
876
877 // Mark gp ready to run.
878 func ready(gp *g, traceskip int, next bool) {
879         if traceEnabled() {
880                 traceGoUnpark(gp, traceskip)
881         }
882
883         status := readgstatus(gp)
884
885         // Mark runnable.
886         mp := acquirem() // disable preemption because it can be holding p in a local var
887         if status&^_Gscan != _Gwaiting {
888                 dumpgstatus(gp)
889                 throw("bad g->status in ready")
890         }
891
892         // status is Gwaiting or Gscanwaiting, make Grunnable and put on runq
893         casgstatus(gp, _Gwaiting, _Grunnable)
894         runqput(mp.p.ptr(), gp, next)
895         wakep()
896         releasem(mp)
897 }
898
899 // freezeStopWait is a large value that freezetheworld sets
900 // sched.stopwait to in order to request that all Gs permanently stop.
901 const freezeStopWait = 0x7fffffff
902
903 // freezing is set to non-zero if the runtime is trying to freeze the
904 // world.
905 var freezing atomic.Bool
906
907 // Similar to stopTheWorld but best-effort and can be called several times.
908 // There is no reverse operation, used during crashing.
909 // This function must not lock any mutexes.
910 func freezetheworld() {
911         freezing.Store(true)
912         // stopwait and preemption requests can be lost
913         // due to races with concurrently executing threads,
914         // so try several times
915         for i := 0; i < 5; i++ {
916                 // this should tell the scheduler to not start any new goroutines
917                 sched.stopwait = freezeStopWait
918                 sched.gcwaiting.Store(true)
919                 // this should stop running goroutines
920                 if !preemptall() {
921                         break // no running goroutines
922                 }
923                 usleep(1000)
924         }
925         // to be sure
926         usleep(1000)
927         preemptall()
928         usleep(1000)
929 }
930
931 // All reads and writes of g's status go through readgstatus, casgstatus
932 // castogscanstatus, casfrom_Gscanstatus.
933 //
934 //go:nosplit
935 func readgstatus(gp *g) uint32 {
936         return gp.atomicstatus.Load()
937 }
938
939 // The Gscanstatuses are acting like locks and this releases them.
940 // If it proves to be a performance hit we should be able to make these
941 // simple atomic stores but for now we are going to throw if
942 // we see an inconsistent state.
943 func casfrom_Gscanstatus(gp *g, oldval, newval uint32) {
944         success := false
945
946         // Check that transition is valid.
947         switch oldval {
948         default:
949                 print("runtime: casfrom_Gscanstatus bad oldval gp=", gp, ", oldval=", hex(oldval), ", newval=", hex(newval), "\n")
950                 dumpgstatus(gp)
951                 throw("casfrom_Gscanstatus:top gp->status is not in scan state")
952         case _Gscanrunnable,
953                 _Gscanwaiting,
954                 _Gscanrunning,
955                 _Gscansyscall,
956                 _Gscanpreempted:
957                 if newval == oldval&^_Gscan {
958                         success = gp.atomicstatus.CompareAndSwap(oldval, newval)
959                 }
960         }
961         if !success {
962                 print("runtime: casfrom_Gscanstatus failed gp=", gp, ", oldval=", hex(oldval), ", newval=", hex(newval), "\n")
963                 dumpgstatus(gp)
964                 throw("casfrom_Gscanstatus: gp->status is not in scan state")
965         }
966         releaseLockRank(lockRankGscan)
967 }
968
969 // This will return false if the gp is not in the expected status and the cas fails.
970 // This acts like a lock acquire while the casfromgstatus acts like a lock release.
971 func castogscanstatus(gp *g, oldval, newval uint32) bool {
972         switch oldval {
973         case _Grunnable,
974                 _Grunning,
975                 _Gwaiting,
976                 _Gsyscall:
977                 if newval == oldval|_Gscan {
978                         r := gp.atomicstatus.CompareAndSwap(oldval, newval)
979                         if r {
980                                 acquireLockRank(lockRankGscan)
981                         }
982                         return r
983
984                 }
985         }
986         print("runtime: castogscanstatus oldval=", hex(oldval), " newval=", hex(newval), "\n")
987         throw("castogscanstatus")
988         panic("not reached")
989 }
990
991 // casgstatusAlwaysTrack is a debug flag that causes casgstatus to always track
992 // various latencies on every transition instead of sampling them.
993 var casgstatusAlwaysTrack = false
994
995 // If asked to move to or from a Gscanstatus this will throw. Use the castogscanstatus
996 // and casfrom_Gscanstatus instead.
997 // casgstatus will loop if the g->atomicstatus is in a Gscan status until the routine that
998 // put it in the Gscan state is finished.
999 //
1000 //go:nosplit
1001 func casgstatus(gp *g, oldval, newval uint32) {
1002         if (oldval&_Gscan != 0) || (newval&_Gscan != 0) || oldval == newval {
1003                 systemstack(func() {
1004                         print("runtime: casgstatus: oldval=", hex(oldval), " newval=", hex(newval), "\n")
1005                         throw("casgstatus: bad incoming values")
1006                 })
1007         }
1008
1009         acquireLockRank(lockRankGscan)
1010         releaseLockRank(lockRankGscan)
1011
1012         // See https://golang.org/cl/21503 for justification of the yield delay.
1013         const yieldDelay = 5 * 1000
1014         var nextYield int64
1015
1016         // loop if gp->atomicstatus is in a scan state giving
1017         // GC time to finish and change the state to oldval.
1018         for i := 0; !gp.atomicstatus.CompareAndSwap(oldval, newval); i++ {
1019                 if oldval == _Gwaiting && gp.atomicstatus.Load() == _Grunnable {
1020                         throw("casgstatus: waiting for Gwaiting but is Grunnable")
1021                 }
1022                 if i == 0 {
1023                         nextYield = nanotime() + yieldDelay
1024                 }
1025                 if nanotime() < nextYield {
1026                         for x := 0; x < 10 && gp.atomicstatus.Load() != oldval; x++ {
1027                                 procyield(1)
1028                         }
1029                 } else {
1030                         osyield()
1031                         nextYield = nanotime() + yieldDelay/2
1032                 }
1033         }
1034
1035         if oldval == _Grunning {
1036                 // Track every gTrackingPeriod time a goroutine transitions out of running.
1037                 if casgstatusAlwaysTrack || gp.trackingSeq%gTrackingPeriod == 0 {
1038                         gp.tracking = true
1039                 }
1040                 gp.trackingSeq++
1041         }
1042         if !gp.tracking {
1043                 return
1044         }
1045
1046         // Handle various kinds of tracking.
1047         //
1048         // Currently:
1049         // - Time spent in runnable.
1050         // - Time spent blocked on a sync.Mutex or sync.RWMutex.
1051         switch oldval {
1052         case _Grunnable:
1053                 // We transitioned out of runnable, so measure how much
1054                 // time we spent in this state and add it to
1055                 // runnableTime.
1056                 now := nanotime()
1057                 gp.runnableTime += now - gp.trackingStamp
1058                 gp.trackingStamp = 0
1059         case _Gwaiting:
1060                 if !gp.waitreason.isMutexWait() {
1061                         // Not blocking on a lock.
1062                         break
1063                 }
1064                 // Blocking on a lock, measure it. Note that because we're
1065                 // sampling, we have to multiply by our sampling period to get
1066                 // a more representative estimate of the absolute value.
1067                 // gTrackingPeriod also represents an accurate sampling period
1068                 // because we can only enter this state from _Grunning.
1069                 now := nanotime()
1070                 sched.totalMutexWaitTime.Add((now - gp.trackingStamp) * gTrackingPeriod)
1071                 gp.trackingStamp = 0
1072         }
1073         switch newval {
1074         case _Gwaiting:
1075                 if !gp.waitreason.isMutexWait() {
1076                         // Not blocking on a lock.
1077                         break
1078                 }
1079                 // Blocking on a lock. Write down the timestamp.
1080                 now := nanotime()
1081                 gp.trackingStamp = now
1082         case _Grunnable:
1083                 // We just transitioned into runnable, so record what
1084                 // time that happened.
1085                 now := nanotime()
1086                 gp.trackingStamp = now
1087         case _Grunning:
1088                 // We're transitioning into running, so turn off
1089                 // tracking and record how much time we spent in
1090                 // runnable.
1091                 gp.tracking = false
1092                 sched.timeToRun.record(gp.runnableTime)
1093                 gp.runnableTime = 0
1094         }
1095 }
1096
1097 // casGToWaiting transitions gp from old to _Gwaiting, and sets the wait reason.
1098 //
1099 // Use this over casgstatus when possible to ensure that a waitreason is set.
1100 func casGToWaiting(gp *g, old uint32, reason waitReason) {
1101         // Set the wait reason before calling casgstatus, because casgstatus will use it.
1102         gp.waitreason = reason
1103         casgstatus(gp, old, _Gwaiting)
1104 }
1105
1106 // casgstatus(gp, oldstatus, Gcopystack), assuming oldstatus is Gwaiting or Grunnable.
1107 // Returns old status. Cannot call casgstatus directly, because we are racing with an
1108 // async wakeup that might come in from netpoll. If we see Gwaiting from the readgstatus,
1109 // it might have become Grunnable by the time we get to the cas. If we called casgstatus,
1110 // it would loop waiting for the status to go back to Gwaiting, which it never will.
1111 //
1112 //go:nosplit
1113 func casgcopystack(gp *g) uint32 {
1114         for {
1115                 oldstatus := readgstatus(gp) &^ _Gscan
1116                 if oldstatus != _Gwaiting && oldstatus != _Grunnable {
1117                         throw("copystack: bad status, not Gwaiting or Grunnable")
1118                 }
1119                 if gp.atomicstatus.CompareAndSwap(oldstatus, _Gcopystack) {
1120                         return oldstatus
1121                 }
1122         }
1123 }
1124
1125 // casGToPreemptScan transitions gp from _Grunning to _Gscan|_Gpreempted.
1126 //
1127 // TODO(austin): This is the only status operation that both changes
1128 // the status and locks the _Gscan bit. Rethink this.
1129 func casGToPreemptScan(gp *g, old, new uint32) {
1130         if old != _Grunning || new != _Gscan|_Gpreempted {
1131                 throw("bad g transition")
1132         }
1133         acquireLockRank(lockRankGscan)
1134         for !gp.atomicstatus.CompareAndSwap(_Grunning, _Gscan|_Gpreempted) {
1135         }
1136 }
1137
1138 // casGFromPreempted attempts to transition gp from _Gpreempted to
1139 // _Gwaiting. If successful, the caller is responsible for
1140 // re-scheduling gp.
1141 func casGFromPreempted(gp *g, old, new uint32) bool {
1142         if old != _Gpreempted || new != _Gwaiting {
1143                 throw("bad g transition")
1144         }
1145         gp.waitreason = waitReasonPreempted
1146         return gp.atomicstatus.CompareAndSwap(_Gpreempted, _Gwaiting)
1147 }
1148
1149 // stopTheWorld stops all P's from executing goroutines, interrupting
1150 // all goroutines at GC safe points and records reason as the reason
1151 // for the stop. On return, only the current goroutine's P is running.
1152 // stopTheWorld must not be called from a system stack and the caller
1153 // must not hold worldsema. The caller must call startTheWorld when
1154 // other P's should resume execution.
1155 //
1156 // stopTheWorld is safe for multiple goroutines to call at the
1157 // same time. Each will execute its own stop, and the stops will
1158 // be serialized.
1159 //
1160 // This is also used by routines that do stack dumps. If the system is
1161 // in panic or being exited, this may not reliably stop all
1162 // goroutines.
1163 func stopTheWorld(reason string) {
1164         semacquire(&worldsema)
1165         gp := getg()
1166         gp.m.preemptoff = reason
1167         systemstack(func() {
1168                 // Mark the goroutine which called stopTheWorld preemptible so its
1169                 // stack may be scanned.
1170                 // This lets a mark worker scan us while we try to stop the world
1171                 // since otherwise we could get in a mutual preemption deadlock.
1172                 // We must not modify anything on the G stack because a stack shrink
1173                 // may occur. A stack shrink is otherwise OK though because in order
1174                 // to return from this function (and to leave the system stack) we
1175                 // must have preempted all goroutines, including any attempting
1176                 // to scan our stack, in which case, any stack shrinking will
1177                 // have already completed by the time we exit.
1178                 // Don't provide a wait reason because we're still executing.
1179                 casGToWaiting(gp, _Grunning, waitReasonStoppingTheWorld)
1180                 stopTheWorldWithSema()
1181                 casgstatus(gp, _Gwaiting, _Grunning)
1182         })
1183 }
1184
1185 // startTheWorld undoes the effects of stopTheWorld.
1186 func startTheWorld() {
1187         systemstack(func() { startTheWorldWithSema(false) })
1188
1189         // worldsema must be held over startTheWorldWithSema to ensure
1190         // gomaxprocs cannot change while worldsema is held.
1191         //
1192         // Release worldsema with direct handoff to the next waiter, but
1193         // acquirem so that semrelease1 doesn't try to yield our time.
1194         //
1195         // Otherwise if e.g. ReadMemStats is being called in a loop,
1196         // it might stomp on other attempts to stop the world, such as
1197         // for starting or ending GC. The operation this blocks is
1198         // so heavy-weight that we should just try to be as fair as
1199         // possible here.
1200         //
1201         // We don't want to just allow us to get preempted between now
1202         // and releasing the semaphore because then we keep everyone
1203         // (including, for example, GCs) waiting longer.
1204         mp := acquirem()
1205         mp.preemptoff = ""
1206         semrelease1(&worldsema, true, 0)
1207         releasem(mp)
1208 }
1209
1210 // stopTheWorldGC has the same effect as stopTheWorld, but blocks
1211 // until the GC is not running. It also blocks a GC from starting
1212 // until startTheWorldGC is called.
1213 func stopTheWorldGC(reason string) {
1214         semacquire(&gcsema)
1215         stopTheWorld(reason)
1216 }
1217
1218 // startTheWorldGC undoes the effects of stopTheWorldGC.
1219 func startTheWorldGC() {
1220         startTheWorld()
1221         semrelease(&gcsema)
1222 }
1223
1224 // Holding worldsema grants an M the right to try to stop the world.
1225 var worldsema uint32 = 1
1226
1227 // Holding gcsema grants the M the right to block a GC, and blocks
1228 // until the current GC is done. In particular, it prevents gomaxprocs
1229 // from changing concurrently.
1230 //
1231 // TODO(mknyszek): Once gomaxprocs and the execution tracer can handle
1232 // being changed/enabled during a GC, remove this.
1233 var gcsema uint32 = 1
1234
1235 // stopTheWorldWithSema is the core implementation of stopTheWorld.
1236 // The caller is responsible for acquiring worldsema and disabling
1237 // preemption first and then should stopTheWorldWithSema on the system
1238 // stack:
1239 //
1240 //      semacquire(&worldsema, 0)
1241 //      m.preemptoff = "reason"
1242 //      systemstack(stopTheWorldWithSema)
1243 //
1244 // When finished, the caller must either call startTheWorld or undo
1245 // these three operations separately:
1246 //
1247 //      m.preemptoff = ""
1248 //      systemstack(startTheWorldWithSema)
1249 //      semrelease(&worldsema)
1250 //
1251 // It is allowed to acquire worldsema once and then execute multiple
1252 // startTheWorldWithSema/stopTheWorldWithSema pairs.
1253 // Other P's are able to execute between successive calls to
1254 // startTheWorldWithSema and stopTheWorldWithSema.
1255 // Holding worldsema causes any other goroutines invoking
1256 // stopTheWorld to block.
1257 func stopTheWorldWithSema() {
1258         gp := getg()
1259
1260         // If we hold a lock, then we won't be able to stop another M
1261         // that is blocked trying to acquire the lock.
1262         if gp.m.locks > 0 {
1263                 throw("stopTheWorld: holding locks")
1264         }
1265
1266         lock(&sched.lock)
1267         sched.stopwait = gomaxprocs
1268         sched.gcwaiting.Store(true)
1269         preemptall()
1270         // stop current P
1271         gp.m.p.ptr().status = _Pgcstop // Pgcstop is only diagnostic.
1272         sched.stopwait--
1273         // try to retake all P's in Psyscall status
1274         for _, pp := range allp {
1275                 s := pp.status
1276                 if s == _Psyscall && atomic.Cas(&pp.status, s, _Pgcstop) {
1277                         if traceEnabled() {
1278                                 traceGoSysBlock(pp)
1279                                 traceProcStop(pp)
1280                         }
1281                         pp.syscalltick++
1282                         sched.stopwait--
1283                 }
1284         }
1285         // stop idle P's
1286         now := nanotime()
1287         for {
1288                 pp, _ := pidleget(now)
1289                 if pp == nil {
1290                         break
1291                 }
1292                 pp.status = _Pgcstop
1293                 sched.stopwait--
1294         }
1295         wait := sched.stopwait > 0
1296         unlock(&sched.lock)
1297
1298         // wait for remaining P's to stop voluntarily
1299         if wait {
1300                 for {
1301                         // wait for 100us, then try to re-preempt in case of any races
1302                         if notetsleep(&sched.stopnote, 100*1000) {
1303                                 noteclear(&sched.stopnote)
1304                                 break
1305                         }
1306                         preemptall()
1307                 }
1308         }
1309
1310         // sanity checks
1311         bad := ""
1312         if sched.stopwait != 0 {
1313                 bad = "stopTheWorld: not stopped (stopwait != 0)"
1314         } else {
1315                 for _, pp := range allp {
1316                         if pp.status != _Pgcstop {
1317                                 bad = "stopTheWorld: not stopped (status != _Pgcstop)"
1318                         }
1319                 }
1320         }
1321         if freezing.Load() {
1322                 // Some other thread is panicking. This can cause the
1323                 // sanity checks above to fail if the panic happens in
1324                 // the signal handler on a stopped thread. Either way,
1325                 // we should halt this thread.
1326                 lock(&deadlock)
1327                 lock(&deadlock)
1328         }
1329         if bad != "" {
1330                 throw(bad)
1331         }
1332
1333         worldStopped()
1334 }
1335
1336 func startTheWorldWithSema(emitTraceEvent bool) int64 {
1337         assertWorldStopped()
1338
1339         mp := acquirem() // disable preemption because it can be holding p in a local var
1340         if netpollinited() {
1341                 list := netpoll(0) // non-blocking
1342                 injectglist(&list)
1343         }
1344         lock(&sched.lock)
1345
1346         procs := gomaxprocs
1347         if newprocs != 0 {
1348                 procs = newprocs
1349                 newprocs = 0
1350         }
1351         p1 := procresize(procs)
1352         sched.gcwaiting.Store(false)
1353         if sched.sysmonwait.Load() {
1354                 sched.sysmonwait.Store(false)
1355                 notewakeup(&sched.sysmonnote)
1356         }
1357         unlock(&sched.lock)
1358
1359         worldStarted()
1360
1361         for p1 != nil {
1362                 p := p1
1363                 p1 = p1.link.ptr()
1364                 if p.m != 0 {
1365                         mp := p.m.ptr()
1366                         p.m = 0
1367                         if mp.nextp != 0 {
1368                                 throw("startTheWorld: inconsistent mp->nextp")
1369                         }
1370                         mp.nextp.set(p)
1371                         notewakeup(&mp.park)
1372                 } else {
1373                         // Start M to run P.  Do not start another M below.
1374                         newm(nil, p, -1)
1375                 }
1376         }
1377
1378         // Capture start-the-world time before doing clean-up tasks.
1379         startTime := nanotime()
1380         if emitTraceEvent {
1381                 traceGCSTWDone()
1382         }
1383
1384         // Wakeup an additional proc in case we have excessive runnable goroutines
1385         // in local queues or in the global queue. If we don't, the proc will park itself.
1386         // If we have lots of excessive work, resetspinning will unpark additional procs as necessary.
1387         wakep()
1388
1389         releasem(mp)
1390
1391         return startTime
1392 }
1393
1394 // usesLibcall indicates whether this runtime performs system calls
1395 // via libcall.
1396 func usesLibcall() bool {
1397         switch GOOS {
1398         case "aix", "darwin", "illumos", "ios", "solaris", "windows":
1399                 return true
1400         case "openbsd":
1401                 return GOARCH == "386" || GOARCH == "amd64" || GOARCH == "arm" || GOARCH == "arm64"
1402         }
1403         return false
1404 }
1405
1406 // mStackIsSystemAllocated indicates whether this runtime starts on a
1407 // system-allocated stack.
1408 func mStackIsSystemAllocated() bool {
1409         switch GOOS {
1410         case "aix", "darwin", "plan9", "illumos", "ios", "solaris", "windows":
1411                 return true
1412         case "openbsd":
1413                 switch GOARCH {
1414                 case "386", "amd64", "arm", "arm64":
1415                         return true
1416                 }
1417         }
1418         return false
1419 }
1420
1421 // mstart is the entry-point for new Ms.
1422 // It is written in assembly, uses ABI0, is marked TOPFRAME, and calls mstart0.
1423 func mstart()
1424
1425 // mstart0 is the Go entry-point for new Ms.
1426 // This must not split the stack because we may not even have stack
1427 // bounds set up yet.
1428 //
1429 // May run during STW (because it doesn't have a P yet), so write
1430 // barriers are not allowed.
1431 //
1432 //go:nosplit
1433 //go:nowritebarrierrec
1434 func mstart0() {
1435         gp := getg()
1436
1437         osStack := gp.stack.lo == 0
1438         if osStack {
1439                 // Initialize stack bounds from system stack.
1440                 // Cgo may have left stack size in stack.hi.
1441                 // minit may update the stack bounds.
1442                 //
1443                 // Note: these bounds may not be very accurate.
1444                 // We set hi to &size, but there are things above
1445                 // it. The 1024 is supposed to compensate this,
1446                 // but is somewhat arbitrary.
1447                 size := gp.stack.hi
1448                 if size == 0 {
1449                         size = 8192 * sys.StackGuardMultiplier
1450                 }
1451                 gp.stack.hi = uintptr(noescape(unsafe.Pointer(&size)))
1452                 gp.stack.lo = gp.stack.hi - size + 1024
1453         }
1454         // Initialize stack guard so that we can start calling regular
1455         // Go code.
1456         gp.stackguard0 = gp.stack.lo + stackGuard
1457         // This is the g0, so we can also call go:systemstack
1458         // functions, which check stackguard1.
1459         gp.stackguard1 = gp.stackguard0
1460         mstart1()
1461
1462         // Exit this thread.
1463         if mStackIsSystemAllocated() {
1464                 // Windows, Solaris, illumos, Darwin, AIX and Plan 9 always system-allocate
1465                 // the stack, but put it in gp.stack before mstart,
1466                 // so the logic above hasn't set osStack yet.
1467                 osStack = true
1468         }
1469         mexit(osStack)
1470 }
1471
1472 // The go:noinline is to guarantee the getcallerpc/getcallersp below are safe,
1473 // so that we can set up g0.sched to return to the call of mstart1 above.
1474 //
1475 //go:noinline
1476 func mstart1() {
1477         gp := getg()
1478
1479         if gp != gp.m.g0 {
1480                 throw("bad runtime·mstart")
1481         }
1482
1483         // Set up m.g0.sched as a label returning to just
1484         // after the mstart1 call in mstart0 above, for use by goexit0 and mcall.
1485         // We're never coming back to mstart1 after we call schedule,
1486         // so other calls can reuse the current frame.
1487         // And goexit0 does a gogo that needs to return from mstart1
1488         // and let mstart0 exit the thread.
1489         gp.sched.g = guintptr(unsafe.Pointer(gp))
1490         gp.sched.pc = getcallerpc()
1491         gp.sched.sp = getcallersp()
1492
1493         asminit()
1494         minit()
1495
1496         // Install signal handlers; after minit so that minit can
1497         // prepare the thread to be able to handle the signals.
1498         if gp.m == &m0 {
1499                 mstartm0()
1500         }
1501
1502         if fn := gp.m.mstartfn; fn != nil {
1503                 fn()
1504         }
1505
1506         if gp.m != &m0 {
1507                 acquirep(gp.m.nextp.ptr())
1508                 gp.m.nextp = 0
1509         }
1510         schedule()
1511 }
1512
1513 // mstartm0 implements part of mstart1 that only runs on the m0.
1514 //
1515 // Write barriers are allowed here because we know the GC can't be
1516 // running yet, so they'll be no-ops.
1517 //
1518 //go:yeswritebarrierrec
1519 func mstartm0() {
1520         // Create an extra M for callbacks on threads not created by Go.
1521         // An extra M is also needed on Windows for callbacks created by
1522         // syscall.NewCallback. See issue #6751 for details.
1523         if (iscgo || GOOS == "windows") && !cgoHasExtraM {
1524                 cgoHasExtraM = true
1525                 newextram()
1526         }
1527         initsig(false)
1528 }
1529
1530 // mPark causes a thread to park itself, returning once woken.
1531 //
1532 //go:nosplit
1533 func mPark() {
1534         gp := getg()
1535         notesleep(&gp.m.park)
1536         noteclear(&gp.m.park)
1537 }
1538
1539 // mexit tears down and exits the current thread.
1540 //
1541 // Don't call this directly to exit the thread, since it must run at
1542 // the top of the thread stack. Instead, use gogo(&gp.m.g0.sched) to
1543 // unwind the stack to the point that exits the thread.
1544 //
1545 // It is entered with m.p != nil, so write barriers are allowed. It
1546 // will release the P before exiting.
1547 //
1548 //go:yeswritebarrierrec
1549 func mexit(osStack bool) {
1550         mp := getg().m
1551
1552         if mp == &m0 {
1553                 // This is the main thread. Just wedge it.
1554                 //
1555                 // On Linux, exiting the main thread puts the process
1556                 // into a non-waitable zombie state. On Plan 9,
1557                 // exiting the main thread unblocks wait even though
1558                 // other threads are still running. On Solaris we can
1559                 // neither exitThread nor return from mstart. Other
1560                 // bad things probably happen on other platforms.
1561                 //
1562                 // We could try to clean up this M more before wedging
1563                 // it, but that complicates signal handling.
1564                 handoffp(releasep())
1565                 lock(&sched.lock)
1566                 sched.nmfreed++
1567                 checkdead()
1568                 unlock(&sched.lock)
1569                 mPark()
1570                 throw("locked m0 woke up")
1571         }
1572
1573         sigblock(true)
1574         unminit()
1575
1576         // Free the gsignal stack.
1577         if mp.gsignal != nil {
1578                 stackfree(mp.gsignal.stack)
1579                 // On some platforms, when calling into VDSO (e.g. nanotime)
1580                 // we store our g on the gsignal stack, if there is one.
1581                 // Now the stack is freed, unlink it from the m, so we
1582                 // won't write to it when calling VDSO code.
1583                 mp.gsignal = nil
1584         }
1585
1586         // Remove m from allm.
1587         lock(&sched.lock)
1588         for pprev := &allm; *pprev != nil; pprev = &(*pprev).alllink {
1589                 if *pprev == mp {
1590                         *pprev = mp.alllink
1591                         goto found
1592                 }
1593         }
1594         throw("m not found in allm")
1595 found:
1596         // Delay reaping m until it's done with the stack.
1597         //
1598         // Put mp on the free list, though it will not be reaped while freeWait
1599         // is freeMWait. mp is no longer reachable via allm, so even if it is
1600         // on an OS stack, we must keep a reference to mp alive so that the GC
1601         // doesn't free mp while we are still using it.
1602         //
1603         // Note that the free list must not be linked through alllink because
1604         // some functions walk allm without locking, so may be using alllink.
1605         mp.freeWait.Store(freeMWait)
1606         mp.freelink = sched.freem
1607         sched.freem = mp
1608         unlock(&sched.lock)
1609
1610         atomic.Xadd64(&ncgocall, int64(mp.ncgocall))
1611
1612         // Release the P.
1613         handoffp(releasep())
1614         // After this point we must not have write barriers.
1615
1616         // Invoke the deadlock detector. This must happen after
1617         // handoffp because it may have started a new M to take our
1618         // P's work.
1619         lock(&sched.lock)
1620         sched.nmfreed++
1621         checkdead()
1622         unlock(&sched.lock)
1623
1624         if GOOS == "darwin" || GOOS == "ios" {
1625                 // Make sure pendingPreemptSignals is correct when an M exits.
1626                 // For #41702.
1627                 if mp.signalPending.Load() != 0 {
1628                         pendingPreemptSignals.Add(-1)
1629                 }
1630         }
1631
1632         // Destroy all allocated resources. After this is called, we may no
1633         // longer take any locks.
1634         mdestroy(mp)
1635
1636         if osStack {
1637                 // No more uses of mp, so it is safe to drop the reference.
1638                 mp.freeWait.Store(freeMRef)
1639
1640                 // Return from mstart and let the system thread
1641                 // library free the g0 stack and terminate the thread.
1642                 return
1643         }
1644
1645         // mstart is the thread's entry point, so there's nothing to
1646         // return to. Exit the thread directly. exitThread will clear
1647         // m.freeWait when it's done with the stack and the m can be
1648         // reaped.
1649         exitThread(&mp.freeWait)
1650 }
1651
1652 // forEachP calls fn(p) for every P p when p reaches a GC safe point.
1653 // If a P is currently executing code, this will bring the P to a GC
1654 // safe point and execute fn on that P. If the P is not executing code
1655 // (it is idle or in a syscall), this will call fn(p) directly while
1656 // preventing the P from exiting its state. This does not ensure that
1657 // fn will run on every CPU executing Go code, but it acts as a global
1658 // memory barrier. GC uses this as a "ragged barrier."
1659 //
1660 // The caller must hold worldsema.
1661 //
1662 //go:systemstack
1663 func forEachP(fn func(*p)) {
1664         mp := acquirem()
1665         pp := getg().m.p.ptr()
1666
1667         lock(&sched.lock)
1668         if sched.safePointWait != 0 {
1669                 throw("forEachP: sched.safePointWait != 0")
1670         }
1671         sched.safePointWait = gomaxprocs - 1
1672         sched.safePointFn = fn
1673
1674         // Ask all Ps to run the safe point function.
1675         for _, p2 := range allp {
1676                 if p2 != pp {
1677                         atomic.Store(&p2.runSafePointFn, 1)
1678                 }
1679         }
1680         preemptall()
1681
1682         // Any P entering _Pidle or _Psyscall from now on will observe
1683         // p.runSafePointFn == 1 and will call runSafePointFn when
1684         // changing its status to _Pidle/_Psyscall.
1685
1686         // Run safe point function for all idle Ps. sched.pidle will
1687         // not change because we hold sched.lock.
1688         for p := sched.pidle.ptr(); p != nil; p = p.link.ptr() {
1689                 if atomic.Cas(&p.runSafePointFn, 1, 0) {
1690                         fn(p)
1691                         sched.safePointWait--
1692                 }
1693         }
1694
1695         wait := sched.safePointWait > 0
1696         unlock(&sched.lock)
1697
1698         // Run fn for the current P.
1699         fn(pp)
1700
1701         // Force Ps currently in _Psyscall into _Pidle and hand them
1702         // off to induce safe point function execution.
1703         for _, p2 := range allp {
1704                 s := p2.status
1705                 if s == _Psyscall && p2.runSafePointFn == 1 && atomic.Cas(&p2.status, s, _Pidle) {
1706                         if traceEnabled() {
1707                                 traceGoSysBlock(p2)
1708                                 traceProcStop(p2)
1709                         }
1710                         p2.syscalltick++
1711                         handoffp(p2)
1712                 }
1713         }
1714
1715         // Wait for remaining Ps to run fn.
1716         if wait {
1717                 for {
1718                         // Wait for 100us, then try to re-preempt in
1719                         // case of any races.
1720                         //
1721                         // Requires system stack.
1722                         if notetsleep(&sched.safePointNote, 100*1000) {
1723                                 noteclear(&sched.safePointNote)
1724                                 break
1725                         }
1726                         preemptall()
1727                 }
1728         }
1729         if sched.safePointWait != 0 {
1730                 throw("forEachP: not done")
1731         }
1732         for _, p2 := range allp {
1733                 if p2.runSafePointFn != 0 {
1734                         throw("forEachP: P did not run fn")
1735                 }
1736         }
1737
1738         lock(&sched.lock)
1739         sched.safePointFn = nil
1740         unlock(&sched.lock)
1741         releasem(mp)
1742 }
1743
1744 // runSafePointFn runs the safe point function, if any, for this P.
1745 // This should be called like
1746 //
1747 //      if getg().m.p.runSafePointFn != 0 {
1748 //          runSafePointFn()
1749 //      }
1750 //
1751 // runSafePointFn must be checked on any transition in to _Pidle or
1752 // _Psyscall to avoid a race where forEachP sees that the P is running
1753 // just before the P goes into _Pidle/_Psyscall and neither forEachP
1754 // nor the P run the safe-point function.
1755 func runSafePointFn() {
1756         p := getg().m.p.ptr()
1757         // Resolve the race between forEachP running the safe-point
1758         // function on this P's behalf and this P running the
1759         // safe-point function directly.
1760         if !atomic.Cas(&p.runSafePointFn, 1, 0) {
1761                 return
1762         }
1763         sched.safePointFn(p)
1764         lock(&sched.lock)
1765         sched.safePointWait--
1766         if sched.safePointWait == 0 {
1767                 notewakeup(&sched.safePointNote)
1768         }
1769         unlock(&sched.lock)
1770 }
1771
1772 // When running with cgo, we call _cgo_thread_start
1773 // to start threads for us so that we can play nicely with
1774 // foreign code.
1775 var cgoThreadStart unsafe.Pointer
1776
1777 type cgothreadstart struct {
1778         g   guintptr
1779         tls *uint64
1780         fn  unsafe.Pointer
1781 }
1782
1783 // Allocate a new m unassociated with any thread.
1784 // Can use p for allocation context if needed.
1785 // fn is recorded as the new m's m.mstartfn.
1786 // id is optional pre-allocated m ID. Omit by passing -1.
1787 //
1788 // This function is allowed to have write barriers even if the caller
1789 // isn't because it borrows pp.
1790 //
1791 //go:yeswritebarrierrec
1792 func allocm(pp *p, fn func(), id int64) *m {
1793         allocmLock.rlock()
1794
1795         // The caller owns pp, but we may borrow (i.e., acquirep) it. We must
1796         // disable preemption to ensure it is not stolen, which would make the
1797         // caller lose ownership.
1798         acquirem()
1799
1800         gp := getg()
1801         if gp.m.p == 0 {
1802                 acquirep(pp) // temporarily borrow p for mallocs in this function
1803         }
1804
1805         // Release the free M list. We need to do this somewhere and
1806         // this may free up a stack we can use.
1807         if sched.freem != nil {
1808                 lock(&sched.lock)
1809                 var newList *m
1810                 for freem := sched.freem; freem != nil; {
1811                         wait := freem.freeWait.Load()
1812                         if wait == freeMWait {
1813                                 next := freem.freelink
1814                                 freem.freelink = newList
1815                                 newList = freem
1816                                 freem = next
1817                                 continue
1818                         }
1819                         // Free the stack if needed. For freeMRef, there is
1820                         // nothing to do except drop freem from the sched.freem
1821                         // list.
1822                         if wait == freeMStack {
1823                                 // stackfree must be on the system stack, but allocm is
1824                                 // reachable off the system stack transitively from
1825                                 // startm.
1826                                 systemstack(func() {
1827                                         stackfree(freem.g0.stack)
1828                                 })
1829                         }
1830                         freem = freem.freelink
1831                 }
1832                 sched.freem = newList
1833                 unlock(&sched.lock)
1834         }
1835
1836         mp := new(m)
1837         mp.mstartfn = fn
1838         mcommoninit(mp, id)
1839
1840         // In case of cgo or Solaris or illumos or Darwin, pthread_create will make us a stack.
1841         // Windows and Plan 9 will layout sched stack on OS stack.
1842         if iscgo || mStackIsSystemAllocated() {
1843                 mp.g0 = malg(-1)
1844         } else {
1845                 mp.g0 = malg(8192 * sys.StackGuardMultiplier)
1846         }
1847         mp.g0.m = mp
1848
1849         if pp == gp.m.p.ptr() {
1850                 releasep()
1851         }
1852
1853         releasem(gp.m)
1854         allocmLock.runlock()
1855         return mp
1856 }
1857
1858 // needm is called when a cgo callback happens on a
1859 // thread without an m (a thread not created by Go).
1860 // In this case, needm is expected to find an m to use
1861 // and return with m, g initialized correctly.
1862 // Since m and g are not set now (likely nil, but see below)
1863 // needm is limited in what routines it can call. In particular
1864 // it can only call nosplit functions (textflag 7) and cannot
1865 // do any scheduling that requires an m.
1866 //
1867 // In order to avoid needing heavy lifting here, we adopt
1868 // the following strategy: there is a stack of available m's
1869 // that can be stolen. Using compare-and-swap
1870 // to pop from the stack has ABA races, so we simulate
1871 // a lock by doing an exchange (via Casuintptr) to steal the stack
1872 // head and replace the top pointer with MLOCKED (1).
1873 // This serves as a simple spin lock that we can use even
1874 // without an m. The thread that locks the stack in this way
1875 // unlocks the stack by storing a valid stack head pointer.
1876 //
1877 // In order to make sure that there is always an m structure
1878 // available to be stolen, we maintain the invariant that there
1879 // is always one more than needed. At the beginning of the
1880 // program (if cgo is in use) the list is seeded with a single m.
1881 // If needm finds that it has taken the last m off the list, its job
1882 // is - once it has installed its own m so that it can do things like
1883 // allocate memory - to create a spare m and put it on the list.
1884 //
1885 // Each of these extra m's also has a g0 and a curg that are
1886 // pressed into service as the scheduling stack and current
1887 // goroutine for the duration of the cgo callback.
1888 //
1889 // When the callback is done with the m, it calls dropm to
1890 // put the m back on the list.
1891 //
1892 //go:nosplit
1893 func needm() {
1894         if (iscgo || GOOS == "windows") && !cgoHasExtraM {
1895                 // Can happen if C/C++ code calls Go from a global ctor.
1896                 // Can also happen on Windows if a global ctor uses a
1897                 // callback created by syscall.NewCallback. See issue #6751
1898                 // for details.
1899                 //
1900                 // Can not throw, because scheduler is not initialized yet.
1901                 writeErrStr("fatal error: cgo callback before cgo call\n")
1902                 exit(1)
1903         }
1904
1905         // Save and block signals before getting an M.
1906         // The signal handler may call needm itself,
1907         // and we must avoid a deadlock. Also, once g is installed,
1908         // any incoming signals will try to execute,
1909         // but we won't have the sigaltstack settings and other data
1910         // set up appropriately until the end of minit, which will
1911         // unblock the signals. This is the same dance as when
1912         // starting a new m to run Go code via newosproc.
1913         var sigmask sigset
1914         sigsave(&sigmask)
1915         sigblock(false)
1916
1917         // nilokay=false is safe here because of the invariant above,
1918         // that the extra list always contains or will soon contain
1919         // at least one m.
1920         mp, last := getExtraM(false)
1921
1922         // Set needextram when we've just emptied the list,
1923         // so that the eventual call into cgocallbackg will
1924         // allocate a new m for the extra list. We delay the
1925         // allocation until then so that it can be done
1926         // after exitsyscall makes sure it is okay to be
1927         // running at all (that is, there's no garbage collection
1928         // running right now).
1929         mp.needextram = last
1930
1931         // Store the original signal mask for use by minit.
1932         mp.sigmask = sigmask
1933
1934         // Install TLS on some platforms (previously setg
1935         // would do this if necessary).
1936         osSetupTLS(mp)
1937
1938         // Install g (= m->g0) and set the stack bounds
1939         // to match the current stack. We don't actually know
1940         // how big the stack is, like we don't know how big any
1941         // scheduling stack is, but we assume there's at least 32 kB,
1942         // which is more than enough for us.
1943         setg(mp.g0)
1944         gp := getg()
1945         gp.stack.hi = getcallersp() + 1024
1946         gp.stack.lo = getcallersp() - 32*1024
1947         gp.stackguard0 = gp.stack.lo + stackGuard
1948
1949         // Initialize this thread to use the m.
1950         asminit()
1951         minit()
1952
1953         // mp.curg is now a real goroutine.
1954         casgstatus(mp.curg, _Gdead, _Gsyscall)
1955         sched.ngsys.Add(-1)
1956 }
1957
1958 // newextram allocates m's and puts them on the extra list.
1959 // It is called with a working local m, so that it can do things
1960 // like call schedlock and allocate.
1961 func newextram() {
1962         c := extraMWaiters.Swap(0)
1963         if c > 0 {
1964                 for i := uint32(0); i < c; i++ {
1965                         oneNewExtraM()
1966                 }
1967         } else if extraMLength.Load() == 0 {
1968                 // Make sure there is at least one extra M.
1969                 oneNewExtraM()
1970         }
1971 }
1972
1973 // oneNewExtraM allocates an m and puts it on the extra list.
1974 func oneNewExtraM() {
1975         // Create extra goroutine locked to extra m.
1976         // The goroutine is the context in which the cgo callback will run.
1977         // The sched.pc will never be returned to, but setting it to
1978         // goexit makes clear to the traceback routines where
1979         // the goroutine stack ends.
1980         mp := allocm(nil, nil, -1)
1981         gp := malg(4096)
1982         gp.sched.pc = abi.FuncPCABI0(goexit) + sys.PCQuantum
1983         gp.sched.sp = gp.stack.hi
1984         gp.sched.sp -= 4 * goarch.PtrSize // extra space in case of reads slightly beyond frame
1985         gp.sched.lr = 0
1986         gp.sched.g = guintptr(unsafe.Pointer(gp))
1987         gp.syscallpc = gp.sched.pc
1988         gp.syscallsp = gp.sched.sp
1989         gp.stktopsp = gp.sched.sp
1990         // malg returns status as _Gidle. Change to _Gdead before
1991         // adding to allg where GC can see it. We use _Gdead to hide
1992         // this from tracebacks and stack scans since it isn't a
1993         // "real" goroutine until needm grabs it.
1994         casgstatus(gp, _Gidle, _Gdead)
1995         gp.m = mp
1996         mp.curg = gp
1997         mp.isextra = true
1998         mp.lockedInt++
1999         mp.lockedg.set(gp)
2000         gp.lockedm.set(mp)
2001         gp.goid = sched.goidgen.Add(1)
2002         gp.sysblocktraced = true
2003         if raceenabled {
2004                 gp.racectx = racegostart(abi.FuncPCABIInternal(newextram) + sys.PCQuantum)
2005         }
2006         if traceEnabled() {
2007                 traceOneNewExtraM(gp)
2008         }
2009         // put on allg for garbage collector
2010         allgadd(gp)
2011
2012         // gp is now on the allg list, but we don't want it to be
2013         // counted by gcount. It would be more "proper" to increment
2014         // sched.ngfree, but that requires locking. Incrementing ngsys
2015         // has the same effect.
2016         sched.ngsys.Add(1)
2017
2018         // Add m to the extra list.
2019         addExtraM(mp)
2020 }
2021
2022 // dropm is called when a cgo callback has called needm but is now
2023 // done with the callback and returning back into the non-Go thread.
2024 // It puts the current m back onto the extra list.
2025 //
2026 // The main expense here is the call to signalstack to release the
2027 // m's signal stack, and then the call to needm on the next callback
2028 // from this thread. It is tempting to try to save the m for next time,
2029 // which would eliminate both these costs, but there might not be
2030 // a next time: the current thread (which Go does not control) might exit.
2031 // If we saved the m for that thread, there would be an m leak each time
2032 // such a thread exited. Instead, we acquire and release an m on each
2033 // call. These should typically not be scheduling operations, just a few
2034 // atomics, so the cost should be small.
2035 //
2036 // TODO(rsc): An alternative would be to allocate a dummy pthread per-thread
2037 // variable using pthread_key_create. Unlike the pthread keys we already use
2038 // on OS X, this dummy key would never be read by Go code. It would exist
2039 // only so that we could register at thread-exit-time destructor.
2040 // That destructor would put the m back onto the extra list.
2041 // This is purely a performance optimization. The current version,
2042 // in which dropm happens on each cgo call, is still correct too.
2043 // We may have to keep the current version on systems with cgo
2044 // but without pthreads, like Windows.
2045 func dropm() {
2046         // Clear m and g, and return m to the extra list.
2047         // After the call to setg we can only call nosplit functions
2048         // with no pointer manipulation.
2049         mp := getg().m
2050
2051         // Return mp.curg to dead state.
2052         casgstatus(mp.curg, _Gsyscall, _Gdead)
2053         mp.curg.preemptStop = false
2054         sched.ngsys.Add(1)
2055
2056         // Block signals before unminit.
2057         // Unminit unregisters the signal handling stack (but needs g on some systems).
2058         // Setg(nil) clears g, which is the signal handler's cue not to run Go handlers.
2059         // It's important not to try to handle a signal between those two steps.
2060         sigmask := mp.sigmask
2061         sigblock(false)
2062         unminit()
2063
2064         setg(nil)
2065
2066         putExtraM(mp)
2067
2068         msigrestore(sigmask)
2069 }
2070
2071 // A helper function for EnsureDropM.
2072 func getm() uintptr {
2073         return uintptr(unsafe.Pointer(getg().m))
2074 }
2075
2076 var (
2077         // Locking linked list of extra M's, via mp.schedlink. Must be accessed
2078         // only via lockextra/unlockextra.
2079         //
2080         // Can't be atomic.Pointer[m] because we use an invalid pointer as a
2081         // "locked" sentinel value. M's on this list remain visible to the GC
2082         // because their mp.curg is on allgs.
2083         extraM atomic.Uintptr
2084         // Number of M's in the extraM list.
2085         extraMLength atomic.Uint32
2086         // Number of waiters in lockextra.
2087         extraMWaiters atomic.Uint32
2088
2089         // Number of extra M's in use by threads.
2090         extraMInUse atomic.Uint32
2091 )
2092
2093 // lockextra locks the extra list and returns the list head.
2094 // The caller must unlock the list by storing a new list head
2095 // to extram. If nilokay is true, then lockextra will
2096 // return a nil list head if that's what it finds. If nilokay is false,
2097 // lockextra will keep waiting until the list head is no longer nil.
2098 //
2099 //go:nosplit
2100 func lockextra(nilokay bool) *m {
2101         const locked = 1
2102
2103         incr := false
2104         for {
2105                 old := extraM.Load()
2106                 if old == locked {
2107                         osyield_no_g()
2108                         continue
2109                 }
2110                 if old == 0 && !nilokay {
2111                         if !incr {
2112                                 // Add 1 to the number of threads
2113                                 // waiting for an M.
2114                                 // This is cleared by newextram.
2115                                 extraMWaiters.Add(1)
2116                                 incr = true
2117                         }
2118                         usleep_no_g(1)
2119                         continue
2120                 }
2121                 if extraM.CompareAndSwap(old, locked) {
2122                         extraMInUse.Add(1)
2123                         return (*m)(unsafe.Pointer(old))
2124                 }
2125                 osyield_no_g()
2126                 continue
2127         }
2128 }
2129
2130 //go:nosplit
2131 func unlockextra(mp *m, delta int32) {
2132         extraMLength.Add(delta)
2133         extraM.Store(uintptr(unsafe.Pointer(mp)))
2134 }
2135
2136 // Return an M from the extra M list. Returns last == true if the list becomes
2137 // empty because of this call.
2138 //
2139 //go:nosplit
2140 func getExtraM(nilokay bool) (mp *m, last bool) {
2141         mp = lockextra(nilokay)
2142         if mp == nil {
2143                 unlockextra(nil, 0)
2144                 return nil, true
2145         }
2146         unlockextra(mp.schedlink.ptr(), -1)
2147         return mp, mp.schedlink.ptr() == nil
2148 }
2149
2150 // Returns an extra M back to the list. mp must be from getExtraM. Newly
2151 // allocated M's should use addExtraM.
2152 //
2153 //go:nosplit
2154 func putExtraM(mp *m) {
2155         extraMInUse.Add(-1)
2156         addExtraM(mp)
2157 }
2158
2159 // Adds a newly allocated M to the extra M list.
2160 //
2161 //go:nosplit
2162 func addExtraM(mp *m) {
2163         mnext := lockextra(true)
2164         mp.schedlink.set(mnext)
2165         unlockextra(mp, 1)
2166 }
2167
2168 var (
2169         // allocmLock is locked for read when creating new Ms in allocm and their
2170         // addition to allm. Thus acquiring this lock for write blocks the
2171         // creation of new Ms.
2172         allocmLock rwmutex
2173
2174         // execLock serializes exec and clone to avoid bugs or unspecified
2175         // behaviour around exec'ing while creating/destroying threads. See
2176         // issue #19546.
2177         execLock rwmutex
2178 )
2179
2180 // These errors are reported (via writeErrStr) by some OS-specific
2181 // versions of newosproc and newosproc0.
2182 const (
2183         failthreadcreate  = "runtime: failed to create new OS thread\n"
2184         failallocatestack = "runtime: failed to allocate stack for the new OS thread\n"
2185 )
2186
2187 // newmHandoff contains a list of m structures that need new OS threads.
2188 // This is used by newm in situations where newm itself can't safely
2189 // start an OS thread.
2190 var newmHandoff struct {
2191         lock mutex
2192
2193         // newm points to a list of M structures that need new OS
2194         // threads. The list is linked through m.schedlink.
2195         newm muintptr
2196
2197         // waiting indicates that wake needs to be notified when an m
2198         // is put on the list.
2199         waiting bool
2200         wake    note
2201
2202         // haveTemplateThread indicates that the templateThread has
2203         // been started. This is not protected by lock. Use cas to set
2204         // to 1.
2205         haveTemplateThread uint32
2206 }
2207
2208 // Create a new m. It will start off with a call to fn, or else the scheduler.
2209 // fn needs to be static and not a heap allocated closure.
2210 // May run with m.p==nil, so write barriers are not allowed.
2211 //
2212 // id is optional pre-allocated m ID. Omit by passing -1.
2213 //
2214 //go:nowritebarrierrec
2215 func newm(fn func(), pp *p, id int64) {
2216         // allocm adds a new M to allm, but they do not start until created by
2217         // the OS in newm1 or the template thread.
2218         //
2219         // doAllThreadsSyscall requires that every M in allm will eventually
2220         // start and be signal-able, even with a STW.
2221         //
2222         // Disable preemption here until we start the thread to ensure that
2223         // newm is not preempted between allocm and starting the new thread,
2224         // ensuring that anything added to allm is guaranteed to eventually
2225         // start.
2226         acquirem()
2227
2228         mp := allocm(pp, fn, id)
2229         mp.nextp.set(pp)
2230         mp.sigmask = initSigmask
2231         if gp := getg(); gp != nil && gp.m != nil && (gp.m.lockedExt != 0 || gp.m.incgo) && GOOS != "plan9" {
2232                 // We're on a locked M or a thread that may have been
2233                 // started by C. The kernel state of this thread may
2234                 // be strange (the user may have locked it for that
2235                 // purpose). We don't want to clone that into another
2236                 // thread. Instead, ask a known-good thread to create
2237                 // the thread for us.
2238                 //
2239                 // This is disabled on Plan 9. See golang.org/issue/22227.
2240                 //
2241                 // TODO: This may be unnecessary on Windows, which
2242                 // doesn't model thread creation off fork.
2243                 lock(&newmHandoff.lock)
2244                 if newmHandoff.haveTemplateThread == 0 {
2245                         throw("on a locked thread with no template thread")
2246                 }
2247                 mp.schedlink = newmHandoff.newm
2248                 newmHandoff.newm.set(mp)
2249                 if newmHandoff.waiting {
2250                         newmHandoff.waiting = false
2251                         notewakeup(&newmHandoff.wake)
2252                 }
2253                 unlock(&newmHandoff.lock)
2254                 // The M has not started yet, but the template thread does not
2255                 // participate in STW, so it will always process queued Ms and
2256                 // it is safe to releasem.
2257                 releasem(getg().m)
2258                 return
2259         }
2260         newm1(mp)
2261         releasem(getg().m)
2262 }
2263
2264 func newm1(mp *m) {
2265         if iscgo {
2266                 var ts cgothreadstart
2267                 if _cgo_thread_start == nil {
2268                         throw("_cgo_thread_start missing")
2269                 }
2270                 ts.g.set(mp.g0)
2271                 ts.tls = (*uint64)(unsafe.Pointer(&mp.tls[0]))
2272                 ts.fn = unsafe.Pointer(abi.FuncPCABI0(mstart))
2273                 if msanenabled {
2274                         msanwrite(unsafe.Pointer(&ts), unsafe.Sizeof(ts))
2275                 }
2276                 if asanenabled {
2277                         asanwrite(unsafe.Pointer(&ts), unsafe.Sizeof(ts))
2278                 }
2279                 execLock.rlock() // Prevent process clone.
2280                 asmcgocall(_cgo_thread_start, unsafe.Pointer(&ts))
2281                 execLock.runlock()
2282                 return
2283         }
2284         execLock.rlock() // Prevent process clone.
2285         newosproc(mp)
2286         execLock.runlock()
2287 }
2288
2289 // startTemplateThread starts the template thread if it is not already
2290 // running.
2291 //
2292 // The calling thread must itself be in a known-good state.
2293 func startTemplateThread() {
2294         if GOARCH == "wasm" { // no threads on wasm yet
2295                 return
2296         }
2297
2298         // Disable preemption to guarantee that the template thread will be
2299         // created before a park once haveTemplateThread is set.
2300         mp := acquirem()
2301         if !atomic.Cas(&newmHandoff.haveTemplateThread, 0, 1) {
2302                 releasem(mp)
2303                 return
2304         }
2305         newm(templateThread, nil, -1)
2306         releasem(mp)
2307 }
2308
2309 // templateThread is a thread in a known-good state that exists solely
2310 // to start new threads in known-good states when the calling thread
2311 // may not be in a good state.
2312 //
2313 // Many programs never need this, so templateThread is started lazily
2314 // when we first enter a state that might lead to running on a thread
2315 // in an unknown state.
2316 //
2317 // templateThread runs on an M without a P, so it must not have write
2318 // barriers.
2319 //
2320 //go:nowritebarrierrec
2321 func templateThread() {
2322         lock(&sched.lock)
2323         sched.nmsys++
2324         checkdead()
2325         unlock(&sched.lock)
2326
2327         for {
2328                 lock(&newmHandoff.lock)
2329                 for newmHandoff.newm != 0 {
2330                         newm := newmHandoff.newm.ptr()
2331                         newmHandoff.newm = 0
2332                         unlock(&newmHandoff.lock)
2333                         for newm != nil {
2334                                 next := newm.schedlink.ptr()
2335                                 newm.schedlink = 0
2336                                 newm1(newm)
2337                                 newm = next
2338                         }
2339                         lock(&newmHandoff.lock)
2340                 }
2341                 newmHandoff.waiting = true
2342                 noteclear(&newmHandoff.wake)
2343                 unlock(&newmHandoff.lock)
2344                 notesleep(&newmHandoff.wake)
2345         }
2346 }
2347
2348 // Stops execution of the current m until new work is available.
2349 // Returns with acquired P.
2350 func stopm() {
2351         gp := getg()
2352
2353         if gp.m.locks != 0 {
2354                 throw("stopm holding locks")
2355         }
2356         if gp.m.p != 0 {
2357                 throw("stopm holding p")
2358         }
2359         if gp.m.spinning {
2360                 throw("stopm spinning")
2361         }
2362
2363         lock(&sched.lock)
2364         mput(gp.m)
2365         unlock(&sched.lock)
2366         mPark()
2367         acquirep(gp.m.nextp.ptr())
2368         gp.m.nextp = 0
2369 }
2370
2371 func mspinning() {
2372         // startm's caller incremented nmspinning. Set the new M's spinning.
2373         getg().m.spinning = true
2374 }
2375
2376 // Schedules some M to run the p (creates an M if necessary).
2377 // If p==nil, tries to get an idle P, if no idle P's does nothing.
2378 // May run with m.p==nil, so write barriers are not allowed.
2379 // If spinning is set, the caller has incremented nmspinning and must provide a
2380 // P. startm will set m.spinning in the newly started M.
2381 //
2382 // Callers passing a non-nil P must call from a non-preemptible context. See
2383 // comment on acquirem below.
2384 //
2385 // Argument lockheld indicates whether the caller already acquired the
2386 // scheduler lock. Callers holding the lock when making the call must pass
2387 // true. The lock might be temporarily dropped, but will be reacquired before
2388 // returning.
2389 //
2390 // Must not have write barriers because this may be called without a P.
2391 //
2392 //go:nowritebarrierrec
2393 func startm(pp *p, spinning, lockheld bool) {
2394         // Disable preemption.
2395         //
2396         // Every owned P must have an owner that will eventually stop it in the
2397         // event of a GC stop request. startm takes transient ownership of a P
2398         // (either from argument or pidleget below) and transfers ownership to
2399         // a started M, which will be responsible for performing the stop.
2400         //
2401         // Preemption must be disabled during this transient ownership,
2402         // otherwise the P this is running on may enter GC stop while still
2403         // holding the transient P, leaving that P in limbo and deadlocking the
2404         // STW.
2405         //
2406         // Callers passing a non-nil P must already be in non-preemptible
2407         // context, otherwise such preemption could occur on function entry to
2408         // startm. Callers passing a nil P may be preemptible, so we must
2409         // disable preemption before acquiring a P from pidleget below.
2410         mp := acquirem()
2411         if !lockheld {
2412                 lock(&sched.lock)
2413         }
2414         if pp == nil {
2415                 if spinning {
2416                         // TODO(prattmic): All remaining calls to this function
2417                         // with _p_ == nil could be cleaned up to find a P
2418                         // before calling startm.
2419                         throw("startm: P required for spinning=true")
2420                 }
2421                 pp, _ = pidleget(0)
2422                 if pp == nil {
2423                         if !lockheld {
2424                                 unlock(&sched.lock)
2425                         }
2426                         releasem(mp)
2427                         return
2428                 }
2429         }
2430         nmp := mget()
2431         if nmp == nil {
2432                 // No M is available, we must drop sched.lock and call newm.
2433                 // However, we already own a P to assign to the M.
2434                 //
2435                 // Once sched.lock is released, another G (e.g., in a syscall),
2436                 // could find no idle P while checkdead finds a runnable G but
2437                 // no running M's because this new M hasn't started yet, thus
2438                 // throwing in an apparent deadlock.
2439                 // This apparent deadlock is possible when startm is called
2440                 // from sysmon, which doesn't count as a running M.
2441                 //
2442                 // Avoid this situation by pre-allocating the ID for the new M,
2443                 // thus marking it as 'running' before we drop sched.lock. This
2444                 // new M will eventually run the scheduler to execute any
2445                 // queued G's.
2446                 id := mReserveID()
2447                 unlock(&sched.lock)
2448
2449                 var fn func()
2450                 if spinning {
2451                         // The caller incremented nmspinning, so set m.spinning in the new M.
2452                         fn = mspinning
2453                 }
2454                 newm(fn, pp, id)
2455
2456                 if lockheld {
2457                         lock(&sched.lock)
2458                 }
2459                 // Ownership transfer of pp committed by start in newm.
2460                 // Preemption is now safe.
2461                 releasem(mp)
2462                 return
2463         }
2464         if !lockheld {
2465                 unlock(&sched.lock)
2466         }
2467         if nmp.spinning {
2468                 throw("startm: m is spinning")
2469         }
2470         if nmp.nextp != 0 {
2471                 throw("startm: m has p")
2472         }
2473         if spinning && !runqempty(pp) {
2474                 throw("startm: p has runnable gs")
2475         }
2476         // The caller incremented nmspinning, so set m.spinning in the new M.
2477         nmp.spinning = spinning
2478         nmp.nextp.set(pp)
2479         notewakeup(&nmp.park)
2480         // Ownership transfer of pp committed by wakeup. Preemption is now
2481         // safe.
2482         releasem(mp)
2483 }
2484
2485 // Hands off P from syscall or locked M.
2486 // Always runs without a P, so write barriers are not allowed.
2487 //
2488 //go:nowritebarrierrec
2489 func handoffp(pp *p) {
2490         // handoffp must start an M in any situation where
2491         // findrunnable would return a G to run on pp.
2492
2493         // if it has local work, start it straight away
2494         if !runqempty(pp) || sched.runqsize != 0 {
2495                 startm(pp, false, false)
2496                 return
2497         }
2498         // if there's trace work to do, start it straight away
2499         if (traceEnabled() || traceShuttingDown()) && traceReaderAvailable() != nil {
2500                 startm(pp, false, false)
2501                 return
2502         }
2503         // if it has GC work, start it straight away
2504         if gcBlackenEnabled != 0 && gcMarkWorkAvailable(pp) {
2505                 startm(pp, false, false)
2506                 return
2507         }
2508         // no local work, check that there are no spinning/idle M's,
2509         // otherwise our help is not required
2510         if sched.nmspinning.Load()+sched.npidle.Load() == 0 && sched.nmspinning.CompareAndSwap(0, 1) { // TODO: fast atomic
2511                 sched.needspinning.Store(0)
2512                 startm(pp, true, false)
2513                 return
2514         }
2515         lock(&sched.lock)
2516         if sched.gcwaiting.Load() {
2517                 pp.status = _Pgcstop
2518                 sched.stopwait--
2519                 if sched.stopwait == 0 {
2520                         notewakeup(&sched.stopnote)
2521                 }
2522                 unlock(&sched.lock)
2523                 return
2524         }
2525         if pp.runSafePointFn != 0 && atomic.Cas(&pp.runSafePointFn, 1, 0) {
2526                 sched.safePointFn(pp)
2527                 sched.safePointWait--
2528                 if sched.safePointWait == 0 {
2529                         notewakeup(&sched.safePointNote)
2530                 }
2531         }
2532         if sched.runqsize != 0 {
2533                 unlock(&sched.lock)
2534                 startm(pp, false, false)
2535                 return
2536         }
2537         // If this is the last running P and nobody is polling network,
2538         // need to wakeup another M to poll network.
2539         if sched.npidle.Load() == gomaxprocs-1 && sched.lastpoll.Load() != 0 {
2540                 unlock(&sched.lock)
2541                 startm(pp, false, false)
2542                 return
2543         }
2544
2545         // The scheduler lock cannot be held when calling wakeNetPoller below
2546         // because wakeNetPoller may call wakep which may call startm.
2547         when := nobarrierWakeTime(pp)
2548         pidleput(pp, 0)
2549         unlock(&sched.lock)
2550
2551         if when != 0 {
2552                 wakeNetPoller(when)
2553         }
2554 }
2555
2556 // Tries to add one more P to execute G's.
2557 // Called when a G is made runnable (newproc, ready).
2558 // Must be called with a P.
2559 func wakep() {
2560         // Be conservative about spinning threads, only start one if none exist
2561         // already.
2562         if sched.nmspinning.Load() != 0 || !sched.nmspinning.CompareAndSwap(0, 1) {
2563                 return
2564         }
2565
2566         // Disable preemption until ownership of pp transfers to the next M in
2567         // startm. Otherwise preemption here would leave pp stuck waiting to
2568         // enter _Pgcstop.
2569         //
2570         // See preemption comment on acquirem in startm for more details.
2571         mp := acquirem()
2572
2573         var pp *p
2574         lock(&sched.lock)
2575         pp, _ = pidlegetSpinning(0)
2576         if pp == nil {
2577                 if sched.nmspinning.Add(-1) < 0 {
2578                         throw("wakep: negative nmspinning")
2579                 }
2580                 unlock(&sched.lock)
2581                 releasem(mp)
2582                 return
2583         }
2584         // Since we always have a P, the race in the "No M is available"
2585         // comment in startm doesn't apply during the small window between the
2586         // unlock here and lock in startm. A checkdead in between will always
2587         // see at least one running M (ours).
2588         unlock(&sched.lock)
2589
2590         startm(pp, true, false)
2591
2592         releasem(mp)
2593 }
2594
2595 // Stops execution of the current m that is locked to a g until the g is runnable again.
2596 // Returns with acquired P.
2597 func stoplockedm() {
2598         gp := getg()
2599
2600         if gp.m.lockedg == 0 || gp.m.lockedg.ptr().lockedm.ptr() != gp.m {
2601                 throw("stoplockedm: inconsistent locking")
2602         }
2603         if gp.m.p != 0 {
2604                 // Schedule another M to run this p.
2605                 pp := releasep()
2606                 handoffp(pp)
2607         }
2608         incidlelocked(1)
2609         // Wait until another thread schedules lockedg again.
2610         mPark()
2611         status := readgstatus(gp.m.lockedg.ptr())
2612         if status&^_Gscan != _Grunnable {
2613                 print("runtime:stoplockedm: lockedg (atomicstatus=", status, ") is not Grunnable or Gscanrunnable\n")
2614                 dumpgstatus(gp.m.lockedg.ptr())
2615                 throw("stoplockedm: not runnable")
2616         }
2617         acquirep(gp.m.nextp.ptr())
2618         gp.m.nextp = 0
2619 }
2620
2621 // Schedules the locked m to run the locked gp.
2622 // May run during STW, so write barriers are not allowed.
2623 //
2624 //go:nowritebarrierrec
2625 func startlockedm(gp *g) {
2626         mp := gp.lockedm.ptr()
2627         if mp == getg().m {
2628                 throw("startlockedm: locked to me")
2629         }
2630         if mp.nextp != 0 {
2631                 throw("startlockedm: m has p")
2632         }
2633         // directly handoff current P to the locked m
2634         incidlelocked(-1)
2635         pp := releasep()
2636         mp.nextp.set(pp)
2637         notewakeup(&mp.park)
2638         stopm()
2639 }
2640
2641 // Stops the current m for stopTheWorld.
2642 // Returns when the world is restarted.
2643 func gcstopm() {
2644         gp := getg()
2645
2646         if !sched.gcwaiting.Load() {
2647                 throw("gcstopm: not waiting for gc")
2648         }
2649         if gp.m.spinning {
2650                 gp.m.spinning = false
2651                 // OK to just drop nmspinning here,
2652                 // startTheWorld will unpark threads as necessary.
2653                 if sched.nmspinning.Add(-1) < 0 {
2654                         throw("gcstopm: negative nmspinning")
2655                 }
2656         }
2657         pp := releasep()
2658         lock(&sched.lock)
2659         pp.status = _Pgcstop
2660         sched.stopwait--
2661         if sched.stopwait == 0 {
2662                 notewakeup(&sched.stopnote)
2663         }
2664         unlock(&sched.lock)
2665         stopm()
2666 }
2667
2668 // Schedules gp to run on the current M.
2669 // If inheritTime is true, gp inherits the remaining time in the
2670 // current time slice. Otherwise, it starts a new time slice.
2671 // Never returns.
2672 //
2673 // Write barriers are allowed because this is called immediately after
2674 // acquiring a P in several places.
2675 //
2676 //go:yeswritebarrierrec
2677 func execute(gp *g, inheritTime bool) {
2678         mp := getg().m
2679
2680         if goroutineProfile.active {
2681                 // Make sure that gp has had its stack written out to the goroutine
2682                 // profile, exactly as it was when the goroutine profiler first stopped
2683                 // the world.
2684                 tryRecordGoroutineProfile(gp, osyield)
2685         }
2686
2687         // Assign gp.m before entering _Grunning so running Gs have an
2688         // M.
2689         mp.curg = gp
2690         gp.m = mp
2691         casgstatus(gp, _Grunnable, _Grunning)
2692         gp.waitsince = 0
2693         gp.preempt = false
2694         gp.stackguard0 = gp.stack.lo + stackGuard
2695         if !inheritTime {
2696                 mp.p.ptr().schedtick++
2697         }
2698
2699         // Check whether the profiler needs to be turned on or off.
2700         hz := sched.profilehz
2701         if mp.profilehz != hz {
2702                 setThreadCPUProfiler(hz)
2703         }
2704
2705         if traceEnabled() {
2706                 // GoSysExit has to happen when we have a P, but before GoStart.
2707                 // So we emit it here.
2708                 if gp.syscallsp != 0 && gp.sysblocktraced {
2709                         traceGoSysExit(gp.sysexitticks)
2710                 }
2711                 traceGoStart()
2712         }
2713
2714         gogo(&gp.sched)
2715 }
2716
2717 // Finds a runnable goroutine to execute.
2718 // Tries to steal from other P's, get g from local or global queue, poll network.
2719 // tryWakeP indicates that the returned goroutine is not normal (GC worker, trace
2720 // reader) so the caller should try to wake a P.
2721 func findRunnable() (gp *g, inheritTime, tryWakeP bool) {
2722         mp := getg().m
2723
2724         // The conditions here and in handoffp must agree: if
2725         // findrunnable would return a G to run, handoffp must start
2726         // an M.
2727
2728 top:
2729         pp := mp.p.ptr()
2730         if sched.gcwaiting.Load() {
2731                 gcstopm()
2732                 goto top
2733         }
2734         if pp.runSafePointFn != 0 {
2735                 runSafePointFn()
2736         }
2737
2738         // now and pollUntil are saved for work stealing later,
2739         // which may steal timers. It's important that between now
2740         // and then, nothing blocks, so these numbers remain mostly
2741         // relevant.
2742         now, pollUntil, _ := checkTimers(pp, 0)
2743
2744         // Try to schedule the trace reader.
2745         if traceEnabled() || traceShuttingDown() {
2746                 gp := traceReader()
2747                 if gp != nil {
2748                         casgstatus(gp, _Gwaiting, _Grunnable)
2749                         traceGoUnpark(gp, 0)
2750                         return gp, false, true
2751                 }
2752         }
2753
2754         // Try to schedule a GC worker.
2755         if gcBlackenEnabled != 0 {
2756                 gp, tnow := gcController.findRunnableGCWorker(pp, now)
2757                 if gp != nil {
2758                         return gp, false, true
2759                 }
2760                 now = tnow
2761         }
2762
2763         // Check the global runnable queue once in a while to ensure fairness.
2764         // Otherwise two goroutines can completely occupy the local runqueue
2765         // by constantly respawning each other.
2766         if pp.schedtick%61 == 0 && sched.runqsize > 0 {
2767                 lock(&sched.lock)
2768                 gp := globrunqget(pp, 1)
2769                 unlock(&sched.lock)
2770                 if gp != nil {
2771                         return gp, false, false
2772                 }
2773         }
2774
2775         // Wake up the finalizer G.
2776         if fingStatus.Load()&(fingWait|fingWake) == fingWait|fingWake {
2777                 if gp := wakefing(); gp != nil {
2778                         ready(gp, 0, true)
2779                 }
2780         }
2781         if *cgo_yield != nil {
2782                 asmcgocall(*cgo_yield, nil)
2783         }
2784
2785         // local runq
2786         if gp, inheritTime := runqget(pp); gp != nil {
2787                 return gp, inheritTime, false
2788         }
2789
2790         // global runq
2791         if sched.runqsize != 0 {
2792                 lock(&sched.lock)
2793                 gp := globrunqget(pp, 0)
2794                 unlock(&sched.lock)
2795                 if gp != nil {
2796                         return gp, false, false
2797                 }
2798         }
2799
2800         // Poll network.
2801         // This netpoll is only an optimization before we resort to stealing.
2802         // We can safely skip it if there are no waiters or a thread is blocked
2803         // in netpoll already. If there is any kind of logical race with that
2804         // blocked thread (e.g. it has already returned from netpoll, but does
2805         // not set lastpoll yet), this thread will do blocking netpoll below
2806         // anyway.
2807         if netpollinited() && netpollWaiters.Load() > 0 && sched.lastpoll.Load() != 0 {
2808                 if list := netpoll(0); !list.empty() { // non-blocking
2809                         gp := list.pop()
2810                         injectglist(&list)
2811                         casgstatus(gp, _Gwaiting, _Grunnable)
2812                         if traceEnabled() {
2813                                 traceGoUnpark(gp, 0)
2814                         }
2815                         return gp, false, false
2816                 }
2817         }
2818
2819         // Spinning Ms: steal work from other Ps.
2820         //
2821         // Limit the number of spinning Ms to half the number of busy Ps.
2822         // This is necessary to prevent excessive CPU consumption when
2823         // GOMAXPROCS>>1 but the program parallelism is low.
2824         if mp.spinning || 2*sched.nmspinning.Load() < gomaxprocs-sched.npidle.Load() {
2825                 if !mp.spinning {
2826                         mp.becomeSpinning()
2827                 }
2828
2829                 gp, inheritTime, tnow, w, newWork := stealWork(now)
2830                 if gp != nil {
2831                         // Successfully stole.
2832                         return gp, inheritTime, false
2833                 }
2834                 if newWork {
2835                         // There may be new timer or GC work; restart to
2836                         // discover.
2837                         goto top
2838                 }
2839
2840                 now = tnow
2841                 if w != 0 && (pollUntil == 0 || w < pollUntil) {
2842                         // Earlier timer to wait for.
2843                         pollUntil = w
2844                 }
2845         }
2846
2847         // We have nothing to do.
2848         //
2849         // If we're in the GC mark phase, can safely scan and blacken objects,
2850         // and have work to do, run idle-time marking rather than give up the P.
2851         if gcBlackenEnabled != 0 && gcMarkWorkAvailable(pp) && gcController.addIdleMarkWorker() {
2852                 node := (*gcBgMarkWorkerNode)(gcBgMarkWorkerPool.pop())
2853                 if node != nil {
2854                         pp.gcMarkWorkerMode = gcMarkWorkerIdleMode
2855                         gp := node.gp.ptr()
2856                         casgstatus(gp, _Gwaiting, _Grunnable)
2857                         if traceEnabled() {
2858                                 traceGoUnpark(gp, 0)
2859                         }
2860                         return gp, false, false
2861                 }
2862                 gcController.removeIdleMarkWorker()
2863         }
2864
2865         // wasm only:
2866         // If a callback returned and no other goroutine is awake,
2867         // then wake event handler goroutine which pauses execution
2868         // until a callback was triggered.
2869         gp, otherReady := beforeIdle(now, pollUntil)
2870         if gp != nil {
2871                 casgstatus(gp, _Gwaiting, _Grunnable)
2872                 if traceEnabled() {
2873                         traceGoUnpark(gp, 0)
2874                 }
2875                 return gp, false, false
2876         }
2877         if otherReady {
2878                 goto top
2879         }
2880
2881         // Before we drop our P, make a snapshot of the allp slice,
2882         // which can change underfoot once we no longer block
2883         // safe-points. We don't need to snapshot the contents because
2884         // everything up to cap(allp) is immutable.
2885         allpSnapshot := allp
2886         // Also snapshot masks. Value changes are OK, but we can't allow
2887         // len to change out from under us.
2888         idlepMaskSnapshot := idlepMask
2889         timerpMaskSnapshot := timerpMask
2890
2891         // return P and block
2892         lock(&sched.lock)
2893         if sched.gcwaiting.Load() || pp.runSafePointFn != 0 {
2894                 unlock(&sched.lock)
2895                 goto top
2896         }
2897         if sched.runqsize != 0 {
2898                 gp := globrunqget(pp, 0)
2899                 unlock(&sched.lock)
2900                 return gp, false, false
2901         }
2902         if !mp.spinning && sched.needspinning.Load() == 1 {
2903                 // See "Delicate dance" comment below.
2904                 mp.becomeSpinning()
2905                 unlock(&sched.lock)
2906                 goto top
2907         }
2908         if releasep() != pp {
2909                 throw("findrunnable: wrong p")
2910         }
2911         now = pidleput(pp, now)
2912         unlock(&sched.lock)
2913
2914         // Delicate dance: thread transitions from spinning to non-spinning
2915         // state, potentially concurrently with submission of new work. We must
2916         // drop nmspinning first and then check all sources again (with
2917         // #StoreLoad memory barrier in between). If we do it the other way
2918         // around, another thread can submit work after we've checked all
2919         // sources but before we drop nmspinning; as a result nobody will
2920         // unpark a thread to run the work.
2921         //
2922         // This applies to the following sources of work:
2923         //
2924         // * Goroutines added to a per-P run queue.
2925         // * New/modified-earlier timers on a per-P timer heap.
2926         // * Idle-priority GC work (barring golang.org/issue/19112).
2927         //
2928         // If we discover new work below, we need to restore m.spinning as a
2929         // signal for resetspinning to unpark a new worker thread (because
2930         // there can be more than one starving goroutine).
2931         //
2932         // However, if after discovering new work we also observe no idle Ps
2933         // (either here or in resetspinning), we have a problem. We may be
2934         // racing with a non-spinning M in the block above, having found no
2935         // work and preparing to release its P and park. Allowing that P to go
2936         // idle will result in loss of work conservation (idle P while there is
2937         // runnable work). This could result in complete deadlock in the
2938         // unlikely event that we discover new work (from netpoll) right as we
2939         // are racing with _all_ other Ps going idle.
2940         //
2941         // We use sched.needspinning to synchronize with non-spinning Ms going
2942         // idle. If needspinning is set when they are about to drop their P,
2943         // they abort the drop and instead become a new spinning M on our
2944         // behalf. If we are not racing and the system is truly fully loaded
2945         // then no spinning threads are required, and the next thread to
2946         // naturally become spinning will clear the flag.
2947         //
2948         // Also see "Worker thread parking/unparking" comment at the top of the
2949         // file.
2950         wasSpinning := mp.spinning
2951         if mp.spinning {
2952                 mp.spinning = false
2953                 if sched.nmspinning.Add(-1) < 0 {
2954                         throw("findrunnable: negative nmspinning")
2955                 }
2956
2957                 // Note the for correctness, only the last M transitioning from
2958                 // spinning to non-spinning must perform these rechecks to
2959                 // ensure no missed work. However, the runtime has some cases
2960                 // of transient increments of nmspinning that are decremented
2961                 // without going through this path, so we must be conservative
2962                 // and perform the check on all spinning Ms.
2963                 //
2964                 // See https://go.dev/issue/43997.
2965
2966                 // Check all runqueues once again.
2967                 pp := checkRunqsNoP(allpSnapshot, idlepMaskSnapshot)
2968                 if pp != nil {
2969                         acquirep(pp)
2970                         mp.becomeSpinning()
2971                         goto top
2972                 }
2973
2974                 // Check for idle-priority GC work again.
2975                 pp, gp := checkIdleGCNoP()
2976                 if pp != nil {
2977                         acquirep(pp)
2978                         mp.becomeSpinning()
2979
2980                         // Run the idle worker.
2981                         pp.gcMarkWorkerMode = gcMarkWorkerIdleMode
2982                         casgstatus(gp, _Gwaiting, _Grunnable)
2983                         if traceEnabled() {
2984                                 traceGoUnpark(gp, 0)
2985                         }
2986                         return gp, false, false
2987                 }
2988
2989                 // Finally, check for timer creation or expiry concurrently with
2990                 // transitioning from spinning to non-spinning.
2991                 //
2992                 // Note that we cannot use checkTimers here because it calls
2993                 // adjusttimers which may need to allocate memory, and that isn't
2994                 // allowed when we don't have an active P.
2995                 pollUntil = checkTimersNoP(allpSnapshot, timerpMaskSnapshot, pollUntil)
2996         }
2997
2998         // Poll network until next timer.
2999         if netpollinited() && (netpollWaiters.Load() > 0 || pollUntil != 0) && sched.lastpoll.Swap(0) != 0 {
3000                 sched.pollUntil.Store(pollUntil)
3001                 if mp.p != 0 {
3002                         throw("findrunnable: netpoll with p")
3003                 }
3004                 if mp.spinning {
3005                         throw("findrunnable: netpoll with spinning")
3006                 }
3007                 // Refresh now.
3008                 now = nanotime()
3009                 delay := int64(-1)
3010                 if pollUntil != 0 {
3011                         delay = pollUntil - now
3012                         if delay < 0 {
3013                                 delay = 0
3014                         }
3015                 }
3016                 if faketime != 0 {
3017                         // When using fake time, just poll.
3018                         delay = 0
3019                 }
3020                 list := netpoll(delay) // block until new work is available
3021                 sched.pollUntil.Store(0)
3022                 sched.lastpoll.Store(now)
3023                 if faketime != 0 && list.empty() {
3024                         // Using fake time and nothing is ready; stop M.
3025                         // When all M's stop, checkdead will call timejump.
3026                         stopm()
3027                         goto top
3028                 }
3029                 lock(&sched.lock)
3030                 pp, _ := pidleget(now)
3031                 unlock(&sched.lock)
3032                 if pp == nil {
3033                         injectglist(&list)
3034                 } else {
3035                         acquirep(pp)
3036                         if !list.empty() {
3037                                 gp := list.pop()
3038                                 injectglist(&list)
3039                                 casgstatus(gp, _Gwaiting, _Grunnable)
3040                                 if traceEnabled() {
3041                                         traceGoUnpark(gp, 0)
3042                                 }
3043                                 return gp, false, false
3044                         }
3045                         if wasSpinning {
3046                                 mp.becomeSpinning()
3047                         }
3048                         goto top
3049                 }
3050         } else if pollUntil != 0 && netpollinited() {
3051                 pollerPollUntil := sched.pollUntil.Load()
3052                 if pollerPollUntil == 0 || pollerPollUntil > pollUntil {
3053                         netpollBreak()
3054                 }
3055         }
3056         stopm()
3057         goto top
3058 }
3059
3060 // pollWork reports whether there is non-background work this P could
3061 // be doing. This is a fairly lightweight check to be used for
3062 // background work loops, like idle GC. It checks a subset of the
3063 // conditions checked by the actual scheduler.
3064 func pollWork() bool {
3065         if sched.runqsize != 0 {
3066                 return true
3067         }
3068         p := getg().m.p.ptr()
3069         if !runqempty(p) {
3070                 return true
3071         }
3072         if netpollinited() && netpollWaiters.Load() > 0 && sched.lastpoll.Load() != 0 {
3073                 if list := netpoll(0); !list.empty() {
3074                         injectglist(&list)
3075                         return true
3076                 }
3077         }
3078         return false
3079 }
3080
3081 // stealWork attempts to steal a runnable goroutine or timer from any P.
3082 //
3083 // If newWork is true, new work may have been readied.
3084 //
3085 // If now is not 0 it is the current time. stealWork returns the passed time or
3086 // the current time if now was passed as 0.
3087 func stealWork(now int64) (gp *g, inheritTime bool, rnow, pollUntil int64, newWork bool) {
3088         pp := getg().m.p.ptr()
3089
3090         ranTimer := false
3091
3092         const stealTries = 4
3093         for i := 0; i < stealTries; i++ {
3094                 stealTimersOrRunNextG := i == stealTries-1
3095
3096                 for enum := stealOrder.start(fastrand()); !enum.done(); enum.next() {
3097                         if sched.gcwaiting.Load() {
3098                                 // GC work may be available.
3099                                 return nil, false, now, pollUntil, true
3100                         }
3101                         p2 := allp[enum.position()]
3102                         if pp == p2 {
3103                                 continue
3104                         }
3105
3106                         // Steal timers from p2. This call to checkTimers is the only place
3107                         // where we might hold a lock on a different P's timers. We do this
3108                         // once on the last pass before checking runnext because stealing
3109                         // from the other P's runnext should be the last resort, so if there
3110                         // are timers to steal do that first.
3111                         //
3112                         // We only check timers on one of the stealing iterations because
3113                         // the time stored in now doesn't change in this loop and checking
3114                         // the timers for each P more than once with the same value of now
3115                         // is probably a waste of time.
3116                         //
3117                         // timerpMask tells us whether the P may have timers at all. If it
3118                         // can't, no need to check at all.
3119                         if stealTimersOrRunNextG && timerpMask.read(enum.position()) {
3120                                 tnow, w, ran := checkTimers(p2, now)
3121                                 now = tnow
3122                                 if w != 0 && (pollUntil == 0 || w < pollUntil) {
3123                                         pollUntil = w
3124                                 }
3125                                 if ran {
3126                                         // Running the timers may have
3127                                         // made an arbitrary number of G's
3128                                         // ready and added them to this P's
3129                                         // local run queue. That invalidates
3130                                         // the assumption of runqsteal
3131                                         // that it always has room to add
3132                                         // stolen G's. So check now if there
3133                                         // is a local G to run.
3134                                         if gp, inheritTime := runqget(pp); gp != nil {
3135                                                 return gp, inheritTime, now, pollUntil, ranTimer
3136                                         }
3137                                         ranTimer = true
3138                                 }
3139                         }
3140
3141                         // Don't bother to attempt to steal if p2 is idle.
3142                         if !idlepMask.read(enum.position()) {
3143                                 if gp := runqsteal(pp, p2, stealTimersOrRunNextG); gp != nil {
3144                                         return gp, false, now, pollUntil, ranTimer
3145                                 }
3146                         }
3147                 }
3148         }
3149
3150         // No goroutines found to steal. Regardless, running a timer may have
3151         // made some goroutine ready that we missed. Indicate the next timer to
3152         // wait for.
3153         return nil, false, now, pollUntil, ranTimer
3154 }
3155
3156 // Check all Ps for a runnable G to steal.
3157 //
3158 // On entry we have no P. If a G is available to steal and a P is available,
3159 // the P is returned which the caller should acquire and attempt to steal the
3160 // work to.
3161 func checkRunqsNoP(allpSnapshot []*p, idlepMaskSnapshot pMask) *p {
3162         for id, p2 := range allpSnapshot {
3163                 if !idlepMaskSnapshot.read(uint32(id)) && !runqempty(p2) {
3164                         lock(&sched.lock)
3165                         pp, _ := pidlegetSpinning(0)
3166                         if pp == nil {
3167                                 // Can't get a P, don't bother checking remaining Ps.
3168                                 unlock(&sched.lock)
3169                                 return nil
3170                         }
3171                         unlock(&sched.lock)
3172                         return pp
3173                 }
3174         }
3175
3176         // No work available.
3177         return nil
3178 }
3179
3180 // Check all Ps for a timer expiring sooner than pollUntil.
3181 //
3182 // Returns updated pollUntil value.
3183 func checkTimersNoP(allpSnapshot []*p, timerpMaskSnapshot pMask, pollUntil int64) int64 {
3184         for id, p2 := range allpSnapshot {
3185                 if timerpMaskSnapshot.read(uint32(id)) {
3186                         w := nobarrierWakeTime(p2)
3187                         if w != 0 && (pollUntil == 0 || w < pollUntil) {
3188                                 pollUntil = w
3189                         }
3190                 }
3191         }
3192
3193         return pollUntil
3194 }
3195
3196 // Check for idle-priority GC, without a P on entry.
3197 //
3198 // If some GC work, a P, and a worker G are all available, the P and G will be
3199 // returned. The returned P has not been wired yet.
3200 func checkIdleGCNoP() (*p, *g) {
3201         // N.B. Since we have no P, gcBlackenEnabled may change at any time; we
3202         // must check again after acquiring a P. As an optimization, we also check
3203         // if an idle mark worker is needed at all. This is OK here, because if we
3204         // observe that one isn't needed, at least one is currently running. Even if
3205         // it stops running, its own journey into the scheduler should schedule it
3206         // again, if need be (at which point, this check will pass, if relevant).
3207         if atomic.Load(&gcBlackenEnabled) == 0 || !gcController.needIdleMarkWorker() {
3208                 return nil, nil
3209         }
3210         if !gcMarkWorkAvailable(nil) {
3211                 return nil, nil
3212         }
3213
3214         // Work is available; we can start an idle GC worker only if there is
3215         // an available P and available worker G.
3216         //
3217         // We can attempt to acquire these in either order, though both have
3218         // synchronization concerns (see below). Workers are almost always
3219         // available (see comment in findRunnableGCWorker for the one case
3220         // there may be none). Since we're slightly less likely to find a P,
3221         // check for that first.
3222         //
3223         // Synchronization: note that we must hold sched.lock until we are
3224         // committed to keeping it. Otherwise we cannot put the unnecessary P
3225         // back in sched.pidle without performing the full set of idle
3226         // transition checks.
3227         //
3228         // If we were to check gcBgMarkWorkerPool first, we must somehow handle
3229         // the assumption in gcControllerState.findRunnableGCWorker that an
3230         // empty gcBgMarkWorkerPool is only possible if gcMarkDone is running.
3231         lock(&sched.lock)
3232         pp, now := pidlegetSpinning(0)
3233         if pp == nil {
3234                 unlock(&sched.lock)
3235                 return nil, nil
3236         }
3237
3238         // Now that we own a P, gcBlackenEnabled can't change (as it requires STW).
3239         if gcBlackenEnabled == 0 || !gcController.addIdleMarkWorker() {
3240                 pidleput(pp, now)
3241                 unlock(&sched.lock)
3242                 return nil, nil
3243         }
3244
3245         node := (*gcBgMarkWorkerNode)(gcBgMarkWorkerPool.pop())
3246         if node == nil {
3247                 pidleput(pp, now)
3248                 unlock(&sched.lock)
3249                 gcController.removeIdleMarkWorker()
3250                 return nil, nil
3251         }
3252
3253         unlock(&sched.lock)
3254
3255         return pp, node.gp.ptr()
3256 }
3257
3258 // wakeNetPoller wakes up the thread sleeping in the network poller if it isn't
3259 // going to wake up before the when argument; or it wakes an idle P to service
3260 // timers and the network poller if there isn't one already.
3261 func wakeNetPoller(when int64) {
3262         if sched.lastpoll.Load() == 0 {
3263                 // In findrunnable we ensure that when polling the pollUntil
3264                 // field is either zero or the time to which the current
3265                 // poll is expected to run. This can have a spurious wakeup
3266                 // but should never miss a wakeup.
3267                 pollerPollUntil := sched.pollUntil.Load()
3268                 if pollerPollUntil == 0 || pollerPollUntil > when {
3269                         netpollBreak()
3270                 }
3271         } else {
3272                 // There are no threads in the network poller, try to get
3273                 // one there so it can handle new timers.
3274                 if GOOS != "plan9" { // Temporary workaround - see issue #42303.
3275                         wakep()
3276                 }
3277         }
3278 }
3279
3280 func resetspinning() {
3281         gp := getg()
3282         if !gp.m.spinning {
3283                 throw("resetspinning: not a spinning m")
3284         }
3285         gp.m.spinning = false
3286         nmspinning := sched.nmspinning.Add(-1)
3287         if nmspinning < 0 {
3288                 throw("findrunnable: negative nmspinning")
3289         }
3290         // M wakeup policy is deliberately somewhat conservative, so check if we
3291         // need to wakeup another P here. See "Worker thread parking/unparking"
3292         // comment at the top of the file for details.
3293         wakep()
3294 }
3295
3296 // injectglist adds each runnable G on the list to some run queue,
3297 // and clears glist. If there is no current P, they are added to the
3298 // global queue, and up to npidle M's are started to run them.
3299 // Otherwise, for each idle P, this adds a G to the global queue
3300 // and starts an M. Any remaining G's are added to the current P's
3301 // local run queue.
3302 // This may temporarily acquire sched.lock.
3303 // Can run concurrently with GC.
3304 func injectglist(glist *gList) {
3305         if glist.empty() {
3306                 return
3307         }
3308         if traceEnabled() {
3309                 for gp := glist.head.ptr(); gp != nil; gp = gp.schedlink.ptr() {
3310                         traceGoUnpark(gp, 0)
3311                 }
3312         }
3313
3314         // Mark all the goroutines as runnable before we put them
3315         // on the run queues.
3316         head := glist.head.ptr()
3317         var tail *g
3318         qsize := 0
3319         for gp := head; gp != nil; gp = gp.schedlink.ptr() {
3320                 tail = gp
3321                 qsize++
3322                 casgstatus(gp, _Gwaiting, _Grunnable)
3323         }
3324
3325         // Turn the gList into a gQueue.
3326         var q gQueue
3327         q.head.set(head)
3328         q.tail.set(tail)
3329         *glist = gList{}
3330
3331         startIdle := func(n int) {
3332                 for i := 0; i < n; i++ {
3333                         mp := acquirem() // See comment in startm.
3334                         lock(&sched.lock)
3335
3336                         pp, _ := pidlegetSpinning(0)
3337                         if pp == nil {
3338                                 unlock(&sched.lock)
3339                                 releasem(mp)
3340                                 break
3341                         }
3342
3343                         startm(pp, false, true)
3344                         unlock(&sched.lock)
3345                         releasem(mp)
3346                 }
3347         }
3348
3349         pp := getg().m.p.ptr()
3350         if pp == nil {
3351                 lock(&sched.lock)
3352                 globrunqputbatch(&q, int32(qsize))
3353                 unlock(&sched.lock)
3354                 startIdle(qsize)
3355                 return
3356         }
3357
3358         npidle := int(sched.npidle.Load())
3359         var globq gQueue
3360         var n int
3361         for n = 0; n < npidle && !q.empty(); n++ {
3362                 g := q.pop()
3363                 globq.pushBack(g)
3364         }
3365         if n > 0 {
3366                 lock(&sched.lock)
3367                 globrunqputbatch(&globq, int32(n))
3368                 unlock(&sched.lock)
3369                 startIdle(n)
3370                 qsize -= n
3371         }
3372
3373         if !q.empty() {
3374                 runqputbatch(pp, &q, qsize)
3375         }
3376 }
3377
3378 // One round of scheduler: find a runnable goroutine and execute it.
3379 // Never returns.
3380 func schedule() {
3381         mp := getg().m
3382
3383         if mp.locks != 0 {
3384                 throw("schedule: holding locks")
3385         }
3386
3387         if mp.lockedg != 0 {
3388                 stoplockedm()
3389                 execute(mp.lockedg.ptr(), false) // Never returns.
3390         }
3391
3392         // We should not schedule away from a g that is executing a cgo call,
3393         // since the cgo call is using the m's g0 stack.
3394         if mp.incgo {
3395                 throw("schedule: in cgo")
3396         }
3397
3398 top:
3399         pp := mp.p.ptr()
3400         pp.preempt = false
3401
3402         // Safety check: if we are spinning, the run queue should be empty.
3403         // Check this before calling checkTimers, as that might call
3404         // goready to put a ready goroutine on the local run queue.
3405         if mp.spinning && (pp.runnext != 0 || pp.runqhead != pp.runqtail) {
3406                 throw("schedule: spinning with local work")
3407         }
3408
3409         gp, inheritTime, tryWakeP := findRunnable() // blocks until work is available
3410
3411         // This thread is going to run a goroutine and is not spinning anymore,
3412         // so if it was marked as spinning we need to reset it now and potentially
3413         // start a new spinning M.
3414         if mp.spinning {
3415                 resetspinning()
3416         }
3417
3418         if sched.disable.user && !schedEnabled(gp) {
3419                 // Scheduling of this goroutine is disabled. Put it on
3420                 // the list of pending runnable goroutines for when we
3421                 // re-enable user scheduling and look again.
3422                 lock(&sched.lock)
3423                 if schedEnabled(gp) {
3424                         // Something re-enabled scheduling while we
3425                         // were acquiring the lock.
3426                         unlock(&sched.lock)
3427                 } else {
3428                         sched.disable.runnable.pushBack(gp)
3429                         sched.disable.n++
3430                         unlock(&sched.lock)
3431                         goto top
3432                 }
3433         }
3434
3435         // If about to schedule a not-normal goroutine (a GCworker or tracereader),
3436         // wake a P if there is one.
3437         if tryWakeP {
3438                 wakep()
3439         }
3440         if gp.lockedm != 0 {
3441                 // Hands off own p to the locked m,
3442                 // then blocks waiting for a new p.
3443                 startlockedm(gp)
3444                 goto top
3445         }
3446
3447         execute(gp, inheritTime)
3448 }
3449
3450 // dropg removes the association between m and the current goroutine m->curg (gp for short).
3451 // Typically a caller sets gp's status away from Grunning and then
3452 // immediately calls dropg to finish the job. The caller is also responsible
3453 // for arranging that gp will be restarted using ready at an
3454 // appropriate time. After calling dropg and arranging for gp to be
3455 // readied later, the caller can do other work but eventually should
3456 // call schedule to restart the scheduling of goroutines on this m.
3457 func dropg() {
3458         gp := getg()
3459
3460         setMNoWB(&gp.m.curg.m, nil)
3461         setGNoWB(&gp.m.curg, nil)
3462 }
3463
3464 // checkTimers runs any timers for the P that are ready.
3465 // If now is not 0 it is the current time.
3466 // It returns the passed time or the current time if now was passed as 0.
3467 // and the time when the next timer should run or 0 if there is no next timer,
3468 // and reports whether it ran any timers.
3469 // If the time when the next timer should run is not 0,
3470 // it is always larger than the returned time.
3471 // We pass now in and out to avoid extra calls of nanotime.
3472 //
3473 //go:yeswritebarrierrec
3474 func checkTimers(pp *p, now int64) (rnow, pollUntil int64, ran bool) {
3475         // If it's not yet time for the first timer, or the first adjusted
3476         // timer, then there is nothing to do.
3477         next := pp.timer0When.Load()
3478         nextAdj := pp.timerModifiedEarliest.Load()
3479         if next == 0 || (nextAdj != 0 && nextAdj < next) {
3480                 next = nextAdj
3481         }
3482
3483         if next == 0 {
3484                 // No timers to run or adjust.
3485                 return now, 0, false
3486         }
3487
3488         if now == 0 {
3489                 now = nanotime()
3490         }
3491         if now < next {
3492                 // Next timer is not ready to run, but keep going
3493                 // if we would clear deleted timers.
3494                 // This corresponds to the condition below where
3495                 // we decide whether to call clearDeletedTimers.
3496                 if pp != getg().m.p.ptr() || int(pp.deletedTimers.Load()) <= int(pp.numTimers.Load()/4) {
3497                         return now, next, false
3498                 }
3499         }
3500
3501         lock(&pp.timersLock)
3502
3503         if len(pp.timers) > 0 {
3504                 adjusttimers(pp, now)
3505                 for len(pp.timers) > 0 {
3506                         // Note that runtimer may temporarily unlock
3507                         // pp.timersLock.
3508                         if tw := runtimer(pp, now); tw != 0 {
3509                                 if tw > 0 {
3510                                         pollUntil = tw
3511                                 }
3512                                 break
3513                         }
3514                         ran = true
3515                 }
3516         }
3517
3518         // If this is the local P, and there are a lot of deleted timers,
3519         // clear them out. We only do this for the local P to reduce
3520         // lock contention on timersLock.
3521         if pp == getg().m.p.ptr() && int(pp.deletedTimers.Load()) > len(pp.timers)/4 {
3522                 clearDeletedTimers(pp)
3523         }
3524
3525         unlock(&pp.timersLock)
3526
3527         return now, pollUntil, ran
3528 }
3529
3530 func parkunlock_c(gp *g, lock unsafe.Pointer) bool {
3531         unlock((*mutex)(lock))
3532         return true
3533 }
3534
3535 // park continuation on g0.
3536 func park_m(gp *g) {
3537         mp := getg().m
3538
3539         if traceEnabled() {
3540                 traceGoPark(mp.waittraceev, mp.waittraceskip)
3541         }
3542
3543         // N.B. Not using casGToWaiting here because the waitreason is
3544         // set by park_m's caller.
3545         casgstatus(gp, _Grunning, _Gwaiting)
3546         dropg()
3547
3548         if fn := mp.waitunlockf; fn != nil {
3549                 ok := fn(gp, mp.waitlock)
3550                 mp.waitunlockf = nil
3551                 mp.waitlock = nil
3552                 if !ok {
3553                         if traceEnabled() {
3554                                 traceGoUnpark(gp, 2)
3555                         }
3556                         casgstatus(gp, _Gwaiting, _Grunnable)
3557                         execute(gp, true) // Schedule it back, never returns.
3558                 }
3559         }
3560         schedule()
3561 }
3562
3563 func goschedImpl(gp *g) {
3564         status := readgstatus(gp)
3565         if status&^_Gscan != _Grunning {
3566                 dumpgstatus(gp)
3567                 throw("bad g status")
3568         }
3569         casgstatus(gp, _Grunning, _Grunnable)
3570         dropg()
3571         lock(&sched.lock)
3572         globrunqput(gp)
3573         unlock(&sched.lock)
3574
3575         schedule()
3576 }
3577
3578 // Gosched continuation on g0.
3579 func gosched_m(gp *g) {
3580         if traceEnabled() {
3581                 traceGoSched()
3582         }
3583         goschedImpl(gp)
3584 }
3585
3586 // goschedguarded is a forbidden-states-avoided version of gosched_m.
3587 func goschedguarded_m(gp *g) {
3588
3589         if !canPreemptM(gp.m) {
3590                 gogo(&gp.sched) // never return
3591         }
3592
3593         if traceEnabled() {
3594                 traceGoSched()
3595         }
3596         goschedImpl(gp)
3597 }
3598
3599 func gopreempt_m(gp *g) {
3600         if traceEnabled() {
3601                 traceGoPreempt()
3602         }
3603         goschedImpl(gp)
3604 }
3605
3606 // preemptPark parks gp and puts it in _Gpreempted.
3607 //
3608 //go:systemstack
3609 func preemptPark(gp *g) {
3610         if traceEnabled() {
3611                 traceGoPark(traceEvGoBlock, 0)
3612         }
3613         status := readgstatus(gp)
3614         if status&^_Gscan != _Grunning {
3615                 dumpgstatus(gp)
3616                 throw("bad g status")
3617         }
3618
3619         if gp.asyncSafePoint {
3620                 // Double-check that async preemption does not
3621                 // happen in SPWRITE assembly functions.
3622                 // isAsyncSafePoint must exclude this case.
3623                 f := findfunc(gp.sched.pc)
3624                 if !f.valid() {
3625                         throw("preempt at unknown pc")
3626                 }
3627                 if f.flag&abi.FuncFlagSPWrite != 0 {
3628                         println("runtime: unexpected SPWRITE function", funcname(f), "in async preempt")
3629                         throw("preempt SPWRITE")
3630                 }
3631         }
3632
3633         // Transition from _Grunning to _Gscan|_Gpreempted. We can't
3634         // be in _Grunning when we dropg because then we'd be running
3635         // without an M, but the moment we're in _Gpreempted,
3636         // something could claim this G before we've fully cleaned it
3637         // up. Hence, we set the scan bit to lock down further
3638         // transitions until we can dropg.
3639         casGToPreemptScan(gp, _Grunning, _Gscan|_Gpreempted)
3640         dropg()
3641         casfrom_Gscanstatus(gp, _Gscan|_Gpreempted, _Gpreempted)
3642         schedule()
3643 }
3644
3645 // goyield is like Gosched, but it:
3646 // - emits a GoPreempt trace event instead of a GoSched trace event
3647 // - puts the current G on the runq of the current P instead of the globrunq
3648 func goyield() {
3649         checkTimeouts()
3650         mcall(goyield_m)
3651 }
3652
3653 func goyield_m(gp *g) {
3654         if traceEnabled() {
3655                 traceGoPreempt()
3656         }
3657         pp := gp.m.p.ptr()
3658         casgstatus(gp, _Grunning, _Grunnable)
3659         dropg()
3660         runqput(pp, gp, false)
3661         schedule()
3662 }
3663
3664 // Finishes execution of the current goroutine.
3665 func goexit1() {
3666         if raceenabled {
3667                 racegoend()
3668         }
3669         if traceEnabled() {
3670                 traceGoEnd()
3671         }
3672         mcall(goexit0)
3673 }
3674
3675 // goexit continuation on g0.
3676 func goexit0(gp *g) {
3677         mp := getg().m
3678         pp := mp.p.ptr()
3679
3680         casgstatus(gp, _Grunning, _Gdead)
3681         gcController.addScannableStack(pp, -int64(gp.stack.hi-gp.stack.lo))
3682         if isSystemGoroutine(gp, false) {
3683                 sched.ngsys.Add(-1)
3684         }
3685         gp.m = nil
3686         locked := gp.lockedm != 0
3687         gp.lockedm = 0
3688         mp.lockedg = 0
3689         gp.preemptStop = false
3690         gp.paniconfault = false
3691         gp._defer = nil // should be true already but just in case.
3692         gp._panic = nil // non-nil for Goexit during panic. points at stack-allocated data.
3693         gp.writebuf = nil
3694         gp.waitreason = waitReasonZero
3695         gp.param = nil
3696         gp.labels = nil
3697         gp.timer = nil
3698
3699         if gcBlackenEnabled != 0 && gp.gcAssistBytes > 0 {
3700                 // Flush assist credit to the global pool. This gives
3701                 // better information to pacing if the application is
3702                 // rapidly creating an exiting goroutines.
3703                 assistWorkPerByte := gcController.assistWorkPerByte.Load()
3704                 scanCredit := int64(assistWorkPerByte * float64(gp.gcAssistBytes))
3705                 gcController.bgScanCredit.Add(scanCredit)
3706                 gp.gcAssistBytes = 0
3707         }
3708
3709         dropg()
3710
3711         if GOARCH == "wasm" { // no threads yet on wasm
3712                 gfput(pp, gp)
3713                 schedule() // never returns
3714         }
3715
3716         if mp.lockedInt != 0 {
3717                 print("invalid m->lockedInt = ", mp.lockedInt, "\n")
3718                 throw("internal lockOSThread error")
3719         }
3720         gfput(pp, gp)
3721         if locked {
3722                 // The goroutine may have locked this thread because
3723                 // it put it in an unusual kernel state. Kill it
3724                 // rather than returning it to the thread pool.
3725
3726                 // Return to mstart, which will release the P and exit
3727                 // the thread.
3728                 if GOOS != "plan9" { // See golang.org/issue/22227.
3729                         gogo(&mp.g0.sched)
3730                 } else {
3731                         // Clear lockedExt on plan9 since we may end up re-using
3732                         // this thread.
3733                         mp.lockedExt = 0
3734                 }
3735         }
3736         schedule()
3737 }
3738
3739 // save updates getg().sched to refer to pc and sp so that a following
3740 // gogo will restore pc and sp.
3741 //
3742 // save must not have write barriers because invoking a write barrier
3743 // can clobber getg().sched.
3744 //
3745 //go:nosplit
3746 //go:nowritebarrierrec
3747 func save(pc, sp uintptr) {
3748         gp := getg()
3749
3750         if gp == gp.m.g0 || gp == gp.m.gsignal {
3751                 // m.g0.sched is special and must describe the context
3752                 // for exiting the thread. mstart1 writes to it directly.
3753                 // m.gsignal.sched should not be used at all.
3754                 // This check makes sure save calls do not accidentally
3755                 // run in contexts where they'd write to system g's.
3756                 throw("save on system g not allowed")
3757         }
3758
3759         gp.sched.pc = pc
3760         gp.sched.sp = sp
3761         gp.sched.lr = 0
3762         gp.sched.ret = 0
3763         // We need to ensure ctxt is zero, but can't have a write
3764         // barrier here. However, it should always already be zero.
3765         // Assert that.
3766         if gp.sched.ctxt != nil {
3767                 badctxt()
3768         }
3769 }
3770
3771 // The goroutine g is about to enter a system call.
3772 // Record that it's not using the cpu anymore.
3773 // This is called only from the go syscall library and cgocall,
3774 // not from the low-level system calls used by the runtime.
3775 //
3776 // Entersyscall cannot split the stack: the save must
3777 // make g->sched refer to the caller's stack segment, because
3778 // entersyscall is going to return immediately after.
3779 //
3780 // Nothing entersyscall calls can split the stack either.
3781 // We cannot safely move the stack during an active call to syscall,
3782 // because we do not know which of the uintptr arguments are
3783 // really pointers (back into the stack).
3784 // In practice, this means that we make the fast path run through
3785 // entersyscall doing no-split things, and the slow path has to use systemstack
3786 // to run bigger things on the system stack.
3787 //
3788 // reentersyscall is the entry point used by cgo callbacks, where explicitly
3789 // saved SP and PC are restored. This is needed when exitsyscall will be called
3790 // from a function further up in the call stack than the parent, as g->syscallsp
3791 // must always point to a valid stack frame. entersyscall below is the normal
3792 // entry point for syscalls, which obtains the SP and PC from the caller.
3793 //
3794 // Syscall tracing:
3795 // At the start of a syscall we emit traceGoSysCall to capture the stack trace.
3796 // If the syscall does not block, that is it, we do not emit any other events.
3797 // If the syscall blocks (that is, P is retaken), retaker emits traceGoSysBlock;
3798 // when syscall returns we emit traceGoSysExit and when the goroutine starts running
3799 // (potentially instantly, if exitsyscallfast returns true) we emit traceGoStart.
3800 // To ensure that traceGoSysExit is emitted strictly after traceGoSysBlock,
3801 // we remember current value of syscalltick in m (gp.m.syscalltick = gp.m.p.ptr().syscalltick),
3802 // whoever emits traceGoSysBlock increments p.syscalltick afterwards;
3803 // and we wait for the increment before emitting traceGoSysExit.
3804 // Note that the increment is done even if tracing is not enabled,
3805 // because tracing can be enabled in the middle of syscall. We don't want the wait to hang.
3806 //
3807 //go:nosplit
3808 func reentersyscall(pc, sp uintptr) {
3809         gp := getg()
3810
3811         // Disable preemption because during this function g is in Gsyscall status,
3812         // but can have inconsistent g->sched, do not let GC observe it.
3813         gp.m.locks++
3814
3815         // Entersyscall must not call any function that might split/grow the stack.
3816         // (See details in comment above.)
3817         // Catch calls that might, by replacing the stack guard with something that
3818         // will trip any stack check and leaving a flag to tell newstack to die.
3819         gp.stackguard0 = stackPreempt
3820         gp.throwsplit = true
3821
3822         // Leave SP around for GC and traceback.
3823         save(pc, sp)
3824         gp.syscallsp = sp
3825         gp.syscallpc = pc
3826         casgstatus(gp, _Grunning, _Gsyscall)
3827         if staticLockRanking {
3828                 // When doing static lock ranking casgstatus can call
3829                 // systemstack which clobbers g.sched.
3830                 save(pc, sp)
3831         }
3832         if gp.syscallsp < gp.stack.lo || gp.stack.hi < gp.syscallsp {
3833                 systemstack(func() {
3834                         print("entersyscall inconsistent ", hex(gp.syscallsp), " [", hex(gp.stack.lo), ",", hex(gp.stack.hi), "]\n")
3835                         throw("entersyscall")
3836                 })
3837         }
3838
3839         if traceEnabled() {
3840                 systemstack(traceGoSysCall)
3841                 // systemstack itself clobbers g.sched.{pc,sp} and we might
3842                 // need them later when the G is genuinely blocked in a
3843                 // syscall
3844                 save(pc, sp)
3845         }
3846
3847         if sched.sysmonwait.Load() {
3848                 systemstack(entersyscall_sysmon)
3849                 save(pc, sp)
3850         }
3851
3852         if gp.m.p.ptr().runSafePointFn != 0 {
3853                 // runSafePointFn may stack split if run on this stack
3854                 systemstack(runSafePointFn)
3855                 save(pc, sp)
3856         }
3857
3858         gp.m.syscalltick = gp.m.p.ptr().syscalltick
3859         gp.sysblocktraced = true
3860         pp := gp.m.p.ptr()
3861         pp.m = 0
3862         gp.m.oldp.set(pp)
3863         gp.m.p = 0
3864         atomic.Store(&pp.status, _Psyscall)
3865         if sched.gcwaiting.Load() {
3866                 systemstack(entersyscall_gcwait)
3867                 save(pc, sp)
3868         }
3869
3870         gp.m.locks--
3871 }
3872
3873 // Standard syscall entry used by the go syscall library and normal cgo calls.
3874 //
3875 // This is exported via linkname to assembly in the syscall package and x/sys.
3876 //
3877 //go:nosplit
3878 //go:linkname entersyscall
3879 func entersyscall() {
3880         reentersyscall(getcallerpc(), getcallersp())
3881 }
3882
3883 func entersyscall_sysmon() {
3884         lock(&sched.lock)
3885         if sched.sysmonwait.Load() {
3886                 sched.sysmonwait.Store(false)
3887                 notewakeup(&sched.sysmonnote)
3888         }
3889         unlock(&sched.lock)
3890 }
3891
3892 func entersyscall_gcwait() {
3893         gp := getg()
3894         pp := gp.m.oldp.ptr()
3895
3896         lock(&sched.lock)
3897         if sched.stopwait > 0 && atomic.Cas(&pp.status, _Psyscall, _Pgcstop) {
3898                 if traceEnabled() {
3899                         traceGoSysBlock(pp)
3900                         traceProcStop(pp)
3901                 }
3902                 pp.syscalltick++
3903                 if sched.stopwait--; sched.stopwait == 0 {
3904                         notewakeup(&sched.stopnote)
3905                 }
3906         }
3907         unlock(&sched.lock)
3908 }
3909
3910 // The same as entersyscall(), but with a hint that the syscall is blocking.
3911 //
3912 //go:nosplit
3913 func entersyscallblock() {
3914         gp := getg()
3915
3916         gp.m.locks++ // see comment in entersyscall
3917         gp.throwsplit = true
3918         gp.stackguard0 = stackPreempt // see comment in entersyscall
3919         gp.m.syscalltick = gp.m.p.ptr().syscalltick
3920         gp.sysblocktraced = true
3921         gp.m.p.ptr().syscalltick++
3922
3923         // Leave SP around for GC and traceback.
3924         pc := getcallerpc()
3925         sp := getcallersp()
3926         save(pc, sp)
3927         gp.syscallsp = gp.sched.sp
3928         gp.syscallpc = gp.sched.pc
3929         if gp.syscallsp < gp.stack.lo || gp.stack.hi < gp.syscallsp {
3930                 sp1 := sp
3931                 sp2 := gp.sched.sp
3932                 sp3 := gp.syscallsp
3933                 systemstack(func() {
3934                         print("entersyscallblock inconsistent ", hex(sp1), " ", hex(sp2), " ", hex(sp3), " [", hex(gp.stack.lo), ",", hex(gp.stack.hi), "]\n")
3935                         throw("entersyscallblock")
3936                 })
3937         }
3938         casgstatus(gp, _Grunning, _Gsyscall)
3939         if gp.syscallsp < gp.stack.lo || gp.stack.hi < gp.syscallsp {
3940                 systemstack(func() {
3941                         print("entersyscallblock inconsistent ", hex(sp), " ", hex(gp.sched.sp), " ", hex(gp.syscallsp), " [", hex(gp.stack.lo), ",", hex(gp.stack.hi), "]\n")
3942                         throw("entersyscallblock")
3943                 })
3944         }
3945
3946         systemstack(entersyscallblock_handoff)
3947
3948         // Resave for traceback during blocked call.
3949         save(getcallerpc(), getcallersp())
3950
3951         gp.m.locks--
3952 }
3953
3954 func entersyscallblock_handoff() {
3955         if traceEnabled() {
3956                 traceGoSysCall()
3957                 traceGoSysBlock(getg().m.p.ptr())
3958         }
3959         handoffp(releasep())
3960 }
3961
3962 // The goroutine g exited its system call.
3963 // Arrange for it to run on a cpu again.
3964 // This is called only from the go syscall library, not
3965 // from the low-level system calls used by the runtime.
3966 //
3967 // Write barriers are not allowed because our P may have been stolen.
3968 //
3969 // This is exported via linkname to assembly in the syscall package.
3970 //
3971 //go:nosplit
3972 //go:nowritebarrierrec
3973 //go:linkname exitsyscall
3974 func exitsyscall() {
3975         gp := getg()
3976
3977         gp.m.locks++ // see comment in entersyscall
3978         if getcallersp() > gp.syscallsp {
3979                 throw("exitsyscall: syscall frame is no longer valid")
3980         }
3981
3982         gp.waitsince = 0
3983         oldp := gp.m.oldp.ptr()
3984         gp.m.oldp = 0
3985         if exitsyscallfast(oldp) {
3986                 // When exitsyscallfast returns success, we have a P so can now use
3987                 // write barriers
3988                 if goroutineProfile.active {
3989                         // Make sure that gp has had its stack written out to the goroutine
3990                         // profile, exactly as it was when the goroutine profiler first
3991                         // stopped the world.
3992                         systemstack(func() {
3993                                 tryRecordGoroutineProfileWB(gp)
3994                         })
3995                 }
3996                 if traceEnabled() {
3997                         if oldp != gp.m.p.ptr() || gp.m.syscalltick != gp.m.p.ptr().syscalltick {
3998                                 systemstack(traceGoStart)
3999                         }
4000                 }
4001                 // There's a cpu for us, so we can run.
4002                 gp.m.p.ptr().syscalltick++
4003                 // We need to cas the status and scan before resuming...
4004                 casgstatus(gp, _Gsyscall, _Grunning)
4005
4006                 // Garbage collector isn't running (since we are),
4007                 // so okay to clear syscallsp.
4008                 gp.syscallsp = 0
4009                 gp.m.locks--
4010                 if gp.preempt {
4011                         // restore the preemption request in case we've cleared it in newstack
4012                         gp.stackguard0 = stackPreempt
4013                 } else {
4014                         // otherwise restore the real stackGuard, we've spoiled it in entersyscall/entersyscallblock
4015                         gp.stackguard0 = gp.stack.lo + stackGuard
4016                 }
4017                 gp.throwsplit = false
4018
4019                 if sched.disable.user && !schedEnabled(gp) {
4020                         // Scheduling of this goroutine is disabled.
4021                         Gosched()
4022                 }
4023
4024                 return
4025         }
4026
4027         gp.sysexitticks = 0
4028         if traceEnabled() {
4029                 // Wait till traceGoSysBlock event is emitted.
4030                 // This ensures consistency of the trace (the goroutine is started after it is blocked).
4031                 for oldp != nil && oldp.syscalltick == gp.m.syscalltick {
4032                         osyield()
4033                 }
4034                 // We can't trace syscall exit right now because we don't have a P.
4035                 // Tracing code can invoke write barriers that cannot run without a P.
4036                 // So instead we remember the syscall exit time and emit the event
4037                 // in execute when we have a P.
4038                 gp.sysexitticks = cputicks()
4039         }
4040
4041         gp.m.locks--
4042
4043         // Call the scheduler.
4044         mcall(exitsyscall0)
4045
4046         // Scheduler returned, so we're allowed to run now.
4047         // Delete the syscallsp information that we left for
4048         // the garbage collector during the system call.
4049         // Must wait until now because until gosched returns
4050         // we don't know for sure that the garbage collector
4051         // is not running.
4052         gp.syscallsp = 0
4053         gp.m.p.ptr().syscalltick++
4054         gp.throwsplit = false
4055 }
4056
4057 //go:nosplit
4058 func exitsyscallfast(oldp *p) bool {
4059         gp := getg()
4060
4061         // Freezetheworld sets stopwait but does not retake P's.
4062         if sched.stopwait == freezeStopWait {
4063                 return false
4064         }
4065
4066         // Try to re-acquire the last P.
4067         if oldp != nil && oldp.status == _Psyscall && atomic.Cas(&oldp.status, _Psyscall, _Pidle) {
4068                 // There's a cpu for us, so we can run.
4069                 wirep(oldp)
4070                 exitsyscallfast_reacquired()
4071                 return true
4072         }
4073
4074         // Try to get any other idle P.
4075         if sched.pidle != 0 {
4076                 var ok bool
4077                 systemstack(func() {
4078                         ok = exitsyscallfast_pidle()
4079                         if ok && traceEnabled() {
4080                                 if oldp != nil {
4081                                         // Wait till traceGoSysBlock event is emitted.
4082                                         // This ensures consistency of the trace (the goroutine is started after it is blocked).
4083                                         for oldp.syscalltick == gp.m.syscalltick {
4084                                                 osyield()
4085                                         }
4086                                 }
4087                                 traceGoSysExit(0)
4088                         }
4089                 })
4090                 if ok {
4091                         return true
4092                 }
4093         }
4094         return false
4095 }
4096
4097 // exitsyscallfast_reacquired is the exitsyscall path on which this G
4098 // has successfully reacquired the P it was running on before the
4099 // syscall.
4100 //
4101 //go:nosplit
4102 func exitsyscallfast_reacquired() {
4103         gp := getg()
4104         if gp.m.syscalltick != gp.m.p.ptr().syscalltick {
4105                 if traceEnabled() {
4106                         // The p was retaken and then enter into syscall again (since gp.m.syscalltick has changed).
4107                         // traceGoSysBlock for this syscall was already emitted,
4108                         // but here we effectively retake the p from the new syscall running on the same p.
4109                         systemstack(func() {
4110                                 // Denote blocking of the new syscall.
4111                                 traceGoSysBlock(gp.m.p.ptr())
4112                                 // Denote completion of the current syscall.
4113                                 traceGoSysExit(0)
4114                         })
4115                 }
4116                 gp.m.p.ptr().syscalltick++
4117         }
4118 }
4119
4120 func exitsyscallfast_pidle() bool {
4121         lock(&sched.lock)
4122         pp, _ := pidleget(0)
4123         if pp != nil && sched.sysmonwait.Load() {
4124                 sched.sysmonwait.Store(false)
4125                 notewakeup(&sched.sysmonnote)
4126         }
4127         unlock(&sched.lock)
4128         if pp != nil {
4129                 acquirep(pp)
4130                 return true
4131         }
4132         return false
4133 }
4134
4135 // exitsyscall slow path on g0.
4136 // Failed to acquire P, enqueue gp as runnable.
4137 //
4138 // Called via mcall, so gp is the calling g from this M.
4139 //
4140 //go:nowritebarrierrec
4141 func exitsyscall0(gp *g) {
4142         casgstatus(gp, _Gsyscall, _Grunnable)
4143         dropg()
4144         lock(&sched.lock)
4145         var pp *p
4146         if schedEnabled(gp) {
4147                 pp, _ = pidleget(0)
4148         }
4149         var locked bool
4150         if pp == nil {
4151                 globrunqput(gp)
4152
4153                 // Below, we stoplockedm if gp is locked. globrunqput releases
4154                 // ownership of gp, so we must check if gp is locked prior to
4155                 // committing the release by unlocking sched.lock, otherwise we
4156                 // could race with another M transitioning gp from unlocked to
4157                 // locked.
4158                 locked = gp.lockedm != 0
4159         } else if sched.sysmonwait.Load() {
4160                 sched.sysmonwait.Store(false)
4161                 notewakeup(&sched.sysmonnote)
4162         }
4163         unlock(&sched.lock)
4164         if pp != nil {
4165                 acquirep(pp)
4166                 execute(gp, false) // Never returns.
4167         }
4168         if locked {
4169                 // Wait until another thread schedules gp and so m again.
4170                 //
4171                 // N.B. lockedm must be this M, as this g was running on this M
4172                 // before entersyscall.
4173                 stoplockedm()
4174                 execute(gp, false) // Never returns.
4175         }
4176         stopm()
4177         schedule() // Never returns.
4178 }
4179
4180 // Called from syscall package before fork.
4181 //
4182 //go:linkname syscall_runtime_BeforeFork syscall.runtime_BeforeFork
4183 //go:nosplit
4184 func syscall_runtime_BeforeFork() {
4185         gp := getg().m.curg
4186
4187         // Block signals during a fork, so that the child does not run
4188         // a signal handler before exec if a signal is sent to the process
4189         // group. See issue #18600.
4190         gp.m.locks++
4191         sigsave(&gp.m.sigmask)
4192         sigblock(false)
4193
4194         // This function is called before fork in syscall package.
4195         // Code between fork and exec must not allocate memory nor even try to grow stack.
4196         // Here we spoil g.stackguard0 to reliably detect any attempts to grow stack.
4197         // runtime_AfterFork will undo this in parent process, but not in child.
4198         gp.stackguard0 = stackFork
4199 }
4200
4201 // Called from syscall package after fork in parent.
4202 //
4203 //go:linkname syscall_runtime_AfterFork syscall.runtime_AfterFork
4204 //go:nosplit
4205 func syscall_runtime_AfterFork() {
4206         gp := getg().m.curg
4207
4208         // See the comments in beforefork.
4209         gp.stackguard0 = gp.stack.lo + stackGuard
4210
4211         msigrestore(gp.m.sigmask)
4212
4213         gp.m.locks--
4214 }
4215
4216 // inForkedChild is true while manipulating signals in the child process.
4217 // This is used to avoid calling libc functions in case we are using vfork.
4218 var inForkedChild bool
4219
4220 // Called from syscall package after fork in child.
4221 // It resets non-sigignored signals to the default handler, and
4222 // restores the signal mask in preparation for the exec.
4223 //
4224 // Because this might be called during a vfork, and therefore may be
4225 // temporarily sharing address space with the parent process, this must
4226 // not change any global variables or calling into C code that may do so.
4227 //
4228 //go:linkname syscall_runtime_AfterForkInChild syscall.runtime_AfterForkInChild
4229 //go:nosplit
4230 //go:nowritebarrierrec
4231 func syscall_runtime_AfterForkInChild() {
4232         // It's OK to change the global variable inForkedChild here
4233         // because we are going to change it back. There is no race here,
4234         // because if we are sharing address space with the parent process,
4235         // then the parent process can not be running concurrently.
4236         inForkedChild = true
4237
4238         clearSignalHandlers()
4239
4240         // When we are the child we are the only thread running,
4241         // so we know that nothing else has changed gp.m.sigmask.
4242         msigrestore(getg().m.sigmask)
4243
4244         inForkedChild = false
4245 }
4246
4247 // pendingPreemptSignals is the number of preemption signals
4248 // that have been sent but not received. This is only used on Darwin.
4249 // For #41702.
4250 var pendingPreemptSignals atomic.Int32
4251
4252 // Called from syscall package before Exec.
4253 //
4254 //go:linkname syscall_runtime_BeforeExec syscall.runtime_BeforeExec
4255 func syscall_runtime_BeforeExec() {
4256         // Prevent thread creation during exec.
4257         execLock.lock()
4258
4259         // On Darwin, wait for all pending preemption signals to
4260         // be received. See issue #41702.
4261         if GOOS == "darwin" || GOOS == "ios" {
4262                 for pendingPreemptSignals.Load() > 0 {
4263                         osyield()
4264                 }
4265         }
4266 }
4267
4268 // Called from syscall package after Exec.
4269 //
4270 //go:linkname syscall_runtime_AfterExec syscall.runtime_AfterExec
4271 func syscall_runtime_AfterExec() {
4272         execLock.unlock()
4273 }
4274
4275 // Allocate a new g, with a stack big enough for stacksize bytes.
4276 func malg(stacksize int32) *g {
4277         newg := new(g)
4278         if stacksize >= 0 {
4279                 stacksize = round2(stackSystem + stacksize)
4280                 systemstack(func() {
4281                         newg.stack = stackalloc(uint32(stacksize))
4282                 })
4283                 newg.stackguard0 = newg.stack.lo + stackGuard
4284                 newg.stackguard1 = ^uintptr(0)
4285                 // Clear the bottom word of the stack. We record g
4286                 // there on gsignal stack during VDSO on ARM and ARM64.
4287                 *(*uintptr)(unsafe.Pointer(newg.stack.lo)) = 0
4288         }
4289         return newg
4290 }
4291
4292 // Create a new g running fn.
4293 // Put it on the queue of g's waiting to run.
4294 // The compiler turns a go statement into a call to this.
4295 func newproc(fn *funcval) {
4296         gp := getg()
4297         pc := getcallerpc()
4298         systemstack(func() {
4299                 newg := newproc1(fn, gp, pc)
4300
4301                 pp := getg().m.p.ptr()
4302                 runqput(pp, newg, true)
4303
4304                 if mainStarted {
4305                         wakep()
4306                 }
4307         })
4308 }
4309
4310 // Create a new g in state _Grunnable, starting at fn. callerpc is the
4311 // address of the go statement that created this. The caller is responsible
4312 // for adding the new g to the scheduler.
4313 func newproc1(fn *funcval, callergp *g, callerpc uintptr) *g {
4314         if fn == nil {
4315                 fatal("go of nil func value")
4316         }
4317
4318         mp := acquirem() // disable preemption because we hold M and P in local vars.
4319         pp := mp.p.ptr()
4320         newg := gfget(pp)
4321         if newg == nil {
4322                 newg = malg(stackMin)
4323                 casgstatus(newg, _Gidle, _Gdead)
4324                 allgadd(newg) // publishes with a g->status of Gdead so GC scanner doesn't look at uninitialized stack.
4325         }
4326         if newg.stack.hi == 0 {
4327                 throw("newproc1: newg missing stack")
4328         }
4329
4330         if readgstatus(newg) != _Gdead {
4331                 throw("newproc1: new g is not Gdead")
4332         }
4333
4334         totalSize := uintptr(4*goarch.PtrSize + sys.MinFrameSize) // extra space in case of reads slightly beyond frame
4335         totalSize = alignUp(totalSize, sys.StackAlign)
4336         sp := newg.stack.hi - totalSize
4337         spArg := sp
4338         if usesLR {
4339                 // caller's LR
4340                 *(*uintptr)(unsafe.Pointer(sp)) = 0
4341                 prepGoExitFrame(sp)
4342                 spArg += sys.MinFrameSize
4343         }
4344
4345         memclrNoHeapPointers(unsafe.Pointer(&newg.sched), unsafe.Sizeof(newg.sched))
4346         newg.sched.sp = sp
4347         newg.stktopsp = sp
4348         newg.sched.pc = abi.FuncPCABI0(goexit) + sys.PCQuantum // +PCQuantum so that previous instruction is in same function
4349         newg.sched.g = guintptr(unsafe.Pointer(newg))
4350         gostartcallfn(&newg.sched, fn)
4351         newg.parentGoid = callergp.goid
4352         newg.gopc = callerpc
4353         newg.ancestors = saveAncestors(callergp)
4354         newg.startpc = fn.fn
4355         if isSystemGoroutine(newg, false) {
4356                 sched.ngsys.Add(1)
4357         } else {
4358                 // Only user goroutines inherit pprof labels.
4359                 if mp.curg != nil {
4360                         newg.labels = mp.curg.labels
4361                 }
4362                 if goroutineProfile.active {
4363                         // A concurrent goroutine profile is running. It should include
4364                         // exactly the set of goroutines that were alive when the goroutine
4365                         // profiler first stopped the world. That does not include newg, so
4366                         // mark it as not needing a profile before transitioning it from
4367                         // _Gdead.
4368                         newg.goroutineProfiled.Store(goroutineProfileSatisfied)
4369                 }
4370         }
4371         // Track initial transition?
4372         newg.trackingSeq = uint8(fastrand())
4373         if newg.trackingSeq%gTrackingPeriod == 0 {
4374                 newg.tracking = true
4375         }
4376         casgstatus(newg, _Gdead, _Grunnable)
4377         gcController.addScannableStack(pp, int64(newg.stack.hi-newg.stack.lo))
4378
4379         if pp.goidcache == pp.goidcacheend {
4380                 // Sched.goidgen is the last allocated id,
4381                 // this batch must be [sched.goidgen+1, sched.goidgen+GoidCacheBatch].
4382                 // At startup sched.goidgen=0, so main goroutine receives goid=1.
4383                 pp.goidcache = sched.goidgen.Add(_GoidCacheBatch)
4384                 pp.goidcache -= _GoidCacheBatch - 1
4385                 pp.goidcacheend = pp.goidcache + _GoidCacheBatch
4386         }
4387         newg.goid = pp.goidcache
4388         pp.goidcache++
4389         if raceenabled {
4390                 newg.racectx = racegostart(callerpc)
4391                 if newg.labels != nil {
4392                         // See note in proflabel.go on labelSync's role in synchronizing
4393                         // with the reads in the signal handler.
4394                         racereleasemergeg(newg, unsafe.Pointer(&labelSync))
4395                 }
4396         }
4397         if traceEnabled() {
4398                 traceGoCreate(newg, newg.startpc)
4399         }
4400         releasem(mp)
4401
4402         return newg
4403 }
4404
4405 // saveAncestors copies previous ancestors of the given caller g and
4406 // includes info for the current caller into a new set of tracebacks for
4407 // a g being created.
4408 func saveAncestors(callergp *g) *[]ancestorInfo {
4409         // Copy all prior info, except for the root goroutine (goid 0).
4410         if debug.tracebackancestors <= 0 || callergp.goid == 0 {
4411                 return nil
4412         }
4413         var callerAncestors []ancestorInfo
4414         if callergp.ancestors != nil {
4415                 callerAncestors = *callergp.ancestors
4416         }
4417         n := int32(len(callerAncestors)) + 1
4418         if n > debug.tracebackancestors {
4419                 n = debug.tracebackancestors
4420         }
4421         ancestors := make([]ancestorInfo, n)
4422         copy(ancestors[1:], callerAncestors)
4423
4424         var pcs [tracebackInnerFrames]uintptr
4425         npcs := gcallers(callergp, 0, pcs[:])
4426         ipcs := make([]uintptr, npcs)
4427         copy(ipcs, pcs[:])
4428         ancestors[0] = ancestorInfo{
4429                 pcs:  ipcs,
4430                 goid: callergp.goid,
4431                 gopc: callergp.gopc,
4432         }
4433
4434         ancestorsp := new([]ancestorInfo)
4435         *ancestorsp = ancestors
4436         return ancestorsp
4437 }
4438
4439 // Put on gfree list.
4440 // If local list is too long, transfer a batch to the global list.
4441 func gfput(pp *p, gp *g) {
4442         if readgstatus(gp) != _Gdead {
4443                 throw("gfput: bad status (not Gdead)")
4444         }
4445
4446         stksize := gp.stack.hi - gp.stack.lo
4447
4448         if stksize != uintptr(startingStackSize) {
4449                 // non-standard stack size - free it.
4450                 stackfree(gp.stack)
4451                 gp.stack.lo = 0
4452                 gp.stack.hi = 0
4453                 gp.stackguard0 = 0
4454         }
4455
4456         pp.gFree.push(gp)
4457         pp.gFree.n++
4458         if pp.gFree.n >= 64 {
4459                 var (
4460                         inc      int32
4461                         stackQ   gQueue
4462                         noStackQ gQueue
4463                 )
4464                 for pp.gFree.n >= 32 {
4465                         gp := pp.gFree.pop()
4466                         pp.gFree.n--
4467                         if gp.stack.lo == 0 {
4468                                 noStackQ.push(gp)
4469                         } else {
4470                                 stackQ.push(gp)
4471                         }
4472                         inc++
4473                 }
4474                 lock(&sched.gFree.lock)
4475                 sched.gFree.noStack.pushAll(noStackQ)
4476                 sched.gFree.stack.pushAll(stackQ)
4477                 sched.gFree.n += inc
4478                 unlock(&sched.gFree.lock)
4479         }
4480 }
4481
4482 // Get from gfree list.
4483 // If local list is empty, grab a batch from global list.
4484 func gfget(pp *p) *g {
4485 retry:
4486         if pp.gFree.empty() && (!sched.gFree.stack.empty() || !sched.gFree.noStack.empty()) {
4487                 lock(&sched.gFree.lock)
4488                 // Move a batch of free Gs to the P.
4489                 for pp.gFree.n < 32 {
4490                         // Prefer Gs with stacks.
4491                         gp := sched.gFree.stack.pop()
4492                         if gp == nil {
4493                                 gp = sched.gFree.noStack.pop()
4494                                 if gp == nil {
4495                                         break
4496                                 }
4497                         }
4498                         sched.gFree.n--
4499                         pp.gFree.push(gp)
4500                         pp.gFree.n++
4501                 }
4502                 unlock(&sched.gFree.lock)
4503                 goto retry
4504         }
4505         gp := pp.gFree.pop()
4506         if gp == nil {
4507                 return nil
4508         }
4509         pp.gFree.n--
4510         if gp.stack.lo != 0 && gp.stack.hi-gp.stack.lo != uintptr(startingStackSize) {
4511                 // Deallocate old stack. We kept it in gfput because it was the
4512                 // right size when the goroutine was put on the free list, but
4513                 // the right size has changed since then.
4514                 systemstack(func() {
4515                         stackfree(gp.stack)
4516                         gp.stack.lo = 0
4517                         gp.stack.hi = 0
4518                         gp.stackguard0 = 0
4519                 })
4520         }
4521         if gp.stack.lo == 0 {
4522                 // Stack was deallocated in gfput or just above. Allocate a new one.
4523                 systemstack(func() {
4524                         gp.stack = stackalloc(startingStackSize)
4525                 })
4526                 gp.stackguard0 = gp.stack.lo + stackGuard
4527         } else {
4528                 if raceenabled {
4529                         racemalloc(unsafe.Pointer(gp.stack.lo), gp.stack.hi-gp.stack.lo)
4530                 }
4531                 if msanenabled {
4532                         msanmalloc(unsafe.Pointer(gp.stack.lo), gp.stack.hi-gp.stack.lo)
4533                 }
4534                 if asanenabled {
4535                         asanunpoison(unsafe.Pointer(gp.stack.lo), gp.stack.hi-gp.stack.lo)
4536                 }
4537         }
4538         return gp
4539 }
4540
4541 // Purge all cached G's from gfree list to the global list.
4542 func gfpurge(pp *p) {
4543         var (
4544                 inc      int32
4545                 stackQ   gQueue
4546                 noStackQ gQueue
4547         )
4548         for !pp.gFree.empty() {
4549                 gp := pp.gFree.pop()
4550                 pp.gFree.n--
4551                 if gp.stack.lo == 0 {
4552                         noStackQ.push(gp)
4553                 } else {
4554                         stackQ.push(gp)
4555                 }
4556                 inc++
4557         }
4558         lock(&sched.gFree.lock)
4559         sched.gFree.noStack.pushAll(noStackQ)
4560         sched.gFree.stack.pushAll(stackQ)
4561         sched.gFree.n += inc
4562         unlock(&sched.gFree.lock)
4563 }
4564
4565 // Breakpoint executes a breakpoint trap.
4566 func Breakpoint() {
4567         breakpoint()
4568 }
4569
4570 // dolockOSThread is called by LockOSThread and lockOSThread below
4571 // after they modify m.locked. Do not allow preemption during this call,
4572 // or else the m might be different in this function than in the caller.
4573 //
4574 //go:nosplit
4575 func dolockOSThread() {
4576         if GOARCH == "wasm" {
4577                 return // no threads on wasm yet
4578         }
4579         gp := getg()
4580         gp.m.lockedg.set(gp)
4581         gp.lockedm.set(gp.m)
4582 }
4583
4584 // LockOSThread wires the calling goroutine to its current operating system thread.
4585 // The calling goroutine will always execute in that thread,
4586 // and no other goroutine will execute in it,
4587 // until the calling goroutine has made as many calls to
4588 // UnlockOSThread as to LockOSThread.
4589 // If the calling goroutine exits without unlocking the thread,
4590 // the thread will be terminated.
4591 //
4592 // All init functions are run on the startup thread. Calling LockOSThread
4593 // from an init function will cause the main function to be invoked on
4594 // that thread.
4595 //
4596 // A goroutine should call LockOSThread before calling OS services or
4597 // non-Go library functions that depend on per-thread state.
4598 //
4599 //go:nosplit
4600 func LockOSThread() {
4601         if atomic.Load(&newmHandoff.haveTemplateThread) == 0 && GOOS != "plan9" {
4602                 // If we need to start a new thread from the locked
4603                 // thread, we need the template thread. Start it now
4604                 // while we're in a known-good state.
4605                 startTemplateThread()
4606         }
4607         gp := getg()
4608         gp.m.lockedExt++
4609         if gp.m.lockedExt == 0 {
4610                 gp.m.lockedExt--
4611                 panic("LockOSThread nesting overflow")
4612         }
4613         dolockOSThread()
4614 }
4615
4616 //go:nosplit
4617 func lockOSThread() {
4618         getg().m.lockedInt++
4619         dolockOSThread()
4620 }
4621
4622 // dounlockOSThread is called by UnlockOSThread and unlockOSThread below
4623 // after they update m->locked. Do not allow preemption during this call,
4624 // or else the m might be in different in this function than in the caller.
4625 //
4626 //go:nosplit
4627 func dounlockOSThread() {
4628         if GOARCH == "wasm" {
4629                 return // no threads on wasm yet
4630         }
4631         gp := getg()
4632         if gp.m.lockedInt != 0 || gp.m.lockedExt != 0 {
4633                 return
4634         }
4635         gp.m.lockedg = 0
4636         gp.lockedm = 0
4637 }
4638
4639 // UnlockOSThread undoes an earlier call to LockOSThread.
4640 // If this drops the number of active LockOSThread calls on the
4641 // calling goroutine to zero, it unwires the calling goroutine from
4642 // its fixed operating system thread.
4643 // If there are no active LockOSThread calls, this is a no-op.
4644 //
4645 // Before calling UnlockOSThread, the caller must ensure that the OS
4646 // thread is suitable for running other goroutines. If the caller made
4647 // any permanent changes to the state of the thread that would affect
4648 // other goroutines, it should not call this function and thus leave
4649 // the goroutine locked to the OS thread until the goroutine (and
4650 // hence the thread) exits.
4651 //
4652 //go:nosplit
4653 func UnlockOSThread() {
4654         gp := getg()
4655         if gp.m.lockedExt == 0 {
4656                 return
4657         }
4658         gp.m.lockedExt--
4659         dounlockOSThread()
4660 }
4661
4662 //go:nosplit
4663 func unlockOSThread() {
4664         gp := getg()
4665         if gp.m.lockedInt == 0 {
4666                 systemstack(badunlockosthread)
4667         }
4668         gp.m.lockedInt--
4669         dounlockOSThread()
4670 }
4671
4672 func badunlockosthread() {
4673         throw("runtime: internal error: misuse of lockOSThread/unlockOSThread")
4674 }
4675
4676 func gcount() int32 {
4677         n := int32(atomic.Loaduintptr(&allglen)) - sched.gFree.n - sched.ngsys.Load()
4678         for _, pp := range allp {
4679                 n -= pp.gFree.n
4680         }
4681
4682         // All these variables can be changed concurrently, so the result can be inconsistent.
4683         // But at least the current goroutine is running.
4684         if n < 1 {
4685                 n = 1
4686         }
4687         return n
4688 }
4689
4690 func mcount() int32 {
4691         return int32(sched.mnext - sched.nmfreed)
4692 }
4693
4694 var prof struct {
4695         signalLock atomic.Uint32
4696
4697         // Must hold signalLock to write. Reads may be lock-free, but
4698         // signalLock should be taken to synchronize with changes.
4699         hz atomic.Int32
4700 }
4701
4702 func _System()                    { _System() }
4703 func _ExternalCode()              { _ExternalCode() }
4704 func _LostExternalCode()          { _LostExternalCode() }
4705 func _GC()                        { _GC() }
4706 func _LostSIGPROFDuringAtomic64() { _LostSIGPROFDuringAtomic64() }
4707 func _VDSO()                      { _VDSO() }
4708
4709 // Called if we receive a SIGPROF signal.
4710 // Called by the signal handler, may run during STW.
4711 //
4712 //go:nowritebarrierrec
4713 func sigprof(pc, sp, lr uintptr, gp *g, mp *m) {
4714         if prof.hz.Load() == 0 {
4715                 return
4716         }
4717
4718         // If mp.profilehz is 0, then profiling is not enabled for this thread.
4719         // We must check this to avoid a deadlock between setcpuprofilerate
4720         // and the call to cpuprof.add, below.
4721         if mp != nil && mp.profilehz == 0 {
4722                 return
4723         }
4724
4725         // On mips{,le}/arm, 64bit atomics are emulated with spinlocks, in
4726         // runtime/internal/atomic. If SIGPROF arrives while the program is inside
4727         // the critical section, it creates a deadlock (when writing the sample).
4728         // As a workaround, create a counter of SIGPROFs while in critical section
4729         // to store the count, and pass it to sigprof.add() later when SIGPROF is
4730         // received from somewhere else (with _LostSIGPROFDuringAtomic64 as pc).
4731         if GOARCH == "mips" || GOARCH == "mipsle" || GOARCH == "arm" {
4732                 if f := findfunc(pc); f.valid() {
4733                         if hasPrefix(funcname(f), "runtime/internal/atomic") {
4734                                 cpuprof.lostAtomic++
4735                                 return
4736                         }
4737                 }
4738                 if GOARCH == "arm" && goarm < 7 && GOOS == "linux" && pc&0xffff0000 == 0xffff0000 {
4739                         // runtime/internal/atomic functions call into kernel
4740                         // helpers on arm < 7. See
4741                         // runtime/internal/atomic/sys_linux_arm.s.
4742                         cpuprof.lostAtomic++
4743                         return
4744                 }
4745         }
4746
4747         // Profiling runs concurrently with GC, so it must not allocate.
4748         // Set a trap in case the code does allocate.
4749         // Note that on windows, one thread takes profiles of all the
4750         // other threads, so mp is usually not getg().m.
4751         // In fact mp may not even be stopped.
4752         // See golang.org/issue/17165.
4753         getg().m.mallocing++
4754
4755         var u unwinder
4756         var stk [maxCPUProfStack]uintptr
4757         n := 0
4758         if mp.ncgo > 0 && mp.curg != nil && mp.curg.syscallpc != 0 && mp.curg.syscallsp != 0 {
4759                 cgoOff := 0
4760                 // Check cgoCallersUse to make sure that we are not
4761                 // interrupting other code that is fiddling with
4762                 // cgoCallers.  We are running in a signal handler
4763                 // with all signals blocked, so we don't have to worry
4764                 // about any other code interrupting us.
4765                 if mp.cgoCallersUse.Load() == 0 && mp.cgoCallers != nil && mp.cgoCallers[0] != 0 {
4766                         for cgoOff < len(mp.cgoCallers) && mp.cgoCallers[cgoOff] != 0 {
4767                                 cgoOff++
4768                         }
4769                         n += copy(stk[:], mp.cgoCallers[:cgoOff])
4770                         mp.cgoCallers[0] = 0
4771                 }
4772
4773                 // Collect Go stack that leads to the cgo call.
4774                 u.initAt(mp.curg.syscallpc, mp.curg.syscallsp, 0, mp.curg, unwindSilentErrors)
4775         } else if usesLibcall() && mp.libcallg != 0 && mp.libcallpc != 0 && mp.libcallsp != 0 {
4776                 // Libcall, i.e. runtime syscall on windows.
4777                 // Collect Go stack that leads to the call.
4778                 u.initAt(mp.libcallpc, mp.libcallsp, 0, mp.libcallg.ptr(), unwindSilentErrors)
4779         } else if mp != nil && mp.vdsoSP != 0 {
4780                 // VDSO call, e.g. nanotime1 on Linux.
4781                 // Collect Go stack that leads to the call.
4782                 u.initAt(mp.vdsoPC, mp.vdsoSP, 0, gp, unwindSilentErrors|unwindJumpStack)
4783         } else {
4784                 u.initAt(pc, sp, lr, gp, unwindSilentErrors|unwindTrap|unwindJumpStack)
4785         }
4786         n += tracebackPCs(&u, 0, stk[n:])
4787
4788         if n <= 0 {
4789                 // Normal traceback is impossible or has failed.
4790                 // Account it against abstract "System" or "GC".
4791                 n = 2
4792                 if inVDSOPage(pc) {
4793                         pc = abi.FuncPCABIInternal(_VDSO) + sys.PCQuantum
4794                 } else if pc > firstmoduledata.etext {
4795                         // "ExternalCode" is better than "etext".
4796                         pc = abi.FuncPCABIInternal(_ExternalCode) + sys.PCQuantum
4797                 }
4798                 stk[0] = pc
4799                 if mp.preemptoff != "" {
4800                         stk[1] = abi.FuncPCABIInternal(_GC) + sys.PCQuantum
4801                 } else {
4802                         stk[1] = abi.FuncPCABIInternal(_System) + sys.PCQuantum
4803                 }
4804         }
4805
4806         if prof.hz.Load() != 0 {
4807                 // Note: it can happen on Windows that we interrupted a system thread
4808                 // with no g, so gp could nil. The other nil checks are done out of
4809                 // caution, but not expected to be nil in practice.
4810                 var tagPtr *unsafe.Pointer
4811                 if gp != nil && gp.m != nil && gp.m.curg != nil {
4812                         tagPtr = &gp.m.curg.labels
4813                 }
4814                 cpuprof.add(tagPtr, stk[:n])
4815
4816                 gprof := gp
4817                 var pp *p
4818                 if gp != nil && gp.m != nil {
4819                         if gp.m.curg != nil {
4820                                 gprof = gp.m.curg
4821                         }
4822                         pp = gp.m.p.ptr()
4823                 }
4824                 traceCPUSample(gprof, pp, stk[:n])
4825         }
4826         getg().m.mallocing--
4827 }
4828
4829 // setcpuprofilerate sets the CPU profiling rate to hz times per second.
4830 // If hz <= 0, setcpuprofilerate turns off CPU profiling.
4831 func setcpuprofilerate(hz int32) {
4832         // Force sane arguments.
4833         if hz < 0 {
4834                 hz = 0
4835         }
4836
4837         // Disable preemption, otherwise we can be rescheduled to another thread
4838         // that has profiling enabled.
4839         gp := getg()
4840         gp.m.locks++
4841
4842         // Stop profiler on this thread so that it is safe to lock prof.
4843         // if a profiling signal came in while we had prof locked,
4844         // it would deadlock.
4845         setThreadCPUProfiler(0)
4846
4847         for !prof.signalLock.CompareAndSwap(0, 1) {
4848                 osyield()
4849         }
4850         if prof.hz.Load() != hz {
4851                 setProcessCPUProfiler(hz)
4852                 prof.hz.Store(hz)
4853         }
4854         prof.signalLock.Store(0)
4855
4856         lock(&sched.lock)
4857         sched.profilehz = hz
4858         unlock(&sched.lock)
4859
4860         if hz != 0 {
4861                 setThreadCPUProfiler(hz)
4862         }
4863
4864         gp.m.locks--
4865 }
4866
4867 // init initializes pp, which may be a freshly allocated p or a
4868 // previously destroyed p, and transitions it to status _Pgcstop.
4869 func (pp *p) init(id int32) {
4870         pp.id = id
4871         pp.status = _Pgcstop
4872         pp.sudogcache = pp.sudogbuf[:0]
4873         pp.deferpool = pp.deferpoolbuf[:0]
4874         pp.wbBuf.reset()
4875         if pp.mcache == nil {
4876                 if id == 0 {
4877                         if mcache0 == nil {
4878                                 throw("missing mcache?")
4879                         }
4880                         // Use the bootstrap mcache0. Only one P will get
4881                         // mcache0: the one with ID 0.
4882                         pp.mcache = mcache0
4883                 } else {
4884                         pp.mcache = allocmcache()
4885                 }
4886         }
4887         if raceenabled && pp.raceprocctx == 0 {
4888                 if id == 0 {
4889                         pp.raceprocctx = raceprocctx0
4890                         raceprocctx0 = 0 // bootstrap
4891                 } else {
4892                         pp.raceprocctx = raceproccreate()
4893                 }
4894         }
4895         lockInit(&pp.timersLock, lockRankTimers)
4896
4897         // This P may get timers when it starts running. Set the mask here
4898         // since the P may not go through pidleget (notably P 0 on startup).
4899         timerpMask.set(id)
4900         // Similarly, we may not go through pidleget before this P starts
4901         // running if it is P 0 on startup.
4902         idlepMask.clear(id)
4903 }
4904
4905 // destroy releases all of the resources associated with pp and
4906 // transitions it to status _Pdead.
4907 //
4908 // sched.lock must be held and the world must be stopped.
4909 func (pp *p) destroy() {
4910         assertLockHeld(&sched.lock)
4911         assertWorldStopped()
4912
4913         // Move all runnable goroutines to the global queue
4914         for pp.runqhead != pp.runqtail {
4915                 // Pop from tail of local queue
4916                 pp.runqtail--
4917                 gp := pp.runq[pp.runqtail%uint32(len(pp.runq))].ptr()
4918                 // Push onto head of global queue
4919                 globrunqputhead(gp)
4920         }
4921         if pp.runnext != 0 {
4922                 globrunqputhead(pp.runnext.ptr())
4923                 pp.runnext = 0
4924         }
4925         if len(pp.timers) > 0 {
4926                 plocal := getg().m.p.ptr()
4927                 // The world is stopped, but we acquire timersLock to
4928                 // protect against sysmon calling timeSleepUntil.
4929                 // This is the only case where we hold the timersLock of
4930                 // more than one P, so there are no deadlock concerns.
4931                 lock(&plocal.timersLock)
4932                 lock(&pp.timersLock)
4933                 moveTimers(plocal, pp.timers)
4934                 pp.timers = nil
4935                 pp.numTimers.Store(0)
4936                 pp.deletedTimers.Store(0)
4937                 pp.timer0When.Store(0)
4938                 unlock(&pp.timersLock)
4939                 unlock(&plocal.timersLock)
4940         }
4941         // Flush p's write barrier buffer.
4942         if gcphase != _GCoff {
4943                 wbBufFlush1(pp)
4944                 pp.gcw.dispose()
4945         }
4946         for i := range pp.sudogbuf {
4947                 pp.sudogbuf[i] = nil
4948         }
4949         pp.sudogcache = pp.sudogbuf[:0]
4950         for j := range pp.deferpoolbuf {
4951                 pp.deferpoolbuf[j] = nil
4952         }
4953         pp.deferpool = pp.deferpoolbuf[:0]
4954         systemstack(func() {
4955                 for i := 0; i < pp.mspancache.len; i++ {
4956                         // Safe to call since the world is stopped.
4957                         mheap_.spanalloc.free(unsafe.Pointer(pp.mspancache.buf[i]))
4958                 }
4959                 pp.mspancache.len = 0
4960                 lock(&mheap_.lock)
4961                 pp.pcache.flush(&mheap_.pages)
4962                 unlock(&mheap_.lock)
4963         })
4964         freemcache(pp.mcache)
4965         pp.mcache = nil
4966         gfpurge(pp)
4967         traceProcFree(pp)
4968         if raceenabled {
4969                 if pp.timerRaceCtx != 0 {
4970                         // The race detector code uses a callback to fetch
4971                         // the proc context, so arrange for that callback
4972                         // to see the right thing.
4973                         // This hack only works because we are the only
4974                         // thread running.
4975                         mp := getg().m
4976                         phold := mp.p.ptr()
4977                         mp.p.set(pp)
4978
4979                         racectxend(pp.timerRaceCtx)
4980                         pp.timerRaceCtx = 0
4981
4982                         mp.p.set(phold)
4983                 }
4984                 raceprocdestroy(pp.raceprocctx)
4985                 pp.raceprocctx = 0
4986         }
4987         pp.gcAssistTime = 0
4988         pp.status = _Pdead
4989 }
4990
4991 // Change number of processors.
4992 //
4993 // sched.lock must be held, and the world must be stopped.
4994 //
4995 // gcworkbufs must not be being modified by either the GC or the write barrier
4996 // code, so the GC must not be running if the number of Ps actually changes.
4997 //
4998 // Returns list of Ps with local work, they need to be scheduled by the caller.
4999 func procresize(nprocs int32) *p {
5000         assertLockHeld(&sched.lock)
5001         assertWorldStopped()
5002
5003         old := gomaxprocs
5004         if old < 0 || nprocs <= 0 {
5005                 throw("procresize: invalid arg")
5006         }
5007         if traceEnabled() {
5008                 traceGomaxprocs(nprocs)
5009         }
5010
5011         // update statistics
5012         now := nanotime()
5013         if sched.procresizetime != 0 {
5014                 sched.totaltime += int64(old) * (now - sched.procresizetime)
5015         }
5016         sched.procresizetime = now
5017
5018         maskWords := (nprocs + 31) / 32
5019
5020         // Grow allp if necessary.
5021         if nprocs > int32(len(allp)) {
5022                 // Synchronize with retake, which could be running
5023                 // concurrently since it doesn't run on a P.
5024                 lock(&allpLock)
5025                 if nprocs <= int32(cap(allp)) {
5026                         allp = allp[:nprocs]
5027                 } else {
5028                         nallp := make([]*p, nprocs)
5029                         // Copy everything up to allp's cap so we
5030                         // never lose old allocated Ps.
5031                         copy(nallp, allp[:cap(allp)])
5032                         allp = nallp
5033                 }
5034
5035                 if maskWords <= int32(cap(idlepMask)) {
5036                         idlepMask = idlepMask[:maskWords]
5037                         timerpMask = timerpMask[:maskWords]
5038                 } else {
5039                         nidlepMask := make([]uint32, maskWords)
5040                         // No need to copy beyond len, old Ps are irrelevant.
5041                         copy(nidlepMask, idlepMask)
5042                         idlepMask = nidlepMask
5043
5044                         ntimerpMask := make([]uint32, maskWords)
5045                         copy(ntimerpMask, timerpMask)
5046                         timerpMask = ntimerpMask
5047                 }
5048                 unlock(&allpLock)
5049         }
5050
5051         // initialize new P's
5052         for i := old; i < nprocs; i++ {
5053                 pp := allp[i]
5054                 if pp == nil {
5055                         pp = new(p)
5056                 }
5057                 pp.init(i)
5058                 atomicstorep(unsafe.Pointer(&allp[i]), unsafe.Pointer(pp))
5059         }
5060
5061         gp := getg()
5062         if gp.m.p != 0 && gp.m.p.ptr().id < nprocs {
5063                 // continue to use the current P
5064                 gp.m.p.ptr().status = _Prunning
5065                 gp.m.p.ptr().mcache.prepareForSweep()
5066         } else {
5067                 // release the current P and acquire allp[0].
5068                 //
5069                 // We must do this before destroying our current P
5070                 // because p.destroy itself has write barriers, so we
5071                 // need to do that from a valid P.
5072                 if gp.m.p != 0 {
5073                         if traceEnabled() {
5074                                 // Pretend that we were descheduled
5075                                 // and then scheduled again to keep
5076                                 // the trace sane.
5077                                 traceGoSched()
5078                                 traceProcStop(gp.m.p.ptr())
5079                         }
5080                         gp.m.p.ptr().m = 0
5081                 }
5082                 gp.m.p = 0
5083                 pp := allp[0]
5084                 pp.m = 0
5085                 pp.status = _Pidle
5086                 acquirep(pp)
5087                 if traceEnabled() {
5088                         traceGoStart()
5089                 }
5090         }
5091
5092         // g.m.p is now set, so we no longer need mcache0 for bootstrapping.
5093         mcache0 = nil
5094
5095         // release resources from unused P's
5096         for i := nprocs; i < old; i++ {
5097                 pp := allp[i]
5098                 pp.destroy()
5099                 // can't free P itself because it can be referenced by an M in syscall
5100         }
5101
5102         // Trim allp.
5103         if int32(len(allp)) != nprocs {
5104                 lock(&allpLock)
5105                 allp = allp[:nprocs]
5106                 idlepMask = idlepMask[:maskWords]
5107                 timerpMask = timerpMask[:maskWords]
5108                 unlock(&allpLock)
5109         }
5110
5111         var runnablePs *p
5112         for i := nprocs - 1; i >= 0; i-- {
5113                 pp := allp[i]
5114                 if gp.m.p.ptr() == pp {
5115                         continue
5116                 }
5117                 pp.status = _Pidle
5118                 if runqempty(pp) {
5119                         pidleput(pp, now)
5120                 } else {
5121                         pp.m.set(mget())
5122                         pp.link.set(runnablePs)
5123                         runnablePs = pp
5124                 }
5125         }
5126         stealOrder.reset(uint32(nprocs))
5127         var int32p *int32 = &gomaxprocs // make compiler check that gomaxprocs is an int32
5128         atomic.Store((*uint32)(unsafe.Pointer(int32p)), uint32(nprocs))
5129         if old != nprocs {
5130                 // Notify the limiter that the amount of procs has changed.
5131                 gcCPULimiter.resetCapacity(now, nprocs)
5132         }
5133         return runnablePs
5134 }
5135
5136 // Associate p and the current m.
5137 //
5138 // This function is allowed to have write barriers even if the caller
5139 // isn't because it immediately acquires pp.
5140 //
5141 //go:yeswritebarrierrec
5142 func acquirep(pp *p) {
5143         // Do the part that isn't allowed to have write barriers.
5144         wirep(pp)
5145
5146         // Have p; write barriers now allowed.
5147
5148         // Perform deferred mcache flush before this P can allocate
5149         // from a potentially stale mcache.
5150         pp.mcache.prepareForSweep()
5151
5152         if traceEnabled() {
5153                 traceProcStart()
5154         }
5155 }
5156
5157 // wirep is the first step of acquirep, which actually associates the
5158 // current M to pp. This is broken out so we can disallow write
5159 // barriers for this part, since we don't yet have a P.
5160 //
5161 //go:nowritebarrierrec
5162 //go:nosplit
5163 func wirep(pp *p) {
5164         gp := getg()
5165
5166         if gp.m.p != 0 {
5167                 throw("wirep: already in go")
5168         }
5169         if pp.m != 0 || pp.status != _Pidle {
5170                 id := int64(0)
5171                 if pp.m != 0 {
5172                         id = pp.m.ptr().id
5173                 }
5174                 print("wirep: p->m=", pp.m, "(", id, ") p->status=", pp.status, "\n")
5175                 throw("wirep: invalid p state")
5176         }
5177         gp.m.p.set(pp)
5178         pp.m.set(gp.m)
5179         pp.status = _Prunning
5180 }
5181
5182 // Disassociate p and the current m.
5183 func releasep() *p {
5184         gp := getg()
5185
5186         if gp.m.p == 0 {
5187                 throw("releasep: invalid arg")
5188         }
5189         pp := gp.m.p.ptr()
5190         if pp.m.ptr() != gp.m || pp.status != _Prunning {
5191                 print("releasep: m=", gp.m, " m->p=", gp.m.p.ptr(), " p->m=", hex(pp.m), " p->status=", pp.status, "\n")
5192                 throw("releasep: invalid p state")
5193         }
5194         if traceEnabled() {
5195                 traceProcStop(gp.m.p.ptr())
5196         }
5197         gp.m.p = 0
5198         pp.m = 0
5199         pp.status = _Pidle
5200         return pp
5201 }
5202
5203 func incidlelocked(v int32) {
5204         lock(&sched.lock)
5205         sched.nmidlelocked += v
5206         if v > 0 {
5207                 checkdead()
5208         }
5209         unlock(&sched.lock)
5210 }
5211
5212 // Check for deadlock situation.
5213 // The check is based on number of running M's, if 0 -> deadlock.
5214 // sched.lock must be held.
5215 func checkdead() {
5216         assertLockHeld(&sched.lock)
5217
5218         // For -buildmode=c-shared or -buildmode=c-archive it's OK if
5219         // there are no running goroutines. The calling program is
5220         // assumed to be running.
5221         if islibrary || isarchive {
5222                 return
5223         }
5224
5225         // If we are dying because of a signal caught on an already idle thread,
5226         // freezetheworld will cause all running threads to block.
5227         // And runtime will essentially enter into deadlock state,
5228         // except that there is a thread that will call exit soon.
5229         if panicking.Load() > 0 {
5230                 return
5231         }
5232
5233         // If we are not running under cgo, but we have an extra M then account
5234         // for it. (It is possible to have an extra M on Windows without cgo to
5235         // accommodate callbacks created by syscall.NewCallback. See issue #6751
5236         // for details.)
5237         var run0 int32
5238         if !iscgo && cgoHasExtraM && extraMLength.Load() > 0 {
5239                 run0 = 1
5240         }
5241
5242         run := mcount() - sched.nmidle - sched.nmidlelocked - sched.nmsys
5243         if run > run0 {
5244                 return
5245         }
5246         if run < 0 {
5247                 print("runtime: checkdead: nmidle=", sched.nmidle, " nmidlelocked=", sched.nmidlelocked, " mcount=", mcount(), " nmsys=", sched.nmsys, "\n")
5248                 unlock(&sched.lock)
5249                 throw("checkdead: inconsistent counts")
5250         }
5251
5252         grunning := 0
5253         forEachG(func(gp *g) {
5254                 if isSystemGoroutine(gp, false) {
5255                         return
5256                 }
5257                 s := readgstatus(gp)
5258                 switch s &^ _Gscan {
5259                 case _Gwaiting,
5260                         _Gpreempted:
5261                         grunning++
5262                 case _Grunnable,
5263                         _Grunning,
5264                         _Gsyscall:
5265                         print("runtime: checkdead: find g ", gp.goid, " in status ", s, "\n")
5266                         unlock(&sched.lock)
5267                         throw("checkdead: runnable g")
5268                 }
5269         })
5270         if grunning == 0 { // possible if main goroutine calls runtime·Goexit()
5271                 unlock(&sched.lock) // unlock so that GODEBUG=scheddetail=1 doesn't hang
5272                 fatal("no goroutines (main called runtime.Goexit) - deadlock!")
5273         }
5274
5275         // Maybe jump time forward for playground.
5276         if faketime != 0 {
5277                 if when := timeSleepUntil(); when < maxWhen {
5278                         faketime = when
5279
5280                         // Start an M to steal the timer.
5281                         pp, _ := pidleget(faketime)
5282                         if pp == nil {
5283                                 // There should always be a free P since
5284                                 // nothing is running.
5285                                 unlock(&sched.lock)
5286                                 throw("checkdead: no p for timer")
5287                         }
5288                         mp := mget()
5289                         if mp == nil {
5290                                 // There should always be a free M since
5291                                 // nothing is running.
5292                                 unlock(&sched.lock)
5293                                 throw("checkdead: no m for timer")
5294                         }
5295                         // M must be spinning to steal. We set this to be
5296                         // explicit, but since this is the only M it would
5297                         // become spinning on its own anyways.
5298                         sched.nmspinning.Add(1)
5299                         mp.spinning = true
5300                         mp.nextp.set(pp)
5301                         notewakeup(&mp.park)
5302                         return
5303                 }
5304         }
5305
5306         // There are no goroutines running, so we can look at the P's.
5307         for _, pp := range allp {
5308                 if len(pp.timers) > 0 {
5309                         return
5310                 }
5311         }
5312
5313         unlock(&sched.lock) // unlock so that GODEBUG=scheddetail=1 doesn't hang
5314         fatal("all goroutines are asleep - deadlock!")
5315 }
5316
5317 // forcegcperiod is the maximum time in nanoseconds between garbage
5318 // collections. If we go this long without a garbage collection, one
5319 // is forced to run.
5320 //
5321 // This is a variable for testing purposes. It normally doesn't change.
5322 var forcegcperiod int64 = 2 * 60 * 1e9
5323
5324 // needSysmonWorkaround is true if the workaround for
5325 // golang.org/issue/42515 is needed on NetBSD.
5326 var needSysmonWorkaround bool = false
5327
5328 // Always runs without a P, so write barriers are not allowed.
5329 //
5330 //go:nowritebarrierrec
5331 func sysmon() {
5332         lock(&sched.lock)
5333         sched.nmsys++
5334         checkdead()
5335         unlock(&sched.lock)
5336
5337         lasttrace := int64(0)
5338         idle := 0 // how many cycles in succession we had not wokeup somebody
5339         delay := uint32(0)
5340
5341         for {
5342                 if idle == 0 { // start with 20us sleep...
5343                         delay = 20
5344                 } else if idle > 50 { // start doubling the sleep after 1ms...
5345                         delay *= 2
5346                 }
5347                 if delay > 10*1000 { // up to 10ms
5348                         delay = 10 * 1000
5349                 }
5350                 usleep(delay)
5351
5352                 // sysmon should not enter deep sleep if schedtrace is enabled so that
5353                 // it can print that information at the right time.
5354                 //
5355                 // It should also not enter deep sleep if there are any active P's so
5356                 // that it can retake P's from syscalls, preempt long running G's, and
5357                 // poll the network if all P's are busy for long stretches.
5358                 //
5359                 // It should wakeup from deep sleep if any P's become active either due
5360                 // to exiting a syscall or waking up due to a timer expiring so that it
5361                 // can resume performing those duties. If it wakes from a syscall it
5362                 // resets idle and delay as a bet that since it had retaken a P from a
5363                 // syscall before, it may need to do it again shortly after the
5364                 // application starts work again. It does not reset idle when waking
5365                 // from a timer to avoid adding system load to applications that spend
5366                 // most of their time sleeping.
5367                 now := nanotime()
5368                 if debug.schedtrace <= 0 && (sched.gcwaiting.Load() || sched.npidle.Load() == gomaxprocs) {
5369                         lock(&sched.lock)
5370                         if sched.gcwaiting.Load() || sched.npidle.Load() == gomaxprocs {
5371                                 syscallWake := false
5372                                 next := timeSleepUntil()
5373                                 if next > now {
5374                                         sched.sysmonwait.Store(true)
5375                                         unlock(&sched.lock)
5376                                         // Make wake-up period small enough
5377                                         // for the sampling to be correct.
5378                                         sleep := forcegcperiod / 2
5379                                         if next-now < sleep {
5380                                                 sleep = next - now
5381                                         }
5382                                         shouldRelax := sleep >= osRelaxMinNS
5383                                         if shouldRelax {
5384                                                 osRelax(true)
5385                                         }
5386                                         syscallWake = notetsleep(&sched.sysmonnote, sleep)
5387                                         if shouldRelax {
5388                                                 osRelax(false)
5389                                         }
5390                                         lock(&sched.lock)
5391                                         sched.sysmonwait.Store(false)
5392                                         noteclear(&sched.sysmonnote)
5393                                 }
5394                                 if syscallWake {
5395                                         idle = 0
5396                                         delay = 20
5397                                 }
5398                         }
5399                         unlock(&sched.lock)
5400                 }
5401
5402                 lock(&sched.sysmonlock)
5403                 // Update now in case we blocked on sysmonnote or spent a long time
5404                 // blocked on schedlock or sysmonlock above.
5405                 now = nanotime()
5406
5407                 // trigger libc interceptors if needed
5408                 if *cgo_yield != nil {
5409                         asmcgocall(*cgo_yield, nil)
5410                 }
5411                 // poll network if not polled for more than 10ms
5412                 lastpoll := sched.lastpoll.Load()
5413                 if netpollinited() && lastpoll != 0 && lastpoll+10*1000*1000 < now {
5414                         sched.lastpoll.CompareAndSwap(lastpoll, now)
5415                         list := netpoll(0) // non-blocking - returns list of goroutines
5416                         if !list.empty() {
5417                                 // Need to decrement number of idle locked M's
5418                                 // (pretending that one more is running) before injectglist.
5419                                 // Otherwise it can lead to the following situation:
5420                                 // injectglist grabs all P's but before it starts M's to run the P's,
5421                                 // another M returns from syscall, finishes running its G,
5422                                 // observes that there is no work to do and no other running M's
5423                                 // and reports deadlock.
5424                                 incidlelocked(-1)
5425                                 injectglist(&list)
5426                                 incidlelocked(1)
5427                         }
5428                 }
5429                 if GOOS == "netbsd" && needSysmonWorkaround {
5430                         // netpoll is responsible for waiting for timer
5431                         // expiration, so we typically don't have to worry
5432                         // about starting an M to service timers. (Note that
5433                         // sleep for timeSleepUntil above simply ensures sysmon
5434                         // starts running again when that timer expiration may
5435                         // cause Go code to run again).
5436                         //
5437                         // However, netbsd has a kernel bug that sometimes
5438                         // misses netpollBreak wake-ups, which can lead to
5439                         // unbounded delays servicing timers. If we detect this
5440                         // overrun, then startm to get something to handle the
5441                         // timer.
5442                         //
5443                         // See issue 42515 and
5444                         // https://gnats.netbsd.org/cgi-bin/query-pr-single.pl?number=50094.
5445                         if next := timeSleepUntil(); next < now {
5446                                 startm(nil, false, false)
5447                         }
5448                 }
5449                 if scavenger.sysmonWake.Load() != 0 {
5450                         // Kick the scavenger awake if someone requested it.
5451                         scavenger.wake()
5452                 }
5453                 // retake P's blocked in syscalls
5454                 // and preempt long running G's
5455                 if retake(now) != 0 {
5456                         idle = 0
5457                 } else {
5458                         idle++
5459                 }
5460                 // check if we need to force a GC
5461                 if t := (gcTrigger{kind: gcTriggerTime, now: now}); t.test() && forcegc.idle.Load() {
5462                         lock(&forcegc.lock)
5463                         forcegc.idle.Store(false)
5464                         var list gList
5465                         list.push(forcegc.g)
5466                         injectglist(&list)
5467                         unlock(&forcegc.lock)
5468                 }
5469                 if debug.schedtrace > 0 && lasttrace+int64(debug.schedtrace)*1000000 <= now {
5470                         lasttrace = now
5471                         schedtrace(debug.scheddetail > 0)
5472                 }
5473                 unlock(&sched.sysmonlock)
5474         }
5475 }
5476
5477 type sysmontick struct {
5478         schedtick   uint32
5479         schedwhen   int64
5480         syscalltick uint32
5481         syscallwhen int64
5482 }
5483
5484 // forcePreemptNS is the time slice given to a G before it is
5485 // preempted.
5486 const forcePreemptNS = 10 * 1000 * 1000 // 10ms
5487
5488 func retake(now int64) uint32 {
5489         n := 0
5490         // Prevent allp slice changes. This lock will be completely
5491         // uncontended unless we're already stopping the world.
5492         lock(&allpLock)
5493         // We can't use a range loop over allp because we may
5494         // temporarily drop the allpLock. Hence, we need to re-fetch
5495         // allp each time around the loop.
5496         for i := 0; i < len(allp); i++ {
5497                 pp := allp[i]
5498                 if pp == nil {
5499                         // This can happen if procresize has grown
5500                         // allp but not yet created new Ps.
5501                         continue
5502                 }
5503                 pd := &pp.sysmontick
5504                 s := pp.status
5505                 sysretake := false
5506                 if s == _Prunning || s == _Psyscall {
5507                         // Preempt G if it's running for too long.
5508                         t := int64(pp.schedtick)
5509                         if int64(pd.schedtick) != t {
5510                                 pd.schedtick = uint32(t)
5511                                 pd.schedwhen = now
5512                         } else if pd.schedwhen+forcePreemptNS <= now {
5513                                 preemptone(pp)
5514                                 // In case of syscall, preemptone() doesn't
5515                                 // work, because there is no M wired to P.
5516                                 sysretake = true
5517                         }
5518                 }
5519                 if s == _Psyscall {
5520                         // Retake P from syscall if it's there for more than 1 sysmon tick (at least 20us).
5521                         t := int64(pp.syscalltick)
5522                         if !sysretake && int64(pd.syscalltick) != t {
5523                                 pd.syscalltick = uint32(t)
5524                                 pd.syscallwhen = now
5525                                 continue
5526                         }
5527                         // On the one hand we don't want to retake Ps if there is no other work to do,
5528                         // but on the other hand we want to retake them eventually
5529                         // because they can prevent the sysmon thread from deep sleep.
5530                         if runqempty(pp) && sched.nmspinning.Load()+sched.npidle.Load() > 0 && pd.syscallwhen+10*1000*1000 > now {
5531                                 continue
5532                         }
5533                         // Drop allpLock so we can take sched.lock.
5534                         unlock(&allpLock)
5535                         // Need to decrement number of idle locked M's
5536                         // (pretending that one more is running) before the CAS.
5537                         // Otherwise the M from which we retake can exit the syscall,
5538                         // increment nmidle and report deadlock.
5539                         incidlelocked(-1)
5540                         if atomic.Cas(&pp.status, s, _Pidle) {
5541                                 if traceEnabled() {
5542                                         traceGoSysBlock(pp)
5543                                         traceProcStop(pp)
5544                                 }
5545                                 n++
5546                                 pp.syscalltick++
5547                                 handoffp(pp)
5548                         }
5549                         incidlelocked(1)
5550                         lock(&allpLock)
5551                 }
5552         }
5553         unlock(&allpLock)
5554         return uint32(n)
5555 }
5556
5557 // Tell all goroutines that they have been preempted and they should stop.
5558 // This function is purely best-effort. It can fail to inform a goroutine if a
5559 // processor just started running it.
5560 // No locks need to be held.
5561 // Returns true if preemption request was issued to at least one goroutine.
5562 func preemptall() bool {
5563         res := false
5564         for _, pp := range allp {
5565                 if pp.status != _Prunning {
5566                         continue
5567                 }
5568                 if preemptone(pp) {
5569                         res = true
5570                 }
5571         }
5572         return res
5573 }
5574
5575 // Tell the goroutine running on processor P to stop.
5576 // This function is purely best-effort. It can incorrectly fail to inform the
5577 // goroutine. It can inform the wrong goroutine. Even if it informs the
5578 // correct goroutine, that goroutine might ignore the request if it is
5579 // simultaneously executing newstack.
5580 // No lock needs to be held.
5581 // Returns true if preemption request was issued.
5582 // The actual preemption will happen at some point in the future
5583 // and will be indicated by the gp->status no longer being
5584 // Grunning
5585 func preemptone(pp *p) bool {
5586         mp := pp.m.ptr()
5587         if mp == nil || mp == getg().m {
5588                 return false
5589         }
5590         gp := mp.curg
5591         if gp == nil || gp == mp.g0 {
5592                 return false
5593         }
5594
5595         gp.preempt = true
5596
5597         // Every call in a goroutine checks for stack overflow by
5598         // comparing the current stack pointer to gp->stackguard0.
5599         // Setting gp->stackguard0 to StackPreempt folds
5600         // preemption into the normal stack overflow check.
5601         gp.stackguard0 = stackPreempt
5602
5603         // Request an async preemption of this P.
5604         if preemptMSupported && debug.asyncpreemptoff == 0 {
5605                 pp.preempt = true
5606                 preemptM(mp)
5607         }
5608
5609         return true
5610 }
5611
5612 var starttime int64
5613
5614 func schedtrace(detailed bool) {
5615         now := nanotime()
5616         if starttime == 0 {
5617                 starttime = now
5618         }
5619
5620         lock(&sched.lock)
5621         print("SCHED ", (now-starttime)/1e6, "ms: gomaxprocs=", gomaxprocs, " idleprocs=", sched.npidle.Load(), " threads=", mcount(), " spinningthreads=", sched.nmspinning.Load(), " needspinning=", sched.needspinning.Load(), " idlethreads=", sched.nmidle, " runqueue=", sched.runqsize)
5622         if detailed {
5623                 print(" gcwaiting=", sched.gcwaiting.Load(), " nmidlelocked=", sched.nmidlelocked, " stopwait=", sched.stopwait, " sysmonwait=", sched.sysmonwait.Load(), "\n")
5624         }
5625         // We must be careful while reading data from P's, M's and G's.
5626         // Even if we hold schedlock, most data can be changed concurrently.
5627         // E.g. (p->m ? p->m->id : -1) can crash if p->m changes from non-nil to nil.
5628         for i, pp := range allp {
5629                 mp := pp.m.ptr()
5630                 h := atomic.Load(&pp.runqhead)
5631                 t := atomic.Load(&pp.runqtail)
5632                 if detailed {
5633                         print("  P", i, ": status=", pp.status, " schedtick=", pp.schedtick, " syscalltick=", pp.syscalltick, " m=")
5634                         if mp != nil {
5635                                 print(mp.id)
5636                         } else {
5637                                 print("nil")
5638                         }
5639                         print(" runqsize=", t-h, " gfreecnt=", pp.gFree.n, " timerslen=", len(pp.timers), "\n")
5640                 } else {
5641                         // In non-detailed mode format lengths of per-P run queues as:
5642                         // [len1 len2 len3 len4]
5643                         print(" ")
5644                         if i == 0 {
5645                                 print("[")
5646                         }
5647                         print(t - h)
5648                         if i == len(allp)-1 {
5649                                 print("]\n")
5650                         }
5651                 }
5652         }
5653
5654         if !detailed {
5655                 unlock(&sched.lock)
5656                 return
5657         }
5658
5659         for mp := allm; mp != nil; mp = mp.alllink {
5660                 pp := mp.p.ptr()
5661                 print("  M", mp.id, ": p=")
5662                 if pp != nil {
5663                         print(pp.id)
5664                 } else {
5665                         print("nil")
5666                 }
5667                 print(" curg=")
5668                 if mp.curg != nil {
5669                         print(mp.curg.goid)
5670                 } else {
5671                         print("nil")
5672                 }
5673                 print(" mallocing=", mp.mallocing, " throwing=", mp.throwing, " preemptoff=", mp.preemptoff, " locks=", mp.locks, " dying=", mp.dying, " spinning=", mp.spinning, " blocked=", mp.blocked, " lockedg=")
5674                 if lockedg := mp.lockedg.ptr(); lockedg != nil {
5675                         print(lockedg.goid)
5676                 } else {
5677                         print("nil")
5678                 }
5679                 print("\n")
5680         }
5681
5682         forEachG(func(gp *g) {
5683                 print("  G", gp.goid, ": status=", readgstatus(gp), "(", gp.waitreason.String(), ") m=")
5684                 if gp.m != nil {
5685                         print(gp.m.id)
5686                 } else {
5687                         print("nil")
5688                 }
5689                 print(" lockedm=")
5690                 if lockedm := gp.lockedm.ptr(); lockedm != nil {
5691                         print(lockedm.id)
5692                 } else {
5693                         print("nil")
5694                 }
5695                 print("\n")
5696         })
5697         unlock(&sched.lock)
5698 }
5699
5700 // schedEnableUser enables or disables the scheduling of user
5701 // goroutines.
5702 //
5703 // This does not stop already running user goroutines, so the caller
5704 // should first stop the world when disabling user goroutines.
5705 func schedEnableUser(enable bool) {
5706         lock(&sched.lock)
5707         if sched.disable.user == !enable {
5708                 unlock(&sched.lock)
5709                 return
5710         }
5711         sched.disable.user = !enable
5712         if enable {
5713                 n := sched.disable.n
5714                 sched.disable.n = 0
5715                 globrunqputbatch(&sched.disable.runnable, n)
5716                 unlock(&sched.lock)
5717                 for ; n != 0 && sched.npidle.Load() != 0; n-- {
5718                         startm(nil, false, false)
5719                 }
5720         } else {
5721                 unlock(&sched.lock)
5722         }
5723 }
5724
5725 // schedEnabled reports whether gp should be scheduled. It returns
5726 // false is scheduling of gp is disabled.
5727 //
5728 // sched.lock must be held.
5729 func schedEnabled(gp *g) bool {
5730         assertLockHeld(&sched.lock)
5731
5732         if sched.disable.user {
5733                 return isSystemGoroutine(gp, true)
5734         }
5735         return true
5736 }
5737
5738 // Put mp on midle list.
5739 // sched.lock must be held.
5740 // May run during STW, so write barriers are not allowed.
5741 //
5742 //go:nowritebarrierrec
5743 func mput(mp *m) {
5744         assertLockHeld(&sched.lock)
5745
5746         mp.schedlink = sched.midle
5747         sched.midle.set(mp)
5748         sched.nmidle++
5749         checkdead()
5750 }
5751
5752 // Try to get an m from midle list.
5753 // sched.lock must be held.
5754 // May run during STW, so write barriers are not allowed.
5755 //
5756 //go:nowritebarrierrec
5757 func mget() *m {
5758         assertLockHeld(&sched.lock)
5759
5760         mp := sched.midle.ptr()
5761         if mp != nil {
5762                 sched.midle = mp.schedlink
5763                 sched.nmidle--
5764         }
5765         return mp
5766 }
5767
5768 // Put gp on the global runnable queue.
5769 // sched.lock must be held.
5770 // May run during STW, so write barriers are not allowed.
5771 //
5772 //go:nowritebarrierrec
5773 func globrunqput(gp *g) {
5774         assertLockHeld(&sched.lock)
5775
5776         sched.runq.pushBack(gp)
5777         sched.runqsize++
5778 }
5779
5780 // Put gp at the head of the global runnable queue.
5781 // sched.lock must be held.
5782 // May run during STW, so write barriers are not allowed.
5783 //
5784 //go:nowritebarrierrec
5785 func globrunqputhead(gp *g) {
5786         assertLockHeld(&sched.lock)
5787
5788         sched.runq.push(gp)
5789         sched.runqsize++
5790 }
5791
5792 // Put a batch of runnable goroutines on the global runnable queue.
5793 // This clears *batch.
5794 // sched.lock must be held.
5795 // May run during STW, so write barriers are not allowed.
5796 //
5797 //go:nowritebarrierrec
5798 func globrunqputbatch(batch *gQueue, n int32) {
5799         assertLockHeld(&sched.lock)
5800
5801         sched.runq.pushBackAll(*batch)
5802         sched.runqsize += n
5803         *batch = gQueue{}
5804 }
5805
5806 // Try get a batch of G's from the global runnable queue.
5807 // sched.lock must be held.
5808 func globrunqget(pp *p, max int32) *g {
5809         assertLockHeld(&sched.lock)
5810
5811         if sched.runqsize == 0 {
5812                 return nil
5813         }
5814
5815         n := sched.runqsize/gomaxprocs + 1
5816         if n > sched.runqsize {
5817                 n = sched.runqsize
5818         }
5819         if max > 0 && n > max {
5820                 n = max
5821         }
5822         if n > int32(len(pp.runq))/2 {
5823                 n = int32(len(pp.runq)) / 2
5824         }
5825
5826         sched.runqsize -= n
5827
5828         gp := sched.runq.pop()
5829         n--
5830         for ; n > 0; n-- {
5831                 gp1 := sched.runq.pop()
5832                 runqput(pp, gp1, false)
5833         }
5834         return gp
5835 }
5836
5837 // pMask is an atomic bitstring with one bit per P.
5838 type pMask []uint32
5839
5840 // read returns true if P id's bit is set.
5841 func (p pMask) read(id uint32) bool {
5842         word := id / 32
5843         mask := uint32(1) << (id % 32)
5844         return (atomic.Load(&p[word]) & mask) != 0
5845 }
5846
5847 // set sets P id's bit.
5848 func (p pMask) set(id int32) {
5849         word := id / 32
5850         mask := uint32(1) << (id % 32)
5851         atomic.Or(&p[word], mask)
5852 }
5853
5854 // clear clears P id's bit.
5855 func (p pMask) clear(id int32) {
5856         word := id / 32
5857         mask := uint32(1) << (id % 32)
5858         atomic.And(&p[word], ^mask)
5859 }
5860
5861 // updateTimerPMask clears pp's timer mask if it has no timers on its heap.
5862 //
5863 // Ideally, the timer mask would be kept immediately consistent on any timer
5864 // operations. Unfortunately, updating a shared global data structure in the
5865 // timer hot path adds too much overhead in applications frequently switching
5866 // between no timers and some timers.
5867 //
5868 // As a compromise, the timer mask is updated only on pidleget / pidleput. A
5869 // running P (returned by pidleget) may add a timer at any time, so its mask
5870 // must be set. An idle P (passed to pidleput) cannot add new timers while
5871 // idle, so if it has no timers at that time, its mask may be cleared.
5872 //
5873 // Thus, we get the following effects on timer-stealing in findrunnable:
5874 //
5875 //   - Idle Ps with no timers when they go idle are never checked in findrunnable
5876 //     (for work- or timer-stealing; this is the ideal case).
5877 //   - Running Ps must always be checked.
5878 //   - Idle Ps whose timers are stolen must continue to be checked until they run
5879 //     again, even after timer expiration.
5880 //
5881 // When the P starts running again, the mask should be set, as a timer may be
5882 // added at any time.
5883 //
5884 // TODO(prattmic): Additional targeted updates may improve the above cases.
5885 // e.g., updating the mask when stealing a timer.
5886 func updateTimerPMask(pp *p) {
5887         if pp.numTimers.Load() > 0 {
5888                 return
5889         }
5890
5891         // Looks like there are no timers, however another P may transiently
5892         // decrement numTimers when handling a timerModified timer in
5893         // checkTimers. We must take timersLock to serialize with these changes.
5894         lock(&pp.timersLock)
5895         if pp.numTimers.Load() == 0 {
5896                 timerpMask.clear(pp.id)
5897         }
5898         unlock(&pp.timersLock)
5899 }
5900
5901 // pidleput puts p on the _Pidle list. now must be a relatively recent call
5902 // to nanotime or zero. Returns now or the current time if now was zero.
5903 //
5904 // This releases ownership of p. Once sched.lock is released it is no longer
5905 // safe to use p.
5906 //
5907 // sched.lock must be held.
5908 //
5909 // May run during STW, so write barriers are not allowed.
5910 //
5911 //go:nowritebarrierrec
5912 func pidleput(pp *p, now int64) int64 {
5913         assertLockHeld(&sched.lock)
5914
5915         if !runqempty(pp) {
5916                 throw("pidleput: P has non-empty run queue")
5917         }
5918         if now == 0 {
5919                 now = nanotime()
5920         }
5921         updateTimerPMask(pp) // clear if there are no timers.
5922         idlepMask.set(pp.id)
5923         pp.link = sched.pidle
5924         sched.pidle.set(pp)
5925         sched.npidle.Add(1)
5926         if !pp.limiterEvent.start(limiterEventIdle, now) {
5927                 throw("must be able to track idle limiter event")
5928         }
5929         return now
5930 }
5931
5932 // pidleget tries to get a p from the _Pidle list, acquiring ownership.
5933 //
5934 // sched.lock must be held.
5935 //
5936 // May run during STW, so write barriers are not allowed.
5937 //
5938 //go:nowritebarrierrec
5939 func pidleget(now int64) (*p, int64) {
5940         assertLockHeld(&sched.lock)
5941
5942         pp := sched.pidle.ptr()
5943         if pp != nil {
5944                 // Timer may get added at any time now.
5945                 if now == 0 {
5946                         now = nanotime()
5947                 }
5948                 timerpMask.set(pp.id)
5949                 idlepMask.clear(pp.id)
5950                 sched.pidle = pp.link
5951                 sched.npidle.Add(-1)
5952                 pp.limiterEvent.stop(limiterEventIdle, now)
5953         }
5954         return pp, now
5955 }
5956
5957 // pidlegetSpinning tries to get a p from the _Pidle list, acquiring ownership.
5958 // This is called by spinning Ms (or callers than need a spinning M) that have
5959 // found work. If no P is available, this must synchronized with non-spinning
5960 // Ms that may be preparing to drop their P without discovering this work.
5961 //
5962 // sched.lock must be held.
5963 //
5964 // May run during STW, so write barriers are not allowed.
5965 //
5966 //go:nowritebarrierrec
5967 func pidlegetSpinning(now int64) (*p, int64) {
5968         assertLockHeld(&sched.lock)
5969
5970         pp, now := pidleget(now)
5971         if pp == nil {
5972                 // See "Delicate dance" comment in findrunnable. We found work
5973                 // that we cannot take, we must synchronize with non-spinning
5974                 // Ms that may be preparing to drop their P.
5975                 sched.needspinning.Store(1)
5976                 return nil, now
5977         }
5978
5979         return pp, now
5980 }
5981
5982 // runqempty reports whether pp has no Gs on its local run queue.
5983 // It never returns true spuriously.
5984 func runqempty(pp *p) bool {
5985         // Defend against a race where 1) pp has G1 in runqnext but runqhead == runqtail,
5986         // 2) runqput on pp kicks G1 to the runq, 3) runqget on pp empties runqnext.
5987         // Simply observing that runqhead == runqtail and then observing that runqnext == nil
5988         // does not mean the queue is empty.
5989         for {
5990                 head := atomic.Load(&pp.runqhead)
5991                 tail := atomic.Load(&pp.runqtail)
5992                 runnext := atomic.Loaduintptr((*uintptr)(unsafe.Pointer(&pp.runnext)))
5993                 if tail == atomic.Load(&pp.runqtail) {
5994                         return head == tail && runnext == 0
5995                 }
5996         }
5997 }
5998
5999 // To shake out latent assumptions about scheduling order,
6000 // we introduce some randomness into scheduling decisions
6001 // when running with the race detector.
6002 // The need for this was made obvious by changing the
6003 // (deterministic) scheduling order in Go 1.5 and breaking
6004 // many poorly-written tests.
6005 // With the randomness here, as long as the tests pass
6006 // consistently with -race, they shouldn't have latent scheduling
6007 // assumptions.
6008 const randomizeScheduler = raceenabled
6009
6010 // runqput tries to put g on the local runnable queue.
6011 // If next is false, runqput adds g to the tail of the runnable queue.
6012 // If next is true, runqput puts g in the pp.runnext slot.
6013 // If the run queue is full, runnext puts g on the global queue.
6014 // Executed only by the owner P.
6015 func runqput(pp *p, gp *g, next bool) {
6016         if randomizeScheduler && next && fastrandn(2) == 0 {
6017                 next = false
6018         }
6019
6020         if next {
6021         retryNext:
6022                 oldnext := pp.runnext
6023                 if !pp.runnext.cas(oldnext, guintptr(unsafe.Pointer(gp))) {
6024                         goto retryNext
6025                 }
6026                 if oldnext == 0 {
6027                         return
6028                 }
6029                 // Kick the old runnext out to the regular run queue.
6030                 gp = oldnext.ptr()
6031         }
6032
6033 retry:
6034         h := atomic.LoadAcq(&pp.runqhead) // load-acquire, synchronize with consumers
6035         t := pp.runqtail
6036         if t-h < uint32(len(pp.runq)) {
6037                 pp.runq[t%uint32(len(pp.runq))].set(gp)
6038                 atomic.StoreRel(&pp.runqtail, t+1) // store-release, makes the item available for consumption
6039                 return
6040         }
6041         if runqputslow(pp, gp, h, t) {
6042                 return
6043         }
6044         // the queue is not full, now the put above must succeed
6045         goto retry
6046 }
6047
6048 // Put g and a batch of work from local runnable queue on global queue.
6049 // Executed only by the owner P.
6050 func runqputslow(pp *p, gp *g, h, t uint32) bool {
6051         var batch [len(pp.runq)/2 + 1]*g
6052
6053         // First, grab a batch from local queue.
6054         n := t - h
6055         n = n / 2
6056         if n != uint32(len(pp.runq)/2) {
6057                 throw("runqputslow: queue is not full")
6058         }
6059         for i := uint32(0); i < n; i++ {
6060                 batch[i] = pp.runq[(h+i)%uint32(len(pp.runq))].ptr()
6061         }
6062         if !atomic.CasRel(&pp.runqhead, h, h+n) { // cas-release, commits consume
6063                 return false
6064         }
6065         batch[n] = gp
6066
6067         if randomizeScheduler {
6068                 for i := uint32(1); i <= n; i++ {
6069                         j := fastrandn(i + 1)
6070                         batch[i], batch[j] = batch[j], batch[i]
6071                 }
6072         }
6073
6074         // Link the goroutines.
6075         for i := uint32(0); i < n; i++ {
6076                 batch[i].schedlink.set(batch[i+1])
6077         }
6078         var q gQueue
6079         q.head.set(batch[0])
6080         q.tail.set(batch[n])
6081
6082         // Now put the batch on global queue.
6083         lock(&sched.lock)
6084         globrunqputbatch(&q, int32(n+1))
6085         unlock(&sched.lock)
6086         return true
6087 }
6088
6089 // runqputbatch tries to put all the G's on q on the local runnable queue.
6090 // If the queue is full, they are put on the global queue; in that case
6091 // this will temporarily acquire the scheduler lock.
6092 // Executed only by the owner P.
6093 func runqputbatch(pp *p, q *gQueue, qsize int) {
6094         h := atomic.LoadAcq(&pp.runqhead)
6095         t := pp.runqtail
6096         n := uint32(0)
6097         for !q.empty() && t-h < uint32(len(pp.runq)) {
6098                 gp := q.pop()
6099                 pp.runq[t%uint32(len(pp.runq))].set(gp)
6100                 t++
6101                 n++
6102         }
6103         qsize -= int(n)
6104
6105         if randomizeScheduler {
6106                 off := func(o uint32) uint32 {
6107                         return (pp.runqtail + o) % uint32(len(pp.runq))
6108                 }
6109                 for i := uint32(1); i < n; i++ {
6110                         j := fastrandn(i + 1)
6111                         pp.runq[off(i)], pp.runq[off(j)] = pp.runq[off(j)], pp.runq[off(i)]
6112                 }
6113         }
6114
6115         atomic.StoreRel(&pp.runqtail, t)
6116         if !q.empty() {
6117                 lock(&sched.lock)
6118                 globrunqputbatch(q, int32(qsize))
6119                 unlock(&sched.lock)
6120         }
6121 }
6122
6123 // Get g from local runnable queue.
6124 // If inheritTime is true, gp should inherit the remaining time in the
6125 // current time slice. Otherwise, it should start a new time slice.
6126 // Executed only by the owner P.
6127 func runqget(pp *p) (gp *g, inheritTime bool) {
6128         // If there's a runnext, it's the next G to run.
6129         next := pp.runnext
6130         // If the runnext is non-0 and the CAS fails, it could only have been stolen by another P,
6131         // because other Ps can race to set runnext to 0, but only the current P can set it to non-0.
6132         // Hence, there's no need to retry this CAS if it fails.
6133         if next != 0 && pp.runnext.cas(next, 0) {
6134                 return next.ptr(), true
6135         }
6136
6137         for {
6138                 h := atomic.LoadAcq(&pp.runqhead) // load-acquire, synchronize with other consumers
6139                 t := pp.runqtail
6140                 if t == h {
6141                         return nil, false
6142                 }
6143                 gp := pp.runq[h%uint32(len(pp.runq))].ptr()
6144                 if atomic.CasRel(&pp.runqhead, h, h+1) { // cas-release, commits consume
6145                         return gp, false
6146                 }
6147         }
6148 }
6149
6150 // runqdrain drains the local runnable queue of pp and returns all goroutines in it.
6151 // Executed only by the owner P.
6152 func runqdrain(pp *p) (drainQ gQueue, n uint32) {
6153         oldNext := pp.runnext
6154         if oldNext != 0 && pp.runnext.cas(oldNext, 0) {
6155                 drainQ.pushBack(oldNext.ptr())
6156                 n++
6157         }
6158
6159 retry:
6160         h := atomic.LoadAcq(&pp.runqhead) // load-acquire, synchronize with other consumers
6161         t := pp.runqtail
6162         qn := t - h
6163         if qn == 0 {
6164                 return
6165         }
6166         if qn > uint32(len(pp.runq)) { // read inconsistent h and t
6167                 goto retry
6168         }
6169
6170         if !atomic.CasRel(&pp.runqhead, h, h+qn) { // cas-release, commits consume
6171                 goto retry
6172         }
6173
6174         // We've inverted the order in which it gets G's from the local P's runnable queue
6175         // and then advances the head pointer because we don't want to mess up the statuses of G's
6176         // while runqdrain() and runqsteal() are running in parallel.
6177         // Thus we should advance the head pointer before draining the local P into a gQueue,
6178         // so that we can update any gp.schedlink only after we take the full ownership of G,
6179         // meanwhile, other P's can't access to all G's in local P's runnable queue and steal them.
6180         // See https://groups.google.com/g/golang-dev/c/0pTKxEKhHSc/m/6Q85QjdVBQAJ for more details.
6181         for i := uint32(0); i < qn; i++ {
6182                 gp := pp.runq[(h+i)%uint32(len(pp.runq))].ptr()
6183                 drainQ.pushBack(gp)
6184                 n++
6185         }
6186         return
6187 }
6188
6189 // Grabs a batch of goroutines from pp's runnable queue into batch.
6190 // Batch is a ring buffer starting at batchHead.
6191 // Returns number of grabbed goroutines.
6192 // Can be executed by any P.
6193 func runqgrab(pp *p, batch *[256]guintptr, batchHead uint32, stealRunNextG bool) uint32 {
6194         for {
6195                 h := atomic.LoadAcq(&pp.runqhead) // load-acquire, synchronize with other consumers
6196                 t := atomic.LoadAcq(&pp.runqtail) // load-acquire, synchronize with the producer
6197                 n := t - h
6198                 n = n - n/2
6199                 if n == 0 {
6200                         if stealRunNextG {
6201                                 // Try to steal from pp.runnext.
6202                                 if next := pp.runnext; next != 0 {
6203                                         if pp.status == _Prunning {
6204                                                 // Sleep to ensure that pp isn't about to run the g
6205                                                 // we are about to steal.
6206                                                 // The important use case here is when the g running
6207                                                 // on pp ready()s another g and then almost
6208                                                 // immediately blocks. Instead of stealing runnext
6209                                                 // in this window, back off to give pp a chance to
6210                                                 // schedule runnext. This will avoid thrashing gs
6211                                                 // between different Ps.
6212                                                 // A sync chan send/recv takes ~50ns as of time of
6213                                                 // writing, so 3us gives ~50x overshoot.
6214                                                 if GOOS != "windows" && GOOS != "openbsd" && GOOS != "netbsd" {
6215                                                         usleep(3)
6216                                                 } else {
6217                                                         // On some platforms system timer granularity is
6218                                                         // 1-15ms, which is way too much for this
6219                                                         // optimization. So just yield.
6220                                                         osyield()
6221                                                 }
6222                                         }
6223                                         if !pp.runnext.cas(next, 0) {
6224                                                 continue
6225                                         }
6226                                         batch[batchHead%uint32(len(batch))] = next
6227                                         return 1
6228                                 }
6229                         }
6230                         return 0
6231                 }
6232                 if n > uint32(len(pp.runq)/2) { // read inconsistent h and t
6233                         continue
6234                 }
6235                 for i := uint32(0); i < n; i++ {
6236                         g := pp.runq[(h+i)%uint32(len(pp.runq))]
6237                         batch[(batchHead+i)%uint32(len(batch))] = g
6238                 }
6239                 if atomic.CasRel(&pp.runqhead, h, h+n) { // cas-release, commits consume
6240                         return n
6241                 }
6242         }
6243 }
6244
6245 // Steal half of elements from local runnable queue of p2
6246 // and put onto local runnable queue of p.
6247 // Returns one of the stolen elements (or nil if failed).
6248 func runqsteal(pp, p2 *p, stealRunNextG bool) *g {
6249         t := pp.runqtail
6250         n := runqgrab(p2, &pp.runq, t, stealRunNextG)
6251         if n == 0 {
6252                 return nil
6253         }
6254         n--
6255         gp := pp.runq[(t+n)%uint32(len(pp.runq))].ptr()
6256         if n == 0 {
6257                 return gp
6258         }
6259         h := atomic.LoadAcq(&pp.runqhead) // load-acquire, synchronize with consumers
6260         if t-h+n >= uint32(len(pp.runq)) {
6261                 throw("runqsteal: runq overflow")
6262         }
6263         atomic.StoreRel(&pp.runqtail, t+n) // store-release, makes the item available for consumption
6264         return gp
6265 }
6266
6267 // A gQueue is a dequeue of Gs linked through g.schedlink. A G can only
6268 // be on one gQueue or gList at a time.
6269 type gQueue struct {
6270         head guintptr
6271         tail guintptr
6272 }
6273
6274 // empty reports whether q is empty.
6275 func (q *gQueue) empty() bool {
6276         return q.head == 0
6277 }
6278
6279 // push adds gp to the head of q.
6280 func (q *gQueue) push(gp *g) {
6281         gp.schedlink = q.head
6282         q.head.set(gp)
6283         if q.tail == 0 {
6284                 q.tail.set(gp)
6285         }
6286 }
6287
6288 // pushBack adds gp to the tail of q.
6289 func (q *gQueue) pushBack(gp *g) {
6290         gp.schedlink = 0
6291         if q.tail != 0 {
6292                 q.tail.ptr().schedlink.set(gp)
6293         } else {
6294                 q.head.set(gp)
6295         }
6296         q.tail.set(gp)
6297 }
6298
6299 // pushBackAll adds all Gs in q2 to the tail of q. After this q2 must
6300 // not be used.
6301 func (q *gQueue) pushBackAll(q2 gQueue) {
6302         if q2.tail == 0 {
6303                 return
6304         }
6305         q2.tail.ptr().schedlink = 0
6306         if q.tail != 0 {
6307                 q.tail.ptr().schedlink = q2.head
6308         } else {
6309                 q.head = q2.head
6310         }
6311         q.tail = q2.tail
6312 }
6313
6314 // pop removes and returns the head of queue q. It returns nil if
6315 // q is empty.
6316 func (q *gQueue) pop() *g {
6317         gp := q.head.ptr()
6318         if gp != nil {
6319                 q.head = gp.schedlink
6320                 if q.head == 0 {
6321                         q.tail = 0
6322                 }
6323         }
6324         return gp
6325 }
6326
6327 // popList takes all Gs in q and returns them as a gList.
6328 func (q *gQueue) popList() gList {
6329         stack := gList{q.head}
6330         *q = gQueue{}
6331         return stack
6332 }
6333
6334 // A gList is a list of Gs linked through g.schedlink. A G can only be
6335 // on one gQueue or gList at a time.
6336 type gList struct {
6337         head guintptr
6338 }
6339
6340 // empty reports whether l is empty.
6341 func (l *gList) empty() bool {
6342         return l.head == 0
6343 }
6344
6345 // push adds gp to the head of l.
6346 func (l *gList) push(gp *g) {
6347         gp.schedlink = l.head
6348         l.head.set(gp)
6349 }
6350
6351 // pushAll prepends all Gs in q to l.
6352 func (l *gList) pushAll(q gQueue) {
6353         if !q.empty() {
6354                 q.tail.ptr().schedlink = l.head
6355                 l.head = q.head
6356         }
6357 }
6358
6359 // pop removes and returns the head of l. If l is empty, it returns nil.
6360 func (l *gList) pop() *g {
6361         gp := l.head.ptr()
6362         if gp != nil {
6363                 l.head = gp.schedlink
6364         }
6365         return gp
6366 }
6367
6368 //go:linkname setMaxThreads runtime/debug.setMaxThreads
6369 func setMaxThreads(in int) (out int) {
6370         lock(&sched.lock)
6371         out = int(sched.maxmcount)
6372         if in > 0x7fffffff { // MaxInt32
6373                 sched.maxmcount = 0x7fffffff
6374         } else {
6375                 sched.maxmcount = int32(in)
6376         }
6377         checkmcount()
6378         unlock(&sched.lock)
6379         return
6380 }
6381
6382 //go:nosplit
6383 func procPin() int {
6384         gp := getg()
6385         mp := gp.m
6386
6387         mp.locks++
6388         return int(mp.p.ptr().id)
6389 }
6390
6391 //go:nosplit
6392 func procUnpin() {
6393         gp := getg()
6394         gp.m.locks--
6395 }
6396
6397 //go:linkname sync_runtime_procPin sync.runtime_procPin
6398 //go:nosplit
6399 func sync_runtime_procPin() int {
6400         return procPin()
6401 }
6402
6403 //go:linkname sync_runtime_procUnpin sync.runtime_procUnpin
6404 //go:nosplit
6405 func sync_runtime_procUnpin() {
6406         procUnpin()
6407 }
6408
6409 //go:linkname sync_atomic_runtime_procPin sync/atomic.runtime_procPin
6410 //go:nosplit
6411 func sync_atomic_runtime_procPin() int {
6412         return procPin()
6413 }
6414
6415 //go:linkname sync_atomic_runtime_procUnpin sync/atomic.runtime_procUnpin
6416 //go:nosplit
6417 func sync_atomic_runtime_procUnpin() {
6418         procUnpin()
6419 }
6420
6421 // Active spinning for sync.Mutex.
6422 //
6423 //go:linkname sync_runtime_canSpin sync.runtime_canSpin
6424 //go:nosplit
6425 func sync_runtime_canSpin(i int) bool {
6426         // sync.Mutex is cooperative, so we are conservative with spinning.
6427         // Spin only few times and only if running on a multicore machine and
6428         // GOMAXPROCS>1 and there is at least one other running P and local runq is empty.
6429         // As opposed to runtime mutex we don't do passive spinning here,
6430         // because there can be work on global runq or on other Ps.
6431         if i >= active_spin || ncpu <= 1 || gomaxprocs <= sched.npidle.Load()+sched.nmspinning.Load()+1 {
6432                 return false
6433         }
6434         if p := getg().m.p.ptr(); !runqempty(p) {
6435                 return false
6436         }
6437         return true
6438 }
6439
6440 //go:linkname sync_runtime_doSpin sync.runtime_doSpin
6441 //go:nosplit
6442 func sync_runtime_doSpin() {
6443         procyield(active_spin_cnt)
6444 }
6445
6446 var stealOrder randomOrder
6447
6448 // randomOrder/randomEnum are helper types for randomized work stealing.
6449 // They allow to enumerate all Ps in different pseudo-random orders without repetitions.
6450 // The algorithm is based on the fact that if we have X such that X and GOMAXPROCS
6451 // are coprime, then a sequences of (i + X) % GOMAXPROCS gives the required enumeration.
6452 type randomOrder struct {
6453         count    uint32
6454         coprimes []uint32
6455 }
6456
6457 type randomEnum struct {
6458         i     uint32
6459         count uint32
6460         pos   uint32
6461         inc   uint32
6462 }
6463
6464 func (ord *randomOrder) reset(count uint32) {
6465         ord.count = count
6466         ord.coprimes = ord.coprimes[:0]
6467         for i := uint32(1); i <= count; i++ {
6468                 if gcd(i, count) == 1 {
6469                         ord.coprimes = append(ord.coprimes, i)
6470                 }
6471         }
6472 }
6473
6474 func (ord *randomOrder) start(i uint32) randomEnum {
6475         return randomEnum{
6476                 count: ord.count,
6477                 pos:   i % ord.count,
6478                 inc:   ord.coprimes[i/ord.count%uint32(len(ord.coprimes))],
6479         }
6480 }
6481
6482 func (enum *randomEnum) done() bool {
6483         return enum.i == enum.count
6484 }
6485
6486 func (enum *randomEnum) next() {
6487         enum.i++
6488         enum.pos = (enum.pos + enum.inc) % enum.count
6489 }
6490
6491 func (enum *randomEnum) position() uint32 {
6492         return enum.pos
6493 }
6494
6495 func gcd(a, b uint32) uint32 {
6496         for b != 0 {
6497                 a, b = b, a%b
6498         }
6499         return a
6500 }
6501
6502 // An initTask represents the set of initializations that need to be done for a package.
6503 // Keep in sync with ../../test/noinit.go:initTask
6504 type initTask struct {
6505         state uint32 // 0 = uninitialized, 1 = in progress, 2 = done
6506         nfns  uint32
6507         // followed by nfns pcs, uintptr sized, one per init function to run
6508 }
6509
6510 // inittrace stores statistics for init functions which are
6511 // updated by malloc and newproc when active is true.
6512 var inittrace tracestat
6513
6514 type tracestat struct {
6515         active bool   // init tracing activation status
6516         id     uint64 // init goroutine id
6517         allocs uint64 // heap allocations
6518         bytes  uint64 // heap allocated bytes
6519 }
6520
6521 func doInit(ts []*initTask) {
6522         for _, t := range ts {
6523                 doInit1(t)
6524         }
6525 }
6526
6527 func doInit1(t *initTask) {
6528         switch t.state {
6529         case 2: // fully initialized
6530                 return
6531         case 1: // initialization in progress
6532                 throw("recursive call during initialization - linker skew")
6533         default: // not initialized yet
6534                 t.state = 1 // initialization in progress
6535
6536                 var (
6537                         start  int64
6538                         before tracestat
6539                 )
6540
6541                 if inittrace.active {
6542                         start = nanotime()
6543                         // Load stats non-atomically since tracinit is updated only by this init goroutine.
6544                         before = inittrace
6545                 }
6546
6547                 if t.nfns == 0 {
6548                         // We should have pruned all of these in the linker.
6549                         throw("inittask with no functions")
6550                 }
6551
6552                 firstFunc := add(unsafe.Pointer(t), 8)
6553                 for i := uint32(0); i < t.nfns; i++ {
6554                         p := add(firstFunc, uintptr(i)*goarch.PtrSize)
6555                         f := *(*func())(unsafe.Pointer(&p))
6556                         f()
6557                 }
6558
6559                 if inittrace.active {
6560                         end := nanotime()
6561                         // Load stats non-atomically since tracinit is updated only by this init goroutine.
6562                         after := inittrace
6563
6564                         f := *(*func())(unsafe.Pointer(&firstFunc))
6565                         pkg := funcpkgpath(findfunc(abi.FuncPCABIInternal(f)))
6566
6567                         var sbuf [24]byte
6568                         print("init ", pkg, " @")
6569                         print(string(fmtNSAsMS(sbuf[:], uint64(start-runtimeInitTime))), " ms, ")
6570                         print(string(fmtNSAsMS(sbuf[:], uint64(end-start))), " ms clock, ")
6571                         print(string(itoa(sbuf[:], after.bytes-before.bytes)), " bytes, ")
6572                         print(string(itoa(sbuf[:], after.allocs-before.allocs)), " allocs")
6573                         print("\n")
6574                 }
6575
6576                 t.state = 2 // initialization done
6577         }
6578 }