Skip to content
  1. Jul 06, 2014
  2. Jul 02, 2014
    • Tobias Grosser's avatar
      Derive run-time conditions for delinearization · 5e6813d1
      Tobias Grosser authored
      As our delinearization works optimistically, we need in some cases run-time
      checks that verify our optimistic assumptions. A simple example is the
      following code:
      
      void foo(long n, long m, long o, double A[n][m][o]) {
      
        for (long i = 0; i < 100; i++)
          for (long j = 0; j < 150; j++)
            for (long k = 0; k < 200; k++)
              A[i][j][k] = 1.0;
      }
      
      After clang linearized the access to A and we delinearized it again to
      A[i][j][k] we need to ensure that we do not access the delinearized array
      out of bounds (this information is not available in LLVM-IR). Hence, we
      need to verify the following constraints at run-time:
      
      CHECK:   Assumed Context:
      CHECK:   [o, m] -> {  : m >= 150 and o >= 200 }
      llvm-svn: 212198
      5e6813d1
    • Tobias Grosser's avatar
      Use arguments of user statements to perform induction variable substitution · ce67a044
      Tobias Grosser authored
      To translate the old induction variables as they exist before Polly to new
      new induction variables introduced during AST code generation we need to
      generate code that computes the new values from the old ones. We can do this
      by just looking at the arguments isl generates in each scheduled statement.
      
      Example:
      
        // Old
        for i
          S(i)
      
        // New
        for c0
          for c1
            S(c0 + c1)
      
      To get the value of i, we need to compute 'c0 + c1'. This expression is readily
      available in the user statements generated by isl and just needs to be
      translated to LLVM-IR.
      
      This replaces an old confusing construct that constructed during ast generation
      an isl multi affine expression that described this relation and which was then
      again ast generated for each statement and argument when translating the isl ast
      to LLVM-IR. This approach was difficult to understand and the additional ast
      generation calls where entirely redundant as isl provides the relevant
      expressions as arguments of the generated user statements.
      
      llvm-svn: 212186
      ce67a044
  3. Jul 01, 2014
  4. Jun 28, 2014
  5. Jun 27, 2014
    • Johannes Doerfert's avatar
      [Fix] Deleted renamed test after r211957 · 1a62c7a3
      Johannes Doerfert authored
      llvm-svn: 211964
      1a62c7a3
    • Johannes Doerfert's avatar
      Allow multiple reductions per statement · e58a0120
      Johannes Doerfert authored
        Iterate over all store memory accesses and check for valid binary reduction
        candidate loads by following the operands of the stored value.  For each
        candidate pair we check if they have the same base address and there are no
        other accesses which may overlap with them. This ensures that no intermediate
        value can escape into other memory locations or is overwritten at some point.
      
        + 17 test cases for reduction detection and reduction dependency modeling
      
      llvm-svn: 211957
      e58a0120
    • Andreas Simbuerger's avatar
      Don't expand to invalid Scops with -polly-detect-keep-going · b379edbb
      Andreas Simbuerger authored
      Enabling -keep-going in ScopDetection causes expansion to an invalid
      Scop candidate.
      
      Region A     <- Valid candidate
         |
      Region B     <- Invalid candidate
      
      If -keep-going is enabled, ScopDetection would expand A to A+B because
      the RejectLog is never checked for errors during expansion.
      
      With this patch only A becomes a valid Scop.
      
      llvm-svn: 211875
      b379edbb
  6. Jun 26, 2014
  7. Jun 25, 2014
    • Tobias Grosser's avatar
      test/ScopInfo: Remove %defaultOpts and list passes explicitly · 50a5e6da
      Tobias Grosser authored
      Due to bad habit we sometimes used a variable %defaultOpts that listed
      a set of passes commonly run to prepare for Polly. None of these test cases
      actually needs special preparation and only two of them need the 'basicaa' to
      be scheduled. Scheduling the required alias analysis explicitly makes the test
      cases clearer.
      
      llvm-svn: 211671
      50a5e6da
    • Tobias Grosser's avatar
      Clean up XFAILed test cases · 08031390
      Tobias Grosser authored
      We had a set of test cases that have been incomplete and XFAILED. This patch
      completes a couple of the interesting ones and removes the ones which seem
      redundant or not sufficiently reduced to be useful.
      
      llvm-svn: 211670
      08031390
  8. Jun 24, 2014
    • Johannes Doerfert's avatar
      [Refactor] Create nicer test cases from C/C++ · 5e275bc8
      Johannes Doerfert authored
      Insert a header into the new testcase containing a sample RUN line a FIXME and
      an XFAIL. Then insert the formated C code and finally the LLVM-IR without
      attributes, the module ID or the target triple.
      
      llvm-svn: 211612
      5e275bc8
    • Tobias Grosser's avatar
      cmake: Fix reference to Pluto file · f59b3c1d
      Tobias Grosser authored
      llvm-svn: 211591
      f59b3c1d
    • Yabin Hu's avatar
      Remove use of llvm.codegen intrinsic for GPGPU codegen · cc91169f
      Yabin Hu authored
      We use llvm.codegen intrinsic to generate code for embedded LLVM-IR
      strings. The reason we introduce such a intrinsic is that previous
      clang/opt tools was NOT linked with various LLVM targets and their
      AsmParsers and AsmPrinters. Since clang/opt been linked with all the
      needed libraries, we no longer need the llvm.codegen intrinsic.
      
      llvm-svn: 211573
      cc91169f
  9. Jun 21, 2014
  10. Jun 20, 2014
  11. Jun 19, 2014
  12. Jun 17, 2014
  13. Jun 13, 2014
  14. Jun 12, 2014
    • Rafael Espindola's avatar
      Try to fix the polly build. · 8730ee73
      Rafael Espindola authored
      llvm-svn: 210811
      8730ee73
    • Andreas Simbuerger's avatar
      Do not use namespace polly inside a header. · 06904d85
      Andreas Simbuerger authored
      In general this fixes ambiguity that can arise from using
      a different namespace that declares the same symbols as
      we do.
      
      One example inside llvm would be:
        createIndVarSimplifyPass(..);
      
      Which can be found in:
        llvm/Transforms/Scalar.h
      and
        polly/LinkAllPasses.h
      
      llvm-svn: 210755
      06904d85
    • Andreas Simbuerger's avatar
      Fix typo · 24af0c82
      Andreas Simbuerger authored
      llvm-svn: 210754
      24af0c82
    • Andreas Simbuerger's avatar
      Check for an empty error log. · 83ed861e
      Andreas Simbuerger authored
      Fixes #19976.
      
      The error log does not contain an error, in case we reject a candidate
      without generating a diagnostic message by using invalid<>(...). This is
      the case for the top-level region of a function.
      
      The patch comes without a test-case because adding a useful one requires
      additional code just for triggering it. Before the patch it would only trigger,
      if we try to print the CFG with Scop error annotations.
      
      llvm-svn: 210753
      83ed861e
Loading