1. 95a9d93 Round 2 of dead private variable removal. by Benjamin Kramer · 12 years ago
  2. c82fd37 Fix gtest build issue on Visual Studio 2012 RC by Justin Holewinski · 12 years ago
  3. 5d59b0b IntegersSubsetMapping: added exclude operation, that allows to exclude subset of integers from current mapping. by Stepan Dyatkovskiy · 12 years ago
  4. 20cb491 IntegersSubsetMapping: by Stepan Dyatkovskiy · 12 years ago
  5. 31219d2 Added unittests for IntegersSubset and IntegersSubsetMapping. by Stepan Dyatkovskiy · 12 years ago
  6. d9b0b02 Fix typos found by http://github.com/lyda/misspell-check by Benjamin Kramer · 12 years ago
  7. 42a0b48 Remove the PTX back-end and all of its artifacts (triple, etc.) by Justin Holewinski · 12 years ago
  8. a7a2a36 fix the quotient returned by sdivrem() for the case when LHS is negative and RHS is positive by Nuno Lopes · 12 years ago
  9. fbb7a73 fix corner case in ConstantRange::intersectWith(). by Nuno Lopes · 12 years ago
  10. d938935 Disable JITTest.FunctionIsRecompiledAndRelinked and JITTest.NoStubs by Simon Atanasyan · 12 years ago
  11. fc6fd99 Remove warning about testing unsigned int with int. by Bill Wendling · 12 years ago
  12. 661f760 Fixed one small stupid, but critical bug. by Stepan Dyatkovskiy · 12 years ago
  13. 0057022 Remove the expensive BitVector::operator~(). by Jakob Stoklund Olesen · 12 years ago
  14. 03a3811 Add BitVector::anyCommon(). by Jakob Stoklund Olesen · 12 years ago
  15. b0940b4 [Support/StringRef] Add find_last_not_of and {r,l,}trim. by Michael J. Spencer · 12 years ago
  16. 9166d23 Add unittests for Triple::getMacOSXVersion and Triple::getiOSVersion. by Chad Rosier · 13 years ago
  17. 3703baa SmallVector: Don't rely on having an assignment operator around in push_back for POD-like types. by Benjamin Kramer · 13 years ago
  18. 5c77bc2 Fixed SmallMap test. The order of items is undefined in DenseMap. So being checking the increment for big mode, we can only check that all items are in map. by Stepan Dyatkovskiy · 13 years ago
  19. b856d55 Reapply the SmallMap patch with a fix. by Benjamin Kramer · 13 years ago
  20. bdbf015 Revert "First implementation of:" by Eric Christopher · 13 years ago
  21. 76271a3 First implementation of: by Stepan Dyatkovskiy · 13 years ago
  22. c0ccb8b SparseSet: Add support for key-derived indexes and arbitrary key types. by Andrew Trick · 13 years ago
  23. 61c3d30 Goodbye, JSONParser... by Manuel Klimek · 13 years ago
  24. 2867c85 Remove support for the special 'fast' value for fpmath accuracy for the moment. by Duncan Sands · 13 years ago
  25. 8883c43 Make it possible to indicate relaxed floating point requirements at the IR level by Duncan Sands · 13 years ago
  26. e747fad Add the MDBuilder helper class for conveniently creating metadata. by Duncan Sands · 13 years ago
  27. 93210e8 Add YAML parser to Support. by Michael J. Spencer · 13 years ago
  28. a47406c Add triple support for the IBM BG/P and BG/Q supercomputers. by Hal Finkel · 13 years ago
  29. 4000afe I noticed in passing that the Metadata getIfExists method was creating a new by Duncan Sands · 13 years ago
  30. 092c5cc Handle unreachable code in the dominates functions. This changes users when by Rafael Espindola · 13 years ago
  31. 95c677e Fix missed files in JIT unittests Makefile by Danil Malyshev · 13 years ago
  32. 30b9e32 Move getPointerToNamedFunction() from JIT/MCJIT to JITMemoryManager. by Danil Malyshev · 13 years ago
  33. 3e29671 Revert a series of commits to MCJIT to get the build working in CMake by Chandler Carruth · 13 years ago
  34. 7803ec3 Based on this discussion: http://lists.cs.uiuc.edu/pipermail/llvm-commits/Week-of-Mon-20120305/138477.html by Danil Malyshev · 13 years ago
  35. f963cd3 Follow-up to r152620: restore JIT event listener tests to unittest/ExecutionEngine/JIT by Eli Bendersky · 13 years ago
  36. 3c88d4a Clean up removed file after r152620 by Eli Bendersky · 13 years ago
  37. 61b1851 Add profiling support for Intel Parallel Amplifier XE (VTune) for JITted code in LLVM. by Eli Bendersky · 13 years ago
  38. dbb4b2f Fix warnings. by Michael J. Spencer · 13 years ago
  39. 9130b42 Make StringRef::getAsInteger work with all integer types. Before this change by Michael J. Spencer · 13 years ago
  40. d4d8b2a Add support to the hashing infrastructure for automatically hashing both by Chandler Carruth · 13 years ago
  41. 2945a32 SmallPtrSet: Provide a more efficient implementation of swap than the default triple-copy std::swap. by Benjamin Kramer · 13 years ago
  42. 528f0bb Add generic support for hashing StringRef objects using the new hashing library. by Chandler Carruth · 13 years ago
  43. 9406da6 Teach the hashing facilities how to hash std::string objects. by Chandler Carruth · 13 years ago
  44. 21d60d5 Split this test up into two smaller, and more focused tests. by Chandler Carruth · 13 years ago
  45. 5fa6f5b Move the NonPOD struct out of the anonymous namespace instead of adding llvm:: everywhere to fix the HashingTest on MSVC . by Francois Pichet · 13 years ago
  46. 2547e7f Fixes the Hashing tests on MSVC by adding llvm:: prefix to hash_value function call. by Francois Pichet · 13 years ago
  47. edf24a8 unittests/ADT/HashingTest.cpp: Temporarily disable a new test introduced in r151891, to appease msvc. by NAKAMURA Takumi · 13 years ago
  48. 1c14489 Simplify the pair optimization. Rather than using complex type traits, by Chandler Carruth · 13 years ago
  49. c3f9918 Add a golden data test that I missed somehow the first time around. by Chandler Carruth · 13 years ago
  50. 4fc5bdf Fix bad indenting that was left over from cut/paste of the golden values by Chandler Carruth · 13 years ago
  51. 4d628e2 We really want to hash pairs of directly-hashable data as directly by Chandler Carruth · 13 years ago
  52. c7384cf Add support for hashing pairs by delegating to each sub-object. There is by Chandler Carruth · 13 years ago
  53. 4166989 Remove the misguided extension here that reserved two special values in by Chandler Carruth · 13 years ago
  54. 5a491ca Re-disable the debug output. The comment is there explaining why we want by Chandler Carruth · 13 years ago
  55. 9731294 Provide the 32-bit variant of the golden tests. Not sure how I forgot to by Chandler Carruth · 13 years ago
  56. 97e910e BumpPtrAllocator: Make sure threshold cannot be initialized with a value smaller than the slab size. by Benjamin Kramer · 13 years ago
  57. 6804582 If BumpPtrAllocator is requested to allocate a size that exceeds the slab size, by Argyrios Kyrtzidis · 13 years ago
  58. 0b66c6f Rewrite LLVM's generalized support library for hashing to follow the API by Chandler Carruth · 13 years ago
  59. fdc8f78 Bitcode: Don't expose WriteBitcodeToStream to clients. by Daniel Dunbar · 13 years ago
  60. a3bf915 Fix typos. by Jakob Stoklund Olesen · 13 years ago
  61. fdf0dc9 Support was removed from LLVM's MIPS backend for the PSP variant of that by Chandler Carruth · 13 years ago
  62. 6258862 Add a Briggs and Torczon sparse set implementation. by Jakob Stoklund Olesen · 13 years ago
  63. 124e51c Switch the llvm::Triple class to immediately parse the triple string on by Chandler Carruth · 13 years ago
  64. 1a4b19e Hashing.h - utilities for hashing various data types. by Talin · 13 years ago
  65. 0ae29a6 Add a unittest for rotating a really big APInt. by Benjamin Kramer · 13 years ago
  66. 7d5a289 Introduce helpers to compute the 32-bit varaints and 64-bit variants of by Chandler Carruth · 13 years ago
  67. 41aa108 RefCountedBaseVPTR needs the IntrusiveRefCntPtrInfo as friend, by Manuel Klimek · 13 years ago
  68. 6f72ac4 Add various coarse bit-width architecture predicates to llvm::Triple. by Chandler Carruth · 13 years ago
  69. babd598 DenseMap::find_as() and unit tests. by Talin · 13 years ago
  70. 2527188 Additional methods for SmallString. by Talin · 13 years ago
  71. 2a53577 unittests/Support/Casting.cpp: [PR8226] Workaround for MSVC|Debug. by NAKAMURA Takumi · 13 years ago
  72. ff5bad0 Add portable bit mask operations to BitVector. by Jakob Stoklund Olesen · 13 years ago
  73. 61425c0 MCJIT support for non-function sections. by Jim Grosbach · 13 years ago
  74. 972cc0d Undo the hack in r147427 and move this unittest to a better home. This by Chandler Carruth · 13 years ago
  75. f3cd23c Fix unittest makefile after r147425. This should unbreak the makefile by Chandler Carruth · 13 years ago
  76. 47f79bb Materialize functions whose basic blocks are used by global variables. Fixes by Rafael Espindola · 13 years ago
  77. 3a3a424 Some unittests for APInt rotates; patch by Cameron McInally. by Eli Friedman · 13 years ago
  78. 84cbb6f Changes the JSON parser to use the SourceMgr. by Manuel Klimek · 13 years ago
  79. 2d24e2a Unweaken vtables as per http://llvm.org/docs/CodingStandards.html#ll_virtual_anch by David Blaikie · 13 years ago
  80. 1243cdd As Doug pointed out (and I really should know), it is perfectly easy to by Chandler Carruth · 13 years ago
  81. efb0d1e APInt: update asserts for base-36 by Dylan Noblesmith · 13 years ago
  82. 76f1301 Adds a JSON parser and a benchmark (json-bench) to catch performance regressions. by Manuel Klimek · 13 years ago
  83. db21f4c Put the '*' in the right place in the unit test. Forgot to fix up this by Chandler Carruth · 13 years ago
  84. d916ce3 Add a generic collection of class templates to ADT for building by Chandler Carruth · 13 years ago
  85. de0cfe8 Tweak CMake build on Cygwin. by NAKAMURA Takumi · 13 years ago
  86. bb53bbb build/unittests: Fix llvm-config names for gtest libraries, and bring Makefile by Daniel Dunbar · 13 years ago
  87. 7ae606a Revert r146363 to allow buildbots to make forward progress. by Chad Rosier · 13 years ago
  88. d45fbe6 Support/FileSystem: Implement bool equivalent(file_status A, file_status B); by Michael J. Spencer · 13 years ago
  89. c3b00e8 Support/FileSystem: Implement canonicalize. by Michael J. Spencer · 13 years ago
  90. 9f756cf re-enable unittest by Dylan Noblesmith · 13 years ago
  91. 52ee230 unittests/Support/Path.cpp: [recursive_directory_iterator] Work around for end iterator. by NAKAMURA Takumi · 13 years ago
  92. bd3825e unittests/SupportTests: Fix test. pop modifies the current entry, thus the by Michael J. Spencer · 13 years ago
  93. 6132d70 unittests/SupportTests: Add some outs()'s to debug the issues on some bots. by Michael J. Spencer · 13 years ago
  94. a81ac8f Support/FileSystem: Implement recursive_directory_iterator and make by Michael J. Spencer · 13 years ago
  95. 1608769 by Nadav Rotem · 13 years ago
  96. 35af1d7 unittests: add ErrorStr to ExecutionEngine test by Dylan Noblesmith · 13 years ago
  97. 4455142 Fix APFloat::convert so that it handles narrowing conversions correctly; it by Eli Friedman · 13 years ago
  98. f7228f7 Fix Windows build, don't try to #include <pthread.h> when we know it's not by Nick Lewycky · 13 years ago
  99. 4d0a9ff Add support for tsan annotations (thread sanitizer, a valgrind-based tool). by Nick Lewycky · 13 years ago
  100. 94d80da unittests/MultiJITTest.cpp: Tweak how to check symbol value for Win32 --enable-shared. by NAKAMURA Takumi · 13 years ago