Skip to content

Latest commit

 

History

History
7567 lines (6385 loc) · 244 KB

mojoshader.c

File metadata and controls

7567 lines (6385 loc) · 244 KB
 
Feb 10, 2008
Feb 10, 2008
1
/**
Mar 22, 2008
Mar 22, 2008
2
3
* MojoShader; generate shader programs from bytecode of compiled
* Direct3D shaders.
Feb 10, 2008
Feb 10, 2008
4
5
6
7
8
9
*
* Please see the file LICENSE.txt in the source's root directory.
*
* This file written by Ryan C. Gordon.
*/
May 25, 2008
May 25, 2008
10
11
// !!! FIXME: this file really needs to be split up.
Mar 14, 2008
Mar 14, 2008
12
13
// !!! FIXME: I keep changing coding styles for symbols and typedefs.
Feb 10, 2008
Feb 10, 2008
14
15
16
// Shader bytecode format is described at MSDN:
// http://msdn2.microsoft.com/en-us/library/ms800307.aspx
Feb 9, 2008
Feb 9, 2008
17
#include <stdio.h>
Mar 9, 2008
Mar 9, 2008
18
#include <string.h>
Feb 9, 2008
Feb 9, 2008
19
#include <stdlib.h>
Mar 9, 2008
Mar 9, 2008
20
#include <stdarg.h>
Mar 17, 2008
Mar 17, 2008
21
#include <assert.h>
Feb 9, 2008
Feb 9, 2008
22
Mar 22, 2008
Mar 22, 2008
23
#include "mojoshader.h"
Feb 12, 2008
Feb 12, 2008
24
Apr 2, 2008
Apr 2, 2008
25
Mar 16, 2008
Mar 16, 2008
26
27
28
29
30
// This is the highest shader version we currently support.
#define MAX_SHADER_MAJOR 3
#define MAX_SHADER_MINOR 0
Mar 14, 2008
Mar 14, 2008
31
Apr 3, 2008
Apr 3, 2008
32
33
// If SUPPORT_PROFILE_* isn't defined, we assume an implicit desire to support.
// You get all the profiles unless you go out of your way to disable them.
Mar 14, 2008
Mar 14, 2008
34
Mar 11, 2008
Mar 11, 2008
35
36
37
38
#ifndef SUPPORT_PROFILE_D3D
#define SUPPORT_PROFILE_D3D 1
#endif
Apr 6, 2008
Apr 6, 2008
39
40
41
42
#ifndef SUPPORT_PROFILE_PASSTHROUGH
#define SUPPORT_PROFILE_PASSTHROUGH 1
#endif
Mar 11, 2008
Mar 11, 2008
43
44
45
46
#ifndef SUPPORT_PROFILE_GLSL
#define SUPPORT_PROFILE_GLSL 1
#endif
May 25, 2008
May 25, 2008
47
48
49
50
#ifndef SUPPORT_PROFILE_ARB1
#define SUPPORT_PROFILE_ARB1 1
#endif
Mar 14, 2008
Mar 14, 2008
51
52
53
54
// Get basic wankery out of the way here...
typedef unsigned int uint; // this is a printf() helper. don't use for code.
Apr 30, 2008
Apr 30, 2008
55
56
#ifdef _MSC_VER
Jul 4, 2008
Jul 4, 2008
57
#include <malloc.h>
Apr 30, 2008
Apr 30, 2008
58
59
#define snprintf _snprintf
typedef unsigned __int8 uint8;
Jun 25, 2008
Jun 25, 2008
60
typedef unsigned __int16 uint16;
Apr 30, 2008
Apr 30, 2008
61
62
typedef unsigned __int32 uint32;
typedef unsigned __int32 int32;
May 8, 2008
May 8, 2008
63
64
65
// Warning Level 4 considered harmful. :)
#pragma warning(disable: 4100) // "unreferenced formal parameter"
#pragma warning(disable: 4389) // "signed/unsigned mismatch"
Apr 30, 2008
Apr 30, 2008
66
67
#else
#include <stdint.h>
Mar 14, 2008
Mar 14, 2008
68
typedef uint8_t uint8;
Jun 25, 2008
Jun 25, 2008
69
typedef uint16_t uint16;
Mar 14, 2008
Mar 14, 2008
70
typedef uint32_t uint32;
Mar 21, 2008
Mar 21, 2008
71
typedef int32_t int32;
Apr 30, 2008
Apr 30, 2008
72
#endif
Mar 14, 2008
Mar 14, 2008
73
Mar 9, 2008
Mar 9, 2008
74
75
76
77
78
79
#ifdef __GNUC__
#define ISPRINTF(x,y) __attribute__((format (printf, x, y)))
#else
#define ISPRINTF(x,y)
#endif
Mar 11, 2008
Mar 11, 2008
80
81
#define STATICARRAYLEN(x) ( (sizeof ((x))) / (sizeof ((x)[0])) )
Mar 27, 2008
Mar 27, 2008
82
83
84
85
86
87
#ifdef _WINDOWS // !!! FIXME: bleh
const char *endline_str = "\r\n";
#else
const char *endline_str = "\n";
#endif
Apr 2, 2008
Apr 2, 2008
88
89
90
// we need to reference this by explicit value occasionally.
#define OPCODE_RET 28
Apr 25, 2008
Apr 25, 2008
91
92
93
94
95
// Special-case return values from the parsing pipeline...
#define FAIL (-1)
#define NOFAIL (-2)
#define END_OF_STREAM (-3)
Mar 14, 2008
Mar 14, 2008
96
97
98
99
100
101
102
103
104
// Byteswap magic...
#if ((defined __GNUC__) && (defined __POWERPC__))
static inline uint32 SWAP32(uint32 x)
{
__asm__ __volatile__("lwbrx %0,0,%1" : "=r" (x) : "r" (&x));
return x;
} // SWAP32
Jun 25, 2008
Jun 25, 2008
105
106
107
108
109
static inline uint16 SWAP16(uint16 x)
{
__asm__ __volatile__("lhbrx %0,0,%1" : "=r" (x) : "r" (&x));
return x;
} // SWAP16
Mar 14, 2008
Mar 14, 2008
110
111
112
113
114
115
#elif defined(__POWERPC__)
static inline uint32 SWAP32(uint32 x)
{
return ( (((x) >> 24) & 0x000000FF) | (((x) >> 8) & 0x0000FF00) |
(((x) << 8) & 0x00FF0000) | (((x) << 24) & 0xFF000000) );
} // SWAP32
Jun 25, 2008
Jun 25, 2008
116
117
118
119
static inline uint16 SWAP16(uint16 x)
{
return ( (((x) >> 8) & 0x00FF) | (((x) << 8) & 0xFF00) );
} // SWAP16
Mar 14, 2008
Mar 14, 2008
120
#else
Jun 25, 2008
Jun 25, 2008
121
# define SWAP16(x) (x)
Mar 14, 2008
Mar 14, 2008
122
123
124
# define SWAP32(x) (x)
#endif
Apr 4, 2008
Apr 4, 2008
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
typedef enum
{
REG_TYPE_TEMP = 0,
REG_TYPE_INPUT = 1,
REG_TYPE_CONST = 2,
REG_TYPE_ADDRESS = 3,
REG_TYPE_TEXTURE = 3, // ALSO 3!
REG_TYPE_RASTOUT = 4,
REG_TYPE_ATTROUT = 5,
REG_TYPE_TEXCRDOUT = 6,
REG_TYPE_OUTPUT = 6, // ALSO 6!
REG_TYPE_CONSTINT = 7,
REG_TYPE_COLOROUT = 8,
REG_TYPE_DEPTHOUT = 9,
REG_TYPE_SAMPLER = 10,
REG_TYPE_CONST2 = 11,
REG_TYPE_CONST3 = 12,
REG_TYPE_CONST4 = 13,
REG_TYPE_CONSTBOOL = 14,
REG_TYPE_LOOP = 15,
REG_TYPE_TEMPFLOAT16 = 16,
REG_TYPE_MISCTYPE = 17,
REG_TYPE_LABEL = 18,
REG_TYPE_PREDICATE = 19,
REG_TYPE_MAX = 19
} RegisterType;
Feb 9, 2008
Feb 9, 2008
151
Apr 19, 2008
Apr 19, 2008
152
153
154
155
156
157
158
typedef enum
{
TEXTURE_TYPE_2D = 2,
TEXTURE_TYPE_CUBE = 3,
TEXTURE_TYPE_VOLUME = 4,
} TextureType;
Mar 11, 2008
Mar 11, 2008
159
// predeclare.
Mar 14, 2008
Mar 14, 2008
160
typedef struct Context Context;
Jun 29, 2008
Jun 29, 2008
161
struct ConstantsList;
Mar 11, 2008
Mar 11, 2008
162
163
// one emit function for each opcode in each profile.
Mar 14, 2008
Mar 14, 2008
164
typedef void (*emit_function)(Context *ctx);
Mar 11, 2008
Mar 11, 2008
165
166
// one emit function for starting output in each profile.
Jun 18, 2008
Jun 18, 2008
167
typedef void (*emit_start)(Context *ctx, const char *profilestr);
Mar 11, 2008
Mar 11, 2008
168
169
// one emit function for ending output in each profile.
Mar 14, 2008
Mar 14, 2008
170
typedef void (*emit_end)(Context *ctx);
Mar 11, 2008
Mar 11, 2008
171
Jun 26, 2008
Jun 26, 2008
172
173
174
// one emit function for phase opcode output in each profile.
typedef void (*emit_phase)(Context *ctx);
Apr 4, 2008
Apr 4, 2008
175
176
177
178
179
180
// one emit function for finalizing output in each profile.
typedef void (*emit_finalize)(Context *ctx);
// one emit function for global definitions in each profile.
typedef void (*emit_global)(Context *ctx, RegisterType regtype, int regnum);
May 5, 2008
May 5, 2008
181
// one emit function for relative uniform arrays in each profile.
Jun 27, 2008
Jun 27, 2008
182
typedef void (*emit_array)(Context *ctx, int base, int size);
May 5, 2008
May 5, 2008
183
Jun 29, 2008
Jun 29, 2008
184
185
186
187
188
// one emit function for relative constants arrays in each profile.
typedef void (*emit_const_array)(Context *ctx,
const struct ConstantsList *constslist,
int base, int size);
Apr 4, 2008
Apr 4, 2008
189
// one emit function for uniforms in each profile.
Jun 27, 2008
Jun 27, 2008
190
191
typedef void (*emit_uniform)(Context *ctx, RegisterType regtype, int regnum,
int arraybase, int arraysize);
Apr 4, 2008
Apr 4, 2008
192
Apr 19, 2008
Apr 19, 2008
193
194
195
// one emit function for samplers in each profile.
typedef void (*emit_sampler)(Context *ctx, int stage, TextureType ttype);
Apr 5, 2008
Apr 5, 2008
196
197
198
199
// one emit function for attributes in each profile.
typedef void (*emit_attribute)(Context *ctx, RegisterType regtype, int regnum,
MOJOSHADER_usage usage, int index, int wmask);
Mar 16, 2008
Mar 16, 2008
200
201
202
// one args function for each possible sequence of opcode arguments.
typedef int (*args_function)(Context *ctx);
Mar 11, 2008
Mar 11, 2008
203
// one state function for each opcode where we have state machine updates.
Mar 27, 2008
Mar 27, 2008
204
typedef void (*state_function)(Context *ctx);
Mar 11, 2008
Mar 11, 2008
205
Jun 2, 2008
Jun 2, 2008
206
207
208
209
// one function for varnames in each profile.
typedef const char *(*varname_function)(Context *c, RegisterType t, int num);
// one function for const var array in each profile.
Jun 27, 2008
Jun 27, 2008
210
typedef const char *(*const_array_varname_function)(Context *c, int base, int size);
Jun 2, 2008
Jun 2, 2008
211
Mar 11, 2008
Mar 11, 2008
212
213
214
215
216
typedef struct
{
const char *name;
emit_start start_emitter;
emit_end end_emitter;
Jun 26, 2008
Jun 26, 2008
217
emit_phase phase_emitter;
Apr 4, 2008
Apr 4, 2008
218
emit_global global_emitter;
Jun 27, 2008
Jun 27, 2008
219
emit_array array_emitter;
Jun 29, 2008
Jun 29, 2008
220
emit_const_array const_array_emitter;
Apr 4, 2008
Apr 4, 2008
221
emit_uniform uniform_emitter;
Apr 19, 2008
Apr 19, 2008
222
emit_sampler sampler_emitter;
Apr 5, 2008
Apr 5, 2008
223
emit_attribute attribute_emitter;
Apr 4, 2008
Apr 4, 2008
224
emit_finalize finalize_emitter;
Jun 2, 2008
Jun 2, 2008
225
226
varname_function get_varname;
const_array_varname_function get_const_array_varname;
Mar 22, 2008
Mar 22, 2008
227
} Profile;
Mar 11, 2008
Mar 11, 2008
228
Mar 16, 2008
Mar 16, 2008
229
230
231
232
233
234
typedef enum
{
RASTOUT_TYPE_POSITION = 0,
RASTOUT_TYPE_FOG = 1,
RASTOUT_TYPE_POINT_SIZE = 2,
RASTOUT_TYPE_MAX = 2
Mar 22, 2008
Mar 22, 2008
235
} RastOutType;
Mar 16, 2008
Mar 16, 2008
236
237
238
239
240
241
typedef enum
{
MISCTYPE_TYPE_POSITION = 0,
MISCTYPE_TYPE_FACE = 1,
MISCTYPE_TYPE_MAX = 1
Mar 22, 2008
Mar 22, 2008
242
} MiscTypeType;
Mar 16, 2008
Mar 16, 2008
243
Mar 12, 2008
Mar 12, 2008
244
Mar 14, 2008
Mar 14, 2008
245
246
247
// A simple linked list of strings, so we can build the final output without
// realloc()ing for each new line, and easily insert lines into the middle
// of the output without much trouble.
Mar 28, 2008
Mar 28, 2008
248
typedef struct OutputListNode
Mar 14, 2008
Mar 14, 2008
249
250
{
char *str;
Mar 28, 2008
Mar 28, 2008
251
252
253
254
255
256
257
struct OutputListNode *next;
} OutputListNode;
typedef struct OutputList
{
OutputListNode head;
OutputListNode *tail;
Mar 14, 2008
Mar 14, 2008
258
259
} OutputList;
Jun 29, 2008
Jun 29, 2008
260
261
262
263
264
265
typedef struct ConstantsList
{
MOJOSHADER_constant constant;
struct ConstantsList *next;
} ConstantsList;
Jun 25, 2008
Jun 25, 2008
266
267
268
269
270
typedef struct VariableList
{
MOJOSHADER_uniformType type;
int index;
int count;
Jun 29, 2008
Jun 29, 2008
271
ConstantsList *constant;
Jun 27, 2008
Jun 27, 2008
272
int used;
Jun 25, 2008
Jun 25, 2008
273
274
struct VariableList *next;
} VariableList;
Mar 16, 2008
Mar 16, 2008
275
Apr 4, 2008
Apr 4, 2008
276
277
278
279
typedef struct RegisterList
{
RegisterType regtype;
int regnum;
Apr 5, 2008
Apr 5, 2008
280
281
282
MOJOSHADER_usage usage;
int index;
int writemask;
Apr 29, 2008
Apr 29, 2008
283
int misc;
Jun 27, 2008
Jun 27, 2008
284
const VariableList *array;
Apr 4, 2008
Apr 4, 2008
285
286
287
struct RegisterList *next;
} RegisterList;
Mar 16, 2008
Mar 16, 2008
288
// result modifiers.
Jul 7, 2008
Jul 7, 2008
289
// !!! FIXME: why isn't this an enum?
Mar 16, 2008
Mar 16, 2008
290
291
292
293
#define MOD_SATURATE 0x01
#define MOD_PP 0x02
#define MOD_CENTROID 0x04
Mar 17, 2008
Mar 17, 2008
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
// source modifiers.
typedef enum
{
SRCMOD_NONE,
SRCMOD_NEGATE,
SRCMOD_BIAS,
SRCMOD_BIASNEGATE,
SRCMOD_SIGN,
SRCMOD_SIGNNEGATE,
SRCMOD_COMPLEMENT,
SRCMOD_X2,
SRCMOD_X2NEGATE,
SRCMOD_DZ,
SRCMOD_DW,
SRCMOD_ABS,
SRCMOD_ABSNEGATE,
SRCMOD_NOT,
SRCMOD_TOTAL
Mar 22, 2008
Mar 22, 2008
312
} SourceMod;
Mar 17, 2008
Mar 17, 2008
313
Mar 16, 2008
Mar 16, 2008
314
Mar 16, 2008
Mar 16, 2008
315
316
typedef struct
{
Mar 16, 2008
Mar 16, 2008
317
const uint32 *token; // this is the unmolested token in the stream.
Mar 16, 2008
Mar 16, 2008
318
319
int regnum;
int relative;
Mar 16, 2008
Mar 16, 2008
320
321
322
323
324
int writemask; // xyzw or rgba (all four, not split out).
int writemask0; // x or red
int writemask1; // y or green
int writemask2; // z or blue
int writemask3; // w or alpha
May 12, 2008
May 12, 2008
325
int orig_writemask; // writemask before mojoshader tweaks it.
Mar 16, 2008
Mar 16, 2008
326
327
int result_mod;
int result_shift;
Apr 2, 2008
Apr 2, 2008
328
RegisterType regtype;
Mar 16, 2008
Mar 16, 2008
329
330
331
332
} DestArgInfo;
typedef struct
{
Mar 16, 2008
Mar 16, 2008
333
const uint32 *token; // this is the unmolested token in the stream.
Mar 16, 2008
Mar 16, 2008
334
int regnum;
Mar 16, 2008
Mar 16, 2008
335
int swizzle; // xyzw (all four, not split out).
Mar 16, 2008
Mar 16, 2008
336
337
338
339
int swizzle_x;
int swizzle_y;
int swizzle_z;
int swizzle_w;
Apr 18, 2008
Apr 18, 2008
340
SourceMod src_mod;
Apr 2, 2008
Apr 2, 2008
341
RegisterType regtype;
Apr 19, 2008
Apr 19, 2008
342
343
344
345
int relative;
RegisterType relative_regtype;
int relative_regnum;
int relative_component;
Jun 27, 2008
Jun 27, 2008
346
const VariableList *relative_array;
Mar 16, 2008
Mar 16, 2008
347
348
349
} SourceArgInfo;
Apr 2, 2008
Apr 2, 2008
350
Apr 18, 2008
Apr 18, 2008
351
#define SCRATCH_BUFFER_SIZE 128
May 30, 2008
May 30, 2008
352
#define SCRATCH_BUFFERS 32
Mar 9, 2008
Mar 9, 2008
353
Apr 4, 2008
Apr 4, 2008
354
// !!! FIXME: the scratch buffers make Context pretty big.
Apr 2, 2008
Apr 2, 2008
355
356
// !!! FIXME: might be worth having one set of static scratch buffers that
// !!! FIXME: are mutex protected?
Apr 4, 2008
Apr 4, 2008
357
Mar 9, 2008
Mar 9, 2008
358
// Context...this is state that changes as we parse through a shader...
Mar 14, 2008
Mar 14, 2008
359
struct Context
Mar 9, 2008
Mar 9, 2008
360
{
Mar 22, 2008
Mar 22, 2008
361
362
MOJOSHADER_malloc malloc;
MOJOSHADER_free free;
Apr 4, 2008
Apr 4, 2008
363
void *malloc_data;
Mar 9, 2008
Mar 9, 2008
364
365
const uint32 *tokens;
uint32 tokencount;
Mar 28, 2008
Mar 28, 2008
366
367
OutputList *output;
OutputList globals;
Apr 2, 2008
Apr 2, 2008
368
OutputList helpers;
Mar 28, 2008
Mar 28, 2008
369
OutputList subroutines;
Apr 24, 2008
Apr 24, 2008
370
OutputList mainline_intro;
Mar 28, 2008
Mar 28, 2008
371
OutputList mainline;
Apr 2, 2008
Apr 2, 2008
372
373
OutputList ignore;
OutputList *output_stack[2];
Apr 6, 2008
Apr 6, 2008
374
uint8 *output_bytes; // can be used instead of the OutputLists.
Apr 2, 2008
Apr 2, 2008
375
376
int indent_stack[2];
int output_stack_len;
Mar 28, 2008
Mar 28, 2008
377
int output_len; // total strlen; prevents walking the lists just to malloc.
Mar 24, 2008
Mar 24, 2008
378
int indent;
May 28, 2008
May 28, 2008
379
const char *shader_type_str;
Mar 14, 2008
Mar 14, 2008
380
381
382
const char *endline;
int endline_len;
const char *failstr;
Mar 22, 2008
Mar 22, 2008
383
char scratch[SCRATCH_BUFFERS][SCRATCH_BUFFER_SIZE];
Mar 14, 2008
Mar 14, 2008
384
385
int scratchidx; // current scratch buffer.
int profileid;
Mar 22, 2008
Mar 22, 2008
386
const Profile *profile;
Apr 4, 2008
Apr 4, 2008
387
MOJOSHADER_shaderType shader_type;
Mar 28, 2008
Mar 28, 2008
388
389
uint8 major_ver;
uint8 minor_ver;
Apr 21, 2008
Apr 21, 2008
390
DestArgInfo dest_arg;
Apr 2, 2008
Apr 2, 2008
391
SourceArgInfo source_args[5];
Apr 18, 2008
Apr 18, 2008
392
SourceArgInfo predicate_arg; // for predicated instructions.
Mar 21, 2008
Mar 21, 2008
393
uint32 dwords[4];
Jun 25, 2008
Jun 25, 2008
394
uint32 version_token;
Mar 28, 2008
Mar 28, 2008
395
int instruction_count;
Mar 17, 2008
Mar 17, 2008
396
uint32 instruction_controls;
Apr 2, 2008
Apr 2, 2008
397
398
uint32 previous_opcode;
int loops;
Apr 6, 2008
Apr 6, 2008
399
int reps;
Jun 20, 2008
Jun 20, 2008
400
int max_reps;
Apr 6, 2008
Apr 6, 2008
401
int cmps;
May 26, 2008
May 26, 2008
402
403
int scratch_registers;
int max_scratch_registers;
Jun 20, 2008
Jun 20, 2008
404
405
406
int branch_labels_stack_index;
int branch_labels_stack[32];
int assigned_branch_labels;
May 27, 2008
May 27, 2008
407
int assigned_vertex_attributes;
May 29, 2008
May 29, 2008
408
int last_address_reg_component;
Apr 4, 2008
Apr 4, 2008
409
410
RegisterList used_registers;
RegisterList defined_registers;
May 3, 2008
May 3, 2008
411
412
int constant_count;
ConstantsList *constants;
Apr 4, 2008
Apr 4, 2008
413
414
int uniform_count;
RegisterList uniforms;
Apr 5, 2008
Apr 5, 2008
415
416
int attribute_count;
RegisterList attributes;
Apr 19, 2008
Apr 19, 2008
417
418
int sampler_count;
RegisterList samplers;
Jun 25, 2008
Jun 25, 2008
419
420
VariableList *variables; // variables to register mapping.
int have_ctab:1;
Jun 29, 2008
Jun 29, 2008
421
int determined_constants_arrays:1;
Jun 18, 2008
Jun 18, 2008
422
423
int predicated:1;
int support_nv2:1;
Jul 3, 2008
Jul 3, 2008
424
int support_nv3:1;
Jun 29, 2008
Jun 29, 2008
425
int support_glsl120:1;
Jun 18, 2008
Jun 18, 2008
426
int glsl_generated_lit_opcode:1;
Mar 11, 2008
Mar 11, 2008
427
428
429
};
Apr 4, 2008
Apr 4, 2008
430
431
// Convenience functions for allocators...
Apr 25, 2008
Apr 25, 2008
432
433
434
435
436
437
static MOJOSHADER_parseData out_of_mem_data = {
"Out of memory", 0, 0, 0, 0, MOJOSHADER_TYPE_UNKNOWN, 0, 0, 0, 0
};
static const char *out_of_mem_str = "Out of memory";
static inline int out_of_memory(Context *ctx)
Apr 4, 2008
Apr 4, 2008
438
{
Apr 25, 2008
Apr 25, 2008
439
440
441
442
443
if (ctx->failstr == NULL)
ctx->failstr = out_of_mem_str; // fail() would call malloc().
return FAIL;
} // out_of_memory
May 10, 2008
May 10, 2008
444
static inline void *Malloc(Context *ctx, const size_t len)
Apr 25, 2008
Apr 25, 2008
445
{
May 10, 2008
May 10, 2008
446
void *retval = ctx->malloc((int) len, ctx->malloc_data);
Apr 25, 2008
Apr 25, 2008
447
448
449
if (retval == NULL)
out_of_memory(ctx);
return retval;
Apr 4, 2008
Apr 4, 2008
450
451
452
} // Malloc
Apr 25, 2008
Apr 25, 2008
453
static inline void Free(Context *ctx, void *ptr)
Apr 4, 2008
Apr 4, 2008
454
{
Apr 12, 2008
Apr 12, 2008
455
if (ptr != NULL) // check for NULL in case of dumb free() impl.
Apr 4, 2008
Apr 4, 2008
456
ctx->free(ptr, ctx->malloc_data);
Apr 4, 2008
Apr 4, 2008
457
458
459
} // Free
Apr 2, 2008
Apr 2, 2008
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
// jump between output sections in the context...
static inline void push_output(Context *ctx, OutputList *section)
{
assert(ctx->output_stack_len < STATICARRAYLEN(ctx->output_stack));
ctx->output_stack[ctx->output_stack_len] = ctx->output;
ctx->indent_stack[ctx->output_stack_len] = ctx->indent;
ctx->output_stack_len++;
ctx->output = section;
ctx->indent = 0;
} // push_output
static inline void pop_output(Context *ctx)
{
assert(ctx->output_stack_len > 0);
ctx->output_stack_len--;
ctx->output = ctx->output_stack[ctx->output_stack_len];
ctx->indent = ctx->indent_stack[ctx->output_stack_len];
} // pop_output
// Shader model version magic...
Mar 27, 2008
Mar 27, 2008
484
485
486
487
488
static inline uint32 ver_ui32(const uint8 major, const uint8 minor)
{
return ( (((uint32) major) << 16) | (((minor) == 0xFF) ? 0 : (minor)) );
} // version_ui32
Apr 19, 2008
Apr 19, 2008
489
static inline int shader_version_supported(const uint8 maj, const uint8 min)
Mar 27, 2008
Mar 27, 2008
490
491
492
493
{
return (ver_ui32(maj,min) <= ver_ui32(MAX_SHADER_MAJOR, MAX_SHADER_MINOR));
} // shader_version_supported
Apr 19, 2008
Apr 19, 2008
494
495
static inline int shader_version_atleast(const Context *ctx, const uint8 maj,
const uint8 min)
Mar 27, 2008
Mar 27, 2008
496
497
498
499
{
return (ver_ui32(ctx->major_ver, ctx->minor_ver) >= ver_ui32(maj, min));
} // shader_version_atleast
Jun 26, 2008
Jun 26, 2008
500
501
502
503
504
505
static inline int shader_version_exactly(const Context *ctx, const uint8 maj,
const uint8 min)
{
return ((ctx->major_ver == maj) && (ctx->minor_ver == min));
} // shader_version_exactly
Apr 19, 2008
Apr 19, 2008
506
507
508
509
510
511
512
513
514
515
static inline int shader_is_pixel(const Context *ctx)
{
return (ctx->shader_type == MOJOSHADER_TYPE_PIXEL);
} // shader_is_pixel
static inline int shader_is_vertex(const Context *ctx)
{
return (ctx->shader_type == MOJOSHADER_TYPE_VERTEX);
} // shader_is_vertex
Mar 27, 2008
Mar 27, 2008
516
May 30, 2008
May 30, 2008
517
518
519
520
521
static inline int isfail(const Context *ctx)
{
return (ctx->failstr != NULL);
} // isfail
Apr 2, 2008
Apr 2, 2008
522
Mar 14, 2008
Mar 14, 2008
523
static inline char *get_scratch_buffer(Context *ctx)
Mar 9, 2008
Mar 9, 2008
524
{
May 30, 2008
May 30, 2008
525
526
527
528
529
530
531
532
533
534
535
536
if ((ctx->scratchidx >= SCRATCH_BUFFERS) && !isfail(ctx))
{
// can't call fail() here, since it calls back into here.
const char *errstr = "BUG: overflowed scratch buffers";
char *failstr = (char *) Malloc(ctx, strlen(errstr) + 1);
if (failstr != NULL)
{
strcpy(failstr, errstr);
ctx->failstr = failstr;
} // if
} // if
Mar 22, 2008
Mar 22, 2008
537
ctx->scratchidx = (ctx->scratchidx + 1) % SCRATCH_BUFFERS;
Mar 14, 2008
Mar 14, 2008
538
return ctx->scratch[ctx->scratchidx];
Mar 9, 2008
Mar 9, 2008
539
540
} // get_scratch_buffer
Feb 10, 2008
Feb 10, 2008
541
Mar 14, 2008
Mar 14, 2008
542
543
static int failf(Context *ctx, const char *fmt, ...) ISPRINTF(2,3);
static int failf(Context *ctx, const char *fmt, ...)
Feb 10, 2008
Feb 10, 2008
544
{
Mar 9, 2008
Mar 9, 2008
545
546
if (ctx->failstr == NULL) // don't change existing error.
{
Mar 14, 2008
Mar 14, 2008
547
char *scratch = get_scratch_buffer(ctx);
Mar 9, 2008
Mar 9, 2008
548
549
va_list ap;
va_start(ap, fmt);
Apr 18, 2008
Apr 18, 2008
550
const int len = vsnprintf(scratch, SCRATCH_BUFFER_SIZE, fmt, ap);
Mar 9, 2008
Mar 9, 2008
551
552
va_end(ap);
Apr 4, 2008
Apr 4, 2008
553
char *failstr = (char *) Malloc(ctx, len + 1);
Apr 25, 2008
Apr 25, 2008
554
if (failstr != NULL)
Mar 14, 2008
Mar 14, 2008
555
556
{
// see comments about scratch buffer overflow in output_line().
Mar 22, 2008
Mar 22, 2008
557
if (len < SCRATCH_BUFFER_SIZE)
Mar 14, 2008
Mar 14, 2008
558
559
560
561
562
563
564
565
strcpy(failstr, scratch); // copy it over.
else
{
va_start(ap, fmt);
vsnprintf(failstr, len + 1, fmt, ap); // rebuild it.
va_end(ap);
} // else
ctx->failstr = failstr;
Apr 25, 2008
Apr 25, 2008
566
} // if
Mar 9, 2008
Mar 9, 2008
567
568
569
570
571
572
} // if
return FAIL;
} // failf
Mar 14, 2008
Mar 14, 2008
573
static inline int fail(Context *ctx, const char *reason)
Mar 9, 2008
Mar 9, 2008
574
575
576
577
578
{
return failf(ctx, "%s", reason);
} // fail
Mar 14, 2008
Mar 14, 2008
579
580
static int output_line(Context *ctx, const char *fmt, ...) ISPRINTF(2,3);
static int output_line(Context *ctx, const char *fmt, ...)
Mar 9, 2008
Mar 9, 2008
581
{
Mar 28, 2008
Mar 28, 2008
582
583
OutputListNode *item = NULL;
Mar 27, 2008
Mar 27, 2008
584
if (isfail(ctx))
Mar 9, 2008
Mar 9, 2008
585
586
return FAIL; // we failed previously, don't go on...
Mar 14, 2008
Mar 14, 2008
587
char *scratch = get_scratch_buffer(ctx);
Mar 24, 2008
Mar 24, 2008
588
589
const int indent = ctx->indent;
Mar 27, 2008
Mar 27, 2008
590
591
if (indent > 0)
memset(scratch, '\t', indent);
Apr 2, 2008
Apr 2, 2008
592
Mar 9, 2008
Mar 9, 2008
593
594
va_list ap;
va_start(ap, fmt);
Mar 24, 2008
Mar 24, 2008
595
const int len = vsnprintf(scratch+indent, SCRATCH_BUFFER_SIZE-indent, fmt, ap) + indent;
Mar 9, 2008
Mar 9, 2008
596
597
va_end(ap);
Apr 4, 2008
Apr 4, 2008
598
item = (OutputListNode *) Malloc(ctx, sizeof (OutputListNode));
Apr 2, 2008
Apr 2, 2008
599
if (item == NULL)
Apr 25, 2008
Apr 25, 2008
600
return FAIL;
Apr 2, 2008
Apr 2, 2008
601
Apr 4, 2008
Apr 4, 2008
602
item->str = (char *) Malloc(ctx, len + 1);
Mar 14, 2008
Mar 14, 2008
603
if (item->str == NULL)
Mar 9, 2008
Mar 9, 2008
604
{
Apr 4, 2008
Apr 4, 2008
605
Free(ctx, item);
Apr 25, 2008
Apr 25, 2008
606
return FAIL;
Mar 9, 2008
Mar 9, 2008
607
608
} // if
Mar 14, 2008
Mar 14, 2008
609
610
611
// If we overflowed our scratch buffer, that's okay. We were going to
// allocate anyhow...the scratch buffer just lets us avoid a second
// run of vsnprintf().
Mar 22, 2008
Mar 22, 2008
612
if (len < SCRATCH_BUFFER_SIZE)
Mar 14, 2008
Mar 14, 2008
613
614
615
strcpy(item->str, scratch); // copy it over.
else
{
Mar 27, 2008
Mar 27, 2008
616
617
if (indent > 0)
memset(item->str, '\t', indent);
Mar 14, 2008
Mar 14, 2008
618
va_start(ap, fmt);
Mar 24, 2008
Mar 24, 2008
619
vsnprintf(item->str+indent, len + 1, fmt, ap); // rebuild it.
Mar 14, 2008
Mar 14, 2008
620
621
va_end(ap);
} // else
Mar 9, 2008
Mar 9, 2008
622
Mar 14, 2008
Mar 14, 2008
623
item->next = NULL;
Mar 28, 2008
Mar 28, 2008
624
625
626
ctx->output->tail->next = item;
ctx->output->tail = item;
Mar 14, 2008
Mar 14, 2008
627
ctx->output_len += len + ctx->endline_len;
Mar 28, 2008
Mar 28, 2008
628
Mar 9, 2008
Mar 9, 2008
629
630
631
632
return 0;
} // output_line
Apr 2, 2008
Apr 2, 2008
633
634
635
636
637
638
639
// this is just to stop gcc whining.
static inline int output_blank_line(Context *ctx)
{
return output_line(ctx, "%s", "");
} // output_blank_line
Mar 27, 2008
Mar 27, 2008
640
// !!! FIXME: this is sort of nasty.
Apr 3, 2008
Apr 3, 2008
641
642
static void floatstr(Context *ctx, char *buf, size_t bufsize, float f,
int leavedecimal)
Mar 27, 2008
Mar 27, 2008
643
644
{
const size_t len = snprintf(buf, bufsize, "%f", f);
Apr 3, 2008
Apr 3, 2008
645
if ((len+2) >= bufsize)
Mar 27, 2008
Mar 27, 2008
646
647
648
649
650
651
fail(ctx, "BUG: internal buffer is too small");
else
{
char *end = buf + len;
char *ptr = strchr(buf, '.');
if (ptr == NULL)
Apr 3, 2008
Apr 3, 2008
652
653
654
{
if (leavedecimal)
strcat(buf, ".0");
Mar 27, 2008
Mar 27, 2008
655
return; // done.
Apr 3, 2008
Apr 3, 2008
656
} // if
Mar 27, 2008
Mar 27, 2008
657
658
659
660
661
662
663
664
665
while (--end != ptr)
{
if (*end != '0')
{
end++;
break;
} // if
} // while
Apr 3, 2008
Apr 3, 2008
666
667
if ((leavedecimal) && (end == ptr))
end += 2;
Mar 27, 2008
Mar 27, 2008
668
669
670
671
*end = '\0'; // chop extra '0' or all decimal places off.
} // else
} // floatstr
Mar 12, 2008
Mar 12, 2008
672
Apr 4, 2008
Apr 4, 2008
673
674
// Deal with register lists... !!! FIXME: I sort of hate this.
Apr 4, 2008
Apr 4, 2008
675
static void free_reglist(MOJOSHADER_free f, void *d, RegisterList *item)
Apr 4, 2008
Apr 4, 2008
676
677
678
679
{
while (item != NULL)
{
RegisterList *next = item->next;
Apr 4, 2008
Apr 4, 2008
680
f(item, d);
Apr 4, 2008
Apr 4, 2008
681
682
683
684
685
686
687
688
689
item = next;
} // while
} // free_reglist
static inline uint32 reg_to_ui32(const RegisterType regtype, const int regnum)
{
return ( ((uint32) regtype) | (((uint32) regnum) << 16) );
} // reg_to_uint32
Apr 5, 2008
Apr 5, 2008
690
691
692
static RegisterList *reglist_insert(Context *ctx, RegisterList *prev,
const RegisterType regtype,
const int regnum)
Apr 4, 2008
Apr 4, 2008
693
694
695
696
697
698
699
{
const uint32 newval = reg_to_ui32(regtype, regnum);
RegisterList *item = prev->next;
while (item != NULL)
{
const uint32 val = reg_to_ui32(item->regtype, item->regnum);
if (newval == val)
Apr 5, 2008
Apr 5, 2008
700
return item; // already set, so we're done.
Apr 4, 2008
Apr 4, 2008
701
702
703
704
705
706
707
708
709
710
711
else if (newval < val) // insert it here.
break;
else // if (newval > val)
{
// keep going, we're not to the insertion point yet.
prev = item;
item = item->next;
} // else
} // while
// we need to insert an entry after (prev).
Apr 4, 2008
Apr 4, 2008
712
item = (RegisterList *) Malloc(ctx, sizeof (RegisterList));
Apr 25, 2008
Apr 25, 2008
713
if (item != NULL)
Apr 4, 2008
Apr 4, 2008
714
715
716
{
item->regtype = regtype;
item->regnum = regnum;
Apr 29, 2008
Apr 29, 2008
717
item->usage = MOJOSHADER_USAGE_UNKNOWN;
Apr 5, 2008
Apr 5, 2008
718
719
item->index = 0;
item->writemask = 0;
Apr 29, 2008
Apr 29, 2008
720
item->misc = 0;
Jun 27, 2008
Jun 27, 2008
721
item->array = NULL;
Apr 4, 2008
Apr 4, 2008
722
723
item->next = prev->next;
prev->next = item;
Apr 25, 2008
Apr 25, 2008
724
} // if
Apr 5, 2008
Apr 5, 2008
725
726
return item;
Apr 4, 2008
Apr 4, 2008
727
728
} // reglist_insert
Apr 6, 2008
Apr 6, 2008
729
730
static RegisterList *reglist_find(RegisterList *prev, const RegisterType rtype,
const int regnum)
Apr 4, 2008
Apr 4, 2008
731
{
Apr 6, 2008
Apr 6, 2008
732
733
const uint32 newval = reg_to_ui32(rtype, regnum);
RegisterList *item = prev->next;
Apr 4, 2008
Apr 4, 2008
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
while (item != NULL)
{
const uint32 val = reg_to_ui32(item->regtype, item->regnum);
if (newval == val)
return item; // here it is.
else if (newval < val) // should have been here if it existed.
return NULL;
else // if (newval > val)
{
// keep going, we're not to the insertion point yet.
prev = item;
item = item->next;
} // else
} // while
return NULL; // wasn't in the list.
Apr 6, 2008
Apr 6, 2008
750
751
752
753
754
755
756
} // reglist_find
static inline const RegisterList *reglist_exists(RegisterList *prev,
const RegisterType regtype,
const int regnum)
{
return (reglist_find(prev, regtype, regnum));
Apr 4, 2008
Apr 4, 2008
757
758
759
760
761
762
763
764
765
766
767
768
} // reglist_exists
static inline void set_used_register(Context *ctx, const RegisterType regtype,
const int regnum)
{
reglist_insert(ctx, &ctx->used_registers, regtype, regnum);
} // set_used_register
static inline int get_used_register(Context *ctx, const RegisterType regtype,
const int regnum)
{
return (reglist_exists(&ctx->used_registers, regtype, regnum) != NULL);
Apr 4, 2008
Apr 4, 2008
769
} // get_used_register
Apr 4, 2008
Apr 4, 2008
770
771
772
773
774
775
776
777
778
779
780
781
782
static inline void set_defined_register(Context *ctx, const RegisterType rtype,
const int regnum)
{
reglist_insert(ctx, &ctx->defined_registers, rtype, regnum);
} // set_defined_register
static inline int get_defined_register(Context *ctx, const RegisterType rtype,
const int regnum)
{
return (reglist_exists(&ctx->defined_registers, rtype, regnum) != NULL);
} // get_defined_register
Apr 24, 2008
Apr 24, 2008
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
static const RegisterList *declared_attribute(Context *ctx,
const MOJOSHADER_usage usage,
const int index)
{
const RegisterList *item = ctx->attributes.next;
while (item != NULL)
{
if ((item->usage == usage) && (item->index == index))
return item;
item = item->next;
} // while
return NULL;
} // declared_attribute
Apr 5, 2008
Apr 5, 2008
798
799
800
801
802
803
804
805
806
807
static void add_attribute_register(Context *ctx, const RegisterType rtype,
const int regnum, const MOJOSHADER_usage usage,
const int index, const int writemask)
{
RegisterList *item = reglist_insert(ctx, &ctx->attributes, rtype, regnum);
item->usage = usage;
item->index = index;
item->writemask = writemask;
} // add_attribute_register
Apr 19, 2008
Apr 19, 2008
808
809
810
static inline void add_sampler(Context *ctx, const RegisterType rtype,
const int regnum, const TextureType ttype)
{
May 8, 2008
May 8, 2008
811
// !!! FIXME: make sure it doesn't exist?
Apr 19, 2008
Apr 19, 2008
812
813
814
815
RegisterList *item = reglist_insert(ctx, &ctx->samplers, rtype, regnum);
item->index = (int) ttype;
} // add_sampler
Apr 4, 2008
Apr 4, 2008
816
May 8, 2008
May 8, 2008
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
static inline int writemask_xyzw(const int writemask)
{
return (writemask == 0xF); // 0xF == 1111. No explicit mask (full!).
} // writemask_xyzw
static inline int writemask_xyz(const int writemask)
{
return (writemask == 0x7); // 0x7 == 0111. (that is: xyz)
} // writemask_xyz
static inline int writemask_xy(const int writemask)
{
return (writemask == 0x3); // 0x3 == 0011. (that is: xy)
} // writemask_xy
static inline int writemask_x(const int writemask)
{
return (writemask == 0x1); // 0x1 == 0001. (that is: x)
} // writemask_x
static inline int writemask_y(const int writemask)
{
return (writemask == 0x2); // 0x1 == 0010. (that is: y)
} // writemask_y
Apr 6, 2008
Apr 6, 2008
847
848
849
850
851
852
853
854
static inline int replicate_swizzle(const int swizzle)
{
return ( (((swizzle >> 0) & 0x3) == ((swizzle >> 2) & 0x3)) &&
(((swizzle >> 2) & 0x3) == ((swizzle >> 4) & 0x3)) &&
(((swizzle >> 4) & 0x3) == ((swizzle >> 6) & 0x3)) );
} // replicate_swizzle
May 12, 2008
May 12, 2008
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
static inline int scalar_register(const RegisterType regtype, const int regnum)
{
switch (regtype)
{
case REG_TYPE_DEPTHOUT:
case REG_TYPE_CONSTBOOL:
case REG_TYPE_PREDICATE:
case REG_TYPE_LOOP:
return 1;
case REG_TYPE_MISCTYPE:
if ( ((const MiscTypeType) regnum) == MISCTYPE_TYPE_FACE )
return 1;
return 0;
default: break;
} // switch
return 0;
} // scalar_register
May 8, 2008
May 8, 2008
877
878
static inline int no_swizzle(const int swizzle)
{
May 8, 2008
May 8, 2008
879
return (swizzle == 0xE4); // 0xE4 == 11100100 ... 0 1 2 3. No swizzle.
May 8, 2008
May 8, 2008
880
881
882
} // no_swizzle
Apr 21, 2008
Apr 21, 2008
883
884
885
886
887
static inline int vecsize_from_writemask(const int m)
{
return (m & 1) + ((m >> 1) & 1) + ((m >> 2) & 1) + ((m >> 3) & 1);
} // vecsize_from_writemask
May 26, 2008
May 26, 2008
888
889
890
891
892
893
894
895
static int allocate_scratch_register(Context *ctx)
{
const int retval = ctx->scratch_registers++;
if (retval >= ctx->max_scratch_registers)
ctx->max_scratch_registers = retval + 1;
return retval;
} // allocate_scratch_register
Jun 20, 2008
Jun 20, 2008
896
static int allocate_branch_label(Context *ctx)
Jun 19, 2008
Jun 19, 2008
897
{
Jun 20, 2008
Jun 20, 2008
898
899
return ctx->assigned_branch_labels++;
} // allocate_branch_label
Jun 19, 2008
Jun 19, 2008
900
Apr 6, 2008
Apr 6, 2008
901
Apr 5, 2008
Apr 5, 2008
902
903
// D3D stuff that's used in more than just the d3d profile...
Apr 18, 2008
Apr 18, 2008
904
905
906
static const char swizzle_channels[] = { 'x', 'y', 'z', 'w' };
Apr 5, 2008
Apr 5, 2008
907
908
909
910
911
static const char *usagestrs[] = {
"_position", "_blendweight", "_blendindices", "_normal", "_psize",
"_texcoord", "_tangent", "_binormal", "_tessfactor", "_positiont",
"_color", "_fog", "_depth", "_sample"
};
Apr 4, 2008
Apr 4, 2008
912
Mar 17, 2008
Mar 17, 2008
913
static const char *get_D3D_register_string(Context *ctx,
Mar 22, 2008
Mar 22, 2008
914
RegisterType regtype,
Mar 17, 2008
Mar 17, 2008
915
916
int regnum, char *regnum_str,
size_t regnum_size)
Mar 12, 2008
Mar 12, 2008
917
{
Mar 17, 2008
Mar 17, 2008
918
const char *retval = NULL;
Mar 21, 2008
Mar 21, 2008
919
int has_number = 1;
Mar 16, 2008
Mar 16, 2008
920
Mar 17, 2008
Mar 17, 2008
921
switch (regtype)
Mar 16, 2008
Mar 16, 2008
922
{
Apr 3, 2008
Apr 3, 2008
923
case REG_TYPE_TEMP:
Mar 17, 2008
Mar 17, 2008
924
retval = "r";
Mar 16, 2008
Mar 16, 2008
925
926
break;
Apr 3, 2008
Apr 3, 2008
927
case REG_TYPE_INPUT:
Mar 17, 2008
Mar 17, 2008
928
retval = "v";
Mar 16, 2008
Mar 16, 2008
929
930
break;
Apr 3, 2008
Apr 3, 2008
931
case REG_TYPE_CONST:
Mar 21, 2008
Mar 21, 2008
932
933
934
retval = "c";
break;
Apr 3, 2008
Apr 3, 2008
935
case REG_TYPE_ADDRESS: // (or REG_TYPE_TEXTURE, same value.)
Apr 19, 2008
Apr 19, 2008
936
retval = shader_is_vertex(ctx) ? "a" : "t";
Mar 16, 2008
Mar 16, 2008
937
938
break;
Apr 3, 2008
Apr 3, 2008
939
case REG_TYPE_RASTOUT:
Mar 22, 2008
Mar 22, 2008
940
switch ((RastOutType) regnum)
Mar 16, 2008
Mar 16, 2008
941
{
Mar 17, 2008
Mar 17, 2008
942
943
944
case RASTOUT_TYPE_POSITION: retval = "oPos"; break;
case RASTOUT_TYPE_FOG: retval = "oFog"; break;
case RASTOUT_TYPE_POINT_SIZE: retval = "oPts"; break;
Mar 16, 2008
Mar 16, 2008
945
} // switch
Mar 21, 2008
Mar 21, 2008
946
has_number = 0;
Mar 16, 2008
Mar 16, 2008
947
948
break;
Apr 3, 2008
Apr 3, 2008
949
case REG_TYPE_ATTROUT:
Mar 17, 2008
Mar 17, 2008
950
retval = "oD";
Mar 16, 2008
Mar 16, 2008
951
952
break;
Apr 3, 2008
Apr 3, 2008
953
case REG_TYPE_OUTPUT: // (or REG_TYPE_TEXCRDOUT, same value.)
Apr 19, 2008
Apr 19, 2008
954
if (shader_is_vertex(ctx) && shader_version_atleast(ctx, 3, 0))
Mar 17, 2008
Mar 17, 2008
955
retval = "o";
Mar 16, 2008
Mar 16, 2008
956
else
Mar 17, 2008
Mar 17, 2008
957
retval = "oT";
Mar 16, 2008
Mar 16, 2008
958
959
break;
Apr 3, 2008
Apr 3, 2008
960
case REG_TYPE_CONSTINT:
Mar 17, 2008
Mar 17, 2008
961
retval = "i";
Mar 16, 2008
Mar 16, 2008
962
963
break;
Apr 3, 2008
Apr 3, 2008
964
case REG_TYPE_COLOROUT:
Mar 17, 2008
Mar 17, 2008
965
retval = "oC";
Mar 16, 2008
Mar 16, 2008
966
967
break;
Apr 3, 2008
Apr 3, 2008
968
case REG_TYPE_DEPTHOUT:
Mar 17, 2008
Mar 17, 2008
969
retval = "oDepth";
Mar 21, 2008
Mar 21, 2008
970
has_number = 0;
Mar 16, 2008
Mar 16, 2008
971
972
break;
Apr 3, 2008
Apr 3, 2008
973
case REG_TYPE_SAMPLER:
Mar 17, 2008
Mar 17, 2008
974
retval = "s";
Mar 16, 2008
Mar 16, 2008
975
976
break;
Apr 3, 2008
Apr 3, 2008
977
case REG_TYPE_CONSTBOOL:
Mar 17, 2008
Mar 17, 2008
978
retval = "b";
Mar 16, 2008
Mar 16, 2008
979
980
break;
Apr 3, 2008
Apr 3, 2008
981
case REG_TYPE_LOOP:
Mar 17, 2008
Mar 17, 2008
982
retval = "aL";
Mar 21, 2008
Mar 21, 2008
983
has_number = 0;
Mar 16, 2008
Mar 16, 2008
984
985
break;
Apr 3, 2008
Apr 3, 2008
986
case REG_TYPE_MISCTYPE:
May 12, 2008
May 12, 2008
987
switch ((const MiscTypeType) regnum)
Mar 16, 2008
Mar 16, 2008
988
{
Mar 17, 2008
Mar 17, 2008
989
990
case MISCTYPE_TYPE_POSITION: retval = "vPos"; break;
case MISCTYPE_TYPE_FACE: retval = "vFace"; break;
Mar 16, 2008
Mar 16, 2008
991
} // switch
Mar 21, 2008
Mar 21, 2008
992
has_number = 0;
Mar 16, 2008
Mar 16, 2008
993
994
break;
Apr 3, 2008
Apr 3, 2008
995
case REG_TYPE_LABEL:
Mar 17, 2008
Mar 17, 2008
996
retval = "l";
Mar 16, 2008
Mar 16, 2008
997
998
break;
Apr 3, 2008
Apr 3, 2008
999
case REG_TYPE_PREDICATE:
Mar 17, 2008
Mar 17, 2008
1000
retval = "p";