Rui Ueyama | 0b28952 | 2016-02-25 18:43:51 +0000 | [diff] [blame] | 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 | // |
Rui Ueyama | fcd3fa8 | 2016-12-05 18:11:35 +0000 | [diff] [blame] | 10 | // ICF is short for Identical Code Folding. This is a size optimization to |
Rui Ueyama | 91ae861 | 2016-12-01 19:45:22 +0000 | [diff] [blame] | 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. |
Rui Ueyama | 0b28952 | 2016-02-25 18:43:51 +0000 | [diff] [blame] | 14 | // |
Rui Ueyama | 91ae861 | 2016-12-01 19:45:22 +0000 | [diff] [blame] | 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*. |
Rui Ueyama | 0b28952 | 2016-02-25 18:43:51 +0000 | [diff] [blame] | 20 | // |
Rui Ueyama | 91ae861 | 2016-12-01 19:45:22 +0000 | [diff] [blame] | 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. |
Rui Ueyama | 0b28952 | 2016-02-25 18:43:51 +0000 | [diff] [blame] | 24 | // |
| 25 | // void foo() { bar(); } |
| 26 | // void bar() { foo(); } |
| 27 | // |
Rui Ueyama | 91ae861 | 2016-12-01 19:45:22 +0000 | [diff] [blame] | 28 | // If you merge the two, their relocations point to the same section and |
Rui Ueyama | fcd3fa8 | 2016-12-05 18:11:35 +0000 | [diff] [blame] | 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. |
Rui Ueyama | 91ae861 | 2016-12-01 19:45:22 +0000 | [diff] [blame] | 31 | // |
Rui Ueyama | fcd3fa8 | 2016-12-05 18:11:35 +0000 | [diff] [blame] | 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: |
Rui Ueyama | 91ae861 | 2016-12-01 19:45:22 +0000 | [diff] [blame] | 35 | // |
Rui Ueyama | fcd3fa8 | 2016-12-05 18:11:35 +0000 | [diff] [blame] | 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. |
Rui Ueyama | 91ae861 | 2016-12-01 19:45:22 +0000 | [diff] [blame] | 41 | // |
Rui Ueyama | fcd3fa8 | 2016-12-05 18:11:35 +0000 | [diff] [blame] | 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. |
Rui Ueyama | 91ae861 | 2016-12-01 19:45:22 +0000 | [diff] [blame] | 47 | // |
Rui Ueyama | fcd3fa8 | 2016-12-05 18:11:35 +0000 | [diff] [blame] | 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. |
Rui Ueyama | 91ae861 | 2016-12-01 19:45:22 +0000 | [diff] [blame] | 52 | // |
Rui Ueyama | fcd3fa8 | 2016-12-05 18:11:35 +0000 | [diff] [blame] | 53 | // 4. For each equivalence class C, pick an arbitrary section in C, and |
| 54 | // merge all the other sections in C with it. |
Rui Ueyama | 91ae861 | 2016-12-01 19:45:22 +0000 | [diff] [blame] | 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 | // |
Rui Ueyama | fcd3fa8 | 2016-12-05 18:11:35 +0000 | [diff] [blame] | 59 | // This algorithm was mentioned as an "optimistic algorithm" in [1], |
| 60 | // though gold implements a different algorithm than this. |
| 61 | // |
Rui Ueyama | 91ae861 | 2016-12-01 19:45:22 +0000 | [diff] [blame] | 62 | // We parallelize each step so that multiple threads can work on different |
Rui Ueyama | fcd3fa8 | 2016-12-05 18:11:35 +0000 | [diff] [blame] | 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 |
Rui Ueyama | 0b28952 | 2016-02-25 18:43:51 +0000 | [diff] [blame] | 73 | // |
| 74 | //===----------------------------------------------------------------------===// |
| 75 | |
| 76 | #include "ICF.h" |
| 77 | #include "Config.h" |
Rui Ueyama | 0b28952 | 2016-02-25 18:43:51 +0000 | [diff] [blame] | 78 | #include "SymbolTable.h" |
Rafael Espindola | d26b52f | 2017-12-09 16:56:18 +0000 | [diff] [blame] | 79 | #include "Symbols.h" |
Bob Haarman | 4f5c8c2 | 2017-10-13 18:22:55 +0000 | [diff] [blame] | 80 | #include "lld/Common/Threads.h" |
Rui Ueyama | 0b28952 | 2016-02-25 18:43:51 +0000 | [diff] [blame] | 81 | #include "llvm/ADT/Hashing.h" |
Zachary Turner | 264b5d9 | 2017-06-07 03:48:56 +0000 | [diff] [blame] | 82 | #include "llvm/BinaryFormat/ELF.h" |
Rui Ueyama | 0b28952 | 2016-02-25 18:43:51 +0000 | [diff] [blame] | 83 | #include "llvm/Object/ELF.h" |
Rui Ueyama | a05134e | 2016-11-19 20:15:55 +0000 | [diff] [blame] | 84 | #include <algorithm> |
Rui Ueyama | 1b6bab0 | 2016-12-02 05:35:46 +0000 | [diff] [blame] | 85 | #include <atomic> |
Rui Ueyama | 0b28952 | 2016-02-25 18:43:51 +0000 | [diff] [blame] | 86 | |
| 87 | using namespace lld; |
Rafael Espindola | e0df00b | 2016-02-28 00:25:54 +0000 | [diff] [blame] | 88 | using namespace lld::elf; |
Rui Ueyama | 0b28952 | 2016-02-25 18:43:51 +0000 | [diff] [blame] | 89 | using namespace llvm; |
| 90 | using namespace llvm::ELF; |
| 91 | using namespace llvm::object; |
| 92 | |
Rui Ueyama | bd1f063 | 2016-11-20 02:39:59 +0000 | [diff] [blame] | 93 | namespace { |
Rui Ueyama | 0b28952 | 2016-02-25 18:43:51 +0000 | [diff] [blame] | 94 | template <class ELFT> class ICF { |
Rui Ueyama | 0b28952 | 2016-02-25 18:43:51 +0000 | [diff] [blame] | 95 | public: |
Rui Ueyama | 4f8d21f | 2016-05-02 19:30:42 +0000 | [diff] [blame] | 96 | void run(); |
Rui Ueyama | 0b28952 | 2016-02-25 18:43:51 +0000 | [diff] [blame] | 97 | |
| 98 | private: |
Rui Ueyama | 1b6bab0 | 2016-12-02 05:35:46 +0000 | [diff] [blame] | 99 | void segregate(size_t Begin, size_t End, bool Constant); |
Rui Ueyama | 0b28952 | 2016-02-25 18:43:51 +0000 | [diff] [blame] | 100 | |
Rui Ueyama | 9dedfb1 | 2016-11-30 01:50:03 +0000 | [diff] [blame] | 101 | template <class RelTy> |
Peter Collingbourne | bfd5113 | 2017-06-12 00:05:54 +0000 | [diff] [blame] | 102 | bool constantEq(const InputSection *A, ArrayRef<RelTy> RelsA, |
| 103 | const InputSection *B, ArrayRef<RelTy> RelsB); |
Rui Ueyama | 0b28952 | 2016-02-25 18:43:51 +0000 | [diff] [blame] | 104 | |
Rui Ueyama | 9dedfb1 | 2016-11-30 01:50:03 +0000 | [diff] [blame] | 105 | template <class RelTy> |
Rafael Espindola | 774ea7d | 2017-02-23 16:49:07 +0000 | [diff] [blame] | 106 | bool variableEq(const InputSection *A, ArrayRef<RelTy> RelsA, |
| 107 | const InputSection *B, ArrayRef<RelTy> RelsB); |
Rui Ueyama | 0b28952 | 2016-02-25 18:43:51 +0000 | [diff] [blame] | 108 | |
Rafael Espindola | 774ea7d | 2017-02-23 16:49:07 +0000 | [diff] [blame] | 109 | bool equalsConstant(const InputSection *A, const InputSection *B); |
| 110 | bool equalsVariable(const InputSection *A, const InputSection *B); |
Rui Ueyama | 9dedfb1 | 2016-11-30 01:50:03 +0000 | [diff] [blame] | 111 | |
Rui Ueyama | 1b6bab0 | 2016-12-02 05:35:46 +0000 | [diff] [blame] | 112 | size_t findBoundary(size_t Begin, size_t End); |
Rui Ueyama | 9dedfb1 | 2016-11-30 01:50:03 +0000 | [diff] [blame] | 113 | |
Rui Ueyama | fcd3fa8 | 2016-12-05 18:11:35 +0000 | [diff] [blame] | 114 | void forEachClassRange(size_t Begin, size_t End, |
Rui Ueyama | 1b6bab0 | 2016-12-02 05:35:46 +0000 | [diff] [blame] | 115 | std::function<void(size_t, size_t)> Fn); |
| 116 | |
Rui Ueyama | fcd3fa8 | 2016-12-05 18:11:35 +0000 | [diff] [blame] | 117 | void forEachClass(std::function<void(size_t, size_t)> Fn); |
Rui Ueyama | 1b6bab0 | 2016-12-02 05:35:46 +0000 | [diff] [blame] | 118 | |
Rafael Espindola | 774ea7d | 2017-02-23 16:49:07 +0000 | [diff] [blame] | 119 | std::vector<InputSection *> Sections; |
Rui Ueyama | 045d828 | 2016-12-04 16:33:13 +0000 | [diff] [blame] | 120 | |
| 121 | // We repeat the main loop while `Repeat` is true. |
| 122 | std::atomic<bool> Repeat; |
| 123 | |
| 124 | // The main loop counter. |
Rui Ueyama | c183531 | 2016-12-01 17:09:04 +0000 | [diff] [blame] | 125 | int Cnt = 0; |
Rui Ueyama | 045d828 | 2016-12-04 16:33:13 +0000 | [diff] [blame] | 126 | |
Rui Ueyama | fcd3fa8 | 2016-12-05 18:11:35 +0000 | [diff] [blame] | 127 | // We have two locations for equivalence classes. On the first iteration |
| 128 | // of the main loop, Class[0] has a valid value, and Class[1] contains |
| 129 | // garbage. We read equivalence classes from slot 0 and write to slot 1. |
| 130 | // So, Class[0] represents the current class, and Class[1] represents |
| 131 | // the next class. On each iteration, we switch their roles and use them |
| 132 | // alternately. |
Rui Ueyama | 045d828 | 2016-12-04 16:33:13 +0000 | [diff] [blame] | 133 | // |
| 134 | // Why are we doing this? Recall that other threads may be working on |
Rui Ueyama | fcd3fa8 | 2016-12-05 18:11:35 +0000 | [diff] [blame] | 135 | // other equivalence classes in parallel. They may read sections that we |
| 136 | // are updating. We cannot update equivalence classes in place because |
| 137 | // it breaks the invariance that all possibly-identical sections must be |
| 138 | // in the same equivalence class at any moment. In other words, the for |
| 139 | // loop to update equivalence classes is not atomic, and that is |
| 140 | // observable from other threads. By writing new classes to other |
| 141 | // places, we can keep the invariance. |
Rui Ueyama | 045d828 | 2016-12-04 16:33:13 +0000 | [diff] [blame] | 142 | // |
Rui Ueyama | fcd3fa8 | 2016-12-05 18:11:35 +0000 | [diff] [blame] | 143 | // Below, `Current` has the index of the current class, and `Next` has |
| 144 | // the index of the next class. If threading is enabled, they are either |
| 145 | // (0, 1) or (1, 0). |
Rui Ueyama | 045d828 | 2016-12-04 16:33:13 +0000 | [diff] [blame] | 146 | // |
| 147 | // Note on single-thread: if that's the case, they are always (0, 0) |
Rui Ueyama | fcd3fa8 | 2016-12-05 18:11:35 +0000 | [diff] [blame] | 148 | // because we can safely read the next class without worrying about race |
Rui Ueyama | 045d828 | 2016-12-04 16:33:13 +0000 | [diff] [blame] | 149 | // conditions. Using the same location makes this algorithm converge |
| 150 | // faster because it uses results of the same iteration earlier. |
| 151 | int Current = 0; |
| 152 | int Next = 0; |
Rui Ueyama | 0b28952 | 2016-02-25 18:43:51 +0000 | [diff] [blame] | 153 | }; |
| 154 | } |
Rui Ueyama | 0b28952 | 2016-02-25 18:43:51 +0000 | [diff] [blame] | 155 | |
Rui Ueyama | 0b28952 | 2016-02-25 18:43:51 +0000 | [diff] [blame] | 156 | // Returns a hash value for S. Note that the information about |
| 157 | // relocation targets is not included in the hash value. |
Rafael Espindola | 774ea7d | 2017-02-23 16:49:07 +0000 | [diff] [blame] | 158 | template <class ELFT> static uint32_t getHash(InputSection *S) { |
Rui Ueyama | 274aa2f | 2017-10-02 01:21:07 +0000 | [diff] [blame] | 159 | return hash_combine(S->Flags, S->getSize(), S->NumRelocations, S->Data); |
Rui Ueyama | 0b28952 | 2016-02-25 18:43:51 +0000 | [diff] [blame] | 160 | } |
| 161 | |
Rui Ueyama | bd1f063 | 2016-11-20 02:39:59 +0000 | [diff] [blame] | 162 | // Returns true if section S is subject of ICF. |
Rui Ueyama | 536a267 | 2017-02-27 02:32:08 +0000 | [diff] [blame] | 163 | static bool isEligible(InputSection *S) { |
Rafael Espindola | b5506e6 | 2018-01-10 01:37:36 +0000 | [diff] [blame] | 164 | // Don't merge read only data sections unless |
| 165 | // --ignore-data-address-equality was passed. |
| 166 | if (!(S->Flags & SHF_EXECINSTR) && !Config->IgnoreDataAddressEquality) |
Rafael Espindola | 814ece6 | 2017-12-12 01:36:24 +0000 | [diff] [blame] | 167 | return false; |
| 168 | |
Rui Ueyama | 0b28952 | 2016-02-25 18:43:51 +0000 | [diff] [blame] | 169 | // .init and .fini contains instructions that must be executed to |
| 170 | // initialize and finalize the process. They cannot and should not |
| 171 | // be merged. |
Rafael Espindola | 814ece6 | 2017-12-12 01:36:24 +0000 | [diff] [blame] | 172 | return S->Live && (S->Flags & SHF_ALLOC) && !(S->Flags & SHF_WRITE) && |
| 173 | S->Name != ".init" && S->Name != ".fini"; |
Rui Ueyama | 0b28952 | 2016-02-25 18:43:51 +0000 | [diff] [blame] | 174 | } |
| 175 | |
Rui Ueyama | fcd3fa8 | 2016-12-05 18:11:35 +0000 | [diff] [blame] | 176 | // Split an equivalence class into smaller classes. |
Rui Ueyama | 1b6bab0 | 2016-12-02 05:35:46 +0000 | [diff] [blame] | 177 | template <class ELFT> |
| 178 | void ICF<ELFT>::segregate(size_t Begin, size_t End, bool Constant) { |
| 179 | // This loop rearranges sections in [Begin, End) so that all sections |
Rui Ueyama | 9dedfb1 | 2016-11-30 01:50:03 +0000 | [diff] [blame] | 180 | // that are equal in terms of equals{Constant,Variable} are contiguous |
Rui Ueyama | 1b6bab0 | 2016-12-02 05:35:46 +0000 | [diff] [blame] | 181 | // in [Begin, End). |
Rui Ueyama | 9dedfb1 | 2016-11-30 01:50:03 +0000 | [diff] [blame] | 182 | // |
| 183 | // The algorithm is quadratic in the worst case, but that is not an |
| 184 | // issue in practice because the number of the distinct sections in |
Rui Ueyama | 1b6bab0 | 2016-12-02 05:35:46 +0000 | [diff] [blame] | 185 | // each range is usually very small. |
Rui Ueyama | c183531 | 2016-12-01 17:09:04 +0000 | [diff] [blame] | 186 | |
Rui Ueyama | 1b6bab0 | 2016-12-02 05:35:46 +0000 | [diff] [blame] | 187 | while (Begin < End) { |
| 188 | // Divide [Begin, End) into two. Let Mid be the start index of the |
Rui Ueyama | 9dedfb1 | 2016-11-30 01:50:03 +0000 | [diff] [blame] | 189 | // second group. |
Rafael Espindola | 774ea7d | 2017-02-23 16:49:07 +0000 | [diff] [blame] | 190 | auto Bound = |
| 191 | std::stable_partition(Sections.begin() + Begin + 1, |
| 192 | Sections.begin() + End, [&](InputSection *S) { |
| 193 | if (Constant) |
| 194 | return equalsConstant(Sections[Begin], S); |
| 195 | return equalsVariable(Sections[Begin], S); |
| 196 | }); |
Rui Ueyama | 9dedfb1 | 2016-11-30 01:50:03 +0000 | [diff] [blame] | 197 | size_t Mid = Bound - Sections.begin(); |
Rui Ueyama | 0b28952 | 2016-02-25 18:43:51 +0000 | [diff] [blame] | 198 | |
Rui Ueyama | 1b6bab0 | 2016-12-02 05:35:46 +0000 | [diff] [blame] | 199 | // Now we split [Begin, End) into [Begin, Mid) and [Mid, End) by |
Rui Ueyama | c9df172 | 2017-01-15 02:34:42 +0000 | [diff] [blame] | 200 | // updating the sections in [Begin, Mid). We use Mid as an equivalence |
Rui Ueyama | fcd3fa8 | 2016-12-05 18:11:35 +0000 | [diff] [blame] | 201 | // class ID because every group ends with a unique index. |
Rui Ueyama | 1b6bab0 | 2016-12-02 05:35:46 +0000 | [diff] [blame] | 202 | for (size_t I = Begin; I < Mid; ++I) |
Rui Ueyama | fcd3fa8 | 2016-12-05 18:11:35 +0000 | [diff] [blame] | 203 | Sections[I]->Class[Next] = Mid; |
Rui Ueyama | 9dedfb1 | 2016-11-30 01:50:03 +0000 | [diff] [blame] | 204 | |
Rui Ueyama | 1b6bab0 | 2016-12-02 05:35:46 +0000 | [diff] [blame] | 205 | // If we created a group, we need to iterate the main loop again. |
| 206 | if (Mid != End) |
| 207 | Repeat = true; |
| 208 | |
| 209 | Begin = Mid; |
Rui Ueyama | 0b28952 | 2016-02-25 18:43:51 +0000 | [diff] [blame] | 210 | } |
| 211 | } |
| 212 | |
| 213 | // Compare two lists of relocations. |
Rui Ueyama | 9dedfb1 | 2016-11-30 01:50:03 +0000 | [diff] [blame] | 214 | template <class ELFT> |
| 215 | template <class RelTy> |
Rui Ueyama | 5ac94e7 | 2017-08-28 22:28:41 +0000 | [diff] [blame] | 216 | bool ICF<ELFT>::constantEq(const InputSection *SecA, ArrayRef<RelTy> RA, |
| 217 | const InputSection *SecB, ArrayRef<RelTy> RB) { |
| 218 | if (RA.size() != RB.size()) |
| 219 | return false; |
Peter Collingbourne | bfd5113 | 2017-06-12 00:05:54 +0000 | [diff] [blame] | 220 | |
Rui Ueyama | 5ac94e7 | 2017-08-28 22:28:41 +0000 | [diff] [blame] | 221 | for (size_t I = 0; I < RA.size(); ++I) { |
| 222 | if (RA[I].r_offset != RB[I].r_offset || |
| 223 | RA[I].getType(Config->IsMips64EL) != RB[I].getType(Config->IsMips64EL)) |
| 224 | return false; |
| 225 | |
| 226 | uint64_t AddA = getAddend<ELFT>(RA[I]); |
| 227 | uint64_t AddB = getAddend<ELFT>(RB[I]); |
| 228 | |
Rui Ueyama | f52496e | 2017-11-03 21:21:47 +0000 | [diff] [blame] | 229 | Symbol &SA = SecA->template getFile<ELFT>()->getRelocTargetSym(RA[I]); |
| 230 | Symbol &SB = SecB->template getFile<ELFT>()->getRelocTargetSym(RB[I]); |
Rui Ueyama | 5ac94e7 | 2017-08-28 22:28:41 +0000 | [diff] [blame] | 231 | if (&SA == &SB) { |
| 232 | if (AddA == AddB) |
| 233 | continue; |
| 234 | return false; |
| 235 | } |
Peter Collingbourne | bfd5113 | 2017-06-12 00:05:54 +0000 | [diff] [blame] | 236 | |
Peter Collingbourne | e9a9e0a | 2017-11-06 04:35:31 +0000 | [diff] [blame] | 237 | auto *DA = dyn_cast<Defined>(&SA); |
| 238 | auto *DB = dyn_cast<Defined>(&SB); |
Peter Collingbourne | bfd5113 | 2017-06-12 00:05:54 +0000 | [diff] [blame] | 239 | if (!DA || !DB) |
| 240 | return false; |
| 241 | |
| 242 | // Relocations referring to absolute symbols are constant-equal if their |
| 243 | // values are equal. |
Rui Ueyama | 5ac94e7 | 2017-08-28 22:28:41 +0000 | [diff] [blame] | 244 | if (!DA->Section && !DB->Section && DA->Value + AddA == DB->Value + AddB) |
| 245 | continue; |
Peter Collingbourne | bfd5113 | 2017-06-12 00:05:54 +0000 | [diff] [blame] | 246 | if (!DA->Section || !DB->Section) |
Rui Ueyama | 5ac94e7 | 2017-08-28 22:28:41 +0000 | [diff] [blame] | 247 | return false; |
Peter Collingbourne | bfd5113 | 2017-06-12 00:05:54 +0000 | [diff] [blame] | 248 | |
| 249 | if (DA->Section->kind() != DB->Section->kind()) |
| 250 | return false; |
| 251 | |
| 252 | // Relocations referring to InputSections are constant-equal if their |
| 253 | // section offsets are equal. |
Rui Ueyama | 5ac94e7 | 2017-08-28 22:28:41 +0000 | [diff] [blame] | 254 | if (isa<InputSection>(DA->Section)) { |
| 255 | if (DA->Value + AddA == DB->Value + AddB) |
| 256 | continue; |
| 257 | return false; |
| 258 | } |
Peter Collingbourne | bfd5113 | 2017-06-12 00:05:54 +0000 | [diff] [blame] | 259 | |
| 260 | // Relocations referring to MergeInputSections are constant-equal if their |
| 261 | // offsets in the output section are equal. |
| 262 | auto *X = dyn_cast<MergeInputSection>(DA->Section); |
| 263 | if (!X) |
| 264 | return false; |
| 265 | auto *Y = cast<MergeInputSection>(DB->Section); |
| 266 | if (X->getParent() != Y->getParent()) |
| 267 | return false; |
| 268 | |
| 269 | uint64_t OffsetA = |
| 270 | SA.isSection() ? X->getOffset(AddA) : X->getOffset(DA->Value) + AddA; |
| 271 | uint64_t OffsetB = |
| 272 | SB.isSection() ? Y->getOffset(AddB) : Y->getOffset(DB->Value) + AddB; |
Rui Ueyama | 5ac94e7 | 2017-08-28 22:28:41 +0000 | [diff] [blame] | 273 | if (OffsetA != OffsetB) |
| 274 | return false; |
| 275 | } |
Rui Ueyama | a05134e | 2016-11-19 20:15:55 +0000 | [diff] [blame] | 276 | |
Rui Ueyama | 5ac94e7 | 2017-08-28 22:28:41 +0000 | [diff] [blame] | 277 | return true; |
Rui Ueyama | 0b28952 | 2016-02-25 18:43:51 +0000 | [diff] [blame] | 278 | } |
| 279 | |
| 280 | // Compare "non-moving" part of two InputSections, namely everything |
| 281 | // except relocation targets. |
| 282 | template <class ELFT> |
Rafael Espindola | 774ea7d | 2017-02-23 16:49:07 +0000 | [diff] [blame] | 283 | bool ICF<ELFT>::equalsConstant(const InputSection *A, const InputSection *B) { |
Rui Ueyama | bd1f063 | 2016-11-20 02:39:59 +0000 | [diff] [blame] | 284 | if (A->NumRelocations != B->NumRelocations || A->Flags != B->Flags || |
Rafael Espindola | 76b6bd3 | 2017-03-08 15:44:30 +0000 | [diff] [blame] | 285 | A->getSize() != B->getSize() || A->Data != B->Data) |
Rui Ueyama | 0b28952 | 2016-02-25 18:43:51 +0000 | [diff] [blame] | 286 | return false; |
| 287 | |
Rui Ueyama | bd1f063 | 2016-11-20 02:39:59 +0000 | [diff] [blame] | 288 | if (A->AreRelocsRela) |
Peter Collingbourne | bfd5113 | 2017-06-12 00:05:54 +0000 | [diff] [blame] | 289 | return constantEq(A, A->template relas<ELFT>(), B, |
| 290 | B->template relas<ELFT>()); |
| 291 | return constantEq(A, A->template rels<ELFT>(), B, B->template rels<ELFT>()); |
Rui Ueyama | 0b28952 | 2016-02-25 18:43:51 +0000 | [diff] [blame] | 292 | } |
| 293 | |
Rui Ueyama | 7bed9ee | 2016-11-20 23:15:54 +0000 | [diff] [blame] | 294 | // Compare two lists of relocations. Returns true if all pairs of |
| 295 | // relocations point to the same section in terms of ICF. |
Rui Ueyama | 9dedfb1 | 2016-11-30 01:50:03 +0000 | [diff] [blame] | 296 | template <class ELFT> |
| 297 | template <class RelTy> |
Rui Ueyama | 5ac94e7 | 2017-08-28 22:28:41 +0000 | [diff] [blame] | 298 | bool ICF<ELFT>::variableEq(const InputSection *SecA, ArrayRef<RelTy> RA, |
| 299 | const InputSection *SecB, ArrayRef<RelTy> RB) { |
| 300 | assert(RA.size() == RB.size()); |
| 301 | |
| 302 | for (size_t I = 0; I < RA.size(); ++I) { |
Rui Ueyama | 91ae861 | 2016-12-01 19:45:22 +0000 | [diff] [blame] | 303 | // The two sections must be identical. |
Rui Ueyama | f52496e | 2017-11-03 21:21:47 +0000 | [diff] [blame] | 304 | Symbol &SA = SecA->template getFile<ELFT>()->getRelocTargetSym(RA[I]); |
| 305 | Symbol &SB = SecB->template getFile<ELFT>()->getRelocTargetSym(RB[I]); |
Rafael Espindola | 67d72c0 | 2016-03-11 12:06:30 +0000 | [diff] [blame] | 306 | if (&SA == &SB) |
Rui Ueyama | 5ac94e7 | 2017-08-28 22:28:41 +0000 | [diff] [blame] | 307 | continue; |
Rui Ueyama | 0b28952 | 2016-02-25 18:43:51 +0000 | [diff] [blame] | 308 | |
Peter Collingbourne | e9a9e0a | 2017-11-06 04:35:31 +0000 | [diff] [blame] | 309 | auto *DA = cast<Defined>(&SA); |
| 310 | auto *DB = cast<Defined>(&SB); |
Rui Ueyama | 9dedfb1 | 2016-11-30 01:50:03 +0000 | [diff] [blame] | 311 | |
Peter Collingbourne | bfd5113 | 2017-06-12 00:05:54 +0000 | [diff] [blame] | 312 | // We already dealt with absolute and non-InputSection symbols in |
| 313 | // constantEq, and for InputSections we have already checked everything |
| 314 | // except the equivalence class. |
| 315 | if (!DA->Section) |
Rui Ueyama | 5ac94e7 | 2017-08-28 22:28:41 +0000 | [diff] [blame] | 316 | continue; |
Rafael Espindola | 774ea7d | 2017-02-23 16:49:07 +0000 | [diff] [blame] | 317 | auto *X = dyn_cast<InputSection>(DA->Section); |
Peter Collingbourne | bfd5113 | 2017-06-12 00:05:54 +0000 | [diff] [blame] | 318 | if (!X) |
Rui Ueyama | 5ac94e7 | 2017-08-28 22:28:41 +0000 | [diff] [blame] | 319 | continue; |
Peter Collingbourne | bfd5113 | 2017-06-12 00:05:54 +0000 | [diff] [blame] | 320 | auto *Y = cast<InputSection>(DB->Section); |
Rui Ueyama | c183531 | 2016-12-01 17:09:04 +0000 | [diff] [blame] | 321 | |
Rui Ueyama | fcd3fa8 | 2016-12-05 18:11:35 +0000 | [diff] [blame] | 322 | // Ineligible sections are in the special equivalence class 0. |
| 323 | // They can never be the same in terms of the equivalence class. |
| 324 | if (X->Class[Current] == 0) |
Rui Ueyama | 83ec681 | 2016-12-02 17:23:58 +0000 | [diff] [blame] | 325 | return false; |
Rui Ueyama | 5ac94e7 | 2017-08-28 22:28:41 +0000 | [diff] [blame] | 326 | if (X->Class[Current] != Y->Class[Current]) |
| 327 | return false; |
Rui Ueyama | a05134e | 2016-11-19 20:15:55 +0000 | [diff] [blame] | 328 | }; |
| 329 | |
Rui Ueyama | 5ac94e7 | 2017-08-28 22:28:41 +0000 | [diff] [blame] | 330 | return true; |
Rui Ueyama | 0b28952 | 2016-02-25 18:43:51 +0000 | [diff] [blame] | 331 | } |
| 332 | |
| 333 | // Compare "moving" part of two InputSections, namely relocation targets. |
| 334 | template <class ELFT> |
Rafael Espindola | 774ea7d | 2017-02-23 16:49:07 +0000 | [diff] [blame] | 335 | bool ICF<ELFT>::equalsVariable(const InputSection *A, const InputSection *B) { |
Rafael Espindola | 9f0c4bb | 2016-11-10 14:53:24 +0000 | [diff] [blame] | 336 | if (A->AreRelocsRela) |
Rafael Espindola | b4c9b81 | 2017-02-23 02:28:28 +0000 | [diff] [blame] | 337 | return variableEq(A, A->template relas<ELFT>(), B, |
| 338 | B->template relas<ELFT>()); |
| 339 | return variableEq(A, A->template rels<ELFT>(), B, B->template rels<ELFT>()); |
Rui Ueyama | 0b28952 | 2016-02-25 18:43:51 +0000 | [diff] [blame] | 340 | } |
| 341 | |
Rui Ueyama | 1b6bab0 | 2016-12-02 05:35:46 +0000 | [diff] [blame] | 342 | template <class ELFT> size_t ICF<ELFT>::findBoundary(size_t Begin, size_t End) { |
Rui Ueyama | fcd3fa8 | 2016-12-05 18:11:35 +0000 | [diff] [blame] | 343 | uint32_t Class = Sections[Begin]->Class[Current]; |
Rui Ueyama | 1b6bab0 | 2016-12-02 05:35:46 +0000 | [diff] [blame] | 344 | for (size_t I = Begin + 1; I < End; ++I) |
Rui Ueyama | fcd3fa8 | 2016-12-05 18:11:35 +0000 | [diff] [blame] | 345 | if (Class != Sections[I]->Class[Current]) |
Rui Ueyama | 1b6bab0 | 2016-12-02 05:35:46 +0000 | [diff] [blame] | 346 | return I; |
| 347 | return End; |
| 348 | } |
| 349 | |
Rui Ueyama | fcd3fa8 | 2016-12-05 18:11:35 +0000 | [diff] [blame] | 350 | // Sections in the same equivalence class are contiguous in Sections |
| 351 | // vector. Therefore, Sections vector can be considered as contiguous |
| 352 | // groups of sections, grouped by the class. |
Rui Ueyama | 1b6bab0 | 2016-12-02 05:35:46 +0000 | [diff] [blame] | 353 | // |
| 354 | // This function calls Fn on every group that starts within [Begin, End). |
Rui Ueyama | c9df172 | 2017-01-15 02:34:42 +0000 | [diff] [blame] | 355 | // Note that a group must start in that range but doesn't necessarily |
Rui Ueyama | 1b6bab0 | 2016-12-02 05:35:46 +0000 | [diff] [blame] | 356 | // have to end before End. |
| 357 | template <class ELFT> |
Rui Ueyama | fcd3fa8 | 2016-12-05 18:11:35 +0000 | [diff] [blame] | 358 | void ICF<ELFT>::forEachClassRange(size_t Begin, size_t End, |
Rui Ueyama | 1b6bab0 | 2016-12-02 05:35:46 +0000 | [diff] [blame] | 359 | std::function<void(size_t, size_t)> Fn) { |
| 360 | if (Begin > 0) |
| 361 | Begin = findBoundary(Begin - 1, End); |
| 362 | |
| 363 | while (Begin < End) { |
| 364 | size_t Mid = findBoundary(Begin, Sections.size()); |
| 365 | Fn(Begin, Mid); |
| 366 | Begin = Mid; |
| 367 | } |
| 368 | } |
| 369 | |
Rui Ueyama | fcd3fa8 | 2016-12-05 18:11:35 +0000 | [diff] [blame] | 370 | // Call Fn on each equivalence class. |
Rui Ueyama | 1b6bab0 | 2016-12-02 05:35:46 +0000 | [diff] [blame] | 371 | template <class ELFT> |
Rui Ueyama | fcd3fa8 | 2016-12-05 18:11:35 +0000 | [diff] [blame] | 372 | void ICF<ELFT>::forEachClass(std::function<void(size_t, size_t)> Fn) { |
Rui Ueyama | 1b6bab0 | 2016-12-02 05:35:46 +0000 | [diff] [blame] | 373 | // If threading is disabled or the number of sections are |
| 374 | // too small to use threading, call Fn sequentially. |
Bob Haarman | 4f5c8c2 | 2017-10-13 18:22:55 +0000 | [diff] [blame] | 375 | if (!ThreadsEnabled || Sections.size() < 1024) { |
Rui Ueyama | fcd3fa8 | 2016-12-05 18:11:35 +0000 | [diff] [blame] | 376 | forEachClassRange(0, Sections.size(), Fn); |
Rui Ueyama | 045d828 | 2016-12-04 16:33:13 +0000 | [diff] [blame] | 377 | ++Cnt; |
Rui Ueyama | 1b6bab0 | 2016-12-02 05:35:46 +0000 | [diff] [blame] | 378 | return; |
| 379 | } |
| 380 | |
Rui Ueyama | 045d828 | 2016-12-04 16:33:13 +0000 | [diff] [blame] | 381 | Current = Cnt % 2; |
| 382 | Next = (Cnt + 1) % 2; |
| 383 | |
Rui Ueyama | 1b6bab0 | 2016-12-02 05:35:46 +0000 | [diff] [blame] | 384 | // Split sections into 256 shards and call Fn in parallel. |
| 385 | size_t NumShards = 256; |
| 386 | size_t Step = Sections.size() / NumShards; |
Rui Ueyama | 33d903d | 2017-05-10 20:02:19 +0000 | [diff] [blame] | 387 | parallelForEachN(0, NumShards, [&](size_t I) { |
Rui Ueyama | f04c048 | 2017-05-24 19:22:34 +0000 | [diff] [blame] | 388 | size_t End = (I == NumShards - 1) ? Sections.size() : (I + 1) * Step; |
| 389 | forEachClassRange(I * Step, End, Fn); |
Rui Ueyama | 4995afd | 2017-03-22 23:03:35 +0000 | [diff] [blame] | 390 | }); |
Rui Ueyama | 045d828 | 2016-12-04 16:33:13 +0000 | [diff] [blame] | 391 | ++Cnt; |
Rui Ueyama | c183531 | 2016-12-01 17:09:04 +0000 | [diff] [blame] | 392 | } |
| 393 | |
Rui Ueyama | 2d9e7a8 | 2018-02-13 22:56:49 +0000 | [diff] [blame] | 394 | static void print(const Twine &S) { |
| 395 | if (Config->PrintIcfSections) |
| 396 | message(S); |
Galina Kistanova | c6cd1f0 | 2018-02-11 02:32:21 +0000 | [diff] [blame] | 397 | } |
Rui Ueyama | 37a9889 | 2018-02-09 18:00:46 +0000 | [diff] [blame] | 398 | |
Rui Ueyama | 0b28952 | 2016-02-25 18:43:51 +0000 | [diff] [blame] | 399 | // The main function of ICF. |
Rui Ueyama | 4f8d21f | 2016-05-02 19:30:42 +0000 | [diff] [blame] | 400 | template <class ELFT> void ICF<ELFT>::run() { |
Rui Ueyama | 9dedfb1 | 2016-11-30 01:50:03 +0000 | [diff] [blame] | 401 | // Collect sections to merge. |
Rui Ueyama | 536a267 | 2017-02-27 02:32:08 +0000 | [diff] [blame] | 402 | for (InputSectionBase *Sec : InputSections) |
Rafael Espindola | 774ea7d | 2017-02-23 16:49:07 +0000 | [diff] [blame] | 403 | if (auto *S = dyn_cast<InputSection>(Sec)) |
Rui Ueyama | 536a267 | 2017-02-27 02:32:08 +0000 | [diff] [blame] | 404 | if (isEligible(S)) |
Rui Ueyama | 9dedfb1 | 2016-11-30 01:50:03 +0000 | [diff] [blame] | 405 | Sections.push_back(S); |
| 406 | |
Rui Ueyama | fcd3fa8 | 2016-12-05 18:11:35 +0000 | [diff] [blame] | 407 | // Initially, we use hash values to partition sections. |
Rui Ueyama | 274aa2f | 2017-10-02 01:21:07 +0000 | [diff] [blame] | 408 | parallelForEach(Sections, [&](InputSection *S) { |
Rui Ueyama | fcd3fa8 | 2016-12-05 18:11:35 +0000 | [diff] [blame] | 409 | // Set MSB to 1 to avoid collisions with non-hash IDs. |
Rafael Espindola | 774ea7d | 2017-02-23 16:49:07 +0000 | [diff] [blame] | 410 | S->Class[0] = getHash<ELFT>(S) | (1 << 31); |
Rui Ueyama | 274aa2f | 2017-10-02 01:21:07 +0000 | [diff] [blame] | 411 | }); |
Rui Ueyama | 0b28952 | 2016-02-25 18:43:51 +0000 | [diff] [blame] | 412 | |
Rui Ueyama | fcd3fa8 | 2016-12-05 18:11:35 +0000 | [diff] [blame] | 413 | // From now on, sections in Sections vector are ordered so that sections |
| 414 | // in the same equivalence class are consecutive in the vector. |
Rui Ueyama | e2dfbc1 | 2016-11-19 23:14:23 +0000 | [diff] [blame] | 415 | std::stable_sort(Sections.begin(), Sections.end(), |
Rafael Espindola | 774ea7d | 2017-02-23 16:49:07 +0000 | [diff] [blame] | 416 | [](InputSection *A, InputSection *B) { |
Rui Ueyama | fcd3fa8 | 2016-12-05 18:11:35 +0000 | [diff] [blame] | 417 | return A->Class[0] < B->Class[0]; |
Rui Ueyama | 0b28952 | 2016-02-25 18:43:51 +0000 | [diff] [blame] | 418 | }); |
| 419 | |
Rui Ueyama | 9dedfb1 | 2016-11-30 01:50:03 +0000 | [diff] [blame] | 420 | // Compare static contents and assign unique IDs for each static content. |
Rui Ueyama | fcd3fa8 | 2016-12-05 18:11:35 +0000 | [diff] [blame] | 421 | forEachClass([&](size_t Begin, size_t End) { segregate(Begin, End, true); }); |
Rui Ueyama | 9dedfb1 | 2016-11-30 01:50:03 +0000 | [diff] [blame] | 422 | |
Rui Ueyama | 1b6bab0 | 2016-12-02 05:35:46 +0000 | [diff] [blame] | 423 | // Split groups by comparing relocations until convergence is obtained. |
| 424 | do { |
| 425 | Repeat = false; |
Rui Ueyama | fcd3fa8 | 2016-12-05 18:11:35 +0000 | [diff] [blame] | 426 | forEachClass( |
Rui Ueyama | 1b6bab0 | 2016-12-02 05:35:46 +0000 | [diff] [blame] | 427 | [&](size_t Begin, size_t End) { segregate(Begin, End, false); }); |
Rui Ueyama | 1b6bab0 | 2016-12-02 05:35:46 +0000 | [diff] [blame] | 428 | } while (Repeat); |
Rui Ueyama | 9dedfb1 | 2016-11-30 01:50:03 +0000 | [diff] [blame] | 429 | |
| 430 | log("ICF needed " + Twine(Cnt) + " iterations"); |
Rui Ueyama | 0b28952 | 2016-02-25 18:43:51 +0000 | [diff] [blame] | 431 | |
Rui Ueyama | fcd3fa8 | 2016-12-05 18:11:35 +0000 | [diff] [blame] | 432 | // Merge sections by the equivalence class. |
Rui Ueyama | 153b04f | 2018-02-08 23:51:58 +0000 | [diff] [blame] | 433 | forEachClassRange(0, Sections.size(), [&](size_t Begin, size_t End) { |
Rui Ueyama | 1b6bab0 | 2016-12-02 05:35:46 +0000 | [diff] [blame] | 434 | if (End - Begin == 1) |
| 435 | return; |
Rui Ueyama | 2d9e7a8 | 2018-02-13 22:56:49 +0000 | [diff] [blame] | 436 | print("selected section " + toString(Sections[Begin])); |
Rui Ueyama | 1b6bab0 | 2016-12-02 05:35:46 +0000 | [diff] [blame] | 437 | for (size_t I = Begin + 1; I < End; ++I) { |
Rui Ueyama | 2d9e7a8 | 2018-02-13 22:56:49 +0000 | [diff] [blame] | 438 | print(" removing identical section " + toString(Sections[I])); |
Rui Ueyama | 1b6bab0 | 2016-12-02 05:35:46 +0000 | [diff] [blame] | 439 | Sections[Begin]->replace(Sections[I]); |
George Rimar | 2d53967 | 2018-02-23 10:37:33 +0000 | [diff] [blame] | 440 | |
| 441 | // At this point we know sections merged are fully identical and hence |
| 442 | // we want to remove duplicate implicit dependencies such as link order |
| 443 | // and relocation sections. |
| 444 | for (InputSection *IS : Sections[I]->DependentSections) |
| 445 | IS->Live = false; |
Rui Ueyama | 0b28952 | 2016-02-25 18:43:51 +0000 | [diff] [blame] | 446 | } |
Rui Ueyama | 1b6bab0 | 2016-12-02 05:35:46 +0000 | [diff] [blame] | 447 | }); |
Rui Ueyama | 0b28952 | 2016-02-25 18:43:51 +0000 | [diff] [blame] | 448 | } |
| 449 | |
| 450 | // ICF entry point function. |
Rui Ueyama | 4f8d21f | 2016-05-02 19:30:42 +0000 | [diff] [blame] | 451 | template <class ELFT> void elf::doIcf() { ICF<ELFT>().run(); } |
Rui Ueyama | 0b28952 | 2016-02-25 18:43:51 +0000 | [diff] [blame] | 452 | |
Rui Ueyama | 4f8d21f | 2016-05-02 19:30:42 +0000 | [diff] [blame] | 453 | template void elf::doIcf<ELF32LE>(); |
| 454 | template void elf::doIcf<ELF32BE>(); |
| 455 | template void elf::doIcf<ELF64LE>(); |
| 456 | template void elf::doIcf<ELF64BE>(); |