Skip to content
  1. Jan 25, 2018
    • Mikael Holmen's avatar
      [GlobalOpt] Emit fragments using field offsets from struct layout · 886edf8f
      Mikael Holmen authored
      Summary:
      When creating the debug fragments for a SRA'd struct, use the fields'
      offsets, taken from the struct layout, as the offsets for the resulting
      fragments. This fixes an issue where GlobalOpt would emit fragments with
      incorrect offsets for padded fields.
      
      This should solve PR36016.
      
      Patch by David Stenberg.
      
      Reviewers: aprantl
      
      Reviewed By: aprantl
      
      Subscribers: llvm-commits
      
      Differential Revision: https://reviews.llvm.org/D42489
      
      llvm-svn: 323411
      886edf8f
  2. Jan 17, 2018
    • Zaara Syeda's avatar
      Revert [PowerPC] This reverts commit rL322721 · c9dc7b45
      Zaara Syeda authored
      Failing build bots. Revert the commit now.
      
      llvm-svn: 322748
      c9dc7b45
    • Zaara Syeda's avatar
      [PowerPC] Add handling for ColdCC calling convention and a pass to mark · 8e951fd2
      Zaara Syeda authored
      candidates with coldcc attribute.
      
      This patch adds support for the coldcc calling convention for Power.
      This changes the set of non-volatile registers. It includes a pass to stress
      test the implementation by marking all static directly called functions with
      the coldcc attribute through the option -enable-coldcc-stress-test. It also
      includes an option, -ppc-enable-coldcc, to add the coldcc attribute to
      functions which are cold at all call sites based on BlockFrequencyInfo when
      the containing function does not call any non cold functions.
      
      Differential Revision: https://reviews.llvm.org/D38413
      
      llvm-svn: 322721
      8e951fd2
  3. Jan 11, 2018
    • Rafael Espindola's avatar
      Make internal/private GVs implicitly dso_local. · e4b0231c
      Rafael Espindola authored
      While updating clang tests for having clang set dso_local I noticed
      that:
      
      - There are *a lot* of tests to update.
      - Many of the updates are redundant.
      
      They are redundant because a GV is "obviously dso_local". This patch
      starts formalizing that a bit by requiring that internal and private
      GVs be dso_local too. Since they all are, we don't have to print
      dso_local to the textual representation, making it a bit more compact
      and easier to read.
      
      llvm-svn: 322317
      e4b0231c
  4. Nov 07, 2017
  5. Oct 11, 2017
  6. Sep 21, 2017
    • Strahinja Petrovic's avatar
      Fixed reverted commit rL312318 · 29202f6d
      Strahinja Petrovic authored
      This patch contains fix for reverted commit
      rL312318 which was causing failure due to use
      of unchecked dyn_cast to CIInit.
      
      Patch by: Nikola Prica.
      
      llvm-svn: 313870
      29202f6d
  7. Sep 08, 2017
  8. Sep 01, 2017
  9. Aug 31, 2017
  10. Aug 30, 2017
  11. Aug 09, 2017
  12. Aug 04, 2017
  13. Jul 13, 2017
  14. Jul 12, 2017
    • Davide Italiano's avatar
      [IPO] Temporarily rollback r307215. · b8ad3eeb
      Davide Italiano authored
      [GlobalOpt] Remove unreachable blocks before optimizing a function.
      While the change is presumably correct, it exposes a latent bug
      in DI which breaks on of the CFI checks. I'll analyze it further
      and try to understand what's going on.
      
      llvm-svn: 307729
      b8ad3eeb
    • Konstantin Zhuravlyov's avatar
      Enhance synchscope representation · bb80d3e1
      Konstantin Zhuravlyov authored
        OpenCL 2.0 introduces the notion of memory scopes in atomic operations to
        global and local memory. These scopes restrict how synchronization is
        achieved, which can result in improved performance.
      
        This change extends existing notion of synchronization scopes in LLVM to
        support arbitrary scopes expressed as target-specific strings, in addition to
        the already defined scopes (single thread, system).
      
        The LLVM IR and MIR syntax for expressing synchronization scopes has changed
        to use *syncscope("<scope>")*, where <scope> can be "singlethread" (this
        replaces *singlethread* keyword), or a target-specific name. As before, if
        the scope is not specified, it defaults to CrossThread/System scope.
      
        Implementation details:
          - Mapping from synchronization scope name/string to synchronization scope id
            is stored in LLVM context;
          - CrossThread/System and SingleThread scopes are pre-defined to efficiently
            check for known scopes without comparing strings;
          - Synchronization scope names are stored in SYNC_SCOPE_NAMES_BLOCK in
            the bitcode.
      
      Differential Revision: https://reviews.llvm.org/D21723
      
      llvm-svn: 307722
      bb80d3e1
  15. Jul 06, 2017
    • Davide Italiano's avatar
      [GlobalOpt] Remove unreachable blocks before optimizing a function. · 7dd0694f
      Davide Italiano authored
      LLVM's definition of dominance allows instructions that are cyclic
      in unreachable blocks, e.g.:
      
        %pat = select i1 %condition, @global, i16* %pat
      
      because any instruction dominates an instruction in a block that's
      not reachable from entry.
      So, remove unreachable blocks from the function, because a) there's
      no point in analyzing them and b) GlobalOpt should otherwise grow
      some more complicated logic to break these cycles.
      
      Differential Revision:  https://reviews.llvm.org/D35028
      
      llvm-svn: 307215
      7dd0694f
  16. May 01, 2017
  17. Apr 27, 2017
  18. Apr 26, 2017
    • Sanjoy Das's avatar
      Reverts commit r301424, r301425 and r301426 · 2cbeb00f
      Sanjoy Das authored
      Commits were:
      
      "Use WeakVH instead of WeakTrackingVH in AliasSetTracker's UnkownInsts"
      "Add a new WeakVH value handle; NFC"
      "Rename WeakVH to WeakTrackingVH; NFC"
      
      The changes assumed pointers are 8 byte aligned on all architectures.
      
      llvm-svn: 301429
      2cbeb00f
    • Sanjoy Das's avatar
      Rename WeakVH to WeakTrackingVH; NFC · 01de5577
      Sanjoy Das authored
      Summary:
      I plan to use WeakVH to mean "nulls itself out on deletion, but does
      not track RAUW" in a subsequent commit.
      
      Reviewers: dblaikie, davide
      
      Reviewed By: davide
      
      Subscribers: arsenm, mehdi_amini, mcrosier, mzolotukhin, jfb, llvm-commits, nhaehnle
      
      Differential Revision: https://reviews.llvm.org/D32266
      
      llvm-svn: 301424
      01de5577
  19. Apr 20, 2017
  20. Apr 11, 2017
    • Matt Arsenault's avatar
      Allow DataLayout to specify addrspace for allocas. · 3c1fc768
      Matt Arsenault authored
      LLVM makes several assumptions about address space 0. However,
      alloca is presently constrained to always return this address space.
      There's no real way to avoid using alloca, so without this
      there is no way to opt out of these assumptions.
      
      The problematic assumptions include:
      - That the pointer size used for the stack is the same size as
        the code size pointer, which is also the maximum sized pointer.
      
      - That 0 is an invalid, non-dereferencable pointer value.
      
      These are problems for AMDGPU because alloca is used to
      implement the private address space, which uses a 32-bit
      index as the pointer value. Other pointers are 64-bit
      and behave more like LLVM's notion of generic address
      space. By changing the address space used for allocas,
      we can change our generic pointer type to be LLVM's generic
      pointer type which does have similar properties.
      
      llvm-svn: 299888
      3c1fc768
  21. Mar 21, 2017
    • Reid Kleckner's avatar
      Rename AttributeSet to AttributeList · b518054b
      Reid Kleckner authored
      Summary:
      This class is a list of AttributeSetNodes corresponding the function
      prototype of a call or function declaration. This class used to be
      called ParamAttrListPtr, then AttrListPtr, then AttributeSet. It is
      typically accessed by parameter and return value index, so
      "AttributeList" seems like a more intuitive name.
      
      Rename AttributeSetImpl to AttributeListImpl to follow suit.
      
      It's useful to rename this class so that we can rename AttributeSetNode
      to AttributeSet later. AttributeSet is the set of attributes that apply
      to a single function, argument, or return value.
      
      Reviewers: sanjoy, javed.absar, chandlerc, pete
      
      Reviewed By: pete
      
      Subscribers: pete, jholewinski, arsenm, dschuff, mehdi_amini, jfb, nhaehnle, sbc100, void, llvm-commits
      
      Differential Revision: https://reviews.llvm.org/D31102
      
      llvm-svn: 298393
      b518054b
  22. Jan 24, 2017
    • David L. Jones's avatar
      [Analysis] Add LibFunc_ prefix to enums in TargetLibraryInfo. (NFC) · d21529fa
      David L. Jones authored
      Summary:
      The LibFunc::Func enum holds enumerators named for libc functions.
      Unfortunately, there are real situations, including libc implementations, where
      function names are actually macros (musl uses "#define fopen64 fopen", for
      example; any other transitively visible macro would have similar effects).
      
      Strictly speaking, a conforming C++ Standard Library should provide any such
      macros as functions instead (via <cstdio>). However, there are some "library"
      functions which are not part of the standard, and thus not subject to this
      rule (fopen64, for example). So, in order to be both portable and consistent,
      the enum should not use the bare function names.
      
      The old enum naming used a namespace LibFunc and an enum Func, with bare
      enumerators. This patch changes LibFunc to be an enum with enumerators prefixed
      with "LibFFunc_". (Unfortunately, a scoped enum is not sufficient to override
      macros.)
      
      There are additional changes required in clang.
      
      Reviewers: rsmith
      
      Subscribers: mehdi_amini, mzolotukhin, nemanjai, llvm-commits
      
      Differential Revision: https://reviews.llvm.org/D28476
      
      llvm-svn: 292848
      d21529fa
  23. Dec 02, 2016
  24. Sep 15, 2016
    • Mehdi Amini's avatar
      [GlobalOpt] Dead Eliminate declarations · d8803098
      Mehdi Amini authored
      GlobalOpt is already dead-code-eliminating global definitions. With
      this change it also takes care of declarations.
      Hopefully this should make it now a strict superset of GlobalDCE.
      This is important for LTO/ThinLTO as we don't want the linker to see
      "undefined reference" when it processes the input files: it could
      prevent proper internalization (or even load an extra file from a
      static archive, changing the behavior of the program!).
      
      llvm-svn: 281653
      d8803098
  25. Aug 11, 2016
  26. Aug 09, 2016
  27. Jul 29, 2016
    • David Majnemer's avatar
      [ConstnatFolding] Teach the folder how to fold ConstantVector · d536f232
      David Majnemer authored
      A ConstantVector can have ConstantExpr operands and vice versa.
      However, the folder had no ability to fold ConstantVectors which, in
      some cases, was an optimization barrier.
      
      Instead, rephrase the folder in terms of Constants instead of
      ConstantExprs and teach callers how to deal with failure.
      
      llvm-svn: 277099
      d536f232
  28. Jul 22, 2016
  29. Jun 26, 2016
  30. Jun 14, 2016
    • Peter Collingbourne's avatar
      IR: Introduce local_unnamed_addr attribute. · 96efdd61
      Peter Collingbourne authored
      If a local_unnamed_addr attribute is attached to a global, the address
      is known to be insignificant within the module. It is distinct from the
      existing unnamed_addr attribute in that it only describes a local property
      of the module rather than a global property of the symbol.
      
      This attribute is intended to be used by the code generator and LTO to allow
      the linker to decide whether the global needs to be in the symbol table. It is
      possible to exclude a global from the symbol table if three things are true:
      - This attribute is present on every instance of the global (which means that
        the normal rule that the global must have a unique address can be broken without
        being observable by the program by performing comparisons against the global's
        address)
      - The global has linkonce_odr linkage (which means that each linkage unit must have
        its own copy of the global if it requires one, and the copy in each linkage unit
        must be the same)
      - It is a constant or a function (which means that the program cannot observe that
        the unique-address rule has been broken by writing to the global)
      
      Although this attribute could in principle be computed from the module
      contents, LTO clients (i.e. linkers) will normally need to be able to compute
      this property as part of symbol resolution, and it would be inefficient to
      materialize every module just to compute it.
      
      See:
      http://lists.llvm.org/pipermail/llvm-commits/Week-of-Mon-20160509/356401.html
      http://lists.llvm.org/pipermail/llvm-commits/Week-of-Mon-20160516/356738.html
      for earlier discussion.
      
      Part of the fix for PR27553.
      
      Differential Revision: http://reviews.llvm.org/D20348
      
      llvm-svn: 272709
      96efdd61
  31. Apr 29, 2016
  32. Apr 27, 2016
  33. Apr 26, 2016
Loading