xref: /llvm-project-15.0.7/llvm/tools/opt/opt.cpp (revision 14324fa4)
1 //===- opt.cpp - The LLVM Modular Optimizer -------------------------------===//
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 // Optimizations may be specified an arbitrary number of times on the command
10 // line, They are run in the order specified.
11 //
12 //===----------------------------------------------------------------------===//
13 
14 #include "BreakpointPrinter.h"
15 #include "NewPMDriver.h"
16 #include "PassPrinters.h"
17 #include "llvm/ADT/Triple.h"
18 #include "llvm/Analysis/CallGraph.h"
19 #include "llvm/Analysis/CallGraphSCCPass.h"
20 #include "llvm/Analysis/LoopPass.h"
21 #include "llvm/Analysis/RegionPass.h"
22 #include "llvm/Analysis/TargetLibraryInfo.h"
23 #include "llvm/Analysis/TargetTransformInfo.h"
24 #include "llvm/AsmParser/Parser.h"
25 #include "llvm/CodeGen/CommandFlags.h"
26 #include "llvm/CodeGen/TargetPassConfig.h"
27 #include "llvm/Config/llvm-config.h"
28 #include "llvm/IR/DataLayout.h"
29 #include "llvm/IR/DebugInfo.h"
30 #include "llvm/IR/LLVMContext.h"
31 #include "llvm/IR/LLVMRemarkStreamer.h"
32 #include "llvm/IR/LegacyPassManager.h"
33 #include "llvm/IR/LegacyPassNameParser.h"
34 #include "llvm/IR/Module.h"
35 #include "llvm/IR/Verifier.h"
36 #include "llvm/IRReader/IRReader.h"
37 #include "llvm/InitializePasses.h"
38 #include "llvm/LinkAllIR.h"
39 #include "llvm/LinkAllPasses.h"
40 #include "llvm/MC/SubtargetFeature.h"
41 #include "llvm/MC/TargetRegistry.h"
42 #include "llvm/Remarks/HotnessThresholdParser.h"
43 #include "llvm/Support/Debug.h"
44 #include "llvm/Support/FileSystem.h"
45 #include "llvm/Support/Host.h"
46 #include "llvm/Support/InitLLVM.h"
47 #include "llvm/Support/PluginLoader.h"
48 #include "llvm/Support/SourceMgr.h"
49 #include "llvm/Support/SystemUtils.h"
50 #include "llvm/Support/TargetSelect.h"
51 #include "llvm/Support/ToolOutputFile.h"
52 #include "llvm/Support/YAMLTraits.h"
53 #include "llvm/Target/TargetMachine.h"
54 #include "llvm/Transforms/Coroutines.h"
55 #include "llvm/Transforms/IPO/AlwaysInliner.h"
56 #include "llvm/Transforms/IPO/PassManagerBuilder.h"
57 #include "llvm/Transforms/IPO/WholeProgramDevirt.h"
58 #include "llvm/Transforms/Utils/Cloning.h"
59 #include "llvm/Transforms/Utils/Debugify.h"
60 #include <algorithm>
61 #include <memory>
62 using namespace llvm;
63 using namespace opt_tool;
64 
65 static codegen::RegisterCodeGenFlags CFG;
66 
67 // The OptimizationList is automatically populated with registered Passes by the
68 // PassNameParser.
69 static cl::list<const PassInfo *, bool, PassNameParser> PassList(cl::desc(
70     "Optimizations available (use '-passes=' for the new pass manager)"));
71 
72 static cl::opt<bool> EnableNewPassManager(
73     "enable-new-pm",
74     cl::desc("Enable the new pass manager, translating "
75              "'opt -foo' to 'opt -passes=foo'. This is strictly for the new PM "
76              "migration, use '-passes=' when possible."),
77     cl::init(LLVM_ENABLE_NEW_PASS_MANAGER));
78 
79 // This flag specifies a textual description of the optimization pass pipeline
80 // to run over the module. This flag switches opt to use the new pass manager
81 // infrastructure, completely disabling all of the flags specific to the old
82 // pass management.
83 static cl::opt<std::string> PassPipeline(
84     "passes",
85     cl::desc(
86         "A textual description of the pass pipeline. To have analysis passes "
87         "available before a certain pass, add 'require<foo-analysis>'."));
88 
89 static cl::opt<bool> PrintPasses("print-passes",
90                                  cl::desc("Print available passes that can be "
91                                           "specified in -passes=foo and exit"));
92 
93 static cl::opt<std::string>
94 InputFilename(cl::Positional, cl::desc("<input bitcode file>"),
95     cl::init("-"), cl::value_desc("filename"));
96 
97 static cl::opt<std::string>
98 OutputFilename("o", cl::desc("Override output filename"),
99                cl::value_desc("filename"));
100 
101 static cl::opt<bool>
102 Force("f", cl::desc("Enable binary output on terminals"));
103 
104 static cl::opt<bool>
105 NoOutput("disable-output",
106          cl::desc("Do not write result bitcode file"), cl::Hidden);
107 
108 static cl::opt<bool>
109 OutputAssembly("S", cl::desc("Write output as LLVM assembly"));
110 
111 static cl::opt<bool>
112     OutputThinLTOBC("thinlto-bc",
113                     cl::desc("Write output as ThinLTO-ready bitcode"));
114 
115 static cl::opt<bool>
116     SplitLTOUnit("thinlto-split-lto-unit",
117                  cl::desc("Enable splitting of a ThinLTO LTOUnit"));
118 
119 static cl::opt<std::string> ThinLinkBitcodeFile(
120     "thin-link-bitcode-file", cl::value_desc("filename"),
121     cl::desc(
122         "A file in which to write minimized bitcode for the thin link only"));
123 
124 static cl::opt<bool>
125 NoVerify("disable-verify", cl::desc("Do not run the verifier"), cl::Hidden);
126 
127 static cl::opt<bool> NoUpgradeDebugInfo("disable-upgrade-debug-info",
128                                         cl::desc("Generate invalid output"),
129                                         cl::ReallyHidden);
130 
131 static cl::opt<bool> VerifyEach("verify-each",
132                                 cl::desc("Verify after each transform"));
133 
134 static cl::opt<bool>
135     DisableDITypeMap("disable-debug-info-type-map",
136                      cl::desc("Don't use a uniquing type map for debug info"));
137 
138 static cl::opt<bool>
139 StripDebug("strip-debug",
140            cl::desc("Strip debugger symbol info from translation unit"));
141 
142 static cl::opt<bool>
143     StripNamedMetadata("strip-named-metadata",
144                        cl::desc("Strip module-level named metadata"));
145 
146 
147 
148 static cl::opt<bool>
149     OptLevelO0("O0", cl::desc("Optimization level 0. Similar to clang -O0. "
150                               "Use -passes='default<O0>' for the new PM"));
151 
152 static cl::opt<bool>
153     OptLevelO1("O1", cl::desc("Optimization level 1. Similar to clang -O1. "
154                               "Use -passes='default<O1>' for the new PM"));
155 
156 static cl::opt<bool>
157     OptLevelO2("O2", cl::desc("Optimization level 2. Similar to clang -O2. "
158                               "Use -passes='default<O2>' for the new PM"));
159 
160 static cl::opt<bool>
161     OptLevelOs("Os", cl::desc("Like -O2 but size-conscious. Similar to clang "
162                               "-Os. Use -passes='default<Os>' for the new PM"));
163 
164 static cl::opt<bool> OptLevelOz(
165     "Oz",
166     cl::desc("Like -O2 but optimize for code size above all else. Similar to "
167              "clang -Oz. Use -passes='default<Oz>' for the new PM"));
168 
169 static cl::opt<bool>
170     OptLevelO3("O3", cl::desc("Optimization level 3. Similar to clang -O3. "
171                               "Use -passes='default<O3>' for the new PM"));
172 
173 static cl::opt<unsigned> CodeGenOptLevel(
174     "codegen-opt-level",
175     cl::desc("Override optimization level for codegen hooks, legacy PM only"));
176 
177 static cl::opt<std::string>
178 TargetTriple("mtriple", cl::desc("Override target triple for module"));
179 
180 cl::opt<bool> DisableLoopUnrolling(
181     "disable-loop-unrolling",
182     cl::desc("Disable loop unrolling in all relevant passes"), cl::init(false));
183 
184 static cl::opt<bool> EmitSummaryIndex("module-summary",
185                                       cl::desc("Emit module summary index"),
186                                       cl::init(false));
187 
188 static cl::opt<bool> EmitModuleHash("module-hash", cl::desc("Emit module hash"),
189                                     cl::init(false));
190 
191 static cl::opt<bool>
192 DisableSimplifyLibCalls("disable-simplify-libcalls",
193                         cl::desc("Disable simplify-libcalls"));
194 
195 static cl::list<std::string>
196 DisableBuiltins("disable-builtin",
197                 cl::desc("Disable specific target library builtin function"),
198                 cl::ZeroOrMore);
199 
200 static cl::opt<bool>
201     AnalyzeOnly("analyze", cl::desc("Only perform analysis, no optimization. "
202                                     "Legacy pass manager only."));
203 
204 static cl::opt<bool> EnableDebugify(
205     "enable-debugify",
206     cl::desc(
207         "Start the pipeline with debugify and end it with check-debugify"));
208 
209 static cl::opt<bool> VerifyDebugInfoPreserve(
210     "verify-debuginfo-preserve",
211     cl::desc("Start the pipeline with collecting and end it with checking of "
212              "debug info preservation."));
213 
214 static cl::opt<bool> VerifyEachDebugInfoPreserve(
215     "verify-each-debuginfo-preserve",
216     cl::desc("Start each pass with collecting and end it with checking of "
217              "debug info preservation."));
218 
219 static cl::opt<std::string>
220     VerifyDIPreserveExport("verify-di-preserve-export",
221                    cl::desc("Export debug info preservation failures into "
222                             "specified (JSON) file (should be abs path as we use"
223                             " append mode to insert new JSON objects)"),
224                    cl::value_desc("filename"), cl::init(""));
225 
226 static cl::opt<bool>
227 PrintBreakpoints("print-breakpoints-for-testing",
228                  cl::desc("Print select breakpoints location for testing"));
229 
230 static cl::opt<std::string> ClDataLayout("data-layout",
231                                          cl::desc("data layout string to use"),
232                                          cl::value_desc("layout-string"),
233                                          cl::init(""));
234 
235 static cl::opt<bool> PreserveBitcodeUseListOrder(
236     "preserve-bc-uselistorder",
237     cl::desc("Preserve use-list order when writing LLVM bitcode."),
238     cl::init(true), cl::Hidden);
239 
240 static cl::opt<bool> PreserveAssemblyUseListOrder(
241     "preserve-ll-uselistorder",
242     cl::desc("Preserve use-list order when writing LLVM assembly."),
243     cl::init(false), cl::Hidden);
244 
245 static cl::opt<bool> RunTwice("run-twice",
246                               cl::desc("Run all passes twice, re-using the "
247                                        "same pass manager (legacy PM only)."),
248                               cl::init(false), cl::Hidden);
249 
250 static cl::opt<bool> DiscardValueNames(
251     "discard-value-names",
252     cl::desc("Discard names from Value (other than GlobalValue)."),
253     cl::init(false), cl::Hidden);
254 
255 static cl::opt<bool> Coroutines(
256   "enable-coroutines",
257   cl::desc("Enable coroutine passes."),
258   cl::init(false), cl::Hidden);
259 
260 static cl::opt<bool> TimeTrace(
261     "time-trace",
262     cl::desc("Record time trace"));
263 
264 static cl::opt<unsigned> TimeTraceGranularity(
265     "time-trace-granularity",
266     cl::desc("Minimum time granularity (in microseconds) traced by time profiler"),
267     cl::init(500), cl::Hidden);
268 
269 static cl::opt<std::string>
270     TimeTraceFile("time-trace-file",
271                     cl::desc("Specify time trace file destination"),
272                     cl::value_desc("filename"));
273 
274 static cl::opt<bool> RemarksWithHotness(
275     "pass-remarks-with-hotness",
276     cl::desc("With PGO, include profile count in optimization remarks"),
277     cl::Hidden);
278 
279 static cl::opt<Optional<uint64_t>, false, remarks::HotnessThresholdParser>
280     RemarksHotnessThreshold(
281         "pass-remarks-hotness-threshold",
282         cl::desc("Minimum profile count required for "
283                  "an optimization remark to be output. "
284                  "Use 'auto' to apply the threshold from profile summary."),
285         cl::value_desc("N or 'auto'"), cl::init(0), cl::Hidden);
286 
287 static cl::opt<std::string>
288     RemarksFilename("pass-remarks-output",
289                     cl::desc("Output filename for pass remarks"),
290                     cl::value_desc("filename"));
291 
292 static cl::opt<std::string>
293     RemarksPasses("pass-remarks-filter",
294                   cl::desc("Only record optimization remarks from passes whose "
295                            "names match the given regular expression"),
296                   cl::value_desc("regex"));
297 
298 static cl::opt<std::string> RemarksFormat(
299     "pass-remarks-format",
300     cl::desc("The format used for serializing remarks (default: YAML)"),
301     cl::value_desc("format"), cl::init("yaml"));
302 
303 namespace llvm {
304 cl::opt<PGOKind>
305     PGOKindFlag("pgo-kind", cl::init(NoPGO), cl::Hidden,
306                 cl::desc("The kind of profile guided optimization"),
307                 cl::values(clEnumValN(NoPGO, "nopgo", "Do not use PGO."),
308                            clEnumValN(InstrGen, "pgo-instr-gen-pipeline",
309                                       "Instrument the IR to generate profile."),
310                            clEnumValN(InstrUse, "pgo-instr-use-pipeline",
311                                       "Use instrumented profile to guide PGO."),
312                            clEnumValN(SampleUse, "pgo-sample-use-pipeline",
313                                       "Use sampled profile to guide PGO.")));
314 cl::opt<std::string> ProfileFile("profile-file",
315                                  cl::desc("Path to the profile."), cl::Hidden);
316 
317 cl::opt<CSPGOKind> CSPGOKindFlag(
318     "cspgo-kind", cl::init(NoCSPGO), cl::Hidden,
319     cl::desc("The kind of context sensitive profile guided optimization"),
320     cl::values(
321         clEnumValN(NoCSPGO, "nocspgo", "Do not use CSPGO."),
322         clEnumValN(
323             CSInstrGen, "cspgo-instr-gen-pipeline",
324             "Instrument (context sensitive) the IR to generate profile."),
325         clEnumValN(
326             CSInstrUse, "cspgo-instr-use-pipeline",
327             "Use instrumented (context sensitive) profile to guide PGO.")));
328 cl::opt<std::string> CSProfileGenFile(
329     "cs-profilegen-file",
330     cl::desc("Path to the instrumented context sensitive profile."),
331     cl::Hidden);
332 } // namespace llvm
333 
334 static inline void addPass(legacy::PassManagerBase &PM, Pass *P) {
335   // Add the pass to the pass manager...
336   PM.add(P);
337 
338   // If we are verifying all of the intermediate steps, add the verifier...
339   if (VerifyEach)
340     PM.add(createVerifierPass());
341 }
342 
343 /// This routine adds optimization passes based on selected optimization level,
344 /// OptLevel.
345 ///
346 /// OptLevel - Optimization Level
347 static void AddOptimizationPasses(legacy::PassManagerBase &MPM,
348                                   legacy::FunctionPassManager &FPM,
349                                   TargetMachine *TM, unsigned OptLevel,
350                                   unsigned SizeLevel) {
351   if (!NoVerify || VerifyEach)
352     FPM.add(createVerifierPass()); // Verify that input is correct
353 
354   PassManagerBuilder Builder;
355   Builder.OptLevel = OptLevel;
356   Builder.SizeLevel = SizeLevel;
357 
358   if (OptLevel > 1) {
359     Builder.Inliner = createFunctionInliningPass(OptLevel, SizeLevel, false);
360   } else {
361     Builder.Inliner = createAlwaysInlinerLegacyPass();
362   }
363   Builder.DisableUnrollLoops = (DisableLoopUnrolling.getNumOccurrences() > 0) ?
364                                DisableLoopUnrolling : OptLevel == 0;
365 
366   Builder.LoopVectorize = OptLevel > 1 && SizeLevel < 2;
367 
368   Builder.SLPVectorize = OptLevel > 1 && SizeLevel < 2;
369 
370   if (TM)
371     TM->adjustPassManager(Builder);
372 
373   if (Coroutines)
374     addCoroutinePassesToExtensionPoints(Builder);
375 
376   switch (PGOKindFlag) {
377   case InstrGen:
378     Builder.EnablePGOInstrGen = true;
379     Builder.PGOInstrGen = ProfileFile;
380     break;
381   case InstrUse:
382     Builder.PGOInstrUse = ProfileFile;
383     break;
384   case SampleUse:
385     Builder.PGOSampleUse = ProfileFile;
386     break;
387   default:
388     break;
389   }
390 
391   switch (CSPGOKindFlag) {
392   case CSInstrGen:
393     Builder.EnablePGOCSInstrGen = true;
394     break;
395   case CSInstrUse:
396     Builder.EnablePGOCSInstrUse = true;
397     break;
398   default:
399     break;
400   }
401 
402   Builder.populateFunctionPassManager(FPM);
403   Builder.populateModulePassManager(MPM);
404 }
405 
406 //===----------------------------------------------------------------------===//
407 // CodeGen-related helper functions.
408 //
409 
410 static CodeGenOpt::Level GetCodeGenOptLevel() {
411   if (CodeGenOptLevel.getNumOccurrences())
412     return static_cast<CodeGenOpt::Level>(unsigned(CodeGenOptLevel));
413   if (OptLevelO1)
414     return CodeGenOpt::Less;
415   if (OptLevelO2)
416     return CodeGenOpt::Default;
417   if (OptLevelO3)
418     return CodeGenOpt::Aggressive;
419   return CodeGenOpt::None;
420 }
421 
422 // Returns the TargetMachine instance or zero if no triple is provided.
423 static TargetMachine* GetTargetMachine(Triple TheTriple, StringRef CPUStr,
424                                        StringRef FeaturesStr,
425                                        const TargetOptions &Options) {
426   std::string Error;
427   const Target *TheTarget =
428       TargetRegistry::lookupTarget(codegen::getMArch(), TheTriple, Error);
429   // Some modules don't specify a triple, and this is okay.
430   if (!TheTarget) {
431     return nullptr;
432   }
433 
434   return TheTarget->createTargetMachine(
435       TheTriple.getTriple(), codegen::getCPUStr(), codegen::getFeaturesStr(),
436       Options, codegen::getExplicitRelocModel(),
437       codegen::getExplicitCodeModel(), GetCodeGenOptLevel());
438 }
439 
440 #ifdef BUILD_EXAMPLES
441 void initializeExampleIRTransforms(llvm::PassRegistry &Registry);
442 #endif
443 
444 struct TimeTracerRAII {
445   TimeTracerRAII(StringRef ProgramName) {
446     if (TimeTrace)
447       timeTraceProfilerInitialize(TimeTraceGranularity, ProgramName);
448   }
449   ~TimeTracerRAII() {
450     if (TimeTrace) {
451       if (auto E = timeTraceProfilerWrite(TimeTraceFile, OutputFilename)) {
452         handleAllErrors(std::move(E), [&](const StringError &SE) {
453           errs() << SE.getMessage() << "\n";
454         });
455         return;
456       }
457       timeTraceProfilerCleanup();
458     }
459   }
460 };
461 
462 // For use in NPM transition. Currently this contains most codegen-specific
463 // passes. Remove passes from here when porting to the NPM.
464 // TODO: use a codegen version of PassRegistry.def/PassBuilder::is*Pass() once
465 // it exists.
466 static bool shouldPinPassToLegacyPM(StringRef Pass) {
467   std::vector<StringRef> PassNameExactToIgnore = {
468       "nvvm-reflect",
469       "nvvm-intr-range",
470       "amdgpu-simplifylib",
471       "amdgpu-usenative",
472       "amdgpu-promote-alloca",
473       "amdgpu-promote-alloca-to-vector",
474       "amdgpu-lower-kernel-attributes",
475       "amdgpu-propagate-attributes-early",
476       "amdgpu-propagate-attributes-late",
477       "amdgpu-unify-metadata",
478       "amdgpu-printf-runtime-binding",
479       "amdgpu-always-inline"};
480   if (llvm::is_contained(PassNameExactToIgnore, Pass))
481     return false;
482 
483   std::vector<StringRef> PassNamePrefix = {
484       "x86-",    "xcore-", "wasm-",  "systemz-", "ppc-",    "nvvm-",
485       "nvptx-",  "mips-",  "lanai-", "hexagon-", "bpf-",    "avr-",
486       "thumb2-", "arm-",   "si-",    "gcn-",     "amdgpu-", "aarch64-",
487       "amdgcn-", "polly-", "riscv-"};
488   std::vector<StringRef> PassNameContain = {"ehprepare"};
489   std::vector<StringRef> PassNameExact = {
490       "safe-stack",           "cost-model",
491       "codegenprepare",       "interleaved-load-combine",
492       "unreachableblockelim", "verify-safepoint-ir",
493       "atomic-expand",        "expandvp",
494       "hardware-loops",       "type-promotion",
495       "mve-tail-predication", "interleaved-access",
496       "global-merge",         "pre-isel-intrinsic-lowering",
497       "expand-reductions",    "indirectbr-expand",
498       "generic-to-nvvm",      "expandmemcmp",
499       "loop-reduce",          "lower-amx-type",
500       "pre-amx-config",       "lower-amx-intrinsics",
501       "polyhedral-info",      "print-polyhedral-info",
502       "replace-with-veclib",  "jmc-instrument",
503       "dot-regions",          "dot-regions-only",
504       "view-regions",         "view-regions-only"};
505   for (const auto &P : PassNamePrefix)
506     if (Pass.startswith(P))
507       return true;
508   for (const auto &P : PassNameContain)
509     if (Pass.contains(P))
510       return true;
511   return llvm::is_contained(PassNameExact, Pass);
512 }
513 
514 // For use in NPM transition.
515 static bool shouldForceLegacyPM() {
516   for (const auto &P : PassList) {
517     StringRef Arg = P->getPassArgument();
518     if (shouldPinPassToLegacyPM(Arg))
519       return true;
520   }
521   return false;
522 }
523 
524 //===----------------------------------------------------------------------===//
525 // main for opt
526 //
527 int main(int argc, char **argv) {
528   InitLLVM X(argc, argv);
529 
530   // Enable debug stream buffering.
531   EnableDebugBuffering = true;
532 
533   InitializeAllTargets();
534   InitializeAllTargetMCs();
535   InitializeAllAsmPrinters();
536   InitializeAllAsmParsers();
537 
538   // Initialize passes
539   PassRegistry &Registry = *PassRegistry::getPassRegistry();
540   initializeCore(Registry);
541   initializeCoroutines(Registry);
542   initializeScalarOpts(Registry);
543   initializeObjCARCOpts(Registry);
544   initializeVectorization(Registry);
545   initializeIPO(Registry);
546   initializeAnalysis(Registry);
547   initializeTransformUtils(Registry);
548   initializeInstCombine(Registry);
549   initializeAggressiveInstCombine(Registry);
550   initializeInstrumentation(Registry);
551   initializeTarget(Registry);
552   // For codegen passes, only passes that do IR to IR transformation are
553   // supported.
554   initializeExpandMemCmpPassPass(Registry);
555   initializeScalarizeMaskedMemIntrinLegacyPassPass(Registry);
556   initializeCodeGenPreparePass(Registry);
557   initializeAtomicExpandPass(Registry);
558   initializeRewriteSymbolsLegacyPassPass(Registry);
559   initializeWinEHPreparePass(Registry);
560   initializeDwarfEHPrepareLegacyPassPass(Registry);
561   initializeSafeStackLegacyPassPass(Registry);
562   initializeSjLjEHPreparePass(Registry);
563   initializePreISelIntrinsicLoweringLegacyPassPass(Registry);
564   initializeGlobalMergePass(Registry);
565   initializeIndirectBrExpandPassPass(Registry);
566   initializeInterleavedLoadCombinePass(Registry);
567   initializeInterleavedAccessPass(Registry);
568   initializeEntryExitInstrumenterPass(Registry);
569   initializePostInlineEntryExitInstrumenterPass(Registry);
570   initializeUnreachableBlockElimLegacyPassPass(Registry);
571   initializeExpandReductionsPass(Registry);
572   initializeExpandVectorPredicationPass(Registry);
573   initializeWasmEHPreparePass(Registry);
574   initializeWriteBitcodePassPass(Registry);
575   initializeHardwareLoopsPass(Registry);
576   initializeTypePromotionPass(Registry);
577   initializeReplaceWithVeclibLegacyPass(Registry);
578   initializeJMCInstrumenterPass(Registry);
579 
580 #ifdef BUILD_EXAMPLES
581   initializeExampleIRTransforms(Registry);
582 #endif
583 
584   cl::ParseCommandLineOptions(argc, argv,
585     "llvm .bc -> .bc modular optimizer and analysis printer\n");
586 
587   LLVMContext Context;
588 
589   if (AnalyzeOnly && NoOutput) {
590     errs() << argv[0] << ": analyze mode conflicts with no-output mode.\n";
591     return 1;
592   }
593 
594   // FIXME: once the legacy PM code is deleted, move runPassPipeline() here and
595   // construct the PassBuilder before parsing IR so we can reuse the same
596   // PassBuilder for print passes.
597   if (PrintPasses) {
598     printPasses(outs());
599     return 0;
600   }
601 
602   TimeTracerRAII TimeTracer(argv[0]);
603 
604   SMDiagnostic Err;
605 
606   Context.setDiscardValueNames(DiscardValueNames);
607   if (!DisableDITypeMap)
608     Context.enableDebugTypeODRUniquing();
609 
610   Expected<std::unique_ptr<ToolOutputFile>> RemarksFileOrErr =
611       setupLLVMOptimizationRemarks(Context, RemarksFilename, RemarksPasses,
612                                    RemarksFormat, RemarksWithHotness,
613                                    RemarksHotnessThreshold);
614   if (Error E = RemarksFileOrErr.takeError()) {
615     errs() << toString(std::move(E)) << '\n';
616     return 1;
617   }
618   std::unique_ptr<ToolOutputFile> RemarksFile = std::move(*RemarksFileOrErr);
619 
620   // Load the input module...
621   auto SetDataLayout = [](StringRef) -> Optional<std::string> {
622     if (ClDataLayout.empty())
623       return None;
624     return ClDataLayout;
625   };
626   std::unique_ptr<Module> M;
627   if (NoUpgradeDebugInfo)
628     M = parseAssemblyFileWithIndexNoUpgradeDebugInfo(
629             InputFilename, Err, Context, nullptr, SetDataLayout)
630             .Mod;
631   else
632     M = parseIRFile(InputFilename, Err, Context, SetDataLayout);
633 
634   if (!M) {
635     Err.print(argv[0], errs());
636     return 1;
637   }
638 
639   // Strip debug info before running the verifier.
640   if (StripDebug)
641     StripDebugInfo(*M);
642 
643   // Erase module-level named metadata, if requested.
644   if (StripNamedMetadata) {
645     while (!M->named_metadata_empty()) {
646       NamedMDNode *NMD = &*M->named_metadata_begin();
647       M->eraseNamedMetadata(NMD);
648     }
649   }
650 
651   // If we are supposed to override the target triple or data layout, do so now.
652   if (!TargetTriple.empty())
653     M->setTargetTriple(Triple::normalize(TargetTriple));
654 
655   // Immediately run the verifier to catch any problems before starting up the
656   // pass pipelines.  Otherwise we can crash on broken code during
657   // doInitialization().
658   if (!NoVerify && verifyModule(*M, &errs())) {
659     errs() << argv[0] << ": " << InputFilename
660            << ": error: input module is broken!\n";
661     return 1;
662   }
663 
664   // Enable testing of whole program devirtualization on this module by invoking
665   // the facility for updating public visibility to linkage unit visibility when
666   // specified by an internal option. This is normally done during LTO which is
667   // not performed via opt.
668   updateVCallVisibilityInModule(*M,
669                                 /* WholeProgramVisibilityEnabledInLTO */ false,
670                                 /* DynamicExportSymbols */ {});
671 
672   // Figure out what stream we are supposed to write to...
673   std::unique_ptr<ToolOutputFile> Out;
674   std::unique_ptr<ToolOutputFile> ThinLinkOut;
675   if (NoOutput) {
676     if (!OutputFilename.empty())
677       errs() << "WARNING: The -o (output filename) option is ignored when\n"
678                 "the --disable-output option is used.\n";
679   } else {
680     // Default to standard output.
681     if (OutputFilename.empty())
682       OutputFilename = "-";
683 
684     std::error_code EC;
685     sys::fs::OpenFlags Flags =
686         OutputAssembly ? sys::fs::OF_TextWithCRLF : sys::fs::OF_None;
687     Out.reset(new ToolOutputFile(OutputFilename, EC, Flags));
688     if (EC) {
689       errs() << EC.message() << '\n';
690       return 1;
691     }
692 
693     if (!ThinLinkBitcodeFile.empty()) {
694       ThinLinkOut.reset(
695           new ToolOutputFile(ThinLinkBitcodeFile, EC, sys::fs::OF_None));
696       if (EC) {
697         errs() << EC.message() << '\n';
698         return 1;
699       }
700     }
701   }
702 
703   Triple ModuleTriple(M->getTargetTriple());
704   std::string CPUStr, FeaturesStr;
705   TargetMachine *Machine = nullptr;
706   const TargetOptions Options =
707       codegen::InitTargetOptionsFromCodeGenFlags(ModuleTriple);
708 
709   if (ModuleTriple.getArch()) {
710     CPUStr = codegen::getCPUStr();
711     FeaturesStr = codegen::getFeaturesStr();
712     Machine = GetTargetMachine(ModuleTriple, CPUStr, FeaturesStr, Options);
713   } else if (ModuleTriple.getArchName() != "unknown" &&
714              ModuleTriple.getArchName() != "") {
715     errs() << argv[0] << ": unrecognized architecture '"
716            << ModuleTriple.getArchName() << "' provided.\n";
717     return 1;
718   }
719 
720   std::unique_ptr<TargetMachine> TM(Machine);
721 
722   // Override function attributes based on CPUStr, FeaturesStr, and command line
723   // flags.
724   codegen::setFunctionAttributes(CPUStr, FeaturesStr, *M);
725 
726   // If the output is set to be emitted to standard out, and standard out is a
727   // console, print out a warning message and refuse to do it.  We don't
728   // impress anyone by spewing tons of binary goo to a terminal.
729   if (!Force && !NoOutput && !AnalyzeOnly && !OutputAssembly)
730     if (CheckBitcodeOutputToConsole(Out->os()))
731       NoOutput = true;
732 
733   if (OutputThinLTOBC)
734     M->addModuleFlag(Module::Error, "EnableSplitLTOUnit", SplitLTOUnit);
735 
736   // Add an appropriate TargetLibraryInfo pass for the module's triple.
737   TargetLibraryInfoImpl TLII(ModuleTriple);
738 
739   // The -disable-simplify-libcalls flag actually disables all builtin optzns.
740   if (DisableSimplifyLibCalls)
741     TLII.disableAllFunctions();
742   else {
743     // Disable individual builtin functions in TargetLibraryInfo.
744     LibFunc F;
745     for (auto &FuncName : DisableBuiltins)
746       if (TLII.getLibFunc(FuncName, F))
747         TLII.setUnavailable(F);
748       else {
749         errs() << argv[0] << ": cannot disable nonexistent builtin function "
750                << FuncName << '\n';
751         return 1;
752       }
753   }
754 
755   // If `-passes=` is specified, use NPM.
756   // If `-enable-new-pm` is specified and there are no codegen passes, use NPM.
757   // e.g. `-enable-new-pm -sroa` will use NPM.
758   // but `-enable-new-pm -codegenprepare` will still revert to legacy PM.
759   if ((EnableNewPassManager && !shouldForceLegacyPM()) ||
760       PassPipeline.getNumOccurrences() > 0) {
761     if (AnalyzeOnly) {
762       errs() << "Cannot specify -analyze under new pass manager, either "
763                 "specify '-enable-new-pm=0', or use the corresponding new pass "
764                 "manager pass, e.g. '-passes=print<scalar-evolution>'. For a "
765                 "full list of passes, see the '--print-passes' flag.\n";
766       return 1;
767     }
768     if (legacy::debugPassSpecified()) {
769       errs()
770           << "-debug-pass does not work with the new PM, either use "
771              "-debug-pass-manager, or use the legacy PM (-enable-new-pm=0)\n";
772       return 1;
773     }
774     if (PassPipeline.getNumOccurrences() > 0 && PassList.size() > 0) {
775       errs()
776           << "Cannot specify passes via both -foo-pass and --passes=foo-pass\n";
777       return 1;
778     }
779     auto NumOLevel = OptLevelO0 + OptLevelO1 + OptLevelO2 + OptLevelO3 +
780                      OptLevelOs + OptLevelOz;
781     if (NumOLevel > 1) {
782       errs() << "Cannot specify multiple -O#\n";
783       return 1;
784     }
785     if (NumOLevel > 0 && PassPipeline.getNumOccurrences() > 0) {
786       errs() << "Cannot specify -O# and --passes=, use "
787                 "-passes='default<O#>,other-pass'\n";
788       return 1;
789     }
790     std::string Pipeline = PassPipeline;
791 
792     SmallVector<StringRef, 4> Passes;
793     if (OptLevelO0)
794       Pipeline = "default<O0>";
795     if (OptLevelO1)
796       Pipeline = "default<O1>";
797     if (OptLevelO2)
798       Pipeline = "default<O2>";
799     if (OptLevelO3)
800       Pipeline = "default<O3>";
801     if (OptLevelOs)
802       Pipeline = "default<Os>";
803     if (OptLevelOz)
804       Pipeline = "default<Oz>";
805     for (const auto &P : PassList)
806       Passes.push_back(P->getPassArgument());
807     OutputKind OK = OK_NoOutput;
808     if (!NoOutput)
809       OK = OutputAssembly
810                ? OK_OutputAssembly
811                : (OutputThinLTOBC ? OK_OutputThinLTOBitcode : OK_OutputBitcode);
812 
813     VerifierKind VK = VK_VerifyInAndOut;
814     if (NoVerify)
815       VK = VK_NoVerifier;
816     else if (VerifyEach)
817       VK = VK_VerifyEachPass;
818 
819     // The user has asked to use the new pass manager and provided a pipeline
820     // string. Hand off the rest of the functionality to the new code for that
821     // layer.
822     return runPassPipeline(argv[0], *M, TM.get(), &TLII, Out.get(),
823                            ThinLinkOut.get(), RemarksFile.get(), Pipeline,
824                            Passes, OK, VK, PreserveAssemblyUseListOrder,
825                            PreserveBitcodeUseListOrder, EmitSummaryIndex,
826                            EmitModuleHash, EnableDebugify)
827                ? 0
828                : 1;
829   }
830 
831   // Create a PassManager to hold and optimize the collection of passes we are
832   // about to build. If the -debugify-each option is set, wrap each pass with
833   // the (-check)-debugify passes.
834   DebugifyCustomPassManager Passes;
835   DebugifyStatsMap DIStatsMap;
836   DebugInfoPerPassMap DIPreservationMap;
837   if (DebugifyEach) {
838     Passes.setDebugifyMode(DebugifyMode::SyntheticDebugInfo);
839     Passes.setDIStatsMap(DIStatsMap);
840   } else if (VerifyEachDebugInfoPreserve) {
841     Passes.setDebugifyMode(DebugifyMode::OriginalDebugInfo);
842     Passes.setDIPreservationMap(DIPreservationMap);
843     if (!VerifyDIPreserveExport.empty())
844       Passes.setOrigDIVerifyBugsReportFilePath(VerifyDIPreserveExport);
845   }
846 
847   bool AddOneTimeDebugifyPasses =
848       (EnableDebugify && !DebugifyEach) ||
849       (VerifyDebugInfoPreserve && !VerifyEachDebugInfoPreserve);
850 
851   Passes.add(new TargetLibraryInfoWrapperPass(TLII));
852 
853   // Add internal analysis passes from the target machine.
854   Passes.add(createTargetTransformInfoWrapperPass(TM ? TM->getTargetIRAnalysis()
855                                                      : TargetIRAnalysis()));
856 
857   if (AddOneTimeDebugifyPasses) {
858     if (EnableDebugify) {
859       Passes.setDIStatsMap(DIStatsMap);
860       Passes.add(createDebugifyModulePass());
861     } else if (VerifyDebugInfoPreserve) {
862       Passes.setDIPreservationMap(DIPreservationMap);
863       Passes.add(createDebugifyModulePass(
864           DebugifyMode::OriginalDebugInfo, "",
865           &(Passes.getDebugInfoPerPassMap())));
866     }
867   }
868 
869   std::unique_ptr<legacy::FunctionPassManager> FPasses;
870   if (OptLevelO0 || OptLevelO1 || OptLevelO2 || OptLevelOs || OptLevelOz ||
871       OptLevelO3) {
872     FPasses.reset(new legacy::FunctionPassManager(M.get()));
873     FPasses->add(createTargetTransformInfoWrapperPass(
874         TM ? TM->getTargetIRAnalysis() : TargetIRAnalysis()));
875   }
876 
877   if (PrintBreakpoints) {
878     // Default to standard output.
879     if (!Out) {
880       if (OutputFilename.empty())
881         OutputFilename = "-";
882 
883       std::error_code EC;
884       Out = std::make_unique<ToolOutputFile>(OutputFilename, EC,
885                                               sys::fs::OF_None);
886       if (EC) {
887         errs() << EC.message() << '\n';
888         return 1;
889       }
890     }
891     Passes.add(createBreakpointPrinter(Out->os()));
892     NoOutput = true;
893   }
894 
895   if (TM) {
896     // FIXME: We should dyn_cast this when supported.
897     auto &LTM = static_cast<LLVMTargetMachine &>(*TM);
898     Pass *TPC = LTM.createPassConfig(Passes);
899     Passes.add(TPC);
900   }
901 
902   // Create a new optimization pass for each one specified on the command line
903   for (unsigned i = 0; i < PassList.size(); ++i) {
904     if (OptLevelO0 && OptLevelO0.getPosition() < PassList.getPosition(i)) {
905       AddOptimizationPasses(Passes, *FPasses, TM.get(), 0, 0);
906       OptLevelO0 = false;
907     }
908 
909     if (OptLevelO1 && OptLevelO1.getPosition() < PassList.getPosition(i)) {
910       AddOptimizationPasses(Passes, *FPasses, TM.get(), 1, 0);
911       OptLevelO1 = false;
912     }
913 
914     if (OptLevelO2 && OptLevelO2.getPosition() < PassList.getPosition(i)) {
915       AddOptimizationPasses(Passes, *FPasses, TM.get(), 2, 0);
916       OptLevelO2 = false;
917     }
918 
919     if (OptLevelOs && OptLevelOs.getPosition() < PassList.getPosition(i)) {
920       AddOptimizationPasses(Passes, *FPasses, TM.get(), 2, 1);
921       OptLevelOs = false;
922     }
923 
924     if (OptLevelOz && OptLevelOz.getPosition() < PassList.getPosition(i)) {
925       AddOptimizationPasses(Passes, *FPasses, TM.get(), 2, 2);
926       OptLevelOz = false;
927     }
928 
929     if (OptLevelO3 && OptLevelO3.getPosition() < PassList.getPosition(i)) {
930       AddOptimizationPasses(Passes, *FPasses, TM.get(), 3, 0);
931       OptLevelO3 = false;
932     }
933 
934     const PassInfo *PassInf = PassList[i];
935     Pass *P = nullptr;
936     if (PassInf->getNormalCtor())
937       P = PassInf->getNormalCtor()();
938     else
939       errs() << argv[0] << ": cannot create pass: "
940              << PassInf->getPassName() << "\n";
941     if (P) {
942       PassKind Kind = P->getPassKind();
943       addPass(Passes, P);
944 
945       if (AnalyzeOnly) {
946         switch (Kind) {
947         case PT_Region:
948           Passes.add(createRegionPassPrinter(PassInf, Out->os()));
949           break;
950         case PT_Loop:
951           Passes.add(createLoopPassPrinter(PassInf, Out->os()));
952           break;
953         case PT_Function:
954           Passes.add(createFunctionPassPrinter(PassInf, Out->os()));
955           break;
956         case PT_CallGraphSCC:
957           Passes.add(createCallGraphPassPrinter(PassInf, Out->os()));
958           break;
959         default:
960           Passes.add(createModulePassPrinter(PassInf, Out->os()));
961           break;
962         }
963       }
964     }
965   }
966 
967   if (OptLevelO0)
968     AddOptimizationPasses(Passes, *FPasses, TM.get(), 0, 0);
969 
970   if (OptLevelO1)
971     AddOptimizationPasses(Passes, *FPasses, TM.get(), 1, 0);
972 
973   if (OptLevelO2)
974     AddOptimizationPasses(Passes, *FPasses, TM.get(), 2, 0);
975 
976   if (OptLevelOs)
977     AddOptimizationPasses(Passes, *FPasses, TM.get(), 2, 1);
978 
979   if (OptLevelOz)
980     AddOptimizationPasses(Passes, *FPasses, TM.get(), 2, 2);
981 
982   if (OptLevelO3)
983     AddOptimizationPasses(Passes, *FPasses, TM.get(), 3, 0);
984 
985   if (FPasses) {
986     FPasses->doInitialization();
987     for (Function &F : *M)
988       FPasses->run(F);
989     FPasses->doFinalization();
990   }
991 
992   // Check that the module is well formed on completion of optimization
993   if (!NoVerify && !VerifyEach)
994     Passes.add(createVerifierPass());
995 
996   if (AddOneTimeDebugifyPasses) {
997     if (EnableDebugify)
998       Passes.add(createCheckDebugifyModulePass(false));
999     else if (VerifyDebugInfoPreserve) {
1000       if (!VerifyDIPreserveExport.empty())
1001         Passes.setOrigDIVerifyBugsReportFilePath(VerifyDIPreserveExport);
1002       Passes.add(createCheckDebugifyModulePass(
1003           false, "", nullptr, DebugifyMode::OriginalDebugInfo,
1004           &(Passes.getDebugInfoPerPassMap()), VerifyDIPreserveExport));
1005     }
1006   }
1007 
1008   // In run twice mode, we want to make sure the output is bit-by-bit
1009   // equivalent if we run the pass manager again, so setup two buffers and
1010   // a stream to write to them. Note that llc does something similar and it
1011   // may be worth to abstract this out in the future.
1012   SmallVector<char, 0> Buffer;
1013   SmallVector<char, 0> FirstRunBuffer;
1014   std::unique_ptr<raw_svector_ostream> BOS;
1015   raw_ostream *OS = nullptr;
1016 
1017   const bool ShouldEmitOutput = !NoOutput && !AnalyzeOnly;
1018 
1019   // Write bitcode or assembly to the output as the last step...
1020   if (ShouldEmitOutput || RunTwice) {
1021     assert(Out);
1022     OS = &Out->os();
1023     if (RunTwice) {
1024       BOS = std::make_unique<raw_svector_ostream>(Buffer);
1025       OS = BOS.get();
1026     }
1027     if (OutputAssembly) {
1028       if (EmitSummaryIndex)
1029         report_fatal_error("Text output is incompatible with -module-summary");
1030       if (EmitModuleHash)
1031         report_fatal_error("Text output is incompatible with -module-hash");
1032       Passes.add(createPrintModulePass(*OS, "", PreserveAssemblyUseListOrder));
1033     } else if (OutputThinLTOBC)
1034       Passes.add(createWriteThinLTOBitcodePass(
1035           *OS, ThinLinkOut ? &ThinLinkOut->os() : nullptr));
1036     else
1037       Passes.add(createBitcodeWriterPass(*OS, PreserveBitcodeUseListOrder,
1038                                          EmitSummaryIndex, EmitModuleHash));
1039   }
1040 
1041   // Before executing passes, print the final values of the LLVM options.
1042   cl::PrintOptionValues();
1043 
1044   if (!RunTwice) {
1045     // Now that we have all of the passes ready, run them.
1046     Passes.run(*M);
1047   } else {
1048     // If requested, run all passes twice with the same pass manager to catch
1049     // bugs caused by persistent state in the passes.
1050     std::unique_ptr<Module> M2(CloneModule(*M));
1051     // Run all passes on the original module first, so the second run processes
1052     // the clone to catch CloneModule bugs.
1053     Passes.run(*M);
1054     FirstRunBuffer = Buffer;
1055     Buffer.clear();
1056 
1057     Passes.run(*M2);
1058 
1059     // Compare the two outputs and make sure they're the same
1060     assert(Out);
1061     if (Buffer.size() != FirstRunBuffer.size() ||
1062         (memcmp(Buffer.data(), FirstRunBuffer.data(), Buffer.size()) != 0)) {
1063       errs()
1064           << "Running the pass manager twice changed the output.\n"
1065              "Writing the result of the second run to the specified output.\n"
1066              "To generate the one-run comparison binary, just run without\n"
1067              "the compile-twice option\n";
1068       if (ShouldEmitOutput) {
1069         Out->os() << BOS->str();
1070         Out->keep();
1071       }
1072       if (RemarksFile)
1073         RemarksFile->keep();
1074       return 1;
1075     }
1076     if (ShouldEmitOutput)
1077       Out->os() << BOS->str();
1078   }
1079 
1080   if (DebugifyEach && !DebugifyExport.empty())
1081     exportDebugifyStats(DebugifyExport, Passes.getDebugifyStatsMap());
1082 
1083   // Declare success.
1084   if (!NoOutput || PrintBreakpoints)
1085     Out->keep();
1086 
1087   if (RemarksFile)
1088     RemarksFile->keep();
1089 
1090   if (ThinLinkOut)
1091     ThinLinkOut->keep();
1092 
1093   return 0;
1094 }
1095