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

  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ExecutionEngine/Orc/
IndirectionUtils.h 70 JITTargetAddress executeCompileCallback(JITTargetAddress TrampolineAddr);
82 JITTargetAddress TrampolineAddr = this->AvailableTrampolines.back();
84 return TrampolineAddr;
  /external/llvm/include/llvm/ExecutionEngine/Orc/
IndirectionUtils.h 62 TargetAddress executeCompileCallback(TargetAddress TrampolineAddr) {
63 auto I = ActiveTrampolines.find(TrampolineAddr);
79 AvailableTrampolines.push_back(TrampolineAddr);
89 TargetAddress TrampolineAddr = getAvailableTrampolineAddr();
90 auto &Compile = this->ActiveTrampolines[TrampolineAddr];
91 return CompileCallbackInfo(TrampolineAddr, Compile);
95 CompileCallbackInfo getCompileCallbackInfo(TargetAddress TrampolineAddr) {
96 auto I = ActiveTrampolines.find(TrampolineAddr);
106 void releaseCompileCallback(TargetAddress TrampolineAddr) {
107 auto I = ActiveTrampolines.find(TrampolineAddr);
    [all...]

Completed in 47 milliseconds