This repository has been archived by the owner on Dec 1, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 110
/
arguments.go
122 lines (100 loc) · 3.26 KB
/
arguments.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
/*
* Minio Cloud Storage, (C) 2017 Minio, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package main
import (
"errors"
"fmt"
"regexp"
"strconv"
"strings"
)
type StackArgs struct {
Number int
OffsetToFirst int
}
func argumentsOnStack(lines []string) StackArgs {
offsets := make(map[uint]bool)
for _, l := range lines {
l, _ = stripComments(l)
if match := regexpRbpLoadHigher.FindStringSubmatch(l); len(match) > 1 {
offset, _ := strconv.Atoi(match[1])
if _, found := offsets[uint(offset)]; !found {
offsets[uint(offset)] = true
}
}
}
offset := uint(0)
for o := range offsets {
if o > offset {
offset = o
}
}
if offset >= 16 {
return StackArgs{OffsetToFirst: 16, Number: 1 + int((offset-16)/8)}
}
return StackArgs{OffsetToFirst: 0, Number: 0}
}
func parseCompanionFile(goCompanion, protoName string) ([]string, []string) {
gocode, err := readLines(goCompanion)
if err != nil {
panic(fmt.Sprintf("Failed to read companion go code: %v", err))
}
for _, goline := range gocode {
ok, args, rets, err := getGolangArgs(protoName, goline)
if err != nil {
panic(fmt.Sprintf("Error: %v", err))
} else if ok {
return args, rets
}
}
panic(fmt.Sprintf("Failed to find function prototype for %s", protoName))
}
var regexpFuncAndArgs = regexp.MustCompile(`^\s*func\s+([^\(]*)\(([^\)]*)\)(.*)`)
var regexpReturnVals = regexp.MustCompile(`^\((.*)\)`)
func getGolangArgs(protoName, goline string) (isFunc bool, args, rets []string, err error) {
// Search for name of function and arguments
if match := regexpFuncAndArgs.FindStringSubmatch(goline); len(match) > 2 {
if match[1] == "_"+protoName {
args, rets = []string{}, []string{}
if match[2] != "" {
for _, arg := range strings.Split(match[2], ",") {
args = append(args, strings.Fields(arg)[0])
}
}
trailer := strings.TrimSpace(match[3])
if len(trailer) > 0 {
// Trailing string found, search for return values
if rmatch := regexpReturnVals.FindStringSubmatch(trailer); len(rmatch) > 1 {
for _, ret := range strings.Split(rmatch[1], ",") {
rets = append(rets, strings.Fields(ret)[0])
}
} else {
return false, args, rets, errors.New(fmt.Sprintf("Badly formatted return argument (please use parenthesis and proper arguments naming): %s", trailer))
}
}
return true, args, rets, nil
}
}
return false, []string{}, []string{}, nil
}
func getTotalSizeOfArguments(argStart, argEnd int) uint {
// TODO: Test if correct for non 64-bit arguments
return uint((argEnd - argStart + 1) * 8)
}
func getTotalSizeOfArgumentsAndReturnValues(argStart, argEnd int, returnValues []string) uint {
// TODO: Test if correct for non 64-bit return values
return getTotalSizeOfArguments(argStart, argEnd) + uint(len(returnValues)*8)
}