Skip to content
  1. May 23, 2016
  2. May 19, 2016
  3. May 17, 2016
  4. May 12, 2016
    • Johannes Doerfert's avatar
      Check late for profitability · e6e3c924
      Johannes Doerfert authored
        Before this patch we only expanded valid __and__ profitable region. Therefor
        we did not allow the expansion to create a profitable region from a
        non-profitable one.  With this patch we will remember and expand all valid
        regions and check for profitability only at the end.
      
        This patch increases the number of valid SCoPs in the LLVM-TS and SPEC
        2000/2006 by 28% (from 303 to 390), including the hot loop in hmmer.
      
      llvm-svn: 269343
      e6e3c924
    • Johannes Doerfert's avatar
      Cleanup rejection log handling [NFC] · 6c7639b3
      Johannes Doerfert authored
        This patch cleans up the rejection log handling during the
        ScopDetection. It consists of two interconnected parts:
          - We keep all detection contexts for a function in order to provide
            more information to the user, e.g., about the rejection of
            extended/intermediate regions.
          - We remove the mutable "RejectLogs" member as the information is
            available through the detection contexts.
      
      llvm-svn: 269323
      6c7639b3
    • Johannes Doerfert's avatar
      Bring some comments up to date [NFC] · 5c2b556b
      Johannes Doerfert authored
      llvm-svn: 269301
      5c2b556b
    • Johannes Doerfert's avatar
      Support truncate operations · 6f1bb7a9
      Johannes Doerfert authored
        Truncate operations are basically modulo operations, thus we can model
        them that way. However, for large types we assume the operand to fit
        in the new type size instead of introducing a modulo with a very large
        constant.
      
      llvm-svn: 269300
      6f1bb7a9
    • Johannes Doerfert's avatar
      Check overflows in RTCs and bail accordingly · 404a0f81
      Johannes Doerfert authored
        We utilize assumptions on the input to model IR in polyhedral world.
        To verify these assumptions we version the code and guard it with a
        runtime-check (RTC). However, since the RTCs are themselves generated
        from the polyhedral representation we generate them under the same
        assumptions that they should verify. In other words, the guarantees
        that we try to provide with the RTCs do not hold for the RTCs
        themselves. To this end it is necessary to employ a different check
        for the RTCs that will verify the assumptions did hold for them too.
      
      Differential Revision: http://reviews.llvm.org/D20165
      
      llvm-svn: 269299
      404a0f81
  5. May 10, 2016
    • Johannes Doerfert's avatar
      Invalidate unprofitable SCoPs after creation · 27d12d3d
      Johannes Doerfert authored
        If a profitable run is performed we will check if the SCoP seems to be
        profitable after creation but before e.g., dependence are computed. This is
        needed as SCoP detection only approximates the actual SCoP representation.
        In the end this should allow us to be less conservative during the SCoP
        detection while keeping the compile time in check.
      
      llvm-svn: 269074
      27d12d3d
    • Johannes Doerfert's avatar
      Weaken profitability constraints during ScopDetection · bf9473b2
      Johannes Doerfert authored
        Regions with one affine loop can be profitable if the loop is
        distributable. To this end we will allow them to be treated as
        profitable if they contain at least two non-trivial basic blocks.
      
      llvm-svn: 269064
      bf9473b2
    • Johannes Doerfert's avatar
      [FIX] Cleanup isl objects prior to early exit · ede4ecae
      Johannes Doerfert authored
      llvm-svn: 269061
      ede4ecae
    • Johannes Doerfert's avatar
      Handle llvm.assume inside the SCoP · 2b92a0e4
      Johannes Doerfert authored
        The assumption attached to an llvm.assume in the SCoP needs to be
        combined with the domain of the surrounding statement but can
        nevertheless be used to refine the context.
      
        This fixes the problems mentioned in PR27067.
      
      llvm-svn: 269060
      2b92a0e4
    • Johannes Doerfert's avatar
      Propagate complexity problems during domain generation [NFC] · 297c720d
      Johannes Doerfert authored
        This patches makes the propagation of complexity problems during
        domain generation consistent. Additionally, it makes it less likely to
        encounter ill-formed domains later, e.g., during schedule generation.
      
      llvm-svn: 269055
      297c720d
    • Johannes Doerfert's avatar
      [FIX] Create error-restrictions late · 14b1cf35
      Johannes Doerfert authored
        Before this patch we generated error-restrictions only for
        error-blocks, thus blocks (or regions) containing a not represented
        function call. However, the same reasoning is needed if the invalid
        domain of a statement subsumes its actual domain. To this end we move
        the generation of error-restrictions after the propagation of the
        invalid domains. Consequently, error-statements are now defined more
        general as statements that are assumed to be not executed.
        Additionally, we do not record an empty domain for such statements but
        a nullptr instead. This allows to distinguish between error-statements
        and dead-statements.
      
      llvm-svn: 269053
      14b1cf35
    • Johannes Doerfert's avatar
      Refactor simplifySCoP [NFC] · 2640454d
      Johannes Doerfert authored
        Remove obsolete code and decrease the indention in the
        Scop::simplifySCoP() function.
      
      llvm-svn: 269049
      2640454d
    • Johannes Doerfert's avatar
      Simplify the internal representation according to the context [NFC] · a60ad845
      Johannes Doerfert authored
        We now use context information to simplify the domains and access
        functions of the SCoP instead of just aligning them with the parameter
        space.
      
      llvm-svn: 269048
      a60ad845
    • Johannes Doerfert's avatar
      Simplify access relation for invariant loads early [NFC] · e243753a
      Johannes Doerfert authored
      llvm-svn: 269046
      e243753a
    • Johannes Doerfert's avatar
      Prevent complex access ranges with low number of pieces. · 5f173d41
      Johannes Doerfert authored
        Previously we checked the number of pieces to decide whether or not a
        invariant load was to complex to be generated. However, there are
        cases when e.g., divisions cause the complexity to spike regardless of
        the number of pieces. To this end we now check the number of totally
        involved dimensions which will increase with the number of pieces but
        also the number of divisions.
      
      llvm-svn: 269045
      5f173d41
    • Johannes Doerfert's avatar
      Expose interpretAsUnsigned in the SCEVAffinator [NFC] · 56b37764
      Johannes Doerfert authored
        This exposes the functionality to interpret a SCEV, or better the
        piece-wise function created from the SCEV, as an unsigned value
        instead of a signed one.
      
      llvm-svn: 269044
      56b37764
  6. May 07, 2016
  7. May 04, 2016
    • Michael Kruse's avatar
      Update to ISL 0.17. · e0b34f36
      Michael Kruse authored
      This release includes sevaral improvments compared to the previous
      version isl-0.16.1-145-g243bf7c (from the ISL 0.17 announcement):
      - optionally combine SCCs incrementally in scheduler
      - optionally maximize coincidence in scheduler
      - optionally avoid loop coalescing in scheduler
      - minor AST generator improvements
      - improve support for expansions in schedule trees
      
      llvm-svn: 268500
      e0b34f36
  8. May 02, 2016
Loading