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 "Threads.h" 80 #include "llvm/ADT/Hashing.h" 81 #include "llvm/BinaryFormat/ELF.h" 82 #include "llvm/Object/ELF.h" 83 #include <algorithm> 84 #include <atomic> 85 86 using namespace lld; 87 using namespace lld::elf; 88 using namespace llvm; 89 using namespace llvm::ELF; 90 using namespace llvm::object; 91 92 namespace { 93 template <class ELFT> class ICF { 94 public: 95 void run(); 96 97 private: 98 void segregate(size_t Begin, size_t End, bool Constant); 99 100 template <class RelTy> 101 bool constantEq(const InputSection *A, ArrayRef<RelTy> RelsA, 102 const InputSection *B, ArrayRef<RelTy> RelsB); 103 104 template <class RelTy> 105 bool variableEq(const InputSection *A, ArrayRef<RelTy> RelsA, 106 const InputSection *B, ArrayRef<RelTy> RelsB); 107 108 bool equalsConstant(const InputSection *A, const InputSection *B); 109 bool equalsVariable(const InputSection *A, const InputSection *B); 110 111 size_t findBoundary(size_t Begin, size_t End); 112 113 void forEachClassRange(size_t Begin, size_t End, 114 std::function<void(size_t, size_t)> Fn); 115 116 void forEachClass(std::function<void(size_t, size_t)> Fn); 117 118 std::vector<InputSection *> Sections; 119 120 // We repeat the main loop while `Repeat` is true. 121 std::atomic<bool> Repeat; 122 123 // The main loop counter. 124 int Cnt = 0; 125 126 // We have two locations for equivalence classes. On the first iteration 127 // of the main loop, Class[0] has a valid value, and Class[1] contains 128 // garbage. We read equivalence classes from slot 0 and write to slot 1. 129 // So, Class[0] represents the current class, and Class[1] represents 130 // the next class. On each iteration, we switch their roles and use them 131 // alternately. 132 // 133 // Why are we doing this? Recall that other threads may be working on 134 // other equivalence classes in parallel. They may read sections that we 135 // are updating. We cannot update equivalence classes in place because 136 // it breaks the invariance that all possibly-identical sections must be 137 // in the same equivalence class at any moment. In other words, the for 138 // loop to update equivalence classes is not atomic, and that is 139 // observable from other threads. By writing new classes to other 140 // places, we can keep the invariance. 141 // 142 // Below, `Current` has the index of the current class, and `Next` has 143 // the index of the next class. If threading is enabled, they are either 144 // (0, 1) or (1, 0). 145 // 146 // Note on single-thread: if that's the case, they are always (0, 0) 147 // because we can safely read the next class without worrying about race 148 // conditions. Using the same location makes this algorithm converge 149 // faster because it uses results of the same iteration earlier. 150 int Current = 0; 151 int Next = 0; 152 }; 153 } 154 155 // Returns a hash value for S. Note that the information about 156 // relocation targets is not included in the hash value. 157 template <class ELFT> static uint32_t getHash(InputSection *S) { 158 return hash_combine(S->Flags, S->getSize(), S->NumRelocations); 159 } 160 161 // Returns true if section S is subject of ICF. 162 static bool isEligible(InputSection *S) { 163 // .init and .fini contains instructions that must be executed to 164 // initialize and finalize the process. They cannot and should not 165 // be merged. 166 return S->Live && (S->Flags & SHF_ALLOC) && (S->Flags & SHF_EXECINSTR) && 167 !(S->Flags & SHF_WRITE) && S->Name != ".init" && S->Name != ".fini"; 168 } 169 170 // Split an equivalence class into smaller classes. 171 template <class ELFT> 172 void ICF<ELFT>::segregate(size_t Begin, size_t End, bool Constant) { 173 // This loop rearranges sections in [Begin, End) so that all sections 174 // that are equal in terms of equals{Constant,Variable} are contiguous 175 // in [Begin, End). 176 // 177 // The algorithm is quadratic in the worst case, but that is not an 178 // issue in practice because the number of the distinct sections in 179 // each range is usually very small. 180 181 while (Begin < End) { 182 // Divide [Begin, End) into two. Let Mid be the start index of the 183 // second group. 184 auto Bound = 185 std::stable_partition(Sections.begin() + Begin + 1, 186 Sections.begin() + End, [&](InputSection *S) { 187 if (Constant) 188 return equalsConstant(Sections[Begin], S); 189 return equalsVariable(Sections[Begin], S); 190 }); 191 size_t Mid = Bound - Sections.begin(); 192 193 // Now we split [Begin, End) into [Begin, Mid) and [Mid, End) by 194 // updating the sections in [Begin, Mid). We use Mid as an equivalence 195 // class ID because every group ends with a unique index. 196 for (size_t I = Begin; I < Mid; ++I) 197 Sections[I]->Class[Next] = Mid; 198 199 // If we created a group, we need to iterate the main loop again. 200 if (Mid != End) 201 Repeat = true; 202 203 Begin = Mid; 204 } 205 } 206 207 // Compare two lists of relocations. 208 template <class ELFT> 209 template <class RelTy> 210 bool ICF<ELFT>::constantEq(const InputSection *A, ArrayRef<RelTy> RelsA, 211 const InputSection *B, ArrayRef<RelTy> RelsB) { 212 auto Eq = [&](const RelTy &RA, const RelTy &RB) { 213 if (RA.r_offset != RB.r_offset || 214 RA.getType(Config->IsMips64EL) != RB.getType(Config->IsMips64EL)) 215 return false; 216 uint64_t AddA = getAddend<ELFT>(RA); 217 uint64_t AddB = getAddend<ELFT>(RB); 218 219 SymbolBody &SA = A->template getFile<ELFT>()->getRelocTargetSym(RA); 220 SymbolBody &SB = B->template getFile<ELFT>()->getRelocTargetSym(RB); 221 if (&SA == &SB) 222 return AddA == AddB; 223 224 auto *DA = dyn_cast<DefinedRegular>(&SA); 225 auto *DB = dyn_cast<DefinedRegular>(&SB); 226 if (!DA || !DB) 227 return false; 228 229 // Relocations referring to absolute symbols are constant-equal if their 230 // values are equal. 231 if (!DA->Section || !DB->Section) 232 return !DA->Section && !DB->Section && 233 DA->Value + AddA == DB->Value + AddB; 234 235 if (DA->Section->kind() != DB->Section->kind()) 236 return false; 237 238 // Relocations referring to InputSections are constant-equal if their 239 // section offsets are equal. 240 if (isa<InputSection>(DA->Section)) 241 return DA->Value + AddA == DB->Value + AddB; 242 243 // Relocations referring to MergeInputSections are constant-equal if their 244 // offsets in the output section are equal. 245 auto *X = dyn_cast<MergeInputSection>(DA->Section); 246 if (!X) 247 return false; 248 auto *Y = cast<MergeInputSection>(DB->Section); 249 if (X->getParent() != Y->getParent()) 250 return false; 251 252 uint64_t OffsetA = 253 SA.isSection() ? X->getOffset(AddA) : X->getOffset(DA->Value) + AddA; 254 uint64_t OffsetB = 255 SB.isSection() ? Y->getOffset(AddB) : Y->getOffset(DB->Value) + AddB; 256 return OffsetA == OffsetB; 257 }; 258 259 return RelsA.size() == RelsB.size() && 260 std::equal(RelsA.begin(), RelsA.end(), RelsB.begin(), Eq); 261 } 262 263 // Compare "non-moving" part of two InputSections, namely everything 264 // except relocation targets. 265 template <class ELFT> 266 bool ICF<ELFT>::equalsConstant(const InputSection *A, const InputSection *B) { 267 if (A->NumRelocations != B->NumRelocations || A->Flags != B->Flags || 268 A->getSize() != B->getSize() || A->Data != B->Data) 269 return false; 270 271 if (A->AreRelocsRela) 272 return constantEq(A, A->template relas<ELFT>(), B, 273 B->template relas<ELFT>()); 274 return constantEq(A, A->template rels<ELFT>(), B, B->template rels<ELFT>()); 275 } 276 277 // Compare two lists of relocations. Returns true if all pairs of 278 // relocations point to the same section in terms of ICF. 279 template <class ELFT> 280 template <class RelTy> 281 bool ICF<ELFT>::variableEq(const InputSection *A, ArrayRef<RelTy> RelsA, 282 const InputSection *B, ArrayRef<RelTy> RelsB) { 283 auto Eq = [&](const RelTy &RA, const RelTy &RB) { 284 // The two sections must be identical. 285 SymbolBody &SA = A->template getFile<ELFT>()->getRelocTargetSym(RA); 286 SymbolBody &SB = B->template getFile<ELFT>()->getRelocTargetSym(RB); 287 if (&SA == &SB) 288 return true; 289 290 auto *DA = cast<DefinedRegular>(&SA); 291 auto *DB = cast<DefinedRegular>(&SB); 292 293 // We already dealt with absolute and non-InputSection symbols in 294 // constantEq, and for InputSections we have already checked everything 295 // except the equivalence class. 296 if (!DA->Section) 297 return true; 298 auto *X = dyn_cast<InputSection>(DA->Section); 299 if (!X) 300 return true; 301 auto *Y = cast<InputSection>(DB->Section); 302 303 // Ineligible sections are in the special equivalence class 0. 304 // They can never be the same in terms of the equivalence class. 305 if (X->Class[Current] == 0) 306 return false; 307 308 return X->Class[Current] == Y->Class[Current]; 309 }; 310 311 return std::equal(RelsA.begin(), RelsA.end(), RelsB.begin(), Eq); 312 } 313 314 // Compare "moving" part of two InputSections, namely relocation targets. 315 template <class ELFT> 316 bool ICF<ELFT>::equalsVariable(const InputSection *A, const InputSection *B) { 317 if (A->AreRelocsRela) 318 return variableEq(A, A->template relas<ELFT>(), B, 319 B->template relas<ELFT>()); 320 return variableEq(A, A->template rels<ELFT>(), B, B->template rels<ELFT>()); 321 } 322 323 template <class ELFT> size_t ICF<ELFT>::findBoundary(size_t Begin, size_t End) { 324 uint32_t Class = Sections[Begin]->Class[Current]; 325 for (size_t I = Begin + 1; I < End; ++I) 326 if (Class != Sections[I]->Class[Current]) 327 return I; 328 return End; 329 } 330 331 // Sections in the same equivalence class are contiguous in Sections 332 // vector. Therefore, Sections vector can be considered as contiguous 333 // groups of sections, grouped by the class. 334 // 335 // This function calls Fn on every group that starts within [Begin, End). 336 // Note that a group must start in that range but doesn't necessarily 337 // have to end before End. 338 template <class ELFT> 339 void ICF<ELFT>::forEachClassRange(size_t Begin, size_t End, 340 std::function<void(size_t, size_t)> Fn) { 341 if (Begin > 0) 342 Begin = findBoundary(Begin - 1, End); 343 344 while (Begin < End) { 345 size_t Mid = findBoundary(Begin, Sections.size()); 346 Fn(Begin, Mid); 347 Begin = Mid; 348 } 349 } 350 351 // Call Fn on each equivalence class. 352 template <class ELFT> 353 void ICF<ELFT>::forEachClass(std::function<void(size_t, size_t)> Fn) { 354 // If threading is disabled or the number of sections are 355 // too small to use threading, call Fn sequentially. 356 if (!Config->Threads || Sections.size() < 1024) { 357 forEachClassRange(0, Sections.size(), Fn); 358 ++Cnt; 359 return; 360 } 361 362 Current = Cnt % 2; 363 Next = (Cnt + 1) % 2; 364 365 // Split sections into 256 shards and call Fn in parallel. 366 size_t NumShards = 256; 367 size_t Step = Sections.size() / NumShards; 368 parallelForEachN(0, NumShards, [&](size_t I) { 369 size_t End = (I == NumShards - 1) ? Sections.size() : (I + 1) * Step; 370 forEachClassRange(I * Step, End, Fn); 371 }); 372 ++Cnt; 373 } 374 375 // The main function of ICF. 376 template <class ELFT> void ICF<ELFT>::run() { 377 // Collect sections to merge. 378 for (InputSectionBase *Sec : InputSections) 379 if (auto *S = dyn_cast<InputSection>(Sec)) 380 if (isEligible(S)) 381 Sections.push_back(S); 382 383 // Initially, we use hash values to partition sections. 384 for (InputSection *S : Sections) 385 // Set MSB to 1 to avoid collisions with non-hash IDs. 386 S->Class[0] = getHash<ELFT>(S) | (1 << 31); 387 388 // From now on, sections in Sections vector are ordered so that sections 389 // in the same equivalence class are consecutive in the vector. 390 std::stable_sort(Sections.begin(), Sections.end(), 391 [](InputSection *A, InputSection *B) { 392 return A->Class[0] < B->Class[0]; 393 }); 394 395 // Compare static contents and assign unique IDs for each static content. 396 forEachClass([&](size_t Begin, size_t End) { segregate(Begin, End, true); }); 397 398 // Split groups by comparing relocations until convergence is obtained. 399 do { 400 Repeat = false; 401 forEachClass( 402 [&](size_t Begin, size_t End) { segregate(Begin, End, false); }); 403 } while (Repeat); 404 405 log("ICF needed " + Twine(Cnt) + " iterations"); 406 407 // Merge sections by the equivalence class. 408 forEachClass([&](size_t Begin, size_t End) { 409 if (End - Begin == 1) 410 return; 411 412 log("selected " + Sections[Begin]->Name); 413 for (size_t I = Begin + 1; I < End; ++I) { 414 log(" removed " + Sections[I]->Name); 415 Sections[Begin]->replace(Sections[I]); 416 } 417 }); 418 419 // Mark ARM Exception Index table sections that refer to folded code 420 // sections as not live. These sections have an implict dependency 421 // via the link order dependency. 422 if (Config->EMachine == EM_ARM) 423 for (InputSectionBase *Sec : InputSections) 424 if (auto *S = dyn_cast<InputSection>(Sec)) 425 if (S->Flags & SHF_LINK_ORDER) 426 S->Live = S->getLinkOrderDep()->Live; 427 } 428 429 // ICF entry point function. 430 template <class ELFT> void elf::doIcf() { ICF<ELFT>().run(); } 431 432 template void elf::doIcf<ELF32LE>(); 433 template void elf::doIcf<ELF32BE>(); 434 template void elf::doIcf<ELF64LE>(); 435 template void elf::doIcf<ELF64BE>(); 436