-
Notifications
You must be signed in to change notification settings - Fork 60
/
func.1.12.go
77 lines (64 loc) · 2.14 KB
/
func.1.12.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
//go:build go1.12 && !go1.16
// +build go1.12,!go1.16
package goloader
import (
"cmd/objfile/objabi"
"strings"
"github.com/pkujhd/goloader/obj"
)
// A funcID identifies particular functions that need to be treated
// specially by the runtime.
// Note that in some situations involving plugins, there may be multiple
// copies of a particular special runtime function.
// Note: this list must match the list in cmd/internal/objabi/funcid.go.
type funcID uint8
// Layout of in-memory per-function information prepared by linker
// See https://golang.org/s/go12symtab.
// Keep in sync with linker (../cmd/link/internal/ld/pcln.go:/pclntab)
// and with package debug/gosym and with symtab.go in package runtime.
type _func struct {
Entry uintptr // start pc
Nameoff int32 // function name
Args int32 // in/out args size
Deferreturn uint32 // offset of start of a deferreturn call instruction from entry, if any.
Pcsp int32
Pcfile int32
Pcln int32
Npcdata int32
FuncID funcID // set for certain special runtime functions
_ [2]int8 // unused
Nfuncdata uint8 // must be last
}
func initfunc(symbol *obj.ObjSymbol, nameOff, pcspOff, pcfileOff, pclnOff int, cuOff int) _func {
fdata := _func{
Entry: uintptr(0),
Nameoff: int32(nameOff),
Args: int32(symbol.Func.Args),
Deferreturn: uint32(0),
Pcsp: int32(pcspOff),
Pcfile: int32(pcfileOff),
Pcln: int32(pclnOff),
Npcdata: int32(len(symbol.Func.PCData)),
FuncID: funcID(objabi.GetFuncID(symbol.Name, strings.TrimPrefix(symbol.Func.File[0], FileSymPrefix))),
Nfuncdata: uint8(len(symbol.Func.FuncData)),
}
return fdata
}
func setfuncentry(f *_func, entry uintptr, text uintptr) {
f.Entry = entry
}
func getfuncentry(f *_func, text uintptr) uintptr {
return f.Entry
}
func getfuncname(f *_func, md *moduledata) string {
if f.Nameoff <= 0 || f.Nameoff >= int32(len(md.pclntable)) {
return EmptyString
}
return gostringnocopy(&(md.pclntable[f.Nameoff]))
}
func getfuncID(f *_func) uint8 {
return uint8(f.FuncID)
}
func adaptePCFile(linker *Linker, symbol *obj.ObjSymbol) {
rewritePCFile(symbol, linker)
}