1 //===---- llvm/CodeGen/InterleavedAccess.h ----------------------*- 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 /// \file
10 /// This file contains the declaration of the InterleavedAccessPass class,
11 /// its corresponding pass name is `interleaved-access`.
12 ///
13 //===----------------------------------------------------------------------===//
14 
15 #ifndef LLVM_CODEGEN_INTERLEAVEDACCESS_H
16 #define LLVM_CODEGEN_INTERLEAVEDACCESS_H
17 
18 #include "llvm/IR/PassManager.h"
19 
20 namespace llvm {
21 
22 class TargetMachine;
23 
24 class InterleavedAccessPass : public PassInfoMixin<InterleavedAccessPass> {
25   const TargetMachine *TM;
26 
27 public:
InterleavedAccessPass(const TargetMachine * TM)28   explicit InterleavedAccessPass(const TargetMachine *TM) : TM(TM) {}
29   PreservedAnalyses run(Function &F, FunctionAnalysisManager &FAM);
30 };
31 
32 } // namespace llvm
33 
34 #endif // LLVM_CODEGEN_INTERLEAVEDACCESS_H
35