-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathParser.cs
195 lines (165 loc) · 5.21 KB
/
Parser.cs
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
using System;
using System.IO;
using System.Linq;
using System.Collections.Generic;
using System.Text.RegularExpressions;
namespace HackAssembler
{
public static class Parser
{
public static string currCommand = "NULL";
public static string lValue = "NULL";
public static string aValue = "NULL";
public static string cType = "NULL";
public static int currInst = 0;
public static List<string> inslist = new List<string>();
public static List<string> OpenFile(string asmpath)
{
var arrayLine = File.ReadAllLines(asmpath);
for (var i=0; i < arrayLine.Length; i+=1)
{
inslist.Add(arrayLine[i]);
}
currCommand = inslist[0];
return inslist;
}
public static bool dahaKomutVarmı()
{
if ((currInst-inslist.Count()) >= 0)
{
return false;
}
else
{
return true;
}
}
public static void ilerle()
{
currInst++;
if (inslist.Count() > currInst)
{
currCommand = Regex.Replace(inslist[currInst], @"/(.+)$", "");
}
}
public static string komuttipi()
{
Regex lcommand = new Regex(@"\(([^\)]*)\)");
Match lmatch = lcommand.Match(currCommand);
Regex acommand = new Regex(@"@(.+)$");
Match amatch = acommand.Match(currCommand);
if (lmatch.Success & lmatch.Value != "()")
{
lValue = lmatch.Groups[1].Value;
aValue = "NULL";
cType= "NULL";
return "L_COMMAND";
}
else if (amatch.Success)
{
aValue = amatch.Groups[1].Value;
lValue = "NULL";
cType= "NULL";
return "A_COMMAND";
}
else if (currCommand.Contains('=') || currCommand.Contains(';'))
{
aValue = "NULL";
lValue = "NULL";
if (currCommand.Contains('=') && !currCommand.Contains(';'))
{
cType = "destncomp";
return "C_COMMAND";
}
else if (currCommand.Contains(';') && !currCommand.Contains('='))
{
cType = "compnjump";
return "C_COMMAND";
}
else if (currCommand.Contains('=') && currCommand.Contains(';'))
{
cType = "all";
return "C_COMMAND";
}
else
{
return "Bilinmiyor";
}
}
else
{
return "Bilinmiyor";
}
}
public static string sembol()
{
if (lValue != "NULL")
{
return lValue;
}
if (aValue != "NULL")
{
return aValue;
}
else
{
return "NULL";
}
}
public static string hedef()
{
if (cType == "destncomp" || cType == "all")
{
Match destmatch = Regex.Match(currCommand, @"^.*?(?==)");
return Regex.Replace(destmatch.Groups[0].Value, @"\s+", "");
}
else
{
return "NULL";
}
}
public static string islem()
{
if (cType != "NULL")
{
if (cType == "compnjump") // comp;jump
{
Match compmatch = Regex.Match(currCommand, @"^.*?(?=;)");
return Regex.Replace(compmatch.Groups[0].Value, @"\s+", "");
}
else if (cType == "destncomp") //dest=comp
{
Match compmatch = Regex.Match(currCommand, @"=(.+)$");
string compmatchwospace = Regex.Replace(compmatch.Groups[1].Value, @"\s+", "");
return Regex.Replace(compmatchwospace, @"/(.+)$", ""); // deletes the
}
else if (cType == "all") //dest=comp;jump
{
Match compmatch = Regex.Match(currCommand, @"\=([^\)]*)\;");
return Regex.Replace(compmatch.Groups[1].Value, @"\s+", "");
}
else
{
return "NULL";
}
}
else
{
return "NULL";
}
}
public static string ziplama()
{
if ((cType != "NULL") && (cType == "compnjump" || cType == "all"))
{
Match ziplamatch = Regex.Match(currCommand, @";(.+)$");
string ziplamatchwospace = Regex.Replace(ziplamatch.Groups[1].Value, @"\s+", "");
return Regex.Replace(ziplamatchwospace, @"/(.+)$", "");
}
else
{
return "NULL";
}
}
}
}