Lines Matching refs:Argv0
205 const char *Argv0,
210 std::string Main = sys::fs::getMainExecutable(Argv0, MainAddr);
221 AbstractInterpreter::createLLI(const char *Argv0, std::string &Message,
224 FindProgramByName("lli", Argv0, (void *)(intptr_t)&createLLI)) {
353 static void lexCommand(const char *Argv0, std::string &Message,
388 auto Path = FindProgramByName(Command, Argv0, (void *)(intptr_t)&lexCommand);
402 const char *Argv0, std::string &Message,
407 lexCommand(Argv0, Message, CompileCommandLine, CmdPath, Args);
417 AbstractInterpreter::createCustomExecutor(const char *Argv0,
423 lexCommand(Argv0, Message, ExecCommandLine, CmdPath, Args);
507 LLC *AbstractInterpreter::createLLC(const char *Argv0, std::string &Message,
513 FindProgramByName("llc", Argv0, (void *)(intptr_t)&createLLC);
519 CC *cc = CC::create(Argv0, Message, CCBinary, CCArgs);
592 AbstractInterpreter::createJIT(const char *Argv0, std::string &Message,
595 FindProgramByName("lli", Argv0, (void *)(intptr_t)&createJIT)) {
842 CC *CC::create(const char *Argv0, std::string &Message,
845 auto CCPath = FindProgramByName(CCBinary, Argv0, (void *)(intptr_t)&create);