remove_block_reduction_opportunity.cpp 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. // Copyright (c) 2019 Google LLC
  2. //
  3. // Licensed under the Apache License, Version 2.0 (the "License");
  4. // you may not use this file except in compliance with the License.
  5. // You may obtain a copy of the License at
  6. //
  7. // http://www.apache.org/licenses/LICENSE-2.0
  8. //
  9. // Unless required by applicable law or agreed to in writing, software
  10. // distributed under the License is distributed on an "AS IS" BASIS,
  11. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. // See the License for the specific language governing permissions and
  13. // limitations under the License.
  14. #include "source/reduce/remove_block_reduction_opportunity.h"
  15. #include "source/opt/ir_context.h"
  16. namespace spvtools {
  17. namespace reduce {
  18. RemoveBlockReductionOpportunity::RemoveBlockReductionOpportunity(
  19. opt::IRContext* context, opt::Function* function, opt::BasicBlock* block)
  20. : context_(context), function_(function), block_(block) {
  21. // precondition:
  22. assert(block_->begin() != block_->end() &&
  23. context_->get_def_use_mgr()->NumUsers(block_->id()) == 0 &&
  24. "RemoveBlockReductionOpportunity block must have 0 references");
  25. }
  26. bool RemoveBlockReductionOpportunity::PreconditionHolds() {
  27. // Removing other blocks cannot disable this opportunity.
  28. return true;
  29. }
  30. void RemoveBlockReductionOpportunity::Apply() {
  31. // We need an iterator pointing to the block, hence the loop.
  32. for (auto bi = function_->begin(); bi != function_->end(); ++bi) {
  33. if (bi->id() == block_->id()) {
  34. bi.Erase();
  35. context_->InvalidateAnalysesExceptFor(opt::IRContext::kAnalysisNone);
  36. return;
  37. }
  38. }
  39. assert(false &&
  40. "Unreachable: we should have found a block with the desired id.");
  41. }
  42. } // namespace reduce
  43. } // namespace spvtools