LLVM 22.0.0git
LoadStoreVectorizer.h
Go to the documentation of this file.
1//===- LoadStoreVectorizer.cpp - GPU Load & Store Vectorizer --------------===//
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#ifndef LLVM_TRANSFORMS_VECTORIZE_LOADSTOREVECTORIZER_H
10#define LLVM_TRANSFORMS_VECTORIZE_LOADSTOREVECTORIZER_H
11
12#include "llvm/IR/PassManager.h"
14
15namespace llvm {
16class Pass;
17class Function;
18
19class LoadStoreVectorizerPass : public PassInfoMixin<LoadStoreVectorizerPass> {
20public:
22};
23
24/// Create a legacy pass manager instance of the LoadStoreVectorizer pass
26}
27
28#endif /* LLVM_TRANSFORMS_VECTORIZE_LOADSTOREVECTORIZER_H */
#define LLVM_ABI
Definition Compiler.h:213
This header defines various interfaces for pass management in LLVM.
#define F(x, y, z)
Definition MD5.cpp:55
LLVM_ABI PreservedAnalyses run(Function &F, FunctionAnalysisManager &AM)
Pass interface - Implemented by all 'passes'.
Definition Pass.h:99
A set of analyses that are preserved following a run of a transformation pass.
Definition Analysis.h:112
This is an optimization pass for GlobalISel generic memory operations.
LLVM_ABI Pass * createLoadStoreVectorizerPass()
Create a legacy pass manager instance of the LoadStoreVectorizer pass.
AnalysisManager< Function > FunctionAnalysisManager
Convenience typedef for the Function analysis manager.
A CRTP mix-in to automatically provide informational APIs needed for passes.
Definition PassManager.h:70