Searched defs:ProgName (Results 1 - 4 of 4) sorted by relevance

/external/llvm/tools/llc/
H A Dllc.cpp272 const char *ProgName) {
270 GetOutputStream(const char *TargetName, Triple::OSType OS, const char *ProgName) argument
/external/llvm/tools/llvm-mc/
H A Dllvm-mc.cpp177 static const Target *GetTarget(const char *ProgName) { argument
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, argument
334 errs() << ProgName
366 const char *ProgName = argv[0]; local
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/
H A DSourceMgr.cpp229 void SMDiagnostic::print(const char *ProgName, raw_ostream &S, argument
237 if (ProgName && ProgName[0])
238 S << ProgName << ": "; local
H A DCommandLine.cpp551 // Copy the program name into ProgName, making sure not to overflow it.
552 std::string ProgName = sys::path::filename(argv[0]); local
553 size_t Len = std::min(ProgName.size(), size_t(79));
554 memcpy(ProgramName, ProgName.data(), Len);

Completed in 175 milliseconds