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

  /external/llvm/lib/ExecutionEngine/JIT/
JITEmitter.cpp 113 JIT *TheJIT;
120 TheJIT = jit;
126 assert(locked.holds(TheJIT->lock));
131 assert(lck.holds(TheJIT->lock));
137 assert(locked.holds(TheJIT->lock));
151 assert(locked.holds(TheJIT->lock));
195 JIT *TheJIT;
199 : state(&jit), nextGOTIndex(0), JE(je), TheJIT(&jit) {
364 JIT *TheJIT;
371 EmittedFunctions(this), TheJIT(&jit)
    [all...]
  /external/llvm/unittests/ExecutionEngine/MCJIT/
MCJITTest.cpp 37 //EXPECT_NE(0, TheJIT->getObjectImage())
48 void *globalPtr = TheJIT->getPointerToGlobal(Global);
63 void *addPtr = TheJIT->getPointerToFunction(F);
81 void *vPtr = TheJIT->getPointerToFunction(Main);
104 void *rgvPtr = TheJIT->getPointerToFunction(ReturnGlobal);
136 void *gvPtr = TheJIT->getPointerToGlobal(GV);
139 void *vPtr = TheJIT->getPointerToFunction(IncrementGlobal);
174 void *vPtr = TheJIT->getPointerToFunction(Outer);
192 EXPECT_NE(0, TheJIT->getObjectImage())
195 TheJIT->addModule(createEmptyModule("<other module>"))
    [all...]
MCJITTestBase.h 208 TheJIT.reset(EB.setEngineKind(EngineKind::JIT)
221 assert(TheJIT.get() != NULL && "error creating MCJIT with EngineBuilder");
231 OwningPtr<ExecutionEngine> TheJIT;
  /external/llvm/unittests/ExecutionEngine/JIT/
JITTest.cpp 217 TheJIT.reset(EngineBuilder(M).setEngineKind(EngineKind::JIT)
221 ASSERT_TRUE(TheJIT.get() != NULL) << Error;
231 OwningPtr<ExecutionEngine> TheJIT;
341 TheJIT->getPointerToFunction(F);
365 TheJIT->addGlobalMapping(KnownFunction, (void*)(intptr_t)PlusOne);
378 TheJIT->DisableLazyCompilation(true);
380 (intptr_t)TheJIT->getPointerToFunction(TestFunction));
387 TheJIT->DisableLazyCompilation(true);
435 reinterpret_cast<void(*)()>((intptr_t)TheJIT->getPointerToFunction(Func1));
443 TheJIT->DisableLazyCompilation(true)
    [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 141 milliseconds