Lines Matching refs:JIT
15 #define DEBUG_TYPE "jit"
163 DEBUG(dbgs() << "JIT: Map \'" << GV->getName()
274 DEBUG(dbgs() << "JIT: ARGV = " << (void*)Array << "\n");
281 DEBUG(dbgs() << "JIT: ARGV[" << i << "] = " << (void*)Dest << "\n");
409 : EngineKind::JIT)
417 /// createJIT - This is the factory method for creating a JIT for the current
429 *ErrorStr = "JIT has not been linked in.";
436 EB.setEngineKind(EngineKind::JIT);
462 // create, we assume they only want the JIT, and we fail if they only want
465 if (WhichEngine & EngineKind::JIT)
466 WhichEngine = EngineKind::JIT;
477 "Cannot create a legacy JIT with a runtime dyld memory "
482 // Unless the interpreter was explicitly selected or the JIT is not linked,
483 // try making a JIT.
484 if ((WhichEngine & EngineKind::JIT) && TheTM) {
487 errs() << "WARNING: This target JIT is not designed for the host"
505 // If we can't make a JIT and we didn't request one specifically, try making
515 if ((WhichEngine & EngineKind::JIT) && ExecutionEngine::JITCtor == 0 &&
518 *ErrorStr = "JIT has not been linked in.";
1119 DEBUG(dbgs() << "JIT: Initializing " << Addr << " ");