-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathemu.c
430 lines (422 loc) · 7.96 KB
/
emu.c
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
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
/*Author - Nischal A; Roll Number - 1801CS33
B.Tech 3rd Year, Computer Science and Engineering
Indian Institute of Technology Patna (IIT-P)
*/
#define _GNU_SOURCE
#include <stdio.h>
#include <stdlib.h>
#include<string.h>
#include<ctype.h>
#define maxsize 100
struct code
{
char pc[8];
char ins[8];
struct code *next;
};
struct data
{
int pc;
int value;
int addr;
struct data *next;
};
struct code *head_c = NULL;
struct data *head_d = NULL;
/*Used a simple array for memory implementation*/
int memory[maxsize];
void copyString(char *str1, char *str2)
{
int i;
for(i=0;i<8;i++)
{
str1[i] = str2[i];
}
str1[i] = '\0';
}
void dectohex(long decimalnum, char *res)
{
int neg = 0;
long neg_const = 16777216;
if (decimalnum == 0)
{
res[0] = '0';
res[1] = '\0';
return;
}
else if(decimalnum < 0)
{
decimalnum = neg_const + decimalnum;
neg = 1;
}
long quotient, remainder;
int i, j;
j = 0;
char hexadecimalnum[100];
quotient = decimalnum;
while (quotient != 0)
{
remainder = quotient % 16;
if (remainder < 10)
hexadecimalnum[j++] = 48 + remainder;
else
hexadecimalnum[j++] = 55 + remainder;
quotient = quotient / 16;
}
int k = 0;
for (i = j-1; i >= 0; i--)
{
res[k] = hexadecimalnum[i];
k++;
}
res[k] = '\0';
}
void addCode(char *pc_p, char *ins_p)
{
if(head_c == NULL)
{
head_c = (struct code*)(malloc(sizeof(struct code)));
copyString(head_c->pc, pc_p);
copyString(head_c->ins, ins_p);
head_c->next = NULL;
}
else
{
struct code* temp = (struct code*)(malloc(sizeof(struct code)));
struct code* last = head_c;
copyString(temp->pc, pc_p);
copyString(temp->ins, ins_p);
temp->next = NULL;
/* Traverse till the end of LL from head*/
while(last->next!= NULL)
{
last = last->next;
}
last->next = temp;
}
return;
}
void displayCodeLL()
{
if (head_c == NULL)
{
return;
}
struct code* last = head_c;
printf("\nData in the Code LL\n");
while(1)
{
printf("%ld\t%ld\n", strlen(last->pc), strlen(last->ins));
last = last->next;
if(last == NULL)
break;
}
}
void addData(int pc_p, int data_s, int addr_s)
{
if(head_d == NULL)
{
head_d = (struct data*)(malloc(sizeof(struct data)));
head_d->pc = pc_p;
head_d->value = data_s;
head_d->addr = addr_s;
head_d->next = NULL;
}
else
{
struct data* temp = (struct data*)(malloc(sizeof(struct data)));
struct data* last = head_d;
temp->pc = pc_p;
temp->value = data_s;
temp->addr = addr_s;
temp->next = NULL;
/* Traverse till the end of LL from head*/
while(last->next!= NULL)
{
last = last->next;
}
last->next = temp;
}
return;
}
/*Special Processing for "data" instruction*/
int findAddress(int pc_s)
{
if (head_d == NULL)
{
return 0;
}
struct data* last = head_d;
int addrs;
while(1)
{
if (last->pc == pc_s)
{
addrs = last->addr;
break;
}
last = last->next;
if(last == NULL)
break;
}
return addrs;
}
void displayDataLL()
{
if (head_d == NULL)
{
return;
}
struct data* last = head_d;
printf("\nData in the Memory_Data LL\n");
while(1)
{
printf("%d\t%d\t%d\n", last->pc, last->value, last->addr);
last = last->next;
if(last == NULL)
break;
}
}
/*Sign Aware Processing of the Operand*/
int processOperand(char *operand_s)
{
char *end;
long ret;
ret = strtol(operand_s, &end, 16);
if (operand_s[0] == 'F')
{
ret = ret - 16777216;
}
return ret;
}
/*Function for showing the memory*/
void showmemory(int sp)
{
int i;
printf("Printing Memory\n");
printf("Address\tValue\n");
for(i = maxsize-1; i>=sp;i--)
printf("%d\t%d\n", i, memory[i]);
}
/*Main Function for EMULATION of the OBJECT FILE*/
void emulate(char **op, char **oc, int ctr)
{
int pc;
int a,b, flag; /* Two registers A and B*/
/* TODO Implement Stack and Memory*/
int sp = maxsize-1;
char res_pc[32];
int run_time = 0;
/* first pass - assing all data locations from below*/
for(pc = 0; pc<ctr;pc++)
{
if (strcmp(oc[pc], "13") == 0)
{
memory[sp] = processOperand(op[pc]);
addData(pc, memory[sp], sp);
sp--;
}
}
displayDataLL();
for(pc=0;pc<ctr;)
{
char pcfinal[8];
int pc_pad, k;
flag = 0;
dectohex(pc, res_pc);
pc_pad = 8 - strlen(res_pc);
printf("PC = ");
for(k=0;k<pc_pad;k++)
{
printf("0");
}
printf("%s\t A = %d\t B = %d\t SP = %d\n", res_pc, a, b, sp);
if (strcmp(oc[pc], "00") == 0)
{
/* convert hex to decimal*/
int operand = processOperand(op[pc]);
if (operand < ctr && operand >= 0)
{
/* checking if data*/
if (strcmp(oc[operand], "13") == 0)
{
operand = findAddress(operand);
}
}
b = a;
a = operand;
}
else if(strcmp(oc[pc], "01") == 0)
{
int operand = processOperand(op[pc]);
a = a + operand;
}
else if(strcmp(oc[pc], "02") == 0)
{
int offset = processOperand(op[pc]);
b = a;
a = memory[sp + offset+1];
}
else if(strcmp(oc[pc], "03") == 0)
{
int offset = processOperand(op[pc]);
memory[sp + offset+1] = a;
a = b;
}
else if(strcmp(oc[pc], "04") == 0)
{
int offset = processOperand(op[pc]);
a = memory[a + offset+1];
}
else if(strcmp(oc[pc], "05") == 0)
{
int offset = processOperand(op[pc]);
memory[a + offset+1] = b;
}
else if(strcmp(oc[pc], "06") == 0)
{
a = b + a;
}
else if(strcmp(oc[pc], "07") == 0)
{
a = b - a;
}
else if(strcmp(oc[pc], "08") == 0)
{
a = b << a;
}
else if(strcmp(oc[pc], "09") == 0)
{
a = b >> a;
}
else if(strcmp(oc[pc], "0A") == 0)
{
int operand = processOperand(op[pc]);
sp = sp + operand;
}
else if(strcmp(oc[pc], "0B") == 0)
{
if (a>=maxsize)
{
pc++;
flag = 1;
}
sp = a;
a = b;
}
else if(strcmp(oc[pc], "0C") == 0)
{
b = a;
a = sp;
}
else if(strcmp(oc[pc], "0D") == 0)
{
/* For CALL instruction*/
int operand = processOperand(op[pc]);
b = a;
a = pc;
pc = pc + operand+1;
flag = 1;
}
else if(strcmp(oc[pc], "0E") == 0)
{
/* For return instruction*/
pc = a;
a = b;
}
else if(strcmp(oc[pc], "0F") == 0)
{
int operand = processOperand(op[pc]);
if (a == 0)
{
pc = pc + operand+1;
flag = 1;
}
}
else if(strcmp(oc[pc], "10") == 0)
{
int operand = processOperand(op[pc]);
if (a < 0)
{
pc = pc + operand+1;
flag = 1;
}
}
else if(strcmp(oc[pc], "11") == 0)
{
int operand = processOperand(op[pc]);
pc = pc + operand+1;
flag = 1;
}
else if(strcmp(oc[pc], "12") == 0)
{
/* Condition for HALT*/
break;
}
/* Incrementing in normal case*/
if (flag == 0)
pc++;
run_time++;
}
showmemory(sp);
printf("Total number of lines executed are %d\n", (run_time+1));
}
/*Main Functions initiates Emulate Process*/
int main(int argc, char *argv[])
{
FILE *fptr;
char *file_name = argv[1];
/*Reading the Binary File*/
fptr = fopen(file_name,"rb");
fseek(fptr, 0, SEEK_END); /* seek to end of file*/
int size = ftell(fptr); /* get current file pointer*/
fseek(fptr, 0, SEEK_SET); /* seek back to beginning of file*/
printf("Size of the binary file is %d\n", size);
/* Reading file contents*/
char buffer[size];
char pc[8];
char ins[8];
fread(buffer,sizeof(buffer),1,fptr);
/* Printing in the format required*/
int i, ctr, j, k;
ctr = size/8;
char *pcs[ctr];
char *inss[ctr];
char *oc[ctr];
char *op[ctr];
/*for(i=0;i<ctr;i++)
{
pcs[i] = (char*)(malloc(8*sizeof(char)));
char pc[8];
for(j = 0; j < 8; j++)
{
pc[j] = (char)buffer[(i*16)+j];
}
pc[j] = '\0';
strcpy(pcs[i], pc);
}*/
for(i=0;i<ctr;i++)
{
inss[i] = (char*)(malloc(8*sizeof(char)));
char ins[8];
for(j = 0; j < 8; j++)
{
ins[j] = (char)buffer[(i*8)+j];
}
strcpy(inss[i], ins);
}
/* Printing the pc and ins*/
for(i=0;i<ctr;i++)
{
oc[i] = (char*)(malloc(2*sizeof(char)));
op[i] = (char*)(malloc(6*sizeof(char)));
for(k=0;k<6;k++)
op[i][k] = inss[i][k];
for(k=0;k<2;k++)
oc[i][k] = inss[i][k+6];
printf("%s\t%s\n", op[i], oc[i]);
}
/*Call to main emulator*/
emulate(op, oc, ctr);
return 0;
}