Clone of mesa.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ir_validate.cpp 2.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  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. * \file ir_validate.cpp
  25. *
  26. * Attempts to verify that various invariants of the IR tree are true.
  27. *
  28. * In particular, at the moment it makes sure that no single
  29. * ir_instruction node except for ir_variable appears multiple times
  30. * in the ir tree. ir_variable does appear multiple times: Once as a
  31. * declaration in an exec_list, and multiple times as the endpoint of
  32. * a dereference chain.
  33. */
  34. #include <inttypes.h>
  35. #include "ir.h"
  36. #include "ir_hierarchical_visitor.h"
  37. #include "hash_table.h"
  38. static unsigned int hash_func(const void *key)
  39. {
  40. return (unsigned int)(uintptr_t)key;
  41. }
  42. static int hash_compare_func(const void *key1, const void *key2)
  43. {
  44. return key1 == key2 ? 0 : 1;
  45. }
  46. class ir_validate : public ir_hierarchical_visitor {
  47. public:
  48. ir_validate()
  49. {
  50. this->ht = hash_table_ctor(0, hash_func, hash_compare_func);
  51. this->callback = ir_validate::validate_ir;
  52. this->data = ht;
  53. }
  54. ~ir_validate()
  55. {
  56. hash_table_dtor(this->ht);
  57. }
  58. virtual ir_visitor_status visit(ir_variable *v);
  59. static void validate_ir(ir_instruction *ir, void *data);
  60. struct hash_table *ht;
  61. };
  62. ir_visitor_status
  63. ir_validate::visit(ir_variable *ir)
  64. {
  65. /* An ir_variable is the one thing that can (and will) appear multiple times
  66. * in an IR tree.
  67. */
  68. (void) ir;
  69. return visit_continue;
  70. }
  71. void
  72. ir_validate::validate_ir(ir_instruction *ir, void *data)
  73. {
  74. struct hash_table *ht = (struct hash_table *) data;
  75. if (hash_table_find(ht, ir)) {
  76. printf("Instruction node present twice in ir tree:\n");
  77. ir->print();
  78. printf("\n");
  79. abort();
  80. }
  81. hash_table_insert(ht, ir, ir);
  82. }
  83. void
  84. validate_ir_tree(exec_list *instructions)
  85. {
  86. ir_validate v;
  87. v.run(instructions);
  88. }