HomeSort by relevance Sort by last modified time
    Searched full:allocatecodesection (Results 1 - 15 of 15) sorted by null

  /external/llvm/unittests/ExecutionEngine/MCJIT/
MCJITMemoryManagerTest.cpp 20 uint8_t *code1 = MemMgr->allocateCodeSection(256, 0, 1, "");
22 uint8_t *code2 = MemMgr->allocateCodeSection(256, 0, 3, "");
53 uint8_t *code1 = MemMgr->allocateCodeSection(0x100000, 0, 1, "");
55 uint8_t *code2 = MemMgr->allocateCodeSection(0x100000, 0, 3, "");
92 code[i] = MemMgr->allocateCodeSection(32, 0, 1, "");
131 code[i] = MemMgr->allocateCodeSection(CodeSize, Align, i, "");
MCJITCAPITest.cpp 38 return static_cast<SectionMemoryManager*>(object)->allocateCodeSection(
112 uint8_t *allocateCodeSection(uintptr_t Size, unsigned Alignment,
116 return SectionMemoryManager::allocateCodeSection(Size, Alignment,
  /external/llvm/lib/ExecutionEngine/
ExecutionEngineBindings.cpp 344 LLVMMemoryManagerAllocateCodeSectionCallback AllocateCodeSection;
356 uint8_t *allocateCodeSection(uintptr_t Size, unsigned Alignment,
375 assert(Functions.AllocateCodeSection &&
376 "No AllocateCodeSection function provided!");
389 uint8_t *SimpleBindingMemoryManager::allocateCodeSection(
392 return Functions.AllocateCodeSection(Opaque, Size, Alignment, SectionID,
421 LLVMMemoryManagerAllocateCodeSectionCallback AllocateCodeSection,
426 if (!AllocateCodeSection || !AllocateDataSection || !FinalizeMemory ||
431 functions.AllocateCodeSection = AllocateCodeSection;
    [all...]
SectionMemoryManager.cpp 31 uint8_t *SectionMemoryManager::allocateCodeSection(uintptr_t Size,
  /external/llvm/include/llvm-c/
ExecutionEngine.h 195 * @param AllocateCodeSection Allocate a block of memory for executable code.
202 LLVMMemoryManagerAllocateCodeSectionCallback AllocateCodeSection,
  /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/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/Orc/
OrcMCJITReplacement.h 38 uint8_t *allocateCodeSection(uintptr_t Size, unsigned Alignment,
42 ClientMM->allocateCodeSection(Size, Alignment, SectionID,
  /external/llvm/include/llvm/ExecutionEngine/
SectionMemoryManager.h 50 uint8_t *allocateCodeSection(uintptr_t Size, unsigned Alignment,
RuntimeDyld.h 87 virtual uint8_t *allocateCodeSection(uintptr_t Size, unsigned Alignment,
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldImpl.h 319 /// \param IsCode if it's true then allocateCodeSection() will be
327 /// \param IsCode if it's true then allocateCodeSection() will be
RuntimeDyld.cpp 584 Addr = IsCode ? MemMgr.allocateCodeSection(Allocate, Alignment, SectionID,
    [all...]
  /external/llvm/tools/llvm-rtdyld/
llvm-rtdyld.cpp 115 uint8_t *allocateCodeSection(uintptr_t Size, unsigned Alignment,
136 uint8_t *TrivialMemoryManager::allocateCodeSection(uintptr_t Size,
  /external/lldb/include/lldb/Expression/
IRExecutionUnit.h 289 virtual uint8_t *allocateCodeSection(uintptr_t Size, unsigned Alignment,

Completed in 403 milliseconds