Lines Matching defs:LLIPath
145 std::string LLIPath; // The path to the LLI executable
149 : LLIPath(Path) {
173 LLIArgs.push_back(LLIPath);
198 return RunProgramWithTimeout(LLIPath, LLIArgs, InputFile, OutputFile,
223 if (ErrorOr<std::string> LLIPath =
225 Message = "Found lli: " + *LLIPath + "\n";
226 return new LLI(*LLIPath, ToolArgs);
228 Message = LLIPath.getError().message() + "\n";
533 std::string LLIPath; // The path to the LLI executable
537 : LLIPath(Path) {
562 JITArgs.push_back(LLIPath);
585 return RunProgramWithTimeout(LLIPath, JITArgs, InputFile, OutputFile,
594 if (ErrorOr<std::string> LLIPath =
596 Message = "Found lli: " + *LLIPath + "\n";
597 return new JIT(*LLIPath, Args);
599 Message = LLIPath.getError().message() + "\n";