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

  /external/llvm/lib/ExecutionEngine/JIT/
JITEmitter.cpp 112 JIT *TheJIT;
117 TheJIT(jit) {}
121 assert(locked.holds(TheJIT->lock));
126 assert(lck.holds(TheJIT->lock));
132 assert(locked.holds(TheJIT->lock));
146 assert(locked.holds(TheJIT->lock));
190 JIT *TheJIT;
194 : state(&jit), nextGOTIndex(0), JE(je), TheJIT(&jit) {
359 JIT *TheJIT;
366 EmittedFunctions(this), TheJIT(&jit)
    [all...]
  /external/llvm/unittests/ExecutionEngine/JIT/
JITTest.cpp 211 TheJIT.reset(EngineBuilder(M).setEngineKind(EngineKind::JIT)
214 ASSERT_TRUE(TheJIT.get() != NULL) << Error;
224 OwningPtr<ExecutionEngine> TheJIT;
313 TheJIT->addGlobalMapping(KnownFunction, (void*)(intptr_t)PlusOne);
326 TheJIT->DisableLazyCompilation(true);
328 (intptr_t)TheJIT->getPointerToFunction(TestFunction));
335 TheJIT->DisableLazyCompilation(true);
383 reinterpret_cast<void(*)()>((intptr_t)TheJIT->getPointerToFunction(Func1));
391 TheJIT->DisableLazyCompilation(true);
413 (void)TheJIT->getPointerToFunction(Func1)
    [all...]

Completed in 274 milliseconds