Skip to content
  1. Oct 23, 2012
  2. Oct 21, 2012
  3. Oct 20, 2012
  4. Oct 19, 2012
  5. Oct 18, 2012
    • Sebastian Pop's avatar
      Clear unknown mem ops when merging stack slots (pr14090) · 127777d6
      Sebastian Pop authored
      When merging stack slots, if StackColoring::remapInstructions gets a
      value back from GetUnderlyingObject that it does not know about or is
      not itself a stack slot, clear the memory operand in case it aliases
      the merged slot. This prevents the introduction of incorrect aliasing
      information.
      
      Author:    Matthew Curtis <mcurtis@codeaurora.org>
      llvm-svn: 166216
      127777d6
    • Sebastian Pop's avatar
      Change MachineFrameInfo::StackObject::Alloca from Value* to AllocaInst* · fdd94d49
      Sebastian Pop authored
      This more accurately reflects what is actually being stored in the
      field.
      
      No functionality change intended.
      
      Author:    Matthew Curtis <mcurtis@codeaurora.org>
      llvm-svn: 166215
      fdd94d49
    • Nadav Rotem's avatar
      · d5f88596
      Nadav Rotem authored
      In SimplifySelectOps we pulled two loads through a select node despite the fact that one was dependent on the other.
      
      rdar://12513091
      
      llvm-svn: 166196
      d5f88596
    • Bob Wilson's avatar
      Temporarily revert the TargetTransform changes. · d6d9ccca
      Bob Wilson authored
      The TargetTransform changes are breaking LTO bootstraps of clang.  I am
      working with Nadav to figure out the problem, but I am reverting it for now
      to get our buildbots working.
      
      This reverts svn commits: 165665 165669 165670 165786 165787 165997
      and I have also reverted clang svn 165741
      
      llvm-svn: 166168
      d6d9ccca
    • Michael Liao's avatar
      Revert part of r166049 back and enable test case in r166125. · 3ac8201e
      Michael Liao authored
      - Folding (trunc (concat ... X )) to (concat ... (trunc X) ...) is valid
        when '...' are all 'undef's.
      - r166125 relies on this transformation.
      
      llvm-svn: 166155
      3ac8201e
    • Michael Liao's avatar
      Revert r166049 · c87d98db
      Michael Liao authored
      - In general, it's unsafe for this transformation.
      
      llvm-svn: 166135
      c87d98db
  6. Oct 17, 2012
  7. Oct 16, 2012
  8. Oct 15, 2012
  9. Oct 14, 2012
  10. Oct 13, 2012
    • Jakob Stoklund Olesen's avatar
      Drop <def,dead> flags when merging into an unused lane. · ea82bd7f
      Jakob Stoklund Olesen authored
      The new coalescer can merge a dead def into an unused lane of an
      otherwise live vector register.
      
      Clear the <dead> flag when that happens since the flag refers to the
      full virtual register which is still live after the partial dead def.
      
      This fixes PR14079.
      
      llvm-svn: 165877
      ea82bd7f
    • Jakob Stoklund Olesen's avatar
      Allow for loops in LiveIntervals::pruneValue(). · 2f6dfc7d
      Jakob Stoklund Olesen authored
      It is possible that the live range of the value being pruned loops back
      into the kill MBB where the search started. When that happens, make sure
      that the beginning of KillMBB is also pruned.
      
      Instead of starting a DFS at KillMBB and skipping the root of the
      search, start a DFS at each KillMBB successor, and allow the search to
      loop back to KillMBB.
      
      This fixes PR14078.
      
      llvm-svn: 165872
      2f6dfc7d
  11. Oct 12, 2012
    • Jakob Stoklund Olesen's avatar
      Use a transposed algorithm for handleMove(). · 1a87a29d
      Jakob Stoklund Olesen authored
      Completely update one interval at a time instead of collecting live
      range fragments to be updated. This avoids building data structures,
      except for a single SmallPtrSet of updated intervals.
      
      Also share code between handleMove() and handleMoveIntoBundle().
      
      Add support for moving dead defs across other live values in the
      interval. The MI scheduler can do that.
      
      llvm-svn: 165824
      1a87a29d
    • Jakob Stoklund Olesen's avatar
      Fix coalescing with IMPLICIT_DEF values. · 1a3eb878
      Jakob Stoklund Olesen authored
      PHIElimination inserts IMPLICIT_DEF instructions to guarantee that all
      PHI predecessors have a live-out value. These IMPLICIT_DEF values are
      not considered to be real interference when coalescing virtual
      registers:
      
        %vreg1 = IMPLICIT_DEF
        %vreg2 = MOV32r0
      
      When joining %vreg1 and %vreg2, the IMPLICIT_DEF instruction and its
      value number should simply be erased since the %vreg2 value number now
      provides a live-out value for the PHI predecesor block.
      
      llvm-svn: 165813
      1a3eb878
Loading