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