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

  /external/llvm/include/llvm/ExecutionEngine/
JITMemoryManager.h 98 /// compiled function. This passes in FunctionStart (which was returned by
102 virtual void endFunctionBody(const Function *F, uint8_t *FunctionStart,
  /external/llvm/tools/lli/
RemoteMemoryManager.h 107 void endFunctionBody(const Function *F, uint8_t *FunctionStart,
RemoteMemoryManager.cpp 193 void RemoteMemoryManager::endFunctionBody(const Function *F, uint8_t *FunctionStart,
  /external/llvm/unittests/ExecutionEngine/JIT/
JITTest.cpp 123 EndFunctionBodyCall(const Function *F, uint8_t *FunctionStart,
126 FunctionStart(FunctionStart), FunctionEnd(FunctionEnd) {}
129 uint8_t *FunctionStart;
133 virtual void endFunctionBody(const Function *F, uint8_t *FunctionStart,
136 EndFunctionBodyCall(F, FunctionStart, FunctionEnd));
137 Base->endFunctionBody(F, FunctionStart, FunctionEnd);
  /external/lldb/include/lldb/Expression/
IRExecutionUnit.h 249 /// @param[in] FunctionStart
256 uint8_t *FunctionStart,
  /frameworks/compile/slang/
slang_rs_reflection_cpp.cpp 262 std::string FunctionStart = "void forEach_" + ForEach->getName() + "(";
263 mOut.indent() << FunctionStart;
289 genArguments(Arguments, FunctionStart.length());
387 std::string FunctionStart =
389 mOut.indent() << FunctionStart;
413 genArguments(Arguments, FunctionStart.length());
    [all...]
  /external/llvm/lib/ExecutionEngine/JIT/
JITMemoryManager.cpp 427 /// in the range [FunctionStart,FunctionEnd).
428 void endFunctionBody(const Function *F, uint8_t *FunctionStart,
430 assert(FunctionEnd > FunctionStart);
431 assert(FunctionStart == (uint8_t *)(CurBlock+1) &&
    [all...]
  /external/lldb/source/Expression/
IRExecutionUnit.cpp 463 uint8_t *FunctionStart,
466 m_default_mm_ap->endFunctionBody(F, FunctionStart, FunctionEnd);

Completed in 169 milliseconds