HomeSort by relevance Sort by last modified time
    Searched defs:SectionMemoryManager (Results 1 - 4 of 4) sorted by null

  /external/swiftshader/third_party/llvm-7.0/llvm/lib/ExecutionEngine/
SectionMemoryManager.cpp 1 //===- SectionMemoryManager.cpp - Memory manager for MCJIT/RtDyld *- C++ -*-==//
15 #include "llvm/ExecutionEngine/SectionMemoryManager.h"
22 uint8_t *SectionMemoryManager::allocateDataSection(uintptr_t Size,
28 return allocateSection(SectionMemoryManager::AllocationPurpose::ROData,
30 return allocateSection(SectionMemoryManager::AllocationPurpose::RWData, Size,
34 uint8_t *SectionMemoryManager::allocateCodeSection(uintptr_t Size,
38 return allocateSection(SectionMemoryManager::AllocationPurpose::Code, Size,
42 uint8_t *SectionMemoryManager::allocateSection(
43 SectionMemoryManager::AllocationPurpose Purpose, uintptr_t Size,
62 llvm_unreachable("Unknown SectionMemoryManager::AllocationPurpose")
    [all...]
  /external/llvm/include/llvm/ExecutionEngine/
SectionMemoryManager.h 1 //===- SectionMemoryManager.h - Memory manager for MCJIT/RtDyld -*- C++ -*-===//
35 /// MCJIT::finalizeObject or by calling SectionMemoryManager::finalizeMemory
37 class SectionMemoryManager : public RTDyldMemoryManager {
38 SectionMemoryManager(const SectionMemoryManager&) = delete;
39 void operator=(const SectionMemoryManager&) = delete;
42 SectionMemoryManager() { }
43 ~SectionMemoryManager() override;
  /external/llvm/lib/ExecutionEngine/
SectionMemoryManager.cpp 1 //===- SectionMemoryManager.cpp - Memory manager for MCJIT/RtDyld *- C++ -*-==//
16 #include "llvm/ExecutionEngine/SectionMemoryManager.h"
22 uint8_t *SectionMemoryManager::allocateDataSection(uintptr_t Size,
32 uint8_t *SectionMemoryManager::allocateCodeSection(uintptr_t Size,
39 uint8_t *SectionMemoryManager::allocateSection(MemoryGroup &MemGroup,
125 bool SectionMemoryManager::finalizeMemory(std::string *ErrMsg)
181 SectionMemoryManager::applyMemoryGroupPermissions(MemoryGroup &MemGroup,
206 void SectionMemoryManager::invalidateInstructionCache() {
211 SectionMemoryManager::~SectionMemoryManager() {
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ExecutionEngine/
SectionMemoryManager.h 1 //===- SectionMemoryManager.h - Memory manager for MCJIT/RtDyld -*- C++ -*-===//
39 /// MCJIT::finalizeObject or by calling SectionMemoryManager::finalizeMemory
41 class SectionMemoryManager : public RTDyldMemoryManager {
51 /// Implementations of this interface are used by SectionMemoryManager to
106 /// Creates a SectionMemoryManager instance with \p MM as the associated
109 SectionMemoryManager(MemoryMapper *MM = nullptr);
110 SectionMemoryManager(const SectionMemoryManager &) = delete;
111 void operator=(const SectionMemoryManager &) = delete;
112 ~SectionMemoryManager() override
    [all...]

Completed in 301 milliseconds