1. ff5bad0 Add portable bit mask operations to BitVector. by Jakob Stoklund Olesen · 13 years ago
  2. 61425c0 MCJIT support for non-function sections. by Jim Grosbach · 13 years ago
  3. 972cc0d Undo the hack in r147427 and move this unittest to a better home. This by Chandler Carruth · 13 years ago
  4. f3cd23c Fix unittest makefile after r147425. This should unbreak the makefile by Chandler Carruth · 13 years ago
  5. 47f79bb Materialize functions whose basic blocks are used by global variables. Fixes by Rafael Espindola · 13 years ago
  6. 3a3a424 Some unittests for APInt rotates; patch by Cameron McInally. by Eli Friedman · 13 years ago
  7. 84cbb6f Changes the JSON parser to use the SourceMgr. by Manuel Klimek · 13 years ago
  8. 2d24e2a Unweaken vtables as per http://llvm.org/docs/CodingStandards.html#ll_virtual_anch by David Blaikie · 13 years ago
  9. 1243cdd As Doug pointed out (and I really should know), it is perfectly easy to by Chandler Carruth · 13 years ago
  10. efb0d1e APInt: update asserts for base-36 by Dylan Noblesmith · 13 years ago
  11. 76f1301 Adds a JSON parser and a benchmark (json-bench) to catch performance regressions. by Manuel Klimek · 13 years ago
  12. db21f4c Put the '*' in the right place in the unit test. Forgot to fix up this by Chandler Carruth · 13 years ago
  13. d916ce3 Add a generic collection of class templates to ADT for building by Chandler Carruth · 13 years ago
  14. de0cfe8 Tweak CMake build on Cygwin. by NAKAMURA Takumi · 13 years ago
  15. bb53bbb build/unittests: Fix llvm-config names for gtest libraries, and bring Makefile by Daniel Dunbar · 13 years ago
  16. 7ae606a Revert r146363 to allow buildbots to make forward progress. by Chad Rosier · 13 years ago
  17. d45fbe6 Support/FileSystem: Implement bool equivalent(file_status A, file_status B); by Michael J. Spencer · 13 years ago
  18. c3b00e8 Support/FileSystem: Implement canonicalize. by Michael J. Spencer · 13 years ago
  19. 9f756cf re-enable unittest by Dylan Noblesmith · 13 years ago
  20. 52ee230 unittests/Support/Path.cpp: [recursive_directory_iterator] Work around for end iterator. by NAKAMURA Takumi · 13 years ago
  21. bd3825e unittests/SupportTests: Fix test. pop modifies the current entry, thus the by Michael J. Spencer · 13 years ago
  22. 6132d70 unittests/SupportTests: Add some outs()'s to debug the issues on some bots. by Michael J. Spencer · 13 years ago
  23. a81ac8f Support/FileSystem: Implement recursive_directory_iterator and make by Michael J. Spencer · 13 years ago
  24. 1608769 by Nadav Rotem · 13 years ago
  25. 35af1d7 unittests: add ErrorStr to ExecutionEngine test by Dylan Noblesmith · 13 years ago
  26. 4455142 Fix APFloat::convert so that it handles narrowing conversions correctly; it by Eli Friedman · 13 years ago
  27. f7228f7 Fix Windows build, don't try to #include <pthread.h> when we know it's not by Nick Lewycky · 13 years ago
  28. 4d0a9ff Add support for tsan annotations (thread sanitizer, a valgrind-based tool). by Nick Lewycky · 13 years ago
  29. 94d80da unittests/MultiJITTest.cpp: Tweak how to check symbol value for Win32 --enable-shared. by NAKAMURA Takumi · 13 years ago
  30. 13b1073 Implement comparison operators for BranchProbability in a way that can't overflow INT64_MAX. by Benjamin Kramer · 13 years ago
  31. 341473c Add compare operators to BranchProbability and use it to determine if an edge is hot. by Benjamin Kramer · 13 years ago
  32. d8b7aa2 Enhance llvm::SourceMgr to support diagnostic ranges, the same way clang does. Enhance by Chris Lattner · 13 years ago
  33. 6e6a558 Add a bad char heuristic to StringRef::find. by Benjamin Kramer · 13 years ago
  34. a3a1635 Attempt to fix MSVC build. by Eli Friedman · 13 years ago
  35. 7247a5f Fix APFloat::getLargest so that it actually returns the correct value. Found by accident while reviewing a patch to nearby code. by Eli Friedman · 13 years ago
  36. 9eb6b4d Fix APInt::operator*= so that it computes the correct result for large integers where there is unsigned overflow. Fix APFloat::toString so that it doesn't depend on the incorrect behavior in common cases (and computes the correct result in some rare cases). Fixes PR11086. by Eli Friedman · 13 years ago
  37. e97728e The product of two chrec's can always be represented as a chrec. by Nick Lewycky · 13 years ago
  38. 7850dd0 Fix a bug in compare_numeric(). by Jakob Stoklund Olesen · 13 years ago
  39. f56dc28 NULL cannot be portably used as the last argument to a function with __attribute((sentinel)), even though it usually works. Use (void*)0 instead. PR11002. by Eli Friedman · 13 years ago
  40. dcd9996 Add APInt support for converting to/from hexatridecimal strings by Douglas Gregor · 13 years ago
  41. 4bffb62 unittests/Support/DataExtractorTest.cpp: Specify ULL explicitly to a few constants. by NAKAMURA Takumi · 13 years ago
  42. 8c74f7f Add the DataExtractor utility class. by Benjamin Kramer · 13 years ago
  43. 5a76f00 Exclude more arm jit failures pending PR10783. by Andrew Trick · 13 years ago
  44. cda2a14 Fix C++0x narrowing errors when char is unsigned. by Jeffrey Yasskin · 13 years ago
  45. 9d74909 Fix a test that wasn't testing the right thing. by Matt Beaumont-Gay · 13 years ago
  46. f5ec9b5 The 'expected' argument to EXPECT_EQ is actually the first one; by John McCall · 13 years ago
  47. 0005cc7 Excluding ARM JIT tests until someone can fix this compilation path. by Andrew Trick · 13 years ago
  48. 3e74d6f Move TargetRegistry and TargetSelect from Target to Support where they belong. by Evan Cheng · 13 years ago
  49. 6815ff0 Avoid undefined behaviour if somehow NUM_GRAPHS equals 2^32 (or by Duncan Sands · 13 years ago
  50. 00eab6c Remove extra semicolon. by Jakub Staszak · 13 years ago
  51. 5edfbeb Use unsigned rather than uint16_t in case anyone feels like testing by Duncan Sands · 13 years ago
  52. 6f7eec1 Check an additional property specific to the way LLVM iterates over SCC's. by Duncan Sands · 13 years ago
  53. 8537e8a Add a unittest for the simply connected components (SCC) iterator class. by Duncan Sands · 13 years ago
  54. 0031b4f Add test cases for BlockFrequency. by Jakub Staszak · 13 years ago
  55. c437bd5 Remove some code that is no longer needed now that googletest knows how by Jay Foad · 13 years ago
  56. a44defe Explicitly cast narrowing conversions inside {}s that will become errors in by Jeffrey Yasskin · 13 years ago
  57. a920310 Convert GetElementPtrInst to use ArrayRef. by Jay Foad · 13 years ago
  58. 3f25ee0 Add Twine support for characters, and switch twine to use a union internally by Chris Lattner · 13 years ago
  59. 3ba292d Add APInt(numBits, ArrayRef<uint64_t> bigVal) constructor to prevent future ambiguity by Jeffrey Yasskin · 13 years ago
  60. db125cf land David Blaikie's patch to de-constify Type, with a few tweaks. by Chris Lattner · 13 years ago
  61. 3d42bfb Add an APFloat::convertToInt(APSInt) function that automatically manages the by Jeffrey Yasskin · 13 years ago
  62. d7c0273 The key of a StringMap can contain nul's in it, so having first() return by Chris Lattner · 13 years ago
  63. 5fdd6c8 Second attempt at de-constifying LLVM Types in FunctionType::get(), by Jay Foad · 13 years ago
  64. 2280ebd Revert r134893 and r134888 (and related patches in other trees). It was causing by Bill Wendling · 13 years ago
  65. eeb64ae De-constify Types in StructType::get() and TargetData::getIntPtrType(). by Jay Foad · 13 years ago
  66. f362aff De-constify Types in FunctionType::get(). by Jay Foad · 13 years ago
  67. 1afcace Land the long talked about "type system rewrite" patch. This by Chris Lattner · 13 years ago
  68. 9cbd7af Fix a subtle issue in SmallVector. The following code did not work as expected: by Owen Anderson · 13 years ago
  69. e6240e8 Fix the implementation of ConstantRange::sub(ConstantRange). Patch by Xi Wang! by Nick Lewycky · 13 years ago
  70. b065b06 Revamp the "ConstantStruct::get" methods. Previously, these were scattered by Chris Lattner · 13 years ago
  71. b231866 fix the varargs version of StructType::get to not require an LLVMContext, making usage by Chris Lattner · 13 years ago
  72. e817127 add some #includes that will soon be needed. by Chris Lattner · 13 years ago
  73. 5f36bb1 unittests: add test for APInt::toString() by Dylan Noblesmith · 13 years ago
  74. 5cf34fe Try fixing http://google1.osuosl.org:8011/builders/clang-i686-freebsd/builds/3548 by Argyrios Kyrtzidis · 13 years ago
  75. 0f5b687 Add unit tests for ADT/PackedVector by Argyrios Kyrtzidis · 13 years ago
  76. 0cf5156 Add CreateLifetimeStart and CreateLifetimeEnd to the IRBuilder, with plans to by Nick Lewycky · 13 years ago
  77. 117feba Teach getCastOpcode about element-by-element vector casts. For example, "trunc" by Duncan Sands · 13 years ago
  78. 104e992 Handle gcc-compatible compilers (such as clang) the same way we handle gcc. by Oscar Fuentes · 13 years ago
  79. 6cf081c Remove bounded StringRef::compare() since nothing but Clang SA was using it and it is just as easy to use StringRef::substr() preceding StringRef::compare() to achieve the same thing. by Lenny Maiorani · 13 years ago
  80. ec9186b PR9214: Convert Metadata API to use ArrayRef. by Jay Foad · 13 years ago
  81. 437ef0c Implements StringRef::compare with bounds. It is behaves similarly to strncmp(). Unit tests also included. by Lenny Maiorani · 13 years ago
  82. 562b84b Don't include Operator.h from InstrTypes.h. by Jay Foad · 13 years ago
  83. 6079465 While testing dragonegg I noticed that isCastable and getCastOpcode by Duncan Sands · 13 years ago
  84. f202c43 Strip trailing whitespace. by Duncan Sands · 13 years ago
  85. 8398512 Avoid turning a floating point division with a constant power of two into a denormal multiplication. by Benjamin Kramer · 13 years ago
  86. 2746000 Add APFloat::getExactInverse. by Benjamin Kramer · 13 years ago
  87. 3ecfc86 Remove PHINode::reserveOperandSpace(). Instead, add a parameter to by Jay Foad · 13 years ago
  88. d8b4fb4 (Almost) always call reserveOperandSpace() on newly created PHINodes. by Jay Foad · 13 years ago
  89. d9103df Add an argument to APInt's magic udiv calculation to specify the number of bits that are known zero in the divided number. by Benjamin Kramer · 13 years ago
  90. 9bf9aa5 Fixes warnings emitted by Visual Studio 2010 compiler. by Oscar Fuentes · 13 years ago
  91. b4098ba Simplify RecursivelyDeleteDeadPHINode. The only functionality change by Duncan Sands · 13 years ago
  92. 8d7285d The signed version of our "magic number" computation for the integer approximation by Cameron Zwarich · 13 years ago
  93. 0b85d07 Put targets on folders, if the IDE supports the feature. by Oscar Fuentes · 13 years ago
  94. eff5e69 Make RecursivelyDeleteDeadPHINode delete a phi node that has no users and add a by Nick Lewycky · 13 years ago
  95. 1a4021a Teach RecursivelyDeleteDeadPHINodes to handle multiple self-references. Patch by Nick Lewycky · 13 years ago
  96. 63cc3a8 Adds llvm::sys::path::is_separator() to test whether a char is a path separator by Zhanyong Wan · 14 years ago
  97. 5e342ec build: Add MAKEFILE_UNITTEST_NO_INCLUDE_COMMON build variable, to be leveraged by Daniel Dunbar · 14 years ago
  98. ee64684 Part of this test is invariant inside the inner loop - move it outside the loop. by Duncan Sands · 14 years ago
  99. ae200c6 Remove NoVendor and NoOS, added in commit 123990, from Triple. While it by Duncan Sands · 14 years ago
  100. b3371cd by Chris Lattner · 14 years ago