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

  /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 131 virtual uint8_t *allocateGlobal(uintptr_t Size, unsigned Alignment) {
132 return Base->allocateGlobal(Size, Alignment);
  /external/llvm/include/llvm/ExecutionEngine/
JITMemoryManager.h 135 /// allocateGlobal - Allocate memory for a global.
136 virtual uint8_t *allocateGlobal(uintptr_t Size, unsigned Alignment) = 0;
  /external/llvm/include/llvm/CodeGen/
JITCodeEmitter.h 274 /// allocateGlobal - Allocate memory for a global. Unlike allocateSpace,
277 virtual void *allocateGlobal(uintptr_t Size, unsigned Alignment) = 0;
  /external/llvm/lib/ExecutionEngine/JIT/
JITEmitter.cpp 408 /// allocateGlobal - Allocate memory for a global. Unlike allocateSpace,
411 virtual void *allocateGlobal(uintptr_t Size, unsigned Alignment);
    [all...]
JIT.cpp 831 Ptr = (char*)JCE->allocateGlobal(S, A);
JITMemoryManager.cpp 456 /// allocateGlobal - Allocate memory for a global.
457 uint8_t *allocateGlobal(uintptr_t Size, unsigned Alignment) {
    [all...]

Completed in 178 milliseconds