Home
last modified time | relevance | path

Searched full:tool (Results 1 – 25 of 996) sorted by relevance

12345678910>>...40

/freebsd/contrib/wpa/wpa_supplicant/vs2005/win_if_list/
H A Dwin_if_list.vcproj25 <Tool
28 <Tool
31 <Tool
34 <Tool
37 <Tool
40 <Tool
53 <Tool
56 <Tool
59 <Tool
62 <Tool
[all …]
/freebsd/contrib/wpa/wpa_supplicant/vs2005/wpasvc/
H A Dwpasvc.vcproj25 <Tool
28 <Tool
31 <Tool
34 <Tool
37 <Tool
40 <Tool
54 <Tool
57 <Tool
60 <Tool
63 <Tool
[all …]
/freebsd/tools/tools/
H A DREADME4 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 …]
/freebsd/contrib/llvm-project/clang/include/clang/Driver/
H A DTool.h1 //===--- 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 DToolChain.h60 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 …]
H A DJob.h31 class Tool; variable
47 // all tool input arguments to a file.
110 /// Tool - The tool which caused the creation of this job.
111 const Tool &Creator;
172 Command(const Action &Source, const Tool &Creator,
191 /// getCreator - Return the Tool which caused the creation of this job.
192 const Tool &getCreator() const { return Creator; } in getCreator()
242 /// Use the CC1 tool callback when available, to avoid creating a new process
245 CC1Command(const Action &Source, const Tool &Creator,
/freebsd/usr.bin/clang/bugpoint/
H A Dbugpoint.132 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 …]
/freebsd/contrib/llvm-project/clang/lib/Driver/ToolChains/
H A DClang.h1 //===--- 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 DPS4CPU.h14 #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 DCuda.h15 #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 DAIX.h12 #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;
H A DSPIRV.cpp1 //===--- SPIRV.cpp - SPIR-V Tool Implementations ----------------*- C++ -*-===//
21 void SPIRV::constructTranslateCommand(Compilation &C, const Tool &T, in constructTranslateCommand()
60 clang::driver::Tool *SPIRVToolChain::getTranslator() const { in getTranslator()
66 clang::driver::Tool *SPIRVToolChain::SelectTool(const JobAction &JA) const { in SelectTool()
71 clang::driver::Tool *SPIRVToolChain::getTool(Action::ActionClass AC) const { in getTool()
81 clang::driver::Tool *SPIRVToolChain::buildLinker() const { in buildLinker()
H A DHIPUtility.h1 //===--- HIPUtility.h - Common HIP Tool Chain Utilities ---------*- C++ -*-===//
12 #include "clang/Driver/Tool.h"
23 const llvm::opt::ArgList &TCArgs, const Tool &T);
28 const llvm::opt::ArgList &Args, const JobAction &JA, const Tool &T);
/freebsd/contrib/llvm-project/clang/lib/Driver/
H A DTool.cpp1 //===--- 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()
/freebsd/sys/dev/mpr/mpi/
H A Dmpi2_tool.h36 * 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 …]
/freebsd/sys/contrib/libsodium/m4/
H A Dax_valgrind_check.m421 # 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))))
/freebsd/contrib/llvm-project/clang/lib/Tooling/
H A DStandaloneExecution.cpp34 : 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()
/freebsd/sys/dev/mps/mpi/
H A Dmpi2_tool.h38 * 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 …]
/freebsd/contrib/openbsm/
H A DREADME36 tools/ Tool directory, including audump to dump databases
40 audit Command line audit control tool
44 auditreduce Audit trail reduction tool
45 audump Debugging tool to parse and print audit databases
46 praudit Tool to print audit trails
/freebsd/contrib/llvm-project/compiler-rt/lib/ubsan/
H A Dubsan_init.h17 // Get the full tool name for UBSan.
20 // Initialize UBSan as a standalone tool. Typically should be called early
24 // Initialize UBSan as a standalone tool, if it hasn't been initialized before.
27 // Initializes UBSan as a plugin tool. This function should be called once
28 // from "parent tool" (e.g. ASan) initialization.
/freebsd/contrib/llvm-project/openmp/runtime/src/
H A Dompt-general.cpp51 // tool... Success." instead of "PREFIX: Start tool... PREFIX: Success."
157 // of ompt_start_tool() will be used in case no tool-supplied implementation of
164 // runtime library is linked before the tool. Since glibc 2.2 strong symbols in ompt_start_tool()
180 // initialize the tool. Otherwise, NULL is returned and OMPT won't be enabled.
258 OMPT_VERBOSE_INIT_PRINT("----- START LOGGING OF TOOL REGISTRATION -----\n");
259 OMPT_VERBOSE_INIT_PRINT("Search for OMP tool in current address space... ");
274 "Tool was started and is using the OMPT interface.\n");
275 OMPT_VERBOSE_INIT_PRINT("----- END LOGGING OF TOOL REGISTRATION -----\n");
279 // Try tool-libraries-var ICV
283 OMPT_VERBOSE_INIT_PRINT("Searching tool libraries...\n");
[all …]
/freebsd/usr.bin/dtc/
H A Ddtc.191 Force the tool to attempt to generate the output, even if the input had errors.
145 This tool supports two extensions to the standard to support conditional
186 Display the tool version and exit.
386 The warnings and errors supported by the elinux.org tool are not documented.
387 This tool supports the warnings described in the
393 The device tree formats understood by this tool conform to the Power.org
399 tool:
408 with the semantics compatible with the elinux.org tool.
417 A dtc tool first appeared in
419 This version of the tool first appeared in
[all …]
/freebsd/contrib/llvm-project/clang/include/clang/Tooling/
H A DStandaloneExecution.h65 Tool.setDiagnosticConsumer(DiagConsumer); in setDiagnosticConsumer()
73 return Tool.getSourcePaths(); in getSourcePaths()
77 Tool.mapVirtualFile(FilePath, Content); in mapVirtualFile()
80 /// Returns the file manager used in the tool.
83 FileManager &getFiles() { return Tool.getFiles(); } in getFiles()
90 ClangTool Tool; variable
H A DExecution.h15 // In order to enable multiprocessing execution, tool actions are expected to
41 /// An abstraction for the result of a tool execution. For example, the
44 /// Results should be string key-value pairs. For example, a refactoring tool
104 /// This can be extended to support running tool actions in different
132 /// This should be passed to tool callbacks, and tool callbacks should report
138 /// NOTE: This should only be used after the execution finishes. Tool
142 /// Map a virtual file to be used while running the tool.
/freebsd/contrib/bearssl/conf/
H A DUnix.mk33 # File deletion tool.
36 # Directory creation tool.
44 # Static library building tool.
49 # DLL building tool.

12345678910>>...40