/external/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/ |
D | SectionMemoryManager.cpp | 21 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() 140 bool SectionMemoryManager::finalizeMemory(std::string *ErrMsg) { in finalizeMemory() 195 SectionMemoryManager::applyMemoryGroupPermissions(MemoryGroup &MemGroup, in applyMemoryGroupPermissions() 221 void SectionMemoryManager::invalidateInstructionCache() { in invalidateInstructionCache() [all …]
|
D | CMakeLists.txt | 7 SectionMemoryManager.cpp
|
/external/swiftshader/third_party/llvm-16.0/llvm/lib/ExecutionEngine/ |
D | SectionMemoryManager.cpp | 21 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 …]
|
D | CMakeLists.txt | 7 SectionMemoryManager.cpp
|
/external/llvm/include/llvm/ExecutionEngine/ |
D | SectionMemoryManager.h | 37 class SectionMemoryManager : public RTDyldMemoryManager { 38 SectionMemoryManager(const SectionMemoryManager&) = delete; 39 void operator=(const SectionMemoryManager&) = delete; 42 SectionMemoryManager() { } in SectionMemoryManager() function 43 ~SectionMemoryManager() override;
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ExecutionEngine/ |
D | SectionMemoryManager.h | 40 class SectionMemoryManager : public RTDyldMemoryManager { 108 SectionMemoryManager(MemoryMapper *MM = nullptr); 109 SectionMemoryManager(const SectionMemoryManager &) = delete; 110 void operator=(const SectionMemoryManager &) = delete; 111 ~SectionMemoryManager() override;
|
/external/swiftshader/third_party/llvm-16.0/llvm/include/llvm/ExecutionEngine/ |
D | SectionMemoryManager.h | 39 class SectionMemoryManager : public RTDyldMemoryManager { 107 SectionMemoryManager(MemoryMapper *MM = nullptr); 108 SectionMemoryManager(const SectionMemoryManager &) = delete; 109 void operator=(const SectionMemoryManager &) = delete; 110 ~SectionMemoryManager() override;
|
/external/llvm/unittests/ExecutionEngine/MCJIT/ |
D | MCJITMemoryManagerTest.cpp | 18 std::unique_ptr<SectionMemoryManager> MemMgr(new SectionMemoryManager()); in TEST() 51 std::unique_ptr<SectionMemoryManager> MemMgr(new SectionMemoryManager()); in TEST() 84 std::unique_ptr<SectionMemoryManager> MemMgr(new SectionMemoryManager()); in TEST() 119 std::unique_ptr<SectionMemoryManager> MemMgr(new SectionMemoryManager()); in TEST()
|
D | MCJITCAPITest.cpp | 38 return static_cast<SectionMemoryManager*>(object)->allocateCodeSection( in roundTripAllocateCodeSection() 49 return static_cast<SectionMemoryManager*>(object)->allocateDataSection( in roundTripAllocateDataSection() 56 static_cast<SectionMemoryManager*>(object)->finalizeMemory(&errMsgString); in roundTripFinalizeMemory() 65 delete static_cast<SectionMemoryManager*>(object); in roundTripDestroy() 75 class TestReserveAllocationSpaceMemoryManager: public SectionMemoryManager { 109 return SectionMemoryManager::allocateDataSection(Size, Alignment, in allocateDataSection() 117 return SectionMemoryManager::allocateCodeSection(Size, Alignment, in allocateCodeSection() 273 new SectionMemoryManager(), in useRoundTripSectionMemoryManager()
|
D | MCJITObjectCacheTest.cpp | 164 MM.reset(new SectionMemoryManager()); in TEST_F() 198 MM.reset(new SectionMemoryManager()); in TEST_F()
|
/external/llvm/lib/ExecutionEngine/ |
D | SectionMemoryManager.cpp | 22 uint8_t *SectionMemoryManager::allocateDataSection(uintptr_t Size, in allocateDataSection() 32 uint8_t *SectionMemoryManager::allocateCodeSection(uintptr_t Size, in allocateCodeSection() 39 uint8_t *SectionMemoryManager::allocateSection(MemoryGroup &MemGroup, in allocateSection() 125 bool SectionMemoryManager::finalizeMemory(std::string *ErrMsg) in finalizeMemory() 181 SectionMemoryManager::applyMemoryGroupPermissions(MemoryGroup &MemGroup, in applyMemoryGroupPermissions() 206 void SectionMemoryManager::invalidateInstructionCache() { in invalidateInstructionCache() 211 SectionMemoryManager::~SectionMemoryManager() { in ~SectionMemoryManager()
|
D | CMakeLists.txt | 7 SectionMemoryManager.cpp
|
/external/tensorflow/tensorflow/compiler/xla/service/cpu/ |
D | orc_jit_memory_mapper.cc | 26 static llvm::SectionMemoryManager::MemoryMapper* mapper_instance 29 llvm::SectionMemoryManager::MemoryMapper* GetInstance() { in GetInstance() 35 std::unique_ptr<llvm::SectionMemoryManager::MemoryMapper> mapper) { in Registrar()
|
D | orc_jit_memory_mapper.h | 29 llvm::SectionMemoryManager::MemoryMapper* GetInstance(); 36 std::unique_ptr<llvm::SectionMemoryManager::MemoryMapper> mapper);
|
/external/llvm/unittests/ExecutionEngine/Orc/ |
D | ObjectLinkingLayerTest.cpp | 31 class SectionMemoryManagerWrapper : public SectionMemoryManager { 38 return SectionMemoryManager::needsToReserveAllocationSpace(); in needsToReserveAllocationSpace() 43 return SectionMemoryManager::finalizeMemory(ErrMsg); in finalizeMemory() 48 class SectionMemoryManagerWrapper : public SectionMemoryManager { in TEST() 57 return SectionMemoryManager::allocateDataSection(Size, Alignment, in TEST()
|
/external/tensorflow/tensorflow/compiler/xla/runtime/ |
D | memory_mapper.cc | 47 llvm::SectionMemoryManager::AllocationPurpose purpose, size_t len, in allocateMappedMemory() 69 using MemoryMapper = llvm::SectionMemoryManager::MemoryMapper; 70 using AllocationPurpose = llvm::SectionMemoryManager::AllocationPurpose; 137 if (purpose == llvm::SectionMemoryManager::AllocationPurpose::Code) {
|
D | memory_mapper.h | 41 : public llvm::SectionMemoryManager::MemoryMapper { 46 llvm::SectionMemoryManager::AllocationPurpose purpose, size_t len,
|
D | execution_engine.h | 94 llvm::SectionMemoryManager::MemoryMapper *section_memory_mapper = nullptr; 122 llvm::SectionMemoryManager::MemoryMapper *section_memory_mapper = nullptr;
|
D | execution_engine.cc | 44 using llvm::SectionMemoryManager; 220 return std::make_unique<SectionMemoryManager>(section_memory_mapper); in CreateFromModule() 316 return std::make_unique<SectionMemoryManager>(section_memory_mapper); in CreateFromObjFile()
|
/external/llvm/tools/lli/ |
D | OrcLazyJIT.h | 105 llvm::make_unique<SectionMemoryManager>(), in addModule() 147 SectionMemoryManager CCMgrMemMgr;
|
/external/llvm/lib/ExecutionEngine/Orc/ |
D | OrcCBindingsStack.h | 207 llvm::make_unique<SectionMemoryManager>(), in DEFINE_SIMPLE_CONVERSION_FUNCTIONS() 215 llvm::make_unique<SectionMemoryManager>(), in DEFINE_SIMPLE_CONVERSION_FUNCTIONS() 268 SectionMemoryManager CCMgrMemMgr; in DEFINE_SIMPLE_CONVERSION_FUNCTIONS()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/Orc/ |
D | OrcCBindingsStack.h | 223 std::make_shared<SectionMemoryManager>(), Resolver}; in OrcCBindingsStack() 330 std::make_unique<SectionMemoryManager>(), in addIRModuleEager() 344 std::make_unique<SectionMemoryManager>(), in addIRModuleLazy() 515 SectionMemoryManager CCMgrMemMgr;
|
/external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter1/ |
D | KaleidoscopeJIT.h | 82 make_unique<SectionMemoryManager>(), in addModule()
|
/external/llvm/examples/Kaleidoscope/include/ |
D | KaleidoscopeJIT.h | 68 make_unique<SectionMemoryManager>(), in addModule()
|
/external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter2/ |
D | KaleidoscopeJIT.h | 92 make_unique<SectionMemoryManager>(), in addModule()
|