Source file
src/runtime/tracetype.go
1
2
3
4
5
6
7 package runtime
8
9 import (
10 "internal/abi"
11 "internal/goarch"
12 "internal/trace/tracev2"
13 "unsafe"
14 )
15
16
17
18 type traceTypeTable struct {
19 tab traceMap
20 }
21
22
23
24
25
26 func (t *traceTypeTable) put(typ *abi.Type) uint64 {
27 if typ == nil {
28 return 0
29 }
30
31 id, _ := t.tab.put(noescape(unsafe.Pointer(&typ)), goarch.PtrSize)
32 return id
33 }
34
35
36
37
38 func (t *traceTypeTable) dump(gen uintptr) {
39 w := unsafeTraceExpWriter(gen, nil, tracev2.AllocFree)
40 if root := (*traceMapNode)(t.tab.root.Load()); root != nil {
41 w = dumpTypesRec(root, w)
42 }
43 w.flush().end()
44 t.tab.reset()
45 }
46
47 func dumpTypesRec(node *traceMapNode, w traceWriter) traceWriter {
48 typ := (*abi.Type)(*(*unsafe.Pointer)(unsafe.Pointer(&node.data[0])))
49 typName := toRType(typ).string()
50
51
52 maxBytes := 1 + 5*traceBytesPerNumber + len(typName)
53
54
55
56
57
58
59 var flushed bool
60 w, flushed = w.ensure(1 + maxBytes)
61 if flushed {
62
63 w.byte(byte(traceAllocFreeTypesBatch))
64 }
65
66
67 w.varint(uint64(node.id))
68 w.varint(uint64(uintptr(unsafe.Pointer(typ))))
69 w.varint(uint64(typ.Size()))
70 w.varint(uint64(typ.PtrBytes))
71 w.varint(uint64(len(typName)))
72 w.stringData(typName)
73
74
75 for i := range node.children {
76 child := node.children[i].Load()
77 if child == nil {
78 continue
79 }
80 w = dumpTypesRec((*traceMapNode)(child), w)
81 }
82 return w
83 }
84
View as plain text