aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/ADT/SparseBitVector.h
Commit message (Expand)AuthorAgeFilesLines
* Update aosp/master LLVM for rebase to r230699.Stephen Hines2015-03-231-27/+7
* Update aosp/master LLVM for rebase to r222494.Stephen Hines2014-12-021-1/+1
* Update LLVM for rebase to r212749.Stephen Hines2014-07-211-1/+2
* Update to LLVM 3.5a.Stephen Hines2014-04-241-1/+1
* Replace Count{Leading,Trailing}Zeros_{32,64} with count{Leading,Trailing}Zeros.Michael J. Spencer2013-05-241-6/+6
* Provide malloc-free sentinels for the SparseBitVector internals.Benjamin Kramer2012-09-281-0/+16
* Revert 'Fix a typo 'iff' => 'if''. iff is an abreviation of if and only if. S...Sylvestre Ledru2012-09-271-1/+1
* Fix a typo 'iff' => 'if'Sylvestre Ledru2012-09-271-1/+1
* Fix integer undefined behavior due to signed left shift overflow in LLVM.Richard Smith2012-08-241-1/+1
* What's better than fixing and simplifying broken hash functions?Chandler Carruth2012-03-071-21/+0
* Convert assert(0) to llvm_unreachableCraig Topper2012-02-051-13/+9
* Merge System into Support.Michael J. Spencer2010-11-291-1/+1
* Trivial change to dump() function for SparseBitVectorJohn Mosby2010-05-221-6/+10
* Move DataTypes.h to include/llvm/System, update all users. This breaks the lastChandler Carruth2009-10-261-1/+1
* Public and private corrections, warned about by icc (#304).Duncan Sands2009-09-061-1/+1
* Delete unused #include.Benjamin Kramer2009-09-051-4/+3
* Add a missing ilist_node.h #include to SparseBitVector, and add a very shortJeffrey Yasskin2009-07-251-0/+1
* Move to raw_ostream.Daniel Dunbar2009-07-241-3/+4
* Use struct instead of class to make MCVS compile.Bill Wendling2009-05-121-1/+1
* Shrink wrapping in PEI:John Mosby2009-05-111-4/+14
* Use CHAR_BIT instead of hard-coding 8 in several places where itDan Gohman2009-04-011-1/+2
* add some inline methods for infix operators on sparse vectors,Chris Lattner2009-03-211-5/+37
* Removed trailing whitespace.Misha Brukman2009-01-091-3/+3
* Tidy up #includes, deleting a bunch of unnecessary #includes.Dan Gohman2009-01-051-1/+1
* Fold the useful features of alist and alist_node into ilist, andDan Gohman2008-07-281-35/+3
* For PR1338: rename include/llvm/ADT/ilist and friends to end with ".h"Anton Korobeynikov2008-05-291-1/+1
* Add operator= implementations to SparseBitVector, allowing it to be used in G...Owen Anderson2008-04-071-0/+23
* Fix "Control reaches the end of non-void function" warnings, Chris Lattner2008-03-301-0/+1
* Dial down gcc's warnings: don't use 0UL when 0U suffices (and when theScott Michel2008-03-181-1/+1
* Don't attribute in file headers anymore. See llvmdev for theChris Lattner2007-12-291-2/+2
* Fix bugs in iterator invalidationDaniel Berlin2007-11-151-3/+7
* Fixed a strange construct. Please review.Hartmut Kaiser2007-11-131-1/+1
* Some more problems noticed by CurtisDaniel Berlin2007-10-071-4/+8
* Fix intersectWithComplement bug noticed by Curtis DunhamDaniel Berlin2007-10-051-4/+2
* Fix the previous bug a slightly different way (by modifying how find_next works)Daniel Berlin2007-10-041-9/+8
* Fix off by one error in iteratorDaniel Berlin2007-10-041-1/+1
* It helps a lot when you check for the end of your list before randomlyDaniel Berlin2007-10-041-1/+2
* Make SparseBitVector::set actually work properly when sets are not in ascendi...Daniel Berlin2007-10-041-4/+10
* Fix small bug in operator== for iteratorsDaniel Berlin2007-09-261-1/+1
* Comment fixupsDaniel Berlin2007-09-241-0/+1
* Implement offline variable substitution in order to reduce memoryDaniel Berlin2007-09-241-11/+28
* That's what i get for using carbon emacs in a terminalDaniel Berlin2007-09-171-2/+2
* Fix iterator so it doesn't sometimes report bits that aren't in the bitmapDaniel Berlin2007-09-171-0/+2
* Fix bug in andersen's related to test_and_set.Daniel Berlin2007-09-161-4/+26
* Fix a few bugs related to zero'ing of elementsDaniel Berlin2007-09-161-45/+14
* Move dump out of class, use "\n" instead of endlDaniel Berlin2007-09-111-10/+13
* Convert to use ilist and non-pointer lists for extra goodnessDaniel Berlin2007-09-111-89/+104
* Fix bugs with &=, intersect with complement. Add three argument version of in...Daniel Berlin2007-09-111-48/+131
* Add remaining functions necessary for andersen'sDaniel Berlin2007-09-111-12/+194
* Add SparseBitVector implementationDaniel Berlin2007-09-091-0/+560