xref: /llvm-project/llvm/lib/ExecutionEngine/JITLink/JITLinkMemoryManager.cpp (revision 089acf25223d2be22c07f5d8da8488b791b26af9)
1 //===--- JITLinkMemoryManager.cpp - JITLinkMemoryManager implementation ---===//
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 #include "llvm/ExecutionEngine/JITLink/JITLinkMemoryManager.h"
10 #include "llvm/ExecutionEngine/JITLink/JITLink.h"
11 #include "llvm/Support/FormatVariadic.h"
12 #include "llvm/Support/Process.h"
13 
14 #define DEBUG_TYPE "jitlink"
15 
16 using namespace llvm;
17 
18 namespace llvm {
19 namespace jitlink {
20 
21 JITLinkMemoryManager::~JITLinkMemoryManager() = default;
22 JITLinkMemoryManager::InFlightAlloc::~InFlightAlloc() = default;
23 
24 BasicLayout::BasicLayout(LinkGraph &G) : G(G) {
25 
26   for (auto &Sec : G.sections()) {
27     // Skip empty sections.
28     if (empty(Sec.blocks()))
29       continue;
30 
31     auto &Seg = Segments[{Sec.getMemProt(), Sec.getMemDeallocPolicy()}];
32     for (auto *B : Sec.blocks())
33       if (LLVM_LIKELY(!B->isZeroFill()))
34         Seg.ContentBlocks.push_back(B);
35       else
36         Seg.ZeroFillBlocks.push_back(B);
37   }
38 
39   // Build Segments map.
40   auto CompareBlocks = [](const Block *LHS, const Block *RHS) {
41     // Sort by section, address and size
42     if (LHS->getSection().getOrdinal() != RHS->getSection().getOrdinal())
43       return LHS->getSection().getOrdinal() < RHS->getSection().getOrdinal();
44     if (LHS->getAddress() != RHS->getAddress())
45       return LHS->getAddress() < RHS->getAddress();
46     return LHS->getSize() < RHS->getSize();
47   };
48 
49   LLVM_DEBUG(dbgs() << "Generated BasicLayout for " << G.getName() << ":\n");
50   for (auto &KV : Segments) {
51     auto &Seg = KV.second;
52 
53     llvm::sort(Seg.ContentBlocks, CompareBlocks);
54     llvm::sort(Seg.ZeroFillBlocks, CompareBlocks);
55 
56     for (auto *B : Seg.ContentBlocks) {
57       Seg.ContentSize = alignToBlock(Seg.ContentSize, *B);
58       Seg.ContentSize += B->getSize();
59       Seg.Alignment = std::max(Seg.Alignment, Align(B->getAlignment()));
60     }
61 
62     uint64_t SegEndOffset = Seg.ContentSize;
63     for (auto *B : Seg.ZeroFillBlocks) {
64       SegEndOffset = alignToBlock(SegEndOffset, *B);
65       SegEndOffset += B->getSize();
66       Seg.Alignment = std::max(Seg.Alignment, Align(B->getAlignment()));
67     }
68     Seg.ZeroFillSize = SegEndOffset - Seg.ContentSize;
69 
70     LLVM_DEBUG({
71       dbgs() << "  Seg " << KV.first
72              << ": content-size=" << formatv("{0:x}", Seg.ContentSize)
73              << ", zero-fill-size=" << formatv("{0:x}", Seg.ZeroFillSize)
74              << ", align=" << formatv("{0:x}", Seg.Alignment.value()) << "\n";
75     });
76   }
77 }
78 
79 Expected<BasicLayout::ContiguousPageBasedLayoutSizes>
80 BasicLayout::getContiguousPageBasedLayoutSizes(uint64_t PageSize) {
81   ContiguousPageBasedLayoutSizes SegsSizes;
82 
83   for (auto &KV : segments()) {
84     auto &AG = KV.first;
85     auto &Seg = KV.second;
86 
87     if (Seg.Alignment > PageSize)
88       return make_error<StringError>("Segment alignment greater than page size",
89                                      inconvertibleErrorCode());
90 
91     uint64_t SegSize = alignTo(Seg.ContentSize + Seg.ZeroFillSize, PageSize);
92     if (AG.getMemDeallocPolicy() == MemDeallocPolicy::Standard)
93       SegsSizes.StandardSegs += SegSize;
94     else
95       SegsSizes.FinalizeSegs += SegSize;
96   }
97 
98   return SegsSizes;
99 }
100 
101 Error BasicLayout::apply() {
102   for (auto &KV : Segments) {
103     auto &Seg = KV.second;
104 
105     assert(!(Seg.ContentBlocks.empty() && Seg.ZeroFillBlocks.empty()) &&
106            "Empty section recorded?");
107 
108     for (auto *B : Seg.ContentBlocks) {
109       // Align addr and working-mem-offset.
110       Seg.Addr = alignToBlock(Seg.Addr, *B);
111       Seg.NextWorkingMemOffset = alignToBlock(Seg.NextWorkingMemOffset, *B);
112 
113       // Update block addr.
114       B->setAddress(Seg.Addr);
115       Seg.Addr += B->getSize();
116 
117       // Copy content to working memory, then update content to point at working
118       // memory.
119       memcpy(Seg.WorkingMem + Seg.NextWorkingMemOffset, B->getContent().data(),
120              B->getSize());
121       B->setMutableContent(
122           {Seg.WorkingMem + Seg.NextWorkingMemOffset, B->getSize()});
123       Seg.NextWorkingMemOffset += B->getSize();
124     }
125 
126     for (auto *B : Seg.ZeroFillBlocks) {
127       // Align addr.
128       Seg.Addr = alignToBlock(Seg.Addr, *B);
129       // Update block addr.
130       B->setAddress(Seg.Addr);
131       Seg.Addr += B->getSize();
132     }
133 
134     Seg.ContentBlocks.clear();
135     Seg.ZeroFillBlocks.clear();
136   }
137 
138   return Error::success();
139 }
140 
141 orc::shared::AllocActions &BasicLayout::graphAllocActions() {
142   return G.allocActions();
143 }
144 
145 void SimpleSegmentAlloc::Create(JITLinkMemoryManager &MemMgr,
146                                 const JITLinkDylib *JD, SegmentMap Segments,
147                                 OnCreatedFunction OnCreated) {
148 
149   static_assert(AllocGroup::NumGroups == 16,
150                 "AllocGroup has changed. Section names below must be updated");
151   StringRef AGSectionNames[] = {
152       "__---.standard", "__R--.standard", "__-W-.standard", "__RW-.standard",
153       "__--X.standard", "__R-X.standard", "__-WX.standard", "__RWX.standard",
154       "__---.finalize", "__R--.finalize", "__-W-.finalize", "__RW-.finalize",
155       "__--X.finalize", "__R-X.finalize", "__-WX.finalize", "__RWX.finalize"};
156 
157   auto G =
158       std::make_unique<LinkGraph>("", Triple(), 0, support::native, nullptr);
159   AllocGroupSmallMap<Block *> ContentBlocks;
160 
161   orc::ExecutorAddr NextAddr(0x100000);
162   for (auto &KV : Segments) {
163     auto &AG = KV.first;
164     auto &Seg = KV.second;
165 
166     auto AGSectionName =
167         AGSectionNames[static_cast<unsigned>(AG.getMemProt()) |
168                        static_cast<bool>(AG.getMemDeallocPolicy()) << 3];
169 
170     auto &Sec = G->createSection(AGSectionName, AG.getMemProt());
171     Sec.setMemDeallocPolicy(AG.getMemDeallocPolicy());
172 
173     if (Seg.ContentSize != 0) {
174       NextAddr =
175           orc::ExecutorAddr(alignTo(NextAddr.getValue(), Seg.ContentAlign));
176       auto &B =
177           G->createMutableContentBlock(Sec, G->allocateBuffer(Seg.ContentSize),
178                                        NextAddr, Seg.ContentAlign.value(), 0);
179       ContentBlocks[AG] = &B;
180       NextAddr += Seg.ContentSize;
181     }
182   }
183 
184   // GRef declared separately since order-of-argument-eval isn't specified.
185   auto &GRef = *G;
186   MemMgr.allocate(JD, GRef,
187                   [G = std::move(G), ContentBlocks = std::move(ContentBlocks),
188                    OnCreated = std::move(OnCreated)](
189                       JITLinkMemoryManager::AllocResult Alloc) mutable {
190                     if (!Alloc)
191                       OnCreated(Alloc.takeError());
192                     else
193                       OnCreated(SimpleSegmentAlloc(std::move(G),
194                                                    std::move(ContentBlocks),
195                                                    std::move(*Alloc)));
196                   });
197 }
198 
199 Expected<SimpleSegmentAlloc>
200 SimpleSegmentAlloc::Create(JITLinkMemoryManager &MemMgr, const JITLinkDylib *JD,
201                            SegmentMap Segments) {
202   std::promise<MSVCPExpected<SimpleSegmentAlloc>> AllocP;
203   auto AllocF = AllocP.get_future();
204   Create(MemMgr, JD, std::move(Segments),
205          [&](Expected<SimpleSegmentAlloc> Result) {
206            AllocP.set_value(std::move(Result));
207          });
208   return AllocF.get();
209 }
210 
211 SimpleSegmentAlloc::SimpleSegmentAlloc(SimpleSegmentAlloc &&) = default;
212 SimpleSegmentAlloc &
213 SimpleSegmentAlloc::operator=(SimpleSegmentAlloc &&) = default;
214 SimpleSegmentAlloc::~SimpleSegmentAlloc() {}
215 
216 SimpleSegmentAlloc::SegmentInfo SimpleSegmentAlloc::getSegInfo(AllocGroup AG) {
217   auto I = ContentBlocks.find(AG);
218   if (I != ContentBlocks.end()) {
219     auto &B = *I->second;
220     return {B.getAddress(), B.getAlreadyMutableContent()};
221   }
222   return {};
223 }
224 
225 SimpleSegmentAlloc::SimpleSegmentAlloc(
226     std::unique_ptr<LinkGraph> G, AllocGroupSmallMap<Block *> ContentBlocks,
227     std::unique_ptr<JITLinkMemoryManager::InFlightAlloc> Alloc)
228     : G(std::move(G)), ContentBlocks(std::move(ContentBlocks)),
229       Alloc(std::move(Alloc)) {}
230 
231 class InProcessMemoryManager::IPInFlightAlloc
232     : public JITLinkMemoryManager::InFlightAlloc {
233 public:
234   IPInFlightAlloc(InProcessMemoryManager &MemMgr, LinkGraph &G, BasicLayout BL,
235                   sys::MemoryBlock StandardSegments,
236                   sys::MemoryBlock FinalizationSegments)
237       : MemMgr(MemMgr), G(G), BL(std::move(BL)),
238         StandardSegments(std::move(StandardSegments)),
239         FinalizationSegments(std::move(FinalizationSegments)) {}
240 
241   void finalize(OnFinalizedFunction OnFinalized) override {
242 
243     // Apply memory protections to all segments.
244     if (auto Err = applyProtections()) {
245       OnFinalized(std::move(Err));
246       return;
247     }
248 
249     // Run finalization actions.
250     // FIXME: Roll back previous successful actions on failure.
251     std::vector<orc::shared::WrapperFunctionCall> DeallocActions;
252     DeallocActions.reserve(G.allocActions().size());
253     for (auto &ActPair : G.allocActions()) {
254       if (ActPair.Finalize)
255         if (auto Err = ActPair.Finalize.runWithSPSRetErrorMerged()) {
256           OnFinalized(std::move(Err));
257           return;
258         }
259       if (ActPair.Dealloc)
260         DeallocActions.push_back(ActPair.Dealloc);
261     }
262     G.allocActions().clear();
263 
264     // Release the finalize segments slab.
265     if (auto EC = sys::Memory::releaseMappedMemory(FinalizationSegments)) {
266       OnFinalized(errorCodeToError(EC));
267       return;
268     }
269 
270     // Continue with finalized allocation.
271     OnFinalized(MemMgr.createFinalizedAlloc(std::move(StandardSegments),
272                                             std::move(DeallocActions)));
273   }
274 
275   void abandon(OnAbandonedFunction OnAbandoned) override {
276     Error Err = Error::success();
277     if (auto EC = sys::Memory::releaseMappedMemory(FinalizationSegments))
278       Err = joinErrors(std::move(Err), errorCodeToError(EC));
279     if (auto EC = sys::Memory::releaseMappedMemory(StandardSegments))
280       Err = joinErrors(std::move(Err), errorCodeToError(EC));
281     OnAbandoned(std::move(Err));
282   }
283 
284 private:
285   Error applyProtections() {
286     for (auto &KV : BL.segments()) {
287       const auto &AG = KV.first;
288       auto &Seg = KV.second;
289 
290       auto Prot = toSysMemoryProtectionFlags(AG.getMemProt());
291 
292       uint64_t SegSize =
293           alignTo(Seg.ContentSize + Seg.ZeroFillSize, MemMgr.PageSize);
294       sys::MemoryBlock MB(Seg.WorkingMem, SegSize);
295       if (auto EC = sys::Memory::protectMappedMemory(MB, Prot))
296         return errorCodeToError(EC);
297       if (Prot & sys::Memory::MF_EXEC)
298         sys::Memory::InvalidateInstructionCache(MB.base(), MB.allocatedSize());
299     }
300     return Error::success();
301   }
302 
303   InProcessMemoryManager &MemMgr;
304   LinkGraph &G;
305   BasicLayout BL;
306   sys::MemoryBlock StandardSegments;
307   sys::MemoryBlock FinalizationSegments;
308 };
309 
310 Expected<std::unique_ptr<InProcessMemoryManager>>
311 InProcessMemoryManager::Create() {
312   if (auto PageSize = sys::Process::getPageSize())
313     return std::make_unique<InProcessMemoryManager>(*PageSize);
314   else
315     return PageSize.takeError();
316 }
317 
318 void InProcessMemoryManager::allocate(const JITLinkDylib *JD, LinkGraph &G,
319                                       OnAllocatedFunction OnAllocated) {
320 
321   // FIXME: Just check this once on startup.
322   if (!isPowerOf2_64((uint64_t)PageSize)) {
323     OnAllocated(make_error<StringError>("Page size is not a power of 2",
324                                         inconvertibleErrorCode()));
325     return;
326   }
327 
328   BasicLayout BL(G);
329 
330   /// Scan the request and calculate the group and total sizes.
331   /// Check that segment size is no larger than a page.
332   auto SegsSizes = BL.getContiguousPageBasedLayoutSizes(PageSize);
333   if (!SegsSizes) {
334     OnAllocated(SegsSizes.takeError());
335     return;
336   }
337 
338   /// Check that the total size requested (including zero fill) is not larger
339   /// than a size_t.
340   if (SegsSizes->total() > std::numeric_limits<size_t>::max()) {
341     OnAllocated(make_error<JITLinkError>(
342         "Total requested size " + formatv("{0:x}", SegsSizes->total()) +
343         " for graph " + G.getName() + " exceeds address space"));
344     return;
345   }
346 
347   // Allocate one slab for the whole thing (to make sure everything is
348   // in-range), then partition into standard and finalization blocks.
349   //
350   // FIXME: Make two separate allocations in the future to reduce
351   // fragmentation: finalization segments will usually be a single page, and
352   // standard segments are likely to be more than one page. Where multiple
353   // allocations are in-flight at once (likely) the current approach will leave
354   // a lot of single-page holes.
355   sys::MemoryBlock Slab;
356   sys::MemoryBlock StandardSegsMem;
357   sys::MemoryBlock FinalizeSegsMem;
358   {
359     const sys::Memory::ProtectionFlags ReadWrite =
360         static_cast<sys::Memory::ProtectionFlags>(sys::Memory::MF_READ |
361                                                   sys::Memory::MF_WRITE);
362 
363     std::error_code EC;
364     Slab = sys::Memory::allocateMappedMemory(SegsSizes->total(), nullptr,
365                                              ReadWrite, EC);
366 
367     if (EC) {
368       OnAllocated(errorCodeToError(EC));
369       return;
370     }
371 
372     // Zero-fill the whole slab up-front.
373     memset(Slab.base(), 0, Slab.allocatedSize());
374 
375     StandardSegsMem = {Slab.base(),
376                        static_cast<size_t>(SegsSizes->StandardSegs)};
377     FinalizeSegsMem = {(void *)((char *)Slab.base() + SegsSizes->StandardSegs),
378                        static_cast<size_t>(SegsSizes->FinalizeSegs)};
379   }
380 
381   auto NextStandardSegAddr = orc::ExecutorAddr::fromPtr(StandardSegsMem.base());
382   auto NextFinalizeSegAddr = orc::ExecutorAddr::fromPtr(FinalizeSegsMem.base());
383 
384   LLVM_DEBUG({
385     dbgs() << "InProcessMemoryManager allocated:\n";
386     if (SegsSizes->StandardSegs)
387       dbgs() << formatv("  [ {0:x16} -- {1:x16} ]", NextStandardSegAddr,
388                         NextStandardSegAddr + StandardSegsMem.allocatedSize())
389              << " to stardard segs\n";
390     else
391       dbgs() << "  no standard segs\n";
392     if (SegsSizes->FinalizeSegs)
393       dbgs() << formatv("  [ {0:x16} -- {1:x16} ]", NextFinalizeSegAddr,
394                         NextFinalizeSegAddr + FinalizeSegsMem.allocatedSize())
395              << " to finalize segs\n";
396     else
397       dbgs() << "  no finalize segs\n";
398   });
399 
400   // Build ProtMap, assign addresses.
401   for (auto &KV : BL.segments()) {
402     auto &AG = KV.first;
403     auto &Seg = KV.second;
404 
405     auto &SegAddr = (AG.getMemDeallocPolicy() == MemDeallocPolicy::Standard)
406                         ? NextStandardSegAddr
407                         : NextFinalizeSegAddr;
408 
409     Seg.WorkingMem = SegAddr.toPtr<char *>();
410     Seg.Addr = SegAddr;
411 
412     SegAddr += alignTo(Seg.ContentSize + Seg.ZeroFillSize, PageSize);
413   }
414 
415   if (auto Err = BL.apply()) {
416     OnAllocated(std::move(Err));
417     return;
418   }
419 
420   OnAllocated(std::make_unique<IPInFlightAlloc>(*this, G, std::move(BL),
421                                                 std::move(StandardSegsMem),
422                                                 std::move(FinalizeSegsMem)));
423 }
424 
425 void InProcessMemoryManager::deallocate(std::vector<FinalizedAlloc> Allocs,
426                                         OnDeallocatedFunction OnDeallocated) {
427   std::vector<sys::MemoryBlock> StandardSegmentsList;
428   std::vector<std::vector<orc::shared::WrapperFunctionCall>> DeallocActionsList;
429 
430   {
431     std::lock_guard<std::mutex> Lock(FinalizedAllocsMutex);
432     for (auto &Alloc : Allocs) {
433       auto *FA = Alloc.release().toPtr<FinalizedAllocInfo *>();
434       StandardSegmentsList.push_back(std::move(FA->StandardSegments));
435       if (!FA->DeallocActions.empty())
436         DeallocActionsList.push_back(std::move(FA->DeallocActions));
437       FA->~FinalizedAllocInfo();
438       FinalizedAllocInfos.Deallocate(FA);
439     }
440   }
441 
442   Error DeallocErr = Error::success();
443 
444   while (!DeallocActionsList.empty()) {
445     auto &DeallocActions = DeallocActionsList.back();
446     auto &StandardSegments = StandardSegmentsList.back();
447 
448     /// Run any deallocate calls.
449     while (!DeallocActions.empty()) {
450       if (auto Err = DeallocActions.back().runWithSPSRetErrorMerged())
451         DeallocErr = joinErrors(std::move(DeallocErr), std::move(Err));
452       DeallocActions.pop_back();
453     }
454 
455     /// Release the standard segments slab.
456     if (auto EC = sys::Memory::releaseMappedMemory(StandardSegments))
457       DeallocErr = joinErrors(std::move(DeallocErr), errorCodeToError(EC));
458 
459     DeallocActionsList.pop_back();
460     StandardSegmentsList.pop_back();
461   }
462 
463   OnDeallocated(std::move(DeallocErr));
464 }
465 
466 JITLinkMemoryManager::FinalizedAlloc
467 InProcessMemoryManager::createFinalizedAlloc(
468     sys::MemoryBlock StandardSegments,
469     std::vector<orc::shared::WrapperFunctionCall> DeallocActions) {
470   std::lock_guard<std::mutex> Lock(FinalizedAllocsMutex);
471   auto *FA = FinalizedAllocInfos.Allocate<FinalizedAllocInfo>();
472   new (FA) FinalizedAllocInfo(
473       {std::move(StandardSegments), std::move(DeallocActions)});
474   return FinalizedAlloc(orc::ExecutorAddr::fromPtr(FA));
475 }
476 
477 } // end namespace jitlink
478 } // end namespace llvm
479