Skip to content

Latest commit

 

History

History
2760 lines (2399 loc) · 86.2 KB

mojoshader_compiler.c

File metadata and controls

2760 lines (2399 loc) · 86.2 KB
 
Feb 19, 2010
Feb 19, 2010
1
2
3
4
5
6
7
8
9
/**
* MojoShader; generate shader programs from bytecode of compiled
* Direct3D shaders.
*
* Please see the file LICENSE.txt in the source's root directory.
*
* This file written by Ryan C. Gordon.
*/
Oct 19, 2010
Oct 19, 2010
10
11
12
13
// !!! FIXME: this needs to be split into separate source files:
// !!! FIXME: parse, AST, IR, etc. The problem is we need to deal with the
// !!! FIXME: "Context" struct being passed around everywhere.
Feb 28, 2009
Feb 28, 2009
14
15
#define __MOJOSHADER_INTERNAL__ 1
#include "mojoshader_internal.h"
Aug 23, 2009
Aug 23, 2009
17
18
19
20
#if DEBUG_COMPILER_PARSER
#define LEMON_SUPPORT_TRACING 1
#endif
Oct 13, 2010
Oct 13, 2010
21
22
// !!! FIXME: I'd like to lose this. It's really inefficient. Just keep a
// !!! FIXME: (tail) on these list structures instead?
Feb 23, 2010
Feb 23, 2010
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#define REVERSE_LINKED_LIST(typ, head) { \
if ((head) && (head->next)) { \
typ *tmp = NULL; \
typ *tmp1 = NULL; \
while (head != NULL) { \
tmp = head; \
head = head->next; \
tmp->next = tmp1; \
tmp1 = tmp; \
} \
head = tmp; \
} \
}
Feb 9, 2010
Feb 9, 2010
37
typedef union TokenData
Aug 23, 2009
Aug 23, 2009
38
{
Feb 9, 2010
Feb 9, 2010
39
40
41
int64 i64;
double dbl;
const char *string;
Aug 23, 2009
Aug 23, 2009
42
43
} TokenData;
Feb 28, 2009
Feb 28, 2009
44
Feb 19, 2010
Feb 19, 2010
45
// Structures that make up the parse tree...
Feb 9, 2010
Feb 9, 2010
46
Feb 22, 2010
Feb 22, 2010
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
typedef enum ASTNodeType
{
AST_OP_START_RANGE,
AST_OP_START_RANGE_UNARY,
AST_OP_POSTINCREMENT,
AST_OP_POSTDECREMENT,
AST_OP_PREINCREMENT,
AST_OP_PREDECREMENT,
AST_OP_NEGATE,
AST_OP_COMPLEMENT,
AST_OP_NOT,
AST_OP_END_RANGE_UNARY,
AST_OP_START_RANGE_BINARY,
AST_OP_DEREF_ARRAY,
AST_OP_COMMA,
AST_OP_MULTIPLY,
AST_OP_DIVIDE,
AST_OP_MODULO,
AST_OP_ADD,
AST_OP_SUBTRACT,
AST_OP_LSHIFT,
AST_OP_RSHIFT,
AST_OP_LESSTHAN,
AST_OP_GREATERTHAN,
AST_OP_LESSTHANOREQUAL,
AST_OP_GREATERTHANOREQUAL,
AST_OP_EQUAL,
AST_OP_NOTEQUAL,
AST_OP_BINARYAND,
AST_OP_BINARYXOR,
AST_OP_BINARYOR,
AST_OP_LOGICALAND,
AST_OP_LOGICALOR,
AST_OP_ASSIGN,
AST_OP_MULASSIGN,
AST_OP_DIVASSIGN,
AST_OP_MODASSIGN,
AST_OP_ADDASSIGN,
AST_OP_SUBASSIGN,
AST_OP_LSHIFTASSIGN,
AST_OP_RSHIFTASSIGN,
AST_OP_ANDASSIGN,
AST_OP_XORASSIGN,
AST_OP_ORASSIGN,
AST_OP_END_RANGE_BINARY,
AST_OP_START_RANGE_TERNARY,
AST_OP_CONDITIONAL,
AST_OP_END_RANGE_TERNARY,
AST_OP_START_RANGE_DATA,
AST_OP_IDENTIFIER,
AST_OP_INT_LITERAL,
AST_OP_FLOAT_LITERAL,
AST_OP_STRING_LITERAL,
Oct 20, 2010
Oct 20, 2010
103
AST_OP_BOOLEAN_LITERAL,
Feb 22, 2010
Feb 22, 2010
104
105
106
AST_OP_END_RANGE_DATA,
AST_OP_START_RANGE_MISC,
Oct 26, 2010
Oct 26, 2010
107
AST_OP_DEREF_STRUCT,
Oct 25, 2010
Oct 25, 2010
108
AST_OP_CALLFUNC,
Feb 22, 2010
Feb 22, 2010
109
110
111
112
113
114
115
116
117
118
119
120
121
AST_OP_CONSTRUCTOR,
AST_OP_CAST,
AST_OP_END_RANGE_MISC,
AST_OP_END_RANGE,
AST_COMPUNIT_START_RANGE,
AST_COMPUNIT_FUNCTION, // function declaration or definition
AST_COMPUNIT_TYPEDEF, // typedef or struct
AST_COMPUNIT_STRUCT, // global struct
AST_COMPUNIT_VARIABLE, // global variable
AST_COMPUNIT_END_RANGE,
AST_STATEMENT_START_RANGE,
Oct 13, 2010
Oct 13, 2010
122
AST_STATEMENT_BLOCK,
Feb 22, 2010
Feb 22, 2010
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
AST_STATEMENT_EMPTY,
AST_STATEMENT_EXPRESSION,
AST_STATEMENT_IF,
AST_STATEMENT_SWITCH,
AST_STATEMENT_FOR,
AST_STATEMENT_DO,
AST_STATEMENT_WHILE,
AST_STATEMENT_RETURN,
AST_STATEMENT_BREAK,
AST_STATEMENT_CONTINUE,
AST_STATEMENT_DISCARD,
AST_STATEMENT_TYPEDEF,
AST_STATEMENT_STRUCT,
AST_STATEMENT_VARDECL,
AST_STATEMENT_END_RANGE,
AST_MISC_START_RANGE,
Oct 25, 2010
Oct 25, 2010
140
AST_FUNCTION_PARAMS,
Feb 22, 2010
Feb 22, 2010
141
142
143
144
145
146
147
148
149
150
AST_FUNCTION_SIGNATURE,
AST_SCALAR_OR_ARRAY,
AST_TYPEDEF,
AST_PACK_OFFSET,
AST_VARIABLE_LOWLEVEL,
AST_ANNOTATION,
AST_VARIABLE_DECLARATION,
AST_STRUCT_DECLARATION,
AST_STRUCT_MEMBER,
AST_SWITCH_CASE,
Oct 25, 2010
Oct 25, 2010
151
AST_ARGUMENTS,
Feb 22, 2010
Feb 22, 2010
152
153
154
155
156
157
158
159
160
161
162
AST_MISC_END_RANGE,
AST_END_RANGE
} ASTNodeType;
typedef struct ASTNode
{
ASTNodeType type;
const char *filename;
uint32 line;
} ASTNode;
Feb 9, 2010
Feb 9, 2010
163
Feb 19, 2010
Feb 19, 2010
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
typedef enum VariableAttributes
{
VARATTR_EXTERN = (1 << 0),
VARATTR_NOINTERPOLATION = (1 << 1),
VARATTR_SHARED = (1 << 2),
VARATTR_STATIC = (1 << 3),
VARATTR_UNIFORM = (1 << 4),
VARATTR_VOLATILE = (1 << 5),
VARATTR_CONST = (1 << 6),
VARATTR_ROWMAJOR = (1 << 7),
VARATTR_COLUMNMAJOR = (1 << 8)
} VariableAttributes;
typedef enum IfAttributes
{
IFATTR_NONE,
IFATTR_BRANCH,
IFATTR_FLATTEN,
IFATTR_IFALL,
IFATTR_IFANY,
IFATTR_PREDICATE,
IFATTR_PREDICATEBLOCK,
} IfAttributes;
typedef enum SwitchAttributes
{
SWITCHATTR_NONE,
SWITCHATTR_FLATTEN,
SWITCHATTR_BRANCH,
SWITCHATTR_FORCECASE,
SWITCHATTR_CALL
} SwitchAttributes;
Feb 22, 2010
Feb 22, 2010
197
static inline int operator_is_unary(const ASTNodeType op)
Feb 9, 2010
Feb 9, 2010
198
{
Feb 22, 2010
Feb 22, 2010
199
return ((op > AST_OP_START_RANGE_UNARY) && (op < AST_OP_END_RANGE_UNARY));
Feb 9, 2010
Feb 9, 2010
200
201
} // operator_is_unary
Feb 22, 2010
Feb 22, 2010
202
static inline int operator_is_binary(const ASTNodeType op)
Feb 9, 2010
Feb 9, 2010
203
{
Feb 22, 2010
Feb 22, 2010
204
return ((op > AST_OP_START_RANGE_BINARY) && (op < AST_OP_END_RANGE_BINARY));
Feb 9, 2010
Feb 9, 2010
205
206
} // operator_is_binary
Feb 22, 2010
Feb 22, 2010
207
static inline int operator_is_ternary(const ASTNodeType op)
Feb 9, 2010
Feb 9, 2010
208
{
Feb 22, 2010
Feb 22, 2010
209
return ((op > AST_OP_START_RANGE_TERNARY) && (op < AST_OP_END_RANGE_TERNARY));
Feb 9, 2010
Feb 9, 2010
210
211
} // operator_is_ternary
Feb 22, 2010
Feb 22, 2010
212
typedef struct ASTGeneric
Feb 9, 2010
Feb 9, 2010
213
{
Feb 22, 2010
Feb 22, 2010
214
215
216
217
ASTNode ast;
} ASTGeneric;
typedef ASTGeneric Expression;
Feb 9, 2010
Feb 9, 2010
218
Oct 25, 2010
Oct 25, 2010
219
220
221
222
223
224
225
typedef struct Arguments
{
ASTNode ast; // Always AST_ARGUMENTS
Expression *argument;
struct Arguments *next;
} Arguments;
Feb 9, 2010
Feb 9, 2010
226
227
typedef struct ExpressionUnary
{
Feb 22, 2010
Feb 22, 2010
228
ASTNode ast;
Feb 9, 2010
Feb 9, 2010
229
230
231
232
233
Expression *operand;
} ExpressionUnary;
typedef struct ExpressionBinary
{
Feb 22, 2010
Feb 22, 2010
234
ASTNode ast;
Feb 9, 2010
Feb 9, 2010
235
236
237
238
239
240
Expression *left;
Expression *right;
} ExpressionBinary;
typedef struct ExpressionTernary
{
Feb 22, 2010
Feb 22, 2010
241
ASTNode ast;
Feb 9, 2010
Feb 9, 2010
242
243
244
245
246
247
248
Expression *left;
Expression *center;
Expression *right;
} ExpressionTernary;
typedef struct ExpressionIdentifier
{
Feb 22, 2010
Feb 22, 2010
249
ASTNode ast; // Always AST_OP_IDENTIFIER
Feb 9, 2010
Feb 9, 2010
250
251
252
253
254
const char *identifier;
} ExpressionIdentifier;
typedef struct ExpressionIntLiteral
{
Feb 22, 2010
Feb 22, 2010
255
ASTNode ast; // Always AST_OP_INT_LITERAL
Feb 9, 2010
Feb 9, 2010
256
257
258
259
260
int64 value;
} ExpressionIntLiteral;
typedef struct ExpressionFloatLiteral
{
Feb 22, 2010
Feb 22, 2010
261
ASTNode ast; // Always AST_OP_FLOAT_LITERAL
Feb 9, 2010
Feb 9, 2010
262
263
264
265
266
double value;
} ExpressionFloatLiteral;
typedef struct ExpressionStringLiteral
{
Feb 22, 2010
Feb 22, 2010
267
ASTNode ast; // Always AST_OP_STRING_LITERAL
Feb 9, 2010
Feb 9, 2010
268
269
270
const char *string;
} ExpressionStringLiteral;
Oct 20, 2010
Oct 20, 2010
271
272
273
274
275
276
typedef struct ExpressionBooleanLiteral
{
ASTNode ast; // Always AST_OP_BOOLEAN_LITERAL
int value; // Always 1 or 0.
} ExpressionBooleanLiteral;
Feb 20, 2010
Feb 20, 2010
277
278
typedef struct ExpressionConstructor
{
Feb 22, 2010
Feb 22, 2010
279
ASTNode ast; // Always AST_OP_CONSTRUCTOR
Feb 20, 2010
Feb 20, 2010
280
const char *datatype;
Oct 25, 2010
Oct 25, 2010
281
Arguments *args;
Feb 20, 2010
Feb 20, 2010
282
283
} ExpressionConstructor;
Oct 26, 2010
Oct 26, 2010
284
285
286
287
288
289
290
typedef struct ExpressionDerefStruct
{
ASTNode ast; // Always AST_OP_DEREF_STRUCT
Expression *identifier;
const char *member;
} ExpressionDerefStruct;
Oct 25, 2010
Oct 25, 2010
291
292
293
294
295
296
297
typedef struct ExpressionCallFunction
{
ASTNode ast; // Always AST_OP_CALLFUNC
Expression *identifier;
Arguments *args;
} ExpressionCallFunction;
Feb 20, 2010
Feb 20, 2010
298
299
typedef struct ExpressionCast
{
Feb 22, 2010
Feb 22, 2010
300
ASTNode ast; // Always AST_OP_CAST
Feb 20, 2010
Feb 20, 2010
301
302
303
304
const char *datatype;
Expression *operand;
} ExpressionCast;
Feb 19, 2010
Feb 19, 2010
305
306
typedef struct CompilationUnit
{
Feb 22, 2010
Feb 22, 2010
307
ASTNode ast;
Feb 19, 2010
Feb 19, 2010
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
struct CompilationUnit *next;
} CompilationUnit;
typedef enum FunctionStorageClass
{
FNSTORECLS_NONE,
FNSTORECLS_INLINE
} FunctionStorageClass;
typedef enum InputModifier
{
INPUTMOD_NONE,
INPUTMOD_IN,
INPUTMOD_OUT,
INPUTMOD_INOUT,
INPUTMOD_UNIFORM
} InputModifier;
typedef enum InterpolationModifier
{
INTERPMOD_NONE,
INTERPMOD_LINEAR,
INTERPMOD_CENTROID,
INTERPMOD_NOINTERPOLATION,
INTERPMOD_NOPERSPECTIVE,
INTERPMOD_SAMPLE
} InterpolationModifier;
Oct 25, 2010
Oct 25, 2010
336
typedef struct FunctionParameters
Feb 19, 2010
Feb 19, 2010
337
{
Feb 22, 2010
Feb 22, 2010
338
ASTNode ast;
Feb 19, 2010
Feb 19, 2010
339
340
341
342
343
344
InputModifier input_modifier;
const char *datatype;
const char *identifier;
const char *semantic;
InterpolationModifier interpolation_modifier;
Expression *initializer;
Oct 25, 2010
Oct 25, 2010
345
346
struct FunctionParameters *next;
} FunctionParameters;
Feb 19, 2010
Feb 19, 2010
347
348
349
typedef struct FunctionSignature
{
Feb 22, 2010
Feb 22, 2010
350
ASTNode ast;
Feb 19, 2010
Feb 19, 2010
351
352
const char *datatype;
const char *identifier;
Oct 25, 2010
Oct 25, 2010
353
FunctionParameters *params;
Feb 19, 2010
Feb 19, 2010
354
355
356
357
358
359
FunctionStorageClass storage_class;
const char *semantic;
} FunctionSignature;
typedef struct ScalarOrArray
{
Feb 22, 2010
Feb 22, 2010
360
ASTNode ast;
Feb 19, 2010
Feb 19, 2010
361
362
363
364
365
366
367
const char *identifier;
int isarray;
Expression *dimension;
} ScalarOrArray;
typedef struct Annotations
{
Feb 22, 2010
Feb 22, 2010
368
ASTNode ast;
Feb 19, 2010
Feb 19, 2010
369
370
371
372
373
374
375
const char *datatype;
Expression *initializer;
struct Annotations *next;
} Annotations;
typedef struct PackOffset
{
Feb 22, 2010
Feb 22, 2010
376
ASTNode ast;
Feb 19, 2010
Feb 19, 2010
377
378
379
380
381
382
const char *ident1; // !!! FIXME: rename this.
const char *ident2;
} PackOffset;
typedef struct VariableLowLevel
{
Feb 22, 2010
Feb 22, 2010
383
ASTNode ast;
Feb 19, 2010
Feb 19, 2010
384
385
386
387
388
389
PackOffset *packoffset;
const char *register_name;
} VariableLowLevel;
typedef struct StructMembers
{
Feb 22, 2010
Feb 22, 2010
390
ASTNode ast;
Feb 19, 2010
Feb 19, 2010
391
392
393
394
395
396
397
398
399
const char *datatype;
const char *semantic;
ScalarOrArray *details;
InterpolationModifier interpolation_mod;
struct StructMembers *next;
} StructMembers;
typedef struct StructDeclaration
{
Feb 22, 2010
Feb 22, 2010
400
ASTNode ast;
Feb 19, 2010
Feb 19, 2010
401
402
403
404
405
406
const char *name;
StructMembers *members;
} StructDeclaration;
typedef struct VariableDeclaration
{
Feb 22, 2010
Feb 22, 2010
407
ASTNode ast;
Feb 19, 2010
Feb 19, 2010
408
409
410
411
412
413
414
415
416
417
418
419
420
int attributes;
const char *datatype;
StructDeclaration *anonymous_datatype;
ScalarOrArray *details;
const char *semantic;
Annotations *annotations;
Expression *initializer;
VariableLowLevel *lowlevel;
struct VariableDeclaration *next;
} VariableDeclaration;
typedef struct Statement
{
Feb 22, 2010
Feb 22, 2010
421
ASTNode ast;
Feb 19, 2010
Feb 19, 2010
422
423
424
425
426
427
428
429
struct Statement *next;
} Statement;
typedef Statement EmptyStatement;
typedef Statement BreakStatement;
typedef Statement ContinueStatement;
typedef Statement DiscardStatement;
Oct 13, 2010
Oct 13, 2010
430
431
432
433
434
435
436
typedef struct BlockStatement // something enclosed in "{}" braces.
{
ASTNode ast;
struct Statement *next;
Statement *statements; // list of statements enclosed by this block.
} BlockStatement;
Feb 19, 2010
Feb 19, 2010
437
438
typedef struct ReturnStatement
{
Feb 22, 2010
Feb 22, 2010
439
ASTNode ast;
Feb 19, 2010
Feb 19, 2010
440
441
442
443
444
445
struct Statement *next;
Expression *expr;
} ReturnStatement;
typedef struct ExpressionStatement
{
Feb 22, 2010
Feb 22, 2010
446
ASTNode ast;
Feb 19, 2010
Feb 19, 2010
447
448
449
450
451
452
struct Statement *next;
Expression *expr;
} ExpressionStatement;
typedef struct IfStatement
{
Feb 22, 2010
Feb 22, 2010
453
ASTNode ast;
Feb 19, 2010
Feb 19, 2010
454
455
456
457
458
459
460
461
462
struct Statement *next;
int attributes;
Expression *expr;
Statement *statement;
Statement *else_statement;
} IfStatement;
typedef struct SwitchCases
{
Feb 22, 2010
Feb 22, 2010
463
ASTNode ast;
Feb 19, 2010
Feb 19, 2010
464
465
466
467
468
469
470
Expression *expr;
Statement *statement;
struct SwitchCases *next;
} SwitchCases;
typedef struct SwitchStatement
{
Feb 22, 2010
Feb 22, 2010
471
ASTNode ast;
Feb 19, 2010
Feb 19, 2010
472
473
474
475
476
477
478
479
struct Statement *next;
int attributes;
Expression *expr;
SwitchCases *cases;
} SwitchStatement;
typedef struct WhileStatement
{
Feb 22, 2010
Feb 22, 2010
480
ASTNode ast;
Feb 19, 2010
Feb 19, 2010
481
struct Statement *next;
Feb 23, 2010
Feb 23, 2010
482
int64 unroll; // # times to unroll, 0 to loop, negative for compiler's choice.
Feb 19, 2010
Feb 19, 2010
483
484
485
486
487
488
489
490
Expression *expr;
Statement *statement;
} WhileStatement;
typedef WhileStatement DoStatement;
typedef struct ForStatement
{
Feb 22, 2010
Feb 22, 2010
491
ASTNode ast;
Feb 19, 2010
Feb 19, 2010
492
struct Statement *next;
Feb 23, 2010
Feb 23, 2010
493
int64 unroll; // # times to unroll, 0 to loop, negative for compiler's choice.
Feb 19, 2010
Feb 19, 2010
494
495
496
497
498
499
500
501
502
VariableDeclaration *var_decl;
Expression *initializer;
Expression *looptest;
Expression *counter;
Statement *statement;
} ForStatement;
typedef struct Typedef
{
Feb 22, 2010
Feb 22, 2010
503
ASTNode ast;
Feb 19, 2010
Feb 19, 2010
504
505
506
507
508
509
510
int isconst;
const char *datatype;
ScalarOrArray *details;
} Typedef;
typedef struct TypedefStatement
{
Feb 22, 2010
Feb 22, 2010
511
ASTNode ast;
Feb 19, 2010
Feb 19, 2010
512
513
514
515
516
517
struct Statement *next;
Typedef *type_info;
} TypedefStatement;
typedef struct VarDeclStatement
{
Feb 22, 2010
Feb 22, 2010
518
ASTNode ast;
Feb 19, 2010
Feb 19, 2010
519
struct Statement *next;
Feb 22, 2010
Feb 22, 2010
520
VariableDeclaration *declaration;
Feb 19, 2010
Feb 19, 2010
521
522
523
524
} VarDeclStatement;
typedef struct StructStatement
{
Feb 22, 2010
Feb 22, 2010
525
ASTNode ast;
Feb 19, 2010
Feb 19, 2010
526
527
528
529
530
531
struct Statement *next;
StructDeclaration *struct_info;
} StructStatement;
typedef struct CompilationUnitFunction
{
Feb 22, 2010
Feb 22, 2010
532
ASTNode ast;
Feb 19, 2010
Feb 19, 2010
533
534
535
536
537
538
539
struct CompilationUnit *next;
FunctionSignature *declaration;
Statement *definition;
} CompilationUnitFunction;
typedef struct CompilationUnitTypedef
{
Feb 22, 2010
Feb 22, 2010
540
ASTNode ast;
Feb 19, 2010
Feb 19, 2010
541
542
543
544
545
546
struct CompilationUnit *next;
Typedef *type_info;
} CompilationUnitTypedef;
typedef struct CompilationUnitStruct
{
Feb 22, 2010
Feb 22, 2010
547
ASTNode ast;
Feb 19, 2010
Feb 19, 2010
548
549
550
551
552
553
struct CompilationUnit *next;
StructDeclaration *struct_info;
} CompilationUnitStruct;
typedef struct CompilationUnitVariable
{
Feb 22, 2010
Feb 22, 2010
554
ASTNode ast;
Feb 19, 2010
Feb 19, 2010
555
556
557
558
559
struct CompilationUnit *next;
VariableDeclaration *declaration;
} CompilationUnitVariable;
Oct 19, 2010
Oct 19, 2010
560
// This tracks data types and variables, and notes when they enter/leave scope.
Feb 22, 2010
Feb 22, 2010
561
Oct 19, 2010
Oct 19, 2010
562
typedef struct SymbolScope
Feb 22, 2010
Feb 22, 2010
563
564
565
{
const char *symbol;
const char *datatype;
Oct 19, 2010
Oct 19, 2010
566
567
struct SymbolScope *next;
} SymbolScope;
Feb 22, 2010
Feb 22, 2010
568
Oct 19, 2010
Oct 19, 2010
569
typedef struct SymbolMap
Feb 22, 2010
Feb 22, 2010
570
{
Oct 19, 2010
Oct 19, 2010
571
572
573
HashTable *hash;
SymbolScope *scope;
} SymbolMap;
Feb 22, 2010
Feb 22, 2010
574
575
Feb 19, 2010
Feb 19, 2010
576
577
578
579
580
581
582
583
584
585
586
// Compile state, passed around all over the place.
typedef struct Context
{
int isfail;
int out_of_memory;
MOJOSHADER_malloc malloc;
MOJOSHADER_free free;
void *malloc_data;
int error_count;
ErrorList *errors;
Feb 24, 2010
Feb 24, 2010
587
StringCache *strcache;
Feb 22, 2010
Feb 22, 2010
588
589
const char *sourcefile; // current source file that we're parsing.
unsigned int sourceline; // current line in sourcefile that we're parsing.
Oct 19, 2010
Oct 19, 2010
590
591
SymbolMap usertypes;
SymbolMap variables;
Feb 19, 2010
Feb 19, 2010
592
CompilationUnit *ast; // Abstract Syntax Tree
Oct 19, 2010
Oct 19, 2010
593
594
595
596
597
598
599
600
601
// These are entries allocated in the strcache, so these pointers are
// valid from shortly after we create the cache until we destroy it
// with the rest of the context. This makes it so we can compare common
// strings by pointer without having to hash them every time, so long as
// we're comparing a string pointer we know came from this string cache.
const char *str_b; // "b"
const char *str_f; // "f"
const char *str_i; // "i"
Oct 20, 2010
Oct 20, 2010
602
603
604
605
const char *str_u; // "u"
const char *str_h; // "h"
const char *str_d; // "d"
const char *str_s; // "s"
Feb 19, 2010
Feb 19, 2010
606
607
608
609
610
611
612
} Context;
// Convenience functions for allocators...
static inline void out_of_memory(Context *ctx)
{
Feb 21, 2010
Feb 21, 2010
613
if (!ctx->out_of_memory) printf("out of memory\n"); // !!! FIXME: placeholder.
Feb 19, 2010
Feb 19, 2010
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
ctx->isfail = ctx->out_of_memory = 1;
} // out_of_memory
static inline void *Malloc(Context *ctx, const size_t len)
{
void *retval = ctx->malloc((int) len, ctx->malloc_data);
if (retval == NULL)
out_of_memory(ctx);
return retval;
} // Malloc
static inline char *StrDup(Context *ctx, const char *str)
{
char *retval = (char *) Malloc(ctx, strlen(str) + 1);
if (retval != NULL)
strcpy(retval, str);
return retval;
} // StrDup
static inline void Free(Context *ctx, void *ptr)
{
if (ptr != NULL) // check for NULL in case of dumb free() impl.
ctx->free(ptr, ctx->malloc_data);
} // Free
Feb 21, 2010
Feb 21, 2010
639
640
641
642
static void fail(Context *ctx, const char *str)
{
// !!! FIXME: placeholder.
(void) ctx;
Feb 21, 2010
Feb 21, 2010
643
printf("%s:%u: %s\n", ctx->sourcefile, ctx->sourceline, str);
Feb 21, 2010
Feb 21, 2010
644
} // fail
Feb 19, 2010
Feb 19, 2010
645
Feb 22, 2010
Feb 22, 2010
646
Oct 19, 2010
Oct 19, 2010
647
static void symbolmap_nuke(const void *k, const void *v, void *d) {/*no-op*/}
Feb 22, 2010
Feb 22, 2010
648
Oct 19, 2010
Oct 19, 2010
649
static int create_symbolmap(Context *ctx, SymbolMap *map)
Feb 22, 2010
Feb 22, 2010
650
{
Oct 19, 2010
Oct 19, 2010
651
// !!! FIXME: should compare string pointer, with string in cache.
Feb 22, 2010
Feb 22, 2010
652
map->scope = NULL;
Oct 19, 2010
Oct 19, 2010
653
654
655
656
map->hash = hash_create(ctx, hash_hash_string, hash_keymatch_string,
symbolmap_nuke, 1, ctx->malloc, ctx->free,
ctx->malloc_data);
if (!map->hash)
Feb 22, 2010
Feb 22, 2010
657
658
659
660
661
662
{
out_of_memory(ctx);
return 0;
} // if
return 1;
Oct 19, 2010
Oct 19, 2010
663
} // create_symbolmap
Feb 22, 2010
Feb 22, 2010
664
665
Oct 19, 2010
Oct 19, 2010
666
667
668
669
static void push_symbol(Context *ctx, SymbolMap *map,
const char *sym, const char *datatype)
{
SymbolScope *item = (SymbolScope *) Malloc(ctx, sizeof (SymbolScope));
Feb 22, 2010
Feb 22, 2010
670
671
672
673
674
if (item == NULL)
return;
if (sym != NULL)
{
Oct 19, 2010
Oct 19, 2010
675
if (hash_insert(map->hash, sym, datatype) == -1)
Feb 22, 2010
Feb 22, 2010
676
677
678
679
680
681
682
683
684
685
{
Free(ctx, item);
return;
}
} // if
item->symbol = sym; // cached strings, don't copy.
item->datatype = datatype;
item->next = map->scope;
map->scope = item;
Oct 19, 2010
Oct 19, 2010
686
687
688
689
690
} // push_symbol
static inline void push_usertype(Context *ctx, const char *sym, const char *dt)
{
push_symbol(ctx, &ctx->usertypes, sym, dt);
Feb 22, 2010
Feb 22, 2010
691
692
} // push_usertype
Oct 19, 2010
Oct 19, 2010
693
694
695
696
697
698
699
700
701
702
703
704
705
static inline void push_variable(Context *ctx, const char *sym, const char *dt)
{
push_symbol(ctx, &ctx->variables, sym, dt);
} // push_variable
static inline void push_scope(Context *ctx)
{
push_usertype(ctx, NULL, NULL);
push_variable(ctx, NULL, NULL);
} // push_scope
static void pop_symbol(Context *ctx, SymbolMap *map)
Feb 22, 2010
Feb 22, 2010
706
{
Oct 19, 2010
Oct 19, 2010
707
SymbolScope *item = map->scope;
Feb 22, 2010
Feb 22, 2010
708
709
710
if (!item)
return;
if (item->symbol)
Oct 19, 2010
Oct 19, 2010
711
hash_remove(map->hash, item->symbol);
Feb 22, 2010
Feb 22, 2010
712
713
map->scope = item->next;
Free(ctx, item);
Oct 19, 2010
Oct 19, 2010
714
} // pop_symbol
Feb 22, 2010
Feb 22, 2010
715
Oct 19, 2010
Oct 19, 2010
716
static void pop_symbol_scope(Context *ctx, SymbolMap *map)
Feb 22, 2010
Feb 22, 2010
717
718
{
while ((map->scope) && (map->scope->symbol))
Oct 19, 2010
Oct 19, 2010
719
pop_symbol(ctx, map);
Feb 22, 2010
Feb 22, 2010
720
721
722
assert(map->scope != NULL);
assert(map->scope->symbol == NULL);
Oct 19, 2010
Oct 19, 2010
723
724
725
726
727
728
729
pop_symbol(ctx, map);
} // pop_symbol_scope
static inline void pop_scope(Context *ctx)
{
pop_symbol_scope(ctx, &ctx->usertypes);
pop_symbol_scope(ctx, &ctx->variables);
Feb 22, 2010
Feb 22, 2010
730
731
} // push_scope
Oct 19, 2010
Oct 19, 2010
732
static void destroy_symbolmap(Context *ctx, SymbolMap *map)
Feb 22, 2010
Feb 22, 2010
733
734
{
while (map->scope)
Oct 19, 2010
Oct 19, 2010
735
736
737
pop_symbol_scope(ctx, map);
hash_destroy(map->hash);
} // destroy_symbolmap
Feb 22, 2010
Feb 22, 2010
738
739
Feb 19, 2010
Feb 19, 2010
740
741
742
743
744
// These functions are mostly for construction and cleanup of nodes in the
// parse tree. Mostly this is simple allocation and initialization, so we
// can do as little in the lemon code as possible, and then sort it all out
// afterwards.
Feb 22, 2010
Feb 22, 2010
745
#define NEW_AST_NODE(retval, cls, typ) \
Mar 3, 2010
Mar 3, 2010
746
cls *retval = (cls *) Malloc(ctx, sizeof (cls)); \
Feb 22, 2010
Feb 22, 2010
747
748
749
750
751
752
753
754
do { \
if (retval == NULL) { return NULL; } \
retval->ast.type = typ; \
retval->ast.filename = ctx->sourcefile; \
retval->ast.line = ctx->sourceline; \
} while (0)
#define DELETE_AST_NODE(cls) do { \
Feb 19, 2010
Feb 19, 2010
755
756
757
758
759
760
if (!cls) return; \
} while (0)
static void delete_compilation_unit(Context *ctx, CompilationUnit *unit);
static void delete_statement(Context *ctx, Statement *stmt);
Oct 25, 2010
Oct 25, 2010
761
762
763
764
765
766
767
768
769
static Expression *new_callfunc_expr(Context *ctx, Expression *identifier,
Arguments *args)
{
NEW_AST_NODE(retval, ExpressionCallFunction, AST_OP_CALLFUNC);
retval->identifier = identifier;
retval->args = args;
return (Expression *) retval;
} // new_callfunc_expr
Feb 20, 2010
Feb 20, 2010
770
static Expression *new_constructor_expr(Context *ctx, const char *datatype,
Oct 25, 2010
Oct 25, 2010
771
Arguments *args)
Feb 20, 2010
Feb 20, 2010
772
{
Feb 22, 2010
Feb 22, 2010
773
NEW_AST_NODE(retval, ExpressionConstructor, AST_OP_CONSTRUCTOR);
Feb 20, 2010
Feb 20, 2010
774
775
776
777
778
779
780
781
retval->datatype = datatype;
retval->args = args;
return (Expression *) retval;
} // new_constructor_expr
static Expression *new_cast_expr(Context *ctx, const char *datatype,
Expression *operand)
{
Feb 22, 2010
Feb 22, 2010
782
NEW_AST_NODE(retval, ExpressionCast, AST_OP_CAST);
Feb 20, 2010
Feb 20, 2010
783
784
785
786
787
retval->datatype = datatype;
retval->operand = operand;
return (Expression *) retval;
} // new_cast_expr
Feb 22, 2010
Feb 22, 2010
788
static Expression *new_unary_expr(Context *ctx, const ASTNodeType op,
Feb 9, 2010
Feb 9, 2010
789
790
Expression *operand)
{
Feb 22, 2010
Feb 22, 2010
791
NEW_AST_NODE(retval, ExpressionUnary, op);
Feb 9, 2010
Feb 9, 2010
792
793
794
795
796
assert(operator_is_unary(op));
retval->operand = operand;
return (Expression *) retval;
} // new_unary_expr
Feb 22, 2010
Feb 22, 2010
797
static Expression *new_binary_expr(Context *ctx, const ASTNodeType op,
Feb 9, 2010
Feb 9, 2010
798
799
Expression *left, Expression *right)
{
Feb 22, 2010
Feb 22, 2010
800
NEW_AST_NODE(retval, ExpressionBinary, op);
Feb 9, 2010
Feb 9, 2010
801
802
803
804
805
806
assert(operator_is_binary(op));
retval->left = left;
retval->right = right;
return (Expression *) retval;
} // new_binary_expr
Feb 22, 2010
Feb 22, 2010
807
static Expression *new_ternary_expr(Context *ctx, const ASTNodeType op,
Feb 9, 2010
Feb 9, 2010
808
809
810
Expression *left, Expression *center,
Expression *right)
{
Feb 22, 2010
Feb 22, 2010
811
NEW_AST_NODE(retval, ExpressionTernary, op);
Feb 9, 2010
Feb 9, 2010
812
813
814
815
816
817
818
assert(operator_is_ternary(op));
retval->left = left;
retval->center = center;
retval->right = right;
return (Expression *) retval;
} // new_ternary_expr
Oct 26, 2010
Oct 26, 2010
819
820
821
822
823
824
825
826
827
static Expression *new_deref_struct_expr(Context *ctx, Expression *identifier,
const char *member)
{
NEW_AST_NODE(retval, ExpressionDerefStruct, AST_OP_DEREF_STRUCT);
retval->identifier = identifier;
retval->member = member; // cached; don't copy string.
return (Expression *) retval;
} // new_deref_struct_expr
Feb 9, 2010
Feb 9, 2010
828
829
static Expression *new_identifier_expr(Context *ctx, const char *string)
{
Feb 22, 2010
Feb 22, 2010
830
NEW_AST_NODE(retval, ExpressionIdentifier, AST_OP_IDENTIFIER);
Feb 9, 2010
Feb 9, 2010
831
832
833
834
835
836
retval->identifier = string; // cached; don't copy string.
return (Expression *) retval;
} // new_identifier_expr
static Expression *new_literal_int_expr(Context *ctx, const int64 value)
{
Feb 22, 2010
Feb 22, 2010
837
NEW_AST_NODE(retval, ExpressionIntLiteral, AST_OP_INT_LITERAL);
Feb 9, 2010
Feb 9, 2010
838
839
840
841
842
843
retval->value = value;
return (Expression *) retval;
} // new_literal_int_expr
static Expression *new_literal_float_expr(Context *ctx, const double dbl)
{
Feb 22, 2010
Feb 22, 2010
844
NEW_AST_NODE(retval, ExpressionFloatLiteral, AST_OP_FLOAT_LITERAL);
Feb 9, 2010
Feb 9, 2010
845
846
847
848
849
850
retval->value = dbl;
return (Expression *) retval;
} // new_literal_float_expr
static Expression *new_literal_string_expr(Context *ctx, const char *string)
{
Feb 22, 2010
Feb 22, 2010
851
NEW_AST_NODE(retval, ExpressionStringLiteral, AST_OP_STRING_LITERAL);
Feb 9, 2010
Feb 9, 2010
852
853
retval->string = string; // cached; don't copy string.
return (Expression *) retval;
Oct 20, 2010
Oct 20, 2010
854
855
856
857
858
859
860
861
} // new_literal_string_expr
static Expression *new_literal_boolean_expr(Context *ctx, const int value)
{
NEW_AST_NODE(retval, ExpressionBooleanLiteral, AST_OP_BOOLEAN_LITERAL);
retval->value = value;
return (Expression *) retval;
} // new_literal_boolean_expr
Feb 9, 2010
Feb 9, 2010
862
Oct 25, 2010
Oct 25, 2010
863
864
static void delete_arguments(Context *ctx, Arguments *args);
Feb 19, 2010
Feb 19, 2010
865
866
867
static void delete_expr(Context *ctx, Expression *expr)
{
DELETE_AST_NODE(expr);
Feb 22, 2010
Feb 22, 2010
868
if (operator_is_unary(expr->ast.type))
Feb 19, 2010
Feb 19, 2010
869
870
871
872
{
const ExpressionUnary *unary = (const ExpressionUnary *) expr;
delete_expr(ctx, unary->operand);
} // if
Feb 22, 2010
Feb 22, 2010
873
else if (operator_is_binary(expr->ast.type))
Feb 19, 2010
Feb 19, 2010
874
875
876
877
878
{
const ExpressionBinary *binary = (const ExpressionBinary *) expr;
delete_expr(ctx, binary->left);
delete_expr(ctx, binary->right);
} // else if
Feb 22, 2010
Feb 22, 2010
879
else if (operator_is_ternary(expr->ast.type))
Feb 19, 2010
Feb 19, 2010
880
881
882
883
884
885
{
const ExpressionTernary *ternary = (const ExpressionTernary *) expr;
delete_expr(ctx, ternary->left);
delete_expr(ctx, ternary->center);
delete_expr(ctx, ternary->right);
} // else if
Feb 22, 2010
Feb 22, 2010
886
else if (expr->ast.type == AST_OP_CAST)
Feb 20, 2010
Feb 20, 2010
887
888
889
{
delete_expr(ctx, ((ExpressionCast *) expr)->operand);
} // else if
Feb 22, 2010
Feb 22, 2010
890
else if (expr->ast.type == AST_OP_CONSTRUCTOR)
Feb 20, 2010
Feb 20, 2010
891
{
Oct 25, 2010
Oct 25, 2010
892
893
delete_arguments(ctx, ((ExpressionConstructor *) expr)->args);
} // else if
Oct 26, 2010
Oct 26, 2010
894
895
896
897
else if (expr->ast.type == AST_OP_DEREF_STRUCT)
{
delete_expr(ctx, ((ExpressionDerefStruct *) expr)->identifier);
} // else if
Oct 25, 2010
Oct 25, 2010
898
899
900
901
else if (expr->ast.type == AST_OP_CALLFUNC)
{
delete_expr(ctx, ((ExpressionCallFunction *) expr)->identifier);
delete_arguments(ctx, ((ExpressionCallFunction *) expr)->args);
Feb 20, 2010
Feb 20, 2010
902
} // else if
Feb 22, 2010
Feb 22, 2010
903
904
905
// rest of operators don't have extra data to free.
Feb 19, 2010
Feb 19, 2010
906
907
908
Free(ctx, expr);
} // delete_expr
Oct 25, 2010
Oct 25, 2010
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
static Arguments *new_argument(Context *ctx, Expression *argument)
{
NEW_AST_NODE(retval, Arguments, AST_ARGUMENTS);
retval->argument = argument;
retval->next = NULL;
return retval;
} // new_argument
static void delete_arguments(Context *ctx, Arguments *args)
{
DELETE_AST_NODE(args);
delete_arguments(ctx, args->next);
delete_expr(ctx, args->argument);
Free(ctx, args);
} // delete_arguments
Oct 25, 2010
Oct 25, 2010
925
static FunctionParameters *new_function_param(Context *ctx,
Feb 19, 2010
Feb 19, 2010
926
927
928
929
930
931
932
const InputModifier inputmod,
const char *datatype,
const char *identifier,
const char *semantic,
const InterpolationModifier interpmod,
Expression *initializer)
{
Oct 25, 2010
Oct 25, 2010
933
NEW_AST_NODE(retval, FunctionParameters, AST_FUNCTION_PARAMS);
Feb 19, 2010
Feb 19, 2010
934
935
936
937
938
939
940
941
retval->input_modifier = inputmod;
retval->datatype = datatype;
retval->identifier = identifier;
retval->semantic = semantic;
retval->interpolation_modifier = interpmod;
retval->initializer = initializer;
retval->next = NULL;
return retval;
Oct 25, 2010
Oct 25, 2010
942
} // new_function_param
Feb 19, 2010
Feb 19, 2010
943
Oct 25, 2010
Oct 25, 2010
944
static void delete_function_params(Context *ctx, FunctionParameters *params)
Feb 19, 2010
Feb 19, 2010
945
{
Oct 25, 2010
Oct 25, 2010
946
947
948
949
950
DELETE_AST_NODE(params);
delete_function_params(ctx, params->next);
delete_expr(ctx, params->initializer);
Free(ctx, params);
} // delete_function_params
Feb 19, 2010
Feb 19, 2010
951
952
953
954
static FunctionSignature *new_function_signature(Context *ctx,
const char *datatype,
const char *identifier,
Oct 25, 2010
Oct 25, 2010
955
FunctionParameters *params)
Feb 19, 2010
Feb 19, 2010
956
{
Feb 22, 2010
Feb 22, 2010
957
NEW_AST_NODE(retval, FunctionSignature, AST_FUNCTION_SIGNATURE);
Feb 19, 2010
Feb 19, 2010
958
959
retval->datatype = datatype;
retval->identifier = identifier;
Oct 25, 2010
Oct 25, 2010
960
retval->params = params;
Feb 19, 2010
Feb 19, 2010
961
962
963
964
965
966
967
968
retval->storage_class = FNSTORECLS_NONE;
retval->semantic = NULL;
return retval;
} // new_function_signature
static void delete_function_signature(Context *ctx, FunctionSignature *sig)
{
DELETE_AST_NODE(sig);
Oct 25, 2010
Oct 25, 2010
969
delete_function_params(ctx, sig->params);
Feb 19, 2010
Feb 19, 2010
970
971
972
973
974
975
976
Free(ctx, sig);
} // delete_function_signature
static CompilationUnit *new_function(Context *ctx,
FunctionSignature *declaration,
Statement *definition)
{
Feb 22, 2010
Feb 22, 2010
977
NEW_AST_NODE(retval, CompilationUnitFunction, AST_COMPUNIT_FUNCTION);
Feb 19, 2010
Feb 19, 2010
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
retval->next = NULL;
retval->declaration = declaration;
retval->definition = definition;
return (CompilationUnit *) retval;
} // new_function
static void delete_function(Context *ctx, CompilationUnitFunction *unitfn)
{
DELETE_AST_NODE(unitfn);
delete_compilation_unit(ctx, unitfn->next);
delete_function_signature(ctx, unitfn->declaration);
delete_statement(ctx, unitfn->definition);
Free(ctx, unitfn);
} // delete_function
static ScalarOrArray *new_scalar_or_array(Context *ctx, const char *ident,
const int isvec, Expression *dim)
{
Feb 22, 2010
Feb 22, 2010
996
NEW_AST_NODE(retval, ScalarOrArray, AST_SCALAR_OR_ARRAY);
Feb 19, 2010
Feb 19, 2010
997
998
999
1000
retval->identifier = ident;
retval->isarray = isvec;
retval->dimension = dim;
return retval;