summaryrefslogtreecommitdiff
path: root/unittests/ADT
Commit message (Expand)AuthorAge
* StringRef::compare_numeric also differed from StringRef::compare for characte...Benjamin Kramer2010-08-26
* Do unsigned char comparisons in StringRef::compare_lower to be more consisten...Benjamin Kramer2010-08-26
* Silence 'unused' warning.Bill Wendling2010-08-19
* Add a 'normalize' method to the Triple class, which takes a mucked upDuncan Sands2010-08-12
* Remove the ValueMap copy constructor. It's not used anywhere,Duncan Sands2010-08-08
* Fix the ValueMap copy constructor. The issue is that the map keys are valueDuncan Sands2010-07-30
* Switch from EXPECT_EQ({true,false, ...) to the more canonicalChandler Carruth2010-07-13
* Use non-bool values for .count.Bill Wendling2010-07-10
* ADT: Add DAGDeltaAlgorithm, which is a DAG minimization algorithm built on to...Daniel Dunbar2010-06-08
* Add StringRef::compare_numeric and use it to sort TableGen register records.Jakob Stoklund Olesen2010-05-26
* Fix const ilist_node::get{Prev,Next}Node() to actually compile. Picky, picky.Daniel Dunbar2010-05-13
* ADT: Add ilist_node::get{Prev,Next}Node, which return the adjacent node or null.Daniel Dunbar2010-05-12
* Update BitVectorTest.cpp to stay in sync with SmallBitVectorTest.cpp,Dan Gohman2010-04-30
* SmallBitVector: Rework find_first/find_next and tweak test to test them (at l...Benjamin Kramer2010-04-30
* Implement a read/write operator[] for SmallBitVector with a proxy class.Benjamin Kramer2010-04-30
* silence some unused-value warnings.Chris Lattner2010-04-18
* Fix SmallVector's insert to handle non-random-access iterators.Dan Gohman2010-03-26
* Make this test more lenient; with SmallVector now using actuallyDan Gohman2010-03-18
* Fix death tests in -Asserts builds.Jeffrey Yasskin2010-03-17
* Teach APFloat how to create both QNaNs and SNaNs and with arbitrary-widthJohn McCall2010-02-28
* Make APFloat's string-parsing routines a bit safer against very large exponents.John McCall2010-02-26
* Fix (harmless) memory leak found by memcheck.Jeffrey Yasskin2010-02-11
* Silence GCC warnings.Benjamin Kramer2010-02-10
* Implement operators |=, &=, and ^= for SmallBitVector, and remove theDan Gohman2010-02-10
* Disable unittests/ADT/BitVectorTest on PPC Darwin.Dale Johannesen2010-02-09
* Make APInt::countLeadingZerosSlowCase() treat the contents of padding bitsJohn McCall2010-02-03
* Add a SmallBitVector class, which mimics BitVector but uses onlyDan Gohman2010-01-05
* Silence compiler warning.Benjamin Kramer2009-12-31
* Document the edit-distance algorithm used in StringRef, switch it overDouglas Gregor2009-12-31
* Implement support for converting to string at "natural precision", and fix someJohn McCall2009-12-24
* Move the two definitions of operator<< into namespace llvm, so theyDouglas Gregor2009-12-24
* Define the new operator<< for sets into namespace std, so thatDouglas Gregor2009-12-24
* Add accessors for the largest-magnitude, smallest-magnitude, andJohn McCall2009-12-24
* Change StringRef::startswith and StringRef::endswith to versions which are aEli Friedman2009-12-21
* Add an implementation of the delta debugging algorithm.Daniel Dunbar2009-12-03
* Only run this mutex test if threading is enabled. ThisDuncan Sands2009-11-19
* Reenable Split2 StringRef test with Apple gcc.Benjamin Kramer2009-11-19
* "XFAIL" the Split2 StringReft test with Apple gcc, which miscompiles it.Daniel Dunbar2009-11-17
* Distinguish "a," from "a". The first one splits into "a" + "" and the second ...Rafael Espindola2009-11-13
* Switch to smallvector. Also fix issue with using unsigend for MaxSplit.Rafael Espindola2009-11-13
* Add a new split method to StringRef that puts the substrings in a vector.Rafael Espindola2009-11-13
* Add From arguments to StringRef search functions, and tweak doxyments.Daniel Dunbar2009-11-11
* Fix DenseMap iterator constness.Jeffrey Yasskin2009-11-10
* Type.h doesn't need to #include LLVMContext.hChris Lattner2009-10-27
* Move DataTypes.h to include/llvm/System, update all users. This breaks the lastChandler Carruth2009-10-26
* Fix stylistic and documentation problems in ValueMap found by Nick Lewycky andJeffrey Yasskin2009-10-23
* Try r84890 again (adding ValueMap<>), now that I've tested the compile onJeffrey Yasskin2009-10-22
* Revert r84890, which broke the linux build.Jeffrey Yasskin2009-10-22
* Add a ValueMap<ValueOrSubclass*, T> type. ValueMap<Value*, T> is safe to useJeffrey Yasskin2009-10-22
* Pacify the compiler (signed with unsigned comparison) by makingDuncan Sands2009-10-13