1
2
3
4
5 package objabi
6
7 import "sync"
8
9
10
11 type PkgSpecial struct {
12
13
14
15
16
17
18
19
20
21
22
23
24
25 Runtime bool
26
27
28
29
30
31 NoInstrument bool
32
33
34
35
36 NoRaceFunc bool
37
38
39
40
41
42 AllowAsmABI bool
43 }
44
45 var runtimePkgs = []string{
46
47
48
49 "runtime",
50
51 "internal/runtime/atomic",
52 "internal/runtime/exithook",
53 "internal/runtime/maps",
54 "internal/runtime/math",
55 "internal/runtime/sys",
56 "internal/runtime/syscall",
57
58 "internal/abi",
59 "internal/bytealg",
60 "internal/byteorder",
61 "internal/chacha8rand",
62 "internal/coverage/rtcov",
63 "internal/cpu",
64 "internal/goarch",
65 "internal/godebugs",
66 "internal/goexperiment",
67 "internal/goos",
68 "internal/profilerecord",
69 "internal/stringslite",
70 }
71
72
73
74 var extraNoInstrumentPkgs = []string{
75 "runtime/race",
76 "runtime/msan",
77 "runtime/asan",
78
79
80
81
82
83 "-internal/bytealg",
84 }
85
86 var noRaceFuncPkgs = []string{"sync", "sync/atomic", "internal/sync", "internal/runtime/atomic"}
87
88 var allowAsmABIPkgs = []string{
89 "runtime",
90 "reflect",
91 "syscall",
92 "internal/bytealg",
93 "internal/chacha8rand",
94 "internal/runtime/syscall",
95 "runtime/internal/startlinetest",
96 }
97
98
99 func LookupPkgSpecial(pkgPath string) PkgSpecial {
100 return pkgSpecialsOnce()[pkgPath]
101 }
102
103 var pkgSpecialsOnce = sync.OnceValue(func() map[string]PkgSpecial {
104
105
106
107 pkgSpecials := make(map[string]PkgSpecial)
108 set := func(elt string, f func(*PkgSpecial)) {
109 s := pkgSpecials[elt]
110 f(&s)
111 pkgSpecials[elt] = s
112 }
113 for _, pkg := range runtimePkgs {
114 set(pkg, func(ps *PkgSpecial) { ps.Runtime = true; ps.NoInstrument = true })
115 }
116 for _, pkg := range extraNoInstrumentPkgs {
117 if pkg[0] == '-' {
118 set(pkg[1:], func(ps *PkgSpecial) { ps.NoInstrument = false })
119 } else {
120 set(pkg, func(ps *PkgSpecial) { ps.NoInstrument = true })
121 }
122 }
123 for _, pkg := range noRaceFuncPkgs {
124 set(pkg, func(ps *PkgSpecial) { ps.NoRaceFunc = true })
125 }
126 for _, pkg := range allowAsmABIPkgs {
127 set(pkg, func(ps *PkgSpecial) { ps.AllowAsmABI = true })
128 }
129 return pkgSpecials
130 })
131
View as plain text