-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutility.c
1148 lines (1110 loc) · 31.8 KB
/
utility.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
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#include "utility.h"
/*
* Gets the instruction pointed by IP, to the argument
* Return 0 on success
* Returns -1 on error after setting IP to exception handler
*/
int getInstruction(char *instruction) {
struct address translatedAddr;
int len;
bzero(instruction, WORD_SIZE * WORDS_PER_INSTR);
if (getType(reg[IP_REG]) == TYPE_STR) {
raiseException(newException(EX_ILLMEM, "Illegal IP value. Not an address.\n", 0));
return -1;
}
if (mode == USER_MODE && getType(reg[PTLR_REG]) == TYPE_STR) {
raiseException(newException(EX_ILLMEM, "Illegal PTLR value.\n", 0));
return -1;
}
if (getInteger(reg[IP_REG]) < 0 || getInteger(reg[IP_REG]) + 1 >= SIZE_OF_MEM) {
raiseException(newException(EX_ILLMEM, "IP Register value out of bounds.\n", 0));
return -1;
}
if (mode == USER_MODE) {
if (getInteger(reg[IP_REG]) < 0 || getInteger(reg[IP_REG]) + 1 >= getInteger(reg[PTLR_REG]) * PAGE_SIZE) {
printf("%d", getInteger(reg[IP_REG]));
raiseException(newException(EX_ILLOPERAND, "Illegal IP Access.\n", 0));
return -1;
}
}
translatedAddr = translate(getInteger(reg[IP_REG]));
if (translatedAddr.page_no == -1 && translatedAddr.word_no == -1) return -1;
strcpy(instruction, page[translatedAddr.page_no].word[translatedAddr.word_no]);
translatedAddr = translate(getInteger(reg[IP_REG]) + 1);
if (translatedAddr.page_no == -1 && translatedAddr.word_no == -1) return -1;
len = strlen(instruction);
instruction[len]=' ';
instruction[len + 1]='\0';
strcat(instruction, page[translatedAddr.page_no].word[translatedAddr.word_no]);
return 0;
}
void emptyPage(int page_no) {
int i;
for(i = 0 ; i < PAGE_SIZE ; i++) {
strcpy(page[page_no].word[i], "");
}
}
struct address translate(int virtual_addr) {
if (mode == USER_MODE) {
struct address resultant_addr;
int page_entry;
resultant_addr.page_no = -1;
resultant_addr.word_no = -1;
if (getType(reg[PTBR_REG]) == TYPE_STR) {
raiseException(newException(EX_ILLMEM, "Illegal Register Value.\n", 0));
return resultant_addr;
}
page_entry = getInteger(reg[PTBR_REG]) + (virtual_addr / PAGE_SIZE) * 2;
if (page[(page_entry+ 1 ) / PAGE_SIZE].word[(page_entry + 1) % PAGE_SIZE][1] == VALID ) {
resultant_addr.page_no = getInteger(page[page_entry / PAGE_SIZE].word[page_entry % PAGE_SIZE] );
resultant_addr.word_no = virtual_addr % PAGE_SIZE;
page[(page_entry + 1) / PAGE_SIZE].word[(page_entry + 1) % PAGE_SIZE][0] = REFERENCED;
}
else raiseException(newException(EX_PAGEFAULT, "Page Fault.\n", virtual_addr / PAGE_SIZE));
return resultant_addr;
} else {
struct address resultant_addr;
resultant_addr.page_no = virtual_addr / PAGE_SIZE;
resultant_addr.word_no = virtual_addr % PAGE_SIZE;
return resultant_addr;
}
}
Address translateAddress(int address) {
Address resultant_address = { -1, -1 };
Exception e = isSafeState2();
if (e.code != EX_NONE) {
raiseException(e);
return resultant_address;
}
if (mode == USER_MODE) {
int page_entry;
page_entry = getInteger(reg[PTBR_REG]) + (address / PAGE_SIZE) * 2;
if (page[(page_entry + 1) / PAGE_SIZE].word[(page_entry + 1) % PAGE_SIZE][1] == VALID) {
resultant_address.page = getInteger(page[page_entry / PAGE_SIZE].word[page_entry % PAGE_SIZE]);
resultant_address.word = address % PAGE_SIZE;
page[(page_entry + 1) / PAGE_SIZE].word[(page_entry + 1) % PAGE_SIZE][0] = REFERENCED;
} else raiseException(newException(EX_PAGEFAULT, "Page Fault.\n", address / PAGE_SIZE));
return resultant_address;
} else {
resultant_address.page = address / PAGE_SIZE;
resultant_address.word = address % PAGE_SIZE;
return resultant_address;
}
}
int getInteger(char * str) {
return atoi(str);
}
void storeInteger(char * str, int num) {
sprintf(str, "%d", num);
}
int getType(char * str) {
int i = 0;
if (str[i] == '+' || str[i] == '-') i++;
for (; str[i] != '\0'; i++)
if (!(str[i] >= '0' && str[i] <= '9')) return TYPE_STR;
return TYPE_INT;
}
void raiseException(Exception e) {
if (mode == KERNEL_MODE) {
printf("<ERROR:%d:%s> %s\n",getInteger(reg[IP_REG]), instruction, e.message);
if (isDebugModeOn()) debugInterface();
exit(0);
} else {
int ex_flag;
ex_flag = getInteger(reg[IP_REG]) * 1000;
ex_flag += e.fault_page * 10;
ex_flag += e.code;
mode = KERNEL_MODE;
storeInteger(reg[EMA_REG], e.fault_page);//TODO Change e.fault_page to memory address
storeInteger(reg[EIP_REG], getInteger(reg[IP_REG]));
storeInteger(reg[EC_REG], e.code);
storeInteger(reg[EPN_REG], e.fault_page);
storeInteger(reg[IP_REG], EXCEPTION_HANDLER * PAGE_SIZE);
}
}
int isSafeState() {
if (getType(reg[SP_REG]) == TYPE_STR || getType(reg[BP_REG]) == TYPE_STR || getType(reg[PTLR_REG]) == TYPE_STR) {
raiseException(newException(EX_ILLMEM, "Illegal Register Value.\n", 0));
return 0;
}
if (getInteger(reg[PTLR_REG]) < 0 || getInteger(reg[PTLR_REG]) >= SIZE_OF_MEM) {
raiseException(newException(EX_ILLMEM, "Illegal address access.\n PTLR value is out of bounds.\n", 0));
return 0;
}
if (getInteger(reg[SP_REG]) + 1 < 0) {
raiseException(newException(EX_ILLMEM, "Stack underflow.\n", 0));
return 0;
}
if (getInteger(reg[SP_REG]) >= SIZE_OF_MEM || (mode==USER_MODE && getInteger(reg[SP_REG]) >= getInteger(reg[PTLR_REG]) * PAGE_SIZE)) {
raiseException(newException(EX_ILLMEM, "Stack overflow.\n", 0));
return 0;
}
if (getInteger(reg[BP_REG]) < 0) {
raiseException(newException(EX_ILLMEM, "Negative value for BP.\n", 0));
return 0;
}
if (getInteger(reg[BP_REG]) >= SIZE_OF_MEM || (mode==USER_MODE && getInteger(reg[BP_REG]) >= getInteger(reg[PTLR_REG]) * PAGE_SIZE)) {
raiseException(newException(EX_ILLMEM, "BP Register Value out of bounds.\n", 0));
return 0;
}
return 1;
}
Exception isRegisterInaccessible(int r) {
if (r < 0 || r > (NO_USER_REG + NO_PORTS + NO_SPECIAL_REG)) {
return newException(EX_ILLOPERAND, "Invalid Register Provided", 0);
}
// User Register
if (r >= R0 && r < R0 + NO_USER_REG) return newException(EX_NONE, "", 0);
// System Register
if (r >= P0 && r < P0 + NO_PORTS) {
if (mode == KERNEL_MODE) return newException(EX_NONE, "", 0);;
return newException(EX_ILLOPERAND, "Illegal Register Access in User Mode", 0);
}
// Special Register
if (mode == KERNEL_MODE) return newException(EX_NONE, "", 0);
if (r == SP_REG || r == BP_REG) return newException(EX_NONE, "", 0);
if (r == PTBR_REG) return newException(EX_ILLOPERAND, "Illegal Register Access in User Mode -> {PTBR}", 0);
if (r == PTLR_REG) return newException(EX_ILLOPERAND, "Illegal Register Access in User Mode -> {PTLR}", 0);
if (r == IP_REG) return newException(EX_ILLOPERAND, "Illegal Register Access in User Mode -> {IP}", 0);
if (r == EIP_REG) return newException(EX_ILLOPERAND, "Illegal Register Access in User Mode -> {EIP}", 0);
if (r == EC_REG) return newException(EX_ILLOPERAND, "Illegal Register Access in User Mode -> {EC}", 0);
if (r == EPN_REG) return newException(EX_ILLOPERAND, "Illegal Register Access in User Mode -> {EPN}", 0);
if (r == EMA_REG) return newException(EX_ILLOPERAND, "Illegal Register Access in User Mode -> {EMA}", 0);
}
Exception isSafeState2() {
if (getType(reg[SP_REG]) == TYPE_STR || getType(reg[BP_REG]) == TYPE_STR || getType(reg[PTLR_REG]) == TYPE_STR
|| getType(reg[PTBR_REG]) == TYPE_STR) {
return newException(EX_ILLMEM, "Illegal Register value", 0);
}
if (getInteger(reg[PTBR_REG]) < 0 || getInteger(reg[PTBR_REG]) >= SIZE_OF_MEM) {
return newException(EX_ILLMEM, "Illegal address access.\n PTBR value is out of bounds.", 0);
}
if (getInteger(reg[PTLR_REG]) < 0 || getInteger(reg[PTLR_REG]) >= SIZE_OF_MEM) {
return newException(EX_ILLMEM, "Illegal address access.\n PTLR value is out of bounds.", 0);
}
if (getInteger(reg[SP_REG]) + 1 < 0) {
return newException(EX_ILLMEM, "Stack underflow\n", 0);
}
if (getInteger(reg[SP_REG]) >= SIZE_OF_MEM || (mode == USER_MODE && getInteger(reg[SP_REG]) >= getInteger(reg[PTLR_REG]) * PAGE_SIZE)) {
return newException(EX_ILLMEM, "Stack overflow\n", 0);
}
if (getInteger(reg[BP_REG]) < 0) {
return newException(EX_ILLMEM, "Negative Value for BP Register\n", 0);
}
if (getInteger(reg[BP_REG]) >= SIZE_OF_MEM || (mode == USER_MODE && getInteger(reg[BP_REG]) >= getInteger(reg[PTLR_REG]) * PAGE_SIZE)) {
return newException(EX_ILLMEM, "BP Register Value out of bounds\n", 0);
}
return newException(EX_NONE, "", 0);
}
Exception isRestrictedMemoryLocation(int x) {
if (x < 0 || x >= SIZE_OF_MEM || (mode == USER_MODE && x >= getInteger(reg[PTLR_REG]) * PAGE_SIZE)) {
return newException(EX_ILLMEM, "Illegal Memory Access", 0);
}
return newException(EX_NONE, "", 0);
}
char * getWordFromAddress(Address x) {
if (x.page == -1 && x.word == -1) return NULL;
return page[x.page].word[x.word];
}
char * getWordFromMemoryLocation(int r) {
return getWordFromAddress(translateAddress(r));
}
int storeWordToAddress(Address x, char * word) {
if (x.page == -1 && x.word == -1) return 0;
strcpy(page[x.page].word[x.word], word);
return 1;
}
int storeWordToMemoryLocation(int r, char * word) {
return storeWordToAddress(translateAddress(r), word);
}
char * resolveOperand(int r, int flag1, int flag2, char * string) {
Exception e = isSafeState2();
if (e.code != EX_NONE) {
raiseException(e);
return NULL;
}
if (flag1 != NUM && flag1 != STRING && flag1 != MEM_DIR) {
if (flag1 != MEM_DIR_IN) {
int reg = (flag2 != ILLREG) ? flag2 : r;
e = isRegisterInaccessible(reg);
if (e.code != EX_NONE) {
raiseException(e);
return NULL;
}
}
}
char * result;
Address translatedAddress;
switch (flag1) {
case REG:
case SP:
case BP:
case IP:
case PTBR:
case PTLR:
case EIP:
case EC:
case EPN:
case EMA:
return reg[r];
break;
case NUM:
result = malloc(WORD_SIZE);
sprintf(result, "%d", r);
return result;
break;
case STRING:
return string;
break;
case MEM_REG:
if (getType(reg[r]) == TYPE_STR) {
raiseException(newException(EX_ILLOPERAND, "String value supplied in lieu of Memory Address", 0));
return NULL;
}
e = isRestrictedMemoryLocation(getInteger(reg[r]));
if (e.code != EX_NONE) {
raiseException(e);
return NULL;
}
return getWordFromMemoryLocation(getInteger(reg[r]));
break;
case MEM_SP:
case MEM_BP:
return getWordFromMemoryLocation(getInteger(reg[r]));
break;
case MEM_PTBR:
case MEM_PTLR:
return getWordFromMemoryLocation(getInteger(reg[r]));
break;
case MEM_IP:
case MEM_DIR_IP:
raiseException(newException(EX_ILLOPERAND, "Cannot use memory reference with IP in any mode", 0));
return NULL;
break;
case MEM_EIP:
case MEM_DIR_EIP:
raiseException(newException(EX_ILLOPERAND, "Cannot use memory reference with EIP in any mode", 0));
return NULL;
break;
case MEM_EC:
case MEM_DIR_EC:
raiseException(newException(EX_ILLOPERAND, "Cannot use memory reference with EC in any mode", 0));
return NULL;
break;
case MEM_EPN:
case MEM_DIR_EPN:
raiseException(newException(EX_ILLOPERAND, "Cannot use memory reference with EPN in any mode", 0));
return NULL;
break;
case MEM_EMA:
case MEM_DIR_EMA:
raiseException(newException(EX_ILLOPERAND, "Cannot use memory reference with EMA in any mode", 0));
return NULL;
break;
case MEM_DIR:
return getWordFromMemoryLocation(r);
break;
case MEM_DIR_REG:
if (getType(reg[flag2]) == TYPE_STR) {
raiseException(newException(EX_ILLOPERAND, "Illegal register value", 0));
return NULL;
}
r += getInteger(reg[flag2]);
e = isRestrictedMemoryLocation(r);
if (e.code != EX_NONE) {
raiseException(e);
return NULL;
}
return getWordFromMemoryLocation(r);
break;
case MEM_DIR_SP:
case MEM_DIR_BP:
case MEM_DIR_PTBR:
case MEM_DIR_PTLR:
r += getInteger(reg[flag2]);
e = isRestrictedMemoryLocation(r);
if (e.code != EX_NONE) {
raiseException(e);
return NULL;
}
return getWordFromMemoryLocation(r);
break;
case MEM_DIR_IN:
r += flag2;
e = isRestrictedMemoryLocation(r);
if (e.code != EX_NONE) {
raiseException(e);
return NULL;
}
return getWordFromMemoryLocation(r);
break;
default:
raiseException(newException(EX_ILLOPERAND, "Illegal Source Operand", 0));
return NULL;
break;
}
}
int storeValue(int r, int flag1, int flag2, char * value) {
Exception e = isSafeState2();
if (e.code != EX_NONE) {
raiseException(e);
return 0;
}
if (flag1 != NUM && flag1 != STRING && flag1 != MEM_DIR) {
if (flag1 != MEM_DIR_IN) {
int reg = (flag2 != ILLREG) ? flag2 : r;
e = isRegisterInaccessible(reg);
if (e.code != EX_NONE) {
raiseException(e);
return 0;
}
}
}
switch (flag1) {
case REG:
case SP:
case BP:
case PTBR:
case PTLR:
strcpy(reg[r], value);
return 1;
break;
case IP:
raiseException(newException(EX_ILLOPERAND, "Cannot alter read-only register IP", 0));
return 0;
break;
case EIP:
raiseException(newException(EX_ILLOPERAND, "Illegal operand EIP. Cannot alter readonly register", 0));
return 0;
break;
case EC:
raiseException(newException(EX_ILLOPERAND, "Illegal operand EC. Cannot alter readonly register", 0));
return 0;
break;
case EPN:
raiseException(newException(EX_ILLOPERAND, "Illegal operand EPN. Cannot alter readonly register", 0));
return 0;
break;
case EMA:
raiseException(newException(EX_ILLOPERAND, "Illegal operand EMA. Cannot alter readonly register", 0));
return 0;
break;
case MEM_REG:
if (getType(reg[r]) == TYPE_STR) {
raiseException(newException(EX_ILLOPERAND, "String value supplied in lieu of Memory Address", 0));
return 0;
}
e = isRestrictedMemoryLocation(getInteger(reg[r]));
if (e.code != EX_NONE) {
raiseException(e);
return 0;
}
return storeWordToMemoryLocation(getInteger(reg[r]), value);
break;
case MEM_SP:
case MEM_BP:
case MEM_PTBR:
case MEM_PTLR:
return storeWordToMemoryLocation(getInteger(reg[r]), value);
break;
case MEM_IP:
case MEM_DIR_IP:
raiseException(newException(EX_ILLOPERAND, "Cannot use memory reference with IP in any mode", 0));
return 0;
break;
case MEM_EIP:
case MEM_DIR_EIP:
raiseException(newException(EX_ILLOPERAND, "Cannot use memory reference with EIP in any mode", 0));
return 0;
break;
case MEM_EC:
case MEM_DIR_EC:
raiseException(newException(EX_ILLOPERAND, "Cannot use memory reference with EC in any mode", 0));
return 0;
break;
case MEM_EPN:
case MEM_DIR_EPN:
raiseException(newException(EX_ILLOPERAND, "Cannot use memory reference with EPN in any mode", 0));
return 0;
break;
case MEM_EMA:
case MEM_DIR_EMA:
raiseException(newException(EX_ILLOPERAND, "Cannot use memory reference with EMA in any mode", 0));
return 0;
break;
case MEM_DIR:
e = isRestrictedMemoryLocation(r);
if (e.code != EX_NONE) {
raiseException(e);
return 0;
}
return storeWordToMemoryLocation(r, value);
break;
case MEM_DIR_REG:
if (getType(reg[flag2]) == TYPE_STR) {
raiseException(newException(EX_ILLOPERAND, "Illegal register value", 0));
return 0;
}
r += getInteger(reg[flag2]);
e = isRestrictedMemoryLocation(r);
if (e.code != EX_NONE) {
raiseException(e);
return 0;
}
return storeWordToMemoryLocation(r, value);
break;
case MEM_DIR_SP:
case MEM_DIR_BP:
case MEM_DIR_PTBR:
case MEM_DIR_PTLR:
r += getInteger(reg[flag2]);
e = isRestrictedMemoryLocation(r);
if (e.code != EX_NONE) {
raiseException(e);
return 0;
}
return storeWordToMemoryLocation(r, value);
break;
case MEM_DIR_IN:
r += flag2;
e = isRestrictedMemoryLocation(r);
if (e.code != EX_NONE) {
raiseException(e);
return 0;
}
return storeWordToMemoryLocation(r, value);
break;
default:
raiseException(newException(EX_ILLOPERAND, "Illegal Target Operand", 0));
return 0;
break;
}
}
int performArithmetic(int X, int flagX, int Y, int flagY, int operation) {
int valueX, valueY;
Exception e = isSafeState2();
if (e.code != EX_NONE) {
raiseException(e);
return 0;
}
switch (flagX) {
case REG:
case SP:
case BP:
case PTBR:
case PTLR:
e = isRegisterInaccessible(X);
if (e.code != EX_NONE) {
raiseException(e);
return 0;
}
if (getType(reg[X]) == TYPE_STR) {
raiseException(newException(EX_ILLOPERAND, "Illegal operand", 0));
return 0;
}
valueX = X;
break;
case IP:
raiseException(newException(EX_ILLOPERAND, "Illegal operand IP. Cannot alter readonly register", 0));
return 0;
break;
case EIP:
raiseException(newException(EX_ILLOPERAND, "Illegal operand EIP. Cannot alter readonly register", 0));
return 0;
break;
case EC:
raiseException(newException(EX_ILLOPERAND, "Illegal operand EC. Cannot alter readonly register", 0));
return 0;
break;
case EPN:
raiseException(newException(EX_ILLOPERAND, "Illegal operand EPN. Cannot alter readonly register", 0));
return 0;
break;
case EMA:
raiseException(newException(EX_ILLOPERAND, "Illegal operand EMA. Cannot alter readonly register", 0));
return 0;
break;
default:
raiseException(newException(EX_ILLOPERAND, "Illegal operand", 0));
return 0;
break;
}
if (operation != INR && operation != DCR) {
switch (flagY) {
case REG:
case SP:
case BP:
case PTBR:
case PTLR:
e = isRegisterInaccessible(Y);
if (e.code != EX_NONE) {
raiseException(e);
return 0;
}
if (getType(reg[Y]) == TYPE_STR) {
raiseException(newException(EX_ILLOPERAND, "Illegal operand", 0));
return 0;
}
valueY = getInteger(reg[Y]);
break;
case NUM:
valueY = Y;
break;
case IP:
raiseException(newException(EX_ILLOPERAND, "Illegal operand IP. Cannot alter readonly register", 0));
return 0;
break;
case EIP:
raiseException(newException(EX_ILLOPERAND, "Illegal operand EIP. Cannot alter readonly register", 0));
return 0;
break;
case EC:
raiseException(newException(EX_ILLOPERAND, "Illegal operand EC. Cannot alter readonly register", 0));
return 0;
break;
case EPN:
raiseException(newException(EX_ILLOPERAND, "Illegal operand EPN. Cannot alter readonly register", 0));
return 0;
break;
case EMA:
raiseException(newException(EX_ILLOPERAND, "Illegal operand EMA. Cannot alter readonly register", 0));
return 0;
break;
default:
raiseException(newException(EX_ILLOPERAND, "Illegal operand", 0));
return 0;
break;
}
}
switch (operation) {
case ADD:
storeInteger(reg[valueX], getInteger(reg[valueX]) + valueY);
break;
case SUB:
storeInteger(reg[valueX], getInteger(reg[valueX]) - valueY);
break;
case MUL:
storeInteger(reg[valueX], getInteger(reg[valueX]) * valueY);
break;
case DIV:
if (valueY == 0) {
raiseException(newException(EX_ILLOPERAND, "Divide by ZERO", 0));
return 0;
}
storeInteger(reg[valueX], getInteger(reg[valueX]) / valueY);
break;
case MOD:
if (valueY == 0) {
raiseException(newException(EX_ILLOPERAND, "Divide by ZERO", 0));
return 0;
}
storeInteger(reg[valueX], getInteger(reg[valueX]) % valueY);
break;
case INR:
storeInteger(reg[valueX], getInteger(reg[valueX]) + 1);
break;
case DCR:
storeInteger(reg[valueX], getInteger(reg[valueX]) - 1);
break;
default:
raiseException(newException(EX_ILLINSTR, "Illegal Instruction", 0));
return 0;
break;
}
return 1;
}
int performMOV(int X, int flagX1, int flagX2, int Y, int flagY1, int flagY2, char * value) {
char * resolvedValue = resolveOperand(Y, flagY1, flagY2, value);
if (resolvedValue == NULL) return 0;
if ((flagY1 == MEM_DIR_REG || flagY1 == MEM_DIR_SP || flagY1 == MEM_DIR_BP || flagY1 == MEM_DIR_PTBR || flagY1 == MEM_DIR_PTLR
|| flagY1 == MEM_DIR_IN) && (flagX1 == MEM_DIR_REG || flagX1 == MEM_DIR_SP || flagX1 == MEM_DIR_BP || flagX1 == MEM_DIR_PTBR
|| flagX1 == MEM_DIR_PTLR || flagX1 == MEM_DIR_IN)) {
raiseException(newException(EX_ILLOPERAND, "Illegal Operands", 0));
return 0;
}
return (storeValue(X, flagX1, flagX2, resolvedValue));
}
int performLogic(int X, int flagX, int Y, int flagY, int operation) {
int valueX, valueY;
Exception e = isSafeState2();
if (e.code != EX_NONE) {
raiseException(e);
return 0;
}
switch (flagX) {
case REG:
case SP:
case BP:
case PTBR:
case PTLR:
e = isRegisterInaccessible(X);
if (e.code != EX_NONE) {
raiseException(e);
return 0;
}
break;
case IP:
raiseException(newException(EX_ILLOPERAND, "Illegal operand IP. Cannot alter readonly register", 0));
return 0;
break;
case EIP:
raiseException(newException(EX_ILLOPERAND, "Illegal operand EIP. Cannot alter readonly register", 0));
return 0;
break;
case EC:
raiseException(newException(EX_ILLOPERAND, "Illegal operand EC. Cannot alter readonly register", 0));
return 0;
break;
case EPN:
raiseException(newException(EX_ILLOPERAND, "Illegal operand EPN. Cannot alter readonly register", 0));
return 0;
break;
case EMA:
raiseException(newException(EX_ILLOPERAND, "Illegal operand EMA. Cannot alter readonly register", 0));
return 0;
break;
default:
raiseException(newException(EX_ILLOPERAND, "Illegal operand", 0));
return 0;
break;
}
switch (flagY) {
case REG:
case SP:
case BP:
case PTBR:
case PTLR:
e = isRegisterInaccessible(Y);
if (e.code != EX_NONE) {
raiseException(e);
return 0;
}
break;
case IP:
raiseException(newException(EX_ILLOPERAND, "Illegal operand IP. Cannot alter readonly register", 0));
return 0;
break;
case EIP:
raiseException(newException(EX_ILLOPERAND, "Illegal operand EIP. Cannot alter readonly register", 0));
return 0;
break;
case EC:
raiseException(newException(EX_ILLOPERAND, "Illegal operand EC. Cannot alter readonly register", 0));
return 0;
break;
case EPN:
raiseException(newException(EX_ILLOPERAND, "Illegal operand EPN. Cannot alter readonly register", 0));
return 0;
break;
case EMA:
raiseException(newException(EX_ILLOPERAND, "Illegal operand EMA. Cannot alter readonly register", 0));
return 0;
break;
default:
raiseException(newException(EX_ILLOPERAND, "Illegal operand", 0));
return 0;
break;
}
if (getType(reg[X]) != getType(reg[Y])) {
raiseException(newException(EX_ILLOPERAND, "Operand Type Mismatch to logical expression", 0));
return 0;
}
switch (operation) {
case LT:
valueX = (getType(reg[X]) == TYPE_INT) ? (getInteger(reg[X]) < getInteger(reg[Y])) : (strcmp(reg[X], reg[Y]) < 0);
break;
case GT:
valueX = (getType(reg[X]) == TYPE_INT) ? (getInteger(reg[X]) > getInteger(reg[Y])) : (strcmp(reg[X], reg[Y]) > 0);
break;
case EQ:
valueX = (getType(reg[X]) == TYPE_INT) ? (getInteger(reg[X]) == getInteger(reg[Y])) : (!strcmp(reg[X], reg[Y]));
break;
case NE:
valueX = (getType(reg[X]) == TYPE_INT) ? (getInteger(reg[X]) != getInteger(reg[Y])) : (!!strcmp(reg[X], reg[Y]));
break;
case LE:
valueX = (getType(reg[X]) == TYPE_INT) ? (getInteger(reg[X]) <= getInteger(reg[Y])) : (strcmp(reg[X], reg[Y]) >= 0);
break;
case GE:
valueX = (getType(reg[X]) == TYPE_INT) ? (getInteger(reg[X]) >= getInteger(reg[Y])) : (strcmp(reg[X], reg[Y]) >= 0);
break;
default:
raiseException(newException(EX_ILLINSTR, "Illegal Instruction", 0));
return;
break;
}
storeInteger(reg[X], valueX);
return 1;
}
int performBranching(int X, int flagX, int Y, int flagY, int operation) {
int valueX, valueY;
Exception e = isSafeState2();
if (e.code != EX_NONE) {
raiseException(e);
return 0;
}
switch (operation) {
case JZ:
case JNZ:
switch (flagX) {
case REG:
case SP:
case BP:
case IP:
case PTBR:
case PTLR:
case EIP:
case EC:
case EPN:
case EMA:
e = isRegisterInaccessible(X);
if (e.code != EX_NONE) {
raiseException(e);
return 0;
}
break;
default:
raiseException(newException(EX_ILLOPERAND, "Illegal operand", 0));
return 0;
break;
}
if (flagY != NUM) {
raiseException(newException(EX_ILLOPERAND, "Illegal operand", 0));
return 0;
}
e = isRestrictedMemoryLocation(Y);
if (e.code != EX_NONE) {
raiseException(e);
return 0;
}
if ((getType(reg[X]) == TYPE_INT && operation == JZ && getInteger(reg[X]) == 0)
|| ((getType(reg[X]) == TYPE_STR) || (operation == JNZ && getInteger(reg[X])))) storeInteger(reg[IP_REG], Y);
else storeInteger(reg[IP_REG], getInteger(reg[IP_REG]) + WORDS_PER_INSTR);
break;
case JMP:
if (flagX != NUM) {
raiseException(newException(EX_ILLOPERAND, "Illegal operand", 0));
return 0;
}
e = isRestrictedMemoryLocation(X);
if (e.code != EX_NONE) {
raiseException(e);
return 0;
}
storeInteger(reg[IP_REG], X);
break;
default:
raiseException(newException(EX_ILLINSTR, "Illegal Instruction", 0));
return 0;
break;
}
return 1;
}
int performPush(int X, int flagX) {
Address T = translateAddress(getInteger(reg[SP_REG]) + 1);
if (T.page == -1 && T.word == -1) return 0;
Exception e;
switch (flagX) {
case REG:
case SP:
case BP:
case IP:
case PTBR:
case PTLR:
case EIP:
case EC:
case EPN:
case EMA:
e = isRegisterInaccessible(X);
if (e.code != EX_NONE) {
raiseException(e);
return 0;
}
if (storeWordToAddress(T, reg[X])) {
storeInteger(reg[SP_REG], getInteger(reg[SP_REG]) + 1);
return 1;
} else return 0;
break;
default:
raiseException(newException(EX_ILLOPERAND, "Illegal Operand", 0));
return 0;
break;
}
}
int performPop(int X, int flagX) {
char * value;
Exception e;
Address T = translateAddress(getInteger(reg[SP_REG]));
if (T.page == -1 && T.word == -1) return 0;
switch (flagX) {
case REG:
e = isRegisterInaccessible(X);
if (e.code != EX_NONE) {
raiseException(e);
return 0;
}
value = getWordFromAddress(T);
strcpy(reg[X], value);
storeInteger(reg[SP_REG], getInteger(reg[SP_REG]) - 1);
return 1;
break;
case IP:
raiseException(newException(EX_ILLOPERAND, "Illegal operand IP. Cannot alter readonly register", 0));
return 0;
break;
case EIP:
raiseException(newException(EX_ILLOPERAND, "Illegal operand EIP. Cannot alter readonly register", 0));
return 0;
break;
case EC:
raiseException(newException(EX_ILLOPERAND, "Illegal operand EC. Cannot alter readonly register", 0));
return 0;
break;
case EPN:
raiseException(newException(EX_ILLOPERAND, "Illegal operand EPN. Cannot alter readonly register", 0));
return 0;
break;
case EMA:
raiseException(newException(EX_ILLOPERAND, "Illegal operand EMA. Cannot alter readonly register", 0));
return 0;
break;
default:
raiseException(newException(EX_ILLOPERAND, "Illegal Operand", 0));
return 0;
break;
}
}
int performCall(int X, int flagX) {
Exception e = isSafeState2();
if (e.code != EX_NONE) {
raiseException(e);
return 0;
}
if (flagX != NUM) {
raiseException(newException(EX_ILLOPERAND, "Illegal operand", 0));
return 0;
}
e = isRestrictedMemoryLocation(X);
if (e.code != EX_NONE) {
raiseException(e);
return 0;
}
Address T = translateAddress(getInteger(reg[SP_REG]) + 1);
if (T.page == -1 && T.word == -1) return;
storeInteger(reg[SP_REG], getInteger(reg[SP_REG]) + 1);
storeInteger(page[T.page].word[T.word], getInteger(reg[IP_REG]) + WORDS_PER_INSTR);
storeInteger(reg[IP_REG], X);
return 1;
}
int performRet() {
Exception e = isSafeState2();
if (e.code != EX_NONE) {
raiseException(e);
return 0;
}
Address T = translateAddress(getInteger(reg[SP_REG]));
if (T.page == -1 && T.word == -1) return;
char * value = getWordFromAddress(T);
if (value == NULL || getType(value) == TYPE_STR) {
raiseException(newException(EX_ILLMEM, "Illegal return address", 0));
return 0;
}
int result = getInteger(value);
e = isRestrictedMemoryLocation(result);
if (e.code != EX_NONE) {
raiseException(e);
return 0;
}
storeInteger(reg[IP_REG], result);
storeInteger(reg[SP_REG], getInteger(reg[SP_REG]) - 1);
return 1;
}
int performINT(int X, int flagX) {
if (mode == KERNEL_MODE) {
raiseException(newException(EX_ILLINSTR, "Cannot call INT in KERNEL Mode", 0));
return 0;
}
if (flagX != NUM) {
raiseException(newException(EX_ILLOPERAND, "Illegal operand", 0));
return;
}
invokeInterrupt(X);
return 1;
}
int performIRET() {
if (mode == USER_MODE) {
raiseException(newException(EX_ILLINSTR, "Call to Privileged Instruction IRET in USER mode", 0));
return 0;
}
Exception e = isSafeState2();
if (e.code != EX_NONE) {
raiseException(e);
return 0;
}
mode = USER_MODE;
Address T = translateAddress(getInteger(reg[SP_REG]));
if (T.page == -1 && T.word == -1) {
mode = KERNEL_MODE;
return 0;
}
char * value = getWordFromAddress(T);
if (getType(value) == TYPE_STR) {
mode = KERNEL_MODE;
raiseException(newException(EX_ILLMEM, "Illegal return address", 0));
return 0;
}
int result = getInteger(value);
if (result < 0 || result >= getInteger(reg[PTLR_REG]) * PAGE_SIZE) {
mode = KERNEL_MODE;
raiseException(newException(EX_ILLMEM, "Illegal return address", 0));
return 0;
}
storeInteger(reg[IP_REG], result);
storeInteger(reg[SP_REG], getInteger(reg[SP_REG]) - 1);
return 1;
}