forked from Macroassembler-AS/asl-releases
-
Notifications
You must be signed in to change notification settings - Fork 0
/
asmmac.c
485 lines (417 loc) · 10.5 KB
/
asmmac.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
/* asmmac.c */
/*****************************************************************************/
/* AS-Portierung */
/* */
/* Unterroutinen des Makroprozessors */
/* */
/* Historie: 16. 5.1996 Grundsteinlegung */
/* 1. 7.1998 Korrektur Boyer-Moore-Algorithmus, wenn Ungleichheit */
/* nicht direkt am Ende */
/* */
/*****************************************************************************/
#include "stdinc.h"
#include <string.h>
#include <ctype.h>
#include "nls.h"
#include "nlmessages.h"
#include "as.rsc"
#include "stringlists.h"
#include "strutil.h"
#include "chunks.h"
#include "trees.h"
#include "asmdef.h"
#include "asmsub.h"
#include "asmpars.h"
#include "asmif.h"
#include "asmmac.h"
PInputTag FirstInputTag;
POutputTag FirstOutputTag;
/*=== Praeprozessor =======================================================*/
/*-------------------------------------------------------------------------*/
/* Verwaltung define-Symbole */
static void FreeDefine(PDefinement P)
{
free(P->TransFrom);
free(P->TransTo);
free(P);
}
static void EnterDefine(char *Name, char *Definition)
{
PDefinement Neu;
int z, l;
if (!ChkSymbName(Name))
{
WrXError(ErrNum_InvSymName, Name);
return;
};
Neu = FirstDefine;
while (Neu)
{
if (!strcmp(Neu->TransFrom, Name))
{
if (PassNo == 1)
WrXError(ErrNum_DoubleDef, Name);
return;
}
Neu = Neu->Next;
}
Neu = (PDefinement) malloc(sizeof(TDefinement));
Neu->Next = FirstDefine;
Neu->TransFrom = as_strdup(Name);
if (!CaseSensitive)
NLS_UpString(Neu->TransFrom);
Neu->TransTo = as_strdup(Definition);
l = strlen(Name);
for (z = 0; z < 256; Neu->Compiled[z++] = l);
for (z = 0; z < l - 1; z++)
Neu->Compiled[(unsigned int)Neu->TransFrom[z]] = l - (z + 1);
FirstDefine = Neu;
}
static void RemoveDefine(char *Name_O)
{
PDefinement Lauf, Del;
String Name;
strmaxcpy(Name, Name_O, 255);
if (!CaseSensitive)
NLS_UpString(Name);
Del = NULL;
if (FirstDefine)
{
if (!strcmp(FirstDefine->TransFrom, Name))
{
Del = FirstDefine;
FirstDefine = FirstDefine->Next;
}
else
{
Lauf = FirstDefine;
while ((Lauf->Next) && (strcmp(Lauf->Next->TransFrom, Name)))
Lauf = Lauf->Next;
if (Lauf->Next)
{
Del = Lauf->Next;
Lauf->Next = Del->Next;
}
}
}
if (!Del)
WrXError(ErrNum_SymbolUndef, Name);
else
FreeDefine(Del);
}
void PrintDefineList(void)
{
PDefinement Lauf;
String OneS;
if (!FirstDefine)
return;
NewPage(ChapDepth, True);
WrLstLine(getmessage(Num_ListDefListHead1));
WrLstLine(getmessage(Num_ListDefListHead2));
WrLstLine("");
Lauf = FirstDefine;
while (Lauf)
{
strmaxcpy(OneS, Lauf->TransFrom, 255);
strmaxcat(OneS, Blanks(10 - (strlen(Lauf->TransFrom)%10)), 255);
strmaxcat(OneS, " = ", 255);
strmaxcat(OneS, Lauf->TransTo, 255);
WrLstLine(OneS);
Lauf = Lauf->Next;
}
WrLstLine("");
}
void ClearDefineList(void)
{
PDefinement Temp;
while (FirstDefine)
{
Temp = FirstDefine;
FirstDefine = FirstDefine->Next;
FreeDefine(Temp);
}
}
/*------------------------------------------------------------------------*/
/* Interface */
void Preprocess(void)
{
String h, Cmd, Arg;
char *p;
p = strchr(OneLine, '#') + 1;
strmaxcpy(h, p, 255);
p = FirstBlank(h);
if (!p)
{
strmaxcpy(Cmd, h, 255);
*h = '\0';
}
else
SplitString(h, Cmd, h, p);
KillPrefBlanks(h);
KillPostBlanks(h);
if (!IfAsm)
return;
if (!strcasecmp(Cmd, "DEFINE"))
{
p = FirstBlank(h);
if (p)
{
SplitString(h, Arg, h, p);
KillPrefBlanks(h);
EnterDefine(Arg, h);
}
}
else if (!strcasecmp(Cmd, "UNDEF"))
RemoveDefine(h);
else
WrXError(ErrNum_InvalidPrepDir, Cmd);
CodeLen = 0;
}
static Boolean ExpandDefines_NErl(char inp)
{
return (((inp >= '0') && (inp <= '9')) || ((inp >= 'A') && (inp <= 'Z')) || ((inp >= 'a') && (inp <= 'z')));
}
#define t_toupper(ch) ((CaseSensitive) ? (ch) : (mytoupper(ch)))
void ExpandDefines(char *Line)
{
PDefinement Lauf;
sint LPos, Diff, p, p2, p3, z, z2, FromLen, ToLen, LineLen;
Lauf = FirstDefine;
while (Lauf)
{
LPos = 0;
FromLen = strlen(Lauf->TransFrom);
ToLen = strlen(Lauf->TransTo);
Diff = ToLen - FromLen;
do
{
/* Stelle, ab der verbatim, suchen -->p */
p = LPos;
while ((p < (int)strlen(Line)) && (Line[p] != '\'') && (Line[p] != '"'))
p++;
/* nach Quellstring suchen, ersetzen, bis keine Treffer mehr */
p2 = LPos;
do
{
z2 = 0;
while ((z2 >= 0) && (p2 <= p - FromLen))
{
z2 = FromLen - 1;
z = p2 + z2;
while ((z2 >= 0) && (t_toupper(Line[z]) == Lauf->TransFrom[z2]))
{
z2--;
z--;
}
if (z2 >= 0)
p2 += Lauf->Compiled[(unsigned int)t_toupper(Line[p2 + FromLen - 1])];
}
if (z2 == -1)
{
if (((p2 == 0) || (!ExpandDefines_NErl(Line[p2 - 1])))
&& ((p2 + FromLen == p) || (!ExpandDefines_NErl(Line[p2 + FromLen]))))
{
if (Diff != 0)
memmove(Line + p2 + ToLen, Line + p2 + FromLen, strlen(Line) - p2 - FromLen + 1);
memcpy(Line + p2, Lauf->TransTo, ToLen);
p += Diff; /* !!! */
p2 += ToLen;
}
else
p2 += FromLen;
}
}
while (z2 == -1);
/* Endposition verbatim suchen */
p3 = p + 1;
LineLen = strlen(Line);
while ((p3 < LineLen) && (Line[p3] != Line[p]))
p3++;
/* Zaehler entsprechend herauf */
LPos = p3 + 1;
}
while (LPos <= LineLen - FromLen);
Lauf = Lauf->Next;
}
}
/*=== Makrolistenverwaltung ===============================================*/
typedef struct sMacroNode
{
TTree Tree;
Boolean Defined;
PMacroRec Contents;
} TMacroNode, *PMacroNode;
static PMacroNode MacroRoot;
static Boolean MacroAdder(PTree *PDest, PTree Neu, void *pData)
{
PMacroNode NewNode = (PMacroNode) Neu, *Node;
Boolean Protest = *((Boolean*)pData), Result = False;
if (!PDest)
{
NewNode->Defined = TRUE;
return True;
}
Node = (PMacroNode*) PDest;
if ((*Node)->Defined)
{
if (Protest) WrXError(ErrNum_DoubleMacro, Neu->Name);
else
{
ClearMacroRec(&((*Node)->Contents), TRUE);
(*Node)->Contents = NewNode->Contents;
}
}
else
{
ClearMacroRec(&((*Node)->Contents), TRUE);
(*Node)->Contents = NewNode->Contents;
(*Node)->Defined = True;
return True;
}
return Result;
}
void AddMacro(PMacroRec Neu, LongInt DefSect, Boolean Protest)
{
PMacroNode NewNode;
PTree TreeRoot;
if (!CaseSensitive)
NLS_UpString(Neu->Name);
NewNode = (PMacroNode) malloc(sizeof(TMacroNode));
NewNode->Tree.Left = NULL;
NewNode->Tree.Right = NULL;
NewNode->Tree.Name = as_strdup(Neu->Name);
NewNode->Tree.Attribute = DefSect;
NewNode->Contents = Neu;
TreeRoot = &(MacroRoot->Tree);
EnterTree(&TreeRoot, &(NewNode->Tree), MacroAdder, &Protest);
MacroRoot = (PMacroNode)TreeRoot;
}
static PMacroRec FoundMacro_FNode(LongInt Handle, char *Part)
{
PMacroNode Lauf;
PMacroRec Result = NULL;
Lauf = (PMacroNode) SearchTree((PTree)MacroRoot, Part, Handle);
if (Lauf)
Result = Lauf->Contents;
return Result;
}
Boolean FoundMacro(PMacroRec *Erg)
{
PSaveSection Lauf;
String Part;
strmaxcpy(Part, LOpPart, 255);
if (!CaseSensitive)
NLS_UpString(Part);
*Erg = FoundMacro_FNode(MomSectionHandle, Part);
if (*Erg)
return True;
Lauf = SectionStack;
while (Lauf)
{
*Erg = FoundMacro_FNode(Lauf->Handle, Part);
if (*Erg)
return True;
Lauf = Lauf->Next;
}
return False;
}
static void ClearMacroList_ClearNode(PTree Tree, void *pData)
{
PMacroNode Node = (PMacroNode) Tree;
UNUSED(pData);
ClearMacroRec(&(Node->Contents), TRUE);
}
void ClearMacroList(void)
{
PTree TreeRoot;
TreeRoot = &(MacroRoot->Tree);
MacroRoot = NULL;
DestroyTree(&TreeRoot, ClearMacroList_ClearNode, NULL);
}
static void ResetMacroDefines_ResetNode(PTree Tree, void *pData)
{
PMacroNode Node = (PMacroNode)Tree;
UNUSED(pData);
Node->Defined = False;
}
void ResetMacroDefines(void)
{
IterTree((PTree)MacroRoot, ResetMacroDefines_ResetNode, NULL);
}
void ClearMacroRec(PMacroRec *Alt, Boolean Complete)
{
if ((*Alt)->Name)
{
free((*Alt)->Name);
(*Alt)->Name = NULL;
}
ClearStringList(&((*Alt)->FirstLine));
ClearStringList(&((*Alt)->ParamNames));
ClearStringList(&((*Alt)->ParamDefVals));
if (Complete)
{
free(*Alt);
*Alt = NULL;
}
}
typedef struct
{
LongInt Sum;
Boolean cnt;
String OneS;
} TMacroListContext;
static void PrintMacroList_PNode(PTree Tree, void *pData)
{
PMacroNode Node = (PMacroNode)Tree;
TMacroListContext *pContext = (TMacroListContext*) pData;
String h;
strmaxcpy(h, Node->Contents->Name, 255);
if (Node->Tree.Attribute != -1)
{
strmaxcat(h, "[", 255);
strmaxcat(h, GetSectionName(Node->Tree.Attribute), 255);
strmaxcat(h, "]", 255);
}
strmaxcat(pContext->OneS, h, 255);
if (strlen(h) < 37)
strmaxcat(pContext->OneS, Blanks(37 - strlen(h)), 255);
if (!(pContext->cnt))
strmaxcat(pContext->OneS, " | ", 255);
else
{
WrLstLine(pContext->OneS);
pContext->OneS[0] = '\0';
}
pContext->cnt = !pContext->cnt;
pContext->Sum++;
}
void PrintMacroList(void)
{
TMacroListContext Context;
if (!MacroRoot)
return;
NewPage(ChapDepth, True);
WrLstLine(getmessage(Num_ListMacListHead1));
WrLstLine(getmessage(Num_ListMacListHead2));
WrLstLine("");
Context.OneS[0] = '\0';
Context.cnt = False;
Context.Sum = 0;
IterTree((PTree)MacroRoot, PrintMacroList_PNode, &Context);
if (Context.cnt)
{
Context.OneS[strlen(Context.OneS) - 1] = '\0';
WrLstLine(Context.OneS);
}
WrLstLine("");
sprintf(Context.OneS, "%7lu%s",
(unsigned long)Context.Sum,
getmessage((Context.Sum == 1) ? Num_ListMacSumMsg : Num_ListMacSumsMsg));
WrLstLine(Context.OneS);
WrLstLine("");
}
/*=== Eingabefilter Makroprozessor ========================================*/
void asmmac_init(void)
{
MacroRoot = NULL;
}