forked from feyeleanor/GoLightly
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathinstruction_set.go
155 lines (132 loc) · 3.49 KB
/
instruction_set.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
package govirtual
import (
"fmt"
"strconv"
"strings"
)
type Operation struct {
Instruction *Instruction
Label string
Infix bool
Data []Value
}
func (o Operation) String() string {
if len(o.Label) > 0 {
return o.Label
}
if o.Infix {
return fmt.Sprintf("%v %v %v", o.Data[0], o.Instruction.Name, o.Data[1])
}
return fmt.Sprintf("%v(%v)", o.Instruction.Name, o.Data)
}
func (o Operation) Similar(p Operation) bool {
return o.Instruction == p.Instruction
}
type Assembler interface {
Assemble(name string, data *Memory) Operation
}
type Argument struct {
Name, Type string
}
type Implementation func(*Memory, ...Value) []Value
type Instruction struct {
Name string
Implementation
Infix bool
Arguments []Argument
}
func (i Instruction) String() string {
return fmt.Sprintf("%s", i.Name)
}
type InstructionSet map[int]*Instruction
func NewInstructionSet() (i *InstructionSet) {
x := make(InstructionSet)
return &x
}
func (i *InstructionSet) Len() int {
return len(*i)
}
func (i *InstructionSet) Define(name string, infix bool, implementation Implementation, args ...Argument) {
(*i)[i.Len()] = &Instruction{Name: name, Implementation: implementation, Infix: infix, Arguments: args}
}
func (i *InstructionSet) Prefix(name string, closure Implementation, args ...Argument) {
i.Define(name, false, closure, args...)
}
func (i *InstructionSet) Infix(name string, closure Implementation, left Argument, right Argument) {
i.Define(name, true, closure, left, right)
}
func (i *InstructionSet) Assemble(id int, args ...Value) *Operation {
if op, ok := (*i)[id]; ok {
return &Operation{Instruction: op, Data: args}
}
panic("No such Instruction")
}
func (i *InstructionSet) Compile(name string, args ...Value) *Operation {
for x, n := range *i {
if n.Name == name {
return i.Assemble(x, args...)
}
}
panic("No such instruction " + name)
}
func (i *InstructionSet) CompileLabel(label string) *Operation {
o := i.Compile("noop")
o.Label = label
return o
}
func UnlabelProgram(program string) (string, map[string]int) {
prog, labels := UnlabelProgramRecurse(strings.Split(program, "\n"), make(map[string]int))
return strings.Join(prog, "\n"), labels
}
func UnlabelProgramRecurse(program []string, labels map[string]int) ([]string, map[string]int) {
for x, line := range program {
line = strings.TrimSpace(line)
if strings.HasPrefix(line, ":") {
labels[line] = x
return UnlabelProgramRecurse(append(program[:x], program[x+1:]...), labels)
}
}
return program, labels
}
func Coherse(arg string) Value {
if strings.HasPrefix(arg, ":") {
return &Literal{arg}
} else if strings.HasPrefix(arg, "\"") && strings.HasSuffix(arg, "\"") {
return &Literal{arg[1 : len(arg)-1]}
} else {
if strings.Contains(arg, ".") {
n, _ := strconv.ParseFloat(arg, 64)
return &Literal{n}
} else {
n, _ := strconv.Atoi(arg)
return &Literal{n}
}
}
}
func (i *InstructionSet) CompileProgram(s string) *Program {
p := NewProgram(0)
for _, line := range strings.Split(s, "\n") {
line = strings.TrimSpace(line)
if len(line) == 0 {
continue
}
if strings.HasPrefix(line, ":") {
p.Append(i.CompileLabel(line))
continue
}
o := strings.Split(line, " ")
if len(o) == 1 {
p.Append(i.Compile(o[0]))
} else if len(o) == 2 {
c := strings.Split(o[1], ",")
args := make([]Value, len(c))
for x, arg := range c {
args[x] = Coherse(arg)
}
p.Append(i.Compile(o[0], args...))
} else {
//panic("Don't know how to compile" + line)
}
}
return p
}