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

  /external/llvm/include/llvm/ExecutionEngine/
RTDyldMemoryManager.h 41 virtual uint8_t *allocateCodeSection(uintptr_t Size, unsigned Alignment,
SectionMemoryManager.h 51 virtual uint8_t *allocateCodeSection(uintptr_t Size, unsigned Alignment,
  /external/llvm/unittests/ExecutionEngine/MCJIT/
MCJITMemoryManagerTest.cpp 22 uint8_t *code1 = MemMgr->allocateCodeSection(256, 0, 1);
24 uint8_t *code2 = MemMgr->allocateCodeSection(256, 0, 3);
55 uint8_t *code1 = MemMgr->allocateCodeSection(0x100000, 0, 1);
57 uint8_t *code2 = MemMgr->allocateCodeSection(0x100000, 0, 3);
94 code[i] = MemMgr->allocateCodeSection(32, 0, 1);
133 code[i] = MemMgr->allocateCodeSection(CodeSize, Align, i);
MCJITCAPITest.cpp 33 return static_cast<SectionMemoryManager*>(object)->allocateCodeSection(
  /external/llvm/tools/lli/
RecordingMemoryManager.h 52 uint8_t *allocateCodeSection(uintptr_t Size, unsigned Alignment,
RecordingMemoryManager.cpp 30 allocateCodeSection(uintptr_t Size, unsigned Alignment, unsigned SectionID) {
  /external/llvm/tools/llvm-rtdyld/
llvm-rtdyld.cpp 62 uint8_t *allocateCodeSection(uintptr_t Size, unsigned Alignment,
81 uint8_t *TrivialMemoryManager::allocateCodeSection(uintptr_t Size,
  /external/llvm/unittests/ExecutionEngine/JIT/
JITMemoryManagerTest.cpp 284 uint8_t *code1 = MemMgr->allocateCodeSection(256, 0, 1);
286 uint8_t *code2 = MemMgr->allocateCodeSection(257, 32, 3);
288 uint8_t *code3 = MemMgr->allocateCodeSection(258, 64, 5);
JITTest.cpp 142 virtual uint8_t *allocateCodeSection(uintptr_t Size, unsigned Alignment,
144 return Base->allocateCodeSection(Size, Alignment, SectionID);
  /external/llvm/lib/ExecutionEngine/MCJIT/
SectionMemoryManager.cpp 30 uint8_t *SectionMemoryManager::allocateCodeSection(uintptr_t Size,
  /external/llvm/lib/ExecutionEngine/
ExecutionEngineBindings.cpp 342 uint8_t *(*AllocateCodeSection)(void *Opaque,
358 virtual uint8_t *allocateCodeSection(uintptr_t Size, unsigned Alignment,
376 assert(Functions.AllocateCodeSection &&
377 "No AllocateCodeSection function provided!");
390 uint8_t *SimpleBindingMemoryManager::allocateCodeSection(
392 return Functions.AllocateCodeSection(Opaque, Size, Alignment, SectionID);
418 uint8_t *(*AllocateCodeSection)(void *Opaque,
427 if (!AllocateCodeSection || !AllocateDataSection || !FinalizeMemory ||
432 functions.AllocateCodeSection = AllocateCodeSection;
    [all...]
  /external/llvm/lib/ExecutionEngine/JIT/
JITMemoryManager.cpp 465 /// allocateCodeSection - Allocate memory for a code section.
466 uint8_t *allocateCodeSection(uintptr_t Size, unsigned Alignment,
    [all...]
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyld.cpp 274 ? MemMgr->allocateCodeSection(Allocate, Alignment, SectionID)

Completed in 1858 milliseconds