xref: /freebsd/contrib/llvm-project/lld/MachO/LTO.cpp (revision 81ad6265)
1 //===- LTO.cpp ------------------------------------------------------------===//
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 #include "LTO.h"
10 #include "Config.h"
11 #include "Driver.h"
12 #include "InputFiles.h"
13 #include "Symbols.h"
14 #include "Target.h"
15 
16 #include "lld/Common/Args.h"
17 #include "lld/Common/CommonLinkerContext.h"
18 #include "lld/Common/Strings.h"
19 #include "lld/Common/TargetOptionsCommandFlags.h"
20 #include "llvm/LTO/Config.h"
21 #include "llvm/LTO/LTO.h"
22 #include "llvm/Support/Caching.h"
23 #include "llvm/Support/FileSystem.h"
24 #include "llvm/Support/Path.h"
25 #include "llvm/Support/raw_ostream.h"
26 #include "llvm/Transforms/ObjCARC.h"
27 
28 using namespace lld;
29 using namespace lld::macho;
30 using namespace llvm;
31 using namespace llvm::MachO;
32 using namespace llvm::sys;
33 
34 static lto::Config createConfig() {
35   lto::Config c;
36   c.Options = initTargetOptionsFromCodeGenFlags();
37   c.Options.EmitAddrsig = config->icfLevel == ICFLevel::safe;
38   c.CodeModel = getCodeModelFromCMModel();
39   c.CPU = getCPUStr();
40   c.MAttrs = getMAttrs();
41   c.DiagHandler = diagnosticHandler;
42   c.PreCodeGenPassesHook = [](legacy::PassManager &pm) {
43     pm.add(createObjCARCContractPass());
44   };
45   c.TimeTraceEnabled = config->timeTraceEnabled;
46   c.TimeTraceGranularity = config->timeTraceGranularity;
47   c.OptLevel = config->ltoo;
48   c.CGOptLevel = args::getCGOptLevel(config->ltoo);
49   if (config->saveTemps)
50     checkError(c.addSaveTemps(config->outputFile.str() + ".",
51                               /*UseInputModulePath=*/true));
52   return c;
53 }
54 
55 BitcodeCompiler::BitcodeCompiler() {
56   lto::ThinBackend backend = lto::createInProcessThinBackend(
57       heavyweight_hardware_concurrency(config->thinLTOJobs));
58   ltoObj = std::make_unique<lto::LTO>(createConfig(), backend);
59 }
60 
61 void BitcodeCompiler::add(BitcodeFile &f) {
62   ArrayRef<lto::InputFile::Symbol> objSyms = f.obj->symbols();
63   std::vector<lto::SymbolResolution> resols;
64   resols.reserve(objSyms.size());
65 
66   // Provide a resolution to the LTO API for each symbol.
67   bool exportDynamic =
68       config->outputType != MH_EXECUTE || config->exportDynamic;
69   auto symIt = f.symbols.begin();
70   for (const lto::InputFile::Symbol &objSym : objSyms) {
71     resols.emplace_back();
72     lto::SymbolResolution &r = resols.back();
73     Symbol *sym = *symIt++;
74 
75     // Ideally we shouldn't check for SF_Undefined but currently IRObjectFile
76     // reports two symbols for module ASM defined. Without this check, lld
77     // flags an undefined in IR with a definition in ASM as prevailing.
78     // Once IRObjectFile is fixed to report only one symbol this hack can
79     // be removed.
80     r.Prevailing = !objSym.isUndefined() && sym->getFile() == &f;
81 
82     if (const auto *defined = dyn_cast<Defined>(sym)) {
83       r.ExportDynamic =
84           defined->isExternal() && !defined->privateExtern && exportDynamic;
85       r.FinalDefinitionInLinkageUnit =
86           !defined->isExternalWeakDef() && !defined->interposable;
87     } else if (const auto *common = dyn_cast<CommonSymbol>(sym)) {
88       r.ExportDynamic = !common->privateExtern && exportDynamic;
89       r.FinalDefinitionInLinkageUnit = true;
90     }
91 
92     r.VisibleToRegularObj =
93         sym->isUsedInRegularObj || (r.Prevailing && r.ExportDynamic);
94 
95     // Un-define the symbol so that we don't get duplicate symbol errors when we
96     // load the ObjFile emitted by LTO compilation.
97     if (r.Prevailing)
98       replaceSymbol<Undefined>(sym, sym->getName(), sym->getFile(),
99                                RefState::Strong);
100 
101     // TODO: set the other resolution configs properly
102   }
103   checkError(ltoObj->add(std::move(f.obj), resols));
104 }
105 
106 // Merge all the bitcode files we have seen, codegen the result
107 // and return the resulting ObjectFile(s).
108 std::vector<ObjFile *> BitcodeCompiler::compile() {
109   unsigned maxTasks = ltoObj->getMaxTasks();
110   buf.resize(maxTasks);
111   files.resize(maxTasks);
112 
113   // The -cache_path_lto option specifies the path to a directory in which
114   // to cache native object files for ThinLTO incremental builds. If a path was
115   // specified, configure LTO to use it as the cache directory.
116   FileCache cache;
117   if (!config->thinLTOCacheDir.empty())
118     cache =
119         check(localCache("ThinLTO", "Thin", config->thinLTOCacheDir,
120                          [&](size_t task, std::unique_ptr<MemoryBuffer> mb) {
121                            files[task] = std::move(mb);
122                          }));
123 
124   checkError(ltoObj->run(
125       [&](size_t task) {
126         return std::make_unique<CachedFileStream>(
127             std::make_unique<raw_svector_ostream>(buf[task]));
128       },
129       cache));
130 
131   if (!config->thinLTOCacheDir.empty())
132     pruneCache(config->thinLTOCacheDir, config->thinLTOCachePolicy);
133 
134   if (config->saveTemps) {
135     if (!buf[0].empty())
136       saveBuffer(buf[0], config->outputFile + ".lto.o");
137     for (unsigned i = 1; i != maxTasks; ++i)
138       saveBuffer(buf[i], config->outputFile + Twine(i) + ".lto.o");
139   }
140 
141   if (!config->ltoObjPath.empty())
142     fs::create_directories(config->ltoObjPath);
143 
144   std::vector<ObjFile *> ret;
145   for (unsigned i = 0; i != maxTasks; ++i) {
146     if (buf[i].empty())
147       continue;
148     SmallString<261> filePath("/tmp/lto.tmp");
149     uint32_t modTime = 0;
150     if (!config->ltoObjPath.empty()) {
151       filePath = config->ltoObjPath;
152       path::append(filePath, Twine(i) + "." +
153                                  getArchitectureName(config->arch()) +
154                                  ".lto.o");
155       saveBuffer(buf[i], filePath);
156       modTime = getModTime(filePath);
157     }
158     ret.push_back(make<ObjFile>(
159         MemoryBufferRef(buf[i], saver().save(filePath.str())), modTime, ""));
160   }
161   for (std::unique_ptr<MemoryBuffer> &file : files)
162     if (file)
163       ret.push_back(make<ObjFile>(*file, 0, ""));
164   return ret;
165 }
166