1. e35eed2 Disable this test for the time being as debug is brought up to speed. by Jim Laskey · 19 years ago
  2. dba382b add a simple optimization by Chris Lattner · 19 years ago
  3. 7e8443f Mention that delta can be used to reduce some Front-end problems. by Chris Lattner · 19 years ago
  4. ed51a0f Add SRoA to the lexicon. Patch by Marco Matthies! by Chris Lattner · 19 years ago
  5. 3468864 Added options -cflag, -cxxflags, and -ldflags to override the default C by Evan Cheng · 19 years ago
  6. 7560c3a Simplify some code, reducing calls to MaskedValueIsZero. Implement a minor by Chris Lattner · 19 years ago
  7. 917707a Remove -pedantic. It no longer works. by Evan Cheng · 19 years ago
  8. cb29890 more email -> README moving by Chris Lattner · 19 years ago
  9. 4d73a5a Emit the 'mr' pseudoop for easier reading. by Chris Lattner · 19 years ago
  10. 8f77b73 Add some random notes, not high-prio by Chris Lattner · 19 years ago
  11. 8d3f490 Move emails from nate into public places by Chris Lattner · 19 years ago
  12. 9ca9641 Use EraseInstFromFunction in a few cases to put the uses of the removed by Chris Lattner · 19 years ago
  13. fe243eb Implement some more interesting select sccp cases. This implements: by Chris Lattner · 19 years ago
  14. d27460f new testcase for more interesting select sccp cases by Chris Lattner · 19 years ago
  15. 3391bcd Compile this: by Chris Lattner · 19 years ago
  16. 5819342 Add some happy helper methods. by Chris Lattner · 19 years ago
  17. 62d1ade Fix a problem in my patch yesterday, causing a miscompilation of 176.gcc by Chris Lattner · 19 years ago
  18. 5ada370 Fixed a local common symbol bug. by Evan Cheng · 19 years ago
  19. 315421e For ELF, .comm takes alignment value as the optional 3rd argument. It must be by Evan Cheng · 19 years ago
  20. ad3bc8d Implement getConstraintType for PPC. by Chris Lattner · 19 years ago
  21. eac707f getConstraintType should be virtual. by Chris Lattner · 19 years ago
  22. d89d888 Fix Transforms/InstCombine/2006-02-07-SextZextCrash.ll by Chris Lattner · 19 years ago
  23. 78ee0ad new testcase that caused instcombine to crash on 176.gcc last night. by Chris Lattner · 19 years ago
  24. 2338c5c Darwin ABI issues: weak, linkonce, etc. dynamic-no-pic support is complete. by Evan Cheng · 19 years ago
  25. 183fff9 Remind myself to add PIC and static asm printer support. by Evan Cheng · 19 years ago
  26. 74c51a0 Generalize MaskedValueIsZero into a ComputeMaskedNonZeroBits function, which by Chris Lattner · 19 years ago
  27. 3bedbd9 Make MaskedValueIsZero take a uint64_t instead of a ConstantIntegral as a by Chris Lattner · 19 years ago
  28. 1a074fc Use Type::getIntegralTypeMask() to simplify some code by Chris Lattner · 19 years ago
  29. 6dce1a7 Implement the beginnings of a facility for simplifying expressions based on by Chris Lattner · 19 years ago
  30. ab0e04c add a new Type::getIntegralTypeMask() method, which is useful for clients that by Chris Lattner · 19 years ago
  31. 8c9191c The interpreter assumes that the caller of runFunction() must be lli, and by Jeff Cohen · 19 years ago
  32. 68835dd Teach the interpreter to handle global variables that are added to a module after by Jeff Cohen · 19 years ago
  33. aa02c1d Fix some truncation warnings. by Jeff Cohen · 19 years ago
  34. 03a9939 fix an error compiling with -pedantic by Chris Lattner · 19 years ago
  35. 763317d Add the simple PPC integer constraints by Chris Lattner · 19 years ago
  36. 21ad392 Hoist all SDOperand declarations within a Select_{opcode}() to the top level by Evan Cheng · 19 years ago
  37. a3b8c57 Eliminate the printCallOperand method, using a 'call' modifier on by Chris Lattner · 19 years ago
  38. 04cadb3 Add support for modifier strings in machine instr descriptions. This allows by Chris Lattner · 19 years ago
  39. b03b080 Simplify the variant handling code, no functionality change. by Chris Lattner · 19 years ago
  40. 815ef5b Change prototype by Chris Lattner · 19 years ago
  41. a36cb0a Add support for modifier characters to operand printers by Chris Lattner · 19 years ago
  42. f483e58 Change the prototype of PrintAsmOperand by Chris Lattner · 19 years ago
  43. f60c241 Goodbye nasty macro. by Jim Laskey · 19 years ago
  44. c2f0c8d Edit requests from Sabre. by Jim Laskey · 19 years ago
  45. 054e2a7 see what this allignment thing will do by Andrew Lenharth · 19 years ago
  46. 86cbdba Changing model for the construction of debug information. by Jim Laskey · 19 years ago
  47. 984cb37 We seem to have settled to __DWARF for section name. by Jim Laskey · 19 years ago
  48. 7cd19d0 At the end of isel, select a replacement node for each handle that does not by Evan Cheng · 19 years ago
  49. 024524f Name change. by Evan Cheng · 19 years ago
  50. 5e35168 - Update load folding checks to match those auto-generated by tblgen. by Evan Cheng · 19 years ago
  51. 0a83ed5 Handle HANDLENODE: just return itself. by Evan Cheng · 19 years ago
  52. 7564e0b Complex pattern isel code shouldn't select nodes. by Evan Cheng · 19 years ago
  53. c26017a Fix the Sparc backend with Evan's recent tblgen changes by Chris Lattner · 19 years ago
  54. cb0dfba SparcV8 -> Sparc by Chris Lattner · 19 years ago
  55. 33872c9 This xform isn't safe by Chris Lattner · 19 years ago
  56. be71442 Back out previous commit, it isn't safe. by Nate Begeman · 19 years ago
  57. bab9239 fold c1 << (x + c2) into (c1 << c2) << x. fix a warning. by Nate Begeman · 19 years ago
  58. 176f041 some stuff is done by Chris Lattner · 19 years ago
  59. 5f3b0ee Turn A % (C << N), where C is 2^k, into A & ((C << N)-1) [urem only]. by Chris Lattner · 19 years ago
  60. fee906b new testcases by Chris Lattner · 19 years ago
  61. c031e33 Handle urem by shifted powers of 2. by Nate Begeman · 19 years ago
  62. fb5e4bd handle combining A / (B << N) into A >>u (log2(B)+N) when B is a power of 2 by Nate Begeman · 19 years ago
  63. 900c826 Use SelectRoot() as the entry to any tblgen based isel. by Evan Cheng · 19 years ago
  64. ba2f0a9 Use SelectRoot() as entry of any tblgen based isel. by Evan Cheng · 19 years ago
  65. 23c5b3c Encourage use of the V8 ABI over the V9 ABI. by Chris Lattner · 19 years ago
  66. e41bf82 Allow more loads to be folded which were previously prevented from happening by Evan Cheng · 19 years ago
  67. 029e844 This document is out of date. :( by Chris Lattner · 19 years ago
  68. 58504a6 V8 -> Sparc by Chris Lattner · 19 years ago
  69. c6aaf5a Remove the SparcV8 backend. It has been renamed to be the Sparc backend. by Chris Lattner · 19 years ago
  70. e7c839e remove V8 reference by Chris Lattner · 19 years ago
  71. 4ee6211 * Added SDNode::isOnlyUse(). * Fix hasNUsesOfValue(), it should be const. by Evan Cheng · 19 years ago
  72. 3540922 SparcV8 -> Sparc by Chris Lattner · 19 years ago
  73. 762236c SparcV8 -> Sparc by Chris Lattner · 19 years ago
  74. e107016 These were moved to ../SPARC by Chris Lattner · 19 years ago
  75. 7ce1bbf move V8 testcases here by Chris Lattner · 19 years ago
  76. 7c90f73 Rename SPARC V8 target to be the LLVM SPARC target. by Chris Lattner · 19 years ago
  77. 2138453 add a note by Chris Lattner · 19 years ago
  78. 7dd281b Re-commit the last bit of change that was backed out. by Evan Cheng · 19 years ago
  79. 2216d8a Re-committing the last bit of change. It shouldn't break PPC this time. by Evan Cheng · 19 years ago
  80. 519ea2a make sure that global doubles are aligned to 8 bytes by Chris Lattner · 19 years ago
  81. ff805b5 Use getPreferredAlignmentLog. by Chris Lattner · 19 years ago
  82. 7d8d5a5 Use the asmprinter to find out what the preferred alignment of a global is. by Chris Lattner · 19 years ago
  83. 4d57e0c Implement the AsmPrinter::getPreferredAlignmentLog method. by Chris Lattner · 19 years ago
  84. 28adf29 add a new method, getPreferredAlignmentLog. by Chris Lattner · 19 years ago
  85. fd89543 linkage fix for weak functions by Andrew Lenharth · 19 years ago
  86. f3afef3 Fix VC++ warning. by Jeff Cohen · 19 years ago
  87. 0a70f21 Use SCEVExpander::InsertCastOfTo instead of our own code. This reduces by Chris Lattner · 19 years ago
  88. ca1a4be Pull the InsertCastOfTo out of the header, implement CSE'ing of arguments. by Chris Lattner · 19 years ago
  89. ed412ac Refactor a bunch of code into a non-inlined method by Chris Lattner · 19 years ago
  90. b46ef67 Temporarily revert this patch, which probably breaks with the by Chris Lattner · 19 years ago
  91. 9ed4481 Temporarily revert the last change, which breaks PPC and other targets that by Chris Lattner · 19 years ago
  92. 03f774a Value# select instructions, allowing -gcse to remove duplicates by Chris Lattner · 19 years ago
  93. 9c4815a Complex pattern's custom matcher should not call Select() on any operands. by Evan Cheng · 19 years ago
  94. c275dfa Custom lower VAARG for the case when we are doing vaarg(double). In this by Chris Lattner · 19 years ago
  95. c4b612b Fix a nasty typo that broke functions with big stack frames. by Chris Lattner · 19 years ago
  96. 329a515 fix a bug in my last checkin by Chris Lattner · 19 years ago
  97. 221fc3c Fix two significant bugs in LSR: by Chris Lattner · 19 years ago
  98. a6973c3 Remove some stuff that now works by Nate Begeman · 19 years ago
  99. 0d913ea add a note by Chris Lattner · 19 years ago
  100. 69d3909 Two changes: by Chris Lattner · 19 years ago