Skip to content
  1. Mar 19, 2009
  2. Feb 19, 2009
  3. Jan 28, 2009
  4. Dec 23, 2008
  5. Dec 18, 2008
  6. Dec 09, 2008
  7. Dec 05, 2008
  8. Nov 18, 2008
  9. Oct 10, 2008
  10. Oct 03, 2008
  11. Oct 02, 2008
  12. Sep 24, 2008
  13. Sep 17, 2008
    • Dale Johannesen's avatar
      Add a bit to mark operands of asm's that conflict · f8610ebe
      Dale Johannesen authored
      with an earlyclobber operand elsewhere.  Propagate
      this bit and the earlyclobber bit through SDISel.
      Change linear-scan RA not to allocate regs in a way 
      that conflicts with an earlyclobber.  See also comments.
      
      llvm-svn: 56290
      f8610ebe
  14. Sep 14, 2008
  15. Sep 13, 2008
    • Dan Gohman's avatar
      Remove isImm(), isReg(), and friends, in favor of · 38453eeb
      Dan Gohman authored
      isImmediate(), isRegister(), and friends, to avoid confusion
      about having two different names with the same meaning. I'm
      not attached to the longer names, and would be ok with
      changing to the shorter names if others prefer it.
      
      llvm-svn: 56189
      38453eeb
  16. Sep 12, 2008
  17. Sep 03, 2008
    • Dan Gohman's avatar
      Fix addRegisterDead and addRegisterKilled to be more thorough · c7367b45
      Dan Gohman authored
      when searching for redundant subregister dead/kill bits.
      
      Previously it was common to see instructions marked like this:
        "RET %EAX<imp-use,kill>, %AX<imp-use,kill>"
      
      With this change, addRegisterKilled continues scanning after
      finding the %EAX operand, so it proceeds to discover the
      redundant %AX kill and eliminates it, producing this:
        "RET %EAX<imp-use,kill>"
      
      This currently has no effect on the generated code.
      
      llvm-svn: 55698
      c7367b45
  18. Aug 30, 2008
  19. Aug 27, 2008
  20. Aug 24, 2008
  21. Aug 20, 2008
  22. Aug 15, 2008
  23. Aug 14, 2008
  24. Jul 28, 2008
    • Dan Gohman's avatar
      Fold the useful features of alist and alist_node into ilist, and · 804c95df
      Dan Gohman authored
      a new ilist_node class, and remove them. Unlike alist_node,
      ilist_node doesn't attempt to manage storage itself, so it avoids
      the associated problems, including being opaque in gdb.
      
      Adjust the Recycler class so that it doesn't depend on alist_node.
      Also, change it to use explicit Size and Align parameters, allowing
      it to work when the largest-sized node doesn't have the greatest
      alignment requirement.
      
      Change MachineInstr's MachineMemOperand list from a pool-backed
      alist to a std::list for now.
      
      llvm-svn: 54146
      804c95df
  25. Jul 21, 2008
  26. Jul 19, 2008
  27. Jul 18, 2008
  28. Jul 16, 2008
  29. Jul 11, 2008
  30. Jul 10, 2008
  31. Jul 09, 2008
  32. Jul 08, 2008
    • Dan Gohman's avatar
      Pool-allocation for MachineInstrs, MachineBasicBlocks, and · 3b460303
      Dan Gohman authored
      MachineMemOperands. The pools are owned by MachineFunctions.
      
      This drastically reduces the number of calls to malloc/free made
      during the "Emit" phase of scheduling, as well as later phases
      in CodeGen. Combined with other changes, this speeds up the
      "instruction selection" phase of CodeGen by 10% in some cases.
      
      llvm-svn: 53212
      3b460303
  33. Jul 07, 2008
  34. Jul 03, 2008
Loading