Searched defs:TheJIT (Results 1 - 4 of 4) sorted by relevance

/external/llvm/tools/llvm-jitlistener/
H A Dllvm-jitlistener.cpp148 TheJIT.reset(EngineBuilder(TheModule)
159 TheJIT.reset();
165 std::unique_ptr<ExecutionEngine> TheJIT; member in class:__anon26401::JitEventListenerTest
175 TheJIT->RegisterJITEventListener(Listener.get());
177 TheJIT->finalizeObject();
/external/llvm/unittests/ExecutionEngine/MCJIT/
H A DMCJITTestBase.h319 TheJIT.reset(EB.setEngineKind(EngineKind::JIT)
332 assert(TheJIT.get() != NULL && "error creating MCJIT with EngineBuilder");
340 std::unique_ptr<ExecutionEngine> TheJIT; member in class:llvm::MCJITTestBase
/external/llvm/lib/ExecutionEngine/JIT/
H A DJITEmitter.cpp113 JIT *TheJIT; member in class:__anon25847::JITResolverState
120 TheJIT = jit;
188 JIT *TheJIT; member in class:__anon25847::JITResolver
192 : state(&jit), nextGOTIndex(0), JE(je), TheJIT(&jit) {
355 JIT *TheJIT; member in class:__anon25847::JITEmitter
360 EmittedFunctions(this), TheJIT(&jit) {
406 TheJIT->addPointerToBasicBlock(MBB->getBasicBlock(),
497 MutexGuard locked(TheJIT->lock);
506 MutexGuard locked(TheJIT->lock);
514 void *Actual = TheJIT
[all...]
/external/llvm/unittests/ExecutionEngine/JIT/
H A DJITTest.cpp192 TheJIT.reset(EngineBuilder(M).setEngineKind(EngineKind::JIT)
196 ASSERT_TRUE(TheJIT.get() != nullptr) << Error;
206 std::unique_ptr<ExecutionEngine> TheJIT; member in class:__anon26479::JITTest
293 TheJIT->addGlobalMapping(KnownFunction, (void*)(intptr_t)PlusOne);
306 TheJIT->DisableLazyCompilation(true);
308 (intptr_t)TheJIT->getPointerToFunction(TestFunction));
315 TheJIT->DisableLazyCompilation(true);
363 reinterpret_cast<void(*)()>((intptr_t)TheJIT->getPointerToFunction(Func1));
371 TheJIT->DisableLazyCompilation(true);
393 (void)TheJIT
643 ExecutionEngine *TheJIT = EngineBuilder(M) local
[all...]

Completed in 377 milliseconds