Skip to content
  1. May 11, 2009
  2. Feb 09, 2009
  3. Jan 28, 2009
  4. Jan 08, 2009
  5. Dec 11, 2008
  6. Dec 03, 2008
  7. Oct 27, 2008
  8. Oct 03, 2008
  9. Sep 22, 2008
  10. 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
  11. Sep 04, 2008
  12. Aug 22, 2008
  13. Aug 15, 2008
  14. Jul 29, 2008
  15. 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
  16. 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
  17. Jun 19, 2008
  18. May 23, 2008
  19. May 13, 2008
  20. May 12, 2008
  21. May 10, 2008
  22. May 09, 2008
  23. May 06, 2008
  24. 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
  25. Feb 28, 2008
  26. Feb 19, 2008
  27. Feb 10, 2008
  28. Jan 29, 2008
  29. Jan 07, 2008
  30. Jan 06, 2008
  31. 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
  32. Dec 29, 2007
  33. Dec 10, 2007
  34. Oct 25, 2007
  35. Oct 19, 2007
Loading