1 //===--------- JITLinkGeneric.cpp - Generic JIT linker utilities ----------===// 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 // Generic JITLinker utility class. 10 // 11 //===----------------------------------------------------------------------===// 12 13 #include "JITLinkGeneric.h" 14 15 #include "llvm/Support/BinaryStreamReader.h" 16 #include "llvm/Support/MemoryBuffer.h" 17 18 #define DEBUG_TYPE "jitlink" 19 20 namespace llvm { 21 namespace jitlink { 22 23 JITLinkerBase::~JITLinkerBase() {} 24 25 void JITLinkerBase::linkPhase1(std::unique_ptr<JITLinkerBase> Self) { 26 27 LLVM_DEBUG({ dbgs() << "Building jitlink graph for new input...\n"; }); 28 29 // Build the link graph. 30 if (auto GraphOrErr = buildGraph(Ctx->getObjectBuffer())) 31 G = std::move(*GraphOrErr); 32 else 33 return Ctx->notifyFailed(GraphOrErr.takeError()); 34 assert(G && "Graph should have been created by buildGraph above"); 35 36 LLVM_DEBUG({ 37 dbgs() << "Starting link phase 1 for graph " << G->getName() << "\n"; 38 }); 39 40 // Prune and optimize the graph. 41 if (auto Err = runPasses(Passes.PrePrunePasses)) 42 return Ctx->notifyFailed(std::move(Err)); 43 44 LLVM_DEBUG({ 45 dbgs() << "Link graph \"" << G->getName() << "\" pre-pruning:\n"; 46 dumpGraph(dbgs()); 47 }); 48 49 prune(*G); 50 51 LLVM_DEBUG({ 52 dbgs() << "Link graph \"" << G->getName() << "\" post-pruning:\n"; 53 dumpGraph(dbgs()); 54 }); 55 56 // Run post-pruning passes. 57 if (auto Err = runPasses(Passes.PostPrunePasses)) 58 return Ctx->notifyFailed(std::move(Err)); 59 60 // Sort blocks into segments. 61 auto Layout = layOutBlocks(); 62 63 // Allocate memory for segments. 64 if (auto Err = allocateSegments(Layout)) 65 return Ctx->notifyFailed(std::move(Err)); 66 67 // Notify client that the defined symbols have been assigned addresses. 68 LLVM_DEBUG( 69 { dbgs() << "Resolving symbols defined in " << G->getName() << "\n"; }); 70 Ctx->notifyResolved(*G); 71 72 auto ExternalSymbols = getExternalSymbolNames(); 73 74 LLVM_DEBUG({ 75 dbgs() << "Issuing lookup for external symbols for " << G->getName() 76 << " (may trigger materialization/linking of other graphs)...\n"; 77 }); 78 79 // We're about to hand off ownership of ourself to the continuation. Grab a 80 // pointer to the context so that we can call it to initiate the lookup. 81 // 82 // FIXME: Once callee expressions are defined to be sequenced before argument 83 // expressions (c++17) we can simplify all this to: 84 // 85 // Ctx->lookup(std::move(UnresolvedExternals), 86 // [Self=std::move(Self)](Expected<AsyncLookupResult> Result) { 87 // Self->linkPhase2(std::move(Self), std::move(Result)); 88 // }); 89 auto *TmpCtx = Ctx.get(); 90 TmpCtx->lookup(std::move(ExternalSymbols), 91 createLookupContinuation( 92 [S = std::move(Self), L = std::move(Layout)]( 93 Expected<AsyncLookupResult> LookupResult) mutable { 94 auto &TmpSelf = *S; 95 TmpSelf.linkPhase2(std::move(S), std::move(LookupResult), 96 std::move(L)); 97 })); 98 } 99 100 void JITLinkerBase::linkPhase2(std::unique_ptr<JITLinkerBase> Self, 101 Expected<AsyncLookupResult> LR, 102 SegmentLayoutMap Layout) { 103 104 LLVM_DEBUG({ 105 dbgs() << "Starting link phase 2 for graph " << G->getName() << "\n"; 106 }); 107 108 // If the lookup failed, bail out. 109 if (!LR) 110 return deallocateAndBailOut(LR.takeError()); 111 112 // Assign addresses to external addressables. 113 applyLookupResult(*LR); 114 115 // Copy block content to working memory. 116 copyBlockContentToWorkingMemory(Layout, *Alloc); 117 118 LLVM_DEBUG({ 119 dbgs() << "Link graph \"" << G->getName() 120 << "\" before post-allocation passes:\n"; 121 dumpGraph(dbgs()); 122 }); 123 124 if (auto Err = runPasses(Passes.PostAllocationPasses)) 125 return deallocateAndBailOut(std::move(Err)); 126 127 LLVM_DEBUG({ 128 dbgs() << "Link graph \"" << G->getName() << "\" before copy-and-fixup:\n"; 129 dumpGraph(dbgs()); 130 }); 131 132 // Fix up block content. 133 if (auto Err = fixUpBlocks(*G)) 134 return deallocateAndBailOut(std::move(Err)); 135 136 LLVM_DEBUG({ 137 dbgs() << "Link graph \"" << G->getName() << "\" after copy-and-fixup:\n"; 138 dumpGraph(dbgs()); 139 }); 140 141 if (auto Err = runPasses(Passes.PostFixupPasses)) 142 return deallocateAndBailOut(std::move(Err)); 143 144 // FIXME: Use move capture once we have c++14. 145 auto *UnownedSelf = Self.release(); 146 auto Phase3Continuation = [UnownedSelf](Error Err) { 147 std::unique_ptr<JITLinkerBase> Self(UnownedSelf); 148 UnownedSelf->linkPhase3(std::move(Self), std::move(Err)); 149 }; 150 151 Alloc->finalizeAsync(std::move(Phase3Continuation)); 152 } 153 154 void JITLinkerBase::linkPhase3(std::unique_ptr<JITLinkerBase> Self, Error Err) { 155 156 LLVM_DEBUG({ 157 dbgs() << "Starting link phase 3 for graph " << G->getName() << "\n"; 158 }); 159 160 if (Err) 161 return deallocateAndBailOut(std::move(Err)); 162 Ctx->notifyFinalized(std::move(Alloc)); 163 164 LLVM_DEBUG({ dbgs() << "Link of graph " << G->getName() << " complete\n"; }); 165 } 166 167 Error JITLinkerBase::runPasses(LinkGraphPassList &Passes) { 168 for (auto &P : Passes) 169 if (auto Err = P(*G)) 170 return Err; 171 return Error::success(); 172 } 173 174 JITLinkerBase::SegmentLayoutMap JITLinkerBase::layOutBlocks() { 175 176 SegmentLayoutMap Layout; 177 178 /// Partition blocks based on permissions and content vs. zero-fill. 179 for (auto *B : G->blocks()) { 180 auto &SegLists = Layout[B->getSection().getProtectionFlags()]; 181 if (!B->isZeroFill()) 182 SegLists.ContentBlocks.push_back(B); 183 else 184 SegLists.ZeroFillBlocks.push_back(B); 185 } 186 187 /// Sort blocks within each list. 188 for (auto &KV : Layout) { 189 190 auto CompareBlocks = [](const Block *LHS, const Block *RHS) { 191 // Sort by section, address and size 192 if (LHS->getSection().getOrdinal() != RHS->getSection().getOrdinal()) 193 return LHS->getSection().getOrdinal() < RHS->getSection().getOrdinal(); 194 if (LHS->getAddress() != RHS->getAddress()) 195 return LHS->getAddress() < RHS->getAddress(); 196 return LHS->getSize() < RHS->getSize(); 197 }; 198 199 auto &SegLists = KV.second; 200 llvm::sort(SegLists.ContentBlocks, CompareBlocks); 201 llvm::sort(SegLists.ZeroFillBlocks, CompareBlocks); 202 } 203 204 LLVM_DEBUG({ 205 dbgs() << "Computed segment ordering:\n"; 206 for (auto &KV : Layout) { 207 dbgs() << " Segment " 208 << static_cast<sys::Memory::ProtectionFlags>(KV.first) << ":\n"; 209 auto &SL = KV.second; 210 for (auto &SIEntry : 211 {std::make_pair(&SL.ContentBlocks, "content block"), 212 std::make_pair(&SL.ZeroFillBlocks, "zero-fill block")}) { 213 dbgs() << " " << SIEntry.second << ":\n"; 214 for (auto *B : *SIEntry.first) 215 dbgs() << " " << *B << "\n"; 216 } 217 } 218 }); 219 220 return Layout; 221 } 222 223 Error JITLinkerBase::allocateSegments(const SegmentLayoutMap &Layout) { 224 225 // Compute segment sizes and allocate memory. 226 LLVM_DEBUG(dbgs() << "JIT linker requesting: { "); 227 JITLinkMemoryManager::SegmentsRequestMap Segments; 228 for (auto &KV : Layout) { 229 auto &Prot = KV.first; 230 auto &SegLists = KV.second; 231 232 uint64_t SegAlign = 1; 233 234 // Calculate segment content size. 235 size_t SegContentSize = 0; 236 for (auto *B : SegLists.ContentBlocks) { 237 SegAlign = std::max(SegAlign, B->getAlignment()); 238 SegContentSize = alignToBlock(SegContentSize, *B); 239 SegContentSize += B->getSize(); 240 } 241 242 uint64_t SegZeroFillStart = SegContentSize; 243 uint64_t SegZeroFillEnd = SegZeroFillStart; 244 245 for (auto *B : SegLists.ZeroFillBlocks) { 246 SegAlign = std::max(SegAlign, B->getAlignment()); 247 SegZeroFillEnd = alignToBlock(SegZeroFillEnd, *B); 248 SegZeroFillEnd += B->getSize(); 249 } 250 251 Segments[Prot] = {SegAlign, SegContentSize, 252 SegZeroFillEnd - SegZeroFillStart}; 253 254 LLVM_DEBUG({ 255 dbgs() << (&KV == &*Layout.begin() ? "" : "; ") 256 << static_cast<sys::Memory::ProtectionFlags>(Prot) 257 << ": alignment = " << SegAlign 258 << ", content size = " << SegContentSize 259 << ", zero-fill size = " << (SegZeroFillEnd - SegZeroFillStart); 260 }); 261 } 262 LLVM_DEBUG(dbgs() << " }\n"); 263 264 if (auto AllocOrErr = Ctx->getMemoryManager().allocate(Segments)) 265 Alloc = std::move(*AllocOrErr); 266 else 267 return AllocOrErr.takeError(); 268 269 LLVM_DEBUG({ 270 dbgs() << "JIT linker got working memory:\n"; 271 for (auto &KV : Layout) { 272 auto Prot = static_cast<sys::Memory::ProtectionFlags>(KV.first); 273 dbgs() << " " << Prot << ": " 274 << (const void *)Alloc->getWorkingMemory(Prot).data() << "\n"; 275 } 276 }); 277 278 // Update block target addresses. 279 for (auto &KV : Layout) { 280 auto &Prot = KV.first; 281 auto &SL = KV.second; 282 283 JITTargetAddress NextBlockAddr = 284 Alloc->getTargetMemory(static_cast<sys::Memory::ProtectionFlags>(Prot)); 285 286 for (auto *SIList : {&SL.ContentBlocks, &SL.ZeroFillBlocks}) 287 for (auto *B : *SIList) { 288 NextBlockAddr = alignToBlock(NextBlockAddr, *B); 289 B->setAddress(NextBlockAddr); 290 NextBlockAddr += B->getSize(); 291 } 292 } 293 294 return Error::success(); 295 } 296 297 JITLinkContext::LookupMap JITLinkerBase::getExternalSymbolNames() const { 298 // Identify unresolved external symbols. 299 JITLinkContext::LookupMap UnresolvedExternals; 300 for (auto *Sym : G->external_symbols()) { 301 assert(Sym->getAddress() == 0 && 302 "External has already been assigned an address"); 303 assert(Sym->getName() != StringRef() && Sym->getName() != "" && 304 "Externals must be named"); 305 SymbolLookupFlags LookupFlags = 306 Sym->getLinkage() == Linkage::Weak 307 ? SymbolLookupFlags::WeaklyReferencedSymbol 308 : SymbolLookupFlags::RequiredSymbol; 309 UnresolvedExternals[Sym->getName()] = LookupFlags; 310 } 311 return UnresolvedExternals; 312 } 313 314 void JITLinkerBase::applyLookupResult(AsyncLookupResult Result) { 315 for (auto *Sym : G->external_symbols()) { 316 assert(Sym->getOffset() == 0 && 317 "External symbol is not at the start of its addressable block"); 318 assert(Sym->getAddress() == 0 && "Symbol already resolved"); 319 assert(!Sym->isDefined() && "Symbol being resolved is already defined"); 320 auto ResultI = Result.find(Sym->getName()); 321 if (ResultI != Result.end()) 322 Sym->getAddressable().setAddress(ResultI->second.getAddress()); 323 else 324 assert(Sym->getLinkage() == Linkage::Weak && 325 "Failed to resolve non-weak reference"); 326 } 327 328 LLVM_DEBUG({ 329 dbgs() << "Externals after applying lookup result:\n"; 330 for (auto *Sym : G->external_symbols()) 331 dbgs() << " " << Sym->getName() << ": " 332 << formatv("{0:x16}", Sym->getAddress()) << "\n"; 333 }); 334 assert(llvm::all_of(G->external_symbols(), 335 [](Symbol *Sym) { 336 return Sym->getAddress() != 0 || 337 Sym->getLinkage() == Linkage::Weak; 338 }) && 339 "All strong external symbols should have been resolved by now"); 340 } 341 342 void JITLinkerBase::copyBlockContentToWorkingMemory( 343 const SegmentLayoutMap &Layout, JITLinkMemoryManager::Allocation &Alloc) { 344 345 LLVM_DEBUG(dbgs() << "Copying block content:\n"); 346 for (auto &KV : Layout) { 347 auto &Prot = KV.first; 348 auto &SegLayout = KV.second; 349 350 auto SegMem = 351 Alloc.getWorkingMemory(static_cast<sys::Memory::ProtectionFlags>(Prot)); 352 char *LastBlockEnd = SegMem.data(); 353 char *BlockDataPtr = LastBlockEnd; 354 355 LLVM_DEBUG({ 356 dbgs() << " Processing segment " 357 << static_cast<sys::Memory::ProtectionFlags>(Prot) << " [ " 358 << (const void *)SegMem.data() << " .. " 359 << (const void *)((char *)SegMem.data() + SegMem.size()) 360 << " ]\n Processing content sections:\n"; 361 }); 362 363 for (auto *B : SegLayout.ContentBlocks) { 364 LLVM_DEBUG(dbgs() << " " << *B << ":\n"); 365 366 // Pad to alignment/alignment-offset. 367 BlockDataPtr = alignToBlock(BlockDataPtr, *B); 368 369 LLVM_DEBUG({ 370 dbgs() << " Bumped block pointer to " << (const void *)BlockDataPtr 371 << " to meet block alignment " << B->getAlignment() 372 << " and alignment offset " << B->getAlignmentOffset() << "\n"; 373 }); 374 375 // Zero pad up to alignment. 376 LLVM_DEBUG({ 377 if (LastBlockEnd != BlockDataPtr) 378 dbgs() << " Zero padding from " << (const void *)LastBlockEnd 379 << " to " << (const void *)BlockDataPtr << "\n"; 380 }); 381 382 while (LastBlockEnd != BlockDataPtr) 383 *LastBlockEnd++ = 0; 384 385 // Copy initial block content. 386 LLVM_DEBUG({ 387 dbgs() << " Copying block " << *B << " content, " 388 << B->getContent().size() << " bytes, from " 389 << (const void *)B->getContent().data() << " to " 390 << (const void *)BlockDataPtr << "\n"; 391 }); 392 memcpy(BlockDataPtr, B->getContent().data(), B->getContent().size()); 393 394 // Point the block's content to the fixed up buffer. 395 B->setContent(StringRef(BlockDataPtr, B->getContent().size())); 396 397 // Update block end pointer. 398 LastBlockEnd = BlockDataPtr + B->getContent().size(); 399 BlockDataPtr = LastBlockEnd; 400 } 401 402 // Zero pad the rest of the segment. 403 LLVM_DEBUG({ 404 dbgs() << " Zero padding end of segment from " 405 << (const void *)LastBlockEnd << " to " 406 << (const void *)((char *)SegMem.data() + SegMem.size()) << "\n"; 407 }); 408 while (LastBlockEnd != SegMem.data() + SegMem.size()) 409 *LastBlockEnd++ = 0; 410 } 411 } 412 413 void JITLinkerBase::deallocateAndBailOut(Error Err) { 414 assert(Err && "Should not be bailing out on success value"); 415 assert(Alloc && "can not call deallocateAndBailOut before allocation"); 416 Ctx->notifyFailed(joinErrors(std::move(Err), Alloc->deallocate())); 417 } 418 419 void JITLinkerBase::dumpGraph(raw_ostream &OS) { 420 assert(G && "Graph is not set yet"); 421 G->dump(dbgs(), [this](Edge::Kind K) { return getEdgeKindName(K); }); 422 } 423 424 void prune(LinkGraph &G) { 425 std::vector<Symbol *> Worklist; 426 DenseSet<Block *> VisitedBlocks; 427 428 // Build the initial worklist from all symbols initially live. 429 for (auto *Sym : G.defined_symbols()) 430 if (Sym->isLive()) 431 Worklist.push_back(Sym); 432 433 // Propagate live flags to all symbols reachable from the initial live set. 434 while (!Worklist.empty()) { 435 auto *Sym = Worklist.back(); 436 Worklist.pop_back(); 437 438 auto &B = Sym->getBlock(); 439 440 // Skip addressables that we've visited before. 441 if (VisitedBlocks.count(&B)) 442 continue; 443 444 VisitedBlocks.insert(&B); 445 446 for (auto &E : Sym->getBlock().edges()) { 447 if (E.getTarget().isDefined() && !E.getTarget().isLive()) { 448 E.getTarget().setLive(true); 449 Worklist.push_back(&E.getTarget()); 450 } 451 } 452 } 453 454 // Collect all the symbols to remove, then remove them. 455 { 456 LLVM_DEBUG(dbgs() << "Dead-stripping symbols:\n"); 457 std::vector<Symbol *> SymbolsToRemove; 458 for (auto *Sym : G.defined_symbols()) 459 if (!Sym->isLive()) 460 SymbolsToRemove.push_back(Sym); 461 for (auto *Sym : SymbolsToRemove) { 462 LLVM_DEBUG(dbgs() << " " << *Sym << "...\n"); 463 G.removeDefinedSymbol(*Sym); 464 } 465 } 466 467 // Delete any unused blocks. 468 { 469 LLVM_DEBUG(dbgs() << "Dead-stripping blocks:\n"); 470 std::vector<Block *> BlocksToRemove; 471 for (auto *B : G.blocks()) 472 if (!VisitedBlocks.count(B)) 473 BlocksToRemove.push_back(B); 474 for (auto *B : BlocksToRemove) { 475 LLVM_DEBUG(dbgs() << " " << *B << "...\n"); 476 G.removeBlock(*B); 477 } 478 } 479 } 480 481 } // end namespace jitlink 482 } // end namespace llvm 483