mirror of
https://github.com/RPCS3/llvm.git
synced 2026-01-31 01:25:19 +01:00
Differential Revision: https://reviews.llvm.org/D54848 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@348570 91177308-0d34-0410-b5e6-96231b3b80d8
28 lines
844 B
C++
28 lines
844 B
C++
//===- LoadStoreVectorizer.cpp - GPU Load & Store Vectorizer --------------===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef LLVM_TRANSFORMS_VECTORIZE_LOADSTOREVECTORIZER_H
|
|
#define LLVM_TRANSFORMS_VECTORIZE_LOADSTOREVECTORIZER_H
|
|
|
|
#include "llvm/IR/PassManager.h"
|
|
|
|
namespace llvm {
|
|
|
|
class LoadStoreVectorizerPass : public PassInfoMixin<LoadStoreVectorizerPass> {
|
|
public:
|
|
PreservedAnalyses run(Function &F, FunctionAnalysisManager &AM);
|
|
};
|
|
|
|
/// Create a legacy pass manager instance of the LoadStoreVectorizer pass
|
|
Pass *createLoadStoreVectorizerPass();
|
|
|
|
}
|
|
|
|
#endif /* LLVM_TRANSFORMS_VECTORIZE_LOADSTOREVECTORIZER_H */
|