Home
last modified time | relevance | path

Searched refs:allocateCodeSection (Results 1 – 13 of 13) sorted by relevance

/external/llvm/unittests/ExecutionEngine/MCJIT/
DMCJITMemoryManagerTest.cpp20 uint8_t *code1 = MemMgr->allocateCodeSection(256, 0, 1, ""); in TEST()
22 uint8_t *code2 = MemMgr->allocateCodeSection(256, 0, 3, ""); in TEST()
53 uint8_t *code1 = MemMgr->allocateCodeSection(0x100000, 0, 1, ""); in TEST()
55 uint8_t *code2 = MemMgr->allocateCodeSection(0x100000, 0, 3, ""); in TEST()
92 code[i] = MemMgr->allocateCodeSection(32, 0, 1, ""); in TEST()
131 code[i] = MemMgr->allocateCodeSection(CodeSize, Align, i, ""); in TEST()
DMCJITCAPITest.cpp38 return static_cast<SectionMemoryManager*>(object)->allocateCodeSection( in roundTripAllocateCodeSection()
112 uint8_t *allocateCodeSection(uintptr_t Size, unsigned Alignment, in allocateCodeSection() function in __anondb1e80810111::TestReserveAllocationSpaceMemoryManager
116 return SectionMemoryManager::allocateCodeSection(Size, Alignment, in allocateCodeSection()
/external/llvm/include/llvm/ExecutionEngine/
DSectionMemoryManager.h50 uint8_t *allocateCodeSection(uintptr_t Size, unsigned Alignment,
DRuntimeDyld.h87 virtual uint8_t *allocateCodeSection(uintptr_t Size, unsigned Alignment,
/external/llvm/tools/lli/
DRemoteMemoryManager.h69 uint8_t *allocateCodeSection(uintptr_t Size, unsigned Alignment,
DRemoteMemoryManager.cpp33 allocateCodeSection(uintptr_t Size, unsigned Alignment, unsigned SectionID, in allocateCodeSection() function in RemoteMemoryManager
/external/llvm/lib/ExecutionEngine/
DExecutionEngineBindings.cpp356 uint8_t *allocateCodeSection(uintptr_t Size, unsigned Alignment,
389 uint8_t *SimpleBindingMemoryManager::allocateCodeSection( in allocateCodeSection() function in __anonf56920c30111::SimpleBindingMemoryManager
DSectionMemoryManager.cpp31 uint8_t *SectionMemoryManager::allocateCodeSection(uintptr_t Size, in allocateCodeSection() function in llvm::SectionMemoryManager
/external/llvm/lib/ExecutionEngine/Orc/
DOrcMCJITReplacement.h38 uint8_t *allocateCodeSection(uintptr_t Size, unsigned Alignment, in allocateCodeSection() function
42 ClientMM->allocateCodeSection(Size, Alignment, SectionID, in allocateCodeSection()
/external/lldb/include/lldb/Expression/
DIRExecutionUnit.h289 virtual uint8_t *allocateCodeSection(uintptr_t Size, unsigned Alignment,
/external/llvm/tools/llvm-rtdyld/
Dllvm-rtdyld.cpp115 uint8_t *allocateCodeSection(uintptr_t Size, unsigned Alignment,
136 uint8_t *TrivialMemoryManager::allocateCodeSection(uintptr_t Size, in allocateCodeSection() function in TrivialMemoryManager
/external/lldb/source/Expression/
DIRExecutionUnit.cpp491 IRExecutionUnit::MemoryManager::allocateCodeSection(uintptr_t Size, in allocateCodeSection() function in IRExecutionUnit::MemoryManager
497 uint8_t *return_value = m_default_mm_ap->allocateCodeSection(Size, Alignment, SectionID); in allocateCodeSection()
/external/llvm/lib/ExecutionEngine/RuntimeDyld/
DRuntimeDyld.cpp584 Addr = IsCode ? MemMgr.allocateCodeSection(Allocate, Alignment, SectionID, in emitSection()