author | Ryan C. Gordon <icculus@icculus.org> |
Thu, 12 Feb 2009 17:12:46 -0500 | |
changeset 586 | 321a19a62989 |
parent 583 | 9c966b751fd6 |
child 587 | 202354e004fc |
permissions | -rw-r--r-- |
555
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
1 |
/** |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
2 |
* MojoShader; generate shader programs from bytecode of compiled |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
3 |
* Direct3D shaders. |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
4 |
* |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
5 |
* Please see the file LICENSE.txt in the source's root directory. |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
6 |
* |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
7 |
* This file written by Ryan C. Gordon. |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
8 |
*/ |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
9 |
|
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
10 |
#define __MOJOSHADER_INTERNAL__ 1 |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
11 |
#include "mojoshader_internal.h" |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
12 |
|
568
647b13e64468
Disabled lexer debug output.
Ryan C. Gordon <icculus@icculus.org>
parents:
566
diff
changeset
|
13 |
#define DEBUG_TOKENIZER 0 |
561
0d2535cc5ac3
Added basic lexer debug output.
Ryan C. Gordon <icculus@icculus.org>
parents:
560
diff
changeset
|
14 |
|
555
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
15 |
typedef struct DefineHash |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
16 |
{ |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
17 |
MOJOSHADER_preprocessorDefine define; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
18 |
struct DefineHash *next; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
19 |
} DefineHash; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
20 |
|
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
21 |
typedef struct Context |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
22 |
{ |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
23 |
int isfail; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
24 |
int out_of_memory; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
25 |
char failstr[128]; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
26 |
IncludeState *include_stack; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
27 |
DefineHash *define_hashtable[256]; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
28 |
int pushedback; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
29 |
const char *token; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
30 |
unsigned int tokenlen; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
31 |
MOJOSHADER_includeOpen open_callback; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
32 |
MOJOSHADER_includeClose close_callback; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
33 |
MOJOSHADER_malloc malloc; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
34 |
MOJOSHADER_free free; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
35 |
void *malloc_data; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
36 |
} Context; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
37 |
|
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
38 |
|
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
39 |
// Convenience functions for allocators... |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
40 |
|
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
41 |
static inline void out_of_memory(Context *ctx) |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
42 |
{ |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
43 |
ctx->isfail = ctx->out_of_memory = 1; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
44 |
} // out_of_memory |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
45 |
|
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
46 |
static inline void *Malloc(Context *ctx, const size_t len) |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
47 |
{ |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
48 |
void *retval = ctx->malloc((int) len, ctx->malloc_data); |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
49 |
if (retval == NULL) |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
50 |
out_of_memory(ctx); |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
51 |
return retval; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
52 |
} // Malloc |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
53 |
|
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
54 |
static inline void Free(Context *ctx, void *ptr) |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
55 |
{ |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
56 |
if (ptr != NULL) // check for NULL in case of dumb free() impl. |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
57 |
ctx->free(ptr, ctx->malloc_data); |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
58 |
} // Free |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
59 |
|
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
60 |
static inline char *StrDup(Context *ctx, const char *str) |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
61 |
{ |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
62 |
char *retval = (char *) Malloc(ctx, strlen(str) + 1); |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
63 |
if (retval != NULL) |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
64 |
strcpy(retval, str); |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
65 |
return retval; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
66 |
} // StrDup |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
67 |
|
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
68 |
static void failf(Context *ctx, const char *fmt, ...) ISPRINTF(2,3); |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
69 |
static void failf(Context *ctx, const char *fmt, ...) |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
70 |
{ |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
71 |
ctx->isfail = 1; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
72 |
va_list ap; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
73 |
va_start(ap, fmt); |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
74 |
vsnprintf(ctx->failstr, sizeof (ctx->failstr), fmt, ap); // rebuild it. |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
75 |
va_end(ap); |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
76 |
} // failf |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
77 |
|
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
78 |
static inline void fail(Context *ctx, const char *reason) |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
79 |
{ |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
80 |
failf(ctx, "%s", reason); |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
81 |
} // fail |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
82 |
|
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
83 |
|
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
84 |
// Preprocessor define hashtable stuff... |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
85 |
|
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
86 |
static unsigned char hash_define(const char *sym) |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
87 |
{ |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
88 |
unsigned char retval = 0; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
89 |
while (sym) |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
90 |
retval += *(sym++); |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
91 |
return retval; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
92 |
} // hash_define |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
93 |
|
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
94 |
|
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
95 |
static int add_define(Context *ctx, const char *sym, const char *val) |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
96 |
{ |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
97 |
char *identifier = NULL; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
98 |
char *definition = NULL; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
99 |
const unsigned char hash = hash_define(sym); |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
100 |
DefineHash *bucket = ctx->define_hashtable[hash]; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
101 |
while (bucket) |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
102 |
{ |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
103 |
if (strcmp(bucket->define.identifier, sym) == 0) |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
104 |
{ |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
105 |
failf(ctx, "'%s' already defined", sym); |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
106 |
return 0; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
107 |
} // if |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
108 |
bucket = bucket->next; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
109 |
} // while |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
110 |
|
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
111 |
bucket = (DefineHash *) Malloc(ctx, sizeof (DefineHash)); |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
112 |
if (bucket == NULL) |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
113 |
return 0; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
114 |
|
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
115 |
identifier = (char *) Malloc(ctx, strlen(sym) + 1); |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
116 |
definition = (char *) Malloc(ctx, strlen(val) + 1); |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
117 |
if ((identifier == NULL) || (definition == NULL)) |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
118 |
{ |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
119 |
Free(ctx, identifier); |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
120 |
Free(ctx, definition); |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
121 |
Free(ctx, bucket); |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
122 |
return 0; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
123 |
} // if |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
124 |
|
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
125 |
strcpy(identifier, sym); |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
126 |
strcpy(definition, val); |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
127 |
bucket->define.identifier = identifier; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
128 |
bucket->define.definition = definition; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
129 |
bucket->next = ctx->define_hashtable[hash]; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
130 |
ctx->define_hashtable[hash] = bucket; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
131 |
return 1; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
132 |
} // add_define |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
133 |
|
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
134 |
|
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
135 |
static int remove_define(Context *ctx, const char *sym) |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
136 |
{ |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
137 |
const unsigned char hash = hash_define(sym); |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
138 |
DefineHash *bucket = ctx->define_hashtable[hash]; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
139 |
DefineHash *prev = NULL; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
140 |
while (bucket) |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
141 |
{ |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
142 |
if (strcmp(bucket->define.identifier, sym) == 0) |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
143 |
{ |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
144 |
if (prev == NULL) |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
145 |
ctx->define_hashtable[hash] = bucket->next; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
146 |
else |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
147 |
prev->next = bucket->next; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
148 |
Free(ctx, (void *) bucket->define.identifier); |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
149 |
Free(ctx, (void *) bucket->define.definition); |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
150 |
Free(ctx, bucket); |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
151 |
return 1; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
152 |
} // if |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
153 |
prev = bucket; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
154 |
bucket = bucket->next; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
155 |
} // while |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
156 |
|
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
157 |
failf(ctx, "'%s' not defined", sym); |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
158 |
return 0; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
159 |
} // remove_define |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
160 |
|
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
161 |
|
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
162 |
static const char *find_define(Context *ctx, const char *sym) |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
163 |
{ |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
164 |
const unsigned char hash = hash_define(sym); |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
165 |
DefineHash *bucket = ctx->define_hashtable[hash]; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
166 |
while (bucket) |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
167 |
{ |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
168 |
if (strcmp(bucket->define.identifier, sym) == 0) |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
169 |
return bucket->define.definition; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
170 |
bucket = bucket->next; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
171 |
} // while |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
172 |
return NULL; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
173 |
} // find_define |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
174 |
|
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
175 |
|
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
176 |
static void free_all_defines(Context *ctx) |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
177 |
{ |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
178 |
int i; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
179 |
for (i = 0; i < STATICARRAYLEN(ctx->define_hashtable); i++) |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
180 |
{ |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
181 |
DefineHash *bucket = ctx->define_hashtable[i]; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
182 |
ctx->define_hashtable[i] = NULL; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
183 |
while (bucket) |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
184 |
{ |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
185 |
DefineHash *next = bucket->next; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
186 |
Free(ctx, (void *) bucket->define.identifier); |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
187 |
Free(ctx, (void *) bucket->define.definition); |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
188 |
Free(ctx, bucket); |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
189 |
bucket = next; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
190 |
} // while |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
191 |
} // for |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
192 |
} // find_define |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
193 |
|
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
194 |
|
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
195 |
static int push_source(Context *ctx, const char *fname, const char *source, |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
196 |
unsigned int srclen, int included) |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
197 |
{ |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
198 |
IncludeState *state = (IncludeState *) Malloc(ctx, sizeof (IncludeState)); |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
199 |
if (state == NULL) |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
200 |
return 0; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
201 |
memset(state, '\0', sizeof (IncludeState)); |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
202 |
|
560
225d579ae929
Handle NULL file names.
Ryan C. Gordon <icculus@icculus.org>
parents:
559
diff
changeset
|
203 |
if (fname != NULL) |
555
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
204 |
{ |
560
225d579ae929
Handle NULL file names.
Ryan C. Gordon <icculus@icculus.org>
parents:
559
diff
changeset
|
205 |
state->filename = StrDup(ctx, fname); |
225d579ae929
Handle NULL file names.
Ryan C. Gordon <icculus@icculus.org>
parents:
559
diff
changeset
|
206 |
if (state->filename == NULL) |
225d579ae929
Handle NULL file names.
Ryan C. Gordon <icculus@icculus.org>
parents:
559
diff
changeset
|
207 |
{ |
225d579ae929
Handle NULL file names.
Ryan C. Gordon <icculus@icculus.org>
parents:
559
diff
changeset
|
208 |
Free(ctx, state); |
225d579ae929
Handle NULL file names.
Ryan C. Gordon <icculus@icculus.org>
parents:
559
diff
changeset
|
209 |
return 0; |
225d579ae929
Handle NULL file names.
Ryan C. Gordon <icculus@icculus.org>
parents:
559
diff
changeset
|
210 |
} // if |
555
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
211 |
} // if |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
212 |
|
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
213 |
state->included = included; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
214 |
state->source_base = source; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
215 |
state->source = source; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
216 |
state->token = source; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
217 |
state->bytes_left = srclen; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
218 |
state->line = 1; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
219 |
state->next = ctx->include_stack; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
220 |
|
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
221 |
ctx->include_stack = state; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
222 |
|
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
223 |
return 1; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
224 |
} // push_source |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
225 |
|
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
226 |
|
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
227 |
static void pop_source(Context *ctx) |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
228 |
{ |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
229 |
IncludeState *state = ctx->include_stack; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
230 |
if (state == NULL) |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
231 |
return; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
232 |
|
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
233 |
if (state->included) |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
234 |
{ |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
235 |
ctx->close_callback(state->source_base, ctx->malloc, |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
236 |
ctx->free, ctx->malloc_data); |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
237 |
} // if |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
238 |
|
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
239 |
ctx->include_stack = state->next; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
240 |
Free(ctx, state->filename); |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
241 |
Free(ctx, state); |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
242 |
} // pop_source |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
243 |
|
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
244 |
|
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
245 |
Preprocessor *preprocessor_start(const char *fname, const char *source, |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
246 |
unsigned int sourcelen, |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
247 |
MOJOSHADER_includeOpen open_callback, |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
248 |
MOJOSHADER_includeClose close_callback, |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
249 |
const MOJOSHADER_preprocessorDefine **defines, |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
250 |
unsigned int define_count, |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
251 |
MOJOSHADER_malloc m, MOJOSHADER_free f, void *d) |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
252 |
{ |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
253 |
int okay = 1; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
254 |
int i = 0; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
255 |
|
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
256 |
// the preprocessor is internal-only, so we verify all these are != NULL. |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
257 |
assert(m != NULL); |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
258 |
assert(f != NULL); |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
259 |
assert(open_callback != NULL); |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
260 |
assert(close_callback != NULL); |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
261 |
|
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
262 |
Context *ctx = (Context *) m(sizeof (Context), d); |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
263 |
if (ctx == NULL) |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
264 |
return 0; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
265 |
|
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
266 |
memset(ctx, '\0', sizeof (Context)); |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
267 |
ctx->malloc = m; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
268 |
ctx->free = f; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
269 |
ctx->malloc_data = d; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
270 |
ctx->open_callback = open_callback; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
271 |
ctx->close_callback = close_callback; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
272 |
|
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
273 |
for (i = 0; i < define_count; i++) |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
274 |
{ |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
275 |
if (!add_define(ctx, defines[i]->identifier, defines[i]->definition)) |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
276 |
{ |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
277 |
okay = 0; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
278 |
break; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
279 |
} // if |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
280 |
} // for |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
281 |
|
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
282 |
if ((okay) && (!push_source(ctx, fname, source, sourcelen, 0))) |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
283 |
okay = 0; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
284 |
|
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
285 |
if (!okay) |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
286 |
{ |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
287 |
preprocessor_end((Preprocessor *) ctx); |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
288 |
return NULL; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
289 |
} // if |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
290 |
|
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
291 |
return (Preprocessor *) ctx; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
292 |
} // preprocessor_start |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
293 |
|
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
294 |
|
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
295 |
void preprocessor_end(Preprocessor *_ctx) |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
296 |
{ |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
297 |
Context *ctx = (Context *) _ctx; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
298 |
if (ctx == NULL) |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
299 |
return; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
300 |
|
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
301 |
while (ctx->include_stack != NULL) |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
302 |
pop_source(ctx); |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
303 |
|
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
304 |
free_all_defines(ctx); |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
305 |
|
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
306 |
Free(ctx, ctx); |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
307 |
} // preprocessor_end |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
308 |
|
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
309 |
|
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
310 |
const char *preprocessor_error(Preprocessor *_ctx) |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
311 |
{ |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
312 |
Context *ctx = (Context *) _ctx; |
557
ef6a607a5618
Removed preprocessor_clearerror().
Ryan C. Gordon <icculus@icculus.org>
parents:
555
diff
changeset
|
313 |
if (ctx->isfail) |
ef6a607a5618
Removed preprocessor_clearerror().
Ryan C. Gordon <icculus@icculus.org>
parents:
555
diff
changeset
|
314 |
{ |
ef6a607a5618
Removed preprocessor_clearerror().
Ryan C. Gordon <icculus@icculus.org>
parents:
555
diff
changeset
|
315 |
ctx->isfail = 0; |
ef6a607a5618
Removed preprocessor_clearerror().
Ryan C. Gordon <icculus@icculus.org>
parents:
555
diff
changeset
|
316 |
return ctx->failstr; |
ef6a607a5618
Removed preprocessor_clearerror().
Ryan C. Gordon <icculus@icculus.org>
parents:
555
diff
changeset
|
317 |
} // if |
ef6a607a5618
Removed preprocessor_clearerror().
Ryan C. Gordon <icculus@icculus.org>
parents:
555
diff
changeset
|
318 |
|
ef6a607a5618
Removed preprocessor_clearerror().
Ryan C. Gordon <icculus@icculus.org>
parents:
555
diff
changeset
|
319 |
return NULL; |
555
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
320 |
} // preprocessor_error |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
321 |
|
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
322 |
|
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
323 |
int preprocessor_outofmemory(Preprocessor *_ctx) |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
324 |
{ |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
325 |
Context *ctx = (Context *) _ctx; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
326 |
return ctx->out_of_memory; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
327 |
} // preprocessor_outofmemory |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
328 |
|
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
329 |
|
561
0d2535cc5ac3
Added basic lexer debug output.
Ryan C. Gordon <icculus@icculus.org>
parents:
560
diff
changeset
|
330 |
static inline const char *_preprocessor_nexttoken(Preprocessor *_ctx, |
0d2535cc5ac3
Added basic lexer debug output.
Ryan C. Gordon <icculus@icculus.org>
parents:
560
diff
changeset
|
331 |
unsigned int *_len, Token *_token) |
555
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
332 |
{ |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
333 |
Context *ctx = (Context *) _ctx; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
334 |
|
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
335 |
while (1) |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
336 |
{ |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
337 |
IncludeState *state = ctx->include_stack; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
338 |
if (state == NULL) |
559
d34ac77da171
Preprocessor should return TOKEN_EOI when we finish the whole include stack.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
339 |
{ |
d34ac77da171
Preprocessor should return TOKEN_EOI when we finish the whole include stack.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
340 |
*_token = TOKEN_EOI; |
d34ac77da171
Preprocessor should return TOKEN_EOI when we finish the whole include stack.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
341 |
*_len = 0; |
555
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
342 |
return NULL; // we're done! |
559
d34ac77da171
Preprocessor should return TOKEN_EOI when we finish the whole include stack.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
343 |
} // if |
555
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
344 |
|
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
345 |
Token token = preprocessor_internal_lexer(state); |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
346 |
if (token == TOKEN_EOI) |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
347 |
{ |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
348 |
assert(state->bytes_left == 0); |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
349 |
pop_source(ctx); |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
350 |
continue; // pick up again after parent's #include line. |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
351 |
} // if |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
352 |
|
565
c0718e4595e5
Set an error in the preprocessor if there's an incomplete multiline comment.
Ryan C. Gordon <icculus@icculus.org>
parents:
564
diff
changeset
|
353 |
else if (token == TOKEN_PP_INCOMPLETE_COMMENT) |
c0718e4595e5
Set an error in the preprocessor if there's an incomplete multiline comment.
Ryan C. Gordon <icculus@icculus.org>
parents:
564
diff
changeset
|
354 |
{ |
c0718e4595e5
Set an error in the preprocessor if there's an incomplete multiline comment.
Ryan C. Gordon <icculus@icculus.org>
parents:
564
diff
changeset
|
355 |
fail(ctx, "Incomplete multiline comment"); |
c0718e4595e5
Set an error in the preprocessor if there's an incomplete multiline comment.
Ryan C. Gordon <icculus@icculus.org>
parents:
564
diff
changeset
|
356 |
continue; // !!! FIXME: we should probably return TOKEN_ERROR or something. |
c0718e4595e5
Set an error in the preprocessor if there's an incomplete multiline comment.
Ryan C. Gordon <icculus@icculus.org>
parents:
564
diff
changeset
|
357 |
} // else if |
c0718e4595e5
Set an error in the preprocessor if there's an incomplete multiline comment.
Ryan C. Gordon <icculus@icculus.org>
parents:
564
diff
changeset
|
358 |
|
555
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
359 |
*_token = token; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
360 |
*_len = (unsigned int) (state->source - state->token); |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
361 |
return state->token; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
362 |
} // while |
561
0d2535cc5ac3
Added basic lexer debug output.
Ryan C. Gordon <icculus@icculus.org>
parents:
560
diff
changeset
|
363 |
|
0d2535cc5ac3
Added basic lexer debug output.
Ryan C. Gordon <icculus@icculus.org>
parents:
560
diff
changeset
|
364 |
assert(0 && "shouldn't hit this code"); |
0d2535cc5ac3
Added basic lexer debug output.
Ryan C. Gordon <icculus@icculus.org>
parents:
560
diff
changeset
|
365 |
*_token = TOKEN_UNKNOWN; |
0d2535cc5ac3
Added basic lexer debug output.
Ryan C. Gordon <icculus@icculus.org>
parents:
560
diff
changeset
|
366 |
*_len = 0; |
0d2535cc5ac3
Added basic lexer debug output.
Ryan C. Gordon <icculus@icculus.org>
parents:
560
diff
changeset
|
367 |
return NULL; |
0d2535cc5ac3
Added basic lexer debug output.
Ryan C. Gordon <icculus@icculus.org>
parents:
560
diff
changeset
|
368 |
} // _preprocessor_nexttoken |
0d2535cc5ac3
Added basic lexer debug output.
Ryan C. Gordon <icculus@icculus.org>
parents:
560
diff
changeset
|
369 |
|
0d2535cc5ac3
Added basic lexer debug output.
Ryan C. Gordon <icculus@icculus.org>
parents:
560
diff
changeset
|
370 |
|
0d2535cc5ac3
Added basic lexer debug output.
Ryan C. Gordon <icculus@icculus.org>
parents:
560
diff
changeset
|
371 |
const char *preprocessor_nexttoken(Preprocessor *ctx, unsigned int *len, |
0d2535cc5ac3
Added basic lexer debug output.
Ryan C. Gordon <icculus@icculus.org>
parents:
560
diff
changeset
|
372 |
Token *token) |
0d2535cc5ac3
Added basic lexer debug output.
Ryan C. Gordon <icculus@icculus.org>
parents:
560
diff
changeset
|
373 |
{ |
0d2535cc5ac3
Added basic lexer debug output.
Ryan C. Gordon <icculus@icculus.org>
parents:
560
diff
changeset
|
374 |
const char *retval = _preprocessor_nexttoken(ctx, len, token); |
0d2535cc5ac3
Added basic lexer debug output.
Ryan C. Gordon <icculus@icculus.org>
parents:
560
diff
changeset
|
375 |
|
0d2535cc5ac3
Added basic lexer debug output.
Ryan C. Gordon <icculus@icculus.org>
parents:
560
diff
changeset
|
376 |
#if DEBUG_TOKENIZER |
566
6bd82a5acf62
Added more debug output.
Ryan C. Gordon <icculus@icculus.org>
parents:
565
diff
changeset
|
377 |
printf("PREPROCESSOR TOKEN: \""); |
561
0d2535cc5ac3
Added basic lexer debug output.
Ryan C. Gordon <icculus@icculus.org>
parents:
560
diff
changeset
|
378 |
unsigned int i; |
0d2535cc5ac3
Added basic lexer debug output.
Ryan C. Gordon <icculus@icculus.org>
parents:
560
diff
changeset
|
379 |
for (i = 0; i < *len; i++) |
0d2535cc5ac3
Added basic lexer debug output.
Ryan C. Gordon <icculus@icculus.org>
parents:
560
diff
changeset
|
380 |
{ |
0d2535cc5ac3
Added basic lexer debug output.
Ryan C. Gordon <icculus@icculus.org>
parents:
560
diff
changeset
|
381 |
if (retval[i] == '\n') |
0d2535cc5ac3
Added basic lexer debug output.
Ryan C. Gordon <icculus@icculus.org>
parents:
560
diff
changeset
|
382 |
printf("\\n"); |
0d2535cc5ac3
Added basic lexer debug output.
Ryan C. Gordon <icculus@icculus.org>
parents:
560
diff
changeset
|
383 |
else |
0d2535cc5ac3
Added basic lexer debug output.
Ryan C. Gordon <icculus@icculus.org>
parents:
560
diff
changeset
|
384 |
printf("%c", retval[i]); |
0d2535cc5ac3
Added basic lexer debug output.
Ryan C. Gordon <icculus@icculus.org>
parents:
560
diff
changeset
|
385 |
} // for |
0d2535cc5ac3
Added basic lexer debug output.
Ryan C. Gordon <icculus@icculus.org>
parents:
560
diff
changeset
|
386 |
printf("\" ("); |
0d2535cc5ac3
Added basic lexer debug output.
Ryan C. Gordon <icculus@icculus.org>
parents:
560
diff
changeset
|
387 |
switch (*token) |
0d2535cc5ac3
Added basic lexer debug output.
Ryan C. Gordon <icculus@icculus.org>
parents:
560
diff
changeset
|
388 |
{ |
0d2535cc5ac3
Added basic lexer debug output.
Ryan C. Gordon <icculus@icculus.org>
parents:
560
diff
changeset
|
389 |
#define TOKENCASE(x) case x: printf("%s", #x); break |
0d2535cc5ac3
Added basic lexer debug output.
Ryan C. Gordon <icculus@icculus.org>
parents:
560
diff
changeset
|
390 |
TOKENCASE(TOKEN_UNKNOWN); |
0d2535cc5ac3
Added basic lexer debug output.
Ryan C. Gordon <icculus@icculus.org>
parents:
560
diff
changeset
|
391 |
TOKENCASE(TOKEN_IDENTIFIER); |
0d2535cc5ac3
Added basic lexer debug output.
Ryan C. Gordon <icculus@icculus.org>
parents:
560
diff
changeset
|
392 |
TOKENCASE(TOKEN_INT_LITERAL); |
0d2535cc5ac3
Added basic lexer debug output.
Ryan C. Gordon <icculus@icculus.org>
parents:
560
diff
changeset
|
393 |
TOKENCASE(TOKEN_FLOAT_LITERAL); |
0d2535cc5ac3
Added basic lexer debug output.
Ryan C. Gordon <icculus@icculus.org>
parents:
560
diff
changeset
|
394 |
TOKENCASE(TOKEN_STRING_LITERAL); |
586
321a19a62989
Added new tokens to debug output.
Ryan C. Gordon <icculus@icculus.org>
parents:
583
diff
changeset
|
395 |
TOKENCASE(TOKEN_RSHIFTASSIGN); |
321a19a62989
Added new tokens to debug output.
Ryan C. Gordon <icculus@icculus.org>
parents:
583
diff
changeset
|
396 |
TOKENCASE(TOKEN_LSHIFTASSIGN); |
321a19a62989
Added new tokens to debug output.
Ryan C. Gordon <icculus@icculus.org>
parents:
583
diff
changeset
|
397 |
TOKENCASE(TOKEN_ADDASSIGN); |
321a19a62989
Added new tokens to debug output.
Ryan C. Gordon <icculus@icculus.org>
parents:
583
diff
changeset
|
398 |
TOKENCASE(TOKEN_SUBASSIGN); |
321a19a62989
Added new tokens to debug output.
Ryan C. Gordon <icculus@icculus.org>
parents:
583
diff
changeset
|
399 |
TOKENCASE(TOKEN_MULTASSIGN); |
321a19a62989
Added new tokens to debug output.
Ryan C. Gordon <icculus@icculus.org>
parents:
583
diff
changeset
|
400 |
TOKENCASE(TOKEN_DIVASSIGN); |
321a19a62989
Added new tokens to debug output.
Ryan C. Gordon <icculus@icculus.org>
parents:
583
diff
changeset
|
401 |
TOKENCASE(TOKEN_MODASSIGN); |
321a19a62989
Added new tokens to debug output.
Ryan C. Gordon <icculus@icculus.org>
parents:
583
diff
changeset
|
402 |
TOKENCASE(TOKEN_XORASSIGN); |
321a19a62989
Added new tokens to debug output.
Ryan C. Gordon <icculus@icculus.org>
parents:
583
diff
changeset
|
403 |
TOKENCASE(TOKEN_ANDASSIGN); |
321a19a62989
Added new tokens to debug output.
Ryan C. Gordon <icculus@icculus.org>
parents:
583
diff
changeset
|
404 |
TOKENCASE(TOKEN_ORASSIGN); |
321a19a62989
Added new tokens to debug output.
Ryan C. Gordon <icculus@icculus.org>
parents:
583
diff
changeset
|
405 |
TOKENCASE(TOKEN_INCREMENT); |
321a19a62989
Added new tokens to debug output.
Ryan C. Gordon <icculus@icculus.org>
parents:
583
diff
changeset
|
406 |
TOKENCASE(TOKEN_DECREMENT); |
561
0d2535cc5ac3
Added basic lexer debug output.
Ryan C. Gordon <icculus@icculus.org>
parents:
560
diff
changeset
|
407 |
TOKENCASE(TOKEN_RSHIFT); |
0d2535cc5ac3
Added basic lexer debug output.
Ryan C. Gordon <icculus@icculus.org>
parents:
560
diff
changeset
|
408 |
TOKENCASE(TOKEN_LSHIFT); |
0d2535cc5ac3
Added basic lexer debug output.
Ryan C. Gordon <icculus@icculus.org>
parents:
560
diff
changeset
|
409 |
TOKENCASE(TOKEN_ANDAND); |
0d2535cc5ac3
Added basic lexer debug output.
Ryan C. Gordon <icculus@icculus.org>
parents:
560
diff
changeset
|
410 |
TOKENCASE(TOKEN_OROR); |
0d2535cc5ac3
Added basic lexer debug output.
Ryan C. Gordon <icculus@icculus.org>
parents:
560
diff
changeset
|
411 |
TOKENCASE(TOKEN_LEQ); |
0d2535cc5ac3
Added basic lexer debug output.
Ryan C. Gordon <icculus@icculus.org>
parents:
560
diff
changeset
|
412 |
TOKENCASE(TOKEN_GEQ); |
0d2535cc5ac3
Added basic lexer debug output.
Ryan C. Gordon <icculus@icculus.org>
parents:
560
diff
changeset
|
413 |
TOKENCASE(TOKEN_EQL); |
0d2535cc5ac3
Added basic lexer debug output.
Ryan C. Gordon <icculus@icculus.org>
parents:
560
diff
changeset
|
414 |
TOKENCASE(TOKEN_NEQ); |
0d2535cc5ac3
Added basic lexer debug output.
Ryan C. Gordon <icculus@icculus.org>
parents:
560
diff
changeset
|
415 |
TOKENCASE(TOKEN_HASHHASH); |
0d2535cc5ac3
Added basic lexer debug output.
Ryan C. Gordon <icculus@icculus.org>
parents:
560
diff
changeset
|
416 |
TOKENCASE(TOKEN_PP_INCLUDE); |
0d2535cc5ac3
Added basic lexer debug output.
Ryan C. Gordon <icculus@icculus.org>
parents:
560
diff
changeset
|
417 |
TOKENCASE(TOKEN_PP_LINE); |
0d2535cc5ac3
Added basic lexer debug output.
Ryan C. Gordon <icculus@icculus.org>
parents:
560
diff
changeset
|
418 |
TOKENCASE(TOKEN_PP_DEFINE); |
0d2535cc5ac3
Added basic lexer debug output.
Ryan C. Gordon <icculus@icculus.org>
parents:
560
diff
changeset
|
419 |
TOKENCASE(TOKEN_PP_UNDEF); |
0d2535cc5ac3
Added basic lexer debug output.
Ryan C. Gordon <icculus@icculus.org>
parents:
560
diff
changeset
|
420 |
TOKENCASE(TOKEN_PP_IF); |
0d2535cc5ac3
Added basic lexer debug output.
Ryan C. Gordon <icculus@icculus.org>
parents:
560
diff
changeset
|
421 |
TOKENCASE(TOKEN_PP_IFDEF); |
0d2535cc5ac3
Added basic lexer debug output.
Ryan C. Gordon <icculus@icculus.org>
parents:
560
diff
changeset
|
422 |
TOKENCASE(TOKEN_PP_IFNDEF); |
0d2535cc5ac3
Added basic lexer debug output.
Ryan C. Gordon <icculus@icculus.org>
parents:
560
diff
changeset
|
423 |
TOKENCASE(TOKEN_PP_ELSE); |
0d2535cc5ac3
Added basic lexer debug output.
Ryan C. Gordon <icculus@icculus.org>
parents:
560
diff
changeset
|
424 |
TOKENCASE(TOKEN_PP_ELIF); |
0d2535cc5ac3
Added basic lexer debug output.
Ryan C. Gordon <icculus@icculus.org>
parents:
560
diff
changeset
|
425 |
TOKENCASE(TOKEN_PP_ENDIF); |
0d2535cc5ac3
Added basic lexer debug output.
Ryan C. Gordon <icculus@icculus.org>
parents:
560
diff
changeset
|
426 |
TOKENCASE(TOKEN_PP_ERROR); |
0d2535cc5ac3
Added basic lexer debug output.
Ryan C. Gordon <icculus@icculus.org>
parents:
560
diff
changeset
|
427 |
TOKENCASE(TOKEN_PP_INCOMPLETE_COMMENT); |
0d2535cc5ac3
Added basic lexer debug output.
Ryan C. Gordon <icculus@icculus.org>
parents:
560
diff
changeset
|
428 |
TOKENCASE(TOKEN_EOI); |
0d2535cc5ac3
Added basic lexer debug output.
Ryan C. Gordon <icculus@icculus.org>
parents:
560
diff
changeset
|
429 |
#undef TOKENCASE |
0d2535cc5ac3
Added basic lexer debug output.
Ryan C. Gordon <icculus@icculus.org>
parents:
560
diff
changeset
|
430 |
|
0d2535cc5ac3
Added basic lexer debug output.
Ryan C. Gordon <icculus@icculus.org>
parents:
560
diff
changeset
|
431 |
case ((Token) '\n'): |
0d2535cc5ac3
Added basic lexer debug output.
Ryan C. Gordon <icculus@icculus.org>
parents:
560
diff
changeset
|
432 |
printf("'\\n'"); |
0d2535cc5ac3
Added basic lexer debug output.
Ryan C. Gordon <icculus@icculus.org>
parents:
560
diff
changeset
|
433 |
break; |
0d2535cc5ac3
Added basic lexer debug output.
Ryan C. Gordon <icculus@icculus.org>
parents:
560
diff
changeset
|
434 |
|
0d2535cc5ac3
Added basic lexer debug output.
Ryan C. Gordon <icculus@icculus.org>
parents:
560
diff
changeset
|
435 |
default: |
0d2535cc5ac3
Added basic lexer debug output.
Ryan C. Gordon <icculus@icculus.org>
parents:
560
diff
changeset
|
436 |
assert(((int)*token) < 256); |
0d2535cc5ac3
Added basic lexer debug output.
Ryan C. Gordon <icculus@icculus.org>
parents:
560
diff
changeset
|
437 |
printf("'%c'", (char) *token); |
0d2535cc5ac3
Added basic lexer debug output.
Ryan C. Gordon <icculus@icculus.org>
parents:
560
diff
changeset
|
438 |
break; |
0d2535cc5ac3
Added basic lexer debug output.
Ryan C. Gordon <icculus@icculus.org>
parents:
560
diff
changeset
|
439 |
} // switch |
0d2535cc5ac3
Added basic lexer debug output.
Ryan C. Gordon <icculus@icculus.org>
parents:
560
diff
changeset
|
440 |
printf(")\n"); |
0d2535cc5ac3
Added basic lexer debug output.
Ryan C. Gordon <icculus@icculus.org>
parents:
560
diff
changeset
|
441 |
#endif |
0d2535cc5ac3
Added basic lexer debug output.
Ryan C. Gordon <icculus@icculus.org>
parents:
560
diff
changeset
|
442 |
|
0d2535cc5ac3
Added basic lexer debug output.
Ryan C. Gordon <icculus@icculus.org>
parents:
560
diff
changeset
|
443 |
return retval; |
555
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
444 |
} // preprocessor_nexttoken |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
445 |
|
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
446 |
|
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
447 |
const char *preprocessor_sourcepos(Preprocessor *_ctx, unsigned int *pos) |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
448 |
{ |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
449 |
Context *ctx = (Context *) _ctx; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
450 |
if (ctx->include_stack == NULL) |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
451 |
{ |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
452 |
*pos = 0; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
453 |
return NULL; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
454 |
} // if |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
455 |
|
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
456 |
*pos = ctx->include_stack->line; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
457 |
return ctx->include_stack->filename; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
458 |
} // preprocessor_sourcepos |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
459 |
|
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
460 |
|
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
461 |
// public API... |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
462 |
|
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
463 |
static const MOJOSHADER_preprocessData out_of_mem_data_preprocessor = { |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
464 |
1, &MOJOSHADER_out_of_mem_error, 0, 0, 0, 0, 0 |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
465 |
}; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
466 |
|
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
467 |
#define BUFFER_LEN (64 * 1024) |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
468 |
typedef struct BufferList |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
469 |
{ |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
470 |
char buffer[BUFFER_LEN]; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
471 |
size_t bytes; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
472 |
struct BufferList *next; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
473 |
} BufferList; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
474 |
|
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
475 |
typedef struct Buffer |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
476 |
{ |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
477 |
size_t total_bytes; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
478 |
BufferList head; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
479 |
BufferList *tail; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
480 |
} Buffer; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
481 |
|
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
482 |
static void buffer_init(Buffer *buffer) |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
483 |
{ |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
484 |
buffer->total_bytes = 0; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
485 |
buffer->head.bytes = 0; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
486 |
buffer->head.next = NULL; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
487 |
buffer->tail = &buffer->head; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
488 |
} // buffer_init |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
489 |
|
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
490 |
|
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
491 |
static int add_to_buffer(Buffer *buffer, const char *data, |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
492 |
size_t len, MOJOSHADER_malloc m, void *d) |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
493 |
{ |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
494 |
buffer->total_bytes += len; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
495 |
while (len > 0) |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
496 |
{ |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
497 |
const size_t avail = BUFFER_LEN - buffer->tail->bytes; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
498 |
const size_t cpy = (avail > len) ? len : avail; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
499 |
memcpy(buffer->tail->buffer + buffer->tail->bytes, data, cpy); |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
500 |
len -= cpy; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
501 |
data += cpy; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
502 |
buffer->tail->bytes += cpy; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
503 |
assert(buffer->tail->bytes <= BUFFER_LEN); |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
504 |
if (buffer->tail->bytes == BUFFER_LEN) |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
505 |
{ |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
506 |
BufferList *item = (BufferList *) m(sizeof (BufferList), d); |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
507 |
if (item == NULL) |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
508 |
return 0; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
509 |
item->bytes = 0; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
510 |
item->next = NULL; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
511 |
buffer->tail->next = item; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
512 |
buffer->tail = item; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
513 |
} // if |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
514 |
} // while |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
515 |
|
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
516 |
return 1; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
517 |
} // add_to_buffer |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
518 |
|
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
519 |
|
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
520 |
static int indent_buffer(Buffer *buffer, int n, int newline, |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
521 |
MOJOSHADER_malloc m, void *d) |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
522 |
{ |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
523 |
static char spaces[4] = { ' ', ' ', ' ', ' ' }; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
524 |
if (newline) |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
525 |
{ |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
526 |
while (n--) |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
527 |
{ |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
528 |
if (!add_to_buffer(buffer, spaces, sizeof (spaces), m, d)) |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
529 |
return 0; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
530 |
} // while |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
531 |
} // if |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
532 |
else |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
533 |
{ |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
534 |
if (!add_to_buffer(buffer, spaces, 1, m, d)) |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
535 |
return 0; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
536 |
} // else |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
537 |
return 1; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
538 |
} // indent_buffer |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
539 |
|
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
540 |
|
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
541 |
static char *flatten_buffer(Buffer *buffer, MOJOSHADER_malloc m, void *d) |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
542 |
{ |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
543 |
char *retval = m(buffer->total_bytes + 1, d); |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
544 |
if (retval == NULL) |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
545 |
return NULL; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
546 |
BufferList *item = &buffer->head; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
547 |
char *ptr = retval; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
548 |
while (item != NULL) |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
549 |
{ |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
550 |
BufferList *next = item->next; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
551 |
memcpy(ptr, item->buffer, item->bytes); |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
552 |
ptr += item->bytes; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
553 |
item = next; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
554 |
} // while |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
555 |
*ptr = '\0'; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
556 |
|
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
557 |
assert(ptr == (retval + buffer->total_bytes)); |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
558 |
return retval; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
559 |
} // flatten_buffer |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
560 |
|
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
561 |
|
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
562 |
static void free_buffer(Buffer *buffer, MOJOSHADER_free f, void *d) |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
563 |
{ |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
564 |
// head is statically allocated, so start with head.next... |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
565 |
BufferList *item = buffer->head.next; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
566 |
while (item != NULL) |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
567 |
{ |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
568 |
BufferList *next = item->next; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
569 |
f(item, d); |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
570 |
item = next; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
571 |
} // while |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
572 |
buffer_init(buffer); |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
573 |
} // free_buffer |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
574 |
|
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
575 |
|
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
576 |
// !!! FIXME: cut and paste. |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
577 |
static void free_error_list(ErrorList *item, MOJOSHADER_free f, void *d) |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
578 |
{ |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
579 |
while (item != NULL) |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
580 |
{ |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
581 |
ErrorList *next = item->next; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
582 |
f((void *) item->error.error, d); |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
583 |
f((void *) item->error.filename, d); |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
584 |
f(item, d); |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
585 |
item = next; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
586 |
} // while |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
587 |
} // free_error_list |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
588 |
|
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
589 |
|
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
590 |
// !!! FIXME: cut and paste. |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
591 |
static MOJOSHADER_error *build_errors(ErrorList **errors, const int count, |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
592 |
MOJOSHADER_malloc m, MOJOSHADER_free f, void *d) |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
593 |
{ |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
594 |
int total = 0; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
595 |
MOJOSHADER_error *retval = (MOJOSHADER_error *) |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
596 |
m(sizeof (MOJOSHADER_error) * count, d); |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
597 |
if (retval == NULL) |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
598 |
return NULL; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
599 |
|
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
600 |
ErrorList *item = *errors; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
601 |
while (item != NULL) |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
602 |
{ |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
603 |
ErrorList *next = item->next; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
604 |
// reuse the string allocations |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
605 |
memcpy(&retval[total], &item->error, sizeof (MOJOSHADER_error)); |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
606 |
f(item, d); |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
607 |
item = next; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
608 |
total++; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
609 |
} // while |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
610 |
*errors = NULL; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
611 |
|
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
612 |
assert(total == count); |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
613 |
return retval; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
614 |
} // build_errors |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
615 |
|
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
616 |
|
578
6c8f73c845e7
Allow app to specify a base filename for error messages.
Ryan C. Gordon <icculus@icculus.org>
parents:
568
diff
changeset
|
617 |
const MOJOSHADER_preprocessData *MOJOSHADER_preprocess(const char *filename, |
6c8f73c845e7
Allow app to specify a base filename for error messages.
Ryan C. Gordon <icculus@icculus.org>
parents:
568
diff
changeset
|
618 |
const char *source, unsigned int sourcelen, |
555
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
619 |
const MOJOSHADER_preprocessorDefine **defines, |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
620 |
unsigned int define_count, |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
621 |
MOJOSHADER_includeOpen include_open, |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
622 |
MOJOSHADER_includeClose include_close, |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
623 |
MOJOSHADER_malloc m, MOJOSHADER_free f, void *d) |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
624 |
{ |
564
c669568326fb
Reworked preprocessor newline management.
Ryan C. Gordon <icculus@icculus.org>
parents:
561
diff
changeset
|
625 |
#ifdef _WINDOWS |
c669568326fb
Reworked preprocessor newline management.
Ryan C. Gordon <icculus@icculus.org>
parents:
561
diff
changeset
|
626 |
static const char endline[] = { '\r', '\n' }; |
c669568326fb
Reworked preprocessor newline management.
Ryan C. Gordon <icculus@icculus.org>
parents:
561
diff
changeset
|
627 |
#else |
c669568326fb
Reworked preprocessor newline management.
Ryan C. Gordon <icculus@icculus.org>
parents:
561
diff
changeset
|
628 |
static const char endline[] = { '\n' }; |
c669568326fb
Reworked preprocessor newline management.
Ryan C. Gordon <icculus@icculus.org>
parents:
561
diff
changeset
|
629 |
#endif |
c669568326fb
Reworked preprocessor newline management.
Ryan C. Gordon <icculus@icculus.org>
parents:
561
diff
changeset
|
630 |
|
555
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
631 |
ErrorList *errors = NULL; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
632 |
int error_count = 0; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
633 |
|
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
634 |
if (m == NULL) m = MOJOSHADER_internal_malloc; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
635 |
if (f == NULL) f = MOJOSHADER_internal_free; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
636 |
|
582 | 637 |
// !!! FIXME |
555
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
638 |
include_open = (MOJOSHADER_includeOpen) 0x1; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
639 |
include_close = (MOJOSHADER_includeClose) 0x1; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
640 |
|
578
6c8f73c845e7
Allow app to specify a base filename for error messages.
Ryan C. Gordon <icculus@icculus.org>
parents:
568
diff
changeset
|
641 |
Preprocessor *pp = preprocessor_start(filename, source, sourcelen, |
555
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
642 |
include_open, include_close, |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
643 |
defines, define_count, m, f, d); |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
644 |
|
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
645 |
if (pp == NULL) |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
646 |
return &out_of_mem_data_preprocessor; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
647 |
|
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
648 |
Token token = TOKEN_UNKNOWN; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
649 |
const char *tokstr = NULL; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
650 |
const char *err = NULL; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
651 |
|
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
652 |
Buffer buffer; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
653 |
buffer_init(&buffer); |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
654 |
|
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
655 |
int nl = 1; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
656 |
int indent = 0; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
657 |
unsigned int len = 0; |
564
c669568326fb
Reworked preprocessor newline management.
Ryan C. Gordon <icculus@icculus.org>
parents:
561
diff
changeset
|
658 |
int out_of_memory = 0; |
555
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
659 |
while ((tokstr = preprocessor_nexttoken(pp, &len, &token)) != NULL) |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
660 |
{ |
564
c669568326fb
Reworked preprocessor newline management.
Ryan C. Gordon <icculus@icculus.org>
parents:
561
diff
changeset
|
661 |
int isnewline = 0; |
c669568326fb
Reworked preprocessor newline management.
Ryan C. Gordon <icculus@icculus.org>
parents:
561
diff
changeset
|
662 |
|
c669568326fb
Reworked preprocessor newline management.
Ryan C. Gordon <icculus@icculus.org>
parents:
561
diff
changeset
|
663 |
assert(token != TOKEN_EOI); |
c669568326fb
Reworked preprocessor newline management.
Ryan C. Gordon <icculus@icculus.org>
parents:
561
diff
changeset
|
664 |
|
c669568326fb
Reworked preprocessor newline management.
Ryan C. Gordon <icculus@icculus.org>
parents:
561
diff
changeset
|
665 |
if (!out_of_memory) |
c669568326fb
Reworked preprocessor newline management.
Ryan C. Gordon <icculus@icculus.org>
parents:
561
diff
changeset
|
666 |
out_of_memory = preprocessor_outofmemory(pp); |
c669568326fb
Reworked preprocessor newline management.
Ryan C. Gordon <icculus@icculus.org>
parents:
561
diff
changeset
|
667 |
|
c669568326fb
Reworked preprocessor newline management.
Ryan C. Gordon <icculus@icculus.org>
parents:
561
diff
changeset
|
668 |
// Microsoft's preprocessor is weird. |
c669568326fb
Reworked preprocessor newline management.
Ryan C. Gordon <icculus@icculus.org>
parents:
561
diff
changeset
|
669 |
// It ignores newlines, and then inserts its own around certain |
c669568326fb
Reworked preprocessor newline management.
Ryan C. Gordon <icculus@icculus.org>
parents:
561
diff
changeset
|
670 |
// tokens. For example, after a semicolon. This allows HLSL code to |
c669568326fb
Reworked preprocessor newline management.
Ryan C. Gordon <icculus@icculus.org>
parents:
561
diff
changeset
|
671 |
// be mostly readable, instead of a stream of tokens. |
c669568326fb
Reworked preprocessor newline management.
Ryan C. Gordon <icculus@icculus.org>
parents:
561
diff
changeset
|
672 |
if (token == ((Token) '\n')) |
583
9c966b751fd6
Fixed preprocessor indent and endline output.
Ryan C. Gordon <icculus@icculus.org>
parents:
582
diff
changeset
|
673 |
isnewline = nl; // this doesn't actually care about '\n' ... |
555
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
674 |
|
564
c669568326fb
Reworked preprocessor newline management.
Ryan C. Gordon <icculus@icculus.org>
parents:
561
diff
changeset
|
675 |
else if ( (token == ((Token) '}')) || (token == ((Token) ';')) ) |
555
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
676 |
{ |
564
c669568326fb
Reworked preprocessor newline management.
Ryan C. Gordon <icculus@icculus.org>
parents:
561
diff
changeset
|
677 |
if (!out_of_memory) |
c669568326fb
Reworked preprocessor newline management.
Ryan C. Gordon <icculus@icculus.org>
parents:
561
diff
changeset
|
678 |
{ |
c669568326fb
Reworked preprocessor newline management.
Ryan C. Gordon <icculus@icculus.org>
parents:
561
diff
changeset
|
679 |
if ( (token == ((Token) '}')) && (indent > 0) ) |
c669568326fb
Reworked preprocessor newline management.
Ryan C. Gordon <icculus@icculus.org>
parents:
561
diff
changeset
|
680 |
indent--; |
c669568326fb
Reworked preprocessor newline management.
Ryan C. Gordon <icculus@icculus.org>
parents:
561
diff
changeset
|
681 |
|
c669568326fb
Reworked preprocessor newline management.
Ryan C. Gordon <icculus@icculus.org>
parents:
561
diff
changeset
|
682 |
out_of_memory = |
c669568326fb
Reworked preprocessor newline management.
Ryan C. Gordon <icculus@icculus.org>
parents:
561
diff
changeset
|
683 |
(!indent_buffer(&buffer, indent, nl, m, d)) || |
c669568326fb
Reworked preprocessor newline management.
Ryan C. Gordon <icculus@icculus.org>
parents:
561
diff
changeset
|
684 |
(!add_to_buffer(&buffer, tokstr, len, m, d)) || |
c669568326fb
Reworked preprocessor newline management.
Ryan C. Gordon <icculus@icculus.org>
parents:
561
diff
changeset
|
685 |
(!add_to_buffer(&buffer, endline, sizeof (endline), m, d)); |
c669568326fb
Reworked preprocessor newline management.
Ryan C. Gordon <icculus@icculus.org>
parents:
561
diff
changeset
|
686 |
|
c669568326fb
Reworked preprocessor newline management.
Ryan C. Gordon <icculus@icculus.org>
parents:
561
diff
changeset
|
687 |
isnewline = 1; |
c669568326fb
Reworked preprocessor newline management.
Ryan C. Gordon <icculus@icculus.org>
parents:
561
diff
changeset
|
688 |
} // if |
555
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
689 |
} // if |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
690 |
|
564
c669568326fb
Reworked preprocessor newline management.
Ryan C. Gordon <icculus@icculus.org>
parents:
561
diff
changeset
|
691 |
else if (token == ((Token) '{')) |
c669568326fb
Reworked preprocessor newline management.
Ryan C. Gordon <icculus@icculus.org>
parents:
561
diff
changeset
|
692 |
{ |
c669568326fb
Reworked preprocessor newline management.
Ryan C. Gordon <icculus@icculus.org>
parents:
561
diff
changeset
|
693 |
if (!out_of_memory) |
c669568326fb
Reworked preprocessor newline management.
Ryan C. Gordon <icculus@icculus.org>
parents:
561
diff
changeset
|
694 |
{ |
c669568326fb
Reworked preprocessor newline management.
Ryan C. Gordon <icculus@icculus.org>
parents:
561
diff
changeset
|
695 |
out_of_memory = |
c669568326fb
Reworked preprocessor newline management.
Ryan C. Gordon <icculus@icculus.org>
parents:
561
diff
changeset
|
696 |
(!add_to_buffer(&buffer,endline,sizeof (endline),m,d)) || |
583
9c966b751fd6
Fixed preprocessor indent and endline output.
Ryan C. Gordon <icculus@icculus.org>
parents:
582
diff
changeset
|
697 |
(!indent_buffer(&buffer, indent, 1, m, d)) || |
564
c669568326fb
Reworked preprocessor newline management.
Ryan C. Gordon <icculus@icculus.org>
parents:
561
diff
changeset
|
698 |
(!add_to_buffer(&buffer, "{", 1, m, d)) || |
c669568326fb
Reworked preprocessor newline management.
Ryan C. Gordon <icculus@icculus.org>
parents:
561
diff
changeset
|
699 |
(!add_to_buffer(&buffer,endline,sizeof (endline),m,d)); |
c669568326fb
Reworked preprocessor newline management.
Ryan C. Gordon <icculus@icculus.org>
parents:
561
diff
changeset
|
700 |
indent++; |
c669568326fb
Reworked preprocessor newline management.
Ryan C. Gordon <icculus@icculus.org>
parents:
561
diff
changeset
|
701 |
isnewline = 1; |
c669568326fb
Reworked preprocessor newline management.
Ryan C. Gordon <icculus@icculus.org>
parents:
561
diff
changeset
|
702 |
} // if |
c669568326fb
Reworked preprocessor newline management.
Ryan C. Gordon <icculus@icculus.org>
parents:
561
diff
changeset
|
703 |
} // else if |
555
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
704 |
|
564
c669568326fb
Reworked preprocessor newline management.
Ryan C. Gordon <icculus@icculus.org>
parents:
561
diff
changeset
|
705 |
else |
c669568326fb
Reworked preprocessor newline management.
Ryan C. Gordon <icculus@icculus.org>
parents:
561
diff
changeset
|
706 |
{ |
c669568326fb
Reworked preprocessor newline management.
Ryan C. Gordon <icculus@icculus.org>
parents:
561
diff
changeset
|
707 |
if (!out_of_memory) |
c669568326fb
Reworked preprocessor newline management.
Ryan C. Gordon <icculus@icculus.org>
parents:
561
diff
changeset
|
708 |
{ |
c669568326fb
Reworked preprocessor newline management.
Ryan C. Gordon <icculus@icculus.org>
parents:
561
diff
changeset
|
709 |
out_of_memory = (!indent_buffer(&buffer, indent, nl, m, d)) || |
c669568326fb
Reworked preprocessor newline management.
Ryan C. Gordon <icculus@icculus.org>
parents:
561
diff
changeset
|
710 |
(!add_to_buffer(&buffer, tokstr, len, m, d)); |
555
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
711 |
|
564
c669568326fb
Reworked preprocessor newline management.
Ryan C. Gordon <icculus@icculus.org>
parents:
561
diff
changeset
|
712 |
} // if |
c669568326fb
Reworked preprocessor newline management.
Ryan C. Gordon <icculus@icculus.org>
parents:
561
diff
changeset
|
713 |
} // else |
555
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
714 |
|
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
715 |
nl = isnewline; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
716 |
|
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
717 |
if ((!out_of_memory) && ((err = preprocessor_error(pp)) != NULL)) |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
718 |
{ |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
719 |
ErrorList *error = (ErrorList *) m(sizeof (ErrorList), d); |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
720 |
unsigned int pos = 0; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
721 |
char *fname = NULL; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
722 |
const char *str = preprocessor_sourcepos(pp, &pos); |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
723 |
if (str != NULL) |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
724 |
{ |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
725 |
fname = (char *) m(strlen(str) + 1, d); |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
726 |
if (fname != NULL) |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
727 |
strcpy(fname, str); |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
728 |
} // if |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
729 |
|
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
730 |
// !!! FIXME: cut and paste with other error handlers. |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
731 |
char *errstr = (char *) m(strlen(err) + 1, d); |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
732 |
if (errstr != NULL) |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
733 |
strcpy(errstr, err); |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
734 |
|
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
735 |
out_of_memory = ((!error) || ((!fname) && (str)) || (!errstr)); |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
736 |
if (out_of_memory) |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
737 |
{ |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
738 |
if (errstr) f(errstr, d); |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
739 |
if (fname) f(fname, d); |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
740 |
if (error) f(error, d); |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
741 |
} // if |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
742 |
else |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
743 |
{ |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
744 |
error->error.error = errstr; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
745 |
error->error.filename = fname; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
746 |
error->error.error_position = pos; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
747 |
error->next = NULL; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
748 |
|
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
749 |
ErrorList *prev = NULL; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
750 |
ErrorList *item = errors; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
751 |
while (item != NULL) |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
752 |
{ |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
753 |
prev = item; |
558
314c86ff14dd
Fixed stupid linked list bug.
Ryan C. Gordon <icculus@icculus.org>
parents:
557
diff
changeset
|
754 |
item = item->next; |
555
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
755 |
} // while |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
756 |
|
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
757 |
if (prev == NULL) |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
758 |
errors = error; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
759 |
else |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
760 |
prev->next = error; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
761 |
|
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
762 |
error_count++; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
763 |
} // else |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
764 |
|
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
765 |
continue; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
766 |
} // if |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
767 |
|
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
768 |
if (out_of_memory) |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
769 |
{ |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
770 |
preprocessor_end(pp); |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
771 |
free_buffer(&buffer, f, d); |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
772 |
free_error_list(errors, f, d); |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
773 |
return &out_of_mem_data_preprocessor; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
774 |
} // if |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
775 |
} // while |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
776 |
|
564
c669568326fb
Reworked preprocessor newline management.
Ryan C. Gordon <icculus@icculus.org>
parents:
561
diff
changeset
|
777 |
assert((token == TOKEN_EOI) || (out_of_memory)); |
c669568326fb
Reworked preprocessor newline management.
Ryan C. Gordon <icculus@icculus.org>
parents:
561
diff
changeset
|
778 |
|
555
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
779 |
preprocessor_end(pp); |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
780 |
|
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
781 |
const size_t total_bytes = buffer.total_bytes; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
782 |
char *output = flatten_buffer(&buffer, m, d); |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
783 |
free_buffer(&buffer, f, d); |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
784 |
if (output == NULL) |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
785 |
{ |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
786 |
free_error_list(errors, f, d); |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
787 |
return &out_of_mem_data_preprocessor; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
788 |
} // if |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
789 |
|
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
790 |
MOJOSHADER_preprocessData *retval = (MOJOSHADER_preprocessData *) |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
791 |
m(sizeof (MOJOSHADER_preprocessData), d); |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
792 |
if (retval == NULL) |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
793 |
{ |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
794 |
free_error_list(errors, f, d); |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
795 |
f(output, d); |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
796 |
return &out_of_mem_data_preprocessor; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
797 |
} // if |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
798 |
|
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
799 |
retval->errors = build_errors(&errors, error_count, m, f, d); |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
800 |
if (retval->errors == NULL) |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
801 |
{ |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
802 |
free_error_list(errors, f, d); |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
803 |
f(retval, d); |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
804 |
f(output, d); |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
805 |
return &out_of_mem_data_preprocessor; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
806 |
} // if |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
807 |
|
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
808 |
retval->error_count = error_count; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
809 |
retval->output = output; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
810 |
retval->output_len = total_bytes; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
811 |
retval->malloc = m; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
812 |
retval->free = f; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
813 |
retval->malloc_data = d; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
814 |
return retval; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
815 |
} // MOJOSHADER_preprocess |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
816 |
|
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
817 |
|
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
818 |
void MOJOSHADER_freePreprocessData(const MOJOSHADER_preprocessData *_data) |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
819 |
{ |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
820 |
MOJOSHADER_preprocessData *data = (MOJOSHADER_preprocessData *) _data; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
821 |
if ((data == NULL) || (data == &out_of_mem_data_preprocessor)) |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
822 |
return; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
823 |
|
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
824 |
MOJOSHADER_free f = (data->free == NULL) ? MOJOSHADER_internal_free : data->free; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
825 |
void *d = data->malloc_data; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
826 |
int i; |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
827 |
|
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
828 |
if (data->output != NULL) |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
829 |
f((void *) data->output, d); |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
830 |
|
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
831 |
if (data->errors != NULL) |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
832 |
{ |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
833 |
for (i = 0; i < data->error_count; i++) |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
834 |
{ |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
835 |
if (data->errors[i].error != NULL) |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
836 |
f((void *) data->errors[i].error, d); |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
837 |
if (data->errors[i].filename != NULL) |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
838 |
f((void *) data->errors[i].filename, d); |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
839 |
} // for |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
840 |
f(data->errors, d); |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
841 |
} // if |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
842 |
|
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
843 |
f(data, d); |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
844 |
} // MOJOSHADER_freePreprocessData |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
845 |
|
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
846 |
|
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
847 |
// end of mojoshader_preprocessor.c ... |
940821555fda
Initial work on preprocessor. Not yet complete!
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
848 |