-
Notifications
You must be signed in to change notification settings - Fork 25
/
goid_test.go
153 lines (139 loc) · 3.43 KB
/
goid_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
package routine
import (
"bytes"
"fmt"
"reflect"
"runtime"
"strconv"
"testing"
"unsafe"
"github.com/stretchr/testify/assert"
)
var goroutineSpace = []byte("goroutine ")
func TestG_Goid(t *testing.T) {
runTest(t, func() {
gp := getg()
runtime.GC()
assert.Equal(t, curGoroutineID(), gp.goid)
})
}
func TestG_Paniconfault(t *testing.T) {
runTest(t, func() {
gp := getg()
runtime.GC()
//read-1
assert.False(t, setPanicOnFault(false))
assert.False(t, gp.getPanicOnFault())
//read-2
setPanicOnFault(true)
assert.True(t, gp.getPanicOnFault())
//write-1
gp.setPanicOnFault(false)
assert.False(t, setPanicOnFault(false))
//write-2
gp.setPanicOnFault(true)
assert.True(t, setPanicOnFault(true))
//write-read-1
gp.setPanicOnFault(false)
assert.False(t, gp.getPanicOnFault())
//write-read-2
gp.setPanicOnFault(true)
assert.True(t, gp.getPanicOnFault())
//restore
gp.setPanicOnFault(false)
})
}
func TestG_Gopc(t *testing.T) {
runTest(t, func() {
gp := getg()
runtime.GC()
assert.Greater(t, int64(*gp.gopc), int64(0))
})
}
func TestG_ProfLabel(t *testing.T) {
runTest(t, func() {
ptr := unsafe.Pointer(&struct{}{})
null := unsafe.Pointer(nil)
assert.NotEqual(t, ptr, null)
//
gp := getg()
runtime.GC()
//read-1
assert.Equal(t, null, getProfLabel())
assert.Equal(t, null, gp.getLabels())
//read-2
setProfLabel(ptr)
assert.Equal(t, ptr, gp.getLabels())
//write-1
gp.setLabels(nil)
assert.Equal(t, null, getProfLabel())
//write-2
gp.setLabels(ptr)
assert.Equal(t, ptr, getProfLabel())
//write-read-1
gp.setLabels(nil)
assert.Equal(t, null, gp.getLabels())
//write-read-2
gp.setLabels(ptr)
assert.Equal(t, ptr, gp.getLabels())
//restore
gp.setLabels(null)
})
}
func TestOffset(t *testing.T) {
runTest(t, func() {
assert.Panics(t, func() {
gt := reflect.TypeOf(0)
offset(gt, "hello")
})
assert.PanicsWithValue(t, "No such field 'hello' of struct 'runtime.g'.", func() {
gt := getgt()
offset(gt, "hello")
})
})
}
// curGoroutineID parse the current g's goid from caller stack.
func curGoroutineID() int64 {
b := make([]byte, 64)
b = b[:runtime.Stack(b, false)]
// Parse the 4707 out of "goroutine 4707 ["
b = bytes.TrimPrefix(b, goroutineSpace)
i := bytes.IndexByte(b, ' ')
if i < 0 {
panic(fmt.Sprintf("No space found in %q", b))
}
b = b[:i]
n, err := strconv.ParseInt(string(b), 10, 64)
if err != nil {
panic(fmt.Sprintf("Failed to parse goroutine ID out of %q: %v", b, err))
}
return n
}
// setPanicOnFault controls the runtime's behavior when a program faults at an unexpected (non-nil) address.
//
//go:linkname setPanicOnFault runtime/debug.setPanicOnFault
func setPanicOnFault(new bool) (old bool)
// getProfLabel get current g's labels which will be inherited by new goroutine.
//
//go:linkname getProfLabel runtime/pprof.runtime_getProfLabel
func getProfLabel() unsafe.Pointer
// setProfLabel set current g's labels which will be inherited by new goroutine.
//
//go:linkname setProfLabel runtime/pprof.runtime_setProfLabel
func setProfLabel(labels unsafe.Pointer)
//===
// BenchmarkGohack-8 258425366 4.808 ns/op 0 B/op 0 allocs/op
func BenchmarkGohack(b *testing.B) {
_ = getg()
b.ReportAllocs()
b.ResetTimer()
for i := 0; i < b.N; i++ {
gp := getg()
_ = gp.goid
_ = gp.gopc
_ = gp.getLabels()
_ = gp.getPanicOnFault()
gp.setLabels(nil)
gp.setPanicOnFault(false)
}
}