tgsi_sanity.c revision 1a3a04d56b01714e4fa19aa7efcdae4b6644af46
1/************************************************************************** 2 * 3 * Copyright 2008 Tungsten Graphics, Inc., Cedar Park, Texas. 4 * All Rights Reserved. 5 * 6 * Permission is hereby granted, free of charge, to any person obtaining a 7 * copy of this software and associated documentation files (the 8 * "Software"), to deal in the Software without restriction, including 9 * without limitation the rights to use, copy, modify, merge, publish, 10 * distribute, sub license, and/or sell copies of the Software, and to 11 * permit persons to whom the Software is furnished to do so, subject to 12 * the following conditions: 13 * 14 * The above copyright notice and this permission notice (including the 15 * next paragraph) shall be included in all copies or substantial portions 16 * of the Software. 17 * 18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS 19 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 20 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. 21 * IN NO EVENT SHALL TUNGSTEN GRAPHICS AND/OR ITS SUPPLIERS BE LIABLE FOR 22 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, 23 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE 24 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 25 * 26 **************************************************************************/ 27 28#include "util/u_debug.h" 29#include "util/u_memory.h" 30#include "util/u_prim.h" 31#include "cso_cache/cso_hash.h" 32#include "tgsi_sanity.h" 33#include "tgsi_info.h" 34#include "tgsi_iterate.h" 35 36 37DEBUG_GET_ONCE_BOOL_OPTION(print_sanity, "TGSI_PRINT_SANITY", TRUE); 38 39 40typedef struct { 41 uint file : 28; 42 /* max 2 dimensions */ 43 uint dimensions : 4; 44 uint indices[2]; 45} scan_register; 46 47struct sanity_check_ctx 48{ 49 struct tgsi_iterate_context iter; 50 struct cso_hash *regs_decl; 51 struct cso_hash *regs_used; 52 struct cso_hash *regs_ind_used; 53 54 uint num_imms; 55 uint num_instructions; 56 uint index_of_END; 57 58 uint errors; 59 uint warnings; 60 uint implied_array_size; 61 62 boolean print; 63}; 64 65static INLINE unsigned 66scan_register_key(const scan_register *reg) 67{ 68 unsigned key = reg->file; 69 key |= (reg->indices[0] << 4); 70 key |= (reg->indices[1] << 18); 71 72 return key; 73} 74 75static void 76fill_scan_register1d(scan_register *reg, 77 uint file, uint index) 78{ 79 reg->file = file; 80 reg->dimensions = 1; 81 reg->indices[0] = index; 82 reg->indices[1] = 0; 83} 84 85static void 86fill_scan_register2d(scan_register *reg, 87 uint file, uint index1, uint index2) 88{ 89 reg->file = file; 90 reg->dimensions = 2; 91 reg->indices[0] = index1; 92 reg->indices[1] = index2; 93} 94 95static void 96scan_register_dst(scan_register *reg, 97 struct tgsi_full_dst_register *dst) 98{ 99 if (dst->Register.Dimension) { 100 /*FIXME: right now we don't support indirect 101 * multidimensional addressing */ 102 fill_scan_register2d(reg, 103 dst->Register.File, 104 dst->Register.Index, 105 dst->Dimension.Index); 106 } else { 107 fill_scan_register1d(reg, 108 dst->Register.File, 109 dst->Register.Index); 110 } 111} 112 113static void 114scan_register_src(scan_register *reg, 115 struct tgsi_full_src_register *src) 116{ 117 if (src->Register.Dimension) { 118 /*FIXME: right now we don't support indirect 119 * multidimensional addressing */ 120 fill_scan_register2d(reg, 121 src->Register.File, 122 src->Register.Index, 123 src->Dimension.Index); 124 } else { 125 fill_scan_register1d(reg, 126 src->Register.File, 127 src->Register.Index); 128 } 129} 130 131static scan_register * 132create_scan_register_src(struct tgsi_full_src_register *src) 133{ 134 scan_register *reg = MALLOC(sizeof(scan_register)); 135 scan_register_src(reg, src); 136 137 return reg; 138} 139 140static scan_register * 141create_scan_register_dst(struct tgsi_full_dst_register *dst) 142{ 143 scan_register *reg = MALLOC(sizeof(scan_register)); 144 scan_register_dst(reg, dst); 145 146 return reg; 147} 148 149static void 150report_error( 151 struct sanity_check_ctx *ctx, 152 const char *format, 153 ... ) 154{ 155 va_list args; 156 157 if (!ctx->print) 158 return; 159 160 debug_printf( "Error : " ); 161 va_start( args, format ); 162 _debug_vprintf( format, args ); 163 va_end( args ); 164 debug_printf( "\n" ); 165 ctx->errors++; 166} 167 168static void 169report_warning( 170 struct sanity_check_ctx *ctx, 171 const char *format, 172 ... ) 173{ 174 va_list args; 175 176 if (!ctx->print) 177 return; 178 179 debug_printf( "Warning: " ); 180 va_start( args, format ); 181 _debug_vprintf( format, args ); 182 va_end( args ); 183 debug_printf( "\n" ); 184 ctx->warnings++; 185} 186 187static boolean 188check_file_name( 189 struct sanity_check_ctx *ctx, 190 uint file ) 191{ 192 if (file <= TGSI_FILE_NULL || file >= TGSI_FILE_COUNT) { 193 report_error( ctx, "(%u): Invalid register file name", file ); 194 return FALSE; 195 } 196 return TRUE; 197} 198 199static boolean 200is_register_declared( 201 struct sanity_check_ctx *ctx, 202 const scan_register *reg) 203{ 204 void *data = cso_hash_find_data_from_template( 205 ctx->regs_decl, scan_register_key(reg), 206 (void*)reg, sizeof(scan_register)); 207 return data ? TRUE : FALSE; 208} 209 210static boolean 211is_any_register_declared( 212 struct sanity_check_ctx *ctx, 213 uint file ) 214{ 215 struct cso_hash_iter iter = 216 cso_hash_first_node(ctx->regs_decl); 217 218 while (!cso_hash_iter_is_null(iter)) { 219 scan_register *reg = (scan_register *)cso_hash_iter_data(iter); 220 if (reg->file == file) 221 return TRUE; 222 iter = cso_hash_iter_next(iter); 223 } 224 225 return FALSE; 226} 227 228static boolean 229is_register_used( 230 struct sanity_check_ctx *ctx, 231 scan_register *reg) 232{ 233 void *data = cso_hash_find_data_from_template( 234 ctx->regs_used, scan_register_key(reg), 235 reg, sizeof(scan_register)); 236 return data ? TRUE : FALSE; 237} 238 239 240static boolean 241is_ind_register_used( 242 struct sanity_check_ctx *ctx, 243 scan_register *reg) 244{ 245 return cso_hash_contains(ctx->regs_ind_used, reg->file); 246} 247 248static const char *file_names[TGSI_FILE_COUNT] = 249{ 250 "NULL", 251 "CONST", 252 "IN", 253 "OUT", 254 "TEMP", 255 "SAMP", 256 "ADDR", 257 "IMM", 258 "PRED", 259 "SV", 260 "IMMX", 261 "TEMPX" 262}; 263 264static boolean 265check_register_usage( 266 struct sanity_check_ctx *ctx, 267 scan_register *reg, 268 const char *name, 269 boolean indirect_access ) 270{ 271 if (!check_file_name( ctx, reg->file )) { 272 FREE(reg); 273 return FALSE; 274 } 275 276 if (indirect_access) { 277 /* Note that 'index' is an offset relative to the value of the 278 * address register. No range checking done here.*/ 279 reg->indices[0] = 0; 280 reg->indices[1] = 0; 281 if (!is_any_register_declared( ctx, reg->file )) 282 report_error( ctx, "%s: Undeclared %s register", file_names[reg->file], name ); 283 if (!is_ind_register_used(ctx, reg)) 284 cso_hash_insert(ctx->regs_ind_used, reg->file, reg); 285 else 286 FREE(reg); 287 } 288 else { 289 if (!is_register_declared( ctx, reg )) { 290 if (reg->dimensions == 2) { 291 report_error( ctx, "%s[%d][%d]: Undeclared %s register", file_names[reg->file], 292 reg->indices[0], reg->indices[1], name ); 293 } 294 else { 295 report_error( ctx, "%s[%d]: Undeclared %s register", file_names[reg->file], 296 reg->indices[0], name ); 297 } 298 } 299 if (!is_register_used( ctx, reg )) 300 cso_hash_insert(ctx->regs_used, scan_register_key(reg), reg); 301 else 302 FREE(reg); 303 } 304 return TRUE; 305} 306 307static boolean 308iter_instruction( 309 struct tgsi_iterate_context *iter, 310 struct tgsi_full_instruction *inst ) 311{ 312 struct sanity_check_ctx *ctx = (struct sanity_check_ctx *) iter; 313 const struct tgsi_opcode_info *info; 314 uint i; 315 316 if (inst->Instruction.Opcode == TGSI_OPCODE_END) { 317 if (ctx->index_of_END != ~0) { 318 report_error( ctx, "Too many END instructions" ); 319 } 320 ctx->index_of_END = ctx->num_instructions; 321 } 322 323 info = tgsi_get_opcode_info( inst->Instruction.Opcode ); 324 if (info == NULL) { 325 report_error( ctx, "(%u): Invalid instruction opcode", inst->Instruction.Opcode ); 326 return TRUE; 327 } 328 329 if (info->num_dst != inst->Instruction.NumDstRegs) { 330 report_error( ctx, "%s: Invalid number of destination operands, should be %u", info->mnemonic, info->num_dst ); 331 } 332 if (info->num_src != inst->Instruction.NumSrcRegs) { 333 report_error( ctx, "%s: Invalid number of source operands, should be %u", info->mnemonic, info->num_src ); 334 } 335 336 /* Check destination and source registers' validity. 337 * Mark the registers as used. 338 */ 339 for (i = 0; i < inst->Instruction.NumDstRegs; i++) { 340 scan_register *reg = create_scan_register_dst(&inst->Dst[i]); 341 check_register_usage( 342 ctx, 343 reg, 344 "destination", 345 FALSE ); 346 if (!inst->Dst[i].Register.WriteMask) { 347 report_error(ctx, "Destination register has empty writemask"); 348 } 349 } 350 for (i = 0; i < inst->Instruction.NumSrcRegs; i++) { 351 scan_register *reg = create_scan_register_src(&inst->Src[i]); 352 check_register_usage( 353 ctx, 354 reg, 355 "source", 356 (boolean)inst->Src[i].Register.Indirect ); 357 if (inst->Src[i].Register.Indirect) { 358 scan_register *ind_reg = MALLOC(sizeof(scan_register)); 359 360 fill_scan_register1d(ind_reg, 361 inst->Src[i].Indirect.File, 362 inst->Src[i].Indirect.Index); 363 check_register_usage( 364 ctx, 365 ind_reg, 366 "indirect", 367 FALSE ); 368 } 369 } 370 371 ctx->num_instructions++; 372 373 return TRUE; 374} 375 376static void 377check_and_declare(struct sanity_check_ctx *ctx, 378 scan_register *reg) 379{ 380 if (is_register_declared( ctx, reg)) 381 report_error( ctx, "%s[%u]: The same register declared more than once", 382 file_names[reg->file], reg->indices[0] ); 383 cso_hash_insert(ctx->regs_decl, 384 scan_register_key(reg), 385 reg); 386} 387 388 389static boolean 390iter_declaration( 391 struct tgsi_iterate_context *iter, 392 struct tgsi_full_declaration *decl ) 393{ 394 struct sanity_check_ctx *ctx = (struct sanity_check_ctx *) iter; 395 uint file; 396 uint i; 397 398 /* No declarations allowed after the first instruction. 399 */ 400 if (ctx->num_instructions > 0) 401 report_error( ctx, "Instruction expected but declaration found" ); 402 403 /* Check registers' validity. 404 * Mark the registers as declared. 405 */ 406 file = decl->Declaration.File; 407 if (!check_file_name( ctx, file )) 408 return TRUE; 409 for (i = decl->Range.First; i <= decl->Range.Last; i++) { 410 /* declared TGSI_FILE_INPUT's for geometry processor 411 * have an implied second dimension */ 412 if (file == TGSI_FILE_INPUT && 413 ctx->iter.processor.Processor == TGSI_PROCESSOR_GEOMETRY) { 414 uint vert; 415 for (vert = 0; vert < ctx->implied_array_size; ++vert) { 416 scan_register *reg = MALLOC(sizeof(scan_register)); 417 fill_scan_register2d(reg, file, i, vert); 418 check_and_declare(ctx, reg); 419 } 420 } else { 421 scan_register *reg = MALLOC(sizeof(scan_register)); 422 if (decl->Declaration.Dimension) { 423 fill_scan_register2d(reg, file, i, decl->Dim.Index2D); 424 } else { 425 fill_scan_register1d(reg, file, i); 426 } 427 check_and_declare(ctx, reg); 428 } 429 } 430 431 return TRUE; 432} 433 434static boolean 435iter_immediate( 436 struct tgsi_iterate_context *iter, 437 struct tgsi_full_immediate *imm ) 438{ 439 struct sanity_check_ctx *ctx = (struct sanity_check_ctx *) iter; 440 scan_register *reg; 441 442 /* No immediates allowed after the first instruction. 443 */ 444 if (ctx->num_instructions > 0) 445 report_error( ctx, "Instruction expected but immediate found" ); 446 447 /* Mark the register as declared. 448 */ 449 reg = MALLOC(sizeof(scan_register)); 450 fill_scan_register1d(reg, TGSI_FILE_IMMEDIATE, ctx->num_imms); 451 cso_hash_insert(ctx->regs_decl, scan_register_key(reg), reg); 452 ctx->num_imms++; 453 454 /* Check data type validity. 455 */ 456 if (imm->Immediate.DataType != TGSI_IMM_FLOAT32 && 457 imm->Immediate.DataType != TGSI_IMM_UINT32 && 458 imm->Immediate.DataType != TGSI_IMM_INT32) { 459 report_error( ctx, "(%u): Invalid immediate data type", imm->Immediate.DataType ); 460 return TRUE; 461 } 462 463 return TRUE; 464} 465 466 467static boolean 468iter_property( 469 struct tgsi_iterate_context *iter, 470 struct tgsi_full_property *prop ) 471{ 472 struct sanity_check_ctx *ctx = (struct sanity_check_ctx *) iter; 473 474 if (iter->processor.Processor == TGSI_PROCESSOR_GEOMETRY && 475 prop->Property.PropertyName == TGSI_PROPERTY_GS_INPUT_PRIM) { 476 ctx->implied_array_size = u_vertices_per_prim(prop->u[0].Data); 477 } 478 return TRUE; 479} 480 481static boolean 482epilog( 483 struct tgsi_iterate_context *iter ) 484{ 485 struct sanity_check_ctx *ctx = (struct sanity_check_ctx *) iter; 486 487 /* There must be an END instruction somewhere. 488 */ 489 if (ctx->index_of_END == ~0) { 490 report_error( ctx, "Missing END instruction" ); 491 } 492 493 /* Check if all declared registers were used. 494 */ 495 { 496 struct cso_hash_iter iter = 497 cso_hash_first_node(ctx->regs_decl); 498 499 while (!cso_hash_iter_is_null(iter)) { 500 scan_register *reg = (scan_register *)cso_hash_iter_data(iter); 501 if (!is_register_used(ctx, reg) && !is_ind_register_used(ctx, reg)) { 502 report_warning( ctx, "%s[%u]: Register never used", 503 file_names[reg->file], reg->indices[0] ); 504 } 505 iter = cso_hash_iter_next(iter); 506 } 507 } 508 509 /* Print totals, if any. 510 */ 511 if (ctx->errors || ctx->warnings) 512 debug_printf( "%u errors, %u warnings\n", ctx->errors, ctx->warnings ); 513 514 return TRUE; 515} 516 517static void 518regs_hash_destroy(struct cso_hash *hash) 519{ 520 struct cso_hash_iter iter = cso_hash_first_node(hash); 521 while (!cso_hash_iter_is_null(iter)) { 522 scan_register *reg = (scan_register *)cso_hash_iter_data(iter); 523 iter = cso_hash_erase(hash, iter); 524 assert(reg->file < TGSI_FILE_COUNT); 525 FREE(reg); 526 } 527 cso_hash_delete(hash); 528} 529 530boolean 531tgsi_sanity_check( 532 const struct tgsi_token *tokens ) 533{ 534 struct sanity_check_ctx ctx; 535 536 ctx.iter.prolog = NULL; 537 ctx.iter.iterate_instruction = iter_instruction; 538 ctx.iter.iterate_declaration = iter_declaration; 539 ctx.iter.iterate_immediate = iter_immediate; 540 ctx.iter.iterate_property = iter_property; 541 ctx.iter.epilog = epilog; 542 543 ctx.regs_decl = cso_hash_create(); 544 ctx.regs_used = cso_hash_create(); 545 ctx.regs_ind_used = cso_hash_create(); 546 547 ctx.num_imms = 0; 548 ctx.num_instructions = 0; 549 ctx.index_of_END = ~0; 550 551 ctx.errors = 0; 552 ctx.warnings = 0; 553 ctx.implied_array_size = 0; 554 ctx.print = debug_get_option_print_sanity(); 555 556 if (!tgsi_iterate_shader( tokens, &ctx.iter )) 557 return FALSE; 558 559 regs_hash_destroy(ctx.regs_decl); 560 regs_hash_destroy(ctx.regs_used); 561 regs_hash_destroy(ctx.regs_ind_used); 562 return ctx.errors == 0; 563} 564