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

  /external/swiftshader/third_party/LLVM/lib/ExecutionEngine/MCJIT/
MCJITMemoryManager.h 34 uint8_t *startFunctionBody(const char *Name, uintptr_t &Size) {
45 return JMM->startFunctionBody(F, Size);
  /external/swiftshader/third_party/LLVM/include/llvm/ExecutionEngine/
RuntimeDyld.h 41 virtual uint8_t *startFunctionBody(const char *Name, uintptr_t &Size) = 0;
JITMemoryManager.h 72 /// 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/src/Reactor/
LLVMRoutineManager.hpp 35 virtual uint8_t *startFunctionBody(const llvm::Function *function, uintptr_t &actualSize);
LLVMRoutineManager.cpp 50 uint8_t *LLVMRoutineManager::startFunctionBody(const llvm::Function *function, uintptr_t &actualSize)
  /external/swiftshader/third_party/LLVM/unittests/ExecutionEngine/JIT/
JITMemoryManagerTest.cpp 42 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);
JITTest.cpp 85 virtual uint8_t *startFunctionBody(const Function *F,
88 uint8_t *Result = Base->startFunctionBody(F, ActualSize);
  /external/swiftshader/third_party/LLVM/tools/llvm-rtdyld/
llvm-rtdyld.cpp 55 uint8_t *startFunctionBody(const char *Name, uintptr_t &Size);
60 uint8_t *TrivialMemoryManager::startFunctionBody(const char *Name,
  /external/swiftshader/third_party/LLVM/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyld.cpp 30 uint8_t *Mem = MemMgr->startFunctionBody(Name.data(), AllocSize);
  /external/mesa3d/src/gallium/auxiliary/gallivm/
lp_bld_misc.cpp 256 virtual uint8_t *startFunctionBody(const llvm::Function *F,
258 return mgr()->startFunctionBody(F, ActualSize);
  /external/swiftshader/third_party/LLVM/lib/ExecutionEngine/JIT/
JITMemoryManager.cpp 328 /// startFunctionBody - When a function starts, allocate a block of free
330 uint8_t *startFunctionBody(const Function *F, uintptr_t &ActualSize) {
416 /// cannot be called between calls to startFunctionBody and endFunctionBody.
444 /// startExceptionTable - Use startFunctionBody to allocate memory for the
447 return startFunctionBody(F, ActualSize);
JITEmitter.cpp 793 BufferBegin = CurBufferPtr = MemMgr->startFunctionBody(F.getFunction(),
    [all...]

Completed in 224 milliseconds