LLVM 20.0.0git
IRNormalizer.h
Go to the documentation of this file.
1#ifndef LLVM_TRANSFORMS_UTILS_IRNORMALIZER_H
2#define LLVM_TRANSFORMS_UTILS_IRNORMALIZER_H
3
5
6namespace llvm {
7
8/// IRNormalizer aims to transform LLVM IR into normal form.
9struct IRNormalizerPass : public PassInfoMixin<IRNormalizerPass> {
11};
12
13} // namespace llvm
14
15#endif // LLVM_TRANSFORMS_UTILS_IRNORMALIZER_H
This header defines various interfaces for pass management in LLVM.
#define F(x, y, z)
Definition: MD5.cpp:55
A container for analyses that lazily runs them and caches their results.
Definition: PassManager.h:253
A set of analyses that are preserved following a run of a transformation pass.
Definition: Analysis.h:111
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18
IRNormalizer aims to transform LLVM IR into normal form.
Definition: IRNormalizer.h:9
PreservedAnalyses run(Function &F, FunctionAnalysisManager &AM) const
A CRTP mix-in to automatically provide informational APIs needed for passes.
Definition: PassManager.h:69