Searched refs:TheJIT (Results 1 - 6 of 6) sorted by relevance

/external/llvm/unittests/ExecutionEngine/MCJIT/
H A DMCJITTest.cpp37 TheJIT->finalizeObject();
38 //EXPECT_NE(0, TheJIT->getObjectImage())
49 void *globalPtr = TheJIT->getPointerToGlobal(Global);
50 TheJIT->finalizeObject();
63 void *addPtr = TheJIT->getPointerToFunction(F);
64 TheJIT->finalizeObject();
80 void *vPtr = TheJIT->getPointerToFunction(Main);
81 TheJIT->finalizeObject();
102 void *rgvPtr = TheJIT->getPointerToFunction(ReturnGlobal);
103 TheJIT
[all...]
H A DMCJITObjectCacheTest.cpp104 ASSERT_TRUE(TheJIT.isValid());
108 TheJIT->finalizeObject();
109 void *vPtr = TheJIT->getPointerToFunction(Main);
127 TheJIT->setObjectCache(NULL);
143 TheJIT->setObjectCache(Cache.get());
169 TheJIT->setObjectCache(Cache.get());
170 TheJIT->finalizeObject();
173 TheJIT.reset();
186 TheJIT->setObjectCache(Cache.get());
203 TheJIT
[all...]
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:__anon21838::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:__anon21260::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:__anon21260::JITResolver
198 : state(&jit), nextGOTIndex(0), JE(je), TheJIT(&jit) {
360 JIT *TheJIT; member in class:__anon21260::JITEmitter
365 EmittedFunctions(this), TheJIT(
[all...]
/external/llvm/tools/llvm-jitlistener/
H A Dllvm-jitlistener.cpp149 TheJIT.reset(EngineBuilder(TheModule)
160 TheJIT.reset();
166 OwningPtr<ExecutionEngine> TheJIT; member in class:__anon21769::JitEventListenerTest
177 TheJIT->RegisterJITEventListener(Listener.get());
179 TheJIT->finalizeObject();

Completed in 160 milliseconds