-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCPU_emulator.java
237 lines (198 loc) · 6.77 KB
/
CPU_emulator.java
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
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
import java.io.BufferedReader;
import java.io.File;
import java.io.FileReader;
import java.io.IOException;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.Stack;
public class CPU_emulator {
static int ac;
static int pc = 0;
static int ax;
static int flag = 0;
static String methodDecision;
static int variableDecision;
static String read;
static HashMap<Integer, Integer> mapAc = new HashMap<>();//<index of the element we try to reach , ac value>
static ArrayList<Integer> splitted0 = new ArrayList<Integer>();//program.txt first element of the line (pc value)
static ArrayList<String> splitted1 = new ArrayList<String>();//program.txt second element of the line (methodName)
static ArrayList<String> splitted2 = new ArrayList<String>();//program.txt third element of the line (value to process)
public static void main(String[] args) {
try {
String fileName = "C:\\Users\\Lenovo\\Desktop\\to_execute.txt";
File file = new File(fileName);
BufferedReader buff = new BufferedReader(new FileReader(file));
String readLine = "";
while ((readLine = buff.readLine()) != null) {
read = readLine;
String[] splittedArray = read.split(" ", 3);
if (splittedArray[1].trim().equalsIgnoreCase("START")) {
splitted0.add(Integer.parseInt(read.split(" ")[0].trim()));
splitted1.add(read.split(" ")[1]);
splitted2.add("null");
} else if ((splittedArray[1].trim().equalsIgnoreCase("HALT"))) {
splitted0.add(Integer.parseInt(read.split(" ")[0].trim()));
splitted1.add(read.split(" ")[1]);
splitted2.add("null");
break;
} else if ((splittedArray[1].trim().equalsIgnoreCase("DISP"))) {
splitted0.add(Integer.parseInt(read.split(" ")[0].trim()));
splitted1.add(read.split(" ")[1]);
splitted2.add("null");
} else if ((splittedArray[1].trim().equalsIgnoreCase("SWAP"))) {
splitted0.add(Integer.parseInt(read.split(" ")[0].trim()));
splitted1.add(read.split(" ")[1]);
splitted2.add("null");
} else {
splitted0.add(Integer.parseInt(read.split(" ")[0].trim()));
splitted1.add(read.split(" ")[1]);
splitted2.add(read.split(" ")[2].trim());
}
}
} catch (IOException e) {
e.printStackTrace();
}
sendToDecision(pc);
}
/*
program flow
*/
public static void sendToDecision(int pc) {// In order to provide "jump" and/or provide the flow of the program
int i = pc;
if (splitted2.get(i).equalsIgnoreCase("null")) {
//System.out.println("PC VALUE " + pc);//to try
decision2(splitted1.get(i));
} else {
//System.out.println("PC VALUE " + pc);//to try
decision1(splitted1.get(i), splitted2.get(i));
}
}
public static void decision1(String string1, String string2) {// 3 values (Integer(pc value) - String(methodName) - Integer(number to process))
methodDecision = string1.toUpperCase().trim();
variableDecision = Integer.parseInt(string2);
switch (methodDecision) {
case "LOAD":
load(variableDecision);
break;
case "LOADM":
loadm(variableDecision);
break;
case "STORE":
store(variableDecision);
break;
case "CMPM":
cmpm(variableDecision);
break;
case "CJMP":
cjmp(variableDecision);
break;
case "JMP":
jmp(variableDecision);
break;
case "ADD":
add(variableDecision);
break;
case "ADDM":
addm(variableDecision);
break;
case "SUBM":
subm(variableDecision);
break;
case "SUB":
sub(variableDecision);
break;
case "MUL":
mul(variableDecision);
break;
case "MULM":
mulm(variableDecision);
break;
}
}
public static void decision2(String string1) {// 2 values (Integer(pc value) - String(methodName))
methodDecision = string1.toUpperCase().trim();
switch (methodDecision) {
case "START":
start();
break;
case "HALT":
halt();
break;
case "DISP":
disp();
break;
}
}
/*
program processes
*/
public static void start() {
System.out.println("Program is successfully started (START is executed)");
sendToDecision(++pc);
}
public static void load(int param) {
ac = param;
sendToDecision(++pc);
}
public static void loadm(int param) {
ac = mapAc.get(param);
sendToDecision(++pc);
}
public static void store(int param) {
mapAc.put(param, ac);
sendToDecision(++pc);
}
public static void cmpm(int param) {
if (ac > mapAc.get(param)) {
flag = 1;
} else if (ac < mapAc.get(param)) {
flag = -1;
} else {
flag = 0;
}
sendToDecision(++pc);
}
public static void cjmp(int param) {
if (flag > 0) {
pc = param;
sendToDecision(pc);
} else {
sendToDecision(++pc);
}
}
public static void jmp(int param) {
pc = param;
sendToDecision(pc);
}
public static void add(int param) {
ac += param;
sendToDecision(++pc);
}
public static void addm(int param) {
ac += mapAc.get(param);
sendToDecision(++pc);
}
public static void subm(int param) {
ac -= mapAc.get(param);
sendToDecision(++pc);
}
public static void sub(int param) {
ac -= param;
sendToDecision(++pc);
}
public static void mul(int param) {
ac *= param;
sendToDecision(++pc);
}
public static void mulm(int param) {
ac *= mapAc.get(param);
sendToDecision(++pc);
}
public static void disp() {
System.out.println(ac);
sendToDecision(++pc);
}
public static void halt() {
System.out.println("program flow is stopped (HALT is executed)");
}
}