LLVM  8.0.1
DJB.h
Go to the documentation of this file.
1 //===-- llvm/Support/DJB.h ---DJB Hash --------------------------*- C++ -*-===//
2 //
3 // The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file contains support for the DJ Bernstein hash function.
11 //
12 //===----------------------------------------------------------------------===//
13 
14 #ifndef LLVM_SUPPORT_DJB_H
15 #define LLVM_SUPPORT_DJB_H
16 
17 #include "llvm/ADT/StringRef.h"
18 
19 namespace llvm {
20 
21 /// The Bernstein hash function used by the DWARF accelerator tables.
22 inline uint32_t djbHash(StringRef Buffer, uint32_t H = 5381) {
23  for (unsigned char C : Buffer.bytes())
24  H = (H << 5) + H + C;
25  return H;
26 }
27 
28 /// Computes the Bernstein hash after folding the input according to the Dwarf 5
29 /// standard case folding rules.
31 } // namespace llvm
32 
33 #endif // LLVM_SUPPORT_DJB_H
uint64_t CallInst * C
This class represents lattice values for constants.
Definition: AllocatorList.h:24
iterator_range< const unsigned char * > bytes() const
Definition: StringRef.h:116
#define H(x, y, z)
Definition: MD5.cpp:57
uint32_t djbHash(StringRef Buffer, uint32_t H=5381)
The Bernstein hash function used by the DWARF accelerator tables.
Definition: DJB.h:22
uint32_t caseFoldingDjbHash(StringRef Buffer, uint32_t H=5381)
Computes the Bernstein hash after folding the input according to the Dwarf 5 standard case folding ru...
Definition: DJB.cpp:71
StringRef - Represent a constant reference to a string, i.e.
Definition: StringRef.h:49