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

  /external/llvm/lib/ExecutionEngine/MCJIT/
MCJITMemoryManager.h 36 uint8_t *startFunctionBody(const char *Name, uintptr_t &Size) {
47 return JMM->startFunctionBody(F, Size);
  /external/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/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/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/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyld.cpp 30 uint8_t *Mem = MemMgr->startFunctionBody(Name.data(), AllocSize);
  /frameworks/compile/libbcc/lib/CodeGen/
CodeMemoryManager.h 159 virtual uint8_t *startFunctionBody(const llvm::Function *F,
168 // included in the 'actualsize' returned by startFunctionBody.
177 // This passes in FunctionStart (which was returned by the startFunctionBody
186 // cannot be called between calls to startFunctionBody and endFunctionBody.
193 // from a call to startFunctionBody() that hasn't been deallocated yet. This
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
CodeEmitter.cpp     [all...]
  /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);
JITEmitter.cpp 793 BufferBegin = CurBufferPtr = MemMgr->startFunctionBody(F.getFunction(),
    [all...]

Completed in 45 milliseconds