Source file
src/runtime/mgcmark.go
1
2
3
4
5
6
7 package runtime
8
9 import (
10 "internal/goarch"
11 "internal/goexperiment"
12 "runtime/internal/atomic"
13 "runtime/internal/sys"
14 "unsafe"
15 )
16
17 const (
18 fixedRootFinalizers = iota
19 fixedRootFreeGStacks
20 fixedRootCount
21
22
23
24 rootBlockBytes = 256 << 10
25
26
27
28
29
30
31
32
33 maxObletBytes = 128 << 10
34
35
36
37
38
39
40
41 drainCheckThreshold = 100000
42
43
44
45
46
47
48
49
50
51 pagesPerSpanRoot = 512
52 )
53
54
55
56
57
58 func gcMarkRootPrepare() {
59 assertWorldStopped()
60
61
62 nBlocks := func(bytes uintptr) int {
63 return int(divRoundUp(bytes, rootBlockBytes))
64 }
65
66 work.nDataRoots = 0
67 work.nBSSRoots = 0
68
69
70 for _, datap := range activeModules() {
71 nDataRoots := nBlocks(datap.edata - datap.data)
72 if nDataRoots > work.nDataRoots {
73 work.nDataRoots = nDataRoots
74 }
75 }
76
77 for _, datap := range activeModules() {
78 nBSSRoots := nBlocks(datap.ebss - datap.bss)
79 if nBSSRoots > work.nBSSRoots {
80 work.nBSSRoots = nBSSRoots
81 }
82 }
83
84
85
86
87
88
89
90
91
92
93
94
95
96 mheap_.markArenas = mheap_.allArenas[:len(mheap_.allArenas):len(mheap_.allArenas)]
97 work.nSpanRoots = len(mheap_.markArenas) * (pagesPerArena / pagesPerSpanRoot)
98
99
100
101
102
103
104
105 work.stackRoots = allGsSnapshot()
106 work.nStackRoots = len(work.stackRoots)
107
108 work.markrootNext = 0
109 work.markrootJobs = uint32(fixedRootCount + work.nDataRoots + work.nBSSRoots + work.nSpanRoots + work.nStackRoots)
110
111
112 work.baseData = uint32(fixedRootCount)
113 work.baseBSS = work.baseData + uint32(work.nDataRoots)
114 work.baseSpans = work.baseBSS + uint32(work.nBSSRoots)
115 work.baseStacks = work.baseSpans + uint32(work.nSpanRoots)
116 work.baseEnd = work.baseStacks + uint32(work.nStackRoots)
117 }
118
119
120
121 func gcMarkRootCheck() {
122 if work.markrootNext < work.markrootJobs {
123 print(work.markrootNext, " of ", work.markrootJobs, " markroot jobs done\n")
124 throw("left over markroot jobs")
125 }
126
127
128
129
130
131
132 i := 0
133 forEachGRace(func(gp *g) {
134 if i >= work.nStackRoots {
135 return
136 }
137
138 if !gp.gcscandone {
139 println("gp", gp, "goid", gp.goid,
140 "status", readgstatus(gp),
141 "gcscandone", gp.gcscandone)
142 throw("scan missed a g")
143 }
144
145 i++
146 })
147 }
148
149
150 var oneptrmask = [...]uint8{1}
151
152
153
154
155
156
157
158
159
160
161
162
163 func markroot(gcw *gcWork, i uint32, flushBgCredit bool) int64 {
164
165 var workDone int64
166 var workCounter *atomic.Int64
167 switch {
168 case work.baseData <= i && i < work.baseBSS:
169 workCounter = &gcController.globalsScanWork
170 for _, datap := range activeModules() {
171 workDone += markrootBlock(datap.data, datap.edata-datap.data, datap.gcdatamask.bytedata, gcw, int(i-work.baseData))
172 }
173
174 case work.baseBSS <= i && i < work.baseSpans:
175 workCounter = &gcController.globalsScanWork
176 for _, datap := range activeModules() {
177 workDone += markrootBlock(datap.bss, datap.ebss-datap.bss, datap.gcbssmask.bytedata, gcw, int(i-work.baseBSS))
178 }
179
180 case i == fixedRootFinalizers:
181 for fb := allfin; fb != nil; fb = fb.alllink {
182 cnt := uintptr(atomic.Load(&fb.cnt))
183 scanblock(uintptr(unsafe.Pointer(&fb.fin[0])), cnt*unsafe.Sizeof(fb.fin[0]), &finptrmask[0], gcw, nil)
184 }
185
186 case i == fixedRootFreeGStacks:
187
188
189 systemstack(markrootFreeGStacks)
190
191 case work.baseSpans <= i && i < work.baseStacks:
192
193 markrootSpans(gcw, int(i-work.baseSpans))
194
195 default:
196
197 workCounter = &gcController.stackScanWork
198 if i < work.baseStacks || work.baseEnd <= i {
199 printlock()
200 print("runtime: markroot index ", i, " not in stack roots range [", work.baseStacks, ", ", work.baseEnd, ")\n")
201 throw("markroot: bad index")
202 }
203 gp := work.stackRoots[i-work.baseStacks]
204
205
206
207 status := readgstatus(gp)
208 if (status == _Gwaiting || status == _Gsyscall) && gp.waitsince == 0 {
209 gp.waitsince = work.tstart
210 }
211
212
213
214 systemstack(func() {
215
216
217
218
219 userG := getg().m.curg
220 selfScan := gp == userG && readgstatus(userG) == _Grunning
221 if selfScan {
222 casgstatus(userG, _Grunning, _Gwaiting)
223 userG.waitreason = waitReasonGarbageCollectionScan
224 }
225
226
227
228
229
230
231
232
233 stopped := suspendG(gp)
234 if stopped.dead {
235 gp.gcscandone = true
236 return
237 }
238 if gp.gcscandone {
239 throw("g already scanned")
240 }
241 workDone += scanstack(gp, gcw)
242 gp.gcscandone = true
243 resumeG(stopped)
244
245 if selfScan {
246 casgstatus(userG, _Gwaiting, _Grunning)
247 }
248 })
249 }
250 if goexperiment.PacerRedesign {
251 if workCounter != nil && workDone != 0 {
252 workCounter.Add(workDone)
253 if flushBgCredit {
254 gcFlushBgCredit(workDone)
255 }
256 }
257 }
258 return workDone
259 }
260
261
262
263
264
265
266
267 func markrootBlock(b0, n0 uintptr, ptrmask0 *uint8, gcw *gcWork, shard int) int64 {
268 if rootBlockBytes%(8*goarch.PtrSize) != 0 {
269
270 throw("rootBlockBytes must be a multiple of 8*ptrSize")
271 }
272
273
274
275
276 off := uintptr(shard) * rootBlockBytes
277 if off >= n0 {
278 return 0
279 }
280 b := b0 + off
281 ptrmask := (*uint8)(add(unsafe.Pointer(ptrmask0), uintptr(shard)*(rootBlockBytes/(8*goarch.PtrSize))))
282 n := uintptr(rootBlockBytes)
283 if off+n > n0 {
284 n = n0 - off
285 }
286
287
288 scanblock(b, n, ptrmask, gcw, nil)
289 return int64(n)
290 }
291
292
293
294
295
296 func markrootFreeGStacks() {
297
298 lock(&sched.gFree.lock)
299 list := sched.gFree.stack
300 sched.gFree.stack = gList{}
301 unlock(&sched.gFree.lock)
302 if list.empty() {
303 return
304 }
305
306
307 q := gQueue{list.head, list.head}
308 for gp := list.head.ptr(); gp != nil; gp = gp.schedlink.ptr() {
309 stackfree(gp.stack)
310 gp.stack.lo = 0
311 gp.stack.hi = 0
312
313
314 q.tail.set(gp)
315 }
316
317
318 lock(&sched.gFree.lock)
319 sched.gFree.noStack.pushAll(q)
320 unlock(&sched.gFree.lock)
321 }
322
323
324
325
326 func markrootSpans(gcw *gcWork, shard int) {
327
328
329
330
331
332
333
334
335
336 sg := mheap_.sweepgen
337
338
339 ai := mheap_.markArenas[shard/(pagesPerArena/pagesPerSpanRoot)]
340 ha := mheap_.arenas[ai.l1()][ai.l2()]
341 arenaPage := uint(uintptr(shard) * pagesPerSpanRoot % pagesPerArena)
342
343
344 specialsbits := ha.pageSpecials[arenaPage/8:]
345 specialsbits = specialsbits[:pagesPerSpanRoot/8]
346 for i := range specialsbits {
347
348 specials := atomic.Load8(&specialsbits[i])
349 if specials == 0 {
350 continue
351 }
352 for j := uint(0); j < 8; j++ {
353 if specials&(1<<j) == 0 {
354 continue
355 }
356
357
358
359
360
361
362 s := ha.spans[arenaPage+uint(i)*8+j]
363
364
365
366 if state := s.state.get(); state != mSpanInUse {
367 print("s.state = ", state, "\n")
368 throw("non in-use span found with specials bit set")
369 }
370
371 if !useCheckmark && !(s.sweepgen == sg || s.sweepgen == sg+3) {
372
373 print("sweep ", s.sweepgen, " ", sg, "\n")
374 throw("gc: unswept span")
375 }
376
377
378
379 lock(&s.speciallock)
380 for sp := s.specials; sp != nil; sp = sp.next {
381 if sp.kind != _KindSpecialFinalizer {
382 continue
383 }
384
385
386 spf := (*specialfinalizer)(unsafe.Pointer(sp))
387
388 p := s.base() + uintptr(spf.special.offset)/s.elemsize*s.elemsize
389
390
391
392
393 scanobject(p, gcw)
394
395
396 scanblock(uintptr(unsafe.Pointer(&spf.fn)), goarch.PtrSize, &oneptrmask[0], gcw, nil)
397 }
398 unlock(&s.speciallock)
399 }
400 }
401 }
402
403
404
405
406
407 func gcAssistAlloc(gp *g) {
408
409
410 if getg() == gp.m.g0 {
411 return
412 }
413 if mp := getg().m; mp.locks > 0 || mp.preemptoff != "" {
414 return
415 }
416
417 traced := false
418 retry:
419
420
421
422
423 assistWorkPerByte := gcController.assistWorkPerByte.Load()
424 assistBytesPerWork := gcController.assistBytesPerWork.Load()
425 debtBytes := -gp.gcAssistBytes
426 scanWork := int64(assistWorkPerByte * float64(debtBytes))
427 if scanWork < gcOverAssistWork {
428 scanWork = gcOverAssistWork
429 debtBytes = int64(assistBytesPerWork * float64(scanWork))
430 }
431
432
433
434
435
436
437
438 bgScanCredit := atomic.Loadint64(&gcController.bgScanCredit)
439 stolen := int64(0)
440 if bgScanCredit > 0 {
441 if bgScanCredit < scanWork {
442 stolen = bgScanCredit
443 gp.gcAssistBytes += 1 + int64(assistBytesPerWork*float64(stolen))
444 } else {
445 stolen = scanWork
446 gp.gcAssistBytes += debtBytes
447 }
448 atomic.Xaddint64(&gcController.bgScanCredit, -stolen)
449
450 scanWork -= stolen
451
452 if scanWork == 0 {
453
454
455 if traced {
456 traceGCMarkAssistDone()
457 }
458 return
459 }
460 }
461
462 if trace.enabled && !traced {
463 traced = true
464 traceGCMarkAssistStart()
465 }
466
467
468 systemstack(func() {
469 gcAssistAlloc1(gp, scanWork)
470
471
472 })
473
474 completed := gp.param != nil
475 gp.param = nil
476 if completed {
477 gcMarkDone()
478 }
479
480 if gp.gcAssistBytes < 0 {
481
482
483
484
485
486
487
488 if gp.preempt {
489 Gosched()
490 goto retry
491 }
492
493
494
495
496
497
498
499
500
501
502 if !gcParkAssist() {
503 goto retry
504 }
505
506
507
508 }
509 if traced {
510 traceGCMarkAssistDone()
511 }
512 }
513
514
515
516
517
518
519
520
521
522
523
524 func gcAssistAlloc1(gp *g, scanWork int64) {
525
526
527 gp.param = nil
528
529 if atomic.Load(&gcBlackenEnabled) == 0 {
530
531
532
533
534
535
536
537 gp.gcAssistBytes = 0
538 return
539 }
540
541
542
543 startTime := nanotime()
544
545 decnwait := atomic.Xadd(&work.nwait, -1)
546 if decnwait == work.nproc {
547 println("runtime: work.nwait =", decnwait, "work.nproc=", work.nproc)
548 throw("nwait > work.nprocs")
549 }
550
551
552 casgstatus(gp, _Grunning, _Gwaiting)
553 gp.waitreason = waitReasonGCAssistMarking
554
555
556
557 gcw := &getg().m.p.ptr().gcw
558 workDone := gcDrainN(gcw, scanWork)
559
560 casgstatus(gp, _Gwaiting, _Grunning)
561
562
563
564
565
566
567
568 assistBytesPerWork := gcController.assistBytesPerWork.Load()
569 gp.gcAssistBytes += 1 + int64(assistBytesPerWork*float64(workDone))
570
571
572
573 incnwait := atomic.Xadd(&work.nwait, +1)
574 if incnwait > work.nproc {
575 println("runtime: work.nwait=", incnwait,
576 "work.nproc=", work.nproc)
577 throw("work.nwait > work.nproc")
578 }
579
580 if incnwait == work.nproc && !gcMarkWorkAvailable(nil) {
581
582
583
584
585 gp.param = unsafe.Pointer(gp)
586 }
587 duration := nanotime() - startTime
588 _p_ := gp.m.p.ptr()
589 _p_.gcAssistTime += duration
590 if _p_.gcAssistTime > gcAssistTimeSlack {
591 atomic.Xaddint64(&gcController.assistTime, _p_.gcAssistTime)
592 _p_.gcAssistTime = 0
593 }
594 }
595
596
597
598
599 func gcWakeAllAssists() {
600 lock(&work.assistQueue.lock)
601 list := work.assistQueue.q.popList()
602 injectglist(&list)
603 unlock(&work.assistQueue.lock)
604 }
605
606
607
608
609
610 func gcParkAssist() bool {
611 lock(&work.assistQueue.lock)
612
613
614
615 if atomic.Load(&gcBlackenEnabled) == 0 {
616 unlock(&work.assistQueue.lock)
617 return true
618 }
619
620 gp := getg()
621 oldList := work.assistQueue.q
622 work.assistQueue.q.pushBack(gp)
623
624
625
626
627
628 if atomic.Loadint64(&gcController.bgScanCredit) > 0 {
629 work.assistQueue.q = oldList
630 if oldList.tail != 0 {
631 oldList.tail.ptr().schedlink.set(nil)
632 }
633 unlock(&work.assistQueue.lock)
634 return false
635 }
636
637 goparkunlock(&work.assistQueue.lock, waitReasonGCAssistWait, traceEvGoBlockGC, 2)
638 return true
639 }
640
641
642
643
644
645
646
647
648
649
650
651 func gcFlushBgCredit(scanWork int64) {
652 if work.assistQueue.q.empty() {
653
654
655
656
657 atomic.Xaddint64(&gcController.bgScanCredit, scanWork)
658 return
659 }
660
661 assistBytesPerWork := gcController.assistBytesPerWork.Load()
662 scanBytes := int64(float64(scanWork) * assistBytesPerWork)
663
664 lock(&work.assistQueue.lock)
665 for !work.assistQueue.q.empty() && scanBytes > 0 {
666 gp := work.assistQueue.q.pop()
667
668
669 if scanBytes+gp.gcAssistBytes >= 0 {
670
671 scanBytes += gp.gcAssistBytes
672 gp.gcAssistBytes = 0
673
674
675
676
677
678
679 ready(gp, 0, false)
680 } else {
681
682 gp.gcAssistBytes += scanBytes
683 scanBytes = 0
684
685
686
687
688 work.assistQueue.q.pushBack(gp)
689 break
690 }
691 }
692
693 if scanBytes > 0 {
694
695 assistWorkPerByte := gcController.assistWorkPerByte.Load()
696 scanWork = int64(float64(scanBytes) * assistWorkPerByte)
697 atomic.Xaddint64(&gcController.bgScanCredit, scanWork)
698 }
699 unlock(&work.assistQueue.lock)
700 }
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720 func scanstack(gp *g, gcw *gcWork) int64 {
721 if readgstatus(gp)&_Gscan == 0 {
722 print("runtime:scanstack: gp=", gp, ", goid=", gp.goid, ", gp->atomicstatus=", hex(readgstatus(gp)), "\n")
723 throw("scanstack - bad status")
724 }
725
726 switch readgstatus(gp) &^ _Gscan {
727 default:
728 print("runtime: gp=", gp, ", goid=", gp.goid, ", gp->atomicstatus=", readgstatus(gp), "\n")
729 throw("mark - bad status")
730 case _Gdead:
731 return 0
732 case _Grunning:
733 print("runtime: gp=", gp, ", goid=", gp.goid, ", gp->atomicstatus=", readgstatus(gp), "\n")
734 throw("scanstack: goroutine not stopped")
735 case _Grunnable, _Gsyscall, _Gwaiting:
736
737 }
738
739 if gp == getg() {
740 throw("can't scan our own stack")
741 }
742
743
744
745
746
747
748
749
750 stackSize := gp.stack.hi - gp.stack.lo
751
752 if isShrinkStackSafe(gp) {
753
754 shrinkstack(gp)
755 } else {
756
757 gp.preemptShrink = true
758 }
759
760 var state stackScanState
761 state.stack = gp.stack
762
763 if stackTraceDebug {
764 println("stack trace goroutine", gp.goid)
765 }
766
767 if debugScanConservative && gp.asyncSafePoint {
768 print("scanning async preempted goroutine ", gp.goid, " stack [", hex(gp.stack.lo), ",", hex(gp.stack.hi), ")\n")
769 }
770
771
772
773
774 if gp.sched.ctxt != nil {
775 scanblock(uintptr(unsafe.Pointer(&gp.sched.ctxt)), goarch.PtrSize, &oneptrmask[0], gcw, &state)
776 }
777
778
779 scanframe := func(frame *stkframe, unused unsafe.Pointer) bool {
780 scanframeworker(frame, &state, gcw)
781 return true
782 }
783 gentraceback(^uintptr(0), ^uintptr(0), 0, gp, 0, nil, 0x7fffffff, scanframe, nil, 0)
784
785
786
787
788
789 for d := gp._defer; d != nil; d = d.link {
790 if d.fn != nil {
791
792
793 scanblock(uintptr(unsafe.Pointer(&d.fn)), goarch.PtrSize, &oneptrmask[0], gcw, &state)
794 }
795 if d.link != nil {
796
797
798 scanblock(uintptr(unsafe.Pointer(&d.link)), goarch.PtrSize, &oneptrmask[0], gcw, &state)
799 }
800
801
802
803 if d.heap {
804 scanblock(uintptr(unsafe.Pointer(&d)), goarch.PtrSize, &oneptrmask[0], gcw, &state)
805 }
806 }
807 if gp._panic != nil {
808
809 state.putPtr(uintptr(unsafe.Pointer(gp._panic)), false)
810 }
811
812
813
814
815
816
817 state.buildIndex()
818 for {
819 p, conservative := state.getPtr()
820 if p == 0 {
821 break
822 }
823 obj := state.findObject(p)
824 if obj == nil {
825 continue
826 }
827 r := obj.r
828 if r == nil {
829
830 continue
831 }
832 obj.setRecord(nil)
833 if stackTraceDebug {
834 printlock()
835 print(" live stkobj at", hex(state.stack.lo+uintptr(obj.off)), "of size", obj.size)
836 if conservative {
837 print(" (conservative)")
838 }
839 println()
840 printunlock()
841 }
842 gcdata := r.gcdata()
843 var s *mspan
844 if r.useGCProg() {
845
846
847
848
849
850
851
852
853
854 s = materializeGCProg(r.ptrdata(), gcdata)
855 gcdata = (*byte)(unsafe.Pointer(s.startAddr))
856 }
857
858 b := state.stack.lo + uintptr(obj.off)
859 if conservative {
860 scanConservative(b, r.ptrdata(), gcdata, gcw, &state)
861 } else {
862 scanblock(b, r.ptrdata(), gcdata, gcw, &state)
863 }
864
865 if s != nil {
866 dematerializeGCProg(s)
867 }
868 }
869
870
871
872 for state.head != nil {
873 x := state.head
874 state.head = x.next
875 if stackTraceDebug {
876 for i := 0; i < x.nobj; i++ {
877 obj := &x.obj[i]
878 if obj.r == nil {
879 continue
880 }
881 println(" dead stkobj at", hex(gp.stack.lo+uintptr(obj.off)), "of size", obj.r.size)
882
883 }
884 }
885 x.nobj = 0
886 putempty((*workbuf)(unsafe.Pointer(x)))
887 }
888 if state.buf != nil || state.cbuf != nil || state.freeBuf != nil {
889 throw("remaining pointer buffers")
890 }
891 return int64(stackSize)
892 }
893
894
895
896 func scanframeworker(frame *stkframe, state *stackScanState, gcw *gcWork) {
897 if _DebugGC > 1 && frame.continpc != 0 {
898 print("scanframe ", funcname(frame.fn), "\n")
899 }
900
901 isAsyncPreempt := frame.fn.valid() && frame.fn.funcID == funcID_asyncPreempt
902 isDebugCall := frame.fn.valid() && frame.fn.funcID == funcID_debugCallV2
903 if state.conservative || isAsyncPreempt || isDebugCall {
904 if debugScanConservative {
905 println("conservatively scanning function", funcname(frame.fn), "at PC", hex(frame.continpc))
906 }
907
908
909
910
911
912
913
914
915
916 if frame.varp != 0 {
917 size := frame.varp - frame.sp
918 if size > 0 {
919 scanConservative(frame.sp, size, nil, gcw, state)
920 }
921 }
922
923
924 if frame.arglen != 0 {
925
926
927 scanConservative(frame.argp, frame.arglen, nil, gcw, state)
928 }
929
930 if isAsyncPreempt || isDebugCall {
931
932
933
934
935 state.conservative = true
936 } else {
937
938
939
940 state.conservative = false
941 }
942 return
943 }
944
945 locals, args, objs := getStackMap(frame, &state.cache, false)
946
947
948 if locals.n > 0 {
949 size := uintptr(locals.n) * goarch.PtrSize
950 scanblock(frame.varp-size, size, locals.bytedata, gcw, state)
951 }
952
953
954 if args.n > 0 {
955 scanblock(frame.argp, uintptr(args.n)*goarch.PtrSize, args.bytedata, gcw, state)
956 }
957
958
959 if frame.varp != 0 {
960
961
962
963 for i := range objs {
964 obj := &objs[i]
965 off := obj.off
966 base := frame.varp
967 if off >= 0 {
968 base = frame.argp
969 }
970 ptr := base + uintptr(off)
971 if ptr < frame.sp {
972
973 continue
974 }
975 if stackTraceDebug {
976 println("stkobj at", hex(ptr), "of size", obj.size)
977 }
978 state.addObject(ptr, obj)
979 }
980 }
981 }
982
983 type gcDrainFlags int
984
985 const (
986 gcDrainUntilPreempt gcDrainFlags = 1 << iota
987 gcDrainFlushBgCredit
988 gcDrainIdle
989 gcDrainFractional
990 )
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014 func gcDrain(gcw *gcWork, flags gcDrainFlags) {
1015 if !writeBarrier.needed {
1016 throw("gcDrain phase incorrect")
1017 }
1018
1019 gp := getg().m.curg
1020 preemptible := flags&gcDrainUntilPreempt != 0
1021 flushBgCredit := flags&gcDrainFlushBgCredit != 0
1022 idle := flags&gcDrainIdle != 0
1023
1024 initScanWork := gcw.heapScanWork
1025
1026
1027
1028 checkWork := int64(1<<63 - 1)
1029 var check func() bool
1030 if flags&(gcDrainIdle|gcDrainFractional) != 0 {
1031 checkWork = initScanWork + drainCheckThreshold
1032 if idle {
1033 check = pollWork
1034 } else if flags&gcDrainFractional != 0 {
1035 check = pollFractionalWorkerExit
1036 }
1037 }
1038
1039
1040 if work.markrootNext < work.markrootJobs {
1041
1042 for !(gp.preempt && (preemptible || atomic.Load(&sched.gcwaiting) != 0)) {
1043 job := atomic.Xadd(&work.markrootNext, +1) - 1
1044 if job >= work.markrootJobs {
1045 break
1046 }
1047 markroot(gcw, job, flushBgCredit)
1048 if check != nil && check() {
1049 goto done
1050 }
1051 }
1052 }
1053
1054
1055
1056 for !(gp.preempt && (preemptible || atomic.Load(&sched.gcwaiting) != 0)) {
1057
1058
1059
1060
1061
1062 if work.full == 0 {
1063 gcw.balance()
1064 }
1065
1066 b := gcw.tryGetFast()
1067 if b == 0 {
1068 b = gcw.tryGet()
1069 if b == 0 {
1070
1071
1072
1073 wbBufFlush(nil, 0)
1074 b = gcw.tryGet()
1075 }
1076 }
1077 if b == 0 {
1078
1079 break
1080 }
1081 scanobject(b, gcw)
1082
1083
1084
1085
1086 if gcw.heapScanWork >= gcCreditSlack {
1087 gcController.heapScanWork.Add(gcw.heapScanWork)
1088 if flushBgCredit {
1089 gcFlushBgCredit(gcw.heapScanWork - initScanWork)
1090 initScanWork = 0
1091 }
1092 checkWork -= gcw.heapScanWork
1093 gcw.heapScanWork = 0
1094
1095 if checkWork <= 0 {
1096 checkWork += drainCheckThreshold
1097 if check != nil && check() {
1098 break
1099 }
1100 }
1101 }
1102 }
1103
1104 done:
1105
1106 if gcw.heapScanWork > 0 {
1107 gcController.heapScanWork.Add(gcw.heapScanWork)
1108 if flushBgCredit {
1109 gcFlushBgCredit(gcw.heapScanWork - initScanWork)
1110 }
1111 gcw.heapScanWork = 0
1112 }
1113 }
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128 func gcDrainN(gcw *gcWork, scanWork int64) int64 {
1129 if !writeBarrier.needed {
1130 throw("gcDrainN phase incorrect")
1131 }
1132
1133
1134
1135 workFlushed := -gcw.heapScanWork
1136
1137 gp := getg().m.curg
1138 for !gp.preempt && workFlushed+gcw.heapScanWork < scanWork {
1139
1140 if work.full == 0 {
1141 gcw.balance()
1142 }
1143
1144 b := gcw.tryGetFast()
1145 if b == 0 {
1146 b = gcw.tryGet()
1147 if b == 0 {
1148
1149
1150 wbBufFlush(nil, 0)
1151 b = gcw.tryGet()
1152 }
1153 }
1154
1155 if b == 0 {
1156
1157 if work.markrootNext < work.markrootJobs {
1158 job := atomic.Xadd(&work.markrootNext, +1) - 1
1159 if job < work.markrootJobs {
1160 work := markroot(gcw, job, false)
1161 if goexperiment.PacerRedesign {
1162 workFlushed += work
1163 }
1164 continue
1165 }
1166 }
1167
1168 break
1169 }
1170
1171 scanobject(b, gcw)
1172
1173
1174 if gcw.heapScanWork >= gcCreditSlack {
1175 gcController.heapScanWork.Add(gcw.heapScanWork)
1176 workFlushed += gcw.heapScanWork
1177 gcw.heapScanWork = 0
1178 }
1179 }
1180
1181
1182
1183
1184
1185 return workFlushed + gcw.heapScanWork
1186 }
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196 func scanblock(b0, n0 uintptr, ptrmask *uint8, gcw *gcWork, stk *stackScanState) {
1197
1198
1199
1200 b := b0
1201 n := n0
1202
1203 for i := uintptr(0); i < n; {
1204
1205 bits := uint32(*addb(ptrmask, i/(goarch.PtrSize*8)))
1206 if bits == 0 {
1207 i += goarch.PtrSize * 8
1208 continue
1209 }
1210 for j := 0; j < 8 && i < n; j++ {
1211 if bits&1 != 0 {
1212
1213 p := *(*uintptr)(unsafe.Pointer(b + i))
1214 if p != 0 {
1215 if obj, span, objIndex := findObject(p, b, i); obj != 0 {
1216 greyobject(obj, b, i, span, gcw, objIndex)
1217 } else if stk != nil && p >= stk.stack.lo && p < stk.stack.hi {
1218 stk.putPtr(p, false)
1219 }
1220 }
1221 }
1222 bits >>= 1
1223 i += goarch.PtrSize
1224 }
1225 }
1226 }
1227
1228
1229
1230
1231
1232
1233
1234 func scanobject(b uintptr, gcw *gcWork) {
1235
1236
1237
1238
1239 sys.Prefetch(b)
1240
1241
1242
1243
1244
1245
1246 hbits := heapBitsForAddr(b)
1247 s := spanOfUnchecked(b)
1248 n := s.elemsize
1249 if n == 0 {
1250 throw("scanobject n == 0")
1251 }
1252
1253 if n > maxObletBytes {
1254
1255
1256 if b == s.base() {
1257
1258
1259
1260
1261
1262 if s.spanclass.noscan() {
1263
1264 gcw.bytesMarked += uint64(n)
1265 return
1266 }
1267
1268
1269
1270
1271
1272
1273 for oblet := b + maxObletBytes; oblet < s.base()+s.elemsize; oblet += maxObletBytes {
1274 if !gcw.putFast(oblet) {
1275 gcw.put(oblet)
1276 }
1277 }
1278 }
1279
1280
1281
1282
1283 n = s.base() + s.elemsize - b
1284 if n > maxObletBytes {
1285 n = maxObletBytes
1286 }
1287 }
1288
1289 var i uintptr
1290 for i = 0; i < n; i, hbits = i+goarch.PtrSize, hbits.next() {
1291
1292 bits := hbits.bits()
1293 if bits&bitScan == 0 {
1294 break
1295 }
1296 if bits&bitPointer == 0 {
1297 continue
1298 }
1299
1300
1301
1302 obj := *(*uintptr)(unsafe.Pointer(b + i))
1303
1304
1305
1306 if obj != 0 && obj-b >= n {
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316 if obj, span, objIndex := findObject(obj, b, i); obj != 0 {
1317 greyobject(obj, b, i, span, gcw, objIndex)
1318 }
1319 }
1320 }
1321 gcw.bytesMarked += uint64(n)
1322 gcw.heapScanWork += int64(i)
1323 }
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333 func scanConservative(b, n uintptr, ptrmask *uint8, gcw *gcWork, state *stackScanState) {
1334 if debugScanConservative {
1335 printlock()
1336 print("conservatively scanning [", hex(b), ",", hex(b+n), ")\n")
1337 hexdumpWords(b, b+n, func(p uintptr) byte {
1338 if ptrmask != nil {
1339 word := (p - b) / goarch.PtrSize
1340 bits := *addb(ptrmask, word/8)
1341 if (bits>>(word%8))&1 == 0 {
1342 return '$'
1343 }
1344 }
1345
1346 val := *(*uintptr)(unsafe.Pointer(p))
1347 if state != nil && state.stack.lo <= val && val < state.stack.hi {
1348 return '@'
1349 }
1350
1351 span := spanOfHeap(val)
1352 if span == nil {
1353 return ' '
1354 }
1355 idx := span.objIndex(val)
1356 if span.isFree(idx) {
1357 return ' '
1358 }
1359 return '*'
1360 })
1361 printunlock()
1362 }
1363
1364 for i := uintptr(0); i < n; i += goarch.PtrSize {
1365 if ptrmask != nil {
1366 word := i / goarch.PtrSize
1367 bits := *addb(ptrmask, word/8)
1368 if bits == 0 {
1369
1370
1371
1372
1373
1374
1375 if i%(goarch.PtrSize*8) != 0 {
1376 throw("misaligned mask")
1377 }
1378 i += goarch.PtrSize*8 - goarch.PtrSize
1379 continue
1380 }
1381 if (bits>>(word%8))&1 == 0 {
1382 continue
1383 }
1384 }
1385
1386 val := *(*uintptr)(unsafe.Pointer(b + i))
1387
1388
1389 if state != nil && state.stack.lo <= val && val < state.stack.hi {
1390
1391
1392
1393
1394
1395
1396
1397
1398 state.putPtr(val, true)
1399 continue
1400 }
1401
1402
1403 span := spanOfHeap(val)
1404 if span == nil {
1405 continue
1406 }
1407
1408
1409 idx := span.objIndex(val)
1410 if span.isFree(idx) {
1411 continue
1412 }
1413
1414
1415 obj := span.base() + idx*span.elemsize
1416 greyobject(obj, b, i, span, gcw, idx)
1417 }
1418 }
1419
1420
1421
1422
1423
1424 func shade(b uintptr) {
1425 if obj, span, objIndex := findObject(b, 0, 0); obj != 0 {
1426 gcw := &getg().m.p.ptr().gcw
1427 greyobject(obj, 0, 0, span, gcw, objIndex)
1428 }
1429 }
1430
1431
1432
1433
1434
1435
1436
1437
1438 func greyobject(obj, base, off uintptr, span *mspan, gcw *gcWork, objIndex uintptr) {
1439
1440 if obj&(goarch.PtrSize-1) != 0 {
1441 throw("greyobject: obj not pointer-aligned")
1442 }
1443 mbits := span.markBitsForIndex(objIndex)
1444
1445 if useCheckmark {
1446 if setCheckmark(obj, base, off, mbits) {
1447
1448 return
1449 }
1450 } else {
1451 if debug.gccheckmark > 0 && span.isFree(objIndex) {
1452 print("runtime: marking free object ", hex(obj), " found at *(", hex(base), "+", hex(off), ")\n")
1453 gcDumpObject("base", base, off)
1454 gcDumpObject("obj", obj, ^uintptr(0))
1455 getg().m.traceback = 2
1456 throw("marking free object")
1457 }
1458
1459
1460 if mbits.isMarked() {
1461 return
1462 }
1463 mbits.setMarked()
1464
1465
1466 arena, pageIdx, pageMask := pageIndexOf(span.base())
1467 if arena.pageMarks[pageIdx]&pageMask == 0 {
1468 atomic.Or8(&arena.pageMarks[pageIdx], pageMask)
1469 }
1470
1471
1472
1473 if span.spanclass.noscan() {
1474 gcw.bytesMarked += uint64(span.elemsize)
1475 return
1476 }
1477 }
1478
1479
1480
1481
1482
1483 sys.Prefetch(obj)
1484
1485 if !gcw.putFast(obj) {
1486 gcw.put(obj)
1487 }
1488 }
1489
1490
1491
1492 func gcDumpObject(label string, obj, off uintptr) {
1493 s := spanOf(obj)
1494 print(label, "=", hex(obj))
1495 if s == nil {
1496 print(" s=nil\n")
1497 return
1498 }
1499 print(" s.base()=", hex(s.base()), " s.limit=", hex(s.limit), " s.spanclass=", s.spanclass, " s.elemsize=", s.elemsize, " s.state=")
1500 if state := s.state.get(); 0 <= state && int(state) < len(mSpanStateNames) {
1501 print(mSpanStateNames[state], "\n")
1502 } else {
1503 print("unknown(", state, ")\n")
1504 }
1505
1506 skipped := false
1507 size := s.elemsize
1508 if s.state.get() == mSpanManual && size == 0 {
1509
1510
1511
1512 size = off + goarch.PtrSize
1513 }
1514 for i := uintptr(0); i < size; i += goarch.PtrSize {
1515
1516
1517
1518 if !(i < 128*goarch.PtrSize || off-16*goarch.PtrSize < i && i < off+16*goarch.PtrSize) {
1519 skipped = true
1520 continue
1521 }
1522 if skipped {
1523 print(" ...\n")
1524 skipped = false
1525 }
1526 print(" *(", label, "+", i, ") = ", hex(*(*uintptr)(unsafe.Pointer(obj + i))))
1527 if i == off {
1528 print(" <==")
1529 }
1530 print("\n")
1531 }
1532 if skipped {
1533 print(" ...\n")
1534 }
1535 }
1536
1537
1538
1539
1540
1541
1542
1543
1544 func gcmarknewobject(span *mspan, obj, size, scanSize uintptr) {
1545 if useCheckmark {
1546 throw("gcmarknewobject called while doing checkmark")
1547 }
1548
1549
1550 objIndex := span.objIndex(obj)
1551 span.markBitsForIndex(objIndex).setMarked()
1552
1553
1554 arena, pageIdx, pageMask := pageIndexOf(span.base())
1555 if arena.pageMarks[pageIdx]&pageMask == 0 {
1556 atomic.Or8(&arena.pageMarks[pageIdx], pageMask)
1557 }
1558
1559 gcw := &getg().m.p.ptr().gcw
1560 gcw.bytesMarked += uint64(size)
1561 if !goexperiment.PacerRedesign {
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572 gcw.heapScanWork += int64(scanSize)
1573 }
1574 }
1575
1576
1577
1578
1579 func gcMarkTinyAllocs() {
1580 assertWorldStopped()
1581
1582 for _, p := range allp {
1583 c := p.mcache
1584 if c == nil || c.tiny == 0 {
1585 continue
1586 }
1587 _, span, objIndex := findObject(c.tiny, 0, 0)
1588 gcw := &p.gcw
1589 greyobject(c.tiny, 0, 0, span, gcw, objIndex)
1590 }
1591 }
1592
View as plain text