Home
last modified time | relevance | path

Searched refs:tool (Results 1 – 25 of 485) sorted by relevance

12345678910>>...20

/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/lib/
H A Dgcc-defs.exp21 proc ${tool}_check_compile {testcase option objname gcc_output} {
22 global tool
26 ${tool}_fail $testcase "Got Signal 6, $option"
31 ${tool}_fail $testcase "Got Signal 11, $option"
45 set unsupported_message [${tool}_check_unsupported_p $gcc_output]
56 ${tool}_fail $testcase $option
63 ${tool}_fail $testcase $option
67 ${tool}_pass $testcase $option
75 proc ${tool}_pass { testcase cflags } {
87 proc ${tool}_fail { testcase cflags } {
[all …]
H A Dprofopt.exp36 global tool profile_option feedback_option prof_ext
37 if ![info exists tool] {
130 global tool profile_option feedback_option prof_ext perf_ext perf_delta
167 set comp_output [${tool}_target_compile "$src" "$execname1" executable $options];
168 if ![${tool}_check_compile "$testcase compilation" $optstr $execname1 $comp_output] {
177 set result [${tool}_load $execname1 "" ""]
206 set comp_output [${tool}_target_compile "$src" "$execname2" "executable" $options];
207 if ![${tool}_check_compile "$testcase compilation" $optstr $execname2 $comp_output] {
214 set result [${tool}_load "$execname2" "" ""]
245 set comp_output [${tool}_target_compile "$src" "$execname3" "executable" $options];
[all …]
H A Dcompat.exp62 global tool
64 set comp_output [${tool}_target_compile "$source" "$dest" object $options]
65 ${tool}_check_compile "$testcase $dest compile" $optstr $dest $comp_output
78 global tool
90 set comp_output [${tool}_target_compile "$objlist" $dest executable \
92 if ![${tool}_check_compile "$testcase $testname link" "" \
102 set result [${tool}_load $dest "" ""]
120 global tool
/openbsd-src/gnu/llvm/llvm/utils/gn/build/
H A Dcompiled_action.gni8 # tool (required)
9 # [label] Label of the tool to run. This should be an executable, and
11 # tool will be built for the host.
18 # to action()'s `args`, except that `tool` is implicitly added as first
30 # tool = "//tools/something:mytool"
39 # You would typically declare your tool like this:
47 # saves unnecessarily compiling your tool for the target platform. If you
48 # need a target build of your tool as well, omit the if statement.
53 assert(defined(invoker.tool), "must set 'tool' in $target_name")
66 host_tool = invoker.tool + "($host_toolchain)"
/openbsd-src/gnu/llvm/clang/tools/diag-build/
H A Ddiag-build.sh69 tool=$1
72 if [[ -z "$tool" ]]; then
75 elif [[ "$tool" == "xcodebuild" ]]; then
78 elif [[ "$tool" == "make" ]]; then
82 echo "Warning: unknown build system '$tool'" 1>&2
97 eval $tool $dry_run $set_compiler $@ 2>/dev/null |
109 if [[ "$tool" != "xcodebuild" ]]; then
/openbsd-src/gnu/llvm/llvm/tools/llvm-driver/
H A Dllvm-driver.cpp19 #define LLVM_DRIVER_TOOL(tool, entry) int entry##_main(int argc, char **argv); argument
23 #define LLVM_DRIVER_TOOL(tool, entry) " " tool "\n" argument
63 #define LLVM_DRIVER_TOOL(tool, entry) \ in findTool() argument
64 if (Is(tool)) \ in findTool()
H A DCMakeLists.txt6 foreach(tool ${LLVM_DRIVER_TOOLS})
7 string(REPLACE "-" "_" tool_entry ${tool})
8 get_property(tool_aliases GLOBAL PROPERTY LLVM_DRIVER_TOOL_ALIASES_${tool})
/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/
H A DREADME.g++6 > runtest --tool g++ --srcdir ./testsuite
11 > runtest --tool g++ --srcdir ./testsuite CXX=g++ CXXFLAGS=""
18 runtest --tool g++ --srcdir ./testsuite
25 --tool - This tells DejaGnu which tool you are testing. It is
27 particular tool when several testsuites are in the
/openbsd-src/gnu/llvm/llvm/utils/gn/build/toolchain/
H A DBUILD.gn34 tool("cc") {
42 tool("cxx") {
50 tool("objcxx") {
58 tool("asm") {
66 tool("alink") {
102 tool("solink") {
117 tool("solink_module") {
131 tool("link") {
148 tool("copy") {
154 tool("copy_bundle_data") {
[all …]
/openbsd-src/gnu/llvm/clang/docs/
H A DLibTooling.rst6 This document will provide a basic walkthrough of how to write a tool using
40 Writing a standalone tool
44 possibly break, it's time to create a standalone tool. For a standalone tool
69 static llvm::cl::OptionCategory MyToolCategory("my-tool options");
89 // A clang tool can run over a number of sources in the same process...
95 // the tool constructor.
104 Putting it together --- the first tool
107 Now we combine the two previous steps into our first real tool. A more advanced
108 version of this example tool is also checked into the clang tree at
125 static cl::OptionCategory MyToolCategory("my-tool options");
[all …]
H A DClangTools.rst30 infrastructure for building a standalone tool based on Clang, core
64 Clang tool with the basic Clang diagnostics by syntax checking specific files
74 Clang-format is both a :doc:`library <LibFormat>` and a :doc:`stand-alone tool
79 as a user tool (ideally with powerful IDE integrations) and as part of other
89 and features of the tools for other tool developers; each tool should
96 linter tool. It provides an extensible framework for building compiler-based
104 * C++ cast conversion tool. Will convert C-style casts (``(type) value``) to
107 * Non-member ``begin()`` and ``end()`` conversion tool. Will convert
111 * ``tr1`` removal tool. Will migrate source code from using TR1 library
136 * A tool to remove ``auto``. Will convert ``auto`` to an explicit type or add
H A DClangLinkerWrapper.rst13 This tool works as a wrapper of the normal host linking job. This tool is used
25 This tool can be used with the following options. Any arguments not intended
67 This tool links object files with offloading images embedded within it using the
69 magic section we can pass it to this tool to extract the data contained at that
/openbsd-src/gnu/llvm/llvm/utils/gn/secondary/clang-tools-extra/test/
H A DBUILD.gn73 "//clang-tools-extra/clang-apply-replacements/tool:clang-apply-replacements",
74 "//clang-tools-extra/clang-change-namespace/tool:clang-change-namespace",
75 "//clang-tools-extra/clang-doc/tool:clang-doc",
76 "//clang-tools-extra/clang-include-fixer/find-all-symbols/tool:find-all-symbols",
77 "//clang-tools-extra/clang-include-fixer/tool:clang-include-fixer",
78 "//clang-tools-extra/clang-move/tool:clang-move",
79 "//clang-tools-extra/clang-query/tool:clang-query",
80 "//clang-tools-extra/clang-reorder-fields/tool:clang-reorder-fields",
81 "//clang-tools-extra/clang-tidy/tool:clang-tidy",
/openbsd-src/gnu/llvm/llvm/docs/CommandGuide/
H A Dbugpoint.rst1 bugpoint - automatic test case reduction tool
50 **--tool-args** *tool args*
52 Pass all arguments specified after **--tool-args** to the LLVM tool under test
58 bugpoint [bugpoint args] --tool-args -- [tool args]
60 The "``--``" right after the **--tool-args** option tells **bugpoint** to
61 consider any options starting with "``-``" to be part of the **--tool-args**
64 **--safe-tool-args** *tool args*
66 Pass all arguments specified after **--safe-tool-args** to the "safe" execution
67 tool.
69 **--gcc-tool-args** *gcc tool args*
[all …]
H A Dllvm-install-name-tool.rst1 llvm-install-name-tool - LLVM tool for manipulating install-names and rpaths
4 .. program:: llvm-install-name-tool
9 :program:`llvm-install-name-tool` [*options*] *input*
14 :program:`llvm-install-name-tool` is a tool to manipulate dynamic shared library
68 Display the version of the :program:`llvm-install-name-tool` executable.
73 :program:`llvm-install-name-tool` exits with a non-zero exit code if there is an error.
/openbsd-src/gnu/llvm/llvm/docs/
H A DCFIVerify.rst11 This document provides an overview of an external tool to verify the protection
13 (``-fsanitize=cfi``). This tool, provided a binary or DSO, should infer whether
17 This tool should also be added as part of Clang's continuous integration testing
24 This tool will be present as a part of the LLVM toolchain, and will reside in
38 This tool will continuously validate that CFI directives are properly
49 It may be possible in the future to extend this tool to flag unnecessary CFI
57 This tool will disassemble binaries and DSO's from their machine code format and
58 analyse the disassembled machine code. The tool will inspect virtual calls and
59 indirect function calls. This tool will also inspect indirect jumps, as inlined
64 The tool would operate by searching for indirect control flow instructions in
[all …]
H A DBugpointRedesign.md28 be present in the tool, but with the caveat of still being documented and
35 reduction tools such as CReduce, Delta, and Lithium; the tool should feel less
50 and isn’t interesting to the tool, and thus, streamlining the process of
63 The tool would behave similar to CReduce’s functionality in that it would have a
65 modularize the tool’s behavior, as well as making it easier to maintain and
80 reduction) would be added to the tool, to even further reduce IR.
101 simplifying the interface will be worth considering in order to make the tool
/openbsd-src/gnu/llvm/llvm/tools/bugpoint/
H A DOptimizerDriver.cpp166 std::string tool = OptCmd; in runPasses() local
170 tool = *Path; in runPasses()
174 if (tool.empty()) { in runPasses()
178 if (!sys::fs::exists(tool)) { in runPasses()
179 errs() << "Specified `opt' binary does not exist: " << tool << "\n"; in runPasses()
190 Prog = tool; in runPasses()
202 Args.push_back(tool); in runPasses()
204 Args.push_back(tool); in runPasses()
/openbsd-src/gnu/usr.bin/gcc/contrib/
H A Dcompare_tests13 tmp1=/tmp/$tool-testing.$$a
14 tmp2=/tmp/$tool-testing.$$b
15 now_s=/tmp/$tool-testing.$$d
16 before_s=/tmp/$tool-testing.$$e
H A Dtest_installed116 test x"${GCC_UNDER_TEST}" = x"no" || runtest --tool gcc ${1+"$@"}
117 test x"${GXX_UNDER_TEST}" = x"no" || runtest --tool g++ ${1+"$@"}
118 test x"${G77_UNDER_TEST}" = x"no" || runtest --tool g77 ${1+"$@"}
119 test x"${OBJC_UNDER_TEST}" = x"no" || runtest --tool objc ${1+"$@"}
/openbsd-src/gnu/llvm/libcxx/utils/libcxx/sym_check/
H A Dextract.py129 self.tool = self.find_tool()
130 if self.tool is None:
143 cmd = [self.tool] + self.flags + [lib]
212 self.tool = self.find_tool()
213 if self.tool is None:
230 cmd = [self.tool] + self.flags + [lib]
/openbsd-src/gnu/llvm/llvm/utils/lit/lit/llvm/
H A Dconfig.py361 for tool in tools:
362 match = tool.resolve(self, search_dirs)
434 tool = None
436 tool = self.config.environment.get(search_env)
438 if not tool:
443 tool = lit.util.which(name, path)
445 if not tool and use_installed:
447 tool = lit.util.which(name, self.config.environment['PATH'])
449 if required and not tool:
456 if tool:
[all …]
/openbsd-src/gnu/usr.bin/perl/cpan/Test-Simple/t/Test2/modules/API/
H A DContext.t374 is(0 + $!, 22, "altered \$! in tool");
375 is($@, 'xyz', "altered \$@ in tool");
376 is($?, 33, "altered \$? in tool");
385 is(0 + $!, 42, "altered \$! in tool (nested)");
386 is($@, 'app', "altered \$@ in tool (nested)");
387 is($?, 43, "altered \$? in tool (nested)");
391 is(0 + $!, 22, "restored the nested \$! in tool");
392 is($@, 'xyz', "restored the nested \$@ in tool");
393 is($?, 33, "restored the nested \$? in tool");
403 is(0 + $!, 42, "altered \$! in tool (nested)");
[all …]
/openbsd-src/gnu/llvm/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_symbolizer_libcdep.cpp93 for (auto &tool : tools_) { in SymbolizePC() local
95 if (tool.SymbolizePC(addr, res)) { in SymbolizePC()
114 for (auto &tool : tools_) { in SymbolizeData() local
116 if (tool.SymbolizeData(addr, info)) { in SymbolizeData()
130 for (auto &tool : tools_) { in SymbolizeFrame() local
132 if (tool.SymbolizeFrame(addr, info)) { in SymbolizeFrame()
155 for (auto &tool : tools_) { in Flush() local
157 tool.Flush(); in Flush()
163 for (auto &tool : tools_) { in Demangle() local
165 if (const char *demangled = tool.Demangle(name)) in Demangle()
/openbsd-src/gnu/gcc/libmudflap/testsuite/lib/
H A Dmfdg.exp36 global tool
145 … set results [${tool}-dg-test $prog [lindex ${dg-do-what} 0] "$tool_flags ${dg-extra-tool-flags}"];
212 if { [info proc ${tool}-dg-prune] != "" } {
213 set comp_output [${tool}-dg-prune $target_triplet $comp_output]
266 set result [${tool}_load $output_file]

12345678910>>...20