| /llvm-project-15.0.7/llvm/utils/UpdateTestChecks/ |
| H A D | asm.py | 17 ASM_FUNCTION_X86_RE = re.compile( 25 ASM_FUNCTION_ARM_RE = re.compile( 40 ASM_FUNCTION_AMDGPU_RE = re.compile( 54 ASM_FUNCTION_M68K_RE = re.compile( 60 ASM_FUNCTION_MIPS_RE = re.compile( 77 ASM_FUNCTION_AVR_RE = re.compile( 83 ASM_FUNCTION_PPC_RE = re.compile( 170 ASM_FUNCTION_VE_RE = re.compile( 215 re.compile( 220 re.compile( [all …]
|
| H A D | common.py | 76 value_list.append(Regex(re.compile(values, flags))) 321 PREFIX_RE = re.compile('^[a-zA-Z0-9_-]+$') 329 OPT_FUNCTION_RE = re.compile( 334 ANALYZE_FUNCTION_RE = re.compile( 339 LV_DEBUG_RE = re.compile( 346 TRIPLE_ARG_RE = re.compile(r'-mtriple[= ]([^ ]+)') 347 MARCH_ARG_RE = re.compile(r'-march[= ]([^ ]+)') 350 SCRUB_LEADING_WHITESPACE_RE = re.compile(r'^(\s+)') 356 SCRUB_LOOP_COMMENT_RE = re.compile( 565 group_regex = re.compile(r'\(.*?\)') [all …]
|
| /llvm-project-15.0.7/clang/test/Parser/ |
| H A D | ms-if-exists.cpp | 15 this will not compile. in test_if_exists_stmts() 18 this will not compile. in test_if_exists_stmts() 41 this will not compile. in __if_exists() 45 this will not compile. in __if_not_exists() 62 __if_exists(MayExist::Type_not) { this will not compile } in test_if_exists_init_list() 74 __if_not_exists(MayExist::Type) { this will not compile } in test_if_exists_init_list() 91 this will not compile. in __if_exists() 95 this will not compile. in __if_not_exists()
|
| H A D | ms-if-exists.c | 14 this will not compile. in test_if_exists_stmts() 17 this will not compile. in test_if_exists_stmts() 40 this will not compile. in __if_exists() 44 this will not compile. in __if_not_exists() 61 __if_exists(Type_not) { this will not compile } in test_if_exists_init_list() 73 __if_not_exists(Type) { this will not compile } in test_if_exists_init_list()
|
| /llvm-project-15.0.7/third-party/benchmark/tools/ |
| H A D | strip_asm.py | 14 label_re = re.compile("\s*j[a-z]+\s+\.L([a-zA-Z0-9][a-zA-Z0-9_]*)") 24 label_decl = re.compile("^[.]{0,1}L([a-zA-Z0-9][a-zA-Z0-9_]*)(?=:)") 43 label_decl = re.compile("^\.L([a-zA-Z0-9][a-zA-Z0-9_]*)(?=:)") 93 re.compile("\s+\..*$"), # directive 94 re.compile("\s*#(NO_APP|APP)$"), #inline ASM 95 re.compile("\s*#.*$"), # comment line 96 re.compile("\s*\.globa?l\s*([.a-zA-Z_][a-zA-Z0-9$_.]*)"), #global directive 97 re.compile("\s*\.(string|asciz|ascii|[1248]?byte|short|word|long|quad|value|zero)"), 102 fn_label_def = re.compile("^[a-zA-Z_][a-zA-Z0-9_.]*:")
|
| /llvm-project-15.0.7/lldb/test/API/functionalities/object-file/ |
| H A D | TestImageListMultiArchitecture.py | 25 … "hello-freebsd-10.0-x86_64-clang-3.3": re.compile(r"x86_64-(\*)?-freebsd10.0(-unknown)? x86_64"), 26 … "hello-freebsd-10.0-x86_64-gcc-4.7.3": re.compile(r"x86_64-(\*)?-freebsd10.0(-unknown)? x86_64"), 27 … "hello-netbsd-6.1-x86_64-gcc-4.5.3": re.compile(r"x86_64-(\*)?-netbsd6.1.4(-unknown)? x86_64"), 28 … "hello-ubuntu-14.04-x86_64-gcc-4.8.2": re.compile(r"x86_64-(\*)?-linux(-unknown)? x86_64"), 29 … "hello-ubuntu-14.04-x86_64-clang-3.5pre": re.compile(r"x86_64-(\*)?-linux(-unknown)? x86_64"),
|
| /llvm-project-15.0.7/openmp/tools/archer/tests/ |
| H A D | lit.cfg | 96 config.substitutions.append(("%libarcher-compile-and-run-race-noserial", \ 99 config.substitutions.append(("%libarcher-compile-and-run-race", \ 100 "%libarcher-compile && %libarcher-run-race")) 101 config.substitutions.append(("%libarcher-compile-and-run-nosuppression", \ 102 "%libarcher-compile && %libarcher-run-nosuppression")) 103 config.substitutions.append(("%libarcher-compile-and-run", \ 104 "%libarcher-compile && %libarcher-run")) 105 config.substitutions.append(("%libarcher-cxx-compile-and-run", \ 106 "%libarcher-cxx-compile && %libarcher-run")) 107 config.substitutions.append(("%libarcher-cxx-compile", \ [all …]
|
| /llvm-project-15.0.7/clang-tools-extra/clangd/ |
| H A D | ConfigCompile.cpp | 186 void compile(Fragment &&F) { in compile() function 193 compile(std::move(F.If)); in compile() 194 compile(std::move(F.CompileFlags)); in compile() 195 compile(std::move(F.Index)); in compile() 196 compile(std::move(F.Diagnostics)); in compile() 197 compile(std::move(F.Completion)); in compile() 198 compile(std::move(F.Hover)); in compile() 199 compile(std::move(F.InlayHints)); in compile() 200 compile(std::move(F.Style)); in compile() 443 compile(std::move(F.Includes)); in compile() [all …]
|
| /llvm-project-15.0.7/clang/tools/scan-build-py/lib/libscanbuild/ |
| H A D | compilation.py | 52 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'^(.+)(\+\+)(-.+|)$')
|
| /llvm-project-15.0.7/llvm/utils/ |
| H A D | schedcover.py | 62 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)
|
| /llvm-project-15.0.7/llvm/utils/lint/ |
| H A D | cpp_lint.py | 24 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 <(.*)>')
|
| /llvm-project-15.0.7/llvm/test/CodeGen/SystemZ/ |
| H A D | vec-conv-01.ll | 41 ; Test conversion of f64s to signed i32s, which must compile. 48 ; Test conversion of f64s to unsigned i32s, which must compile. 55 ; Test conversion of signed i32s to f64s, which must compile. 62 ; Test conversion of unsigned i32s to f64s, which must compile. 69 ; Test conversion of f32s to signed i64s, which must compile. 76 ; Test conversion of f32s to unsigned i64s, which must compile. 83 ; Test conversion of signed i64s to f32, which must compile. 90 ; Test conversion of unsigned i64s to f32, which must compile.
|
| /llvm-project-15.0.7/lldb/test/API/tools/lldb-server/test/ |
| H A D | test_lldbgdbserverutils.py | 27 regex=re.compile(r"^\$QC([0-9a-fA-F]+)#"), 35 regex=re.compile(r"^\$QC([0-9a-fA-F]+)#"), 45 regex=re.compile(r"^\$T([0-9a-fA-F]{2})thread:([0-9a-fA-F]+)"), 54 regex=re.compile(r"^\$T([0-9a-fA-F]{2})thread:([0-9a-fA-F]+)"),
|
| /llvm-project-15.0.7/openmp/libomptarget/test/ |
| H A D | lit.cfg | 134 "%libomptarget-compile-run-and-check-" + libomptarget_target)) 137 config.substitutions.append(("%libomptarget-compile-and-run-generic", 138 "%libomptarget-compile-and-run-" + libomptarget_target)) 141 config.substitutions.append(("%libomptarget-compile-generic", 142 "%libomptarget-compile-" + libomptarget_target)) 173 "%libomptarget-compile-and-run-" + libomptarget_target + \ 179 config.substitutions.append(("%libomptarget-compile-and-run-" + \ 181 "%libomptarget-compile-" + libomptarget_target + " && " + \ 186 config.substitutions.append(("%libomptarget-compile-" + \ 232 config.substitutions.append(("%libomptarget-compile-and-run-" + \ [all …]
|
| /llvm-project-15.0.7/lldb/test/Shell/BuildScript/ |
| H A D | script-args.test | 1 RUN: %build -n --verbose --arch=32 --mode=compile --compiler=any -o %t/foo.out foobar.c \ 3 RUN: %build -n --verbose --arch=32 --mode=compile --compiler=any --outdir %t foo.c bar.c \ 14 CHECK: Mode: compile 27 MULTI-INPUT-NEXT: Mode: compile
|
| /llvm-project-15.0.7/openmp/runtime/test/ |
| H A D | lit.cfg | 123 config.substitutions.append(("%libomp-compile-and-run", \ 124 "%libomp-compile && %libomp-run")) 125 config.substitutions.append(("%libomp-c99-compile-and-run", \ 126 "%libomp-c99-compile && %libomp-run")) 127 config.substitutions.append(("%libomp-cxx-compile-and-run", \ 128 "%libomp-cxx-compile && %libomp-run")) 129 config.substitutions.append(("%libomp-cxx-compile-c", \ 131 config.substitutions.append(("%libomp-cxx-compile", \ 133 config.substitutions.append(("%libomp-compile", \ 135 config.substitutions.append(("%libomp-c99-compile", \
|
| /llvm-project-15.0.7/clang-tools-extra/clangd/test/ |
| H A D | log.test | 1 # RUN: env CLANGD_FLAGS=-compile-commands-dir=no-such-dir not clangd -lit-test </dev/null 2>&1 >/de… 6 CHECK: CLANGD_FLAGS: -compile-commands-dir=no-such-dir 7 CHECK: E[{{.*}}] Path specified by --compile-commands-dir does not exist.
|
| /llvm-project-15.0.7/lldb/test/API/macosx/nslog/ |
| H A D | TestDarwinNSLogOutput.py | 92 self.expect(re.compile(r"stop reason = .*breakpoint")) 123 re.compile(r"(This is a message from NSLog)"), 124 re.compile(r"Process \d+ exited with status") 142 re.compile(r"(This is a message from NSLog)"), 143 re.compile(r"Process \d+ exited with status")
|
| /llvm-project-15.0.7/llvm/test/BugPoint/ |
| H A D | compile-custom.ll | 1 ; RUN: bugpoint -load %llvmshlibdir/BugpointPasses%pluginext --compile-custom --compile-command="%p… 4 ; Test that arguments are correctly passed in --compile-command. The output
|
| /llvm-project-15.0.7/mlir/test/Integration/Dialect/SparseTensor/taco/tools/ |
| H A D | mlir_sparse_compiler.py | 26 self.compile(module) 28 def compile(self, module: ir.Module): member in SparseCompiler 40 self.compile(module)
|
| /llvm-project-15.0.7/mlir/test/Integration/Dialect/SparseTensor/python/tools/ |
| H A D | sparse_compiler.py | 23 self.compile(module) 25 def compile(self, module: ir.Module): member in SparseCompiler 37 self.compile(module)
|
| /llvm-project-15.0.7/clang/test/ClangScanDeps/ |
| H A D | modulemap-via-vfs.m | 3 // RUN: sed -e "s|DIR|%/t.dir|g" %t.dir/build/compile-commands.json.in > %t.dir/build/compile-comma… 5 // RUN: clang-scan-deps -compilation-database %t.dir/build/compile-commands.json -j 1 -format exper… 13 //--- build/compile-commands.json.in
|
| /llvm-project-15.0.7/llvm/docs/tutorial/ |
| H A D | BuildingAJIT3.rst | 37 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 …]
|
| /llvm-project-15.0.7/polly/test/ |
| H A D | update_check.py | 20 runre = re.compile(r'\s*\;\s*RUN\s*\:(?P<tool>.*)') 21 filecheckre = re.compile(r'\s*(?P<tool>.*)\|\s*(?P<filecheck>FileCheck\s[^|]*)') 22 emptyline = re.compile(r'\s*(\;\s*)?') 23 commentline = re.compile(r'\s*(\;.*)?') 65 funcre = re.compile(r'^ Function: \S*$') 66 regionre = re.compile(r'^ Region: \S*$') 67 depthre = re.compile(r'^ Max Loop Depth: .*') 68 paramre = re.compile(r' [0-9a-z-A-Z_]+\: .*') 212 replre = re.compile('|'.join(re.escape(k) for k in replrepl.keys())) 390 …checkre = re.compile(r'^\s*\;\s*(' + '|'.join([re.escape(s) for s in checkprefixes]) + ')(\-NEXT|\…
|
| /llvm-project-15.0.7/bolt/test/ |
| H A D | link_fdata.py | 26 prefix_pat = re.compile(f"^# {args.prefix}: (.*)") 32 fdata_pat = re.compile(r"([01].*) (?P<exec>\d+) (?P<mispred>\d+)") 37 preagg_pat = re.compile(r"(?P<type>[BFf]) (?P<offsets_count>.*)") 40 replace_pat = re.compile(r"#(?P<symname>[^#]+)#")
|