Skip to content

Latest commit

 

History

History
7477 lines (6310 loc) · 241 KB

mojoshader.c

File metadata and controls

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