Reg2Mem.h 856 B

123456789101112131415161718192021222324252627
  1. //===- Reg2Mem.h - Convert registers to allocas -----------------*- C++ -*-===//
  2. //
  3. // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
  4. // See https://llvm.org/LICENSE.txt for license information.
  5. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
  6. //
  7. //===----------------------------------------------------------------------===//
  8. //
  9. // This file provides the interface for the RegToMem Pass.
  10. //
  11. //===----------------------------------------------------------------------===//
  12. #ifndef LLVM_TRANSFORMS_SCALAR_REG2MEM_H
  13. #define LLVM_TRANSFORMS_SCALAR_REG2MEM_H
  14. #include "llvm/IR/PassManager.h"
  15. namespace llvm {
  16. class RegToMemPass : public PassInfoMixin<RegToMemPass> {
  17. public:
  18. PreservedAnalyses run(Function &F, FunctionAnalysisManager &AM);
  19. };
  20. } // end namespace llvm
  21. #endif // LLVM_TRANSFORMS_SCALAR_REG2MEM_H