/external/swiftshader/third_party/llvm-7.0/llvm/lib/ExecutionEngine/ |
D | SectionMemoryManager.cpp | 22 uint8_t *SectionMemoryManager::allocateDataSection(uintptr_t Size, in allocateDataSection() 28 return allocateSection(SectionMemoryManager::AllocationPurpose::ROData, in allocateDataSection() 30 return allocateSection(SectionMemoryManager::AllocationPurpose::RWData, Size, in allocateDataSection() 34 uint8_t *SectionMemoryManager::allocateCodeSection(uintptr_t Size, in allocateCodeSection() 38 return allocateSection(SectionMemoryManager::AllocationPurpose::Code, Size, in allocateCodeSection() 42 uint8_t *SectionMemoryManager::allocateSection( in allocateSection() 43 SectionMemoryManager::AllocationPurpose Purpose, uintptr_t Size, in allocateSection() 141 bool SectionMemoryManager::finalizeMemory(std::string *ErrMsg) { in finalizeMemory() 196 SectionMemoryManager::applyMemoryGroupPermissions(MemoryGroup &MemGroup, in applyMemoryGroupPermissions() 221 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-7.0/llvm/include/llvm/ExecutionEngine/ |
D | SectionMemoryManager.h | 41 class SectionMemoryManager : public RTDyldMemoryManager { 109 SectionMemoryManager(MemoryMapper *MM = nullptr); 110 SectionMemoryManager(const SectionMemoryManager &) = delete; 111 void operator=(const SectionMemoryManager &) = delete; 112 ~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/swiftshader/third_party/llvm-7.0/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 { 110 return SectionMemoryManager::allocateDataSection(Size, Alignment, in allocateDataSection() 118 return SectionMemoryManager::allocateCodeSection(Size, Alignment, in allocateCodeSection() 274 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 | 25 static llvm::SectionMemoryManager::MemoryMapper* mapper_instance 28 llvm::SectionMemoryManager::MemoryMapper* GetInstance() { in GetInstance() 34 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/swiftshader/third_party/llvm-7.0/llvm/unittests/ExecutionEngine/Orc/ |
D | RTDyldObjectLinkingLayerTest.cpp | 32 class SectionMemoryManagerWrapper : public SectionMemoryManager { 39 return SectionMemoryManager::needsToReserveAllocationSpace(); in needsToReserveAllocationSpace() 44 return SectionMemoryManager::finalizeMemory(ErrMsg); in finalizeMemory() 49 class MemoryManagerWrapper : public SectionMemoryManager { in TEST() 58 return SectionMemoryManager::allocateDataSection(Size, Alignment, in TEST()
|
/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/llvm/tools/lli/ |
D | OrcLazyJIT.h | 105 llvm::make_unique<SectionMemoryManager>(), in addModule() 147 SectionMemoryManager CCMgrMemMgr;
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/ExecutionEngine/Orc/ |
D | OrcCBindingsStack.h | 218 std::make_shared<SectionMemoryManager>(), Resolver}; in OrcCBindingsStack() 341 llvm::make_unique<SectionMemoryManager>(), in addIRModuleEager() 350 llvm::make_unique<SectionMemoryManager>(), in addIRModuleLazy() 494 SectionMemoryManager CCMgrMemMgr;
|
/external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter1/ |
D | KaleidoscopeJIT.h | 82 make_unique<SectionMemoryManager>(), in addModule()
|
/external/swiftshader/third_party/llvm-7.0/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter1/ |
D | KaleidoscopeJIT.h | 67 std::make_shared<SectionMemoryManager>(), Resolver};
|
/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()
|
/external/swiftshader/third_party/llvm-7.0/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter2/ |
D | KaleidoscopeJIT.h | 77 std::make_shared<SectionMemoryManager>(), Resolver};
|
/external/swiftshader/third_party/llvm-7.0/llvm/examples/Kaleidoscope/include/ |
D | KaleidoscopeJIT.h | 57 std::make_shared<SectionMemoryManager>(), Resolver};
|