winebus.sys: Add missing keyboard free_device callback.
[wine.git] / dlls / d3dx9_36 / preshader.c
blob9852b9b94108c5279c926c108b18f525a8ae379f
1 /*
2 * Copyright 2016 Paul Gofman
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
20 #include "d3dx9_private.h"
22 #include <float.h>
23 #include <math.h>
24 #include <assert.h>
26 WINE_DEFAULT_DEBUG_CHANNEL(d3dx);
28 enum pres_ops
30 PRESHADER_OP_NOP,
31 PRESHADER_OP_MOV,
32 PRESHADER_OP_NEG,
33 PRESHADER_OP_RCP,
34 PRESHADER_OP_FRC,
35 PRESHADER_OP_EXP,
36 PRESHADER_OP_LOG,
37 PRESHADER_OP_RSQ,
38 PRESHADER_OP_SIN,
39 PRESHADER_OP_COS,
40 PRESHADER_OP_ASIN,
41 PRESHADER_OP_ACOS,
42 PRESHADER_OP_ATAN,
43 PRESHADER_OP_MIN,
44 PRESHADER_OP_MAX,
45 PRESHADER_OP_LT,
46 PRESHADER_OP_GE,
47 PRESHADER_OP_ADD,
48 PRESHADER_OP_MUL,
49 PRESHADER_OP_ATAN2,
50 PRESHADER_OP_DIV,
51 PRESHADER_OP_CMP,
52 PRESHADER_OP_DOT,
53 PRESHADER_OP_DOTSWIZ6,
54 PRESHADER_OP_DOTSWIZ8,
57 typedef double (*pres_op_func)(double *args, int n);
59 static double to_signed_nan(double v)
61 static const union
63 ULONG64 ulong64_value;
64 double double_value;
66 signed_nan =
68 0xfff8000000000000
71 return isnan(v) ? signed_nan.double_value : v;
74 static double pres_mov(double *args, int n) {return args[0];}
75 static double pres_add(double *args, int n) {return args[0] + args[1];}
76 static double pres_mul(double *args, int n) {return args[0] * args[1];}
77 static double pres_dot(double *args, int n)
79 int i;
80 double sum;
82 sum = 0.0;
83 for (i = 0; i < n; ++i)
84 sum += args[i] * args[i + n];
85 return sum;
88 static double pres_dotswiz6(double *args, int n)
90 return pres_dot(args, 3);
93 static double pres_dotswiz8(double *args, int n)
95 return pres_dot(args, 4);
98 static double pres_neg(double *args, int n) {return -args[0];}
99 static double pres_rcp(double *args, int n) {return 1.0 / args[0];}
100 static double pres_lt(double *args, int n) {return args[0] < args[1] ? 1.0 : 0.0;}
101 static double pres_ge(double *args, int n) {return args[0] >= args[1] ? 1.0 : 0.0;}
102 static double pres_frc(double *args, int n) {return args[0] - floor(args[0]);}
103 static double pres_min(double *args, int n) {return fmin(args[0], args[1]);}
104 static double pres_max(double *args, int n) {return fmax(args[0], args[1]);}
105 static double pres_cmp(double *args, int n) {return args[0] >= 0.0 ? args[1] : args[2];}
106 static double pres_sin(double *args, int n) {return sin(args[0]);}
107 static double pres_cos(double *args, int n) {return cos(args[0]);}
108 static double pres_rsq(double *args, int n)
110 double v;
112 v = fabs(args[0]);
113 if (v == 0.0)
114 return INFINITY;
115 else
116 return 1.0 / sqrt(v);
118 static double pres_exp(double *args, int n) {return pow(2.0, args[0]);}
119 static double pres_log(double *args, int n)
121 double v;
123 v = fabs(args[0]);
124 if (v == 0.0)
125 return 0.0;
126 else
127 return log2(v);
129 static double pres_asin(double *args, int n) {return to_signed_nan(asin(args[0]));}
130 static double pres_acos(double *args, int n) {return to_signed_nan(acos(args[0]));}
131 static double pres_atan(double *args, int n) {return atan(args[0]);}
132 static double pres_atan2(double *args, int n) {return atan2(args[0], args[1]);}
134 /* According to the test results 'div' operation always returns 0. Compiler does not seem to ever
135 * generate it, using rcp + mul instead, so probably it is not implemented in native d3dx. */
136 static double pres_div(double *args, int n) {return 0.0;}
138 #define PRES_OPCODE_MASK 0x7ff00000
139 #define PRES_OPCODE_SHIFT 20
140 #define PRES_SCALAR_FLAG 0x80000000
141 #define PRES_NCOMP_MASK 0x0000ffff
143 #define FOURCC_PRES 0x53455250
144 #define FOURCC_CLIT 0x54494c43
145 #define FOURCC_FXLC 0x434c5846
146 #define FOURCC_PRSI 0x49535250
147 #define PRES_SIGN 0x46580000
149 struct op_info
151 unsigned int opcode;
152 char mnem[16];
153 unsigned int input_count;
154 BOOL func_all_comps;
155 pres_op_func func;
158 static const struct op_info pres_op_info[] =
160 {0x000, "nop", 0, 0, NULL }, /* PRESHADER_OP_NOP */
161 {0x100, "mov", 1, 0, pres_mov}, /* PRESHADER_OP_MOV */
162 {0x101, "neg", 1, 0, pres_neg}, /* PRESHADER_OP_NEG */
163 {0x103, "rcp", 1, 0, pres_rcp}, /* PRESHADER_OP_RCP */
164 {0x104, "frc", 1, 0, pres_frc}, /* PRESHADER_OP_FRC */
165 {0x105, "exp", 1, 0, pres_exp}, /* PRESHADER_OP_EXP */
166 {0x106, "log", 1, 0, pres_log}, /* PRESHADER_OP_LOG */
167 {0x107, "rsq", 1, 0, pres_rsq}, /* PRESHADER_OP_RSQ */
168 {0x108, "sin", 1, 0, pres_sin}, /* PRESHADER_OP_SIN */
169 {0x109, "cos", 1, 0, pres_cos}, /* PRESHADER_OP_COS */
170 {0x10a, "asin", 1, 0, pres_asin}, /* PRESHADER_OP_ASIN */
171 {0x10b, "acos", 1, 0, pres_acos}, /* PRESHADER_OP_ACOS */
172 {0x10c, "atan", 1, 0, pres_atan}, /* PRESHADER_OP_ATAN */
173 {0x200, "min", 2, 0, pres_min}, /* PRESHADER_OP_MIN */
174 {0x201, "max", 2, 0, pres_max}, /* PRESHADER_OP_MAX */
175 {0x202, "lt", 2, 0, pres_lt }, /* PRESHADER_OP_LT */
176 {0x203, "ge", 2, 0, pres_ge }, /* PRESHADER_OP_GE */
177 {0x204, "add", 2, 0, pres_add}, /* PRESHADER_OP_ADD */
178 {0x205, "mul", 2, 0, pres_mul}, /* PRESHADER_OP_MUL */
179 {0x206, "atan2", 2, 0, pres_atan2}, /* PRESHADER_OP_ATAN2 */
180 {0x208, "div", 2, 0, pres_div}, /* PRESHADER_OP_DIV */
181 {0x300, "cmp", 3, 0, pres_cmp}, /* PRESHADER_OP_CMP */
182 {0x500, "dot", 2, 1, pres_dot}, /* PRESHADER_OP_DOT */
183 {0x70e, "d3ds_dotswiz", 6, 0, pres_dotswiz6}, /* PRESHADER_OP_DOTSWIZ6 */
184 {0x70e, "d3ds_dotswiz", 8, 0, pres_dotswiz8}, /* PRESHADER_OP_DOTSWIZ8 */
187 enum pres_value_type
189 PRES_VT_FLOAT,
190 PRES_VT_DOUBLE,
191 PRES_VT_INT,
192 PRES_VT_BOOL,
193 PRES_VT_COUNT
196 static const struct
198 unsigned int component_size;
199 enum pres_value_type type;
201 table_info[] =
203 {sizeof(double), PRES_VT_DOUBLE}, /* PRES_REGTAB_IMMED */
204 {sizeof(float), PRES_VT_FLOAT }, /* PRES_REGTAB_CONST */
205 {sizeof(float), PRES_VT_FLOAT }, /* PRES_REGTAB_OCONST */
206 {sizeof(BOOL), PRES_VT_BOOL }, /* PRES_REGTAB_OBCONST */
207 {sizeof(int), PRES_VT_INT, }, /* PRES_REGTAB_OICONST */
208 /* TODO: use double precision for 64 bit */
209 {sizeof(float), PRES_VT_FLOAT } /* PRES_REGTAB_TEMP */
212 static const char *table_symbol[] =
214 "imm", "c", "oc", "ob", "oi", "r", "(null)",
217 static const enum pres_reg_tables pres_regset2table[] =
219 PRES_REGTAB_OBCONST, /* D3DXRS_BOOL */
220 PRES_REGTAB_OICONST, /* D3DXRS_INT4 */
221 PRES_REGTAB_CONST, /* D3DXRS_FLOAT4 */
222 PRES_REGTAB_COUNT, /* D3DXRS_SAMPLER */
225 static const enum pres_reg_tables shad_regset2table[] =
227 PRES_REGTAB_OBCONST, /* D3DXRS_BOOL */
228 PRES_REGTAB_OICONST, /* D3DXRS_INT4 */
229 PRES_REGTAB_OCONST, /* D3DXRS_FLOAT4 */
230 PRES_REGTAB_COUNT, /* D3DXRS_SAMPLER */
233 struct d3dx_pres_reg
235 enum pres_reg_tables table;
236 /* offset is component index, not register index, e. g.
237 offset for component c3.y is 13 (3 * 4 + 1) */
238 unsigned int offset;
241 struct d3dx_pres_operand
243 struct d3dx_pres_reg reg;
244 struct d3dx_pres_reg index_reg;
247 #define MAX_INPUTS_COUNT 8
249 struct d3dx_pres_ins
251 enum pres_ops op;
252 /* first input argument is scalar,
253 scalar component is propagated */
254 BOOL scalar_op;
255 unsigned int component_count;
256 struct d3dx_pres_operand inputs[MAX_INPUTS_COUNT];
257 struct d3dx_pres_operand output;
260 struct const_upload_info
262 BOOL transpose;
263 unsigned int major, minor;
264 unsigned int major_stride;
265 unsigned int major_count;
266 unsigned int count;
267 unsigned int minor_remainder;
270 static enum pres_value_type table_type_from_param_type(D3DXPARAMETER_TYPE type)
272 switch (type)
274 case D3DXPT_FLOAT:
275 return PRES_VT_FLOAT;
276 case D3DXPT_INT:
277 return PRES_VT_INT;
278 case D3DXPT_BOOL:
279 return PRES_VT_BOOL;
280 default:
281 FIXME("Unsupported type %u.\n", type);
282 return PRES_VT_COUNT;
286 static unsigned int get_reg_offset(unsigned int table, unsigned int offset)
288 return table == PRES_REGTAB_OBCONST ? offset : offset >> 2;
291 static unsigned int get_offset_reg(unsigned int table, unsigned int reg_idx)
293 return table == PRES_REGTAB_OBCONST ? reg_idx : reg_idx << 2;
296 static unsigned int get_reg_components(unsigned int table)
298 return get_offset_reg(table, 1);
301 #define PRES_BITMASK_BLOCK_SIZE (sizeof(unsigned int) * 8)
303 static HRESULT regstore_alloc_table(struct d3dx_regstore *rs, unsigned int table)
305 unsigned int size;
307 size = get_offset_reg(table, rs->table_sizes[table]) * table_info[table].component_size;
308 if (size)
310 rs->tables[table] = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, size);
311 if (!rs->tables[table])
312 return E_OUTOFMEMORY;
314 return D3D_OK;
317 static void regstore_free_tables(struct d3dx_regstore *rs)
319 unsigned int i;
321 for (i = 0; i < PRES_REGTAB_COUNT; ++i)
323 HeapFree(GetProcessHeap(), 0, rs->tables[i]);
327 static void regstore_set_values(struct d3dx_regstore *rs, unsigned int table, const void *data,
328 unsigned int start_offset, unsigned int count)
330 BYTE *dst = rs->tables[table];
331 const BYTE *src = data;
332 unsigned int size;
334 dst += start_offset * table_info[table].component_size;
335 size = count * table_info[table].component_size;
336 assert((src < dst && size <= dst - src) || (src > dst && size <= src - dst));
337 memcpy(dst, src, size);
340 static double regstore_get_double(struct d3dx_regstore *rs, unsigned int table, unsigned int offset)
342 BYTE *p;
344 p = (BYTE *)rs->tables[table] + table_info[table].component_size * offset;
345 switch (table_info[table].type)
347 case PRES_VT_FLOAT:
348 return *(float *)p;
349 case PRES_VT_DOUBLE:
350 return *(double *)p;
351 default:
352 FIXME("Unexpected preshader input from table %u.\n", table);
353 return NAN;
357 static void regstore_set_double(struct d3dx_regstore *rs, unsigned int table, unsigned int offset, double v)
359 BYTE *p;
361 p = (BYTE *)rs->tables[table] + table_info[table].component_size * offset;
362 switch (table_info[table].type)
364 case PRES_VT_FLOAT : *(float *)p = v; break;
365 case PRES_VT_DOUBLE: *(double *)p = v; break;
366 case PRES_VT_INT : *(int *)p = lrint(v); break;
367 case PRES_VT_BOOL : *(BOOL *)p = !!v; break;
368 default:
369 FIXME("Bad type %u.\n", table_info[table].type);
370 break;
374 static void dump_bytecode(void *data, unsigned int size)
376 unsigned int *bytecode = (unsigned int *)data;
377 unsigned int i, j, n;
379 size /= sizeof(*bytecode);
380 i = 0;
381 while (i < size)
383 n = min(size - i, 8);
384 for (j = 0; j < n; ++j)
385 TRACE("0x%08x,", bytecode[i + j]);
386 i += n;
387 TRACE("\n");
391 static unsigned int *find_bytecode_comment(unsigned int *ptr, unsigned int count,
392 unsigned int fourcc, unsigned int *size)
394 /* Provide at least one value in comment section on non-NULL return. */
395 while (count > 2 && (*ptr & 0xffff) == 0xfffe)
397 unsigned int section_size;
399 section_size = (*ptr >> 16);
400 if (!section_size || section_size + 1 > count)
401 break;
402 if (*(ptr + 1) == fourcc)
404 *size = section_size;
405 return ptr + 2;
407 count -= section_size + 1;
408 ptr += section_size + 1;
410 return NULL;
413 static unsigned int *parse_pres_reg(unsigned int *ptr, struct d3dx_pres_reg *reg)
415 static const enum pres_reg_tables reg_table[8] =
417 PRES_REGTAB_COUNT, PRES_REGTAB_IMMED, PRES_REGTAB_CONST, PRES_REGTAB_COUNT,
418 PRES_REGTAB_OCONST, PRES_REGTAB_OBCONST, PRES_REGTAB_OICONST, PRES_REGTAB_TEMP
421 if (*ptr >= ARRAY_SIZE(reg_table) || reg_table[*ptr] == PRES_REGTAB_COUNT)
423 FIXME("Unsupported register table %#x.\n", *ptr);
424 return NULL;
427 reg->table = reg_table[*ptr++];
428 reg->offset = *ptr++;
429 return ptr;
432 static unsigned int *parse_pres_arg(unsigned int *ptr, unsigned int count, struct d3dx_pres_operand *opr)
434 if (count < 3 || (*ptr && count < 5))
436 WARN("Byte code buffer ends unexpectedly, count %u.\n", count);
437 return NULL;
440 if (*ptr)
442 if (*ptr != 1)
444 FIXME("Unknown relative addressing flag, word %#x.\n", *ptr);
445 return NULL;
447 ptr = parse_pres_reg(ptr + 1, &opr->index_reg);
448 if (!ptr)
449 return NULL;
451 else
453 opr->index_reg.table = PRES_REGTAB_COUNT;
454 ++ptr;
457 ptr = parse_pres_reg(ptr, &opr->reg);
459 if (opr->reg.table == PRES_REGTAB_OBCONST)
460 opr->reg.offset /= 4;
461 return ptr;
464 static unsigned int *parse_pres_ins(unsigned int *ptr, unsigned int count, struct d3dx_pres_ins *ins)
466 unsigned int ins_code, ins_raw;
467 unsigned int input_count;
468 unsigned int i;
470 if (count < 2)
472 WARN("Byte code buffer ends unexpectedly.\n");
473 return NULL;
476 ins_raw = *ptr++;
477 ins_code = (ins_raw & PRES_OPCODE_MASK) >> PRES_OPCODE_SHIFT;
478 ins->component_count = ins_raw & PRES_NCOMP_MASK;
479 ins->scalar_op = !!(ins_raw & PRES_SCALAR_FLAG);
481 if (ins->component_count < 1 || ins->component_count > 4)
483 FIXME("Unsupported number of components %u.\n", ins->component_count);
484 return NULL;
486 input_count = *ptr++;
487 count -= 2;
488 for (i = 0; i < ARRAY_SIZE(pres_op_info); ++i)
489 if (ins_code == pres_op_info[i].opcode && input_count == pres_op_info[i].input_count)
490 break;
491 if (i == ARRAY_SIZE(pres_op_info))
493 FIXME("Unknown opcode %#x, input_count %u, raw %#x.\n", ins_code, input_count, ins_raw);
494 return NULL;
496 ins->op = i;
497 if (input_count > ARRAY_SIZE(ins->inputs))
499 FIXME("Actual input args count %u exceeds inputs array size, instruction %s.\n", input_count,
500 pres_op_info[i].mnem);
501 return NULL;
503 for (i = 0; i < input_count; ++i)
505 unsigned int *p;
507 p = parse_pres_arg(ptr, count, &ins->inputs[i]);
508 if (!p)
509 return NULL;
510 count -= p - ptr;
511 ptr = p;
513 ptr = parse_pres_arg(ptr, count, &ins->output);
514 if (ins->output.index_reg.table != PRES_REGTAB_COUNT)
516 FIXME("Relative addressing in output register not supported.\n");
517 return NULL;
519 if (get_reg_offset(ins->output.reg.table, ins->output.reg.offset
520 + (pres_op_info[ins->op].func_all_comps ? 0 : ins->component_count - 1))
521 != get_reg_offset(ins->output.reg.table, ins->output.reg.offset))
523 FIXME("Instructions outputting multiple registers are not supported.\n");
524 return NULL;
526 return ptr;
529 static HRESULT get_ctab_constant_desc(ID3DXConstantTable *ctab, D3DXHANDLE hc, D3DXCONSTANT_DESC *desc,
530 WORD *constantinfo_reserved)
532 const struct ctab_constant *constant = d3dx_shader_get_ctab_constant(ctab, hc);
534 if (!constant)
536 FIXME("Could not get constant desc.\n");
537 if (constantinfo_reserved)
538 *constantinfo_reserved = 0;
539 return D3DERR_INVALIDCALL;
541 *desc = constant->desc;
542 if (constantinfo_reserved)
543 *constantinfo_reserved = constant->constantinfo_reserved;
544 return D3D_OK;
547 static void get_const_upload_info(struct d3dx_const_param_eval_output *const_set,
548 struct const_upload_info *info)
550 struct d3dx_parameter *param = const_set->param;
551 unsigned int table = const_set->table;
553 info->transpose = (const_set->constant_class == D3DXPC_MATRIX_COLUMNS && param->class == D3DXPC_MATRIX_ROWS)
554 || (param->class == D3DXPC_MATRIX_COLUMNS && const_set->constant_class == D3DXPC_MATRIX_ROWS);
555 if (const_set->constant_class == D3DXPC_MATRIX_COLUMNS)
557 info->major = param->columns;
558 info->minor = param->rows;
560 else
562 info->major = param->rows;
563 info->minor = param->columns;
566 if (get_reg_components(table) == 1)
568 unsigned int const_length = get_offset_reg(table, const_set->register_count);
570 info->major_stride = info->minor;
571 info->major_count = const_length / info->major_stride;
572 info->minor_remainder = const_length % info->major_stride;
574 else
576 info->major_stride = get_reg_components(table);
577 info->major_count = const_set->register_count;
578 info->minor_remainder = 0;
580 info->count = info->major_count * info->minor + info->minor_remainder;
583 #define INITIAL_CONST_SET_SIZE 16
585 static HRESULT append_const_set(struct d3dx_const_tab *const_tab, struct d3dx_const_param_eval_output *set)
587 if (const_tab->const_set_count >= const_tab->const_set_size)
589 unsigned int new_size;
590 struct d3dx_const_param_eval_output *new_alloc;
592 if (!const_tab->const_set_size)
594 new_size = INITIAL_CONST_SET_SIZE;
595 new_alloc = HeapAlloc(GetProcessHeap(), 0, sizeof(*const_tab->const_set) * new_size);
596 if (!new_alloc)
598 ERR("Out of memory.\n");
599 return E_OUTOFMEMORY;
602 else
604 new_size = const_tab->const_set_size * 2;
605 new_alloc = HeapReAlloc(GetProcessHeap(), 0, const_tab->const_set,
606 sizeof(*const_tab->const_set) * new_size);
607 if (!new_alloc)
609 ERR("Out of memory.\n");
610 return E_OUTOFMEMORY;
613 const_tab->const_set = new_alloc;
614 const_tab->const_set_size = new_size;
616 const_tab->const_set[const_tab->const_set_count++] = *set;
617 return D3D_OK;
620 static void append_pres_const_sets_for_shader_input(struct d3dx_const_tab *const_tab,
621 struct d3dx_preshader *pres)
623 unsigned int i;
624 struct d3dx_const_param_eval_output const_set = {NULL};
626 for (i = 0; i < pres->ins_count; ++i)
628 const struct d3dx_pres_ins *ins = &pres->ins[i];
629 const struct d3dx_pres_reg *reg = &ins->output.reg;
631 if (reg->table == PRES_REGTAB_TEMP)
632 continue;
634 const_set.register_index = get_reg_offset(reg->table, reg->offset);
635 const_set.register_count = 1;
636 const_set.table = reg->table;
637 const_set.constant_class = D3DXPC_FORCE_DWORD;
638 const_set.element_count = 1;
639 append_const_set(const_tab, &const_set);
643 static int __cdecl compare_const_set(const void *a, const void *b)
645 const struct d3dx_const_param_eval_output *r1 = a;
646 const struct d3dx_const_param_eval_output *r2 = b;
648 if (r1->table != r2->table)
649 return r1->table - r2->table;
650 return r1->register_index - r2->register_index;
653 static HRESULT merge_const_set_entries(struct d3dx_const_tab *const_tab,
654 struct d3dx_parameter *param, unsigned int index)
656 unsigned int i, start_index = index;
657 DWORD *current_data;
658 enum pres_reg_tables current_table;
659 unsigned int current_start_offset, element_count;
660 struct d3dx_const_param_eval_output *first_const;
662 if (!const_tab->const_set_count)
663 return D3D_OK;
665 while (index < const_tab->const_set_count - 1)
667 first_const = &const_tab->const_set[index];
668 current_data = first_const->param->data;
669 current_table = first_const->table;
670 current_start_offset = get_offset_reg(current_table, first_const->register_index);
671 element_count = 0;
672 for (i = index; i < const_tab->const_set_count; ++i)
674 struct d3dx_const_param_eval_output *const_set = &const_tab->const_set[i];
675 unsigned int count = get_offset_reg(const_set->table,
676 const_set->register_count * const_set->element_count);
677 unsigned int start_offset = get_offset_reg(const_set->table, const_set->register_index);
679 if (!(const_set->table == current_table && current_start_offset == start_offset
680 && const_set->direct_copy == first_const->direct_copy
681 && current_data == const_set->param->data
682 && (const_set->direct_copy || (first_const->param->type == const_set->param->type
683 && first_const->param->class == const_set->param->class
684 && first_const->param->columns == const_set->param->columns
685 && first_const->param->rows == const_set->param->rows
686 && first_const->register_count == const_set->register_count
687 && (i == const_tab->const_set_count - 1
688 || first_const->param->element_count == const_set->param->element_count)))))
689 break;
691 current_start_offset += count;
692 current_data += const_set->direct_copy ? count : const_set->param->rows
693 * const_set->param->columns * const_set->element_count;
694 element_count += const_set->element_count;
697 if (i > index + 1)
699 TRACE("Merging %u child parameters for %s, not merging %u, direct_copy %#x.\n", i - index,
700 debugstr_a(param->name), const_tab->const_set_count - i, first_const->direct_copy);
702 first_const->element_count = element_count;
703 if (first_const->direct_copy)
705 first_const->element_count = 1;
706 if (index == start_index
707 && !(param->type == D3DXPT_VOID && param->class == D3DXPC_STRUCT))
709 if (table_type_from_param_type(param->type) == PRES_VT_COUNT)
710 return D3DERR_INVALIDCALL;
711 first_const->param = param;
713 first_const->register_count = get_reg_offset(current_table, current_start_offset)
714 - first_const->register_index;
716 memmove(&const_tab->const_set[index + 1], &const_tab->const_set[i],
717 sizeof(*const_tab->const_set) * (const_tab->const_set_count - i));
718 const_tab->const_set_count -= i - index - 1;
720 else
722 TRACE("Not merging %u child parameters for %s, direct_copy %#x.\n",
723 const_tab->const_set_count - i, debugstr_a(param->name), first_const->direct_copy);
725 index = i;
727 return D3D_OK;
730 static HRESULT init_set_constants_param(struct d3dx_const_tab *const_tab, ID3DXConstantTable *ctab,
731 D3DXHANDLE hc, struct d3dx_parameter *param)
733 D3DXCONSTANT_DESC desc;
734 unsigned int const_count, param_count, i;
735 BOOL get_element;
736 struct d3dx_const_param_eval_output const_set;
737 struct const_upload_info info;
738 enum pres_value_type table_type;
739 HRESULT hr;
741 if (FAILED(get_ctab_constant_desc(ctab, hc, &desc, NULL)))
742 return D3DERR_INVALIDCALL;
744 if (param->element_count)
746 param_count = param->element_count;
747 const_count = desc.Elements;
748 get_element = TRUE;
750 else
752 if (desc.Elements > 1)
754 FIXME("Unexpected number of constant elements %u.\n", desc.Elements);
755 return D3DERR_INVALIDCALL;
757 param_count = param->member_count;
758 const_count = desc.StructMembers;
759 get_element = FALSE;
761 if (const_count != param_count)
763 FIXME("Number of elements or struct members differs between parameter (%u) and constant (%u).\n",
764 param_count, const_count);
765 return D3DERR_INVALIDCALL;
767 if (const_count)
769 HRESULT ret = D3D_OK;
770 D3DXHANDLE hc_element;
771 unsigned int index = const_tab->const_set_count;
773 for (i = 0; i < const_count; ++i)
775 if (get_element)
776 hc_element = ID3DXConstantTable_GetConstantElement(ctab, hc, i);
777 else
778 hc_element = ID3DXConstantTable_GetConstant(ctab, hc, i);
779 if (!hc_element)
781 FIXME("Could not get constant.\n");
782 hr = D3DERR_INVALIDCALL;
784 else
786 hr = init_set_constants_param(const_tab, ctab, hc_element, &param->members[i]);
788 if (FAILED(hr))
789 ret = hr;
791 if (FAILED(ret))
792 return ret;
793 return merge_const_set_entries(const_tab, param, index);
796 TRACE("Constant %s, rows %u, columns %u, class %u, bytes %u.\n",
797 debugstr_a(desc.Name), desc.Rows, desc.Columns, desc.Class, desc.Bytes);
798 TRACE("Parameter %s, rows %u, columns %u, class %u, flags %#x, bytes %u.\n",
799 debugstr_a(param->name), param->rows, param->columns, param->class,
800 param->flags, param->bytes);
802 const_set.element_count = 1;
803 const_set.param = param;
804 const_set.constant_class = desc.Class;
805 if (desc.RegisterSet >= ARRAY_SIZE(shad_regset2table))
807 FIXME("Unknown register set %u.\n", desc.RegisterSet);
808 return D3DERR_INVALIDCALL;
810 const_set.register_index = desc.RegisterIndex;
811 const_set.table = const_tab->regset2table[desc.RegisterSet];
812 if (const_set.table >= PRES_REGTAB_COUNT)
814 ERR("Unexpected register set %u.\n", desc.RegisterSet);
815 return D3DERR_INVALIDCALL;
817 assert(table_info[const_set.table].component_size == sizeof(unsigned int));
818 assert(param->bytes / (param->rows * param->columns) == sizeof(unsigned int));
819 const_set.register_count = desc.RegisterCount;
820 table_type = table_info[const_set.table].type;
821 get_const_upload_info(&const_set, &info);
822 if (!info.count)
824 TRACE("%s has zero count, skipping.\n", debugstr_a(param->name));
825 return D3D_OK;
828 if (table_type_from_param_type(param->type) == PRES_VT_COUNT)
829 return D3DERR_INVALIDCALL;
831 const_set.direct_copy = table_type_from_param_type(param->type) == table_type
832 && !info.transpose && info.minor == info.major_stride
833 && info.count == get_offset_reg(const_set.table, const_set.register_count)
834 && info.count * sizeof(unsigned int) <= param->bytes;
835 if (info.minor_remainder && !const_set.direct_copy && !info.transpose)
836 FIXME("Incomplete last row for not transposed matrix which cannot be directly copied, parameter %s.\n",
837 debugstr_a(param->name));
839 if (info.major_count > info.major
840 || (info.major_count == info.major && info.minor_remainder))
842 WARN("Constant dimensions exceed parameter size.\n");
843 return D3DERR_INVALIDCALL;
846 if (FAILED(hr = append_const_set(const_tab, &const_set)))
847 return hr;
849 return D3D_OK;
852 static HRESULT get_constants_desc(unsigned int *byte_code, struct d3dx_const_tab *out,
853 struct d3dx_effect *effect, const char **skip_constants,
854 unsigned int skip_constants_count, struct d3dx_preshader *pres)
856 ID3DXConstantTable *ctab;
857 D3DXCONSTANT_DESC *cdesc;
858 struct d3dx_parameter **inputs_param;
859 D3DXCONSTANTTABLE_DESC desc;
860 HRESULT hr;
861 D3DXHANDLE hc;
862 unsigned int i, j;
864 hr = D3DXGetShaderConstantTable(byte_code, &ctab);
865 if (FAILED(hr) || !ctab)
867 TRACE("Could not get CTAB data, hr %#x.\n", hr);
868 /* returning OK, shaders and preshaders without CTAB are valid */
869 return D3D_OK;
871 if (FAILED(hr = ID3DXConstantTable_GetDesc(ctab, &desc)))
873 FIXME("Could not get CTAB desc, hr %#x.\n", hr);
874 goto cleanup;
877 out->inputs = cdesc = HeapAlloc(GetProcessHeap(), 0, sizeof(*cdesc) * desc.Constants);
878 out->inputs_param = inputs_param = HeapAlloc(GetProcessHeap(), 0, sizeof(*inputs_param) * desc.Constants);
879 if (!cdesc || !inputs_param)
881 hr = E_OUTOFMEMORY;
882 goto cleanup;
885 for (i = 0; i < desc.Constants; ++i)
887 unsigned int index = out->input_count;
888 WORD constantinfo_reserved;
890 hc = ID3DXConstantTable_GetConstant(ctab, NULL, i);
891 if (!hc)
893 FIXME("Null constant handle.\n");
894 goto cleanup;
896 if (FAILED(hr = get_ctab_constant_desc(ctab, hc, &cdesc[index], &constantinfo_reserved)))
897 goto cleanup;
898 inputs_param[index] = get_parameter_by_name(effect, NULL, cdesc[index].Name);
899 if (!inputs_param[index])
901 WARN("Could not find parameter %s in effect.\n", cdesc[index].Name);
902 continue;
904 if (cdesc[index].Class == D3DXPC_OBJECT)
906 TRACE("Object %s, parameter %p.\n", cdesc[index].Name, inputs_param[index]);
907 if (cdesc[index].RegisterSet != D3DXRS_SAMPLER || inputs_param[index]->class != D3DXPC_OBJECT
908 || !is_param_type_sampler(inputs_param[index]->type))
910 WARN("Unexpected object type, constant %s.\n", debugstr_a(cdesc[index].Name));
911 hr = D3DERR_INVALIDCALL;
912 goto cleanup;
914 if (max(inputs_param[index]->element_count, 1) < cdesc[index].RegisterCount)
916 WARN("Register count exceeds parameter size, constant %s.\n", debugstr_a(cdesc[index].Name));
917 hr = D3DERR_INVALIDCALL;
918 goto cleanup;
921 if (!is_top_level_parameter(inputs_param[index]))
923 WARN("Expected top level parameter '%s'.\n", debugstr_a(cdesc[index].Name));
924 hr = E_FAIL;
925 goto cleanup;
928 for (j = 0; j < skip_constants_count; ++j)
930 if (!strcmp(cdesc[index].Name, skip_constants[j]))
932 if (!constantinfo_reserved)
934 WARN("skip_constants parameter %s is not register bound.\n",
935 cdesc[index].Name);
936 hr = D3DERR_INVALIDCALL;
937 goto cleanup;
939 TRACE("Skipping constant %s.\n", cdesc[index].Name);
940 break;
943 if (j < skip_constants_count)
944 continue;
945 ++out->input_count;
946 if (inputs_param[index]->class == D3DXPC_OBJECT)
947 continue;
948 if (FAILED(hr = init_set_constants_param(out, ctab, hc, inputs_param[index])))
949 goto cleanup;
951 if (pres)
952 append_pres_const_sets_for_shader_input(out, pres);
953 if (out->const_set_count)
955 struct d3dx_const_param_eval_output *new_alloc;
957 qsort(out->const_set, out->const_set_count, sizeof(*out->const_set), compare_const_set);
959 i = 0;
960 while (i < out->const_set_count - 1)
962 if (out->const_set[i].constant_class == D3DXPC_FORCE_DWORD
963 && out->const_set[i + 1].constant_class == D3DXPC_FORCE_DWORD
964 && out->const_set[i].table == out->const_set[i + 1].table
965 && out->const_set[i].register_index + out->const_set[i].register_count
966 >= out->const_set[i + 1].register_index)
968 assert(out->const_set[i].register_index + out->const_set[i].register_count
969 <= out->const_set[i + 1].register_index + 1);
970 out->const_set[i].register_count = out->const_set[i + 1].register_index + 1
971 - out->const_set[i].register_index;
972 memmove(&out->const_set[i + 1], &out->const_set[i + 2], sizeof(out->const_set[i])
973 * (out->const_set_count - i - 2));
974 --out->const_set_count;
976 else
978 ++i;
982 new_alloc = HeapReAlloc(GetProcessHeap(), 0, out->const_set,
983 sizeof(*out->const_set) * out->const_set_count);
984 if (new_alloc)
986 out->const_set = new_alloc;
987 out->const_set_size = out->const_set_count;
989 else
991 WARN("Out of memory.\n");
994 cleanup:
995 ID3DXConstantTable_Release(ctab);
996 return hr;
999 static void update_table_size(unsigned int *table_sizes, unsigned int table, unsigned int max_register)
1001 if (table < PRES_REGTAB_COUNT)
1002 table_sizes[table] = max(table_sizes[table], max_register + 1);
1005 static void update_table_sizes_consts(unsigned int *table_sizes, struct d3dx_const_tab *ctab)
1007 unsigned int i, table, max_register;
1009 for (i = 0; i < ctab->input_count; ++i)
1011 if (!ctab->inputs[i].RegisterCount)
1012 continue;
1013 max_register = ctab->inputs[i].RegisterIndex + ctab->inputs[i].RegisterCount - 1;
1014 table = ctab->regset2table[ctab->inputs[i].RegisterSet];
1015 update_table_size(table_sizes, table, max_register);
1019 static void dump_arg(struct d3dx_regstore *rs, const struct d3dx_pres_operand *arg, int component_count)
1021 static const char *xyzw_str = "xyzw";
1022 unsigned int i, table;
1024 table = arg->reg.table;
1025 if (table == PRES_REGTAB_IMMED && arg->index_reg.table == PRES_REGTAB_COUNT)
1027 TRACE("(");
1028 for (i = 0; i < component_count; ++i)
1029 TRACE(i < component_count - 1 ? "%.16e, " : "%.16e",
1030 ((double *)rs->tables[PRES_REGTAB_IMMED])[arg->reg.offset + i]);
1031 TRACE(")");
1033 else
1035 if (arg->index_reg.table == PRES_REGTAB_COUNT)
1037 TRACE("%s%u.", table_symbol[table], get_reg_offset(table, arg->reg.offset));
1039 else
1041 unsigned int index_reg;
1043 index_reg = get_reg_offset(arg->index_reg.table, arg->index_reg.offset);
1044 TRACE("%s[%u + %s%u.%c].", table_symbol[table], get_reg_offset(table, arg->reg.offset),
1045 table_symbol[arg->index_reg.table], index_reg,
1046 xyzw_str[arg->index_reg.offset - get_offset_reg(arg->index_reg.table, index_reg)]);
1048 for (i = 0; i < component_count; ++i)
1049 TRACE("%c", xyzw_str[(arg->reg.offset + i) % 4]);
1053 static void dump_registers(struct d3dx_const_tab *ctab)
1055 unsigned int table, i;
1057 for (i = 0; i < ctab->input_count; ++i)
1059 table = ctab->regset2table[ctab->inputs[i].RegisterSet];
1060 TRACE("// %-12s %s%-4u %u\n", ctab->inputs_param[i] ? ctab->inputs_param[i]->name : "(nil)",
1061 table_symbol[table], ctab->inputs[i].RegisterIndex, ctab->inputs[i].RegisterCount);
1065 static void dump_ins(struct d3dx_regstore *rs, const struct d3dx_pres_ins *ins)
1067 unsigned int i;
1069 TRACE("%s ", pres_op_info[ins->op].mnem);
1070 dump_arg(rs, &ins->output, pres_op_info[ins->op].func_all_comps ? 1 : ins->component_count);
1071 for (i = 0; i < pres_op_info[ins->op].input_count; ++i)
1073 TRACE(", ");
1074 dump_arg(rs, &ins->inputs[i], ins->scalar_op && !i ? 1 : ins->component_count);
1076 TRACE("\n");
1079 static void dump_preshader(struct d3dx_preshader *pres)
1081 unsigned int i, immediate_count = pres->regs.table_sizes[PRES_REGTAB_IMMED] * 4;
1082 const double *immediates = pres->regs.tables[PRES_REGTAB_IMMED];
1084 if (immediate_count)
1085 TRACE("// Immediates:\n");
1086 for (i = 0; i < immediate_count; ++i)
1088 if (!(i % 4))
1089 TRACE("// ");
1090 TRACE("%.8e", immediates[i]);
1091 if (i % 4 == 3)
1092 TRACE("\n");
1093 else
1094 TRACE(", ");
1096 TRACE("// Preshader registers:\n");
1097 dump_registers(&pres->inputs);
1098 TRACE("preshader\n");
1099 for (i = 0; i < pres->ins_count; ++i)
1100 dump_ins(&pres->regs, &pres->ins[i]);
1103 static HRESULT parse_preshader(struct d3dx_preshader *pres, unsigned int *ptr, unsigned int count, struct d3dx_effect *effect)
1105 unsigned int *p;
1106 unsigned int i, j, const_count;
1107 double *dconst;
1108 HRESULT hr;
1109 unsigned int saved_word;
1110 unsigned int section_size;
1112 TRACE("Preshader version %#x.\n", *ptr & 0xffff);
1114 if (!count)
1116 WARN("Unexpected end of byte code buffer.\n");
1117 return D3DXERR_INVALIDDATA;
1120 p = find_bytecode_comment(ptr + 1, count - 1, FOURCC_CLIT, &section_size);
1121 if (p)
1123 const_count = *p++;
1124 if (const_count > (section_size - 1) / (sizeof(double) / sizeof(unsigned int)))
1126 WARN("Byte code buffer ends unexpectedly.\n");
1127 return D3DXERR_INVALIDDATA;
1129 dconst = (double *)p;
1131 else
1133 const_count = 0;
1134 dconst = NULL;
1136 TRACE("%u double constants.\n", const_count);
1138 p = find_bytecode_comment(ptr + 1, count - 1, FOURCC_FXLC, &section_size);
1139 if (!p)
1141 WARN("Could not find preshader code.\n");
1142 return D3D_OK;
1144 pres->ins_count = *p++;
1145 --section_size;
1146 if (pres->ins_count > UINT_MAX / sizeof(*pres->ins))
1148 WARN("Invalid instruction count %u.\n", pres->ins_count);
1149 return D3DXERR_INVALIDDATA;
1151 TRACE("%u instructions.\n", pres->ins_count);
1152 pres->ins = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(*pres->ins) * pres->ins_count);
1153 if (!pres->ins)
1154 return E_OUTOFMEMORY;
1155 for (i = 0; i < pres->ins_count; ++i)
1157 unsigned int *ptr_next;
1159 ptr_next = parse_pres_ins(p, section_size, &pres->ins[i]);
1160 if (!ptr_next)
1161 return D3DXERR_INVALIDDATA;
1162 section_size -= ptr_next - p;
1163 p = ptr_next;
1166 pres->inputs.regset2table = pres_regset2table;
1168 saved_word = *ptr;
1169 *ptr = 0xfffe0000;
1170 hr = get_constants_desc(ptr, &pres->inputs, effect, NULL, 0, NULL);
1171 *ptr = saved_word;
1172 if (FAILED(hr))
1173 return hr;
1175 if (const_count % get_reg_components(PRES_REGTAB_IMMED))
1177 FIXME("const_count %u is not a multiple of %u.\n", const_count,
1178 get_reg_components(PRES_REGTAB_IMMED));
1179 return D3DXERR_INVALIDDATA;
1181 pres->regs.table_sizes[PRES_REGTAB_IMMED] = get_reg_offset(PRES_REGTAB_IMMED, const_count);
1183 update_table_sizes_consts(pres->regs.table_sizes, &pres->inputs);
1184 for (i = 0; i < pres->ins_count; ++i)
1186 for (j = 0; j < pres_op_info[pres->ins[i].op].input_count; ++j)
1188 enum pres_reg_tables table;
1189 unsigned int reg_idx;
1191 if (pres->ins[i].inputs[j].index_reg.table == PRES_REGTAB_COUNT)
1193 unsigned int last_component_index = pres->ins[i].scalar_op && !j ? 0
1194 : pres->ins[i].component_count - 1;
1196 table = pres->ins[i].inputs[j].reg.table;
1197 reg_idx = get_reg_offset(table, pres->ins[i].inputs[j].reg.offset
1198 + last_component_index);
1200 else
1202 table = pres->ins[i].inputs[j].index_reg.table;
1203 reg_idx = get_reg_offset(table, pres->ins[i].inputs[j].index_reg.offset);
1205 if (reg_idx >= pres->regs.table_sizes[table])
1207 /* Native accepts these broken preshaders. */
1208 FIXME("Out of bounds register index, i %u, j %u, table %u, reg_idx %u, preshader parsing failed.\n",
1209 i, j, table, reg_idx);
1210 return D3DXERR_INVALIDDATA;
1213 update_table_size(pres->regs.table_sizes, pres->ins[i].output.reg.table,
1214 get_reg_offset(pres->ins[i].output.reg.table, pres->ins[i].output.reg.offset));
1216 if (FAILED(regstore_alloc_table(&pres->regs, PRES_REGTAB_IMMED)))
1217 return E_OUTOFMEMORY;
1218 regstore_set_values(&pres->regs, PRES_REGTAB_IMMED, dconst, 0, const_count);
1220 return D3D_OK;
1223 HRESULT d3dx_create_param_eval(struct d3dx_effect *effect, void *byte_code, unsigned int byte_code_size,
1224 D3DXPARAMETER_TYPE type, struct d3dx_param_eval **peval_out, ULONG64 *version_counter,
1225 const char **skip_constants, unsigned int skip_constants_count)
1227 struct d3dx_param_eval *peval;
1228 unsigned int *ptr, *shader_ptr = NULL;
1229 unsigned int i;
1230 BOOL shader;
1231 unsigned int count, pres_size;
1232 HRESULT ret;
1234 TRACE("effect %p, byte_code %p, byte_code_size %u, type %u, peval_out %p.\n",
1235 effect, byte_code, byte_code_size, type, peval_out);
1237 count = byte_code_size / sizeof(unsigned int);
1238 if (!byte_code || !count)
1240 *peval_out = NULL;
1241 return D3D_OK;
1244 peval = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(*peval));
1245 if (!peval)
1247 ret = E_OUTOFMEMORY;
1248 goto err_out;
1250 peval->version_counter = version_counter;
1252 peval->param_type = type;
1253 switch (type)
1255 case D3DXPT_VERTEXSHADER:
1256 case D3DXPT_PIXELSHADER:
1257 shader = TRUE;
1258 break;
1259 default:
1260 shader = FALSE;
1261 break;
1263 peval->shader_inputs.regset2table = shad_regset2table;
1265 ptr = (unsigned int *)byte_code;
1266 if (shader)
1268 if ((*ptr & 0xfffe0000) != 0xfffe0000)
1270 FIXME("Invalid shader signature %#x.\n", *ptr);
1271 ret = D3DXERR_INVALIDDATA;
1272 goto err_out;
1274 TRACE("Shader version %#x.\n", *ptr & 0xffff);
1275 shader_ptr = ptr;
1276 ptr = find_bytecode_comment(ptr + 1, count - 1, FOURCC_PRES, &pres_size);
1277 if (!ptr)
1278 TRACE("No preshader found.\n");
1280 else
1282 pres_size = count;
1285 if (ptr && FAILED(ret = parse_preshader(&peval->pres, ptr, pres_size, effect)))
1287 FIXME("Failed parsing preshader, byte code for analysis follows.\n");
1288 dump_bytecode(byte_code, byte_code_size);
1289 goto err_out;
1292 if (shader)
1294 if (FAILED(ret = get_constants_desc(shader_ptr, &peval->shader_inputs, effect,
1295 skip_constants, skip_constants_count, &peval->pres)))
1297 TRACE("Could not get shader constant table, hr %#x.\n", ret);
1298 goto err_out;
1300 update_table_sizes_consts(peval->pres.regs.table_sizes, &peval->shader_inputs);
1303 for (i = PRES_REGTAB_FIRST_SHADER; i < PRES_REGTAB_COUNT; ++i)
1305 if (FAILED(ret = regstore_alloc_table(&peval->pres.regs, i)))
1306 goto err_out;
1309 if (TRACE_ON(d3dx))
1311 dump_bytecode(byte_code, byte_code_size);
1312 dump_preshader(&peval->pres);
1313 if (shader)
1315 TRACE("// Shader registers:\n");
1316 dump_registers(&peval->shader_inputs);
1319 *peval_out = peval;
1320 TRACE("Created parameter evaluator %p.\n", *peval_out);
1321 return D3D_OK;
1323 err_out:
1324 WARN("Error creating parameter evaluator.\n");
1325 if (TRACE_ON(d3dx))
1326 dump_bytecode(byte_code, byte_code_size);
1328 d3dx_free_param_eval(peval);
1329 *peval_out = NULL;
1330 return ret;
1333 static void d3dx_free_const_tab(struct d3dx_const_tab *ctab)
1335 HeapFree(GetProcessHeap(), 0, ctab->inputs);
1336 HeapFree(GetProcessHeap(), 0, ctab->inputs_param);
1337 HeapFree(GetProcessHeap(), 0, ctab->const_set);
1340 static void d3dx_free_preshader(struct d3dx_preshader *pres)
1342 HeapFree(GetProcessHeap(), 0, pres->ins);
1344 regstore_free_tables(&pres->regs);
1345 d3dx_free_const_tab(&pres->inputs);
1348 void d3dx_free_param_eval(struct d3dx_param_eval *peval)
1350 TRACE("peval %p.\n", peval);
1352 if (!peval)
1353 return;
1355 d3dx_free_preshader(&peval->pres);
1356 d3dx_free_const_tab(&peval->shader_inputs);
1357 HeapFree(GetProcessHeap(), 0, peval);
1360 static void pres_int_from_float(void *out, const void *in, unsigned int count)
1362 unsigned int i;
1363 const float *in_float = in;
1364 int *out_int = out;
1366 for (i = 0; i < count; ++i)
1367 out_int[i] = in_float[i];
1370 static void pres_bool_from_value(void *out, const void *in, unsigned int count)
1372 unsigned int i;
1373 const DWORD *in_dword = in;
1374 BOOL *out_bool = out;
1376 for (i = 0; i < count; ++i)
1377 out_bool[i] = !!in_dword[i];
1380 static void pres_float_from_int(void *out, const void *in, unsigned int count)
1382 unsigned int i;
1383 const int *in_int = in;
1384 float *out_float = out;
1386 for (i = 0; i < count; ++i)
1387 out_float[i] = in_int[i];
1390 static void pres_float_from_bool(void *out, const void *in, unsigned int count)
1392 unsigned int i;
1393 const BOOL *in_bool = in;
1394 float *out_float = out;
1396 for (i = 0; i < count; ++i)
1397 out_float[i] = !!in_bool[i];
1400 static void pres_int_from_bool(void *out, const void *in, unsigned int count)
1402 unsigned int i;
1403 const float *in_bool = in;
1404 int *out_int = out;
1406 for (i = 0; i < count; ++i)
1407 out_int[i] = !!in_bool[i];
1410 static void regstore_set_data(struct d3dx_regstore *rs, unsigned int table,
1411 unsigned int offset, const unsigned int *in, unsigned int count, enum pres_value_type param_type)
1413 typedef void (*conv_func)(void *out, const void *in, unsigned int count);
1414 static const conv_func set_const_funcs[PRES_VT_COUNT][PRES_VT_COUNT] =
1416 {NULL, NULL, pres_int_from_float, pres_bool_from_value},
1417 {NULL, NULL, NULL, NULL},
1418 {pres_float_from_int, NULL, NULL, pres_bool_from_value},
1419 {pres_float_from_bool, NULL, pres_int_from_bool, NULL}
1421 enum pres_value_type table_type = table_info[table].type;
1423 if (param_type == table_type)
1425 regstore_set_values(rs, table, in, offset, count);
1426 return;
1429 set_const_funcs[param_type][table_type]((unsigned int *)rs->tables[table] + offset, in, count);
1432 static HRESULT set_constants_device(ID3DXEffectStateManager *manager, struct IDirect3DDevice9 *device,
1433 D3DXPARAMETER_TYPE type, enum pres_reg_tables table, void *ptr,
1434 unsigned int start, unsigned int count)
1436 if (type == D3DXPT_VERTEXSHADER)
1438 switch(table)
1440 case PRES_REGTAB_OCONST:
1441 return SET_D3D_STATE_(manager, device, SetVertexShaderConstantF, start, ptr, count);
1442 case PRES_REGTAB_OICONST:
1443 return SET_D3D_STATE_(manager, device, SetVertexShaderConstantI, start, ptr, count);
1444 case PRES_REGTAB_OBCONST:
1445 return SET_D3D_STATE_(manager, device, SetVertexShaderConstantB, start, ptr, count);
1446 default:
1447 FIXME("Unexpected register table %u.\n", table);
1448 return D3DERR_INVALIDCALL;
1451 else if (type == D3DXPT_PIXELSHADER)
1453 switch(table)
1455 case PRES_REGTAB_OCONST:
1456 return SET_D3D_STATE_(manager, device, SetPixelShaderConstantF, start, ptr, count);
1457 case PRES_REGTAB_OICONST:
1458 return SET_D3D_STATE_(manager, device, SetPixelShaderConstantI, start, ptr, count);
1459 case PRES_REGTAB_OBCONST:
1460 return SET_D3D_STATE_(manager, device, SetPixelShaderConstantB, start, ptr, count);
1461 default:
1462 FIXME("Unexpected register table %u.\n", table);
1463 return D3DERR_INVALIDCALL;
1466 else
1468 FIXME("Unexpected parameter type %u.\n", type);
1469 return D3DERR_INVALIDCALL;
1473 static HRESULT set_constants(struct d3dx_regstore *rs, struct d3dx_const_tab *const_tab,
1474 ULONG64 new_update_version, ID3DXEffectStateManager *manager, struct IDirect3DDevice9 *device,
1475 D3DXPARAMETER_TYPE type, BOOL device_update_all, BOOL pres_dirty)
1477 unsigned int const_idx;
1478 unsigned int current_start = 0, current_count = 0;
1479 enum pres_reg_tables current_table = PRES_REGTAB_COUNT;
1480 BOOL update_device = manager || device;
1481 HRESULT hr, result = D3D_OK;
1482 ULONG64 update_version = const_tab->update_version;
1484 for (const_idx = 0; const_idx < const_tab->const_set_count; ++const_idx)
1486 struct d3dx_const_param_eval_output *const_set = &const_tab->const_set[const_idx];
1487 enum pres_reg_tables table = const_set->table;
1488 struct d3dx_parameter *param = const_set->param;
1489 unsigned int element, i, j, start_offset;
1490 struct const_upload_info info;
1491 unsigned int *data;
1492 enum pres_value_type param_type;
1494 if (!(param && is_param_dirty(param, update_version)))
1495 continue;
1497 data = param->data;
1498 start_offset = get_offset_reg(table, const_set->register_index);
1499 if (const_set->direct_copy)
1501 regstore_set_values(rs, table, data, start_offset,
1502 get_offset_reg(table, const_set->register_count));
1503 continue;
1505 param_type = table_type_from_param_type(param->type);
1506 if (const_set->constant_class == D3DXPC_SCALAR || const_set->constant_class == D3DXPC_VECTOR)
1508 unsigned int count = max(param->rows, param->columns);
1510 if (count >= get_reg_components(table))
1512 regstore_set_data(rs, table, start_offset, data,
1513 count * const_set->element_count, param_type);
1515 else
1517 for (element = 0; element < const_set->element_count; ++element)
1518 regstore_set_data(rs, table, start_offset + get_offset_reg(table, element),
1519 &data[element * count], count, param_type);
1521 continue;
1523 get_const_upload_info(const_set, &info);
1524 for (element = 0; element < const_set->element_count; ++element)
1526 unsigned int *out = (unsigned int *)rs->tables[table] + start_offset;
1528 /* Store reshaped but (possibly) not converted yet data temporarily in the same constants buffer.
1529 * All the supported types of parameters and table values have the same size. */
1530 if (info.transpose)
1532 for (i = 0; i < info.major_count; ++i)
1533 for (j = 0; j < info.minor; ++j)
1534 out[i * info.major_stride + j] = data[i + j * info.major];
1536 for (j = 0; j < info.minor_remainder; ++j)
1537 out[i * info.major_stride + j] = data[i + j * info.major];
1539 else
1541 for (i = 0; i < info.major_count; ++i)
1542 for (j = 0; j < info.minor; ++j)
1543 out[i * info.major_stride + j] = data[i * info.minor + j];
1545 start_offset += get_offset_reg(table, const_set->register_count);
1546 data += param->rows * param->columns;
1548 start_offset = get_offset_reg(table, const_set->register_index);
1549 if (table_info[table].type != param_type)
1550 regstore_set_data(rs, table, start_offset, (unsigned int *)rs->tables[table] + start_offset,
1551 get_offset_reg(table, const_set->register_count) * const_set->element_count, param_type);
1553 const_tab->update_version = new_update_version;
1554 if (!update_device)
1555 return D3D_OK;
1557 for (const_idx = 0; const_idx < const_tab->const_set_count; ++const_idx)
1559 struct d3dx_const_param_eval_output *const_set = &const_tab->const_set[const_idx];
1561 if (device_update_all || (const_set->param
1562 ? is_param_dirty(const_set->param, update_version) : pres_dirty))
1564 enum pres_reg_tables table = const_set->table;
1566 if (table == current_table && current_start + current_count == const_set->register_index)
1568 current_count += const_set->register_count * const_set->element_count;
1570 else
1572 if (current_count)
1574 if (FAILED(hr = set_constants_device(manager, device, type, current_table,
1575 (DWORD *)rs->tables[current_table]
1576 + get_offset_reg(current_table, current_start), current_start, current_count)))
1577 result = hr;
1579 current_table = table;
1580 current_start = const_set->register_index;
1581 current_count = const_set->register_count * const_set->element_count;
1585 if (current_count)
1587 if (FAILED(hr = set_constants_device(manager, device, type, current_table,
1588 (DWORD *)rs->tables[current_table]
1589 + get_offset_reg(current_table, current_start), current_start, current_count)))
1590 result = hr;
1592 return result;
1595 static double exec_get_reg_value(struct d3dx_regstore *rs, enum pres_reg_tables table, unsigned int offset)
1597 return regstore_get_double(rs, table, offset);
1600 static double exec_get_arg(struct d3dx_regstore *rs, const struct d3dx_pres_operand *opr, unsigned int comp)
1602 unsigned int offset, base_index, reg_index, table;
1604 table = opr->reg.table;
1606 if (opr->index_reg.table == PRES_REGTAB_COUNT)
1607 base_index = 0;
1608 else
1609 base_index = lrint(exec_get_reg_value(rs, opr->index_reg.table, opr->index_reg.offset));
1611 offset = get_offset_reg(table, base_index) + opr->reg.offset + comp;
1612 reg_index = get_reg_offset(table, offset);
1614 if (reg_index >= rs->table_sizes[table])
1616 unsigned int wrap_size;
1618 if (table == PRES_REGTAB_CONST)
1620 /* As it can be guessed from tests, offset into floating constant table is wrapped
1621 * to the nearest power of 2 and not to the actual table size. */
1622 for (wrap_size = 1; wrap_size < rs->table_sizes[table]; wrap_size <<= 1)
1625 else
1627 wrap_size = rs->table_sizes[table];
1629 WARN("Wrapping register index %u, table %u, wrap_size %u, table size %u.\n",
1630 reg_index, table, wrap_size, rs->table_sizes[table]);
1631 reg_index %= wrap_size;
1633 if (reg_index >= rs->table_sizes[table])
1634 return 0.0;
1636 offset = get_offset_reg(table, reg_index) + offset % get_reg_components(table);
1639 return exec_get_reg_value(rs, table, offset);
1642 static void exec_set_arg(struct d3dx_regstore *rs, const struct d3dx_pres_reg *reg,
1643 unsigned int comp, double res)
1645 regstore_set_double(rs, reg->table, reg->offset + comp, res);
1648 #define ARGS_ARRAY_SIZE 8
1649 static HRESULT execute_preshader(struct d3dx_preshader *pres)
1651 unsigned int i, j, k;
1652 double args[ARGS_ARRAY_SIZE];
1653 double res;
1655 for (i = 0; i < pres->ins_count; ++i)
1657 const struct d3dx_pres_ins *ins;
1658 const struct op_info *oi;
1660 ins = &pres->ins[i];
1661 oi = &pres_op_info[ins->op];
1662 if (oi->func_all_comps)
1664 if (oi->input_count * ins->component_count > ARGS_ARRAY_SIZE)
1666 FIXME("Too many arguments (%u) for one instruction.\n", oi->input_count * ins->component_count);
1667 return E_FAIL;
1669 for (k = 0; k < oi->input_count; ++k)
1670 for (j = 0; j < ins->component_count; ++j)
1671 args[k * ins->component_count + j] = exec_get_arg(&pres->regs, &ins->inputs[k],
1672 ins->scalar_op && !k ? 0 : j);
1673 res = oi->func(args, ins->component_count);
1675 /* only 'dot' instruction currently falls here */
1676 exec_set_arg(&pres->regs, &ins->output.reg, 0, res);
1678 else
1680 for (j = 0; j < ins->component_count; ++j)
1682 for (k = 0; k < oi->input_count; ++k)
1683 args[k] = exec_get_arg(&pres->regs, &ins->inputs[k], ins->scalar_op && !k ? 0 : j);
1684 res = oi->func(args, ins->component_count);
1685 exec_set_arg(&pres->regs, &ins->output.reg, j, res);
1689 return D3D_OK;
1692 static BOOL is_const_tab_input_dirty(struct d3dx_const_tab *ctab, ULONG64 update_version)
1694 unsigned int i;
1696 if (update_version == ULONG64_MAX)
1697 update_version = ctab->update_version;
1698 for (i = 0; i < ctab->input_count; ++i)
1700 if (is_top_level_param_dirty(top_level_parameter_from_parameter(ctab->inputs_param[i]),
1701 update_version))
1702 return TRUE;
1704 return FALSE;
1707 BOOL is_param_eval_input_dirty(struct d3dx_param_eval *peval, ULONG64 update_version)
1709 return is_const_tab_input_dirty(&peval->pres.inputs, update_version)
1710 || is_const_tab_input_dirty(&peval->shader_inputs, update_version);
1713 HRESULT d3dx_evaluate_parameter(struct d3dx_param_eval *peval, const struct d3dx_parameter *param,
1714 void *param_value)
1716 HRESULT hr;
1717 unsigned int i;
1718 unsigned int elements, elements_param, elements_table;
1719 float *oc;
1721 TRACE("peval %p, param %p, param_value %p.\n", peval, param, param_value);
1723 if (is_const_tab_input_dirty(&peval->pres.inputs, ULONG64_MAX))
1725 set_constants(&peval->pres.regs, &peval->pres.inputs,
1726 next_update_version(peval->version_counter),
1727 NULL, NULL, peval->param_type, FALSE, FALSE);
1729 if (FAILED(hr = execute_preshader(&peval->pres)))
1730 return hr;
1733 elements_table = get_offset_reg(PRES_REGTAB_OCONST, peval->pres.regs.table_sizes[PRES_REGTAB_OCONST]);
1734 elements_param = param->bytes / sizeof(unsigned int);
1735 elements = min(elements_table, elements_param);
1736 oc = (float *)peval->pres.regs.tables[PRES_REGTAB_OCONST];
1737 for (i = 0; i < elements; ++i)
1738 set_number((unsigned int *)param_value + i, param->type, oc + i, D3DXPT_FLOAT);
1739 return D3D_OK;
1742 HRESULT d3dx_param_eval_set_shader_constants(ID3DXEffectStateManager *manager, struct IDirect3DDevice9 *device,
1743 struct d3dx_param_eval *peval, BOOL update_all)
1745 HRESULT hr;
1746 struct d3dx_preshader *pres = &peval->pres;
1747 struct d3dx_regstore *rs = &pres->regs;
1748 ULONG64 new_update_version = next_update_version(peval->version_counter);
1749 BOOL pres_dirty = FALSE;
1751 TRACE("device %p, peval %p, param_type %u.\n", device, peval, peval->param_type);
1753 if (is_const_tab_input_dirty(&pres->inputs, ULONG64_MAX))
1755 set_constants(rs, &pres->inputs, new_update_version,
1756 NULL, NULL, peval->param_type, FALSE, FALSE);
1757 if (FAILED(hr = execute_preshader(pres)))
1758 return hr;
1759 pres_dirty = TRUE;
1762 return set_constants(rs, &peval->shader_inputs, new_update_version,
1763 manager, device, peval->param_type, update_all, pres_dirty);