1. 7ba11c5 Remove custom expansion from LegalizeTypes when doing by Duncan Sands · 16 years ago
  2. 3a2eb29 Add missing select_cc libcall line, somehow omitted in LegalizeTypes. by Duncan Sands · 16 years ago
  3. 8013954 improve comment by Chris Lattner · 16 years ago
  4. 663ceeb Add a new hidden option to the interpreter to cause it to print by Chris Lattner · 16 years ago
  5. 7104296 Fix PR2496, a really nasty bug which involved sinking volatile loads by Chris Lattner · 16 years ago
  6. ab8faba Unbreak C++ tests on x86 Darwin. by Evan Cheng · 16 years ago
  7. 28124ac LegalizeTypes support for FP_ROUND and FP_EXTEND soft float. by Duncan Sands · 16 years ago
  8. cfa3c23 Add some helpers for manipulating function parameter attributes. by Duncan Sands · 16 years ago
  9. 1512642 Pacify gcc-4.3. by Duncan Sands · 16 years ago
  10. 2e033f3 Add some convenience methods for manipulating call attributes. by Duncan Sands · 16 years ago
  11. 155a490 Fix three bugs: by Chris Lattner · 16 years ago
  12. 6177fd4 Expand SCEVUDiv of power of 2 to a lshr instruction. by Nick Lewycky · 16 years ago
  13. 77c8f76 Avoid unnecessary string construction during asm printing. by Evan Cheng · 16 years ago
  14. 8e5f2c6 Pool-allocation for MachineInstrs, MachineBasicBlocks, and by Dan Gohman · 16 years ago
  15. 0e5f130 Pool-allocation for SDNodes. The pool is allocated once for each function, by Dan Gohman · 16 years ago
  16. e14d81d Add some basic Pool-allocation infrastructure. This adds a Recycler class, by Dan Gohman · 16 years ago
  17. 19d6d42 Clean up PPC register specification. by Evan Cheng · 16 years ago
  18. ae270f6 ATT asm printer just print register AsmName's instead of calling tolower on each charater of Name. This speeds it up by 10%. by Evan Cheng · 16 years ago
  19. b7c3e86 TargetRegisterDesc::Name field is the same as the abstract register name. There is no need for targets to specify register names in addition to their AsmName's. by Evan Cheng · 16 years ago
  20. 4925567 Use the canonical way to get an empty structure. by Bill Wendling · 16 years ago
  21. 667a68b Use StringMap for greater justice! by Bill Wendling · 16 years ago
  22. 0fe9c6e Fix SDNode::MorphNodeTo (a function used by by SelectNodeTo) to by Dan Gohman · 16 years ago
  23. ce42e40 Move MachineMemOperand's constructor out of line, to avoid a by Dan Gohman · 16 years ago
  24. 2d97918 Simplify this use of BuildMI. This is also in preparation for by Dan Gohman · 16 years ago
  25. fd3ff03 Use of operator* is redundant and confusing here. by Dan Gohman · 16 years ago
  26. 4542611 Minor const-correctness fixes. by Dan Gohman · 16 years ago
  27. 03bafaf Assert that all MachineInstrs update PhysRegUseDefLists in their cleanup code. by Dan Gohman · 16 years ago
  28. 1ce75dc Fix two serious LSR bugs. by Evan Cheng · 16 years ago
  29. 85e9212 fixed 32-bit fp_to_sint pattern by Bruno Cardoso Lopes · 16 years ago
  30. 6d9cdd5 Remove most of the uses of SDOperandPtr, usually replacing it with a by Dan Gohman · 16 years ago
  31. 1002c02 Add explicit keywords. by Dan Gohman · 16 years ago
  32. eccfb6a Use empty() instead of size(). by Dan Gohman · 16 years ago
  33. 6b345ee Make DenseMap's insert return a pair, to more closely resemble std::map. by Dan Gohman · 16 years ago
  34. 21cacc4 LegalizeSetCCOperands should legalize the result of ExpandLibCall. Patch by Richard Osborne. by Evan Cheng · 16 years ago
  35. 01eaf80 Handle 'lshr' instruction with SCEVUDiv object. Comment the xor %x, -1 case. by Nick Lewycky · 16 years ago
  36. 8870ce9 Prevent option name conflict. by Bill Wendling · 16 years ago
  37. 990f032 LegalizeTypes soft-float support for stores of a float value. by Duncan Sands · 16 years ago
  38. 80585f1 Add convenient helper for checking whether global is weak in linker sense by Anton Korobeynikov · 16 years ago
  39. f88bc65 Override weak stuff during linking of aliases. This fixes PR2463. by Anton Korobeynikov · 16 years ago
  40. 194c2ce Properly link alias and function decls. This fixes PR2146 by Anton Korobeynikov · 16 years ago
  41. b8cd6a4 Fix missed optimization opportunity when analyzing cast of mul and select. by Nick Lewycky · 16 years ago
  42. 364d73d Fixed generating incorrect aligned stores that I backout of r53031 by Mon P Wang · 16 years ago
  43. 225ca9c Several changes to Mips backend, experimental fp support being the most by Bruno Cardoso Lopes · 16 years ago
  44. 126d907 Rather than having a different custom legalization by Duncan Sands · 16 years ago
  45. ececf99 Linux also does not require exception handling by Duncan Sands · 16 years ago
  46. c04f465 Don't return std::vector by value, but pass it in by reference to be filled. by Bill Wendling · 16 years ago
  47. 10fff60 Revert my previous check-in that split up MachineModuleInfo. It turns out to by Bill Wendling · 16 years ago
  48. a122f2f Backed out 53031. by Evan Cheng · 16 years ago
  49. cb26273 Back out 53091 for now. by Evan Cheng · 16 years ago
  50. 0ae33ef Use information already present in the ValueTable to fast-fail when we know there won't be a value number match. This speeds up GVN on a case where there are very few redundancies by ~25%. by Owen Anderson · 16 years ago
  51. 77a0113 Do not try to update dominator info while manipulating CFG. This code does not handle all cases and keeps invalid dom info around some cases, which misleads other passes down stream. by Devang Patel · 16 years ago
  52. 9da02b8 Remove the ability for ADCE to remove unreachable blocks in loop nests, because, as Eli pointed out, SimplifyCFG already does this. by Owen Anderson · 16 years ago
  53. 9f1c831 - Remove calls to copyKillDeadInfo which is an N^2 function. Instead, propagate kill / dead markers as new instructions are constructed in foldMemoryOperand, convertToThressAddress, etc. by Evan Cheng · 16 years ago
  54. 10b9de6 Add newline at the end of Constants.cpp. by Matthijs Kooijman · 16 years ago
  55. f550f47 llvm-gcc sometimes marks external declarations hidden, because intializers are by Anton Korobeynikov · 16 years ago
  56. 38976dc Remove unused function. by Bill Wendling · 16 years ago
  57. 98260a4 Preserve dom info. by Devang Patel · 16 years ago
  58. 70c09c5 Keep track of inherited analysis (e.g. dominator tree). by Devang Patel · 16 years ago
  59. f31b3bb Remove extra FIXME by Devang Patel · 16 years ago
  60. 4be7d29 Reconstruct dom info, if loop is unswitched. by Devang Patel · 16 years ago
  61. b76247b LoopUnswitch does not preserve dominator info in all cases. by Devang Patel · 16 years ago
  62. 2ebc11a Reapply r52988, "Simplify addRegisterKilled and addRegisterDead." The by Dan Gohman · 16 years ago
  63. 8de552d Use operator new instead of new char[]. by Dan Gohman · 16 years ago
  64. 9b44c1f Avoid unnecessarily copying APInt objects. by Dan Gohman · 16 years ago
  65. ce3c413 Correct a comment. by Dan Gohman · 16 years ago
  66. 5b9f60b Use std::replace instead of std::find and push_back. by Evan Cheng · 16 years ago
  67. 825cb98 Undo previous patch. It is not that simple to fix dom info here. by Devang Patel · 16 years ago
  68. be04dc1 - Add LiveVariables::replaceKillInstruction. This does a subset of instructionChanged. That is, it only update the VarInfo.kills if the new instruction is known to have the correct dead and kill markers. by Evan Cheng · 16 years ago
  69. 457b88f commuteInstruction should preserve dead markers. by Evan Cheng · 16 years ago
  70. f660c17 Make LiveVariables even more optional, by making it optional in the call to TargetInstrInfo::convertToThreeAddressInstruction by Owen Anderson · 16 years ago
  71. cd920d9 Replace a few uses of SelectionDAG::getTargetNode with by Dan Gohman · 16 years ago
  72. 501e763 Preserve dom info while simplifing loop after the unswitch. by Devang Patel · 16 years ago
  73. 8b69135 Revert r52988. It broke 254.gap on x86-64. by Dan Gohman · 16 years ago
  74. 802af11 TwoAddressInstructionPass doesn't really require LiveVariables, it just needs to update it if it's already around. by Owen Anderson · 16 years ago
  75. ea6462b Use df_ext_iterator to capture the reachable set without allocating an extra set. by Owen Anderson · 16 years ago
  76. cb29a4f Avoid a redundant call. by Owen Anderson · 16 years ago
  77. 77d76b7 Add support to ADCE for pruning unreachable blocks. This addresses the final by Owen Anderson · 16 years ago
  78. 4bdcb61 Add a new getMergeValues method that does not need by Duncan Sands · 16 years ago
  79. 2c04b0d Use DenseSet rather than SmallPtrSet for the alive set. Using SmallPtrSet by Owen Anderson · 16 years ago
  80. f2aa160 A better fix for PR2503 that doesn't pessimize GVN in the presence of unreachable blocks. by Owen Anderson · 16 years ago
  81. bee98c6 Fixed problem in EmitStackConvert where the source and target type by Mon P Wang · 16 years ago
  82. 349db17 instead of aborting on shifts of i1, just implicitly fold them. by Chris Lattner · 16 years ago
  83. 8dd5af5 Fix typo compounded by a cut-and-pasto. by Duncan Sands · 16 years ago
  84. 3a38e5e Let AnalyzeNewNode take care of calling ExpungeNode. by Duncan Sands · 16 years ago
  85. c6be777 - Use a faster priority comparison function if -fast. - Code clean up. by Evan Cheng · 16 years ago
  86. fce6e54 Add a new (simple) StringMap::clear method, patch by Pratik Solanki! by Chris Lattner · 16 years ago
  87. 1e41f6d reuse vectors. by Devang Patel · 16 years ago
  88. 2095c38 Fix comment. by Devang Patel · 16 years ago
  89. e6962df Preserve loop data so that it is not fetched everytime it is needed. by Devang Patel · 16 years ago
  90. 3a43a7f Use the canonical form for getting an empty structure. by Bill Wendling · 16 years ago
  91. 12432cf Sorry. I couldn't sleep at night knowing I put these ugly casts into the source tree. by Bill Wendling · 16 years ago
  92. 72e61b8 Add a version of AddString that takes a const char* so we can avoid extraneous by Owen Anderson · 16 years ago
  93. aa8f888 Darwin doesn't need exception handling information for the "move" info when by Bill Wendling · 16 years ago
  94. 6547e40 Avoid creating expensive comment string if it's not going to be printed. by Evan Cheng · 16 years ago
  95. 4474c79 No need to use std::distance. We can just count the number of operands by Owen Anderson · 16 years ago
  96. 1096734 Simplify addRegisterKilled and addRegisterDead. by Evan Cheng · 16 years ago
  97. a28cd12 - Update comments. by Bill Wendling · 16 years ago
  98. 62bc8a4 Fix longstanding thinko: don't exclude by Dale Johannesen · 16 years ago
  99. f35cfe1 Disable dom info verifier by default. by Devang Patel · 16 years ago
  100. 6518c6e Eliminate a compile time warning. by Evan Cheng · 16 years ago