LLVM 22.0.0git
FatLTOCleanup.h
Go to the documentation of this file.
1//===- FatLtoCleanup.h - clean up IR for the FatLTO pipeline ----*- 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// This file defines operations used to clean up IR for the FatLTO pipeline.
10// Instrumentation that is beneficial for bitcode sections used in LTO may
11// need to be cleaned up to finish non-LTO compilation. llvm.checked.load is
12// an example of an instruction that we want to preserve for LTO, but is
13// incorrect to leave unchanged during the per-TU compilation in FatLTO.
14//
15//===----------------------------------------------------------------------===//
16
17#ifndef LLVM_TRANSFORMS_IPO_FATLTOCLEANUP_H
18#define LLVM_TRANSFORMS_IPO_FATLTOCLEANUP_H
19
20#include "llvm/IR/PassManager.h"
21
22namespace llvm {
23
24class Module;
25class ModuleSummaryIndex;
26
27class FatLtoCleanup : public PassInfoMixin<FatLtoCleanup> {
28public:
31 static bool isRequired() { return true; }
32};
33
34} // end namespace llvm
35
36#endif // LLVM_TRANSFORMS_IPO_FATLTOCLEANUP_H
This header defines various interfaces for pass management in LLVM.
Machine Check Debug Module
A container for analyses that lazily runs them and caches their results.
Definition: PassManager.h:255
PreservedAnalyses run(Module &M, ModuleAnalysisManager &AM)
static bool isRequired()
Definition: FatLTOCleanup.h:31
A Module instance is used to store all the information related to an LLVM module.
Definition: Module.h:67
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.
Definition: AddressRanges.h:18
A CRTP mix-in to automatically provide informational APIs needed for passes.
Definition: PassManager.h:70