| /llvm-project-15.0.7/llvm/test/DebugInfo/PDB/ |
| H A D | obj-globalhash.test | 1 RUN: yaml2obj %p/Inputs/obj-hashes-1.yaml -o %T/obj-hashes-1.obj 2 RUN: yaml2obj %p/Inputs/obj-hashes-2.yaml -o %T/obj-hashes-2.obj 3 RUN: echo obj-hashes-1 > %T/hashes-combined.out 4 RUN: llvm-pdbutil dump -type-extras %T/obj-hashes-1.obj >> %T/hashes-combined.out 5 RUN: echo obj-hashes-2 >> %T/hashes-combined.out 6 RUN: llvm-pdbutil dump -type-extras %T/obj-hashes-2.obj >> %T/hashes-combined.out 16 CHECK-ONE: obj-hashes-1 18 CHECK-ONE: obj-hashes-2 22 CHECK-TWO: obj-hashes-1 24 CHECK-TWO: obj-hashes-2 [all …]
|
| /llvm-project-15.0.7/compiler-rt/test/sanitizer_common/TestCases/NetBSD/ |
| H A D | mi_vector_hash.cpp | 9 uint32_t hashes[3]; in main() local 10 mi_vector_hash(key, __arraycount(key), 0, hashes); in main() 11 for (size_t i = 0; i < __arraycount(hashes); i++) in main() 12 printf("hashes[%zu]='%" PRIx32 "'\n", i, hashes[i]); in main()
|
| /llvm-project-15.0.7/llvm/test/DebugInfo/Generic/ |
| H A D | accel-table-hash-collisions.ll | 9 ; There are 12 names here that are hashed to only 6 hashes (each pair of lines 10 ; hashes to the same value, see the CHECK lines below). 25 ; Check that we have the right amount of hashes.
|
| H A D | debug-names-hash-collisions.ll | 25 ; Check that we have the right amount of hashes and names.
|
| /llvm-project-15.0.7/lld/test/COFF/ |
| H A D | pdb-global-hashes.test | 1 RUN: yaml2obj %p/Inputs/pdb-hashes-1.yaml -o %t.1.obj 2 RUN: yaml2obj %p/Inputs/pdb-hashes-2.yaml -o %t.2.obj 3 RUN: yaml2obj %p/Inputs/pdb-hashes-2-missing.yaml -o %t.2.missing.obj
|
| /llvm-project-15.0.7/llvm/test/Bitcode/ |
| H A D | module_hash.ll | 13 ; Recover the hashes from the modules themselves. 17 ; Generate the combined index and gather the hashes there.
|
| /llvm-project-15.0.7/llvm/test/DebugInfo/X86/ |
| H A D | debug-cu-index-overlap.s | 7 # hashes to buckets) - and probably to verify that the section ranges apply to
|
| /llvm-project-15.0.7/llvm/test/tools/llvm-profdata/ |
| H A D | hash-mismatch.proftext | 1 # If we see the same function name, but with different hashes, make
|
| /llvm-project-15.0.7/llvm/test/Transforms/PGOProfile/ |
| H A D | memop_hash.ll | 19 ; The two hashes should not be equal as the existence of the memcpy should change the hash.
|
| /llvm-project-15.0.7/llvm/include/llvm/DebugInfo/CodeView/ |
| H A D | GlobalTypeTableBuilder.h | 68 ArrayRef<GloballyHashedType> hashes() const;
|
| /llvm-project-15.0.7/llvm/docs/ |
| H A D | GitHub.rst | 29 This command takes one or more git commit hashes as arguments and will attempt
|
| H A D | SourceLevelDebugging.rst | 1628 32 bit hashes values in the ``HASHES`` array as long as the hashes would be in 1631 memory for ``BUCKETS[3]``, and then compare a few consecutive 32 bit hashes 1698 The header is followed by the buckets, hashes, offsets, and hash value data. 1704 …uint32_t buckets[Header.bucket_count]; // An array of hash indexes into the "hashes[]" array below 1705 …uint32_t hashes [Header.hashes_count]; // Every unique 32 bit hash for the entire table is in thi… 1706 …ets[Header.hashes_count]; // An offset that corresponds to each item in the "hashes[]" array above 1709 ``buckets`` is an array of 32 bit indexes into the ``hashes`` array. The 1710 ``hashes`` array contains all of the 32 bit hash values for all names in the 1711 hash table. Each hash in the ``hashes`` table has an offset in the ``offsets``
|
| H A D | HowToReleaseLLVM.rst | 310 the git hashes from the release branch. Add the release:merged label to the issue
|
| /llvm-project-15.0.7/llvm/lib/DebugInfo/CodeView/ |
| H A D | GlobalTypeTableBuilder.cpp | 72 ArrayRef<GloballyHashedType> GlobalTypeTableBuilder::hashes() const { in hashes() function in GlobalTypeTableBuilder
|
| /llvm-project-15.0.7/llvm/test/tools/llvm-dwarfdump/X86/ |
| H A D | debug-names-verify-wrong-hash.s | 4 # CHECK: Name Index @ 0x0: String (baz) at index 2 hashes to 0xb8860c2, but the Name Index hash is …
|
| /llvm-project-15.0.7/lld/MachO/ |
| H A D | Writer.cpp | 1122 std::vector<uint64_t> hashes(chunks.size() + 1); in writeUuid() local 1127 [&](size_t j) { hashes[j] = xxHash64(chunks[j]); }, i)); in writeUuid() 1132 hashes[chunks.size()] = xxHash64(sys::path::filename(config->finalOutput)); in writeUuid() 1133 uint64_t digest = xxHash64({reinterpret_cast<uint8_t *>(hashes.data()), in writeUuid() 1134 hashes.size() * sizeof(uint64_t)}); in writeUuid()
|
| H A D | SyntheticSections.cpp | 1307 uint8_t *hashes = buf + fileOff + allHeadersSize; in writeHashes() local 1312 hashes + i * hashSize); in writeHashes()
|
| /llvm-project-15.0.7/llvm/test/DebugInfo/ |
| H A D | dwarfdump-accel.test | 75 VERIFY-NEXT: error: Section too small: cannot read buckets and hashes.
|
| /llvm-project-15.0.7/lld/COFF/ |
| H A D | DebugTypes.cpp | 569 GloballyHashedType *hashes = new GloballyHashedType[hashVec.size()]; in assignGHashesFromVector() local 570 memcpy(hashes, hashVec.data(), hashVec.size() * sizeof(GloballyHashedType)); in assignGHashesFromVector() 571 ghashes = makeArrayRef(hashes, hashVec.size()); in assignGHashesFromVector()
|
| /llvm-project-15.0.7/llvm/docs/CommandGuide/ |
| H A D | llvm-pdbutil.rst | 356 Dump additional information from the TPI stream, such as hashes and the type 374 Dump additional information from the IPI stream, such as hashes and the type
|
| /llvm-project-15.0.7/llvm/docs/PDB/ |
| H A D | PdbStream.rst | 91 bucket hashes the string at the corresponding offset in the string data buffer.
|
| H A D | TpiStream.rst | 265 - **HashStreamIndex** - The index of a stream which contains a list of hashes
|
| /llvm-project-15.0.7/llvm/lib/Support/BLAKE3/ |
| H A D | README.md | 5 An example program that hashes bytes from standard input and prints the
|
| /llvm-project-15.0.7/lld/ELF/ |
| H A D | Writer.cpp | 2940 std::unique_ptr<uint8_t[]> hashes(new uint8_t[hashesSize]); in computeHash() local 2944 hashFn(hashes.get() + i * hashBuf.size(), chunks[i]); in computeHash() 2948 hashFn(hashBuf.data(), makeArrayRef(hashes.get(), hashesSize)); in computeHash()
|
| /llvm-project-15.0.7/clang/include/clang/Basic/ |
| H A D | CodeGenOptions.def | 394 /// Whether to emit the .debug$H section containing hashes of CodeView types.
|