-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSecondPassParametersCoding.c
209 lines (167 loc) · 5.73 KB
/
SecondPassParametersCoding.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
#include "declarationsHeader.h"
extern paramsPtr paramsListHead;
extern symPtr symTableHead;
extern struct keyWords keys[];
boolean firstParamCoded, isParamOneReg, isParamTwoReg;
boolean isNotImmediate, isSecondParamAvailable, isBinAction;
char firstParam[SYM_SIZE], secondParam[SYM_SIZE];
char cmd[CMD_LENGTH], strWord[MEM_WORD_LEN], temp[STRING_SIZE];
unsigned int reg1Num = 0, reg2Num = 0;
void codeParameters() {
paramsPtr ptr = paramsListHead;
resetFlags();
if (noParameters(cmd))
return;
syncParametersToLine(&ptr);
if (errorInLine(ptr))
return;
copyParameters(ptr);
if (codingParametersSuccessful(ptr))
return;
printErrorWithComment(undef_parameter, secondParam);
}
boolean codingParametersSuccessful(paramsPtr ptr) {
size_t paramsNum = getNumberOfParametersInLine();
if (codedAsBothParametersAreRegisters())
return TRUE;
codedAsFirstParamIsLabel();
codedAsFirstParameterIsNumber(ptr);
codedAsFirstParameterIsRegister();
if (paramsNum == 1) /*No need to further check*/
return TRUE;
if (!firstParamCoded)/*Checking if we had trouble coding parameter 1.*/
printErrorWithComment(undef_parameter, firstParam);
if (codedAsSecondParameterIsLabel())
return TRUE;
if (codedAsSecondParameterIsNumber(ptr))
return TRUE;
if (codedAsSecondParameterIsRegister())
return TRUE;
return FALSE;
}
boolean codedAsSecondParameterIsRegister() {
Word machWord;
if (isParamTwoReg) {
MAKE_NEW_WORD
paramIsARegisterSetting(&machWord, reg2Num, FALSE, isBinAction);
memWordToString(machWord, INT_NUM_ADD, 0, 0, strWord, secondParam);
addToInsList(&machWord, strWord, secondParam);
return TRUE;
}
return FALSE;
}
boolean codedAsSecondParameterIsNumber(paramsPtr ptr) {
Word machWord;
if (strchr((secondParam), IMMEDIATE_METHOD_ID) ||
((atoi(secondParam) != 0 && ++isNotImmediate))) {
if (strcmp(cmd, "prn") != EQUAL && strcmp(cmd, "cmp") != EQUAL) {
printErrorWithComment(dst_meth0_illegal, secondParam);
return TRUE;
}
MAKE_NEW_WORD
paramIsANumberSetting(&machWord, ptr->secondParam, isNotImmediate);
memWordToString(machWord, INT_NUM_ADD, 0, 0, strWord, secondParam);
addToInsList(&machWord, strWord, secondParam);
return TRUE;
}
return FALSE;
}
boolean codedAsSecondParameterIsLabel() {
symPtr sPtr;
Word machWord;
for (sPtr = symTableHead; sPtr; sPtr = sPtr->next) {
if (strcmp(secondParam, sPtr->symName) == EQUAL) {
MAKE_NEW_WORD
paramIsALabelSetting(&machWord, &sPtr);
memWordToString(machWord, INT_NUM_ADD, 0, 0, strWord, secondParam);
addToInsList(&machWord, strWord, secondParam);
return TRUE;
}
}
return FALSE;
}
void codedAsFirstParameterIsRegister() {
Word machWord;
if (isParamOneReg) {
MAKE_NEW_WORD
paramIsARegisterSetting(&machWord, reg1Num, TRUE, isBinAction);
memWordToString(machWord, INT_NUM_ADD, 0, 0, strWord, firstParam);
addToInsList(&machWord, strWord, firstParam);
firstParamCoded = TRUE;
}
}
void codedAsFirstParameterIsNumber(paramsPtr ptr) {
Word machWord;
if (strchr((firstParam), IMMEDIATE_METHOD_ID) ||
((atoi(firstParam) != 0 && ++isNotImmediate))) {
MAKE_NEW_WORD
paramIsANumberSetting(&machWord, ptr->firstParam, isNotImmediate);
memWordToString(machWord, INT_NUM_ADD, 0, 0, strWord, firstParam);
addToInsList(&machWord, strWord, firstParam);
firstParamCoded = TRUE;
}
}
void resetFlags() {
firstParamCoded = FALSE;
isParamOneReg = FALSE;
isParamTwoReg = FALSE;
isNotImmediate = FALSE;
isSecondParamAvailable = FALSE;
isBinAction = FALSE;
reg1Num = 0;
reg2Num = 0;
getCommand(cmd);
isBinAction = isBinaryAction(cmd);
}
void codedAsFirstParamIsLabel() {
symPtr sPtr = symTableHead;
Word machWord;
while (sPtr && !firstParamCoded) {
if (strcmp(firstParam, sPtr->symName) == EQUAL) {
MAKE_NEW_WORD
paramIsALabelSetting(&machWord, &sPtr);
memWordToString(machWord, INT_NUM_ADD, 0, 0, strWord, firstParam);
addToInsList(&machWord, strWord, firstParam);
firstParamCoded = TRUE;
}
sPtr = sPtr->next;
}
}
boolean codedAsBothParametersAreRegisters() {
int i = 0, j, k;
const unsigned int firstRegister = 20;
Word machWord;
boolean isReg1Found = FALSE, isReg2Found = FALSE;
isSecondParamAvailable = strlen(secondParam) == 0 ? FALSE : TRUE;
for (i = firstRegister; i < NUM_OF_KEYS; i++) {
if (!isReg1Found && strcmp(firstParam, keys[i].symbol) == EQUAL) {
isParamOneReg = TRUE;
reg1Num = keys[i].numValue;
isReg1Found = TRUE;
j = i;
}
if (!isReg2Found && isSecondParamAvailable && strcmp(secondParam, keys[i].symbol) == EQUAL) {
isParamTwoReg = TRUE;
reg2Num = keys[i].numValue;
isReg2Found = TRUE;
k = i;
}
}
if (isParamOneReg && isParamTwoReg) {
MAKE_NEW_WORD
bothParamsAreRegistersSetting(&machWord, reg1Num, reg2Num);
strcpy(temp, keys[j].symbol);
strcat(temp, keys[k].symbol);
memWordToString(machWord, INT_NUM_REG, machWord->reg1, machWord->reg2, strWord, temp);
addToInsList(&machWord, strWord, temp);
return TRUE;
}
return FALSE;
}
boolean errorInLine(paramsPtr ptr) {
return ptr == NULL ? TRUE : FALSE;
}
void copyParameters(paramsPtr ptr) {
strcpy(firstParam, ptr->firstParam);
strcpy(secondParam, ptr->secondParam);
}