i965g: update brw_defines.h from classic driver
[mesa.git] / src / gallium / drivers / i965 / brw_disasm.c
1 /*
2 * Copyright © 2008 Keith Packard
3 *
4 * Permission to use, copy, modify, distribute, and sell this software and its
5 * documentation for any purpose is hereby granted without fee, provided that
6 * the above copyright notice appear in all copies and that both that copyright
7 * notice and this permission notice appear in supporting documentation, and
8 * that the name of the copyright holders not be used in advertising or
9 * publicity pertaining to distribution of the software without specific,
10 * written prior permission. The copyright holders make no representations
11 * about the suitability of this software for any purpose. It is provided "as
12 * is" without express or implied warranty.
13 *
14 * THE COPYRIGHT HOLDERS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
15 * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
16 * EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY SPECIAL, INDIRECT OR
17 * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
18 * DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
19 * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
20 * OF THIS SOFTWARE.
21 */
22
23 #include <stdio.h>
24 #include <stdlib.h>
25 #include <string.h>
26 #include <unistd.h>
27 #include <stdarg.h>
28
29 #include "brw_disasm.h"
30 #include "brw_structs.h"
31 #include "brw_reg.h"
32 #include "brw_defines.h"
33
34 struct {
35 char *name;
36 int nsrc;
37 int ndst;
38 } opcode[128] = {
39 [BRW_OPCODE_MOV] = { .name = "mov", .nsrc = 1, .ndst = 1 },
40 [BRW_OPCODE_FRC] = { .name = "frc", .nsrc = 1, .ndst = 1 },
41 [BRW_OPCODE_RNDU] = { .name = "rndu", .nsrc = 1, .ndst = 1 },
42 [BRW_OPCODE_RNDD] = { .name = "rndd", .nsrc = 1, .ndst = 1 },
43 [BRW_OPCODE_RNDE] = { .name = "rnde", .nsrc = 1, .ndst = 1 },
44 [BRW_OPCODE_RNDZ] = { .name = "rndz", .nsrc = 1, .ndst = 1 },
45 [BRW_OPCODE_NOT] = { .name = "not", .nsrc = 1, .ndst = 1 },
46 [BRW_OPCODE_LZD] = { .name = "lzd", .nsrc = 1, .ndst = 1 },
47
48 [BRW_OPCODE_MUL] = { .name = "mul", .nsrc = 2, .ndst = 1 },
49 [BRW_OPCODE_MAC] = { .name = "mac", .nsrc = 2, .ndst = 1 },
50 [BRW_OPCODE_MACH] = { .name = "mach", .nsrc = 2, .ndst = 1 },
51 [BRW_OPCODE_LINE] = { .name = "line", .nsrc = 2, .ndst = 1 },
52 [BRW_OPCODE_PLN] = { .name = "pln", .nsrc = 2, .ndst = 1 },
53 [BRW_OPCODE_SAD2] = { .name = "sad2", .nsrc = 2, .ndst = 1 },
54 [BRW_OPCODE_SADA2] = { .name = "sada2", .nsrc = 2, .ndst = 1 },
55 [BRW_OPCODE_DP4] = { .name = "dp4", .nsrc = 2, .ndst = 1 },
56 [BRW_OPCODE_DPH] = { .name = "dph", .nsrc = 2, .ndst = 1 },
57 [BRW_OPCODE_DP3] = { .name = "dp3", .nsrc = 2, .ndst = 1 },
58 [BRW_OPCODE_DP2] = { .name = "dp2", .nsrc = 2, .ndst = 1 },
59 [BRW_OPCODE_MATH] = { .name = "math", .nsrc = 2, .ndst = 1 },
60
61 [BRW_OPCODE_AVG] = { .name = "avg", .nsrc = 2, .ndst = 1 },
62 [BRW_OPCODE_ADD] = { .name = "add", .nsrc = 2, .ndst = 1 },
63 [BRW_OPCODE_SEL] = { .name = "sel", .nsrc = 2, .ndst = 1 },
64 [BRW_OPCODE_AND] = { .name = "and", .nsrc = 2, .ndst = 1 },
65 [BRW_OPCODE_OR] = { .name = "or", .nsrc = 2, .ndst = 1 },
66 [BRW_OPCODE_XOR] = { .name = "xor", .nsrc = 2, .ndst = 1 },
67 [BRW_OPCODE_SHR] = { .name = "shr", .nsrc = 2, .ndst = 1 },
68 [BRW_OPCODE_SHL] = { .name = "shl", .nsrc = 2, .ndst = 1 },
69 [BRW_OPCODE_ASR] = { .name = "asr", .nsrc = 2, .ndst = 1 },
70 [BRW_OPCODE_CMP] = { .name = "cmp", .nsrc = 2, .ndst = 1 },
71 [BRW_OPCODE_CMPN] = { .name = "cmpn", .nsrc = 2, .ndst = 1 },
72
73 [BRW_OPCODE_SEND] = { .name = "send", .nsrc = 1, .ndst = 1 },
74 [BRW_OPCODE_SENDC] = { .name = "sendc", .nsrc = 1, .ndst = 1 },
75 [BRW_OPCODE_NOP] = { .name = "nop", .nsrc = 0, .ndst = 0 },
76 [BRW_OPCODE_JMPI] = { .name = "jmpi", .nsrc = 1, .ndst = 0 },
77 [BRW_OPCODE_IF] = { .name = "if", .nsrc = 2, .ndst = 0 },
78 [BRW_OPCODE_IFF] = { .name = "iff", .nsrc = 2, .ndst = 1 },
79 [BRW_OPCODE_WHILE] = { .name = "while", .nsrc = 2, .ndst = 0 },
80 [BRW_OPCODE_ELSE] = { .name = "else", .nsrc = 2, .ndst = 0 },
81 [BRW_OPCODE_BREAK] = { .name = "break", .nsrc = 2, .ndst = 0 },
82 [BRW_OPCODE_CONTINUE] = { .name = "cont", .nsrc = 1, .ndst = 0 },
83 [BRW_OPCODE_HALT] = { .name = "halt", .nsrc = 1, .ndst = 0 },
84 [BRW_OPCODE_MSAVE] = { .name = "msave", .nsrc = 1, .ndst = 1 },
85 [BRW_OPCODE_PUSH] = { .name = "push", .nsrc = 1, .ndst = 1 },
86 [BRW_OPCODE_MRESTORE] = { .name = "mrest", .nsrc = 1, .ndst = 1 },
87 [BRW_OPCODE_POP] = { .name = "pop", .nsrc = 2, .ndst = 0 },
88 [BRW_OPCODE_WAIT] = { .name = "wait", .nsrc = 1, .ndst = 0 },
89 [BRW_OPCODE_DO] = { .name = "do", .nsrc = 0, .ndst = 0 },
90 [BRW_OPCODE_ENDIF] = { .name = "endif", .nsrc = 2, .ndst = 0 },
91 };
92
93 char *conditional_modifier[16] = {
94 [BRW_CONDITIONAL_NONE] = "",
95 [BRW_CONDITIONAL_Z] = ".e",
96 [BRW_CONDITIONAL_NZ] = ".ne",
97 [BRW_CONDITIONAL_G] = ".g",
98 [BRW_CONDITIONAL_GE] = ".ge",
99 [BRW_CONDITIONAL_L] = ".l",
100 [BRW_CONDITIONAL_LE] = ".le",
101 [BRW_CONDITIONAL_R] = ".r",
102 [BRW_CONDITIONAL_O] = ".o",
103 [BRW_CONDITIONAL_U] = ".u",
104 };
105
106 char *negate[2] = {
107 [0] = "",
108 [1] = "-",
109 };
110
111 char *_abs[2] = {
112 [0] = "",
113 [1] = "(abs)",
114 };
115
116 char *vert_stride[16] = {
117 [0] = "0",
118 [1] = "1",
119 [2] = "2",
120 [3] = "4",
121 [4] = "8",
122 [5] = "16",
123 [6] = "32",
124 [15] = "VxH",
125 };
126
127 char *width[8] = {
128 [0] = "1",
129 [1] = "2",
130 [2] = "4",
131 [3] = "8",
132 [4] = "16",
133 };
134
135 char *horiz_stride[4] = {
136 [0] = "0",
137 [1] = "1",
138 [2] = "2",
139 [3] = "4"
140 };
141
142 char *chan_sel[4] = {
143 [0] = "x",
144 [1] = "y",
145 [2] = "z",
146 [3] = "w",
147 };
148
149 char *dest_condmod[16] = {
150 };
151
152 char *debug_ctrl[2] = {
153 [0] = "",
154 [1] = ".breakpoint"
155 };
156
157 char *saturate[2] = {
158 [0] = "",
159 [1] = ".sat"
160 };
161
162 char *accwr[2] = {
163 [0] = "",
164 [1] = "AccWrEnable"
165 };
166
167 char *wectrl[2] = {
168 [0] = "WE_normal",
169 [1] = "WE_all"
170 };
171
172 char *exec_size[8] = {
173 [0] = "1",
174 [1] = "2",
175 [2] = "4",
176 [3] = "8",
177 [4] = "16",
178 [5] = "32"
179 };
180
181 char *pred_inv[2] = {
182 [0] = "+",
183 [1] = "-"
184 };
185
186 char *pred_ctrl_align16[16] = {
187 [1] = "",
188 [2] = ".x",
189 [3] = ".y",
190 [4] = ".z",
191 [5] = ".w",
192 [6] = ".any4h",
193 [7] = ".all4h",
194 };
195
196 char *pred_ctrl_align1[16] = {
197 [1] = "",
198 [2] = ".anyv",
199 [3] = ".allv",
200 [4] = ".any2h",
201 [5] = ".all2h",
202 [6] = ".any4h",
203 [7] = ".all4h",
204 [8] = ".any8h",
205 [9] = ".all8h",
206 [10] = ".any16h",
207 [11] = ".all16h",
208 };
209
210 char *thread_ctrl[4] = {
211 [0] = "",
212 [2] = "switch"
213 };
214
215 char *compr_ctrl[4] = {
216 [0] = "",
217 [1] = "sechalf",
218 [2] = "compr",
219 [3] = "compr4",
220 };
221
222 char *dep_ctrl[4] = {
223 [0] = "",
224 [1] = "NoDDClr",
225 [2] = "NoDDChk",
226 [3] = "NoDDClr,NoDDChk",
227 };
228
229 char *mask_ctrl[4] = {
230 [0] = "",
231 [1] = "nomask",
232 };
233
234 char *access_mode[2] = {
235 [0] = "align1",
236 [1] = "align16",
237 };
238
239 char *reg_encoding[8] = {
240 [0] = "UD",
241 [1] = "D",
242 [2] = "UW",
243 [3] = "W",
244 [4] = "UB",
245 [5] = "B",
246 [7] = "F"
247 };
248
249 int reg_type_size[8] = {
250 [0] = 4,
251 [1] = 4,
252 [2] = 2,
253 [3] = 2,
254 [4] = 1,
255 [5] = 1,
256 [7] = 4
257 };
258
259 char *imm_encoding[8] = {
260 [0] = "UD",
261 [1] = "D",
262 [2] = "UW",
263 [3] = "W",
264 [5] = "VF",
265 [6] = "V",
266 [7] = "F"
267 };
268
269 char *reg_file[4] = {
270 [0] = "A",
271 [1] = "g",
272 [2] = "m",
273 [3] = "imm",
274 };
275
276 char *writemask[16] = {
277 [0x0] = ".",
278 [0x1] = ".x",
279 [0x2] = ".y",
280 [0x3] = ".xy",
281 [0x4] = ".z",
282 [0x5] = ".xz",
283 [0x6] = ".yz",
284 [0x7] = ".xyz",
285 [0x8] = ".w",
286 [0x9] = ".xw",
287 [0xa] = ".yw",
288 [0xb] = ".xyw",
289 [0xc] = ".zw",
290 [0xd] = ".xzw",
291 [0xe] = ".yzw",
292 [0xf] = "",
293 };
294
295 char *end_of_thread[2] = {
296 [0] = "",
297 [1] = "EOT"
298 };
299
300 char *target_function[16] = {
301 [BRW_MESSAGE_TARGET_NULL] = "null",
302 [BRW_MESSAGE_TARGET_MATH] = "math",
303 [BRW_MESSAGE_TARGET_SAMPLER] = "sampler",
304 [BRW_MESSAGE_TARGET_GATEWAY] = "gateway",
305 [BRW_MESSAGE_TARGET_DATAPORT_READ] = "read",
306 [BRW_MESSAGE_TARGET_DATAPORT_WRITE] = "write",
307 [BRW_MESSAGE_TARGET_URB] = "urb",
308 [BRW_MESSAGE_TARGET_THREAD_SPAWNER] = "thread_spawner"
309 };
310
311 char *math_function[16] = {
312 [BRW_MATH_FUNCTION_INV] = "inv",
313 [BRW_MATH_FUNCTION_LOG] = "log",
314 [BRW_MATH_FUNCTION_EXP] = "exp",
315 [BRW_MATH_FUNCTION_SQRT] = "sqrt",
316 [BRW_MATH_FUNCTION_RSQ] = "rsq",
317 [BRW_MATH_FUNCTION_SIN] = "sin",
318 [BRW_MATH_FUNCTION_COS] = "cos",
319 [BRW_MATH_FUNCTION_SINCOS] = "sincos",
320 [BRW_MATH_FUNCTION_TAN] = "tan",
321 [BRW_MATH_FUNCTION_POW] = "pow",
322 [BRW_MATH_FUNCTION_INT_DIV_QUOTIENT_AND_REMAINDER] = "intdivmod",
323 [BRW_MATH_FUNCTION_INT_DIV_QUOTIENT] = "intmod",
324 [BRW_MATH_FUNCTION_INT_DIV_REMAINDER] = "intdiv",
325 };
326
327 char *math_saturate[2] = {
328 [0] = "",
329 [1] = "sat"
330 };
331
332 char *math_signed[2] = {
333 [0] = "",
334 [1] = "signed"
335 };
336
337 char *math_scalar[2] = {
338 [0] = "",
339 [1] = "scalar"
340 };
341
342 char *math_precision[2] = {
343 [0] = "",
344 [1] = "partial_precision"
345 };
346
347 char *urb_opcode[2] = {
348 [0] = "urb_write",
349 [1] = "ff_sync",
350 };
351
352 char *urb_swizzle[4] = {
353 [BRW_URB_SWIZZLE_NONE] = "",
354 [BRW_URB_SWIZZLE_INTERLEAVE] = "interleave",
355 [BRW_URB_SWIZZLE_TRANSPOSE] = "transpose",
356 };
357
358 char *urb_allocate[2] = {
359 [0] = "",
360 [1] = "allocate"
361 };
362
363 char *urb_used[2] = {
364 [0] = "",
365 [1] = "used"
366 };
367
368 char *urb_complete[2] = {
369 [0] = "",
370 [1] = "complete"
371 };
372
373 char *sampler_target_format[4] = {
374 [0] = "F",
375 [2] = "UD",
376 [3] = "D"
377 };
378
379
380 static int column;
381
382 static int string (FILE *file, char *string)
383 {
384 fputs (string, file);
385 column += strlen (string);
386 return 0;
387 }
388
389 static int format (FILE *f, char *format, ...)
390 {
391 char buf[1024];
392 va_list args;
393 va_start (args, format);
394
395 vsnprintf (buf, sizeof (buf) - 1, format, args);
396 va_end (args);
397 string (f, buf);
398 return 0;
399 }
400
401 static int newline (FILE *f)
402 {
403 putc ('\n', f);
404 column = 0;
405 return 0;
406 }
407
408 static int pad (FILE *f, int c)
409 {
410 do
411 string (f, " ");
412 while (column < c);
413 return 0;
414 }
415
416 static int control (FILE *file, char *name, char *ctrl[], GLuint id, int *space)
417 {
418 if (!ctrl[id]) {
419 fprintf (file, "*** invalid %s value %d ",
420 name, id);
421 return 1;
422 }
423 if (ctrl[id][0])
424 {
425 if (space && *space)
426 string (file, " ");
427 string (file, ctrl[id]);
428 if (space)
429 *space = 1;
430 }
431 return 0;
432 }
433
434 static int print_opcode (FILE *file, int id)
435 {
436 if (!opcode[id].name) {
437 format (file, "*** invalid opcode value %d ", id);
438 return 1;
439 }
440 string (file, opcode[id].name);
441 return 0;
442 }
443
444 static int reg (FILE *file, GLuint _reg_file, GLuint _reg_nr)
445 {
446 int err = 0;
447
448 /* Clear the Compr4 instruction compression bit. */
449 if (_reg_file == BRW_MESSAGE_REGISTER_FILE)
450 _reg_nr &= ~(1 << 7);
451
452 if (_reg_file == BRW_ARCHITECTURE_REGISTER_FILE) {
453 switch (_reg_nr & 0xf0) {
454 case BRW_ARF_NULL:
455 string (file, "null");
456 return -1;
457 case BRW_ARF_ADDRESS:
458 format (file, "a%d", _reg_nr & 0x0f);
459 break;
460 case BRW_ARF_ACCUMULATOR:
461 format (file, "acc%d", _reg_nr & 0x0f);
462 break;
463 case BRW_ARF_FLAG:
464 format (file, "f%d", _reg_nr & 0x0f);
465 break;
466 case BRW_ARF_MASK:
467 format (file, "mask%d", _reg_nr & 0x0f);
468 break;
469 case BRW_ARF_MASK_STACK:
470 format (file, "msd%d", _reg_nr & 0x0f);
471 break;
472 case BRW_ARF_STATE:
473 format (file, "sr%d", _reg_nr & 0x0f);
474 break;
475 case BRW_ARF_CONTROL:
476 format (file, "cr%d", _reg_nr & 0x0f);
477 break;
478 case BRW_ARF_NOTIFICATION_COUNT:
479 format (file, "n%d", _reg_nr & 0x0f);
480 break;
481 case BRW_ARF_IP:
482 string (file, "ip");
483 return -1;
484 break;
485 default:
486 format (file, "ARF%d", _reg_nr);
487 break;
488 }
489 } else {
490 err |= control (file, "src reg file", reg_file, _reg_file, NULL);
491 format (file, "%d", _reg_nr);
492 }
493 return err;
494 }
495
496 static int dest (FILE *file, struct brw_instruction *inst)
497 {
498 int err = 0;
499
500 if (inst->header.access_mode == BRW_ALIGN_1)
501 {
502 if (inst->bits1.da1.dest_address_mode == BRW_ADDRESS_DIRECT)
503 {
504 err |= reg (file, inst->bits1.da1.dest_reg_file, inst->bits1.da1.dest_reg_nr);
505 if (err == -1)
506 return 0;
507 if (inst->bits1.da1.dest_subreg_nr)
508 format (file, ".%d", inst->bits1.da1.dest_subreg_nr /
509 reg_type_size[inst->bits1.da1.dest_reg_type]);
510 format (file, "<%d>", inst->bits1.da1.dest_horiz_stride);
511 err |= control (file, "dest reg encoding", reg_encoding, inst->bits1.da1.dest_reg_type, NULL);
512 }
513 else
514 {
515 string (file, "g[a0");
516 if (inst->bits1.ia1.dest_subreg_nr)
517 format (file, ".%d", inst->bits1.ia1.dest_subreg_nr /
518 reg_type_size[inst->bits1.ia1.dest_reg_type]);
519 if (inst->bits1.ia1.dest_indirect_offset)
520 format (file, " %d", inst->bits1.ia1.dest_indirect_offset);
521 string (file, "]");
522 format (file, "<%d>", inst->bits1.ia1.dest_horiz_stride);
523 err |= control (file, "dest reg encoding", reg_encoding, inst->bits1.ia1.dest_reg_type, NULL);
524 }
525 }
526 else
527 {
528 if (inst->bits1.da16.dest_address_mode == BRW_ADDRESS_DIRECT)
529 {
530 err |= reg (file, inst->bits1.da16.dest_reg_file, inst->bits1.da16.dest_reg_nr);
531 if (err == -1)
532 return 0;
533 if (inst->bits1.da16.dest_subreg_nr)
534 format (file, ".%d", inst->bits1.da16.dest_subreg_nr /
535 reg_type_size[inst->bits1.da16.dest_reg_type]);
536 string (file, "<1>");
537 err |= control (file, "writemask", writemask, inst->bits1.da16.dest_writemask, NULL);
538 err |= control (file, "dest reg encoding", reg_encoding, inst->bits1.da16.dest_reg_type, NULL);
539 }
540 else
541 {
542 err = 1;
543 string (file, "Indirect align16 address mode not supported");
544 }
545 }
546
547 return 0;
548 }
549
550 static int src_align1_region (FILE *file,
551 GLuint _vert_stride, GLuint _width, GLuint _horiz_stride)
552 {
553 int err = 0;
554 string (file, "<");
555 err |= control (file, "vert stride", vert_stride, _vert_stride, NULL);
556 string (file, ",");
557 err |= control (file, "width", width, _width, NULL);
558 string (file, ",");
559 err |= control (file, "horiz_stride", horiz_stride, _horiz_stride, NULL);
560 string (file, ">");
561 return err;
562 }
563
564 static int src_da1 (FILE *file, GLuint type, GLuint _reg_file,
565 GLuint _vert_stride, GLuint _width, GLuint _horiz_stride,
566 GLuint reg_num, GLuint sub_reg_num, GLuint __abs, GLuint _negate)
567 {
568 int err = 0;
569 err |= control (file, "negate", negate, _negate, NULL);
570 err |= control (file, "abs", _abs, __abs, NULL);
571
572 err |= reg (file, _reg_file, reg_num);
573 if (err == -1)
574 return 0;
575 if (sub_reg_num)
576 format (file, ".%d", sub_reg_num / reg_type_size[type]); /* use formal style like spec */
577 src_align1_region (file, _vert_stride, _width, _horiz_stride);
578 err |= control (file, "src reg encoding", reg_encoding, type, NULL);
579 return err;
580 }
581
582 static int src_ia1 (FILE *file,
583 GLuint type,
584 GLuint _reg_file,
585 GLint _addr_imm,
586 GLuint _addr_subreg_nr,
587 GLuint _negate,
588 GLuint __abs,
589 GLuint _addr_mode,
590 GLuint _horiz_stride,
591 GLuint _width,
592 GLuint _vert_stride)
593 {
594 int err = 0;
595 err |= control (file, "negate", negate, _negate, NULL);
596 err |= control (file, "abs", _abs, __abs, NULL);
597
598 string (file, "g[a0");
599 if (_addr_subreg_nr)
600 format (file, ".%d", _addr_subreg_nr);
601 if (_addr_imm)
602 format (file, " %d", _addr_imm);
603 string (file, "]");
604 src_align1_region (file, _vert_stride, _width, _horiz_stride);
605 err |= control (file, "src reg encoding", reg_encoding, type, NULL);
606 return err;
607 }
608
609 static int src_da16 (FILE *file,
610 GLuint _reg_type,
611 GLuint _reg_file,
612 GLuint _vert_stride,
613 GLuint _reg_nr,
614 GLuint _subreg_nr,
615 GLuint __abs,
616 GLuint _negate,
617 GLuint swz_x,
618 GLuint swz_y,
619 GLuint swz_z,
620 GLuint swz_w)
621 {
622 int err = 0;
623 err |= control (file, "negate", negate, _negate, NULL);
624 err |= control (file, "abs", _abs, __abs, NULL);
625
626 err |= reg (file, _reg_file, _reg_nr);
627 if (err == -1)
628 return 0;
629 if (_subreg_nr)
630 /* bit4 for subreg number byte addressing. Make this same meaning as
631 in da1 case, so output looks consistent. */
632 format (file, ".%d", 16 / reg_type_size[_reg_type]);
633 string (file, "<");
634 err |= control (file, "vert stride", vert_stride, _vert_stride, NULL);
635 string (file, ",4,1>");
636 /*
637 * Three kinds of swizzle display:
638 * identity - nothing printed
639 * 1->all - print the single channel
640 * 1->1 - print the mapping
641 */
642 if (swz_x == BRW_CHANNEL_X &&
643 swz_y == BRW_CHANNEL_Y &&
644 swz_z == BRW_CHANNEL_Z &&
645 swz_w == BRW_CHANNEL_W)
646 {
647 ;
648 }
649 else if (swz_x == swz_y && swz_x == swz_z && swz_x == swz_w)
650 {
651 string (file, ".");
652 err |= control (file, "channel select", chan_sel, swz_x, NULL);
653 }
654 else
655 {
656 string (file, ".");
657 err |= control (file, "channel select", chan_sel, swz_x, NULL);
658 err |= control (file, "channel select", chan_sel, swz_y, NULL);
659 err |= control (file, "channel select", chan_sel, swz_z, NULL);
660 err |= control (file, "channel select", chan_sel, swz_w, NULL);
661 }
662 err |= control (file, "src da16 reg type", reg_encoding, _reg_type, NULL);
663 return err;
664 }
665
666
667 static int imm (FILE *file, GLuint type, struct brw_instruction *inst) {
668 switch (type) {
669 case BRW_REGISTER_TYPE_UD:
670 format (file, "0x%08xUD", inst->bits3.ud);
671 break;
672 case BRW_REGISTER_TYPE_D:
673 format (file, "%dD", inst->bits3.d);
674 break;
675 case BRW_REGISTER_TYPE_UW:
676 format (file, "0x%04xUW", (uint16_t) inst->bits3.ud);
677 break;
678 case BRW_REGISTER_TYPE_W:
679 format (file, "%dW", (int16_t) inst->bits3.d);
680 break;
681 case BRW_REGISTER_TYPE_UB:
682 format (file, "0x%02xUB", (int8_t) inst->bits3.ud);
683 break;
684 case BRW_REGISTER_TYPE_VF:
685 format (file, "Vector Float");
686 break;
687 case BRW_REGISTER_TYPE_V:
688 format (file, "0x%08xV", inst->bits3.ud);
689 break;
690 case BRW_REGISTER_TYPE_F:
691 format (file, "%-gF", inst->bits3.f);
692 }
693 return 0;
694 }
695
696 static int src0 (FILE *file, struct brw_instruction *inst)
697 {
698 if (inst->bits1.da1.src0_reg_file == BRW_IMMEDIATE_VALUE)
699 return imm (file, inst->bits1.da1.src0_reg_type,
700 inst);
701 else if (inst->header.access_mode == BRW_ALIGN_1)
702 {
703 if (inst->bits2.da1.src0_address_mode == BRW_ADDRESS_DIRECT)
704 {
705 return src_da1 (file,
706 inst->bits1.da1.src0_reg_type,
707 inst->bits1.da1.src0_reg_file,
708 inst->bits2.da1.src0_vert_stride,
709 inst->bits2.da1.src0_width,
710 inst->bits2.da1.src0_horiz_stride,
711 inst->bits2.da1.src0_reg_nr,
712 inst->bits2.da1.src0_subreg_nr,
713 inst->bits2.da1.src0_abs,
714 inst->bits2.da1.src0_negate);
715 }
716 else
717 {
718 return src_ia1 (file,
719 inst->bits1.ia1.src0_reg_type,
720 inst->bits1.ia1.src0_reg_file,
721 inst->bits2.ia1.src0_indirect_offset,
722 inst->bits2.ia1.src0_subreg_nr,
723 inst->bits2.ia1.src0_negate,
724 inst->bits2.ia1.src0_abs,
725 inst->bits2.ia1.src0_address_mode,
726 inst->bits2.ia1.src0_horiz_stride,
727 inst->bits2.ia1.src0_width,
728 inst->bits2.ia1.src0_vert_stride);
729 }
730 }
731 else
732 {
733 if (inst->bits2.da16.src0_address_mode == BRW_ADDRESS_DIRECT)
734 {
735 return src_da16 (file,
736 inst->bits1.da16.src0_reg_type,
737 inst->bits1.da16.src0_reg_file,
738 inst->bits2.da16.src0_vert_stride,
739 inst->bits2.da16.src0_reg_nr,
740 inst->bits2.da16.src0_subreg_nr,
741 inst->bits2.da16.src0_abs,
742 inst->bits2.da16.src0_negate,
743 inst->bits2.da16.src0_swz_x,
744 inst->bits2.da16.src0_swz_y,
745 inst->bits2.da16.src0_swz_z,
746 inst->bits2.da16.src0_swz_w);
747 }
748 else
749 {
750 string (file, "Indirect align16 address mode not supported");
751 return 1;
752 }
753 }
754 }
755
756 static int src1 (FILE *file, struct brw_instruction *inst)
757 {
758 if (inst->bits1.da1.src1_reg_file == BRW_IMMEDIATE_VALUE)
759 return imm (file, inst->bits1.da1.src1_reg_type,
760 inst);
761 else if (inst->header.access_mode == BRW_ALIGN_1)
762 {
763 if (inst->bits3.da1.src1_address_mode == BRW_ADDRESS_DIRECT)
764 {
765 return src_da1 (file,
766 inst->bits1.da1.src1_reg_type,
767 inst->bits1.da1.src1_reg_file,
768 inst->bits3.da1.src1_vert_stride,
769 inst->bits3.da1.src1_width,
770 inst->bits3.da1.src1_horiz_stride,
771 inst->bits3.da1.src1_reg_nr,
772 inst->bits3.da1.src1_subreg_nr,
773 inst->bits3.da1.src1_abs,
774 inst->bits3.da1.src1_negate);
775 }
776 else
777 {
778 return src_ia1 (file,
779 inst->bits1.ia1.src1_reg_type,
780 inst->bits1.ia1.src1_reg_file,
781 inst->bits3.ia1.src1_indirect_offset,
782 inst->bits3.ia1.src1_subreg_nr,
783 inst->bits3.ia1.src1_negate,
784 inst->bits3.ia1.src1_abs,
785 inst->bits3.ia1.src1_address_mode,
786 inst->bits3.ia1.src1_horiz_stride,
787 inst->bits3.ia1.src1_width,
788 inst->bits3.ia1.src1_vert_stride);
789 }
790 }
791 else
792 {
793 if (inst->bits3.da16.src1_address_mode == BRW_ADDRESS_DIRECT)
794 {
795 return src_da16 (file,
796 inst->bits1.da16.src1_reg_type,
797 inst->bits1.da16.src1_reg_file,
798 inst->bits3.da16.src1_vert_stride,
799 inst->bits3.da16.src1_reg_nr,
800 inst->bits3.da16.src1_subreg_nr,
801 inst->bits3.da16.src1_abs,
802 inst->bits3.da16.src1_negate,
803 inst->bits3.da16.src1_swz_x,
804 inst->bits3.da16.src1_swz_y,
805 inst->bits3.da16.src1_swz_z,
806 inst->bits3.da16.src1_swz_w);
807 }
808 else
809 {
810 string (file, "Indirect align16 address mode not supported");
811 return 1;
812 }
813 }
814 }
815
816 int brw_disasm_insn (FILE *file, const struct brw_instruction *inst)
817 {
818 int err = 0;
819 int space = 0;
820
821 if (inst->header.predicate_control) {
822 string (file, "(");
823 err |= control (file, "predicate inverse", pred_inv, inst->header.predicate_inverse, NULL);
824 string (file, "f0");
825 if (inst->bits2.da1.flag_reg_nr)
826 format (file, ".%d", inst->bits2.da1.flag_reg_nr);
827 if (inst->header.access_mode == BRW_ALIGN_1)
828 err |= control (file, "predicate control align1", pred_ctrl_align1,
829 inst->header.predicate_control, NULL);
830 else
831 err |= control (file, "predicate control align16", pred_ctrl_align16,
832 inst->header.predicate_control, NULL);
833 string (file, ") ");
834 }
835
836 err |= print_opcode (file, inst->header.opcode);
837 err |= control (file, "saturate", saturate, inst->header.saturate, NULL);
838 err |= control (file, "debug control", debug_ctrl, inst->header.debug_control, NULL);
839
840 if (inst->header.opcode != BRW_OPCODE_SEND)
841 err |= control (file, "conditional modifier", conditional_modifier,
842 inst->header.destreg__conditionalmod, NULL);
843
844 if (inst->header.opcode != BRW_OPCODE_NOP) {
845 string (file, "(");
846 err |= control (file, "execution size", exec_size, inst->header.execution_size, NULL);
847 string (file, ")");
848 }
849
850 if (inst->header.opcode == BRW_OPCODE_SEND)
851 format (file, " %d", inst->header.destreg__conditionalmod);
852
853 if (opcode[inst->header.opcode].ndst > 0) {
854 pad (file, 16);
855 err |= dest (file, inst);
856 }
857 if (opcode[inst->header.opcode].nsrc > 0) {
858 pad (file, 32);
859 err |= src0 (file, inst);
860 }
861 if (opcode[inst->header.opcode].nsrc > 1) {
862 pad (file, 48);
863 err |= src1 (file, inst);
864 }
865
866 if (inst->header.opcode == BRW_OPCODE_SEND) {
867 newline (file);
868 pad (file, 16);
869 space = 0;
870 err |= control (file, "target function", target_function,
871 inst->bits3.generic.msg_target, &space);
872 switch (inst->bits3.generic.msg_target) {
873 case BRW_MESSAGE_TARGET_MATH:
874 err |= control (file, "math function", math_function,
875 inst->bits3.math.function, &space);
876 err |= control (file, "math saturate", math_saturate,
877 inst->bits3.math.saturate, &space);
878 err |= control (file, "math signed", math_signed,
879 inst->bits3.math.int_type, &space);
880 err |= control (file, "math scalar", math_scalar,
881 inst->bits3.math.data_type, &space);
882 err |= control (file, "math precision", math_precision,
883 inst->bits3.math.precision, &space);
884 break;
885 case BRW_MESSAGE_TARGET_SAMPLER:
886 format (file, " (%d, %d, ",
887 inst->bits3.sampler.binding_table_index,
888 inst->bits3.sampler.sampler);
889 err |= control (file, "sampler target format", sampler_target_format,
890 inst->bits3.sampler.return_format, NULL);
891 string (file, ")");
892 break;
893 case BRW_MESSAGE_TARGET_DATAPORT_WRITE:
894 format (file, " (%d, %d, %d, %d)",
895 inst->bits3.dp_write.binding_table_index,
896 (inst->bits3.dp_write.pixel_scoreboard_clear << 3) |
897 inst->bits3.dp_write.msg_control,
898 inst->bits3.dp_write.msg_type,
899 inst->bits3.dp_write.send_commit_msg);
900 break;
901 case BRW_MESSAGE_TARGET_URB:
902 format (file, " %d", inst->bits3.urb.offset);
903 space = 1;
904 err |= control (file, "urb swizzle", urb_swizzle,
905 inst->bits3.urb.swizzle_control, &space);
906 err |= control (file, "urb allocate", urb_allocate,
907 inst->bits3.urb.allocate, &space);
908 err |= control (file, "urb used", urb_used,
909 inst->bits3.urb.used, &space);
910 err |= control (file, "urb complete", urb_complete,
911 inst->bits3.urb.complete, &space);
912 break;
913 case BRW_MESSAGE_TARGET_THREAD_SPAWNER:
914 break;
915 default:
916 format (file, "unsupported target %d", inst->bits3.generic.msg_target);
917 break;
918 }
919 if (space)
920 string (file, " ");
921 format (file, "mlen %d",
922 inst->bits3.generic.msg_length);
923 format (file, " rlen %d",
924 inst->bits3.generic.response_length);
925 }
926 pad (file, 64);
927 if (inst->header.opcode != BRW_OPCODE_NOP) {
928 string (file, "{");
929 space = 1;
930 err |= control(file, "access mode", access_mode, inst->header.access_mode, &space);
931 err |= control (file, "mask control", mask_ctrl, inst->header.mask_control, &space);
932 err |= control (file, "dependency control", dep_ctrl, inst->header.dependency_control, &space);
933 err |= control (file, "compression control", compr_ctrl, inst->header.compression_control, &space);
934 err |= control (file, "thread control", thread_ctrl, inst->header.thread_control, &space);
935 if (inst->header.opcode == BRW_OPCODE_SEND)
936 err |= control (file, "end of thread", end_of_thread,
937 inst->bits3.generic.end_of_thread, &space);
938 if (space)
939 string (file, " ");
940 string (file, "}");
941 }
942 string (file, ";");
943 newline (file);
944 return err;
945 }
946
947
948 int brw_disasm (FILE *file,
949 const struct brw_instruction *inst,
950 unsigned count)
951 {
952 int i, err;
953
954 for (i = 0; i < count; i++) {
955 err = brw_disasm_insn(stderr, &inst[i]);
956 if (err)
957 return err;
958 }
959
960 fprintf(file, "\n");
961 return 0;
962 }
963