-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
asmmac.c
432 lines (365 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
/* 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)
BEGIN
free(P->TransFrom);
free(P->TransTo);
free(P);
END
static void EnterDefine(char *Name, char *Definition)
BEGIN
PDefinement Neu;
int z,l;
if (NOT ChkSymbName(Name))
BEGIN
WrXError(1020,Name); return;
END;
Neu=FirstDefine;
while (Neu!=Nil)
BEGIN
if (strcmp(Neu->TransFrom,Name)==0)
BEGIN
if (PassNo==1) WrXError(1000,Name); return;
END;
Neu=Neu->Next;
END
Neu=(PDefinement) malloc(sizeof(TDefinement));
Neu->Next=FirstDefine;
Neu->TransFrom=strdup(Name); if (NOT CaseSensitive) NLS_UpString(Neu->TransFrom);
Neu->TransTo=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;
END
static void RemoveDefine(char *Name_O)
BEGIN
PDefinement Lauf,Del;
String Name;
strmaxcpy(Name,Name_O,255);
if (NOT CaseSensitive) NLS_UpString(Name);
Del=Nil;
if (FirstDefine!=Nil)
BEGIN
if (strcmp(FirstDefine->TransFrom,Name)==0)
BEGIN
Del=FirstDefine; FirstDefine=FirstDefine->Next;
END
else
BEGIN
Lauf=FirstDefine;
while ((Lauf->Next!=Nil) AND (strcmp(Lauf->Next->TransFrom,Name)!=0))
Lauf=Lauf->Next;
if (Lauf->Next!=Nil)
BEGIN
Del=Lauf->Next; Lauf->Next=Del->Next;
END
END
END
if (Del==Nil) WrXError(1010,Name);
else FreeDefine(Del);
END
void PrintDefineList(void)
BEGIN
PDefinement Lauf;
String OneS;
if (FirstDefine==Nil) return;
NewPage(ChapDepth,True);
WrLstLine(getmessage(Num_ListDefListHead1));
WrLstLine(getmessage(Num_ListDefListHead2));
WrLstLine("");
Lauf=FirstDefine;
while (Lauf!=Nil)
BEGIN
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;
END
WrLstLine("");
END
void ClearDefineList(void)
BEGIN
PDefinement Temp;
while (FirstDefine!=Nil)
BEGIN
Temp=FirstDefine; FirstDefine=FirstDefine->Next;
FreeDefine(Temp);
END
END
/*------------------------------------------------------------------------*/
/* Interface */
void Preprocess(void)
BEGIN
String h,Cmd,Arg;
char *p;
p=strchr(OneLine,'#')+1;
strmaxcpy(h,p,255);
p=FirstBlank(h);
if (p==Nil)
BEGIN
strmaxcpy(Cmd,h,255); *h='\0';
END
else SplitString(h,Cmd,h,p);
KillPrefBlanks(h); KillPostBlanks(h);
if (NOT IfAsm) return;
if (strcasecmp(Cmd,"DEFINE")==0)
BEGIN
p=FirstBlank(h);
if (p!=Nil)
BEGIN
SplitString(h,Arg,h,p); KillPrefBlanks(h);
EnterDefine(Arg,h);
END
END
else if (strcasecmp(Cmd,"UNDEF")==0) RemoveDefine(h);
CodeLen=0;
END
static Boolean ExpandDefines_NErl(char inp)
BEGIN
return (((inp>='0') AND (inp<='9')) OR ((inp>='A') AND (inp<='Z')) OR ((inp>='a') AND (inp<='z')));
END
#define t_toupper(ch) ((CaseSensitive) ? (ch) : (mytoupper(ch)))
void ExpandDefines(char *Line)
BEGIN
PDefinement Lauf;
sint LPos,Diff,p,p2,p3,z,z2,FromLen,ToLen,LineLen;
Lauf=FirstDefine;
while (Lauf!=Nil)
BEGIN
LPos=0; FromLen=strlen(Lauf->TransFrom); ToLen=strlen(Lauf->TransTo);
Diff=ToLen-FromLen;
do
BEGIN
/* Stelle, ab der verbatim, suchen -->p */
p=LPos;
while ((p<(int)strlen(Line)) AND (Line[p]!='\'') AND (Line[p]!='"')) p++;
/* nach Quellstring suchen, ersetzen, bis keine Treffer mehr */
p2=LPos;
do
BEGIN
z2=0;
while ((z2>=0) AND (p2<=p-FromLen))
BEGIN
z2=FromLen-1; z=p2+z2;
while ((z2>=0) AND (t_toupper(Line[z])==Lauf->TransFrom[z2]))
BEGIN
z2--; z--;
END
if (z2>=0) p2+=Lauf->Compiled[(unsigned int)t_toupper(Line[p2+FromLen-1])];
END
if (z2==-1)
BEGIN
if (((p2==0) OR (NOT ExpandDefines_NErl(Line[p2-1])))
AND ((p2+FromLen==p) OR (NOT ExpandDefines_NErl(Line[p2+FromLen]))))
BEGIN
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;
END
else p2+=FromLen;
END
END
while (z2==-1);
/* Endposition verbatim suchen */
p3=p+1; LineLen=strlen(Line);
while ((p3<LineLen) AND (Line[p3]!=Line[p])) p3++;
/* Zaehler entsprechend herauf */
LPos=p3+1;
END
while (LPos<=LineLen-FromLen);
Lauf=Lauf->Next;
END
END
/*=== Makrolistenverwaltung ===============================================*/
typedef struct _TMacroNode
{
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(1815,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 (NOT CaseSensitive) NLS_UpString(Neu->Name);
NewNode = (PMacroNode) malloc(sizeof(TMacroNode));
NewNode->Tree.Left = Nil; NewNode->Tree.Right = Nil;
NewNode->Tree.Name = 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 != Nil) Result = Lauf->Contents;
return Result;
}
Boolean FoundMacro(PMacroRec *Erg)
BEGIN
PSaveSection Lauf;
String Part;
strmaxcpy(Part,LOpPart,255); if (NOT CaseSensitive) NLS_UpString(Part);
if ((*Erg = FoundMacro_FNode(MomSectionHandle, Part))) return True;
Lauf = SectionStack;
while (Lauf != Nil)
{
if ((*Erg = FoundMacro_FNode(Lauf->Handle, Part))) return True;
Lauf = Lauf->Next;
}
return False;
END
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));
if (Complete)
{
free(*Alt); *Alt = Nil;
}
END
typedef struct
{
LongInt Sum;
Boolean cnt;
String OneS;
} TMacroListContext;
static void PrintMacroList_PNode(PTree Tree, void *pData)
BEGIN
PMacroNode Node = (PMacroNode)Tree;
TMacroListContext *pContext = (TMacroListContext*) pData;
String h;
strmaxcpy(h,Node->Contents->Name,255);
if (Node->Tree.Attribute!=-1)
BEGIN
strmaxcat(h,"[",255);
strmaxcat(h,GetSectionName(Node->Tree.Attribute),255);
strmaxcat(h,"]",255);
END
strmaxcat(pContext->OneS, h, 255);
if (strlen(h) < 37) strmaxcat(pContext->OneS, Blanks(37 - strlen(h)), 255);
if (NOT (pContext->cnt)) strmaxcat(pContext->OneS, " | ", 255);
else
BEGIN
WrLstLine(pContext->OneS); pContext->OneS[0]='\0';
END
pContext->cnt = NOT pContext->cnt;
pContext->Sum++;
END
void PrintMacroList(void)
{
TMacroListContext Context;
if (MacroRoot==Nil) 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)
BEGIN
MacroRoot=Nil;
END