xref: /llvm-project-15.0.7/lld/COFF/ICF.cpp (revision bacf751a)
1 //===- ICF.cpp ------------------------------------------------------------===//
2 //
3 //                             The LLVM Linker
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // ICF is short for Identical Code Folding. That is a size optimization to
11 // identify and merge two or more read-only sections (typically functions)
12 // that happened to have the same contents. It usually reduces output size
13 // by a few percent.
14 //
15 // On Windows, ICF is enabled by default.
16 //
17 // See ELF/ICF.cpp for the details about the algortihm.
18 //
19 //===----------------------------------------------------------------------===//
20 
21 #include "ICF.h"
22 #include "Chunks.h"
23 #include "Symbols.h"
24 #include "lld/Common/ErrorHandler.h"
25 #include "lld/Common/Timer.h"
26 #include "llvm/ADT/Hashing.h"
27 #include "llvm/Support/Debug.h"
28 #include "llvm/Support/Parallel.h"
29 #include "llvm/Support/raw_ostream.h"
30 #include "llvm/Support/xxhash.h"
31 #include <algorithm>
32 #include <atomic>
33 #include <vector>
34 
35 using namespace llvm;
36 
37 namespace lld {
38 namespace coff {
39 
40 static Timer ICFTimer("ICF", Timer::root());
41 
42 class ICF {
43 public:
44   void run(ArrayRef<Chunk *> V);
45 
46 private:
47   void segregate(size_t Begin, size_t End, bool Constant);
48 
49   bool assocEquals(const SectionChunk *A, const SectionChunk *B);
50 
51   bool equalsConstant(const SectionChunk *A, const SectionChunk *B);
52   bool equalsVariable(const SectionChunk *A, const SectionChunk *B);
53 
54   uint32_t getHash(SectionChunk *C);
55   bool isEligible(SectionChunk *C);
56 
57   size_t findBoundary(size_t Begin, size_t End);
58 
59   void forEachClassRange(size_t Begin, size_t End,
60                          std::function<void(size_t, size_t)> Fn);
61 
62   void forEachClass(std::function<void(size_t, size_t)> Fn);
63 
64   std::vector<SectionChunk *> Chunks;
65   int Cnt = 0;
66   std::atomic<bool> Repeat = {false};
67 };
68 
69 // Returns true if section S is subject of ICF.
70 //
71 // Microsoft's documentation
72 // (https://msdn.microsoft.com/en-us/library/bxwfs976.aspx; visited April
73 // 2017) says that /opt:icf folds both functions and read-only data.
74 // Despite that, the MSVC linker folds only functions. We found
75 // a few instances of programs that are not safe for data merging.
76 // Therefore, we merge only functions just like the MSVC tool. However, we also
77 // merge read-only sections in a couple of cases where the address of the
78 // section is insignificant to the user program and the behaviour matches that
79 // of the Visual C++ linker.
80 bool ICF::isEligible(SectionChunk *C) {
81   // Non-comdat chunks, dead chunks, and writable chunks are not elegible.
82   bool Writable = C->getOutputCharacteristics() & llvm::COFF::IMAGE_SCN_MEM_WRITE;
83   if (!C->isCOMDAT() || !C->Live || Writable)
84     return false;
85 
86   // Code sections are eligible.
87   if (C->getOutputCharacteristics() & llvm::COFF::IMAGE_SCN_MEM_EXECUTE)
88     return true;
89 
90   // .pdata and .xdata unwind info sections are eligible.
91   StringRef OutSecName = C->getSectionName().split('$').first;
92   if (OutSecName == ".pdata" || OutSecName == ".xdata")
93     return true;
94 
95   // So are vtables.
96   if (C->Sym && C->Sym->getName().startswith("??_7"))
97     return true;
98 
99   // Anything else not in an address-significance table is eligible.
100   return !C->KeepUnique;
101 }
102 
103 // Split an equivalence class into smaller classes.
104 void ICF::segregate(size_t Begin, size_t End, bool Constant) {
105   while (Begin < End) {
106     // Divide [Begin, End) into two. Let Mid be the start index of the
107     // second group.
108     auto Bound = std::stable_partition(
109         Chunks.begin() + Begin + 1, Chunks.begin() + End, [&](SectionChunk *S) {
110           if (Constant)
111             return equalsConstant(Chunks[Begin], S);
112           return equalsVariable(Chunks[Begin], S);
113         });
114     size_t Mid = Bound - Chunks.begin();
115 
116     // Split [Begin, End) into [Begin, Mid) and [Mid, End). We use Mid as an
117     // equivalence class ID because every group ends with a unique index.
118     for (size_t I = Begin; I < Mid; ++I)
119       Chunks[I]->Class[(Cnt + 1) % 2] = Mid;
120 
121     // If we created a group, we need to iterate the main loop again.
122     if (Mid != End)
123       Repeat = true;
124 
125     Begin = Mid;
126   }
127 }
128 
129 // Returns true if two sections' associative children are equal.
130 bool ICF::assocEquals(const SectionChunk *A, const SectionChunk *B) {
131   auto ChildClasses = [&](const SectionChunk *SC) {
132     std::vector<uint32_t> Classes;
133     for (const SectionChunk *C : SC->children())
134       if (!C->SectionName.startswith(".debug") &&
135           C->SectionName != ".gfids$y" && C->SectionName != ".gljmp$y")
136         Classes.push_back(C->Class[Cnt % 2]);
137     return Classes;
138   };
139   return ChildClasses(A) == ChildClasses(B);
140 }
141 
142 // Compare "non-moving" part of two sections, namely everything
143 // except relocation targets.
144 bool ICF::equalsConstant(const SectionChunk *A, const SectionChunk *B) {
145   if (A->Relocs.size() != B->Relocs.size())
146     return false;
147 
148   // Compare relocations.
149   auto Eq = [&](const coff_relocation &R1, const coff_relocation &R2) {
150     if (R1.Type != R2.Type ||
151         R1.VirtualAddress != R2.VirtualAddress) {
152       return false;
153     }
154     Symbol *B1 = A->File->getSymbol(R1.SymbolTableIndex);
155     Symbol *B2 = B->File->getSymbol(R2.SymbolTableIndex);
156     if (B1 == B2)
157       return true;
158     if (auto *D1 = dyn_cast<DefinedRegular>(B1))
159       if (auto *D2 = dyn_cast<DefinedRegular>(B2))
160         return D1->getValue() == D2->getValue() &&
161                D1->getChunk()->Class[Cnt % 2] == D2->getChunk()->Class[Cnt % 2];
162     return false;
163   };
164   if (!std::equal(A->Relocs.begin(), A->Relocs.end(), B->Relocs.begin(), Eq))
165     return false;
166 
167   // Compare section attributes and contents.
168   return A->getOutputCharacteristics() == B->getOutputCharacteristics() &&
169          A->SectionName == B->SectionName &&
170          A->Header->SizeOfRawData == B->Header->SizeOfRawData &&
171          A->Checksum == B->Checksum && A->getContents() == B->getContents() &&
172          assocEquals(A, B);
173 }
174 
175 // Compare "moving" part of two sections, namely relocation targets.
176 bool ICF::equalsVariable(const SectionChunk *A, const SectionChunk *B) {
177   // Compare relocations.
178   auto Eq = [&](const coff_relocation &R1, const coff_relocation &R2) {
179     Symbol *B1 = A->File->getSymbol(R1.SymbolTableIndex);
180     Symbol *B2 = B->File->getSymbol(R2.SymbolTableIndex);
181     if (B1 == B2)
182       return true;
183     if (auto *D1 = dyn_cast<DefinedRegular>(B1))
184       if (auto *D2 = dyn_cast<DefinedRegular>(B2))
185         return D1->getChunk()->Class[Cnt % 2] == D2->getChunk()->Class[Cnt % 2];
186     return false;
187   };
188   return std::equal(A->Relocs.begin(), A->Relocs.end(), B->Relocs.begin(),
189                     Eq) &&
190          assocEquals(A, B);
191 }
192 
193 // Find the first Chunk after Begin that has a different class from Begin.
194 size_t ICF::findBoundary(size_t Begin, size_t End) {
195   for (size_t I = Begin + 1; I < End; ++I)
196     if (Chunks[Begin]->Class[Cnt % 2] != Chunks[I]->Class[Cnt % 2])
197       return I;
198   return End;
199 }
200 
201 void ICF::forEachClassRange(size_t Begin, size_t End,
202                             std::function<void(size_t, size_t)> Fn) {
203   while (Begin < End) {
204     size_t Mid = findBoundary(Begin, End);
205     Fn(Begin, Mid);
206     Begin = Mid;
207   }
208 }
209 
210 // Call Fn on each class group.
211 void ICF::forEachClass(std::function<void(size_t, size_t)> Fn) {
212   // If the number of sections are too small to use threading,
213   // call Fn sequentially.
214   if (Chunks.size() < 1024) {
215     forEachClassRange(0, Chunks.size(), Fn);
216     ++Cnt;
217     return;
218   }
219 
220   // Shard into non-overlapping intervals, and call Fn in parallel.
221   // The sharding must be completed before any calls to Fn are made
222   // so that Fn can modify the Chunks in its shard without causing data
223   // races.
224   const size_t NumShards = 256;
225   size_t Step = Chunks.size() / NumShards;
226   size_t Boundaries[NumShards + 1];
227   Boundaries[0] = 0;
228   Boundaries[NumShards] = Chunks.size();
229   for_each_n(parallel::par, size_t(1), NumShards, [&](size_t I) {
230     Boundaries[I] = findBoundary((I - 1) * Step, Chunks.size());
231   });
232   for_each_n(parallel::par, size_t(1), NumShards + 1, [&](size_t I) {
233     if (Boundaries[I - 1] < Boundaries[I]) {
234       forEachClassRange(Boundaries[I - 1], Boundaries[I], Fn);
235     }
236   });
237   ++Cnt;
238 }
239 
240 // Merge identical COMDAT sections.
241 // Two sections are considered the same if their section headers,
242 // contents and relocations are all the same.
243 void ICF::run(ArrayRef<Chunk *> Vec) {
244   ScopedTimer T(ICFTimer);
245 
246   // Collect only mergeable sections and group by hash value.
247   uint32_t NextId = 1;
248   for (Chunk *C : Vec) {
249     if (auto *SC = dyn_cast<SectionChunk>(C)) {
250       if (isEligible(SC))
251         Chunks.push_back(SC);
252       else
253         SC->Class[0] = NextId++;
254     }
255   }
256 
257   // Make sure that ICF doesn't merge sections that are being handled by string
258   // tail merging.
259   for (auto &P : MergeChunk::Instances)
260     for (SectionChunk *SC : P.second->Sections)
261       SC->Class[0] = NextId++;
262 
263   // Initially, we use hash values to partition sections.
264   for_each(parallel::par, Chunks.begin(), Chunks.end(), [&](SectionChunk *SC) {
265     // Set MSB to 1 to avoid collisions with non-hash classs.
266     SC->Class[0] = xxHash64(SC->getContents()) | (1 << 31);
267   });
268 
269   // From now on, sections in Chunks are ordered so that sections in
270   // the same group are consecutive in the vector.
271   std::stable_sort(Chunks.begin(), Chunks.end(),
272                    [](SectionChunk *A, SectionChunk *B) {
273                      return A->Class[0] < B->Class[0];
274                    });
275 
276   // Compare static contents and assign unique IDs for each static content.
277   forEachClass([&](size_t Begin, size_t End) { segregate(Begin, End, true); });
278 
279   // Split groups by comparing relocations until convergence is obtained.
280   do {
281     Repeat = false;
282     forEachClass(
283         [&](size_t Begin, size_t End) { segregate(Begin, End, false); });
284   } while (Repeat);
285 
286   log("ICF needed " + Twine(Cnt) + " iterations");
287 
288   // Merge sections in the same classs.
289   forEachClass([&](size_t Begin, size_t End) {
290     if (End - Begin == 1)
291       return;
292 
293     log("Selected " + Chunks[Begin]->getDebugName());
294     for (size_t I = Begin + 1; I < End; ++I) {
295       log("  Removed " + Chunks[I]->getDebugName());
296       Chunks[Begin]->replace(Chunks[I]);
297     }
298   });
299 }
300 
301 // Entry point to ICF.
302 void doICF(ArrayRef<Chunk *> Chunks) { ICF().run(Chunks); }
303 
304 } // namespace coff
305 } // namespace lld
306