Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2026-05-10 08:43:28

0001 //===---- llvm/CodeGen/InterleavedAccess.h ----------------------*- C++ -*-===//
0002 //
0003 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
0004 // See https://llvm.org/LICENSE.txt for license information.
0005 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
0006 //
0007 //===----------------------------------------------------------------------===//
0008 ///
0009 /// \file
0010 /// This file contains the declaration of the InterleavedAccessPass class,
0011 /// its corresponding pass name is `interleaved-access`.
0012 ///
0013 //===----------------------------------------------------------------------===//
0014 
0015 #ifndef LLVM_CODEGEN_INTERLEAVEDACCESS_H
0016 #define LLVM_CODEGEN_INTERLEAVEDACCESS_H
0017 
0018 #include "llvm/IR/PassManager.h"
0019 
0020 namespace llvm {
0021 
0022 class TargetMachine;
0023 
0024 class InterleavedAccessPass : public PassInfoMixin<InterleavedAccessPass> {
0025   const TargetMachine *TM;
0026 
0027 public:
0028   explicit InterleavedAccessPass(const TargetMachine *TM) : TM(TM) {}
0029   PreservedAnalyses run(Function &F, FunctionAnalysisManager &FAM);
0030 };
0031 
0032 } // namespace llvm
0033 
0034 #endif // LLVM_CODEGEN_INTERLEAVEDACCESS_H