Skip to content
  1. Oct 13, 2014
    • Johannes Doerfert's avatar
      [Refactor][NfC] Simplify and clean the handling of (new) access relations · a99130f0
      Johannes Doerfert authored
        This patch does not change the semantic on it's own. However, the
        dependence analysis as well as dce will now use the newest available
        access relation for each memory access, thus if at some point the json
        importer or any other pass will run before those two and set a new
        access relation the behaviour will be different. In general it is
        unclear if the dependence analysis and dce should be run on the old or
        new access functions anyway. If we need to access the original access
        function from the outside later, we can expose the getter again.
      
      Differential Revision: http://reviews.llvm.org/D5707
      
      llvm-svn: 219612
      a99130f0
  2. Oct 10, 2014
  3. Oct 08, 2014
  4. Oct 07, 2014
  5. Oct 06, 2014
  6. Oct 05, 2014
  7. Oct 03, 2014
  8. Oct 02, 2014
  9. Oct 01, 2014
    • Johannes Doerfert's avatar
      Annotate LLVM-IR for all parallel loops · c7b719fc
      Johannes Doerfert authored
        This change allows to annotate all parallel loops with loop id metadata.
        Furthermore, it will annotate memory instructions with
        llvm.mem.parallel_loop_access metadata for all surrounding parallel loops.
        This is especially usefull if an external paralleliser is used.
      
        This also removes the PollyLoopInfo class and comments the
        LoopAnnotator.
      
        A test case for multiple parallel loops is attached.
      
      llvm-svn: 218793
      c7b719fc
    • Johannes Doerfert's avatar
      [RTC] Use the domain to split alias groups. · eeab05a0
      Johannes Doerfert authored
        We use a parametric abstraction of the domain to split alias groups
        if accesses cannot be executed under the same parameter evaluation.
      
        The two test cases check that we can remove alias groups if the
        pointers which might alias are never accessed under the same parameter
        evaluation and that the minimal/maximal accesses are not global but
        with regards to the parameter evaluation.
      
      Differential Revision: http://reviews.llvm.org/D5436
      
      llvm-svn: 218758
      eeab05a0
    • Johannes Doerfert's avatar
      [RTC] Split alias groups according to read only base addresses · 13771738
      Johannes Doerfert authored
        If there are multiple read only base addresses in an alias group
        we can split it into multiple alias groups each with only one
        read only access. This way we might reduce the number of
        comparisons significantly as it grows linear in the number of
        alias groups but exponential in their size.
      
      Differential Revision: http://reviews.llvm.org/D5435
      
      llvm-svn: 218757
      13771738
  10. Sep 29, 2014
  11. Sep 27, 2014
    • Johannes Doerfert's avatar
      [RTC] Bail if too many parameters are involved in a RTC access. · 9143d67a
      Johannes Doerfert authored
        If too many parameters are involved in accesses used to create RTCs
        we might end up with enormous compile times and RTC expressions.
        The reason is that the lexmin/lexmax is dependent on all these
        parameters and isl might need to create a case for every "ordering"
        of them (e.g., p0 <= p1 <= p2, p1 <= p0 <= p2, ...).
      
        The exact number of parameters allowed in accesses is defined by the
        command line option -polly-rtc-max-parameters=XXX and set by default
        to 8.
      
        Differential Revision: http://reviews.llvm.org/D5500
      
      llvm-svn: 218566
      9143d67a
  12. Sep 24, 2014
    • Tobias Grosser's avatar
      We do not support alias checks for base pointers defined inside the SCoP · 1eedb67f
      Tobias Grosser authored
      The run-time alias check places code that involves the base pointer at the
      beginning of the SCoP. This breaks if the base pointer is defined inside the
      SCoP. Hence, we can only create a run-time alias check if we are sure the base
      pointer is not an instruction defined inside the scop. If it is we refuse to
      handle the SCoP.
      
      This commit should unbreak most of our current LNT failures.
      
      Differential Revision: http://reviews.llvm.org/D5483
      
      llvm-svn: 218412
      1eedb67f
  13. Sep 19, 2014
    • Johannes Doerfert's avatar
      [Fix] Allow pointer types as access elements and compare them correctly · 77bd5ae3
      Johannes Doerfert authored
        This fixes two problems which are usualy caused together:
          1) The elements of an isl AST access expression could be pointers
             not only integers, floats and vectores thereof.
          2) The runtime alias checks need to compare pointers but if they
             are of a different type we need to cast them into a "max" type
             similar to the non pointer case.
      
      llvm-svn: 218113
      77bd5ae3
  14. Sep 18, 2014
  15. Sep 15, 2014
    • Johannes Doerfert's avatar
      [Fix] Rewire the Region after a unconditional entry edge is created · 0fe35dd0
      Johannes Doerfert authored
        We use SplitEdge to split a conditional entry edge of the SCoP region.
        However, SplitEdge can cause two different situations (depending on
        whether or not the edge is critical). This patch tests
        which one is present and deals with the former unhandled one.
      
        It also refactors and unifies the case we have to change the basic
        blocks of the SCoP to new ones (see replaceScopAndRegionEntry).
      
      llvm-svn: 217802
      0fe35dd0
  16. Sep 13, 2014
    • Johannes Doerfert's avatar
      Compute and print the minimal loop carried dependency distance · 377a620f
      Johannes Doerfert authored
        During the IslAst parallelism check also compute the minimal dependency
        distance and store it in the IstAst for node.
      
      Reviewer: sebpop
      
      Differential Revision: http://reviews.llvm.org/D4987
      
      llvm-svn: 217729
      377a620f
    • Tobias Grosser's avatar
      Delinearize _all_ accesses to a multi-dimensional array · 230acc44
      Tobias Grosser authored
      Even though we previously correctly detected the multi-dimensional access
      pattern for accesses with a certain base address, we only delinearized
      non-affine accesses to this address. Affine accesses have not been touched and
      remained as single dimensional accesses. The result was an inconsistent
      description of accesses to the same array, with some being one dimensional and
      some being multi-dimensional.
      
      This patch ensures that all accesses are delinearized with the same
      dimensionality as soon as a single one of them has been detected as non-affine.
      
      While writing this patch, it became evident that the options
      -polly-allow-nonaffine and -polly-detect-keep-going have not been properly
      supported in case delinearization has been turned on. This patch adds relevant
      test coverage and addresses these issues as well. We also added some more
      documentation to the functions that are modified in this patch.
      
      This fixes llvm.org/PR20123
      
      Differential Revision: http://reviews.llvm.org/D5329
      
      llvm-svn: 217728
      230acc44
    • Tobias Grosser's avatar
      Check that the elements of an array have the same size · bcd4efff
      Tobias Grosser authored
      At the moment we assume that only elements of identical size are stored/loaded
      to a certain base pointer. This patch adds logic to the scop detection to verify
      this.
      
      Differential Revision: http://reviews.llvm.org/D5329
      
      llvm-svn: 217727
      bcd4efff
  17. Sep 12, 2014
  18. Sep 10, 2014
    • Johannes Doerfert's avatar
      Allow to generate a loop without the GuardBB · dd5c1442
      Johannes Doerfert authored
        This allows us to omit the GuardBB in front of created loops
        if we can show the loop trip count is at least one. It also
        simplifies the dominance relation inside the new created region.
        A GuardBB (even with a constant branch condition) might trigger
        false dominance errors during function verification.
      
      Differential Revision: http://reviews.llvm.org/D5297
      
      llvm-svn: 217525
      dd5c1442
    • Johannes Doerfert's avatar
      [Refactor] Cleanup isl code generation · 38262244
      Johannes Doerfert authored
      Summary:
        + Refactor the runtime check (RTC) build function
        + Added helper function to create an PollyIRBuilder
        + Change the simplify region function to create not
          only unique entry and exit edges but also enfore that
          the entry edge is unconditional
        + Cleaned the IslCodeGeneration runOnScop function:
            - less post-creation changes of the created IR
        + Adjusted and added test cases
      
      Reviewers: grosser, sebpop, simbuerg, dpeixott
      
      Subscribers: llvm-commits, #polly
      
      Differential Revision: http://reviews.llvm.org/D5076
      
      llvm-svn: 217508
      38262244
Loading