LLVM  8.0.1
ThinLTOBitcodeWriter.h
Go to the documentation of this file.
1 //===- ThinLTOBitcodeWriter.h - Bitcode writing pass for ThinLTO ----------===//
2 //
3 // The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This pass prepares a module containing type metadata for ThinLTO by splitting
11 // it into regular and thin LTO parts if possible, and writing both parts to
12 // a multi-module bitcode file. Modules that do not contain type metadata are
13 // written unmodified as a single module.
14 //
15 //===----------------------------------------------------------------------===//
16 
17 #ifndef LLVM_TRANSFORMS_IPO_THINLTOBITCODEWRITER_H
18 #define LLVM_TRANSFORMS_IPO_THINLTOBITCODEWRITER_H
19 
20 #include <llvm/IR/PassManager.h>
22 
23 namespace llvm {
24 
26  : public PassInfoMixin<ThinLTOBitcodeWriterPass> {
27  raw_ostream &OS;
28  raw_ostream *ThinLinkOS;
29 
30 public:
31  // Writes bitcode to OS. Also write thin link file to ThinLinkOS, if
32  // it's not nullptr.
34  : OS(OS), ThinLinkOS(ThinLinkOS) {}
35 
37 };
38 
39 } // namespace llvm
40 
41 #endif
This class represents lattice values for constants.
Definition: AllocatorList.h:24
A Module instance is used to store all the information related to an LLVM module. ...
Definition: Module.h:65
A CRTP mix-in to automatically provide informational APIs needed for passes.
Definition: PassManager.h:366
A set of analyses that are preserved following a run of a transformation pass.
Definition: PassManager.h:154
PreservedAnalyses run(Module &M, ModuleAnalysisManager &AM)
ThinLTOBitcodeWriterPass(raw_ostream &OS, raw_ostream *ThinLinkOS)
This class implements an extremely fast bulk output stream that can only output to a stream...
Definition: raw_ostream.h:46
A container for analyses that lazily runs them and caches their results.
This header defines various interfaces for pass management in LLVM.