forked from gnolang/gno
-
Notifications
You must be signed in to change notification settings - Fork 0
/
misc.go
158 lines (141 loc) · 3.18 KB
/
misc.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
154
155
156
157
158
package gno
import (
"fmt"
"strings"
"unicode"
"unsafe"
)
//----------------------------------------
// Misc.
func cp(bz []byte) (ret []byte) {
ret = make([]byte, len(bz))
copy(ret, bz)
return ret
}
// Returns the associated machine operation for binary AST operations. TODO:
// to make this faster and inlineable, remove the switch statement and create a
// mathematical mapping between them.
func word2BinaryOp(w Word) Op {
switch w {
case ADD:
return OpAdd
case SUB:
return OpSub
case MUL:
return OpMul
case QUO:
return OpQuo
case REM:
return OpRem
case BAND:
return OpBand
case BOR:
return OpBor
case XOR:
return OpXor
case SHL:
return OpShl
case SHR:
return OpShr
case BAND_NOT:
return OpBandn
case LAND:
return OpLand
case LOR:
return OpLor
case EQL:
return OpEql
case LSS:
return OpLss
case GTR:
return OpGtr
case NEQ:
return OpNeq
case LEQ:
return OpLeq
case GEQ:
return OpGeq
default:
panic(fmt.Sprintf("unexpected binary operation word %v", w.String()))
}
}
func word2UnaryOp(w Word) Op {
switch w {
case ADD:
return OpUpos
case SUB:
return OpUneg
case NOT:
return OpUnot
case XOR:
return OpUxor
case MUL:
panic("unexpected unary operation * - use StarExpr instead")
case BAND:
panic("unexpected unary operation & - use RefExpr instead")
case ARROW:
return OpUrecv
default:
panic("unexpected unary operation")
}
}
func toString(n Node) string {
if n == nil {
return "<nil>"
}
return n.String()
}
// true if the first rune is uppercase.
func isUpper(s string) bool {
var first rune
for _, c := range s {
first = c
break
}
return unicode.IsUpper(first)
}
//----------------------------------------
// converting uintptr to bytes.
const sizeOfUintPtr = unsafe.Sizeof(uintptr(0))
func uintptrToBytes(u *uintptr) []byte {
return (*[sizeOfUintPtr]byte)(unsafe.Pointer(u))[:]
}
func defaultPkgName(gopkgPath string) Name {
parts := strings.Split(gopkgPath, "/")
last := parts[len(parts)-1]
parts = strings.Split(last, "-")
name := parts[len(parts)-1]
name = strings.ToLower(name)
return Name(name)
}
//----------------------------------------
// value convenience
func toTypeValue(t Type) TypeValue {
return TypeValue{
Type: t,
}
}
//----------------------------------------
// reserved & uverse names
var reservedNames = map[Name]struct{}{
"break": struct{}{}, "default": struct{}{}, "func": struct{}{}, "interface": struct{}{}, "select": struct{}{},
"case": struct{}{}, "defer": struct{}{}, "go": struct{}{}, "map": struct{}{}, "struct": struct{}{},
"chan": struct{}{}, "else": struct{}{}, "goto": struct{}{}, "package": struct{}{}, "switch": struct{}{},
"const": struct{}{}, "fallthrough": struct{}{}, "if": struct{}{}, "range": struct{}{}, "type": struct{}{},
"continue": struct{}{}, "for": struct{}{}, "import": struct{}{}, "return": struct{}{}, "var": struct{}{},
}
// if true, caller should generally panic.
func isReservedName(n Name) bool {
_, ok := reservedNames[n]
return ok
}
// scans uverse static node for blocknames. (slow)
func isUverseName(n Name) bool {
uverseNames := UverseNode().GetBlockNames()
for _, name := range uverseNames {
if name == n {
return true
}
}
return false
}