-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathutils.c
More file actions
260 lines (218 loc) · 5.55 KB
/
utils.c
File metadata and controls
260 lines (218 loc) · 5.55 KB
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
#include "data.h"
const char *regs[REGS_SIZE] = {"r0", "r1", "r2", "r3", "r4", "r5", "r6", "r7", "r8", "r9", "r10",
"r11", "r12", "r13", "r14", "r15"};
Bool isMacroOpening(char *s)
{
return !strcmp(s, "macro") ? True : False;
}
Bool isMacroClosing(char *s)
{
return !strcmp(s, "endm") ? True : False;
}
Bool isPossiblyUseOfMacro(char *s)
{
return !isLabelDeclaration(s) && !isOperation(s) && !isComment(s) && !isInstructionStrict(s) && !isMacroClosing(s) && !isMacroOpening(s);
}
Bool isLegalMacroName(char *s)
{
return !isInstructionStrict(s) && !isOperation(s) ? True : False;
}
Bool isInstruction(char *s)
{
if ((!strcmp(s, DATA) || !strcmp(s, STRING) || !strcmp(s, ENTRY) || !strcmp(s, EXTERNAL)))
return True;
else if (strstr(s, DATA) != NULL || strstr(s, STRING) != NULL || strstr(s, ENTRY) != NULL || strstr(s, EXTERNAL) != NULL)
{
/* yieldError(missinSpaceAfterInstruction); */
return True;
}
else
return False;
}
Bool isInstructionStrict(char *s)
{
return ((!strcmp(s, DATA) || !strcmp(s, STRING) || !strcmp(s, ENTRY) || !strcmp(s, EXTERNAL))) ? True : False;
}
Bool isRegistery(char *s)
{
int len = strlen(s);
int i = 0;
if (s[0] == 'r' && len >= 2)
{
while (i < REGS_SIZE)
{
if ((strcmp(regs[i], s) == 0))
return True;
i++;
}
}
return False;
}
Bool isValidImmediateParamter(char *s)
{
int i, len = strlen(s);
if (len < 2 || s[0] != '#' || (!(s[1] == '-' || s[1] == '+' || isdigit(s[1]))))
return False;
for (i = 2; i < len; i++)
if (!isdigit(s[i]))
return False;
return True;
}
Bool isIndexParameter(char *s)
{
int len = strlen(s);
char *opening = 0, *closing = 0;
Bool result = True;
if (len < 5)
return False;
else if ((opening = strchr(s, '[')) == NULL || (closing = strchr(s, ']')) == NULL)
return False;
else if (closing < opening || (s[len - 1] != ']'))
return False;
else
{
opening++;
*closing = '\0';
if (!isRegistery(opening))
result = False;
*closing = ']';
}
return result;
}
Bool isValidIndexParameter(char *s)
{
int len = strlen(s);
Bool result = True;
if (len < 6)
return False;
else if (!(s[len - 1] == ']' && s[len - 4] == 'r' && s[len - 5] == '['))
return False;
else
{
char *opening = 0;
opening = strchr(s, '[');
opening++;
s[len - 1] = '\0';
if (isRegistery(opening) && getRegisteryNumber(opening) < 10)
{
result = False;
}
s[len - 1] = ']';
}
return result;
}
Bool isComment(char *s)
{
s = trimFromLeft(s);
return s[0] == ';' ? True : False;
}
Bool isOperation(char *s)
{
return (getOperationByName(s) != NULL) ? True : False;
}
Bool isLabelDeclarationStrict(char *s)
{
return s[strlen(s) - 1] == ':' ? True : False;
}
Bool isLabelDeclaration(char *s)
{
return strchr(s, ':') != NULL ? True : False;
}
int getInstructionType(char *s)
{
if (strstr(s, DATA) != NULL)
return _TYPE_DATA;
if (strstr(s, STRING) != NULL)
return _TYPE_STRING;
if (strstr(s, ENTRY) != NULL)
return _TYPE_ENTRY;
if (strstr(s, EXTERNAL) != NULL)
return _TYPE_EXTERNAL;
return False;
}
int getRegisteryNumber(char *s)
{
s++;
return atoi(s);
}
char *getInstructionNameByType(int type)
{
switch (type)
{
case _TYPE_DATA:
return strcat(DATA, "\0");
case _TYPE_STRING:
return strcat(STRING, "\0");
case _TYPE_ENTRY:
return strcat(ENTRY, "\0");
case _TYPE_EXTERNAL:
return strcat(EXTERNAL, "\0");
default:
break;
}
return NULL;
}
char *getInstructionName(char *s)
{
if (strstr(s, DATA) != NULL)
return DATA;
if (strstr(s, STRING) != NULL)
return STRING;
if (strstr(s, ENTRY) != NULL)
return ENTRY;
if (strstr(s, EXTERNAL) != NULL)
return EXTERNAL;
return 0;
}
Bool verifyLabelNaming(char *s)
{
int i = 0;
int labelLength = strlen(s);
/* if label name does not start with a alphabet letter */
if (isalpha(s[0]) == 0)
return False;
/* maximum label name length is 31 characters */
if (labelLength > MAX_LABEL_LEN || labelLength < 1)
return False;
if (isRegistery(s))
return False;
else if (isOperationName(s))
return False;
else
{
while (i < labelLength)
{
if (!isalnum(s[i]))
return False;
i++;
}
}
return True;
}
Bool verifyLabelNamingAndPrintErrors(char *s)
{
int i = 0;
int labelLength = strlen(s);
/* if label name does not start with a alphabet letter */
if (isalpha(s[0]) == 0)
return yieldError(illegalLabelNameUseOfCharacters);
/* maximum label name length is 31 characters */
else if (labelLength > MAX_LABEL_LEN)
return yieldError(illegalLabelNameLength);
else if (labelLength < 1)
return yieldError(illegalLabelNameLength);
else if (isRegistery(s))
return yieldError(illegalLabelNameUseOfSavedKeywordUsingRegisteryName);
else if (isOperationName(s))
return yieldError(illegalLabelNameUseOfSavedKeywordUsingOperationName);
else
{
while (i < labelLength)
{
if (!isalnum(s[i]))
return yieldError(illegalLabelNameUseOfCharacters);
i++;
}
}
return True;
}