Searched refs:startFunctionBody (Results 1 - 11 of 11) sorted by relevance

/external/swiftshader/third_party/LLVM/lib/ExecutionEngine/MCJIT/
H A DMCJITMemoryManager.h34 uint8_t *startFunctionBody(const char *Name, uintptr_t &Size) { function in class:llvm::MCJITMemoryManager
45 return JMM->startFunctionBody(F, Size);
/external/swiftshader/src/Reactor/
H A DRoutineManager.hpp35 virtual uint8_t *startFunctionBody(const llvm::Function *function, uintptr_t &actualSize);
H A DRoutineManager.cpp50 uint8_t *RoutineManager::startFunctionBody(const llvm::Function *function, uintptr_t &actualSize) function in class:sw::RoutineManager
/external/swiftshader/third_party/LLVM/include/llvm/ExecutionEngine/
H A DRuntimeDyld.h41 virtual uint8_t *startFunctionBody(const char *Name, uintptr_t &Size) = 0;
H A DJITMemoryManager.h72 /// startFunctionBody - When we start JITing a function, the JIT calls this
81 virtual uint8_t *startFunctionBody(const Function *F,
91 /// startFunctionBody.
98 /// the startFunctionBody method) and FunctionEnd which is a pointer to the
105 /// cannot be called between calls to startFunctionBody and endFunctionBody.
112 /// must be the return value from a call to startFunctionBody() that hasn't
/external/swiftshader/third_party/LLVM/unittests/ExecutionEngine/JIT/
H A DJITMemoryManagerTest.cpp42 uint8_t *FunctionBody1 = MemMgr->startFunctionBody(F1.get(), size);
49 uint8_t *FunctionBody2 = MemMgr->startFunctionBody(F2.get(), size);
56 uint8_t *FunctionBody3 = MemMgr->startFunctionBody(F3.get(), size);
86 uint8_t *FunctionBody1 = MemMgr->startFunctionBody(F1.get(), size);
94 uint8_t *FunctionBody2 = MemMgr->startFunctionBody(F2.get(), size);
102 uint8_t *FunctionBody3 = MemMgr->startFunctionBody(F3.get(), size);
114 uint8_t *FunctionBody4 = MemMgr->startFunctionBody(F4.get(), size);
123 uint8_t *FunctionBody5 = MemMgr->startFunctionBody(F5.get(), size);
132 uint8_t *FunctionBody6 = MemMgr->startFunctionBody(F6.get(), size);
H A DJITTest.cpp85 virtual uint8_t *startFunctionBody(const Function *F, function in class:__anon19085::RecordingJITMemoryManager
88 uint8_t *Result = Base->startFunctionBody(F, ActualSize);
/external/swiftshader/third_party/LLVM/tools/llvm-rtdyld/
H A Dllvm-rtdyld.cpp55 uint8_t *startFunctionBody(const char *Name, uintptr_t &Size);
60 uint8_t *TrivialMemoryManager::startFunctionBody(const char *Name, function in class:TrivialMemoryManager
/external/swiftshader/third_party/LLVM/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyld.cpp30 uint8_t *Mem = MemMgr->startFunctionBody(Name.data(), AllocSize);
/external/swiftshader/third_party/LLVM/lib/ExecutionEngine/JIT/
H A DJITMemoryManager.cpp328 /// startFunctionBody - When a function starts, allocate a block of free
330 uint8_t *startFunctionBody(const Function *F, uintptr_t &ActualSize) { function in class:__anon18634::DefaultJITMemoryManager
416 /// cannot be called between calls to startFunctionBody and endFunctionBody.
444 /// startExceptionTable - Use startFunctionBody to allocate memory for the
447 return startFunctionBody(F, ActualSize);
H A DJITEmitter.cpp793 BufferBegin = CurBufferPtr = MemMgr->startFunctionBody(F.getFunction(),

Completed in 275 milliseconds