Home
last modified time | relevance | path

Searched refs:db (Results 1 – 25 of 67) sorted by relevance

123

/llvm-project-15.0.7/openmp/runtime/src/
H A Dkmp_debug.cpp88 char *db = &__kmp_debug_buffer[(dc % __kmp_debug_buf_lines) * in __kmp_dump_debug_buffer() local
100 if (*db != '\0') { in __kmp_dump_debug_buffer()
102 for (db2 = db + 1; db2 < db + __kmp_debug_buf_chars - 1; db2++) { in __kmp_dump_debug_buffer()
113 if (db2 == db + __kmp_debug_buf_chars - 1 && *db2 == '\0' && in __kmp_dump_debug_buffer()
118 __kmp_printf_no_lock("%4d: %.*s", i, __kmp_debug_buf_chars, db); in __kmp_dump_debug_buffer()
119 *db = '\0'; /* only let it print once! */ in __kmp_dump_debug_buffer()
122 db += __kmp_debug_buf_chars; in __kmp_dump_debug_buffer()
123 if (db >= db_end) in __kmp_dump_debug_buffer()
124 db = __kmp_debug_buffer; in __kmp_dump_debug_buffer()
H A Dkmp_io.cpp151 char *db = &__kmp_debug_buffer[dc * __kmp_debug_buf_chars]; in __kmp_vprintf() local
155 chars = KMP_SNPRINTF(db, __kmp_debug_buf_chars, in __kmp_vprintf()
158 chars += KMP_VSNPRINTF(db, __kmp_debug_buf_chars, format, ap); in __kmp_vprintf()
182 db[__kmp_debug_buf_chars - 2] = '\n'; in __kmp_vprintf()
183 db[__kmp_debug_buf_chars - 1] = '\0'; in __kmp_vprintf()
H A Dkmp_barrier.h131 static void deallocate(distributedBarrier *db) { KMP_ALIGNED_FREE(db); } in deallocate() argument
/llvm-project-15.0.7/llvm/test/DebugInfo/X86/
H A Ddbg-abstract-vars-g-gmlt.ll4 ; clang -emit-llvm -S db-abs-1.cpp -o db-abs-1.ll -g
5 ; clang -emit-llvm -S db-abs-2.cpp -o db-abs-2.ll -gmlt
6 ; llvm-link db-abs-1.ll db-abs-2.ll -S -o db-abs-3.ll
7 ; --- db-abs-1.cpp ---
15 ; --- db-abs-2.cpp ---
33 ; CHECK: DW_AT_name {{.*}} "db-abs-1.cpp"
83 !1 = !DIFile(filename: "db-abs-1.cpp", directory: "/home/probinson/projects/scratch/pr31437")
86 !4 = !DIFile(filename: "db-abs-2.cpp", directory: "/home/probinson/projects/scratch/pr31437")
/llvm-project-15.0.7/clang/tools/libclang/
H A DCXCompilationDatabase.cpp17 std::unique_ptr<CompilationDatabase> db = in clang_CompilationDatabase_fromDirectory() local
20 if (!db) { in clang_CompilationDatabase_fromDirectory()
28 return db.release(); in clang_CompilationDatabase_fromDirectory()
49 if (CompilationDatabase *db = static_cast<CompilationDatabase *>(CDb)) { in clang_CompilationDatabase_getCompileCommands() local
50 std::vector<CompileCommand> CCmd(db->getCompileCommands(CompleteFileName)); in clang_CompilationDatabase_getCompileCommands()
60 if (CompilationDatabase *db = static_cast<CompilationDatabase *>(CDb)) { in clang_CompilationDatabase_getAllCompileCommands() local
61 std::vector<CompileCommand> CCmd(db->getAllCompileCommands()); in clang_CompilationDatabase_getAllCompileCommands()
/llvm-project-15.0.7/clang/test/Index/
H A Dcompile_commands.json18 # RUN: c-index-test -compilation-db %s
19 # RUN: c-index-test -compilation-db lookup file_does_not_exists.cpp %s | FileCheck -check-prefix=FI…
20 # FILE-NOT-FOUND: file file_does_not_exists.cpp not found in compilation db
22 # RUN: c-index-test -compilation-db lookup /home/john.doe/MyProject/project.cpp %s | FileCheck -che…
25 # RUN: c-index-test -compilation-db lookup /home/john.doe/MyProject/project2.cpp %s | FileCheck -ch…
/llvm-project-15.0.7/lld/ELF/
H A DICF.cpp259 auto *db = dyn_cast<Defined>(&sb); in constantEq() local
263 if (!da || !db || da->scriptDefined || db->scriptDefined) in constantEq()
270 if (da->isPreemptible || db->isPreemptible) in constantEq()
275 if (!da->section && !db->section && da->value + addA == db->value + addB) in constantEq()
277 if (!da->section || !db->section) in constantEq()
280 if (da->section->kind() != db->section->kind()) in constantEq()
286 if (da->value + addA == db->value + addB) in constantEq()
296 auto *y = cast<MergeInputSection>(db->section); in constantEq()
303 sb.isSection() ? y->getOffset(addB) : y->getOffset(db->value) + addB; in constantEq()
346 auto *db = cast<Defined>(&sb); in variableEq() local
[all …]
/llvm-project-15.0.7/clang/test/ClangScanDeps/
H A Dmodules-inferred-explicit-build.m9 // RUN: -mode preprocess-dependency-directives -generate-modules-path-args > %t.db
10 // RUN: %deps-to-rsp %t.db --module-name=Inferred > %t.inferred.cc1.rsp
11 // RUN: %deps-to-rsp %t.db --module-name=System > %t.system.cc1.rsp
12 // RUN: %deps-to-rsp %t.db --tu-index=0 > %t.tu.rsp
H A Dmodulemap-via-vfs.m6 // RUN: -mode preprocess-dependency-directives -generate-modules-path-args > %t.db
7 // RUN: %deps-to-rsp %t.db --module-name=A > %t.A.cc1.rsp
/llvm-project-15.0.7/libunwind/src/
H A DUnwindLevel1-gcc-ext.c261 void *tb, void *db) { in __register_frame_info_bases() argument
265 (void)db; in __register_frame_info_bases()
267 fde, ob, tb, db); in __register_frame_info_bases()
280 void *db) { in __register_frame_info_table_bases() argument
284 (void)db; in __register_frame_info_table_bases()
286 "(%p,%p, %p, %p)", fde, ob, tb, db); in __register_frame_info_table_bases()
/llvm-project-15.0.7/lld/MachO/
H A DICF.cpp135 const auto *db = cast<Defined>(sb); in equalsConstant() local
136 if (!da->isec || !db->isec) { in equalsConstant()
137 assert(da->isAbsolute() && db->isAbsolute()); in equalsConstant()
138 return da->value + ra.addend == db->value + rb.addend; in equalsConstant()
142 isecB = db->isec; in equalsConstant()
143 valueB = db->value; in equalsConstant()
191 const auto *db = cast<Defined>(rb.referent.get<Symbol *>()); in equalsVariable() local
197 isecB = cast<ConcatInputSection>(db->isec); in equalsVariable()
223 const Defined *db = *itB; in equalsVariable() local
225 db->unwindEntry->icfEqClass[icfPass % 2] || in equalsVariable()
[all …]
/llvm-project-15.0.7/lld/test/COFF/Inputs/
H A Dhello64.asm9 caption db 'Hello', 0
10 message db 'Hello World!', 0
/llvm-project-15.0.7/polly/test/ScopInfo/
H A Dopaque-struct.ll16 %db = bitcast %struct.stmt* %pStmt to %struct.s3**
17 %0 = load %struct.s3*, %struct.s3** %db, align 8
/llvm-project-15.0.7/polly/lib/External/isl/imath/
H A Dimath.c1814 SWAP(mp_digit *, da, db); in s_uadd()
1849 w - (mp_word)*db; in s_usub()
1875 SWAP(mp_digit *, da, db); in s_kmul()
1892 mp_digit *b_top = db + bot_size; in s_kmul()
1942 s_umul(da, db, dc, size_a, size_b); in s_kmul()
1955 mp_digit *dbt = db; in s_umul()
2416 mp_digit *db = MP_DIGITS(b); in s_embar() local
2417 mp_digit *dbt = db + MP_USED(b) - 1; in s_embar()
2430 while (db < dbt) { in s_embar()
2431 mp_digit d = *db; in s_embar()
[all …]
/llvm-project-15.0.7/llvm/test/CodeGen/X86/
H A Dcast-vsel.ll287 ; SSE2-NEXT: cmpltps db+4112(%rax), %xmm2
288 ; SSE2-NEXT: cmpltps db+4096(%rax), %xmm1
317 ; SSE41-NEXT: cmpltps db+4112(%rax), %xmm2
318 ; SSE41-NEXT: cmpltps db+4096(%rax), %xmm1
345 ; AVX1-NEXT: vcmpltps db+4096(%rax), %ymm1, %ymm1
364 ; AVX2-NEXT: vcmpltps db+4096(%rax), %ymm0, %ymm0
419 ; SSE2-NEXT: cmpltps db+4112(%rax), %xmm3
420 ; SSE2-NEXT: cmpltps db+4096(%rax), %xmm2
451 ; SSE41-NEXT: cmpltps db+4112(%rax), %xmm3
452 ; SSE41-NEXT: cmpltps db+4096(%rax), %xmm0
[all …]
/llvm-project-15.0.7/flang/test/Semantics/
H A Dallocate06.f9039 type(B(: , 5)), pointer :: db(:) local
92 allocate(B(*, 5):: db(2)) !segfault gfortran
/llvm-project-15.0.7/libunwind/include/
H A Dunwind.h173 void *db) LIBUNWIND_UNAVAIL;
177 void *tb, void *db)
/llvm-project-15.0.7/mlir/test/Integration/Dialect/SparseTensor/CPU/
H A Dsparse_matmul.mlir67 %db = arith.constant dense<[
100 %b1 = sparse_tensor.convert %db : tensor<8x4xf64> to tensor<8x4xf64, #CSR>
101 %b2 = sparse_tensor.convert %db : tensor<8x4xf64> to tensor<8x4xf64, #DCSR>
106 %0 = call @matmul1(%da, %db, %zero)
116 %3 = call @matmul1(%sa, %db, %zero)
/llvm-project-15.0.7/llvm/test/CodeGen/ARM/
H A Dintrinsics-memory-barrier.ll1 ; RUN: llc < %s -mtriple=armv7 -mattr=+db | FileCheck %s
2 ; RUN: llc < %s -mtriple=thumbv7 -mattr=+db | FileCheck %s
H A Dnoopt-dmb-v7.ll2 ; RUN: llc -O0 < %s -mtriple=armv7 -mattr=+db | FileCheck %s
/llvm-project-15.0.7/clang/test/CodeGen/
H A D2008-07-30-redef-of-bitcasted-decl.c20 static void bar(void *db) { in bar() argument
/llvm-project-15.0.7/clang-tools-extra/clang-include-fixer/tool/
H A Dclang-include-fixer.py166 "-db=" + args.db, "-input=" + args.input,
170 command = [binary, "-stdin", "-output-headers", "-db=" + args.db,
/llvm-project-15.0.7/llvm/lib/Target/ARM/
H A DARMLoadStoreOptimizer.cpp265 case ARM_AM::db: return ARM::LDMDB; in getLoadStoreMultipleOpcode()
274 case ARM_AM::db: return ARM::STMDB; in getLoadStoreMultipleOpcode()
300 case ARM_AM::db: return ARM::t2LDMDB; in getLoadStoreMultipleOpcode()
308 case ARM_AM::db: return ARM::t2STMDB; in getLoadStoreMultipleOpcode()
385 return ARM_AM::db; in getLoadStoreMultipleSubMode()
666 Mode = ARM_AM::db; in CreateLoadStoreMulti()
1133 case ARM_AM::db: return ARM::LDMDB_UPD; in getUpdatingLSMultipleOpcode()
1144 case ARM_AM::db: return ARM::STMDB_UPD; in getUpdatingLSMultipleOpcode()
1151 case ARM_AM::db: return ARM::t2LDMDB_UPD; in getUpdatingLSMultipleOpcode()
1158 case ARM_AM::db: return ARM::t2STMDB_UPD; in getUpdatingLSMultipleOpcode()
[all …]
/llvm-project-15.0.7/llvm/test/CodeGen/Thumb/
H A Dbarrier.ll2 ; RUN: llc -mtriple=thumbv7-apple-darwin -mattr=-db %s -o - | FileCheck %s -check-prefix=V6
/llvm-project-15.0.7/llvm/test/tools/llvm-profgen/Inputs/
H A Drecursion-compression-pseudoprobe-nommap.perfscript1 2017db

123