1. dd763f4 Hrm, really, all tests passed without this, but it is scary to think how... by Chris Lattner · 20 years ago
  2. f6d1d7d Remove debugging printout Instcombine (setcc (truncate X), C1). by Chris Lattner · 20 years ago
  3. a41fc77 To go along with sabre's improved InstCombining, improve recognition of by Nate Begeman · 20 years ago
  4. 6a0ec6f Improve validity checking of windows path names and fix file creation problems. by Reid Spencer · 20 years ago
  5. ced4110 Use llvm::sys::Path to destroy the file. by Reid Spencer · 20 years ago
  6. 10366a4 Win32 implementation of TimeValue::now(). by Reid Spencer · 20 years ago
  7. d722bf5 FreeBSD implementation of the TimeValue::now() method. by Reid Spencer · 20 years ago
  8. b4f40d2 Fold (X setcc C1) | (X setcc C2) by Chris Lattner · 20 years ago
  9. 0b94884 New testcase by Chris Lattner · 20 years ago
  10. 955f331 Fold (and (setcc X, C1), (setcc X, C2)) by Chris Lattner · 20 years ago
  11. 7f12bbb * Add `deplibs' keyword for specifying a list of dependent libraries by Misha Brukman · 20 years ago
  12. 137c8fb Add `deplibs' keyword for specifying a list of dependent libraries by Misha Brukman · 20 years ago
  13. 3b03395 New testcases by Chris Lattner · 20 years ago
  14. 8d5c503 Add support for the isLoad and isStore flags, needed by the instruction scheduler by Nate Begeman · 20 years ago
  15. cdd66b5 Add support for the isLoad and isStore flags, needed by the instruction scheduler by Nate Begeman · 20 years ago
  16. 5b71d3a Turn the hasDelaySlot flag into the M_DELAY_SLOT_FLAG by Chris Lattner · 20 years ago
  17. 49db6fe Be consistent with our naming by Chris Lattner · 20 years ago
  18. 7baaf09 Capture delay slot info by Chris Lattner · 20 years ago
  19. dcc4a6f Capture information about whether the target instructions have delay slots by Chris Lattner · 20 years ago
  20. 18d19ca Implement X / C1 / C2 folding Implement (setcc (shl X, C1), C2) folding. by Chris Lattner · 20 years ago
  21. 46c4dcd New testcase by Chris Lattner · 20 years ago
  22. 59359f1 New testcases by Chris Lattner · 20 years ago
  23. 0cba71b shl is always zero extending, so always use a zero extending shift right. by Chris Lattner · 20 years ago
  24. 8fb6882 New testcase for a latent bug in instcombine that I have been chasing for by Chris Lattner · 20 years ago
  25. e39cd63 * InstructionReader.cpp was absorbed into Reader.cpp * Wrap at 80 cols by Misha Brukman · 20 years ago
  26. 44666b1 Fix doxygen comment by Misha Brukman · 20 years ago
  27. 90c82b9 Touch output files before reading or writing them, so that they are by Brian Gaeke · 20 years ago
  28. ef672a6 Corrected spelling of Makefile variable, thereby re-enabling profile by John Criswell · 20 years ago
  29. c72c617 Add includes and use std:: for standard library calls to make code by Alkis Evlogimenos · 20 years ago
  30. 98e81bf Bug fixed by Chris Lattner · 20 years ago
  31. f9b28d2 Testcase for LLVM PR445 by Chris Lattner · 20 years ago
  32. f3ba6dd Since we use alloca now make sure we include the proper headers for it. by Alkis Evlogimenos · 20 years ago
  33. 0ee6e2a Use alloca instead of a C99 style array. This should fix the by Alkis Evlogimenos · 20 years ago
  34. 200a360 Pull assignment out of for loop conditional in order for this to by Alkis Evlogimenos · 20 years ago
  35. c4d3b91 Fix includes. Patch contributed by Paolo Invernizzi! by Alkis Evlogimenos · 20 years ago
  36. 584902e New testcase that crashes the C++ FE, encountered while working on PR445 by Chris Lattner · 20 years ago
  37. 148d206 Use class instead of struct for defining classes. This unbreaks the by Alkis Evlogimenos · 20 years ago
  38. e19d7a7 Patch contributed by Patrick Meredith: by Chris Lattner · 20 years ago
  39. ad405ce Fix grammar. by Misha Brukman · 20 years ago
  40. 83c4ec0 Fix two bugs: one where a condition was mistakenly swapped, and another by Chris Lattner · 20 years ago
  41. dffb445 New testcase by Chris Lattner · 20 years ago
  42. f90a656 SparcV8 int regs are not only 32-bits in width, but they are 32-bit aligned! by Misha Brukman · 20 years ago
  43. 56bc894 The system ranlib on darwin occasionally adds two extra newlines to the by Chris Lattner · 20 years ago
  44. 48f44cf Hrm, if there is an error loading a file, try printing a message so the by Chris Lattner · 20 years ago
  45. 907c7c7 Testcases for rev 250 of InstructionCombining.cpp by Chris Lattner · 20 years ago
  46. f63f647 Fold: (setcc (shr X, ShAmt), CI), where 'cc' is eq or ne. This xform by Chris Lattner · 20 years ago
  47. a281b6fa Improve warning by Alkis Evlogimenos · 20 years ago
  48. da721e7 Correct some BuildMI arguments for the upcoming simple scheduler by Nate Begeman · 20 years ago
  49. c6e7430 Fix the copy-pasto that Brian noticed: V8 int regs are 32-bits wide, not 64. by Misha Brukman · 20 years ago
  50. aefd04b Add some missing #includes by Reid Spencer · 20 years ago
  51. 8d9b680 Qualify Path with sys:: namespace so this file compiles. by Reid Spencer · 20 years ago
  52. 725f2c8 Updated to reflect changes in the interface of TimeValue::now(). by Reid Spencer · 20 years ago
  53. 45392b6 Clean up the interface of TimeValue: by Reid Spencer · 20 years ago
  54. 0d5716e Added stub implementations of TimeValue concept for remaining platforms. by Reid Spencer · 20 years ago
  55. 1fc194c Wrap to 80 cols. by Reid Spencer · 20 years ago
  56. 9926c31 Initial implementation of the TimeValue abstraction. by Reid Spencer · 20 years ago
  57. 4046846 Updated the last two header files so that they are configured with by John Criswell · 20 years ago
  58. 9f01186 Modified hash_map and hash_set configuration so that they are not by John Criswell · 20 years ago
  59. 0c96766 Implement shift-and combinations, implementing InstCombine/and.ll:test19-21 by Chris Lattner · 20 years ago
  60. 71dd801 Add some tests for shr-and folding by Chris Lattner · 20 years ago
  61. 5fbb1f8 Configure Datatypes.h.in with AC_CONFIG_HEADERS. This should prevent it by John Criswell · 20 years ago
  62. 648e3bc Move LHSI->hasOneUse() into the arms of the conditional, reindenting code. by Chris Lattner · 20 years ago
  63. b20ba0a Implement Transforms/InstCombine/and.ll:test18, a case that occurs 20 times by Chris Lattner · 20 years ago
  64. 7502ae6 New testcase for a pattern that occurs 20 times in perlbmk by Chris Lattner · 20 years ago
  65. b40df56 Add a blurb about the use of class vs. struct keyword in class decls. by Reid Spencer · 20 years ago
  66. 684fe21 Implement select.ll:test16: fold load (select C, X, null) -> load X by Chris Lattner · 20 years ago
  67. 60a11f1 load null is undefined behavior, this should fold by Chris Lattner · 20 years ago
  68. 530036b Change Value from a "struct" to a "class" so that VC 7.1 doesn't generate by Reid Spencer · 20 years ago
  69. f6cbc0f Patch for MINGW. Patch provided by Henrik Bach. by Reid Spencer · 20 years ago
  70. ad9590e Missed one $*.a -> $@ conversion for the Release build. by Reid Spencer · 20 years ago
  71. 645495d Fix the last of the major PPC GEP folding deficiencies. This will allow by Nate Begeman · 20 years ago
  72. ab5948f Update email address by Alkis Evlogimenos · 20 years ago
  73. 4ce08a0 Grrr... I shouldn't have to do this one :) by Chris Lattner · 20 years ago
  74. f69dcb1 Update credits by Chris Lattner · 20 years ago
  75. 53a4b60 Correct the rules for making shared libraries per libtool 1.5.10 by Reid Spencer · 20 years ago
  76. c95759c Use the V8/V9 shared register file description by Misha Brukman · 20 years ago
  77. c42077d Combine the F2 and F3 instruction classes into one file for simplicity by Misha Brukman · 20 years ago
  78. 31b5edd Fix file header path by Misha Brukman · 20 years ago
  79. 981eefd Prettify formatting of the file, adjust paths to making V8 a subdir of Sparc by Misha Brukman · 20 years ago
  80. 2ec09e7 V8 is now a subdirectory of Sparc; adjust paths accordingly by Misha Brukman · 20 years ago
  81. 358e685 Update to add the HAVE_UINT64_T test and the STACK_DIRECTION indicator. by Reid Spencer · 20 years ago
  82. 023f212 The alloca function, strangely enough, is found in the malloc.h header file by Reid Spencer · 20 years ago
  83. a2de102 add optimized code sequences for setcc x, 0 by Nate Begeman · 20 years ago
  84. 3d834bf Do not fold (X + C1 != C2) if there are other users of the add. Doing by Chris Lattner · 20 years ago
  85. 65cbfa0 The real x87 floating point registers should not be allocatable. They by Alkis Evlogimenos · 20 years ago
  86. 540c82a s/ISel/PPC64ISel/ to have unique class names for debugging via gdb because the by Misha Brukman · 20 years ago
  87. a1dca55 s/ISel/PPC32ISel/ to have unique class names for debugging via gdb because the by Misha Brukman · 20 years ago
  88. eae1bf1 s/ISel/X86ISel/ to have unique class names for debugging via gdb because the C++ by Misha Brukman · 20 years ago
  89. 8cbee4e Make sure to set the operand list by Chris Lattner · 20 years ago
  90. 8b93e7a Fix a problem where the mmap_file test was generating an incorrect test by Reid Spencer · 20 years ago
  91. 5d6c4a5 Change the warning text so that NO warnings are permitted. This is now the by Reid Spencer · 20 years ago
  92. c2186e2 Don't attempt to (illegally) configure a subdir if we don't recognize it. by Reid Spencer · 20 years ago
  93. 91b5380 Fix the program passed to AC_LANG_PROGRAM to be only the BODY of the main by Reid Spencer · 20 years ago
  94. 323ed35 Thanks to Brad Jones for packed type support! by Misha Brukman · 20 years ago
  95. 39dccd8 Thanks to Brad for documentation on adding a DerivedType by Misha Brukman · 20 years ago
  96. e704e49 This is an empty directory by Chris Lattner · 20 years ago
  97. 9c15698 This is a dead directory now by Chris Lattner · 20 years ago
  98. 641f7ef Change the name of the "known" module for Java from llvm-java to Java. by Reid Spencer · 20 years ago
  99. 7e2315e Use the right directory for the Java frontend by Alkis Evlogimenos · 20 years ago
  100. 79f0c8e Fix potential miscompilations: InstCombine/2004-09-20-BadLoadCombine*.llx by Chris Lattner · 20 years ago