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

  /external/llvm/unittests/ExecutionEngine/MCJIT/
MCJITMultipleModuleTest.cpp 32 EXPECT_NE(0, TheJIT->getObjectImage())
35 TheJIT->addModule(createEmptyModule("<other module>"));
36 TheJIT->addModule(createEmptyModule("<other other module>"));
39 EXPECT_NE(0, TheJIT->getObjectImage())
75 EXPECT_NE(0, TheJIT->getObjectImage())
78 TheJIT->addModule(createEmptyModule("<other module>"));
79 TheJIT->addModule(createEmptyModule("<other other module>"));
82 EXPECT_NE(0, TheJIT->getObjectImage())
98 TheJIT->addModule(B.release());
100 uint64_t ptr = TheJIT->getFunctionAddress(FA->getName().str())
    [all...]
MCJITObjectCacheTest.cpp 103 ASSERT_TRUE(bool(TheJIT));
107 TheJIT->finalizeObject();
108 void *vPtr = TheJIT->getPointerToFunction(Main);
126 TheJIT->setObjectCache(nullptr);
142 TheJIT->setObjectCache(Cache.get());
168 TheJIT->setObjectCache(Cache.get());
169 TheJIT->finalizeObject();
172 TheJIT.reset();
185 TheJIT->setObjectCache(Cache.get());
202 TheJIT->setObjectCache(Cache.get())
    [all...]
MCJITTest.cpp 42 //EXPECT_NE(0, TheJIT->getObjectImage())
53 void *globalPtr = TheJIT->getPointerToGlobal(Global);
66 uint64_t addPtr = TheJIT->getFunctionAddress(F->getName().str());
87 uint64_t ptr = TheJIT->getFunctionAddress(Main->getName().str());
108 uint64_t rgvPtr = TheJIT->getFunctionAddress(ReturnGlobal->getName().str());
138 void *gvPtr = TheJIT->getPointerToGlobal(GV);
141 void *vPtr = TheJIT->getFunctionAddress(IncrementGlobal->getName().str());
179 uint64_t ptr = TheJIT->getFunctionAddress(Outer->getName().str());
MCJITTestBase.h 319 TheJIT.reset(EB.setEngineKind(EngineKind::JIT)
332 assert(TheJIT.get() != NULL && "error creating MCJIT with EngineBuilder");
340 std::unique_ptr<ExecutionEngine> TheJIT;
  /external/llvm/unittests/ExecutionEngine/JIT/
JITTest.cpp 192 TheJIT.reset(EngineBuilder(M).setEngineKind(EngineKind::JIT)
196 ASSERT_TRUE(TheJIT.get() != nullptr) << Error;
206 std::unique_ptr<ExecutionEngine> TheJIT;
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->getPointerToFunction(Func1)
    [all...]
  /external/llvm/lib/ExecutionEngine/JIT/
JITEmitter.cpp 113 JIT *TheJIT;
120 TheJIT = jit;
188 JIT *TheJIT;
192 : state(&jit), nextGOTIndex(0), JE(je), TheJIT(&jit) {
355 JIT *TheJIT;
360 EmittedFunctions(this), TheJIT(&jit) {
406 TheJIT->addPointerToBasicBlock(MBB->getBasicBlock(),
497 MutexGuard locked(TheJIT->lock);
506 MutexGuard locked(TheJIT->lock);
514 void *Actual = TheJIT->isCompilingLazily(
    [all...]
  /external/llvm/tools/llvm-jitlistener/
llvm-jitlistener.cpp 148 TheJIT.reset(EngineBuilder(TheModule)
159 TheJIT.reset();
165 std::unique_ptr<ExecutionEngine> TheJIT;
175 TheJIT->RegisterJITEventListener(Listener.get());
177 TheJIT->finalizeObject();

Completed in 7480 milliseconds