HomeSort by relevance Sort by last modified time
    Searched refs:FunctionStart (Results 1 - 5 of 5) 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/
RecordingMemoryManager.h 73 void endFunctionBody(const Function *F, uint8_t *FunctionStart,
RecordingMemoryManager.cpp 86 void RecordingMemoryManager::endFunctionBody(const Function *F, uint8_t *FunctionStart,
  /external/llvm/unittests/ExecutionEngine/JIT/
JITTest.cpp 122 EndFunctionBodyCall(const Function *F, uint8_t *FunctionStart,
125 FunctionStart(FunctionStart), FunctionEnd(FunctionEnd) {}
128 uint8_t *FunctionStart;
132 virtual void endFunctionBody(const Function *F, uint8_t *FunctionStart,
135 EndFunctionBodyCall(F, FunctionStart, FunctionEnd));
136 Base->endFunctionBody(F, FunctionStart, FunctionEnd);
  /external/llvm/lib/ExecutionEngine/JIT/
JITMemoryManager.cpp 423 /// in the range [FunctionStart,FunctionEnd).
424 void endFunctionBody(const Function *F, uint8_t *FunctionStart,
426 assert(FunctionEnd > FunctionStart);
427 assert(FunctionStart == (uint8_t *)(CurBlock+1) &&
    [all...]

Completed in 1746 milliseconds