author | Ryan C. Gordon <icculus@icculus.org> |
Mon, 20 Jul 2020 15:35:34 -0400 | |
changeset 1288 | 259d3bba6b66 |
parent 1287 | c5a53296dbd5 |
child 1290 | 2febe5ae83ad |
permissions | -rw-r--r-- |
465
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
1 |
/** |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
2 |
* MojoShader; generate shader programs from bytecode of compiled |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
3 |
* Direct3D shaders. |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
4 |
* |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
5 |
* Please see the file LICENSE.txt in the source's root directory. |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
6 |
* |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
7 |
* This file written by Ryan C. Gordon. |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
8 |
*/ |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
9 |
|
695 | 10 |
// !!! FIXME: this should probably use a formal grammar and not a hand-written |
11 |
// !!! FIXME: pile of C code. |
|
12 |
||
465
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
13 |
#define __MOJOSHADER_INTERNAL__ 1 |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
14 |
#include "mojoshader_internal.h" |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
15 |
|
801
6f9625737d41
asm needs bytecode profile
Aras Pranckevicius <aras@unity3d.com>
parents:
798
diff
changeset
|
16 |
#if !SUPPORT_PROFILE_BYTECODE |
6f9625737d41
asm needs bytecode profile
Aras Pranckevicius <aras@unity3d.com>
parents:
798
diff
changeset
|
17 |
#error Shader assembler needs bytecode profile. Fix your build. |
6f9625737d41
asm needs bytecode profile
Aras Pranckevicius <aras@unity3d.com>
parents:
798
diff
changeset
|
18 |
#endif |
6f9625737d41
asm needs bytecode profile
Aras Pranckevicius <aras@unity3d.com>
parents:
798
diff
changeset
|
19 |
|
716
94a804b54078
Cleaned up HLSL parser tracing.
Ryan C. Gordon <icculus@icculus.org>
parents:
696
diff
changeset
|
20 |
#if DEBUG_ASSEMBLER_PARSER |
587
202354e004fc
Unified some cut-and-paste code.
Ryan C. Gordon <icculus@icculus.org>
parents:
586
diff
changeset
|
21 |
#define print_debug_token(token, len, val) \ |
202354e004fc
Unified some cut-and-paste code.
Ryan C. Gordon <icculus@icculus.org>
parents:
586
diff
changeset
|
22 |
MOJOSHADER_print_debug_token("ASSEMBLER", token, len, val) |
202354e004fc
Unified some cut-and-paste code.
Ryan C. Gordon <icculus@icculus.org>
parents:
586
diff
changeset
|
23 |
#else |
202354e004fc
Unified some cut-and-paste code.
Ryan C. Gordon <icculus@icculus.org>
parents:
586
diff
changeset
|
24 |
#define print_debug_token(token, len, val) |
202354e004fc
Unified some cut-and-paste code.
Ryan C. Gordon <icculus@icculus.org>
parents:
586
diff
changeset
|
25 |
#endif |
202354e004fc
Unified some cut-and-paste code.
Ryan C. Gordon <icculus@icculus.org>
parents:
586
diff
changeset
|
26 |
|
566
6bd82a5acf62
Added more debug output.
Ryan C. Gordon <icculus@icculus.org>
parents:
562
diff
changeset
|
27 |
|
536
5af65fe6e917
Allow multiple errors from parsing.
Ryan C. Gordon <icculus@icculus.org>
parents:
532
diff
changeset
|
28 |
typedef struct SourcePos |
5af65fe6e917
Allow multiple errors from parsing.
Ryan C. Gordon <icculus@icculus.org>
parents:
532
diff
changeset
|
29 |
{ |
5af65fe6e917
Allow multiple errors from parsing.
Ryan C. Gordon <icculus@icculus.org>
parents:
532
diff
changeset
|
30 |
const char *filename; |
5af65fe6e917
Allow multiple errors from parsing.
Ryan C. Gordon <icculus@icculus.org>
parents:
532
diff
changeset
|
31 |
uint32 line; |
5af65fe6e917
Allow multiple errors from parsing.
Ryan C. Gordon <icculus@icculus.org>
parents:
532
diff
changeset
|
32 |
} SourcePos; |
5af65fe6e917
Allow multiple errors from parsing.
Ryan C. Gordon <icculus@icculus.org>
parents:
532
diff
changeset
|
33 |
|
465
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
34 |
|
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
35 |
// Context...this is state that changes as we assemble a shader... |
536
5af65fe6e917
Allow multiple errors from parsing.
Ryan C. Gordon <icculus@icculus.org>
parents:
532
diff
changeset
|
36 |
typedef struct Context |
465
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
37 |
{ |
542
a56d3bfd2e36
More work on multiple error messages.
Ryan C. Gordon <icculus@icculus.org>
parents:
539
diff
changeset
|
38 |
int isfail; |
a56d3bfd2e36
More work on multiple error messages.
Ryan C. Gordon <icculus@icculus.org>
parents:
539
diff
changeset
|
39 |
int out_of_memory; |
465
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
40 |
MOJOSHADER_malloc malloc; |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
41 |
MOJOSHADER_free free; |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
42 |
void *malloc_data; |
947
16af6e2b2ada
Cleaned up error position reporting.
Ryan C. Gordon <icculus@icculus.org>
parents:
946
diff
changeset
|
43 |
const char *current_file; |
16af6e2b2ada
Cleaned up error position reporting.
Ryan C. Gordon <icculus@icculus.org>
parents:
946
diff
changeset
|
44 |
int current_position; |
542
a56d3bfd2e36
More work on multiple error messages.
Ryan C. Gordon <icculus@icculus.org>
parents:
539
diff
changeset
|
45 |
ErrorList *errors; |
562
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
46 |
Preprocessor *preprocessor; |
465
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
47 |
MOJOSHADER_shaderType shader_type; |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
48 |
uint8 major_ver; |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
49 |
uint8 minor_ver; |
562
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
50 |
int pushedback; |
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
51 |
const char *token; // assembler token! |
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
52 |
unsigned int tokenlen; // assembler token! |
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
53 |
Token tokenval; // assembler token! |
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
54 |
uint32 version_token; // bytecode token! |
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
55 |
uint32 tokenbuf[16]; // bytecode tokens! |
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
56 |
int tokenbufpos; // bytecode tokens! |
465
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
57 |
DestArgInfo dest_arg; |
1287
c5a53296dbd5
List default writemasks for instructions.
Ryan C. Gordon <icculus@icculus.org>
parents:
1285
diff
changeset
|
58 |
uint8 default_writemask; |
946
16fec3a3f687
Technical debt: cleaned up things in the assembler that should've used Buffer.
Ryan C. Gordon <icculus@icculus.org>
parents:
945
diff
changeset
|
59 |
Buffer *output; |
16fec3a3f687
Technical debt: cleaned up things in the assembler that should've used Buffer.
Ryan C. Gordon <icculus@icculus.org>
parents:
945
diff
changeset
|
60 |
Buffer *token_to_source; |
16fec3a3f687
Technical debt: cleaned up things in the assembler that should've used Buffer.
Ryan C. Gordon <icculus@icculus.org>
parents:
945
diff
changeset
|
61 |
Buffer *ctab; |
536
5af65fe6e917
Allow multiple errors from parsing.
Ryan C. Gordon <icculus@icculus.org>
parents:
532
diff
changeset
|
62 |
} Context; |
465
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
63 |
|
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
64 |
|
940
bc2a5efade5e
Added a bunch of FIXMEs to accurately portray current technical debt.
Ryan C. Gordon <icculus@icculus.org>
parents:
939
diff
changeset
|
65 |
// !!! FIXME: cut and paste between every damned source file follows... |
bc2a5efade5e
Added a bunch of FIXMEs to accurately portray current technical debt.
Ryan C. Gordon <icculus@icculus.org>
parents:
939
diff
changeset
|
66 |
// !!! FIXME: We need to make some sort of ContextBase that applies to all |
bc2a5efade5e
Added a bunch of FIXMEs to accurately portray current technical debt.
Ryan C. Gordon <icculus@icculus.org>
parents:
939
diff
changeset
|
67 |
// !!! FIXME: files and move this stuff to mojoshader_common.c ... |
bc2a5efade5e
Added a bunch of FIXMEs to accurately portray current technical debt.
Ryan C. Gordon <icculus@icculus.org>
parents:
939
diff
changeset
|
68 |
|
465
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
69 |
// Convenience functions for allocators... |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
70 |
|
542
a56d3bfd2e36
More work on multiple error messages.
Ryan C. Gordon <icculus@icculus.org>
parents:
539
diff
changeset
|
71 |
static inline void out_of_memory(Context *ctx) |
465
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
72 |
{ |
542
a56d3bfd2e36
More work on multiple error messages.
Ryan C. Gordon <icculus@icculus.org>
parents:
539
diff
changeset
|
73 |
ctx->isfail = ctx->out_of_memory = 1; |
465
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
74 |
} // out_of_memory |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
75 |
|
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
76 |
static inline void *Malloc(Context *ctx, const size_t len) |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
77 |
{ |
1188
25000edc0176
Move zeromalloc trickery to internal malloc/free functions
Ethan Lee <flibitijibibo@flibitijibibo.com>
parents:
1182
diff
changeset
|
78 |
void *retval = ctx->malloc((int) len, ctx->malloc_data); |
465
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
79 |
if (retval == NULL) |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
80 |
out_of_memory(ctx); |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
81 |
return retval; |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
82 |
} // Malloc |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
83 |
|
542
a56d3bfd2e36
More work on multiple error messages.
Ryan C. Gordon <icculus@icculus.org>
parents:
539
diff
changeset
|
84 |
static inline char *StrDup(Context *ctx, const char *str) |
a56d3bfd2e36
More work on multiple error messages.
Ryan C. Gordon <icculus@icculus.org>
parents:
539
diff
changeset
|
85 |
{ |
a56d3bfd2e36
More work on multiple error messages.
Ryan C. Gordon <icculus@icculus.org>
parents:
539
diff
changeset
|
86 |
char *retval = (char *) Malloc(ctx, strlen(str) + 1); |
554 | 87 |
if (retval != NULL) |
542
a56d3bfd2e36
More work on multiple error messages.
Ryan C. Gordon <icculus@icculus.org>
parents:
539
diff
changeset
|
88 |
strcpy(retval, str); |
a56d3bfd2e36
More work on multiple error messages.
Ryan C. Gordon <icculus@icculus.org>
parents:
539
diff
changeset
|
89 |
return retval; |
a56d3bfd2e36
More work on multiple error messages.
Ryan C. Gordon <icculus@icculus.org>
parents:
539
diff
changeset
|
90 |
} // StrDup |
a56d3bfd2e36
More work on multiple error messages.
Ryan C. Gordon <icculus@icculus.org>
parents:
539
diff
changeset
|
91 |
|
465
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
92 |
static inline void Free(Context *ctx, void *ptr) |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
93 |
{ |
1188
25000edc0176
Move zeromalloc trickery to internal malloc/free functions
Ethan Lee <flibitijibibo@flibitijibibo.com>
parents:
1182
diff
changeset
|
94 |
ctx->free(ptr, ctx->malloc_data); |
465
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
95 |
} // Free |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
96 |
|
939
64cc93ee5a56
Cut-and-paste cleanup: unified the ErrorList functionality.
Ryan C. Gordon <icculus@icculus.org>
parents:
840
diff
changeset
|
97 |
static void *MallocBridge(int bytes, void *data) |
64cc93ee5a56
Cut-and-paste cleanup: unified the ErrorList functionality.
Ryan C. Gordon <icculus@icculus.org>
parents:
840
diff
changeset
|
98 |
{ |
64cc93ee5a56
Cut-and-paste cleanup: unified the ErrorList functionality.
Ryan C. Gordon <icculus@icculus.org>
parents:
840
diff
changeset
|
99 |
return Malloc((Context *) data, (size_t) bytes); |
64cc93ee5a56
Cut-and-paste cleanup: unified the ErrorList functionality.
Ryan C. Gordon <icculus@icculus.org>
parents:
840
diff
changeset
|
100 |
} // MallocBridge |
64cc93ee5a56
Cut-and-paste cleanup: unified the ErrorList functionality.
Ryan C. Gordon <icculus@icculus.org>
parents:
840
diff
changeset
|
101 |
|
64cc93ee5a56
Cut-and-paste cleanup: unified the ErrorList functionality.
Ryan C. Gordon <icculus@icculus.org>
parents:
840
diff
changeset
|
102 |
static void FreeBridge(void *ptr, void *data) |
64cc93ee5a56
Cut-and-paste cleanup: unified the ErrorList functionality.
Ryan C. Gordon <icculus@icculus.org>
parents:
840
diff
changeset
|
103 |
{ |
64cc93ee5a56
Cut-and-paste cleanup: unified the ErrorList functionality.
Ryan C. Gordon <icculus@icculus.org>
parents:
840
diff
changeset
|
104 |
Free((Context *) data, ptr); |
64cc93ee5a56
Cut-and-paste cleanup: unified the ErrorList functionality.
Ryan C. Gordon <icculus@icculus.org>
parents:
840
diff
changeset
|
105 |
} // FreeBridge |
64cc93ee5a56
Cut-and-paste cleanup: unified the ErrorList functionality.
Ryan C. Gordon <icculus@icculus.org>
parents:
840
diff
changeset
|
106 |
|
940
bc2a5efade5e
Added a bunch of FIXMEs to accurately portray current technical debt.
Ryan C. Gordon <icculus@icculus.org>
parents:
939
diff
changeset
|
107 |
|
542
a56d3bfd2e36
More work on multiple error messages.
Ryan C. Gordon <icculus@icculus.org>
parents:
539
diff
changeset
|
108 |
static void failf(Context *ctx, const char *fmt, ...) ISPRINTF(2,3); |
a56d3bfd2e36
More work on multiple error messages.
Ryan C. Gordon <icculus@icculus.org>
parents:
539
diff
changeset
|
109 |
static void failf(Context *ctx, const char *fmt, ...) |
465
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
110 |
{ |
550
2f977a75d2b5
Fixed error reporting in assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
549
diff
changeset
|
111 |
ctx->isfail = 1; |
939
64cc93ee5a56
Cut-and-paste cleanup: unified the ErrorList functionality.
Ryan C. Gordon <icculus@icculus.org>
parents:
840
diff
changeset
|
112 |
if (ctx->out_of_memory) |
64cc93ee5a56
Cut-and-paste cleanup: unified the ErrorList functionality.
Ryan C. Gordon <icculus@icculus.org>
parents:
840
diff
changeset
|
113 |
return; |
550
2f977a75d2b5
Fixed error reporting in assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
549
diff
changeset
|
114 |
|
542
a56d3bfd2e36
More work on multiple error messages.
Ryan C. Gordon <icculus@icculus.org>
parents:
539
diff
changeset
|
115 |
va_list ap; |
a56d3bfd2e36
More work on multiple error messages.
Ryan C. Gordon <icculus@icculus.org>
parents:
539
diff
changeset
|
116 |
va_start(ap, fmt); |
947
16af6e2b2ada
Cleaned up error position reporting.
Ryan C. Gordon <icculus@icculus.org>
parents:
946
diff
changeset
|
117 |
errorlist_add_va(ctx->errors, ctx->current_file, ctx->current_position, fmt, ap); |
542
a56d3bfd2e36
More work on multiple error messages.
Ryan C. Gordon <icculus@icculus.org>
parents:
539
diff
changeset
|
118 |
va_end(ap); |
465
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
119 |
} // failf |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
120 |
|
542
a56d3bfd2e36
More work on multiple error messages.
Ryan C. Gordon <icculus@icculus.org>
parents:
539
diff
changeset
|
121 |
static inline void fail(Context *ctx, const char *reason) |
465
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
122 |
{ |
542
a56d3bfd2e36
More work on multiple error messages.
Ryan C. Gordon <icculus@icculus.org>
parents:
539
diff
changeset
|
123 |
failf(ctx, "%s", reason); |
465
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
124 |
} // fail |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
125 |
|
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
126 |
static inline int isfail(const Context *ctx) |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
127 |
{ |
542
a56d3bfd2e36
More work on multiple error messages.
Ryan C. Gordon <icculus@icculus.org>
parents:
539
diff
changeset
|
128 |
return ctx->isfail; |
465
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
129 |
} // isfail |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
130 |
|
1288
259d3bba6b66
Clean up assembler writemask parsing a little.
Ryan C. Gordon <icculus@icculus.org>
parents:
1287
diff
changeset
|
131 |
static int vecsize_from_writemask(const uint8 m) |
259d3bba6b66
Clean up assembler writemask parsing a little.
Ryan C. Gordon <icculus@icculus.org>
parents:
1287
diff
changeset
|
132 |
{ |
259d3bba6b66
Clean up assembler writemask parsing a little.
Ryan C. Gordon <icculus@icculus.org>
parents:
1287
diff
changeset
|
133 |
return (m & 1) + ((m >> 1) & 1) + ((m >> 2) & 1) + ((m >> 3) & 1); |
259d3bba6b66
Clean up assembler writemask parsing a little.
Ryan C. Gordon <icculus@icculus.org>
parents:
1287
diff
changeset
|
134 |
} // vecsize_from_writemask |
259d3bba6b66
Clean up assembler writemask parsing a little.
Ryan C. Gordon <icculus@icculus.org>
parents:
1287
diff
changeset
|
135 |
|
259d3bba6b66
Clean up assembler writemask parsing a little.
Ryan C. Gordon <icculus@icculus.org>
parents:
1287
diff
changeset
|
136 |
static void set_dstarg_writemask(DestArgInfo *dst, const uint8 mask) |
259d3bba6b66
Clean up assembler writemask parsing a little.
Ryan C. Gordon <icculus@icculus.org>
parents:
1287
diff
changeset
|
137 |
{ |
259d3bba6b66
Clean up assembler writemask parsing a little.
Ryan C. Gordon <icculus@icculus.org>
parents:
1287
diff
changeset
|
138 |
dst->writemask = mask; |
259d3bba6b66
Clean up assembler writemask parsing a little.
Ryan C. Gordon <icculus@icculus.org>
parents:
1287
diff
changeset
|
139 |
dst->writemask0 = ((mask >> 0) & 1); |
259d3bba6b66
Clean up assembler writemask parsing a little.
Ryan C. Gordon <icculus@icculus.org>
parents:
1287
diff
changeset
|
140 |
dst->writemask1 = ((mask >> 1) & 1); |
259d3bba6b66
Clean up assembler writemask parsing a little.
Ryan C. Gordon <icculus@icculus.org>
parents:
1287
diff
changeset
|
141 |
dst->writemask2 = ((mask >> 2) & 1); |
259d3bba6b66
Clean up assembler writemask parsing a little.
Ryan C. Gordon <icculus@icculus.org>
parents:
1287
diff
changeset
|
142 |
dst->writemask3 = ((mask >> 3) & 1); |
259d3bba6b66
Clean up assembler writemask parsing a little.
Ryan C. Gordon <icculus@icculus.org>
parents:
1287
diff
changeset
|
143 |
} // set_dstarg_writemask |
465
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
144 |
|
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
145 |
// Shader model version magic... |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
146 |
|
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
147 |
static inline uint32 ver_ui32(const uint8 major, const uint8 minor) |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
148 |
{ |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
149 |
return ( (((uint32) major) << 16) | (((minor) == 0xFF) ? 0 : (minor)) ); |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
150 |
} // version_ui32 |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
151 |
|
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
152 |
static inline int shader_version_atleast(const Context *ctx, const uint8 maj, |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
153 |
const uint8 min) |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
154 |
{ |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
155 |
return (ver_ui32(ctx->major_ver, ctx->minor_ver) >= ver_ui32(maj, min)); |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
156 |
} // shader_version_atleast |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
157 |
|
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
158 |
static inline int shader_is_pixel(const Context *ctx) |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
159 |
{ |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
160 |
return (ctx->shader_type == MOJOSHADER_TYPE_PIXEL); |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
161 |
} // shader_is_pixel |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
162 |
|
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
163 |
static inline int shader_is_vertex(const Context *ctx) |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
164 |
{ |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
165 |
return (ctx->shader_type == MOJOSHADER_TYPE_VERTEX); |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
166 |
} // shader_is_vertex |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
167 |
|
562
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
168 |
static inline void pushback(Context *ctx) |
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
169 |
{ |
716
94a804b54078
Cleaned up HLSL parser tracing.
Ryan C. Gordon <icculus@icculus.org>
parents:
696
diff
changeset
|
170 |
#if DEBUG_ASSEMBLER_PARSER |
566
6bd82a5acf62
Added more debug output.
Ryan C. Gordon <icculus@icculus.org>
parents:
562
diff
changeset
|
171 |
printf("ASSEMBLER PUSHBACK\n"); |
6bd82a5acf62
Added more debug output.
Ryan C. Gordon <icculus@icculus.org>
parents:
562
diff
changeset
|
172 |
#endif |
562
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
173 |
assert(!ctx->pushedback); |
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
174 |
ctx->pushedback = 1; |
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
175 |
} // pushback |
465
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
176 |
|
562
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
177 |
|
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
178 |
static Token nexttoken(Context *ctx) |
482
3f740f25bd7e
Fixed relative addressing parsing.
Ryan C. Gordon <icculus@icculus.org>
parents:
481
diff
changeset
|
179 |
{ |
562
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
180 |
if (ctx->pushedback) |
690
4710df464f13
Moved asm comment processing into the lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
658
diff
changeset
|
181 |
ctx->pushedback = 0; |
4710df464f13
Moved asm comment processing into the lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
658
diff
changeset
|
182 |
else |
562
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
183 |
{ |
690
4710df464f13
Moved asm comment processing into the lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
658
diff
changeset
|
184 |
while (1) |
4710df464f13
Moved asm comment processing into the lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
658
diff
changeset
|
185 |
{ |
4710df464f13
Moved asm comment processing into the lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
658
diff
changeset
|
186 |
ctx->token = preprocessor_nexttoken(ctx->preprocessor, |
4710df464f13
Moved asm comment processing into the lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
658
diff
changeset
|
187 |
&ctx->tokenlen, |
4710df464f13
Moved asm comment processing into the lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
658
diff
changeset
|
188 |
&ctx->tokenval); |
562
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
189 |
|
690
4710df464f13
Moved asm comment processing into the lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
658
diff
changeset
|
190 |
if (preprocessor_outofmemory(ctx->preprocessor)) |
4710df464f13
Moved asm comment processing into the lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
658
diff
changeset
|
191 |
{ |
4710df464f13
Moved asm comment processing into the lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
658
diff
changeset
|
192 |
ctx->tokenval = TOKEN_EOI; |
4710df464f13
Moved asm comment processing into the lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
658
diff
changeset
|
193 |
ctx->token = NULL; |
4710df464f13
Moved asm comment processing into the lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
658
diff
changeset
|
194 |
ctx->tokenlen = 0; |
4710df464f13
Moved asm comment processing into the lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
658
diff
changeset
|
195 |
break; |
4710df464f13
Moved asm comment processing into the lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
658
diff
changeset
|
196 |
} // if |
562
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
197 |
|
947
16af6e2b2ada
Cleaned up error position reporting.
Ryan C. Gordon <icculus@icculus.org>
parents:
946
diff
changeset
|
198 |
unsigned int line; |
16af6e2b2ada
Cleaned up error position reporting.
Ryan C. Gordon <icculus@icculus.org>
parents:
946
diff
changeset
|
199 |
ctx->current_file = preprocessor_sourcepos(ctx->preprocessor,&line); |
16af6e2b2ada
Cleaned up error position reporting.
Ryan C. Gordon <icculus@icculus.org>
parents:
946
diff
changeset
|
200 |
ctx->current_position = (int) line; |
16af6e2b2ada
Cleaned up error position reporting.
Ryan C. Gordon <icculus@icculus.org>
parents:
946
diff
changeset
|
201 |
|
16af6e2b2ada
Cleaned up error position reporting.
Ryan C. Gordon <icculus@icculus.org>
parents:
946
diff
changeset
|
202 |
if (ctx->tokenval == TOKEN_BAD_CHARS) |
840
84a0c6807aa8
Report bad characters in the assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
801
diff
changeset
|
203 |
{ |
84a0c6807aa8
Report bad characters in the assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
801
diff
changeset
|
204 |
fail(ctx, "Bad characters in source file"); |
84a0c6807aa8
Report bad characters in the assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
801
diff
changeset
|
205 |
continue; |
84a0c6807aa8
Report bad characters in the assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
801
diff
changeset
|
206 |
} // else if |
84a0c6807aa8
Report bad characters in the assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
801
diff
changeset
|
207 |
|
690
4710df464f13
Moved asm comment processing into the lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
658
diff
changeset
|
208 |
else if (ctx->tokenval == TOKEN_PREPROCESSING_ERROR) |
4710df464f13
Moved asm comment processing into the lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
658
diff
changeset
|
209 |
{ |
4710df464f13
Moved asm comment processing into the lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
658
diff
changeset
|
210 |
fail(ctx, ctx->token); |
4710df464f13
Moved asm comment processing into the lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
658
diff
changeset
|
211 |
continue; |
4710df464f13
Moved asm comment processing into the lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
658
diff
changeset
|
212 |
} // else if |
4710df464f13
Moved asm comment processing into the lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
658
diff
changeset
|
213 |
|
4710df464f13
Moved asm comment processing into the lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
658
diff
changeset
|
214 |
break; |
4710df464f13
Moved asm comment processing into the lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
658
diff
changeset
|
215 |
} // while |
4710df464f13
Moved asm comment processing into the lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
658
diff
changeset
|
216 |
} // else |
562
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
217 |
|
587
202354e004fc
Unified some cut-and-paste code.
Ryan C. Gordon <icculus@icculus.org>
parents:
586
diff
changeset
|
218 |
print_debug_token(ctx->token, ctx->tokenlen, ctx->tokenval); |
690
4710df464f13
Moved asm comment processing into the lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
658
diff
changeset
|
219 |
return ctx->tokenval; |
562
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
220 |
} // nexttoken |
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
221 |
|
536
5af65fe6e917
Allow multiple errors from parsing.
Ryan C. Gordon <icculus@icculus.org>
parents:
532
diff
changeset
|
222 |
|
465
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
223 |
static void output_token_noswap(Context *ctx, const uint32 token) |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
224 |
{ |
946
16fec3a3f687
Technical debt: cleaned up things in the assembler that should've used Buffer.
Ryan C. Gordon <icculus@icculus.org>
parents:
945
diff
changeset
|
225 |
if (!isfail(ctx)) |
470
7d84d3452125
Bunch More Work on the assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
465
diff
changeset
|
226 |
{ |
946
16fec3a3f687
Technical debt: cleaned up things in the assembler that should've used Buffer.
Ryan C. Gordon <icculus@icculus.org>
parents:
945
diff
changeset
|
227 |
buffer_append(ctx->output, &token, sizeof (token)); |
486
45efac751027
Added error_position to assembly results.
Ryan C. Gordon <icculus@icculus.org>
parents:
485
diff
changeset
|
228 |
|
946
16fec3a3f687
Technical debt: cleaned up things in the assembler that should've used Buffer.
Ryan C. Gordon <icculus@icculus.org>
parents:
945
diff
changeset
|
229 |
// We only need a list of these that grows throughout processing, and |
16fec3a3f687
Technical debt: cleaned up things in the assembler that should've used Buffer.
Ryan C. Gordon <icculus@icculus.org>
parents:
945
diff
changeset
|
230 |
// is flattened for reference at the end of the run, so we use a |
16fec3a3f687
Technical debt: cleaned up things in the assembler that should've used Buffer.
Ryan C. Gordon <icculus@icculus.org>
parents:
945
diff
changeset
|
231 |
// Buffer. It's sneaky! |
16fec3a3f687
Technical debt: cleaned up things in the assembler that should've used Buffer.
Ryan C. Gordon <icculus@icculus.org>
parents:
945
diff
changeset
|
232 |
unsigned int pos = 0; |
16fec3a3f687
Technical debt: cleaned up things in the assembler that should've used Buffer.
Ryan C. Gordon <icculus@icculus.org>
parents:
945
diff
changeset
|
233 |
const char *fname = preprocessor_sourcepos(ctx->preprocessor, &pos); |
16fec3a3f687
Technical debt: cleaned up things in the assembler that should've used Buffer.
Ryan C. Gordon <icculus@icculus.org>
parents:
945
diff
changeset
|
234 |
SourcePos srcpos; |
16fec3a3f687
Technical debt: cleaned up things in the assembler that should've used Buffer.
Ryan C. Gordon <icculus@icculus.org>
parents:
945
diff
changeset
|
235 |
memset(&srcpos, '\0', sizeof (SourcePos)); |
16fec3a3f687
Technical debt: cleaned up things in the assembler that should've used Buffer.
Ryan C. Gordon <icculus@icculus.org>
parents:
945
diff
changeset
|
236 |
srcpos.line = pos; |
16fec3a3f687
Technical debt: cleaned up things in the assembler that should've used Buffer.
Ryan C. Gordon <icculus@icculus.org>
parents:
945
diff
changeset
|
237 |
srcpos.filename = fname; // cached in preprocessor! |
16fec3a3f687
Technical debt: cleaned up things in the assembler that should've used Buffer.
Ryan C. Gordon <icculus@icculus.org>
parents:
945
diff
changeset
|
238 |
buffer_append(ctx->token_to_source, &srcpos, sizeof (SourcePos)); |
470
7d84d3452125
Bunch More Work on the assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
465
diff
changeset
|
239 |
} // if |
465
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
240 |
} // output_token_noswap |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
241 |
|
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
242 |
|
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
243 |
static inline void output_token(Context *ctx, const uint32 token) |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
244 |
{ |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
245 |
output_token_noswap(ctx, SWAP32(token)); |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
246 |
} // output_token |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
247 |
|
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
248 |
|
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
249 |
static void output_comment_bytes(Context *ctx, const uint8 *buf, size_t len) |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
250 |
{ |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
251 |
if (len > (0xFFFF * 4)) // length is stored as token count, in 16 bits. |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
252 |
fail(ctx, "Comment field is too big"); |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
253 |
else if (!isfail(ctx)) |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
254 |
{ |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
255 |
const uint32 tokencount = (len / 4) + ((len % 4) ? 1 : 0); |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
256 |
output_token(ctx, 0xFFFE | (tokencount << 16)); |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
257 |
while (len >= 4) |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
258 |
{ |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
259 |
output_token_noswap(ctx, *((const uint32 *) buf)); |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
260 |
len -= 4; |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
261 |
buf += 4; |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
262 |
} // while |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
263 |
|
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
264 |
if (len > 0) // handle spillover... |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
265 |
{ |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
266 |
union { uint8 ui8[4]; uint32 ui32; } overflow; |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
267 |
overflow.ui32 = 0; |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
268 |
memcpy(overflow.ui8, buf, len); |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
269 |
output_token_noswap(ctx, overflow.ui32); |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
270 |
} // if |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
271 |
} // else if |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
272 |
} // output_comment_bytes |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
273 |
|
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
274 |
|
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
275 |
static inline void output_comment_string(Context *ctx, const char *str) |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
276 |
{ |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
277 |
output_comment_bytes(ctx, (const uint8 *) str, strlen(str)); |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
278 |
} // output_comment_string |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
279 |
|
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
280 |
|
470
7d84d3452125
Bunch More Work on the assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
465
diff
changeset
|
281 |
static int require_comma(Context *ctx) |
465
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
282 |
{ |
562
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
283 |
const Token token = nexttoken(ctx); |
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
284 |
if (token != ((Token) ',')) |
542
a56d3bfd2e36
More work on multiple error messages.
Ryan C. Gordon <icculus@icculus.org>
parents:
539
diff
changeset
|
285 |
{ |
a56d3bfd2e36
More work on multiple error messages.
Ryan C. Gordon <icculus@icculus.org>
parents:
539
diff
changeset
|
286 |
fail(ctx, "Comma expected"); |
a56d3bfd2e36
More work on multiple error messages.
Ryan C. Gordon <icculus@icculus.org>
parents:
539
diff
changeset
|
287 |
return 0; |
a56d3bfd2e36
More work on multiple error messages.
Ryan C. Gordon <icculus@icculus.org>
parents:
539
diff
changeset
|
288 |
} // if |
a56d3bfd2e36
More work on multiple error messages.
Ryan C. Gordon <icculus@icculus.org>
parents:
539
diff
changeset
|
289 |
return 1; |
470
7d84d3452125
Bunch More Work on the assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
465
diff
changeset
|
290 |
} // require_comma |
465
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
291 |
|
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
292 |
|
562
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
293 |
static int check_token_segment(Context *ctx, const char *str) |
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
294 |
{ |
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
295 |
// !!! FIXME: these are case-insensitive, right? |
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
296 |
const size_t len = strlen(str); |
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
297 |
if ( (ctx->tokenlen < len) || (strncasecmp(ctx->token, str, len) != 0) ) |
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
298 |
return 0; |
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
299 |
ctx->token += len; |
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
300 |
ctx->tokenlen -= len; |
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
301 |
return 1; |
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
302 |
} // check_token_segment |
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
303 |
|
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
304 |
|
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
305 |
static int check_token(Context *ctx, const char *str) |
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
306 |
{ |
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
307 |
const size_t len = strlen(str); |
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
308 |
if ( (ctx->tokenlen != len) || (strncasecmp(ctx->token, str, len) != 0) ) |
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
309 |
return 0; |
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
310 |
ctx->token += len; |
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
311 |
ctx->tokenlen = 0; |
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
312 |
return 1; |
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
313 |
} // check_token |
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
314 |
|
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
315 |
|
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
316 |
static int ui32fromtoken(Context *ctx, uint32 *_val) |
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
317 |
{ |
798
5dd67cc04cf9
Bunch of small tweaks to make this compile as C++ code without errors/warnings.
Ryan C. Gordon <icculus@icculus.org>
parents:
720
diff
changeset
|
318 |
unsigned int i; |
562
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
319 |
for (i = 0; i < ctx->tokenlen; i++) |
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
320 |
{ |
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
321 |
if ((ctx->token[i] < '0') || (ctx->token[i] > '9')) |
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
322 |
break; |
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
323 |
} // for |
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
324 |
|
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
325 |
if (i == 0) |
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
326 |
{ |
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
327 |
*_val = 0; |
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
328 |
return 0; |
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
329 |
} // if |
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
330 |
|
798
5dd67cc04cf9
Bunch of small tweaks to make this compile as C++ code without errors/warnings.
Ryan C. Gordon <icculus@icculus.org>
parents:
720
diff
changeset
|
331 |
const unsigned int len = i; |
562
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
332 |
uint32 val = 0; |
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
333 |
uint32 mult = 1; |
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
334 |
while (i--) |
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
335 |
{ |
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
336 |
val += ((uint32) (ctx->token[i] - '0')) * mult; |
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
337 |
mult *= 10; |
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
338 |
} // while |
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
339 |
|
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
340 |
ctx->token += len; |
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
341 |
ctx->tokenlen -= len; |
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
342 |
|
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
343 |
*_val = val; |
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
344 |
return 1; |
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
345 |
} // ui32fromtoken |
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
346 |
|
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
347 |
|
465
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
348 |
static int parse_register_name(Context *ctx, RegisterType *rtype, int *rnum) |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
349 |
{ |
562
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
350 |
if (nexttoken(ctx) != TOKEN_IDENTIFIER) |
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
351 |
{ |
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
352 |
fail(ctx, "Expected register"); |
542
a56d3bfd2e36
More work on multiple error messages.
Ryan C. Gordon <icculus@icculus.org>
parents:
539
diff
changeset
|
353 |
return 0; |
562
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
354 |
} // if |
465
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
355 |
|
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
356 |
int neednum = 1; |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
357 |
int regnum = 0; |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
358 |
RegisterType regtype = REG_TYPE_TEMP; |
562
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
359 |
|
573
1cd1d99a79cb
Rearrange how we test for register names to avoid substring matches.
Ryan C. Gordon <icculus@icculus.org>
parents:
572
diff
changeset
|
360 |
// Watch out for substrings! oDepth must be checked before oD, since |
1cd1d99a79cb
Rearrange how we test for register names to avoid substring matches.
Ryan C. Gordon <icculus@icculus.org>
parents:
572
diff
changeset
|
361 |
// the latter will match either case. |
1cd1d99a79cb
Rearrange how we test for register names to avoid substring matches.
Ryan C. Gordon <icculus@icculus.org>
parents:
572
diff
changeset
|
362 |
if (check_token_segment(ctx, "oDepth")) |
513
abd9c85ba168
oDepth register doesn't have an index.
Ryan C. Gordon <icculus@icculus.org>
parents:
512
diff
changeset
|
363 |
{ |
abd9c85ba168
oDepth register doesn't have an index.
Ryan C. Gordon <icculus@icculus.org>
parents:
512
diff
changeset
|
364 |
regtype = REG_TYPE_DEPTHOUT; |
abd9c85ba168
oDepth register doesn't have an index.
Ryan C. Gordon <icculus@icculus.org>
parents:
512
diff
changeset
|
365 |
neednum = 0; |
abd9c85ba168
oDepth register doesn't have an index.
Ryan C. Gordon <icculus@icculus.org>
parents:
512
diff
changeset
|
366 |
} // else if |
573
1cd1d99a79cb
Rearrange how we test for register names to avoid substring matches.
Ryan C. Gordon <icculus@icculus.org>
parents:
572
diff
changeset
|
367 |
else if (check_token_segment(ctx, "vFace")) |
465
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
368 |
{ |
573
1cd1d99a79cb
Rearrange how we test for register names to avoid substring matches.
Ryan C. Gordon <icculus@icculus.org>
parents:
572
diff
changeset
|
369 |
regtype = REG_TYPE_MISCTYPE; |
1cd1d99a79cb
Rearrange how we test for register names to avoid substring matches.
Ryan C. Gordon <icculus@icculus.org>
parents:
572
diff
changeset
|
370 |
regnum = (int) MISCTYPE_TYPE_FACE; |
465
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
371 |
neednum = 0; |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
372 |
} // else if |
562
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
373 |
else if (check_token_segment(ctx, "vPos")) |
465
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
374 |
{ |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
375 |
regtype = REG_TYPE_MISCTYPE; |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
376 |
regnum = (int) MISCTYPE_TYPE_POSITION; |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
377 |
neednum = 0; |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
378 |
} // else if |
562
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
379 |
else if (check_token_segment(ctx, "oPos")) |
465
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
380 |
{ |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
381 |
regtype = REG_TYPE_RASTOUT; |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
382 |
regnum = (int) RASTOUT_TYPE_POSITION; |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
383 |
neednum = 0; |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
384 |
} // else if |
562
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
385 |
else if (check_token_segment(ctx, "oFog")) |
465
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
386 |
{ |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
387 |
regtype = REG_TYPE_RASTOUT; |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
388 |
regnum = (int) RASTOUT_TYPE_FOG; |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
389 |
neednum = 0; |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
390 |
} // else if |
562
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
391 |
else if (check_token_segment(ctx, "oPts")) |
465
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
392 |
{ |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
393 |
regtype = REG_TYPE_RASTOUT; |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
394 |
regnum = (int) RASTOUT_TYPE_POINT_SIZE; |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
395 |
neednum = 0; |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
396 |
} // else if |
573
1cd1d99a79cb
Rearrange how we test for register names to avoid substring matches.
Ryan C. Gordon <icculus@icculus.org>
parents:
572
diff
changeset
|
397 |
else if (check_token_segment(ctx, "aL")) |
1cd1d99a79cb
Rearrange how we test for register names to avoid substring matches.
Ryan C. Gordon <icculus@icculus.org>
parents:
572
diff
changeset
|
398 |
{ |
1cd1d99a79cb
Rearrange how we test for register names to avoid substring matches.
Ryan C. Gordon <icculus@icculus.org>
parents:
572
diff
changeset
|
399 |
regtype = REG_TYPE_LOOP; |
1cd1d99a79cb
Rearrange how we test for register names to avoid substring matches.
Ryan C. Gordon <icculus@icculus.org>
parents:
572
diff
changeset
|
400 |
neednum = 0; |
1cd1d99a79cb
Rearrange how we test for register names to avoid substring matches.
Ryan C. Gordon <icculus@icculus.org>
parents:
572
diff
changeset
|
401 |
} // else if |
1cd1d99a79cb
Rearrange how we test for register names to avoid substring matches.
Ryan C. Gordon <icculus@icculus.org>
parents:
572
diff
changeset
|
402 |
else if (check_token_segment(ctx, "oC")) |
1cd1d99a79cb
Rearrange how we test for register names to avoid substring matches.
Ryan C. Gordon <icculus@icculus.org>
parents:
572
diff
changeset
|
403 |
regtype = REG_TYPE_COLOROUT; |
1cd1d99a79cb
Rearrange how we test for register names to avoid substring matches.
Ryan C. Gordon <icculus@icculus.org>
parents:
572
diff
changeset
|
404 |
else if (check_token_segment(ctx, "oT")) |
1cd1d99a79cb
Rearrange how we test for register names to avoid substring matches.
Ryan C. Gordon <icculus@icculus.org>
parents:
572
diff
changeset
|
405 |
regtype = REG_TYPE_OUTPUT; |
1cd1d99a79cb
Rearrange how we test for register names to avoid substring matches.
Ryan C. Gordon <icculus@icculus.org>
parents:
572
diff
changeset
|
406 |
else if (check_token_segment(ctx, "oD")) |
1cd1d99a79cb
Rearrange how we test for register names to avoid substring matches.
Ryan C. Gordon <icculus@icculus.org>
parents:
572
diff
changeset
|
407 |
regtype = REG_TYPE_ATTROUT; |
1cd1d99a79cb
Rearrange how we test for register names to avoid substring matches.
Ryan C. Gordon <icculus@icculus.org>
parents:
572
diff
changeset
|
408 |
else if (check_token_segment(ctx, "r")) |
1cd1d99a79cb
Rearrange how we test for register names to avoid substring matches.
Ryan C. Gordon <icculus@icculus.org>
parents:
572
diff
changeset
|
409 |
regtype = REG_TYPE_TEMP; |
1cd1d99a79cb
Rearrange how we test for register names to avoid substring matches.
Ryan C. Gordon <icculus@icculus.org>
parents:
572
diff
changeset
|
410 |
else if (check_token_segment(ctx, "v")) |
1cd1d99a79cb
Rearrange how we test for register names to avoid substring matches.
Ryan C. Gordon <icculus@icculus.org>
parents:
572
diff
changeset
|
411 |
regtype = REG_TYPE_INPUT; |
1cd1d99a79cb
Rearrange how we test for register names to avoid substring matches.
Ryan C. Gordon <icculus@icculus.org>
parents:
572
diff
changeset
|
412 |
else if (check_token_segment(ctx, "c")) |
1cd1d99a79cb
Rearrange how we test for register names to avoid substring matches.
Ryan C. Gordon <icculus@icculus.org>
parents:
572
diff
changeset
|
413 |
regtype = REG_TYPE_CONST; |
1cd1d99a79cb
Rearrange how we test for register names to avoid substring matches.
Ryan C. Gordon <icculus@icculus.org>
parents:
572
diff
changeset
|
414 |
else if (check_token_segment(ctx, "i")) |
1cd1d99a79cb
Rearrange how we test for register names to avoid substring matches.
Ryan C. Gordon <icculus@icculus.org>
parents:
572
diff
changeset
|
415 |
regtype = REG_TYPE_CONSTINT; |
1cd1d99a79cb
Rearrange how we test for register names to avoid substring matches.
Ryan C. Gordon <icculus@icculus.org>
parents:
572
diff
changeset
|
416 |
else if (check_token_segment(ctx, "b")) |
1cd1d99a79cb
Rearrange how we test for register names to avoid substring matches.
Ryan C. Gordon <icculus@icculus.org>
parents:
572
diff
changeset
|
417 |
regtype = REG_TYPE_CONSTBOOL; |
1cd1d99a79cb
Rearrange how we test for register names to avoid substring matches.
Ryan C. Gordon <icculus@icculus.org>
parents:
572
diff
changeset
|
418 |
else if (check_token_segment(ctx, "s")) |
1cd1d99a79cb
Rearrange how we test for register names to avoid substring matches.
Ryan C. Gordon <icculus@icculus.org>
parents:
572
diff
changeset
|
419 |
regtype = REG_TYPE_SAMPLER; |
1cd1d99a79cb
Rearrange how we test for register names to avoid substring matches.
Ryan C. Gordon <icculus@icculus.org>
parents:
572
diff
changeset
|
420 |
else if (check_token_segment(ctx, "l")) |
1cd1d99a79cb
Rearrange how we test for register names to avoid substring matches.
Ryan C. Gordon <icculus@icculus.org>
parents:
572
diff
changeset
|
421 |
regtype = REG_TYPE_LABEL; |
1cd1d99a79cb
Rearrange how we test for register names to avoid substring matches.
Ryan C. Gordon <icculus@icculus.org>
parents:
572
diff
changeset
|
422 |
else if (check_token_segment(ctx, "p")) |
1cd1d99a79cb
Rearrange how we test for register names to avoid substring matches.
Ryan C. Gordon <icculus@icculus.org>
parents:
572
diff
changeset
|
423 |
regtype = REG_TYPE_PREDICATE; |
1cd1d99a79cb
Rearrange how we test for register names to avoid substring matches.
Ryan C. Gordon <icculus@icculus.org>
parents:
572
diff
changeset
|
424 |
else if (check_token_segment(ctx, "o")) |
1cd1d99a79cb
Rearrange how we test for register names to avoid substring matches.
Ryan C. Gordon <icculus@icculus.org>
parents:
572
diff
changeset
|
425 |
regtype = REG_TYPE_OUTPUT; |
1cd1d99a79cb
Rearrange how we test for register names to avoid substring matches.
Ryan C. Gordon <icculus@icculus.org>
parents:
572
diff
changeset
|
426 |
else if (check_token_segment(ctx, "a")) |
1cd1d99a79cb
Rearrange how we test for register names to avoid substring matches.
Ryan C. Gordon <icculus@icculus.org>
parents:
572
diff
changeset
|
427 |
regtype = REG_TYPE_ADDRESS; |
1cd1d99a79cb
Rearrange how we test for register names to avoid substring matches.
Ryan C. Gordon <icculus@icculus.org>
parents:
572
diff
changeset
|
428 |
else if (check_token_segment(ctx, "t")) |
1cd1d99a79cb
Rearrange how we test for register names to avoid substring matches.
Ryan C. Gordon <icculus@icculus.org>
parents:
572
diff
changeset
|
429 |
regtype = REG_TYPE_ADDRESS; |
465
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
430 |
|
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
431 |
//case REG_TYPE_TEMPFLOAT16: // !!! FIXME: don't know this asm string |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
432 |
|
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
433 |
else |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
434 |
{ |
542
a56d3bfd2e36
More work on multiple error messages.
Ryan C. Gordon <icculus@icculus.org>
parents:
539
diff
changeset
|
435 |
fail(ctx, "expected register type"); |
a56d3bfd2e36
More work on multiple error messages.
Ryan C. Gordon <icculus@icculus.org>
parents:
539
diff
changeset
|
436 |
regtype = REG_TYPE_CONST; |
a56d3bfd2e36
More work on multiple error messages.
Ryan C. Gordon <icculus@icculus.org>
parents:
539
diff
changeset
|
437 |
regnum = 0; |
a56d3bfd2e36
More work on multiple error messages.
Ryan C. Gordon <icculus@icculus.org>
parents:
539
diff
changeset
|
438 |
neednum = 0; |
465
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
439 |
} // else |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
440 |
|
570
af6bb8728f9e
Fixed register name parsing.
Ryan C. Gordon <icculus@icculus.org>
parents:
567
diff
changeset
|
441 |
// "c[5]" is the same as "c5", so if the token is done, see if next is '['. |
af6bb8728f9e
Fixed register name parsing.
Ryan C. Gordon <icculus@icculus.org>
parents:
567
diff
changeset
|
442 |
if ((neednum) && (ctx->tokenlen == 0)) |
465
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
443 |
{ |
1057
4c5cb78c6cdd
Assembler: fixed bug where relative addressing failed parsing.
Ryan C. Gordon <icculus@icculus.org>
parents:
994
diff
changeset
|
444 |
const int tlen = ctx->tokenlen; // we need to protect this for later. |
562
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
445 |
if (nexttoken(ctx) == ((Token) '[')) |
570
af6bb8728f9e
Fixed register name parsing.
Ryan C. Gordon <icculus@icculus.org>
parents:
567
diff
changeset
|
446 |
neednum = 0; // don't need a number on register name itself. |
562
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
447 |
pushback(ctx); |
1057
4c5cb78c6cdd
Assembler: fixed bug where relative addressing failed parsing.
Ryan C. Gordon <icculus@icculus.org>
parents:
994
diff
changeset
|
448 |
ctx->tokenlen = tlen; |
482
3f740f25bd7e
Fixed relative addressing parsing.
Ryan C. Gordon <icculus@icculus.org>
parents:
481
diff
changeset
|
449 |
} // if |
3f740f25bd7e
Fixed relative addressing parsing.
Ryan C. Gordon <icculus@icculus.org>
parents:
481
diff
changeset
|
450 |
|
3f740f25bd7e
Fixed relative addressing parsing.
Ryan C. Gordon <icculus@icculus.org>
parents:
481
diff
changeset
|
451 |
if (neednum) |
3f740f25bd7e
Fixed relative addressing parsing.
Ryan C. Gordon <icculus@icculus.org>
parents:
481
diff
changeset
|
452 |
{ |
3f740f25bd7e
Fixed relative addressing parsing.
Ryan C. Gordon <icculus@icculus.org>
parents:
481
diff
changeset
|
453 |
uint32 ui32 = 0; |
562
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
454 |
if (!ui32fromtoken(ctx, &ui32)) |
542
a56d3bfd2e36
More work on multiple error messages.
Ryan C. Gordon <icculus@icculus.org>
parents:
539
diff
changeset
|
455 |
fail(ctx, "Invalid register index"); |
482
3f740f25bd7e
Fixed relative addressing parsing.
Ryan C. Gordon <icculus@icculus.org>
parents:
481
diff
changeset
|
456 |
regnum = (int) ui32; |
465
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
457 |
} // if |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
458 |
|
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
459 |
// split up REG_TYPE_CONST |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
460 |
if (regtype == REG_TYPE_CONST) |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
461 |
{ |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
462 |
if (regnum < 2048) |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
463 |
{ |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
464 |
regtype = REG_TYPE_CONST; |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
465 |
regnum -= 0; |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
466 |
} // if |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
467 |
else if (regnum < 4096) |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
468 |
{ |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
469 |
regtype = REG_TYPE_CONST2; |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
470 |
regnum -= 2048; |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
471 |
} // if |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
472 |
else if (regnum < 6144) |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
473 |
{ |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
474 |
regtype = REG_TYPE_CONST3; |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
475 |
regnum -= 4096; |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
476 |
} // if |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
477 |
else if (regnum < 8192) |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
478 |
{ |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
479 |
regtype = REG_TYPE_CONST4; |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
480 |
regnum -= 6144; |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
481 |
} // if |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
482 |
else |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
483 |
{ |
542
a56d3bfd2e36
More work on multiple error messages.
Ryan C. Gordon <icculus@icculus.org>
parents:
539
diff
changeset
|
484 |
fail(ctx, "Invalid const register index"); |
465
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
485 |
} // else |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
486 |
} // if |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
487 |
|
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
488 |
*rtype = regtype; |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
489 |
*rnum = regnum; |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
490 |
|
542
a56d3bfd2e36
More work on multiple error messages.
Ryan C. Gordon <icculus@icculus.org>
parents:
539
diff
changeset
|
491 |
return 1; |
465
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
492 |
} // parse_register_name |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
493 |
|
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
494 |
|
542
a56d3bfd2e36
More work on multiple error messages.
Ryan C. Gordon <icculus@icculus.org>
parents:
539
diff
changeset
|
495 |
static void set_result_shift(Context *ctx, DestArgInfo *info, const int val) |
470
7d84d3452125
Bunch More Work on the assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
465
diff
changeset
|
496 |
{ |
7d84d3452125
Bunch More Work on the assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
465
diff
changeset
|
497 |
if (info->result_shift != 0) |
542
a56d3bfd2e36
More work on multiple error messages.
Ryan C. Gordon <icculus@icculus.org>
parents:
539
diff
changeset
|
498 |
fail(ctx, "Multiple result shift modifiers"); |
470
7d84d3452125
Bunch More Work on the assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
465
diff
changeset
|
499 |
info->result_shift = val; |
7d84d3452125
Bunch More Work on the assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
465
diff
changeset
|
500 |
} // set_result_shift |
7d84d3452125
Bunch More Work on the assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
465
diff
changeset
|
501 |
|
7d84d3452125
Bunch More Work on the assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
465
diff
changeset
|
502 |
|
798
5dd67cc04cf9
Bunch of small tweaks to make this compile as C++ code without errors/warnings.
Ryan C. Gordon <icculus@icculus.org>
parents:
720
diff
changeset
|
503 |
static inline int tokenbuf_overflow(Context *ctx) |
5dd67cc04cf9
Bunch of small tweaks to make this compile as C++ code without errors/warnings.
Ryan C. Gordon <icculus@icculus.org>
parents:
720
diff
changeset
|
504 |
{ |
5dd67cc04cf9
Bunch of small tweaks to make this compile as C++ code without errors/warnings.
Ryan C. Gordon <icculus@icculus.org>
parents:
720
diff
changeset
|
505 |
if ( ctx->tokenbufpos >= ((int) (STATICARRAYLEN(ctx->tokenbuf))) ) |
5dd67cc04cf9
Bunch of small tweaks to make this compile as C++ code without errors/warnings.
Ryan C. Gordon <icculus@icculus.org>
parents:
720
diff
changeset
|
506 |
{ |
5dd67cc04cf9
Bunch of small tweaks to make this compile as C++ code without errors/warnings.
Ryan C. Gordon <icculus@icculus.org>
parents:
720
diff
changeset
|
507 |
fail(ctx, "Too many tokens"); |
5dd67cc04cf9
Bunch of small tweaks to make this compile as C++ code without errors/warnings.
Ryan C. Gordon <icculus@icculus.org>
parents:
720
diff
changeset
|
508 |
return 1; |
5dd67cc04cf9
Bunch of small tweaks to make this compile as C++ code without errors/warnings.
Ryan C. Gordon <icculus@icculus.org>
parents:
720
diff
changeset
|
509 |
} // if |
5dd67cc04cf9
Bunch of small tweaks to make this compile as C++ code without errors/warnings.
Ryan C. Gordon <icculus@icculus.org>
parents:
720
diff
changeset
|
510 |
|
5dd67cc04cf9
Bunch of small tweaks to make this compile as C++ code without errors/warnings.
Ryan C. Gordon <icculus@icculus.org>
parents:
720
diff
changeset
|
511 |
return 0; |
5dd67cc04cf9
Bunch of small tweaks to make this compile as C++ code without errors/warnings.
Ryan C. Gordon <icculus@icculus.org>
parents:
720
diff
changeset
|
512 |
} // tokenbuf_overflow |
5dd67cc04cf9
Bunch of small tweaks to make this compile as C++ code without errors/warnings.
Ryan C. Gordon <icculus@icculus.org>
parents:
720
diff
changeset
|
513 |
|
5dd67cc04cf9
Bunch of small tweaks to make this compile as C++ code without errors/warnings.
Ryan C. Gordon <icculus@icculus.org>
parents:
720
diff
changeset
|
514 |
|
515
58c1a7d98176
First steps of reworking tokenizer.
Ryan C. Gordon <icculus@icculus.org>
parents:
514
diff
changeset
|
515 |
static int parse_destination_token(Context *ctx) |
465
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
516 |
{ |
515
58c1a7d98176
First steps of reworking tokenizer.
Ryan C. Gordon <icculus@icculus.org>
parents:
514
diff
changeset
|
517 |
DestArgInfo *info = &ctx->dest_arg; |
510
f4433db86f6e
Fixed wrong sizeof for a memset() call.
Ryan C. Gordon <icculus@icculus.org>
parents:
508
diff
changeset
|
518 |
memset(info, '\0', sizeof (DestArgInfo)); |
465
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
519 |
|
562
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
520 |
// parse_instruction_token() sets ctx->token to the end of the instruction |
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
521 |
// so we can see if there are destination modifiers on the instruction |
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
522 |
// itself... |
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
523 |
|
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
524 |
int invalid_modifier = 0; |
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
525 |
|
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
526 |
while ((ctx->tokenlen > 0) && (!invalid_modifier)) |
465
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
527 |
{ |
562
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
528 |
if (check_token_segment(ctx, "_x2")) |
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
529 |
set_result_shift(ctx, info, 0x1); |
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
530 |
else if (check_token_segment(ctx, "_x4")) |
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
531 |
set_result_shift(ctx, info, 0x2); |
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
532 |
else if (check_token_segment(ctx, "_x8")) |
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
533 |
set_result_shift(ctx, info, 0x3); |
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
534 |
else if (check_token_segment(ctx, "_d8")) |
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
535 |
set_result_shift(ctx, info, 0xD); |
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
536 |
else if (check_token_segment(ctx, "_d4")) |
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
537 |
set_result_shift(ctx, info, 0xE); |
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
538 |
else if (check_token_segment(ctx, "_d2")) |
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
539 |
set_result_shift(ctx, info, 0xF); |
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
540 |
else if (check_token_segment(ctx, "_sat")) |
465
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
541 |
info->result_mod |= MOD_SATURATE; |
562
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
542 |
else if (check_token_segment(ctx, "_pp")) |
465
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
543 |
info->result_mod |= MOD_PP; |
562
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
544 |
else if (check_token_segment(ctx, "_centroid")) |
465
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
545 |
info->result_mod |= MOD_CENTROID; |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
546 |
else |
562
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
547 |
invalid_modifier = 1; |
465
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
548 |
} // while |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
549 |
|
562
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
550 |
if (invalid_modifier) |
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
551 |
fail(ctx, "Invalid destination modifier"); |
465
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
552 |
|
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
553 |
// !!! FIXME: predicates. |
562
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
554 |
if (nexttoken(ctx) == ((Token) '(')) |
542
a56d3bfd2e36
More work on multiple error messages.
Ryan C. Gordon <icculus@icculus.org>
parents:
539
diff
changeset
|
555 |
fail(ctx, "Predicates unsupported at this time"); // !!! FIXME: ... |
a56d3bfd2e36
More work on multiple error messages.
Ryan C. Gordon <icculus@icculus.org>
parents:
539
diff
changeset
|
556 |
|
465
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
557 |
pushback(ctx); // parse_register_name calls nexttoken(). |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
558 |
|
542
a56d3bfd2e36
More work on multiple error messages.
Ryan C. Gordon <icculus@icculus.org>
parents:
539
diff
changeset
|
559 |
parse_register_name(ctx, &info->regtype, &info->regnum); |
562
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
560 |
// parse_register_name() can't check this: dest regs might have modifiers. |
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
561 |
if (ctx->tokenlen > 0) |
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
562 |
fail(ctx, "invalid register name"); |
465
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
563 |
|
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
564 |
// !!! FIXME: can dest registers do relative addressing? |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
565 |
|
542
a56d3bfd2e36
More work on multiple error messages.
Ryan C. Gordon <icculus@icculus.org>
parents:
539
diff
changeset
|
566 |
int invalid_writemask = 0; |
562
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
567 |
if (nexttoken(ctx) != ((Token) '.')) |
465
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
568 |
{ |
1288
259d3bba6b66
Clean up assembler writemask parsing a little.
Ryan C. Gordon <icculus@icculus.org>
parents:
1287
diff
changeset
|
569 |
set_dstarg_writemask(info, ctx->default_writemask); |
259d3bba6b66
Clean up assembler writemask parsing a little.
Ryan C. Gordon <icculus@icculus.org>
parents:
1287
diff
changeset
|
570 |
pushback(ctx); // no explicit writemask; do default mask. |
465
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
571 |
} // if |
562
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
572 |
else if (nexttoken(ctx) != TOKEN_IDENTIFIER) |
1284
0ed38e8899a3
Assembler now deals with scalar registers specifying a write mask better.
Ryan C. Gordon <icculus@icculus.org>
parents:
1283
diff
changeset
|
573 |
{ |
542
a56d3bfd2e36
More work on multiple error messages.
Ryan C. Gordon <icculus@icculus.org>
parents:
539
diff
changeset
|
574 |
invalid_writemask = 1; |
1284
0ed38e8899a3
Assembler now deals with scalar registers specifying a write mask better.
Ryan C. Gordon <icculus@icculus.org>
parents:
1283
diff
changeset
|
575 |
} // else if |
465
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
576 |
else |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
577 |
{ |
562
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
578 |
char tokenbytes[5] = { '\0', '\0', '\0', '\0', '\0' }; |
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
579 |
const unsigned int tokenlen = ctx->tokenlen; |
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
580 |
memcpy(tokenbytes, ctx->token, ((tokenlen < 4) ? tokenlen : 4)); |
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
581 |
char *ptr = tokenbytes; |
1288
259d3bba6b66
Clean up assembler writemask parsing a little.
Ryan C. Gordon <icculus@icculus.org>
parents:
1287
diff
changeset
|
582 |
uint8 writemask = 0; |
259d3bba6b66
Clean up assembler writemask parsing a little.
Ryan C. Gordon <icculus@icculus.org>
parents:
1287
diff
changeset
|
583 |
if ((*ptr == 'r') || (*ptr == 'x')) { writemask |= (1<<0); ptr++; } |
259d3bba6b66
Clean up assembler writemask parsing a little.
Ryan C. Gordon <icculus@icculus.org>
parents:
1287
diff
changeset
|
584 |
if ((*ptr == 'g') || (*ptr == 'y')) { writemask |= (1<<1); ptr++; } |
259d3bba6b66
Clean up assembler writemask parsing a little.
Ryan C. Gordon <icculus@icculus.org>
parents:
1287
diff
changeset
|
585 |
if ((*ptr == 'b') || (*ptr == 'z')) { writemask |= (1<<2); ptr++; } |
259d3bba6b66
Clean up assembler writemask parsing a little.
Ryan C. Gordon <icculus@icculus.org>
parents:
1287
diff
changeset
|
586 |
if ((*ptr == 'a') || (*ptr == 'w')) { writemask |= (1<<3); ptr++; } |
465
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
587 |
|
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
588 |
if (*ptr != '\0') |
542
a56d3bfd2e36
More work on multiple error messages.
Ryan C. Gordon <icculus@icculus.org>
parents:
539
diff
changeset
|
589 |
invalid_writemask = 1; |
465
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
590 |
|
1284
0ed38e8899a3
Assembler now deals with scalar registers specifying a write mask better.
Ryan C. Gordon <icculus@icculus.org>
parents:
1283
diff
changeset
|
591 |
// Cg generates code with oDepth.z, and Microsoft's tools accept |
0ed38e8899a3
Assembler now deals with scalar registers specifying a write mask better.
Ryan C. Gordon <icculus@icculus.org>
parents:
1283
diff
changeset
|
592 |
// oFog.x and probably others. For safety's sake, we'll allow |
0ed38e8899a3
Assembler now deals with scalar registers specifying a write mask better.
Ryan C. Gordon <icculus@icculus.org>
parents:
1283
diff
changeset
|
593 |
// any single channel to be specified and will just wipe out the |
0ed38e8899a3
Assembler now deals with scalar registers specifying a write mask better.
Ryan C. Gordon <icculus@icculus.org>
parents:
1283
diff
changeset
|
594 |
// writemask as if it wasn't specified at all. More than one |
0ed38e8899a3
Assembler now deals with scalar registers specifying a write mask better.
Ryan C. Gordon <icculus@icculus.org>
parents:
1283
diff
changeset
|
595 |
// channel will be a fail, though. |
0ed38e8899a3
Assembler now deals with scalar registers specifying a write mask better.
Ryan C. Gordon <icculus@icculus.org>
parents:
1283
diff
changeset
|
596 |
if (!invalid_writemask && scalar_register(ctx->shader_type, info->regtype, info->regnum)) |
0ed38e8899a3
Assembler now deals with scalar registers specifying a write mask better.
Ryan C. Gordon <icculus@icculus.org>
parents:
1283
diff
changeset
|
597 |
{ |
1288
259d3bba6b66
Clean up assembler writemask parsing a little.
Ryan C. Gordon <icculus@icculus.org>
parents:
1287
diff
changeset
|
598 |
const int numchans = vecsize_from_writemask(writemask); |
1284
0ed38e8899a3
Assembler now deals with scalar registers specifying a write mask better.
Ryan C. Gordon <icculus@icculus.org>
parents:
1283
diff
changeset
|
599 |
if (numchans != 1) |
0ed38e8899a3
Assembler now deals with scalar registers specifying a write mask better.
Ryan C. Gordon <icculus@icculus.org>
parents:
1283
diff
changeset
|
600 |
fail(ctx, "Non-scalar writemask specified for scalar register"); |
1288
259d3bba6b66
Clean up assembler writemask parsing a little.
Ryan C. Gordon <icculus@icculus.org>
parents:
1287
diff
changeset
|
601 |
writemask = 0xF; |
1284
0ed38e8899a3
Assembler now deals with scalar registers specifying a write mask better.
Ryan C. Gordon <icculus@icculus.org>
parents:
1283
diff
changeset
|
602 |
} // if |
1288
259d3bba6b66
Clean up assembler writemask parsing a little.
Ryan C. Gordon <icculus@icculus.org>
parents:
1287
diff
changeset
|
603 |
|
259d3bba6b66
Clean up assembler writemask parsing a little.
Ryan C. Gordon <icculus@icculus.org>
parents:
1287
diff
changeset
|
604 |
set_dstarg_writemask(info, writemask); |
465
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
605 |
} // else |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
606 |
|
542
a56d3bfd2e36
More work on multiple error messages.
Ryan C. Gordon <icculus@icculus.org>
parents:
539
diff
changeset
|
607 |
if (invalid_writemask) |
a56d3bfd2e36
More work on multiple error messages.
Ryan C. Gordon <icculus@icculus.org>
parents:
539
diff
changeset
|
608 |
fail(ctx, "Invalid writemask"); |
a56d3bfd2e36
More work on multiple error messages.
Ryan C. Gordon <icculus@icculus.org>
parents:
539
diff
changeset
|
609 |
|
465
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
610 |
info->orig_writemask = info->writemask; |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
611 |
|
798
5dd67cc04cf9
Bunch of small tweaks to make this compile as C++ code without errors/warnings.
Ryan C. Gordon <icculus@icculus.org>
parents:
720
diff
changeset
|
612 |
if (tokenbuf_overflow(ctx)) |
542
a56d3bfd2e36
More work on multiple error messages.
Ryan C. Gordon <icculus@icculus.org>
parents:
539
diff
changeset
|
613 |
return 1; |
465
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
614 |
|
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
615 |
ctx->tokenbuf[ctx->tokenbufpos++] = |
470
7d84d3452125
Bunch More Work on the assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
465
diff
changeset
|
616 |
( ((((uint32) 1)) << 31) | |
465
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
617 |
((((uint32) info->regnum) & 0x7ff) << 0) | |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
618 |
((((uint32) info->relative) & 0x1) << 13) | |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
619 |
((((uint32) info->result_mod) & 0xF) << 20) | |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
620 |
((((uint32) info->result_shift) & 0xF) << 24) | |
500
38ce929323c2
Fixed writemask bits in assembled bytecode.
Ryan C. Gordon <icculus@icculus.org>
parents:
499
diff
changeset
|
621 |
((((uint32) info->writemask) & 0xF) << 16) | |
465
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
622 |
((((uint32) info->regtype) & 0x7) << 28) | |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
623 |
((((uint32) info->regtype) & 0x18) << 8) ); |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
624 |
|
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
625 |
return 1; |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
626 |
} // parse_destination_token |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
627 |
|
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
628 |
|
472
e52d487e6d91
Bunch More Work on the assembler. Feature complete now?
Ryan C. Gordon <icculus@icculus.org>
parents:
470
diff
changeset
|
629 |
static void set_source_mod(Context *ctx, const int negate, |
e52d487e6d91
Bunch More Work on the assembler. Feature complete now?
Ryan C. Gordon <icculus@icculus.org>
parents:
470
diff
changeset
|
630 |
const SourceMod norm, const SourceMod negated, |
e52d487e6d91
Bunch More Work on the assembler. Feature complete now?
Ryan C. Gordon <icculus@icculus.org>
parents:
470
diff
changeset
|
631 |
SourceMod *srcmod) |
470
7d84d3452125
Bunch More Work on the assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
465
diff
changeset
|
632 |
{ |
7d84d3452125
Bunch More Work on the assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
465
diff
changeset
|
633 |
if ( (*srcmod != SRCMOD_NONE) || (negate && (negated == SRCMOD_NONE)) ) |
7d84d3452125
Bunch More Work on the assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
465
diff
changeset
|
634 |
fail(ctx, "Incompatible source modifiers"); |
7d84d3452125
Bunch More Work on the assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
465
diff
changeset
|
635 |
else |
7d84d3452125
Bunch More Work on the assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
465
diff
changeset
|
636 |
*srcmod = ((negate) ? negated : norm); |
7d84d3452125
Bunch More Work on the assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
465
diff
changeset
|
637 |
} // set_source_mod |
7d84d3452125
Bunch More Work on the assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
465
diff
changeset
|
638 |
|
7d84d3452125
Bunch More Work on the assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
465
diff
changeset
|
639 |
|
7d84d3452125
Bunch More Work on the assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
465
diff
changeset
|
640 |
static int parse_source_token_maybe_relative(Context *ctx, const int relok) |
7d84d3452125
Bunch More Work on the assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
465
diff
changeset
|
641 |
{ |
7d84d3452125
Bunch More Work on the assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
465
diff
changeset
|
642 |
int retval = 1; |
7d84d3452125
Bunch More Work on the assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
465
diff
changeset
|
643 |
|
798
5dd67cc04cf9
Bunch of small tweaks to make this compile as C++ code without errors/warnings.
Ryan C. Gordon <icculus@icculus.org>
parents:
720
diff
changeset
|
644 |
if (tokenbuf_overflow(ctx)) |
542
a56d3bfd2e36
More work on multiple error messages.
Ryan C. Gordon <icculus@icculus.org>
parents:
539
diff
changeset
|
645 |
return 0; |
470
7d84d3452125
Bunch More Work on the assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
465
diff
changeset
|
646 |
|
7d84d3452125
Bunch More Work on the assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
465
diff
changeset
|
647 |
// mark this now, so optional relative addressing token is placed second. |
562
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
648 |
uint32 *outtoken = &ctx->tokenbuf[ctx->tokenbufpos++]; |
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
649 |
*outtoken = 0; |
470
7d84d3452125
Bunch More Work on the assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
465
diff
changeset
|
650 |
|
7d84d3452125
Bunch More Work on the assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
465
diff
changeset
|
651 |
SourceMod srcmod = SRCMOD_NONE; |
7d84d3452125
Bunch More Work on the assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
465
diff
changeset
|
652 |
int negate = 0; |
562
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
653 |
Token token = nexttoken(ctx); |
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
654 |
|
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
655 |
if (token == ((Token) '!')) |
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
656 |
srcmod = SRCMOD_NOT; |
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
657 |
else if (token == ((Token) '-')) |
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
658 |
negate = 1; |
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
659 |
else if ( (token == TOKEN_INT_LITERAL) && (check_token(ctx, "1")) ) |
470
7d84d3452125
Bunch More Work on the assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
465
diff
changeset
|
660 |
{ |
562
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
661 |
if (nexttoken(ctx) != ((Token) '-')) |
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
662 |
fail(ctx, "Unexpected token"); |
470
7d84d3452125
Bunch More Work on the assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
465
diff
changeset
|
663 |
else |
7d84d3452125
Bunch More Work on the assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
465
diff
changeset
|
664 |
srcmod = SRCMOD_COMPLEMENT; |
7d84d3452125
Bunch More Work on the assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
465
diff
changeset
|
665 |
} // else |
7d84d3452125
Bunch More Work on the assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
465
diff
changeset
|
666 |
else |
562
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
667 |
{ |
470
7d84d3452125
Bunch More Work on the assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
465
diff
changeset
|
668 |
pushback(ctx); |
562
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
669 |
} // else |
470
7d84d3452125
Bunch More Work on the assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
465
diff
changeset
|
670 |
|
7d84d3452125
Bunch More Work on the assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
465
diff
changeset
|
671 |
RegisterType regtype; |
7d84d3452125
Bunch More Work on the assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
465
diff
changeset
|
672 |
int regnum; |
542
a56d3bfd2e36
More work on multiple error messages.
Ryan C. Gordon <icculus@icculus.org>
parents:
539
diff
changeset
|
673 |
parse_register_name(ctx, ®type, ®num); |
470
7d84d3452125
Bunch More Work on the assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
465
diff
changeset
|
674 |
|
696
c9e03dc63eb8
Fixed SRCMOD_NEGATE usage when assembling.
Ryan C. Gordon <icculus@icculus.org>
parents:
695
diff
changeset
|
675 |
if (ctx->tokenlen == 0) |
562
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
676 |
{ |
696
c9e03dc63eb8
Fixed SRCMOD_NEGATE usage when assembling.
Ryan C. Gordon <icculus@icculus.org>
parents:
695
diff
changeset
|
677 |
if (negate) |
c9e03dc63eb8
Fixed SRCMOD_NEGATE usage when assembling.
Ryan C. Gordon <icculus@icculus.org>
parents:
695
diff
changeset
|
678 |
set_source_mod(ctx, negate, SRCMOD_NONE, SRCMOD_NEGATE, &srcmod); |
c9e03dc63eb8
Fixed SRCMOD_NEGATE usage when assembling.
Ryan C. Gordon <icculus@icculus.org>
parents:
695
diff
changeset
|
679 |
} // if |
c9e03dc63eb8
Fixed SRCMOD_NEGATE usage when assembling.
Ryan C. Gordon <icculus@icculus.org>
parents:
695
diff
changeset
|
680 |
else |
c9e03dc63eb8
Fixed SRCMOD_NEGATE usage when assembling.
Ryan C. Gordon <icculus@icculus.org>
parents:
695
diff
changeset
|
681 |
{ |
c9e03dc63eb8
Fixed SRCMOD_NEGATE usage when assembling.
Ryan C. Gordon <icculus@icculus.org>
parents:
695
diff
changeset
|
682 |
assert(ctx->tokenlen > 0); |
562
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
683 |
if (check_token_segment(ctx, "_bias")) |
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
684 |
set_source_mod(ctx, negate, SRCMOD_BIAS, SRCMOD_BIASNEGATE, &srcmod); |
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
685 |
else if (check_token_segment(ctx, "_bx2")) |
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
686 |
set_source_mod(ctx, negate, SRCMOD_SIGN, SRCMOD_SIGNNEGATE, &srcmod); |
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
687 |
else if (check_token_segment(ctx, "_x2")) |
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
688 |
set_source_mod(ctx, negate, SRCMOD_X2, SRCMOD_X2NEGATE, &srcmod); |
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
689 |
else if (check_token_segment(ctx, "_dz")) |
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
690 |
set_source_mod(ctx, negate, SRCMOD_DZ, SRCMOD_NONE, &srcmod); |
1096
b04fca1befb8
According to MSDN, _db and _da are legit srcmods, identical to _dz and _dw.
Ryan C. Gordon <icculus@icculus.org>
parents:
1057
diff
changeset
|
691 |
else if (check_token_segment(ctx, "_db")) |
b04fca1befb8
According to MSDN, _db and _da are legit srcmods, identical to _dz and _dw.
Ryan C. Gordon <icculus@icculus.org>
parents:
1057
diff
changeset
|
692 |
set_source_mod(ctx, negate, SRCMOD_DZ, SRCMOD_NONE, &srcmod); |
562
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
693 |
else if (check_token_segment(ctx, "_dw")) |
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
694 |
set_source_mod(ctx, negate, SRCMOD_DW, SRCMOD_NONE, &srcmod); |
1096
b04fca1befb8
According to MSDN, _db and _da are legit srcmods, identical to _dz and _dw.
Ryan C. Gordon <icculus@icculus.org>
parents:
1057
diff
changeset
|
695 |
else if (check_token_segment(ctx, "_da")) |
b04fca1befb8
According to MSDN, _db and _da are legit srcmods, identical to _dz and _dw.
Ryan C. Gordon <icculus@icculus.org>
parents:
1057
diff
changeset
|
696 |
set_source_mod(ctx, negate, SRCMOD_DW, SRCMOD_NONE, &srcmod); |
562
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
697 |
else if (check_token_segment(ctx, "_abs")) |
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
698 |
set_source_mod(ctx, negate, SRCMOD_ABS, SRCMOD_ABSNEGATE, &srcmod); |
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
699 |
else |
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
700 |
fail(ctx, "Invalid source modifier"); |
696
c9e03dc63eb8
Fixed SRCMOD_NEGATE usage when assembling.
Ryan C. Gordon <icculus@icculus.org>
parents:
695
diff
changeset
|
701 |
} // else |
470
7d84d3452125
Bunch More Work on the assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
465
diff
changeset
|
702 |
|
7d84d3452125
Bunch More Work on the assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
465
diff
changeset
|
703 |
uint32 relative = 0; |
562
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
704 |
if (nexttoken(ctx) != ((Token) '[')) |
470
7d84d3452125
Bunch More Work on the assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
465
diff
changeset
|
705 |
pushback(ctx); // not relative addressing? |
7d84d3452125
Bunch More Work on the assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
465
diff
changeset
|
706 |
else |
7d84d3452125
Bunch More Work on the assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
465
diff
changeset
|
707 |
{ |
1285
1952246ec6cd
Assembler now accepts "c[5]" as equivalent to "c5".
Ryan C. Gordon <icculus@icculus.org>
parents:
1284
diff
changeset
|
708 |
// quick hack here to make "c[5]" convert to "c5". This will also |
1952246ec6cd
Assembler now accepts "c[5]" as equivalent to "c5".
Ryan C. Gordon <icculus@icculus.org>
parents:
1284
diff
changeset
|
709 |
// work with "c0[5]" but that's possibly illegal...? |
1952246ec6cd
Assembler now accepts "c[5]" as equivalent to "c5".
Ryan C. Gordon <icculus@icculus.org>
parents:
1284
diff
changeset
|
710 |
int skip_relative_parsing = 0; |
1952246ec6cd
Assembler now accepts "c[5]" as equivalent to "c5".
Ryan C. Gordon <icculus@icculus.org>
parents:
1284
diff
changeset
|
711 |
if ((regtype == REG_TYPE_CONST) && (regnum == 0)) |
1952246ec6cd
Assembler now accepts "c[5]" as equivalent to "c5".
Ryan C. Gordon <icculus@icculus.org>
parents:
1284
diff
changeset
|
712 |
{ |
1952246ec6cd
Assembler now accepts "c[5]" as equivalent to "c5".
Ryan C. Gordon <icculus@icculus.org>
parents:
1284
diff
changeset
|
713 |
uint32 ui32 = 0; |
1952246ec6cd
Assembler now accepts "c[5]" as equivalent to "c5".
Ryan C. Gordon <icculus@icculus.org>
parents:
1284
diff
changeset
|
714 |
if (nexttoken(ctx) != TOKEN_INT_LITERAL) |
1952246ec6cd
Assembler now accepts "c[5]" as equivalent to "c5".
Ryan C. Gordon <icculus@icculus.org>
parents:
1284
diff
changeset
|
715 |
pushback(ctx); |
1952246ec6cd
Assembler now accepts "c[5]" as equivalent to "c5".
Ryan C. Gordon <icculus@icculus.org>
parents:
1284
diff
changeset
|
716 |
else if (!ui32fromtoken(ctx, &ui32)) |
1952246ec6cd
Assembler now accepts "c[5]" as equivalent to "c5".
Ryan C. Gordon <icculus@icculus.org>
parents:
1284
diff
changeset
|
717 |
pushback(ctx); |
1952246ec6cd
Assembler now accepts "c[5]" as equivalent to "c5".
Ryan C. Gordon <icculus@icculus.org>
parents:
1284
diff
changeset
|
718 |
else |
1952246ec6cd
Assembler now accepts "c[5]" as equivalent to "c5".
Ryan C. Gordon <icculus@icculus.org>
parents:
1284
diff
changeset
|
719 |
{ |
1952246ec6cd
Assembler now accepts "c[5]" as equivalent to "c5".
Ryan C. Gordon <icculus@icculus.org>
parents:
1284
diff
changeset
|
720 |
regnum = ui32; |
1952246ec6cd
Assembler now accepts "c[5]" as equivalent to "c5".
Ryan C. Gordon <icculus@icculus.org>
parents:
1284
diff
changeset
|
721 |
skip_relative_parsing = 1; |
1952246ec6cd
Assembler now accepts "c[5]" as equivalent to "c5".
Ryan C. Gordon <icculus@icculus.org>
parents:
1284
diff
changeset
|
722 |
} // else |
1952246ec6cd
Assembler now accepts "c[5]" as equivalent to "c5".
Ryan C. Gordon <icculus@icculus.org>
parents:
1284
diff
changeset
|
723 |
} // if |
542
a56d3bfd2e36
More work on multiple error messages.
Ryan C. Gordon <icculus@icculus.org>
parents:
539
diff
changeset
|
724 |
|
1285
1952246ec6cd
Assembler now accepts "c[5]" as equivalent to "c5".
Ryan C. Gordon <icculus@icculus.org>
parents:
1284
diff
changeset
|
725 |
if (!skip_relative_parsing) |
482
3f740f25bd7e
Fixed relative addressing parsing.
Ryan C. Gordon <icculus@icculus.org>
parents:
481
diff
changeset
|
726 |
{ |
1285
1952246ec6cd
Assembler now accepts "c[5]" as equivalent to "c5".
Ryan C. Gordon <icculus@icculus.org>
parents:
1284
diff
changeset
|
727 |
if (!relok) |
1952246ec6cd
Assembler now accepts "c[5]" as equivalent to "c5".
Ryan C. Gordon <icculus@icculus.org>
parents:
1284
diff
changeset
|
728 |
fail(ctx, "Relative addressing not permitted here."); |
1952246ec6cd
Assembler now accepts "c[5]" as equivalent to "c5".
Ryan C. Gordon <icculus@icculus.org>
parents:
1284
diff
changeset
|
729 |
else |
1952246ec6cd
Assembler now accepts "c[5]" as equivalent to "c5".
Ryan C. Gordon <icculus@icculus.org>
parents:
1284
diff
changeset
|
730 |
retval++; |
1952246ec6cd
Assembler now accepts "c[5]" as equivalent to "c5".
Ryan C. Gordon <icculus@icculus.org>
parents:
1284
diff
changeset
|
731 |
|
1952246ec6cd
Assembler now accepts "c[5]" as equivalent to "c5".
Ryan C. Gordon <icculus@icculus.org>
parents:
1284
diff
changeset
|
732 |
parse_source_token_maybe_relative(ctx, 0); |
1952246ec6cd
Assembler now accepts "c[5]" as equivalent to "c5".
Ryan C. Gordon <icculus@icculus.org>
parents:
1284
diff
changeset
|
733 |
relative = 1; |
562
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
734 |
|
1285
1952246ec6cd
Assembler now accepts "c[5]" as equivalent to "c5".
Ryan C. Gordon <icculus@icculus.org>
parents:
1284
diff
changeset
|
735 |
if (nexttoken(ctx) != ((Token) '+')) |
1952246ec6cd
Assembler now accepts "c[5]" as equivalent to "c5".
Ryan C. Gordon <icculus@icculus.org>
parents:
1284
diff
changeset
|
736 |
pushback(ctx); |
1952246ec6cd
Assembler now accepts "c[5]" as equivalent to "c5".
Ryan C. Gordon <icculus@icculus.org>
parents:
1284
diff
changeset
|
737 |
else |
562
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
738 |
{ |
1285
1952246ec6cd
Assembler now accepts "c[5]" as equivalent to "c5".
Ryan C. Gordon <icculus@icculus.org>
parents:
1284
diff
changeset
|
739 |
// !!! FIXME: maybe c3[a0.x + 5] is legal and becomes c[a0.x + 8] ? |
1952246ec6cd
Assembler now accepts "c[5]" as equivalent to "c5".
Ryan C. Gordon <icculus@icculus.org>
parents:
1284
diff
changeset
|
740 |
if (regnum != 0) |
1952246ec6cd
Assembler now accepts "c[5]" as equivalent to "c5".
Ryan C. Gordon <icculus@icculus.org>
parents:
1284
diff
changeset
|
741 |
fail(ctx, "Relative addressing with explicit register number."); |
1952246ec6cd
Assembler now accepts "c[5]" as equivalent to "c5".
Ryan C. Gordon <icculus@icculus.org>
parents:
1284
diff
changeset
|
742 |
|
1952246ec6cd
Assembler now accepts "c[5]" as equivalent to "c5".
Ryan C. Gordon <icculus@icculus.org>
parents:
1284
diff
changeset
|
743 |
uint32 ui32 = 0; |
1952246ec6cd
Assembler now accepts "c[5]" as equivalent to "c5".
Ryan C. Gordon <icculus@icculus.org>
parents:
1284
diff
changeset
|
744 |
if ( (nexttoken(ctx) != TOKEN_INT_LITERAL) || |
1952246ec6cd
Assembler now accepts "c[5]" as equivalent to "c5".
Ryan C. Gordon <icculus@icculus.org>
parents:
1284
diff
changeset
|
745 |
(!ui32fromtoken(ctx, &ui32)) || |
1952246ec6cd
Assembler now accepts "c[5]" as equivalent to "c5".
Ryan C. Gordon <icculus@icculus.org>
parents:
1284
diff
changeset
|
746 |
(ctx->tokenlen != 0) ) |
1952246ec6cd
Assembler now accepts "c[5]" as equivalent to "c5".
Ryan C. Gordon <icculus@icculus.org>
parents:
1284
diff
changeset
|
747 |
{ |
1952246ec6cd
Assembler now accepts "c[5]" as equivalent to "c5".
Ryan C. Gordon <icculus@icculus.org>
parents:
1284
diff
changeset
|
748 |
fail(ctx, "Invalid relative addressing offset"); |
1952246ec6cd
Assembler now accepts "c[5]" as equivalent to "c5".
Ryan C. Gordon <icculus@icculus.org>
parents:
1284
diff
changeset
|
749 |
} // if |
1952246ec6cd
Assembler now accepts "c[5]" as equivalent to "c5".
Ryan C. Gordon <icculus@icculus.org>
parents:
1284
diff
changeset
|
750 |
regnum += (int) ui32; |
1952246ec6cd
Assembler now accepts "c[5]" as equivalent to "c5".
Ryan C. Gordon <icculus@icculus.org>
parents:
1284
diff
changeset
|
751 |
} // else |
1952246ec6cd
Assembler now accepts "c[5]" as equivalent to "c5".
Ryan C. Gordon <icculus@icculus.org>
parents:
1284
diff
changeset
|
752 |
} // if |
482
3f740f25bd7e
Fixed relative addressing parsing.
Ryan C. Gordon <icculus@icculus.org>
parents:
481
diff
changeset
|
753 |
|
562
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
754 |
if (nexttoken(ctx) != ((Token) ']')) |
542
a56d3bfd2e36
More work on multiple error messages.
Ryan C. Gordon <icculus@icculus.org>
parents:
539
diff
changeset
|
755 |
fail(ctx, "Expected ']'"); |
470
7d84d3452125
Bunch More Work on the assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
465
diff
changeset
|
756 |
} // else |
7d84d3452125
Bunch More Work on the assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
465
diff
changeset
|
757 |
|
542
a56d3bfd2e36
More work on multiple error messages.
Ryan C. Gordon <icculus@icculus.org>
parents:
539
diff
changeset
|
758 |
int invalid_swizzle = 0; |
470
7d84d3452125
Bunch More Work on the assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
465
diff
changeset
|
759 |
uint32 swizzle = 0; |
562
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
760 |
if (nexttoken(ctx) != ((Token) '.')) |
470
7d84d3452125
Bunch More Work on the assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
465
diff
changeset
|
761 |
{ |
7d84d3452125
Bunch More Work on the assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
465
diff
changeset
|
762 |
swizzle = 0xE4; // 0xE4 == 11100100 ... 0 1 2 3. No swizzle. |
7d84d3452125
Bunch More Work on the assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
465
diff
changeset
|
763 |
pushback(ctx); // no explicit writemask; do full mask. |
7d84d3452125
Bunch More Work on the assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
465
diff
changeset
|
764 |
} // if |
491
bcc3c215807a
Fixed wrong data from scalar_register().
Ryan C. Gordon <icculus@icculus.org>
parents:
490
diff
changeset
|
765 |
else if (scalar_register(ctx->shader_type, regtype, regnum)) |
542
a56d3bfd2e36
More work on multiple error messages.
Ryan C. Gordon <icculus@icculus.org>
parents:
539
diff
changeset
|
766 |
fail(ctx, "Swizzle specified for scalar register"); |
562
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
767 |
else if (nexttoken(ctx) != TOKEN_IDENTIFIER) |
542
a56d3bfd2e36
More work on multiple error messages.
Ryan C. Gordon <icculus@icculus.org>
parents:
539
diff
changeset
|
768 |
invalid_swizzle = 1; |
470
7d84d3452125
Bunch More Work on the assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
465
diff
changeset
|
769 |
else |
7d84d3452125
Bunch More Work on the assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
465
diff
changeset
|
770 |
{ |
562
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
771 |
char tokenbytes[5] = { '\0', '\0', '\0', '\0', '\0' }; |
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
772 |
const unsigned int tokenlen = ctx->tokenlen; |
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
773 |
memcpy(tokenbytes, ctx->token, ((tokenlen < 4) ? tokenlen : 4)); |
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
774 |
|
470
7d84d3452125
Bunch More Work on the assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
465
diff
changeset
|
775 |
// deal with shortened form (.x = .xxxx, etc). |
562
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
776 |
if (tokenlen == 1) |
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
777 |
tokenbytes[1] = tokenbytes[2] = tokenbytes[3] = tokenbytes[0]; |
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
778 |
else if (tokenlen == 2) |
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
779 |
tokenbytes[2] = tokenbytes[3] = tokenbytes[1]; |
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
780 |
else if (tokenlen == 3) |
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
781 |
tokenbytes[3] = tokenbytes[2]; |
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
782 |
else if (tokenlen != 4) |
542
a56d3bfd2e36
More work on multiple error messages.
Ryan C. Gordon <icculus@icculus.org>
parents:
539
diff
changeset
|
783 |
invalid_swizzle = 1; |
562
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
784 |
tokenbytes[4] = '\0'; |
470
7d84d3452125
Bunch More Work on the assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
465
diff
changeset
|
785 |
|
542
a56d3bfd2e36
More work on multiple error messages.
Ryan C. Gordon <icculus@icculus.org>
parents:
539
diff
changeset
|
786 |
uint32 val = 0; |
472
e52d487e6d91
Bunch More Work on the assembler. Feature complete now?
Ryan C. Gordon <icculus@icculus.org>
parents:
470
diff
changeset
|
787 |
int i; |
470
7d84d3452125
Bunch More Work on the assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
465
diff
changeset
|
788 |
for (i = 0; i < 4; i++) |
7d84d3452125
Bunch More Work on the assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
465
diff
changeset
|
789 |
{ |
562
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
790 |
const int component = (int) tokenbytes[i]; |
470
7d84d3452125
Bunch More Work on the assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
465
diff
changeset
|
791 |
switch (component) |
7d84d3452125
Bunch More Work on the assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
465
diff
changeset
|
792 |
{ |
718
08e758f9aae3
Apparently you can mix "xyzw" and "rgba" swizzles, even in vertex shaders.
Ryan C. Gordon <icculus@icculus.org>
parents:
716
diff
changeset
|
793 |
case 'r': case 'x': val = 0; break; |
08e758f9aae3
Apparently you can mix "xyzw" and "rgba" swizzles, even in vertex shaders.
Ryan C. Gordon <icculus@icculus.org>
parents:
716
diff
changeset
|
794 |
case 'g': case 'y': val = 1; break; |
08e758f9aae3
Apparently you can mix "xyzw" and "rgba" swizzles, even in vertex shaders.
Ryan C. Gordon <icculus@icculus.org>
parents:
716
diff
changeset
|
795 |
case 'b': case 'z': val = 2; break; |
08e758f9aae3
Apparently you can mix "xyzw" and "rgba" swizzles, even in vertex shaders.
Ryan C. Gordon <icculus@icculus.org>
parents:
716
diff
changeset
|
796 |
case 'a': case 'w': val = 3; break; |
542
a56d3bfd2e36
More work on multiple error messages.
Ryan C. Gordon <icculus@icculus.org>
parents:
539
diff
changeset
|
797 |
default: invalid_swizzle = 1; break; |
470
7d84d3452125
Bunch More Work on the assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
465
diff
changeset
|
798 |
} // switch |
7d84d3452125
Bunch More Work on the assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
465
diff
changeset
|
799 |
swizzle |= (val << (i * 2)); |
7d84d3452125
Bunch More Work on the assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
465
diff
changeset
|
800 |
} // for |
7d84d3452125
Bunch More Work on the assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
465
diff
changeset
|
801 |
} // else |
7d84d3452125
Bunch More Work on the assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
465
diff
changeset
|
802 |
|
542
a56d3bfd2e36
More work on multiple error messages.
Ryan C. Gordon <icculus@icculus.org>
parents:
539
diff
changeset
|
803 |
if (invalid_swizzle) |
a56d3bfd2e36
More work on multiple error messages.
Ryan C. Gordon <icculus@icculus.org>
parents:
539
diff
changeset
|
804 |
fail(ctx, "Invalid swizzle"); |
a56d3bfd2e36
More work on multiple error messages.
Ryan C. Gordon <icculus@icculus.org>
parents:
539
diff
changeset
|
805 |
|
562
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
806 |
*outtoken = ( ((((uint32) 1)) << 31) | |
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
807 |
((((uint32) regnum) & 0x7ff) << 0) | |
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
808 |
((((uint32) relative) & 0x1) << 13) | |
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
809 |
((((uint32) swizzle) & 0xFF) << 16) | |
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
810 |
((((uint32) srcmod) & 0xF) << 24) | |
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
811 |
((((uint32) regtype) & 0x7) << 28) | |
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
812 |
((((uint32) regtype) & 0x18) << 8) ); |
470
7d84d3452125
Bunch More Work on the assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
465
diff
changeset
|
813 |
|
7d84d3452125
Bunch More Work on the assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
465
diff
changeset
|
814 |
return retval; |
7d84d3452125
Bunch More Work on the assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
465
diff
changeset
|
815 |
} // parse_source_token_maybe_relative |
7d84d3452125
Bunch More Work on the assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
465
diff
changeset
|
816 |
|
7d84d3452125
Bunch More Work on the assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
465
diff
changeset
|
817 |
|
7d84d3452125
Bunch More Work on the assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
465
diff
changeset
|
818 |
static inline int parse_source_token(Context *ctx) |
7d84d3452125
Bunch More Work on the assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
465
diff
changeset
|
819 |
{ |
7d84d3452125
Bunch More Work on the assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
465
diff
changeset
|
820 |
return parse_source_token_maybe_relative(ctx, 1); |
7d84d3452125
Bunch More Work on the assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
465
diff
changeset
|
821 |
} // parse_source_token |
7d84d3452125
Bunch More Work on the assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
465
diff
changeset
|
822 |
|
7d84d3452125
Bunch More Work on the assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
465
diff
changeset
|
823 |
|
465
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
824 |
static int parse_args_NULL(Context *ctx) |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
825 |
{ |
542
a56d3bfd2e36
More work on multiple error messages.
Ryan C. Gordon <icculus@icculus.org>
parents:
539
diff
changeset
|
826 |
return 1; |
465
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
827 |
} // parse_args_NULL |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
828 |
|
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
829 |
|
562
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
830 |
static int parse_num(Context *ctx, const int floatok, uint32 *value) |
470
7d84d3452125
Bunch More Work on the assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
465
diff
changeset
|
831 |
{ |
7d84d3452125
Bunch More Work on the assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
465
diff
changeset
|
832 |
union { float f; int32 si32; uint32 ui32; } cvt; |
572 | 833 |
int negative = 0; |
834 |
Token token = nexttoken(ctx); |
|
470
7d84d3452125
Bunch More Work on the assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
465
diff
changeset
|
835 |
|
572 | 836 |
if (token == ((Token) '-')) |
837 |
{ |
|
838 |
negative = 1; |
|
839 |
token = nexttoken(ctx); |
|
840 |
} // if |
|
841 |
||
562
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
842 |
if (token == TOKEN_INT_LITERAL) |
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
843 |
{ |
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
844 |
int d = 0; |
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
845 |
sscanf(ctx->token, "%d", &d); |
572 | 846 |
if (floatok) |
847 |
cvt.f = (float) ((negative) ? -d : d); |
|
848 |
else |
|
849 |
cvt.si32 = (int32) ((negative) ? -d : d); |
|
562
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
850 |
} // if |
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
851 |
else if (token == TOKEN_FLOAT_LITERAL) |
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
852 |
{ |
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
853 |
if (!floatok) |
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
854 |
{ |
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
855 |
fail(ctx, "Expected whole number"); |
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
856 |
*value = 0; |
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
857 |
return 0; |
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
858 |
} // if |
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
859 |
sscanf(ctx->token, "%f", &cvt.f); |
572 | 860 |
if (negative) |
861 |
cvt.f = -cvt.f; |
|
562
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
862 |
} // if |
492
29bfa3448549
Handle exponents in number parsing.
Ryan C. Gordon <icculus@icculus.org>
parents:
491
diff
changeset
|
863 |
else |
29bfa3448549
Handle exponents in number parsing.
Ryan C. Gordon <icculus@icculus.org>
parents:
491
diff
changeset
|
864 |
{ |
562
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
865 |
fail(ctx, "Expected number"); |
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
866 |
*value = 0; |
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
867 |
return 0; |
492
29bfa3448549
Handle exponents in number parsing.
Ryan C. Gordon <icculus@icculus.org>
parents:
491
diff
changeset
|
868 |
} // else |
29bfa3448549
Handle exponents in number parsing.
Ryan C. Gordon <icculus@icculus.org>
parents:
491
diff
changeset
|
869 |
|
562
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
870 |
*value = cvt.ui32; |
542
a56d3bfd2e36
More work on multiple error messages.
Ryan C. Gordon <icculus@icculus.org>
parents:
539
diff
changeset
|
871 |
return 1; |
470
7d84d3452125
Bunch More Work on the assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
465
diff
changeset
|
872 |
} // parse_num |
7d84d3452125
Bunch More Work on the assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
465
diff
changeset
|
873 |
|
7d84d3452125
Bunch More Work on the assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
465
diff
changeset
|
874 |
|
7d84d3452125
Bunch More Work on the assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
465
diff
changeset
|
875 |
static int parse_args_DEFx(Context *ctx, const int isflt) |
465
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
876 |
{ |
542
a56d3bfd2e36
More work on multiple error messages.
Ryan C. Gordon <icculus@icculus.org>
parents:
539
diff
changeset
|
877 |
parse_destination_token(ctx); |
a56d3bfd2e36
More work on multiple error messages.
Ryan C. Gordon <icculus@icculus.org>
parents:
539
diff
changeset
|
878 |
require_comma(ctx); |
a56d3bfd2e36
More work on multiple error messages.
Ryan C. Gordon <icculus@icculus.org>
parents:
539
diff
changeset
|
879 |
parse_num(ctx, isflt, &ctx->tokenbuf[ctx->tokenbufpos++]); |
a56d3bfd2e36
More work on multiple error messages.
Ryan C. Gordon <icculus@icculus.org>
parents:
539
diff
changeset
|
880 |
require_comma(ctx); |
a56d3bfd2e36
More work on multiple error messages.
Ryan C. Gordon <icculus@icculus.org>
parents:
539
diff
changeset
|
881 |
parse_num(ctx, isflt, &ctx->tokenbuf[ctx->tokenbufpos++]); |
a56d3bfd2e36
More work on multiple error messages.
Ryan C. Gordon <icculus@icculus.org>
parents:
539
diff
changeset
|
882 |
require_comma(ctx); |
a56d3bfd2e36
More work on multiple error messages.
Ryan C. Gordon <icculus@icculus.org>
parents:
539
diff
changeset
|
883 |
parse_num(ctx, isflt, &ctx->tokenbuf[ctx->tokenbufpos++]); |
a56d3bfd2e36
More work on multiple error messages.
Ryan C. Gordon <icculus@icculus.org>
parents:
539
diff
changeset
|
884 |
require_comma(ctx); |
a56d3bfd2e36
More work on multiple error messages.
Ryan C. Gordon <icculus@icculus.org>
parents:
539
diff
changeset
|
885 |
parse_num(ctx, isflt, &ctx->tokenbuf[ctx->tokenbufpos++]); |
470
7d84d3452125
Bunch More Work on the assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
465
diff
changeset
|
886 |
return 6; |
7d84d3452125
Bunch More Work on the assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
465
diff
changeset
|
887 |
} // parse_args_DEFx |
465
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
888 |
|
470
7d84d3452125
Bunch More Work on the assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
465
diff
changeset
|
889 |
|
7d84d3452125
Bunch More Work on the assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
465
diff
changeset
|
890 |
static int parse_args_DEF(Context *ctx) |
7d84d3452125
Bunch More Work on the assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
465
diff
changeset
|
891 |
{ |
7d84d3452125
Bunch More Work on the assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
465
diff
changeset
|
892 |
return parse_args_DEFx(ctx, 1); |
7d84d3452125
Bunch More Work on the assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
465
diff
changeset
|
893 |
} // parse_args_DEF |
465
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
894 |
|
470
7d84d3452125
Bunch More Work on the assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
465
diff
changeset
|
895 |
|
7d84d3452125
Bunch More Work on the assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
465
diff
changeset
|
896 |
static int parse_args_DEFI(Context *ctx) |
7d84d3452125
Bunch More Work on the assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
465
diff
changeset
|
897 |
{ |
7d84d3452125
Bunch More Work on the assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
465
diff
changeset
|
898 |
return parse_args_DEFx(ctx, 0); |
7d84d3452125
Bunch More Work on the assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
465
diff
changeset
|
899 |
} // parse_args_DEFI |
465
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
900 |
|
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
901 |
|
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
902 |
static int parse_args_DEFB(Context *ctx) |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
903 |
{ |
542
a56d3bfd2e36
More work on multiple error messages.
Ryan C. Gordon <icculus@icculus.org>
parents:
539
diff
changeset
|
904 |
parse_destination_token(ctx); |
a56d3bfd2e36
More work on multiple error messages.
Ryan C. Gordon <icculus@icculus.org>
parents:
539
diff
changeset
|
905 |
require_comma(ctx); |
562
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
906 |
|
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
907 |
// !!! FIXME: do a TOKEN_TRUE and TOKEN_FALSE? Is this case-sensitive? |
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
908 |
const Token token = nexttoken(ctx); |
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
909 |
|
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
910 |
int bad = 0; |
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
911 |
if (token != TOKEN_IDENTIFIER) |
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
912 |
bad = 1; |
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
913 |
else if (check_token_segment(ctx, "true")) |
470
7d84d3452125
Bunch More Work on the assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
465
diff
changeset
|
914 |
ctx->tokenbuf[ctx->tokenbufpos++] = 1; |
562
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
915 |
else if (check_token_segment(ctx, "false")) |
470
7d84d3452125
Bunch More Work on the assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
465
diff
changeset
|
916 |
ctx->tokenbuf[ctx->tokenbufpos++] = 0; |
7d84d3452125
Bunch More Work on the assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
465
diff
changeset
|
917 |
else |
562
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
918 |
bad = 1; |
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
919 |
|
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
920 |
if (ctx->tokenlen != 0) |
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
921 |
bad = 1; |
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
922 |
|
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
923 |
if (bad) |
542
a56d3bfd2e36
More work on multiple error messages.
Ryan C. Gordon <icculus@icculus.org>
parents:
539
diff
changeset
|
924 |
fail(ctx, "Expected 'true' or 'false'"); |
562
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
925 |
|
465
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
926 |
return 3; |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
927 |
} // parse_args_DEFB |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
928 |
|
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
929 |
|
504 | 930 |
static int parse_dcl_usage(Context *ctx, uint32 *val, int *issampler) |
465
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
931 |
{ |
798
5dd67cc04cf9
Bunch of small tweaks to make this compile as C++ code without errors/warnings.
Ryan C. Gordon <icculus@icculus.org>
parents:
720
diff
changeset
|
932 |
size_t i; |
562
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
933 |
static const char *samplerusagestrs[] = { "_2d", "_cube", "_volume" }; |
465
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
934 |
static const char *usagestrs[] = { |
562
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
935 |
"_position", "_blendweight", "_blendindices", "_normal", "_psize", |
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
936 |
"_texcoord", "_tangent", "_binormal", "_tessfactor", "_positiont", |
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
937 |
"_color", "_fog", "_depth", "_sample" |
465
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
938 |
}; |
504 | 939 |
|
470
7d84d3452125
Bunch More Work on the assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
465
diff
changeset
|
940 |
for (i = 0; i < STATICARRAYLEN(usagestrs); i++) |
7d84d3452125
Bunch More Work on the assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
465
diff
changeset
|
941 |
{ |
562
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
942 |
if (check_token_segment(ctx, usagestrs[i])) |
470
7d84d3452125
Bunch More Work on the assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
465
diff
changeset
|
943 |
{ |
7d84d3452125
Bunch More Work on the assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
465
diff
changeset
|
944 |
*issampler = 0; |
7d84d3452125
Bunch More Work on the assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
465
diff
changeset
|
945 |
*val = i; |
542
a56d3bfd2e36
More work on multiple error messages.
Ryan C. Gordon <icculus@icculus.org>
parents:
539
diff
changeset
|
946 |
return 1; |
470
7d84d3452125
Bunch More Work on the assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
465
diff
changeset
|
947 |
} // if |
7d84d3452125
Bunch More Work on the assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
465
diff
changeset
|
948 |
} // for |
7d84d3452125
Bunch More Work on the assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
465
diff
changeset
|
949 |
|
7d84d3452125
Bunch More Work on the assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
465
diff
changeset
|
950 |
for (i = 0; i < STATICARRAYLEN(samplerusagestrs); i++) |
465
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
951 |
{ |
562
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
952 |
if (check_token_segment(ctx, samplerusagestrs[i])) |
470
7d84d3452125
Bunch More Work on the assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
465
diff
changeset
|
953 |
{ |
7d84d3452125
Bunch More Work on the assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
465
diff
changeset
|
954 |
*issampler = 1; |
7d84d3452125
Bunch More Work on the assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
465
diff
changeset
|
955 |
*val = i + 2; |
542
a56d3bfd2e36
More work on multiple error messages.
Ryan C. Gordon <icculus@icculus.org>
parents:
539
diff
changeset
|
956 |
return 1; |
470
7d84d3452125
Bunch More Work on the assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
465
diff
changeset
|
957 |
} // if |
7d84d3452125
Bunch More Work on the assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
465
diff
changeset
|
958 |
} // for |
7d84d3452125
Bunch More Work on the assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
465
diff
changeset
|
959 |
|
514
ba913834b491
The parse_args_DCL fiasco continues.
Ryan C. Gordon <icculus@icculus.org>
parents:
513
diff
changeset
|
960 |
*issampler = 0; |
ba913834b491
The parse_args_DCL fiasco continues.
Ryan C. Gordon <icculus@icculus.org>
parents:
513
diff
changeset
|
961 |
*val = 0; |
542
a56d3bfd2e36
More work on multiple error messages.
Ryan C. Gordon <icculus@icculus.org>
parents:
539
diff
changeset
|
962 |
return 0; |
470
7d84d3452125
Bunch More Work on the assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
465
diff
changeset
|
963 |
} // parse_dcl_usage |
7d84d3452125
Bunch More Work on the assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
465
diff
changeset
|
964 |
|
7d84d3452125
Bunch More Work on the assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
465
diff
changeset
|
965 |
|
7d84d3452125
Bunch More Work on the assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
465
diff
changeset
|
966 |
static int parse_args_DCL(Context *ctx) |
7d84d3452125
Bunch More Work on the assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
465
diff
changeset
|
967 |
{ |
7d84d3452125
Bunch More Work on the assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
465
diff
changeset
|
968 |
int issampler = 0; |
7d84d3452125
Bunch More Work on the assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
465
diff
changeset
|
969 |
uint32 usage = 0; |
7d84d3452125
Bunch More Work on the assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
465
diff
changeset
|
970 |
uint32 index = 0; |
7d84d3452125
Bunch More Work on the assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
465
diff
changeset
|
971 |
|
7d84d3452125
Bunch More Work on the assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
465
diff
changeset
|
972 |
ctx->tokenbufpos++; // save a spot for the usage/index token. |
542
a56d3bfd2e36
More work on multiple error messages.
Ryan C. Gordon <icculus@icculus.org>
parents:
539
diff
changeset
|
973 |
ctx->tokenbuf[0] = 0; |
465
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
974 |
|
562
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
975 |
// parse_instruction_token() sets ctx->token to the end of the instruction |
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
976 |
// so we can see if there are destination modifiers on the instruction |
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
977 |
// itself... |
465
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
978 |
|
562
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
979 |
if (parse_dcl_usage(ctx, &usage, &issampler)) |
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
980 |
{ |
575
70bb1ba99a07
Fixed DCL usage index parsing.
Ryan C. Gordon <icculus@icculus.org>
parents:
574
diff
changeset
|
981 |
if ((ctx->tokenlen > 0) && (*ctx->token != '_')) |
70bb1ba99a07
Fixed DCL usage index parsing.
Ryan C. Gordon <icculus@icculus.org>
parents:
574
diff
changeset
|
982 |
{ |
70bb1ba99a07
Fixed DCL usage index parsing.
Ryan C. Gordon <icculus@icculus.org>
parents:
574
diff
changeset
|
983 |
if (!ui32fromtoken(ctx, &index)) |
70bb1ba99a07
Fixed DCL usage index parsing.
Ryan C. Gordon <icculus@icculus.org>
parents:
574
diff
changeset
|
984 |
fail(ctx, "Expected usage index"); |
70bb1ba99a07
Fixed DCL usage index parsing.
Ryan C. Gordon <icculus@icculus.org>
parents:
574
diff
changeset
|
985 |
} // if |
562
c9a2bc5129c9
First shot at reworking assembly parser to use preprocessor/lexer.
Ryan C. Gordon <icculus@icculus.org>
parents:
558
diff
changeset
|
986 |
} // if |
465
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
987 |
|
542
a56d3bfd2e36
More work on multiple error messages.
Ryan C. Gordon <icculus@icculus.org>
parents:
539
diff
changeset
|
988 |
parse_destination_token(ctx); |
465
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
989 |
|
470
7d84d3452125
Bunch More Work on the assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
465
diff
changeset
|
990 |
const int samplerreg = (ctx->dest_arg.regtype == REG_TYPE_SAMPLER); |
7d84d3452125
Bunch More Work on the assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
465
diff
changeset
|
991 |
if (issampler != samplerreg) |
542
a56d3bfd2e36
More work on multiple error messages.
Ryan C. Gordon <icculus@icculus.org>
parents:
539
diff
changeset
|
992 |
fail(ctx, "Invalid usage"); |
470
7d84d3452125
Bunch More Work on the assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
465
diff
changeset
|
993 |
else if (samplerreg) |
7d84d3452125
Bunch More Work on the assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
465
diff
changeset
|
994 |
ctx->tokenbuf[0] = (usage << 27) | 0x80000000; |
1132
b784577caefa
Assembler: Pixel shader DCL opcodes only specify usage for samplers.
Ryan C. Gordon <icculus@icculus.org>
parents:
1130
diff
changeset
|
995 |
else if (shader_is_pixel(ctx)) // all other pixel shader types are zero'd. |
b784577caefa
Assembler: Pixel shader DCL opcodes only specify usage for samplers.
Ryan C. Gordon <icculus@icculus.org>
parents:
1130
diff
changeset
|
996 |
ctx->tokenbuf[0] = 0x80000000; |
465
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
997 |
else |
470
7d84d3452125
Bunch More Work on the assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
465
diff
changeset
|
998 |
ctx->tokenbuf[0] = usage | (index << 16) | 0x80000000; |
465
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
999 |
|
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
1000 |
return 3; |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
1001 |
} // parse_args_DCL |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
1002 |
|
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
1003 |
|
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
1004 |
static int parse_args_D(Context *ctx) |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
1005 |
{ |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
1006 |
int retval = 1; |
515
58c1a7d98176
First steps of reworking tokenizer.
Ryan C. Gordon <icculus@icculus.org>
parents:
514
diff
changeset
|
1007 |
retval += parse_destination_token(ctx); |
542
a56d3bfd2e36
More work on multiple error messages.
Ryan C. Gordon <icculus@icculus.org>
parents:
539
diff
changeset
|
1008 |
return retval; |
465
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
1009 |
} // parse_args_D |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
1010 |
|
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
1011 |
|
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
1012 |
static int parse_args_S(Context *ctx) |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
1013 |
{ |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
1014 |
int retval = 1; |
470
7d84d3452125
Bunch More Work on the assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
465
diff
changeset
|
1015 |
retval += parse_source_token(ctx); |
542
a56d3bfd2e36
More work on multiple error messages.
Ryan C. Gordon <icculus@icculus.org>
parents:
539
diff
changeset
|
1016 |
return retval; |
465
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
1017 |
} // parse_args_S |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
1018 |
|
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
1019 |
|
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
1020 |
static int parse_args_SS(Context *ctx) |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
1021 |
{ |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
1022 |
int retval = 1; |
470
7d84d3452125
Bunch More Work on the assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
465
diff
changeset
|
1023 |
retval += parse_source_token(ctx); |
542
a56d3bfd2e36
More work on multiple error messages.
Ryan C. Gordon <icculus@icculus.org>
parents:
539
diff
changeset
|
1024 |
require_comma(ctx); |
470
7d84d3452125
Bunch More Work on the assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
465
diff
changeset
|
1025 |
retval += parse_source_token(ctx); |
542
a56d3bfd2e36
More work on multiple error messages.
Ryan C. Gordon <icculus@icculus.org>
parents:
539
diff
changeset
|
1026 |
return retval; |
465
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
1027 |
} // parse_args_SS |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
1028 |
|
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
1029 |
|
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
1030 |
static int parse_args_DS(Context *ctx) |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
1031 |
{ |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
1032 |
int retval = 1; |
515
58c1a7d98176
First steps of reworking tokenizer.
Ryan C. Gordon <icculus@icculus.org>
parents:
514
diff
changeset
|
1033 |
retval += parse_destination_token(ctx); |
542
a56d3bfd2e36
More work on multiple error messages.
Ryan C. Gordon <icculus@icculus.org>
parents:
539
diff
changeset
|
1034 |
require_comma(ctx); |
470
7d84d3452125
Bunch More Work on the assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
465
diff
changeset
|
1035 |
retval += parse_source_token(ctx); |
542
a56d3bfd2e36
More work on multiple error messages.
Ryan C. Gordon <icculus@icculus.org>
parents:
539
diff
changeset
|
1036 |
return retval; |
465
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
1037 |
} // parse_args_DS |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
1038 |
|
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
1039 |
|
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
1040 |
static int parse_args_DSS(Context *ctx) |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
1041 |
{ |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
1042 |
int retval = 1; |
515
58c1a7d98176
First steps of reworking tokenizer.
Ryan C. Gordon <icculus@icculus.org>
parents:
514
diff
changeset
|
1043 |
retval += parse_destination_token(ctx); |
542
a56d3bfd2e36
More work on multiple error messages.
Ryan C. Gordon <icculus@icculus.org>
parents:
539
diff
changeset
|
1044 |
require_comma(ctx); |
470
7d84d3452125
Bunch More Work on the assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
465
diff
changeset
|
1045 |
retval += parse_source_token(ctx); |
542
a56d3bfd2e36
More work on multiple error messages.
Ryan C. Gordon <icculus@icculus.org>
parents:
539
diff
changeset
|
1046 |
require_comma(ctx); |
470
7d84d3452125
Bunch More Work on the assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
465
diff
changeset
|
1047 |
retval += parse_source_token(ctx); |
542
a56d3bfd2e36
More work on multiple error messages.
Ryan C. Gordon <icculus@icculus.org>
parents:
539
diff
changeset
|
1048 |
return retval; |
465
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
1049 |
} // parse_args_DSS |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
1050 |
|
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
1051 |
|
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
1052 |
static int parse_args_DSSS(Context *ctx) |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
1053 |
{ |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
1054 |
int retval = 1; |
515
58c1a7d98176
First steps of reworking tokenizer.
Ryan C. Gordon <icculus@icculus.org>
parents:
514
diff
changeset
|
1055 |
retval += parse_destination_token(ctx); |
542
a56d3bfd2e36
More work on multiple error messages.
Ryan C. Gordon <icculus@icculus.org>
parents:
539
diff
changeset
|
1056 |
require_comma(ctx); |
470
7d84d3452125
Bunch More Work on the assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
465
diff
changeset
|
1057 |
retval += parse_source_token(ctx); |
542
a56d3bfd2e36
More work on multiple error messages.
Ryan C. Gordon <icculus@icculus.org>
parents:
539
diff
changeset
|
1058 |
require_comma(ctx); |
470
7d84d3452125
Bunch More Work on the assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
465
diff
changeset
|
1059 |
retval += parse_source_token(ctx); |
542
a56d3bfd2e36
More work on multiple error messages.
Ryan C. Gordon <icculus@icculus.org>
parents:
539
diff
changeset
|
1060 |
require_comma(ctx); |
470
7d84d3452125
Bunch More Work on the assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
465
diff
changeset
|
1061 |
retval += parse_source_token(ctx); |
542
a56d3bfd2e36
More work on multiple error messages.
Ryan C. Gordon <icculus@icculus.org>
parents:
539
diff
changeset
|
1062 |
return retval; |
465
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
1063 |
} // parse_args_DSSS |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
1064 |
|
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
1065 |
|
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
1066 |
static int parse_args_DSSSS(Context *ctx) |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
1067 |
{ |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
1068 |
int retval = 1; |
515
58c1a7d98176
First steps of reworking tokenizer.
Ryan C. Gordon <icculus@icculus.org>
parents:
514
diff
changeset
|
1069 |
retval += parse_destination_token(ctx); |
542
a56d3bfd2e36
More work on multiple error messages.
Ryan C. Gordon <icculus@icculus.org>
parents:
539
diff
changeset
|
1070 |
require_comma(ctx); |
470
7d84d3452125
Bunch More Work on the assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
465
diff
changeset
|
1071 |
retval += parse_source_token(ctx); |
542
a56d3bfd2e36
More work on multiple error messages.
Ryan C. Gordon <icculus@icculus.org>
parents:
539
diff
changeset
|
1072 |
require_comma(ctx); |
470
7d84d3452125
Bunch More Work on the assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
465
diff
changeset
|
1073 |
retval += parse_source_token(ctx); |
542
a56d3bfd2e36
More work on multiple error messages.
Ryan C. Gordon <icculus@icculus.org>
parents:
539
diff
changeset
|
1074 |
require_comma(ctx); |
470
7d84d3452125
Bunch More Work on the assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
465
diff
changeset
|
1075 |
retval += parse_source_token(ctx); |
542
a56d3bfd2e36
More work on multiple error messages.
Ryan C. Gordon <icculus@icculus.org>
parents:
539
diff
changeset
|
1076 |
require_comma(ctx); |
470
7d84d3452125
Bunch More Work on the assembler.
Ryan C. Gordon <icculus@icculus.org>
parents:
465
diff
changeset
|
1077 |
retval += parse_source_token(ctx); |
542
a56d3bfd2e36
More work on multiple error messages.
Ryan C. Gordon <icculus@icculus.org>
parents:
539
diff
changeset
|
1078 |
return retval; |
465
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
1079 |
} // parse_args_DSSSS |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
1080 |
|
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
1081 |
|
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
1082 |
static int parse_args_SINCOS(Context *ctx) |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
1083 |
{ |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
1084 |
// this opcode needs extra registers for sm2 and lower. |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
1085 |
if (!shader_version_atleast(ctx, 3, 0)) |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
1086 |
return parse_args_DSSS(ctx); |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
1087 |
return parse_args_DS(ctx); |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
1088 |
} // parse_args_SINCOS |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
1089 |
|
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
1090 |
|
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
1091 |
static int parse_args_TEXCRD(Context *ctx) |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
1092 |
{ |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
1093 |
// added extra register in ps_1_4. |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
1094 |
if (shader_version_atleast(ctx, 1, 4)) |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
1095 |
return parse_args_DS(ctx); |
0a75f98f785b
Initial work on assembler. Not even close to done.
Ryan C. Gor |