Home | History | Annotate | Download | only in ExecutionEngine

Lines Matching refs:JIT

43 #define DEBUG_TYPE "jit"
192 DEBUG(dbgs() << "JIT: Map \'" << Name << "\' to [" << Addr << "]\n";);
324 DEBUG(dbgs() << "JIT: ARGV = " << (void*)Array.get() << "\n");
330 DEBUG(dbgs() << "JIT: ARGV[" << i << "] = " << (void*)Dest.get() << "\n");
498 // create, we assume they only want the JIT, and we fail if they only want
501 if (WhichEngine & EngineKind::JIT)
502 WhichEngine = EngineKind::JIT;
510 // Unless the interpreter was explicitly selected or the JIT is not linked,
511 // try making a JIT.
512 if ((WhichEngine & EngineKind::JIT) && TheTM) {
515 errs() << "WARNING: This target JIT is not designed for the host"
536 // If we can't make a JIT and we didn't request one specifically, try making
546 if ((WhichEngine & EngineKind::JIT) && !ExecutionEngine::MCJITCtor) {
548 *ErrorStr = "JIT has not been linked in.";
1164 DEBUG(dbgs() << "JIT: Initializing " << Addr << " ");