HomeSort by: relevance | last modified time | path
    Searched defs:SectionMemoryManager (Results 1 - 2 of 2) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/
SectionMemoryManager.cpp 1 //===- SectionMemoryManager.cpp - Memory manager for MCJIT/RtDyld *- C++ -*-==//
14 #include "llvm/ExecutionEngine/SectionMemoryManager.h"
21 uint8_t *SectionMemoryManager::allocateDataSection(uintptr_t Size,
27 return allocateSection(SectionMemoryManager::AllocationPurpose::ROData,
29 return allocateSection(SectionMemoryManager::AllocationPurpose::RWData, Size,
33 uint8_t *SectionMemoryManager::allocateCodeSection(uintptr_t Size,
37 return allocateSection(SectionMemoryManager::AllocationPurpose::Code, Size,
41 uint8_t *SectionMemoryManager::allocateSection(
42 SectionMemoryManager::AllocationPurpose Purpose, uintptr_t Size,
61 llvm_unreachable("Unknown SectionMemoryManager::AllocationPurpose")
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/ExecutionEngine/
SectionMemoryManager.h 1 //===- SectionMemoryManager.h - Memory manager for MCJIT/RtDyld -*- C++ -*-===//
37 /// MCJIT::finalizeObject or by calling SectionMemoryManager::finalizeMemory
39 class SectionMemoryManager : public RTDyldMemoryManager {
49 /// Implementations of this interface are used by SectionMemoryManager to
104 /// Creates a SectionMemoryManager instance with \p MM as the associated
107 SectionMemoryManager(MemoryMapper *MM = nullptr);
108 SectionMemoryManager(const SectionMemoryManager &) = delete;
109 void operator=(const SectionMemoryManager &) = delete;
110 ~SectionMemoryManager() override
    [all...]

Completed in 15 milliseconds