1. f352359 Type.h doesn't need to #include LLVMContext.h by Chris Lattner · 15 years ago
  2. 522b113 Add raw_ostream::write_escaped, for writing escaped strings. by Daniel Dunbar · 15 years ago
  3. 6a9291a Fix http://llvm.org/PR5160, to let CallbackVHs modify other ValueHandles on the by Jeffrey Yasskin · 15 years ago
  4. ac53a0b Introduce and use convenience methods for getting pointer types by Duncan Sands · 15 years ago
  5. 81f46d9 remove support for "NoSub" from regex. It seems like a minor optimization by Chris Lattner · 15 years ago
  6. b7a8d40 Fix a compile failure introduced by r82675 on MinGW which doesn't have by Jeffrey Yasskin · 15 years ago
  7. 5287008 add and document regex support for FileCheck. You can now do stuff like: by Chris Lattner · 15 years ago
  8. 1d75d3a Roll back r82348, which introduced an infinite loop in ParseCStringVector() that by Jeffrey Yasskin · 15 years ago
  9. c8213b7 Drop the raw_ostream required buffer size to 1. by Daniel Dunbar · 15 years ago
  10. 4a38930 Make TypeBuilder's result depend on the LLVMContext it's passed. by Jeffrey Yasskin · 15 years ago
  11. 46e1246 Simplify, now that gtest supports raw_ostream directly. by Daniel Dunbar · 15 years ago
  12. 8211bec Now that googletest can print ConstantRange, use EXPECT_EQ when testing for by Nick Lewycky · 15 years ago
  13. 9c0c3bf Teach googletest to use raw_ostream instead of just std::ostream. by Jeffrey Yasskin · 15 years ago
  14. ce0c81e Add regular expression matching support, based on OpenBSD regexec()/regcomp() by Torok Edwin · 15 years ago
  15. 32e1eef split raw_os_ostream out to its own header and implementation file. This by Chris Lattner · 15 years ago
  16. 2571440 Unbreak unit tests. by Daniel Dunbar · 15 years ago
  17. 9441cfe Fix off-by-one in llvm::Format::print. by Daniel Dunbar · 15 years ago
  18. 8142ce5 convert all the constant range EXPECT_EQ tests to use EXPECT_TRUE since by Chris Lattner · 15 years ago
  19. 36891e6 Fixed header comment. by Misha Brukman · 15 years ago
  20. 9472a9d Add min and max tests. by Daniel Dunbar · 15 years ago
  21. 1d0be15 Push LLVMContexts through the IntegerType APIs. by Owen Anderson · 15 years ago
  22. 5232f41 Fix unit test on FreeBSD. We need to make sure there is enough space to save the pointer even if the memory returned from malloc was already aligned. by Benjamin Kramer · 15 years ago
  23. 0d5bd59 To catch bugs like the one fixed in by Jeffrey Yasskin · 15 years ago
  24. 5b1e79e Update unit test. by Owen Anderson · 15 years ago
  25. feba756 Update unittest for LLVM API change. by Benjamin Kramer · 15 years ago
  26. a7235ea Move a few more APIs back to 2.5 forms. The only remaining ones left to change back are by Owen Anderson · 15 years ago
  27. debcb01 Move types back to the 2.5 API. by Owen Anderson · 15 years ago
  28. 7d50913 Added a test and fixed a bug in BumpPtrAllocator relating to large alignment by Reid Kleckner · 15 years ago
  29. eed707b Revert the ConstantInt constructors back to their 2.5 forms where possible, thanks to contexts-on-types. More to come. by Owen Anderson · 15 years ago
  30. 8f51a62 Re-committing changes from r76825 to BumpPtrAllocator with a fix and tests for by Reid Kleckner · 15 years ago
  31. 4bf3706 Reverting r76825 and r76828, since they caused clang runtime errors and some build failure involving memset. by Reid Kleckner · 15 years ago
  32. 95eb3ad Parameterize the BumpPtrAllocator over a slab allocator. It defaults to using by Reid Kleckner · 15 years ago
  33. b714c08 cast signed APInt constructor params to uint64_t to suppress signedness warning by Ryan Flynn · 15 years ago
  34. 7e7dc45 Fix ConstantRange::unionWith. Also make it work a little hard in some cases to by Nick Lewycky · 15 years ago
  35. 3a4a884 Replace intersectWith with maximalIntersectWith. The latter guarantees that by Nick Lewycky · 15 years ago
  36. 9adc0ab Move EVER MORE stuff over to LLVMContext. by Owen Anderson · 15 years ago
  37. 780905e Fix an error in ConstantRange::getSignedMax on wrapped ranges. Thanks once by Nick Lewycky · 15 years ago
  38. ff84de7 'i8 full-range' sign extended to i16 should equal [-128, 128) not [-128, 127). by Nick Lewycky · 15 years ago
  39. 0a5372e Begin the painful process of tearing apart the rat'ss nest that is Constants.cpp and ConstantFold.cpp. by Owen Anderson · 15 years ago
  40. f1db120 Multiply was very wrong for wrapped ranges. This supplies a half-fix that will by Nick Lewycky · 15 years ago
  41. cf9e07d Fix a bug summing two full sets. The overflow checking doesn't handle sets as by Nick Lewycky · 15 years ago
  42. 956daf0 Implement udiv for ConstantRanges. by Nick Lewycky · 15 years ago
  43. b2dcff4 This is not overly conservative. by Nick Lewycky · 15 years ago
  44. 2ff893f Implement ConstantRange::multiply based on the code in LoopVR. by Nick Lewycky · 15 years ago
  45. 646ca92 Fix handling of max and full set. by Nick Lewycky · 15 years ago
  46. 44b3e8d Break the world's largest unit test down a few logical lines. No semantic by Nick Lewycky · 15 years ago
  47. a439ee0 Fix unit tests. by Owen Anderson · 15 years ago
  48. 38b0644 Revert the part of 75177 that split ConstantRange into two classes, and by Dan Gohman · 15 years ago
  49. a3755d8 Add a ConstantSignedRange class, which does for signed integers by Dan Gohman · 15 years ago
  50. 7ce5536 Fix a compile warning. by Daniel Dunbar · 15 years ago
  51. c09b12c Apply Jeffrey Yasskin's CallbackVH patch, with minor tweaks from me by Dan Gohman · 15 years ago
  52. 487fa01 Add tests for WeakVH and AssertingVH. These pointed out that the overloads for by Jeffrey Yasskin · 15 years ago
  53. 096fd7b Add a new TypeBuilder helper class, which eases making LLVM IR types. by Chris Lattner · 15 years ago
  54. dcafd04 Make the constants fit. by Bill Wendling · 15 years ago
  55. 6eb28b5 Added tests for math utility functions; fixed another test's header comment. by Misha Brukman · 15 years ago
  56. 8be1ac2 Renamed unittest files to have a consistent {Tt}est suffix. by Misha Brukman · 15 years ago
  57. 501adac Minimal raw_ostream unit tests by Daniel Dunbar · 15 years ago