Skip to content
  1. May 15, 2014
  2. May 14, 2014
  3. May 13, 2014
    • Rafael Espindola's avatar
      Split GlobalValue into GlobalValue and GlobalObject. · 99e05cf1
      Rafael Espindola authored
      This allows code to statically accept a Function or a GlobalVariable, but
      not an alias. This is already a cleanup by itself IMHO, but the main
      reason for it is that it gives a lot more confidence that the refactoring to fix
      the design of GlobalAlias is correct. That will be a followup patch.
      
      llvm-svn: 208716
      99e05cf1
  4. May 09, 2014
  5. May 06, 2014
  6. May 02, 2014
    • Nico Weber's avatar
      Teach GlobalDCE how to remove empty global_ctor entries. · 4b2acde2
      Nico Weber authored
      This moves most of GlobalOpt's constructor optimization
      code out of GlobalOpt into Transforms/Utils/CDtorUtils.{h,cpp}. The
      public interface is a single function OptimizeGlobalCtorsList() that
      takes a predicate returning which constructors to remove.
      
      GlobalOpt calls this with a function that statically evaluates all
      constructors, just like it did before. This part of the change is
      behavior-preserving.
      
      Also add a call to this from GlobalDCE with a filter that removes global
      constructors that contain a "ret" instruction and nothing else – this
      fixes PR19590.
      
      llvm-svn: 207856
      4b2acde2
    • Nick Lewycky's avatar
      Fold strlen(expr ? "str1" : "str2") to x ? len1 : len2. This fires about 330... · 718ada97
      Nick Lewycky authored
      Fold strlen(expr ? "str1" : "str2") to x ? len1 : len2. This fires about 330 times in a bootstrap of clang.
      
      llvm-svn: 207828
      718ada97
  7. May 01, 2014
    • Gerolf Hoflehner's avatar
      Patch for function cloning to inline all blocks whose address is taken · 3282af13
      Gerolf Hoflehner authored
      Not all address taken blocks get inlined. The reason is
      that a blocks new address is known only when it is cloned. But e.g.
      a branch instruction in a different block could need that address earlier
      while it gets cloned. The solution is to collect the set of all
      blocks that can potentially get inlined and compute a new block address
      up front. Then clone and cleanup.
      
      rdar://16427209
      
      llvm-svn: 207713
      3282af13
  8. Apr 29, 2014
  9. Apr 28, 2014
    • Chandler Carruth's avatar
      Fix rampant quadratic behavior in UpdatePHINodes. The operation of · 5bdf72ce
      Chandler Carruth authored
      mapping from a basic block to an incoming value, either for removal or
      just lookup, is linear in the number of predecessors, and we were doing
      this for every entry in the 'Preds' list which is in many cases almost
      all of them!
      
      Unfortunately, the fixes are quite ugly. PHI nodes just don't make this
      operation easy. The efficient way to fix this is to have a clever
      'remove_if' operation on PHI nodes that lets us do a single pass over
      all the incoming values of the original PHI node, extracting the ones we
      care about. Then we could quickly construct the new phi node from this
      list. This would remove the remaining underlying quadratic movement of
      unrelated incoming values and the need for silly backwards looping to
      "minimize" how often we hit the quadratic case.
      
      This is the last obvious fix for PR19499. It shaves another 20% off the
      compile time for me, and while UpdatePHINodes remains in the profile,
      most of the time is now stemming from the well known inefficiencies of
      LVI and jump threading.
      
      llvm-svn: 207409
      5bdf72ce
    • Craig Topper's avatar
      [C++] Use 'nullptr'. · e73658dd
      Craig Topper authored
      llvm-svn: 207394
      e73658dd
  10. Apr 26, 2014
  11. Apr 25, 2014
    • Adrian Prantl's avatar
      This reapplies r207235 with an additional bugfixes caught by the msan · 32da8892
      Adrian Prantl authored
      buildbot - do not insert debug intrinsics before phi nodes.
      
      Debug info for optimized code: Support variables that are on the stack and
      described by DBG_VALUEs during their lifetime.
      
      Previously, when a variable was at a FrameIndex for any part of its
      lifetime, this would shadow all other DBG_VALUEs and only a single
      fbreg location would be emitted, which in fact is only valid for a small
      range and not the entire lexical scope of the variable. The included
      dbg-value-const-byref testcase demonstrates this.
      
      This patch fixes this by
      Local
      - emitting dbg.value intrinsics for allocas that are passed by reference
      - dropping all dbg.declares (they are now fully lowered to dbg.values)
      SelectionDAG
      - renamed constructors for SDDbgValue for better readability.
      - fix UserValue::match() to handle indirect values correctly
      - not inserting an MMI table entries for dbg.values that describe allocas.
      - lowering dbg.values that describe allocas into *indirect* DBG_VALUEs.
      CodeGenPrepare
      - leaving dbg.values for an alloca were they are (see comment)
      Other
      - regenerated/updated instcombine.ll testcase and included source
      
      rdar://problem/16679879
      http://reviews.llvm.org/D3374
      
      llvm-svn: 207269
      32da8892
    • Adrian Prantl's avatar
      Revert "This reapplies r207130 with an additional testcase+and a missing check for" · d2d9b76e
      Adrian Prantl authored
      This reverts commit 207235 to investigate msan buildbot breakage.
      
      llvm-svn: 207250
      d2d9b76e
    • Adrian Prantl's avatar
      Reapply r207135 without modifications. · 0840a224
      Adrian Prantl authored
      Debug info: Let dbg.values inserted by LowerDbgDeclare inherit the location
      of the dbg.value. This gets rid of tons of redundant variable DIEs in
      subscopes.
      
      rdar://problem/14874886, rdar://problem/16679936
      
      llvm-svn: 207236
      0840a224
    • Adrian Prantl's avatar
      This reapplies r207130 with an additional testcase+and a missing check for · f5834a4b
      Adrian Prantl authored
      AllocaInst that was missing in one location.
      Debug info for optimized code: Support variables that are on the stack and
      described by DBG_VALUEs during their lifetime.
      
      Previously, when a variable was at a FrameIndex for any part of its
      lifetime, this would shadow all other DBG_VALUEs and only a single
      fbreg location would be emitted, which in fact is only valid for a small
      range and not the entire lexical scope of the variable. The included
      dbg-value-const-byref testcase demonstrates this.
      
      This patch fixes this by
      Local
      - emitting dbg.value intrinsics for allocas that are passed by reference
      - dropping all dbg.declares (they are now fully lowered to dbg.values)
      SelectionDAG
      - renamed constructors for SDDbgValue for better readability.
      - fix UserValue::match() to handle indirect values correctly
      - not inserting an MMI table entries for dbg.values that describe allocas.
      - lowering dbg.values that describe allocas into *indirect* DBG_VALUEs.
      CodeGenPrepare
      - leaving dbg.values for an alloca were they are (see comment)
      Other
      - regenerated/updated instcombine.ll testcase and included source
      
      rdar://problem/16679879
      http://reviews.llvm.org/D3374
      
      llvm-svn: 207235
      f5834a4b
    • Craig Topper's avatar
      [C++] Use 'nullptr'. Transforms edition. · f40110f4
      Craig Topper authored
      llvm-svn: 207196
      f40110f4
    • Adrian Prantl's avatar
      Revert "This reapplies r207130 with an additional testcase+and a missing check for" · 6e5de2ea
      Adrian Prantl authored
      Typo in testcase.
      
      llvm-svn: 207166
      6e5de2ea
    • Adrian Prantl's avatar
      This reapplies r207130 with an additional testcase+and a missing check for · 3512190a
      Adrian Prantl authored
      AllocaInst that was missing in one location.
      Debug info for optimized code: Support variables that are on the stack and
      described by DBG_VALUEs during their lifetime.
      
      Previously, when a variable was at a FrameIndex for any part of its
      lifetime, this would shadow all other DBG_VALUEs and only a single
      fbreg location would be emitted, which in fact is only valid for a small
      range and not the entire lexical scope of the variable. The included
      dbg-value-const-byref testcase demonstrates this.
      
      This patch fixes this by
      Local
      - emitting dbg.value intrinsics for allocas that are passed by reference
      - dropping all dbg.declares (they are now fully lowered to dbg.values)
      SelectionDAG
      - renamed constructors for SDDbgValue for better readability.
      - fix UserValue::match() to handle indirect values correctly
      - not inserting an MMI table entries for dbg.values that describe allocas.
      - lowering dbg.values that describe allocas into *indirect* DBG_VALUEs.
      CodeGenPrepare
      - leaving dbg.values for an alloca were they are (see comment)
      Other
      - regenerated/updated instcombine.ll testcase and included source
      
      rdar://problem/16679879
      http://reviews.llvm.org/D3374
      
      llvm-svn: 207165
      3512190a
    • Adrian Prantl's avatar
      Revert "Debug info for optimized code: Support variables that are on the stack and" · ff4282a2
      Adrian Prantl authored
      This reverts commit 207130 for buildbot breakage.
      
      llvm-svn: 207162
      ff4282a2
    • Adrian Prantl's avatar
      Revert "Debug info: Let dbg.values inserted by LowerDbgDeclare inherit the location" · 5ad11841
      Adrian Prantl authored
      This reverts commit 207130 for buildbot breakage.
      
      llvm-svn: 207159
      5ad11841
  12. Apr 24, 2014
    • Adrian Prantl's avatar
      Debug info: Let dbg.values inserted by LowerDbgDeclare inherit the location · f4a70109
      Adrian Prantl authored
      of the dbg.value. This gets rid of tons of redundant variable DIEs in
      subscopes.
      
      rdar://problem/14874886, rdar://problem/16679936
      
      llvm-svn: 207135
      f4a70109
    • Adrian Prantl's avatar
      Debug info for optimized code: Support variables that are on the stack and · f4223918
      Adrian Prantl authored
      described by DBG_VALUEs during their lifetime.
      
      Previously, when a variable was at a FrameIndex for any part of its
      lifetime, this would shadow all other DBG_VALUEs and only a single
      fbreg location would be emitted, which in fact is only valid for a small
      range and not the entire lexical scope of the variable. The included
      dbg-value-const-byref testcase demonstrates this.
      
      This patch fixes this by
      Local
      - emitting dbg.value intrinsics for allocas that are passed by reference
      - dropping all dbg.declares (they are now fully lowered to dbg.values)
      SelectionDAG
      - renamed constructors for SDDbgValue for better readability.
      - fix UserValue::match() to handle indirect values correctly
      - not inserting an MMI table entries for dbg.values that describe allocas.
      - lowering dbg.values that describe allocas into *indirect* DBG_VALUEs.
      CodeGenPrepare
      - leaving dbg.values for an alloca were they are (see comment)
      Other
      - regenerated/updated instcombine-intrinsics testcase and included source
      
      
      rdar://problem/16679879
      http://reviews.llvm.org/D3374
      
      llvm-svn: 207130
      f4223918
  13. Apr 23, 2014
  14. Apr 22, 2014
    • Chandler Carruth's avatar
      [Modules] Fix potential ODR violations by sinking the DEBUG_TYPE · 964daaaf
      Chandler Carruth authored
      definition below all of the header #include lines, lib/Transforms/...
      edition.
      
      This one is tricky for two reasons. We again have a couple of passes
      that define something else before the includes as well. I've sunk their
      name macros with the DEBUG_TYPE.
      
      Also, InstCombine contains headers that need DEBUG_TYPE, so now those
      headers #define and #undef DEBUG_TYPE around their code, leaving them
      well formed modular headers. Fixing these headers was a large motivation
      for all of these changes, as "leaky" macros of this form are hard on the
      modules implementation.
      
      llvm-svn: 206844
      964daaaf
    • Chandler Carruth's avatar
      [Modules] Make Support/Debug.h modular. This requires it to not change · e96dd897
      Chandler Carruth authored
      behavior based on other files defining DEBUG_TYPE, which means it cannot
      define DEBUG_TYPE at all. This is actually better IMO as it forces folks
      to define relevant DEBUG_TYPEs for their files. However, it requires all
      files that currently use DEBUG(...) to define a DEBUG_TYPE if they don't
      already. I've updated all such files in LLVM and will do the same for
      other upstream projects.
      
      This still leaves one important change in how LLVM uses the DEBUG_TYPE
      macro going forward: we need to only define the macro *after* header
      files have been #include-ed. Previously, this wasn't possible because
      Debug.h required the macro to be pre-defined. This commit removes that.
      By defining DEBUG_TYPE after the includes two things are fixed:
      
      - Header files that need to provide a DEBUG_TYPE for some inline code
        can do so by defining the macro before their inline code and undef-ing
        it afterward so the macro does not escape.
      
      - We no longer have rampant ODR violations due to including headers with
        different DEBUG_TYPE definitions. This may be mostly an academic
        violation today, but with modules these types of violations are easy
        to check for and potentially very relevant.
      
      Where necessary to suppor headers with DEBUG_TYPE, I have moved the
      definitions below the includes in this commit. I plan to move the rest
      of the DEBUG_TYPE macros in LLVM in subsequent commits; this one is big
      enough.
      
      The comments in Debug.h, which were hilariously out of date already,
      have been updated to reflect the recommended practice going forward.
      
      llvm-svn: 206822
      e96dd897
  15. Apr 21, 2014
    • Reid Kleckner's avatar
      Fix PR7272 in -tailcallelim instead of the inliner · 9b2cc647
      Reid Kleckner authored
      The -tailcallelim pass should be checking if byval or inalloca args can
      be captured before marking calls as tail calls.  This was the real root
      cause of PR7272.
      
      With a better fix in place, revert the inliner change from r105255.  The
      test case it introduced still passes and has been moved to
      test/Transforms/Inline/byval-tail-call.ll.
      
      Reviewers: chandlerc
      
      Differential Revision: http://reviews.llvm.org/D3403
      
      llvm-svn: 206789
      9b2cc647
  16. Apr 18, 2014
    • Diego Novillo's avatar
      Fix bug 19437 - Only add discriminators for DWARF 4 and above. · 0915c047
      Diego Novillo authored
      Summary:
      This prevents the discriminator generation pass from triggering if
      the DWARF version being used in the module is prior to 4.
      
      Reviewers: echristo, dblaikie
      
      CC: llvm-commits
      
      Differential Revision: http://reviews.llvm.org/D3413
      
      llvm-svn: 206507
      0915c047
    • Nuno Lopes's avatar
      remove some dead code · 9ced19ab
      Nuno Lopes authored
       lib/Analysis/IPA/InlineCost.cpp         |   18 ------------------
       lib/Analysis/RegionPass.cpp             |    1 -
       lib/Analysis/TypeBasedAliasAnalysis.cpp |    1 -
       lib/Transforms/Scalar/LoopUnswitch.cpp  |   21 ---------------------
       lib/Transforms/Utils/LCSSA.cpp          |    2 --
       lib/Transforms/Utils/LoopSimplify.cpp   |    6 ------
       utils/TableGen/AsmWriterEmitter.cpp     |   13 -------------
       utils/TableGen/DFAPacketizerEmitter.cpp |    7 -------
       utils/TableGen/IntrinsicEmitter.cpp     |    2 --
       9 files changed, 71 deletions(-)
      
      llvm-svn: 206506
      9ced19ab
Loading