xref: /llvm-project-15.0.7/lld/ELF/ICF.cpp (revision c98ec609)
1 //===- ICF.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 // ICF is short for Identical Code Folding. This is a size optimization to
10 // identify and merge two or more read-only sections (typically functions)
11 // that happened to have the same contents. It usually reduces output size
12 // by a few percent.
13 //
14 // In ICF, two sections are considered identical if they have the same
15 // section flags, section data, and relocations. Relocations are tricky,
16 // because two relocations are considered the same if they have the same
17 // relocation types, values, and if they point to the same sections *in
18 // terms of ICF*.
19 //
20 // Here is an example. If foo and bar defined below are compiled to the
21 // same machine instructions, ICF can and should merge the two, although
22 // their relocations point to each other.
23 //
24 //   void foo() { bar(); }
25 //   void bar() { foo(); }
26 //
27 // If you merge the two, their relocations point to the same section and
28 // thus you know they are mergeable, but how do you know they are
29 // mergeable in the first place? This is not an easy problem to solve.
30 //
31 // What we are doing in LLD is to partition sections into equivalence
32 // classes. Sections in the same equivalence class when the algorithm
33 // terminates are considered identical. Here are details:
34 //
35 // 1. First, we partition sections using their hash values as keys. Hash
36 //    values contain section types, section contents and numbers of
37 //    relocations. During this step, relocation targets are not taken into
38 //    account. We just put sections that apparently differ into different
39 //    equivalence classes.
40 //
41 // 2. Next, for each equivalence class, we visit sections to compare
42 //    relocation targets. Relocation targets are considered equivalent if
43 //    their targets are in the same equivalence class. Sections with
44 //    different relocation targets are put into different equivalence
45 //    clases.
46 //
47 // 3. If we split an equivalence class in step 2, two relocations
48 //    previously target the same equivalence class may now target
49 //    different equivalence classes. Therefore, we repeat step 2 until a
50 //    convergence is obtained.
51 //
52 // 4. For each equivalence class C, pick an arbitrary section in C, and
53 //    merge all the other sections in C with it.
54 //
55 // For small programs, this algorithm needs 3-5 iterations. For large
56 // programs such as Chromium, it takes more than 20 iterations.
57 //
58 // This algorithm was mentioned as an "optimistic algorithm" in [1],
59 // though gold implements a different algorithm than this.
60 //
61 // We parallelize each step so that multiple threads can work on different
62 // equivalence classes concurrently. That gave us a large performance
63 // boost when applying ICF on large programs. For example, MSVC link.exe
64 // or GNU gold takes 10-20 seconds to apply ICF on Chromium, whose output
65 // size is about 1.5 GB, but LLD can finish it in less than 2 seconds on a
66 // 2.8 GHz 40 core machine. Even without threading, LLD's ICF is still
67 // faster than MSVC or gold though.
68 //
69 // [1] Safe ICF: Pointer Safe and Unwinding aware Identical Code Folding
70 // in the Gold Linker
71 // http://static.googleusercontent.com/media/research.google.com/en//pubs/archive/36912.pdf
72 //
73 //===----------------------------------------------------------------------===//
74 
75 #include "ICF.h"
76 #include "Config.h"
77 #include "LinkerScript.h"
78 #include "OutputSections.h"
79 #include "SymbolTable.h"
80 #include "Symbols.h"
81 #include "SyntheticSections.h"
82 #include "Writer.h"
83 #include "lld/Common/Threads.h"
84 #include "llvm/ADT/StringExtras.h"
85 #include "llvm/BinaryFormat/ELF.h"
86 #include "llvm/Object/ELF.h"
87 #include "llvm/Support/xxhash.h"
88 #include <algorithm>
89 #include <atomic>
90 
91 using namespace lld;
92 using namespace lld::elf;
93 using namespace llvm;
94 using namespace llvm::ELF;
95 using namespace llvm::object;
96 
97 namespace {
98 template <class ELFT> class ICF {
99 public:
100   void run();
101 
102 private:
103   void segregate(size_t begin, size_t end, bool constant);
104 
105   template <class RelTy>
106   bool constantEq(const InputSection *a, ArrayRef<RelTy> relsA,
107                   const InputSection *b, ArrayRef<RelTy> relsB);
108 
109   template <class RelTy>
110   bool variableEq(const InputSection *a, ArrayRef<RelTy> relsA,
111                   const InputSection *b, ArrayRef<RelTy> relsB);
112 
113   bool equalsConstant(const InputSection *a, const InputSection *b);
114   bool equalsVariable(const InputSection *a, const InputSection *b);
115 
116   size_t findBoundary(size_t begin, size_t end);
117 
118   void forEachClassRange(size_t begin, size_t end,
119                          llvm::function_ref<void(size_t, size_t)> fn);
120 
121   void forEachClass(llvm::function_ref<void(size_t, size_t)> fn);
122 
123   std::vector<InputSection *> sections;
124 
125   // We repeat the main loop while `Repeat` is true.
126   std::atomic<bool> repeat;
127 
128   // The main loop counter.
129   int cnt = 0;
130 
131   // We have two locations for equivalence classes. On the first iteration
132   // of the main loop, Class[0] has a valid value, and Class[1] contains
133   // garbage. We read equivalence classes from slot 0 and write to slot 1.
134   // So, Class[0] represents the current class, and Class[1] represents
135   // the next class. On each iteration, we switch their roles and use them
136   // alternately.
137   //
138   // Why are we doing this? Recall that other threads may be working on
139   // other equivalence classes in parallel. They may read sections that we
140   // are updating. We cannot update equivalence classes in place because
141   // it breaks the invariance that all possibly-identical sections must be
142   // in the same equivalence class at any moment. In other words, the for
143   // loop to update equivalence classes is not atomic, and that is
144   // observable from other threads. By writing new classes to other
145   // places, we can keep the invariance.
146   //
147   // Below, `Current` has the index of the current class, and `Next` has
148   // the index of the next class. If threading is enabled, they are either
149   // (0, 1) or (1, 0).
150   //
151   // Note on single-thread: if that's the case, they are always (0, 0)
152   // because we can safely read the next class without worrying about race
153   // conditions. Using the same location makes this algorithm converge
154   // faster because it uses results of the same iteration earlier.
155   int current = 0;
156   int next = 0;
157 };
158 }
159 
160 // Returns true if section S is subject of ICF.
161 static bool isEligible(InputSection *s) {
162   if (!s->isLive() || s->keepUnique || !(s->flags & SHF_ALLOC))
163     return false;
164 
165   // Don't merge writable sections. .data.rel.ro sections are marked as writable
166   // but are semantically read-only.
167   if ((s->flags & SHF_WRITE) && s->name != ".data.rel.ro" &&
168       !s->name.startswith(".data.rel.ro."))
169     return false;
170 
171   // SHF_LINK_ORDER sections are ICF'd as a unit with their dependent sections,
172   // so we don't consider them for ICF individually.
173   if (s->flags & SHF_LINK_ORDER)
174     return false;
175 
176   // Don't merge synthetic sections as their Data member is not valid and empty.
177   // The Data member needs to be valid for ICF as it is used by ICF to determine
178   // the equality of section contents.
179   if (isa<SyntheticSection>(s))
180     return false;
181 
182   // .init and .fini contains instructions that must be executed to initialize
183   // and finalize the process. They cannot and should not be merged.
184   if (s->name == ".init" || s->name == ".fini")
185     return false;
186 
187   // A user program may enumerate sections named with a C identifier using
188   // __start_* and __stop_* symbols. We cannot ICF any such sections because
189   // that could change program semantics.
190   if (isValidCIdentifier(s->name))
191     return false;
192 
193   return true;
194 }
195 
196 // Split an equivalence class into smaller classes.
197 template <class ELFT>
198 void ICF<ELFT>::segregate(size_t begin, size_t end, bool constant) {
199   // This loop rearranges sections in [Begin, End) so that all sections
200   // that are equal in terms of equals{Constant,Variable} are contiguous
201   // in [Begin, End).
202   //
203   // The algorithm is quadratic in the worst case, but that is not an
204   // issue in practice because the number of the distinct sections in
205   // each range is usually very small.
206 
207   while (begin < end) {
208     // Divide [Begin, End) into two. Let Mid be the start index of the
209     // second group.
210     auto bound =
211         std::stable_partition(sections.begin() + begin + 1,
212                               sections.begin() + end, [&](InputSection *s) {
213                                 if (constant)
214                                   return equalsConstant(sections[begin], s);
215                                 return equalsVariable(sections[begin], s);
216                               });
217     size_t mid = bound - sections.begin();
218 
219     // Now we split [Begin, End) into [Begin, Mid) and [Mid, End) by
220     // updating the sections in [Begin, Mid). We use Mid as an equivalence
221     // class ID because every group ends with a unique index.
222     for (size_t i = begin; i < mid; ++i)
223       sections[i]->eqClass[next] = mid;
224 
225     // If we created a group, we need to iterate the main loop again.
226     if (mid != end)
227       repeat = true;
228 
229     begin = mid;
230   }
231 }
232 
233 // Compare two lists of relocations.
234 template <class ELFT>
235 template <class RelTy>
236 bool ICF<ELFT>::constantEq(const InputSection *secA, ArrayRef<RelTy> ra,
237                            const InputSection *secB, ArrayRef<RelTy> rb) {
238   for (size_t i = 0; i < ra.size(); ++i) {
239     if (ra[i].r_offset != rb[i].r_offset ||
240         ra[i].getType(config->isMips64EL) != rb[i].getType(config->isMips64EL))
241       return false;
242 
243     uint64_t addA = getAddend<ELFT>(ra[i]);
244     uint64_t addB = getAddend<ELFT>(rb[i]);
245 
246     Symbol &sa = secA->template getFile<ELFT>()->getRelocTargetSym(ra[i]);
247     Symbol &sb = secB->template getFile<ELFT>()->getRelocTargetSym(rb[i]);
248     if (&sa == &sb) {
249       if (addA == addB)
250         continue;
251       return false;
252     }
253 
254     auto *da = dyn_cast<Defined>(&sa);
255     auto *db = dyn_cast<Defined>(&sb);
256 
257     // Placeholder symbols generated by linker scripts look the same now but
258     // may have different values later.
259     if (!da || !db || da->scriptDefined || db->scriptDefined)
260       return false;
261 
262     // Relocations referring to absolute symbols are constant-equal if their
263     // values are equal.
264     if (!da->section && !db->section && da->value + addA == db->value + addB)
265       continue;
266     if (!da->section || !db->section)
267       return false;
268 
269     if (da->section->kind() != db->section->kind())
270       return false;
271 
272     // Relocations referring to InputSections are constant-equal if their
273     // section offsets are equal.
274     if (isa<InputSection>(da->section)) {
275       if (da->value + addA == db->value + addB)
276         continue;
277       return false;
278     }
279 
280     // Relocations referring to MergeInputSections are constant-equal if their
281     // offsets in the output section are equal.
282     auto *x = dyn_cast<MergeInputSection>(da->section);
283     if (!x)
284       return false;
285     auto *y = cast<MergeInputSection>(db->section);
286     if (x->getParent() != y->getParent())
287       return false;
288 
289     uint64_t offsetA =
290         sa.isSection() ? x->getOffset(addA) : x->getOffset(da->value) + addA;
291     uint64_t offsetB =
292         sb.isSection() ? y->getOffset(addB) : y->getOffset(db->value) + addB;
293     if (offsetA != offsetB)
294       return false;
295   }
296 
297   return true;
298 }
299 
300 // Compare "non-moving" part of two InputSections, namely everything
301 // except relocation targets.
302 template <class ELFT>
303 bool ICF<ELFT>::equalsConstant(const InputSection *a, const InputSection *b) {
304   if (a->numRelocations != b->numRelocations || a->flags != b->flags ||
305       a->getSize() != b->getSize() || a->data() != b->data())
306     return false;
307 
308   // If two sections have different output sections, we cannot merge them.
309   assert(a->getParent() && b->getParent());
310   if (a->getParent() != b->getParent())
311     return false;
312 
313   if (a->areRelocsRela)
314     return constantEq(a, a->template relas<ELFT>(), b,
315                       b->template relas<ELFT>());
316   return constantEq(a, a->template rels<ELFT>(), b, b->template rels<ELFT>());
317 }
318 
319 // Compare two lists of relocations. Returns true if all pairs of
320 // relocations point to the same section in terms of ICF.
321 template <class ELFT>
322 template <class RelTy>
323 bool ICF<ELFT>::variableEq(const InputSection *secA, ArrayRef<RelTy> ra,
324                            const InputSection *secB, ArrayRef<RelTy> rb) {
325   assert(ra.size() == rb.size());
326 
327   for (size_t i = 0; i < ra.size(); ++i) {
328     // The two sections must be identical.
329     Symbol &sa = secA->template getFile<ELFT>()->getRelocTargetSym(ra[i]);
330     Symbol &sb = secB->template getFile<ELFT>()->getRelocTargetSym(rb[i]);
331     if (&sa == &sb)
332       continue;
333 
334     auto *da = cast<Defined>(&sa);
335     auto *db = cast<Defined>(&sb);
336 
337     // We already dealt with absolute and non-InputSection symbols in
338     // constantEq, and for InputSections we have already checked everything
339     // except the equivalence class.
340     if (!da->section)
341       continue;
342     auto *x = dyn_cast<InputSection>(da->section);
343     if (!x)
344       continue;
345     auto *y = cast<InputSection>(db->section);
346 
347     // Ineligible sections are in the special equivalence class 0.
348     // They can never be the same in terms of the equivalence class.
349     if (x->eqClass[current] == 0)
350       return false;
351     if (x->eqClass[current] != y->eqClass[current])
352       return false;
353   };
354 
355   return true;
356 }
357 
358 // Compare "moving" part of two InputSections, namely relocation targets.
359 template <class ELFT>
360 bool ICF<ELFT>::equalsVariable(const InputSection *a, const InputSection *b) {
361   if (a->areRelocsRela)
362     return variableEq(a, a->template relas<ELFT>(), b,
363                       b->template relas<ELFT>());
364   return variableEq(a, a->template rels<ELFT>(), b, b->template rels<ELFT>());
365 }
366 
367 template <class ELFT> size_t ICF<ELFT>::findBoundary(size_t begin, size_t end) {
368   uint32_t eqClass = sections[begin]->eqClass[current];
369   for (size_t i = begin + 1; i < end; ++i)
370     if (eqClass != sections[i]->eqClass[current])
371       return i;
372   return end;
373 }
374 
375 // Sections in the same equivalence class are contiguous in Sections
376 // vector. Therefore, Sections vector can be considered as contiguous
377 // groups of sections, grouped by the class.
378 //
379 // This function calls Fn on every group within [Begin, End).
380 template <class ELFT>
381 void ICF<ELFT>::forEachClassRange(size_t begin, size_t end,
382                                   llvm::function_ref<void(size_t, size_t)> fn) {
383   while (begin < end) {
384     size_t mid = findBoundary(begin, end);
385     fn(begin, mid);
386     begin = mid;
387   }
388 }
389 
390 // Call Fn on each equivalence class.
391 template <class ELFT>
392 void ICF<ELFT>::forEachClass(llvm::function_ref<void(size_t, size_t)> fn) {
393   // If threading is disabled or the number of sections are
394   // too small to use threading, call Fn sequentially.
395   if (!threadsEnabled || sections.size() < 1024) {
396     forEachClassRange(0, sections.size(), fn);
397     ++cnt;
398     return;
399   }
400 
401   current = cnt % 2;
402   next = (cnt + 1) % 2;
403 
404   // Shard into non-overlapping intervals, and call Fn in parallel.
405   // The sharding must be completed before any calls to Fn are made
406   // so that Fn can modify the Chunks in its shard without causing data
407   // races.
408   const size_t numShards = 256;
409   size_t step = sections.size() / numShards;
410   size_t boundaries[numShards + 1];
411   boundaries[0] = 0;
412   boundaries[numShards] = sections.size();
413 
414   parallelForEachN(1, numShards, [&](size_t i) {
415     boundaries[i] = findBoundary((i - 1) * step, sections.size());
416   });
417 
418   parallelForEachN(1, numShards + 1, [&](size_t i) {
419     if (boundaries[i - 1] < boundaries[i])
420       forEachClassRange(boundaries[i - 1], boundaries[i], fn);
421   });
422   ++cnt;
423 }
424 
425 // Combine the hashes of the sections referenced by the given section into its
426 // hash.
427 template <class ELFT, class RelTy>
428 static void combineRelocHashes(unsigned cnt, InputSection *isec,
429                                ArrayRef<RelTy> rels) {
430   uint32_t hash = isec->eqClass[cnt % 2];
431   for (RelTy rel : rels) {
432     Symbol &s = isec->template getFile<ELFT>()->getRelocTargetSym(rel);
433     if (auto *d = dyn_cast<Defined>(&s))
434       if (auto *relSec = dyn_cast_or_null<InputSection>(d->section))
435         hash += relSec->eqClass[cnt % 2];
436   }
437   // Set MSB to 1 to avoid collisions with non-hash IDs.
438   isec->eqClass[(cnt + 1) % 2] = hash | (1U << 31);
439 }
440 
441 static void print(const Twine &s) {
442   if (config->printIcfSections)
443     message(s);
444 }
445 
446 // The main function of ICF.
447 template <class ELFT> void ICF<ELFT>::run() {
448   // Collect sections to merge.
449   for (InputSectionBase *sec : inputSections) {
450     auto *s = cast<InputSection>(sec);
451     if (isEligible(s))
452       sections.push_back(s);
453   }
454 
455   // Initially, we use hash values to partition sections.
456   parallelForEach(sections, [&](InputSection *s) {
457     s->eqClass[0] = xxHash64(s->data());
458   });
459 
460   for (unsigned cnt = 0; cnt != 2; ++cnt) {
461     parallelForEach(sections, [&](InputSection *s) {
462       if (s->areRelocsRela)
463         combineRelocHashes<ELFT>(cnt, s, s->template relas<ELFT>());
464       else
465         combineRelocHashes<ELFT>(cnt, s, s->template rels<ELFT>());
466     });
467   }
468 
469   // From now on, sections in Sections vector are ordered so that sections
470   // in the same equivalence class are consecutive in the vector.
471   llvm::stable_sort(sections, [](const InputSection *a, const InputSection *b) {
472     return a->eqClass[0] < b->eqClass[0];
473   });
474 
475   // Compare static contents and assign unique IDs for each static content.
476   forEachClass([&](size_t begin, size_t end) { segregate(begin, end, true); });
477 
478   // Split groups by comparing relocations until convergence is obtained.
479   do {
480     repeat = false;
481     forEachClass(
482         [&](size_t begin, size_t end) { segregate(begin, end, false); });
483   } while (repeat);
484 
485   log("ICF needed " + Twine(cnt) + " iterations");
486 
487   // Merge sections by the equivalence class.
488   forEachClassRange(0, sections.size(), [&](size_t begin, size_t end) {
489     if (end - begin == 1)
490       return;
491     print("selected section " + toString(sections[begin]));
492     for (size_t i = begin + 1; i < end; ++i) {
493       print("  removing identical section " + toString(sections[i]));
494       sections[begin]->replace(sections[i]);
495 
496       // At this point we know sections merged are fully identical and hence
497       // we want to remove duplicate implicit dependencies such as link order
498       // and relocation sections.
499       for (InputSection *isec : sections[i]->dependentSections)
500         isec->markDead();
501     }
502   });
503 
504   // InputSectionDescription::sections is populated by processSectionCommands().
505   // ICF may fold some input sections assigned to output sections. Remove them.
506   for (BaseCommand *base : script->sectionCommands)
507     if (auto *sec = dyn_cast<OutputSection>(base))
508       for (BaseCommand *sub_base : sec->sectionCommands)
509         if (auto *isd = dyn_cast<InputSectionDescription>(sub_base))
510           llvm::erase_if(isd->sections,
511                          [](InputSection *isec) { return !isec->isLive(); });
512 }
513 
514 // ICF entry point function.
515 template <class ELFT> void elf::doIcf() { ICF<ELFT>().run(); }
516 
517 template void elf::doIcf<ELF32LE>();
518 template void elf::doIcf<ELF32BE>();
519 template void elf::doIcf<ELF64LE>();
520 template void elf::doIcf<ELF64BE>();
521