Skip to content
  1. 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
  2. Jul 01, 2008
    • Dale Johannesen's avatar
      Fix longstanding thinko: don't exclude · ad6b3a6e
      Dale Johannesen authored
      predessors of exit blocks from tail merging
      consideration.
      
      llvm-svn: 52985
      ad6b3a6e
    • Dan Gohman's avatar
      Split ISD::LABEL into ISD::DBG_LABEL and ISD::EH_LABEL, eliminating · fb19f940
      Dan Gohman authored
      the need for a flavor operand, and add a new SDNode subclass,
      LabelSDNode, for use with them to eliminate the need for a label id
      operand.
      
      Change instruction selection to let these label nodes through
      unmodified instead of creating copies of them. Teach the MachineInstr
      emitter how to emit a MachineInstr directly from an ISD label node.
      
      This avoids the need for allocating SDNodes for the label id and
      flavor value, as well as SDNodes for each of the post-isel label,
      label id, and label flavor.
      
      llvm-svn: 52943
      fb19f940
  3. Jun 19, 2008
  4. May 23, 2008
  5. May 13, 2008
  6. May 12, 2008
  7. May 10, 2008
  8. May 09, 2008
  9. May 06, 2008
  10. Apr 10, 2008
    • Evan Cheng's avatar
      Teach branch folding pass about implicit_def instructions. Unfortunately we... · 9d339849
      Evan Cheng authored
      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.
      
      llvm-svn: 49461
      9d339849
  11. Feb 28, 2008
  12. Feb 19, 2008
  13. Feb 10, 2008
  14. Jan 29, 2008
  15. Jan 07, 2008
  16. Jan 06, 2008
  17. Dec 31, 2007
    • Chris Lattner's avatar
      Add new shorter predicates for testing machine operands for various types: · a5bb370a
      Chris Lattner authored
      e.g. MO.isMBB() instead of MO.isMachineBasicBlock().  I don't plan on 
      switching everything over, so new clients should just start using the 
      shorter names.
      
      Remove old long accessors, switching everything over to use the short
      accessor: getMachineBasicBlock() -> getMBB(), 
      getConstantPoolIndex() -> getIndex(), setMachineBasicBlock -> setMBB(), etc.
      
      llvm-svn: 45464
      a5bb370a
  18. Dec 29, 2007
  19. Dec 10, 2007
  20. Oct 25, 2007
  21. Oct 19, 2007
  22. Aug 02, 2007
  23. Jul 11, 2007
  24. Jun 29, 2007
  25. Jun 19, 2007
  26. Jun 08, 2007
  27. Jun 05, 2007
  28. Jun 04, 2007
  29. Jun 02, 2007
  30. May 31, 2007
  31. May 30, 2007
Loading