HomeSort by relevance Sort by last modified time
    Searched refs:allocateGlobal (Results 1 - 11 of 11) 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 161 uint8_t *a = (uint8_t *)MemMgr->allocateGlobal(8, 0);
162 uint16_t *b = (uint16_t*)MemMgr->allocateGlobal(16, 2);
163 uint32_t *c = (uint32_t*)MemMgr->allocateGlobal(32, 4);
164 uint64_t *d = (uint64_t*)MemMgr->allocateGlobal(64, 8);
209 uint64_t *a = (uint64_t*)MemMgr->allocateGlobal(64, 8);
210 uint8_t *g = MemMgr->allocateGlobal(Size, 8);
211 uint64_t *b = (uint64_t*)MemMgr->allocateGlobal(64, 8);
247 MemMgr->allocateGlobal(Size, 8);
252 MemMgr->allocateGlobal(Size, 8);
JITTest.cpp 155 virtual uint8_t *allocateGlobal(uintptr_t Size, unsigned Alignment) {
156 return Base->allocateGlobal(Size, Alignment);
  /external/llvm/tools/lli/
RemoteMemoryManager.h 110 uint8_t *allocateGlobal(uintptr_t Size, unsigned Alignment) override;
RemoteMemoryManager.cpp 201 uint8_t *RemoteMemoryManager::allocateGlobal(uintptr_t Size, unsigned Alignment) {
  /external/lldb/include/lldb/Expression/
IRExecutionUnit.h 326 virtual uint8_t *allocateGlobal(uintptr_t Size,
  /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/lldb/source/Expression/
IRExecutionUnit.cpp 539 IRExecutionUnit::MemoryManager::allocateGlobal(uintptr_t Size,
544 uint8_t *return_value = m_default_mm_ap->allocateGlobal(Size, Alignment);
553 log->Printf("IRExecutionUnit::allocateGlobal(Size=0x%" PRIx64 ", Alignment=%u) = %p",
  /external/llvm/lib/ExecutionEngine/JIT/
JITEmitter.cpp 392 /// allocateGlobal - Allocate memory for a global. Unlike allocateSpace,
395 void *allocateGlobal(uintptr_t Size, unsigned Alignment) override;
    [all...]
JIT.cpp 684 Ptr = (char*)JCE->allocateGlobal(S, A);
JITMemoryManager.cpp 464 /// allocateGlobal - Allocate memory for a global.
465 uint8_t *allocateGlobal(uintptr_t Size, unsigned Alignment) override {
    [all...]

Completed in 623 milliseconds