Skip to content
  1. May 01, 2012
  2. Apr 30, 2012
  3. Apr 29, 2012
  4. Apr 28, 2012
    • Jakob Stoklund Olesen's avatar
      Don't update spill weights when joining intervals. · 6053899a
      Jakob Stoklund Olesen authored
      We don't compute spill weights until after coalescing anyway.
      
      llvm-svn: 155766
      6053899a
    • Jakob Stoklund Olesen's avatar
      Spring cleaning - Delete dead code. · 4fe0e190
      Jakob Stoklund Olesen authored
      llvm-svn: 155765
      4fe0e190
    • Jakob Stoklund Olesen's avatar
      Fix a problem with blocks that need to be split twice. · ae7521d1
      Jakob Stoklund Olesen authored
      The code could search past the end of the basic block when there was
      already a constant pool entry after the block.
      
      Test case with giant basic block in SingleSource/UnitTests/Vector/constpool.c
      
      llvm-svn: 155753
      ae7521d1
    • Andrew Trick's avatar
      Reapply 155668: Fix the SD scheduler to avoid gluing the same node twice. · 833f0496
      Andrew Trick authored
      This time, also fix the caller of AddGlue to properly handle
      incomplete chains. AddGlue had failure modes, but shamefully hid them
      from its caller. It's luck ran out.
      
      Fixes rdar://11314175: BuildSchedUnits assert.
      
      llvm-svn: 155749
      833f0496
    • Jim Grosbach's avatar
      ARM: Thumb add(sp plus register) asm constraints. · c6f32b32
      Jim Grosbach authored
      Make sure when parsing the Thumb1 sp+register ADD instruction that
      the source and destination operands match. In thumb2, just use the
      wide encoding if they don't. In Thumb1, issue a diagnostic.
      
      rdar://11219154
      
      llvm-svn: 155748
      c6f32b32
    • Jim Grosbach's avatar
      ARM: Tweak tADDrSP definition for consistent operand order. · 9d8f6f3d
      Jim Grosbach authored
      Make the operand order of the instruction match that of the asm syntax.
      
      llvm-svn: 155747
      9d8f6f3d
    • Derek Schuff's avatar
      Revert r155745 · a99b1681
      Derek Schuff authored
      llvm-svn: 155746
      a99b1681
    • Derek Schuff's avatar
      Fix fastcc structure return with fast-isel on x86-32 · bbf8b83e
      Derek Schuff authored
      On x86-32, structure return via sret lets the callee pop the hidden
      pointer argument off the stack, which the caller then re-pushes.
      However if the calling convention is fastcc, then a register is used
      instead, and the caller should not adjust the stack. This is
      implemented with a check of IsTailCallConvention
      X86TargetLowering::LowerCall but is now checked properly in
      X86FastISel::DoSelectCall.
      
      llvm-svn: 155745
      bbf8b83e
    • Jakob Stoklund Olesen's avatar
      Track worst case alignment padding more accurately. · 5f0d1b46
      Jakob Stoklund Olesen authored
      Previously, ARMConstantIslandPass would conservatively compute the
      address of an aligned basic block as:
      
        RoundUpToAlignment(Offset + UnknownPadding)
      
      This worked fine for the layout algorithm itself, but it could fool the
      verify() function because it accounts for alignment padding twice: Once
      when adding the worst case UnknownPadding, and again by rounding up the
      fictional block offset. This meant that when optimizeThumb2Instructions
      would shrink an instruction, the conservative distance estimate could
      grow. That shouldn't be possible since the woorst case alignment padding
      wss already included.
      
      This patch drops the use of RoundUpToAlignment, and depends only on
      worst case padding to compute conservative block offsets. This has the
      weird effect that the computed offset for an aligned block may not be
      aligned.
      
      The important difference is that shrinking an instruction can never
      cause the estimated distance between two instructions to grow. The
      estimated distance is always larger than the real distance that only the
      assembler knows.
      
      <rdar://problem/11339352>
      
      llvm-svn: 155744
      5f0d1b46
Loading