Home
last modified time | relevance | path

Searched refs:ToolName (Results 1 – 20 of 20) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/utils/KillTheDoctor/
H A DKillTheDoctor.cpp75 StringRef ToolName; variable
302 ToolName = argv[0]; in main()
311 errs() << ToolName << ": Timeout value too large, must be less than: " in main()
322 errs() << ToolName << ": Failed to find program: '" << CommandLine in main()
328 errs() << ToolName << ": Found Program: " << ProgramToRun << '\n'; in main()
336 errs() << ToolName << ": Program Image Path: " << ProgramToRun << '\n' in main()
337 << ToolName << ": Command Line: " << CommandLine << '\n'; in main()
361 errs() << ToolName << ": Failed to run program: '" << ProgramToRun << "': " in main()
377 errs() << ToolName << ": Debugging...\n"; in main()
392 errs() << ToolName << ": Failed to get process times: " in main()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-symbolizer/
H A Dllvm-symbolizer.cpp196 static void printHelp(StringRef ToolName, const SymbolizerOptTable &Tbl, in printHelp() argument
199 Tbl.PrintHelp(OS, (ToolName + HelpText).str().c_str(), in printHelp()
200 ToolName.str().c_str()); in printHelp()
208 StringRef ToolName = IsAddr2Line ? "llvm-addr2line" : "llvm-symbolizer"; in parseOptions() local
223 printHelp(ToolName, Tbl, outs()); in parseOptions()
227 outs() << ToolName << '\n'; in parseOptions()
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/
H A Dllvm-objcopy.cpp66 StringRef ToolName; variable
70 WithColor::warning(errs(), ToolName) << toString(std::move(E)) << '\n'; in reportWarning()
75 StringRef Stem = sys::path::stem(ToolName); in getDriverConfig()
416 ToolName = argv[0]; in main()
436 WithColor::error(errs(), ToolName)); in main()
441 logAllUnhandledErrors(std::move(E), WithColor::error(errs(), ToolName)); in main()
H A DConfigManager.cpp442 StringRef HelpText, ToolName; in printHelp() local
445 ToolName = "llvm-objcopy"; in printHelp()
449 ToolName = "llvm-strip"; in printHelp()
453 ToolName = "llvm-install-name-tool"; in printHelp()
457 ToolName = "llvm-bitcode-strip"; in printHelp()
461 OptTable.PrintHelp(OS, (ToolName + HelpText).str().c_str(), in printHelp()
462 (ToolName + " tool").str().c_str()); in printHelp()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Tooling/
H A DTooling.cpp168 getSyntaxOnlyToolArgs(const Twine &ToolName, in getSyntaxOnlyToolArgs() argument
172 Args.push_back(ToolName.str()); in getSyntaxOnlyToolArgs()
186 const Twine &ToolName, in runToolOnCodeWithArgs() argument
195 getSyntaxOnlyToolArgs(ToolName, Adjuster(Args, FileNameRef), FileNameRef), in runToolOnCodeWithArgs()
203 const Twine &ToolName, in runToolOnCodeWithArgs() argument
224 Args, FileName, ToolName); in runToolOnCodeWithArgs()
625 StringRef ToolName, std::shared_ptr<PCHContainerOperations> PCHContainerOps, in buildASTFromCodeWithArgs() argument
639 getSyntaxOnlyToolArgs(ToolName, Adjuster(Args, FileName), FileName), in buildASTFromCodeWithArgs()
/netbsd-src/external/apache2/llvm/dist/llvm/tools/bugpoint/
H A DExecutionDriver.cpp263 errs() << ToolName in compileProgram()
270 errs() << ToolName << ": Error emitting bitcode to file '" << Temp->TmpName in compileProgram()
298 errs() << ToolName << ": Error making unique filename: " << EC.message() in executeProgram()
305 errs() << ToolName << ": Error emitting bitcode to file '" << BitcodeFile in executeProgram()
323 errs() << ToolName << ": Error making unique filename: " << EC.message() in executeProgram()
H A DBugDriver.h50 const char *ToolName; // argv[0] of bugpoint variable
71 const char *getToolName() const { return ToolName; } in getToolName()
H A DBugDriver.cpp80 : Context(ctxt), ToolName(toolname), ReferenceOutputFile(OutputFile), in BugDriver()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Basic/
H A DVersion.cpp92 std::string getClangToolFullVersion(StringRef ToolName) { in getClangToolFullVersion() argument
98 OS << ToolName << " version " CLANG_VERSION_STRING; in getClangToolFullVersion()
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-ar/
H A Dllvm-ar.cpp59 static StringRef ToolName; variable
140 WithColor::error(errs(), ToolName) << Error << "\n"; in badUsage()
148 WithColor::error(errs(), ToolName) in fail()
151 WithColor::error(errs(), ToolName) << Error << "\n"; in fail()
645 WithColor::error(errs(), ToolName) << "'" << Name << "' was not found\n"; in performReadOperation()
1022 WithColor::warning(errs(), ToolName) in performOperation()
1266 ToolName = argv[0]; in main()
1272 Stem = sys::path::stem(ToolName); in main()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Tooling/
H A DTooling.h182 const Twine &ToolName = "clang-tool",
192 const Twine &ToolName = "clang-tool",
224 StringRef FileName = "input.cc", StringRef ToolName = "clang-tool",
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Basic/
H A DVersion.h53 std::string getClangToolFullVersion(llvm::StringRef ToolName);
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-size/
H A Dllvm-size.cpp108 static std::string ToolName; variable
112 WithColor::error(errs(), ToolName) << "'" << File << "': " << Message << "\n"; in error()
121 WithColor::error(errs(), ToolName) << "'" << FileName << "'"; in error()
149 WithColor::error(errs(), ToolName) << "'" << FileName << "'"; in error()
880 ToolName = argv[0]; in main()
891 outs() << ToolName << ": for the -arch option: Unknown architecture " in main()
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-objdump/
H A Dllvm-objdump.cpp228 static StringRef ToolName; variable
296 WithColor::warning(errs(), ToolName) in reportWarning()
303 WithColor::error(errs(), ToolName) << "'" << File << "': " << Message << "\n"; in reportError()
312 WithColor::error(errs(), ToolName); in reportError()
325 WithColor::warning(errs(), ToolName) << Message << "\n"; in reportCmdLineWarning()
329 WithColor::error(errs(), ToolName) << Message << "\n"; in reportCmdLineError()
2006 WithColor::error(errs(), ToolName) in printUnwindInfo()
2015 WithColor::error(errs(), ToolName) in printRawClangAST()
2057 WithColor::error(errs(), ToolName) in printFaultMaps()
2129 WithColor::error(errs(), ToolName) << "ill-formed archive entry.\n"; in printArchiveChild()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-readobj/
H A Dllvm-readobj.cpp390 static StringRef ToolName; variable
398 WithColor::error(errs(), ToolName) << Msg << "\n"; in error()
421 WithColor::warning(errs(), ToolName) << EI.message() << "\n"; in reportWarning()
745 ToolName = argv[0]; in main()
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-lipo/
H A Dllvm-lipo.cpp36 static const StringRef ToolName = "llvm-lipo"; variable
40 WithColor::error(errs(), ToolName) << Message << "\n"; in reportError()
60 WithColor::error(errs(), ToolName) << "'" << File << "': " << Buf; in reportError()
174 outs() << ToolName + "\n"; in parseLipoOptions()
/netbsd-src/external/gpl3/binutils/dist/gprofng/doc/
H A Dgp-macros.texi38 @macro ToolName{}
H A Dgprofng_ug.texi211 basics of profiling with @ToolName{}.
346 Every @ProductName{} command starts with @ToolName{}, the name of the driver.
393 In this chapter we present and discuss the main functionality of @ToolName{}.
589 pseudo function introduced by @ToolName{}. It is used to display the
1280 @ToolName{}.
1674 Nothing special is needed to profile a multithreaded job when using @ToolName{}.
1909 to the usage of the cores, or @emph{CPUs} as they are called in @ToolName{}
2091 One thing we did not cover sofar is that @ToolName{} fully supports the analysis
2361 Many processors provide a set of hardware event counters and @ToolName{}
2376 supported by @ToolName{}.
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-nm/
H A Dllvm-nm.cpp242 std::string ToolName; variable
247 WithColor::error(errs(), ToolName) << Path << ": " << Message << "\n"; in error()
264 WithColor::error(errs(), ToolName) << FileName; in error()
293 WithColor::error(errs(), ToolName) << FileName; in error()
1789 WithColor::warning(errs(), ToolName)
1966 WithColor::warning(errs(), ToolName) in dumpSymbolNamesFromFile()
2230 WithColor::warning(errs(), ToolName) in dumpSymbolNamesFromFile()
2266 ToolName = argv[0]; in main()
/netbsd-src/external/gpl3/binutils.old/dist/gprofng/doc/
H A Dgprofng.texi53 @macro ToolName{}
209 basics of profiling with @ToolName{}.
344 Every @ProductName{} command starts with @ToolName{}, the name of the driver. This is followed
391 In this chapter we present and discuss the main functionality of @ToolName{}.
578 by @ToolName{} and is used to display the accumulated metric values. In this case,
1187 First of all, function @code{collector_root} is internal to @ToolName{} and
1544 job when using @ToolName{}.
1777 to the usage of the cores, or @emph{CPUs} as they are called in @ToolName{}
1921 One thing we did not cover sofar is that @ToolName{} fully supports the analysis
2149 Many processors provide a set of hardware event counters and @ToolName{}
[all …]