HomeSort by relevance Sort by last modified time
    Searched refs:allocateDataSection (Results 1 - 17 of 17) sorted by null

  /external/llvm/include/llvm/ExecutionEngine/
RTDyldMemoryManager.h 51 virtual uint8_t *allocateDataSection(
SectionMemoryManager.h 59 uint8_t *allocateDataSection(uintptr_t Size, unsigned Alignment,
  /external/llvm/unittests/ExecutionEngine/MCJIT/
MCJITMemoryManagerTest.cpp 22 uint8_t *data1 = MemMgr->allocateDataSection(256, 0, 2, "", true);
24 uint8_t *data2 = MemMgr->allocateDataSection(256, 0, 4, "", false);
55 uint8_t *data1 = MemMgr->allocateDataSection(0x100000, 0, 2, "", true);
57 uint8_t *data2 = MemMgr->allocateDataSection(0x100000, 0, 4, "", false);
94 data[i] = MemMgr->allocateDataSection(32, 0, 2, "", isReadOnly);
133 data[i] = MemMgr->allocateDataSection(DataSize, Align, i + 10000, "",
MCJITCAPITest.cpp 49 return static_cast<SectionMemoryManager*>(object)->allocateDataSection(
106 virtual uint8_t* allocateDataSection(uintptr_t Size, unsigned Alignment,
109 return SectionMemoryManager::allocateDataSection(Size, Alignment,
  /external/llvm/tools/lli/
RemoteMemoryManager.h 73 uint8_t *allocateDataSection(uintptr_t Size, unsigned Alignment,
RemoteMemoryManager.cpp 48 allocateDataSection(uintptr_t Size, unsigned Alignment,
  /external/llvm/lib/ExecutionEngine/MCJIT/
MCJIT.h 43 uint8_t *allocateDataSection(uintptr_t Size, unsigned Alignment,
46 return ClientMM->allocateDataSection(Size, Alignment,
SectionMemoryManager.cpp 21 uint8_t *SectionMemoryManager::allocateDataSection(uintptr_t Size,
  /external/lldb/include/lldb/Expression/
IRExecutionUnit.h 310 virtual uint8_t *allocateDataSection(uintptr_t Size, unsigned Alignment,
  /external/llvm/lib/ExecutionEngine/
ExecutionEngineBindings.cpp 346 LLVMMemoryManagerAllocateDataSectionCallback AllocateDataSection;
361 uint8_t *allocateDataSection(uintptr_t Size, unsigned Alignment,
378 assert(Functions.AllocateDataSection &&
379 "No AllocateDataSection function provided!");
397 uint8_t *SimpleBindingMemoryManager::allocateDataSection(
400 return Functions.AllocateDataSection(Opaque, Size, Alignment, SectionID,
423 LLVMMemoryManagerAllocateDataSectionCallback AllocateDataSection,
427 if (!AllocateCodeSection || !AllocateDataSection || !FinalizeMemory ||
433 functions.AllocateDataSection = AllocateDataSection;
    [all...]
  /external/llvm/tools/llvm-rtdyld/
llvm-rtdyld.cpp 93 uint8_t *allocateDataSection(uintptr_t Size, unsigned Alignment,
120 uint8_t *TrivialMemoryManager::allocateDataSection(uintptr_t Size,
  /external/llvm/unittests/ExecutionEngine/JIT/
JITMemoryManagerTest.cpp 284 uint8_t *data1 = MemMgr->allocateDataSection(256, 16, 2, StringRef(), true);
286 uint8_t *data2 = MemMgr->allocateDataSection(256, 64, 4, StringRef(), false);
JITTest.cpp 139 virtual uint8_t *allocateDataSection(
142 return Base->allocateDataSection(
  /external/lldb/source/Expression/
IRExecutionUnit.cpp 515 IRExecutionUnit::MemoryManager::allocateDataSection(uintptr_t Size,
522 uint8_t *return_value = m_default_mm_ap->allocateDataSection(Size, Alignment, SectionID, IsReadOnly);
531 log->Printf("IRExecutionUnit::allocateDataSection(Size=0x%" PRIx64 ", Alignment=%u, SectionID=%u) = %p",
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyld.cpp 363 uint8_t *Addr = MemMgr->allocateDataSection(TotalSize, sizeof(void *),
439 : MemMgr->allocateDataSection(Allocate, Alignment, SectionID,
RuntimeDyldELF.cpp     [all...]
  /external/llvm/lib/ExecutionEngine/JIT/
JITMemoryManager.cpp 516 /// allocateDataSection - Allocate memory for a data section.
517 uint8_t *allocateDataSection(uintptr_t Size, unsigned Alignment,
    [all...]

Completed in 179 milliseconds