-
Notifications
You must be signed in to change notification settings - Fork 0
/
translator.go
198 lines (169 loc) · 3.9 KB
/
translator.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
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
package main
import (
"bufio"
"fmt"
"log"
"os"
"strconv"
"strings"
)
type CommandType int
const (
CArithmetic CommandType = iota
CPush
CPop
CLabel
CGoto
CIf
CFunction
CReturn
CCall
)
// Handles the parsing of a single .vm file,
// and encapsulates access to the input code.
//
// It reads VM commands, parses them, and provides
// convenient access to their compoenents.
// In addition, it removes all white space and comments.
type Parser struct {
InputFile string
CurrentCommand string
CurrentCommandType CommandType
Scanner *bufio.Scanner
}
// Opens the input file and gets ready to parse it.
func NewParser(filename string) *Parser {
p := new(Parser)
p.InputFile = filename
file, err := os.Open(p.InputFile)
if err != nil {
log.Fatal(err)
}
// defer file.Close()
p.Scanner = bufio.NewScanner(file)
return p
}
func (p *Parser) HasMoreCommands() bool {
return p.Scanner.Scan()
}
// Reads the next cmd from the input and makes it the current cmd.
//
// Should be called only if `HasMoreCommands()` is true.
// Initially, there is no current cmdS
func (p *Parser) Advance() {
for {
if isComment(p.Scanner.Text()) == false {
token := strings.TrimSpace(p.Scanner.Text())
if len(token) > 0 {
p.CurrentCommand = token
return
}
}
p.Scanner.Scan() // Advance to next token
}
}
func isComment(str string) bool {
return strings.Index(strings.TrimSpace(str), "//") == 0
}
// Returns the type of the current cmd.
func (p *Parser) CommandType() CommandType {
tokens := strings.Fields(p.CurrentCommand)
switch tokens[0] {
case "add", "sub", "neg", "eq", "gt", "lt", "and", "or", "not":
fmt.Println("COMMAND TYPE : C_ARITHMETIC")
return CArithmetic
case "push":
fmt.Println("COMMAND TYPE : C_PUSH")
return CPush
case "pop":
fmt.Println("COMMAND TYPE : C_POP")
return CPop
case "label":
fmt.Println("COMMAND TYPE : C_LABEL")
return CLabel
case "goto":
fmt.Println("COMMAND TYPE : C_GOTO")
return CGoto
case "if":
fmt.Println("COMMAND TYPE : C_IF")
return CIf
case "function":
fmt.Println("COMMAND TYPE : C_Function")
return CFunction
case "call":
fmt.Println("COMMAND TYPE : C_POP")
return CCall
case "return":
fmt.Println("COMMAND TYPE : C_POP")
return CReturn
}
return -1
}
// Returns the first argument of the current cmd.
func (p *Parser) Arg1() string {
tokens := strings.Fields(p.CurrentCommand)
switch p.CurrentCommandType {
case CArithmetic:
return tokens[0]
default:
return tokens[1]
}
}
// Returns the second argument of the current cmd.
func (p *Parser) Arg2() int {
tokens := strings.Fields(p.CurrentCommand)
d, _ := strconv.ParseInt(tokens[2], 0, 0)
return int(d)
}
func ReadFile() {
parser := new(Parser)
file, err := os.Open(parser.InputFile)
if err != nil {
log.Fatal(err)
}
defer file.Close()
scanner := bufio.NewScanner(file)
for scanner.Scan() {
fmt.Println(scanner.Text())
}
if err := scanner.Err(); err != nil {
log.Fatal(err)
}
}
type CodeWriter struct {
outputFilename string
}
func NewCodeWriter(outputFilename string) *CodeWriter {
c := new(CodeWriter)
c.outputFilename = outputFilename
return c
}
func (c *CodeWriter) SetFileName(filename string) {
}
func (c *CodeWriter) WriteArithmetic(command string) {
}
func (c *CodeWriter) WritePushPop(command CommandType, segment string, index int) {
}
func (c *CodeWriter) Close() {
}
func main() {
inputFilename := os.Args[1]
// outputFilename := "Prog.asm"
parser := NewParser(inputFilename)
// codeWriter := NewCodeWriter(outputFilename)
for parser.HasMoreCommands() {
parser.Advance()
parser.CurrentCommandType = parser.CommandType()
if parser.CurrentCommandType != CReturn {
args1 := parser.Arg1()
fmt.Println("ARGS1 : ", args1)
}
switch parser.CurrentCommandType {
case CPush, CPop, CFunction, CCall:
args2 := parser.Arg2()
fmt.Println("ARGS2 : ", args2)
}
fmt.Println(parser.CurrentCommand)
fmt.Println("")
}
}