author | Ryan C. Gordon <icculus@icculus.org> |
Mon, 28 Apr 2008 05:50:02 -0400 | |
branch | trunk |
changeset 237 | 09f35dfc1d7e |
parent 235 | a9ec326856d5 |
child 248 | 568c8f9d7cb9 |
permissions | -rw-r--r-- |
7 | 1 |
/** |
35 | 2 |
* MojoShader; generate shader programs from bytecode of compiled |
3 |
* Direct3D shaders. |
|
7 | 4 |
* |
5 |
* Please see the file LICENSE.txt in the source's root directory. |
|
6 |
* |
|
7 |
* This file written by Ryan C. Gordon. |
|
8 |
*/ |
|
9 |
||
18
0dbdb2be8bf8
[svn] Bunch More Work. Cleanups, added app-supplied allocators, flexible output, etc.
icculus
parents:
17
diff
changeset
|
10 |
// !!! FIXME: I keep changing coding styles for symbols and typedefs. |
0dbdb2be8bf8
[svn] Bunch More Work. Cleanups, added app-supplied allocators, flexible output, etc.
icculus
parents:
17
diff
changeset
|
11 |
|
58 | 12 |
// !!! FIXME: do DEF* opcodes have to come before instructions? |
13 |
// !!! FIXME: my reading of the msdn spec suggests no, but it sounds like |
|
14 |
// !!! FIXME: something they'd require. DCL_* _does_ have to be first. |
|
15 |
||
31 | 16 |
|
7 | 17 |
// Shader bytecode format is described at MSDN: |
18 |
// http://msdn2.microsoft.com/en-us/library/ms800307.aspx |
|
19 |
||
1 | 20 |
#include <stdio.h> |
11
c9bb617d9b77
[svn] Pass around a context struct, so we can start tracking state, etc.
icculus
parents:
9
diff
changeset
|
21 |
#include <string.h> |
1 | 22 |
#include <stdlib.h> |
2
c37210f5e87b
[svn] Bunch More Work. Parse out instruction tokens, fail in a bunch of new stubs.
icculus
parents:
1
diff
changeset
|
23 |
#include <stdint.h> |
12
d81712dd1a46
[svn] Cleaned up and improved output and fail state.
icculus
parents:
11
diff
changeset
|
24 |
#include <stdarg.h> |
24 | 25 |
#include <assert.h> |
2
c37210f5e87b
[svn] Bunch More Work. Parse out instruction tokens, fail in a bunch of new stubs.
icculus
parents:
1
diff
changeset
|
26 |
|
35 | 27 |
#include "mojoshader.h" |
9 | 28 |
|
56
1e8b180d3eb1
[svn] Bunch of work from the transatlantic airplane flight...since this is a ton of
icculus
parents:
55
diff
changeset
|
29 |
|
20
bb2e8f285acc
[svn] Bunch More Work...higher level parses dest/src tokens before it goes to the
icculus
parents:
19
diff
changeset
|
30 |
// This is the highest shader version we currently support. |
bb2e8f285acc
[svn] Bunch More Work...higher level parses dest/src tokens before it goes to the
icculus
parents:
19
diff
changeset
|
31 |
|
bb2e8f285acc
[svn] Bunch More Work...higher level parses dest/src tokens before it goes to the
icculus
parents:
19
diff
changeset
|
32 |
#define MAX_SHADER_MAJOR 3 |
bb2e8f285acc
[svn] Bunch More Work...higher level parses dest/src tokens before it goes to the
icculus
parents:
19
diff
changeset
|
33 |
#define MAX_SHADER_MINOR 0 |
bb2e8f285acc
[svn] Bunch More Work...higher level parses dest/src tokens before it goes to the
icculus
parents:
19
diff
changeset
|
34 |
|
18
0dbdb2be8bf8
[svn] Bunch More Work. Cleanups, added app-supplied allocators, flexible output, etc.
icculus
parents:
17
diff
changeset
|
35 |
|
67 | 36 |
// If SUPPORT_PROFILE_* isn't defined, we assume an implicit desire to support. |
37 |
// You get all the profiles unless you go out of your way to disable them. |
|
18
0dbdb2be8bf8
[svn] Bunch More Work. Cleanups, added app-supplied allocators, flexible output, etc.
icculus
parents:
17
diff
changeset
|
38 |
|
14 | 39 |
#ifndef SUPPORT_PROFILE_D3D |
40 |
#define SUPPORT_PROFILE_D3D 1 |
|
41 |
#endif |
|
42 |
||
109
48e95cf41505
Added "passthrough" profile, which just sends the bytecode through unchanged;
Ryan C. Gordon <icculus@icculus.org>
parents:
108
diff
changeset
|
43 |
#ifndef SUPPORT_PROFILE_PASSTHROUGH |
48e95cf41505
Added "passthrough" profile, which just sends the bytecode through unchanged;
Ryan C. Gordon <icculus@icculus.org>
parents:
108
diff
changeset
|
44 |
#define SUPPORT_PROFILE_PASSTHROUGH 1 |
48e95cf41505
Added "passthrough" profile, which just sends the bytecode through unchanged;
Ryan C. Gordon <icculus@icculus.org>
parents:
108
diff
changeset
|
45 |
#endif |
48e95cf41505
Added "passthrough" profile, which just sends the bytecode through unchanged;
Ryan C. Gordon <icculus@icculus.org>
parents:
108
diff
changeset
|
46 |
|
14 | 47 |
#ifndef SUPPORT_PROFILE_GLSL |
48 |
#define SUPPORT_PROFILE_GLSL 1 |
|
49 |
#endif |
|
50 |
||
18
0dbdb2be8bf8
[svn] Bunch More Work. Cleanups, added app-supplied allocators, flexible output, etc.
icculus
parents:
17
diff
changeset
|
51 |
|
0dbdb2be8bf8
[svn] Bunch More Work. Cleanups, added app-supplied allocators, flexible output, etc.
icculus
parents:
17
diff
changeset
|
52 |
// Get basic wankery out of the way here... |
0dbdb2be8bf8
[svn] Bunch More Work. Cleanups, added app-supplied allocators, flexible output, etc.
icculus
parents:
17
diff
changeset
|
53 |
|
0dbdb2be8bf8
[svn] Bunch More Work. Cleanups, added app-supplied allocators, flexible output, etc.
icculus
parents:
17
diff
changeset
|
54 |
typedef unsigned int uint; // this is a printf() helper. don't use for code. |
0dbdb2be8bf8
[svn] Bunch More Work. Cleanups, added app-supplied allocators, flexible output, etc.
icculus
parents:
17
diff
changeset
|
55 |
typedef uint8_t uint8; |
0dbdb2be8bf8
[svn] Bunch More Work. Cleanups, added app-supplied allocators, flexible output, etc.
icculus
parents:
17
diff
changeset
|
56 |
typedef uint32_t uint32; |
31 | 57 |
typedef int32_t int32; |
18
0dbdb2be8bf8
[svn] Bunch More Work. Cleanups, added app-supplied allocators, flexible output, etc.
icculus
parents:
17
diff
changeset
|
58 |
|
12
d81712dd1a46
[svn] Cleaned up and improved output and fail state.
icculus
parents:
11
diff
changeset
|
59 |
#ifdef __GNUC__ |
d81712dd1a46
[svn] Cleaned up and improved output and fail state.
icculus
parents:
11
diff
changeset
|
60 |
#define ISPRINTF(x,y) __attribute__((format (printf, x, y))) |
d81712dd1a46
[svn] Cleaned up and improved output and fail state.
icculus
parents:
11
diff
changeset
|
61 |
#else |
d81712dd1a46
[svn] Cleaned up and improved output and fail state.
icculus
parents:
11
diff
changeset
|
62 |
#define ISPRINTF(x,y) |
d81712dd1a46
[svn] Cleaned up and improved output and fail state.
icculus
parents:
11
diff
changeset
|
63 |
#endif |
d81712dd1a46
[svn] Cleaned up and improved output and fail state.
icculus
parents:
11
diff
changeset
|
64 |
|
14 | 65 |
#define STATICARRAYLEN(x) ( (sizeof ((x))) / (sizeof ((x)[0])) ) |
66 |
||
45 | 67 |
#ifdef _WINDOWS // !!! FIXME: bleh |
68 |
const char *endline_str = "\r\n"; |
|
69 |
#else |
|
70 |
const char *endline_str = "\n"; |
|
71 |
#endif |
|
72 |
||
56
1e8b180d3eb1
[svn] Bunch of work from the transatlantic airplane flight...since this is a ton of
icculus
parents:
55
diff
changeset
|
73 |
// we need to reference this by explicit value occasionally. |
1e8b180d3eb1
[svn] Bunch of work from the transatlantic airplane flight...since this is a ton of
icculus
parents:
55
diff
changeset
|
74 |
#define OPCODE_RET 28 |
1e8b180d3eb1
[svn] Bunch of work from the transatlantic airplane flight...since this is a ton of
icculus
parents:
55
diff
changeset
|
75 |
|
194
8de489efc811
Malloc() now handles calling out_of_memory() if necessary.
Ryan C. Gordon <icculus@icculus.org>
parents:
193
diff
changeset
|
76 |
// Special-case return values from the parsing pipeline... |
8de489efc811
Malloc() now handles calling out_of_memory() if necessary.
Ryan C. Gordon <icculus@icculus.org>
parents:
193
diff
changeset
|
77 |
#define FAIL (-1) |
8de489efc811
Malloc() now handles calling out_of_memory() if necessary.
Ryan C. Gordon <icculus@icculus.org>
parents:
193
diff
changeset
|
78 |
#define NOFAIL (-2) |
8de489efc811
Malloc() now handles calling out_of_memory() if necessary.
Ryan C. Gordon <icculus@icculus.org>
parents:
193
diff
changeset
|
79 |
#define END_OF_STREAM (-3) |
8de489efc811
Malloc() now handles calling out_of_memory() if necessary.
Ryan C. Gordon <icculus@icculus.org>
parents:
193
diff
changeset
|
80 |
|
14 | 81 |
|
7 | 82 |
// Byteswap magic... |
83 |
||
4 | 84 |
#if ((defined __GNUC__) && (defined __POWERPC__)) |
85 |
static inline uint32 SWAP32(uint32 x) |
|
86 |
{ |
|
87 |
__asm__ __volatile__("lwbrx %0,0,%1" : "=r" (x) : "r" (&x)); |
|
88 |
return x; |
|
89 |
} // SWAP32 |
|
90 |
#elif defined(__POWERPC__) |
|
91 |
static inline uint32 SWAP32(uint32 x) |
|
92 |
{ |
|
93 |
return ( (((x) >> 24) & 0x000000FF) | (((x) >> 8) & 0x0000FF00) | |
|
94 |
(((x) << 8) & 0x00FF0000) | (((x) << 24) & 0xFF000000) ); |
|
95 |
} // SWAP32 |
|
96 |
#else |
|
97 |
# define SWAP32(x) (x) |
|
98 |
#endif |
|
99 |
||
21
d43449cf3cb2
[svn] Implemented destination argument output in D3D profile. Untested.
icculus
parents:
20
diff
changeset
|
100 |
typedef enum |
d43449cf3cb2
[svn] Implemented destination argument output in D3D profile. Untested.
icculus
parents:
20
diff
changeset
|
101 |
{ |
73
c368f50d89d2
Shrank chatty enum name.
Ryan C. Gordon <icculus@icculus.org>
parents:
72
diff
changeset
|
102 |
REG_TYPE_TEMP = 0, |
c368f50d89d2
Shrank chatty enum name.
Ryan C. Gordon <icculus@icculus.org>
parents:
72
diff
changeset
|
103 |
REG_TYPE_INPUT = 1, |
c368f50d89d2
Shrank chatty enum name.
Ryan C. Gordon <icculus@icculus.org>
parents:
72
diff
changeset
|
104 |
REG_TYPE_CONST = 2, |
c368f50d89d2
Shrank chatty enum name.
Ryan C. Gordon <icculus@icculus.org>
parents:
72
diff
changeset
|
105 |
REG_TYPE_ADDRESS = 3, |
c368f50d89d2
Shrank chatty enum name.
Ryan C. Gordon <icculus@icculus.org>
parents:
72
diff
changeset
|
106 |
REG_TYPE_TEXTURE = 3, // ALSO 3! |
c368f50d89d2
Shrank chatty enum name.
Ryan C. Gordon <icculus@icculus.org>
parents:
72
diff
changeset
|
107 |
REG_TYPE_RASTOUT = 4, |
c368f50d89d2
Shrank chatty enum name.
Ryan C. Gordon <icculus@icculus.org>
parents:
72
diff
changeset
|
108 |
REG_TYPE_ATTROUT = 5, |
c368f50d89d2
Shrank chatty enum name.
Ryan C. Gordon <icculus@icculus.org>
parents:
72
diff
changeset
|
109 |
REG_TYPE_TEXCRDOUT = 6, |
c368f50d89d2
Shrank chatty enum name.
Ryan C. Gordon <icculus@icculus.org>
parents:
72
diff
changeset
|
110 |
REG_TYPE_OUTPUT = 6, // ALSO 6! |
c368f50d89d2
Shrank chatty enum name.
Ryan C. Gordon <icculus@icculus.org>
parents:
72
diff
changeset
|
111 |
REG_TYPE_CONSTINT = 7, |
c368f50d89d2
Shrank chatty enum name.
Ryan C. Gordon <icculus@icculus.org>
parents:
72
diff
changeset
|
112 |
REG_TYPE_COLOROUT = 8, |
c368f50d89d2
Shrank chatty enum name.
Ryan C. Gordon <icculus@icculus.org>
parents:
72
diff
changeset
|
113 |
REG_TYPE_DEPTHOUT = 9, |
c368f50d89d2
Shrank chatty enum name.
Ryan C. Gordon <icculus@icculus.org>
parents:
72
diff
changeset
|
114 |
REG_TYPE_SAMPLER = 10, |
c368f50d89d2
Shrank chatty enum name.
Ryan C. Gordon <icculus@icculus.org>
parents:
72
diff
changeset
|
115 |
REG_TYPE_CONST2 = 11, |
c368f50d89d2
Shrank chatty enum name.
Ryan C. Gordon <icculus@icculus.org>
parents:
72
diff
changeset
|
116 |
REG_TYPE_CONST3 = 12, |
c368f50d89d2
Shrank chatty enum name.
Ryan C. Gordon <icculus@icculus.org>
parents:
72
diff
changeset
|
117 |
REG_TYPE_CONST4 = 13, |
c368f50d89d2
Shrank chatty enum name.
Ryan C. Gordon <icculus@icculus.org>
parents:
72
diff
changeset
|
118 |
REG_TYPE_CONSTBOOL = 14, |
c368f50d89d2
Shrank chatty enum name.
Ryan C. Gordon <icculus@icculus.org>
parents:
72
diff
changeset
|
119 |
REG_TYPE_LOOP = 15, |
c368f50d89d2
Shrank chatty enum name.
Ryan C. Gordon <icculus@icculus.org>
parents:
72
diff
changeset
|
120 |
REG_TYPE_TEMPFLOAT16 = 16, |
c368f50d89d2
Shrank chatty enum name.
Ryan C. Gordon <icculus@icculus.org>
parents:
72
diff
changeset
|
121 |
REG_TYPE_MISCTYPE = 17, |
c368f50d89d2
Shrank chatty enum name.
Ryan C. Gordon <icculus@icculus.org>
parents:
72
diff
changeset
|
122 |
REG_TYPE_LABEL = 18, |
c368f50d89d2
Shrank chatty enum name.
Ryan C. Gordon <icculus@icculus.org>
parents:
72
diff
changeset
|
123 |
REG_TYPE_PREDICATE = 19, |
c368f50d89d2
Shrank chatty enum name.
Ryan C. Gordon <icculus@icculus.org>
parents:
72
diff
changeset
|
124 |
REG_TYPE_MAX = 19 |
34 | 125 |
} RegisterType; |
21
d43449cf3cb2
[svn] Implemented destination argument output in D3D profile. Untested.
icculus
parents:
20
diff
changeset
|
126 |
|
148
645003ec6623
Hopefully sorted out the reported uniform/attribute mess.
Ryan C. Gordon <icculus@icculus.org>
parents:
145
diff
changeset
|
127 |
typedef enum |
645003ec6623
Hopefully sorted out the reported uniform/attribute mess.
Ryan C. Gordon <icculus@icculus.org>
parents:
145
diff
changeset
|
128 |
{ |
645003ec6623
Hopefully sorted out the reported uniform/attribute mess.
Ryan C. Gordon <icculus@icculus.org>
parents:
145
diff
changeset
|
129 |
TEXTURE_TYPE_2D = 2, |
645003ec6623
Hopefully sorted out the reported uniform/attribute mess.
Ryan C. Gordon <icculus@icculus.org>
parents:
145
diff
changeset
|
130 |
TEXTURE_TYPE_CUBE = 3, |
645003ec6623
Hopefully sorted out the reported uniform/attribute mess.
Ryan C. Gordon <icculus@icculus.org>
parents:
145
diff
changeset
|
131 |
TEXTURE_TYPE_VOLUME = 4, |
645003ec6623
Hopefully sorted out the reported uniform/attribute mess.
Ryan C. Gordon <icculus@icculus.org>
parents:
145
diff
changeset
|
132 |
} TextureType; |
645003ec6623
Hopefully sorted out the reported uniform/attribute mess.
Ryan C. Gordon <icculus@icculus.org>
parents:
145
diff
changeset
|
133 |
|
95
56af2093eefe
Implemented uniform reporting.
Ryan C. Gordon <icculus@icculus.org>
parents:
93
diff
changeset
|
134 |
// predeclare. |
56af2093eefe
Implemented uniform reporting.
Ryan C. Gordon <icculus@icculus.org>
parents:
93
diff
changeset
|
135 |
typedef struct Context Context; |
56af2093eefe
Implemented uniform reporting.
Ryan C. Gordon <icculus@icculus.org>
parents:
93
diff
changeset
|
136 |
|
56af2093eefe
Implemented uniform reporting.
Ryan C. Gordon <icculus@icculus.org>
parents:
93
diff
changeset
|
137 |
// one emit function for each opcode in each profile. |
56af2093eefe
Implemented uniform reporting.
Ryan C. Gordon <icculus@icculus.org>
parents:
93
diff
changeset
|
138 |
typedef void (*emit_function)(Context *ctx); |
56af2093eefe
Implemented uniform reporting.
Ryan C. Gordon <icculus@icculus.org>
parents:
93
diff
changeset
|
139 |
|
56af2093eefe
Implemented uniform reporting.
Ryan C. Gordon <icculus@icculus.org>
parents:
93
diff
changeset
|
140 |
// one emit function for starting output in each profile. |
56af2093eefe
Implemented uniform reporting.
Ryan C. Gordon <icculus@icculus.org>
parents:
93
diff
changeset
|
141 |
typedef void (*emit_start)(Context *ctx); |
56af2093eefe
Implemented uniform reporting.
Ryan C. Gordon <icculus@icculus.org>
parents:
93
diff
changeset
|
142 |
|
56af2093eefe
Implemented uniform reporting.
Ryan C. Gordon <icculus@icculus.org>
parents:
93
diff
changeset
|
143 |
// one emit function for ending output in each profile. |
56af2093eefe
Implemented uniform reporting.
Ryan C. Gordon <icculus@icculus.org>
parents:
93
diff
changeset
|
144 |
typedef void (*emit_end)(Context *ctx); |
56af2093eefe
Implemented uniform reporting.
Ryan C. Gordon <icculus@icculus.org>
parents:
93
diff
changeset
|
145 |
|
56af2093eefe
Implemented uniform reporting.
Ryan C. Gordon <icculus@icculus.org>
parents:
93
diff
changeset
|
146 |
// one emit function for finalizing output in each profile. |
56af2093eefe
Implemented uniform reporting.
Ryan C. Gordon <icculus@icculus.org>
parents:
93
diff
changeset
|
147 |
typedef void (*emit_finalize)(Context *ctx); |
56af2093eefe
Implemented uniform reporting.
Ryan C. Gordon <icculus@icculus.org>
parents:
93
diff
changeset
|
148 |
|
56af2093eefe
Implemented uniform reporting.
Ryan C. Gordon <icculus@icculus.org>
parents:
93
diff
changeset
|
149 |
// one emit function for global definitions in each profile. |
56af2093eefe
Implemented uniform reporting.
Ryan C. Gordon <icculus@icculus.org>
parents:
93
diff
changeset
|
150 |
typedef void (*emit_global)(Context *ctx, RegisterType regtype, int regnum); |
56af2093eefe
Implemented uniform reporting.
Ryan C. Gordon <icculus@icculus.org>
parents:
93
diff
changeset
|
151 |
|
56af2093eefe
Implemented uniform reporting.
Ryan C. Gordon <icculus@icculus.org>
parents:
93
diff
changeset
|
152 |
// one emit function for uniforms in each profile. |
56af2093eefe
Implemented uniform reporting.
Ryan C. Gordon <icculus@icculus.org>
parents:
93
diff
changeset
|
153 |
typedef void (*emit_uniform)(Context *ctx, RegisterType regtype, int regnum); |
56af2093eefe
Implemented uniform reporting.
Ryan C. Gordon <icculus@icculus.org>
parents:
93
diff
changeset
|
154 |
|
148
645003ec6623
Hopefully sorted out the reported uniform/attribute mess.
Ryan C. Gordon <icculus@icculus.org>
parents:
145
diff
changeset
|
155 |
// one emit function for samplers in each profile. |
645003ec6623
Hopefully sorted out the reported uniform/attribute mess.
Ryan C. Gordon <icculus@icculus.org>
parents:
145
diff
changeset
|
156 |
typedef void (*emit_sampler)(Context *ctx, int stage, TextureType ttype); |
645003ec6623
Hopefully sorted out the reported uniform/attribute mess.
Ryan C. Gordon <icculus@icculus.org>
parents:
145
diff
changeset
|
157 |
|
104
7019f99f17d0
Attribute parsing is closer to correct now.
Ryan C. Gordon <icculus@icculus.org>
parents:
103
diff
changeset
|
158 |
// one emit function for attributes in each profile. |
7019f99f17d0
Attribute parsing is closer to correct now.
Ryan C. Gordon <icculus@icculus.org>
parents:
103
diff
changeset
|
159 |
typedef void (*emit_attribute)(Context *ctx, RegisterType regtype, int regnum, |
7019f99f17d0
Attribute parsing is closer to correct now.
Ryan C. Gordon <icculus@icculus.org>
parents:
103
diff
changeset
|
160 |
MOJOSHADER_usage usage, int index, int wmask); |
7019f99f17d0
Attribute parsing is closer to correct now.
Ryan C. Gordon <icculus@icculus.org>
parents:
103
diff
changeset
|
161 |
|
95
56af2093eefe
Implemented uniform reporting.
Ryan C. Gordon <icculus@icculus.org>
parents:
93
diff
changeset
|
162 |
// one args function for each possible sequence of opcode arguments. |
56af2093eefe
Implemented uniform reporting.
Ryan C. Gordon <icculus@icculus.org>
parents:
93
diff
changeset
|
163 |
typedef int (*args_function)(Context *ctx); |
56af2093eefe
Implemented uniform reporting.
Ryan C. Gordon <icculus@icculus.org>
parents:
93
diff
changeset
|
164 |
|
56af2093eefe
Implemented uniform reporting.
Ryan C. Gordon <icculus@icculus.org>
parents:
93
diff
changeset
|
165 |
// one state function for each opcode where we have state machine updates. |
56af2093eefe
Implemented uniform reporting.
Ryan C. Gordon <icculus@icculus.org>
parents:
93
diff
changeset
|
166 |
typedef void (*state_function)(Context *ctx); |
56af2093eefe
Implemented uniform reporting.
Ryan C. Gordon <icculus@icculus.org>
parents:
93
diff
changeset
|
167 |
|
56af2093eefe
Implemented uniform reporting.
Ryan C. Gordon <icculus@icculus.org>
parents:
93
diff
changeset
|
168 |
typedef struct |
56af2093eefe
Implemented uniform reporting.
Ryan C. Gordon <icculus@icculus.org>
parents:
93
diff
changeset
|
169 |
{ |
56af2093eefe
Implemented uniform reporting.
Ryan C. Gordon <icculus@icculus.org>
parents:
93
diff
changeset
|
170 |
const char *name; |
56af2093eefe
Implemented uniform reporting.
Ryan C. Gordon <icculus@icculus.org>
parents:
93
diff
changeset
|
171 |
emit_start start_emitter; |
56af2093eefe
Implemented uniform reporting.
Ryan C. Gordon <icculus@icculus.org>
parents:
93
diff
changeset
|
172 |
emit_end end_emitter; |
56af2093eefe
Implemented uniform reporting.
Ryan C. Gordon <icculus@icculus.org>
parents:
93
diff
changeset
|
173 |
emit_global global_emitter; |
56af2093eefe
Implemented uniform reporting.
Ryan C. Gordon <icculus@icculus.org>
parents:
93
diff
changeset
|
174 |
emit_uniform uniform_emitter; |
148
645003ec6623
Hopefully sorted out the reported uniform/attribute mess.
Ryan C. Gordon <icculus@icculus.org>
parents:
145
diff
changeset
|
175 |
emit_sampler sampler_emitter; |
104
7019f99f17d0
Attribute parsing is closer to correct now.
Ryan C. Gordon <icculus@icculus.org>
parents:
103
diff
changeset
|
176 |
emit_attribute attribute_emitter; |
95
56af2093eefe
Implemented uniform reporting.
Ryan C. Gordon <icculus@icculus.org>
parents:
93
diff
changeset
|
177 |
emit_finalize finalize_emitter; |
56af2093eefe
Implemented uniform reporting.
Ryan C. Gordon <icculus@icculus.org>
parents:
93
diff
changeset
|
178 |
} Profile; |
56af2093eefe
Implemented uniform reporting.
Ryan C. Gordon <icculus@icculus.org>
parents:
93
diff
changeset
|
179 |
|
21
d43449cf3cb2
[svn] Implemented destination argument output in D3D profile. Untested.
icculus
parents:
20
diff
changeset
|
180 |
typedef enum |
d43449cf3cb2
[svn] Implemented destination argument output in D3D profile. Untested.
icculus
parents:
20
diff
changeset
|
181 |
{ |
d43449cf3cb2
[svn] Implemented destination argument output in D3D profile. Untested.
icculus
parents:
20
diff
changeset
|
182 |
RASTOUT_TYPE_POSITION = 0, |
d43449cf3cb2
[svn] Implemented destination argument output in D3D profile. Untested.
icculus
parents:
20
diff
changeset
|
183 |
RASTOUT_TYPE_FOG = 1, |
d43449cf3cb2
[svn] Implemented destination argument output in D3D profile. Untested.
icculus
parents:
20
diff
changeset
|
184 |
RASTOUT_TYPE_POINT_SIZE = 2, |
d43449cf3cb2
[svn] Implemented destination argument output in D3D profile. Untested.
icculus
parents:
20
diff
changeset
|
185 |
RASTOUT_TYPE_MAX = 2 |
34 | 186 |
} RastOutType; |
21
d43449cf3cb2
[svn] Implemented destination argument output in D3D profile. Untested.
icculus
parents:
20
diff
changeset
|
187 |
|
d43449cf3cb2
[svn] Implemented destination argument output in D3D profile. Untested.
icculus
parents:
20
diff
changeset
|
188 |
typedef enum |
d43449cf3cb2
[svn] Implemented destination argument output in D3D profile. Untested.
icculus
parents:
20
diff
changeset
|
189 |
{ |
d43449cf3cb2
[svn] Implemented destination argument output in D3D profile. Untested.
icculus
parents:
20
diff
changeset
|
190 |
MISCTYPE_TYPE_POSITION = 0, |
d43449cf3cb2
[svn] Implemented destination argument output in D3D profile. Untested.
icculus
parents:
20
diff
changeset
|
191 |
MISCTYPE_TYPE_FACE = 1, |
d43449cf3cb2
[svn] Implemented destination argument output in D3D profile. Untested.
icculus
parents:
20
diff
changeset
|
192 |
MISCTYPE_TYPE_MAX = 1 |
34 | 193 |
} MiscTypeType; |
21
d43449cf3cb2
[svn] Implemented destination argument output in D3D profile. Untested.
icculus
parents:
20
diff
changeset
|
194 |
|
18
0dbdb2be8bf8
[svn] Bunch More Work. Cleanups, added app-supplied allocators, flexible output, etc.
icculus
parents:
17
diff
changeset
|
195 |
|
0dbdb2be8bf8
[svn] Bunch More Work. Cleanups, added app-supplied allocators, flexible output, etc.
icculus
parents:
17
diff
changeset
|
196 |
// A simple linked list of strings, so we can build the final output without |
0dbdb2be8bf8
[svn] Bunch More Work. Cleanups, added app-supplied allocators, flexible output, etc.
icculus
parents:
17
diff
changeset
|
197 |
// realloc()ing for each new line, and easily insert lines into the middle |
0dbdb2be8bf8
[svn] Bunch More Work. Cleanups, added app-supplied allocators, flexible output, etc.
icculus
parents:
17
diff
changeset
|
198 |
// of the output without much trouble. |
54
b2b64d39df0f
[svn] Split up output into several lists, so GLSL profile can insert lines of text
icculus
parents:
51
diff
changeset
|
199 |
typedef struct OutputListNode |
b2b64d39df0f
[svn] Split up output into several lists, so GLSL profile can insert lines of text
icculus
parents:
51
diff
changeset
|
200 |
{ |
b2b64d39df0f
[svn] Split up output into several lists, so GLSL profile can insert lines of text
icculus
parents:
51
diff
changeset
|
201 |
char *str; |
b2b64d39df0f
[svn] Split up output into several lists, so GLSL profile can insert lines of text
icculus
parents:
51
diff
changeset
|
202 |
struct OutputListNode *next; |
b2b64d39df0f
[svn] Split up output into several lists, so GLSL profile can insert lines of text
icculus
parents:
51
diff
changeset
|
203 |
} OutputListNode; |
b2b64d39df0f
[svn] Split up output into several lists, so GLSL profile can insert lines of text
icculus
parents:
51
diff
changeset
|
204 |
|
18
0dbdb2be8bf8
[svn] Bunch More Work. Cleanups, added app-supplied allocators, flexible output, etc.
icculus
parents:
17
diff
changeset
|
205 |
typedef struct OutputList |
0dbdb2be8bf8
[svn] Bunch More Work. Cleanups, added app-supplied allocators, flexible output, etc.
icculus
parents:
17
diff
changeset
|
206 |
{ |
54
b2b64d39df0f
[svn] Split up output into several lists, so GLSL profile can insert lines of text
icculus
parents:
51
diff
changeset
|
207 |
OutputListNode head; |
b2b64d39df0f
[svn] Split up output into several lists, so GLSL profile can insert lines of text
icculus
parents:
51
diff
changeset
|
208 |
OutputListNode *tail; |
18
0dbdb2be8bf8
[svn] Bunch More Work. Cleanups, added app-supplied allocators, flexible output, etc.
icculus
parents:
17
diff
changeset
|
209 |
} OutputList; |
0dbdb2be8bf8
[svn] Bunch More Work. Cleanups, added app-supplied allocators, flexible output, etc.
icculus
parents:
17
diff
changeset
|
210 |
|
20
bb2e8f285acc
[svn] Bunch More Work...higher level parses dest/src tokens before it goes to the
icculus
parents:
19
diff
changeset
|
211 |
|
82
dc7ad4cea75b
Keep a list of used/defined registers.
Ryan C. Gordon <icculus@icculus.org>
parents:
81
diff
changeset
|
212 |
typedef struct RegisterList |
dc7ad4cea75b
Keep a list of used/defined registers.
Ryan C. Gordon <icculus@icculus.org>
parents:
81
diff
changeset
|
213 |
{ |
dc7ad4cea75b
Keep a list of used/defined registers.
Ryan C. Gordon <icculus@icculus.org>
parents:
81
diff
changeset
|
214 |
RegisterType regtype; |
dc7ad4cea75b
Keep a list of used/defined registers.
Ryan C. Gordon <icculus@icculus.org>
parents:
81
diff
changeset
|
215 |
int regnum; |
104
7019f99f17d0
Attribute parsing is closer to correct now.
Ryan C. Gordon <icculus@icculus.org>
parents:
103
diff
changeset
|
216 |
MOJOSHADER_usage usage; |
7019f99f17d0
Attribute parsing is closer to correct now.
Ryan C. Gordon <icculus@icculus.org>
parents:
103
diff
changeset
|
217 |
int index; |
7019f99f17d0
Attribute parsing is closer to correct now.
Ryan C. Gordon <icculus@icculus.org>
parents:
103
diff
changeset
|
218 |
int writemask; |
82
dc7ad4cea75b
Keep a list of used/defined registers.
Ryan C. Gordon <icculus@icculus.org>
parents:
81
diff
changeset
|
219 |
struct RegisterList *next; |
dc7ad4cea75b
Keep a list of used/defined registers.
Ryan C. Gordon <icculus@icculus.org>
parents:
81
diff
changeset
|
220 |
} RegisterList; |
dc7ad4cea75b
Keep a list of used/defined registers.
Ryan C. Gordon <icculus@icculus.org>
parents:
81
diff
changeset
|
221 |
|
dc7ad4cea75b
Keep a list of used/defined registers.
Ryan C. Gordon <icculus@icculus.org>
parents:
81
diff
changeset
|
222 |
|
21
d43449cf3cb2
[svn] Implemented destination argument output in D3D profile. Untested.
icculus
parents:
20
diff
changeset
|
223 |
// result modifiers. |
d43449cf3cb2
[svn] Implemented destination argument output in D3D profile. Untested.
icculus
parents:
20
diff
changeset
|
224 |
#define MOD_SATURATE 0x01 |
d43449cf3cb2
[svn] Implemented destination argument output in D3D profile. Untested.
icculus
parents:
20
diff
changeset
|
225 |
#define MOD_PP 0x02 |
d43449cf3cb2
[svn] Implemented destination argument output in D3D profile. Untested.
icculus
parents:
20
diff
changeset
|
226 |
#define MOD_CENTROID 0x04 |
d43449cf3cb2
[svn] Implemented destination argument output in D3D profile. Untested.
icculus
parents:
20
diff
changeset
|
227 |
|
24 | 228 |
// source modifiers. |
229 |
typedef enum |
|
230 |
{ |
|
231 |
SRCMOD_NONE, |
|
232 |
SRCMOD_NEGATE, |
|
233 |
SRCMOD_BIAS, |
|
234 |
SRCMOD_BIASNEGATE, |
|
235 |
SRCMOD_SIGN, |
|
236 |
SRCMOD_SIGNNEGATE, |
|
237 |
SRCMOD_COMPLEMENT, |
|
238 |
SRCMOD_X2, |
|
239 |
SRCMOD_X2NEGATE, |
|
240 |
SRCMOD_DZ, |
|
241 |
SRCMOD_DW, |
|
242 |
SRCMOD_ABS, |
|
243 |
SRCMOD_ABSNEGATE, |
|
244 |
SRCMOD_NOT, |
|
245 |
SRCMOD_TOTAL |
|
34 | 246 |
} SourceMod; |
24 | 247 |
|
21
d43449cf3cb2
[svn] Implemented destination argument output in D3D profile. Untested.
icculus
parents:
20
diff
changeset
|
248 |
|
20
bb2e8f285acc
[svn] Bunch More Work...higher level parses dest/src tokens before it goes to the
icculus
parents:
19
diff
changeset
|
249 |
typedef struct |
bb2e8f285acc
[svn] Bunch More Work...higher level parses dest/src tokens before it goes to the
icculus
parents:
19
diff
changeset
|
250 |
{ |
21
d43449cf3cb2
[svn] Implemented destination argument output in D3D profile. Untested.
icculus
parents:
20
diff
changeset
|
251 |
const uint32 *token; // this is the unmolested token in the stream. |
20
bb2e8f285acc
[svn] Bunch More Work...higher level parses dest/src tokens before it goes to the
icculus
parents:
19
diff
changeset
|
252 |
int regnum; |
bb2e8f285acc
[svn] Bunch More Work...higher level parses dest/src tokens before it goes to the
icculus
parents:
19
diff
changeset
|
253 |
int relative; |
21
d43449cf3cb2
[svn] Implemented destination argument output in D3D profile. Untested.
icculus
parents:
20
diff
changeset
|
254 |
int writemask; // xyzw or rgba (all four, not split out). |
d43449cf3cb2
[svn] Implemented destination argument output in D3D profile. Untested.
icculus
parents:
20
diff
changeset
|
255 |
int writemask0; // x or red |
d43449cf3cb2
[svn] Implemented destination argument output in D3D profile. Untested.
icculus
parents:
20
diff
changeset
|
256 |
int writemask1; // y or green |
d43449cf3cb2
[svn] Implemented destination argument output in D3D profile. Untested.
icculus
parents:
20
diff
changeset
|
257 |
int writemask2; // z or blue |
d43449cf3cb2
[svn] Implemented destination argument output in D3D profile. Untested.
icculus
parents:
20
diff
changeset
|
258 |
int writemask3; // w or alpha |
20
bb2e8f285acc
[svn] Bunch More Work...higher level parses dest/src tokens before it goes to the
icculus
parents:
19
diff
changeset
|
259 |
int result_mod; |
bb2e8f285acc
[svn] Bunch More Work...higher level parses dest/src tokens before it goes to the
icculus
parents:
19
diff
changeset
|
260 |
int result_shift; |
56
1e8b180d3eb1
[svn] Bunch of work from the transatlantic airplane flight...since this is a ton of
icculus
parents:
55
diff
changeset
|
261 |
RegisterType regtype; |
20
bb2e8f285acc
[svn] Bunch More Work...higher level parses dest/src tokens before it goes to the
icculus
parents:
19
diff
changeset
|
262 |
} DestArgInfo; |
bb2e8f285acc
[svn] Bunch More Work...higher level parses dest/src tokens before it goes to the
icculus
parents:
19
diff
changeset
|
263 |
|
bb2e8f285acc
[svn] Bunch More Work...higher level parses dest/src tokens before it goes to the
icculus
parents:
19
diff
changeset
|
264 |
typedef struct |
bb2e8f285acc
[svn] Bunch More Work...higher level parses dest/src tokens before it goes to the
icculus
parents:
19
diff
changeset
|
265 |
{ |
21
d43449cf3cb2
[svn] Implemented destination argument output in D3D profile. Untested.
icculus
parents:
20
diff
changeset
|
266 |
const uint32 *token; // this is the unmolested token in the stream. |
20
bb2e8f285acc
[svn] Bunch More Work...higher level parses dest/src tokens before it goes to the
icculus
parents:
19
diff
changeset
|
267 |
int regnum; |
22 | 268 |
int swizzle; // xyzw (all four, not split out). |
20
bb2e8f285acc
[svn] Bunch More Work...higher level parses dest/src tokens before it goes to the
icculus
parents:
19
diff
changeset
|
269 |
int swizzle_x; |
bb2e8f285acc
[svn] Bunch More Work...higher level parses dest/src tokens before it goes to the
icculus
parents:
19
diff
changeset
|
270 |
int swizzle_y; |
bb2e8f285acc
[svn] Bunch More Work...higher level parses dest/src tokens before it goes to the
icculus
parents:
19
diff
changeset
|
271 |
int swizzle_z; |
bb2e8f285acc
[svn] Bunch More Work...higher level parses dest/src tokens before it goes to the
icculus
parents:
19
diff
changeset
|
272 |
int swizzle_w; |
139
a7695f68cbff
First shot at predicated instruction support.
Ryan C. Gordon <icculus@icculus.org>
parents:
138
diff
changeset
|
273 |
SourceMod src_mod; |
56
1e8b180d3eb1
[svn] Bunch of work from the transatlantic airplane flight...since this is a ton of
icculus
parents:
55
diff
changeset
|
274 |
RegisterType regtype; |
152
cc7c38dfe145
Relative addressing work.
Ryan C. Gordon <icculus@icculus.org>
parents:
151
diff
changeset
|
275 |
int relative; |
cc7c38dfe145
Relative addressing work.
Ryan C. Gordon <icculus@icculus.org>
parents:
151
diff
changeset
|
276 |
RegisterType relative_regtype; |
cc7c38dfe145
Relative addressing work.
Ryan C. Gordon <icculus@icculus.org>
parents:
151
diff
changeset
|
277 |
int relative_regnum; |
cc7c38dfe145
Relative addressing work.
Ryan C. Gordon <icculus@icculus.org>
parents:
151
diff
changeset
|
278 |
int relative_component; |
20
bb2e8f285acc
[svn] Bunch More Work...higher level parses dest/src tokens before it goes to the
icculus
parents:
19
diff
changeset
|
279 |
} SourceArgInfo; |
bb2e8f285acc
[svn] Bunch More Work...higher level parses dest/src tokens before it goes to the
icculus
parents:
19
diff
changeset
|
280 |
|
bb2e8f285acc
[svn] Bunch More Work...higher level parses dest/src tokens before it goes to the
icculus
parents:
19
diff
changeset
|
281 |
|
56
1e8b180d3eb1
[svn] Bunch of work from the transatlantic airplane flight...since this is a ton of
icculus
parents:
55
diff
changeset
|
282 |
typedef enum |
1e8b180d3eb1
[svn] Bunch of work from the transatlantic airplane flight...since this is a ton of
icculus
parents:
55
diff
changeset
|
283 |
{ |
74
935af85774dc
Global vars for GLSL profile.
Ryan C. Gordon <icculus@icculus.org>
parents:
73
diff
changeset
|
284 |
// Specific to GLSL profile... |
82
dc7ad4cea75b
Keep a list of used/defined registers.
Ryan C. Gordon <icculus@icculus.org>
parents:
81
diff
changeset
|
285 |
CTX_FLAGS_GLSL_LIT_OPCODE = (1 << 0), |
56
1e8b180d3eb1
[svn] Bunch of work from the transatlantic airplane flight...since this is a ton of
icculus
parents:
55
diff
changeset
|
286 |
CTX_FLAGS_MASK = 0xFFFFFFFF |
1e8b180d3eb1
[svn] Bunch of work from the transatlantic airplane flight...since this is a ton of
icculus
parents:
55
diff
changeset
|
287 |
} ContextFlags; |
1e8b180d3eb1
[svn] Bunch of work from the transatlantic airplane flight...since this is a ton of
icculus
parents:
55
diff
changeset
|
288 |
|
1e8b180d3eb1
[svn] Bunch of work from the transatlantic airplane flight...since this is a ton of
icculus
parents:
55
diff
changeset
|
289 |
|
141
997857107c39
Attempt to optimize CMP and CND in GLSL profile.
Ryan C. Gordon <icculus@icculus.org>
parents:
140
diff
changeset
|
290 |
#define SCRATCH_BUFFER_SIZE 128 |
997857107c39
Attempt to optimize CMP and CND in GLSL profile.
Ryan C. Gordon <icculus@icculus.org>
parents:
140
diff
changeset
|
291 |
#define SCRATCH_BUFFERS 16 |
18
0dbdb2be8bf8
[svn] Bunch More Work. Cleanups, added app-supplied allocators, flexible output, etc.
icculus
parents:
17
diff
changeset
|
292 |
|
82
dc7ad4cea75b
Keep a list of used/defined registers.
Ryan C. Gordon <icculus@icculus.org>
parents:
81
diff
changeset
|
293 |
// !!! FIXME: the scratch buffers make Context pretty big. |
56
1e8b180d3eb1
[svn] Bunch of work from the transatlantic airplane flight...since this is a ton of
icculus
parents:
55
diff
changeset
|
294 |
// !!! FIXME: might be worth having one set of static scratch buffers that |
1e8b180d3eb1
[svn] Bunch of work from the transatlantic airplane flight...since this is a ton of
icculus
parents:
55
diff
changeset
|
295 |
// !!! FIXME: are mutex protected? |
82
dc7ad4cea75b
Keep a list of used/defined registers.
Ryan C. Gordon <icculus@icculus.org>
parents:
81
diff
changeset
|
296 |
|
18
0dbdb2be8bf8
[svn] Bunch More Work. Cleanups, added app-supplied allocators, flexible output, etc.
icculus
parents:
17
diff
changeset
|
297 |
// Context...this is state that changes as we parse through a shader... |
0dbdb2be8bf8
[svn] Bunch More Work. Cleanups, added app-supplied allocators, flexible output, etc.
icculus
parents:
17
diff
changeset
|
298 |
struct Context |
0dbdb2be8bf8
[svn] Bunch More Work. Cleanups, added app-supplied allocators, flexible output, etc.
icculus
parents:
17
diff
changeset
|
299 |
{ |
35 | 300 |
MOJOSHADER_malloc malloc; |
301 |
MOJOSHADER_free free; |
|
97
4a41e3d17297
Allow instance data to be passed to the allocator.
Ryan C. Gordon <icculus@icculus.org>
parents:
96
diff
changeset
|
302 |
void *malloc_data; |
18
0dbdb2be8bf8
[svn] Bunch More Work. Cleanups, added app-supplied allocators, flexible output, etc.
icculus
parents:
17
diff
changeset
|
303 |
const uint32 *tokens; |
0dbdb2be8bf8
[svn] Bunch More Work. Cleanups, added app-supplied allocators, flexible output, etc.
icculus
parents:
17
diff
changeset
|
304 |
uint32 tokencount; |
54
b2b64d39df0f
[svn] Split up output into several lists, so GLSL profile can insert lines of text
icculus
parents:
51
diff
changeset
|
305 |
OutputList *output; |
b2b64d39df0f
[svn] Split up output into several lists, so GLSL profile can insert lines of text
icculus
parents:
51
diff
changeset
|
306 |
OutputList globals; |
56
1e8b180d3eb1
[svn] Bunch of work from the transatlantic airplane flight...since this is a ton of
icculus
parents:
55
diff
changeset
|
307 |
OutputList helpers; |
54
b2b64d39df0f
[svn] Split up output into several lists, so GLSL profile can insert lines of text
icculus
parents:
51
diff
changeset
|
308 |
OutputList subroutines; |
189
d31efd640c13
Attribute fixes for GLSL profile.
Ryan C. Gordon <icculus@icculus.org>
parents:
187
diff
changeset
|
309 |
OutputList mainline_intro; |
54
b2b64d39df0f
[svn] Split up output into several lists, so GLSL profile can insert lines of text
icculus
parents:
51
diff
changeset
|
310 |
OutputList mainline; |
56
1e8b180d3eb1
[svn] Bunch of work from the transatlantic airplane flight...since this is a ton of
icculus
parents:
55
diff
changeset
|
311 |
OutputList ignore; |
1e8b180d3eb1
[svn] Bunch of work from the transatlantic airplane flight...since this is a ton of
icculus
parents:
55
diff
changeset
|
312 |
OutputList *output_stack[2]; |
109
48e95cf41505
Added "passthrough" profile, which just sends the bytecode through unchanged;
Ryan C. Gordon <icculus@icculus.org>
parents:
108
diff
changeset
|
313 |
uint8 *output_bytes; // can be used instead of the OutputLists. |
56
1e8b180d3eb1
[svn] Bunch of work from the transatlantic airplane flight...since this is a ton of
icculus
parents:
55
diff
changeset
|
314 |
int indent_stack[2]; |
1e8b180d3eb1
[svn] Bunch of work from the transatlantic airplane flight...since this is a ton of
icculus
parents:
55
diff
changeset
|
315 |
int output_stack_len; |
54
b2b64d39df0f
[svn] Split up output into several lists, so GLSL profile can insert lines of text
icculus
parents:
51
diff
changeset
|
316 |
int output_len; // total strlen; prevents walking the lists just to malloc. |
40
f54f1635ac8a
[svn] Filling in some initial GLSL output. Not even close to done!
icculus
parents:
39
diff
changeset
|
317 |
int indent; |
18
0dbdb2be8bf8
[svn] Bunch More Work. Cleanups, added app-supplied allocators, flexible output, etc.
icculus
parents:
17
diff
changeset
|
318 |
const char *endline; |
0dbdb2be8bf8
[svn] Bunch More Work. Cleanups, added app-supplied allocators, flexible output, etc.
icculus
parents:
17
diff
changeset
|
319 |
int endline_len; |
0dbdb2be8bf8
[svn] Bunch More Work. Cleanups, added app-supplied allocators, flexible output, etc.
icculus
parents:
17
diff
changeset
|
320 |
const char *failstr; |
34 | 321 |
char scratch[SCRATCH_BUFFERS][SCRATCH_BUFFER_SIZE]; |
18
0dbdb2be8bf8
[svn] Bunch More Work. Cleanups, added app-supplied allocators, flexible output, etc.
icculus
parents:
17
diff
changeset
|
322 |
int scratchidx; // current scratch buffer. |
0dbdb2be8bf8
[svn] Bunch More Work. Cleanups, added app-supplied allocators, flexible output, etc.
icculus
parents:
17
diff
changeset
|
323 |
int profileid; |
34 | 324 |
const Profile *profile; |
96
bc416e2b9de1
Removed convenience typedef.
Ryan C. Gordon <icculus@icculus.org>
parents:
95
diff
changeset
|
325 |
MOJOSHADER_shaderType shader_type; |
46 | 326 |
uint8 major_ver; |
327 |
uint8 minor_ver; |
|
161
a0e1920ce909
Removed "dest_args" array...it's only ever one structure.
Ryan C. Gordon <icculus@icculus.org>
parents:
160
diff
changeset
|
328 |
DestArgInfo dest_arg; |
56
1e8b180d3eb1
[svn] Bunch of work from the transatlantic airplane flight...since this is a ton of
icculus
parents:
55
diff
changeset
|
329 |
SourceArgInfo source_args[5]; |
139
a7695f68cbff
First shot at predicated instruction support.
Ryan C. Gordon <icculus@icculus.org>
parents:
138
diff
changeset
|
330 |
SourceArgInfo predicate_arg; // for predicated instructions. |
31 | 331 |
uint32 dwords[4]; |
46 | 332 |
int instruction_count; |
28 | 333 |
uint32 instruction_controls; |
56
1e8b180d3eb1
[svn] Bunch of work from the transatlantic airplane flight...since this is a ton of
icculus
parents:
55
diff
changeset
|
334 |
uint32 previous_opcode; |
1e8b180d3eb1
[svn] Bunch of work from the transatlantic airplane flight...since this is a ton of
icculus
parents:
55
diff
changeset
|
335 |
ContextFlags flags; |
139
a7695f68cbff
First shot at predicated instruction support.
Ryan C. Gordon <icculus@icculus.org>
parents:
138
diff
changeset
|
336 |
int predicated; |
56
1e8b180d3eb1
[svn] Bunch of work from the transatlantic airplane flight...since this is a ton of
icculus
parents:
55
diff
changeset
|
337 |
int loops; |
114
3b8cf84b46b8
Implemented REP and ENDREP in the GLSL profile.
Ryan C. Gordon <icculus@icculus.org>
parents:
112
diff
changeset
|
338 |
int reps; |
118
6aa56b497f4e
Sorta implemented CMP for GLSL profile.
Ryan C. Gordon <icculus@icculus.org>
parents:
117
diff
changeset
|
339 |
int cmps; |
82
dc7ad4cea75b
Keep a list of used/defined registers.
Ryan C. Gordon <icculus@icculus.org>
parents:
81
diff
changeset
|
340 |
RegisterList used_registers; |
dc7ad4cea75b
Keep a list of used/defined registers.
Ryan C. Gordon <icculus@icculus.org>
parents:
81
diff
changeset
|
341 |
RegisterList defined_registers; |
95
56af2093eefe
Implemented uniform reporting.
Ryan C. Gordon <icculus@icculus.org>
parents:
93
diff
changeset
|
342 |
int uniform_count; |
56af2093eefe
Implemented uniform reporting.
Ryan C. Gordon <icculus@icculus.org>
parents:
93
diff
changeset
|
343 |
RegisterList uniforms; |
104
7019f99f17d0
Attribute parsing is closer to correct now.
Ryan C. Gordon <icculus@icculus.org>
parents:
103
diff
changeset
|
344 |
int attribute_count; |
7019f99f17d0
Attribute parsing is closer to correct now.
Ryan C. Gordon <icculus@icculus.org>
parents:
103
diff
changeset
|
345 |
RegisterList attributes; |
148
645003ec6623
Hopefully sorted out the reported uniform/attribute mess.
Ryan C. Gordon <icculus@icculus.org>
parents:
145
diff
changeset
|
346 |
int sampler_count; |
645003ec6623
Hopefully sorted out the reported uniform/attribute mess.
Ryan C. Gordon <icculus@icculus.org>
parents:
145
diff
changeset
|
347 |
RegisterList samplers; |
18
0dbdb2be8bf8
[svn] Bunch More Work. Cleanups, added app-supplied allocators, flexible output, etc.
icculus
parents:
17
diff
changeset
|
348 |
}; |
0dbdb2be8bf8
[svn] Bunch More Work. Cleanups, added app-supplied allocators, flexible output, etc.
icculus
parents:
17
diff
changeset
|
349 |
|
0dbdb2be8bf8
[svn] Bunch More Work. Cleanups, added app-supplied allocators, flexible output, etc.
icculus
parents:
17
diff
changeset
|
350 |
|
97
4a41e3d17297
Allow instance data to be passed to the allocator.
Ryan C. Gordon <icculus@icculus.org>
parents:
96
diff
changeset
|
351 |
// Convenience functions for allocators... |
4a41e3d17297
Allow instance data to be passed to the allocator.
Ryan C. Gordon <icculus@icculus.org>
parents:
96
diff
changeset
|
352 |
|
194
8de489efc811
Malloc() now handles calling out_of_memory() if necessary.
Ryan C. Gordon <icculus@icculus.org>
parents:
193
diff
changeset
|
353 |
static MOJOSHADER_parseData out_of_mem_data = { |
8de489efc811
Malloc() now handles calling out_of_memory() if necessary.
Ryan C. Gordon <icculus@icculus.org>
parents:
193
diff
changeset
|
354 |
"Out of memory", 0, 0, 0, 0, MOJOSHADER_TYPE_UNKNOWN, 0, 0, 0, 0 |
8de489efc811
Malloc() now handles calling out_of_memory() if necessary.
Ryan C. Gordon <icculus@icculus.org>
parents:
193
diff
changeset
|
355 |
}; |
8de489efc811
Malloc() now handles calling out_of_memory() if necessary.
Ryan C. Gordon <icculus@icculus.org>
parents:
193
diff
changeset
|
356 |
|
8de489efc811
Malloc() now handles calling out_of_memory() if necessary.
Ryan C. Gordon <icculus@icculus.org>
parents:
193
diff
changeset
|
357 |
static const char *out_of_mem_str = "Out of memory"; |
8de489efc811
Malloc() now handles calling out_of_memory() if necessary.
Ryan C. Gordon <icculus@icculus.org>
parents:
193
diff
changeset
|
358 |
static inline int out_of_memory(Context *ctx) |
8de489efc811
Malloc() now handles calling out_of_memory() if necessary.
Ryan C. Gordon <icculus@icculus.org>
parents:
193
diff
changeset
|
359 |
{ |
8de489efc811
Malloc() now handles calling out_of_memory() if necessary.
Ryan C. Gordon <icculus@icculus.org>
parents:
193
diff
changeset
|
360 |
if (ctx->failstr == NULL) |
8de489efc811
Malloc() now handles calling out_of_memory() if necessary.
Ryan C. Gordon <icculus@icculus.org>
parents:
193
diff
changeset
|
361 |
ctx->failstr = out_of_mem_str; // fail() would call malloc(). |
8de489efc811
Malloc() now handles calling out_of_memory() if necessary.
Ryan C. Gordon <icculus@icculus.org>
parents:
193
diff
changeset
|
362 |
return FAIL; |
8de489efc811
Malloc() now handles calling out_of_memory() if necessary.
Ryan C. Gordon <icculus@icculus.org>
parents:
193
diff
changeset
|
363 |
} // out_of_memory |
8de489efc811
Malloc() now handles calling out_of_memory() if necessary.
Ryan C. Gordon <icculus@icculus.org>
parents:
193
diff
changeset
|
364 |
|
8de489efc811
Malloc() now handles calling out_of_memory() if necessary.
Ryan C. Gordon <icculus@icculus.org>
parents:
193
diff
changeset
|
365 |
static inline void *Malloc(Context *ctx, const int len) |
8de489efc811
Malloc() now handles calling out_of_memory() if necessary.
Ryan C. Gordon <icculus@icculus.org>
parents:
193
diff
changeset
|
366 |
{ |
8de489efc811
Malloc() now handles calling out_of_memory() if necessary.
Ryan C. Gordon <icculus@icculus.org>
parents:
193
diff
changeset
|
367 |
void *retval = ctx->malloc(len, ctx->malloc_data); |
8de489efc811
Malloc() now handles calling out_of_memory() if necessary.
Ryan C. Gordon <icculus@icculus.org>
parents:
193
diff
changeset
|
368 |
if (retval == NULL) |
8de489efc811
Malloc() now handles calling out_of_memory() if necessary.
Ryan C. Gordon <icculus@icculus.org>
parents:
193
diff
changeset
|
369 |
out_of_memory(ctx); |
8de489efc811
Malloc() now handles calling out_of_memory() if necessary.
Ryan C. Gordon <icculus@icculus.org>
parents:
193
diff
changeset
|
370 |
return retval; |
97
4a41e3d17297
Allow instance data to be passed to the allocator.
Ryan C. Gordon <icculus@icculus.org>
parents:
96
diff
changeset
|
371 |
} // Malloc |
4a41e3d17297
Allow instance data to be passed to the allocator.
Ryan C. Gordon <icculus@icculus.org>
parents:
96
diff
changeset
|
372 |
|
4a41e3d17297
Allow instance data to be passed to the allocator.
Ryan C. Gordon <icculus@icculus.org>
parents:
96
diff
changeset
|
373 |
|
194
8de489efc811
Malloc() now handles calling out_of_memory() if necessary.
Ryan C. Gordon <icculus@icculus.org>
parents:
193
diff
changeset
|
374 |
static inline void Free(Context *ctx, void *ptr) |
126
556779e8a6d7
Minor tweaks to Malloc() and Free() convenience functions.
Ryan C. Gordon <icculus@icculus.org>
parents:
124
diff
changeset
|
375 |
{ |
556779e8a6d7
Minor tweaks to Malloc() and Free() convenience functions.
Ryan C. Gordon <icculus@icculus.org>
parents:
124
diff
changeset
|
376 |
if (ptr != NULL) // check for NULL in case of dumb free() impl. |
99
20d0bb294e9e
Check for NULL in Free().
Ryan C. Gordon <icculus@icculus.org>
parents:
98
diff
changeset
|
377 |
ctx->free(ptr, ctx->malloc_data); |
97
4a41e3d17297
Allow instance data to be passed to the allocator.
Ryan C. Gordon <icculus@icculus.org>
parents:
96
diff
changeset
|
378 |
} // Free |
4a41e3d17297
Allow instance data to be passed to the allocator.
Ryan C. Gordon <icculus@icculus.org>
parents:
96
diff
changeset
|
379 |
|
4a41e3d17297
Allow instance data to be passed to the allocator.
Ryan C. Gordon <icculus@icculus.org>
parents:
96
diff
changeset
|
380 |
|
56
1e8b180d3eb1
[svn] Bunch of work from the transatlantic airplane flight...since this is a ton of
icculus
parents:
55
diff
changeset
|
381 |
// jump between output sections in the context... |
1e8b180d3eb1
[svn] Bunch of work from the transatlantic airplane flight...since this is a ton of
icculus
parents:
55
diff
changeset
|
382 |
|
1e8b180d3eb1
[svn] Bunch of work from the transatlantic airplane flight...since this is a ton of
icculus
parents:
55
diff
changeset
|
383 |
static inline void push_output(Context *ctx, OutputList *section) |
1e8b180d3eb1
[svn] Bunch of work from the transatlantic airplane flight...since this is a ton of
icculus
parents:
55
diff
changeset
|
384 |
{ |
1e8b180d3eb1
[svn] Bunch of work from the transatlantic airplane flight...since this is a ton of
icculus
parents:
55
diff
changeset
|
385 |
assert(ctx->output_stack_len < STATICARRAYLEN(ctx->output_stack)); |
1e8b180d3eb1
[svn] Bunch of work from the transatlantic airplane flight...since this is a ton of
icculus
parents:
55
diff
changeset
|
386 |
ctx->output_stack[ctx->output_stack_len] = ctx->output; |
1e8b180d3eb1
[svn] Bunch of work from the transatlantic airplane flight...since this is a ton of
icculus
parents:
55
diff
changeset
|
387 |
ctx->indent_stack[ctx->output_stack_len] = ctx->indent; |
1e8b180d3eb1
[svn] Bunch of work from the transatlantic airplane flight...since this is a ton of
icculus
parents:
55
diff
changeset
|
388 |
ctx->output_stack_len++; |
1e8b180d3eb1
[svn] Bunch of work from the transatlantic airplane flight...since this is a ton of
icculus
parents:
55
diff
changeset
|
389 |
ctx->output = section; |
1e8b180d3eb1
[svn] Bunch of work from the transatlantic airplane flight...since this is a ton of
icculus
parents:
55
diff
changeset
|
390 |
ctx->indent = 0; |
1e8b180d3eb1
[svn] Bunch of work from the transatlantic airplane flight...since this is a ton of
icculus
parents:
55
diff
changeset
|
391 |
} // push_output |
1e8b180d3eb1
[svn] Bunch of work from the transatlantic airplane flight...since this is a ton of
icculus
parents:
55
diff
changeset
|
392 |
|
1e8b180d3eb1
[svn] Bunch of work from the transatlantic airplane flight...since this is a ton of
icculus
parents:
55
diff
changeset
|
393 |
static inline void pop_output(Context *ctx) |
1e8b180d3eb1
[svn] Bunch of work from the transatlantic airplane flight...since this is a ton of
icculus
parents:
55
diff
changeset
|
394 |
{ |
1e8b180d3eb1
[svn] Bunch of work from the transatlantic airplane flight...since this is a ton of
icculus
parents:
55
diff
changeset
|
395 |
assert(ctx->output_stack_len > 0); |
1e8b180d3eb1
[svn] Bunch of work from the transatlantic airplane flight...since this is a ton of
icculus
parents:
55
diff
changeset
|
396 |
ctx->output_stack_len--; |
1e8b180d3eb1
[svn] Bunch of work from the transatlantic airplane flight...since this is a ton of
icculus
parents:
55
diff
changeset
|
397 |
ctx->output = ctx->output_stack[ctx->output_stack_len]; |
1e8b180d3eb1
[svn] Bunch of work from the transatlantic airplane flight...since this is a ton of
icculus
parents:
55
diff
changeset
|
398 |
ctx->indent = ctx->indent_stack[ctx->output_stack_len]; |
1e8b180d3eb1
[svn] Bunch of work from the transatlantic airplane flight...since this is a ton of
icculus
parents:
55
diff
changeset
|
399 |
} // pop_output |
1e8b180d3eb1
[svn] Bunch of work from the transatlantic airplane flight...since this is a ton of
icculus
parents:
55
diff
changeset
|
400 |
|
1e8b180d3eb1
[svn] Bunch of work from the transatlantic airplane flight...since this is a ton of
icculus
parents:
55
diff
changeset
|
401 |
|
1e8b180d3eb1
[svn] Bunch of work from the transatlantic airplane flight...since this is a ton of
icculus
parents:
55
diff
changeset
|
402 |
|
1e8b180d3eb1
[svn] Bunch of work from the transatlantic airplane flight...since this is a ton of
icculus
parents:
55
diff
changeset
|
403 |
// Shader model version magic... |
1e8b180d3eb1
[svn] Bunch of work from the transatlantic airplane flight...since this is a ton of
icculus
parents:
55
diff
changeset
|
404 |
|
43
2f5d9a656dff
[svn] Bunch More Work. Cleaned up some lingering opcode drama, and state machine
icculus
parents:
42
diff
changeset
|
405 |
static inline uint32 ver_ui32(const uint8 major, const uint8 minor) |
2f5d9a656dff
[svn] Bunch More Work. Cleaned up some lingering opcode drama, and state machine
icculus
parents:
42
diff
changeset
|
406 |
{ |
2f5d9a656dff
[svn] Bunch More Work. Cleaned up some lingering opcode drama, and state machine
icculus
parents:
42
diff
changeset
|
407 |
return ( (((uint32) major) << 16) | (((minor) == 0xFF) ? 0 : (minor)) ); |
2f5d9a656dff
[svn] Bunch More Work. Cleaned up some lingering opcode drama, and state machine
icculus
parents:
42
diff
changeset
|
408 |
} // version_ui32 |
2f5d9a656dff
[svn] Bunch More Work. Cleaned up some lingering opcode drama, and state machine
icculus
parents:
42
diff
changeset
|
409 |
|
151
1667680fe402
Cleaned up tests for shader type and version.
Ryan C. Gordon <icculus@icculus.org>
parents:
150
diff
changeset
|
410 |
static inline int shader_version_supported(const uint8 maj, const uint8 min) |
43
2f5d9a656dff
[svn] Bunch More Work. Cleaned up some lingering opcode drama, and state machine
icculus
parents:
42
diff
changeset
|
411 |
{ |
2f5d9a656dff
[svn] Bunch More Work. Cleaned up some lingering opcode drama, and state machine
icculus
parents:
42
diff
changeset
|
412 |
return (ver_ui32(maj,min) <= ver_ui32(MAX_SHADER_MAJOR, MAX_SHADER_MINOR)); |
2f5d9a656dff
[svn] Bunch More Work. Cleaned up some lingering opcode drama, and state machine
icculus
parents:
42
diff
changeset
|
413 |
} // shader_version_supported |
2f5d9a656dff
[svn] Bunch More Work. Cleaned up some lingering opcode drama, and state machine
icculus
parents:
42
diff
changeset
|
414 |
|
151
1667680fe402
Cleaned up tests for shader type and version.
Ryan C. Gordon <icculus@icculus.org>
parents:
150
diff
changeset
|
415 |
static inline int shader_version_atleast(const Context *ctx, const uint8 maj, |
1667680fe402
Cleaned up tests for shader type and version.
Ryan C. Gordon <icculus@icculus.org>
parents:
150
diff
changeset
|
416 |
const uint8 min) |
43
2f5d9a656dff
[svn] Bunch More Work. Cleaned up some lingering opcode drama, and state machine
icculus
parents:
42
diff
changeset
|
417 |
{ |
2f5d9a656dff
[svn] Bunch More Work. Cleaned up some lingering opcode drama, and state machine
icculus
parents:
42
diff
changeset
|
418 |
return (ver_ui32(ctx->major_ver, ctx->minor_ver) >= ver_ui32(maj, min)); |
2f5d9a656dff
[svn] Bunch More Work. Cleaned up some lingering opcode drama, and state machine
icculus
parents:
42
diff
changeset
|
419 |
} // shader_version_atleast |
2f5d9a656dff
[svn] Bunch More Work. Cleaned up some lingering opcode drama, and state machine
icculus
parents:
42
diff
changeset
|
420 |
|
151
1667680fe402
Cleaned up tests for shader type and version.
Ryan C. Gordon <icculus@icculus.org>
parents:
150
diff
changeset
|
421 |
static inline int shader_is_pixel(const Context *ctx) |
1667680fe402
Cleaned up tests for shader type and version.
Ryan C. Gordon <icculus@icculus.org>
parents:
150
diff
changeset
|
422 |
{ |
1667680fe402
Cleaned up tests for shader type and version.
Ryan C. Gordon <icculus@icculus.org>
parents:
150
diff
changeset
|
423 |
return (ctx->shader_type == MOJOSHADER_TYPE_PIXEL); |
1667680fe402
Cleaned up tests for shader type and version.
Ryan C. Gordon <icculus@icculus.org>
parents:
150
diff
changeset
|
424 |
} // shader_is_pixel |
1667680fe402
Cleaned up tests for shader type and version.
Ryan C. Gordon <icculus@icculus.org>
parents:
150
diff
changeset
|
425 |
|
1667680fe402
Cleaned up tests for shader type and version.
Ryan C. Gordon <icculus@icculus.org>
parents:
150
diff
changeset
|
426 |
static inline int shader_is_vertex(const Context *ctx) |
1667680fe402
Cleaned up tests for shader type and version.
Ryan C. Gordon <icculus@icculus.org>
parents:
150
diff
changeset
|
427 |
{ |
1667680fe402
Cleaned up tests for shader type and version.
Ryan C. Gordon <icculus@icculus.org>
parents:
150
diff
changeset
|
428 |
return (ctx->shader_type == MOJOSHADER_TYPE_VERTEX); |
1667680fe402
Cleaned up tests for shader type and version.
Ryan C. Gordon <icculus@icculus.org>
parents:
150
diff
changeset
|
429 |
} // shader_is_vertex |
1667680fe402
Cleaned up tests for shader type and version.
Ryan C. Gordon <icculus@icculus.org>
parents:
150
diff
changeset
|
430 |
|
43
2f5d9a656dff
[svn] Bunch More Work. Cleaned up some lingering opcode drama, and state machine
icculus
parents:
42
diff
changeset
|
431 |
|
56
1e8b180d3eb1
[svn] Bunch of work from the transatlantic airplane flight...since this is a ton of
icculus
parents:
55
diff
changeset
|
432 |
// Bit arrays (for storing large arrays of booleans... |
1e8b180d3eb1
[svn] Bunch of work from the transatlantic airplane flight...since this is a ton of
icculus
parents:
55
diff
changeset
|
433 |
|
18
0dbdb2be8bf8
[svn] Bunch More Work. Cleanups, added app-supplied allocators, flexible output, etc.
icculus
parents:
17
diff
changeset
|
434 |
static inline char *get_scratch_buffer(Context *ctx) |
0dbdb2be8bf8
[svn] Bunch More Work. Cleanups, added app-supplied allocators, flexible output, etc.
icculus
parents:
17
diff
changeset
|
435 |
{ |
34 | 436 |
ctx->scratchidx = (ctx->scratchidx + 1) % SCRATCH_BUFFERS; |
18
0dbdb2be8bf8
[svn] Bunch More Work. Cleanups, added app-supplied allocators, flexible output, etc.
icculus
parents:
17
diff
changeset
|
437 |
return ctx->scratch[ctx->scratchidx]; |
12
d81712dd1a46
[svn] Cleaned up and improved output and fail state.
icculus
parents:
11
diff
changeset
|
438 |
} // get_scratch_buffer |
d81712dd1a46
[svn] Cleaned up and improved output and fail state.
icculus
parents:
11
diff
changeset
|
439 |
|
d81712dd1a46
[svn] Cleaned up and improved output and fail state.
icculus
parents:
11
diff
changeset
|
440 |
|
48 | 441 |
static inline int isfail(const Context *ctx) |
44
5d56cf8b4571
[svn] Cleaned up fail check, parse_args and state machine semantics, and added check
icculus
parents:
43
diff
changeset
|
442 |
{ |
5d56cf8b4571
[svn] Cleaned up fail check, parse_args and state machine semantics, and added check
icculus
parents:
43
diff
changeset
|
443 |
return (ctx->failstr != NULL); |
5d56cf8b4571
[svn] Cleaned up fail check, parse_args and state machine semantics, and added check
icculus
parents:
43
diff
changeset
|
444 |
} // isfail |
5d56cf8b4571
[svn] Cleaned up fail check, parse_args and state machine semantics, and added check
icculus
parents:
43
diff
changeset
|
445 |
|
5d56cf8b4571
[svn] Cleaned up fail check, parse_args and state machine semantics, and added check
icculus
parents:
43
diff
changeset
|
446 |
|
18
0dbdb2be8bf8
[svn] Bunch More Work. Cleanups, added app-supplied allocators, flexible output, etc.
icculus
parents:
17
diff
changeset
|
447 |
static int failf(Context *ctx, const char *fmt, ...) ISPRINTF(2,3); |
0dbdb2be8bf8
[svn] Bunch More Work. Cleanups, added app-supplied allocators, flexible output, etc.
icculus
parents:
17
diff
changeset
|
448 |
static int failf(Context *ctx, const char *fmt, ...) |
12
d81712dd1a46
[svn] Cleaned up and improved output and fail state.
icculus
parents:
11
diff
changeset
|
449 |
{ |
d81712dd1a46
[svn] Cleaned up and improved output and fail state.
icculus
parents:
11
diff
changeset
|
450 |
if (ctx->failstr == NULL) // don't change existing error. |
d81712dd1a46
[svn] Cleaned up and improved output and fail state.
icculus
parents:
11
diff
changeset
|
451 |
{ |
18
0dbdb2be8bf8
[svn] Bunch More Work. Cleanups, added app-supplied allocators, flexible output, etc.
icculus
parents:
17
diff
changeset
|
452 |
char *scratch = get_scratch_buffer(ctx); |
12
d81712dd1a46
[svn] Cleaned up and improved output and fail state.
icculus
parents:
11
diff
changeset
|
453 |
va_list ap; |
d81712dd1a46
[svn] Cleaned up and improved output and fail state.
icculus
parents:
11
diff
changeset
|
454 |
va_start(ap, fmt); |
141
997857107c39
Attempt to optimize CMP and CND in GLSL profile.
Ryan C. Gordon <icculus@icculus.org>
parents:
140
diff
changeset
|
455 |
const int len = vsnprintf(scratch, SCRATCH_BUFFER_SIZE, fmt, ap); |
12
d81712dd1a46
[svn] Cleaned up and improved output and fail state.
icculus
parents:
11
diff
changeset
|
456 |
va_end(ap); |
d81712dd1a46
[svn] Cleaned up and improved output and fail state.
icculus
parents:
11
diff
changeset
|
457 |
|
97
4a41e3d17297
Allow instance data to be passed to the allocator.
Ryan C. Gordon <icculus@icculus.org>
parents:
96
diff
changeset
|
458 |
char *failstr = (char *) Malloc(ctx, len + 1); |
194
8de489efc811
Malloc() now handles calling out_of_memory() if necessary.
Ryan C. Gordon <icculus@icculus.org>
parents:
193
diff
changeset
|
459 |
if (failstr != NULL) |
18
0dbdb2be8bf8
[svn] Bunch More Work. Cleanups, added app-supplied allocators, flexible output, etc.
icculus
parents:
17
diff
changeset
|
460 |
{ |
0dbdb2be8bf8
[svn] Bunch More Work. Cleanups, added app-supplied allocators, flexible output, etc.
icculus
parents:
17
diff
changeset
|
461 |
// see comments about scratch buffer overflow in output_line(). |
34 | 462 |
if (len < SCRATCH_BUFFER_SIZE) |
18
0dbdb2be8bf8
[svn] Bunch More Work. Cleanups, added app-supplied allocators, flexible output, etc.
icculus
parents:
17
diff
changeset
|
463 |
strcpy(failstr, scratch); // copy it over. |
0dbdb2be8bf8
[svn] Bunch More Work. Cleanups, added app-supplied allocators, flexible output, etc.
icculus
parents:
17
diff
changeset
|
464 |
else |
0dbdb2be8bf8
[svn] Bunch More Work. Cleanups, added app-supplied allocators, flexible output, etc.
icculus
parents:
17
diff
changeset
|
465 |
{ |
0dbdb2be8bf8
[svn] Bunch More Work. Cleanups, added app-supplied allocators, flexible output, etc.
icculus
parents:
17
diff
changeset
|
466 |
va_start(ap, fmt); |
0dbdb2be8bf8
[svn] Bunch More Work. Cleanups, added app-supplied allocators, flexible output, etc.
icculus
parents:
17
diff
changeset
|
467 |
vsnprintf(failstr, len + 1, fmt, ap); // rebuild it. |
0dbdb2be8bf8
[svn] Bunch More Work. Cleanups, added app-supplied allocators, flexible output, etc.
icculus
parents:
17
diff
changeset
|
468 |
va_end(ap); |
0dbdb2be8bf8
[svn] Bunch More Work. Cleanups, added app-supplied allocators, flexible output, etc.
icculus
parents:
17
diff
changeset
|
469 |
} // else |
0dbdb2be8bf8
[svn] Bunch More Work. Cleanups, added app-supplied allocators, flexible output, etc.
icculus
parents:
17
diff
changeset
|
470 |
ctx->failstr = failstr; |
194
8de489efc811
Malloc() now handles calling out_of_memory() if necessary.
Ryan C. Gordon <icculus@icculus.org>
parents:
193
diff
changeset
|
471 |
} // if |
12
d81712dd1a46
[svn] Cleaned up and improved output and fail state.
icculus
parents:
11
diff
changeset
|
472 |
} // if |
d81712dd1a46
[svn] Cleaned up and improved output and fail state.
icculus
parents:
11
diff
changeset
|
473 |
|
d81712dd1a46
[svn] Cleaned up and improved output and fail state.
icculus
parents:
11
diff
changeset
|
474 |
return FAIL; |
d81712dd1a46
[svn] Cleaned up and improved output and fail state.
icculus
parents:
11
diff
changeset
|
475 |
} // failf |
d81712dd1a46
[svn] Cleaned up and improved output and fail state.
icculus
parents:
11
diff
changeset
|
476 |
|
d81712dd1a46
[svn] Cleaned up and improved output and fail state.
icculus
parents:
11
diff
changeset
|
477 |
|
18
0dbdb2be8bf8
[svn] Bunch More Work. Cleanups, added app-supplied allocators, flexible output, etc.
icculus
parents:
17
diff
changeset
|
478 |
static inline int fail(Context *ctx, const char *reason) |
12
d81712dd1a46
[svn] Cleaned up and improved output and fail state.
icculus
parents:
11
diff
changeset
|
479 |
{ |
d81712dd1a46
[svn] Cleaned up and improved output and fail state.
icculus
parents:
11
diff
changeset
|
480 |
return failf(ctx, "%s", reason); |
d81712dd1a46
[svn] Cleaned up and improved output and fail state.
icculus
parents:
11
diff
changeset
|
481 |
} // fail |
d81712dd1a46
[svn] Cleaned up and improved output and fail state.
icculus
parents:
11
diff
changeset
|
482 |
|
d81712dd1a46
[svn] Cleaned up and improved output and fail state.
icculus
parents:
11
diff
changeset
|
483 |
|
18
0dbdb2be8bf8
[svn] Bunch More Work. Cleanups, added app-supplied allocators, flexible output, etc.
icculus
parents:
17
diff
changeset
|
484 |
static int output_line(Context *ctx, const char *fmt, ...) ISPRINTF(2,3); |
0dbdb2be8bf8
[svn] Bunch More Work. Cleanups, added app-supplied allocators, flexible output, etc.
icculus
parents:
17
diff
changeset
|
485 |
static int output_line(Context *ctx, const char *fmt, ...) |
7 | 486 |
{ |
54
b2b64d39df0f
[svn] Split up output into several lists, so GLSL profile can insert lines of text
icculus
parents:
51
diff
changeset
|
487 |
OutputListNode *item = NULL; |
b2b64d39df0f
[svn] Split up output into several lists, so GLSL profile can insert lines of text
icculus
parents:
51
diff
changeset
|
488 |
|
44
5d56cf8b4571
[svn] Cleaned up fail check, parse_args and state machine semantics, and added check
icculus
parents:
43
diff
changeset
|
489 |
if (isfail(ctx)) |
12
d81712dd1a46
[svn] Cleaned up and improved output and fail state.
icculus
parents:
11
diff
changeset
|
490 |
return FAIL; // we failed previously, don't go on... |
d81712dd1a46
[svn] Cleaned up and improved output and fail state.
icculus
parents:
11
diff
changeset
|
491 |
|
18
0dbdb2be8bf8
[svn] Bunch More Work. Cleanups, added app-supplied allocators, flexible output, etc.
icculus
parents:
17
diff
changeset
|
492 |
char *scratch = get_scratch_buffer(ctx); |
40
f54f1635ac8a
[svn] Filling in some initial GLSL output. Not even close to done!
icculus
parents:
39
diff
changeset
|
493 |
|
f54f1635ac8a
[svn] Filling in some initial GLSL output. Not even close to done!
icculus
parents:
39
diff
changeset
|
494 |
const int indent = ctx->indent; |
41 | 495 |
if (indent > 0) |
496 |
memset(scratch, '\t', indent); |
|
56
1e8b180d3eb1
[svn] Bunch of work from the transatlantic airplane flight...since this is a ton of
icculus
parents:
55
diff
changeset
|
497 |
|
12
d81712dd1a46
[svn] Cleaned up and improved output and fail state.
icculus
parents:
11
diff
changeset
|
498 |
va_list ap; |
d81712dd1a46
[svn] Cleaned up and improved output and fail state.
icculus
parents:
11
diff
changeset
|
499 |
va_start(ap, fmt); |
40
f54f1635ac8a
[svn] Filling in some initial GLSL output. Not even close to done!
icculus
parents:
39
diff
changeset
|
500 |
const int len = vsnprintf(scratch+indent, SCRATCH_BUFFER_SIZE-indent, fmt, ap) + indent; |
12
d81712dd1a46
[svn] Cleaned up and improved output and fail state.
icculus
parents:
11
diff
changeset
|
501 |
va_end(ap); |
d81712dd1a46
[svn] Cleaned up and improved output and fail state.
icculus
parents:
11
diff
changeset
|
502 |
|
97
4a41e3d17297
Allow instance data to be passed to the allocator.
Ryan C. Gordon <icculus@icculus.org>
parents:
96
diff
changeset
|
503 |
item = (OutputListNode *) Malloc(ctx, sizeof (OutputListNode)); |
56
1e8b180d3eb1
[svn] Bunch of work from the transatlantic airplane flight...since this is a ton of
icculus
parents:
55
diff
changeset
|
504 |
if (item == NULL) |
194
8de489efc811
Malloc() now handles calling out_of_memory() if necessary.
Ryan C. Gordon <icculus@icculus.org>
parents:
193
diff
changeset
|
505 |
return FAIL; |
56
1e8b180d3eb1
[svn] Bunch of work from the transatlantic airplane flight...since this is a ton of
icculus
parents:
55
diff
changeset
|
506 |
|
97
4a41e3d17297
Allow instance data to be passed to the allocator.
Ryan C. Gordon <icculus@icculus.org>
parents:
96
diff
changeset
|
507 |
item->str = (char *) Malloc(ctx, len + 1); |
18
0dbdb2be8bf8
[svn] Bunch More Work. Cleanups, added app-supplied allocators, flexible output, etc.
icculus
parents:
17
diff
changeset
|
508 |
if (item->str == NULL) |
12
d81712dd1a46
[svn] Cleaned up and improved output and fail state.
icculus
parents:
11
diff
changeset
|
509 |
{ |
98
08b137beb1e3
Whoops, wrong free() call.
Ryan C. Gordon <icculus@icculus.org>
parents:
97
diff
changeset
|
510 |
Free(ctx, item); |
194
8de489efc811
Malloc() now handles calling out_of_memory() if necessary.
Ryan C. Gordon <icculus@icculus.org>
parents:
193
diff
changeset
|
511 |
return FAIL; |
12
d81712dd1a46
[svn] Cleaned up and improved output and fail state.
icculus
parents:
11
diff
changeset
|
512 |
} // if |
d81712dd1a46
[svn] Cleaned up and improved output and fail state.
icculus
parents:
11
diff
changeset
|
513 |
|
18
0dbdb2be8bf8
[svn] Bunch More Work. Cleanups, added app-supplied allocators, flexible output, etc.
icculus
parents:
17
diff
changeset
|
514 |
// If we overflowed our scratch buffer, that's okay. We were going to |
0dbdb2be8bf8
[svn] Bunch More Work. Cleanups, added app-supplied allocators, flexible output, etc.
icculus
parents:
17
diff
changeset
|
515 |
// allocate anyhow...the scratch buffer just lets us avoid a second |
0dbdb2be8bf8
[svn] Bunch More Work. Cleanups, added app-supplied allocators, flexible output, etc.
icculus
parents:
17
diff
changeset
|
516 |
// run of vsnprintf(). |
34 | 517 |
if (len < SCRATCH_BUFFER_SIZE) |
18
0dbdb2be8bf8
[svn] Bunch More Work. Cleanups, added app-supplied allocators, flexible output, etc.
icculus
parents:
17
diff
changeset
|
518 |
strcpy(item->str, scratch); // copy it over. |
0dbdb2be8bf8
[svn] Bunch More Work. Cleanups, added app-supplied allocators, flexible output, etc.
icculus
parents:
17
diff
changeset
|
519 |
else |
0dbdb2be8bf8
[svn] Bunch More Work. Cleanups, added app-supplied allocators, flexible output, etc.
icculus
parents:
17
diff
changeset
|
520 |
{ |
41 | 521 |
if (indent > 0) |
522 |
memset(item->str, '\t', indent); |
|
18
0dbdb2be8bf8
[svn] Bunch More Work. Cleanups, added app-supplied allocators, flexible output, etc.
icculus
parents:
17
diff
changeset
|
523 |
va_start(ap, fmt); |
40
f54f1635ac8a
[svn] Filling in some initial GLSL output. Not even close to done!
icculus
parents:
39
diff
changeset
|
524 |
vsnprintf(item->str+indent, len + 1, fmt, ap); // rebuild it. |
18
0dbdb2be8bf8
[svn] Bunch More Work. Cleanups, added app-supplied allocators, flexible output, etc.
icculus
parents:
17
diff
changeset
|
525 |
va_end(ap); |
0dbdb2be8bf8
[svn] Bunch More Work. Cleanups, added app-supplied allocators, flexible output, etc.
icculus
parents:
17
diff
changeset
|
526 |
} // else |
12
d81712dd1a46
[svn] Cleaned up and improved output and fail state.
icculus
parents:
11
diff
changeset
|
527 |
|
18
0dbdb2be8bf8
[svn] Bunch More Work. Cleanups, added app-supplied allocators, flexible output, etc.
icculus
parents:
17
diff
changeset
|
528 |
item->next = NULL; |
54
b2b64d39df0f
[svn] Split up output into several lists, so GLSL profile can insert lines of text
icculus
parents:
51
diff
changeset
|
529 |
|
b2b64d39df0f
[svn] Split up output into several lists, so GLSL profile can insert lines of text
icculus
parents:
51
diff
changeset
|
530 |
ctx->output->tail->next = item; |
b2b64d39df0f
[svn] Split up output into several lists, so GLSL profile can insert lines of text
icculus
parents:
51
diff
changeset
|
531 |
ctx->output->tail = item; |
18
0dbdb2be8bf8
[svn] Bunch More Work. Cleanups, added app-supplied allocators, flexible output, etc.
icculus
parents:
17
diff
changeset
|
532 |
ctx->output_len += len + ctx->endline_len; |
54
b2b64d39df0f
[svn] Split up output into several lists, so GLSL profile can insert lines of text
icculus
parents:
51
diff
changeset
|
533 |
|
12
d81712dd1a46
[svn] Cleaned up and improved output and fail state.
icculus
parents:
11
diff
changeset
|
534 |
return 0; |
d81712dd1a46
[svn] Cleaned up and improved output and fail state.
icculus
parents:
11
diff
changeset
|
535 |
} // output_line |
d81712dd1a46
[svn] Cleaned up and improved output and fail state.
icculus
parents:
11
diff
changeset
|
536 |
|
d81712dd1a46
[svn] Cleaned up and improved output and fail state.
icculus
parents:
11
diff
changeset
|
537 |
|
56
1e8b180d3eb1
[svn] Bunch of work from the transatlantic airplane flight...since this is a ton of
icculus
parents:
55
diff
changeset
|
538 |
// this is just to stop gcc whining. |
1e8b180d3eb1
[svn] Bunch of work from the transatlantic airplane flight...since this is a ton of
icculus
parents:
55
diff
changeset
|
539 |
static inline int output_blank_line(Context *ctx) |
1e8b180d3eb1
[svn] Bunch of work from the transatlantic airplane flight...since this is a ton of
icculus
parents:
55
diff
changeset
|
540 |
{ |
1e8b180d3eb1
[svn] Bunch of work from the transatlantic airplane flight...since this is a ton of
icculus
parents:
55
diff
changeset
|
541 |
return output_line(ctx, "%s", ""); |
1e8b180d3eb1
[svn] Bunch of work from the transatlantic airplane flight...since this is a ton of
icculus
parents:
55
diff
changeset
|
542 |
} // output_blank_line |
1e8b180d3eb1
[svn] Bunch of work from the transatlantic airplane flight...since this is a ton of
icculus
parents:
55
diff
changeset
|
543 |
|
1e8b180d3eb1
[svn] Bunch of work from the transatlantic airplane flight...since this is a ton of
icculus
parents:
55
diff
changeset
|
544 |
|
43
2f5d9a656dff
[svn] Bunch More Work. Cleaned up some lingering opcode drama, and state machine
icculus
parents:
42
diff
changeset
|
545 |
// !!! FIXME: this is sort of nasty. |
72
b193a3182dcd
Tweak floatstr() to produce strings the GLSL profile can use.
Ryan C. Gordon <icculus@icculus.org>
parents:
71
diff
changeset
|
546 |
static void floatstr(Context *ctx, char *buf, size_t bufsize, float f, |
b193a3182dcd
Tweak floatstr() to produce strings the GLSL profile can use.
Ryan C. Gordon <icculus@icculus.org>
parents:
71
diff
changeset
|
547 |
int leavedecimal) |
43
2f5d9a656dff
[svn] Bunch More Work. Cleaned up some lingering opcode drama, and state machine
icculus
parents:
42
diff
changeset
|
548 |
{ |
2f5d9a656dff
[svn] Bunch More Work. Cleaned up some lingering opcode drama, and state machine
icculus
parents:
42
diff
changeset
|
549 |
const size_t len = snprintf(buf, bufsize, "%f", f); |
72
b193a3182dcd
Tweak floatstr() to produce strings the GLSL profile can use.
Ryan C. Gordon <icculus@icculus.org>
parents:
71
diff
changeset
|
550 |
if ((len+2) >= bufsize) |
43
2f5d9a656dff
[svn] Bunch More Work. Cleaned up some lingering opcode drama, and state machine
icculus
parents:
42
diff
changeset
|
551 |
fail(ctx, "BUG: internal buffer is too small"); |
2f5d9a656dff
[svn] Bunch More Work. Cleaned up some lingering opcode drama, and state machine
icculus
parents:
42
diff
changeset
|
552 |
else |
2f5d9a656dff
[svn] Bunch More Work. Cleaned up some lingering opcode drama, and state machine
icculus
parents:
42
diff
changeset
|
553 |
{ |
2f5d9a656dff
[svn] Bunch More Work. Cleaned up some lingering opcode drama, and state machine
icculus
parents:
42
diff
changeset
|
554 |
char *end = buf + len; |
2f5d9a656dff
[svn] Bunch More Work. Cleaned up some lingering opcode drama, and state machine
icculus
parents:
42
diff
changeset
|
555 |
char *ptr = strchr(buf, '.'); |
2f5d9a656dff
[svn] Bunch More Work. Cleaned up some lingering opcode drama, and state machine
icculus
parents:
42
diff
changeset
|
556 |
if (ptr == NULL) |
72
b193a3182dcd
Tweak floatstr() to produce strings the GLSL profile can use.
Ryan C. Gordon <icculus@icculus.org>
parents:
71
diff
changeset
|
557 |
{ |
b193a3182dcd
Tweak floatstr() to produce strings the GLSL profile can use.
Ryan C. Gordon <icculus@icculus.org>
parents:
71
diff
changeset
|
558 |
if (leavedecimal) |
b193a3182dcd
Tweak floatstr() to produce strings the GLSL profile can use.
Ryan C. Gordon <icculus@icculus.org>
parents:
71
diff
changeset
|
559 |
strcat(buf, ".0"); |
43
2f5d9a656dff
[svn] Bunch More Work. Cleaned up some lingering opcode drama, and state machine
icculus
parents:
42
diff
changeset
|
560 |
return; // done. |
72
b193a3182dcd
Tweak floatstr() to produce strings the GLSL profile can use.
Ryan C. Gordon <icculus@icculus.org>
parents:
71
diff
changeset
|
561 |
} // if |
43
2f5d9a656dff
[svn] Bunch More Work. Cleaned up some lingering opcode drama, and state machine
icculus
parents:
42
diff
changeset
|
562 |
|
2f5d9a656dff
[svn] Bunch More Work. Cleaned up some lingering opcode drama, and state machine
icculus
parents:
42
diff
changeset
|
563 |
while (--end != ptr) |
2f5d9a656dff
[svn] Bunch More Work. Cleaned up some lingering opcode drama, and state machine
icculus
parents:
42
diff
changeset
|
564 |
{ |
2f5d9a656dff
[svn] Bunch More Work. Cleaned up some lingering opcode drama, and state machine
icculus
parents:
42
diff
changeset
|
565 |
if (*end != '0') |
2f5d9a656dff
[svn] Bunch More Work. Cleaned up some lingering opcode drama, and state machine
icculus
parents:
42
diff
changeset
|
566 |
{ |
2f5d9a656dff
[svn] Bunch More Work. Cleaned up some lingering opcode drama, and state machine
icculus
parents:
42
diff
changeset
|
567 |
end++; |
2f5d9a656dff
[svn] Bunch More Work. Cleaned up some lingering opcode drama, and state machine
icculus
parents:
42
diff
changeset
|
568 |
break; |
2f5d9a656dff
[svn] Bunch More Work. Cleaned up some lingering opcode drama, and state machine
icculus
parents:
42
diff
changeset
|
569 |
} // if |
2f5d9a656dff
[svn] Bunch More Work. Cleaned up some lingering opcode drama, and state machine
icculus
parents:
42
diff
changeset
|
570 |
} // while |
72
b193a3182dcd
Tweak floatstr() to produce strings the GLSL profile can use.
Ryan C. Gordon <icculus@icculus.org>
parents:
71
diff
changeset
|
571 |
if ((leavedecimal) && (end == ptr)) |
b193a3182dcd
Tweak floatstr() to produce strings the GLSL profile can use.
Ryan C. Gordon <icculus@icculus.org>
parents:
71
diff
changeset
|
572 |
end += 2; |
43
2f5d9a656dff
[svn] Bunch More Work. Cleaned up some lingering opcode drama, and state machine
icculus
parents:
42
diff
changeset
|
573 |
*end = '\0'; // chop extra '0' or all decimal places off. |
2f5d9a656dff
[svn] Bunch More Work. Cleaned up some lingering opcode drama, and state machine
icculus
parents:
42
diff
changeset
|
574 |
} // else |
2f5d9a656dff
[svn] Bunch More Work. Cleaned up some lingering opcode drama, and state machine
icculus
parents:
42
diff
changeset
|
575 |
} // floatstr |
2f5d9a656dff
[svn] Bunch More Work. Cleaned up some lingering opcode drama, and state machine
icculus
parents:
42
diff
changeset
|
576 |
|
17 | 577 |
|
82
dc7ad4cea75b
Keep a list of used/defined registers.
Ryan C. Gordon <icculus@icculus.org>
parents:
81
diff
changeset
|
578 |
// Deal with register lists... !!! FIXME: I sort of hate this. |
dc7ad4cea75b
Keep a list of used/defined registers.
Ryan C. Gordon <icculus@icculus.org>
parents:
81
diff
changeset
|
579 |
|
97
4a41e3d17297
Allow instance data to be passed to the allocator.
Ryan C. Gordon <icculus@icculus.org>
parents:
96
diff
changeset
|
580 |
static void free_reglist(MOJOSHADER_free f, void *d, RegisterList *item) |
82
dc7ad4cea75b
Keep a list of used/defined registers.
Ryan C. Gordon <icculus@icculus.org>
parents:
81
diff
changeset
|
581 |
{ |
dc7ad4cea75b
Keep a list of used/defined registers.
Ryan C. Gordon <icculus@icculus.org>
parents:
81
diff
changeset
|
582 |
while (item != NULL) |
dc7ad4cea75b
Keep a list of used/defined registers.
Ryan C. Gordon <icculus@icculus.org>
parents:
81
diff
changeset
|
583 |
{ |
dc7ad4cea75b
Keep a list of used/defined registers.
Ryan C. Gordon <icculus@icculus.org>
parents:
81
diff
changeset
|
584 |
RegisterList *next = item->next; |
97
4a41e3d17297
Allow instance data to be passed to the allocator.
Ryan C. Gordon <icculus@icculus.org>
parents:
96
diff
changeset
|
585 |
f(item, d); |
82
dc7ad4cea75b
Keep a list of used/defined registers.
Ryan C. Gordon <icculus@icculus.org>
parents:
81
diff
changeset
|
586 |
item = next; |
dc7ad4cea75b
Keep a list of used/defined registers.
Ryan C. Gordon <icculus@icculus.org>
parents:
81
diff
changeset
|
587 |
} // while |
dc7ad4cea75b
Keep a list of used/defined registers.
Ryan C. Gordon <icculus@icculus.org>
parents:
81
diff
changeset
|
588 |
} // free_reglist |
dc7ad4cea75b
Keep a list of used/defined registers.
Ryan C. Gordon <icculus@icculus.org>
parents:
81
diff
changeset
|
589 |
|
dc7ad4cea75b
Keep a list of used/defined registers.
Ryan C. Gordon <icculus@icculus.org>
parents:
81
diff
changeset
|
590 |
static inline uint32 reg_to_ui32(const RegisterType regtype, const int regnum) |
dc7ad4cea75b
Keep a list of used/defined registers.
Ryan C. Gordon <icculus@icculus.org>
parents:
81
diff
changeset
|
591 |
{ |
dc7ad4cea75b
Keep a list of used/defined registers.
Ryan C. Gordon <icculus@icculus.org>
parents:
81
diff
changeset
|
592 |
return ( ((uint32) regtype) | (((uint32) regnum) << 16) ); |
dc7ad4cea75b
Keep a list of used/defined registers.
Ryan C. Gordon <icculus@icculus.org>
parents:
81
diff
changeset
|
593 |
} // reg_to_uint32 |
dc7ad4cea75b
Keep a list of used/defined registers.
Ryan C. Gordon <icculus@icculus.org>
parents:
81
diff
changeset
|
594 |
|
104
7019f99f17d0
Attribute parsing is closer to correct now.
Ryan C. Gordon <icculus@icculus.org>
parents:
103
diff
changeset
|
595 |
static RegisterList *reglist_insert(Context *ctx, RegisterList *prev, |
7019f99f17d0
Attribute parsing is closer to correct now.
Ryan C. Gordon <icculus@icculus.org>
parents:
103
diff
changeset
|
596 |
const RegisterType regtype, |
7019f99f17d0
Attribute parsing is closer to correct now.
Ryan C. Gordon <icculus@icculus.org>
parents:
103
diff
changeset
|
597 |
const int regnum) |
82
dc7ad4cea75b
Keep a list of used/defined registers.
Ryan C. Gordon <icculus@icculus.org>
parents:
81
diff
changeset
|
598 |
{ |
dc7ad4cea75b
Keep a list of used/defined registers.
Ryan C. Gordon <icculus@icculus.org>
parents:
81
diff
changeset
|
599 |
const uint32 newval = reg_to_ui32(regtype, regnum); |
dc7ad4cea75b
Keep a list of used/defined registers.
Ryan C. Gordon <icculus@icculus.org>
parents:
81
diff
changeset
|
600 |
RegisterList *item = prev->next; |
dc7ad4cea75b
Keep a list of used/defined registers.
Ryan C. Gordon <icculus@icculus.org>
parents:
81
diff
changeset
|
601 |
while (item != NULL) |
dc7ad4cea75b
Keep a list of used/defined registers.
Ryan C. Gordon <icculus@icculus.org>
parents:
81
diff
changeset
|
602 |
{ |
dc7ad4cea75b
Keep a list of used/defined registers.
Ryan C. Gordon <icculus@icculus.org>
parents:
81
diff
changeset
|
603 |
const uint32 val = reg_to_ui32(item->regtype, item->regnum); |
dc7ad4cea75b
Keep a list of used/defined registers.
Ryan C. Gordon <icculus@icculus.org>
parents:
81
diff
changeset
|
604 |
if (newval == val) |
104
7019f99f17d0
Attribute parsing is closer to correct now.
Ryan C. Gordon <icculus@icculus.org>
parents:
103
diff
changeset
|
605 |
return item; // already set, so we're done. |
82
dc7ad4cea75b
Keep a list of used/defined registers.
Ryan C. Gordon <icculus@icculus.org>
parents:
81
diff
changeset
|
606 |
else if (newval < val) // insert it here. |
dc7ad4cea75b
Keep a list of used/defined registers.
Ryan C. Gordon <icculus@icculus.org>
parents:
81
diff
changeset
|
607 |
break; |
dc7ad4cea75b
Keep a list of used/defined registers.
Ryan C. Gordon <icculus@icculus.org>
parents:
81
diff
changeset
|
608 |
else // if (newval > val) |
dc7ad4cea75b
Keep a list of used/defined registers.
Ryan C. Gordon <icculus@icculus.org>
parents:
81
diff
changeset
|
609 |
{ |
dc7ad4cea75b
Keep a list of used/defined registers.
Ryan C. Gordon <icculus@icculus.org>
parents:
81
diff
changeset
|
610 |
// keep going, we're not to the insertion point yet. |
dc7ad4cea75b
Keep a list of used/defined registers.
Ryan C. Gordon <icculus@icculus.org>
parents:
81
diff
changeset
|
611 |
prev = item; |
dc7ad4cea75b
Keep a list of used/defined registers.
Ryan C. Gordon <icculus@icculus.org>
parents:
81
diff
changeset
|
612 |
item = item->next; |
dc7ad4cea75b
Keep a list of used/defined registers.
Ryan C. Gordon <icculus@icculus.org>
parents:
81
diff
changeset
|
613 |
} // else |
dc7ad4cea75b
Keep a list of used/defined registers.
Ryan C. Gordon <icculus@icculus.org>
parents:
81
diff
changeset
|
614 |
} // while |
dc7ad4cea75b
Keep a list of used/defined registers.
Ryan C. Gordon <icculus@icculus.org>
parents:
81
diff
changeset
|
615 |
|
dc7ad4cea75b
Keep a list of used/defined registers.
Ryan C. Gordon <icculus@icculus.org>
parents:
81
diff
changeset
|
616 |
// we need to insert an entry after (prev). |
97
4a41e3d17297
Allow instance data to be passed to the allocator.
Ryan C. Gordon <icculus@icculus.org>
parents:
96
diff
changeset
|
617 |
item = (RegisterList *) Malloc(ctx, sizeof (RegisterList)); |
194
8de489efc811
Malloc() now handles calling out_of_memory() if necessary.
Ryan C. Gordon <icculus@icculus.org>
parents:
193
diff
changeset
|
618 |
if (item != NULL) |
82
dc7ad4cea75b
Keep a list of used/defined registers.
Ryan C. Gordon <icculus@icculus.org>
parents:
81
diff
changeset
|
619 |
{ |
dc7ad4cea75b
Keep a list of used/defined registers.
Ryan C. Gordon <icculus@icculus.org>
parents:
81
diff
changeset
|
620 |
item->regtype = regtype; |
dc7ad4cea75b
Keep a list of used/defined registers.
Ryan C. Gordon <icculus@icculus.org>
parents:
81
diff
changeset
|
621 |
item->regnum = regnum; |
104
7019f99f17d0
Attribute parsing is closer to correct now.
Ryan C. Gordon <icculus@icculus.org>
parents:
103
diff
changeset
|
622 |
item->usage = 0; |
7019f99f17d0
Attribute parsing is closer to correct now.
Ryan C. Gordon <icculus@icculus.org>
parents:
103
diff
changeset
|
623 |
item->index = 0; |
7019f99f17d0
Attribute parsing is closer to correct now.
Ryan C. Gordon <icculus@icculus.org>
parents:
103
diff
changeset
|
624 |
item->writemask = 0; |
82
dc7ad4cea75b
Keep a list of used/defined registers.
Ryan C. Gordon <icculus@icculus.org>
parents:
81
diff
changeset
|
625 |
item->next = prev->next; |
dc7ad4cea75b
Keep a list of used/defined registers.
Ryan C. Gordon <icculus@icculus.org>
parents:
81
diff
changeset
|
626 |
prev->next = item; |
194
8de489efc811
Malloc() now handles calling out_of_memory() if necessary.
Ryan C. Gordon <icculus@icculus.org>
parents:
193
diff
changeset
|
627 |
} // if |
104
7019f99f17d0
Attribute parsing is closer to correct now.
Ryan C. Gordon <icculus@icculus.org>
parents:
103
diff
changeset
|
628 |
|
7019f99f17d0
Attribute parsing is closer to correct now.
Ryan C. Gordon <icculus@icculus.org>
parents:
103
diff
changeset
|
629 |
return item; |
82
dc7ad4cea75b
Keep a list of used/defined registers.
Ryan C. Gordon <icculus@icculus.org>
parents:
81
diff
changeset
|
630 |
} // reglist_insert |
dc7ad4cea75b
Keep a list of used/defined registers.
Ryan C. Gordon <icculus@icculus.org>
parents:
81
diff
changeset
|
631 |
|
122
e9da4ede0a27
Hopefully fixed loop register inheriting to subroutines.
Ryan C. Gordon <icculus@icculus.org>
parents:
121
diff
changeset
|
632 |
static RegisterList *reglist_find(RegisterList *prev, const RegisterType rtype, |
e9da4ede0a27
Hopefully fixed loop register inheriting to subroutines.
Ryan C. Gordon <icculus@icculus.org>
parents:
121
diff
changeset
|
633 |
const int regnum) |
e9da4ede0a27
Hopefully fixed loop register inheriting to subroutines.
Ryan C. Gordon <icculus@icculus.org>
parents:
121
diff
changeset
|
634 |
{ |
e9da4ede0a27
Hopefully fixed loop register inheriting to subroutines.
Ryan C. Gordon <icculus@icculus.org>
parents:
121
diff
changeset
|
635 |
const uint32 newval = reg_to_ui32(rtype, regnum); |
e9da4ede0a27
Hopefully fixed loop register inheriting to subroutines.
Ryan C. Gordon <icculus@icculus.org>
parents:
121
diff
changeset
|
636 |
RegisterList *item = prev->next; |
82
dc7ad4cea75b
Keep a list of used/defined registers.
Ryan C. Gordon <icculus@icculus.org>
parents:
81
diff
changeset
|
637 |
while (item != NULL) |
dc7ad4cea75b
Keep a list of used/defined registers.
Ryan C. Gordon <icculus@icculus.org>
parents:
81
diff
changeset
|
638 |
{ |
dc7ad4cea75b
Keep a list of used/defined registers.
Ryan C. Gordon <icculus@icculus.org>
parents:
81
diff
changeset
|
639 |
const uint32 val = reg_to_ui32(item->regtype, item->regnum); |
dc7ad4cea75b
Keep a list of used/defined registers.
Ryan C. Gordon <icculus@icculus.org>
parents:
81
diff
changeset
|
640 |
if (newval == val) |
dc7ad4cea75b
Keep a list of used/defined registers.
Ryan C. Gordon <icculus@icculus.org>
parents:
81
diff
changeset
|
641 |
return item; // here it is. |
dc7ad4cea75b
Keep a list of used/defined registers.
Ryan C. Gordon <icculus@icculus.org>
parents:
81
diff
changeset
|
642 |
else if (newval < val) // should have been here if it existed. |
dc7ad4cea75b
Keep a list of used/defined registers.
Ryan C. Gordon <icculus@icculus.org>
parents:
81
diff
changeset
|
643 |
return NULL; |
dc7ad4cea75b
Keep a list of used/defined registers.
Ryan C. Gordon <icculus@icculus.org>
parents:
81
diff
changeset
|
644 |
else // if (newval > val) |
dc7ad4cea75b
Keep a list of used/defined registers.
Ryan C. Gordon <icculus@icculus.org>
parents:
81
diff
changeset
|
645 |
{ |
dc7ad4cea75b
Keep a list of used/defined registers.
Ryan C. Gordon <icculus@icculus.org>
parents:
81
diff
changeset
|
646 |
// keep going, we're not to the insertion point yet. |
dc7ad4cea75b
Keep a list of used/defined registers.
Ryan C. Gordon <icculus@icculus.org>
parents:
81
diff
changeset
|
647 |
prev = item; |
dc7ad4cea75b
Keep a list of used/defined registers.
Ryan C. Gordon <icculus@icculus.org>
parents:
81
diff
changeset
|
648 |
item = item->next; |
dc7ad4cea75b
Keep a list of used/defined registers.
Ryan C. Gordon <icculus@icculus.org>
parents:
81
diff
changeset
|
649 |
} // else |
dc7ad4cea75b
Keep a list of used/defined registers.
Ryan C. Gordon <icculus@icculus.org>
parents:
81
diff
changeset
|
650 |
} // while |
dc7ad4cea75b
Keep a list of used/defined registers.
Ryan C. Gordon <icculus@icculus.org>
parents:
81
diff
changeset
|
651 |
|
dc7ad4cea75b
Keep a list of used/defined registers.
Ryan C. Gordon <icculus@icculus.org>
parents:
81
diff
changeset
|
652 |
return NULL; // wasn't in the list. |
122
e9da4ede0a27
Hopefully fixed loop register inheriting to subroutines.
Ryan C. Gordon <icculus@icculus.org>
parents:
121
diff
changeset
|
653 |
} // reglist_find |
e9da4ede0a27
Hopefully fixed loop register inheriting to subroutines.
Ryan C. Gordon <icculus@icculus.org>
parents:
121
diff
changeset
|
654 |
|
e9da4ede0a27
Hopefully fixed loop register inheriting to subroutines.
Ryan C. Gordon <icculus@icculus.org>
parents:
121
diff
changeset
|
655 |
static inline const RegisterList *reglist_exists(RegisterList *prev, |
e9da4ede0a27
Hopefully fixed loop register inheriting to subroutines.
Ryan C. Gordon <icculus@icculus.org>
parents:
121
diff
changeset
|
656 |
const RegisterType regtype, |
e9da4ede0a27
Hopefully fixed loop register inheriting to subroutines.
Ryan C. Gordon <icculus@icculus.org>
parents:
121
diff
changeset
|
657 |
const int regnum) |
e9da4ede0a27
Hopefully fixed loop register inheriting to subroutines.
Ryan C. Gordon <icculus@icculus.org>
parents:
121
diff
changeset
|
658 |
{ |
e9da4ede0a27
Hopefully fixed loop register inheriting to subroutines.
Ryan C. Gordon <icculus@icculus.org>
parents:
121
diff
changeset
|
659 |
return (reglist_find(prev, regtype, regnum)); |
82
dc7ad4cea75b
Keep a list of used/defined registers.
Ryan C. Gordon <icculus@icculus.org>
parents:
81
diff
changeset
|
660 |
} // reglist_exists |
dc7ad4cea75b
Keep a list of used/defined registers.
Ryan C. Gordon <icculus@icculus.org>
parents:
81
diff
changeset
|
661 |
|
dc7ad4cea75b
Keep a list of used/defined registers.
Ryan C. Gordon <icculus@icculus.org>
parents:
81
diff
changeset
|
662 |
static inline void set_used_register(Context *ctx, const RegisterType regtype, |
dc7ad4cea75b
Keep a list of used/defined registers.
Ryan C. Gordon <icculus@icculus.org>
parents:
81
diff
changeset
|
663 |
const int regnum) |
dc7ad4cea75b
Keep a list of used/defined registers.
Ryan C. Gordon <icculus@icculus.org>
parents:
81
diff
changeset
|
664 |
{ |
dc7ad4cea75b
Keep a list of used/defined registers.
Ryan C. Gordon <icculus@icculus.org>
parents:
81
diff
changeset
|
665 |
reglist_insert(ctx, &ctx->used_registers, regtype, regnum); |
dc7ad4cea75b
Keep a list of used/defined registers.
Ryan C. Gordon <icculus@icculus.org>
parents:
81
diff
changeset
|
666 |
} // set_used_register |
dc7ad4cea75b
Keep a list of used/defined registers.
Ryan C. Gordon <icculus@icculus.org>
parents:
81
diff
changeset
|
667 |
|
dc7ad4cea75b
Keep a list of used/defined registers.
Ryan C. Gordon <icculus@icculus.org>
parents:
81
diff
changeset
|
668 |
static inline int get_used_register(Context *ctx, const RegisterType regtype, |
dc7ad4cea75b
Keep a list of used/defined registers.
Ryan C. Gordon <icculus@icculus.org>
parents:
81
diff
changeset
|
669 |
const int regnum) |
dc7ad4cea75b
Keep a list of used/defined registers.
Ryan C. Gordon <icculus@icculus.org>
parents:
81
diff
changeset
|
670 |
{ |
dc7ad4cea75b
Keep a list of used/defined registers.
Ryan C. Gordon <icculus@icculus.org>
parents:
81
diff
changeset
|
671 |
return (reglist_exists(&ctx->used_registers, regtype, regnum) != NULL); |
83
ce46250e553d
Add defined/declared registers to the appropriate register list.
Ryan C. Gordon <icculus@icculus.org>
parents:
82
diff
changeset
|
672 |
} // get_used_register |
82
dc7ad4cea75b
Keep a list of used/defined registers.
Ryan C. Gordon <icculus@icculus.org>
parents:
81
diff
changeset
|
673 |
|
dc7ad4cea75b
Keep a list of used/defined registers.
Ryan C. Gordon <icculus@icculus.org>
parents:
81
diff
changeset
|
674 |
static inline void set_defined_register(Context *ctx, const RegisterType rtype, |
dc7ad4cea75b
Keep a list of used/defined registers.
Ryan C. Gordon <icculus@icculus.org>
parents:
81
diff
changeset
|
675 |
const int regnum) |
dc7ad4cea75b
Keep a list of used/defined registers.
Ryan C. Gordon <icculus@icculus.org>
parents:
81
diff
changeset
|
676 |
{ |
dc7ad4cea75b
Keep a list of used/defined registers.
Ryan C. Gordon <icculus@icculus.org>
parents:
81
diff
changeset
|
677 |
reglist_insert(ctx, &ctx->defined_registers, rtype, regnum); |
dc7ad4cea75b
Keep a list of used/defined registers.
Ryan C. Gordon <icculus@icculus.org>
parents:
81
diff
changeset
|
678 |
} // set_defined_register |
dc7ad4cea75b
Keep a list of used/defined registers.
Ryan C. Gordon <icculus@icculus.org>
parents:
81
diff
changeset
|
679 |
|
dc7ad4cea75b
Keep a list of used/defined registers.
Ryan C. Gordon <icculus@icculus.org>
parents:
81
diff
changeset
|
680 |
static inline int get_defined_register(Context *ctx, const RegisterType rtype, |
dc7ad4cea75b
Keep a list of used/defined registers.
Ryan C. Gordon <icculus@icculus.org>
parents:
81
diff
changeset
|
681 |
const int regnum) |
dc7ad4cea75b
Keep a list of used/defined registers.
Ryan C. Gordon <icculus@icculus.org>
parents:
81
diff
changeset
|
682 |
{ |
dc7ad4cea75b
Keep a list of used/defined registers.
Ryan C. Gordon <icculus@icculus.org>
parents:
81
diff
changeset
|
683 |
return (reglist_exists(&ctx->defined_registers, rtype, regnum) != NULL); |
dc7ad4cea75b
Keep a list of used/defined registers.
Ryan C. Gordon <icculus@icculus.org>
parents:
81
diff
changeset
|
684 |
} // get_defined_register |
dc7ad4cea75b
Keep a list of used/defined registers.
Ryan C. Gordon <icculus@icculus.org>
parents:
81
diff
changeset
|
685 |
|
189
d31efd640c13
Attribute fixes for GLSL profile.
Ryan C. Gordon <icculus@icculus.org>
parents:
187
diff
changeset
|
686 |
static const RegisterList *declared_attribute(Context *ctx, |
d31efd640c13
Attribute fixes for GLSL profile.
Ryan C. Gordon <icculus@icculus.org>
parents:
187
diff
changeset
|
687 |
const MOJOSHADER_usage usage, |
d31efd640c13
Attribute fixes for GLSL profile.
Ryan C. Gordon <icculus@icculus.org>
parents:
187
diff
changeset
|
688 |
const int index) |
d31efd640c13
Attribute fixes for GLSL profile.
Ryan C. Gordon <icculus@icculus.org>
parents:
187
diff
changeset
|
689 |
{ |
d31efd640c13
Attribute fixes for GLSL profile.
Ryan C. Gordon <icculus@icculus.org>
parents:
187
diff
changeset
|
690 |
const RegisterList *item = ctx->attributes.next; |
d31efd640c13
Attribute fixes for GLSL profile.
Ryan C. Gordon <icculus@icculus.org>
parents:
187
diff
changeset
|
691 |
while (item != NULL) |
d31efd640c13
Attribute fixes for GLSL profile.
Ryan C. Gordon <icculus@icculus.org>
parents:
187
diff
changeset
|
692 |
{ |
d31efd640c13
Attribute fixes for GLSL profile.
Ryan C. Gordon <icculus@icculus.org>
parents:
187
diff
changeset
|
693 |
if ((item->usage == usage) && (item->index == index)) |
d31efd640c13
Attribute fixes for GLSL profile.
Ryan C. Gordon <icculus@icculus.org>
parents:
187
diff
changeset
|
694 |
return item; |
d31efd640c13
Attribute fixes for GLSL profile.
Ryan C. Gordon <icculus@icculus.org>
parents:
187
diff
changeset
|
695 |
item = item->next; |
d31efd640c13
Attribute fixes for GLSL profile.
Ryan C. Gordon <icculus@icculus.org>
parents:
187
diff
changeset
|
696 |
} // while |
d31efd640c13
Attribute fixes for GLSL profile.
Ryan C. Gordon <icculus@icculus.org>
parents:
187
diff
changeset
|
697 |
|
d31efd640c13
Attribute fixes for GLSL profile.
Ryan C. Gordon <icculus@icculus.org>
parents:
187
diff
changeset
|
698 |
return NULL; |
d31efd640c13
Attribute fixes for GLSL profile.
Ryan C. Gordon <icculus@icculus.org>
parents:
187
diff
changeset
|
699 |
} // declared_attribute |
d31efd640c13
Attribute fixes for GLSL profile.
Ryan C. Gordon <icculus@icculus.org>
parents:
187
diff
changeset
|
700 |
|
104
7019f99f17d0
Attribute parsing is closer to correct now.
Ryan C. Gordon <icculus@icculus.org>
parents:
103
diff
changeset
|
701 |
static void add_attribute_register(Context *ctx, const RegisterType rtype, |
7019f99f17d0
Attribute parsing is closer to correct now.
Ryan C. Gordon <icculus@icculus.org>
parents:
103
diff
changeset
|
702 |
const int regnum, const MOJOSHADER_usage usage, |
7019f99f17d0
Attribute parsing is closer to correct now.
Ryan C. Gordon <icculus@icculus.org>
parents:
103
diff
changeset
|
703 |
const int index, const int writemask) |
7019f99f17d0
Attribute parsing is closer to correct now.
Ryan C. Gordon <icculus@icculus.org>
parents:
103
diff
changeset
|
704 |
{ |
7019f99f17d0
Attribute parsing is closer to correct now.
Ryan C. Gordon <icculus@icculus.org>
parents:
103
diff
changeset
|
705 |
RegisterList *item = reglist_insert(ctx, &ctx->attributes, rtype, regnum); |
7019f99f17d0
Attribute parsing is closer to correct now.
Ryan C. Gordon <icculus@icculus.org>
parents:
103
diff
changeset
|
706 |
item->usage = usage; |
7019f99f17d0
Attribute parsing is closer to correct now.
Ryan C. Gordon <icculus@icculus.org>
parents:
103
diff
changeset
|
707 |
item->index = index; |
7019f99f17d0
Attribute parsing is closer to correct now.
Ryan C. Gordon <icculus@icculus.org>
parents:
103
diff
changeset
|
708 |
item->writemask = writemask; |
7019f99f17d0
Attribute parsing is closer to correct now.
Ryan C. Gordon <icculus@icculus.org>
parents:
103
diff
changeset
|
709 |
} // add_attribute_register |
7019f99f17d0
Attribute parsing is closer to correct now.
Ryan C. Gordon <icculus@icculus.org>
parents:
103
diff
changeset
|
710 |
|
148
645003ec6623
Hopefully sorted out the reported uniform/attribute mess.
Ryan C. Gordon <icculus@icculus.org>
parents:
145
diff
changeset
|
711 |
static inline void add_sampler(Context *ctx, const RegisterType rtype, |
645003ec6623
Hopefully sorted out the reported uniform/attribute mess.
Ryan C. Gordon <icculus@icculus.org>
parents:
145
diff
changeset
|
712 |
const int regnum, const TextureType ttype) |
645003ec6623
Hopefully sorted out the reported uniform/attribute mess.
Ryan C. Gordon <icculus@icculus.org>
parents:
145
diff
changeset
|
713 |
{ |
645003ec6623
Hopefully sorted out the reported uniform/attribute mess.
Ryan C. Gordon <icculus@icculus.org>
parents:
145
diff
changeset
|
714 |
RegisterList *item = reglist_insert(ctx, &ctx->samplers, rtype, regnum); |
645003ec6623
Hopefully sorted out the reported uniform/attribute mess.
Ryan C. Gordon <icculus@icculus.org>
parents:
145
diff
changeset
|
715 |
item->index = (int) ttype; |
645003ec6623
Hopefully sorted out the reported uniform/attribute mess.
Ryan C. Gordon <icculus@icculus.org>
parents:
145
diff
changeset
|
716 |
} // add_sampler |
645003ec6623
Hopefully sorted out the reported uniform/attribute mess.
Ryan C. Gordon <icculus@icculus.org>
parents:
145
diff
changeset
|
717 |
|
104
7019f99f17d0
Attribute parsing is closer to correct now.
Ryan C. Gordon <icculus@icculus.org>
parents:
103
diff
changeset
|
718 |
|
121
37de8c6bb262
Fixed comparisons in GLSL profile and improved validation.
Ryan C. Gordon <icculus@icculus.org>
parents:
120
diff
changeset
|
719 |
static inline int replicate_swizzle(const int swizzle) |
37de8c6bb262
Fixed comparisons in GLSL profile and improved validation.
Ryan C. Gordon <icculus@icculus.org>
parents:
120
diff
changeset
|
720 |
{ |
37de8c6bb262
Fixed comparisons in GLSL profile and improved validation.
Ryan C. Gordon <icculus@icculus.org>
parents:
120
diff
changeset
|
721 |
return ( (((swizzle >> 0) & 0x3) == ((swizzle >> 2) & 0x3)) && |
37de8c6bb262
Fixed comparisons in GLSL profile and improved validation.
Ryan C. Gordon <icculus@icculus.org>
parents:
120
diff
changeset
|
722 |
(((swizzle >> 2) & 0x3) == ((swizzle >> 4) & 0x3)) && |
37de8c6bb262
Fixed comparisons in GLSL profile and improved validation.
Ryan C. Gordon <icculus@icculus.org>
parents:
120
diff
changeset
|
723 |
(((swizzle >> 4) & 0x3) == ((swizzle >> 6) & 0x3)) ); |
37de8c6bb262
Fixed comparisons in GLSL profile and improved validation.
Ryan C. Gordon <icculus@icculus.org>
parents:
120
diff
changeset
|
724 |
} // replicate_swizzle |
37de8c6bb262
Fixed comparisons in GLSL profile and improved validation.
Ryan C. Gordon <icculus@icculus.org>
parents:
120
diff
changeset
|
725 |
|
37de8c6bb262
Fixed comparisons in GLSL profile and improved validation.
Ryan C. Gordon <icculus@icculus.org>
parents:
120
diff
changeset
|
726 |
|
165
708de76f4c36
More swizzle/writemask work.
Ryan C. Gordon <icculus@icculus.org>
parents:
164
diff
changeset
|
727 |
static inline int vecsize_from_writemask(const int m) |
708de76f4c36
More swizzle/writemask work.
Ryan C. Gordon <icculus@icculus.org>
parents:
164
diff
changeset
|
728 |
{ |
708de76f4c36
More swizzle/writemask work.
Ryan C. Gordon <icculus@icculus.org>
parents:
164
diff
changeset
|
729 |
return (m & 1) + ((m >> 1) & 1) + ((m >> 2) & 1) + ((m >> 3) & 1); |
708de76f4c36
More swizzle/writemask work.
Ryan C. Gordon <icculus@icculus.org>
parents:
164
diff
changeset
|
730 |
} // vecsize_from_writemask |
708de76f4c36
More swizzle/writemask work.
Ryan C. Gordon <icculus@icculus.org>
parents:
164
diff
changeset
|
731 |
|
121
37de8c6bb262
Fixed comparisons in GLSL profile and improved validation.
Ryan C. Gordon <icculus@icculus.org>
parents:
120
diff
changeset
|
732 |
|
104
7019f99f17d0
Attribute parsing is closer to correct now.
Ryan C. Gordon <icculus@icculus.org>
parents:
103
diff
changeset
|
733 |
// D3D stuff that's used in more than just the d3d profile... |
7019f99f17d0
Attribute parsing is closer to correct now.
Ryan C. Gordon <icculus@icculus.org>
parents:
103
diff
changeset
|
734 |
|
141
997857107c39
Attempt to optimize CMP and CND in GLSL profile.
Ryan C. Gordon <icculus@icculus.org>
parents:
140
diff
changeset
|
735 |
static const char swizzle_channels[] = { 'x', 'y', 'z', 'w' }; |
997857107c39
Attempt to optimize CMP and CND in GLSL profile.
Ryan C. Gordon <icculus@icculus.org>
parents:
140
diff
changeset
|
736 |
|
997857107c39
Attempt to optimize CMP and CND in GLSL profile.
Ryan C. Gordon <icculus@icculus.org>
parents:
140
diff
changeset
|
737 |
|
104
7019f99f17d0
Attribute parsing is closer to correct now.
Ryan C. Gordon <icculus@icculus.org>
parents:
103
diff
changeset
|
738 |
static const char *usagestrs[] = { |
7019f99f17d0
Attribute parsing is closer to correct now.
Ryan C. Gordon <icculus@icculus.org>
parents:
103
diff
changeset
|
739 |
"_position", "_blendweight", "_blendindices", "_normal", "_psize", |
7019f99f17d0
Attribute parsing is closer to correct now.
Ryan C. Gordon <icculus@icculus.org>
parents:
103
diff
changeset
|
740 |
"_texcoord", "_tangent", "_binormal", "_tessfactor", "_positiont", |
7019f99f17d0
Attribute parsing is closer to correct now.
Ryan C. Gordon <icculus@icculus.org>
parents:
103
diff
changeset
|
741 |
"_color", "_fog", "_depth", "_sample" |
7019f99f17d0
Attribute parsing is closer to correct now.
Ryan C. Gordon <icculus@icculus.org>
parents:
103
diff
changeset
|
742 |
}; |
7019f99f17d0
Attribute parsing is closer to correct now.
Ryan C. Gordon <icculus@icculus.org>
parents:
103
diff
changeset
|
743 |
|
24 | 744 |
static const char *get_D3D_register_string(Context *ctx, |
34 | 745 |
RegisterType regtype, |
24 | 746 |
int regnum, char *regnum_str, |
747 |
size_t regnum_size) |
|
748 |
{ |
|
749 |
const char *retval = NULL; |
|
31 | 750 |
int has_number = 1; |
24 | 751 |
|
752 |
switch (regtype) |
|
753 |
{ |
|
73
c368f50d89d2
Shrank chatty enum name.
Ryan C. Gordon <icculus@icculus.org>
parents:
72
diff
changeset
|
754 |
case REG_TYPE_TEMP: |
24 | 755 |
retval = "r"; |
756 |
break; |
|
757 |
||
73
c368f50d89d2
Shrank chatty enum name.
Ryan C. Gordon <icculus@icculus.org>
parents:
72
diff
changeset
|
758 |
case REG_TYPE_INPUT: |
24 | 759 |
retval = "v"; |
760 |
break; |
|
761 |
||
73
c368f50d89d2
Shrank chatty enum name.
Ryan C. Gordon <icculus@icculus.org>
parents:
72
diff
changeset
|
762 |
case REG_TYPE_CONST: |
31 | 763 |
retval = "c"; |
764 |
break; |
|
765 |
||
73
c368f50d89d2
Shrank chatty enum name.
Ryan C. Gordon <icculus@icculus.org>
parents:
72
diff
changeset
|
766 |
case REG_TYPE_ADDRESS: // (or REG_TYPE_TEXTURE, same value.) |
151
1667680fe402
Cleaned up tests for shader type and version.
Ryan C. Gordon <icculus@icculus.org>
parents:
150
diff
changeset
|
767 |
retval = shader_is_vertex(ctx) ? "a" : "t"; |
24 | 768 |
break; |
769 |
||
73
c368f50d89d2
Shrank chatty enum name.
Ryan C. Gordon <icculus@icculus.org>
parents:
72
diff
changeset
|
770 |
case REG_TYPE_RASTOUT: |
34 | 771 |
switch ((RastOutType) regnum) |
24 | 772 |
{ |
773 |
case RASTOUT_TYPE_POSITION: retval = "oPos"; break; |
|
774 |
case RASTOUT_TYPE_FOG: retval = "oFog"; break; |
|
775 |
case RASTOUT_TYPE_POINT_SIZE: retval = "oPts"; break; |
|
776 |
} // switch |
|
31 | 777 |
has_number = 0; |
24 | 778 |
break; |
779 |
||
73
c368f50d89d2
Shrank chatty enum name.
Ryan C. Gordon <icculus@icculus.org>
parents:
72
diff
changeset
|
780 |
case REG_TYPE_ATTROUT: |
24 | 781 |
retval = "oD"; |
782 |
break; |
|
783 |
||
73
c368f50d89d2
Shrank chatty enum name.
Ryan C. Gordon <icculus@icculus.org>
parents:
72
diff
changeset
|
784 |
case REG_TYPE_OUTPUT: // (or REG_TYPE_TEXCRDOUT, same value.) |
151
1667680fe402
Cleaned up tests for shader type and version.
Ryan C. Gordon <icculus@icculus.org>
parents:
150
diff
changeset
|
785 |
if (shader_is_vertex(ctx) && shader_version_atleast(ctx, 3, 0)) |
24 | 786 |
retval = "o"; |
787 |
else |
|
788 |
retval = "oT"; |
|
789 |
break; |
|
790 |
||
73
c368f50d89d2
Shrank chatty enum name.
Ryan C. Gordon <icculus@icculus.org>
parents:
72
diff
changeset
|
791 |
case REG_TYPE_CONSTINT: |
24 | 792 |
retval = "i"; |
793 |
break; |
|
794 |
||
73
c368f50d89d2
Shrank chatty enum name.
Ryan C. Gordon <icculus@icculus.org>
parents:
72
diff
changeset
|
795 |
case REG_TYPE_COLOROUT: |
24 | 796 |
retval = "oC"; |
797 |
break; |
|
798 |
||
73
c368f50d89d2
Shrank chatty enum name.
Ryan C. Gordon <icculus@icculus.org>
parents:
72
diff
changeset
|
799 |
case REG_TYPE_DEPTHOUT: |
24 | 800 |
retval = "oDepth"; |
31 | 801 |
has_number = 0; |
24 | 802 |
break; |
803 |
||
73
c368f50d89d2
Shrank chatty enum name.
Ryan C. Gordon <icculus@icculus.org>
parents:
72
diff
changeset
|
804 |
case REG_TYPE_SAMPLER: |
24 | 805 |
retval = "s"; |
806 |
break; |
|
807 |
||
73
c368f50d89d2
Shrank chatty enum name.
Ryan C. Gordon <icculus@icculus.org>
parents:
72
diff
changeset
|
808 |
case REG_TYPE_CONSTBOOL: |
24 | 809 |
retval = "b"; |
810 |
break; |
|
811 |
||
73
c368f50d89d2
Shrank chatty enum name.
Ryan C. Gordon <icculus@icculus.org>
parents:
72
diff
changeset
|
812 |
case REG_TYPE_LOOP: |
24 | 813 |
retval = "aL"; |
31 | 814 |
has_number = 0; |
24 | 815 |
break; |
816 |
||
73
c368f50d89d2
Shrank chatty enum name.
Ryan C. Gordon <icculus@icculus.org>
parents:
72
diff
changeset
|
817 |
case REG_TYPE_MISCTYPE: |
34 | 818 |
switch ((MiscTypeType) regnum) |
24 | 819 |
{ |
820 |
case MISCTYPE_TYPE_POSITION: retval = "vPos"; break; |
|
821 |
case MISCTYPE_TYPE_FACE: retval = "vFace"; break; |
|
822 |
} // switch |
|
31 | 823 |
has_number = 0; |
24 | 824 |
break; |
825 |
||
73
c368f50d89d2
Shrank chatty enum name.
Ryan C. Gordon <icculus@icculus.org>
parents:
72
diff
changeset
|
826 |
case REG_TYPE_LABEL: |
24 | 827 |
retval = "l"; |
828 |
break; |
|
829 |
||
73
c368f50d89d2
Shrank chatty enum name.
Ryan C. Gordon <icculus@icculus.org>
parents:
72
diff
changeset
|
830 |
case REG_TYPE_PREDICATE: |
24 | 831 |
retval = "p"; |
832 |
break; |
|
234
c05582e582ad
Cleaned up the CONST/CONST2/CONST3/CONST4 tapdance.
Ryan C. Gordon <icculus@icculus.org>
parents:
233
diff
changeset
|
833 |
|
c05582e582ad
Cleaned up the CONST/CONST2/CONST3/CONST4 tapdance.
Ryan C. Gordon <icculus@icculus.org>
parents:
233
diff
changeset
|
834 |
//case REG_TYPE_TEMPFLOAT16: // !!! FIXME: don't know this asm string |
c05582e582ad
Cleaned up the CONST/CONST2/CONST3/CONST4 tapdance.
Ryan C. Gordon <icculus@icculus.org>
parents:
233
diff
changeset
|
835 |
default: |
c05582e582ad
Cleaned up the CONST/CONST2/CONST3/CONST4 tapdance.
Ryan C. Gordon <icculus@icculus.org>
parents:
233
diff
changeset
|
836 |
fail(ctx, "unknown register type"); |
c05582e582ad
Cleaned up the CONST/CONST2/CONST3/CONST4 tapdance.
Ryan C. Gordon <icculus@icculus.org>
parents:
233
diff
changeset
|
837 |
retval = "???"; |
c05582e582ad
Cleaned up the CONST/CONST2/CONST3/CONST4 tapdance.
Ryan C. Gordon <icculus@icculus.org>
parents:
233
diff
changeset
|
838 |
has_number = 0; |
c05582e582ad
Cleaned up the CONST/CONST2/CONST3/CONST4 tapdance.
Ryan C. Gordon <icculus@icculus.org>
parents:
233
diff
changeset
|
839 |
break; |
24 | 840 |
} // switch |
841 |
||
31 | 842 |
if (has_number) |
843 |
snprintf(regnum_str, regnum_size, "%u", (uint) regnum); |
|
844 |
else |
|
845 |
regnum_str[0] = '\0'; |
|
846 |
||
24 | 847 |
return retval; |
848 |
} // get_D3D_register_string |
|
849 |
||
850 |
||
193
4963871496ca
Prefix register names with "vs_" or "ps_" in GLSL profile.
Ryan C. Gordon <icculus@icculus.org>
parents:
191
diff
changeset
|
851 |
static inline const char *get_shader_type_string(Context *ctx) |
4963871496ca
Prefix register names with "vs_" or "ps_" in GLSL profile.
Ryan C. Gordon <icculus@icculus.org>
parents:
191
diff
changeset
|
852 |
{ |
4963871496ca
Prefix register names with "vs_" or "ps_" in GLSL profile.
Ryan C. Gordon <icculus@icculus.org>
parents:
191
diff
changeset
|
853 |
if (shader_is_pixel(ctx)) |
4963871496ca
Prefix register names with "vs_" or "ps_" in GLSL profile.
Ryan C. Gordon <icculus@icculus.org>
parents:
191
diff
changeset
|
854 |
return "ps"; |
4963871496ca
Prefix register names with "vs_" or "ps_" in GLSL profile.
Ryan C. Gordon <icculus@icculus.org>
parents:
191
diff
changeset
|
855 |
else if (shader_is_vertex(ctx)) |
4963871496ca
Prefix register names with "vs_" or "ps_" in GLSL profile.
Ryan C. Gordon <icculus@icculus.org>
parents:
191
diff
changeset
|
856 |
return "vs"; |
4963871496ca
Prefix register names with "vs_" or "ps_" in GLSL profile.
Ryan C. Gordon <icculus@icculus.org>
parents:
191
diff
changeset
|
857 |
fail(ctx, "Unknown shader type."); |
4963871496ca
Prefix register names with "vs_" or "ps_" in GLSL profile.
Ryan C. Gordon <icculus@icculus.org>
parents:
191
diff
changeset
|
858 |
return ""; |
4963871496ca
Prefix register names with "vs_" or "ps_" in GLSL profile.
Ryan C. Gordon <icculus@icculus.org>
parents:
191
diff
changeset
|
859 |
} // get_shader_type_string |
4963871496ca
Prefix register names with "vs_" or "ps_" in GLSL profile.
Ryan C. Gordon <icculus@icculus.org>
parents:
191
diff
changeset
|
860 |
|
67 | 861 |
|
862 |
#define AT_LEAST_ONE_PROFILE 0 |
|
863 |
||
864 |
#if !SUPPORT_PROFILE_D3D |
|
865 |
#define PROFILE_EMITTER_D3D(op) |
|
866 |
#else |
|
867 |
#undef AT_LEAST_ONE_PROFILE |
|
868 |
#define AT_LEAST_ONE_PROFILE 1 |
|
869 |
#define PROFILE_EMITTER_D3D(op) emit_D3D_##op, |
|
870 |
||
165
708de76f4c36
More swizzle/writemask work.
Ryan C. Gordon <icculus@icculus.org>
parents:
164
diff
changeset
|
871 |
static const char *make_D3D_srcarg_string_in_buf(Context *ctx, |
139
a7695f68cbff
First shot at predicated instruction support.
Ryan C. Gordon <icculus@icculus.org>
parents:
138
diff
changeset
|
872 |
const SourceArgInfo *arg, |
a7695f68cbff
First shot at predicated instruction support.
Ryan C. Gordon <icculus@icculus.org>
parents:
138
diff
changeset
|
873 |
char *buf, size_t buflen) |
a7695f68cbff
First shot at predicated instruction support.
Ryan C. Gordon <icculus@icculus.org>
parents:
138
diff
changeset
|
874 |
{ |
24 | 875 |
const char *premod_str = ""; |
876 |
const char *postmod_str = ""; |
|
139
a7695f68cbff
First shot at predicated instruction support.
Ryan C. Gordon <icculus@icculus.org>
parents:
138
diff
changeset
|
877 |
switch (arg->src_mod) |
24 | 878 |
{ |
879 |
case SRCMOD_NEGATE: |
|
880 |
premod_str = "-"; |
|
881 |
break; |
|
882 |
||
883 |
case SRCMOD_BIASNEGATE: |
|
884 |
premod_str = "-"; |
|
885 |
// fall through. |
|
886 |
case SRCMOD_BIAS: |
|
887 |
postmod_str = "_bias"; |
|
888 |
break; |
|
889 |
||
890 |
case SRCMOD_SIGNNEGATE: |
|
891 |
premod_str = "-"; |
|
892 |
// fall through. |
|
893 |
case SRCMOD_SIGN: |
|
894 |
postmod_str = "_bx2"; |
|
895 |
break; |
|
896 |
||
897 |
case SRCMOD_COMPLEMENT: |
|
898 |
premod_str = "1-"; |
|
899 |
break; |
|
900 |
||
901 |
case SRCMOD_X2NEGATE: |
|
902 |
premod_str = "-"; |
|
903 |
// fall through. |
|
904 |
case SRCMOD_X2: |
|
905 |
postmod_str = "_x2"; |
|
906 |
break; |
|
907 |
||
908 |
case SRCMOD_DZ: |
|
909 |
postmod_str = "_dz"; |
|
910 |
break; |
|
911 |
||
912 |
case SRCMOD_DW: |
|
913 |
postmod_str = "_dw"; |
|
914 |
break; |
|
915 |
||
916 |
case SRCMOD_ABSNEGATE: |
|
917 |
premod_str = "-"; |
|
918 |
// fall through. |
|
919 |
case SRCMOD_ABS: |
|
920 |
postmod_str = "_abs"; |
|
921 |
break; |
|
922 |
||
923 |
case SRCMOD_NOT: |
|
924 |
premod_str = "!"; |
|
925 |
break; |
|
48 | 926 |
|
927 |
case SRCMOD_NONE: |
|
928 |
case SRCMOD_TOTAL: |
|
929 |
break; // stop compiler whining. |
|
24 | 930 |
} // switch |
931 |
||
932 |
||
933 |
char regnum_str[16]; |
|
56
1e8b180d3eb1
[svn] Bunch of work from the transatlantic airplane flight...since this is a ton of
icculus
parents:
55
diff
changeset
|
934 |
const char *regtype_str = get_D3D_register_string(ctx, arg->regtype, |
1e8b180d3eb1
[svn] Bunch of work from the transatlantic airplane flight...since this is a ton of
icculus
parents:
55
diff
changeset
|
935 |
arg->regnum, regnum_str, |
1e8b180d3eb1
[svn] Bunch of work from the transatlantic airplane flight...since this is a ton of
icculus
parents:
55
diff
changeset
|
936 |
sizeof (regnum_str)); |
24 | 937 |
|
938 |
if (regtype_str == NULL) |
|
939 |
{ |
|
940 |
fail(ctx, "Unknown source register type."); |
|
68
f00ba7fcd0f8
Better const char * correction.
Ryan C. Gordon <icculus@icculus.org>
parents:
67
diff
changeset
|
941 |
return ""; |
24 | 942 |
} // if |
943 |
||
152
cc7c38dfe145
Relative addressing work.
Ryan C. Gordon <icculus@icculus.org>
parents:
151
diff
changeset
|
944 |
const char *rel_lbracket = ""; |
cc7c38dfe145
Relative addressing work.
Ryan C. Gordon <icculus@icculus.org>
parents:
151
diff
changeset
|
945 |
const char *rel_rbracket = ""; |
cc7c38dfe145
Relative addressing work.
Ryan C. Gordon <icculus@icculus.org>
parents:
151
diff
changeset
|
946 |
char rel_swizzle[4] = { '\0' }; |
cc7c38dfe145
Relative addressing work.
Ryan C. Gordon <icculus@icculus.org>
parents:
151
diff
changeset
|
947 |
char rel_regnum_str[16] = { '\0' }; |
cc7c38dfe145
Relative addressing work.
Ryan C. Gordon <icculus@icculus.org>
parents:
151
diff
changeset
|
948 |
const char *rel_regtype_str = ""; |
cc7c38dfe145
Relative addressing work.
Ryan C. Gordon <icculus@icculus.org>
parents:
151
diff
changeset
|
949 |
if (arg->relative) |
cc7c38dfe145
Relative addressing work.
Ryan C. Gordon <icculus@icculus.org>
parents:
151
diff
changeset
|
950 |
{ |
cc7c38dfe145
Relative addressing work.
Ryan C. Gordon <icculus@icculus.org>
parents:
151
diff
changeset
|
951 |
rel_swizzle[0] = '.'; |
cc7c38dfe145
Relative addressing work.
Ryan C. Gordon <icculus@icculus.org>
parents:
151
diff
changeset
|
952 |
rel_swizzle[1] = swizzle_channels[arg->relative_component]; |
cc7c38dfe145
Relative addressing work.
Ryan C. Gordon <icculus@icculus.org>
parents:
151
diff
changeset
|
953 |
rel_swizzle[2] = '\0'; |
cc7c38dfe145
Relative addressing work.
Ryan C. Gordon <icculus@icculus.org>
parents:
151
diff
changeset
|
954 |
rel_lbracket = "["; |
cc7c38dfe145
Relative addressing work.
Ryan C. Gordon <icculus@icculus.org>
parents:
151
diff
changeset
|
955 |
rel_rbracket = "]"; |
cc7c38dfe145
Relative addressing work.
Ryan C. Gordon <icculus@icculus.org>
parents:
151
diff
changeset
|
956 |
rel_regtype_str = get_D3D_register_string(ctx, arg->relative_regtype, |
cc7c38dfe145
Relative addressing work.
Ryan C. Gordon <icculus@icculus.org>
parents:
151
diff
changeset
|
957 |
arg->relative_regnum, |
cc7c38dfe145
Relative addressing work.
Ryan C. Gordon <icculus@icculus.org>
parents:
151
diff
changeset
|
958 |
rel_regnum_str, |
cc7c38dfe145
Relative addressing work.
Ryan C. Gordon <icculus@icculus.org>
parents:
151
diff
changeset
|
959 |
sizeof (rel_regnum_str)); |
cc7c38dfe145
Relative addressing work.
Ryan C. Gordon <icculus@icculus.org>
parents:
151
diff
changeset
|
960 |
|
cc7c38dfe145
Relative addressing work.
Ryan C. Gordon <icculus@icculus.org>
parents:
151
diff
changeset
|
961 |
if (regtype_str == NULL) |
cc7c38dfe145
Relative addressing work.
Ryan C. Gordon <icculus@icculus.org>
parents:
151
diff
changeset
|
962 |
{ |
cc7c38dfe145
Relative addressing work.
Ryan C. Gordon <icculus@icculus.org>
parents:
151
diff
changeset
|
963 |
fail(ctx, "Unknown relative source register type."); |
cc7c38dfe145
Relative addressing work.
Ryan C. Gordon <icculus@icculus.org>
parents:
151
diff
changeset
|
964 |
return ""; |
cc7c38dfe145
Relative addressing work.
Ryan C. Gordon <icculus@icculus.org>
parents:
151
diff
changeset
|
965 |
} // if |
cc7c38dfe145
Relative addressing work.
Ryan C. Gordon <icculus@icculus.org>
parents:
151
diff
changeset
|
966 |
} // if |
cc7c38dfe145
Relative addressing work.
Ryan C. Gordon <icculus@icculus.org>
parents:
151
diff
changeset
|
967 |
|
24 | 968 |
char swizzle_str[6]; |
969 |
int i = 0; |
|
26 | 970 |
if (arg->swizzle != 0xE4) // 0xE4 == 11100100 ... 3 2 1 0. No swizzle. |
24 | 971 |
{ |
972 |
swizzle_str[i++] = '.'; |
|
141
997857107c39
Attempt to optimize CMP and CND in GLSL profile.
Ryan C. Gordon <icculus@icculus.org>
parents:
140
diff
changeset
|
973 |
swizzle_str[i++] = swizzle_channels[arg->swizzle_x]; |
997857107c39
Attempt to optimize CMP and CND in GLSL profile.
Ryan C. Gordon <icculus@icculus.org>
parents:
140
diff
changeset
|
974 |
swizzle_str[i++] = swizzle_channels[arg->swizzle_y]; |
997857107c39
Attempt to optimize CMP and CND in GLSL profile.
Ryan C. Gordon <icculus@icculus.org>
parents:
140
diff
changeset
|
975 |
swizzle_str[i++] = swizzle_channels[arg->swizzle_z]; |
997857107c39
Attempt to optimize CMP and CND in GLSL profile.
Ryan C. Gordon <icculus@icculus.org>
parents:
140
diff
changeset
|
976 |
swizzle_str[i++] = swizzle_channels[arg->swizzle_w]; |
24 | 977 |
|
25 | 978 |
// .xyzz is the same as .xyz, .z is the same as .zzzz, etc. |
979 |
while (swizzle_str[i-1] == swizzle_str[i-2]) |
|
980 |
i--; |
|
24 | 981 |
} // if |
982 |
swizzle_str[i] = '\0'; |
|
983 |
assert(i < sizeof (swizzle_str)); |
|
984 |
||
152
cc7c38dfe145
Relative addressing work.
Ryan C. Gordon <icculus@icculus.org>
parents:
151
diff
changeset
|
985 |
snprintf(buf, buflen, "%s%s%s%s%s%s%s%s%s%s", |
cc7c38dfe145
Relative addressing work.
Ryan C. Gordon <icculus@icculus.org>
parents:
151
diff
changeset
|
986 |
premod_str, regtype_str, regnum_str, postmod_str, |
cc7c38dfe145
Relative addressing work.
Ryan C. Gordon <icculus@icculus.org>
parents:
151
diff
changeset
|
987 |
rel_lbracket, rel_regtype_str, rel_regnum_str, rel_swizzle, |
cc7c38dfe145
Relative addressing work.
Ryan C. Gordon <icculus@icculus.org>
parents:
151
diff
changeset
|
988 |
rel_rbracket, swizzle_str); |
67 | 989 |
// !!! FIXME: make sure the scratch buffer was large enough. |
139
a7695f68cbff
First shot at predicated instruction support.
Ryan C. Gordon <icculus@icculus.org>
parents:
138
diff
changeset
|
990 |
return buf; |
165
708de76f4c36
More swizzle/writemask work.
Ryan C. Gordon <icculus@icculus.org>
parents:
164
diff
changeset
|
991 |
} // make_D3D_srcarg_string_in_buf |
139
a7695f68cbff
First shot at predicated instruction support.
Ryan C. Gordon <icculus@icculus.org>
parents:
138
diff
changeset
|
992 |
|
a7695f68cbff
First shot at predicated instruction support.
Ryan C. Gordon <icculus@icculus.org>
parents:
138
diff
changeset
|
993 |
|
161
a0e1920ce909
Removed "dest_args" array...it's only ever one structure.
Ryan C. Gordon <icculus@icculus.org>
parents:
160
diff
changeset
|
994 |
static const char *make_D3D_destarg_string(Context *ctx) |
a0e1920ce909
Removed "dest_args" array...it's only ever one structure.
Ryan C. Gordon <icculus@icculus.org>
parents:
160
diff
changeset
|
995 |
{ |
a0e1920ce909
Removed "dest_args" array...it's only ever one structure.
Ryan C. Gordon <icculus@icculus.org>
parents:
160
diff
changeset
|
996 |
const DestArgInfo *arg = &ctx->dest_arg; |
139
a7695f68cbff
First shot at predicated instruction support.
Ryan C. Gordon <icculus@icculus.org>
parents:
138
diff
changeset
|
997 |
|
a7695f68cbff
First shot at predicated instruction support.
Ryan C. Gordon <icculus@icculus.org>
parents:
138
diff
changeset
|
998 |
const char *result_shift_str = ""; |
a7695f68cbff
First shot at predicated instruction support.
Ryan C. Gordon <icculus@icculus.org>
parents:
138
diff
changeset
|
999 |
switch (arg->result_shift) |
a7695f68cbff
First shot at predicated instruction support.
Ryan C. Gordon <icculus@icculus.org>
parents:
138
diff
changeset
|
1000 |
{ |
a7695f68cbff
First shot at predicated instruction support.
Ryan C. Gordon <icculus@icculus.org>
parents:
138
diff
changeset
|
1001 |
case 0x1: result_shift_str = "_x2"; break; |
a7695f68cbff
First shot at predicated instruction support.
Ryan C. Gordon <icculus@icculus.org>
parents:
138
diff
changeset
|
1002 |
case 0x2: result_shift_str = "_x4"; break; |
a7695f68cbff
First shot at predicated instruction support.
Ryan C. Gordon <icculus@icculus.org>
parents:
138
diff
changeset
|
1003 |
case 0x3: result_shift_str = "_x8"; break; |
a7695f68cbff
First shot at predicated instruction support.
Ryan C. Gordon <icculus@icculus.org>
parents:
138
diff
changeset
|
1004 |
case 0xD: result_shift_str = "_d8"; break; |
a7695f68cbff
First shot at predicated instruction support.
Ryan C. Gordon <icculus@icculus.org>
parents:
138
diff
changeset
|
1005 |
case 0xE: result_shift_str = "_d4"; break; |
a7695f68cbff
First shot at predicated instruction support.
Ryan C. Gordon <icculus@icculus.org>
parents:
138
diff
changeset
|
1006 |
case 0xF: result_shift_str = "_d2"; break; |
a7695f68cbff
First shot at predicated instruction support.
Ryan C. Gordon <icculus@icculus.org>
parents:
138
diff
changeset
|
1007 |
} // switch |
a7695f68cbff
First shot at predicated instruction support.
Ryan C. Gordon <icculus@icculus.org>
parents:
138
diff
changeset
|
1008 |
|
a7695f68cbff
First shot at predicated instruction support.
Ryan C. Gordon <icculus@icculus.org>
parents:
138
diff
changeset
|
1009 |
const char *sat_str = (arg->result_mod & MOD_SATURATE) ? "_sat" : ""; |
a7695f68cbff
First shot at predicated instruction support.
Ryan C. Gordon <icculus@icculus.org>
parents:
138
diff
changeset
|
1010 |
const char *pp_str = (arg->result_mod & MOD_PP) ? "_pp" : ""; |
a7695f68cbff
First shot at predicated instruction support.
Ryan C. Gordon <icculus@icculus.org>
parents:
138
diff
changeset
|
1011 |
const char *cent_str = (arg->result_mod & MOD_CENTROID) ? "_centroid" : ""; |
a7695f68cbff
First shot at predicated instruction support.
Ryan C. Gordon <icculus@icculus.org>
parents:
138
diff
changeset
|
1012 |
|
a7695f68cbff
First shot at predicated instruction support.
Ryan C. Gordon <icculus@icculus.org>
parents:
138
diff
changeset
|
1013 |
char regnum_str[16]; |
a7695f68cbff
First shot at predicated instruction support.
Ryan C. Gordon <icculus@icculus.org>
parents:
138
diff
changeset
|
1014 |
const char *regtype_str = get_D3D_register_string(ctx, arg->regtype, |
a7695f68cbff
First shot at predicated instruction support.
Ryan C. Gordon <icculus@icculus.org>
parents:
138
diff
changeset
|
1015 |
arg->regnum, regnum_str, |
a7695f68cbff
First shot at predicated instruction support.
Ryan C. Gordon <icculus@icculus.org>
parents:
138
diff
changeset
|
1016 |
sizeof (regnum_str)); |
a7695f68cbff
First shot at predicated instruction support.
Ryan C. Gordon <icculus@icculus.org>
parents:
138
diff
changeset
|
1017 |
if (regtype_str == NULL) |
a7695f68cbff
First shot at predicated instruction support.
Ryan C. Gordon <icculus@icculus.org>
parents:
138
diff
changeset
|
1018 |
{ |
a7695f68cbff
First shot at predicated instruction support.
Ryan C. Gordon <icculus@icculus.org>
parents:
138
diff
changeset
|
1019 |
fail(ctx, "Unknown destination register type."); |
a7695f68cbff
First shot at predicated instruction support.
Ryan C. Gordon <icculus@icculus.org>
parents:
138
diff
changeset
|
1020 |
return ""; |
a7695f68cbff
First shot at predicated instruction support.
Ryan C. Gordon <icculus@icculus.org>
parents:
138
diff
changeset
|
1021 |
} // if |
a7695f68cbff
First shot at predicated instruction support.
Ryan C. Gordon <icculus@icculus.org>
parents:
138
diff
changeset
|
1022 |
|
a7695f68cbff
First shot at predicated instruction support.
Ryan C. Gordon <icculus@icculus.org>
parents:
138
diff
changeset
|
1023 |
char writemask_str[6]; |
a7695f68cbff
First shot at predicated instruction support.
Ryan C. Gordon <icculus@icculus.org>
parents:
138
diff
changeset
|
1024 |
int i = 0; |
a7695f68cbff
First shot at predicated instruction support.
Ryan C. Gordon <icculus@icculus.org>
parents:
138
diff
changeset
|
1025 |
if (arg->writemask != 0xF) // 0xF == 1111. No explicit mask. |
a7695f68cbff
First shot at predicated instruction support.
Ryan C. Gordon <icculus@icculus.org>
parents:
138
diff
changeset
|
1026 |
{ |
a7695f68cbff
First shot at predicated instruction support.
Ryan C. Gordon <icculus@icculus.org>
parents:
138
diff
changeset
|
1027 |
writemask_str[i++] = '.'; |
a7695f68cbff
First shot at predicated instruction support.
Ryan C. Gordon <icculus@icculus.org>
parents:
138
diff
changeset
|
1028 |
if (arg->writemask0) writemask_str[i++] = 'x'; |
a7695f68cbff
First shot at predicated instruction support.
Ryan C. Gordon <icculus@icculus.org>
parents:
138
diff
changeset
|
1029 |
if (arg->writemask1) writemask_str[i++] = 'y'; |
a7695f68cbff
First shot at predicated instruction support.
Ryan C. Gordon <icculus@icculus.org>
parents:
138
diff
changeset
|
1030 |
if (arg->writemask2) writemask_str[i++] = 'z'; |
a7695f68cbff
First shot at predicated instruction support.
Ryan C. Gordon <icculus@icculus.org>
parents:
138
diff
changeset
|
1031 |
if (arg->writemask3) writemask_str[i++] = 'w'; |
a7695f68cbff
First shot at predicated instruction support.
Ryan C. Gordon <icculus@icculus.org>
parents:
138
diff
changeset
|
1032 |
} // if |
a7695f68cbff
First shot at predicated instruction support.
Ryan C. Gordon <icculus@icculus.org>
parents:
138
diff
changeset
|
1033 |
writemask_str[i] = '\0'; |
a7695f68cbff
First shot at predicated instruction support.
Ryan C. Gordon <icculus@icculus.org>
parents:
138
diff
changeset
|
1034 |
assert(i < sizeof (writemask_str)); |
a7695f68cbff
First shot at predicated instruction support.
Ryan C. Gordon <icculus@icculus.org>
parents:
138
diff
changeset
|
1035 |
|
a7695f68cbff
First shot at predicated instruction support.
Ryan C. Gordon <icculus@icculus.org>
parents:
138
diff
changeset
|
1036 |
const char *pred_left = ""; |
a7695f68cbff
First shot at predicated instruction support.
Ryan C. Gordon <icculus@icculus.org>
parents:
138
diff
changeset
|
1037 |
const char *pred_right = ""; |
a7695f68cbff
First shot at predicated instruction support.
Ryan C. Gordon <icculus@icculus.org>
parents:
138
diff
changeset
|
1038 |
char pred[32] = { '\0' }; |
a7695f68cbff
First shot at predicated instruction support.
Ryan C. Gordon <icculus@icculus.org>
parents:
138
diff
changeset
|
1039 |
if (ctx->predicated) |
a7695f68cbff
First shot at predicated instruction support.
Ryan C. Gordon <icculus@icculus.org>
parents:
138
diff
changeset
|
1040 |
{ |
a7695f68cbff
First shot at predicated instruction support.
Ryan C. Gordon <icculus@icculus.org>
parents:
138
diff
changeset
|
1041 |
pred_left = "("; |
a7695f68cbff
First shot at predicated instruction support.
Ryan C. Gordon <icculus@icculus.org>
parents:
138
diff
changeset
|
1042 |
pred_right = ") "; |
165
708de76f4c36
More swizzle/writemask work.
Ryan C. Gordon <icculus@icculus.org>
parents:
164
diff
changeset
|
1043 |
make_D3D_srcarg_string_in_buf(ctx, &ctx->predicate_arg, |
139
a7695f68cbff
First shot at predicated instruction support.
Ryan C. Gordon <icculus@icculus.org>
parents:
138
diff
changeset
|
1044 |
pred, sizeof (pred)); |
a7695f68cbff
First shot at predicated instruction support.
Ryan C. Gordon <icculus@icculus.org>
parents:
138
diff
changeset
|
1045 |
} // if |
a7695f68cbff
First shot at predicated instruction support.
Ryan C. Gordon <icculus@icculus.org>
parents:
138
diff
changeset
|
1046 |
|
a7695f68cbff
First shot at predicated instruction support.
Ryan C. Gordon <icculus@icculus.org>
parents:
138
diff
changeset
|
1047 |
// may turn out something like "_x2_sat_pp_centroid (!p0.x) r0.xyzw" ... |
a7695f68cbff
First shot at predicated instruction support.
Ryan C. Gordon <icculus@icculus.org>
parents:
138
diff
changeset
|
1048 |
char *retval = get_scratch_buffer(ctx); |
a7695f68cbff
First shot at predicated instruction support.
Ryan C. Gordon <icculus@icculus.org>
parents:
138
diff
changeset
|
1049 |
snprintf(retval, SCRATCH_BUFFER_SIZE, "%s%s%s%s %s%s%s%s%s%s", |
a7695f68cbff
First shot at predicated instruction support.
Ryan C. Gordon <icculus@icculus.org>
parents:
138
diff
changeset
|
1050 |
result_shift_str, sat_str, pp_str, cent_str, |
a7695f68cbff
First shot at predicated instruction support.
Ryan C. Gordon <icculus@icculus.org>
parents:
138
diff
changeset
|
1051 |
pred_left, pred, pred_right, |
a7695f68cbff
First shot at predicated instruction support.
Ryan C. Gordon <icculus@icculus.org>
parents:
138
diff
changeset
|
1052 |
regtype_str, regnum_str, writemask_str); |
a7695f68cbff
First shot at predicated instruction support.
Ryan C. Gordon <icculus@icculus.org>
parents:
138
diff
changeset
|
1053 |
// !!! FIXME: make sure the scratch buffer was large enough. |
17 | 1054 |
return retval; |
139
a7695f68cbff
First shot at predicated instruction support.
Ryan C. Gordon <icculus@icculus.org>
parents:
138
diff
changeset
|
1055 |
} // make_D3D_destarg_string |
a7695f68cbff
First shot at predicated instruction support.
Ryan C. Gordon <icculus@icculus.org>
parents:
138
diff
changeset
|
1056 |
|
a7695f68cbff
First shot at predicated instruction support.
Ryan C. Gordon <icculus@icculus.org>
parents:
138
diff
changeset
|
1057 |
|
165
708de76f4c36
More swizzle/writemask work.
Ryan C. Gordon <icculus@icculus.org>
parents:
164
diff
changeset
|
1058 |
static const char *make_D3D_srcarg_string(Context *ctx, const int idx) |
139
a7695f68cbff
First shot at predicated instruction support.
Ryan C. Gordon <icculus@icculus.org>
parents:
138
diff
changeset
|
1059 |
{ |
a7695f68cbff
First shot at predicated instruction support.
Ryan C. Gordon <icculus@icculus.org>
parents:
138
diff
changeset
|
1060 |
if (idx >= STATICARRAYLEN(ctx->source_args)) |
a7695f68cbff
First shot at predicated instruction support.
Ryan C. Gordon <icculus@icculus.org>
parents:
138
diff
changeset
|
1061 |
{ |
a7695f68cbff
First shot at predicated instruction support.
Ryan C. Gordon <icculus@icculus.org>
parents:
138
diff
changeset
|
1062 |
fail(ctx, "Too many source args"); |
a7695f68cbff
First shot at predicated instruction support.
Ryan C. Gordon <icculus@icculus.org>
parents:
138
diff
changeset
|
1063 |
return ""; |
a7695f68cbff
First shot at predicated instruction support.
Ryan C. Gordon <icculus@icculus.org>
parents:
138
diff
changeset
|
1064 |
} // if |
a7695f68cbff
First shot at predicated instruction support.
Ryan C. Gordon <icculus@icculus.org>
parents:
138
diff
changeset
|
1065 |
|
a7695f68cbff
First shot at predicated instruction support.
Ryan C. Gordon <icculus@icculus.org>
parents:
138
diff
changeset
|
1066 |
const SourceArgInfo *arg = &ctx->source_args[idx]; |
a7695f68cbff
First shot at predicated instruction support.
Ryan C. Gordon <icculus@icculus.org>
parents:
138
diff
changeset
|
1067 |
char *buf = get_scratch_buffer(ctx); |
165
708de76f4c36
More swizzle/writemask work.
Ryan C. Gordon <icculus@icculus.org>
parents:
164
diff
changeset
|
1068 |
return make_D3D_srcarg_string_in_buf(ctx, arg, buf, SCRATCH_BUFFER_SIZE); |
708de76f4c36
More swizzle/writemask work.
Ryan C. Gordon <icculus@icculus.org>
parents:
164
diff
changeset
|
1069 |
} // make_D3D_srcarg_string |
16 | 1070 |
|
1071 |
||
18
0dbdb2be8bf8
[svn] Bunch More Work. Cleanups, added app-supplied allocators, flexible output, etc.
icculus
parents:
17
diff
changeset
|
1072 |
static void emit_D3D_start(Context *ctx) |
16 | 1073 |
{ |
1074 |
const uint major = (uint) ctx->major_ver; |
|
1075 |
const uint minor = (uint) ctx->minor_ver; |
|
193
4963871496ca
Prefix register names with "vs_" or "ps_" in GLSL profile.
Ryan C. Gordon <icculus@icculus.org>
parents:
191
diff
changeset
|
1076 |
const char *shadertype_str = get_shader_type_string(ctx); |
24 | 1077 |
char minor_str[16]; |
1078 |
||
1079 |
if (minor == 0xFF) |
|
1080 |
strcpy(minor_str, "sw"); |
|
1081 |
else if (minor == 0x1) // apparently this is "vs_2_x". Weird. |
|
1082 |
strcpy(minor_str, "x"); |
|
1083 |
else |
|
1084 |
snprintf(minor_str, sizeof (minor_str), "%u", (uint) minor); |
|
19
8bca9cb2252f
[svn] Fixed output for software vertex shader versions.
icculus
parents:
18
diff
changeset
|
1085 |
|
24 | 1086 |
output_line(ctx, "%s_%u_%s", shadertype_str, major, minor_str); |
15 | 1087 |
} // emit_D3D_start |
1088 |
||
17 | 1089 |
|
18
0dbdb2be8bf8
[svn] Bunch More Work. Cleanups, added app-supplied allocators, flexible output, etc.
icculus
parents:
17
diff
changeset
|
1090 |
static void emit_D3D_end(Context *ctx) |
15 | 1091 |
{ |
30 | 1092 |
output_line(ctx, "end"); |
15 | 1093 |
} // emit_D3D_end |
14 | 1094 |
|
17 | 1095 |
|
95
56af2093eefe
Implemented uniform reporting.
Ryan C. Gordon <icculus@icculus.org>
parents:
93
diff
changeset
|
1096 |
static void emit_D3D_finalize(Context *ctx) |
56af2093eefe
Implemented uniform reporting.
Ryan C. Gordon <icculus@icculus.org>
parents:
93
diff
changeset
|
1097 |
{ |
56af2093eefe
Implemented uniform reporting.
Ryan C. Gordon <icculus@icculus.org>
parents:
93
diff
changeset
|
1098 |
// no-op. |
56af2093eefe
Implemented uniform reporting.
Ryan C. Gordon <icculus@icculus.org>
parents:
93
diff
changeset
|
1099 |
} // emit_D3D_finalize |
56af2093eefe
Implemented uniform reporting.
Ryan C. Gordon <icculus@icculus.org>
parents:
93
diff
changeset
|
1100 |
|
56af2093eefe
Implemented uniform reporting.
Ryan C. Gordon <icculus@icculus.org>
parents:
93
diff
changeset
|
1101 |
|
56af2093eefe
Implemented uniform reporting.
Ryan C. Gordon <icculus@icculus.org>
parents:
93
diff
changeset
|
1102 |
static void emit_D3D_global(Context *ctx, RegisterType regtype, int regnum) |
56af2093eefe
Implemented uniform reporting.
Ryan C. Gordon <icculus@icculus.org>
parents:
93
diff
changeset
|
1103 |
{ |
56af2093eefe
Implemented uniform reporting.
Ryan C. Gordon <icculus@icculus.org>
parents:
93
diff
changeset
|
1104 |
// no-op. |
56af2093eefe
Implemented uniform reporting.
Ryan C. Gordon <icculus@icculus.org>
parents:
93
diff
changeset
|
1105 |
} // emit_D3D_global |
56af2093eefe
Implemented uniform reporting.
Ryan C. Gordon <icculus@icculus.org>
parents:
93
diff
changeset
|
1106 |
|
56af2093eefe
Implemented uniform reporting.
Ryan C. Gordon <icculus@icculus.org>
parents:
93
diff
changeset
|
1107 |
|
56af2093eefe
Implemented uniform reporting.
Ryan C. Gordon <icculus@icculus.org>
parents:
93
diff
changeset
|
1108 |
static void emit_D3D_uniform(Context *ctx, RegisterType regtype, int regnum) |
56af2093eefe
Implemented uniform reporting.
Ryan C. Gordon <icculus@icculus.org>
parents:
93
diff
changeset
|
1109 |
{ |
56af2093eefe
Implemented uniform reporting.
Ryan C. Gordon <icculus@icculus.org>
parents:
93
diff
changeset
|
1110 |
// no-op. |
56af2093eefe
Implemented uniform reporting.
Ryan C. Gordon <icculus@icculus.org>
parents:
93
diff
changeset
|
1111 |
} // emit_D3D_uniform |
56af2093eefe
Implemented uniform reporting.
Ryan C. Gordon <icculus@icculus.org>
parents:
93
diff
changeset
|
1112 |
|
56af2093eefe
Implemented uniform reporting.
Ryan C. Gordon <icculus@icculus.org>
parents:
93
diff
changeset
|
1113 |
|
148
645003ec6623
Hopefully sorted out the reported uniform/attribute mess.
Ryan C. Gordon <icculus@icculus.org>
parents:
145
diff
changeset
|
1114 |
static void emit_D3D_sampler(Context *ctx, int stage, TextureType ttype) |
645003ec6623
Hopefully sorted out the reported uniform/attribute mess.
Ryan C. Gordon <icculus@icculus.org>
parents:
145
diff
changeset
|
1115 |
{ |
645003ec6623
Hopefully sorted out the reported uniform/attribute mess.
Ryan C. Gordon <icculus@icculus.org>
parents:
145
diff
changeset
|
1116 |
// no-op. |
645003ec6623
Hopefully sorted out the reported uniform/attribute mess.
Ryan C. Gordon <icculus@icculus.org>
parents:
145
diff
changeset
|
1117 |
} // emit_D3D_sampler |
645003ec6623
Hopefully sorted out the reported uniform/attribute mess.
Ryan C. Gordon <icculus@icculus.org>
parents:
145
diff
changeset
|
1118 |
|
645003ec6623
Hopefully sorted out the reported uniform/attribute mess.
Ryan C. Gordon <icculus@icculus.org>
parents:
145
diff
changeset
|
1119 |
|
104
7019f99f17d0
Attribute parsing is closer to correct now.
Ryan C. Gordon <icculus@icculus.org>
parents:
103
diff
changeset
|
1120 |
static void emit_D3D_attribute(Context *ctx, RegisterType regtype, int regnum, |
7019f99f17d0
Attribute parsing is closer to correct now.
Ryan C. Gordon <icculus@icculus.org>
parents:
103
diff
changeset
|
1121 |
MOJOSHADER_usage usage, int index, int wmask) |
7019f99f17d0
Attribute parsing is closer to correct now.
Ryan C. Gordon <icculus@icculus.org>
parents:
103
diff
changeset
|
1122 |
{ |
7019f99f17d0
Attribute parsing is closer to correct now.
Ryan C. Gordon <icculus@icculus.org>
parents:
103
diff
changeset
|
1123 |
// no-op. |
7019f99f17d0
Attribute parsing is closer to correct now.
Ryan C. Gordon <icculus@icculus.org>
parents:
103
diff
changeset
|
1124 |
} // emit_D3D_attribute |
7019f99f17d0
Attribute parsing is closer to correct now.
Ryan C. Gordon <icculus@icculus.org>
parents:
103
diff
changeset
|
1125 |
|
7019f99f17d0
Attribute parsing is closer to correct now.
Ryan C. Gordon <icculus@icculus.org>
parents:
103
diff
changeset
|
1126 |
|
18
0dbdb2be8bf8
[svn] Bunch More Work. Cleanups, added app-supplied allocators, flexible output, etc.
icculus
parents:
17
diff
changeset
|
1127 |
static void emit_D3D_RESERVED(Context *ctx) |
2
c37210f5e87b
[svn] Bunch More Work. Parse out instruction tokens, fail in a bunch of new stubs.
icculus
parents:
1
diff
changeset
|
1128 |
{ |
14 | 1129 |
// do nothing; fails in the state machine. |
1130 |
} // emit_D3D_RESERVED |
|
1131 |
||
17 | 1132 |
|
1133 |
// Generic D3D opcode emitters. A list of macros generate all the entry points |
|
1134 |
// that call into these... |
|
1135 |
||
30 | 1136 |
static char *lowercase(char *dst, const char *src) |
1137 |
{ |
|
1138 |
int i = 0; |
|
1139 |
do |
|
1140 |
{ |
|
1141 |
const char ch = src[i]; |
|
1142 |
dst[i] = (((ch >= 'A') && (ch <= 'Z')) ? (ch - ('A' - 'a')) : ch); |
|
1143 |
} while (src[i++]); |
|
1144 |
return dst; |
|
1145 |
} // lowercase |
|
1146 |
||
1147 |
||
18
0dbdb2be8bf8
[svn] Bunch More Work. Cleanups, added app-supplied allocators, flexible output, etc.
icculus
parents:
17
diff
changeset
|
1148 |
static void emit_D3D_opcode_d(Context *ctx, const char *opcode) |
17 | 1149 |
{ |
161
a0e1920ce909
Removed "dest_args" array...it's only ever one structure.
Ryan C. Gordon <icculus@icculus.org>
parents:
160
diff
changeset
|
1150 |
const char *dst0 = make_D3D_destarg_string(ctx); |
30 | 1151 |
opcode = lowercase(get_scratch_buffer(ctx), opcode); |
21
d43449cf3cb2
[svn] Implemented destination argument output in D3D profile. Untested.
icculus
parents:
20
diff
changeset
|
1152 |
output_line(ctx, "%s%s", opcode, dst0); |
17 | 1153 |
} // emit_D3D_opcode_d |
1154 |
||
1155 |
||
18
0dbdb2be8bf8
[svn] Bunch More Work. Cleanups, added app-supplied allocators, flexible output, etc.
icculus
parents:
17
diff
changeset
|
1156 |
static void emit_D3D_opcode_s(Context *ctx, const char *opcode) |
17 | 1157 |
{ |
165
708de76f4c36
More swizzle/writemask work.
Ryan C. Gordon <icculus@icculus.org>
parents:
164
diff
changeset
|
1158 |
const char *src0 = make_D3D_srcarg_string(ctx, 0); |
30 | 1159 |
opcode = lowercase(get_scratch_buffer(ctx), opcode); |
20
bb2e8f285acc
[svn] Bunch More Work...higher level parses dest/src tokens before it goes to the
icculus
parents:
19
diff
changeset
|
1160 |
output_line(ctx, "%s %s", opcode, src0); |
17 | 1161 |
} // emit_D3D_opcode_s |
1162 |
||
1163 |
||
18
0dbdb2be8bf8
[svn] Bunch More Work. Cleanups, added app-supplied allocators, flexible output, etc.
icculus
parents:
17
diff
changeset
|
1164 |
static void emit_D3D_opcode_ss(Context *ctx, const char *opcode) |
17 | 1165 |
{ |
165
708de76f4c36
More swizzle/writemask work.
Ryan C. Gordon <icculus@icculus.org>
parents:
164
diff
changeset
|
1166 |
const char *src0 = make_D3D_srcarg_string(ctx, 0); |
708de76f4c36
More swizzle/writemask work.
Ryan C. Gordon <icculus@icculus.org>
parents:
164
diff
changeset
|
1167 |
const char *src1 = make_D3D_srcarg_string(ctx, 1); |
30 | 1168 |
opcode = lowercase(get_scratch_buffer(ctx), opcode); |
20
bb2e8f285acc
[svn] Bunch More Work...higher level parses dest/src tokens before it goes to the
icculus
parents:
19
diff
changeset
|
1169 |
output_line(ctx, "%s %s, %s", opcode, src0, src1); |
39 | 1170 |
} // emit_D3D_opcode_ss |
17 | 1171 |
|
1172 |
||
18
0dbdb2be8bf8
[svn] Bunch More Work. Cleanups, added app-supplied allocators, flexible output, etc.
icculus
parents:
17
diff
changeset
|
1173 |
static void emit_D3D_opcode_ds(Context *ctx, const char *opcode) |
17 | 1174 |
{ |
161
a0e1920ce909
Removed "dest_args" array...it's only ever one structure.
Ryan C. Gordon <icculus@icculus.org>
parents:
160
diff
changeset
|
1175 |
const char *dst0 = make_D3D_destarg_string(ctx); |
165
708de76f4c36
More swizzle/writemask work.
Ryan C. Gordon <icculus@icculus.org>
parents:
164
diff
changeset
|
1176 |
const char *src0 = make_D3D_srcarg_string(ctx, 0); |
30 | 1177 |
opcode = lowercase(get_scratch_buffer(ctx), opcode); |
21
d43449cf3cb2
[svn] Implemented destination argument output in D3D profile. Untested.
icculus
parents:
20
diff
changeset
|
1178 |
output_line(ctx, "%s%s, %s", opcode, dst0, src0); |
17 | 1179 |
} // emit_D3D_opcode_ds |
1180 |
||
1181 |
||
18
0dbdb2be8bf8
[svn] Bunch More Work. Cleanups, added app-supplied allocators, flexible output, etc.
icculus
parents:
17
diff
changeset
|
1182 |
static void emit_D3D_opcode_dss(Context *ctx, const char *opcode) |
17 | 1183 |
{ |
161
a0e1920ce909
Removed "dest_args" array...it's only ever one structure.
Ryan C. Gordon <icculus@icculus.org>
parents:
160
diff
changeset
|
1184 |
const char *dst0 = make_D3D_destarg_string(ctx); |
165
708de76f4c36
More swizzle/writemask work.
Ryan C. Gordon <icculus@icculus.org>
parents:
164
diff
changeset
|
1185 |
const char *src0 = make_D3D_srcarg_string(ctx, 0); |
708de76f4c36
More swizzle/writemask work.
Ryan C. Gordon <icculus@icculus.org>
parents:
164
diff
changeset
|
1186 |
const char *src1 = make_D3D_srcarg_string(ctx, 1); |
30 | 1187 |
opcode = lowercase(get_scratch_buffer(ctx), opcode); |
21
d43449cf3cb2
[svn] Implemented destination argument output in D3D profile. Untested.
icculus
parents:
20
diff
changeset
|
1188 |
output_line(ctx, "%s%s, %s, %s", opcode, dst0, src0, src1); |
17 | 1189 |
} // emit_D3D_opcode_dss |
1190 |
||
1191 |
||
18
0dbdb2be8bf8
[svn] Bunch More Work. Cleanups, added app-supplied allocators, flexible output, etc.
icculus
parents:
17
diff
changeset
|
1192 |
static void emit_D3D_opcode_dsss(Context *ctx, const char *opcode) |
17 | 1193 |
{ |
161
a0e1920ce909
Removed "dest_args" array...it's only ever one structure.
Ryan C. Gordon <icculus@icculus.org>
parents:
160
diff
changeset
|
1194 |
const char *dst0 = make_D3D_destarg_string(ctx); |
165
708de76f4c36
More swizzle/writemask work.
Ryan C. Gordon <icculus@icculus.org>
parents:
164
diff
changeset
|
1195 |
const char *src0 = make_D3D_srcarg_string(ctx, 0); |
708de76f4c36
More swizzle/writemask work.
Ryan C. Gordon <icculus@icculus.org>
parents:
164
diff
changeset
|
1196 |
const char *src1 = make_D3D_srcarg_string(ctx, 1); |
708de76f4c36
More swizzle/writemask work.
Ryan C. Gordon <icculus@icculus.org>
parents:
164
diff
changeset
|
1197 |
const char *src2 = make_D3D_srcarg_string(ctx, 2); |
30 | 1198 |
opcode = lowercase(get_scratch_buffer(ctx), opcode); |
21
d43449cf3cb2
[svn] Implemented destination argument output in D3D profile. Untested.
icculus
parents:
20
diff
changeset
|
1199 |
output_line(ctx, "%s%s, %s, %s, %s", opcode, dst0, src0, src1, src2); |
17 | 1200 |
} // emit_D3D_opcode_dsss |
1201 |
||
1202 |
||
18
0dbdb2be8bf8
[svn] Bunch More Work. Cleanups, added app-supplied allocators, flexible output, etc.
icculus
parents:
17
diff
changeset
|
1203 |
static void emit_D3D_opcode_dssss(Context *ctx, const char *opcode) |
17 | 1204 |
{ |
161
a0e1920ce909
Removed "dest_args" array...it's only ever one structure.
Ryan C. Gordon <icculus@icculus.org>
parents:
160
diff
changeset
|
1205 |
const char *dst0 = make_D3D_destarg_string(ctx); |
165
708de76f4c36
More swizzle/writemask work.
Ryan C. Gordon <icculus@icculus.org>
parents:
164
diff
changeset
|
1206 |
const char *src0 = make_D3D_srcarg_string(ctx, 0); |
708de76f4c36
More swizzle/writemask work.
Ryan C. Gordon <icculus@icculus.org>
parents:
164
diff
changeset
|
1207 |
const char *src1 = make_D3D_srcarg_string(ctx, 1); |
708de76f4c36
More swizzle/writemask work.
Ryan C. Gordon <icculus@icculus.org>
parents:
164
diff
changeset
|
1208 |
const char *src2 = make_D3D_srcarg_string(ctx, 2); |
708de76f4c36
More swizzle/writemask work.
Ryan C. Gordon <icculus@icculus.org>
parents:
164
diff
changeset
|
1209 |
const char *src3 = make_D3D_srcarg_string(ctx, 3); |
30 | 1210 |
opcode = lowercase(get_scratch_buffer(ctx), opcode); |
21
d43449cf3cb2
[svn] Implemented destination argument output in D3D profile. Untested.
icculus
parents:
20
diff
changeset
|
1211 |
output_line(ctx,"%s%s, %s, %s, %s, %s",opcode,dst0,src0,src1,src2,src3); |
17 | 1212 |
} // emit_D3D_opcode_dssss |
1213 |
||
1214 |
||
30 | 1215 |
static void emit_D3D_opcode(Context *ctx, const char *opcode) |
1216 |
{ |
|
1217 |
opcode = lowercase(get_scratch_buffer(ctx), opcode); |
|
1218 |
output_line(ctx, "%s", opcode); |
|
1219 |
} // emit_D3D_opcode_dssss |
|
1220 |
||
1221 |
||
17 | 1222 |
#define EMIT_D3D_OPCODE_FUNC(op) \ |
18
0dbdb2be8bf8
[svn] Bunch More Work. Cleanups, added app-supplied allocators, flexible output, etc.
icculus
parents:
17
diff
changeset
|
1223 |
static void emit_D3D_##op(Context *ctx) { \ |
30 | 1224 |
emit_D3D_opcode(ctx, #op); \ |
17 | 1225 |
} |
1226 |
#define EMIT_D3D_OPCODE_D_FUNC(op) \ |
|
18
0dbdb2be8bf8
[svn] Bunch More Work. Cleanups, added app-supplied allocators, flexible output, etc.
icculus
parents:
17
diff
changeset
|
1227 |
static void emit_D3D_##op(Context *ctx) { \ |