| /src/contrib/wpa/wpa_supplicant/vs2005/win_if_list/ |
| H A D | win_if_list.vcproj | 25 <Tool 28 <Tool 31 <Tool 34 <Tool 37 <Tool 40 <Tool 53 <Tool 56 <Tool 59 <Tool 62 <Tool [all …]
|
| /src/contrib/wpa/wpa_supplicant/vs2005/wpasvc/ |
| H A D | wpasvc.vcproj | 25 <Tool 28 <Tool 31 <Tool 34 <Tool 37 <Tool 40 <Tool 54 <Tool 57 <Tool 60 <Tool 63 <Tool [all …]
|
| /src/tools/tools/ |
| H A D | README | 4 A tool is something which is sometimes useful, and doesn't fit any of 12 cfi Common Flash Interface (CFI) tool 13 commitsdb A tool for reconstructing commit history using md5 16 cxgbetool A tool for the cxgbe(4) driver. 17 cxgbtool A tool for the cxgb(4) driver. 22 gdb_regofs A simple tool that prints out a register offset table 24 struct fpreg offsets. The tool is useful on selected 32 indent_wrapper Tool for style(9) checking SVN/GIT patches. 33 intel-ucode-split Tool to split Intel microcode into individual files. 34 iso Tool to compare the iso3166 and iso639 files in [all …]
|
| /src/contrib/llvm-project/clang/include/clang/Driver/ |
| H A D | Tool.h | 1 //===--- Tool.h - Compilation Tools -----------------------------*- C++ -*-===// 31 /// Tool - Information on a specific compilation tool. 32 class Tool { 33 /// The tool name (for debugging). 36 /// The human readable name for the tool, for use in diagnostics. 39 /// The tool chain this tool is a part of. 43 Tool(const char *Name, const char *ShortName, const ToolChain &TC); 46 virtual ~Tool(); 61 /// Does this tool have "good" standardized diagnostics, or should the 70 /// tool chain specific translations applied. [all …]
|
| H A D | ToolChain.h | 60 class Tool; variable 160 mutable std::unique_ptr<Tool> Clang; 161 mutable std::unique_ptr<Tool> Flang; 162 mutable std::unique_ptr<Tool> Assemble; 163 mutable std::unique_ptr<Tool> Link; 164 mutable std::unique_ptr<Tool> StaticLibTool; 165 mutable std::unique_ptr<Tool> IfsMerge; 166 mutable std::unique_ptr<Tool> OffloadBundler; 167 mutable std::unique_ptr<Tool> OffloadPackager; 168 mutable std::unique_ptr<Tool> LinkerWrapper; [all …]
|
| /src/contrib/llvm-project/clang/lib/Driver/ToolChains/ |
| H A D | SPIRV.h | 1 //===--- SPIRV.h - SPIR-V Tool Implementations ------------------*- C++ -*-===// 12 #include "clang/Driver/Tool.h" 20 void constructTranslateCommand(Compilation &C, const Tool &T, 25 class LLVM_LIBRARY_VISIBILITY Translator : public Tool { 28 : Tool("SPIR-V::Translator", "llvm-spirv", TC) {} in Translator() 39 class LLVM_LIBRARY_VISIBILITY Linker final : public Tool { 41 Linker(const ToolChain &TC) : Tool("SPIRV::Linker", "spirv-link", TC) {} in Linker() 56 mutable std::unique_ptr<Tool> Translator; 76 clang::driver::Tool *SelectTool(const JobAction &JA) const override; 79 clang::driver::Tool *getTool(Action::ActionClass AC) const override; [all …]
|
| H A D | Clang.h | 1 //===--- Clang.h - Clang Tool and ToolChain Implementations ====-*- C++ -*-===// 14 #include "clang/Driver/Tool.h" 27 /// Clang compiler tool. 28 class LLVM_LIBRARY_VISIBILITY Clang : public Tool { 121 /// Clang integrated assembler tool. 122 class LLVM_LIBRARY_VISIBILITY ClangAs : public Tool { 125 : Tool("clang::as", "clang integrated assembler", TC) {} in ClangAs() 144 /// Offload bundler tool. 145 class LLVM_LIBRARY_VISIBILITY OffloadBundler final : public Tool { 148 : Tool("offload bundler", "clang-offload-bundler", TC) {} in OffloadBundler() [all …]
|
| H A D | PS4CPU.h | 14 #include "clang/Driver/Tool.h" 30 class LLVM_LIBRARY_VISIBILITY Assembler final : public Tool { 32 Assembler(const ToolChain &TC) : Tool("PScpu::Assembler", "assembler", TC) {} in Assembler() 44 class LLVM_LIBRARY_VISIBILITY Linker final : public Tool { 46 Linker(const ToolChain &TC) : Tool("PS4cpu::Linker", "linker", TC) {} in Linker() 59 class LLVM_LIBRARY_VISIBILITY Linker final : public Tool { 61 Linker(const ToolChain &TC) : Tool("PS5cpu::Linker", "linker", TC) {} in Linker() 160 Tool *buildAssembler() const override; 161 Tool *buildLinker() const override; 186 Tool *buildAssembler() const override; [all …]
|
| H A D | DragonFly.h | 13 #include "clang/Driver/Tool.h" 22 class LLVM_LIBRARY_VISIBILITY Assembler final : public Tool { 25 : Tool("dragonfly::Assembler", "assembler", TC) {} in Assembler() 35 class LLVM_LIBRARY_VISIBILITY Linker final : public Tool { 37 Linker(const ToolChain &TC) : Tool("dragonfly::Linker", "linker", TC) {} in Linker() 67 Tool *buildAssembler() const override; 68 Tool *buildLinker() const override;
|
| H A D | Gnu.h | 1 //===--- Gnu.h - Gnu Tool and ToolChain Implementations ---------*- C++ -*-===// 15 #include "clang/Driver/Tool.h" 42 class LLVM_LIBRARY_VISIBILITY Assembler : public Tool { 44 Assembler(const ToolChain &TC) : Tool("GNU::Assembler", "assembler", TC) {} in Assembler() 54 class LLVM_LIBRARY_VISIBILITY Linker : public Tool { 56 Linker(const ToolChain &TC) : Tool("GNU::Linker", "linker", TC) {} in Linker() 67 class LLVM_LIBRARY_VISIBILITY StaticLibTool : public Tool { 70 : Tool("GNU::StaticLibTool", "static-lib-linker", TC) {} in StaticLibTool() 82 /// gcc - Generic GCC tool implementations. 84 class LLVM_LIBRARY_VISIBILITY Common : public Tool { [all …]
|
| H A D | CrossWindows.h | 15 #include "clang/Driver/Tool.h" 23 class LLVM_LIBRARY_VISIBILITY Assembler final : public Tool { 25 Assembler(const ToolChain &TC) : Tool("CrossWindows::Assembler", "as", TC) {} in Assembler() 35 class LLVM_LIBRARY_VISIBILITY Linker final : public Tool { 37 Linker(const ToolChain &TC) : Tool("CrossWindows::Linker", "ld", TC) {} in Linker() 80 Tool *buildLinker() const override; 81 Tool *buildAssembler() const override;
|
| H A D | Cuda.h | 15 #include "clang/Driver/Tool.h" 84 class LLVM_LIBRARY_VISIBILITY Assembler final : public Tool { 86 Assembler(const ToolChain &TC) : Tool("NVPTX::Assembler", "ptxas", TC) {} in Assembler() 98 class LLVM_LIBRARY_VISIBILITY FatBinary : public Tool { 100 FatBinary(const ToolChain &TC) : Tool("NVPTX::Linker", "fatbinary", TC) {} in FatBinary() 111 class LLVM_LIBRARY_VISIBILITY Linker final : public Tool { 113 Linker(const ToolChain &TC) : Tool("NVPTX::Linker", "nvlink", TC) {} in Linker() 172 /// Uses nvptx-arch tool to get arch of the system GPU. Will return error 180 Tool *buildAssembler() const override; // ptxas. 181 Tool *buildLinker() const override; // nvlink. [all …]
|
| H A D | BareMetal.h | 1 //===--- BareMetal.h - Bare Metal Tool and ToolChain ------------*- C++-*-===// 12 #include "clang/Driver/Tool.h" 34 Tool *buildLinker() const override; 35 Tool *buildStaticLibTool() const override; 88 class LLVM_LIBRARY_VISIBILITY StaticLibTool : public Tool { 91 : Tool("baremetal::StaticLibTool", "llvm-ar", TC) {} in StaticLibTool() 102 class LLVM_LIBRARY_VISIBILITY Linker final : public Tool { 104 Linker(const ToolChain &TC) : Tool("baremetal::Linker", "ld.lld", TC) {} in Linker()
|
| H A D | XCore.h | 12 #include "clang/Driver/Tool.h" 23 class LLVM_LIBRARY_VISIBILITY Assembler final : public Tool { 25 Assembler(const ToolChain &TC) : Tool("XCore::Assembler", "XCore-as", TC) {} in Assembler() 34 class LLVM_LIBRARY_VISIBILITY Linker final : public Tool { 36 Linker(const ToolChain &TC) : Tool("XCore::Linker", "XCore-ld", TC) {} in Linker() 56 Tool *buildAssembler() const override; 57 Tool *buildLinker() const override;
|
| H A D | NetBSD.h | 13 #include "clang/Driver/Tool.h" 22 class LLVM_LIBRARY_VISIBILITY Assembler final : public Tool { 24 Assembler(const ToolChain &TC) : Tool("netbsd::Assembler", "assembler", TC) {} in Assembler() 34 class LLVM_LIBRARY_VISIBILITY Linker final : public Tool { 36 Linker(const ToolChain &TC) : Tool("netbsd::Linker", "linker", TC) {} in Linker() 86 Tool *buildAssembler() const override; 87 Tool *buildLinker() const override;
|
| H A D | MinGW.h | 16 #include "clang/Driver/Tool.h" 26 class LLVM_LIBRARY_VISIBILITY Assembler : public Tool { 28 Assembler(const ToolChain &TC) : Tool("MinGW::Assemble", "assembler", TC) {} in Assembler() 38 class LLVM_LIBRARY_VISIBILITY Linker final : public Tool { 40 Linker(const ToolChain &TC) : Tool("MinGW::Linker", "linker", TC) {} in Linker() 101 Tool *getTool(Action::ActionClass AC) const override; 102 Tool *buildLinker() const override; 103 Tool *buildAssembler() const override;
|
| H A D | ZOS.h | 12 #include "clang/Driver/Tool.h" 22 class LLVM_LIBRARY_VISIBILITY Assembler final : public Tool { 24 Assembler(const ToolChain &TC) : Tool("zos::Assembler", "assembler", TC) {} in Assembler() 34 class LLVM_LIBRARY_VISIBILITY Linker final : public Tool { 36 Linker(const ToolChain &TC) : Tool("zos::Linker", "linker", TC) {} in Linker() 90 Tool *buildAssembler() const override; 91 Tool *buildLinker() const override;
|
| H A D | OpenBSD.h | 14 #include "clang/Driver/Tool.h" 23 class LLVM_LIBRARY_VISIBILITY Assembler final : public Tool { 26 : Tool("openbsd::Assembler", "assembler", TC) {} in Assembler() 36 class LLVM_LIBRARY_VISIBILITY Linker final : public Tool { 38 Linker(const ToolChain &TC) : Tool("openbsd::Linker", "linker", TC) {} in Linker() 97 Tool *buildAssembler() const override; 98 Tool *buildLinker() const override;
|
| H A D | AIX.h | 12 #include "clang/Driver/Tool.h" 22 class LLVM_LIBRARY_VISIBILITY Assembler final : public Tool { 24 Assembler(const ToolChain &TC) : Tool("aix::Assembler", "assembler", TC) {} in Assembler() 34 class LLVM_LIBRARY_VISIBILITY Linker final : public Tool { 36 Linker(const ToolChain &TC) : Tool("aix::Linker", "linker", TC) {} in Linker() 102 Tool *buildAssembler() const override; 103 Tool *buildLinker() const override;
|
| /src/usr.bin/clang/bugpoint/ |
| H A D | bugpoint.1 | 32 bugpoint \- automatic test case reduction tool 44 advice for using bugpoint, see \fI\%LLVM bugpoint tool: design and usage\fP in the LLVM 87 \fB\-\-tool\-args\fP \fItool args\fP 90 Pass all arguments specified after \fB\-\-tool\-args\fP to the LLVM tool under test 98 bugpoint [bugpoint args] \-\-tool\-args \-\- [tool args] 104 The \(dq\fB\-\-\fP\(dq right after the \fB\-\-tool\-args\fP option tells \fBbugpoint\fP to 105 consider any options starting with \(dq\fB\-\fP\(dq to be part of the \fB\-\-tool\-args\fP 110 \fB\-\-safe\-tool\-args\fP \fItool args\fP 113 Pass all arguments specified after \fB\-\-safe\-tool\-args\fP to the \(dqsafe\(dq execution 114 tool. [all …]
|
| /src/contrib/llvm-project/clang/lib/Driver/ |
| H A D | Tool.cpp | 1 //===--- Tool.cpp - Compilation Tools -------------------------------------===// 9 #include "clang/Driver/Tool.h" 14 Tool::Tool(const char *_Name, const char *_ShortName, const ToolChain &TC) in Tool() function in Tool 17 Tool::~Tool() { in ~Tool() 20 void Tool::ConstructJobMultipleOutputs(Compilation &C, const JobAction &JA, in ConstructJobMultipleOutputs()
|
| /src/sys/dev/mpr/mpi/ |
| H A D | mpi2_tool.h | 36 * Title: MPI diagnostic tool structures and definitions 50 * 05-06-09 02.00.03 Added ISTWI Read Write Tool and Diagnostic CLI Tool. 55 * 05-12-10 02.00.05 Added Diagnostic Data Upload tool. 61 * 07-10-12 02.00.09 Add MPI v2.5 Toolbox Diagnostic CLI Tool Request 69 * Tool Request Message. 70 * 07-22-18 02.00.15 Added defines for new TOOLBOX_PCIE_LANE_MARGINING tool. 71 * Added option for DeviceInfo field in ISTWI tool. 100 U8 Tool; /* 0x00 */ member 117 * Toolbox Clean Tool request 122 U8 Tool; /* 0x00 */ member [all …]
|
| /src/sys/contrib/libsodium/m4/ |
| H A D | ax_valgrind_check.m4 | 21 # Valgrind tools can be disabled via --disable-valgrind-<tool>, the 55 # Alternatively, a "check-valgrind-$TOOL" rule will be added, for $TOOL in 118 AC_CACHE_CHECK([for Valgrind tool ]vgtool, 124 AS_IF([`$VALGRIND --tool=]vgtoolx[ --help >/dev/null 2>&1`],[ 168 valgrind_memcheck_flags = --tool=memcheck $(VALGRIND_memcheck_FLAGS) 169 valgrind_helgrind_flags = --tool=helgrind $(VALGRIND_helgrind_FLAGS) 170 valgrind_drd_flags = --tool=drd $(VALGRIND_drd_FLAGS) 171 valgrind_sgcheck_flags = --tool=exp-sgcheck $(VALGRIND_sgcheck_FLAGS) 191 $(foreach tool, $(valgrind_enabled_tools), check-valgrind-$(tool)) 222 $(foreach tool,$(valgrind_tools),$(eval $(call valgrind_tool_rule,$(tool))))
|
| /src/contrib/llvm-project/clang/lib/Tooling/ |
| H A D | StandaloneExecution.cpp | 34 : Tool(Compilations, SourcePaths, std::move(PCHContainerOps), in StandaloneToolExecutor() 39 Tool.clearArgumentsAdjusters(); in StandaloneToolExecutor() 46 Tool(OptionsParser->getCompilations(), OptionsParser->getSourcePathList(), in StandaloneToolExecutor() 49 Tool.clearArgumentsAdjusters(); in StandaloneToolExecutor() 64 Tool.appendArgumentsAdjuster(Action.second); in execute() 65 Tool.appendArgumentsAdjuster(ArgsAdjuster); in execute() 66 if (Tool.run(Action.first.get())) in execute()
|
| /src/sys/dev/mps/mpi/ |
| H A D | mpi2_tool.h | 38 * Title: MPI diagnostic tool structures and definitions 52 * 05-06-09 02.00.03 Added ISTWI Read Write Tool and Diagnostic CLI Tool. 57 * 05-12-10 02.00.05 Added Diagnostic Data Upload tool. 86 U8 Tool; /* 0x00 */ member 103 * Toolbox Clean Tool request 108 U8 Tool; /* 0x00 */ member 140 U8 Tool; /* 0x00 */ member 160 U8 Tool; /* 0x00 */ member 193 * Toolbox ISTWI Read Write Tool 196 /* Toolbox ISTWI Read Write Tool request message */ [all …]
|