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

  /external/llvm/tools/llvm-jitlistener/
llvm-jitlistener.cpp 149 TheJIT.reset(EngineBuilder(TheModule)
160 TheJIT.reset();
166 OwningPtr<ExecutionEngine> TheJIT;
177 TheJIT->RegisterJITEventListener(Listener.get());
179 TheJIT->finalizeObject();
  /external/llvm/unittests/ExecutionEngine/MCJIT/
MCJITTestBase.h 186 TheJIT.reset(EB.setEngineKind(EngineKind::JIT)
199 assert(TheJIT.get() != NULL && "error creating MCJIT with EngineBuilder");
207 OwningPtr<ExecutionEngine> TheJIT;
  /external/llvm/unittests/ExecutionEngine/JIT/
JITTest.cpp 187 TheJIT.reset(EngineBuilder(M).setEngineKind(EngineKind::JIT)
191 ASSERT_TRUE(TheJIT.get() != NULL) << Error;
201 OwningPtr<ExecutionEngine> TheJIT;
288 TheJIT->addGlobalMapping(KnownFunction, (void*)(intptr_t)PlusOne);
301 TheJIT->DisableLazyCompilation(true);
303 (intptr_t)TheJIT->getPointerToFunction(TestFunction));
310 TheJIT->DisableLazyCompilation(true);
358 reinterpret_cast<void(*)()>((intptr_t)TheJIT->getPointerToFunction(Func1));
366 TheJIT->DisableLazyCompilation(true);
388 (void)TheJIT->getPointerToFunction(Func1)
    [all...]
  /external/llvm/lib/ExecutionEngine/JIT/
JITEmitter.cpp 112 JIT *TheJIT;
119 TheJIT = jit;
125 assert(locked.holds(TheJIT->lock));
130 assert(lck.holds(TheJIT->lock));
136 assert(locked.holds(TheJIT->lock));
150 assert(locked.holds(TheJIT->lock));
194 JIT *TheJIT;
198 : state(&jit), nextGOTIndex(0), JE(je), TheJIT(&jit) {
360 JIT *TheJIT;
365 EmittedFunctions(this), TheJIT(&jit)
    [all...]

Completed in 1586 milliseconds