Skip to content
  1. Sep 01, 2014
    • Hal Finkel's avatar
      Feed AA to the inliner and use AA->getModRefBehavior in AddAliasScopeMetadata · 0c083024
      Hal Finkel authored
      This feeds AA through the IFI structure into the inliner so that
      AddAliasScopeMetadata can use AA->getModRefBehavior to figure out which
      functions only access their arguments (instead of just hard-coding some
      knowledge of memory intrinsics). Most of the information is only available from
      BasicAA; this is important for preserving alias scoping information for
      target-specific intrinsics when doing the noalias parameter attribute to
      metadata conversion.
      
      llvm-svn: 216866
      0c083024
    • Nick Lewycky's avatar
      Ignore lifetime intrinsics in use list for MemCpyOptimizer. Patch by Luqman... · fc243d54
      Nick Lewycky authored
      Ignore lifetime intrinsics in use list for MemCpyOptimizer. Patch by Luqman Aden, review by Hal Finkel.
      
      llvm-svn: 216865
      fc243d54
    • Nick Lewycky's avatar
      Remove an errant outer loop that contains nothing but an inner loop over... · 97756409
      Nick Lewycky authored
      Remove an errant outer loop that contains nothing but an inner loop over exactly the same elements. While no functionality is change intended (and hence there are no changes to tests), you don't want to skip this revision if bisecting for errors.
      
      llvm-svn: 216864
      97756409
    • Hal Finkel's avatar
      Fix AddAliasScopeMetadata again - alias.scope must be a complete description · cbb85f24
      Hal Finkel authored
      I thought that I had fixed this problem in r216818, but I did not do a very
      good job. The underlying issue is that when we add alias.scope metadata we are
      asserting that this metadata completely describes the aliasing relationships
      within the current aliasing scope domain, and so in the context of translating
      noalias argument attributes, the pointers must all be based on noalias
      arguments (as underlying objects) and have no other kind of underlying object.
      In r216818 excluding appropriate accesses from getting alias.scope metadata is
      done by looking for underlying objects that are not identified function-local
      objects -- but that's wrong because allocas, etc. are also function-local
      objects and we need to explicitly check that all underlying objects are the
      noalias arguments for which we're adding metadata aliasing scopes.
      
      This fixes the underlying-object check for adding alias.scope metadata, and
      does some refactoring of the related capture-checking eligibility logic (and
      adds more comments; hopefully making everything a bit clearer).
      
      Fixes self-hosting on x86_64 with -mllvm -enable-noalias-to-md-conversion (the
      feature is still disabled by default).
      
      llvm-svn: 216863
      cbb85f24
    • Jingyue Wu's avatar
      [MachineSink] Use the real post dominator tree · 5208cc5d
      Jingyue Wu authored
      Summary:
      Fixes a FIXME in MachineSinking. Instead of using the simple heuristics
      in isPostDominatedBy, use the real MachinePostDominatorTree. The old
      heuristics caused instructions to sink unnecessarily, and might create
      register pressure.
      
      Test Plan:
      Added a NVPTX codegen test to verify that our change is in effect. It also
      shows the unnecessary register pressure caused by over-sinking. Updated
      affected tests in AArch64 and X86.
      
      Reviewers: eliben, meheff, Jiangning
      
      Reviewed By: Jiangning
      
      Subscribers: jholewinski, aemerson, mcrosier, llvm-commits
      
      Differential Revision: http://reviews.llvm.org/D4814
      
      llvm-svn: 216862
      5208cc5d
  2. Aug 31, 2014
  3. Aug 30, 2014
Loading