SplitModule.cpp 9.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283
  1. //===- SplitModule.cpp - Split a module into partitions -------------------===//
  2. //
  3. // The LLVM Compiler Infrastructure
  4. //
  5. // This file is distributed under the University of Illinois Open Source
  6. // License. See LICENSE.TXT for details.
  7. //
  8. //===----------------------------------------------------------------------===//
  9. //
  10. // This file defines the function llvm::SplitModule, which splits a module
  11. // into multiple linkable partitions. It can be used to implement parallel code
  12. // generation for link-time optimization.
  13. //
  14. //===----------------------------------------------------------------------===//
  15. #include "llvm/Transforms/Utils/SplitModule.h"
  16. #include "llvm/ADT/DenseMap.h"
  17. #include "llvm/ADT/EquivalenceClasses.h"
  18. #include "llvm/ADT/SmallPtrSet.h"
  19. #include "llvm/ADT/SmallVector.h"
  20. #include "llvm/ADT/StringRef.h"
  21. #include "llvm/IR/Comdat.h"
  22. #include "llvm/IR/Constant.h"
  23. #include "llvm/IR/Constants.h"
  24. #include "llvm/IR/Function.h"
  25. #include "llvm/IR/GlobalAlias.h"
  26. #include "llvm/IR/GlobalObject.h"
  27. #include "llvm/IR/GlobalIndirectSymbol.h"
  28. #include "llvm/IR/GlobalValue.h"
  29. #include "llvm/IR/GlobalVariable.h"
  30. #include "llvm/IR/Instruction.h"
  31. #include "llvm/IR/Module.h"
  32. #include "llvm/IR/User.h"
  33. #include "llvm/IR/Value.h"
  34. #include "llvm/Support/Casting.h"
  35. #include "llvm/Support/Debug.h"
  36. #include "llvm/Support/ErrorHandling.h"
  37. #include "llvm/Support/MD5.h"
  38. #include "llvm/Support/raw_ostream.h"
  39. #include "llvm/Transforms/Utils/Cloning.h"
  40. #include "llvm/Transforms/Utils/ValueMapper.h"
  41. #include <algorithm>
  42. #include <cassert>
  43. #include <iterator>
  44. #include <memory>
  45. #include <queue>
  46. #include <utility>
  47. #include <vector>
  48. using namespace llvm;
  49. #define DEBUG_TYPE "split-module"
  50. namespace {
  51. using ClusterMapType = EquivalenceClasses<const GlobalValue *>;
  52. using ComdatMembersType = DenseMap<const Comdat *, const GlobalValue *>;
  53. using ClusterIDMapType = DenseMap<const GlobalValue *, unsigned>;
  54. } // end anonymous namespace
  55. static void addNonConstUser(ClusterMapType &GVtoClusterMap,
  56. const GlobalValue *GV, const User *U) {
  57. assert((!isa<Constant>(U) || isa<GlobalValue>(U)) && "Bad user");
  58. if (const Instruction *I = dyn_cast<Instruction>(U)) {
  59. const GlobalValue *F = I->getParent()->getParent();
  60. GVtoClusterMap.unionSets(GV, F);
  61. } else if (isa<GlobalIndirectSymbol>(U) || isa<Function>(U) ||
  62. isa<GlobalVariable>(U)) {
  63. GVtoClusterMap.unionSets(GV, cast<GlobalValue>(U));
  64. } else {
  65. llvm_unreachable("Underimplemented use case");
  66. }
  67. }
  68. // Adds all GlobalValue users of V to the same cluster as GV.
  69. static void addAllGlobalValueUsers(ClusterMapType &GVtoClusterMap,
  70. const GlobalValue *GV, const Value *V) {
  71. for (auto *U : V->users()) {
  72. SmallVector<const User *, 4> Worklist;
  73. Worklist.push_back(U);
  74. while (!Worklist.empty()) {
  75. const User *UU = Worklist.pop_back_val();
  76. // For each constant that is not a GV (a pure const) recurse.
  77. if (isa<Constant>(UU) && !isa<GlobalValue>(UU)) {
  78. Worklist.append(UU->user_begin(), UU->user_end());
  79. continue;
  80. }
  81. addNonConstUser(GVtoClusterMap, GV, UU);
  82. }
  83. }
  84. }
  85. // Find partitions for module in the way that no locals need to be
  86. // globalized.
  87. // Try to balance pack those partitions into N files since this roughly equals
  88. // thread balancing for the backend codegen step.
  89. static void findPartitions(Module *M, ClusterIDMapType &ClusterIDMap,
  90. unsigned N) {
  91. // At this point module should have the proper mix of globals and locals.
  92. // As we attempt to partition this module, we must not change any
  93. // locals to globals.
  94. DEBUG(dbgs() << "Partition module with (" << M->size() << ")functions\n");
  95. ClusterMapType GVtoClusterMap;
  96. ComdatMembersType ComdatMembers;
  97. auto recordGVSet = [&GVtoClusterMap, &ComdatMembers](GlobalValue &GV) {
  98. if (GV.isDeclaration())
  99. return;
  100. if (!GV.hasName())
  101. GV.setName("__llvmsplit_unnamed");
  102. // Comdat groups must not be partitioned. For comdat groups that contain
  103. // locals, record all their members here so we can keep them together.
  104. // Comdat groups that only contain external globals are already handled by
  105. // the MD5-based partitioning.
  106. if (const Comdat *C = GV.getComdat()) {
  107. auto &Member = ComdatMembers[C];
  108. if (Member)
  109. GVtoClusterMap.unionSets(Member, &GV);
  110. else
  111. Member = &GV;
  112. }
  113. // For aliases we should not separate them from their aliasees regardless
  114. // of linkage.
  115. if (auto *GIS = dyn_cast<GlobalIndirectSymbol>(&GV)) {
  116. if (const GlobalObject *Base = GIS->getBaseObject())
  117. GVtoClusterMap.unionSets(&GV, Base);
  118. }
  119. if (const Function *F = dyn_cast<Function>(&GV)) {
  120. for (const BasicBlock &BB : *F) {
  121. BlockAddress *BA = BlockAddress::lookup(&BB);
  122. if (!BA || !BA->isConstantUsed())
  123. continue;
  124. addAllGlobalValueUsers(GVtoClusterMap, F, BA);
  125. }
  126. }
  127. if (GV.hasLocalLinkage())
  128. addAllGlobalValueUsers(GVtoClusterMap, &GV, &GV);
  129. };
  130. llvm::for_each(M->functions(), recordGVSet);
  131. llvm::for_each(M->globals(), recordGVSet);
  132. llvm::for_each(M->aliases(), recordGVSet);
  133. // Assigned all GVs to merged clusters while balancing number of objects in
  134. // each.
  135. auto CompareClusters = [](const std::pair<unsigned, unsigned> &a,
  136. const std::pair<unsigned, unsigned> &b) {
  137. if (a.second || b.second)
  138. return a.second > b.second;
  139. else
  140. return a.first > b.first;
  141. };
  142. std::priority_queue<std::pair<unsigned, unsigned>,
  143. std::vector<std::pair<unsigned, unsigned>>,
  144. decltype(CompareClusters)>
  145. BalancinQueue(CompareClusters);
  146. // Pre-populate priority queue with N slot blanks.
  147. for (unsigned i = 0; i < N; ++i)
  148. BalancinQueue.push(std::make_pair(i, 0));
  149. using SortType = std::pair<unsigned, ClusterMapType::iterator>;
  150. SmallVector<SortType, 64> Sets;
  151. SmallPtrSet<const GlobalValue *, 32> Visited;
  152. // To guarantee determinism, we have to sort SCC according to size.
  153. // When size is the same, use leader's name.
  154. for (ClusterMapType::iterator I = GVtoClusterMap.begin(),
  155. E = GVtoClusterMap.end(); I != E; ++I)
  156. if (I->isLeader())
  157. Sets.push_back(
  158. std::make_pair(std::distance(GVtoClusterMap.member_begin(I),
  159. GVtoClusterMap.member_end()), I));
  160. std::sort(Sets.begin(), Sets.end(), [](const SortType &a, const SortType &b) {
  161. if (a.first == b.first)
  162. return a.second->getData()->getName() > b.second->getData()->getName();
  163. else
  164. return a.first > b.first;
  165. });
  166. for (auto &I : Sets) {
  167. unsigned CurrentClusterID = BalancinQueue.top().first;
  168. unsigned CurrentClusterSize = BalancinQueue.top().second;
  169. BalancinQueue.pop();
  170. DEBUG(dbgs() << "Root[" << CurrentClusterID << "] cluster_size(" << I.first
  171. << ") ----> " << I.second->getData()->getName() << "\n");
  172. for (ClusterMapType::member_iterator MI =
  173. GVtoClusterMap.findLeader(I.second);
  174. MI != GVtoClusterMap.member_end(); ++MI) {
  175. if (!Visited.insert(*MI).second)
  176. continue;
  177. DEBUG(dbgs() << "----> " << (*MI)->getName()
  178. << ((*MI)->hasLocalLinkage() ? " l " : " e ") << "\n");
  179. Visited.insert(*MI);
  180. ClusterIDMap[*MI] = CurrentClusterID;
  181. CurrentClusterSize++;
  182. }
  183. // Add this set size to the number of entries in this cluster.
  184. BalancinQueue.push(std::make_pair(CurrentClusterID, CurrentClusterSize));
  185. }
  186. }
  187. static void externalize(GlobalValue *GV) {
  188. if (GV->hasLocalLinkage()) {
  189. GV->setLinkage(GlobalValue::ExternalLinkage);
  190. GV->setVisibility(GlobalValue::HiddenVisibility);
  191. }
  192. // Unnamed entities must be named consistently between modules. setName will
  193. // give a distinct name to each such entity.
  194. if (!GV->hasName())
  195. GV->setName("__llvmsplit_unnamed");
  196. }
  197. // Returns whether GV should be in partition (0-based) I of N.
  198. static bool isInPartition(const GlobalValue *GV, unsigned I, unsigned N) {
  199. if (auto *GIS = dyn_cast<GlobalIndirectSymbol>(GV))
  200. if (const GlobalObject *Base = GIS->getBaseObject())
  201. GV = Base;
  202. StringRef Name;
  203. if (const Comdat *C = GV->getComdat())
  204. Name = C->getName();
  205. else
  206. Name = GV->getName();
  207. // Partition by MD5 hash. We only need a few bits for evenness as the number
  208. // of partitions will generally be in the 1-2 figure range; the low 16 bits
  209. // are enough.
  210. MD5 H;
  211. MD5::MD5Result R;
  212. H.update(Name);
  213. H.final(R);
  214. return (R[0] | (R[1] << 8)) % N == I;
  215. }
  216. void llvm::SplitModule(
  217. std::unique_ptr<Module> M, unsigned N,
  218. function_ref<void(std::unique_ptr<Module> MPart)> ModuleCallback,
  219. bool PreserveLocals) {
  220. if (!PreserveLocals) {
  221. for (Function &F : *M)
  222. externalize(&F);
  223. for (GlobalVariable &GV : M->globals())
  224. externalize(&GV);
  225. for (GlobalAlias &GA : M->aliases())
  226. externalize(&GA);
  227. for (GlobalIFunc &GIF : M->ifuncs())
  228. externalize(&GIF);
  229. }
  230. // This performs splitting without a need for externalization, which might not
  231. // always be possible.
  232. ClusterIDMapType ClusterIDMap;
  233. findPartitions(M.get(), ClusterIDMap, N);
  234. // FIXME: We should be able to reuse M as the last partition instead of
  235. // cloning it.
  236. for (unsigned I = 0; I < N; ++I) {
  237. ValueToValueMapTy VMap;
  238. std::unique_ptr<Module> MPart(
  239. CloneModule(M.get(), VMap, [&](const GlobalValue *GV) {
  240. if (ClusterIDMap.count(GV))
  241. return (ClusterIDMap[GV] == I);
  242. else
  243. return isInPartition(GV, I, N);
  244. }));
  245. if (I != 0)
  246. MPart->setModuleInlineAsm("");
  247. ModuleCallback(std::move(MPart));
  248. }
  249. }