forked from lamproae/ncc
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathlex.C
480 lines (419 loc) · 9.31 KB
/
lex.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
/******************************************************************************
C/C++ lexcial analyser on preprocessed source
******************************************************************************/
#include <string.h>
#include <stdlib.h>
#include <stdio.h>
#include <ctype.h>
#include "global.h"
token CTok;
int &line = CTok.at_line;
static char *Cpp;
static int Ci, Clen;
/******************************************************************************
Maybe this is faster than ctype.h macros
The first 127 ASCII characters is a universal constant.
******************************************************************************/
static char ll_ctypes [256];
static void initctypes ()
{
#define SET(x,y) ll_ctypes [(int)x] = y;
SET('A',2) SET('B',2) SET('C',2) SET('D',2) SET('E',2) SET('F',3) SET('G',2)
SET('H',2) SET('I',2) SET('J',2) SET('K',2) SET('L',3) SET('M',2) SET('N',2)
SET('O',2) SET('P',2) SET('Q',2) SET('R',2) SET('S',2) SET('T',2) SET('U',3)
SET('V',2) SET('W',2) SET('X',2) SET('Y',2) SET('Z',2)
SET('a',2) SET('b',2) SET('c',2) SET('d',2) SET('e',2) SET('f',3) SET('g',2)
SET('h',2) SET('i',2) SET('j',2) SET('k',2) SET('l',3) SET('m',2) SET('n',2)
SET('o',2) SET('p',2) SET('q',2) SET('r',2) SET('s',2) SET('t',2) SET('u',3)
SET('v',2) SET('w',2) SET('x',2) SET('y',2) SET('z',2)
SET('_',2)
SET('0',1) SET('1',1) SET('2',1) SET('3',1) SET('4',1) SET('5',1) SET('6',1)
SET('7',1) SET('8',1) SET('9',1)
}
#define ISNIEND(x) (ll_ctypes [(int)x] == 3)
#define ISALPHA(x) (ll_ctypes [(int)x] >= 2)
#define ISDIGIT(x) (ll_ctypes [(int)x] == 1)
#define ISALNUM(x) (ll_ctypes [(int)x] != 0)
/******************************************************************************
Unwindable lex exceptional error conditions
******************************************************************************/
class EOFC {
public:
EOFC(const char*);
};
EOFC::EOFC (const char *c)
{
fprintf (stderr, "Unterminated %s near token %i\n", c, Ci);
}
/***************************************************************************
Start of Token Parser Routines
***************************************************************************/
static inline void skip_ws ()
{
for (;;) {
for (;;) {
if (Cpp [Ci] == ' ' || Cpp [Ci] == '\t') {
if (++Ci >= Clen) return;
continue;
}
if (Cpp [Ci] == '\n') {
++line;
if (++Ci >= Clen) return;
continue;
}
break;
}
#if 0
if (Cpp [Ci] == '\\' && Cpp [Ci + 1] == '\n') {
Ci += 2;
++line;
continue;
}
#endif
break;
}
}
static inline void get_ident ()
{
CTok.type = IDENT_DUMMY;
CTok.p = &Cpp [Ci];
while (ISALNUM (Cpp [Ci]))
if (++Ci >= Clen) break;
CTok.len = &Cpp [Ci] - CTok.p;
}
static char EOFstring [] = " string literal";
static void get_string ()
{
CTok.type = STRING;
CTok.p = &Cpp [++Ci];
for (;;) {
while (Cpp [Ci] != '\\' && Cpp [Ci] != '"')
if (++Ci >= Clen) throw EOFC (EOFstring);
if (Cpp [Ci] == '\\') {
Ci += 2;
if (Ci >= Clen) throw EOFC (EOFstring);
continue;
}
break;
}
CTok.len = &Cpp [Ci] - CTok.p;
++Ci;
}
static inline void get_exponent ()
{
++Ci;
if (Cpp [Ci] == '-' || Cpp [Ci] == '+') Ci++;
while (ISDIGIT (Cpp [Ci]))
if (++Ci >= Clen) break;
}
static inline void get_float_frac ()
{
// The token pointer and length are already set to
// the decimal part, or this[char] && 0 if no decimal part
++Ci;
while (ISDIGIT (Cpp [Ci]))
if (++Ci >= Clen) break;
}
static char EOFchar [] = "character constant";
static void get_char_const ()
{
++Ci;
CTok.type = CCONSTANT;
CTok.p = &Cpp [Ci];
for (;;) {
while (Cpp [Ci] != '\\' && Cpp [Ci] != '\'')
if (++Ci >= Clen) throw EOFC (EOFchar);
if (Cpp [Ci] == '\\') {
Ci += 2;
if (Ci >= Clen) throw EOFC (EOFchar);
continue;
}
break;
}
CTok.len = &Cpp [Ci] - CTok.p;
if (CTok.len > 10) throw (EOFchar);
++Ci;
}
static inline void get_nconst ()
{
CTok.type = CONSTANT;
CTok.p = &Cpp [Ci];
while (isalnum (Cpp [Ci]))
if (++Ci >= Clen) break;
if (Cpp [Ci] == '.') {
get_float_frac ();
CTok.type = FCONSTANT;
}
if (Cpp [Ci] == 'e' || Cpp [Ci] == 'E' || Cpp [Ci] == 'p') {
get_exponent ();
CTok.type = FCONSTANT;
}
while (ISNIEND (Cpp [Ci]))
if (++Ci >= Clen) break;
CTok.len = &Cpp [Ci] - CTok.p;
}
/***************************************************************************
Little utils
***************************************************************************/
static void grle_morph ()
{
char gl = Cpp [Ci];
CTok.p = &Cpp [Ci];
++Ci;
if (Cpp [Ci] == gl) {
++Ci;
if (Cpp [Ci] == '=') {
++Ci;
CTok.type = (gl == '>') ? ASSIGNRS : ASSIGNLS;
} else CTok.type = (gl == '>') ? RSH : LSH;
} else if (Cpp [Ci] == '=' || Cpp [Ci] == '?') {
++Ci;
CTok.type = (gl == '>') ? GEQCMP : LEQCMP;
} else CTok.type = gl;
}
static void anor_morph ()
{
char ao = Cpp [Ci];
++Ci;
if (Cpp [Ci] == ao) {
++Ci;
CTok.type = (ao == '&') ? ANDAND : OROR;
} else if (Cpp [Ci] == '=') {
++Ci;
CTok.type = (ao == '&') ? ASSIGNBA : ASSIGNBO;
} else CTok.type = ao;
}
/***************************************************************************
***************************************************************************/
/******************************************************************************
Interface entry functions
******************************************************************************/
static void do_yylex ()
{
Again:
if (Ci >= Clen) {
CTok.type = THE_END;
return;
}
skip_ws ();
if (Ci >= Clen) {
CTok.type = THE_END;
return;
}
CTok.p = &Cpp [Ci];
CTok.len = 0;
if (ISDIGIT (Cpp [Ci]))
get_nconst ();
else if (ISALPHA (Cpp [Ci]) /*|| Cpp [Ci] == '_'*/)
if (Cpp [Ci] == 'L' && (Cpp [Ci + 1] == '\'' || Cpp [Ci + 1] == '"')) {
Ci++;
goto Switch;
} else
get_ident ();
else Switch: switch (Cpp [Ci]) {
case '(':
case ')':
case ';':
case ',':
CTok.type = Cpp [Ci];
CTok.p = &Cpp [Ci];
++Ci;
break;
case '*':
CTok.type = Cpp [Ci];
++Ci;
if (Cpp [Ci] == '=') {
CTok.type = ASSIGNM;
++Ci;
break;
}
break;
case '"':
get_string ();
return;
case '\'':
get_char_const ();
return;
case '/':
++Ci;
if (Cpp [Ci] == '=') {
CTok.type = ASSIGND;
++Ci;
break;
}
CTok.type = '/';
break;
case '.':
if (ISDIGIT (Cpp [Ci + 1])) {
get_nconst ();
break;
}
++Ci;
if (Cpp [Ci] == '.' && Cpp [Ci + 1] == '.') {
CTok.type = ELLIPSIS;
Ci += 2;
} else CTok.type = '.';
break;
case '-':
++Ci;
if (Cpp [Ci] == '>') {
++Ci;
CTok.type = POINTSAT;
break;
}
if (Cpp [Ci] == '-') {
CTok.type = MINUSMINUS;
++Ci;
break;
}
if (Cpp [Ci] == '=') {
CTok.type = ASSIGNS;
++Ci;
break;
}
CTok.type = '-';
break;
case '+':
++Ci;
if (Cpp [Ci] == '+') {
CTok.type = PLUSPLUS;
++Ci;
break;
}
if (Cpp [Ci] == '=') {
CTok.type = ASSIGNA;
++Ci;
break;
}
CTok.type = '+';
break;
case '!':
case '%':
case '^':
CTok.type = Cpp [Ci];
++Ci;
if (Cpp [Ci] == '=') {
CTok.type = (CTok.type == '!') ? NEQCMP :
(CTok.type == '%') ? ASSIGNR : ASSIGNBX;
++Ci;
break;
}
break;
case '&':
case '|':
anor_morph ();
break;
case ':':
++Ci;
CTok.type = ':';
break;
case '=':
++Ci;
if (Cpp [Ci] == '=') {
CTok.type = EQCMP;
++Ci;
break;
}
CTok.type = '=';
break;
case '>':
case '<':
grle_morph ();
break;
case '#':
CTok.type = '#';
if (Ci == 0 || Cpp [Ci - 1] == '\n'
|| Cpp [Ci - 1] == '\r')
CTok.type = CPP_DIRECTIVE;
++Ci;
if (Ci < Clen && Cpp [Ci] == '#') {
CTok.type = CPP_CONCAT;
++Ci;
}
break;
case '[':
case ']':
case '~':
CTok.type = Cpp [Ci];
CTok.p = &Cpp [Ci];
++Ci;
break;
case '\r':
case '\f':
++Ci;
goto Again;
default:
// $
CTok.type = Cpp [Ci];
CTok.p = &Cpp [Ci];
++Ci;
}
CTok.len = &Cpp [Ci] - CTok.p;
}
static void enter_abspath_file (char *file)
{
char tmp [1024];
if (!abs_paths || file [0] == '/') enter_file_indicator (file);
else enter_file_indicator (strcat (strcpy (tmp, cwd), file));
}
static void skip_pp_line ()
{
// For preprocessed source, the only directive is:
// # <line> "file"
// send the file to enter_file_indicator ()
// ... but it can also be pragma (thing)
char tmp [512];
tmp [0] = 0;
if (Cpp [++Ci] == 'p') { // #pragma
while (Ci < Clen && Cpp [Ci] != '\n')
++Ci;
++Ci;
return;
}
// Assume, without verification, that the next token is
// a line number.
line = strtol (&Cpp [Ci], NULL, 10 );
for(;;) {
if (Ci >= Clen) {
CTok.type = THE_END;
return;
}
switch (Cpp [Ci]) {
case '\n':
if (tmp [0])
enter_abspath_file (tmp);
++Ci; /* Scott */
return;
case '"':
get_string ();
strncpy (tmp, CTok.p, CTok.len);
tmp [CTok.len] = 0;
break;
default:
++Ci;
}
}
}
/******************************************************************************
Main
******************************************************************************/
extern bool quiet;
void yynorm (char *c, int l)
{
initctypes ();
Cpp = c;
Clen = l;
line = 1;
Ci = 0;
try {
for (;;) {
do_yylex ();
if (CTok.type == THE_END) break;
if (CTok.type == CPP_DIRECTIVE)
skip_pp_line (); else
enter_token ();
}
} catch (EOFC) { }
if (!quiet)
fprintf (stderr, "%i lines\n", line);
}