HomeSort by relevance Sort by last modified time
    Searched refs:ProgName (Results 1 - 5 of 5) sorted by null

  /external/llvm/tools/llvm-mc/
llvm-mc.cpp 177 static const Target *GetTarget(const char *ProgName) {
194 errs() << ProgName << ": error: invalid target '" << ArchName << "'.\n";
208 errs() << ProgName << ": error: unable to get target for '"
327 static int AssembleInput(const char *ProgName, const Target *TheTarget,
334 errs() << ProgName
366 const char *ProgName = argv[0];
367 const Target *TheTarget = GetTarget(ProgName);
373 errs() << ProgName << ": " << ec.message() << '\n';
459 Res = AssembleInput(ProgName, TheTarget, SrcMgr, Ctx, *Str, *MAI, *STI);
  /external/llvm/lib/Support/
SourceMgr.cpp 229 void SMDiagnostic::print(const char *ProgName, raw_ostream &S,
237 if (ProgName && ProgName[0])
238 S << ProgName << ": ";
CommandLine.cpp 463 /// from the caller (as PROGNAME) and its command-line arguments from
466 void cl::ParseEnvironmentOptions(const char *progName, const char *envVar,
469 assert(progName && "Program name not specified");
480 newArgv.push_back(strdup(progName));
551 // Copy the program name into ProgName, making sure not to overflow it.
552 std::string ProgName = sys::path::filename(argv[0]);
553 size_t Len = std::min(ProgName.size(), size_t(79));
554 memcpy(ProgramName, ProgName.data(), Len);
    [all...]
  /external/llvm/include/llvm/Support/
SourceMgr.h 194 void print(const char *ProgName, raw_ostream &S, bool ShowColors = true) const;
  /external/llvm/tools/llc/
llc.cpp 272 const char *ProgName) {

Completed in 1161 milliseconds