Skip to content

Latest commit

 

History

History
2399 lines (2015 loc) · 67.7 KB

mojoshader_preprocessor.c

File metadata and controls

2399 lines (2015 loc) · 67.7 KB
 
1
2
3
4
5
6
7
8
9
10
11
12
/**
* MojoShader; generate shader programs from bytecode of compiled
* Direct3D shaders.
*
* Please see the file LICENSE.txt in the source's root directory.
*
* This file written by Ryan C. Gordon.
*/
#define __MOJOSHADER_INTERNAL__ 1
#include "mojoshader_internal.h"
Feb 12, 2009
Feb 12, 2009
13
14
15
16
17
18
#if DEBUG_PREPROCESSOR
#define print_debug_token(token, len, val) \
MOJOSHADER_print_debug_token("PREPROCESSOR", token, len, val)
#else
#define print_debug_token(token, len, val)
#endif
Feb 10, 2009
Feb 10, 2009
19
Feb 15, 2009
Feb 15, 2009
20
#if DEBUG_LEXER
Feb 18, 2009
Feb 18, 2009
21
static Token debug_preprocessor_lexer(IncludeState *s)
Feb 15, 2009
Feb 15, 2009
22
{
Feb 18, 2009
Feb 18, 2009
23
const Token retval = preprocessor_lexer(s);
Feb 18, 2009
Feb 18, 2009
24
MOJOSHADER_print_debug_token("LEXER", s->token, s->tokenlen, retval);
Feb 15, 2009
Feb 15, 2009
25
return retval;
Feb 18, 2009
Feb 18, 2009
26
27
} // debug_preprocessor_lexer
#define preprocessor_lexer(s) debug_preprocessor_lexer(s)
Feb 15, 2009
Feb 15, 2009
28
29
#endif
Mar 7, 2009
Mar 7, 2009
30
31
32
#if DEBUG_TOKENIZER
static void print_debug_lexing_position(IncludeState *s)
{
Mar 7, 2009
Mar 7, 2009
33
34
if (s != NULL)
printf("NOW LEXING %s:%d ...\n", s->filename, s->line);
Mar 7, 2009
Mar 7, 2009
35
36
37
38
39
} // print_debug_lexing_position
#else
#define print_debug_lexing_position(s)
#endif
40
41
42
43
typedef struct Context
{
int isfail;
int out_of_memory;
Feb 13, 2009
Feb 13, 2009
44
char failstr[256];
Feb 24, 2009
Feb 24, 2009
45
int recursion_count;
Feb 24, 2009
Feb 24, 2009
46
int asm_comments;
May 31, 2010
May 31, 2010
47
int parsing_pragma;
Feb 14, 2009
Feb 14, 2009
48
Conditional *conditional_pool;
49
IncludeState *include_stack;
Feb 18, 2009
Feb 18, 2009
50
IncludeState *include_pool;
Feb 20, 2009
Feb 20, 2009
51
52
Define *define_hashtable[256];
Define *define_pool;
Mar 12, 2010
Mar 12, 2010
53
54
Define *file_macro;
Define *line_macro;
Feb 24, 2010
Feb 24, 2010
55
StringCache *filename_cache;
56
57
58
59
60
61
62
63
64
65
66
67
MOJOSHADER_includeOpen open_callback;
MOJOSHADER_includeClose close_callback;
MOJOSHADER_malloc malloc;
MOJOSHADER_free free;
void *malloc_data;
} Context;
// Convenience functions for allocators...
static inline void out_of_memory(Context *ctx)
{
Feb 13, 2009
Feb 13, 2009
68
ctx->out_of_memory = 1;
69
70
} // out_of_memory
May 4, 2018
May 4, 2018
71
static char zeromalloc = 0;
72
73
static inline void *Malloc(Context *ctx, const size_t len)
{
May 4, 2018
May 4, 2018
74
void *retval = (len == 0) ? &zeromalloc : ctx->malloc((int) len, ctx->malloc_data);
75
76
77
78
79
80
81
if (retval == NULL)
out_of_memory(ctx);
return retval;
} // Malloc
static inline void Free(Context *ctx, void *ptr)
{
May 4, 2018
May 4, 2018
82
83
if ((ptr != &zeromalloc) && (ptr != NULL))
ctx->free(ptr, ctx->malloc_data);
84
85
} // Free
Nov 9, 2010
Nov 9, 2010
86
87
88
89
90
91
92
93
94
95
static void *MallocBridge(int bytes, void *data)
{
return Malloc((Context *) data, (size_t) bytes);
} // MallocBridge
static void FreeBridge(void *ptr, void *data)
{
Free((Context *) data, ptr);
} // FreeBridge
96
97
98
99
100
101
102
103
104
105
106
107
108
109
static inline char *StrDup(Context *ctx, const char *str)
{
char *retval = (char *) Malloc(ctx, strlen(str) + 1);
if (retval != NULL)
strcpy(retval, str);
return retval;
} // StrDup
static void failf(Context *ctx, const char *fmt, ...) ISPRINTF(2,3);
static void failf(Context *ctx, const char *fmt, ...)
{
ctx->isfail = 1;
va_list ap;
va_start(ap, fmt);
Feb 13, 2009
Feb 13, 2009
110
vsnprintf(ctx->failstr, sizeof (ctx->failstr), fmt, ap);
111
112
113
114
115
116
117
118
119
va_end(ap);
} // failf
static inline void fail(Context *ctx, const char *reason)
{
failf(ctx, "%s", reason);
} // fail
Feb 12, 2009
Feb 12, 2009
120
121
122
123
124
125
126
127
128
129
130
#if DEBUG_TOKENIZER
void MOJOSHADER_print_debug_token(const char *subsystem, const char *token,
const unsigned int tokenlen,
const Token tokenval)
{
printf("%s TOKEN: \"", subsystem);
unsigned int i;
for (i = 0; i < tokenlen; i++)
{
if (token[i] == '\n')
printf("\\n");
Feb 15, 2009
Feb 15, 2009
131
132
else if (token[i] == '\\')
printf("\\\\");
Feb 12, 2009
Feb 12, 2009
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
else
printf("%c", token[i]);
} // for
printf("\" (");
switch (tokenval)
{
#define TOKENCASE(x) case x: printf("%s", #x); break
TOKENCASE(TOKEN_UNKNOWN);
TOKENCASE(TOKEN_IDENTIFIER);
TOKENCASE(TOKEN_INT_LITERAL);
TOKENCASE(TOKEN_FLOAT_LITERAL);
TOKENCASE(TOKEN_STRING_LITERAL);
TOKENCASE(TOKEN_ADDASSIGN);
TOKENCASE(TOKEN_SUBASSIGN);
TOKENCASE(TOKEN_MULTASSIGN);
TOKENCASE(TOKEN_DIVASSIGN);
TOKENCASE(TOKEN_MODASSIGN);
TOKENCASE(TOKEN_XORASSIGN);
TOKENCASE(TOKEN_ANDASSIGN);
TOKENCASE(TOKEN_ORASSIGN);
TOKENCASE(TOKEN_INCREMENT);
TOKENCASE(TOKEN_DECREMENT);
TOKENCASE(TOKEN_RSHIFT);
TOKENCASE(TOKEN_LSHIFT);
TOKENCASE(TOKEN_ANDAND);
TOKENCASE(TOKEN_OROR);
TOKENCASE(TOKEN_LEQ);
TOKENCASE(TOKEN_GEQ);
TOKENCASE(TOKEN_EQL);
TOKENCASE(TOKEN_NEQ);
Feb 25, 2010
Feb 25, 2010
163
TOKENCASE(TOKEN_HASH);
Feb 12, 2009
Feb 12, 2009
164
165
166
167
168
169
170
171
172
173
174
175
TOKENCASE(TOKEN_HASHHASH);
TOKENCASE(TOKEN_PP_INCLUDE);
TOKENCASE(TOKEN_PP_LINE);
TOKENCASE(TOKEN_PP_DEFINE);
TOKENCASE(TOKEN_PP_UNDEF);
TOKENCASE(TOKEN_PP_IF);
TOKENCASE(TOKEN_PP_IFDEF);
TOKENCASE(TOKEN_PP_IFNDEF);
TOKENCASE(TOKEN_PP_ELSE);
TOKENCASE(TOKEN_PP_ELIF);
TOKENCASE(TOKEN_PP_ENDIF);
TOKENCASE(TOKEN_PP_ERROR);
May 31, 2010
May 31, 2010
176
TOKENCASE(TOKEN_PP_PRAGMA);
Feb 13, 2009
Feb 13, 2009
177
178
TOKENCASE(TOKEN_INCOMPLETE_COMMENT);
TOKENCASE(TOKEN_BAD_CHARS);
Feb 14, 2013
Feb 14, 2013
179
180
TOKENCASE(TOKEN_SINGLE_COMMENT);
TOKENCASE(TOKEN_MULTI_COMMENT);
Feb 12, 2009
Feb 12, 2009
181
TOKENCASE(TOKEN_EOI);
Feb 13, 2009
Feb 13, 2009
182
TOKENCASE(TOKEN_PREPROCESSING_ERROR);
Feb 12, 2009
Feb 12, 2009
183
184
185
186
187
188
#undef TOKENCASE
case ((Token) '\n'):
printf("'\\n'");
break;
Feb 15, 2009
Feb 15, 2009
189
190
191
192
case ((Token) '\\'):
printf("'\\\\'");
break;
Feb 12, 2009
Feb 12, 2009
193
194
195
196
197
198
199
200
201
202
default:
assert(((int)tokenval) < 256);
printf("'%c'", (char) tokenval);
break;
} // switch
printf(")\n");
} // MOJOSHADER_print_debug_token
#endif
Feb 13, 2009
Feb 13, 2009
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
#if !MOJOSHADER_FORCE_INCLUDE_CALLBACKS
// !!! FIXME: most of these _MSC_VER should probably be _WINDOWS?
#ifdef _MSC_VER
#define WIN32_LEAN_AND_MEAN 1
#include <windows.h> // GL headers need this for WINGDIAPI definition.
#else
#include <sys/stat.h>
#include <fcntl.h>
#include <unistd.h>
#endif
int MOJOSHADER_internal_include_open(MOJOSHADER_includeType inctype,
const char *fname, const char *parent,
const char **outdata,
unsigned int *outbytes,
MOJOSHADER_malloc m, MOJOSHADER_free f,
void *d)
{
#ifdef _MSC_VER
Mar 3, 2010
Mar 3, 2010
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
WCHAR wpath[MAX_PATH];
if (!MultiByteToWideChar(CP_UTF8, 0, fname, -1, wpath, MAX_PATH))
return 0;
const DWORD share = FILE_SHARE_READ | FILE_SHARE_WRITE | FILE_SHARE_DELETE;
const HANDLE handle = CreateFileW(wpath, FILE_GENERIC_READ, share,
NULL, OPEN_EXISTING, NULL, NULL);
if (handle == INVALID_HANDLE_VALUE)
return 0;
const DWORD fileSize = GetFileSize(handle, NULL);
if (fileSize == INVALID_FILE_SIZE)
{
CloseHandle(handle);
return 0;
} // if
char *data = (char *) m(fileSize, d);
if (data == NULL)
{
CloseHandle(handle);
return 0;
} // if
DWORD readLength = 0;
if (!ReadFile(handle, data, fileSize, &readLength, NULL))
{
CloseHandle(handle);
f(data, d);
return 0;
} // if
CloseHandle(handle);
if (readLength != fileSize)
{
f(data, d);
return 0;
} // if
*outdata = data;
*outbytes = fileSize;
return 1;
Feb 13, 2009
Feb 13, 2009
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
#else
struct stat statbuf;
if (stat(fname, &statbuf) == -1)
return 0;
char *data = (char *) m(statbuf.st_size, d);
if (data == NULL)
return 0;
const int fd = open(fname, O_RDONLY);
if (fd == -1)
{
f(data, d);
return 0;
} // if
if (read(fd, data, statbuf.st_size) != statbuf.st_size)
{
f(data, d);
close(fd);
return 0;
} // if
close(fd);
*outdata = data;
*outbytes = (unsigned int) statbuf.st_size;
return 1;
#endif
} // MOJOSHADER_internal_include_open
void MOJOSHADER_internal_include_close(const char *data, MOJOSHADER_malloc m,
MOJOSHADER_free f, void *d)
{
f((void *) data, d);
} // MOJOSHADER_internal_include_close
#endif // !MOJOSHADER_FORCE_INCLUDE_CALLBACKS
Feb 18, 2009
Feb 18, 2009
301
// !!! FIXME: maybe use these pool magic elsewhere?
Nov 4, 2010
Nov 4, 2010
302
// !!! FIXME: maybe just get rid of this? (maybe the fragmentation isn't a big deal?)
Feb 16, 2009
Feb 16, 2009
303
Feb 18, 2009
Feb 18, 2009
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
// Pool stuff...
// ugh, I hate this macro salsa.
#define FREE_POOL(type, poolname) \
static void free_##poolname##_pool(Context *ctx) { \
type *item = ctx->poolname##_pool; \
while (item != NULL) { \
type *next = item->next; \
Free(ctx, item); \
item = next; \
} \
}
#define GET_POOL(type, poolname) \
static type *get_##poolname(Context *ctx) { \
type *retval = ctx->poolname##_pool; \
if (retval != NULL) \
ctx->poolname##_pool = retval->next; \
else \
retval = (type *) Malloc(ctx, sizeof (type)); \
if (retval != NULL) \
memset(retval, '\0', sizeof (type)); \
return retval; \
}
#define PUT_POOL(type, poolname) \
static void put_##poolname(Context *ctx, type *item) { \
item->next = ctx->poolname##_pool; \
Feb 19, 2009
Feb 19, 2009
331
ctx->poolname##_pool = item; \
Feb 18, 2009
Feb 18, 2009
332
333
334
335
336
337
338
339
340
}
#define IMPLEMENT_POOL(type, poolname) \
FREE_POOL(type, poolname) \
GET_POOL(type, poolname) \
PUT_POOL(type, poolname)
IMPLEMENT_POOL(Conditional, conditional)
IMPLEMENT_POOL(IncludeState, include)
Feb 20, 2009
Feb 20, 2009
341
IMPLEMENT_POOL(Define, define)
Feb 14, 2009
Feb 14, 2009
342
Feb 13, 2009
Feb 13, 2009
343
344
345
// Preprocessor define hashtable stuff...
Feb 21, 2010
Feb 21, 2010
346
347
// !!! FIXME: why isn't this using mojoshader_common.c's code?
Mar 30, 2009
Mar 30, 2009
348
349
// this is djb's xor hashing function.
static inline uint32 hash_string_djbxor(const char *sym)
Mar 30, 2009
Mar 30, 2009
351
register uint32 hash = 5381;
Feb 14, 2009
Feb 14, 2009
352
while (*sym)
Mar 30, 2009
Mar 30, 2009
353
354
355
356
357
358
359
hash = ((hash << 5) + hash) ^ *(sym++);
return hash;
} // hash_string_djbxor
static inline uint8 hash_define(const char *sym)
{
return (uint8) hash_string_djbxor(sym);
360
361
362
} // hash_define
Feb 20, 2009
Feb 20, 2009
363
static int add_define(Context *ctx, const char *sym, const char *val,
Apr 9, 2009
Apr 9, 2009
364
char **parameters, int paramcount)
Mar 30, 2009
Mar 30, 2009
366
const uint8 hash = hash_define(sym);
Feb 20, 2009
Feb 20, 2009
367
Define *bucket = ctx->define_hashtable[hash];
368
369
while (bucket)
{
Feb 19, 2009
Feb 19, 2009
370
if (strcmp(bucket->identifier, sym) == 0)
Mar 2, 2010
Mar 2, 2010
372
373
failf(ctx, "'%s' already defined", sym); // !!! FIXME: warning?
// !!! FIXME: gcc reports the location of previous #define here.
374
375
376
377
378
return 0;
} // if
bucket = bucket->next;
} // while
Feb 18, 2009
Feb 18, 2009
379
bucket = get_define(ctx);
380
381
382
if (bucket == NULL)
return 0;
Feb 20, 2009
Feb 20, 2009
383
bucket->definition = val;
Mar 12, 2010
Mar 12, 2010
384
bucket->original = NULL;
Feb 20, 2009
Feb 20, 2009
385
386
387
bucket->identifier = sym;
bucket->parameters = (const char **) parameters;
bucket->paramcount = paramcount;
388
389
390
391
392
393
bucket->next = ctx->define_hashtable[hash];
ctx->define_hashtable[hash] = bucket;
return 1;
} // add_define
Feb 20, 2009
Feb 20, 2009
394
395
static void free_define(Context *ctx, Define *def)
{
Mar 12, 2010
Mar 12, 2010
396
397
398
399
400
401
402
403
404
405
406
if (def != NULL)
{
int i;
for (i = 0; i < def->paramcount; i++)
Free(ctx, (void *) def->parameters[i]);
Free(ctx, (void *) def->parameters);
Free(ctx, (void *) def->identifier);
Free(ctx, (void *) def->definition);
Free(ctx, (void *) def->original);
put_define(ctx, def);
} // if
Feb 20, 2009
Feb 20, 2009
407
408
409
} // free_define
410
411
static int remove_define(Context *ctx, const char *sym)
{
Mar 30, 2009
Mar 30, 2009
412
const uint8 hash = hash_define(sym);
Feb 20, 2009
Feb 20, 2009
413
414
Define *bucket = ctx->define_hashtable[hash];
Define *prev = NULL;
415
416
while (bucket)
{
Feb 19, 2009
Feb 19, 2009
417
if (strcmp(bucket->identifier, sym) == 0)
418
419
420
421
422
{
if (prev == NULL)
ctx->define_hashtable[hash] = bucket->next;
else
prev->next = bucket->next;
Feb 20, 2009
Feb 20, 2009
423
free_define(ctx, bucket);
424
425
426
427
428
429
430
431
432
433
return 1;
} // if
prev = bucket;
bucket = bucket->next;
} // while
return 0;
} // remove_define
Feb 20, 2009
Feb 20, 2009
434
static const Define *find_define(Context *ctx, const char *sym)
Apr 18, 2013
Apr 18, 2013
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
const uint8 hash = hash_define(sym);
Define *bucket = ctx->define_hashtable[hash];
while (bucket)
{
if (strcmp(bucket->identifier, sym) == 0)
return bucket;
bucket = bucket->next;
} // while
const uint8 filestrhash = 67;
assert(hash_define("__FILE__") == filestrhash);
const uint8 linestrhash = 75;
assert(hash_define("__LINE__") == linestrhash);
if ( (hash == filestrhash) && (ctx->file_macro) && (strcmp(sym, "__FILE__") == 0) )
Mar 12, 2010
Mar 12, 2010
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
{
Free(ctx, (char *) ctx->file_macro->definition);
const IncludeState *state = ctx->include_stack;
const char *fname = state ? state->filename : "";
const size_t len = strlen(fname) + 2;
char *str = (char *) Malloc(ctx, len);
if (!str)
return NULL;
str[0] = '\"';
memcpy(str + 1, fname, len - 2);
str[len - 1] = '\"';
ctx->file_macro->definition = str;
return ctx->file_macro;
} // if
Apr 18, 2013
Apr 18, 2013
467
else if ( (hash == linestrhash) && (ctx->line_macro) && (strcmp(sym, "__LINE__") == 0) )
Mar 12, 2010
Mar 12, 2010
468
469
470
471
472
473
474
475
476
{
Free(ctx, (char *) ctx->line_macro->definition);
const IncludeState *state = ctx->include_stack;
const size_t bufsize = 32;
char *str = (char *) Malloc(ctx, bufsize);
if (!str)
return 0;
const size_t len = snprintf(str, bufsize, "%u", state->line);
Apr 18, 2013
Apr 18, 2013
477
assert(len < bufsize); (void) len;
Mar 12, 2010
Mar 12, 2010
478
479
480
481
ctx->line_macro->definition = str;
return ctx->line_macro;
} // else
482
483
484
485
return NULL;
} // find_define
Feb 24, 2009
Feb 24, 2009
486
487
488
489
490
491
492
493
494
495
496
static const Define *find_define_by_token(Context *ctx)
{
IncludeState *state = ctx->include_stack;
assert(state->tokenval == TOKEN_IDENTIFIER);
char *sym = (char *) alloca(state->tokenlen+1);
memcpy(sym, state->token, state->tokenlen);
sym[state->tokenlen] = '\0';
return find_define(ctx, sym);
} // find_define_by_token
Mar 12, 2010
Mar 12, 2010
497
498
static const Define *find_macro_arg(const IncludeState *state,
const Define *defines)
Feb 25, 2010
Feb 25, 2010
499
500
501
502
503
504
{
const Define *def = NULL;
char *sym = (char *) alloca(state->tokenlen + 1);
memcpy(sym, state->token, state->tokenlen);
sym[state->tokenlen] = '\0';
Mar 12, 2010
Mar 12, 2010
505
for (def = defines; def != NULL; def = def->next)
Feb 25, 2010
Feb 25, 2010
506
{
Feb 26, 2010
Feb 26, 2010
507
assert(def->parameters == NULL); // args can't have args!
Feb 25, 2010
Feb 25, 2010
508
509
510
511
512
513
514
515
516
assert(def->paramcount == 0); // args can't have args!
if (strcmp(def->identifier, sym) == 0)
break;
} // while
return def;
} // find_macro_arg
Feb 18, 2009
Feb 18, 2009
517
static void put_all_defines(Context *ctx)
Nov 15, 2009
Nov 15, 2009
519
size_t i;
520
521
for (i = 0; i < STATICARRAYLEN(ctx->define_hashtable); i++)
{
Feb 20, 2009
Feb 20, 2009
522
Define *bucket = ctx->define_hashtable[i];
523
524
525
ctx->define_hashtable[i] = NULL;
while (bucket)
{
Feb 20, 2009
Feb 20, 2009
526
Define *next = bucket->next;
Feb 20, 2009
Feb 20, 2009
527
free_define(ctx, bucket);
528
529
530
bucket = next;
} // while
} // for
Feb 20, 2009
Feb 20, 2009
531
} // put_all_defines
532
533
534
static int push_source(Context *ctx, const char *fname, const char *source,
Feb 19, 2009
Feb 19, 2009
535
unsigned int srclen, unsigned int linenum,
Mar 12, 2010
Mar 12, 2010
536
MOJOSHADER_includeClose close_callback)
Feb 18, 2009
Feb 18, 2009
538
IncludeState *state = get_include(ctx);
539
540
541
if (state == NULL)
return 0;
Feb 10, 2009
Feb 10, 2009
542
if (fname != NULL)
Feb 24, 2010
Feb 24, 2010
544
state->filename = stringcache(ctx->filename_cache, fname);
Feb 10, 2009
Feb 10, 2009
545
546
if (state->filename == NULL)
{
Feb 18, 2009
Feb 18, 2009
547
put_include(ctx, state);
Feb 10, 2009
Feb 10, 2009
548
549
return 0;
} // if
550
551
} // if
Feb 19, 2009
Feb 19, 2009
552
state->close_callback = close_callback;
553
554
555
state->source_base = source;
state->source = source;
state->token = source;
Feb 22, 2009
Feb 22, 2009
556
state->tokenval = ((Token) '\n');
Feb 17, 2009
Feb 17, 2009
557
state->orig_length = srclen;
558
state->bytes_left = srclen;
Feb 17, 2009
Feb 17, 2009
559
state->line = linenum;
560
state->next = ctx->include_stack;
Feb 24, 2009
Feb 24, 2009
561
state->asm_comments = ctx->asm_comments;
Mar 7, 2009
Mar 7, 2009
563
564
print_debug_lexing_position(state);
565
566
567
568
569
570
571
572
573
ctx->include_stack = state;
return 1;
} // push_source
static void pop_source(Context *ctx)
{
IncludeState *state = ctx->include_stack;
Jun 1, 2010
Jun 1, 2010
574
assert(state != NULL); // more pops than pushes!
575
576
577
if (state == NULL)
return;
Feb 19, 2009
Feb 19, 2009
578
if (state->close_callback)
Feb 19, 2009
Feb 19, 2009
580
581
state->close_callback(state->source_base, ctx->malloc,
ctx->free, ctx->malloc_data);
582
583
} // if
Feb 13, 2009
Feb 13, 2009
584
585
// state->filename is a pointer to the filename cache; don't free it here!
Feb 20, 2009
Feb 20, 2009
586
587
588
589
590
591
592
Conditional *cond = state->conditional_stack;
while (cond)
{
Conditional *next = cond->next;
put_conditional(ctx, cond);
cond = next;
} // while
Feb 14, 2009
Feb 14, 2009
593
594
ctx->include_stack = state->next;
Mar 7, 2009
Mar 7, 2009
595
596
597
print_debug_lexing_position(ctx->include_stack);
Feb 18, 2009
Feb 18, 2009
598
put_include(ctx, state);
599
600
601
} // pop_source
Feb 19, 2009
Feb 19, 2009
602
603
604
605
606
607
608
static void close_define_include(const char *data, MOJOSHADER_malloc m,
MOJOSHADER_free f, void *d)
{
f((void *) data, d);
} // close_define_include
609
610
611
612
Preprocessor *preprocessor_start(const char *fname, const char *source,
unsigned int sourcelen,
MOJOSHADER_includeOpen open_callback,
MOJOSHADER_includeClose close_callback,
Feb 19, 2009
Feb 19, 2009
613
const MOJOSHADER_preprocessorDefine *defines,
Feb 24, 2009
Feb 24, 2009
614
unsigned int define_count, int asm_comments,
615
616
617
MOJOSHADER_malloc m, MOJOSHADER_free f, void *d)
{
int okay = 1;
Nov 15, 2009
Nov 15, 2009
618
unsigned int i = 0;
619
620
621
622
623
624
625
// the preprocessor is internal-only, so we verify all these are != NULL.
assert(m != NULL);
assert(f != NULL);
Context *ctx = (Context *) m(sizeof (Context), d);
if (ctx == NULL)
Feb 24, 2010
Feb 24, 2010
626
return NULL;
627
628
629
630
631
632
633
memset(ctx, '\0', sizeof (Context));
ctx->malloc = m;
ctx->free = f;
ctx->malloc_data = d;
ctx->open_callback = open_callback;
ctx->close_callback = close_callback;
Feb 24, 2009
Feb 24, 2009
634
ctx->asm_comments = asm_comments;
Mar 12, 2010
Mar 12, 2010
635
Nov 11, 2010
Nov 11, 2010
636
ctx->filename_cache = stringcache_create(MallocBridge, FreeBridge, ctx);
Mar 12, 2010
Mar 12, 2010
637
638
639
640
641
642
643
644
645
646
647
okay = ((okay) && (ctx->filename_cache != NULL));
ctx->file_macro = get_define(ctx);
okay = ((okay) && (ctx->file_macro != NULL));
if ((okay) && (ctx->file_macro))
okay = ((ctx->file_macro->identifier = StrDup(ctx, "__FILE__")) != 0);
ctx->line_macro = get_define(ctx);
okay = ((okay) && (ctx->line_macro != NULL));
if ((okay) && (ctx->line_macro))
okay = ((ctx->line_macro->identifier = StrDup(ctx, "__LINE__")) != 0);
Feb 19, 2009
Feb 19, 2009
649
650
651
// let the usual preprocessor parser sort these out.
char *define_include = NULL;
unsigned int define_include_len = 0;
Mar 12, 2010
Mar 12, 2010
652
if ((okay) && (define_count > 0))
Nov 15, 2010
Nov 15, 2010
654
655
656
Buffer *predefbuf = buffer_create(256, MallocBridge, FreeBridge, ctx);
okay = okay && (predefbuf != NULL);
for (i = 0; okay && (i < define_count); i++)
Nov 15, 2010
Nov 15, 2010
658
659
okay = okay && buffer_append_fmt(predefbuf, "#define %s %s\n",
defines[i].identifier, defines[i].definition);
Feb 19, 2009
Feb 19, 2009
660
661
} // for
Nov 15, 2010
Nov 15, 2010
662
663
define_include_len = buffer_size(predefbuf);
if (define_include_len > 0)
Feb 19, 2009
Feb 19, 2009
664
{
Nov 15, 2010
Nov 15, 2010
665
666
667
668
define_include = buffer_flatten(predefbuf);
okay = okay && (define_include != NULL);
} // if
buffer_destroy(predefbuf);
Feb 19, 2009
Feb 19, 2009
669
} // if
Mar 12, 2010
Mar 12, 2010
671
if ((okay) && (!push_source(ctx,fname,source,sourcelen,1,NULL)))
672
673
okay = 0;
Nov 15, 2010
Nov 15, 2010
674
if ((okay) && (define_include_len > 0))
Feb 19, 2009
Feb 19, 2009
675
{
Nov 15, 2010
Nov 15, 2010
676
assert(define_include != NULL);
Feb 19, 2009
Feb 19, 2009
677
okay = push_source(ctx, "<predefined macros>", define_include,
Nov 15, 2010
Nov 15, 2010
678
define_include_len, 1, close_define_include);
Feb 19, 2009
Feb 19, 2009
679
680
} // if
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
if (!okay)
{
preprocessor_end((Preprocessor *) ctx);
return NULL;
} // if
return (Preprocessor *) ctx;
} // preprocessor_start
void preprocessor_end(Preprocessor *_ctx)
{
Context *ctx = (Context *) _ctx;
if (ctx == NULL)
return;
while (ctx->include_stack != NULL)
pop_source(ctx);
Feb 18, 2009
Feb 18, 2009
700
701
put_all_defines(ctx);
Feb 24, 2010
Feb 24, 2010
702
703
704
if (ctx->filename_cache != NULL)
stringcache_destroy(ctx->filename_cache);
Mar 12, 2010
Mar 12, 2010
705
706
free_define(ctx, ctx->file_macro);
free_define(ctx, ctx->line_macro);
Feb 18, 2009
Feb 18, 2009
707
free_define_pool(ctx);
Feb 14, 2009
Feb 14, 2009
708
free_conditional_pool(ctx);
Feb 18, 2009
Feb 18, 2009
709
free_include_pool(ctx);
710
711
712
713
714
715
716
717
718
719
720
721
Free(ctx, ctx);
} // preprocessor_end
int preprocessor_outofmemory(Preprocessor *_ctx)
{
Context *ctx = (Context *) _ctx;
return ctx->out_of_memory;
} // preprocessor_outofmemory
Feb 18, 2009
Feb 18, 2009
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
static inline void pushback(IncludeState *state)
{
#if DEBUG_PREPROCESSOR
printf("PREPROCESSOR PUSHBACK\n");
#endif
assert(!state->pushedback);
state->pushedback = 1;
} // pushback
static Token lexer(IncludeState *state)
{
if (!state->pushedback)
return preprocessor_lexer(state);
state->pushedback = 0;
return state->tokenval;
} // lexer
Feb 17, 2009
Feb 17, 2009
741
// !!! FIXME: parsing fails on preprocessor directives should skip rest of line.
Feb 14, 2009
Feb 14, 2009
742
743
static int require_newline(IncludeState *state)
{
Feb 18, 2009
Feb 18, 2009
744
745
const Token token = lexer(state);
pushback(state); // rewind no matter what.
Feb 18, 2009
Feb 18, 2009
746
return ( (token == TOKEN_INCOMPLETE_COMMENT) || // call it an eol.
Feb 18, 2009
Feb 18, 2009
747
(token == ((Token) '\n')) || (token == TOKEN_EOI) );
Feb 14, 2009
Feb 14, 2009
748
749
} // require_newline
Nov 4, 2010
Nov 4, 2010
750
// !!! FIXME: didn't we implement this by hand elsewhere?
Feb 23, 2009
Feb 23, 2009
751
752
753
754
755
756
757
758
759
760
static int token_to_int(IncludeState *state)
{
assert(state->tokenval == TOKEN_INT_LITERAL);
char *buf = (char *) alloca(state->tokenlen+1);
memcpy(buf, state->token, state->tokenlen);
buf[state->tokenlen] = '\0';
return atoi(buf);
} // token_to_int
Feb 13, 2009
Feb 13, 2009
761
762
763
static void handle_pp_include(Context *ctx)
{
IncludeState *state = ctx->include_stack;
Feb 18, 2009
Feb 18, 2009
764
Token token = lexer(state);
Feb 13, 2009
Feb 13, 2009
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
MOJOSHADER_includeType incltype;
char *filename = NULL;
int bogus = 0;
if (token == TOKEN_STRING_LITERAL)
incltype = MOJOSHADER_INCLUDETYPE_LOCAL;
else if (token == ((Token) '<'))
{
incltype = MOJOSHADER_INCLUDETYPE_SYSTEM;
// can't use lexer, since every byte between the < > pair is
// considered part of the filename. :/
while (!bogus)
{
if ( !(bogus = (state->bytes_left == 0)) )
{
const char ch = *state->source;
if ( !(bogus = ((ch == '\r') || (ch == '\n'))) )
{
state->source++;
state->bytes_left--;
if (ch == '>')
break;
} // if
} // if
} // while
} // else if
else
{
bogus = 1;
} // else
if (!bogus)
{
state->token++; // skip '<' or '\"'...
const unsigned int len = ((unsigned int) (state->source-state->token));
filename = (char *) alloca(len);
memcpy(filename, state->token, len-1);
filename[len-1] = '\0';
Feb 14, 2009
Feb 14, 2009
804
bogus = !require_newline(state);
Feb 13, 2009
Feb 13, 2009
805
806
807
808
809
810
811
812
813
814
} // if
if (bogus)
{
fail(ctx, "Invalid #include directive");
return;
} // else
const char *newdata = NULL;
unsigned int newbytes = 0;
Feb 8, 2010
Feb 8, 2010
815
816
817
818
819
820
if ((ctx->open_callback == NULL) || (ctx->close_callback == NULL))
{
fail(ctx, "Saw #include, but no include callbacks defined");
return;
} // if
Feb 13, 2009
Feb 13, 2009
821
822
823
824
825
826
827
828
if (!ctx->open_callback(incltype, filename, state->source_base,
&newdata, &newbytes, ctx->malloc,
ctx->free, ctx->malloc_data))
{
fail(ctx, "Include callback failed"); // !!! FIXME: better error
return;
} // if
Feb 20, 2009
Feb 20, 2009
829
MOJOSHADER_includeClose callback = ctx->close_callback;
Mar 12, 2010
Mar 12, 2010
830
if (!push_source(ctx, filename, newdata, newbytes, 1, callback))
Feb 13, 2009
Feb 13, 2009
831
832
833
834
835
836
837
{
assert(ctx->out_of_memory);
ctx->close_callback(newdata, ctx->malloc, ctx->free, ctx->malloc_data);
} // if
} // handle_pp_include
Feb 14, 2009
Feb 14, 2009
838
839
840
841
842
843
844
static void handle_pp_line(Context *ctx)
{
IncludeState *state = ctx->include_stack;
char *filename = NULL;
int linenum = 0;
int bogus = 0;
Feb 18, 2009
Feb 18, 2009
845
if (lexer(state) != TOKEN_INT_LITERAL)
Feb 14, 2009
Feb 14, 2009
846
847
bogus = 1;
else
Feb 23, 2009
Feb 23, 2009
848
linenum = token_to_int(state);
Feb 14, 2009
Feb 14, 2009
849
850
if (!bogus)
Feb 25, 2010
Feb 25, 2010
851
852
853
854
855
856
857
858
859
{
Token t = lexer(state);
if (t == ((Token) '\n'))
{
state->line = linenum;
return;
}
bogus = (t != TOKEN_STRING_LITERAL);
}
Feb 14, 2009
Feb 14, 2009
860
861
862
863
if (!bogus)
{
state->token++; // skip '\"'...
Feb 18, 2009
Feb 18, 2009
864
865
866
filename = (char *) alloca(state->tokenlen);
memcpy(filename, state->token, state->tokenlen-1);
filename[state->tokenlen-1] = '\0';
Feb 14, 2009
Feb 14, 2009
867
868
869
870
871
872
873
874
875
bogus = !require_newline(state);
} // if
if (bogus)
{
fail(ctx, "Invalid #line directive");
return;
} // if
Feb 24, 2010
Feb 24, 2010
876
const char *cached = stringcache(ctx->filename_cache, filename);
Nov 11, 2010
Nov 11, 2010
877
state->filename = cached; // may be NULL if stringcache() failed.
Feb 14, 2009
Feb 14, 2009
878
879
880
881
state->line = linenum;
} // handle_pp_line
Feb 13, 2009
Feb 13, 2009
882
883
884
static void handle_pp_error(Context *ctx)
{
IncludeState *state = ctx->include_stack;
Feb 17, 2009
Feb 17, 2009
885
886
887
char *ptr = ctx->failstr;
int avail = sizeof (ctx->failstr) - 1;
int cpy = 0;
Feb 13, 2009
Feb 13, 2009
888
889
int done = 0;
Feb 17, 2009
Feb 17, 2009
890
891
892
893
894
895
896
const char *prefix = "#error";
const size_t prefixlen = strlen(prefix);
strcpy(ctx->failstr, prefix);
avail -= prefixlen;
ptr += prefixlen;
state->report_whitespace = 1;
Feb 13, 2009
Feb 13, 2009
897
898
while (!done)
{
Feb 18, 2009
Feb 18, 2009
899
const Token token = lexer(state);
Feb 13, 2009
Feb 13, 2009
900
901
902
switch (token)
{
case ((Token) '\n'):
Feb 14, 2009
Feb 14, 2009
903
904
905
state->line--; // make sure error is on the right line.
// fall through!
case TOKEN_INCOMPLETE_COMMENT:
Feb 13, 2009
Feb 13, 2009
906
case TOKEN_EOI:
Feb 18, 2009
Feb 18, 2009
907
pushback(state); // move back so we catch this later.
Feb 13, 2009
Feb 13, 2009
908
909
910
done = 1;
break;
Mar 12, 2010
Mar 12, 2010
911
case ((Token) ' '):
Feb 17, 2009
Feb 17, 2009
912
913
914
915
916
917
if (!avail)
break;
*(ptr++) = ' ';
avail--;
break;
Feb 13, 2009
Feb 13, 2009
918
default:
Feb 18, 2009
Feb 18, 2009
919
cpy = Min(avail, (int) state->tokenlen);
Feb 17, 2009
Feb 17, 2009
920
921
922
923
if (cpy)
memcpy(ptr, state->token, cpy);
ptr += cpy;
avail -= cpy;
Feb 13, 2009
Feb 13, 2009
924
925
926
927
break;
} // switch
} // while
Feb 17, 2009
Feb 17, 2009
928
929
*ptr = '\0';
state->report_whitespace = 0;
Feb 13, 2009
Feb 13, 2009
930
931
932
933
ctx->isfail = 1;
} // handle_pp_error
Feb 17, 2009
Feb 17, 2009
934
935
936
static void handle_pp_define(Context *ctx)
{
IncludeState *state = ctx->include_stack;
Nov 15, 2009
Nov 15, 2009
937
int done = 0;
Feb 17, 2009
Feb 17, 2009
938
Feb 18, 2009
Feb 18, 2009
939
if (lexer(state) != TOKEN_IDENTIFIER)
Feb 17, 2009
Feb 17, 2009
940
{
Apr 9, 2009
Apr 9, 2009
941
fail(ctx, "Macro names must be identifiers");
Feb 17, 2009
Feb 17, 2009
942
943
944
return;
} // if
Feb 20, 2009
Feb 20, 2009
945
946
947
948
char *definition = NULL;
char *sym = (char *) Malloc(ctx, state->tokenlen+1);
if (sym == NULL)
return;
Feb 18, 2009
Feb 18, 2009
949
950
memcpy(sym, state->token, state->tokenlen);
sym[state->tokenlen] = '\0';
Feb 17, 2009
Feb 17, 2009
951
Feb 24, 2009
Feb 24, 2009
952
953
954
955
956
957
958
if (strcmp(sym, "defined") == 0)
{
Free(ctx, sym);
fail(ctx, "'defined' cannot be used as a macro name");
return;
} // if
Mar 2, 2010
Mar 2, 2010
959
960
961
// Don't treat these symbols as special anymore if they get (re)#defined.
if (strcmp(sym, "__FILE__") == 0)
{
Mar 12, 2010
Mar 12, 2010
962
963
if (ctx->file_macro)
{
Mar 2, 2010
Mar 2, 2010
964
failf(ctx, "'%s' already defined", sym); // !!! FIXME: warning?
Mar 12, 2010
Mar 12, 2010
965
966
967
free_define(ctx, ctx->file_macro);
ctx->file_macro = NULL;
} // if
Mar 2, 2010
Mar 2, 2010
968
969
970
} // if
else if (strcmp(sym, "__LINE__") == 0)
{
Mar 12, 2010
Mar 12, 2010
971
972
if (ctx->line_macro)
{
Mar 2, 2010
Mar 2, 2010
973
failf(ctx, "'%s' already defined", sym); // !!! FIXME: warning?
Mar 12, 2010
Mar 12, 2010
974
975
976
free_define(ctx, ctx->line_macro);
ctx->line_macro = NULL;
} // if
Mar 2, 2010
Mar 2, 2010
977
978
} // else if
Feb 20, 2009
Feb 20, 2009
979
980
981
982
983
// #define a(b) is different than #define a (b) :(
state->report_whitespace = 1;
lexer(state);
state->report_whitespace = 0;
Apr 9, 2009
Apr 9, 2009
984
int params = 0;
Feb 20, 2009
Feb 20, 2009
985
char **idents = NULL;
Nov 15, 2009
Nov 15, 2009
986
static const char space = ' ';
Feb 20, 2009
Feb 20, 2009
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
if (state->tokenval == ((Token) ' '))
lexer(state); // skip it.
else if (state->tokenval == ((Token) '('))
{
IncludeState saved;
memcpy(&saved, state, sizeof (IncludeState));
while (1)
{
if (lexer(state) != TOKEN_IDENTIFIER)
break;
params++;
if (lexer(state) != ((Token) ','))
break;