Taints the non-acquire RMW's store address with the load part
[oota-llvm.git] / lib / Support / FoldingSet.cpp
2015-08-16 Chandler Carruth[ADT] Teach FoldingSet to be movable.
2015-04-06 Sanjay Patelfix typos; NFC
2015-03-22 Benjamin KramerFoldingSet: Make FoldingSetImpl's dtor protected and...
2015-03-16 Gabor Horvath[llvm] Replacing asserts with static_asserts where...
2014-04-15 Craig Topper[C++11] More 'nullptr' conversion. In some cases just...
2014-04-09 Craig Topper[C++11] Replace some comparisons with 'nullptr' with...
2014-04-07 Craig Topper[C++11] Make use of 'nullptr' in the Support library.
2013-04-15 Rafael EspindolaMake the host endianness check an integer constant...
2012-12-25 Nick LewyckyFix whitespace. No functionality change.
2012-12-03 Chandler CarruthUse the new script to sort the includes of every file...
2012-11-16 Chris Lattnermove irrelevant attribution.
2012-09-08 Ted KremenekAdd operator< for FoldingSetNodeID.
2012-04-11 Benjamin KramerFoldingSet: Push the hash through FoldingSetTraits...
2012-03-08 Duncan SandsRevert commit 152300 (ddunbar) since it still seems...
2012-03-08 Daniel Dunbar[ADT] Change the trivial FoldingSetNodeID::Add* methods...
2012-03-08 Daniel DunbarRevert r152288, "[ADT] Change the trivial FoldingSetNod...
2012-03-08 Daniel Dunbar[ADT] Change the trivial FoldingSetNodeID::Add* methods...
2012-03-01 Chandler CarruthSwitch FoldingSet over to the new hashing infrastructur...
2011-07-18 Benjamin KramerSimplify & microoptimize code. No intended functionalit...
2011-06-03 Zhongxing Xusinged int causes signed extension, which contradicts...
2011-04-25 Chris Lattnerallow adding a FoldingSetNodeID to a FastFoldingSetNode...
2010-11-29 Michael J. SpencerMerge System into Support.
2010-11-19 Dale JohannesenAligned and unaligned copies of the same string
2010-08-24 Dan GohmanUse Bits.data() instead of &Bits[0].
2010-08-16 Dan GohmanAdd hooks to FoldingSetTrait to allow specializations...
2010-08-16 Dan GohmanReverse the order of GetNodeProfile's arguments, for...
2010-06-19 Benjamin KramerUse calloc instead of new/memset, it is more efficient...
2010-03-18 Dan GohmanAdd the ability to "intern" FoldingSetNodeID data into a
2009-09-22 Daniel DunbarSwitch FoldingSet::AddString to StringRef based API.
2009-07-14 Torok Edwinllvm_unreachable->llvm_unreachable(0), LLVM_UNREACHABLE...
2009-07-11 Torok Edwinassert(0) -> LLVM_UNREACHABLE.
2009-02-07 Nick LewyckyAdd an API for strings with possible NULLs in the middl...
2009-01-21 Dale JohannesenDo not use host floating point types when emitting
2008-11-03 Dan GohmanOverload AddInteger on int/long/long long instead of...
2008-08-23 Dan GohmanAdd a clear() method to FoldingSet.
2008-08-12 Dan GohmanAvoid repeatedly reallocating the FoldingSetNodeID...
2008-07-01 Owen AndersonAdd a version of AddString that takes a const char...
2008-06-17 Ted KremenekConsistently set "Buckets[NumBuckets] = reinterpret_cas...
2008-05-05 Evan ChengFix more -Wshorten-64-to-32 warnings.
2008-02-20 Anton KorobeynikovUnbreak build with gcc 4.3: provide missed includes...
2008-02-15 Ted KremenekFixed bug in FoldingSetIteratorImpl where we did not...
2008-02-11 Ted KremenekAdded "Profile" method to APFloat for use with FoldingSet.
2008-02-06 Dan GohmanAdd support to FoldingSet for hashing APInt objects.
2008-02-04 Ted KremenekAdded "bucket_iterators" to FoldingSet. Bucket iterato...
2008-02-04 Ted KremenekFixed 80 col. violation.
2008-01-19 Ted KremenekMade 'FoldingSetNodeID' a proper class instead of a...
2007-12-29 Chris LattnerRemove attribution from file headers, per discussion...
2007-10-09 Chris LattnerChange a #include into a forward declaration
2007-10-03 Chris LattnerAdd initial iterator support for folding set.
2007-10-03 Chris LattnerSimplify implementation of the FoldingSet circular...
2007-09-14 Chris Lattnerfix a gcc warning: comparison between signed and unsign...
2007-09-14 Dale JohannesenRemove the assumption that FP's are either float or
2007-09-14 Dan GohmanAnd an FoldingSetImpl::NodeID::AddInteger overload...
2007-02-24 Chris Lattnerremove folding set debug output
2007-02-04 Chris LattnerEncode small integers more densely in foldingset, avoid...
2007-02-01 Chris Lattnerimprove comments, add an assertion
2007-01-31 Reid SpencerAdd some debug output.
2007-01-31 Chris Lattnerminor cleanups. Fix off-by-one in accounting the numbe...
2007-01-30 Chris Lattnerreformat comment
2006-11-03 Rafael Espindolaassert.h -> cassert
2006-11-02 Rafael Espindola#include <assert.h>
2006-11-02 Jim LaskeyAllow FoldingSet clients to pump up the initial hash...
2006-10-29 Jim LaskeyTry again.
2006-10-29 Jim LaskeyNot handling zero length strings.
2006-10-27 Jim LaskeySmallVector append not insert.
2006-10-27 Jim LaskeyGrrr.
2006-10-27 Jim LaskeyTemp patch for missing functionality.
2006-10-27 Bill WendlingMathExtras isn't in the llvm/ADT directory but in the...
2006-10-27 Jim LaskeyApply editorials.
2006-10-27 Jim LaskeyBreakout folding hash set from SelectionDAGCSEMap.