fuzzer_pass_outline_functions.h 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  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. #ifndef SOURCE_FUZZ_FUZZER_PASS_OUTLINE_FUNCTIONS_H_
  15. #define SOURCE_FUZZ_FUZZER_PASS_OUTLINE_FUNCTIONS_H_
  16. #include "source/fuzz/fuzzer_pass.h"
  17. namespace spvtools {
  18. namespace fuzz {
  19. // A fuzzer pass for outlining single-entry single-exit regions of a control
  20. // flow graph into their own functions.
  21. class FuzzerPassOutlineFunctions : public FuzzerPass {
  22. public:
  23. FuzzerPassOutlineFunctions(opt::IRContext* ir_context,
  24. TransformationContext* transformation_context,
  25. FuzzerContext* fuzzer_context,
  26. protobufs::TransformationSequence* transformations,
  27. bool ignore_inapplicable_transformations);
  28. void Apply() override;
  29. // Returns a block suitable to be an entry block for a region that can be
  30. // outlined, i.e. a block that is not a loop header and that does not start
  31. // with OpPhi or OpVariable. In particular, it returns:
  32. // - |entry_block| if it is suitable
  33. // - otherwise, a block found by:
  34. // - looking for or creating a new preheader, if |entry_block| is a loop
  35. // header
  36. // - splitting the candidate entry block, if it starts with OpPhi or
  37. // OpVariable.
  38. // Returns nullptr if a suitable block cannot be found following the
  39. // instructions above.
  40. opt::BasicBlock* MaybeGetEntryBlockSuitableForOutlining(
  41. opt::BasicBlock* entry_block);
  42. // Returns:
  43. // - |exit_block| if it is not a merge block
  44. // - the second block obtained by splitting |exit_block|, if |exit_block| is a
  45. // merge block.
  46. // Assumes that |exit_block| is not a continue target.
  47. // The block returned by this function should be suitable to be the exit block
  48. // of a region that can be outlined.
  49. // Returns nullptr if |exit_block| is a merge block and it cannot be split.
  50. opt::BasicBlock* MaybeGetExitBlockSuitableForOutlining(
  51. opt::BasicBlock* exit_block);
  52. };
  53. } // namespace fuzz
  54. } // namespace spvtools
  55. #endif // SOURCE_FUZZ_FUZZER_PASS_OUTLINE_FUNCTIONS_H_