1. 46e11c4 Implement categories for special case lists. by Peter Collingbourne · 11 years ago
  2. c7087f8 Add some SpecialCaseList unit tests. by Peter Collingbourne · 11 years ago
  3. 845e196 Make BinaryRef output correctly in case of empty data. by Sean Silva · 11 years ago
  4. 1cce797 We now always create files with the correct permissions. Simplify the interface. by Rafael Espindola · 11 years ago
  5. 2c87a17 Fix windows build. by Rafael Espindola · 11 years ago
  6. 1276b39 Use sys::fs::createTemporaryFile. by Rafael Espindola · 11 years ago
  7. 6227d5c Use SmallVectorImpl::iterator/const_iterator instead of SmallVector to avoid specifying the vector size. by Craig Topper · 11 years ago
  8. 5186591 Fix -Wsign-compare warning and remove windows-style line endings introduced by r185421 by David Blaikie · 11 years ago
  9. e5cb25f Fixed alignment of code sections in the JIT mode. Added a test to the JITMemoryManager. by Elena Demikhovsky · 11 years ago
  10. b577703 [APFloat] Ensure that we can properly parse strings that do not have null terminators. by Michael Gottesman · 11 years ago
  11. 76bf61f Fix copypaste error in test. by Matt Arsenault · 11 years ago
  12. 8bb9ec1 Replace UNIXy path with os-independent one in DebugIR unit test by Daniel Malea · 11 years ago
  13. 5d3257e Fix a bad overflow check pointed out by Ben. by Jakob Stoklund Olesen · 11 years ago
  14. 9e638df Fix Windows/Darwin build error in DebugIR unit tests by Daniel Malea · 11 years ago
  15. 40d8171 Revising the MCJIT ObjectCache interface to allow subclasses to avoid retaining references to returned objects by Andrew Kaylor · 11 years ago
  16. 5fa8186 Adding tests for DebugIR pass by Daniel Malea · 11 years ago
  17. d7648ff Add a division operator to BlockFrequency. by Jakob Stoklund Olesen · 11 years ago
  18. 08ddd12 Add a convenience createUniqueDirectory function. by Rafael Espindola · 11 years ago
  19. fb76ffd [APFloat] Added unittest for APFloat.divide that checks special cases, result categories, and result statuses. by Michael Gottesman · 11 years ago
  20. bb77593 Removed two logging printf statements from the APFloat tests... = /. by Michael Gottesman · 11 years ago
  21. 2eda897 [APFloat] Added unittest for APFloat.multiply that checks special cases, result categories, and result status. by Michael Gottesman · 11 years ago
  22. d7d88d9 [APFloat] Added unittest for APFloat.subtract that checks special cases, result categories, and result status. by Michael Gottesman · 11 years ago
  23. a8f9364 [APFloat] Removed debugging cruft that snuck in. by Michael Gottesman · 11 years ago
  24. df0f525 Remove unused includes. by Rafael Espindola · 11 years ago
  25. 50188c1 Port GetMainExecutable over to PathV2. by Rafael Espindola · 11 years ago
  26. 567a112 [APFloat] Removed trailing whitespace from unittests. by Michael Gottesman · 11 years ago
  27. 683069f [APFloat] Added a large unittest for APFloat.add that checks that special values are computed correctly. by Michael Gottesman · 11 years ago
  28. b47acea Revert "BlockFrequency: Saturate at 1 instead of 0 when multiplying a frequency with a branch probability." by Benjamin Kramer · 11 years ago
  29. 93702a3 BlockFrequency: Saturate at 1 instead of 0 when multiplying a frequency with a branch probability. by Benjamin Kramer · 11 years ago
  30. deda39d [mips] Remove Triple:mips from SupportedArchs in MCJIT unittests by Akira Hatanaka · 11 years ago
  31. a1694e5 [APFloat] Rename isIEEENormal => isNormal and remove old isNormal method. by Michael Gottesman · 11 years ago
  32. 3781fbc [APFloat] Fix typo in test so we actually test if we handle denormals. by Michael Gottesman · 11 years ago
  33. 9aa3365 Rename fs::GetUniqueID to fs::getUniqueID to match the style guide. by Rafael Espindola · 11 years ago
  34. 4f71c1b [APFloat] Changed APFloat::isNormal => APFloat::isFiniteNonZero for all tests in unittests. by Michael Gottesman · 11 years ago
  35. 4655485 Modified the implementation of fs::GetUniqueID on Windows such that it actually finds a unique identifier for a file. Also adds unit tests for GetUniqueID. by Aaron Ballman · 11 years ago
  36. 7032c88 [APFloat] Added isFiniteNonZero predicate. by Michael Gottesman · 11 years ago
  37. ae5758b Add unit test to test a trivial verifier check. by Bill Wendling · 11 years ago
  38. 675e0ac Avoid using PathV1.h in Program.h. by Rafael Espindola · 11 years ago
  39. 9f1d9fd Remove the program class. by Rafael Espindola · 11 years ago
  40. a11c3e2 Move PathV2.h to Path.h by Rafael Espindola · 11 years ago
  41. 0c79301 sys::process::get_id() now returns the process ID instead of a process handle on Windows. Patch thanks to Kim Gräsman! by Aaron Ballman · 11 years ago
  42. a77376d BitVector: Do the right thing in all() when Size is a multiple of BITWORD_SIZE. by Benjamin Kramer · 11 years ago
  43. 597253d Optimize BitVector::all(). by Benjamin Kramer · 11 years ago
  44. b30718a IEEE-754R 5.7.2 General Operations is* operations (except for isCanonical). by Michael Gottesman · 11 years ago
  45. 44dbb74 Try to avoid "integer literal too big" warnings from older GCCs. by Benjamin Kramer · 11 years ago
  46. 769d24a Add support for adding the contents of a StringRef to the MD5 hash. by Eric Christopher · 11 years ago
  47. cbb45aa Convert more unsigned char -> uint8_t. by Eric Christopher · 11 years ago
  48. 504e2da [APFloat] Added a unittest for APFloat::getZero. by Michael Gottesman · 11 years ago
  49. 198f972 Remove unused member. by Rafael Espindola · 11 years ago
  50. 964722c Implement IEEE-754R 2008 nextUp/nextDown functions in the guise of the function APFloat::next(bool nextDown). by Michael Gottesman · 11 years ago
  51. 12378d4 Add a comment and some tests including the NULL byte. by Eric Christopher · 11 years ago
  52. 999c693 Added a unittest for APFloat::getSmallestNormalized. by Michael Gottesman · 11 years ago
  53. 7d13d52 Added code to the unittest for APFloat::getSmallest to double check that we consider the result to be denormal. by Michael Gottesman · 11 years ago
  54. 3e8d356 Add a unittest for APFloat::getSmallest. by Michael Gottesman · 11 years ago
  55. a32edcf [APInt] Implement tcDecrement as a counterpart to tcIncrement. This is for use in APFloat IEEE-754R 2008 nextUp/nextDown function. by Michael Gottesman · 11 years ago
  56. 725e3d3 Add to testsuite. by Eric Christopher · 11 years ago
  57. f7306f2 ArrayRef-ize MD5 and clean up a few variable names. by Eric Christopher · 11 years ago
  58. 3b77151 [Support] Remove Count{Leading,Trailing}Zeros_{32,64}. by Michael J. Spencer · 11 years ago
  59. 54c7482 [Support][MathExtras] Fix literal type issues. by Michael J. Spencer · 11 years ago
  60. 36fe3f2 [Support] Add type generic bit utilities to MathExtras.h by Michael J. Spencer · 11 years ago
  61. 6cfed36 Expose the RTDyldMemoryManager through the C API. This allows clients of by Filip Pizlo · 11 years ago
  62. 1441bf7 Roll out r182407 and r182408 because they broke builds. by Filip Pizlo · 11 years ago
  63. 52755c4 Expose the RTDyldMemoryManager through the C API. This allows clients of by Filip Pizlo · 11 years ago
  64. e3658a2 by Ulrich Weigand · 11 years ago
  65. a4de3f2 Partially revert change in r181200 that tried to simplify JIT unit test #ifdefs. by Bob Wilson · 11 years ago
  66. 4e4464b SubArch support in MCJIT unittest by Renato Golin · 11 years ago
  67. 233a4d7 AArch64: enable MCJIT unittests by Tim Northover · 11 years ago
  68. abb38fe Minor changes to the MCJITTest unittests to use the correct API for finalizing by David Tweed · 11 years ago
  69. 453f4f0 Use only explicit bool conversion operators by David Blaikie · 11 years ago
  70. 13a3cf1 SectionMemoryManager shouldn't be a JITMemoryManager. Previously, the by Filip Pizlo · 11 years ago
  71. 8305acb Get the unittests compiling when building with cmake and the setting by Duncan Sands · 11 years ago
  72. 4b6b53b Fix a bug that APFloat::fusedMultiplyAdd() mistakenly evaluate "14.5f * -14.5f + 225.0f" to 225.0f. by Shuxin Yang · 11 years ago
  73. 50be71d Fix MCJITCAPITest.cpp unit test on Windows. by Andrew Kaylor · 11 years ago
  74. e449654 Remove exception handling support from the old JIT. by Rafael Espindola · 11 years ago
  75. 61e0172 Implemented public interface for modifying registered (not positional or sink options) command line options at runtime. by Andrew Trick · 11 years ago
  76. b7ad33b Support command line option categories. by Andrew Trick · 11 years ago
  77. 7207285 by Ulrich Weigand · 11 years ago
  78. 1218bc4 by Ulrich Weigand · 11 years ago
  79. 46e7e6f Add missing PatternMatch.cpp to CMakeLists.txt by Arnold Schwaighofer · 11 years ago
  80. e79d92c PatternMatch: Matcher for (un)ordered floating point min/max by Arnold Schwaighofer · 11 years ago
  81. 0e1327e This exposes more MCJIT options via the C API: by Filip Pizlo · 11 years ago
  82. a4fa74e Wrap some lines to bring MCJITCAPITest into conformance with the 80 column limit. by Filip Pizlo · 11 years ago
  83. 2a83943 Try to fix ProgramTest on FreeBSD by Reid Kleckner · 11 years ago
  84. d2755af Exposing MCJIT through C API by Andrew Kaylor · 11 years ago
  85. 1c48945 Re-enabling MCJIT object caching with memory leak fixed by Andrew Kaylor · 11 years ago
  86. 06fd5bf Revert "Adding object caching support to MCJIT" by Rafael Espindola · 11 years ago
  87. 7467e5e Revert "Exposing MCJIT through C API" by Rafael Espindola · 11 years ago
  88. 8c31b29 Exposing MCJIT through C API by Andrew Kaylor · 11 years ago
  89. 268adf2 Don't forward declare environ on Windows by Reid Kleckner · 11 years ago
  90. 26b222e Fixing cmake build for MCJIT unit tests by Andrew Kaylor · 11 years ago
  91. 07f0392 Adding object caching support to MCJIT by Andrew Kaylor · 11 years ago
  92. 8eca677 Un-revert the environ copy in ProgramTest after fixing it on OS X by Reid Kleckner · 11 years ago
  93. a0bd5df Add more guards around zlib-dependent code by Alexey Samsonov · 11 years ago
  94. ee03c94 Add basic zlib support to LLVM. This would allow to use compression/uncompression in selected LLVM tools. by Alexey Samsonov · 11 years ago
  95. 2c8dc64 Revert "Add a missing reference on a std::vector<> out param" by Michael Gottesman · 11 years ago
  96. 0af5493 Add a missing reference on a std::vector<> out param by Reid Kleckner · 11 years ago
  97. 6641fa7 [Support] Propagate the environment into the test child process by Reid Kleckner · 11 years ago
  98. 0b675d8 [Support] Fix argv string escape bug on Windows by Reid Kleckner · 11 years ago
  99. cd61455 Create a stub for DWARF parser unittests by Alexey Samsonov · 11 years ago
  100. 71c1b22 Fix a disconcerting bug in Value::isUsedInBasicBlock, which gave wrong answers for blocks larger than 3 instrs. by Benjamin Kramer · 11 years ago