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

  /external/llvm/lib/ExecutionEngine/MCJIT/
MCJITMemoryManager.h 34 uint8_t *startFunctionBody(const char *Name, uintptr_t &Size) {
45 return JMM->startFunctionBody(F, Size);
  /external/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,
  /frameworks/compile/libbcc/lib/CodeGen/
CodeMemoryManager.cpp 132 uint8_t *CodeMemoryManager::startFunctionBody(const llvm::Function *F,
146 // This passes in FunctionStart (which was returned by the startFunctionBody
174 // cannot be called between calls to startFunctionBody and endFunctionBody.
214 // from a call to startFunctionBody() that hasn't been deallocated yet. This
  /external/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);
  /external/llvm/unittests/ExecutionEngine/JIT/
JITTest.cpp 85 virtual uint8_t *startFunctionBody(const Function *F,
88 uint8_t *Result = Base->startFunctionBody(F, ActualSize);

Completed in 97 milliseconds