Skip to content
  1. Mar 31, 2009
  2. Mar 30, 2009
  3. Jan 08, 2009
  4. Oct 03, 2008
  5. 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
  6. 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
  7. Jul 18, 2008
  8. 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
  9. May 05, 2008
  10. Apr 24, 2008
  11. Feb 28, 2008
  12. Feb 26, 2008
  13. Feb 10, 2008
  14. Jan 07, 2008
    • Chris Lattner's avatar
      remove #includage · f3efadcb
      Chris Lattner authored
      llvm-svn: 45697
      f3efadcb
    • Chris Lattner's avatar
      rename TargetInstrDescriptor -> TargetInstrDesc. · 03ad8850
      Chris Lattner authored
      Make MachineInstr::getDesc return a reference instead
      of a pointer, since it can never be null.
      
      llvm-svn: 45695
      03ad8850
    • Chris Lattner's avatar
      Rename MachineInstr::getInstrDescriptor -> getDesc(), which reflects · a98c679d
      Chris Lattner authored
      that it is cheap and efficient to get.
      
      Move a variety of predicates from TargetInstrInfo into 
      TargetInstrDescriptor, which makes it much easier to query a predicate
      when you don't have TII around.  Now you can use MI->getDesc()->isBranch()
      instead of going through TII, and this is much more efficient anyway. Not
      all of the predicates have been moved over yet.
      
      Update old code that used MI->getInstrDescriptor()->Flags to use the
      new predicates in many places.
      
      llvm-svn: 45674
      a98c679d
  15. Jan 01, 2008
  16. Dec 31, 2007
  17. Dec 29, 2007
  18. Oct 03, 2007
  19. Sep 03, 2007
  20. Jun 29, 2007
  21. Jun 19, 2007
  22. Jun 04, 2007
  23. May 18, 2007
  24. May 01, 2007
  25. Mar 09, 2007
  26. Feb 19, 2007
  27. Feb 17, 2007
  28. Feb 10, 2007
  29. Dec 16, 2006
  30. Dec 15, 2006
  31. Dec 07, 2006
  32. Nov 28, 2006
  33. Nov 18, 2006
  34. Oct 24, 2006
Loading