-
- Downloads
[Support/Hash functions] Change the `final()` and `result()` of the hashing...
[Support/Hash functions] Change the `final()` and `result()` of the hashing functions to return an array of bytes Returning `std::array<uint8_t, N>` is better ergonomics for the hashing functions usage, instead of a `StringRef`: * When returning `StringRef`, client code is "jumping through hoops" to do string manipulations instead of dealing with fixed array of bytes directly, which is more natural * Returning `std::array<uint8_t, N>` avoids the need for the hasher classes to keep a field just for the purpose of wrapping it and returning it as a `StringRef` As part of this patch also: * Introduce `TruncatedBLAKE3` which is useful for using BLAKE3 as the hasher type for `HashBuilder` with non-default hash sizes. * Make `MD5Result` inherit from `std::array<uint8_t, 16>` which improves & simplifies its API. Differential Revision: https://reviews.llvm.org/D123100
Showing
- bolt/lib/Core/DebugData.cpp 2 additions, 1 deletionbolt/lib/Core/DebugData.cpp
- clang/include/clang/Basic/Module.h 2 additions, 2 deletionsclang/include/clang/Basic/Module.h
- clang/lib/Serialization/ASTWriter.cpp 2 additions, 4 deletionsclang/lib/Serialization/ASTWriter.cpp
- lld/MachO/SyntheticSections.cpp 1 addition, 1 deletionlld/MachO/SyntheticSections.cpp
- llvm/include/llvm/Support/BLAKE3.h 38 additions, 1 deletionllvm/include/llvm/Support/BLAKE3.h
- llvm/include/llvm/Support/HashBuilder.h 5 additions, 2 deletionsllvm/include/llvm/Support/HashBuilder.h
- llvm/include/llvm/Support/MD5.h 8 additions, 21 deletionsllvm/include/llvm/Support/MD5.h
- llvm/include/llvm/Support/SHA1.h 6 additions, 7 deletionsllvm/include/llvm/Support/SHA1.h
- llvm/include/llvm/Support/SHA256.h 6 additions, 7 deletionsllvm/include/llvm/Support/SHA256.h
- llvm/include/llvm/Support/raw_sha1_ostream.h 1 addition, 1 deletionllvm/include/llvm/Support/raw_sha1_ostream.h
- llvm/lib/Bitcode/Reader/BitcodeAnalyzer.cpp 3 additions, 3 deletionsllvm/lib/Bitcode/Reader/BitcodeAnalyzer.cpp
- llvm/lib/Bitcode/Writer/BitcodeWriter.cpp 1 addition, 1 deletionllvm/lib/Bitcode/Writer/BitcodeWriter.cpp
- llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp 1 addition, 1 deletionllvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp
- llvm/lib/DebugInfo/CodeView/TypeHashing.cpp 2 additions, 1 deletionllvm/lib/DebugInfo/CodeView/TypeHashing.cpp
- llvm/lib/DebugInfo/DWARF/DWARFDebugLine.cpp 1 addition, 1 deletionllvm/lib/DebugInfo/DWARF/DWARFDebugLine.cpp
- llvm/lib/MC/MCDwarf.cpp 1 addition, 2 deletionsllvm/lib/MC/MCDwarf.cpp
- llvm/lib/MC/MCParser/AsmParser.cpp 2 additions, 2 deletionsllvm/lib/MC/MCParser/AsmParser.cpp
- llvm/lib/MC/MCParser/MasmParser.cpp 2 additions, 2 deletionsllvm/lib/MC/MCParser/MasmParser.cpp
- llvm/lib/ObjCopy/MachO/MachOWriter.cpp 1 addition, 1 deletionllvm/lib/ObjCopy/MachO/MachOWriter.cpp
- llvm/lib/Support/BLAKE3/README.md 1 addition, 1 deletionllvm/lib/Support/BLAKE3/README.md
Loading
Please register or sign in to comment