Skip to content
  1. Jul 19, 2015
  2. Jul 18, 2015
    • Yaron Keren's avatar
      Rangify for loops in GlobalDCE, NFC. · 3d49f6df
      Yaron Keren authored
      llvm-svn: 242619
      3d49f6df
    • Chandler Carruth's avatar
      [PM/AA] Remove the addEscapingUse update API that won't be easy to · 9f2bf1af
      Chandler Carruth authored
      directly model in the new PM.
      
      This also was an incredibly brittle and expensive update API that was
      never fully utilized by all the passes that claimed to preserve AA, nor
      could it reasonably have been extended to all of them. Any number of
      places add uses of values. If we ever wanted to reliably instrument
      this, we would want a callback hook much like we have with ValueHandles,
      but doing this for every use addition seems *extremely* expensive in
      terms of compile time.
      
      The only user of this update mechanism is GlobalsModRef. The idea of
      using this to keep it up to date doesn't really work anyways as its
      analysis requires a symmetric analysis of two different memory
      locations. It would be very hard to make updates be sufficiently
      rigorous to *guarantee* symmetric analysis in this way, and it pretty
      certainly isn't true today.
      
      However, folks have been using GMR with this update for a long time and
      seem to not be hitting the issues. The reported issue that the update
      hook fixes isn't even a problem any more as other changes to
      GetUnderlyingObject worked around it, and that issue stemmed from *many*
      years ago. As a consequence, a prior patch provided a flag to control
      the unsafe behavior of GMR, and this patch removes the update mechanism
      that has questionable compile-time tradeoffs and is causing problems
      with moving to the new pass manager. Note the lack of test updates --
      not one test in tree actually requires this update, even for a contrived
      case.
      
      All of this was extensively discussed on the dev list, this patch will
      just enact what that discussion decides on. I'm sending it for review in
      part to show what I'm planning, and in part to show the *amazing* amount
      of work this avoids. Every call to the AA here is something like three
      to six indirect function calls, which in the non-LTO pipeline never do
      any work! =[
      
      Differential Revision: http://reviews.llvm.org/D11214
      
      llvm-svn: 242605
      9f2bf1af
    • Evgeniy Stepanov's avatar
      [asan] Fix shadow mapping on Android/AArch64. · 9cb08f82
      Evgeniy Stepanov authored
      Instrumentation and the runtime library were in disagreement about
      ASan shadow offset on Android/AArch64.
      
      This fixes a large number of existing tests on Android/AArch64.
      
      llvm-svn: 242595
      9cb08f82
  3. Jul 17, 2015
  4. Jul 16, 2015
    • Peter Collingbourne's avatar
      Internalize: internalize comdat members as a group, and drop comdat on such members. · 9b0fe610
      Peter Collingbourne authored
      Internalizing an individual comdat group member without also internalizing
      the other members of the comdat can break comdat semantics. For example,
      if a module contains a reference to an internalized comdat member, and the
      linker chooses a comdat group from a different object file, this will break
      the reference to the internalized member.
      
      This change causes the internalizer to only internalize comdat members if all
      other members of the comdat are not externally visible. Once a comdat group
      has been fully internalized, there is no need to apply comdat rules to its
      members; later optimization passes (e.g. globaldce) can legally drop individual
      members of the comdat. So we drop the comdat attribute from all comdat members.
      
      Differential Revision: http://reviews.llvm.org/D10679
      
      llvm-svn: 242423
      9b0fe610
    • Tobias Grosser's avatar
      Add PM extension point EP_VectorizerStart · 39a7bd18
      Tobias Grosser authored
      This extension point allows passes to be executed right before the vectorizer
      and other highly target specific optimizations are run.
      
      llvm-svn: 242389
      39a7bd18
    • Cong Hou's avatar
      Create a wrapper pass for BranchProbabilityInfo. · ab23bfbc
      Cong Hou authored
      This new wrapper pass is useful when we want to do branch probability analysis conditionally (e.g. only in PGO mode) but don't want to add one more pass dependence.
      
      http://reviews.llvm.org/D11241
      
      llvm-svn: 242349
      ab23bfbc
    • Chen Li's avatar
      [LoopUnswitch] Add an else clause to IsTrivialUnswitchCondition() when... · 3f5ed156
      Chen Li authored
      [LoopUnswitch] Add an else clause to IsTrivialUnswitchCondition() when checking HeaderTerm instruction type
      
      Summary:
      This is a trivial code change with no functionality effect. 
      
      When LoopUnswitch determines trivial unswitch condition, it checks whether the loop header's terminator instruction is a branch instruction or switch instruction since trivial unswitch condition can only apply to these two instruction types. The current code does not fail the check directly on other instruction types, but check the nullness of LoopExitBB variable instead. The added else clause makes the check fail immediately on other instruction types and makes the code more obvious.  
      
      Reviewers: reames
      
      Subscribers: llvm-commits
      
      Differential Revision: http://reviews.llvm.org/D11239
      
      llvm-svn: 242345
      3f5ed156
  5. Jul 15, 2015
  6. Jul 14, 2015
    • Tim Northover's avatar
      GVN: use a static array instead of regenerating it each time. NFC. · 586b7419
      Tim Northover authored
      llvm-svn: 242202
      586b7419
    • Tim Northover's avatar
      GVN: tolerate an instruction being replaced without existing in the leaderboard · d5fdef01
      Tim Northover authored
      Sometimes an incidentally created instruction can duplicate a Value used
      elsewhere. It then often doesn't end up in the leader table. If it's later
      removed, we attempt to remove it from the leader table and segfault.
      
      Instead we should just ignore the removal request, which won't cause any
      problems. The reverse situation, where the original instruction is replaced by
      the new one (which you might think could leave the leader table empty) cannot
      occur, because the incidental instruction will never be found in the first
      place.
      
      llvm-svn: 242199
      d5fdef01
    • David Majnemer's avatar
      [SROA] Don't de-atomic volatile loads and stores · 62690b19
      David Majnemer authored
      Volatile loads and stores are made visible in global state regardless of
      what memory is involved.  It is not correct to disregard the ordering
      and synchronization scope because it is possible to synchronize with
      memory operations performed by hardware.
      
      This partially addresses PR23737.
      
      llvm-svn: 242126
      62690b19
    • Reid Kleckner's avatar
      Update enforceKnownAlignment after the isWeakForLinker semantic change · 486fa397
      Reid Kleckner authored
      Previously we would refrain from attempting to increase the linkage of
      available_externally globals because they were considered weak for the
      linker. Now they are treated more like a declaration instead of a weak
      definition.
      
      This was causing SSE alignment faults in Chromuim, when some code
      assumed it could increase the alignment of a dllimported global that it
      didn't control.  http://crbug.com/509256
      
      llvm-svn: 242091
      486fa397
  7. Jul 13, 2015
  8. Jul 12, 2015
  9. Jul 11, 2015
  10. Jul 10, 2015
Loading