Searched refs:allocateGlobal (Results 1 – 9 of 9) sorted by relevance
/external/swiftshader/third_party/LLVM/unittests/ExecutionEngine/JIT/ |
D | JITMemoryManagerTest.cpp | 162 uint8_t *a = (uint8_t *)MemMgr->allocateGlobal(8, 0); in TEST() 163 uint16_t *b = (uint16_t*)MemMgr->allocateGlobal(16, 2); in TEST() 164 uint32_t *c = (uint32_t*)MemMgr->allocateGlobal(32, 4); in TEST() 165 uint64_t *d = (uint64_t*)MemMgr->allocateGlobal(64, 8); in TEST() 210 uint64_t *a = (uint64_t*)MemMgr->allocateGlobal(64, 8); in TEST() 211 uint8_t *g = MemMgr->allocateGlobal(Size, 8); in TEST() 212 uint64_t *b = (uint64_t*)MemMgr->allocateGlobal(64, 8); in TEST() 248 MemMgr->allocateGlobal(Size, 8); in TEST() 253 MemMgr->allocateGlobal(Size, 8); in TEST()
|
D | JITTest.cpp | 119 virtual uint8_t *allocateGlobal(uintptr_t Size, unsigned Alignment) { in allocateGlobal() function in __anon1b8d59500111::RecordingJITMemoryManager 120 return Base->allocateGlobal(Size, Alignment); in allocateGlobal()
|
/external/swiftshader/src/Reactor/ |
D | RoutineManager.hpp | 41 virtual uint8_t *allocateGlobal(uintptr_t Size, unsigned int Alignment);
|
D | RoutineManager.cpp | 105 uint8_t *RoutineManager::allocateGlobal(uintptr_t Size, unsigned Alignment) in allocateGlobal() function in sw::RoutineManager
|
/external/swiftshader/third_party/LLVM/include/llvm/ExecutionEngine/ |
D | JITMemoryManager.h | 109 virtual uint8_t *allocateGlobal(uintptr_t Size, unsigned Alignment) = 0;
|
/external/swiftshader/third_party/LLVM/include/llvm/CodeGen/ |
D | JITCodeEmitter.h | 276 virtual void *allocateGlobal(uintptr_t Size, unsigned Alignment) = 0;
|
/external/swiftshader/third_party/LLVM/lib/ExecutionEngine/JIT/ |
D | JITEmitter.cpp | 415 virtual void *allocateGlobal(uintptr_t Size, unsigned Alignment); 1062 void* JITEmitter::allocateGlobal(uintptr_t Size, unsigned Alignment) { in allocateGlobal() function in JITEmitter 1064 return MemMgr->allocateGlobal(Size, Alignment); in allocateGlobal()
|
D | JITMemoryManager.cpp | 440 uint8_t *allocateGlobal(uintptr_t Size, unsigned Alignment) { in allocateGlobal() function in __anon99ff5b280211::DefaultJITMemoryManager
|
D | JIT.cpp | 810 Ptr = (char*)JCE->allocateGlobal(S, A); in getMemoryForGV()
|