aboutsummaryrefslogtreecommitdiff
path: root/include/llvm/ADT/Hashing.h
AgeCommit message (Expand)Author
2013-04-15Make the host endianness check an integer constant expression.Rafael Espindola
2012-09-13Fix typo in comment.Nick Lewycky
2012-09-05Remove unused typedefs gcc4.8 warns about.Roman Divacky
2012-06-09Hashing: Remove outdated comment. Support for reserved hash values was remove...Benjamin Kramer
2012-04-07Perform partial SROA on the helper hashing structure. I really wish theChandler Carruth
2012-03-09Fix a silly restriction on the fast-path for hash_combine_range. ThisChandler Carruth
2012-03-07Add support to the hashing infrastructure for automatically hashing bothChandler Carruth
2012-03-07Remove an accidental cut/paste of a comment into the middle ofChandler Carruth
2012-03-05Switch to a C-style cast here to silence a brain-dead MSVC warning. ItChandler Carruth
2012-03-04Teach the hashing facilities how to hash std::string objects.Chandler Carruth
2012-03-03hash_state: Don't use initialization target during initialization.Daniel Dunbar
2012-03-02Fix indentation.Benjamin Kramer
2012-03-02Hashing: microoptimize a truncate on 64 bit away. This currently blocks dead ...Benjamin Kramer
2012-03-02Make the hashing algorithm Endian neutral. This is a bit annoying, butChandler Carruth
2012-03-02Simplify the pair optimization. Rather than using complex type traits,Chandler Carruth
2012-03-02We really want to hash pairs of directly-hashable data as directlyChandler Carruth
2012-03-02Add support for hashing pairs by delegating to each sub-object. There isChandler Carruth
2012-03-02Remove the misguided extension here that reserved two special values inChandler Carruth
2012-03-01Fix two warnings in this code that I missed.Chandler Carruth
2012-03-01Rewrite LLVM's generalized support library for hashing to follow the APIChandler Carruth
2012-02-27Help the compiler to eliminate some dead code when hashing an array of TJay Foad
2012-02-23The implementation of GeneralHash::addBits broke C++ aliasing rules; fixJay Foad
2012-02-18Hashing.h - utilities for hashing various data types.Talin