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

  /external/llvm/include/llvm/ExecutionEngine/
JITMemoryManager.h 73 /// startFunctionBody - When we start JITing a function, the JIT calls this
82 virtual uint8_t *startFunctionBody(const Function *F,
92 /// startFunctionBody.
99 /// the startFunctionBody method) and FunctionEnd which is a pointer to the
106 /// cannot be called between calls to startFunctionBody and endFunctionBody.
113 /// must be the return value from a call to startFunctionBody() that hasn't
  /external/llvm/unittests/ExecutionEngine/JIT/
JITMemoryManagerTest.cpp 41 uint8_t *FunctionBody1 = MemMgr->startFunctionBody(F1.get(), size);
48 uint8_t *FunctionBody2 = MemMgr->startFunctionBody(F2.get(), size);
55 uint8_t *FunctionBody3 = MemMgr->startFunctionBody(F3.get(), size);
85 uint8_t *FunctionBody1 = MemMgr->startFunctionBody(F1.get(), size);
93 uint8_t *FunctionBody2 = MemMgr->startFunctionBody(F2.get(), size);
101 uint8_t *FunctionBody3 = MemMgr->startFunctionBody(F3.get(), size);
113 uint8_t *FunctionBody4 = MemMgr->startFunctionBody(F4.get(), size);
122 uint8_t *FunctionBody5 = MemMgr->startFunctionBody(F5.get(), size);
131 uint8_t *FunctionBody6 = MemMgr->startFunctionBody(F6.get(), size);
JITTest.cpp 108 virtual uint8_t *startFunctionBody(const Function *F,
111 uint8_t *Result = Base->startFunctionBody(F, ActualSize);
  /external/llvm/tools/lli/
RemoteMemoryManager.h 104 uint8_t *startFunctionBody(const Function *F, uintptr_t &ActualSize) override;
RemoteMemoryManager.cpp 184 uint8_t *RemoteMemoryManager::startFunctionBody(const Function *F, uintptr_t &ActualSize){
  /external/lldb/include/lldb/Expression/
IRExecutionUnit.h 220 virtual uint8_t *startFunctionBody(const llvm::Function *F,
  /external/lldb/source/Expression/
IRExecutionUnit.cpp 432 IRExecutionUnit::MemoryManager::startFunctionBody(const llvm::Function *F,
435 return m_default_mm_ap->startFunctionBody(F, ActualSize);
  /external/llvm/lib/ExecutionEngine/JIT/
JITMemoryManager.cpp 352 /// startFunctionBody - When a function starts, allocate a block of free
354 uint8_t *startFunctionBody(const Function *F,
441 /// cannot be called between calls to startFunctionBody and endFunctionBody.
    [all...]
JITEmitter.cpp 783 BufferBegin = CurBufferPtr = MemMgr->startFunctionBody(F.getFunction(),
    [all...]

Completed in 1309 milliseconds