i965: w/a for gather4 green RG32F
[mesa.git] / src / glsl / ir_print_visitor.cpp
1 /*
2 * Copyright © 2010 Intel Corporation
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21 * DEALINGS IN THE SOFTWARE.
22 */
23
24 #include "ir_print_visitor.h"
25 #include "glsl_types.h"
26 #include "glsl_parser_extras.h"
27 #include "main/macros.h"
28 #include "program/hash_table.h"
29
30 static void print_type(const glsl_type *t);
31
32 void
33 ir_instruction::print(void) const
34 {
35 ir_instruction *deconsted = const_cast<ir_instruction *>(this);
36
37 ir_print_visitor v;
38 deconsted->accept(&v);
39 }
40
41 extern "C" {
42 void
43 _mesa_print_ir(exec_list *instructions,
44 struct _mesa_glsl_parse_state *state)
45 {
46 if (state) {
47 for (unsigned i = 0; i < state->num_user_structures; i++) {
48 const glsl_type *const s = state->user_structures[i];
49
50 printf("(structure (%s) (%s@%p) (%u) (\n",
51 s->name, s->name, (void *) s, s->length);
52
53 for (unsigned j = 0; j < s->length; j++) {
54 printf("\t((");
55 print_type(s->fields.structure[j].type);
56 printf(")(%s))\n", s->fields.structure[j].name);
57 }
58
59 printf(")\n");
60 }
61 }
62
63 printf("(\n");
64 foreach_iter(exec_list_iterator, iter, *instructions) {
65 ir_instruction *ir = (ir_instruction *)iter.get();
66 ir->print();
67 if (ir->ir_type != ir_type_function)
68 printf("\n");
69 }
70 printf("\n)");
71 }
72
73 } /* extern "C" */
74
75 ir_print_visitor::ir_print_visitor()
76 {
77 indentation = 0;
78 printable_names =
79 hash_table_ctor(32, hash_table_pointer_hash, hash_table_pointer_compare);
80 symbols = _mesa_symbol_table_ctor();
81 mem_ctx = ralloc_context(NULL);
82 }
83
84 ir_print_visitor::~ir_print_visitor()
85 {
86 hash_table_dtor(printable_names);
87 _mesa_symbol_table_dtor(symbols);
88 ralloc_free(mem_ctx);
89 }
90
91 void ir_print_visitor::indent(void)
92 {
93 for (int i = 0; i < indentation; i++)
94 printf(" ");
95 }
96
97 const char *
98 ir_print_visitor::unique_name(ir_variable *var)
99 {
100 /* var->name can be NULL in function prototypes when a type is given for a
101 * parameter but no name is given. In that case, just return an empty
102 * string. Don't worry about tracking the generated name in the printable
103 * names hash because this is the only scope where it can ever appear.
104 */
105 if (var->name == NULL) {
106 static unsigned arg = 1;
107 return ralloc_asprintf(this->mem_ctx, "parameter@%u", arg++);
108 }
109
110 /* Do we already have a name for this variable? */
111 const char *name = (const char *) hash_table_find(this->printable_names, var);
112 if (name != NULL)
113 return name;
114
115 /* If there's no conflict, just use the original name */
116 if (_mesa_symbol_table_find_symbol(this->symbols, -1, var->name) == NULL) {
117 name = var->name;
118 } else {
119 static unsigned i = 1;
120 name = ralloc_asprintf(this->mem_ctx, "%s@%u", var->name, ++i);
121 }
122 hash_table_insert(this->printable_names, (void *) name, var);
123 _mesa_symbol_table_add_symbol(this->symbols, -1, name, var);
124 return name;
125 }
126
127 static void
128 print_type(const glsl_type *t)
129 {
130 if (t->base_type == GLSL_TYPE_ARRAY) {
131 printf("(array ");
132 print_type(t->fields.array);
133 printf(" %u)", t->length);
134 } else if ((t->base_type == GLSL_TYPE_STRUCT)
135 && (strncmp("gl_", t->name, 3) != 0)) {
136 printf("%s@%p", t->name, (void *) t);
137 } else {
138 printf("%s", t->name);
139 }
140 }
141
142 void ir_print_visitor::visit(ir_rvalue *ir)
143 {
144 printf("error");
145 }
146
147 void ir_print_visitor::visit(ir_variable *ir)
148 {
149 printf("(declare ");
150
151 const char *const cent = (ir->centroid) ? "centroid " : "";
152 const char *const inv = (ir->invariant) ? "invariant " : "";
153 const char *const mode[] = { "", "uniform ", "shader_in ", "shader_out ",
154 "in ", "out ", "inout ",
155 "const_in ", "sys ", "temporary " };
156 STATIC_ASSERT(ARRAY_SIZE(mode) == ir_var_mode_count);
157 const char *const interp[] = { "", "smooth", "flat", "noperspective" };
158 STATIC_ASSERT(ARRAY_SIZE(interp) == INTERP_QUALIFIER_COUNT);
159
160 printf("(%s%s%s%s) ",
161 cent, inv, mode[ir->mode], interp[ir->interpolation]);
162
163 print_type(ir->type);
164 printf(" %s)", unique_name(ir));
165 }
166
167
168 void ir_print_visitor::visit(ir_function_signature *ir)
169 {
170 _mesa_symbol_table_push_scope(symbols);
171 printf("(signature ");
172 indentation++;
173
174 print_type(ir->return_type);
175 printf("\n");
176 indent();
177
178 printf("(parameters\n");
179 indentation++;
180
181 foreach_iter(exec_list_iterator, iter, ir->parameters) {
182 ir_variable *const inst = (ir_variable *) iter.get();
183
184 indent();
185 inst->accept(this);
186 printf("\n");
187 }
188 indentation--;
189
190 indent();
191 printf(")\n");
192
193 indent();
194
195 printf("(\n");
196 indentation++;
197
198 foreach_iter(exec_list_iterator, iter, ir->body) {
199 ir_instruction *const inst = (ir_instruction *) iter.get();
200
201 indent();
202 inst->accept(this);
203 printf("\n");
204 }
205 indentation--;
206 indent();
207 printf("))\n");
208 indentation--;
209 _mesa_symbol_table_pop_scope(symbols);
210 }
211
212
213 void ir_print_visitor::visit(ir_function *ir)
214 {
215 printf("(function %s\n", ir->name);
216 indentation++;
217 foreach_iter(exec_list_iterator, iter, *ir) {
218 ir_function_signature *const sig = (ir_function_signature *) iter.get();
219 indent();
220 sig->accept(this);
221 printf("\n");
222 }
223 indentation--;
224 indent();
225 printf(")\n\n");
226 }
227
228
229 void ir_print_visitor::visit(ir_expression *ir)
230 {
231 printf("(expression ");
232
233 print_type(ir->type);
234
235 printf(" %s ", ir->operator_string());
236
237 for (unsigned i = 0; i < ir->get_num_operands(); i++) {
238 ir->operands[i]->accept(this);
239 }
240
241 printf(") ");
242 }
243
244
245 void ir_print_visitor::visit(ir_texture *ir)
246 {
247 printf("(%s ", ir->opcode_string());
248
249 print_type(ir->type);
250 printf(" ");
251
252 ir->sampler->accept(this);
253 printf(" ");
254
255 if (ir->op != ir_txs) {
256 ir->coordinate->accept(this);
257
258 printf(" ");
259
260 if (ir->offset != NULL) {
261 ir->offset->accept(this);
262 } else {
263 printf("0");
264 }
265
266 printf(" ");
267 }
268
269 if (ir->op != ir_txf && ir->op != ir_txf_ms && ir->op != ir_txs && ir->op != ir_tg4) {
270 if (ir->projector)
271 ir->projector->accept(this);
272 else
273 printf("1");
274
275 if (ir->shadow_comparitor) {
276 printf(" ");
277 ir->shadow_comparitor->accept(this);
278 } else {
279 printf(" ()");
280 }
281 }
282
283 printf(" ");
284 switch (ir->op)
285 {
286 case ir_tex:
287 case ir_lod:
288 case ir_tg4:
289 break;
290 case ir_txb:
291 ir->lod_info.bias->accept(this);
292 break;
293 case ir_txl:
294 case ir_txf:
295 case ir_txs:
296 ir->lod_info.lod->accept(this);
297 break;
298 case ir_txf_ms:
299 ir->lod_info.sample_index->accept(this);
300 break;
301 case ir_txd:
302 printf("(");
303 ir->lod_info.grad.dPdx->accept(this);
304 printf(" ");
305 ir->lod_info.grad.dPdy->accept(this);
306 printf(")");
307 break;
308 };
309 printf(")");
310 }
311
312
313 void ir_print_visitor::visit(ir_swizzle *ir)
314 {
315 const unsigned swiz[4] = {
316 ir->mask.x,
317 ir->mask.y,
318 ir->mask.z,
319 ir->mask.w,
320 };
321
322 printf("(swiz ");
323 for (unsigned i = 0; i < ir->mask.num_components; i++) {
324 printf("%c", "xyzw"[swiz[i]]);
325 }
326 printf(" ");
327 ir->val->accept(this);
328 printf(")");
329 }
330
331
332 void ir_print_visitor::visit(ir_dereference_variable *ir)
333 {
334 ir_variable *var = ir->variable_referenced();
335 printf("(var_ref %s) ", unique_name(var));
336 }
337
338
339 void ir_print_visitor::visit(ir_dereference_array *ir)
340 {
341 printf("(array_ref ");
342 ir->array->accept(this);
343 ir->array_index->accept(this);
344 printf(") ");
345 }
346
347
348 void ir_print_visitor::visit(ir_dereference_record *ir)
349 {
350 printf("(record_ref ");
351 ir->record->accept(this);
352 printf(" %s) ", ir->field);
353 }
354
355
356 void ir_print_visitor::visit(ir_assignment *ir)
357 {
358 printf("(assign ");
359
360 if (ir->condition)
361 ir->condition->accept(this);
362
363 char mask[5];
364 unsigned j = 0;
365
366 for (unsigned i = 0; i < 4; i++) {
367 if ((ir->write_mask & (1 << i)) != 0) {
368 mask[j] = "xyzw"[i];
369 j++;
370 }
371 }
372 mask[j] = '\0';
373
374 printf(" (%s) ", mask);
375
376 ir->lhs->accept(this);
377
378 printf(" ");
379
380 ir->rhs->accept(this);
381 printf(") ");
382 }
383
384
385 void ir_print_visitor::visit(ir_constant *ir)
386 {
387 printf("(constant ");
388 print_type(ir->type);
389 printf(" (");
390
391 if (ir->type->is_array()) {
392 for (unsigned i = 0; i < ir->type->length; i++)
393 ir->get_array_element(i)->accept(this);
394 } else if (ir->type->is_record()) {
395 ir_constant *value = (ir_constant *) ir->components.get_head();
396 for (unsigned i = 0; i < ir->type->length; i++) {
397 printf("(%s ", ir->type->fields.structure[i].name);
398 value->accept(this);
399 printf(")");
400
401 value = (ir_constant *) value->next;
402 }
403 } else {
404 for (unsigned i = 0; i < ir->type->components(); i++) {
405 if (i != 0)
406 printf(" ");
407 switch (ir->type->base_type) {
408 case GLSL_TYPE_UINT: printf("%u", ir->value.u[i]); break;
409 case GLSL_TYPE_INT: printf("%d", ir->value.i[i]); break;
410 case GLSL_TYPE_FLOAT:
411 if (ir->value.f[i] == 0.0f)
412 /* 0.0 == -0.0, so print with %f to get the proper sign. */
413 printf("%.1f", ir->value.f[i]);
414 else if (abs(ir->value.f[i]) < 0.000001f)
415 printf("%a", ir->value.f[i]);
416 else if (abs(ir->value.f[i]) > 1000000.0f)
417 printf("%e", ir->value.f[i]);
418 else
419 printf("%f", ir->value.f[i]);
420 break;
421 case GLSL_TYPE_BOOL: printf("%d", ir->value.b[i]); break;
422 default: assert(0);
423 }
424 }
425 }
426 printf(")) ");
427 }
428
429
430 void
431 ir_print_visitor::visit(ir_call *ir)
432 {
433 printf("(call %s ", ir->callee_name());
434 if (ir->return_deref)
435 ir->return_deref->accept(this);
436 printf(" (");
437 foreach_iter(exec_list_iterator, iter, *ir) {
438 ir_instruction *const inst = (ir_instruction *) iter.get();
439
440 inst->accept(this);
441 }
442 printf("))\n");
443 }
444
445
446 void
447 ir_print_visitor::visit(ir_return *ir)
448 {
449 printf("(return");
450
451 ir_rvalue *const value = ir->get_value();
452 if (value) {
453 printf(" ");
454 value->accept(this);
455 }
456
457 printf(")");
458 }
459
460
461 void
462 ir_print_visitor::visit(ir_discard *ir)
463 {
464 printf("(discard ");
465
466 if (ir->condition != NULL) {
467 printf(" ");
468 ir->condition->accept(this);
469 }
470
471 printf(")");
472 }
473
474
475 void
476 ir_print_visitor::visit(ir_if *ir)
477 {
478 printf("(if ");
479 ir->condition->accept(this);
480
481 printf("(\n");
482 indentation++;
483
484 foreach_iter(exec_list_iterator, iter, ir->then_instructions) {
485 ir_instruction *const inst = (ir_instruction *) iter.get();
486
487 indent();
488 inst->accept(this);
489 printf("\n");
490 }
491
492 indentation--;
493 indent();
494 printf(")\n");
495
496 indent();
497 if (!ir->else_instructions.is_empty()) {
498 printf("(\n");
499 indentation++;
500
501 foreach_iter(exec_list_iterator, iter, ir->else_instructions) {
502 ir_instruction *const inst = (ir_instruction *) iter.get();
503
504 indent();
505 inst->accept(this);
506 printf("\n");
507 }
508 indentation--;
509 indent();
510 printf("))\n");
511 } else {
512 printf("())\n");
513 }
514 }
515
516
517 void
518 ir_print_visitor::visit(ir_loop *ir)
519 {
520 printf("(loop (");
521 if (ir->counter != NULL)
522 ir->counter->accept(this);
523 printf(") (");
524 if (ir->from != NULL)
525 ir->from->accept(this);
526 printf(") (");
527 if (ir->to != NULL)
528 ir->to->accept(this);
529 printf(") (");
530 if (ir->increment != NULL)
531 ir->increment->accept(this);
532 printf(") (\n");
533 indentation++;
534
535 foreach_iter(exec_list_iterator, iter, ir->body_instructions) {
536 ir_instruction *const inst = (ir_instruction *) iter.get();
537
538 indent();
539 inst->accept(this);
540 printf("\n");
541 }
542 indentation--;
543 indent();
544 printf("))\n");
545 }
546
547
548 void
549 ir_print_visitor::visit(ir_loop_jump *ir)
550 {
551 printf("%s", ir->is_break() ? "break" : "continue");
552 }
553
554 void
555 ir_print_visitor::visit(ir_emit_vertex *ir)
556 {
557 printf("(emit-vertex)");
558 }
559
560 void
561 ir_print_visitor::visit(ir_end_primitive *ir)
562 {
563 printf("(end-primitive)");
564 }