| /llvm-project-15.0.7/clang/utils/perf-training/ |
| H A D | perf-helper.py | 118 for ln in cc_output.split('\n'): 127 ' version ' in ln): 129 cc_commands.append(ln) 186 for ln in f: 188 ln = ln.strip() 194 _,data = ln.split(': ', 1) 203 _,ln = ln.split(': ', 1) 204 if not ln: 210 if '`' in ln: 218 symbol = fix_mangling(ln) [all …]
|
| /llvm-project-15.0.7/llvm/utils/lit/lit/ |
| H A D | TestRunner.py | 1253 ln = ln[4:] 1262 ln = ln[match.end():] 1288 return ln[:text_end], ln[text_end:] 1299 cond, ln = tryParseIfCond(ln) 1302 found_end, ln = tryParseEnd(ln) 1307 found_else, ln = tryParseElse(ln) 1310 found_end, ln = tryParseEnd(ln) 1321 text, ln = parseText(ln, isNested) 1326 result, ln = parseRecursive(ln, isNested=False) 1332 ln = substituteIfElse(escapePercents(ln)) [all …]
|
| H A D | discovery.py | 263 for ln in f: 264 ln = ln.strip() 265 if ln: 266 actual_inputs.append(ln)
|
| /llvm-project-15.0.7/libcxx/utils/libcxx/test/ |
| H A D | googlebenchmark.py | 50 for ln in output.splitlines(False): # Don't keep newlines. 51 ln = lit.util.to_string(ln) 52 if not ln.strip(): 56 while ln[index*2:index*2+2] == ' ': 61 ln = ln[index*2:] 62 if ln.endswith('.'): 63 nested_tests.append(ln) 65 for name in nested_tests + [ln]]): 70 yield ''.join(nested_tests) + ln
|
| /llvm-project-15.0.7/libclc/generic/lib/math/ |
| H A D | clc_exp10.cl | 32 // e^x = 2^(x/ln(2)) = 2^(x*(64/ln(2))/64) 34 // x*(64/ln(2)) = n + f, |f| <= 0.5, n is integer 39 // = (2^m) * (2^(j/64)) * e^(f*(ln(2)/64)) 41 // f = x*(64/ln(2)) - n 42 // r = f*(ln(2)/64) = x - n*(ln(2)/64) 100 const double X_MAX = 0x1.34413509f79ffp+8; // 1024*ln(2)/ln(10) 101 const double X_MIN = -0x1.434e6420f4374p+8; // -1074*ln(2)/ln(10) 103 const double R_64_BY_LOG10_2 = 0x1.a934f0979a371p+7; // 64*ln(10)/ln(2) 104 const double R_LOG10_2_BY_64_LD = 0x1.3441350000000p-8; // head ln(2)/(64*ln(10)) 105 const double R_LOG10_2_BY_64_TL = 0x1.3ef3fde623e25p-37; // tail ln(2)/(64*ln(10)) [all …]
|
| H A D | exp.cl | 59 const float ulim = 0x1.62e430p+6f; // ln(largest_normal) = 88.72283905206835305366 60 const float llim = -0x1.5d589ep+6f; // ln(smallest_normal) = -87.33654475055310898657 77 const double X_MIN = -0x1.74910d52d3051p+9; // -1075*ln(2) 78 const double X_MAX = 0x1.62e42fefa39efp+9; // 1024*ln(2) 79 const double R_64_BY_LOG2 = 0x1.71547652b82fep+6; // 64/ln(2) 80 const double R_LOG2_BY_64_LD = 0x1.62e42fefa0000p-7; // head ln(2)/64 81 const double R_LOG2_BY_64_TL = 0x1.cf79abc9e3b39p-46; // tail ln(2)/64
|
| /llvm-project-15.0.7/llvm/test/tools/llvm-driver/ |
| H A D | symlink-call.test | 7 # RUN: ln -s %llvm %t/llvm-cxxfilt 9 # RUN: ln -s %llvm %t/llvm-cxxfilt-15 11 # RUN: ln -s %llvm %t/cxxfilt 13 # RUN: ln -s %llvm %t/cxxfilt-15 15 # RUN: ln -s %llvm %t/cxxfilt-15.exe 18 # RUN: ln -s %llvm %t/llvm-15 20 # RUN: ln -s %llvm %t/llvm-15.exe
|
| /llvm-project-15.0.7/llvm/test/tools/llvm-objcopy/ |
| H A D | tool-name.test | 7 # RUN: ln -s llvm-objcopy %t/llvm-objcopy-11.exe 8 # RUN: ln -s llvm-objcopy %t/powerpc64-unknown-freebsd13-objcopy 16 # RUN: ln -s llvm-strip %t/strip.exe 17 # RUN: ln -s llvm-strip %t/gnu-llvm-strip-10 26 # RUN: ln -s llvm-install-name-tool %t/llvm-install-name-tool-10 27 # RUN: ln -s llvm-install-name-tool %t/install_name_tool.exe 36 # RUN: ln -s llvm-bitcode-strip %t/llvm-bitcode-strip-10 37 # RUN: ln -s llvm-bitcode-strip %t/bitcode_strip.exe
|
| /llvm-project-15.0.7/clang/utils/ |
| H A D | CmpDriver | 99 for ln in err.split('\n'): 100 if (ln == 'Using built-in specs.' or 101 ln.startswith('Target: ') or 102 ln.startswith('Configured with: ') or 103 ln.startswith('Thread model: ') or 104 ln.startswith('gcc version') or 105 ln.startswith('clang version')): 107 elif ln.strip().startswith('"'): 108 self.commands.append(list(splitArgs(ln))) 110 self.stderr += ln + '\n'
|
| H A D | FuzzTest | 278 for ln in f: 279 ln = ln.strip() 280 if ln: 281 input_files.append(ln) 307 for ln in f: 308 ln = ln[:-1] 309 if ln: 310 replacements.append(ln)
|
| H A D | token-delta.py | 119 for ln in err.split('\n'): 123 collect = ln 125 collect = collect + '\n' + ln 126 if 'Loc=<' in ln and ln.endswith('>'): 127 ln,collect = collect,None 128 tokens.append(Token(*kTokenRE.match(ln).groups()))
|
| H A D | FindSpecRefs | 659 for i,ln in enumerate(f): 661 for m in nameAndSpecRefRE.finditer(ln): 668 for m in loneSpecRefRE.finditer(ln): 768 for ln in p.stdout.read(1024).split('\n'): 769 if ln.startswith('Revision:'): 770 return ln.split(':',1)[1].strip()
|
| /llvm-project-15.0.7/llvm/utils/Target/ARM/ |
| H A D | analyze-match-table.py | 14 for ln in lines: 15 ln = ln.split("{", 1)[1] 16 ln = ln.rsplit("}", 1)[0] 17 a,bc = ln.split("{", 1)
|
| /llvm-project-15.0.7/clang/utils/ABITest/ |
| H A D | Enumeration.py | 243 for ln in a[::-1]: 244 if ''.join(ln).strip(): 245 print(' '.join(ln)) 247 for ln in b[::-1]: 248 if ''.join(ln).strip(): 249 print(' '.join(ln)) 261 for ln in a[::-1]: 262 if ''.join(ln).strip(): 263 print(' '.join(ln))
|
| /llvm-project-15.0.7/lldb/test/API/macosx/find-dsym/deep-bundle/ |
| H A D | Makefile | 13 ( cd MyFramework.framework/Versions ; ln -s A Current ) 14 ( cd MyFramework.framework/ ; ln -s Versions/Current/Headers . ) 15 ( cd MyFramework.framework/ ; ln -s Versions/Current/MyFramework . ) 16 ( cd MyFramework.framework/ ; ln -s Versions/Current/Resources . )
|
| /llvm-project-15.0.7/third-party/benchmark/src/ |
| H A D | sysinfo.cc | 491 std::string ln; in GetNumCPUs() 492 while (std::getline(f, ln)) { in GetNumCPUs() 493 if (ln.empty()) continue; in GetNumCPUs() 494 size_t SplitIdx = ln.find(':'); in GetNumCPUs() 504 if (ln.size() >= Key.size() && ln.compare(0, Key.size(), Key) == 0) { in GetNumCPUs() 580 std::string ln; in GetCPUCyclesPerSecond() local 581 while (std::getline(f, ln)) { in GetCPUCyclesPerSecond() 582 if (ln.empty()) continue; in GetCPUCyclesPerSecond() 583 size_t SplitIdx = ln.find(':'); in GetCPUCyclesPerSecond() 589 if (startsWithKey(ln, "cpu MHz")) { in GetCPUCyclesPerSecond() [all …]
|
| /llvm-project-15.0.7/llvm/test/tools/llvm-dlltool/ |
| H A D | triple-prefix.def | 6 ; RUN: ln -s llvm-dlltool %t/i686-w64-mingw32-llvm-dlltool-10.0.exe 7 ; RUN: ln -s llvm-dlltool %t/x86_64-w64-mingw32-llvm-dlltool-10 8 ; RUN: ln -s llvm-dlltool %t/armv7-w64-mingw32-dlltool 9 ; RUN: ln -s llvm-dlltool %t/aarch64-w64-mingw32-DLLTOOL.exe
|
| H A D | tool-name.test | 6 # RUN: ln -s llvm-dlltool %t/dlltool.exe 7 # RUN: ln -s llvm-dlltool %t/dlltool-10
|
| /llvm-project-15.0.7/llvm/test/tools/llvm-ar/ |
| H A D | tool-name.test | 6 # RUN: ln -s llvm-ar %t/llvm-ar-9 7 # RUN: ln -s llvm-ar %t/ar.exe 8 # RUN: ln -s llvm-ar %t/arm-pokymllib32-linux-gnueabi-llvm-ar-9
|
| /llvm-project-15.0.7/llvm/test/tools/llvm-cov/ |
| H A D | tool-name.test | 8 # RUN: ln -s llvm-cov %t/llvm-foo 17 # RUN: ln -s llvm-cov %t/llvm-gcov 18 # RUN: ln -s llvm-cov %t/gcov
|
| /llvm-project-15.0.7/lld/test/MachO/ |
| H A D | link-search-at-loader-path-symlink.s | 19 # RUN: ln -sf A %t/Foo1.framework/Versions/Current 20 # RUN: ln -sf Versions/Current/Foo1 %t/Foo1.framework/Foo1 35 # RUN: ln -sf A %t/Foo2.framework/Versions/Current 36 # RUN: ln -sf Versions/Current/Foo2 %t/Foo2.framework/Foo2
|
| /llvm-project-15.0.7/llvm/test/tools/llvm-lib/ |
| H A D | tool-name.test | 7 # RUN: ln -s llvm-lib %t/Lib.exe 8 # RUN: ln -s llvm-lib %t/llvm-lib-10
|
| /llvm-project-15.0.7/llvm/test/tools/llvm-objdump/ |
| H A D | tool-name.test | 7 # RUN: ln -s llvm-objdump %t/llvm-otool-11.exe 8 # RUN: ln -s llvm-objdump %t/powerpc64-unknown-freebsd13-objdump
|
| /llvm-project-15.0.7/llvm/test/tools/llvm-ranlib/ |
| H A D | tool-name.test | 6 # RUN: ln -s llvm-ranlib %t/llvm-ranlib-9 7 # RUN: ln -s llvm-ranlib %t/ranlib.exe
|
| /llvm-project-15.0.7/compiler-rt/lib/asan/scripts/ |
| H A D | asan_device_setup | 212 adb_shell ln -s /system/bin/app_process32 /system/bin/app_process 277 adb_shell ln -s /system/bin/app_process32 /system/bin/app_process 429 adb_shell ln -s $ASAN_RT /system/lib/$ASAN_RT_SYMLINK 431 adb_shell ln -s $ASAN_RT64 /system/lib64/$ASAN_RT_SYMLINK 439 adb_shell ln -s $ASAN_RT /system/lib/$ASAN_RT_SYMLINK 442 adb_shell ln -s /system/bin/app_process.wrap /system/bin/app_process
|