Home
last modified time | relevance | path

Searched refs:SectionMemoryManager (Results 1 – 25 of 41) sorted by relevance

12

/openbsd-src/gnu/llvm/llvm/lib/ExecutionEngine/
H A DSectionMemoryManager.cpp21 uint8_t *SectionMemoryManager::allocateDataSection(uintptr_t Size, in allocateDataSection()
27 return allocateSection(SectionMemoryManager::AllocationPurpose::ROData, in allocateDataSection()
29 return allocateSection(SectionMemoryManager::AllocationPurpose::RWData, Size, in allocateDataSection()
33 uint8_t *SectionMemoryManager::allocateCodeSection(uintptr_t Size, in allocateCodeSection()
37 return allocateSection(SectionMemoryManager::AllocationPurpose::Code, Size, in allocateCodeSection()
41 uint8_t *SectionMemoryManager::allocateSection( in allocateSection()
42 SectionMemoryManager::AllocationPurpose Purpose, uintptr_t Size, in allocateSection()
149 bool SectionMemoryManager::finalizeMemory(std::string *ErrMsg) { in finalizeMemory()
204 SectionMemoryManager::applyMemoryGroupPermissions(MemoryGroup &MemGroup, in applyMemoryGroupPermissions()
228 void SectionMemoryManager::invalidateInstructionCache() { in invalidateInstructionCache()
[all …]
H A DCMakeLists.txt7 SectionMemoryManager.cpp
/openbsd-src/gnu/llvm/llvm/include/llvm/ExecutionEngine/
H A DSectionMemoryManager.h39 class SectionMemoryManager : public RTDyldMemoryManager {
107 SectionMemoryManager(MemoryMapper *MM = nullptr);
108 SectionMemoryManager(const SectionMemoryManager &) = delete;
109 void operator=(const SectionMemoryManager &) = delete;
110 ~SectionMemoryManager() override;
/openbsd-src/gnu/llvm/llvm/examples/SpeculativeJIT/
H A DSpeculativeJIT.cpp132 static std::unique_ptr<SectionMemoryManager> createMemMgr() { in createMemMgr()
133 return std::make_unique<SectionMemoryManager>(); in createMemMgr()
/openbsd-src/gnu/llvm/llvm/utils/gn/secondary/llvm/lib/ExecutionEngine/
H A DBUILD.gn20 "SectionMemoryManager.cpp",
/openbsd-src/gnu/llvm/lldb/include/lldb/Expression/
H A DIRExecutionUnit.h236 class MemoryManager : public llvm::SectionMemoryManager {
315 std::unique_ptr<SectionMemoryManager> m_default_mm_up; ///< The memory
/openbsd-src/gnu/llvm/llvm/examples/Kaleidoscope/include/
H A DKaleidoscopeJIT.h50 []() { return std::make_unique<SectionMemoryManager>(); }), in KaleidoscopeJIT()
/openbsd-src/gnu/llvm/llvm/examples/OrcV2Examples/LLJITWithGDBRegistrationListener/
H A DLLJITWithGDBRegistrationListener.cpp68 return std::make_unique<SectionMemoryManager>(); in main()
/openbsd-src/gnu/llvm/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter1/
H A DKaleidoscopeJIT.h50 []() { return std::make_unique<SectionMemoryManager>(); }), in KaleidoscopeJIT()
/openbsd-src/gnu/llvm/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter2/
H A DKaleidoscopeJIT.h56 []() { return std::make_unique<SectionMemoryManager>(); }), in KaleidoscopeJIT()
/openbsd-src/gnu/llvm/llvm/tools/llvm-exegesis/lib/
H A DAssembler.cpp275 class TrackingSectionMemoryManager : public SectionMemoryManager {
284 return SectionMemoryManager::allocateCodeSection(Size, Alignment, SectionID, in allocateCodeSection()
/openbsd-src/gnu/llvm/llvm/docs/tutorial/
H A DBuildingAJIT1.rst120 #include "llvm/ExecutionEngine/SectionMemoryManager.h"
141 []() { return std::make_unique<SectionMemoryManager>(); }),
166 that returns a SectionMemoryManager, an off-the-shelf utility that provides all
315 | SectionMemoryManager.h | Provides the SectionMemoryManager class. |
H A DBuildingAJIT3.rst71 #include "llvm/ExecutionEngine/SectionMemoryManager.h"
104 ObjectLayer([]() { return std::make_shared<SectionMemoryManager>(); }),
H A DBuildingAJIT2.rst74 []() { return std::make_unique<SectionMemoryManager>(); }),
/openbsd-src/gnu/llvm/llvm/tools/llvm-jitlistener/
H A Dllvm-jitlistener.cpp158 RTDyldMemoryManager *MemMgr = new SectionMemoryManager(); in InitEE()
/openbsd-src/gnu/llvm/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter3/
H A DKaleidoscopeJIT.h67 []() { return std::make_unique<SectionMemoryManager>(); }), in KaleidoscopeJIT()
/openbsd-src/gnu/usr.bin/clang/libLLVMExecutionEngine/
H A DMakefile15 SectionMemoryManager.cpp \
/openbsd-src/gnu/llvm/clang/tools/clang-fuzzer/handle-llvm/
H A Dhandle_llvm.cpp181 builder.setMCJITMemoryManager(std::make_unique<SectionMemoryManager>()); in CreateAndRunJITFunc()
/openbsd-src/gnu/llvm/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter4/
H A DKaleidoscopeJIT.h154 []() { return std::make_unique<SectionMemoryManager>(); }), in KaleidoscopeJIT()
/openbsd-src/gnu/llvm/llvm/examples/Kaleidoscope/MCJIT/lazy/
H A Dtoy.cpp674 class HelpingMemoryManager : public SectionMemoryManager
701 void *pfn = SectionMemoryManager::getPointerToNamedFunction(Name, false); in getPointerToNamedFunction()
/openbsd-src/gnu/llvm/llvm/examples/Kaleidoscope/MCJIT/initial/
H A Dtoy.cpp671 class HelpingMemoryManager : public SectionMemoryManager
698 void *pfn = SectionMemoryManager::getPointerToNamedFunction(Name, false); in getPointerToNamedFunction()
/openbsd-src/gnu/llvm/llvm/tools/lli/
H A Dlli.cpp504 RTDyldMM = new SectionMemoryManager(); in main()
688 static_cast<SectionMemoryManager*>(RTDyldMM)->invalidateInstructionCache(); in main()
/openbsd-src/gnu/llvm/llvm/examples/Kaleidoscope/MCJIT/cached/
H A Dtoy.cpp763 class HelpingMemoryManager : public SectionMemoryManager
790 void *pfn = SectionMemoryManager::getPointerToNamedFunction(Name, false); in getPointerToNamedFunction()
/openbsd-src/gnu/llvm/llvm/lib/ExecutionEngine/MCJIT/
H A DMCJIT.cpp55 auto RTDyldMM = std::make_shared<SectionMemoryManager>(); in createJIT()
/openbsd-src/gnu/llvm/llvm/docs/
H A DMCJITDesignAndImplementation.rst23 this time, a default memory manager (specifically SectionMemoryManager)

12