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

/external/llvm/tools/llvm-jitlistener/
H A Dllvm-jitlistener.cpp149 TheJIT.reset(EngineBuilder(TheModule)
160 TheJIT.reset();
166 OwningPtr<ExecutionEngine> TheJIT; member in class:__anon22696::JitEventListenerTest
177 TheJIT->RegisterJITEventListener(Listener.get());
179 TheJIT->finalizeObject();
/external/llvm/unittests/ExecutionEngine/MCJIT/
H A DMCJITTestBase.h186 TheJIT.reset(EB.setEngineKind(EngineKind::JIT)
199 assert(TheJIT.get() != NULL && "error creating MCJIT with EngineBuilder");
207 OwningPtr<ExecutionEngine> TheJIT; member in class:llvm::MCJITTestBase
/external/llvm/unittests/ExecutionEngine/JIT/
H A DJITTest.cpp187 TheJIT.reset(EngineBuilder(M).setEngineKind(EngineKind::JIT)
191 ASSERT_TRUE(TheJIT.get() != NULL) << Error;
201 OwningPtr<ExecutionEngine> TheJIT; member in class:__anon22765::JITTest
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
637 ExecutionEngine *TheJIT = EngineBuilder(M) local
[all...]
/external/llvm/lib/ExecutionEngine/JIT/
H A DJITEmitter.cpp112 JIT *TheJIT; member in class:__anon22187::JITResolverState
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; member in class:__anon22187::JITResolver
198 : state(&jit), nextGOTIndex(0), JE(je), TheJIT(&jit) {
360 JIT *TheJIT; member in class:__anon22187::JITEmitter
365 EmittedFunctions(this), TheJIT(
[all...]

Completed in 165 milliseconds