BarrierNoopPass.cpp 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. //===- BarrierNoopPass.cpp - A barrier pass for the pass manager ----------===//
  2. //
  3. // The LLVM Compiler Infrastructure
  4. //
  5. // This file is distributed under the University of Illinois Open Source
  6. // License. See LICENSE.TXT for details.
  7. //
  8. //===----------------------------------------------------------------------===//
  9. //
  10. // NOTE: DO NOT USE THIS IF AVOIDABLE
  11. //
  12. // This pass is a nonce pass intended to allow manipulation of the implicitly
  13. // nesting pass manager. For example, it can be used to cause a CGSCC pass
  14. // manager to be closed prior to running a new collection of function passes.
  15. //
  16. // FIXME: This is a huge HACK. This should be removed when the pass manager's
  17. // nesting is made explicit instead of implicit.
  18. //
  19. //===----------------------------------------------------------------------===//
  20. #include "llvm/Pass.h"
  21. #include "llvm/Transforms/IPO.h"
  22. using namespace llvm;
  23. namespace {
  24. /// \brief A nonce module pass used to place a barrier in a pass manager.
  25. ///
  26. /// There is no mechanism for ending a CGSCC pass manager once one is started.
  27. /// This prevents extension points from having clear deterministic ordering
  28. /// when they are phrased as non-module passes.
  29. class BarrierNoop : public ModulePass {
  30. public:
  31. static char ID; // Pass identification.
  32. BarrierNoop() : ModulePass(ID) {
  33. initializeBarrierNoopPass(*PassRegistry::getPassRegistry());
  34. }
  35. bool runOnModule(Module &M) override { return false; }
  36. };
  37. }
  38. ModulePass *llvm::createBarrierNoopPass() { return new BarrierNoop(); }
  39. char BarrierNoop::ID = 0;
  40. INITIALIZE_PASS(BarrierNoop, "barrier", "A No-Op Barrier Pass",
  41. false, false)