-
Notifications
You must be signed in to change notification settings - Fork 1
/
macro.c
174 lines (137 loc) · 2.82 KB
/
macro.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
/*
macro.c
handles macros
*/
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include "my.h"
#include "error.h"
#include "label.h"
#include "parser.h"
#include "global_vars.h"
int GetAtom(void);
extern int mainloop(int);
extern int cntMacroExpand;
char macrovars[16][16][80];
/*
DefineMacro
save all lines until ENDM
*/
static int recur = 0;
label_t macroName;
int DefineMacro(char *s)
{
if ( recur ){
++recur;
if ( recur > 2 ){
Error(MACRONESTED_ERR,"");
return 1;
}
return 0;
}
++recur;
macroName.len = (int)strlen(s);
strcpy(macroName.name,s);
macroName.line = Current.Line;
macroName.file = Current.File;
macroName.value = 0;//(long) Current.SrcPtr;
macroName.macro = Current.SrcPtr;
macroName.type = MACRO;
Current.Macro.Define=1;
return 0;
}
extern int error;
int EndDefineMacro(){
int dummy;
if ( --recur ){
return 0;
}
Current.Macro.Define = 0;
if ( ! DefineLabel(¯oName, &dummy) ){
return 1;
}
if ( dummy ) return Error(SYNTAX_ERR,"");
return 0;
}
int GetOperand(char * dst)
{
int StringFlag = 0;
int ParenFlag = 0;
int exit = FALSE;
char *ptr = dst;
if ( KillSpace() ){
while ( atom && !exit ) {
switch ( atom ){
case '"' :
StringFlag ^= 1;
*ptr++=atom;
break;
case '{' :
ParenFlag ++;
break;
case '}':
ParenFlag --;
break;
case ',':
if ( !StringFlag && !ParenFlag ){
exit = TRUE;
continue;
} else
*ptr++ = atom;
break;
case ';':
if ( !StringFlag && !ParenFlag ){
exit = TRUE;
continue;
} else
*ptr++ = atom;
break;
case SPACE:
if ( StringFlag || ParenFlag ){
*ptr++ = atom;
}
break;
default:
*ptr++ = atom;
}
GetAtom();
}
}
*ptr=0;
return ptr != dst;
}
extern void undefAllMacroLocals();
int CheckMacro(char * s)
{
int err = 0;
if ( Current.ifFlag && Current.switchFlag ){
int OpCnt = 0;
int save_atom = atom;
struct current_s save_Current = Current;
label_t *macro;
if ( FindMacro( s , ¯o) ) return -1;
//-> printf("Macro: (%s)\n",macro->name);
Current.Macro.Line = Current.Line;
Current.Macro.File = Current.File;
Current.Line = macro->line;
Current.File = macro->file;
Current.Macro.Name = macro->name;
Current.Macro.invoked = ++macro->count;
Current.SrcPtr = ((char *)macro->macro);
memset((char *)macrovars[Current.Macro.Processing],0,16*80);
do {
if ( GetOperand(macrovars[Current.Macro.Processing][OpCnt]) ||
atom == ',' ) OpCnt++;
}while ( TestAtom(',') && OpCnt <= 16);
// printf("%d macro-paras\n",OpCnt);
Current.Macro.NPara = OpCnt;
Current.Macro.Processing++;
undefAllMacroLocals();
++cntMacroExpand;
err = mainloop(0);
Current = save_Current;
atom = save_atom;
}
return err;
}