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