nvfx: implement NOP
[mesa.git] / src / gallium / drivers / nvfx / nvfx_fragprog.c
1 #include "pipe/p_context.h"
2 #include "pipe/p_defines.h"
3 #include "pipe/p_state.h"
4 #include "util/u_inlines.h"
5 #include "util/u_debug.h"
6
7 #include "pipe/p_shader_tokens.h"
8 #include "tgsi/tgsi_parse.h"
9 #include "tgsi/tgsi_util.h"
10 #include "tgsi/tgsi_dump.h"
11
12 #include "nvfx_context.h"
13 #include "nvfx_shader.h"
14 #include "nvfx_resource.h"
15
16 #define MAX_CONSTS 128
17 #define MAX_IMM 32
18
19 struct nvfx_fpc {
20 struct nvfx_fragment_program *fp;
21
22 unsigned r_temps;
23 unsigned r_temps_discard;
24 struct nvfx_reg r_result[PIPE_MAX_SHADER_OUTPUTS];
25 struct nvfx_reg *r_temp;
26
27 int num_regs;
28
29 unsigned inst_offset;
30 unsigned have_const;
31
32 struct {
33 int pipe;
34 float vals[4];
35 } consts[MAX_CONSTS];
36 int nr_consts;
37
38 struct nvfx_reg imm[MAX_IMM];
39 unsigned nr_imm;
40
41 unsigned char generic_to_slot[256]; /* semantic idx for each input semantic */
42
43 struct util_dynarray if_stack;
44 //struct util_dynarray loop_stack;
45 struct util_dynarray label_relocs;
46 };
47
48 static INLINE struct nvfx_reg
49 temp(struct nvfx_fpc *fpc)
50 {
51 int idx = ffs(~fpc->r_temps) - 1;
52
53 if (idx < 0) {
54 NOUVEAU_ERR("out of temps!!\n");
55 assert(0);
56 return nvfx_reg(NVFXSR_TEMP, 0);
57 }
58
59 fpc->r_temps |= (1 << idx);
60 fpc->r_temps_discard |= (1 << idx);
61 return nvfx_reg(NVFXSR_TEMP, idx);
62 }
63
64 static INLINE void
65 release_temps(struct nvfx_fpc *fpc)
66 {
67 fpc->r_temps &= ~fpc->r_temps_discard;
68 fpc->r_temps_discard = 0;
69 }
70
71 static INLINE struct nvfx_reg
72 constant(struct nvfx_fpc *fpc, int pipe, float vals[4])
73 {
74 int idx;
75
76 if (fpc->nr_consts == MAX_CONSTS)
77 assert(0);
78 idx = fpc->nr_consts++;
79
80 fpc->consts[idx].pipe = pipe;
81 if (pipe == -1)
82 memcpy(fpc->consts[idx].vals, vals, 4 * sizeof(float));
83 return nvfx_reg(NVFXSR_CONST, idx);
84 }
85
86 static void
87 grow_insns(struct nvfx_fpc *fpc, int size)
88 {
89 struct nvfx_fragment_program *fp = fpc->fp;
90
91 fp->insn_len += size;
92 fp->insn = realloc(fp->insn, sizeof(uint32_t) * fp->insn_len);
93 }
94
95 static void
96 emit_src(struct nvfx_fpc *fpc, int pos, struct nvfx_src src)
97 {
98 struct nvfx_fragment_program *fp = fpc->fp;
99 uint32_t *hw = &fp->insn[fpc->inst_offset];
100 uint32_t sr = 0;
101
102 switch (src.reg.type) {
103 case NVFXSR_INPUT:
104 sr |= (NVFX_FP_REG_TYPE_INPUT << NVFX_FP_REG_TYPE_SHIFT);
105 hw[0] |= (src.reg.index << NVFX_FP_OP_INPUT_SRC_SHIFT);
106 break;
107 case NVFXSR_OUTPUT:
108 sr |= NVFX_FP_REG_SRC_HALF;
109 /* fall-through */
110 case NVFXSR_TEMP:
111 sr |= (NVFX_FP_REG_TYPE_TEMP << NVFX_FP_REG_TYPE_SHIFT);
112 sr |= (src.reg.index << NVFX_FP_REG_SRC_SHIFT);
113 break;
114 case NVFXSR_RELOCATED:
115 sr |= (NVFX_FP_REG_TYPE_INPUT << NVFX_FP_REG_TYPE_SHIFT);
116 //printf("adding relocation at %x for %x\n", fpc->inst_offset, src.index);
117 util_dynarray_append(&fpc->fp->slot_relocations[src.reg.index], unsigned, fpc->inst_offset);
118 break;
119 case NVFXSR_CONST:
120 if (!fpc->have_const) {
121 grow_insns(fpc, 4);
122 fpc->have_const = 1;
123 }
124
125 hw = &fp->insn[fpc->inst_offset];
126 if (fpc->consts[src.reg.index].pipe >= 0) {
127 struct nvfx_fragment_program_data *fpd;
128
129 fp->consts = realloc(fp->consts, ++fp->nr_consts *
130 sizeof(*fpd));
131 fpd = &fp->consts[fp->nr_consts - 1];
132 fpd->offset = fpc->inst_offset + 4;
133 fpd->index = fpc->consts[src.reg.index].pipe;
134 memset(&fp->insn[fpd->offset], 0, sizeof(uint32_t) * 4);
135 } else {
136 memcpy(&fp->insn[fpc->inst_offset + 4],
137 fpc->consts[src.reg.index].vals,
138 sizeof(uint32_t) * 4);
139 }
140
141 sr |= (NVFX_FP_REG_TYPE_CONST << NVFX_FP_REG_TYPE_SHIFT);
142 break;
143 case NVFXSR_NONE:
144 sr |= (NVFX_FP_REG_TYPE_INPUT << NVFX_FP_REG_TYPE_SHIFT);
145 break;
146 default:
147 assert(0);
148 }
149
150 if (src.negate)
151 sr |= NVFX_FP_REG_NEGATE;
152
153 if (src.abs)
154 hw[1] |= (1 << (29 + pos));
155
156 sr |= ((src.swz[0] << NVFX_FP_REG_SWZ_X_SHIFT) |
157 (src.swz[1] << NVFX_FP_REG_SWZ_Y_SHIFT) |
158 (src.swz[2] << NVFX_FP_REG_SWZ_Z_SHIFT) |
159 (src.swz[3] << NVFX_FP_REG_SWZ_W_SHIFT));
160
161 hw[pos + 1] |= sr;
162 }
163
164 static void
165 emit_dst(struct nvfx_fpc *fpc, struct nvfx_reg dst)
166 {
167 struct nvfx_fragment_program *fp = fpc->fp;
168 uint32_t *hw = &fp->insn[fpc->inst_offset];
169
170 switch (dst.type) {
171 case NVFXSR_TEMP:
172 if (fpc->num_regs < (dst.index + 1))
173 fpc->num_regs = dst.index + 1;
174 break;
175 case NVFXSR_OUTPUT:
176 if (dst.index == 1) {
177 fp->fp_control |= 0xe;
178 } else {
179 hw[0] |= NVFX_FP_OP_OUT_REG_HALF;
180 }
181 break;
182 case NVFXSR_NONE:
183 hw[0] |= (1 << 30);
184 break;
185 default:
186 assert(0);
187 }
188
189 hw[0] |= (dst.index << NVFX_FP_OP_OUT_REG_SHIFT);
190 }
191
192 static void
193 nvfx_fp_emit(struct nvfx_fpc *fpc, struct nvfx_insn insn)
194 {
195 struct nvfx_fragment_program *fp = fpc->fp;
196 uint32_t *hw;
197
198 fpc->inst_offset = fp->insn_len;
199 fpc->have_const = 0;
200 grow_insns(fpc, 4);
201 hw = &fp->insn[fpc->inst_offset];
202 memset(hw, 0, sizeof(uint32_t) * 4);
203
204 if (insn.op == NVFX_FP_OP_OPCODE_KIL)
205 fp->fp_control |= NV34TCL_FP_CONTROL_USES_KIL;
206 hw[0] |= (insn.op << NVFX_FP_OP_OPCODE_SHIFT);
207 hw[0] |= (insn.mask << NVFX_FP_OP_OUTMASK_SHIFT);
208 hw[2] |= (insn.scale << NVFX_FP_OP_DST_SCALE_SHIFT);
209
210 if (insn.sat)
211 hw[0] |= NVFX_FP_OP_OUT_SAT;
212
213 if (insn.cc_update)
214 hw[0] |= NVFX_FP_OP_COND_WRITE_ENABLE;
215 hw[1] |= (insn.cc_test << NVFX_FP_OP_COND_SHIFT);
216 hw[1] |= ((insn.cc_swz[0] << NVFX_FP_OP_COND_SWZ_X_SHIFT) |
217 (insn.cc_swz[1] << NVFX_FP_OP_COND_SWZ_Y_SHIFT) |
218 (insn.cc_swz[2] << NVFX_FP_OP_COND_SWZ_Z_SHIFT) |
219 (insn.cc_swz[3] << NVFX_FP_OP_COND_SWZ_W_SHIFT));
220
221 if(insn.unit >= 0)
222 {
223 hw[0] |= (insn.unit << NVFX_FP_OP_TEX_UNIT_SHIFT);
224 fp->samplers |= (1 << insn.unit);
225 }
226
227 emit_dst(fpc, insn.dst);
228 emit_src(fpc, 0, insn.src[0]);
229 emit_src(fpc, 1, insn.src[1]);
230 emit_src(fpc, 2, insn.src[2]);
231 }
232
233 #define arith(s,o,d,m,s0,s1,s2) \
234 nvfx_insn((s), NVFX_FP_OP_OPCODE_##o, -1, \
235 (d), (m), (s0), (s1), (s2))
236
237 #define tex(s,o,u,d,m,s0,s1,s2) \
238 nvfx_insn((s), NVFX_FP_OP_OPCODE_##o, (u), \
239 (d), (m), (s0), none, none)
240
241 /* IF src.x != 0, as TGSI specifies */
242 static void
243 nv40_fp_if(struct nvfx_fpc *fpc, struct nvfx_src src)
244 {
245 const struct nvfx_src none = nvfx_src(nvfx_reg(NVFXSR_NONE, 0));
246 struct nvfx_insn insn = arith(0, MOV, none.reg, NVFX_FP_MASK_X, src, none, none);
247 insn.cc_update = 1;
248 nvfx_fp_emit(fpc, insn);
249
250 fpc->inst_offset = fpc->fp->insn_len;
251 grow_insns(fpc, 4);
252 uint32_t *hw = &fpc->fp->insn[fpc->inst_offset];
253 /* I really wonder why fp16 precision is used. Presumably the hardware ignores it? */
254 hw[0] = (NV40_FP_OP_BRA_OPCODE_IF << NVFX_FP_OP_OPCODE_SHIFT) |
255 NV40_FP_OP_OUT_NONE |
256 (NVFX_FP_PRECISION_FP16 << NVFX_FP_OP_PRECISION_SHIFT);
257 /* Use .xxxx swizzle so that we check only src[0].x*/
258 hw[1] = (0 << NVFX_FP_OP_COND_SWZ_X_SHIFT) |
259 (0 << NVFX_FP_OP_COND_SWZ_Y_SHIFT) |
260 (0 << NVFX_FP_OP_COND_SWZ_Z_SHIFT) |
261 (0 << NVFX_FP_OP_COND_SWZ_W_SHIFT) |
262 (NVFX_FP_OP_COND_NE << NVFX_FP_OP_COND_SHIFT);
263 hw[2] = 0; /* | NV40_FP_OP_OPCODE_IS_BRANCH | else_offset */
264 hw[3] = 0; /* | endif_offset */
265 util_dynarray_append(&fpc->if_stack, unsigned, fpc->inst_offset);
266 }
267
268 /* IF src.x != 0, as TGSI specifies */
269 static void
270 nv40_fp_cal(struct nvfx_fpc *fpc, unsigned target)
271 {
272 struct nvfx_label_relocation reloc;
273 fpc->inst_offset = fpc->fp->insn_len;
274 grow_insns(fpc, 4);
275 uint32_t *hw = &fpc->fp->insn[fpc->inst_offset];
276 /* I really wonder why fp16 precision is used. Presumably the hardware ignores it? */
277 hw[0] = (NV40_FP_OP_BRA_OPCODE_CAL << NVFX_FP_OP_OPCODE_SHIFT);
278 /* Use .xxxx swizzle so that we check only src[0].x*/
279 hw[1] = (NVFX_SWZ_IDENTITY << NVFX_FP_OP_COND_SWZ_ALL_SHIFT) |
280 (NVFX_FP_OP_COND_TR << NVFX_FP_OP_COND_SHIFT);
281 hw[2] = NV40_FP_OP_OPCODE_IS_BRANCH; /* | call_offset */
282 hw[3] = 0;
283 reloc.target = target;
284 reloc.location = fpc->inst_offset + 2;
285 util_dynarray_append(&fpc->label_relocs, struct nvfx_label_relocation, reloc);
286 }
287
288 static void
289 nv40_fp_ret(struct nvfx_fpc *fpc)
290 {
291 fpc->inst_offset = fpc->fp->insn_len;
292 grow_insns(fpc, 4);
293 uint32_t *hw = &fpc->fp->insn[fpc->inst_offset];
294 /* I really wonder why fp16 precision is used. Presumably the hardware ignores it? */
295 hw[0] = (NV40_FP_OP_BRA_OPCODE_RET << NVFX_FP_OP_OPCODE_SHIFT);
296 /* Use .xxxx swizzle so that we check only src[0].x*/
297 hw[1] = (NVFX_SWZ_IDENTITY << NVFX_FP_OP_COND_SWZ_ALL_SHIFT) |
298 (NVFX_FP_OP_COND_TR << NVFX_FP_OP_COND_SHIFT);
299 hw[2] = NV40_FP_OP_OPCODE_IS_BRANCH; /* | call_offset */
300 hw[3] = 0;
301 }
302
303 static void
304 nv40_fp_rep(struct nvfx_fpc *fpc, unsigned count, unsigned target)
305 {
306 struct nvfx_label_relocation reloc;
307 fpc->inst_offset = fpc->fp->insn_len;
308 grow_insns(fpc, 4);
309 uint32_t *hw = &fpc->fp->insn[fpc->inst_offset];
310 /* I really wonder why fp16 precision is used. Presumably the hardware ignores it? */
311 hw[0] = (NV40_FP_OP_BRA_OPCODE_REP << NVFX_FP_OP_OPCODE_SHIFT) |
312 NV40_FP_OP_OUT_NONE |
313 (NVFX_FP_PRECISION_FP16 << NVFX_FP_OP_PRECISION_SHIFT);
314 /* Use .xxxx swizzle so that we check only src[0].x*/
315 hw[1] = (NVFX_SWZ_IDENTITY << NVFX_FP_OP_COND_SWZ_ALL_SHIFT) |
316 (NVFX_FP_OP_COND_TR << NVFX_FP_OP_COND_SHIFT);
317 hw[2] = NV40_FP_OP_OPCODE_IS_BRANCH |
318 (count << NV40_FP_OP_REP_COUNT1_SHIFT) |
319 (count << NV40_FP_OP_REP_COUNT2_SHIFT) |
320 (count << NV40_FP_OP_REP_COUNT3_SHIFT);
321 hw[3] = 0; /* | end_offset */
322 reloc.target = target;
323 reloc.location = fpc->inst_offset + 3;
324 util_dynarray_append(&fpc->label_relocs, struct nvfx_label_relocation, reloc);
325 //util_dynarray_append(&fpc->loop_stack, unsigned, target);
326 }
327
328 /* warning: this only works forward, and probably only if not inside any IF */
329 static void
330 nv40_fp_bra(struct nvfx_fpc *fpc, unsigned target)
331 {
332 struct nvfx_label_relocation reloc;
333 fpc->inst_offset = fpc->fp->insn_len;
334 grow_insns(fpc, 4);
335 uint32_t *hw = &fpc->fp->insn[fpc->inst_offset];
336 /* I really wonder why fp16 precision is used. Presumably the hardware ignores it? */
337 hw[0] = (NV40_FP_OP_BRA_OPCODE_IF << NVFX_FP_OP_OPCODE_SHIFT) |
338 NV40_FP_OP_OUT_NONE |
339 (NVFX_FP_PRECISION_FP16 << NVFX_FP_OP_PRECISION_SHIFT);
340 /* Use .xxxx swizzle so that we check only src[0].x*/
341 hw[1] = (NVFX_SWZ_IDENTITY << NVFX_FP_OP_COND_SWZ_X_SHIFT) |
342 (NVFX_FP_OP_COND_FL << NVFX_FP_OP_COND_SHIFT);
343 hw[2] = NV40_FP_OP_OPCODE_IS_BRANCH; /* | else_offset */
344 hw[3] = 0; /* | endif_offset */
345 reloc.target = target;
346 reloc.location = fpc->inst_offset + 2;
347 util_dynarray_append(&fpc->label_relocs, struct nvfx_label_relocation, reloc);
348 reloc.target = target;
349 reloc.location = fpc->inst_offset + 3;
350 util_dynarray_append(&fpc->label_relocs, struct nvfx_label_relocation, reloc);
351 }
352
353 static void
354 nv40_fp_brk(struct nvfx_fpc *fpc)
355 {
356 fpc->inst_offset = fpc->fp->insn_len;
357 grow_insns(fpc, 4);
358 uint32_t *hw = &fpc->fp->insn[fpc->inst_offset];
359 /* I really wonder why fp16 precision is used. Presumably the hardware ignores it? */
360 hw[0] = (NV40_FP_OP_BRA_OPCODE_BRK << NVFX_FP_OP_OPCODE_SHIFT) |
361 NV40_FP_OP_OUT_NONE;
362 /* Use .xxxx swizzle so that we check only src[0].x*/
363 hw[1] = (NVFX_SWZ_IDENTITY << NVFX_FP_OP_COND_SWZ_X_SHIFT) |
364 (NVFX_FP_OP_COND_TR << NVFX_FP_OP_COND_SHIFT);
365 hw[2] = NV40_FP_OP_OPCODE_IS_BRANCH;
366 hw[3] = 0;
367 }
368
369 static INLINE struct nvfx_src
370 tgsi_src(struct nvfx_fpc *fpc, const struct tgsi_full_src_register *fsrc)
371 {
372 struct nvfx_src src;
373
374 switch (fsrc->Register.File) {
375 case TGSI_FILE_INPUT:
376 if(fpc->fp->info.input_semantic_name[fsrc->Register.Index] == TGSI_SEMANTIC_POSITION) {
377 assert(fpc->fp->info.input_semantic_index[fsrc->Register.Index] == 0);
378 src.reg = nvfx_reg(NVFXSR_INPUT, NVFX_FP_OP_INPUT_SRC_POSITION);
379 } else if(fpc->fp->info.input_semantic_name[fsrc->Register.Index] == TGSI_SEMANTIC_COLOR) {
380 if(fpc->fp->info.input_semantic_index[fsrc->Register.Index] == 0)
381 src.reg = nvfx_reg(NVFXSR_INPUT, NVFX_FP_OP_INPUT_SRC_COL0);
382 else if(fpc->fp->info.input_semantic_index[fsrc->Register.Index] == 1)
383 src.reg = nvfx_reg(NVFXSR_INPUT, NVFX_FP_OP_INPUT_SRC_COL1);
384 else
385 assert(0);
386 } else if(fpc->fp->info.input_semantic_name[fsrc->Register.Index] == TGSI_SEMANTIC_FOG) {
387 assert(fpc->fp->info.input_semantic_index[fsrc->Register.Index] == 0);
388 src.reg = nvfx_reg(NVFXSR_INPUT, NVFX_FP_OP_INPUT_SRC_FOGC);
389 } else if(fpc->fp->info.input_semantic_name[fsrc->Register.Index] == TGSI_SEMANTIC_FACE) {
390 /* TODO: check this has the correct values */
391 /* XXX: what do we do for nv30 here (assuming it lacks facing)?! */
392 assert(fpc->fp->info.input_semantic_index[fsrc->Register.Index] == 0);
393 src.reg = nvfx_reg(NVFXSR_INPUT, NV40_FP_OP_INPUT_SRC_FACING);
394 } else {
395 assert(fpc->fp->info.input_semantic_name[fsrc->Register.Index] == TGSI_SEMANTIC_GENERIC);
396 src.reg = nvfx_reg(NVFXSR_RELOCATED, fpc->generic_to_slot[fpc->fp->info.input_semantic_index[fsrc->Register.Index]]);
397 }
398 break;
399 case TGSI_FILE_CONSTANT:
400 src.reg = constant(fpc, fsrc->Register.Index, NULL);
401 break;
402 case TGSI_FILE_IMMEDIATE:
403 assert(fsrc->Register.Index < fpc->nr_imm);
404 src.reg = fpc->imm[fsrc->Register.Index];
405 break;
406 case TGSI_FILE_TEMPORARY:
407 src.reg = fpc->r_temp[fsrc->Register.Index];
408 break;
409 /* NV40 fragprog result regs are just temps, so this is simple */
410 case TGSI_FILE_OUTPUT:
411 src.reg = fpc->r_result[fsrc->Register.Index];
412 break;
413 default:
414 NOUVEAU_ERR("bad src file\n");
415 break;
416 }
417
418 src.abs = fsrc->Register.Absolute;
419 src.negate = fsrc->Register.Negate;
420 src.swz[0] = fsrc->Register.SwizzleX;
421 src.swz[1] = fsrc->Register.SwizzleY;
422 src.swz[2] = fsrc->Register.SwizzleZ;
423 src.swz[3] = fsrc->Register.SwizzleW;
424 return src;
425 }
426
427 static INLINE struct nvfx_reg
428 tgsi_dst(struct nvfx_fpc *fpc, const struct tgsi_full_dst_register *fdst) {
429 switch (fdst->Register.File) {
430 case TGSI_FILE_OUTPUT:
431 return fpc->r_result[fdst->Register.Index];
432 case TGSI_FILE_TEMPORARY:
433 return fpc->r_temp[fdst->Register.Index];
434 case TGSI_FILE_NULL:
435 return nvfx_reg(NVFXSR_NONE, 0);
436 default:
437 NOUVEAU_ERR("bad dst file %d\n", fdst->Register.File);
438 return nvfx_reg(NVFXSR_NONE, 0);
439 }
440 }
441
442 static INLINE int
443 tgsi_mask(uint tgsi)
444 {
445 int mask = 0;
446
447 if (tgsi & TGSI_WRITEMASK_X) mask |= NVFX_FP_MASK_X;
448 if (tgsi & TGSI_WRITEMASK_Y) mask |= NVFX_FP_MASK_Y;
449 if (tgsi & TGSI_WRITEMASK_Z) mask |= NVFX_FP_MASK_Z;
450 if (tgsi & TGSI_WRITEMASK_W) mask |= NVFX_FP_MASK_W;
451 return mask;
452 }
453
454 static boolean
455 nvfx_fragprog_parse_instruction(struct nvfx_context* nvfx, struct nvfx_fpc *fpc,
456 const struct tgsi_full_instruction *finst)
457 {
458 const struct nvfx_src none = nvfx_src(nvfx_reg(NVFXSR_NONE, 0));
459 struct nvfx_insn insn;
460 struct nvfx_src src[3], tmp;
461 struct nvfx_reg dst;
462 int mask, sat, unit = 0;
463 int ai = -1, ci = -1, ii = -1;
464 int i;
465
466 if (finst->Instruction.Opcode == TGSI_OPCODE_END)
467 return TRUE;
468
469 for (i = 0; i < finst->Instruction.NumSrcRegs; i++) {
470 const struct tgsi_full_src_register *fsrc;
471
472 fsrc = &finst->Src[i];
473 if (fsrc->Register.File == TGSI_FILE_TEMPORARY) {
474 src[i] = tgsi_src(fpc, fsrc);
475 }
476 }
477
478 for (i = 0; i < finst->Instruction.NumSrcRegs; i++) {
479 const struct tgsi_full_src_register *fsrc;
480
481 fsrc = &finst->Src[i];
482
483 switch (fsrc->Register.File) {
484 case TGSI_FILE_INPUT:
485 if (ai == -1 || ai == fsrc->Register.Index) {
486 ai = fsrc->Register.Index;
487 src[i] = tgsi_src(fpc, fsrc);
488 } else {
489 src[i] = nvfx_src(temp(fpc));
490 nvfx_fp_emit(fpc, arith(0, MOV, src[i].reg, NVFX_FP_MASK_ALL, tgsi_src(fpc, fsrc), none, none));
491 }
492 break;
493 case TGSI_FILE_CONSTANT:
494 if ((ci == -1 && ii == -1) ||
495 ci == fsrc->Register.Index) {
496 ci = fsrc->Register.Index;
497 src[i] = tgsi_src(fpc, fsrc);
498 } else {
499 src[i] = nvfx_src(temp(fpc));
500 nvfx_fp_emit(fpc, arith(0, MOV, src[i].reg, NVFX_FP_MASK_ALL, tgsi_src(fpc, fsrc), none, none));
501 }
502 break;
503 case TGSI_FILE_IMMEDIATE:
504 if ((ci == -1 && ii == -1) ||
505 ii == fsrc->Register.Index) {
506 ii = fsrc->Register.Index;
507 src[i] = tgsi_src(fpc, fsrc);
508 } else {
509 src[i] = nvfx_src(temp(fpc));
510 nvfx_fp_emit(fpc, arith(0, MOV, src[i].reg, NVFX_FP_MASK_ALL, tgsi_src(fpc, fsrc), none, none));
511 }
512 break;
513 case TGSI_FILE_TEMPORARY:
514 /* handled above */
515 break;
516 case TGSI_FILE_SAMPLER:
517 unit = fsrc->Register.Index;
518 break;
519 case TGSI_FILE_OUTPUT:
520 break;
521 default:
522 NOUVEAU_ERR("bad src file\n");
523 return FALSE;
524 }
525 }
526
527 dst = tgsi_dst(fpc, &finst->Dst[0]);
528 mask = tgsi_mask(finst->Dst[0].Register.WriteMask);
529 sat = (finst->Instruction.Saturate == TGSI_SAT_ZERO_ONE);
530
531 switch (finst->Instruction.Opcode) {
532 case TGSI_OPCODE_ABS:
533 nvfx_fp_emit(fpc, arith(sat, MOV, dst, mask, abs(src[0]), none, none));
534 break;
535 case TGSI_OPCODE_ADD:
536 nvfx_fp_emit(fpc, arith(sat, ADD, dst, mask, src[0], src[1], none));
537 break;
538 case TGSI_OPCODE_CMP:
539 insn = arith(0, MOV, none.reg, 0xf, src[0], none, none);
540 insn.cc_update = 1;
541 nvfx_fp_emit(fpc, insn);
542
543 insn = arith(sat, MOV, dst, mask, src[2], none, none);
544 insn.cc_test = NVFX_COND_GE;
545 nvfx_fp_emit(fpc, insn);
546
547 insn = arith(sat, MOV, dst, mask, src[1], none, none);
548 insn.cc_test = NVFX_COND_LT;
549 nvfx_fp_emit(fpc, insn);
550 break;
551 case TGSI_OPCODE_COS:
552 nvfx_fp_emit(fpc, arith(sat, COS, dst, mask, src[0], none, none));
553 break;
554 case TGSI_OPCODE_DDX:
555 if (mask & (NVFX_FP_MASK_Z | NVFX_FP_MASK_W)) {
556 tmp = nvfx_src(temp(fpc));
557 nvfx_fp_emit(fpc, arith(sat, DDX, tmp.reg, NVFX_FP_MASK_X | NVFX_FP_MASK_Y, swz(src[0], Z, W, Z, W), none, none));
558 nvfx_fp_emit(fpc, arith(0, MOV, tmp.reg, NVFX_FP_MASK_Z | NVFX_FP_MASK_W, swz(tmp, X, Y, X, Y), none, none));
559 nvfx_fp_emit(fpc, arith(sat, DDX, tmp.reg, NVFX_FP_MASK_X | NVFX_FP_MASK_Y, src[0], none, none));
560 nvfx_fp_emit(fpc, arith(0, MOV, dst, mask, tmp, none, none));
561 } else {
562 nvfx_fp_emit(fpc, arith(sat, DDX, dst, mask, src[0], none, none));
563 }
564 break;
565 case TGSI_OPCODE_DDY:
566 if (mask & (NVFX_FP_MASK_Z | NVFX_FP_MASK_W)) {
567 tmp = nvfx_src(temp(fpc));
568 nvfx_fp_emit(fpc, arith(sat, DDY, tmp.reg, NVFX_FP_MASK_X | NVFX_FP_MASK_Y, swz(src[0], Z, W, Z, W), none, none));
569 nvfx_fp_emit(fpc, arith(0, MOV, tmp.reg, NVFX_FP_MASK_Z | NVFX_FP_MASK_W, swz(tmp, X, Y, X, Y), none, none));
570 nvfx_fp_emit(fpc, arith(sat, DDY, tmp.reg, NVFX_FP_MASK_X | NVFX_FP_MASK_Y, src[0], none, none));
571 nvfx_fp_emit(fpc, arith(0, MOV, dst, mask, tmp, none, none));
572 } else {
573 nvfx_fp_emit(fpc, arith(sat, DDY, dst, mask, src[0], none, none));
574 }
575 break;
576 case TGSI_OPCODE_DP3:
577 nvfx_fp_emit(fpc, arith(sat, DP3, dst, mask, src[0], src[1], none));
578 break;
579 case TGSI_OPCODE_DP4:
580 nvfx_fp_emit(fpc, arith(sat, DP4, dst, mask, src[0], src[1], none));
581 break;
582 case TGSI_OPCODE_DPH:
583 tmp = nvfx_src(temp(fpc));
584 nvfx_fp_emit(fpc, arith(0, DP3, tmp.reg, NVFX_FP_MASK_X, src[0], src[1], none));
585 nvfx_fp_emit(fpc, arith(sat, ADD, dst, mask, swz(tmp, X, X, X, X), swz(src[1], W, W, W, W), none));
586 break;
587 case TGSI_OPCODE_DST:
588 nvfx_fp_emit(fpc, arith(sat, DST, dst, mask, src[0], src[1], none));
589 break;
590 case TGSI_OPCODE_EX2:
591 nvfx_fp_emit(fpc, arith(sat, EX2, dst, mask, src[0], none, none));
592 break;
593 case TGSI_OPCODE_FLR:
594 nvfx_fp_emit(fpc, arith(sat, FLR, dst, mask, src[0], none, none));
595 break;
596 case TGSI_OPCODE_FRC:
597 nvfx_fp_emit(fpc, arith(sat, FRC, dst, mask, src[0], none, none));
598 break;
599 case TGSI_OPCODE_KILP:
600 nvfx_fp_emit(fpc, arith(0, KIL, none.reg, 0, none, none, none));
601 break;
602 case TGSI_OPCODE_KIL:
603 insn = arith(0, MOV, none.reg, NVFX_FP_MASK_ALL, src[0], none, none);
604 insn.cc_update = 1;
605 nvfx_fp_emit(fpc, insn);
606
607 insn = arith(0, KIL, none.reg, 0, none, none, none);
608 insn.cc_test = NVFX_COND_LT;
609 nvfx_fp_emit(fpc, insn);
610 break;
611 case TGSI_OPCODE_LG2:
612 nvfx_fp_emit(fpc, arith(sat, LG2, dst, mask, src[0], none, none));
613 break;
614 // case TGSI_OPCODE_LIT:
615 case TGSI_OPCODE_LRP:
616 if(!nvfx->is_nv4x)
617 nvfx_fp_emit(fpc, arith(sat, LRP_NV30, dst, mask, src[0], src[1], src[2]));
618 else {
619 tmp = nvfx_src(temp(fpc));
620 nvfx_fp_emit(fpc, arith(0, MAD, tmp.reg, mask, neg(src[0]), src[2], src[2]));
621 nvfx_fp_emit(fpc, arith(sat, MAD, dst, mask, src[0], src[1], tmp));
622 }
623 break;
624 case TGSI_OPCODE_MAD:
625 nvfx_fp_emit(fpc, arith(sat, MAD, dst, mask, src[0], src[1], src[2]));
626 break;
627 case TGSI_OPCODE_MAX:
628 nvfx_fp_emit(fpc, arith(sat, MAX, dst, mask, src[0], src[1], none));
629 break;
630 case TGSI_OPCODE_MIN:
631 nvfx_fp_emit(fpc, arith(sat, MIN, dst, mask, src[0], src[1], none));
632 break;
633 case TGSI_OPCODE_MOV:
634 nvfx_fp_emit(fpc, arith(sat, MOV, dst, mask, src[0], none, none));
635 break;
636 case TGSI_OPCODE_MUL:
637 nvfx_fp_emit(fpc, arith(sat, MUL, dst, mask, src[0], src[1], none));
638 break;
639 case TGSI_OPCODE_NOP:
640 break;
641 case TGSI_OPCODE_POW:
642 if(!nvfx->is_nv4x)
643 nvfx_fp_emit(fpc, arith(sat, POW_NV30, dst, mask, src[0], src[1], none));
644 else {
645 tmp = nvfx_src(temp(fpc));
646 nvfx_fp_emit(fpc, arith(0, LG2, tmp.reg, NVFX_FP_MASK_X, swz(src[0], X, X, X, X), none, none));
647 nvfx_fp_emit(fpc, arith(0, MUL, tmp.reg, NVFX_FP_MASK_X, swz(tmp, X, X, X, X), swz(src[1], X, X, X, X), none));
648 nvfx_fp_emit(fpc, arith(sat, EX2, dst, mask, swz(tmp, X, X, X, X), none, none));
649 }
650 break;
651 case TGSI_OPCODE_RCP:
652 nvfx_fp_emit(fpc, arith(sat, RCP, dst, mask, src[0], none, none));
653 break;
654 case TGSI_OPCODE_RFL:
655 if(!nvfx->is_nv4x)
656 nvfx_fp_emit(fpc, arith(0, RFL_NV30, dst, mask, src[0], src[1], none));
657 else {
658 tmp = nvfx_src(temp(fpc));
659 nvfx_fp_emit(fpc, arith(0, DP3, tmp.reg, NVFX_FP_MASK_X, src[0], src[0], none));
660 nvfx_fp_emit(fpc, arith(0, DP3, tmp.reg, NVFX_FP_MASK_Y, src[0], src[1], none));
661 insn = arith(0, DIV, tmp.reg, NVFX_FP_MASK_Z, swz(tmp, Y, Y, Y, Y), swz(tmp, X, X, X, X), none);
662 insn.scale = NVFX_FP_OP_DST_SCALE_2X;
663 nvfx_fp_emit(fpc, insn);
664 nvfx_fp_emit(fpc, arith(sat, MAD, dst, mask, swz(tmp, Z, Z, Z, Z), src[0], neg(src[1])));
665 }
666 break;
667 case TGSI_OPCODE_RSQ:
668 if(!nvfx->is_nv4x)
669 nvfx_fp_emit(fpc, arith(sat, RSQ_NV30, dst, mask, abs(swz(src[0], X, X, X, X)), none, none));
670 else {
671 tmp = nvfx_src(temp(fpc));
672 insn = arith(0, LG2, tmp.reg, NVFX_FP_MASK_X, abs(swz(src[0], X, X, X, X)), none, none);
673 insn.scale = NVFX_FP_OP_DST_SCALE_INV_2X;
674 nvfx_fp_emit(fpc, insn);
675 nvfx_fp_emit(fpc, arith(sat, EX2, dst, mask, neg(swz(tmp, X, X, X, X)), none, none));
676 }
677 break;
678 case TGSI_OPCODE_SCS:
679 /* avoid overwriting the source */
680 if(src[0].swz[NVFX_SWZ_X] != NVFX_SWZ_X)
681 {
682 if (mask & NVFX_FP_MASK_X)
683 nvfx_fp_emit(fpc, arith(sat, COS, dst, NVFX_FP_MASK_X, swz(src[0], X, X, X, X), none, none));
684 if (mask & NVFX_FP_MASK_Y)
685 nvfx_fp_emit(fpc, arith(sat, SIN, dst, NVFX_FP_MASK_Y, swz(src[0], X, X, X, X), none, none));
686 }
687 else
688 {
689 if (mask & NVFX_FP_MASK_Y)
690 nvfx_fp_emit(fpc, arith(sat, SIN, dst, NVFX_FP_MASK_Y, swz(src[0], X, X, X, X), none, none));
691 if (mask & NVFX_FP_MASK_X)
692 nvfx_fp_emit(fpc, arith(sat, COS, dst, NVFX_FP_MASK_X, swz(src[0], X, X, X, X), none, none));
693 }
694 break;
695 case TGSI_OPCODE_SEQ:
696 nvfx_fp_emit(fpc, arith(sat, SEQ, dst, mask, src[0], src[1], none));
697 break;
698 case TGSI_OPCODE_SFL:
699 nvfx_fp_emit(fpc, arith(sat, SFL, dst, mask, src[0], src[1], none));
700 break;
701 case TGSI_OPCODE_SGE:
702 nvfx_fp_emit(fpc, arith(sat, SGE, dst, mask, src[0], src[1], none));
703 break;
704 case TGSI_OPCODE_SGT:
705 nvfx_fp_emit(fpc, arith(sat, SGT, dst, mask, src[0], src[1], none));
706 break;
707 case TGSI_OPCODE_SIN:
708 nvfx_fp_emit(fpc, arith(sat, SIN, dst, mask, src[0], none, none));
709 break;
710 case TGSI_OPCODE_SLE:
711 nvfx_fp_emit(fpc, arith(sat, SLE, dst, mask, src[0], src[1], none));
712 break;
713 case TGSI_OPCODE_SLT:
714 nvfx_fp_emit(fpc, arith(sat, SLT, dst, mask, src[0], src[1], none));
715 break;
716 case TGSI_OPCODE_SNE:
717 nvfx_fp_emit(fpc, arith(sat, SNE, dst, mask, src[0], src[1], none));
718 break;
719 case TGSI_OPCODE_STR:
720 nvfx_fp_emit(fpc, arith(sat, STR, dst, mask, src[0], src[1], none));
721 break;
722 case TGSI_OPCODE_SUB:
723 nvfx_fp_emit(fpc, arith(sat, ADD, dst, mask, src[0], neg(src[1]), none));
724 break;
725 case TGSI_OPCODE_TEX:
726 nvfx_fp_emit(fpc, tex(sat, TEX, unit, dst, mask, src[0], none, none));
727 break;
728 case TGSI_OPCODE_TXB:
729 nvfx_fp_emit(fpc, tex(sat, TXB, unit, dst, mask, src[0], none, none));
730 break;
731 case TGSI_OPCODE_TXP:
732 nvfx_fp_emit(fpc, tex(sat, TXP, unit, dst, mask, src[0], none, none));
733 break;
734 case TGSI_OPCODE_XPD:
735 tmp = nvfx_src(temp(fpc));
736 nvfx_fp_emit(fpc, arith(0, MUL, tmp.reg, mask, swz(src[0], Z, X, Y, Y), swz(src[1], Y, Z, X, X), none));
737 nvfx_fp_emit(fpc, arith(sat, MAD, dst, (mask & ~NVFX_FP_MASK_W), swz(src[0], Y, Z, X, X), swz(src[1], Z, X, Y, Y), neg(tmp)));
738 break;
739
740 case TGSI_OPCODE_IF:
741 // MOVRC0 R31 (TR0.xyzw), R<src>:
742 // IF (NE.xxxx) ELSE <else> END <end>
743 if(!nvfx->is_nv4x)
744 goto nv3x_cflow;
745 nv40_fp_if(fpc, src[0]);
746 break;
747
748 case TGSI_OPCODE_ELSE:
749 {
750 if(!nvfx->is_nv4x)
751 goto nv3x_cflow;
752 assert(util_dynarray_contains(&fpc->if_stack, unsigned));
753 uint32_t *hw = &fpc->fp->insn[util_dynarray_top(&fpc->if_stack, unsigned)];
754 hw[2] = NV40_FP_OP_OPCODE_IS_BRANCH | fpc->fp->insn_len;
755 break;
756 }
757
758 case TGSI_OPCODE_ENDIF:
759 {
760 if(!nvfx->is_nv4x)
761 goto nv3x_cflow;
762 assert(util_dynarray_contains(&fpc->if_stack, unsigned));
763 uint32_t *hw = &fpc->fp->insn[util_dynarray_pop(&fpc->if_stack, unsigned)];
764 if(!hw[2])
765 hw[2] = NV40_FP_OP_OPCODE_IS_BRANCH | fpc->fp->insn_len;
766 hw[3] = fpc->fp->insn_len;
767 break;
768 }
769
770 case TGSI_OPCODE_BRA:
771 /* This can in limited cases be implemented with an IF with the else and endif labels pointing to the target */
772 /* no state tracker uses this, so don't implement this for now */
773 assert(0);
774 nv40_fp_bra(fpc, finst->Label.Label);
775 break;
776
777 case TGSI_OPCODE_BGNSUB:
778 case TGSI_OPCODE_ENDSUB:
779 /* nothing to do here */
780 break;
781
782 case TGSI_OPCODE_CAL:
783 if(!nvfx->is_nv4x)
784 goto nv3x_cflow;
785 nv40_fp_cal(fpc, finst->Label.Label);
786 break;
787
788 case TGSI_OPCODE_RET:
789 if(!nvfx->is_nv4x)
790 goto nv3x_cflow;
791 nv40_fp_ret(fpc);
792 break;
793
794 case TGSI_OPCODE_BGNLOOP:
795 if(!nvfx->is_nv4x)
796 goto nv3x_cflow;
797 /* TODO: we should support using two nested REPs to allow a > 255 iteration count */
798 nv40_fp_rep(fpc, 255, finst->Label.Label);
799 break;
800
801 case TGSI_OPCODE_ENDLOOP:
802 break;
803
804 case TGSI_OPCODE_BRK:
805 if(!nvfx->is_nv4x)
806 goto nv3x_cflow;
807 nv40_fp_brk(fpc);
808 break;
809
810 case TGSI_OPCODE_CONT:
811 {
812 static int warned = 0;
813 if(!warned) {
814 NOUVEAU_ERR("Sorry, the continue keyword is not implemented: ignoring it.\n");
815 warned = 1;
816 }
817 break;
818 }
819
820 default:
821 NOUVEAU_ERR("invalid opcode %d\n", finst->Instruction.Opcode);
822 return FALSE;
823 }
824
825 out:
826 release_temps(fpc);
827 return TRUE;
828 nv3x_cflow:
829 {
830 static int warned = 0;
831 if(!warned) {
832 NOUVEAU_ERR(
833 "Sorry, control flow instructions are not supported in hardware on nv3x: ignoring them\n"
834 "If rendering is incorrect, try to disable GLSL support in the application.\n");
835 warned = 1;
836 }
837 }
838 goto out;
839 }
840
841 static boolean
842 nvfx_fragprog_parse_decl_output(struct nvfx_context* nvfx, struct nvfx_fpc *fpc,
843 const struct tgsi_full_declaration *fdec)
844 {
845 unsigned idx = fdec->Range.First;
846 unsigned hw;
847
848 switch (fdec->Semantic.Name) {
849 case TGSI_SEMANTIC_POSITION:
850 hw = 1;
851 break;
852 case TGSI_SEMANTIC_COLOR:
853 hw = ~0;
854 switch (fdec->Semantic.Index) {
855 case 0: hw = 0; break;
856 case 1: hw = 2; break;
857 case 2: hw = 3; break;
858 case 3: hw = 4; break;
859 }
860 if(hw > ((nvfx->is_nv4x) ? 4 : 2)) {
861 NOUVEAU_ERR("bad rcol index\n");
862 return FALSE;
863 }
864 break;
865 default:
866 NOUVEAU_ERR("bad output semantic\n");
867 return FALSE;
868 }
869
870 fpc->r_result[idx] = nvfx_reg(NVFXSR_OUTPUT, hw);
871 fpc->r_temps |= (1 << hw);
872 return TRUE;
873 }
874
875 static boolean
876 nvfx_fragprog_prepare(struct nvfx_context* nvfx, struct nvfx_fpc *fpc)
877 {
878 struct tgsi_parse_context p;
879 int high_temp = -1, i;
880 struct util_semantic_set set;
881
882 fpc->fp->num_slots = util_semantic_set_from_program_file(&set, fpc->fp->pipe.tokens, TGSI_FILE_INPUT);
883 if(fpc->fp->num_slots > 8)
884 return FALSE;
885 util_semantic_layout_from_set(fpc->fp->slot_to_generic, &set, 0, 8);
886 util_semantic_table_from_layout(fpc->generic_to_slot, fpc->fp->slot_to_generic, 0, 8);
887
888 memset(fpc->fp->slot_to_fp_input, 0xff, sizeof(fpc->fp->slot_to_fp_input));
889
890 tgsi_parse_init(&p, fpc->fp->pipe.tokens);
891 while (!tgsi_parse_end_of_tokens(&p)) {
892 const union tgsi_full_token *tok = &p.FullToken;
893
894 tgsi_parse_token(&p);
895 switch(tok->Token.Type) {
896 case TGSI_TOKEN_TYPE_DECLARATION:
897 {
898 const struct tgsi_full_declaration *fdec;
899 fdec = &p.FullToken.FullDeclaration;
900 switch (fdec->Declaration.File) {
901 case TGSI_FILE_OUTPUT:
902 if (!nvfx_fragprog_parse_decl_output(nvfx, fpc, fdec))
903 goto out_err;
904 break;
905 case TGSI_FILE_TEMPORARY:
906 if (fdec->Range.Last > high_temp) {
907 high_temp =
908 fdec->Range.Last;
909 }
910 break;
911 default:
912 break;
913 }
914 }
915 break;
916 case TGSI_TOKEN_TYPE_IMMEDIATE:
917 {
918 struct tgsi_full_immediate *imm;
919 float vals[4];
920
921 imm = &p.FullToken.FullImmediate;
922 assert(imm->Immediate.DataType == TGSI_IMM_FLOAT32);
923 assert(fpc->nr_imm < MAX_IMM);
924
925 vals[0] = imm->u[0].Float;
926 vals[1] = imm->u[1].Float;
927 vals[2] = imm->u[2].Float;
928 vals[3] = imm->u[3].Float;
929 fpc->imm[fpc->nr_imm++] = constant(fpc, -1, vals);
930 }
931 break;
932 default:
933 break;
934 }
935 }
936 tgsi_parse_free(&p);
937
938 if (++high_temp) {
939 fpc->r_temp = CALLOC(high_temp, sizeof(struct nvfx_reg));
940 for (i = 0; i < high_temp; i++)
941 fpc->r_temp[i] = temp(fpc);
942 fpc->r_temps_discard = 0;
943 }
944
945 return TRUE;
946
947 out_err:
948 if (fpc->r_temp)
949 FREE(fpc->r_temp);
950 tgsi_parse_free(&p);
951 return FALSE;
952 }
953
954 DEBUG_GET_ONCE_BOOL_OPTION(nvfx_dump_fp, "NVFX_DUMP_FP", FALSE)
955
956 static void
957 nvfx_fragprog_translate(struct nvfx_context *nvfx,
958 struct nvfx_fragment_program *fp)
959 {
960 struct tgsi_parse_context parse;
961 struct nvfx_fpc *fpc = NULL;
962 struct util_dynarray insns;
963
964 fpc = CALLOC(1, sizeof(struct nvfx_fpc));
965 if (!fpc)
966 return;
967 fpc->fp = fp;
968 fpc->num_regs = 2;
969
970 if (!nvfx_fragprog_prepare(nvfx, fpc)) {
971 FREE(fpc);
972 return;
973 }
974
975 tgsi_parse_init(&parse, fp->pipe.tokens);
976
977 util_dynarray_init(&insns);
978 while (!tgsi_parse_end_of_tokens(&parse)) {
979 tgsi_parse_token(&parse);
980
981 switch (parse.FullToken.Token.Type) {
982 case TGSI_TOKEN_TYPE_INSTRUCTION:
983 {
984 const struct tgsi_full_instruction *finst;
985
986 util_dynarray_append(&insns, unsigned, fp->insn_len);
987 finst = &parse.FullToken.FullInstruction;
988 if (!nvfx_fragprog_parse_instruction(nvfx, fpc, finst))
989 goto out_err;
990 }
991 break;
992 default:
993 break;
994 }
995 }
996 util_dynarray_append(&insns, unsigned, fp->insn_len);
997
998 for(unsigned i = 0; i < fpc->label_relocs.size; i += sizeof(struct nvfx_label_relocation))
999 {
1000 struct nvfx_label_relocation* label_reloc = (struct nvfx_label_relocation*)((char*)fpc->label_relocs.data + i);
1001 fp->insn[label_reloc->location] |= ((unsigned*)insns.data)[label_reloc->target];
1002 }
1003 util_dynarray_fini(&insns);
1004
1005 if(!nvfx->is_nv4x)
1006 fp->fp_control |= (fpc->num_regs-1)/2;
1007 else
1008 fp->fp_control |= fpc->num_regs << NV40TCL_FP_CONTROL_TEMP_COUNT_SHIFT;
1009
1010 /* Terminate final instruction */
1011 if(fp->insn)
1012 fp->insn[fpc->inst_offset] |= 0x00000001;
1013
1014 /* Append NOP + END instruction for branches to the end of the program */
1015 fpc->inst_offset = fp->insn_len;
1016 grow_insns(fpc, 4);
1017 fp->insn[fpc->inst_offset + 0] = 0x00000001;
1018 fp->insn[fpc->inst_offset + 1] = 0x00000000;
1019 fp->insn[fpc->inst_offset + 2] = 0x00000000;
1020 fp->insn[fpc->inst_offset + 3] = 0x00000000;
1021
1022 if(debug_get_option_nvfx_dump_fp())
1023 {
1024 debug_printf("\n");
1025 tgsi_dump(fp->pipe.tokens, 0);
1026
1027 debug_printf("\n%s fragment program:\n", nvfx->is_nv4x ? "nv4x" : "nv3x");
1028 for (unsigned i = 0; i < fp->insn_len; i += 4)
1029 debug_printf("%3u: %08x %08x %08x %08x\n", i >> 2, fp->insn[i], fp->insn[i + 1], fp->insn[i + 2], fp->insn[i + 3]);
1030 debug_printf("\n");
1031 }
1032
1033 fp->translated = TRUE;
1034 out_err:
1035 tgsi_parse_free(&parse);
1036 if (fpc->r_temp)
1037 FREE(fpc->r_temp);
1038 util_dynarray_fini(&fpc->if_stack);
1039 util_dynarray_fini(&fpc->label_relocs);
1040 //util_dynarray_fini(&fpc->loop_stack);
1041 FREE(fpc);
1042 }
1043
1044 static inline void
1045 nvfx_fp_memcpy(void* dst, const void* src, size_t len)
1046 {
1047 #ifndef WORDS_BIGENDIAN
1048 memcpy(dst, src, len);
1049 #else
1050 size_t i;
1051 for(i = 0; i < len; i += 4) {
1052 uint32_t v = (uint32_t*)((char*)src + i);
1053 *(uint32_t*)((char*)dst + i) = (v >> 16) | (v << 16);
1054 }
1055 #endif
1056 }
1057
1058 void
1059 nvfx_fragprog_validate(struct nvfx_context *nvfx)
1060 {
1061 struct nouveau_channel* chan = nvfx->screen->base.channel;
1062 struct nvfx_fragment_program *fp = nvfx->fragprog;
1063 int update = 0;
1064
1065 if (!fp->translated)
1066 {
1067 const int min_size = 4096;
1068
1069 nvfx_fragprog_translate(nvfx, fp);
1070 if (!fp->translated) {
1071 static unsigned dummy[8] = {1, 0, 0, 0, 1, 0, 0, 0};
1072 static int warned = 0;
1073 if(!warned)
1074 {
1075 fprintf(stderr, "nvfx: failed to translate fragment program!\n");
1076 warned = 1;
1077 }
1078
1079 /* use dummy program: we cannot fail here */
1080 fp->translated = TRUE;
1081 fp->insn = malloc(sizeof(dummy));
1082 memcpy(fp->insn, dummy, sizeof(dummy));
1083 fp->insn_len = sizeof(dummy) / sizeof(dummy[0]);
1084 }
1085 update = TRUE;
1086
1087 fp->prog_size = (fp->insn_len * 4 + 63) & ~63;
1088
1089 if(fp->prog_size >= min_size)
1090 fp->progs_per_bo = 1;
1091 else
1092 fp->progs_per_bo = min_size / fp->prog_size;
1093 fp->bo_prog_idx = fp->progs_per_bo - 1;
1094 }
1095
1096 /* we must update constants even on "just" fragprog changes, because
1097 we don't check whether the current constant buffer matches the latest
1098 one bound to this fragment program */
1099 if (nvfx->dirty & (NVFX_NEW_FRAGCONST | NVFX_NEW_FRAGPROG))
1100 update = TRUE;
1101
1102 struct nvfx_vertex_program* vp = nvfx->render_mode == HW ? nvfx->vertprog : nvfx->swtnl.vertprog;
1103 if (fp->last_vp_id != vp->id) {
1104 char* vp_sem_table = vp->generic_to_fp_input;
1105 unsigned char* fp_semantics = fp->slot_to_generic;
1106 unsigned diff = 0;
1107 fp->last_vp_id = nvfx->vertprog->id;
1108 unsigned char* cur_slots = fp->slot_to_fp_input;
1109 for(unsigned i = 0; i < fp->num_slots; ++i) {
1110 unsigned char slot_mask = vp_sem_table[fp_semantics[i]];
1111 diff |= (slot_mask >> 4) & (slot_mask ^ cur_slots[i]);
1112 }
1113
1114 if(diff)
1115 {
1116 for(unsigned i = 0; i < fp->num_slots; ++i) {
1117 /* if 0xff, then this will write to the dummy value at fp->last_layout_mask[0] */
1118 fp->slot_to_fp_input[i] = vp_sem_table[fp_semantics[i]] & 0xf;
1119 //printf("fp: GENERIC[%i] from fpreg %i\n", fp_semantics[i], fp->slot_to_fp_input[i]);
1120 }
1121
1122 fp->progs_left_with_obsolete_slot_assignments = fp->progs;
1123 update = TRUE;
1124 }
1125 }
1126
1127 // last_sprite_coord_enable
1128 unsigned sprite_coord_enable = nvfx->rasterizer->pipe.point_quad_rasterization * nvfx->rasterizer->pipe.sprite_coord_enable;
1129 if(fp->last_sprite_coord_enable != sprite_coord_enable)
1130 {
1131 unsigned texcoord_mask = vp->texcoord_ouput_mask;
1132 fp->last_sprite_coord_enable = sprite_coord_enable;
1133 fp->point_sprite_control = 0;
1134 for(unsigned i = 0; i < fp->num_slots; ++i) {
1135 if((1 << fp->slot_to_generic[i]) & sprite_coord_enable)
1136 {
1137 unsigned fpin = fp->slot_to_fp_input[i];
1138 //printf("sprite: slot %i generic %i had texcoord %i\n", i, fp->slot_to_generic[i], fpin - NVFX_FP_OP_INPUT_SRC_TC0);
1139 if(fpin >= 0x0f)
1140 {
1141 unsigned tc = __builtin_ctz(~texcoord_mask);
1142 texcoord_mask |= (1 << tc);
1143 fp->slot_to_fp_input[i] = fpin = NVFX_FP_OP_INPUT_SRC_TC(tc);
1144
1145 fp->progs_left_with_obsolete_slot_assignments = fp->progs;
1146 update = TRUE;
1147 }
1148 //printf("sprite: slot %i texcoord %i\n", i, fpin - NVFX_FP_OP_INPUT_SRC_TC0);
1149 fp->point_sprite_control |= (1 << (fpin - NVFX_FP_OP_INPUT_SRC_TC0 + 8));
1150 }
1151 else
1152 {
1153 unsigned fpin = fp->slot_to_fp_input[i];
1154 if(!(vp->texcoord_ouput_mask & (1 << (fpin - NVFX_FP_OP_INPUT_SRC_TC0))))
1155 {
1156 fp->slot_to_fp_input[i] = 0x0f;
1157
1158 fp->progs_left_with_obsolete_slot_assignments = fp->progs;
1159 update = TRUE;
1160 }
1161 }
1162 }
1163 }
1164
1165 if(update) {
1166 ++fp->bo_prog_idx;
1167 if(fp->bo_prog_idx >= fp->progs_per_bo)
1168 {
1169 if(fp->fpbo && !nouveau_bo_busy(fp->fpbo->next->bo, NOUVEAU_BO_WR))
1170 {
1171 fp->fpbo = fp->fpbo->next;
1172 }
1173 else
1174 {
1175 struct nvfx_fragment_program_bo* fpbo = os_malloc_aligned(sizeof(struct nvfx_fragment_program) + (fp->prog_size + 8) * fp->progs_per_bo, 16);
1176 fpbo->slots = (unsigned char*)&fpbo->insn[(fp->prog_size) * fp->progs_per_bo];
1177 memset(fpbo->slots, 0, 8 * fp->progs_per_bo);
1178 if(fp->fpbo)
1179 {
1180 fpbo->next = fp->fpbo->next;
1181 fp->fpbo->next = fpbo;
1182 }
1183 else
1184 fpbo->next = fpbo;
1185 fp->fpbo = fpbo;
1186 fpbo->bo = 0;
1187 fp->progs += fp->progs_per_bo;
1188 fp->progs_left_with_obsolete_slot_assignments += fp->progs_per_bo;
1189 nouveau_bo_new(nvfx->screen->base.device, NOUVEAU_BO_VRAM | NOUVEAU_BO_MAP, 64, fp->prog_size * fp->progs_per_bo, &fpbo->bo);
1190 nouveau_bo_map(fpbo->bo, NOUVEAU_BO_NOSYNC);
1191
1192 uint8_t* map = fpbo->bo->map;
1193 uint8_t* buf = (uint8_t*)fpbo->insn;
1194 for(unsigned i = 0; i < fp->progs_per_bo; ++i)
1195 {
1196 memcpy(buf, fp->insn, fp->insn_len * 4);
1197 nvfx_fp_memcpy(map, fp->insn, fp->insn_len * 4);
1198 map += fp->prog_size;
1199 buf += fp->prog_size;
1200 }
1201 }
1202 fp->bo_prog_idx = 0;
1203 }
1204
1205 int offset = fp->bo_prog_idx * fp->prog_size;
1206 uint32_t* fpmap = (uint32_t*)((char*)fp->fpbo->bo->map + offset);
1207
1208 if(nvfx->constbuf[PIPE_SHADER_FRAGMENT]) {
1209 struct pipe_resource* constbuf = nvfx->constbuf[PIPE_SHADER_FRAGMENT];
1210 uint32_t* map = (uint32_t*)nvfx_buffer(constbuf)->data;
1211 uint32_t* fpmap = (uint32_t*)((char*)fp->fpbo->bo->map + offset);
1212 uint32_t* buf = (uint32_t*)((char*)fp->fpbo->insn + offset);
1213 int i;
1214 for (i = 0; i < fp->nr_consts; ++i) {
1215 unsigned off = fp->consts[i].offset;
1216 unsigned idx = fp->consts[i].index * 4;
1217
1218 /* TODO: is checking a good idea? */
1219 if(memcmp(&buf[off], &map[idx], 4 * sizeof(uint32_t))) {
1220 memcpy(&buf[off], &map[idx], 4 * sizeof(uint32_t));
1221 nvfx_fp_memcpy(&fpmap[off], &map[idx], 4 * sizeof(uint32_t));
1222 }
1223 }
1224 }
1225
1226 if(fp->progs_left_with_obsolete_slot_assignments) {
1227 unsigned char* fpbo_slots = &fp->fpbo->slots[fp->bo_prog_idx * 8];
1228 for(unsigned i = 0; i < fp->num_slots; ++i) {
1229 unsigned value = fp->slot_to_fp_input[i];;
1230 if(value != fpbo_slots[i]) {
1231 unsigned* p = (unsigned*)fp->slot_relocations[i].data;
1232 unsigned* pend = (unsigned*)((char*)fp->slot_relocations[i].data + fp->slot_relocations[i].size);
1233 for(; p != pend; ++p) {
1234 unsigned off = *p;
1235 unsigned dw = fp->insn[off];
1236 dw = (dw & ~NVFX_FP_OP_INPUT_SRC_MASK) | (value << NVFX_FP_OP_INPUT_SRC_SHIFT);
1237 nvfx_fp_memcpy(&fpmap[*p], &dw, sizeof(dw));
1238 }
1239 fpbo_slots[i] = value;
1240 }
1241 }
1242 --fp->progs_left_with_obsolete_slot_assignments;
1243 }
1244 }
1245
1246 if(update || (nvfx->dirty & NVFX_NEW_FRAGPROG)) {
1247 int offset = fp->bo_prog_idx * fp->prog_size;
1248 MARK_RING(chan, 8, 1);
1249 OUT_RING(chan, RING_3D(NV34TCL_FP_ACTIVE_PROGRAM, 1));
1250 OUT_RELOC(chan, fp->fpbo->bo, offset, NOUVEAU_BO_VRAM |
1251 NOUVEAU_BO_GART | NOUVEAU_BO_RD | NOUVEAU_BO_LOW |
1252 NOUVEAU_BO_OR, NV34TCL_FP_ACTIVE_PROGRAM_DMA0,
1253 NV34TCL_FP_ACTIVE_PROGRAM_DMA1);
1254 OUT_RING(chan, RING_3D(NV34TCL_FP_CONTROL, 1));
1255 OUT_RING(chan, fp->fp_control);
1256 if(!nvfx->is_nv4x) {
1257 OUT_RING(chan, RING_3D(NV34TCL_FP_REG_CONTROL, 1));
1258 OUT_RING(chan, (1<<16)|0x4);
1259 OUT_RING(chan, RING_3D(NV34TCL_TX_UNITS_ENABLE, 1));
1260 OUT_RING(chan, fp->samplers);
1261 }
1262 }
1263
1264 if(nvfx->dirty & (NVFX_NEW_FRAGPROG | NVFX_NEW_SPRITE))
1265 {
1266 WAIT_RING(chan, 2);
1267 OUT_RING(chan, RING_3D(NV34TCL_POINT_SPRITE, 1));
1268 OUT_RING(chan, fp->point_sprite_control | nvfx->rasterizer->pipe.point_quad_rasterization);
1269 }
1270 }
1271
1272 void
1273 nvfx_fragprog_relocate(struct nvfx_context *nvfx)
1274 {
1275 struct nouveau_channel* chan = nvfx->screen->base.channel;
1276 struct nvfx_fragment_program *fp = nvfx->fragprog;
1277 struct nouveau_bo* bo = fp->fpbo->bo;
1278 int offset = fp->bo_prog_idx * fp->prog_size;
1279 unsigned fp_flags = NOUVEAU_BO_VRAM | NOUVEAU_BO_RD; // TODO: GART?
1280 fp_flags |= NOUVEAU_BO_DUMMY;
1281 MARK_RING(chan, 2, 2);
1282 OUT_RELOC(chan, bo, RING_3D(NV34TCL_FP_ACTIVE_PROGRAM, 1), fp_flags, 0, 0);
1283 OUT_RELOC(chan, bo, offset, fp_flags | NOUVEAU_BO_LOW |
1284 NOUVEAU_BO_OR, NV34TCL_FP_ACTIVE_PROGRAM_DMA0,
1285 NV34TCL_FP_ACTIVE_PROGRAM_DMA1);
1286 }
1287
1288 void
1289 nvfx_fragprog_destroy(struct nvfx_context *nvfx,
1290 struct nvfx_fragment_program *fp)
1291 {
1292 unsigned i;
1293 struct nvfx_fragment_program_bo* fpbo = fp->fpbo;
1294 if(fpbo)
1295 {
1296 do
1297 {
1298 struct nvfx_fragment_program_bo* next = fpbo->next;
1299 nouveau_bo_unmap(fpbo->bo);
1300 nouveau_bo_ref(0, &fpbo->bo);
1301 free(fpbo);
1302 fpbo = next;
1303 }
1304 while(fpbo != fp->fpbo);
1305 }
1306
1307 for(i = 0; i < 8; ++i)
1308 util_dynarray_fini(&fp->slot_relocations[i]);
1309
1310 if (fp->insn_len)
1311 FREE(fp->insn);
1312 }