xref: /llvm-project-15.0.7/lld/ELF/ICF.cpp (revision 64f5f6d7)
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 //    classes.
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 "llvm/BinaryFormat/ELF.h"
83 #include "llvm/Object/ELF.h"
84 #include "llvm/Support/Parallel.h"
85 #include "llvm/Support/TimeProfiler.h"
86 #include "llvm/Support/xxhash.h"
87 #include <algorithm>
88 #include <atomic>
89 
90 using namespace llvm;
91 using namespace llvm::ELF;
92 using namespace llvm::object;
93 using namespace lld;
94 using namespace lld::elf;
95 
96 namespace {
97 template <class ELFT> class ICF {
98 public:
99   void run();
100 
101 private:
102   void segregate(size_t begin, size_t end, uint32_t eqClassBase, bool constant);
103 
104   template <class RelTy>
105   bool constantEq(const InputSection *a, ArrayRef<RelTy> relsA,
106                   const InputSection *b, ArrayRef<RelTy> relsB);
107 
108   template <class RelTy>
109   bool variableEq(const InputSection *a, ArrayRef<RelTy> relsA,
110                   const InputSection *b, ArrayRef<RelTy> relsB);
111 
112   bool equalsConstant(const InputSection *a, const InputSection *b);
113   bool equalsVariable(const InputSection *a, const InputSection *b);
114 
115   size_t findBoundary(size_t begin, size_t end);
116 
117   void forEachClassRange(size_t begin, size_t end,
118                          llvm::function_ref<void(size_t, size_t)> fn);
119 
120   void forEachClass(llvm::function_ref<void(size_t, size_t)> fn);
121 
122   SmallVector<InputSection *, 0> sections;
123 
124   // We repeat the main loop while `Repeat` is true.
125   std::atomic<bool> repeat;
126 
127   // The main loop counter.
128   int cnt = 0;
129 
130   // We have two locations for equivalence classes. On the first iteration
131   // of the main loop, Class[0] has a valid value, and Class[1] contains
132   // garbage. We read equivalence classes from slot 0 and write to slot 1.
133   // So, Class[0] represents the current class, and Class[1] represents
134   // the next class. On each iteration, we switch their roles and use them
135   // alternately.
136   //
137   // Why are we doing this? Recall that other threads may be working on
138   // other equivalence classes in parallel. They may read sections that we
139   // are updating. We cannot update equivalence classes in place because
140   // it breaks the invariance that all possibly-identical sections must be
141   // in the same equivalence class at any moment. In other words, the for
142   // loop to update equivalence classes is not atomic, and that is
143   // observable from other threads. By writing new classes to other
144   // places, we can keep the invariance.
145   //
146   // Below, `Current` has the index of the current class, and `Next` has
147   // the index of the next class. If threading is enabled, they are either
148   // (0, 1) or (1, 0).
149   //
150   // Note on single-thread: if that's the case, they are always (0, 0)
151   // because we can safely read the next class without worrying about race
152   // conditions. Using the same location makes this algorithm converge
153   // faster because it uses results of the same iteration earlier.
154   int current = 0;
155   int next = 0;
156 };
157 }
158 
159 // Returns true if section S is subject of ICF.
160 static bool isEligible(InputSection *s) {
161   if (!s->isLive() || s->keepUnique || !(s->flags & SHF_ALLOC))
162     return false;
163 
164   // Don't merge writable sections. .data.rel.ro sections are marked as writable
165   // but are semantically read-only.
166   if ((s->flags & SHF_WRITE) && s->name != ".data.rel.ro" &&
167       !s->name.startswith(".data.rel.ro."))
168     return false;
169 
170   // SHF_LINK_ORDER sections are ICF'd as a unit with their dependent sections,
171   // so we don't consider them for ICF individually.
172   if (s->flags & SHF_LINK_ORDER)
173     return false;
174 
175   // Don't merge synthetic sections as their Data member is not valid and empty.
176   // The Data member needs to be valid for ICF as it is used by ICF to determine
177   // the equality of section contents.
178   if (isa<SyntheticSection>(s))
179     return false;
180 
181   // .init and .fini contains instructions that must be executed to initialize
182   // and finalize the process. They cannot and should not be merged.
183   if (s->name == ".init" || s->name == ".fini")
184     return false;
185 
186   // A user program may enumerate sections named with a C identifier using
187   // __start_* and __stop_* symbols. We cannot ICF any such sections because
188   // that could change program semantics.
189   if (isValidCIdentifier(s->name))
190     return false;
191 
192   return true;
193 }
194 
195 // Split an equivalence class into smaller classes.
196 template <class ELFT>
197 void ICF<ELFT>::segregate(size_t begin, size_t end, uint32_t eqClassBase,
198                           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 the basis for
221     // the equivalence class ID because every group ends with a unique index.
222     // Add this to eqClassBase to avoid equality with unique IDs.
223     for (size_t i = begin; i < mid; ++i)
224       sections[i]->eqClass[next] = eqClassBase + mid;
225 
226     // If we created a group, we need to iterate the main loop again.
227     if (mid != end)
228       repeat = true;
229 
230     begin = mid;
231   }
232 }
233 
234 // Compare two lists of relocations.
235 template <class ELFT>
236 template <class RelTy>
237 bool ICF<ELFT>::constantEq(const InputSection *secA, ArrayRef<RelTy> ra,
238                            const InputSection *secB, ArrayRef<RelTy> rb) {
239   if (ra.size() != rb.size())
240     return false;
241   for (size_t i = 0; i < ra.size(); ++i) {
242     if (ra[i].r_offset != rb[i].r_offset ||
243         ra[i].getType(config->isMips64EL) != rb[i].getType(config->isMips64EL))
244       return false;
245 
246     uint64_t addA = getAddend<ELFT>(ra[i]);
247     uint64_t addB = getAddend<ELFT>(rb[i]);
248 
249     Symbol &sa = secA->template getFile<ELFT>()->getRelocTargetSym(ra[i]);
250     Symbol &sb = secB->template getFile<ELFT>()->getRelocTargetSym(rb[i]);
251     if (&sa == &sb) {
252       if (addA == addB)
253         continue;
254       return false;
255     }
256 
257     auto *da = dyn_cast<Defined>(&sa);
258     auto *db = dyn_cast<Defined>(&sb);
259 
260     // Placeholder symbols generated by linker scripts look the same now but
261     // may have different values later.
262     if (!da || !db || da->scriptDefined || db->scriptDefined)
263       return false;
264 
265     // When comparing a pair of relocations, if they refer to different symbols,
266     // and either symbol is preemptible, the containing sections should be
267     // considered different. This is because even if the sections are identical
268     // in this DSO, they may not be after preemption.
269     if (da->isPreemptible || db->isPreemptible)
270       return false;
271 
272     // Relocations referring to absolute symbols are constant-equal if their
273     // values are equal.
274     if (!da->section && !db->section && da->value + addA == db->value + addB)
275       continue;
276     if (!da->section || !db->section)
277       return false;
278 
279     if (da->section->kind() != db->section->kind())
280       return false;
281 
282     // Relocations referring to InputSections are constant-equal if their
283     // section offsets are equal.
284     if (isa<InputSection>(da->section)) {
285       if (da->value + addA == db->value + addB)
286         continue;
287       return false;
288     }
289 
290     // Relocations referring to MergeInputSections are constant-equal if their
291     // offsets in the output section are equal.
292     auto *x = dyn_cast<MergeInputSection>(da->section);
293     if (!x)
294       return false;
295     auto *y = cast<MergeInputSection>(db->section);
296     if (x->getParent() != y->getParent())
297       return false;
298 
299     uint64_t offsetA =
300         sa.isSection() ? x->getOffset(addA) : x->getOffset(da->value) + addA;
301     uint64_t offsetB =
302         sb.isSection() ? y->getOffset(addB) : y->getOffset(db->value) + addB;
303     if (offsetA != offsetB)
304       return false;
305   }
306 
307   return true;
308 }
309 
310 // Compare "non-moving" part of two InputSections, namely everything
311 // except relocation targets.
312 template <class ELFT>
313 bool ICF<ELFT>::equalsConstant(const InputSection *a, const InputSection *b) {
314   if (a->flags != b->flags || a->getSize() != b->getSize() ||
315       a->data() != b->data())
316     return false;
317 
318   // If two sections have different output sections, we cannot merge them.
319   assert(a->getParent() && b->getParent());
320   if (a->getParent() != b->getParent())
321     return false;
322 
323   const RelsOrRelas<ELFT> ra = a->template relsOrRelas<ELFT>();
324   const RelsOrRelas<ELFT> rb = b->template relsOrRelas<ELFT>();
325   return ra.areRelocsRel() ? constantEq(a, ra.rels, b, rb.rels)
326                            : constantEq(a, ra.relas, b, rb.relas);
327 }
328 
329 // Compare two lists of relocations. Returns true if all pairs of
330 // relocations point to the same section in terms of ICF.
331 template <class ELFT>
332 template <class RelTy>
333 bool ICF<ELFT>::variableEq(const InputSection *secA, ArrayRef<RelTy> ra,
334                            const InputSection *secB, ArrayRef<RelTy> rb) {
335   assert(ra.size() == rb.size());
336 
337   for (size_t i = 0; i < ra.size(); ++i) {
338     // The two sections must be identical.
339     Symbol &sa = secA->template getFile<ELFT>()->getRelocTargetSym(ra[i]);
340     Symbol &sb = secB->template getFile<ELFT>()->getRelocTargetSym(rb[i]);
341     if (&sa == &sb)
342       continue;
343 
344     auto *da = cast<Defined>(&sa);
345     auto *db = cast<Defined>(&sb);
346 
347     // We already dealt with absolute and non-InputSection symbols in
348     // constantEq, and for InputSections we have already checked everything
349     // except the equivalence class.
350     if (!da->section)
351       continue;
352     auto *x = dyn_cast<InputSection>(da->section);
353     if (!x)
354       continue;
355     auto *y = cast<InputSection>(db->section);
356 
357     // Sections that are in the special equivalence class 0, can never be the
358     // same in terms of the equivalence class.
359     if (x->eqClass[current] == 0)
360       return false;
361     if (x->eqClass[current] != y->eqClass[current])
362       return false;
363   };
364 
365   return true;
366 }
367 
368 // Compare "moving" part of two InputSections, namely relocation targets.
369 template <class ELFT>
370 bool ICF<ELFT>::equalsVariable(const InputSection *a, const InputSection *b) {
371   const RelsOrRelas<ELFT> ra = a->template relsOrRelas<ELFT>();
372   const RelsOrRelas<ELFT> rb = b->template relsOrRelas<ELFT>();
373   return ra.areRelocsRel() ? variableEq(a, ra.rels, b, rb.rels)
374                            : variableEq(a, ra.relas, b, rb.relas);
375 }
376 
377 template <class ELFT> size_t ICF<ELFT>::findBoundary(size_t begin, size_t end) {
378   uint32_t eqClass = sections[begin]->eqClass[current];
379   for (size_t i = begin + 1; i < end; ++i)
380     if (eqClass != sections[i]->eqClass[current])
381       return i;
382   return end;
383 }
384 
385 // Sections in the same equivalence class are contiguous in Sections
386 // vector. Therefore, Sections vector can be considered as contiguous
387 // groups of sections, grouped by the class.
388 //
389 // This function calls Fn on every group within [Begin, End).
390 template <class ELFT>
391 void ICF<ELFT>::forEachClassRange(size_t begin, size_t end,
392                                   llvm::function_ref<void(size_t, size_t)> fn) {
393   while (begin < end) {
394     size_t mid = findBoundary(begin, end);
395     fn(begin, mid);
396     begin = mid;
397   }
398 }
399 
400 // Call Fn on each equivalence class.
401 template <class ELFT>
402 void ICF<ELFT>::forEachClass(llvm::function_ref<void(size_t, size_t)> fn) {
403   // If threading is disabled or the number of sections are
404   // too small to use threading, call Fn sequentially.
405   if (parallel::strategy.ThreadsRequested == 1 || sections.size() < 1024) {
406     forEachClassRange(0, sections.size(), fn);
407     ++cnt;
408     return;
409   }
410 
411   current = cnt % 2;
412   next = (cnt + 1) % 2;
413 
414   // Shard into non-overlapping intervals, and call Fn in parallel.
415   // The sharding must be completed before any calls to Fn are made
416   // so that Fn can modify the Chunks in its shard without causing data
417   // races.
418   const size_t numShards = 256;
419   size_t step = sections.size() / numShards;
420   size_t boundaries[numShards + 1];
421   boundaries[0] = 0;
422   boundaries[numShards] = sections.size();
423 
424   parallelForEachN(1, numShards, [&](size_t i) {
425     boundaries[i] = findBoundary((i - 1) * step, sections.size());
426   });
427 
428   parallelForEachN(1, numShards + 1, [&](size_t i) {
429     if (boundaries[i - 1] < boundaries[i])
430       forEachClassRange(boundaries[i - 1], boundaries[i], fn);
431   });
432   ++cnt;
433 }
434 
435 // Combine the hashes of the sections referenced by the given section into its
436 // hash.
437 template <class ELFT, class RelTy>
438 static void combineRelocHashes(unsigned cnt, InputSection *isec,
439                                ArrayRef<RelTy> rels) {
440   uint32_t hash = isec->eqClass[cnt % 2];
441   for (RelTy rel : rels) {
442     Symbol &s = isec->template getFile<ELFT>()->getRelocTargetSym(rel);
443     if (auto *d = dyn_cast<Defined>(&s))
444       if (auto *relSec = dyn_cast_or_null<InputSection>(d->section))
445         hash += relSec->eqClass[cnt % 2];
446   }
447   // Set MSB to 1 to avoid collisions with unique IDs.
448   isec->eqClass[(cnt + 1) % 2] = hash | (1U << 31);
449 }
450 
451 static void print(const Twine &s) {
452   if (config->printIcfSections)
453     message(s);
454 }
455 
456 // The main function of ICF.
457 template <class ELFT> void ICF<ELFT>::run() {
458   // Compute isPreemptible early. We may add more symbols later, so this loop
459   // cannot be merged with the later computeIsPreemptible() pass which is used
460   // by scanRelocations().
461   if (config->hasDynSymTab)
462     for (Symbol *sym : symtab->symbols())
463       sym->isPreemptible = computeIsPreemptible(*sym);
464 
465   // Two text sections may have identical content and relocations but different
466   // LSDA, e.g. the two functions may have catch blocks of different types. If a
467   // text section is referenced by a .eh_frame FDE with LSDA, it is not
468   // eligible. This is implemented by iterating over CIE/FDE and setting
469   // eqClass[0] to the referenced text section from a live FDE.
470   //
471   // If two .gcc_except_table have identical semantics (usually identical
472   // content with PC-relative encoding), we will lose folding opportunity.
473   uint32_t uniqueId = 0;
474   for (Partition &part : partitions)
475     part.ehFrame->iterateFDEWithLSDA<ELFT>(
476         [&](InputSection &s) { s.eqClass[0] = s.eqClass[1] = ++uniqueId; });
477 
478   // Collect sections to merge.
479   for (InputSectionBase *sec : inputSections) {
480     auto *s = cast<InputSection>(sec);
481     if (s->eqClass[0] == 0) {
482       if (isEligible(s))
483         sections.push_back(s);
484       else
485         // Ineligible sections are assigned unique IDs, i.e. each section
486         // belongs to an equivalence class of its own.
487         s->eqClass[0] = s->eqClass[1] = ++uniqueId;
488     }
489   }
490 
491   // Initially, we use hash values to partition sections.
492   parallelForEach(sections, [&](InputSection *s) {
493     // Set MSB to 1 to avoid collisions with unique IDs.
494     s->eqClass[0] = xxHash64(s->data()) | (1U << 31);
495   });
496 
497   // Perform 2 rounds of relocation hash propagation. 2 is an empirical value to
498   // reduce the average sizes of equivalence classes, i.e. segregate() which has
499   // a large time complexity will have less work to do.
500   for (unsigned cnt = 0; cnt != 2; ++cnt) {
501     parallelForEach(sections, [&](InputSection *s) {
502       const RelsOrRelas<ELFT> rels = s->template relsOrRelas<ELFT>();
503       if (rels.areRelocsRel())
504         combineRelocHashes<ELFT>(cnt, s, rels.rels);
505       else
506         combineRelocHashes<ELFT>(cnt, s, rels.relas);
507     });
508   }
509 
510   // From now on, sections in Sections vector are ordered so that sections
511   // in the same equivalence class are consecutive in the vector.
512   llvm::stable_sort(sections, [](const InputSection *a, const InputSection *b) {
513     return a->eqClass[0] < b->eqClass[0];
514   });
515 
516   // Compare static contents and assign unique equivalence class IDs for each
517   // static content. Use a base offset for these IDs to ensure no overlap with
518   // the unique IDs already assigned.
519   uint32_t eqClassBase = ++uniqueId;
520   forEachClass([&](size_t begin, size_t end) {
521     segregate(begin, end, eqClassBase, true);
522   });
523 
524   // Split groups by comparing relocations until convergence is obtained.
525   do {
526     repeat = false;
527     forEachClass([&](size_t begin, size_t end) {
528       segregate(begin, end, eqClassBase, false);
529     });
530   } while (repeat);
531 
532   log("ICF needed " + Twine(cnt) + " iterations");
533 
534   // Merge sections by the equivalence class.
535   forEachClassRange(0, sections.size(), [&](size_t begin, size_t end) {
536     if (end - begin == 1)
537       return;
538     print("selected section " + toString(sections[begin]));
539     for (size_t i = begin + 1; i < end; ++i) {
540       print("  removing identical section " + toString(sections[i]));
541       sections[begin]->replace(sections[i]);
542 
543       // At this point we know sections merged are fully identical and hence
544       // we want to remove duplicate implicit dependencies such as link order
545       // and relocation sections.
546       for (InputSection *isec : sections[i]->dependentSections)
547         isec->markDead();
548     }
549   });
550 
551   // Change Defined symbol's section field to the canonical one.
552   auto fold = [](Symbol *sym) {
553     if (auto *d = dyn_cast<Defined>(sym))
554       if (auto *sec = dyn_cast_or_null<InputSection>(d->section))
555         if (sec->repl != d->section) {
556           d->section = sec->repl;
557           d->folded = true;
558         }
559   };
560   for (Symbol *sym : symtab->symbols())
561     fold(sym);
562   parallelForEach(objectFiles, [&](ELFFileBase *file) {
563     for (Symbol *sym : file->getLocalSymbols())
564       fold(sym);
565   });
566 
567   // InputSectionDescription::sections is populated by processSectionCommands().
568   // ICF may fold some input sections assigned to output sections. Remove them.
569   for (SectionCommand *cmd : script->sectionCommands)
570     if (auto *sec = dyn_cast<OutputSection>(cmd))
571       for (SectionCommand *subCmd : sec->commands)
572         if (auto *isd = dyn_cast<InputSectionDescription>(subCmd))
573           llvm::erase_if(isd->sections,
574                          [](InputSection *isec) { return !isec->isLive(); });
575 }
576 
577 // ICF entry point function.
578 template <class ELFT> void elf::doIcf() {
579   llvm::TimeTraceScope timeScope("ICF");
580   ICF<ELFT>().run();
581 }
582 
583 template void elf::doIcf<ELF32LE>();
584 template void elf::doIcf<ELF32BE>();
585 template void elf::doIcf<ELF64LE>();
586 template void elf::doIcf<ELF64BE>();
587