Lines Matching defs:FuncInfo
19 type FuncInfo struct { struct
20 Args uint32
21 Locals uint32
22 FuncID abi.FuncID
23 FuncFlag abi.FuncFlag
24 StartLine int32
25 File []CUFileIndex
26 InlTree []InlTreeNode
29 func (a *FuncInfo) Write(w *bytes.Buffer) {
70 func (*FuncInfo) ReadFuncInfoLengths(b []byte) FuncInfoLengths {
88 func (*FuncInfo) ReadArgs(b []byte) uint32 { return binary.LittleEndian.Uint32(b) }
90 func (*FuncInfo) ReadLocals(b []byte) uint32 { return binary.LittleEndian.Uint32(b[4:]) }
92 func (*FuncInfo) ReadFuncID(b []byte) abi.FuncID { return abi.FuncID(b[8]) }
94 func (*FuncInfo) ReadFuncFlag(b []byte) abi.FuncFlag { return abi.FuncFlag(b[9]) }
96 func (*FuncInfo) ReadStartLine(b []byte) int32 { return int32(binary.LittleEndian.Uint32(b[12:])) }
98 func (*FuncInfo) ReadFile(b []byte, filesoff uint32, k uint32) CUFileIndex {
102 func (*FuncInfo) ReadInlTree(b []byte, inltreeoff uint32, k uint32) InlTreeNode {