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

  /external/llvm/unittests/ExecutionEngine/MCJIT/
MCJITTest.cpp 37 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->finalizeObject()
    [all...]
MCJITObjectCacheTest.cpp 104 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->setObjectCache(Cache.get())
    [all...]
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...]
  /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();

Completed in 299 milliseconds