Home
last modified time | relevance | path

Searched refs:TheJIT (Results 1 – 5 of 5) sorted by relevance

/minix3/external/bsd/llvm/dist/llvm/unittests/ExecutionEngine/MCJIT/
H A DMCJITMultipleModuleTest.cpp98 TheJIT->addModule(std::move(B)); in TEST_F()
100 uint64_t ptr = TheJIT->getFunctionAddress(FA->getName().str()); in TEST_F()
103 ptr = TheJIT->getFunctionAddress(FB->getName().str()); in TEST_F()
118 TheJIT->addModule(std::move(B)); in TEST_F()
120 uint64_t ptr = TheJIT->getFunctionAddress(FB->getName().str()); in TEST_F()
121 TheJIT->finalizeObject(); in TEST_F()
124 ptr = TheJIT->getFunctionAddress(FA->getName().str()); in TEST_F()
139 TheJIT->addModule(std::move(B)); in TEST_F()
141 uint64_t ptr = TheJIT->getFunctionAddress(FB->getName().str()); in TEST_F()
142 TheJIT->finalizeObject(); in TEST_F()
[all …]
H A DMCJITObjectCacheTest.cpp94 ASSERT_TRUE(bool(TheJIT)); in compileAndRun()
98 TheJIT->finalizeObject(); in compileAndRun()
99 void *vPtr = TheJIT->getPointerToFunction(Main); in compileAndRun()
117 TheJIT->setObjectCache(nullptr); in TEST_F()
133 TheJIT->setObjectCache(Cache.get()); in TEST_F()
159 TheJIT->setObjectCache(Cache.get()); in TEST_F()
160 TheJIT->finalizeObject(); in TEST_F()
163 TheJIT.reset(); in TEST_F()
176 TheJIT->setObjectCache(Cache.get()); in TEST_F()
193 TheJIT->setObjectCache(Cache.get()); in TEST_F()
[all …]
H A DMCJITTest.cpp53 void *globalPtr = TheJIT->getPointerToGlobal(Global); in TEST_F()
66 uint64_t addPtr = TheJIT->getFunctionAddress(F->getName().str()); in TEST_F()
87 uint64_t ptr = TheJIT->getFunctionAddress(Main->getName().str()); in TEST_F()
108 uint64_t rgvPtr = TheJIT->getFunctionAddress(ReturnGlobal->getName().str()); in TEST_F()
179 uint64_t ptr = TheJIT->getFunctionAddress(Outer->getName().str()); in TEST_F()
195 void *A = TheJIT->getPointerToFunction(Foo); in TEST_F()
196 void *B = TheJIT->getPointerToFunction(Foo); in TEST_F()
H A DMCJITTestBase.h327 TheJIT.reset(EB.setEngineKind(EngineKind::JIT) in createJIT()
338 assert(TheJIT.get() != NULL && "error creating MCJIT with EngineBuilder"); in createJIT()
346 std::unique_ptr<ExecutionEngine> TheJIT; variable
/minix3/external/bsd/llvm/dist/llvm/tools/llvm-jitlistener/
H A Dllvm-jitlistener.cpp140 TheJIT.reset(EngineBuilder(std::move(TheModule)) in InitEE()
150 TheJIT.reset(); in DestroyEE()
154 std::unique_ptr<ExecutionEngine> TheJIT; member in __anon9efc82560111::JitEventListenerTest
164 TheJIT->RegisterJITEventListener(Listener.get()); in ProcessInput()
166 TheJIT->finalizeObject(); in ProcessInput()