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

/external/llvm/tools/llc/
H A Dllc.cpp102 const char *ProgName) {
100 GetOutputStream(const char *TargetName, Triple::OSType OS, const char *ProgName) argument
/external/llvm/tools/llvm-mc/
H A Dllvm-mc.cpp188 static const Target *GetTarget(const char *ProgName) { argument
199 errs() << ProgName << ": " << Error;
320 static int AssembleInput(const char *ProgName, const Target *TheTarget, argument
327 errs() << ProgName
361 const char *ProgName = argv[0]; local
362 const Target *TheTarget = GetTarget(ProgName);
368 errs() << ProgName << ": " << ec.message() << '\n';
462 Res = AssembleInput(ProgName, TheTarget, SrcMgr, Ctx, *Str, *MAI, *STI);
/external/llvm/lib/Support/
H A DSourceMgr.cpp343 void SMDiagnostic::print(const char *ProgName, raw_ostream &S, argument
351 if (ProgName && ProgName[0])
352 S << ProgName << ": "; local
H A DCommandLine.cpp732 // Copy the program name into ProgName, making sure not to overflow it.
733 std::string ProgName = sys::path::filename(argv[0]); local
734 size_t Len = std::min(ProgName.size(), size_t(79));
735 memcpy(ProgramName, ProgName.data(), Len);

Completed in 73 milliseconds