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

  /external/llvm/include/llvm/ExecutionEngine/
RTDyldMemoryManager.h 44 virtual uint8_t *allocateCodeSection(
SectionMemoryManager.h 50 uint8_t *allocateCodeSection(uintptr_t Size, unsigned Alignment,
  /external/llvm/unittests/ExecutionEngine/MCJIT/
MCJITMemoryManagerTest.cpp 21 uint8_t *code1 = MemMgr->allocateCodeSection(256, 0, 1, "");
23 uint8_t *code2 = MemMgr->allocateCodeSection(256, 0, 3, "");
54 uint8_t *code1 = MemMgr->allocateCodeSection(0x100000, 0, 1, "");
56 uint8_t *code2 = MemMgr->allocateCodeSection(0x100000, 0, 3, "");
93 code[i] = MemMgr->allocateCodeSection(32, 0, 1, "");
132 code[i] = MemMgr->allocateCodeSection(CodeSize, Align, i, "");
MCJITCAPITest.cpp 38 return static_cast<SectionMemoryManager*>(object)->allocateCodeSection(
113 uint8_t* allocateCodeSection(uintptr_t Size, unsigned Alignment,
116 return SectionMemoryManager::allocateCodeSection(Size, Alignment,
  /external/llvm/tools/lli/
RemoteMemoryManager.h 69 uint8_t *allocateCodeSection(uintptr_t Size, unsigned Alignment,
RemoteMemoryManager.cpp 33 allocateCodeSection(uintptr_t Size, unsigned Alignment, unsigned SectionID,
  /external/llvm/lib/ExecutionEngine/MCJIT/
MCJIT.h 37 uint8_t *allocateCodeSection(uintptr_t Size, unsigned Alignment,
40 return ClientMM->allocateCodeSection(Size, Alignment, SectionID, SectionName);
SectionMemoryManager.cpp 31 uint8_t *SectionMemoryManager::allocateCodeSection(uintptr_t Size,
  /external/llvm/unittests/ExecutionEngine/JIT/
JITMemoryManagerTest.cpp 283 uint8_t *code1 = MemMgr->allocateCodeSection(256, 0, 1, StringRef());
285 uint8_t *code2 = MemMgr->allocateCodeSection(257, 32, 3, StringRef());
287 uint8_t *code3 = MemMgr->allocateCodeSection(258, 64, 5, StringRef());
JITTest.cpp 145 virtual uint8_t *allocateCodeSection(
148 return Base->allocateCodeSection(
  /external/lldb/include/lldb/Expression/
IRExecutionUnit.h 289 virtual uint8_t *allocateCodeSection(uintptr_t Size, unsigned Alignment,
  /external/llvm/lib/ExecutionEngine/
ExecutionEngineBindings.cpp 345 LLVMMemoryManagerAllocateCodeSectionCallback AllocateCodeSection;
357 uint8_t *allocateCodeSection(uintptr_t Size, unsigned Alignment,
376 assert(Functions.AllocateCodeSection &&
377 "No AllocateCodeSection function provided!");
390 uint8_t *SimpleBindingMemoryManager::allocateCodeSection(
393 return Functions.AllocateCodeSection(Opaque, Size, Alignment, SectionID,
422 LLVMMemoryManagerAllocateCodeSectionCallback AllocateCodeSection,
427 if (!AllocateCodeSection || !AllocateDataSection || !FinalizeMemory ||
432 functions.AllocateCodeSection = AllocateCodeSection;
    [all...]
  /external/llvm/tools/llvm-rtdyld/
llvm-rtdyld.cpp 90 uint8_t *allocateCodeSection(uintptr_t Size, unsigned Alignment,
111 uint8_t *TrivialMemoryManager::allocateCodeSection(uintptr_t Size,
  /external/lldb/source/Expression/
IRExecutionUnit.cpp 491 IRExecutionUnit::MemoryManager::allocateCodeSection(uintptr_t Size,
497 uint8_t *return_value = m_default_mm_ap->allocateCodeSection(Size, Alignment, SectionID);
507 log->Printf("IRExecutionUnit::allocateCodeSection(Size=0x%" PRIx64 ", Alignment=%u, SectionID=%u) = %p",
  /external/llvm/lib/ExecutionEngine/JIT/
JITMemoryManager.cpp 469 /// allocateCodeSection - Allocate memory for a code section.
470 uint8_t *allocateCodeSection(uintptr_t Size, unsigned Alignment,
    [all...]
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyld.cpp 437 Addr = IsCode ? MemMgr->allocateCodeSection(Allocate, Alignment, SectionID,

Completed in 301 milliseconds