Skip to content
  1. May 24, 2012
  2. May 23, 2012
  3. May 22, 2012
  4. May 21, 2012
    • Chad Rosier's avatar
      Typo. · 5d1f5d2b
      Chad Rosier authored
      llvm-svn: 157195
      5d1f5d2b
    • Jakob Stoklund Olesen's avatar
      Give a small negative bias to giant edge bundles. · 29268b50
      Jakob Stoklund Olesen authored
      This helps compile time when the greedy register allocator splits live
      ranges in giant functions. Without the bias, we would try to grow
      regions through the giant edge bundles, usually to find out that the
      region became too big and expensive.
      
      If a live range has many uses in blocks near the giant bundle, the small
      negative bias doesn't make a big difference, and we still consider
      regions including the giant edge bundle.
      
      Giant edge bundles are usually connected to landing pads or indirect
      branches.
      
      llvm-svn: 157174
      29268b50
  5. May 20, 2012
  6. May 19, 2012
    • Jakob Stoklund Olesen's avatar
      Remove the late DCE in RegisterCoalescer. · e59d0c32
      Jakob Stoklund Olesen authored
      Dead code and joined copies are now eliminated on the fly, and there is
      no need for a post pass.
      
      This makes the coalescer work like other modern register allocator
      passes: Code is changed on the fly, there is no pending list of changes
      to be committed.
      
      llvm-svn: 157132
      e59d0c32
    • Jakob Stoklund Olesen's avatar
      Erase joined copies immediately. · 25ced184
      Jakob Stoklund Olesen authored
      The late dead code elimination is no longer necessary.
      
      The test changes are cause by a register hint that can be either %rdi or
      %rax. The choice depends on the use list order, which this patch changes.
      
      llvm-svn: 157131
      25ced184
    • Jakob Stoklund Olesen's avatar
      Fix an ancient bug in removeCopyByCommutingDef(). · 1b707c88
      Jakob Stoklund Olesen authored
      Before rewriting uses of one value in A to register B, check that there
      are no tied uses. That would require multiple A values to be rewritten.
      
      This bug can't bite in the current version of the code for a fairly
      subtle reason: A tied use would have caused 2-addr to insert a copy
      before the use. If the copy has been coalesced, it will be found by the
      same loop changed by this patch, and the optimization is aborted.
      
      This was exposed by 400.perlbench and lua after applying a patch that
      deletes joined copies aggressively.
      
      llvm-svn: 157130
      1b707c88
    • Jakob Stoklund Olesen's avatar
      Collect inflatable virtual registers on the fly. · d05148ba
      Jakob Stoklund Olesen authored
      There is no reason to defer the collection of virtual registers whose
      register class may be replaced with a larger class.
      
      llvm-svn: 157125
      d05148ba
    • Jakob Stoklund Olesen's avatar
      Eliminate dead code after remat. · 900f5844
      Jakob Stoklund Olesen authored
      This will remove the original def once it has no more uses.
      
      llvm-svn: 157104
      900f5844
    • Jakob Stoklund Olesen's avatar
      Don't remat during updateRegDefsUses(). · dcffc626
      Jakob Stoklund Olesen authored
      Remaining virtreg->physreg copies were rematerialized during
      updateRegDefsUses(), but we already do the same thing in joinCopy() when
      visiting the physreg copy instruction.
      
      Eliminate the preserveSrcInt argument to reMaterializeTrivialDef(). It
      is now always true.
      
      llvm-svn: 157103
      dcffc626
    • Jakob Stoklund Olesen's avatar
      Immediately erase trivially useless copies. · 06dc7212
      Jakob Stoklund Olesen authored
      There is no need for these instructions to stick around since they are
      known to be not dead.
      
      llvm-svn: 157102
      06dc7212
    • Jakob Stoklund Olesen's avatar
      Run proper recursive dead code elimination during coalescing. · 82d77e81
      Jakob Stoklund Olesen authored
      Dead copies cause problems because they are trivial to coalesce, but
      removing them gived the live range a dangling end point. This patch
      enables full dead code elimination which trims live ranges to their uses
      so end points don't dangle.
      
      DCE may erase multiple instructions. Put the pointers in an ErasedInstrs
      set so we never risk visiting erased instructions in the work list.
      
      There isn't supposed to be any dead copies entering RegisterCoalescer,
      but they do slip by as evidenced by test/CodeGen/X86/coalescer-dce.ll.
      
      llvm-svn: 157101
      82d77e81
    • Jakob Stoklund Olesen's avatar
      Allow LiveRangeEdit to be created with a NULL parent. · e5bbe379
      Jakob Stoklund Olesen authored
      The dead code elimination with callbacks is still useful.
      
      llvm-svn: 157100
      e5bbe379
    • Jakob Stoklund Olesen's avatar
      Modernize naming convention for class members. · 3834dae6
      Jakob Stoklund Olesen authored
      No functional change.
      
      llvm-svn: 157079
      3834dae6
  7. May 18, 2012
    • Jakob Stoklund Olesen's avatar
      Move all work list processing to copyCoalesceWorkList(). · b686a2ce
      Jakob Stoklund Olesen authored
      This will make it possible to filter out erased instructions later.
      
      llvm-svn: 157073
      b686a2ce
    • Jim Grosbach's avatar
      Refactor data-in-code annotations. · 4b63d2ae
      Jim Grosbach authored
      Use a dedicated MachO load command to annotate data-in-code regions.
      This is the same format the linker produces for final executable images,
      allowing consistency of representation and use of introspection tools
      for both object and executable files.
      
      Data-in-code regions are annotated via ".data_region"/".end_data_region"
      directive pairs, with an optional region type.
      
      data_region_directive := ".data_region" { region_type }
      region_type := "jt8" | "jt16" | "jt32" | "jta32"
      end_data_region_directive := ".end_data_region"
      
      The previous handling of ARM-style "$d.*" labels was broken and has
      been removed. Specifically, it didn't handle ARM vs. Thumb mode when
      marking the end of the section.
      
      rdar://11459456
      
      llvm-svn: 157062
      4b63d2ae
    • Eric Christopher's avatar
      Remove duplicate code that we could just fallthrough to. · e2b36ce2
      Eric Christopher authored
      llvm-svn: 157060
      e2b36ce2
Loading