Home | History | Annotate | Download | only in bugpoint

Lines Matching refs:Args

59                                  const char **Args,
67 return sys::ExecuteAndWait(ProgramPath, Args, nullptr, Redirects,
78 const char **Args,
87 int ReturnCode = sys::ExecuteAndWait(RemoteClientPath, Args, nullptr,
94 for (const char **Arg = Args; *Arg; ++Arg)
114 static std::string ProcessFailure(StringRef ProgPath, const char** Args,
119 for (const char **Arg = Args; *Arg; ++Arg)
132 RunProgramWithTimeout(ProgPath, Args, "", ErrorFilename.str(),
155 std::vector<std::string> ToolArgs; // Args to pass to LLI
157 LLI(const std::string &Path, const std::vector<std::string> *Args)
160 if (Args) { ToolArgs = *Args; }
164 const std::vector<std::string> &Args,
177 const std::vector<std::string> &Args,
195 // Add any extra LLI args.
201 for (unsigned i=0, e = Args.size(); i != e; ++i)
202 LLIArgs.push_back(Args[i].c_str());
285 const std::vector<std::string> &Args,
341 const std::vector<std::string> &Args,
354 const std::vector<std::string> &Args,
372 for (unsigned i = 0, e = Args.size(); i != e; ++i)
373 ProgramArgs.push_back(Args[i].c_str());
381 // Tokenize the CommandLine to the command and the args to allow
391 std::string &CmdPath, std::vector<std::string> &Args) {
404 Args.push_back(token);
430 std::vector<std::string> Args;
431 lexCommand(Message, CompileCommandLine, CmdPath, Args);
435 return new CustomCompiler(CmdPath, Args);
446 std::vector<std::string> Args;
447 lexCommand(Message, ExecCommandLine, CmdPath, Args);
451 return new CustomExecutor(CmdPath, Args);
473 // Add any extra LLC args.
509 const std::vector<std::string> &Args,
527 return cc->ExecuteProgram(OutputAsmFile, Args, FileKind,
537 const std::vector<std::string> *Args,
553 return new LLC(LLCPath, cc, Args, UseIntegratedAssembler);
562 std::vector<std::string> ToolArgs; // Args to pass to LLI
564 JIT(const std::string &Path, const std::vector<std::string> *Args)
567 if (Args) { ToolArgs = *Args; }
571 const std::vector<std::string> &Args,
585 const std::vector<std::string> &Args,
598 // Add any extra LLI args.
608 for (unsigned i=0, e = Args.size(); i != e; ++i)
609 JITArgs.push_back(Args[i].c_str());
627 std::string &Message, const std::vector<std::string> *Args) {
632 return new JIT(LLIPath, Args);
643 static bool IsARMArchitecture(std::vector<const char*> Args) {
645 I = Args.begin(), E = Args.end(); I != E; ++I) {
657 const std::vector<std::string> &Args,
769 for (unsigned i = 0, e = Args.size(); i != e; ++i)
770 ProgramArgs.push_back(Args[i].c_str());
891 const std::vector<std::string> *Args) {
911 return new CC(*CCPath, RemoteClientPath, Args);