Skip to content
  1. Apr 01, 2010
  2. Mar 30, 2010
  3. Mar 13, 2010
  4. Mar 10, 2010
  5. Feb 17, 2010
  6. Feb 10, 2010
  7. Feb 09, 2010
  8. Jan 26, 2010
  9. Jan 20, 2010
  10. Jan 15, 2010
  11. Jan 05, 2010
    • David Greene's avatar
      · 6c56cefe
      David Greene authored
      Change errs() to dbgs().
      
      llvm-svn: 92542
      6c56cefe
  12. Dec 16, 2009
  13. Dec 15, 2009
  14. Dec 14, 2009
  15. Dec 11, 2009
    • Bill Wendling's avatar
      Don't try to move a MBB into the fall-through position if it's a landing pad or · b87b9925
      Bill Wendling authored
      branches only to a landing pad. Without this check, the compiler would go into
      an infinite loop because the branch to a landing pad is an "abnormal" edge which
      wasn't being taken into account.
      
      This is the meat of that fix:
      
        if (!PrevBB.canFallThrough() && !MBB->BranchesToLandingPad(MBB)) {
      
      The other stuff is simplification of the "branches to a landing pad" code.
      
      llvm-svn: 91161
      b87b9925
    • Bill Wendling's avatar
      Revert part of r91101 which was causing an infinite loop in the self-hosting · 9f13fc7d
      Bill Wendling authored
      build bots.
      
      llvm-svn: 91113
      9f13fc7d
    • Bill Wendling's avatar
      Address comments on last patch: · a1bce0c4
      Bill Wendling authored
      - Loosen the restrictions when checking of it branches to a landing pad.
      - Make the loop more efficient by checking the '.insert' return value.
      - Do cheaper checks first.
      
      llvm-svn: 91101
      a1bce0c4
    • Bill Wendling's avatar
      A machine basic block may end in an unconditional branch, however it may have · a581aacd
      Bill Wendling authored
      more than one successor. Normally, these extra successors are dead. However,
      some of them may branch to exception handling landing pads. If we remove those
      successors, then the landing pads could go away if all predecessors to it are
      removed. Before, it was checking if the direct successor was the landing
      pad. But it could be the result of jumping through multiple basic blocks to get
      to it. If we were to only check for the existence of an EH_LABEL in the basic
      block and not remove successors if it's in there, then it could stop actually
      dead basic blocks from being removed.
      
      llvm-svn: 91092
      a581aacd
  16. Dec 05, 2009
  17. Dec 03, 2009
  18. Nov 26, 2009
    • Bob Wilson's avatar
      Split tail duplication into a separate pass. This is needed to avoid · 2d4ff12d
      Bob Wilson authored
      running tail duplication when doing branch folding for if-conversion, and
      we also want to be able to run tail duplication earlier to fix some
      reg alloc problems.  Move the CanFallThrough function from BranchFolding
      to MachineBasicBlock so that it can be shared by TailDuplication.
      
      llvm-svn: 89904
      2d4ff12d
  19. Nov 22, 2009
  20. Nov 20, 2009
  21. Nov 17, 2009
  22. Nov 12, 2009
  23. Nov 11, 2009
    • Dan Gohman's avatar
      Add support for tail duplication to BranchFolding, and extend · 64b5d0f4
      Dan Gohman authored
      tail merging support to handle more cases.
       - Recognize several cases where tail merging is beneficial even when
         the tail size is smaller than the generic threshold.
       - Make use of MachineInstrDesc::isBarrier to help detect
         non-fallthrough blocks.
       - Check for and avoid disrupting fall-through edges in more cases.
      
      llvm-svn: 86871
      64b5d0f4
  24. Oct 31, 2009
    • Dan Gohman's avatar
      Make -print-machineinstrs more readable. · 34341e69
      Dan Gohman authored
       - Be consistent when referring to MachineBasicBlocks: BB#0.
       - Be consistent when referring to virtual registers: %reg1024.
       - Be consistent when referring to unknown physical registers: %physreg10.
       - Be consistent when referring to known physical registers: %RAX
       - Be consistent when referring to register 0: %reg0
       - Be consistent when printing alignments: align=16
       - Print jump table contents.
       - Don't print host addresses, in general.
       - and various other cleanups.
      
      llvm-svn: 85682
      34341e69
  25. Oct 30, 2009
  26. Aug 23, 2009
  27. Aug 18, 2009
  28. Aug 03, 2009
    • David Greene's avatar
      · ec9bc288
      David Greene authored
      Re-apply LiveInterval index dumping patch, with fixes suggested by Bill
      and others.
      
      llvm-svn: 78003
      ec9bc288
  29. Jul 24, 2009
Loading