Skip to content
  1. Apr 13, 2009
    • Bob Wilson's avatar
      Refactor some code in SelectionDAGLegalize::ExpandBUILD_VECTOR. · f6c21953
      Bob Wilson authored
      llvm-svn: 68981
      f6c21953
    • Devang Patel's avatar
      Right now, Debugging information to encode scopes (DW_TAG_lexical_block)... · 0431504f
      Devang Patel authored
      Right now, Debugging information to encode scopes (DW_TAG_lexical_block) relies on DBG_LABEL. Unfortunately this intefers with the quality of optimized code. 
      This patch updates dwarf writer to encode scoping information in DWARF only in FastISel mode.
      
      llvm-svn: 68973
      0431504f
    • Devang Patel's avatar
      · 80be3511
      Devang Patel authored
      Reapply 68847.
      Now debug_inlined section is covered by TAI->doesDwarfUsesInlineInfoSection(), which is false by default.
      
      llvm-svn: 68964
      80be3511
    • Dan Gohman's avatar
      Add a new TargetInstrInfo MachineInstr opcode, COPY_TO_SUBCLASS. · 60a446ab
      Dan Gohman authored
      This will be used to replace things like X86's MOV32to32_.
      
      Enhance ScheduleDAGSDNodesEmit to be more flexible and robust
      in the presense of subregister superclasses and subclasses. It
      can now cope with the definition of a virtual register being in
      a subclass of a use.
      
      Re-introduce the code for recording register superreg classes and
      subreg classes. This is needed because when subreg extracts and
      inserts get coalesced away, the virtual registers are left in
      the correct subclass.
      
      llvm-svn: 68961
      60a446ab
  2. Apr 12, 2009
  3. Apr 11, 2009
  4. Apr 10, 2009
  5. Apr 09, 2009
    • Devang Patel's avatar
      llvm.dbg.func_start also defines beginning of function scope. · a2c2b85d
      Devang Patel authored
      llvm-svn: 68727
      a2c2b85d
    • Dan Gohman's avatar
      Generalize ExtendUsesToFormExtLoad to be usable for ANY_EXTEND, · 0e8d199f
      Dan Gohman authored
      in addition to ZERO_EXTEND and SIGN_EXTEND. Fix a bug in the
      way it checked for live-out values, and simplify the way it
      find users by using SDNode::use_iterator's (relatively) new
      features. Also, make it slightly more permissive on targets
      with free truncates.
      
      In SelectionDAGBuild, avoid creating ANY_EXTEND nodes that are
      larger than necessary. If the target's SwitchAmountTy has
      enough bits, use it. This exposes the truncate to optimization
      early, enabling more optimizations.
      
      llvm-svn: 68670
      0e8d199f
    • Dan Gohman's avatar
      Don't copy the operand of a SwitchInst into virtual registers as · e6db8ca5
      Dan Gohman authored
      eagerly. This helps avoid CopyToReg nodes in some cases where they
      aren't needed, and also helps subsequent optimizer heuristics
      in cases where the extra nodes would cause the node to appear
      to have multiple results. This doesn't have a significant impact
      currently; it'll help an upcoming change.
      
      llvm-svn: 68667
      e6db8ca5
  6. Apr 08, 2009
    • Duncan Sands's avatar
      Soft float support for FREM. · 5a82613d
      Duncan Sands authored
      llvm-svn: 68614
      5a82613d
    • Duncan Sands's avatar
      Soft float support for undef. Reported by Xerxes Rånby. · fb438caa
      Duncan Sands authored
      llvm-svn: 68607
      fb438caa
    • Dan Gohman's avatar
      Implement support for using modeling implicit-zero-extension on x86-64 · ad3e549a
      Dan Gohman authored
      with SUBREG_TO_REG, teach SimpleRegisterCoalescing to coalesce
      SUBREG_TO_REG instructions (which are similar to INSERT_SUBREG
      instructions), and teach the DAGCombiner to take advantage of this on
      targets which support it. This eliminates many redundant
      zero-extension operations on x86-64.
      
      This adds a new TargetLowering hook, isZExtFree. It's similar to
      isTruncateFree, except it only applies to actual definitions, and not
      no-op truncates which may not zero the high bits.
      
      Also, this adds a new optimization to SimplifyDemandedBits: transform
      operations like x+y into (zext (add (trunc x), (trunc y))) on targets
      where all the casts are no-ops. In contexts where the high part of the
      add is explicitly masked off, this allows the mask operation to be
      eliminated. Fix the DAGCombiner to avoid undoing these transformations
      to eliminate casts on targets where the casts are no-ops.
      
      Also, this adds a new two-address lowering heuristic. Since
      two-address lowering runs before coalescing, it helps to be able to
      look through copies when deciding whether commuting and/or
      three-address conversion are profitable.
      
      Also, fix a bug in LiveInterval::MergeInClobberRanges. It didn't handle
      the case that a clobber range extended both before and beyond an
      existing live range. In that case, multiple live ranges need to be
      added. This was exposed by the new subreg coalescing code.
      
      Remove 2008-05-06-SpillerBug.ll. It was bugpoint-reduced, and the
      spiller behavior it was looking for no longer occurrs with the new
      instruction selection.
      
      llvm-svn: 68576
      ad3e549a
    • Devang Patel's avatar
      Revert prev. patch for now. · 10f7c3de
      Devang Patel authored
      llvm-svn: 68569
      10f7c3de
    • Devang Patel's avatar
      Right now DBG_LABEL are required for llvm.dbg.region_start and... · ddafc03e
      Devang Patel authored
      Right now DBG_LABEL are required for llvm.dbg.region_start and llvm.dbg.region_end in non-fast mode also.
      
      llvm-svn: 68559
      ddafc03e
  7. Apr 07, 2009
  8. Apr 03, 2009
  9. Apr 02, 2009
  10. Mar 31, 2009
  11. Mar 29, 2009
  12. Mar 28, 2009
  13. Mar 26, 2009
  14. Mar 25, 2009
  15. Mar 24, 2009
Loading