-
Notifications
You must be signed in to change notification settings - Fork 5
/
as2.c
230 lines (209 loc) · 3.34 KB
/
as2.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
/*
* Z-80 assembler.
* Symbol table routines
* and error handling.
*/
#include "as.h"
/*
* Given a pointer to a
* sumbol, compute the hash bucket
* number. The "add all the characters
* and take the result modulo the table
* size" algorithm is used.
*/
int symhash(char *id)
{
int hash;
int n;
hash = 0;
n = NCPS;
do {
hash += *id++;
} while (--n);
return (hash&HMASK);
}
static void errstr(uint8_t code)
{
if (code < 10) {
printf("%c expected.\n", "),]%"[code-1]);
return;
}
printf("%s.\n", etext[code - 10]);
}
/*
* Handle an error.
* If no listing file, write out
* the error directly. Otherwise save
* the error in the error buffer.
*
* Will need tweaking once we support .include as we must show the file
* name then. TODO
*/
void err(char c, uint8_t code)
{
if (pass > 1) {
printf("%s: %d: %c: ", fname, line, toupper(c));
errstr(code);
noobj = 1;
}
if (c == 'q')
longjmp(env, 1);
}
/*
* Not really an error any more (we resolve at link time)
*/
void uerr(char *id)
{
}
/*
* The "a" error is common.
*/
void aerr(uint8_t code)
{
err('a', code);
}
/*
* Ditto the "q" error.
*/
void qerr(uint8_t code)
{
err('q', code);
}
/*
* The next character
* in the input must be a comma
* or it is a fatal error.
*/
void comma(void)
{
if (getnb() != ',')
qerr(MISSING_COMMA);
}
/*
* Read identifier.
* The character "c" is the first
* character of the name.
*/
void getid(char *id, int c)
{
char *p;
if (c < 0) {
c = getnb();
if (isalpha(c) == 0 && c != '_' && c != '.')
qerr(INVALID_ID);
}
p = &id[0];
do {
if (p < &id[NCPS]) {
*p++ = c;
}
if ((c = *ip) != '\n')
++ip;
} while (c=='\'' || isalnum(c)!=0 || c == '_');
if (c != '\n')
--ip;
while (p < &id[NCPS])
*p++ = 0;
}
/*
* Lookup symbol in
* hash table "htable".
* If not there, and "cf" is
* true, create it.
*/
SYM *lookup(char *id, SYM *htable[], int cf)
{
SYM *sp;
int hash;
hash = symhash(id);
sp = htable[hash];
while (sp != NULL) {
if (symeq(id, sp->s_id))
return (sp);
sp = sp->s_fp;
}
if (cf != 0) {
if ((sp=(SYM *)malloc(sizeof(SYM))) == NULL) {
fprintf(stderr, "No memory\n");
exit(BAD);
}
sp->s_fp = htable[hash];
htable[hash] = sp;
sp->s_type = TNEW;
sp->s_value = 0;
sp->s_segment = UNKNOWN;
sp->s_number = -1;
symcopy(sp->s_id, id);
}
return (sp);
}
/*
* Compare two names.
* Each are blocks of "NCPS"
* bytes. True return if the names
* are exactly equal.
*/
int symeq(char *p1, char *p2)
{
int n;
n = NCPS;
do {
if (*p1++ != *p2++)
return (0);
} while (--n);
return (1);
}
/*
* Copy the characters
* that make up the name of a
* symbol.
*/
void symcopy(char *p1, char *p2)
{
int n;
n = NCPS;
do {
*p1++ = *p2++;
} while (--n);
}
/*
* Get the next character
* from the input buffer. Do not
* step past the newline.
*/
int get(void)
{
int c;
if ((c = *ip) != '\n' && c)
++ip;
/* Lose any \r\n from confused DOS file formats */
if (c == '\r' || c == 0)
return '\n';
return (c);
}
/*
* Get the next non
* whitespace character from
* the input buffer. Do not step
* past the newline.
*/
int getnb(void)
{
int c;
while ((c = *ip)==' ' || c=='\t' || c == '\r')
++ip;
if (c && c != '\n')
++ip;
/* Incomplete final line */
if (c == 0)
return '\n';
return (c);
}
/*
* Put a character back.
*/
void unget(int c)
{
if (c != '\n')
--ip;
}