Home
last modified time | relevance | path

Searched refs:compile (Results 1 – 25 of 1178) sorted by relevance

12345678910>>...48

/openbsd/regress/usr.bin/libtool/
H A DMakefile12 COMPILE_TESTS = compile-mode-0 compile-mode-1 compile-mode-2 \
13 compile-mode-3 compile-mode-4 compile-mode-5 \
14 compile-mode-6 compile-mode-7 compile-mode-8 \
15 compile-mode-9 compile-mode-10 compile-mode-11 \
16 compile-mode-12 compile-mode-13
41 test-compile-0: ${OBJLA}
138 compile-mode-0: dummy.c
144 compile-mode-1: dummy.c
150 compile-mode-2: dummy.c
155 compile-mode-3: dummy.c
[all …]
/openbsd/gnu/llvm/llvm/utils/UpdateTestChecks/
H A Dasm.py17 ASM_FUNCTION_X86_RE = re.compile(
26 ASM_FUNCTION_ARM_RE = re.compile(
50 ASM_FUNCTION_BPF_RE = re.compile(
64 ASM_FUNCTION_M68K_RE = re.compile(
70 ASM_FUNCTION_MIPS_RE = re.compile(
87 ASM_FUNCTION_AVR_RE = re.compile(
93 ASM_FUNCTION_PPC_RE = re.compile(
181 ASM_FUNCTION_VE_RE = re.compile(
229 re.compile(
234 re.compile(
[all …]
H A Dcommon.py76 value_list.append(Regex(re.compile(values, flags)))
323 PREFIX_RE = re.compile('^[a-zA-Z0-9_-]+$')
331 OPT_FUNCTION_RE = re.compile(
336 ANALYZE_FUNCTION_RE = re.compile(
341 LV_DEBUG_RE = re.compile(
348 TRIPLE_ARG_RE = re.compile(r'-mtriple[= ]([^ ]+)')
349 MARCH_ARG_RE = re.compile(r'-march[= ]([^ ]+)')
352 SCRUB_LEADING_WHITESPACE_RE = re.compile(r'^(\s+)')
358 SCRUB_LOOP_COMMENT_RE = re.compile(
567 group_regex = re.compile(r'\(.*?\)')
[all …]
/openbsd/gnu/usr.bin/gcc/gcc/testsuite/gcc.c-torture/
H A DChangeLog.071 * compile/920415-1.c: Ditto.
72 * compile/920428-3.c: Ditto.
73 * compile/920501-1.c: Ditto.
74 * compile/920501-7.c: Ditto.
75 * compile/941014-4.c: Ditto.
76 * compile/950613-1.c: Ditto.
514 * compile/gcc-failure/940409-1.c: Moved from compile.
562 * compile/: New test.
563 * compile/: New test.
564 * compile/: New test.
[all …]
/openbsd/gnu/lib/libstdc++/libstdc++/libmath/
H A DMakefile.in226 mostlyclean-compile:
230 clean-compile:
232 distclean-compile:
235 maintainer-clean-compile:
238 $(LIBTOOL) --mode=compile $(COMPILE) -c $<
241 $(LIBTOOL) --mode=compile $(COMPILE) -c $<
244 $(LIBTOOL) --mode=compile $(COMPILE) -c $<
346 clean-am: clean-noinstLTLIBRARIES clean-compile clean-libtool \
351 distclean-am: distclean-noinstLTLIBRARIES distclean-compile \
359 maintainer-clean-compile maintainer-clean-libtool \
[all …]
/openbsd/gnu/llvm/clang/tools/scan-build-py/lib/libscanbuild/
H A Dcompilation.py52 re.compile(r'^(intercept-|analyze-|)c(c|\+\+)$'),
53 re.compile(r'^([^-]*-)*[mg](cc|\+\+)(-\d+(\.\d+){0,2})?$'),
54 re.compile(r'^([^-]*-)*clang(\+\+)?(-\d+(\.\d+){0,2})?$'),
55 re.compile(r'^llvm-g(cc|\+\+)$'),
134 cplusplus = re.compile(r'^(.+)(\+\+)(-.+|)$')
H A Dreport.py333 pattern = re.compile(r'sarif:/runs/(\d+)')
403 patterns = [re.compile(r'<!-- BUGTYPE (?P<bug_type>.*) -->$'),
404 re.compile(r'<!-- BUGFILE (?P<bug_file>.*) -->$'),
405 re.compile(r'<!-- BUGPATHLENGTH (?P<bug_path_length>.*) -->$'),
406 re.compile(r'<!-- BUGLINE (?P<bug_line>.*) -->$'),
407 re.compile(r'<!-- BUGCATEGORY (?P<bug_category>.*) -->$'),
408 re.compile(r'<!-- BUGDESC (?P<bug_description>.*) -->$'),
409 re.compile(r'<!-- FUNCTIONNAME (?P<bug_function>.*) -->$')]
410 endsign = re.compile(r'<!-- BUGMETAEND -->')
/openbsd/gnu/llvm/llvm/utils/
H A Dschedcover.py62 re_sched_default = re.compile("SchedRW machine model for ([^ ]*) (.*)\n");
63 re_sched_no_default = re.compile("No machine model for ([^ ]*)\n");
64 re_sched_spec = re.compile("InstRW on ([^ ]*) for ([^ ]*) (.*)\n");
65 re_sched_no_spec = re.compile("No machine model for ([^ ]*) on processor (.*)\n");
66 re_sched_itin = re.compile("Itinerary for ([^ ]*): ([^ ]*)\n")
85 filt = re.compile(sys.argv[2], re.IGNORECASE)
H A DDSAextract.py51 regexp_list.append(re.compile(name))
54 nodeexp = re.compile('Node')
56 arrowexp = re.compile('->')
H A Dupdate_mir_test_checks.py33 MIR_FUNC_NAME_RE = re.compile(r' *name: *(?P<func>[A-Za-z0-9_.-]+)')
34 MIR_BODY_BEGIN_RE = re.compile(r' *body: *\|')
35 MIR_BASIC_BLOCK_RE = re.compile(r' *bb\.[0-9]+.*:$')
36 VREG_RE = re.compile(r'(%[0-9]+)(?::[a-z0-9_]+)?(?:\([<>a-z0-9 ]+\))?')
41 VREG_DEF_RE = re.compile(
45 MIR_PREFIX_DATA_RE = re.compile(r'^ *(;|bb.[0-9].*: *$|[a-z]+:( |$)|$)')
47 IR_FUNC_NAME_RE = re.compile(
49 IR_PREFIX_DATA_RE = re.compile(r'^ *(;|$)')
51 MIR_FUNC_RE = re.compile(
/openbsd/gnu/lib/libstdc++/libstdc++/libio/
H A DMakefile.in261 mostlyclean-compile:
265 clean-compile:
267 distclean-compile:
270 maintainer-clean-compile:
273 $(LIBTOOL) --mode=compile $(COMPILE) -c $<
276 $(LIBTOOL) --mode=compile $(COMPILE) -c $<
279 $(LIBTOOL) --mode=compile $(COMPILE) -c $<
381 clean-am: clean-noinstLTLIBRARIES clean-compile clean-libtool \
386 distclean-am: distclean-noinstLTLIBRARIES distclean-compile \
394 maintainer-clean-compile maintainer-clean-libtool \
[all …]
/openbsd/gnu/llvm/llvm/utils/lint/
H A Dcpp_lint.py24 include_gtest_re = re.compile(r'^#include "gtest/(.*)"')
25 include_llvm_re = re.compile(r'^#include "llvm/(.*)"')
26 include_support_re = re.compile(r'^#include "(Support/.*)"')
27 include_config_re = re.compile(r'^#include "(Config/.*)"')
28 include_system_re = re.compile(r'^#include <(.*)>')
/openbsd/gnu/usr.bin/binutils/gdb/rdi-share/
H A DMakefile.in153 mostlyclean-compile:
156 clean-compile:
158 distclean-compile:
161 maintainer-clean-compile:
267 mostlyclean: mostlyclean-noinstLIBRARIES mostlyclean-compile \
270 clean: clean-noinstLIBRARIES clean-compile clean-tags clean-generic \
273 distclean: distclean-noinstLIBRARIES distclean-compile distclean-tags \
278 maintainer-clean-compile maintainer-clean-tags \
286 mostlyclean-compile distclean-compile clean-compile \
287 maintainer-clean-compile tags mostlyclean-tags distclean-tags \
/openbsd/gnu/lib/libstdc++/libstdc++/testsuite/
H A DMakefile.in262 mostlyclean-compile:
266 clean-compile:
268 distclean-compile:
271 maintainer-clean-compile:
274 $(LIBTOOL) --mode=compile $(COMPILE) -c $<
277 $(LIBTOOL) --mode=compile $(COMPILE) -c $<
280 $(LIBTOOL) --mode=compile $(COMPILE) -c $<
439 clean-am: clean-noinstLIBRARIES clean-compile clean-libtool \
445 distclean-am: distclean-noinstLIBRARIES distclean-compile \
453 maintainer-clean-compile maintainer-clean-libtool \
[all …]
/openbsd/gnu/lib/libstdc++/libstdc++/libsupc++/
H A DMakefile.in283 --mode=compile $(CXX) $(INCLUDES) \
398 mostlyclean-compile:
402 clean-compile:
404 distclean-compile:
407 maintainer-clean-compile:
410 $(LIBTOOL) --mode=compile $(COMPILE) -c $<
413 $(LIBTOOL) --mode=compile $(COMPILE) -c $<
416 $(LIBTOOL) --mode=compile $(COMPILE) -c $<
538 distclean-toolexeclibLTLIBRARIES distclean-compile \
547 maintainer-clean-compile maintainer-clean-libtool \
[all …]
/openbsd/gnu/lib/libstdc++/libstdc++/src/
H A DMakefile.in383 mostlyclean-compile:
387 clean-compile:
389 distclean-compile:
392 maintainer-clean-compile:
395 $(LIBTOOL) --mode=compile $(COMPILE) -c $<
398 $(LIBTOOL) --mode=compile $(COMPILE) -c $<
401 $(LIBTOOL) --mode=compile $(COMPILE) -c $<
515 distclean-am: distclean-toolexeclibLTLIBRARIES distclean-compile \
523 maintainer-clean-compile maintainer-clean-libtool \
535 mostlyclean-compile distclean-compile clean-compile \
[all …]
/openbsd/usr.bin/libtool/LT/
H A DLoFile.pm45 sub compile($self, $compiler, $odir, $args) subroutine
55 LT::Exec->compile(@cmd);
64 LT::Exec->compile(@cmd);
/openbsd/gnu/llvm/llvm/docs/tutorial/
H A DBuildingAJIT3.rst37 the ORC APIs provide us with a layer to lazily compile LLVM IR:
45 utilities for each function that it scans: a *stub* and a *compile
53 higher optimization level) and changes address. The second utility, the compile
56 function's stub to point at the function's compile callback, we enable lazy
58 pointer and trigger the compile callback instead. The compile callback will
59 compile the function, update the function pointer for the stub, then execute
98 to create the compile callback needed for each function.
121 an appropriate compile callback manager we use the
123 JITTargetAddress to call if it receives a request to compile an unknown
133 this function to ask us what we would like to compile. At a minimum we need to
[all …]
/openbsd/gnu/usr.bin/perl/dist/ExtUtils-CBuilder/t/
H A D01-basic.t45 is $object_file, $b->compile(source => $source_file);
98 $s->compile(source => 'foo',
103 $s->compile(source => 'foo',
/openbsd/gnu/llvm/lldb/docs/use/
H A Dtroubleshooting.rst15 etc), LLDB by default will only search for compile units whose filename
26 This will cause breakpoints in "bar.c" to be inlined into the compile unit for
37 This tells LLDB to always look in all compile units and search for breakpoint
39 Setting breakpoints in header files always searches all compile units because
61 Checking if a module has any compile units (source files) is a good way to
77 Above we can see that "/tmp/a.out" does have a compile unit, and
80 We can also list the full paths to all compile units for a module using python:
/openbsd/gnu/llvm/clang/docs/
H A DJSONCompilationDatabase.rst45 <https://github.com/hedronvision/bazel-compile-commands-extractor>`_.
62 working directory of the compile run and the actual compile command.
90 - **arguments:** The compile command argv as list of strings.
94 - **command:** The compile command as a single shell-escaped string.
108 The convention is to name the file compile\_commands.json and put it at
117 compile any file.
/openbsd/gnu/usr.bin/gcc/gcc/testsuite/
H A DChangeLog5924 * objc/compile/compile.exp: New expect script.
5925 * objc/compile/20011211-1.m: New compile test.
6346 gcc.c-torture/compile/compile.exp,
13927 compile.
14896 * gcc.c-torture/compile/compile.exp: Likewise.
14935 * gcc.c-torture/compile/compile.exp: Likewise.
15612 gcc.compile/921109-2.c, gcc.compile/921109-3.c,
15613 gcc.compile/921111-1.c, gcc.compile/921116-2.c,
15614 gcc.compile/921118-1.c, gcc.compile/921126-1.c,
15615 gcc.compile/921202-1.c, gcc.compile/921202-2.c,
[all …]
/openbsd/gnu/lib/libstdc++/libstdc++/
H A Dmkcheck.in88 rm -rf "$TEST_DIR"/compile.out
319 echo $compiler_invocation >> compile.out 2>&1
321 $compiler_invocation >> compile.out 2>&1
366 `cat compile.out >> $LOG_FILE`
367 rm compile.out
/openbsd/gnu/llvm/llvm/utils/gn/build/
H A Dsync_source_lists_from_cmake.py60 gn_cpp_re = re.compile(r'^\s*"([^$"]+\.(?:cpp|c|h|S))",$', re.MULTILINE)
62 gn_cpp_re2 = re.compile(
66 cmake_cpp_re = re.compile(r'^\s*([A-Za-z_0-9./-]+\.(?:cpp|c|h|S))$',
134 unittest_re = re.compile(r'^add_\S+_unittest', re.MULTILINE)
/openbsd/gnu/usr.bin/perl/t/lib/warnings/
H A D1global26 # warnable code, warnings enabled via compile time $^W
52 # warnable code, warnings enabled via compile time $^W
63 # compile-time warnable code, warnings enabled via runtime $^W
78 # warnings enabled at compile time, disabled at run time
86 # warnings disabled at compile time, enabled at run time

12345678910>>...48