1. 518bb53 move target-independent opcodes out of TargetInstrInfo by Chris Lattner · 15 years ago
  2. 071c62f Rearrange handling of jump tables. Highlights: by Chris Lattner · 15 years ago
  3. 465e2b9 by David Greene · 15 years ago
  4. fe586b3 Initialize uninitialized variables. by Bill Wendling · 15 years ago
  5. 408e9d1 Initialize uninitialized variables. by Bill Wendling · 15 years ago
  6. 43cf6c3 Revert these. They may have been causing 483_xalancbmk to fail: by Bill Wendling · 15 years ago
  7. c42a0b7 Don't try to move a MBB into the fall-through position if it's a landing pad or by Bill Wendling · 15 years ago
  8. 864e2ef Remove the target hook TargetInstrInfo::BlockHasNoFallThrough in favor of by Dan Gohman · 15 years ago
  9. 7896c9f improve portability to avoid conflicting with std::next in c++'0x. by Chris Lattner · 15 years ago
  10. 15acadd Split tail duplication into a separate pass. This is needed to avoid by Bob Wilson · 15 years ago
  11. f8c4cfb Refactor target hook for tail duplication as requested by Chris. by Bob Wilson · 15 years ago
  12. fbb6b67 There should be no need to keep renumbering blocks during tail duplication. by Bob Wilson · 15 years ago
  13. 60f34b9 Tail duplication still needs to iterate. Duplicating new instructions onto by Bob Wilson · 15 years ago
  14. 79d6210 Add another statistic to measure code size due to tail duplication. by Bob Wilson · 15 years ago
  15. 7cd5d3e Add statistics for tail duplication. by Bob Wilson · 15 years ago
  16. 834b08a Add a target hook to allow changing the tail duplication limit based on the by Bob Wilson · 15 years ago
  17. aa60dda Remove a special case for tail merging that seems to be both broken and by Bob Wilson · 15 years ago
  18. 37d60fd Set MadeChange instead of MadeChangeThisIteration. by Dan Gohman · 15 years ago
  19. 465c825 Update a comment, now that tail duplication happens after other branch by Bob Wilson · 15 years ago
  20. 56ea69c Perform tail duplication only once, after tail merging is complete. by Bob Wilson · 15 years ago
  21. 4a504c6 Fix a comment. by Bob Wilson · 15 years ago
  22. c4a0c84 Fix some comments. by Bob Wilson · 15 years ago
  23. d34f5d9 Whitespace: be consistent with pointer syntax. by Bob Wilson · 15 years ago
  24. 3cbc312 Clean up whitespace. by Bob Wilson · 15 years ago
  25. c4c550c When optimizing for size, don't tail-merge unless it's likely to be a by Dan Gohman · 15 years ago
  26. 72b2990 Make the BranchFolderPass class local to BranchFolding.cpp. by Dan Gohman · 15 years ago
  27. 8520149d Minor code cleanups. by Dan Gohman · 15 years ago
  28. ad6af45 Tail merge at any size when there are two potentials blocks and one by Dan Gohman · 15 years ago
  29. ffe644e Promote MergePotentialsElt and SameTailElt to be regular classes by Dan Gohman · 15 years ago
  30. 7cc253e Revert this line of 86871. by Dan Gohman · 15 years ago
  31. 2210c0b Add support for tail duplication to BranchFolding, and extend by Dan Gohman · 15 years ago
  32. cdc06ba Fix indentation level. by Dan Gohman · 15 years ago
  33. 4e3f125 Whitespace cleanups. by Dan Gohman · 15 years ago
  34. a127edc Prefix MBB numbers with "BB#" in debug output to make it clear what by Dan Gohman · 15 years ago
  35. d194498 Minor code simplification. by Dan Gohman · 15 years ago
  36. 7071528 Remove an unused variable. by Dan Gohman · 15 years ago
  37. b2e4099 Minor code simplification. by Dan Gohman · 15 years ago
  38. 888acc3 Fix branch folding bug for indirect branches: for a block containing only by Bob Wilson · 15 years ago
  39. ab91810 Don't delete blocks which have their address taken. by Dan Gohman · 15 years ago
  40. 7b888b8 Refactor complicated predicate into a separate function. by Bob Wilson · 15 years ago
  41. 2c04dae Reimplement BranchFolding change to avoid tail merging for a 1 instruction by Bob Wilson · 15 years ago
  42. a597103 Revert r85346 change to control tail merging by CodeGenOpt::Level. by Bob Wilson · 15 years ago
  43. cd4f04d Record CodeGen optimization level in the BranchFolding pass so that we can by Bob Wilson · 15 years ago
  44. 6d31268 Revert the main portion of r31856. It was causing BranchFolding by Dan Gohman · 15 years ago
  45. 030a0a0 Run branch folding if if-converter make some transformations. by Evan Cheng · 15 years ago
  46. b3c2742 Funky indentation. by Evan Cheng · 15 years ago
  47. 3403bcd Convert DOUT to DEBUG(errs()...). by Bill Wendling · 15 years ago
  48. da65822 Make tail merging handle blocks with repeated predecessors correctly, and by Dan Gohman · 15 years ago
  49. 1c5a287 Rewrite previous patch to follow Chris' stylistic by Dale Johannesen · 15 years ago
  50. 14e545d Fix PR 4626, a crash in branch folding after OptimizeBlock by Dale Johannesen · 15 years ago
  51. c23197a llvm_unreachable->llvm_unreachable(0), LLVM_UNREACHABLE->llvm_unreachable. by Torok Edwin · 15 years ago
  52. c25e758 assert(0) -> LLVM_UNREACHABLE. by Torok Edwin · 15 years ago
  53. bf06f6a Fix PR4188. TailMerging can't tolerate inexact sucessor info. by Dale Johannesen · 15 years ago
  54. dc54d31 Turns out AnalyzeBranch can modify the mbb being analyzed. This is a nasty by Evan Cheng · 16 years ago
  55. 1465d61 Rename getAnalysisToUpdate to getAnalysisIfAvailable. by Duncan Sands · 16 years ago
  56. 5d5ee80 Delete unnecessary parens around return values. by Dan Gohman · 16 years ago
  57. 0ffa3de Add a newline after this debug output. by Bill Wendling · 16 years ago
  58. 41474ba Add a sanity-check to tablegen to catch the case where isSimpleLoad by Dan Gohman · 16 years ago
  59. 622addb Increase default setting of tail-merge-threshold to by Dale Johannesen · 16 years ago
  60. d735b80 Switch the MachineOperand accessors back to the short names like by Dan Gohman · 16 years ago
  61. bbeeb2a Mark several codegen passes as preserving all analysis. by Evan Cheng · 16 years ago
  62. 014278e Remove isImm(), isReg(), and friends, in favor of by Dan Gohman · 16 years ago
  63. ae73dc1 Tidy up several unbeseeming casts from pointer to intptr_t. by Dan Gohman · 16 years ago
  64. 1501cdb Fix SmallVector's size calculation so that a size of 0 is by Dan Gohman · 16 years ago
  65. 44eb65c Convert uses of std::vector in TargetInstrInfo to SmallVector. This change had to be propoagated down into all the targets and up into all clients of this API. by Owen Anderson · 16 years ago
  66. 68d4d1d Fix PR2609. If a label is deleted, then it needs by Duncan Sands · 16 years ago
  67. 8e5f2c6 Pool-allocation for MachineInstrs, MachineBasicBlocks, and by Dan Gohman · 16 years ago
  68. 62bc8a4 Fix longstanding thinko: don't exclude by Dale Johannesen · 16 years ago
  69. 4406604 Split ISD::LABEL into ISD::DBG_LABEL and ISD::EH_LABEL, eliminating by Dan Gohman · 16 years ago
  70. 04478e5 Use the transferSuccessors helper function. by Dan Gohman · 16 years ago
  71. 679860e Rewrite a loop to avoid using iterators pointing to by Dale Johannesen · 16 years ago
  72. 844731a Clean up the use of static and anonymous namespaces. This turned up by Dan Gohman · 16 years ago
  73. 30562b7 Be more aggressive about tail-merging small blocks by Dale Johannesen · 16 years ago
  74. 51b2b9e Further rework of tail merge algorithm. Not quite by Dale Johannesen · 16 years ago
  75. 6b8583c Remove an evil vector bool. Cosmetic refactoring, no functional change. by Dale Johannesen · 16 years ago
  76. 6ae83fa Rewrite tail merging algorithm to handle the by Dale Johannesen · 16 years ago
  77. 4a3f6c8 Make several variable declarations static. by Dan Gohman · 17 years ago
  78. 80b09fe Teach branch folding pass about implicit_def instructions. Unfortunately we can't just eliminate them since register scavenger expects every register use to be defined. However, we can delete them when there are no intra-block uses. Carefully removing some implicit def's which enable more blocks to be optimized away. by Evan Cheng · 17 years ago
  79. fb8075d Add a quick and dirty "loop aligner pass". x86 uses it to align its loops to 16-byte boundaries. by Evan Cheng · 17 years ago
  80. 31886db PR1909: Tail merging pass ran wild. It makes no sense to merge blocks in order to save a single instruction since a branch will be inserted for each BB. by Evan Cheng · 17 years ago
  81. 6f0d024 Rename MRegisterInfo to TargetRegisterInfo. by Dan Gohman · 17 years ago
  82. 3035959 Use empty() instead of comparing size() with zero. by Dan Gohman · 17 years ago
  83. 749c6f6 rename TargetInstrDescriptor -> TargetInstrDesc. by Chris Lattner · 17 years ago
  84. 6924430 Rename MachineInstr::getInstrDescriptor -> getDesc(), which reflects by Chris Lattner · 17 years ago
  85. 834f1ce rename isLoad -> isSimpleLoad due to evan's desire to have such a predicate. by Chris Lattner · 17 years ago
  86. 2e48a70 rename isStore -> mayStore to more accurately reflect what it captures. by Chris Lattner · 17 years ago
  87. 8aa797a Add new shorter predicates for testing machine operands for various types: by Chris Lattner · 17 years ago
  88. 4ee451d Remove attribution from file headers, per discussion on llvmdev. by Chris Lattner · 17 years ago
  89. 11a4f64 Improve branch folding by recgonizing that explict successor relationships impact the value of fall-through choices. by Christopher Lamb · 17 years ago
  90. da6efc5 Changed XXX to FIXME, and added comment to the README file by Bill Wendling · 17 years ago
  91. 0713a22 Added comment explaining why we are doing this check. by Bill Wendling · 17 years ago
  92. 80629c8 Don't branch fold inline asm statements. by Bill Wendling · 17 years ago
  93. 61e729e More explicit keywords. by Dan Gohman · 17 years ago
  94. 97b4ac8 If assertions are not enabled, we should return False here. by Duncan Sands · 17 years ago
  95. 67fcdf7 Make this work with GLIBCXX_DEBUG. by David Greene · 17 years ago
  96. 8a46d34 Fix misue of iterator pointing to erased object. Uncovered by _GLIBCXX_DEBUG. by David Greene · 17 years ago
  97. 2bdb7d0 Move CorrectExtraCFGEdges() from BranchFolding.cpp to a MachineBasicBlock method. by Evan Cheng · 17 years ago
  98. 1a90a5a Make throttle a hidden parameter, per review. by Dale Johannesen · 17 years ago
  99. 53af4c0 Throttle tail merging; handling blocks with large numbers of predecessors by Dale Johannesen · 17 years ago
  100. fe7e397 Tail merging wasn't working for predecessors of landing pads. PR 1496. by Dale Johannesen · 17 years ago