1 //===-LTOCodeGenerator.h - LLVM Link Time Optimizer -----------------------===//
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
7 //===----------------------------------------------------------------------===//
9 // This file declares the LTOCodeGenerator class.
11 // LTO compilation consists of three phases: Pre-IPO, IPO and Post-IPO.
13 // The Pre-IPO phase compiles source code into bitcode file. The resulting
14 // bitcode files, along with object files and libraries, will be fed to the
15 // linker to through the IPO and Post-IPO phases. By using obj-file extension,
16 // the resulting bitcode file disguises itself as an object file, and therefore
17 // obviates the need of writing a special set of the make-rules only for LTO
20 // The IPO phase perform inter-procedural analyses and optimizations, and
21 // the Post-IPO consists two sub-phases: intra-procedural scalar optimizations
22 // (SOPT), and intra-procedural target-dependent code generator (CG).
24 // As of this writing, we don't separate IPO and the Post-IPO SOPT. They
25 // are intermingled together, and are driven by a single pass manager (see
26 // PassManagerBuilder::populateLTOPassManager()).
28 // The "LTOCodeGenerator" is the driver for the IPO and Post-IPO stages.
29 // The "CodeGenerator" here is bit confusing. Don't confuse the "CodeGenerator"
30 // with the machine specific code generator.
32 //===----------------------------------------------------------------------===//
34 #ifndef LLVM_LTO_LTOCODEGENERATOR_H
35 #define LLVM_LTO_LTOCODEGENERATOR_H
37 #include "llvm-c/lto.h"
38 #include "llvm/ADT/SmallPtrSet.h"
39 #include "llvm/ADT/StringMap.h"
40 #include "llvm/ADT/StringSet.h"
41 #include "llvm/IR/GlobalValue.h"
42 #include "llvm/IR/Module.h"
43 #include "llvm/Support/Error.h"
44 #include "llvm/Support/ToolOutputFile.h"
45 #include "llvm/Target/TargetMachine.h"
46 #include "llvm/Target/TargetOptions.h"
50 /// Enable global value internalization in LTO.
51 extern llvm::cl::opt
<bool> EnableLTOInternalization
;
54 template <typename T
> class ArrayRef
;
60 class TargetLibraryInfo
;
63 class raw_pwrite_stream
;
65 //===----------------------------------------------------------------------===//
66 /// C++ class which implements the opaque lto_code_gen_t type.
68 struct LTOCodeGenerator
{
69 static const char *getVersionString();
71 LTOCodeGenerator(LLVMContext
&Context
);
74 /// Merge given module. Return true on success.
76 /// Resets \a HasVerifiedInput.
77 bool addModule(struct LTOModule
*);
79 /// Set the destination module.
81 /// Resets \a HasVerifiedInput.
82 void setModule(std::unique_ptr
<LTOModule
> M
);
84 void setAsmUndefinedRefs(struct LTOModule
*);
85 void setTargetOptions(const TargetOptions
&Options
);
86 void setDebugInfo(lto_debug_model
);
87 void setCodePICModel(Optional
<Reloc::Model
> Model
) { RelocModel
= Model
; }
89 /// Set the file type to be emitted (assembly or object code).
90 /// The default is TargetMachine::CGFT_ObjectFile.
91 void setFileType(TargetMachine::CodeGenFileType FT
) { FileType
= FT
; }
93 void setCpu(StringRef MCpu
) { this->MCpu
= MCpu
; }
94 void setAttr(StringRef MAttr
) { this->MAttr
= MAttr
; }
95 void setOptLevel(unsigned OptLevel
);
97 void setShouldInternalize(bool Value
) { ShouldInternalize
= Value
; }
98 void setShouldEmbedUselists(bool Value
) { ShouldEmbedUselists
= Value
; }
100 /// Restore linkage of globals
102 /// When set, the linkage of globals will be restored prior to code
103 /// generation. That is, a global symbol that had external linkage prior to
104 /// LTO will be emitted with external linkage again; and a local will remain
105 /// local. Note that this option only affects the end result - globals may
106 /// still be internalized in the process of LTO and may be modified and/or
107 /// deleted where legal.
109 /// The default behavior will internalize globals (unless on the preserve
110 /// list) and, if parallel code generation is enabled, will externalize
112 void setShouldRestoreGlobalsLinkage(bool Value
) {
113 ShouldRestoreGlobalsLinkage
= Value
;
116 void addMustPreserveSymbol(StringRef Sym
) { MustPreserveSymbols
.insert(Sym
); }
118 /// Pass options to the driver and optimization passes.
120 /// These options are not necessarily for debugging purpose (the function
121 /// name is misleading). This function should be called before
122 /// LTOCodeGenerator::compilexxx(), and
123 /// LTOCodeGenerator::writeMergedModules().
124 void setCodeGenDebugOptions(StringRef Opts
);
126 /// Parse the options set in setCodeGenDebugOptions.
128 /// Like \a setCodeGenDebugOptions(), this must be called before
129 /// LTOCodeGenerator::compilexxx() and
130 /// LTOCodeGenerator::writeMergedModules().
131 void parseCodeGenDebugOptions();
133 /// Write the merged module to the file specified by the given path. Return
136 /// Calls \a verifyMergedModuleOnce().
137 bool writeMergedModules(StringRef Path
);
139 /// Compile the merged module into a *single* output file; the path to output
140 /// file is returned to the caller via argument "name". Return true on
143 /// \note It is up to the linker to remove the intermediate output file. Do
144 /// not try to remove the object file in LTOCodeGenerator's destructor as we
145 /// don't who (LTOCodeGenerator or the output file) will last longer.
146 bool compile_to_file(const char **Name
, bool DisableVerify
,
147 bool DisableInline
, bool DisableGVNLoadPRE
,
148 bool DisableVectorization
);
150 /// As with compile_to_file(), this function compiles the merged module into
151 /// single output file. Instead of returning the output file path to the
152 /// caller (linker), it brings the output to a buffer, and returns the buffer
153 /// to the caller. This function should delete the intermediate file once
154 /// its content is brought to memory. Return NULL if the compilation was not
156 std::unique_ptr
<MemoryBuffer
> compile(bool DisableVerify
, bool DisableInline
,
157 bool DisableGVNLoadPRE
,
158 bool DisableVectorization
);
160 /// Optimizes the merged module. Returns true on success.
162 /// Calls \a verifyMergedModuleOnce().
163 bool optimize(bool DisableVerify
, bool DisableInline
, bool DisableGVNLoadPRE
,
164 bool DisableVectorization
);
166 /// Compiles the merged optimized module into a single output file. It brings
167 /// the output to a buffer, and returns the buffer to the caller. Return NULL
168 /// if the compilation was not successful.
169 std::unique_ptr
<MemoryBuffer
> compileOptimized();
171 /// Compile the merged optimized module into out.size() output files each
172 /// representing a linkable partition of the module. If out contains more
173 /// than one element, code generation is done in parallel with out.size()
174 /// threads. Output files will be written to members of out. Returns true on
177 /// Calls \a verifyMergedModuleOnce().
178 bool compileOptimized(ArrayRef
<raw_pwrite_stream
*> Out
);
180 /// Enable the Freestanding mode: indicate that the optimizer should not
181 /// assume builtins are present on the target.
182 void setFreestanding(bool Enabled
) { Freestanding
= Enabled
; }
184 void setDiagnosticHandler(lto_diagnostic_handler_t
, void *);
186 LLVMContext
&getContext() { return Context
; }
188 void resetMergedModule() { MergedModule
.reset(); }
189 void DiagnosticHandler(const DiagnosticInfo
&DI
);
192 void initializeLTOPasses();
194 /// Verify the merged module on first call.
196 /// Sets \a HasVerifiedInput on first call and doesn't run again on the same
198 void verifyMergedModuleOnce();
200 bool compileOptimizedToFile(const char **Name
);
201 void restoreLinkageForExternals();
202 void applyScopeRestrictions();
203 void preserveDiscardableGVs(
205 llvm::function_ref
<bool(const GlobalValue
&)> mustPreserveGV
);
207 bool determineTarget();
208 std::unique_ptr
<TargetMachine
> createTargetMachine();
210 void emitError(const std::string
&ErrMsg
);
211 void emitWarning(const std::string
&ErrMsg
);
213 void finishOptimizationRemarks();
215 LLVMContext
&Context
;
216 std::unique_ptr
<Module
> MergedModule
;
217 std::unique_ptr
<Linker
> TheLinker
;
218 std::unique_ptr
<TargetMachine
> TargetMach
;
219 bool EmitDwarfDebugInfo
= false;
220 bool ScopeRestrictionsDone
= false;
221 bool HasVerifiedInput
= false;
222 Optional
<Reloc::Model
> RelocModel
;
223 StringSet
<> MustPreserveSymbols
;
224 StringSet
<> AsmUndefinedRefs
;
225 StringMap
<GlobalValue::LinkageTypes
> ExternalSymbols
;
226 std::vector
<std::string
> CodegenOptions
;
227 std::string FeatureStr
;
230 std::string NativeObjectPath
;
231 TargetOptions Options
;
232 CodeGenOpt::Level CGOptLevel
= CodeGenOpt::Default
;
233 const Target
*MArch
= nullptr;
234 std::string TripleStr
;
235 unsigned OptLevel
= 2;
236 lto_diagnostic_handler_t DiagHandler
= nullptr;
237 void *DiagContext
= nullptr;
238 bool ShouldInternalize
= EnableLTOInternalization
;
239 bool ShouldEmbedUselists
= false;
240 bool ShouldRestoreGlobalsLinkage
= false;
241 TargetMachine::CodeGenFileType FileType
= TargetMachine::CGFT_ObjectFile
;
242 std::unique_ptr
<ToolOutputFile
> DiagnosticOutputFile
;
243 bool Freestanding
= false;
244 std::unique_ptr
<ToolOutputFile
> StatsFile
= nullptr;