]> Cypherpunks.ru repositories - gostls13.git/blob - src/runtime/runtime2.go
runtime: add execution tracer v2 behind GOEXPERIMENT=exectracer2
[gostls13.git] / src / runtime / runtime2.go
1 // Copyright 2009 The Go Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style
3 // license that can be found in the LICENSE file.
4
5 package runtime
6
7 import (
8         "internal/abi"
9         "internal/goarch"
10         "runtime/internal/atomic"
11         "runtime/internal/sys"
12         "unsafe"
13 )
14
15 // defined constants
16 const (
17         // G status
18         //
19         // Beyond indicating the general state of a G, the G status
20         // acts like a lock on the goroutine's stack (and hence its
21         // ability to execute user code).
22         //
23         // If you add to this list, add to the list
24         // of "okay during garbage collection" status
25         // in mgcmark.go too.
26         //
27         // TODO(austin): The _Gscan bit could be much lighter-weight.
28         // For example, we could choose not to run _Gscanrunnable
29         // goroutines found in the run queue, rather than CAS-looping
30         // until they become _Grunnable. And transitions like
31         // _Gscanwaiting -> _Gscanrunnable are actually okay because
32         // they don't affect stack ownership.
33
34         // _Gidle means this goroutine was just allocated and has not
35         // yet been initialized.
36         _Gidle = iota // 0
37
38         // _Grunnable means this goroutine is on a run queue. It is
39         // not currently executing user code. The stack is not owned.
40         _Grunnable // 1
41
42         // _Grunning means this goroutine may execute user code. The
43         // stack is owned by this goroutine. It is not on a run queue.
44         // It is assigned an M and a P (g.m and g.m.p are valid).
45         _Grunning // 2
46
47         // _Gsyscall means this goroutine is executing a system call.
48         // It is not executing user code. The stack is owned by this
49         // goroutine. It is not on a run queue. It is assigned an M.
50         _Gsyscall // 3
51
52         // _Gwaiting means this goroutine is blocked in the runtime.
53         // It is not executing user code. It is not on a run queue,
54         // but should be recorded somewhere (e.g., a channel wait
55         // queue) so it can be ready()d when necessary. The stack is
56         // not owned *except* that a channel operation may read or
57         // write parts of the stack under the appropriate channel
58         // lock. Otherwise, it is not safe to access the stack after a
59         // goroutine enters _Gwaiting (e.g., it may get moved).
60         _Gwaiting // 4
61
62         // _Gmoribund_unused is currently unused, but hardcoded in gdb
63         // scripts.
64         _Gmoribund_unused // 5
65
66         // _Gdead means this goroutine is currently unused. It may be
67         // just exited, on a free list, or just being initialized. It
68         // is not executing user code. It may or may not have a stack
69         // allocated. The G and its stack (if any) are owned by the M
70         // that is exiting the G or that obtained the G from the free
71         // list.
72         _Gdead // 6
73
74         // _Genqueue_unused is currently unused.
75         _Genqueue_unused // 7
76
77         // _Gcopystack means this goroutine's stack is being moved. It
78         // is not executing user code and is not on a run queue. The
79         // stack is owned by the goroutine that put it in _Gcopystack.
80         _Gcopystack // 8
81
82         // _Gpreempted means this goroutine stopped itself for a
83         // suspendG preemption. It is like _Gwaiting, but nothing is
84         // yet responsible for ready()ing it. Some suspendG must CAS
85         // the status to _Gwaiting to take responsibility for
86         // ready()ing this G.
87         _Gpreempted // 9
88
89         // _Gscan combined with one of the above states other than
90         // _Grunning indicates that GC is scanning the stack. The
91         // goroutine is not executing user code and the stack is owned
92         // by the goroutine that set the _Gscan bit.
93         //
94         // _Gscanrunning is different: it is used to briefly block
95         // state transitions while GC signals the G to scan its own
96         // stack. This is otherwise like _Grunning.
97         //
98         // atomicstatus&~Gscan gives the state the goroutine will
99         // return to when the scan completes.
100         _Gscan          = 0x1000
101         _Gscanrunnable  = _Gscan + _Grunnable  // 0x1001
102         _Gscanrunning   = _Gscan + _Grunning   // 0x1002
103         _Gscansyscall   = _Gscan + _Gsyscall   // 0x1003
104         _Gscanwaiting   = _Gscan + _Gwaiting   // 0x1004
105         _Gscanpreempted = _Gscan + _Gpreempted // 0x1009
106 )
107
108 const (
109         // P status
110
111         // _Pidle means a P is not being used to run user code or the
112         // scheduler. Typically, it's on the idle P list and available
113         // to the scheduler, but it may just be transitioning between
114         // other states.
115         //
116         // The P is owned by the idle list or by whatever is
117         // transitioning its state. Its run queue is empty.
118         _Pidle = iota
119
120         // _Prunning means a P is owned by an M and is being used to
121         // run user code or the scheduler. Only the M that owns this P
122         // is allowed to change the P's status from _Prunning. The M
123         // may transition the P to _Pidle (if it has no more work to
124         // do), _Psyscall (when entering a syscall), or _Pgcstop (to
125         // halt for the GC). The M may also hand ownership of the P
126         // off directly to another M (e.g., to schedule a locked G).
127         _Prunning
128
129         // _Psyscall means a P is not running user code. It has
130         // affinity to an M in a syscall but is not owned by it and
131         // may be stolen by another M. This is similar to _Pidle but
132         // uses lightweight transitions and maintains M affinity.
133         //
134         // Leaving _Psyscall must be done with a CAS, either to steal
135         // or retake the P. Note that there's an ABA hazard: even if
136         // an M successfully CASes its original P back to _Prunning
137         // after a syscall, it must understand the P may have been
138         // used by another M in the interim.
139         _Psyscall
140
141         // _Pgcstop means a P is halted for STW and owned by the M
142         // that stopped the world. The M that stopped the world
143         // continues to use its P, even in _Pgcstop. Transitioning
144         // from _Prunning to _Pgcstop causes an M to release its P and
145         // park.
146         //
147         // The P retains its run queue and startTheWorld will restart
148         // the scheduler on Ps with non-empty run queues.
149         _Pgcstop
150
151         // _Pdead means a P is no longer used (GOMAXPROCS shrank). We
152         // reuse Ps if GOMAXPROCS increases. A dead P is mostly
153         // stripped of its resources, though a few things remain
154         // (e.g., trace buffers).
155         _Pdead
156 )
157
158 // Mutual exclusion locks.  In the uncontended case,
159 // as fast as spin locks (just a few user-level instructions),
160 // but on the contention path they sleep in the kernel.
161 // A zeroed Mutex is unlocked (no need to initialize each lock).
162 // Initialization is helpful for static lock ranking, but not required.
163 type mutex struct {
164         // Empty struct if lock ranking is disabled, otherwise includes the lock rank
165         lockRankStruct
166         // Futex-based impl treats it as uint32 key,
167         // while sema-based impl as M* waitm.
168         // Used to be a union, but unions break precise GC.
169         key uintptr
170 }
171
172 // sleep and wakeup on one-time events.
173 // before any calls to notesleep or notewakeup,
174 // must call noteclear to initialize the Note.
175 // then, exactly one thread can call notesleep
176 // and exactly one thread can call notewakeup (once).
177 // once notewakeup has been called, the notesleep
178 // will return.  future notesleep will return immediately.
179 // subsequent noteclear must be called only after
180 // previous notesleep has returned, e.g. it's disallowed
181 // to call noteclear straight after notewakeup.
182 //
183 // notetsleep is like notesleep but wakes up after
184 // a given number of nanoseconds even if the event
185 // has not yet happened.  if a goroutine uses notetsleep to
186 // wake up early, it must wait to call noteclear until it
187 // can be sure that no other goroutine is calling
188 // notewakeup.
189 //
190 // notesleep/notetsleep are generally called on g0,
191 // notetsleepg is similar to notetsleep but is called on user g.
192 type note struct {
193         // Futex-based impl treats it as uint32 key,
194         // while sema-based impl as M* waitm.
195         // Used to be a union, but unions break precise GC.
196         key uintptr
197 }
198
199 type funcval struct {
200         fn uintptr
201         // variable-size, fn-specific data here
202 }
203
204 type iface struct {
205         tab  *itab
206         data unsafe.Pointer
207 }
208
209 type eface struct {
210         _type *_type
211         data  unsafe.Pointer
212 }
213
214 func efaceOf(ep *any) *eface {
215         return (*eface)(unsafe.Pointer(ep))
216 }
217
218 // The guintptr, muintptr, and puintptr are all used to bypass write barriers.
219 // It is particularly important to avoid write barriers when the current P has
220 // been released, because the GC thinks the world is stopped, and an
221 // unexpected write barrier would not be synchronized with the GC,
222 // which can lead to a half-executed write barrier that has marked the object
223 // but not queued it. If the GC skips the object and completes before the
224 // queuing can occur, it will incorrectly free the object.
225 //
226 // We tried using special assignment functions invoked only when not
227 // holding a running P, but then some updates to a particular memory
228 // word went through write barriers and some did not. This breaks the
229 // write barrier shadow checking mode, and it is also scary: better to have
230 // a word that is completely ignored by the GC than to have one for which
231 // only a few updates are ignored.
232 //
233 // Gs and Ps are always reachable via true pointers in the
234 // allgs and allp lists or (during allocation before they reach those lists)
235 // from stack variables.
236 //
237 // Ms are always reachable via true pointers either from allm or
238 // freem. Unlike Gs and Ps we do free Ms, so it's important that
239 // nothing ever hold an muintptr across a safe point.
240
241 // A guintptr holds a goroutine pointer, but typed as a uintptr
242 // to bypass write barriers. It is used in the Gobuf goroutine state
243 // and in scheduling lists that are manipulated without a P.
244 //
245 // The Gobuf.g goroutine pointer is almost always updated by assembly code.
246 // In one of the few places it is updated by Go code - func save - it must be
247 // treated as a uintptr to avoid a write barrier being emitted at a bad time.
248 // Instead of figuring out how to emit the write barriers missing in the
249 // assembly manipulation, we change the type of the field to uintptr,
250 // so that it does not require write barriers at all.
251 //
252 // Goroutine structs are published in the allg list and never freed.
253 // That will keep the goroutine structs from being collected.
254 // There is never a time that Gobuf.g's contain the only references
255 // to a goroutine: the publishing of the goroutine in allg comes first.
256 // Goroutine pointers are also kept in non-GC-visible places like TLS,
257 // so I can't see them ever moving. If we did want to start moving data
258 // in the GC, we'd need to allocate the goroutine structs from an
259 // alternate arena. Using guintptr doesn't make that problem any worse.
260 // Note that pollDesc.rg, pollDesc.wg also store g in uintptr form,
261 // so they would need to be updated too if g's start moving.
262 type guintptr uintptr
263
264 //go:nosplit
265 func (gp guintptr) ptr() *g { return (*g)(unsafe.Pointer(gp)) }
266
267 //go:nosplit
268 func (gp *guintptr) set(g *g) { *gp = guintptr(unsafe.Pointer(g)) }
269
270 //go:nosplit
271 func (gp *guintptr) cas(old, new guintptr) bool {
272         return atomic.Casuintptr((*uintptr)(unsafe.Pointer(gp)), uintptr(old), uintptr(new))
273 }
274
275 //go:nosplit
276 func (gp *g) guintptr() guintptr {
277         return guintptr(unsafe.Pointer(gp))
278 }
279
280 // setGNoWB performs *gp = new without a write barrier.
281 // For times when it's impractical to use a guintptr.
282 //
283 //go:nosplit
284 //go:nowritebarrier
285 func setGNoWB(gp **g, new *g) {
286         (*guintptr)(unsafe.Pointer(gp)).set(new)
287 }
288
289 type puintptr uintptr
290
291 //go:nosplit
292 func (pp puintptr) ptr() *p { return (*p)(unsafe.Pointer(pp)) }
293
294 //go:nosplit
295 func (pp *puintptr) set(p *p) { *pp = puintptr(unsafe.Pointer(p)) }
296
297 // muintptr is a *m that is not tracked by the garbage collector.
298 //
299 // Because we do free Ms, there are some additional constrains on
300 // muintptrs:
301 //
302 //  1. Never hold an muintptr locally across a safe point.
303 //
304 //  2. Any muintptr in the heap must be owned by the M itself so it can
305 //     ensure it is not in use when the last true *m is released.
306 type muintptr uintptr
307
308 //go:nosplit
309 func (mp muintptr) ptr() *m { return (*m)(unsafe.Pointer(mp)) }
310
311 //go:nosplit
312 func (mp *muintptr) set(m *m) { *mp = muintptr(unsafe.Pointer(m)) }
313
314 // setMNoWB performs *mp = new without a write barrier.
315 // For times when it's impractical to use an muintptr.
316 //
317 //go:nosplit
318 //go:nowritebarrier
319 func setMNoWB(mp **m, new *m) {
320         (*muintptr)(unsafe.Pointer(mp)).set(new)
321 }
322
323 type gobuf struct {
324         // The offsets of sp, pc, and g are known to (hard-coded in) libmach.
325         //
326         // ctxt is unusual with respect to GC: it may be a
327         // heap-allocated funcval, so GC needs to track it, but it
328         // needs to be set and cleared from assembly, where it's
329         // difficult to have write barriers. However, ctxt is really a
330         // saved, live register, and we only ever exchange it between
331         // the real register and the gobuf. Hence, we treat it as a
332         // root during stack scanning, which means assembly that saves
333         // and restores it doesn't need write barriers. It's still
334         // typed as a pointer so that any other writes from Go get
335         // write barriers.
336         sp   uintptr
337         pc   uintptr
338         g    guintptr
339         ctxt unsafe.Pointer
340         ret  uintptr
341         lr   uintptr
342         bp   uintptr // for framepointer-enabled architectures
343 }
344
345 // sudog (pseudo-g) represents a g in a wait list, such as for sending/receiving
346 // on a channel.
347 //
348 // sudog is necessary because the g â†” synchronization object relation
349 // is many-to-many. A g can be on many wait lists, so there may be
350 // many sudogs for one g; and many gs may be waiting on the same
351 // synchronization object, so there may be many sudogs for one object.
352 //
353 // sudogs are allocated from a special pool. Use acquireSudog and
354 // releaseSudog to allocate and free them.
355 type sudog struct {
356         // The following fields are protected by the hchan.lock of the
357         // channel this sudog is blocking on. shrinkstack depends on
358         // this for sudogs involved in channel ops.
359
360         g *g
361
362         next *sudog
363         prev *sudog
364         elem unsafe.Pointer // data element (may point to stack)
365
366         // The following fields are never accessed concurrently.
367         // For channels, waitlink is only accessed by g.
368         // For semaphores, all fields (including the ones above)
369         // are only accessed when holding a semaRoot lock.
370
371         acquiretime int64
372         releasetime int64
373         ticket      uint32
374
375         // isSelect indicates g is participating in a select, so
376         // g.selectDone must be CAS'd to win the wake-up race.
377         isSelect bool
378
379         // success indicates whether communication over channel c
380         // succeeded. It is true if the goroutine was awoken because a
381         // value was delivered over channel c, and false if awoken
382         // because c was closed.
383         success bool
384
385         // waiters is a count of semaRoot waiting list other than head of list,
386         // clamped to a uint16 to fit in unused space.
387         // Only meaningful at the head of the list.
388         // (If we wanted to be overly clever, we could store a high 16 bits
389         // in the second entry in the list.)
390         waiters uint16
391
392         parent   *sudog // semaRoot binary tree
393         waitlink *sudog // g.waiting list or semaRoot
394         waittail *sudog // semaRoot
395         c        *hchan // channel
396 }
397
398 type libcall struct {
399         fn   uintptr
400         n    uintptr // number of parameters
401         args uintptr // parameters
402         r1   uintptr // return values
403         r2   uintptr
404         err  uintptr // error number
405 }
406
407 // Stack describes a Go execution stack.
408 // The bounds of the stack are exactly [lo, hi),
409 // with no implicit data structures on either side.
410 type stack struct {
411         lo uintptr
412         hi uintptr
413 }
414
415 // heldLockInfo gives info on a held lock and the rank of that lock
416 type heldLockInfo struct {
417         lockAddr uintptr
418         rank     lockRank
419 }
420
421 type g struct {
422         // Stack parameters.
423         // stack describes the actual stack memory: [stack.lo, stack.hi).
424         // stackguard0 is the stack pointer compared in the Go stack growth prologue.
425         // It is stack.lo+StackGuard normally, but can be StackPreempt to trigger a preemption.
426         // stackguard1 is the stack pointer compared in the //go:systemstack stack growth prologue.
427         // It is stack.lo+StackGuard on g0 and gsignal stacks.
428         // It is ~0 on other goroutine stacks, to trigger a call to morestackc (and crash).
429         stack       stack   // offset known to runtime/cgo
430         stackguard0 uintptr // offset known to liblink
431         stackguard1 uintptr // offset known to liblink
432
433         _panic    *_panic // innermost panic - offset known to liblink
434         _defer    *_defer // innermost defer
435         m         *m      // current m; offset known to arm liblink
436         sched     gobuf
437         syscallsp uintptr // if status==Gsyscall, syscallsp = sched.sp to use during gc
438         syscallpc uintptr // if status==Gsyscall, syscallpc = sched.pc to use during gc
439         stktopsp  uintptr // expected sp at top of stack, to check in traceback
440         // param is a generic pointer parameter field used to pass
441         // values in particular contexts where other storage for the
442         // parameter would be difficult to find. It is currently used
443         // in four ways:
444         // 1. When a channel operation wakes up a blocked goroutine, it sets param to
445         //    point to the sudog of the completed blocking operation.
446         // 2. By gcAssistAlloc1 to signal back to its caller that the goroutine completed
447         //    the GC cycle. It is unsafe to do so in any other way, because the goroutine's
448         //    stack may have moved in the meantime.
449         // 3. By debugCallWrap to pass parameters to a new goroutine because allocating a
450         //    closure in the runtime is forbidden.
451         // 4. When a panic is recovered and control returns to the respective frame,
452         //    param may point to a savedOpenDeferState.
453         param        unsafe.Pointer
454         atomicstatus atomic.Uint32
455         stackLock    uint32 // sigprof/scang lock; TODO: fold in to atomicstatus
456         goid         uint64
457         schedlink    guintptr
458         waitsince    int64      // approx time when the g become blocked
459         waitreason   waitReason // if status==Gwaiting
460
461         preempt       bool // preemption signal, duplicates stackguard0 = stackpreempt
462         preemptStop   bool // transition to _Gpreempted on preemption; otherwise, just deschedule
463         preemptShrink bool // shrink stack at synchronous safe point
464
465         // asyncSafePoint is set if g is stopped at an asynchronous
466         // safe point. This means there are frames on the stack
467         // without precise pointer information.
468         asyncSafePoint bool
469
470         paniconfault bool // panic (instead of crash) on unexpected fault address
471         gcscandone   bool // g has scanned stack; protected by _Gscan bit in status
472         throwsplit   bool // must not split stack
473         // activeStackChans indicates that there are unlocked channels
474         // pointing into this goroutine's stack. If true, stack
475         // copying needs to acquire channel locks to protect these
476         // areas of the stack.
477         activeStackChans bool
478         // parkingOnChan indicates that the goroutine is about to
479         // park on a chansend or chanrecv. Used to signal an unsafe point
480         // for stack shrinking.
481         parkingOnChan atomic.Bool
482         // inMarkAssist indicates whether the goroutine is in mark assist.
483         // Used by the execution tracer.
484         inMarkAssist bool
485
486         raceignore    int8  // ignore race detection events
487         nocgocallback bool  // whether disable callback from C
488         tracking      bool  // whether we're tracking this G for sched latency statistics
489         trackingSeq   uint8 // used to decide whether to track this G
490         trackingStamp int64 // timestamp of when the G last started being tracked
491         runnableTime  int64 // the amount of time spent runnable, cleared when running, only used when tracking
492         lockedm       muintptr
493         sig           uint32
494         writebuf      []byte
495         sigcode0      uintptr
496         sigcode1      uintptr
497         sigpc         uintptr
498         parentGoid    uint64          // goid of goroutine that created this goroutine
499         gopc          uintptr         // pc of go statement that created this goroutine
500         ancestors     *[]ancestorInfo // ancestor information goroutine(s) that created this goroutine (only used if debug.tracebackancestors)
501         startpc       uintptr         // pc of goroutine function
502         racectx       uintptr
503         waiting       *sudog         // sudog structures this g is waiting on (that have a valid elem ptr); in lock order
504         cgoCtxt       []uintptr      // cgo traceback context
505         labels        unsafe.Pointer // profiler labels
506         timer         *timer         // cached timer for time.Sleep
507         selectDone    atomic.Uint32  // are we participating in a select and did someone win the race?
508
509         // goroutineProfiled indicates the status of this goroutine's stack for the
510         // current in-progress goroutine profile
511         goroutineProfiled goroutineProfileStateHolder
512
513         // Per-G tracer state.
514         trace gTraceState
515
516         // Per-G GC state
517
518         // gcAssistBytes is this G's GC assist credit in terms of
519         // bytes allocated. If this is positive, then the G has credit
520         // to allocate gcAssistBytes bytes without assisting. If this
521         // is negative, then the G must correct this by performing
522         // scan work. We track this in bytes to make it fast to update
523         // and check for debt in the malloc hot path. The assist ratio
524         // determines how this corresponds to scan work debt.
525         gcAssistBytes int64
526 }
527
528 // gTrackingPeriod is the number of transitions out of _Grunning between
529 // latency tracking runs.
530 const gTrackingPeriod = 8
531
532 const (
533         // tlsSlots is the number of pointer-sized slots reserved for TLS on some platforms,
534         // like Windows.
535         tlsSlots = 6
536         tlsSize  = tlsSlots * goarch.PtrSize
537 )
538
539 // Values for m.freeWait.
540 const (
541         freeMStack = 0 // M done, free stack and reference.
542         freeMRef   = 1 // M done, free reference.
543         freeMWait  = 2 // M still in use.
544 )
545
546 type m struct {
547         g0      *g     // goroutine with scheduling stack
548         morebuf gobuf  // gobuf arg to morestack
549         divmod  uint32 // div/mod denominator for arm - known to liblink
550         _       uint32 // align next field to 8 bytes
551
552         // Fields not known to debuggers.
553         procid        uint64            // for debuggers, but offset not hard-coded
554         gsignal       *g                // signal-handling g
555         goSigStack    gsignalStack      // Go-allocated signal handling stack
556         sigmask       sigset            // storage for saved signal mask
557         tls           [tlsSlots]uintptr // thread-local storage (for x86 extern register)
558         mstartfn      func()
559         curg          *g       // current running goroutine
560         caughtsig     guintptr // goroutine running during fatal signal
561         p             puintptr // attached p for executing go code (nil if not executing go code)
562         nextp         puintptr
563         oldp          puintptr // the p that was attached before executing a syscall
564         id            int64
565         mallocing     int32
566         throwing      throwType
567         preemptoff    string // if != "", keep curg running on this m
568         locks         int32
569         dying         int32
570         profilehz     int32
571         spinning      bool // m is out of work and is actively looking for work
572         blocked       bool // m is blocked on a note
573         newSigstack   bool // minit on C thread called sigaltstack
574         printlock     int8
575         incgo         bool          // m is executing a cgo call
576         isextra       bool          // m is an extra m
577         isExtraInC    bool          // m is an extra m that is not executing Go code
578         isExtraInSig  bool          // m is an extra m in a signal handler
579         freeWait      atomic.Uint32 // Whether it is safe to free g0 and delete m (one of freeMRef, freeMStack, freeMWait)
580         fastrand      uint64
581         needextram    bool
582         traceback     uint8
583         ncgocall      uint64        // number of cgo calls in total
584         ncgo          int32         // number of cgo calls currently in progress
585         cgoCallersUse atomic.Uint32 // if non-zero, cgoCallers in use temporarily
586         cgoCallers    *cgoCallers   // cgo traceback if crashing in cgo call
587         park          note
588         alllink       *m // on allm
589         schedlink     muintptr
590         lockedg       guintptr
591         createstack   [32]uintptr // stack that created this thread, it's used for StackRecord.Stack0, so it must align with it.
592         lockedExt     uint32      // tracking for external LockOSThread
593         lockedInt     uint32      // tracking for internal lockOSThread
594         nextwaitm     muintptr    // next m waiting for lock
595
596         // wait* are used to carry arguments from gopark into park_m, because
597         // there's no stack to put them on. That is their sole purpose.
598         waitunlockf          func(*g, unsafe.Pointer) bool
599         waitlock             unsafe.Pointer
600         waitTraceBlockReason traceBlockReason
601         waitTraceSkip        int
602
603         syscalltick uint32
604         freelink    *m // on sched.freem
605         trace       mTraceState
606
607         // these are here because they are too large to be on the stack
608         // of low-level NOSPLIT functions.
609         libcall   libcall
610         libcallpc uintptr // for cpu profiler
611         libcallsp uintptr
612         libcallg  guintptr
613         syscall   libcall // stores syscall parameters on windows
614
615         vdsoSP uintptr // SP for traceback while in VDSO call (0 if not in call)
616         vdsoPC uintptr // PC for traceback while in VDSO call
617
618         // preemptGen counts the number of completed preemption
619         // signals. This is used to detect when a preemption is
620         // requested, but fails.
621         preemptGen atomic.Uint32
622
623         // Whether this is a pending preemption signal on this M.
624         signalPending atomic.Uint32
625
626         // pcvalue lookup cache
627         pcvalueCache pcvalueCache
628
629         dlogPerM
630
631         mOS
632
633         // Up to 10 locks held by this m, maintained by the lock ranking code.
634         locksHeldLen int
635         locksHeld    [10]heldLockInfo
636 }
637
638 type p struct {
639         id          int32
640         status      uint32 // one of pidle/prunning/...
641         link        puintptr
642         schedtick   uint32     // incremented on every scheduler call
643         syscalltick uint32     // incremented on every system call
644         sysmontick  sysmontick // last tick observed by sysmon
645         m           muintptr   // back-link to associated m (nil if idle)
646         mcache      *mcache
647         pcache      pageCache
648         raceprocctx uintptr
649
650         deferpool    []*_defer // pool of available defer structs (see panic.go)
651         deferpoolbuf [32]*_defer
652
653         // Cache of goroutine ids, amortizes accesses to runtime·sched.goidgen.
654         goidcache    uint64
655         goidcacheend uint64
656
657         // Queue of runnable goroutines. Accessed without lock.
658         runqhead uint32
659         runqtail uint32
660         runq     [256]guintptr
661         // runnext, if non-nil, is a runnable G that was ready'd by
662         // the current G and should be run next instead of what's in
663         // runq if there's time remaining in the running G's time
664         // slice. It will inherit the time left in the current time
665         // slice. If a set of goroutines is locked in a
666         // communicate-and-wait pattern, this schedules that set as a
667         // unit and eliminates the (potentially large) scheduling
668         // latency that otherwise arises from adding the ready'd
669         // goroutines to the end of the run queue.
670         //
671         // Note that while other P's may atomically CAS this to zero,
672         // only the owner P can CAS it to a valid G.
673         runnext guintptr
674
675         // Available G's (status == Gdead)
676         gFree struct {
677                 gList
678                 n int32
679         }
680
681         sudogcache []*sudog
682         sudogbuf   [128]*sudog
683
684         // Cache of mspan objects from the heap.
685         mspancache struct {
686                 // We need an explicit length here because this field is used
687                 // in allocation codepaths where write barriers are not allowed,
688                 // and eliminating the write barrier/keeping it eliminated from
689                 // slice updates is tricky, more so than just managing the length
690                 // ourselves.
691                 len int
692                 buf [128]*mspan
693         }
694
695         // Cache of a single pinner object to reduce allocations from repeated
696         // pinner creation.
697         pinnerCache *pinner
698
699         trace pTraceState
700
701         palloc persistentAlloc // per-P to avoid mutex
702
703         // The when field of the first entry on the timer heap.
704         // This is 0 if the timer heap is empty.
705         timer0When atomic.Int64
706
707         // The earliest known nextwhen field of a timer with
708         // timerModifiedEarlier status. Because the timer may have been
709         // modified again, there need not be any timer with this value.
710         // This is 0 if there are no timerModifiedEarlier timers.
711         timerModifiedEarliest atomic.Int64
712
713         // Per-P GC state
714         gcAssistTime         int64 // Nanoseconds in assistAlloc
715         gcFractionalMarkTime int64 // Nanoseconds in fractional mark worker (atomic)
716
717         // limiterEvent tracks events for the GC CPU limiter.
718         limiterEvent limiterEvent
719
720         // gcMarkWorkerMode is the mode for the next mark worker to run in.
721         // That is, this is used to communicate with the worker goroutine
722         // selected for immediate execution by
723         // gcController.findRunnableGCWorker. When scheduling other goroutines,
724         // this field must be set to gcMarkWorkerNotWorker.
725         gcMarkWorkerMode gcMarkWorkerMode
726         // gcMarkWorkerStartTime is the nanotime() at which the most recent
727         // mark worker started.
728         gcMarkWorkerStartTime int64
729
730         // gcw is this P's GC work buffer cache. The work buffer is
731         // filled by write barriers, drained by mutator assists, and
732         // disposed on certain GC state transitions.
733         gcw gcWork
734
735         // wbBuf is this P's GC write barrier buffer.
736         //
737         // TODO: Consider caching this in the running G.
738         wbBuf wbBuf
739
740         runSafePointFn uint32 // if 1, run sched.safePointFn at next safe point
741
742         // statsSeq is a counter indicating whether this P is currently
743         // writing any stats. Its value is even when not, odd when it is.
744         statsSeq atomic.Uint32
745
746         // Lock for timers. We normally access the timers while running
747         // on this P, but the scheduler can also do it from a different P.
748         timersLock mutex
749
750         // Actions to take at some time. This is used to implement the
751         // standard library's time package.
752         // Must hold timersLock to access.
753         timers []*timer
754
755         // Number of timers in P's heap.
756         numTimers atomic.Uint32
757
758         // Number of timerDeleted timers in P's heap.
759         deletedTimers atomic.Uint32
760
761         // Race context used while executing timer functions.
762         timerRaceCtx uintptr
763
764         // maxStackScanDelta accumulates the amount of stack space held by
765         // live goroutines (i.e. those eligible for stack scanning).
766         // Flushed to gcController.maxStackScan once maxStackScanSlack
767         // or -maxStackScanSlack is reached.
768         maxStackScanDelta int64
769
770         // gc-time statistics about current goroutines
771         // Note that this differs from maxStackScan in that this
772         // accumulates the actual stack observed to be used at GC time (hi - sp),
773         // not an instantaneous measure of the total stack size that might need
774         // to be scanned (hi - lo).
775         scannedStackSize uint64 // stack size of goroutines scanned by this P
776         scannedStacks    uint64 // number of goroutines scanned by this P
777
778         // preempt is set to indicate that this P should be enter the
779         // scheduler ASAP (regardless of what G is running on it).
780         preempt bool
781
782         // pageTraceBuf is a buffer for writing out page allocation/free/scavenge traces.
783         //
784         // Used only if GOEXPERIMENT=pagetrace.
785         pageTraceBuf pageTraceBuf
786
787         // Padding is no longer needed. False sharing is now not a worry because p is large enough
788         // that its size class is an integer multiple of the cache line size (for any of our architectures).
789 }
790
791 type schedt struct {
792         goidgen   atomic.Uint64
793         lastpoll  atomic.Int64 // time of last network poll, 0 if currently polling
794         pollUntil atomic.Int64 // time to which current poll is sleeping
795
796         lock mutex
797
798         // When increasing nmidle, nmidlelocked, nmsys, or nmfreed, be
799         // sure to call checkdead().
800
801         midle        muintptr // idle m's waiting for work
802         nmidle       int32    // number of idle m's waiting for work
803         nmidlelocked int32    // number of locked m's waiting for work
804         mnext        int64    // number of m's that have been created and next M ID
805         maxmcount    int32    // maximum number of m's allowed (or die)
806         nmsys        int32    // number of system m's not counted for deadlock
807         nmfreed      int64    // cumulative number of freed m's
808
809         ngsys atomic.Int32 // number of system goroutines
810
811         pidle        puintptr // idle p's
812         npidle       atomic.Int32
813         nmspinning   atomic.Int32  // See "Worker thread parking/unparking" comment in proc.go.
814         needspinning atomic.Uint32 // See "Delicate dance" comment in proc.go. Boolean. Must hold sched.lock to set to 1.
815
816         // Global runnable queue.
817         runq     gQueue
818         runqsize int32
819
820         // disable controls selective disabling of the scheduler.
821         //
822         // Use schedEnableUser to control this.
823         //
824         // disable is protected by sched.lock.
825         disable struct {
826                 // user disables scheduling of user goroutines.
827                 user     bool
828                 runnable gQueue // pending runnable Gs
829                 n        int32  // length of runnable
830         }
831
832         // Global cache of dead G's.
833         gFree struct {
834                 lock    mutex
835                 stack   gList // Gs with stacks
836                 noStack gList // Gs without stacks
837                 n       int32
838         }
839
840         // Central cache of sudog structs.
841         sudoglock  mutex
842         sudogcache *sudog
843
844         // Central pool of available defer structs.
845         deferlock mutex
846         deferpool *_defer
847
848         // freem is the list of m's waiting to be freed when their
849         // m.exited is set. Linked through m.freelink.
850         freem *m
851
852         gcwaiting  atomic.Bool // gc is waiting to run
853         stopwait   int32
854         stopnote   note
855         sysmonwait atomic.Bool
856         sysmonnote note
857
858         // safepointFn should be called on each P at the next GC
859         // safepoint if p.runSafePointFn is set.
860         safePointFn   func(*p)
861         safePointWait int32
862         safePointNote note
863
864         profilehz int32 // cpu profiling rate
865
866         procresizetime int64 // nanotime() of last change to gomaxprocs
867         totaltime      int64 // âˆ«gomaxprocs dt up to procresizetime
868
869         // sysmonlock protects sysmon's actions on the runtime.
870         //
871         // Acquire and hold this mutex to block sysmon from interacting
872         // with the rest of the runtime.
873         sysmonlock mutex
874
875         // timeToRun is a distribution of scheduling latencies, defined
876         // as the sum of time a G spends in the _Grunnable state before
877         // it transitions to _Grunning.
878         timeToRun timeHistogram
879
880         // idleTime is the total CPU time Ps have "spent" idle.
881         //
882         // Reset on each GC cycle.
883         idleTime atomic.Int64
884
885         // totalMutexWaitTime is the sum of time goroutines have spent in _Gwaiting
886         // with a waitreason of the form waitReasonSync{RW,}Mutex{R,}Lock.
887         totalMutexWaitTime atomic.Int64
888 }
889
890 // Values for the flags field of a sigTabT.
891 const (
892         _SigNotify   = 1 << iota // let signal.Notify have signal, even if from kernel
893         _SigKill                 // if signal.Notify doesn't take it, exit quietly
894         _SigThrow                // if signal.Notify doesn't take it, exit loudly
895         _SigPanic                // if the signal is from the kernel, panic
896         _SigDefault              // if the signal isn't explicitly requested, don't monitor it
897         _SigGoExit               // cause all runtime procs to exit (only used on Plan 9).
898         _SigSetStack             // Don't explicitly install handler, but add SA_ONSTACK to existing libc handler
899         _SigUnblock              // always unblock; see blockableSig
900         _SigIgn                  // _SIG_DFL action is to ignore the signal
901 )
902
903 // Layout of in-memory per-function information prepared by linker
904 // See https://golang.org/s/go12symtab.
905 // Keep in sync with linker (../cmd/link/internal/ld/pcln.go:/pclntab)
906 // and with package debug/gosym and with symtab.go in package runtime.
907 type _func struct {
908         sys.NotInHeap // Only in static data
909
910         entryOff uint32 // start pc, as offset from moduledata.text/pcHeader.textStart
911         nameOff  int32  // function name, as index into moduledata.funcnametab.
912
913         args        int32  // in/out args size
914         deferreturn uint32 // offset of start of a deferreturn call instruction from entry, if any.
915
916         pcsp      uint32
917         pcfile    uint32
918         pcln      uint32
919         npcdata   uint32
920         cuOffset  uint32     // runtime.cutab offset of this function's CU
921         startLine int32      // line number of start of function (func keyword/TEXT directive)
922         funcID    abi.FuncID // set for certain special runtime functions
923         flag      abi.FuncFlag
924         _         [1]byte // pad
925         nfuncdata uint8   // must be last, must end on a uint32-aligned boundary
926
927         // The end of the struct is followed immediately by two variable-length
928         // arrays that reference the pcdata and funcdata locations for this
929         // function.
930
931         // pcdata contains the offset into moduledata.pctab for the start of
932         // that index's table. e.g.,
933         // &moduledata.pctab[_func.pcdata[_PCDATA_UnsafePoint]] is the start of
934         // the unsafe point table.
935         //
936         // An offset of 0 indicates that there is no table.
937         //
938         // pcdata [npcdata]uint32
939
940         // funcdata contains the offset past moduledata.gofunc which contains a
941         // pointer to that index's funcdata. e.g.,
942         // *(moduledata.gofunc +  _func.funcdata[_FUNCDATA_ArgsPointerMaps]) is
943         // the argument pointer map.
944         //
945         // An offset of ^uint32(0) indicates that there is no entry.
946         //
947         // funcdata [nfuncdata]uint32
948 }
949
950 // Pseudo-Func that is returned for PCs that occur in inlined code.
951 // A *Func can be either a *_func or a *funcinl, and they are distinguished
952 // by the first uintptr.
953 //
954 // TODO(austin): Can we merge this with inlinedCall?
955 type funcinl struct {
956         ones      uint32  // set to ^0 to distinguish from _func
957         entry     uintptr // entry of the real (the "outermost") frame
958         name      string
959         file      string
960         line      int32
961         startLine int32
962 }
963
964 // layout of Itab known to compilers
965 // allocated in non-garbage-collected memory
966 // Needs to be in sync with
967 // ../cmd/compile/internal/reflectdata/reflect.go:/^func.WritePluginTable.
968 type itab struct {
969         inter *interfacetype
970         _type *_type
971         hash  uint32 // copy of _type.hash. Used for type switches.
972         _     [4]byte
973         fun   [1]uintptr // variable sized. fun[0]==0 means _type does not implement inter.
974 }
975
976 // Lock-free stack node.
977 // Also known to export_test.go.
978 type lfnode struct {
979         next    uint64
980         pushcnt uintptr
981 }
982
983 type forcegcstate struct {
984         lock mutex
985         g    *g
986         idle atomic.Bool
987 }
988
989 // extendRandom extends the random numbers in r[:n] to the whole slice r.
990 // Treats n<0 as n==0.
991 func extendRandom(r []byte, n int) {
992         if n < 0 {
993                 n = 0
994         }
995         for n < len(r) {
996                 // Extend random bits using hash function & time seed
997                 w := n
998                 if w > 16 {
999                         w = 16
1000                 }
1001                 h := memhash(unsafe.Pointer(&r[n-w]), uintptr(nanotime()), uintptr(w))
1002                 for i := 0; i < goarch.PtrSize && n < len(r); i++ {
1003                         r[n] = byte(h)
1004                         n++
1005                         h >>= 8
1006                 }
1007         }
1008 }
1009
1010 // A _defer holds an entry on the list of deferred calls.
1011 // If you add a field here, add code to clear it in deferProcStack.
1012 // This struct must match the code in cmd/compile/internal/ssagen/ssa.go:deferstruct
1013 // and cmd/compile/internal/ssagen/ssa.go:(*state).call.
1014 // Some defers will be allocated on the stack and some on the heap.
1015 // All defers are logically part of the stack, so write barriers to
1016 // initialize them are not required. All defers must be manually scanned,
1017 // and for heap defers, marked.
1018 type _defer struct {
1019         heap      bool
1020         rangefunc bool    // true for rangefunc list
1021         sp        uintptr // sp at time of defer
1022         pc        uintptr // pc at time of defer
1023         fn        func()  // can be nil for open-coded defers
1024         link      *_defer // next defer on G; can point to either heap or stack!
1025
1026         // If rangefunc is true, *head is the head of the atomic linked list
1027         // during a range-over-func execution.
1028         head *atomic.Pointer[_defer]
1029 }
1030
1031 // A _panic holds information about an active panic.
1032 //
1033 // A _panic value must only ever live on the stack.
1034 //
1035 // The argp and link fields are stack pointers, but don't need special
1036 // handling during stack growth: because they are pointer-typed and
1037 // _panic values only live on the stack, regular stack pointer
1038 // adjustment takes care of them.
1039 type _panic struct {
1040         argp unsafe.Pointer // pointer to arguments of deferred call run during panic; cannot move - known to liblink
1041         arg  any            // argument to panic
1042         link *_panic        // link to earlier panic
1043
1044         // startPC and startSP track where _panic.start was called.
1045         startPC uintptr
1046         startSP unsafe.Pointer
1047
1048         // The current stack frame that we're running deferred calls for.
1049         sp unsafe.Pointer
1050         lr uintptr
1051         fp unsafe.Pointer
1052
1053         // retpc stores the PC where the panic should jump back to, if the
1054         // function last returned by _panic.next() recovers the panic.
1055         retpc uintptr
1056
1057         // Extra state for handling open-coded defers.
1058         deferBitsPtr *uint8
1059         slotsPtr     unsafe.Pointer
1060
1061         recovered   bool // whether this panic has been recovered
1062         goexit      bool
1063         deferreturn bool
1064 }
1065
1066 // savedOpenDeferState tracks the extra state from _panic that's
1067 // necessary for deferreturn to pick up where gopanic left off,
1068 // without needing to unwind the stack.
1069 type savedOpenDeferState struct {
1070         retpc           uintptr
1071         deferBitsOffset uintptr
1072         slotsOffset     uintptr
1073 }
1074
1075 // ancestorInfo records details of where a goroutine was started.
1076 type ancestorInfo struct {
1077         pcs  []uintptr // pcs from the stack of this goroutine
1078         goid uint64    // goroutine id of this goroutine; original goroutine possibly dead
1079         gopc uintptr   // pc of go statement that created this goroutine
1080 }
1081
1082 // A waitReason explains why a goroutine has been stopped.
1083 // See gopark. Do not re-use waitReasons, add new ones.
1084 type waitReason uint8
1085
1086 const (
1087         waitReasonZero                  waitReason = iota // ""
1088         waitReasonGCAssistMarking                         // "GC assist marking"
1089         waitReasonIOWait                                  // "IO wait"
1090         waitReasonChanReceiveNilChan                      // "chan receive (nil chan)"
1091         waitReasonChanSendNilChan                         // "chan send (nil chan)"
1092         waitReasonDumpingHeap                             // "dumping heap"
1093         waitReasonGarbageCollection                       // "garbage collection"
1094         waitReasonGarbageCollectionScan                   // "garbage collection scan"
1095         waitReasonPanicWait                               // "panicwait"
1096         waitReasonSelect                                  // "select"
1097         waitReasonSelectNoCases                           // "select (no cases)"
1098         waitReasonGCAssistWait                            // "GC assist wait"
1099         waitReasonGCSweepWait                             // "GC sweep wait"
1100         waitReasonGCScavengeWait                          // "GC scavenge wait"
1101         waitReasonChanReceive                             // "chan receive"
1102         waitReasonChanSend                                // "chan send"
1103         waitReasonFinalizerWait                           // "finalizer wait"
1104         waitReasonForceGCIdle                             // "force gc (idle)"
1105         waitReasonSemacquire                              // "semacquire"
1106         waitReasonSleep                                   // "sleep"
1107         waitReasonSyncCondWait                            // "sync.Cond.Wait"
1108         waitReasonSyncMutexLock                           // "sync.Mutex.Lock"
1109         waitReasonSyncRWMutexRLock                        // "sync.RWMutex.RLock"
1110         waitReasonSyncRWMutexLock                         // "sync.RWMutex.Lock"
1111         waitReasonTraceReaderBlocked                      // "trace reader (blocked)"
1112         waitReasonWaitForGCCycle                          // "wait for GC cycle"
1113         waitReasonGCWorkerIdle                            // "GC worker (idle)"
1114         waitReasonGCWorkerActive                          // "GC worker (active)"
1115         waitReasonPreempted                               // "preempted"
1116         waitReasonDebugCall                               // "debug call"
1117         waitReasonGCMarkTermination                       // "GC mark termination"
1118         waitReasonStoppingTheWorld                        // "stopping the world"
1119         waitReasonFlushProcCaches                         // "flushing proc caches"
1120         waitReasonTraceGoroutineStatus                    // "trace goroutine status"
1121         waitReasonTraceProcStatus                         // "trace proc status"
1122 )
1123
1124 var waitReasonStrings = [...]string{
1125         waitReasonZero:                  "",
1126         waitReasonGCAssistMarking:       "GC assist marking",
1127         waitReasonIOWait:                "IO wait",
1128         waitReasonChanReceiveNilChan:    "chan receive (nil chan)",
1129         waitReasonChanSendNilChan:       "chan send (nil chan)",
1130         waitReasonDumpingHeap:           "dumping heap",
1131         waitReasonGarbageCollection:     "garbage collection",
1132         waitReasonGarbageCollectionScan: "garbage collection scan",
1133         waitReasonPanicWait:             "panicwait",
1134         waitReasonSelect:                "select",
1135         waitReasonSelectNoCases:         "select (no cases)",
1136         waitReasonGCAssistWait:          "GC assist wait",
1137         waitReasonGCSweepWait:           "GC sweep wait",
1138         waitReasonGCScavengeWait:        "GC scavenge wait",
1139         waitReasonChanReceive:           "chan receive",
1140         waitReasonChanSend:              "chan send",
1141         waitReasonFinalizerWait:         "finalizer wait",
1142         waitReasonForceGCIdle:           "force gc (idle)",
1143         waitReasonSemacquire:            "semacquire",
1144         waitReasonSleep:                 "sleep",
1145         waitReasonSyncCondWait:          "sync.Cond.Wait",
1146         waitReasonSyncMutexLock:         "sync.Mutex.Lock",
1147         waitReasonSyncRWMutexRLock:      "sync.RWMutex.RLock",
1148         waitReasonSyncRWMutexLock:       "sync.RWMutex.Lock",
1149         waitReasonTraceReaderBlocked:    "trace reader (blocked)",
1150         waitReasonWaitForGCCycle:        "wait for GC cycle",
1151         waitReasonGCWorkerIdle:          "GC worker (idle)",
1152         waitReasonGCWorkerActive:        "GC worker (active)",
1153         waitReasonPreempted:             "preempted",
1154         waitReasonDebugCall:             "debug call",
1155         waitReasonGCMarkTermination:     "GC mark termination",
1156         waitReasonStoppingTheWorld:      "stopping the world",
1157         waitReasonFlushProcCaches:       "flushing proc caches",
1158         waitReasonTraceGoroutineStatus:  "trace goroutine status",
1159         waitReasonTraceProcStatus:       "trace proc status",
1160 }
1161
1162 func (w waitReason) String() string {
1163         if w < 0 || w >= waitReason(len(waitReasonStrings)) {
1164                 return "unknown wait reason"
1165         }
1166         return waitReasonStrings[w]
1167 }
1168
1169 func (w waitReason) isMutexWait() bool {
1170         return w == waitReasonSyncMutexLock ||
1171                 w == waitReasonSyncRWMutexRLock ||
1172                 w == waitReasonSyncRWMutexLock
1173 }
1174
1175 var (
1176         allm       *m
1177         gomaxprocs int32
1178         ncpu       int32
1179         forcegc    forcegcstate
1180         sched      schedt
1181         newprocs   int32
1182
1183         // allpLock protects P-less reads and size changes of allp, idlepMask,
1184         // and timerpMask, and all writes to allp.
1185         allpLock mutex
1186         // len(allp) == gomaxprocs; may change at safe points, otherwise
1187         // immutable.
1188         allp []*p
1189         // Bitmask of Ps in _Pidle list, one bit per P. Reads and writes must
1190         // be atomic. Length may change at safe points.
1191         //
1192         // Each P must update only its own bit. In order to maintain
1193         // consistency, a P going idle must the idle mask simultaneously with
1194         // updates to the idle P list under the sched.lock, otherwise a racing
1195         // pidleget may clear the mask before pidleput sets the mask,
1196         // corrupting the bitmap.
1197         //
1198         // N.B., procresize takes ownership of all Ps in stopTheWorldWithSema.
1199         idlepMask pMask
1200         // Bitmask of Ps that may have a timer, one bit per P. Reads and writes
1201         // must be atomic. Length may change at safe points.
1202         timerpMask pMask
1203
1204         // Pool of GC parked background workers. Entries are type
1205         // *gcBgMarkWorkerNode.
1206         gcBgMarkWorkerPool lfstack
1207
1208         // Total number of gcBgMarkWorker goroutines. Protected by worldsema.
1209         gcBgMarkWorkerCount int32
1210
1211         // Information about what cpu features are available.
1212         // Packages outside the runtime should not use these
1213         // as they are not an external api.
1214         // Set on startup in asm_{386,amd64}.s
1215         processorVersionInfo uint32
1216         isIntel              bool
1217
1218         goarm uint8 // set by cmd/link on arm systems
1219 )
1220
1221 // Set by the linker so the runtime can determine the buildmode.
1222 var (
1223         islibrary bool // -buildmode=c-shared
1224         isarchive bool // -buildmode=c-archive
1225 )
1226
1227 // Must agree with internal/buildcfg.FramePointerEnabled.
1228 const framepointer_enabled = GOARCH == "amd64" || GOARCH == "arm64"