Skip to content
  1. Sep 01, 2014
    • 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
  4. Aug 29, 2014
    • Robin Morisset's avatar
      Fix typos in comments, NFC · 039781ef
      Robin Morisset authored
      Summary: Just fixing comments, no functional change.
      
      Test Plan: N/A
      
      Reviewers: jfb
      
      Subscribers: mcrosier, llvm-commits
      
      Differential Revision: http://reviews.llvm.org/D5130
      
      llvm-svn: 216784
      039781ef
    • Reid Kleckner's avatar
      Add a const and munge some comments · dccd0cbe
      Reid Kleckner authored
      llvm-svn: 216781
      dccd0cbe
    • Reid Kleckner's avatar
      musttail: Forward regparms of variadic functions on x86_64 · 16e55412
      Reid Kleckner authored
      Summary:
      If a variadic function body contains a musttail call, then we copy all
      of the remaining register parameters into virtual registers in the
      function prologue. We track the virtual registers through the function
      body, and add them as additional registers to pass to the call. Because
      this is all done in virtual registers, the register allocator usually
      gives us good code. If the function does a call, however, it will have
      to spill and reload all argument registers (ew).
      
      Forwarding regparms on x86_32 is not implemented because most compilers
      don't support varargs in 32-bit with regparms.
      
      Reviewers: majnemer
      
      Subscribers: aemerson, llvm-commits
      
      Differential Revision: http://reviews.llvm.org/D5060
      
      llvm-svn: 216780
      16e55412
    • Reid Kleckner's avatar
      Verifier: Don't reject varargs callee cleanup functions · 329d4a2b
      Reid Kleckner authored
      We've rejected these kinds of functions since r28405 in 2006 because
      it's impossible to lower the return of a callee cleanup varargs
      function. However there are lots of legal ways to leave such a function
      without returning, such as aborting. Today we can leave a function with
      a musttail call to another function with the correct prototype, and
      everything works out.
      
      I'm removing the verifier check declaring that a normal return from such
      a function is UB.
      
      Reviewed By: nlewycky
      
      Differential Revision: http://reviews.llvm.org/D5059
      
      llvm-svn: 216779
      329d4a2b
    • Louis Gerbarg's avatar
      Remove spurious mask operations from AArch64 add->compares on 16 and 8 bit values · 03c627e8
      Louis Gerbarg authored
      This patch checks for DAG patterns that are an add or a sub followed by a
      compare on 16 and 8 bit inputs. Since AArch64 does not support those types
      natively they are legalized into 32 bit values, which means that mask operations
      are inserted into the DAG to emulate overflow behaviour. In many cases those
      masks do not change the result of the processing and just introduce a dependent
      operation, often in the middle of a hot loop.
      
      This patch detects the relevent DAG patterns and then tests to see if the
      transforms are equivalent with and without the mask, removing the mask if
      possible. The exact mechanism of this patch was discusses in
      http://lists.cs.uiuc.edu/pipermail/llvmdev/2014-July/074444.html
      
      There is a reasonably good chance there are missed oppurtunities due to similiar
      (but not identical) DAG patterns that could be funneled into this test, adding
      them should be simple if we see test cases.
      
      Tests included.
      
      rdar://13754426
      
      llvm-svn: 216776
      03c627e8
    • Reid Kleckner's avatar
      X86: Fix conflict over ESI between base register and rep;movsl · ab99e24e
      Reid Kleckner authored
      The new solution is to not use this lowering if there are any dynamic
      allocas in the current function. We know up front if there are dynamic
      allocas, but we don't know if we'll need to create stack temporaries
      with large alignment during lowering. Conservatively assume that we will
      need such temporaries.
      
      Reviewed By: hans
      
      Differential Revision: http://reviews.llvm.org/D5128
      
      llvm-svn: 216775
      ab99e24e
    • Robin Morisset's avatar
      Relax the constraint more in MemoryDependencyAnalysis.cpp · 163ef040
      Robin Morisset authored
      Even loads/stores that have a stronger ordering than monotonic can be safe.
      The rule is no release-acquire pair on the path from the QueryInst, assuming that
      the QueryInst is not atomic itself.
      
      llvm-svn: 216771
      163ef040
    • Robin Morisset's avatar
      [X86] Refactor X86ISelDAGToDAG::SelectAtomicLoadArith - NFC · 5ce0ce44
      Robin Morisset authored
      Summary:
      Mostly renaming the (not very explicit) variables Tmp0, .. Tmp4, and grouping
      related statements together, along with a few lines of comments for the
      surprising parts.
      
      No functional change intended.
      
      Test Plan: make check-all
      
      Reviewers: jfb
      
      Subscribers: llvm-commits
      
      Differential Revision: http://reviews.llvm.org/D5088
      
      llvm-svn: 216768
      5ce0ce44
Loading