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

  /external/llvm/include/llvm/ExecutionEngine/
JITMemoryManager.h 109 /// allocateGlobal - Allocate memory for a global.
110 virtual uint8_t *allocateGlobal(uintptr_t Size, unsigned Alignment) = 0;
  /external/llvm/unittests/ExecutionEngine/JIT/
JITMemoryManagerTest.cpp 162 uint8_t *a = (uint8_t *)MemMgr->allocateGlobal(8, 0);
163 uint16_t *b = (uint16_t*)MemMgr->allocateGlobal(16, 2);
164 uint32_t *c = (uint32_t*)MemMgr->allocateGlobal(32, 4);
165 uint64_t *d = (uint64_t*)MemMgr->allocateGlobal(64, 8);
210 uint64_t *a = (uint64_t*)MemMgr->allocateGlobal(64, 8);
211 uint8_t *g = MemMgr->allocateGlobal(Size, 8);
212 uint64_t *b = (uint64_t*)MemMgr->allocateGlobal(64, 8);
248 MemMgr->allocateGlobal(Size, 8);
253 MemMgr->allocateGlobal(Size, 8);
JITTest.cpp 150 virtual uint8_t *allocateGlobal(uintptr_t Size, unsigned Alignment) {
151 return Base->allocateGlobal(Size, Alignment);
  /external/llvm/tools/lli/
RecordingMemoryManager.h 76 uint8_t *allocateGlobal(uintptr_t Size, unsigned Alignment);
RecordingMemoryManager.cpp 94 uint8_t *RecordingMemoryManager::allocateGlobal(uintptr_t Size, unsigned Alignment) {
  /external/llvm/include/llvm/CodeGen/
JITCodeEmitter.h 273 /// allocateGlobal - Allocate memory for a global. Unlike allocateSpace,
276 virtual void *allocateGlobal(uintptr_t Size, unsigned Alignment) = 0;
  /external/llvm/lib/ExecutionEngine/JIT/
JITEmitter.cpp 398 /// allocateGlobal - Allocate memory for a global. Unlike allocateSpace,
401 virtual void *allocateGlobal(uintptr_t Size, unsigned Alignment);
    [all...]
JIT.cpp 837 Ptr = (char*)JCE->allocateGlobal(S, A);
JITMemoryManager.cpp 460 /// allocateGlobal - Allocate memory for a global.
461 uint8_t *allocateGlobal(uintptr_t Size, unsigned Alignment) {
    [all...]

Completed in 482 milliseconds