RemoveTree.cpp 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. //
  2. // Copyright (C) 2002-2005 3Dlabs Inc. Ltd.
  3. // Copyright (C) 2013 LunarG, Inc.
  4. //
  5. // All rights reserved.
  6. //
  7. // Redistribution and use in source and binary forms, with or without
  8. // modification, are permitted provided that the following conditions
  9. // are met:
  10. //
  11. // Redistributions of source code must retain the above copyright
  12. // notice, this list of conditions and the following disclaimer.
  13. //
  14. // Redistributions in binary form must reproduce the above
  15. // copyright notice, this list of conditions and the following
  16. // disclaimer in the documentation and/or other materials provided
  17. // with the distribution.
  18. //
  19. // Neither the name of 3Dlabs Inc. Ltd. nor the names of its
  20. // contributors may be used to endorse or promote products derived
  21. // from this software without specific prior written permission.
  22. //
  23. // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  24. // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  25. // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
  26. // FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
  27. // COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
  28. // INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
  29. // BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  30. // LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
  31. // CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  32. // LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
  33. // ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
  34. // POSSIBILITY OF SUCH DAMAGE.
  35. //
  36. #include "../Include/intermediate.h"
  37. #include "RemoveTree.h"
  38. namespace glslang {
  39. //
  40. // Code to recursively delete the intermediate tree.
  41. //
  42. struct TRemoveTraverser : TIntermTraverser {
  43. TRemoveTraverser() : TIntermTraverser(false, false, true, false) {}
  44. virtual void visitSymbol(TIntermSymbol* node)
  45. {
  46. delete node;
  47. }
  48. virtual bool visitBinary(TVisit /* visit*/ , TIntermBinary* node)
  49. {
  50. delete node;
  51. return true;
  52. }
  53. virtual bool visitUnary(TVisit /* visit */, TIntermUnary* node)
  54. {
  55. delete node;
  56. return true;
  57. }
  58. virtual bool visitAggregate(TVisit /* visit*/ , TIntermAggregate* node)
  59. {
  60. delete node;
  61. return true;
  62. }
  63. virtual bool visitSelection(TVisit /* visit*/ , TIntermSelection* node)
  64. {
  65. delete node;
  66. return true;
  67. }
  68. virtual bool visitSwitch(TVisit /* visit*/ , TIntermSwitch* node)
  69. {
  70. delete node;
  71. return true;
  72. }
  73. virtual void visitConstantUnion(TIntermConstantUnion* node)
  74. {
  75. delete node;
  76. }
  77. virtual bool visitLoop(TVisit /* visit*/ , TIntermLoop* node)
  78. {
  79. delete node;
  80. return true;
  81. }
  82. virtual bool visitBranch(TVisit /* visit*/ , TIntermBranch* node)
  83. {
  84. delete node;
  85. return true;
  86. }
  87. };
  88. //
  89. // Entry point.
  90. //
  91. void RemoveAllTreeNodes(TIntermNode* root)
  92. {
  93. TRemoveTraverser it;
  94. root->traverse(&it);
  95. }
  96. } // end namespace glslang