ForceFunctionAttrs.h 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. #pragma once
  2. #ifdef __GNUC__
  3. #pragma GCC diagnostic push
  4. #pragma GCC diagnostic ignored "-Wunused-parameter"
  5. #endif
  6. //===-- ForceFunctionAttrs.h - Force function attrs for debugging ---------===//
  7. //
  8. // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
  9. // See https://llvm.org/LICENSE.txt for license information.
  10. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
  11. //
  12. //===----------------------------------------------------------------------===//
  13. /// \file
  14. /// Super simple passes to force specific function attrs from the commandline
  15. /// into the IR for debugging purposes.
  16. //===----------------------------------------------------------------------===//
  17. #ifndef LLVM_TRANSFORMS_IPO_FORCEFUNCTIONATTRS_H
  18. #define LLVM_TRANSFORMS_IPO_FORCEFUNCTIONATTRS_H
  19. #include "llvm/IR/PassManager.h"
  20. namespace llvm {
  21. class Module;
  22. class Pass;
  23. /// Pass which forces specific function attributes into the IR, primarily as
  24. /// a debugging tool.
  25. struct ForceFunctionAttrsPass : PassInfoMixin<ForceFunctionAttrsPass> {
  26. PreservedAnalyses run(Module &M, ModuleAnalysisManager &);
  27. };
  28. /// Create a legacy pass manager instance of a pass to force function attrs.
  29. Pass *createForceFunctionAttrsLegacyPass();
  30. }
  31. #endif // LLVM_TRANSFORMS_IPO_FORCEFUNCTIONATTRS_H
  32. #ifdef __GNUC__
  33. #pragma GCC diagnostic pop
  34. #endif