Skip to content
  1. Mar 11, 2010
  2. Feb 18, 2010
  3. Feb 13, 2010
    • Jakob Stoklund Olesen's avatar
      Fix PR6283. · b659c76c
      Jakob Stoklund Olesen authored
      When coalescing with a physreg, remember to add imp-def and imp-kill when
      dealing with sub-registers.
      
      Also fix a related bug in VirtRegRewriter where substitutePhysReg may
      reallocate the operand list on an instruction and invalidate the reg_iterator.
      This can happen when a register is mentioned twice on the same instruction.
      
      llvm-svn: 96072
      b659c76c
  4. Feb 10, 2010
  5. Feb 09, 2010
  6. Jan 06, 2010
  7. Jan 05, 2010
  8. Dec 03, 2009
  9. Nov 20, 2009
  10. Nov 18, 2009
  11. Nov 14, 2009
  12. Nov 12, 2009
    • David Greene's avatar
      · 7cf326ae
      David Greene authored
      Set the ReloadReuse AsmPrinter flag where appropriate.
      
      llvm-svn: 87030
      7cf326ae
  13. Oct 29, 2009
  14. Oct 28, 2009
    • Dale Johannesen's avatar
      When we generate spill code, then decide we don't need · 14f162d9
      Dale Johannesen authored
      to spill after all, we weren't handling 2-instruction
      spill sequences correctly (PPC Altivec).  We need to
      remove the store in this case.  Removing the other
      instruction(s) would be goodness but is not needed for
      correctness, and isn't done here.  7331562.
      
      llvm-svn: 85437
      14f162d9
  15. Oct 26, 2009
    • Evan Cheng's avatar
      - Revert some changes from 85044, 85045, and 85047 that broke x86_64 tests and · b81cb2a9
      Evan Cheng authored
        bootstrapping. It's not safe to leave identity subreg_to_reg and insert_subreg
        around.
      - Relax register scavenging to allow use of partially "not-live" registers. It's
        common for targets to operate on registers where the top bits are undef. e.g.
        s0 =
        d0 = insert_subreg d0<undef>, s0, 1
        ...
           = d0
        When the insert_subreg is eliminated by the coalescer, the scavenger used to
        complain. The previous fix was to keep to insert_subreg around. But that's
        brittle and it's overly conservative when we want to use the scavenger to 
        allocate registers. It's actually legal and desirable for other instructions
        to use the "undef" part of d0. e.g.
        s0 =
        d0 = insert_subreg d0<undef>, s0, 1
        ...
        s1 =
           = s1
           = d0
        We probably need add a "partial-undef" marker on machine operand so the
        machine verifier would not complain.
      
      llvm-svn: 85091
      b81cb2a9
  16. Oct 25, 2009
  17. Oct 12, 2009
  18. Sep 06, 2009
  19. Sep 03, 2009
    • Lang Hames's avatar
      · 0b3720b3
      Lang Hames authored
      Fixed a test that ensures the LocalRewriter does not attempt to
      avoid reloads by reusing clobbered registers.
      
      This was causing issues in 256.bzip2 when compiled with PIC for
      a while (starting at r78217), though the problem has since been masked. 
      
      llvm-svn: 80872
      0b3720b3
  20. Aug 23, 2009
  21. Aug 15, 2009
  22. Aug 07, 2009
  23. Jul 28, 2009
    • David Greene's avatar
      · 71ab2fdd
      David Greene authored
      Add reload and remat backscheduling.  This is disabled by default.  Use
      -schedule-spills=true to enable.
      
      llvm-svn: 77327
      71ab2fdd
  24. Jul 25, 2009
    • Daniel Dunbar's avatar
      More migration to raw_ostream, the water has dried up around the iostream hole. · 0dd5e1ed
      Daniel Dunbar authored
       - Some clients which used DOUT have moved to DEBUG. We are deprecating the
         "magic" DOUT behavior which avoided calling printing functions when the
         statement was disabled. In addition to being unnecessary magic, it had the
         downside of leaving code in -Asserts builds, and of hiding potentially
         unnecessary computations.
      
      llvm-svn: 77019
      0dd5e1ed
  25. Jul 22, 2009
    • Evan Cheng's avatar
      Let each target determines whether a machine instruction is dead. If true,... · 4dc848f3
      Evan Cheng authored
      Let each target determines whether a machine instruction is dead. If true, that allows late codeine passes to delete it.
      
      This is considered a workaround. The problem is some targets are not modeling side effects correctly. PPC is apparently one of those. This patch allows ppc llvm-gcc to bootstrap on Darwin. Once we find out which instruction definitions are wrong, we can remove the PPCInstrInfo workaround.
      
      llvm-svn: 76703
      4dc848f3
  26. Jul 21, 2009
  27. Jul 18, 2009
  28. Jul 17, 2009
  29. Jul 16, 2009
Loading