Skip to content
  1. Aug 30, 2014
    • Hal Finkel's avatar
      Fix AddAliasScopeMetadata to not add scopes when deriving from unknown pointers · a3708df4
      Hal Finkel authored
      The previous implementation of AddAliasScopeMetadata, which adds noalias
      metadata to preserve noalias parameter attribute information when inlining had
      a flaw: it would add alias.scope metadata to accesses which might have been
      derived from pointers other than noalias function parameters. This was
      incorrect because even some access known not to alias with all noalias function
      parameters could easily alias with an access derived from some other pointer.
      Instead, when deriving from some unknown pointer, we cannot add alias.scope
      metadata at all. This fixes a miscompile of the test-suite's tramp3d-v4.
      Furthermore, we cannot add alias.scope to functions unless we know they
      access only argument-derived pointers (currently, we know this only for
      memory intrinsics).
      
      Also, we fix a theoretical problem with using the NoCapture attribute to skip
      the capture check. This is incorrect (as explained in the comment added), but
      would not matter in any code generated by Clang because we get only inferred
      nocapture attributes in Clang-generated IR.
      
      This functionality is not yet enabled by default.
      
      llvm-svn: 216818
      a3708df4
  2. Aug 29, 2014
  3. Aug 27, 2014
  4. Aug 25, 2014
  5. Aug 22, 2014
    • David Blaikie's avatar
      Use DILexicalBlockFile, rather than DILexicalBlock, to track discriminator... · 2f3f76fd
      David Blaikie authored
      Use DILexicalBlockFile, rather than DILexicalBlock, to track discriminator changes to ensure discriminator changes don't introduce new DWARF DW_TAG_lexical_blocks.
      
      Somewhat unnoticed in the original implementation of discriminators, but
      it could cause instructions to end up in new, small,
      DW_TAG_lexical_blocks due to the use of DILexicalBlock to track
      discriminator changes.
      
      Instead, use DILexicalBlockFile which we already use to track file
      changes without introducing new scopes, so it works well to track
      discriminator changes in the same way.
      
      llvm-svn: 216239
      2f3f76fd
  6. Aug 21, 2014
  7. Aug 18, 2014
  8. Aug 15, 2014
  9. Aug 14, 2014
    • Hal Finkel's avatar
      Copy noalias metadata from call sites to inlined instructions · 61c38612
      Hal Finkel authored
      When a call site with noalias metadata is inlined, that metadata can be
      propagated directly to the inlined instructions (only those that might access
      memory because it is not useful on the others). Prior to inlining, the noalias
      metadata could express that a call would not alias with some other memory
      access, which implies that no instruction within that called function would
      alias. By propagating the metadata to the inlined instructions, we preserve
      that knowledge.
      
      This should complete the enhancements requested in PR20500.
      
      llvm-svn: 215676
      61c38612
    • Hal Finkel's avatar
      Add noalias metadata for general calls (not just memory intrinsics) during inlining · d2dee16c
      Hal Finkel authored
      When preserving noalias function parameter attributes by adding noalias
      metadata in the inliner, we should do this for general function calls (not just
      memory intrinsics). The logic is very similar to what already existed (except
      that we want to add this metadata even for functions taking no relevant
      parameters). This metadata can be used by ModRef queries in the caller after
      inlining.
      
      This addresses the first part of PR20500. Adding noalias metadata during
      inlining is still turned off by default.
      
      llvm-svn: 215657
      d2dee16c
  10. Aug 13, 2014
  11. Aug 12, 2014
  12. Aug 03, 2014
  13. Jul 30, 2014
  14. Jul 25, 2014
    • Hal Finkel's avatar
      Add @llvm.assume, lowering, and some basic properties · 93046910
      Hal Finkel authored
      This is the first commit in a series that add an @llvm.assume intrinsic which
      can be used to provide the optimizer with a condition it may assume to be true
      (when the control flow would hit the intrinsic call). Some basic properties are added here:
      
       - llvm.invariant(true) is dead.
       - llvm.invariant(false) is unreachable (this directly corresponds to the
         documented behavior of MSVC's __assume(0)), so is llvm.invariant(undef).
      
      The intrinsic is tagged as writing arbitrarily, in order to maintain control
      dependencies. BasicAA has been updated, however, to return NoModRef for any
      particular location-based query so that we don't unnecessarily block code
      motion.
      
      llvm-svn: 213973
      93046910
    • Hal Finkel's avatar
      Convert noalias parameter attributes into noalias metadata during inlining · ff0bcb60
      Hal Finkel authored
      This functionality is currently turned off by default.
      
      Part of the motivation for introducing scoped-noalias metadata is to enable the
      preservation of noalias parameter attribute information after inlining.
      Sometimes this can be inferred from the code in the caller after inlining, but
      often we simply lose valuable information.
      
      The overall process if fairly simple:
       1. Create a new unqiue scope domain.
       2. For each (used) noalias parameter, create a new alias scope.
       3. For each pointer, collect the underlying objects. Add a noalias scope for
          each noalias parameter from which we're not derived (and has not been
          captured prior to that point).
       4. Add an alias.scope for each noalias parameter from which we might be
          derived (or has been captured before that point).
      
      Note that the capture checks apply only if one of the underlying objects is not
      an identified function-local object.
      
      llvm-svn: 213949
      ff0bcb60
  15. Jul 24, 2014
    • Manman Ren's avatar
      Feedback from Hans on r213815. No functionaility change. · 4d189fb9
      Manman Ren authored
      llvm-svn: 213895
      4d189fb9
    • Hal Finkel's avatar
      Add scoped-noalias metadata · 9414665a
      Hal Finkel authored
      This commit adds scoped noalias metadata. The primary motivations for this
      feature are:
        1. To preserve noalias function attribute information when inlining
        2. To provide the ability to model block-scope C99 restrict pointers
      
      Neither of these two abilities are added here, only the necessary
      infrastructure. In fact, there should be no change to existing functionality,
      only the addition of new features. The logic that converts noalias function
      parameters into this metadata during inlining will come in a follow-up commit.
      
      What is added here is the ability to generally specify noalias memory-access
      sets. Regarding the metadata, alias-analysis scopes are defined similar to TBAA
      nodes:
      
      !scope0 = metadata !{ metadata !"scope of foo()" }
      !scope1 = metadata !{ metadata !"scope 1", metadata !scope0 }
      !scope2 = metadata !{ metadata !"scope 2", metadata !scope0 }
      !scope3 = metadata !{ metadata !"scope 2.1", metadata !scope2 }
      !scope4 = metadata !{ metadata !"scope 2.2", metadata !scope2 }
      
      Loads and stores can be tagged with an alias-analysis scope, and also, with a
      noalias tag for a specific scope:
      
      ... = load %ptr1, !alias.scope !{ !scope1 }
      ... = load %ptr2, !alias.scope !{ !scope1, !scope2 }, !noalias !{ !scope1 }
      
      When evaluating an aliasing query, if one of the instructions is associated
      with an alias.scope id that is identical to the noalias scope associated with
      the other instruction, or is a descendant (in the scope hierarchy) of the
      noalias scope associated with the other instruction, then the two memory
      accesses are assumed not to alias.
      
      Note that is the first element of the scope metadata is a string, then it can
      be combined accross functions and translation units. The string can be replaced
      by a self-reference to create globally unqiue scope identifiers.
      
      [Note: This overview is slightly stylized, since the metadata nodes really need
      to just be numbers (!0 instead of !scope0), and the scope lists are also global
      unnamed metadata.]
      
      Existing noalias metadata in a callee is "cloned" for use by the inlined code.
      This is necessary because the aliasing scopes are unique to each call site
      (because of possible control dependencies on the aliasing properties). For
      example, consider a function: foo(noalias a, noalias b) { *a = *b; } that gets
      inlined into bar() { ... if (...) foo(a1, b1); ... if (...) foo(a2, b2); } --
      now just because we know that a1 does not alias with b1 at the first call site,
      and a2 does not alias with b2 at the second call site, we cannot let inlining
      these functons have the metadata imply that a1 does not alias with b2.
      
      llvm-svn: 213864
      9414665a
    • Aaron Ballman's avatar
      Fixing an MSVC conversion warning about implicitly converting the shift... · 99e0ea0a
      Aaron Ballman authored
      Fixing an MSVC conversion warning about implicitly converting the shift results to 64-bits. No functional change intended.
      
      llvm-svn: 213863
      99e0ea0a
    • Manman Ren's avatar
      SimplifyCFG: fix a bug in switch to table conversion · edc60376
      Manman Ren authored
      We use gep to access the global array "switch.table", and the table index
      should be treated as unsigned. When the highest bit is 1, this commit
      zero-extends the index to an integer type with larger size.
      
      For a switch on i2, we used to generate:
      %switch.tableidx = sub i2 %0, -2
      getelementptr inbounds [4 x i64]* @switch.table, i32 0, i2 %switch.tableidx
      
      It is incorrect when %switch.tableidx is 2 or 3. The fix is to generate
      %switch.tableidx = sub i2 %0, -2
      %switch.tableidx.zext = zext i2 %switch.tableidx to i3
      getelementptr inbounds [4 x i64]* @switch.table, i32 0, i3 %switch.tableidx.zext
      
      rdar://17735071
      
      llvm-svn: 213815
      edc60376
  16. Jul 21, 2014
  17. Jul 20, 2014
  18. Jul 15, 2014
  19. Jul 12, 2014
    • Owen Anderson's avatar
      Fix an issue with the MergeBasicBlockIntoOnlyPred() helper function where it did · a8d1c3e7
      Owen Anderson authored
      not properly handle the case where the predecessor block was the entry block to
      the function.  The only in-tree client of this is JumpThreading, which worked
      around the issue in its own code.  This patch moves the solution into the helper
      so that JumpThreading (and other clients) do not have to replicate the same fix
      everywhere.
      
      llvm-svn: 212875
      a8d1c3e7
  20. Jul 11, 2014
  21. Jul 10, 2014
    • Hal Finkel's avatar
      Feeding isSafeToSpeculativelyExecute its DataLayout pointer · a995f926
      Hal Finkel authored
      isSafeToSpeculativelyExecute can optionally take a DataLayout pointer. In the
      past, this was mainly used to make better decisions regarding divisions known
      not to trap, and so was not all that important for users concerned with "cheap"
      instructions. However, now it also helps look through bitcasts for
      dereferencable loads, and will also be important if/when we add a
      dereferencable pointer attribute.
      
      This is some initial work to feed a DataLayout pointer through to callers of
      isSafeToSpeculativelyExecute, generally where one was already available.
      
      llvm-svn: 212720
      a995f926
  22. Jul 09, 2014
    • Alexey Samsonov's avatar
      Decouple llvm::SpecialCaseList text representation and its LLVM IR semantics. · b7dd329f
      Alexey Samsonov authored
      Turn llvm::SpecialCaseList into a simple class that parses text files in
      a specified format and knows nothing about LLVM IR. Move this class into
      LLVMSupport library. Implement two users of this class:
        * DFSanABIList in DFSan instrumentation pass.
        * SanitizerBlacklist in Clang CodeGen library.
      The latter will be modified to use actual source-level information from frontend
      (source file names) instead of unstable LLVM IR things (LLVM Module identifier).
      
      Remove dependency edge from ClangCodeGen/ClangDriver to LLVMTransformUtils.
      
      No functionality change.
      
      llvm-svn: 212643
      b7dd329f
  23. Jul 08, 2014
  24. Jul 07, 2014
  25. Jul 06, 2014
  26. Jul 03, 2014
  27. Jun 30, 2014
    • David Blaikie's avatar
      DebugInfo: Preserve debug location information when transforming a call into... · 644d2eee
      David Blaikie authored
      DebugInfo: Preserve debug location information when transforming a call into an invoke during inlining.
      
      This both improves basic debug info quality, but also fixes a larger
      hole whenever we inline a call/invoke without a location (debug info for
      the entire inlining is lost and other badness that the debug info
      emission code is currently working around but shouldn't have to).
      
      llvm-svn: 212065
      644d2eee
  28. Jun 27, 2014
  29. Jun 26, 2014
    • Hans Wennborg's avatar
      Don't build switch tables for dllimport and TLS variables in GEPs · b03ebfb7
      Hans Wennborg authored
      This is a follow-up to r211331, which failed to notice that we were
      returning early from ValidLookupTableConstant for GEPs.
      
      llvm-svn: 211753
      b03ebfb7
    • Alp Toker's avatar
      Introduce a string_ostream string builder facilty · 61471738
      Alp Toker authored
      string_ostream is a safe and efficient string builder that combines opaque
      stack storage with a built-in ostream interface.
      
      small_string_ostream<bytes> additionally permits an explicit stack storage size
      other than the default 128 bytes to be provided. Beyond that, storage is
      transferred to the heap.
      
      This convenient class can be used in most places an
      std::string+raw_string_ostream pair or SmallString<>+raw_svector_ostream pair
      would previously have been used, in order to guarantee consistent access
      without byte truncation.
      
      The patch also converts much of LLVM to use the new facility. These changes
      include several probable bug fixes for truncated output, a programming error
      that's no longer possible with the new interface.
      
      llvm-svn: 211749
      61471738
  30. Jun 21, 2014
Loading