Skip to content
  1. Sep 27, 2015
  2. Sep 26, 2015
  3. Sep 25, 2015
    • Michael Kruse's avatar
      Let MemoryAccess remember its purpose · 8d0b734e
      Michael Kruse authored
      There are three possible reasons to add a memory memory access: For explicit load and stores, for llvm::Value defs/uses, and to emulate PHI nodes (the latter two called implicit accesses). Previously MemoryAccess only stored IsPHI. Register accesses could be identified through the isScalar() method if it was no IsPHI. isScalar() determined the number of dimensions of the underlaying array, scalars represented by zero dimensions.
      
      For the work on de-LICM, implicit accesses can have more than zero dimensions, making the distinction of isScalars() useless, hence now stored explicitly in the MemoryAccess. Instead, we replace it by isImplicit() and avoid the term scalar for zero-dimensional arrays as it might be confused with llvm::Value which are also often referred to as scalars (or alternatively, as registers).
      
      No behavioral change intended, under the condition that it was impossible to create explicit accesses to zero-dimensional "arrays".
      
      llvm-svn: 248616
      8d0b734e
    • Michael Kruse's avatar
      Use per-Purpose overloads for MemoryAccess creation · 33d6c0bb
      Michael Kruse authored
      This makes the intent of each created object clearer and allows to add more specific asserts. The bug fixed in r248535 has been discovered this way.
      
      No functional change intended; everything should behave as before.
      
      llvm-svn: 248603
      33d6c0bb
    • Tobias Grosser's avatar
      [cmake] terminate isl/stdint.h with a newline · c90ed44b
      Tobias Grosser authored
      This avoids warnings of the form:
        stdint.h:1:20: warning: no newline at end of file [-Wnewline-eof]
      
      llvm-svn: 248570
      c90ed44b
    • Tobias Grosser's avatar
      Sort includes using Chandler's sort_includes.py script · c2bb0cbe
      Tobias Grosser authored
      llvm-svn: 248568
      c2bb0cbe
    • Tobias Grosser's avatar
      Add missing PHI to test case · 8016f3a4
      Tobias Grosser authored
      llvm-svn: 248563
      8016f3a4
  4. Sep 24, 2015
    • Tobias Grosser's avatar
      Handle read-only scalars used in PHI-nodes correctly · da95a4a7
      Tobias Grosser authored
      This change addresses three issues:
      
        - Read only scalars that enter a PHI node through an edge that comes from
          outside the scop are not modeled any more, as such PHI nodes will always
          be initialized to this initial value right before the SCoP is entered.
        - For PHI nodes that depend on a scalar value that is defined outside the
          scop, but where the scalar values is passed through an edge that itself
          comes from a BB that is part of the region, we introduce in this basic
          block a read of the out-of-scop value to ensure it's value is available
          to write it into the PHI alloc location.
        - Read only uses of scalars by PHI nodes are ignored in the general read only
          handling code, as they are taken care of by the general PHI node modeling
          code.
      
      llvm-svn: 248535
      da95a4a7
    • Michael Kruse's avatar
      Fix comparison signed/unsigned mismatch warning; NFC · 26ed65e0
      Michael Kruse authored
      llvm-svn: 248520
      26ed65e0
    • Tobias Grosser's avatar
      Mark a couple of issues as done · 2553ebc7
      Tobias Grosser authored
      llvm-svn: 248492
      2553ebc7
    • Michael Kruse's avatar
      Rename Polly_isl to PollyISL · b280ded1
      Michael Kruse authored
      Library names in the LLVM framework usually do not contain underscores.
      
      llvm-svn: 248487
      b280ded1
    • Michael Kruse's avatar
      Remove Analysis Output of TempScopInfo · 2d0ece96
      Michael Kruse authored
      After the merge of TempScopInfo into ScopInfo the analysis output 
      remained because of the existing unit tests. These remains are removed 
      and the units tests converted to match the equivalent output of 
      ScopInfo's analysis output. The unit tests are also moved into the
      directory of ScopInfo tests.
      
      Differential Revision: http://reviews.llvm.org/D13116
      
      llvm-svn: 248485
      2d0ece96
    • Michael Kruse's avatar
      Compile ISL into its own library · 519b3cfd
      Michael Kruse authored
      Refactor all ISL-related cmake build instructions into its own 
      CMakeLists.txt and build as a separate library.
      
      This is useful to apply ISL-related build flags to ISL only and not to 
      Polly's files. Also, it the separation of both projects becomes clearer.
      
      Proposed name of the library is Polly_isl. It is not "isl" to avoid 
      mix-up with potentially installed libisl.{a|so}.
      
      Tested configurations:
      - Windows with cmake 3.2
      - Ubuntu with cmake 3.0.2 
      - Ubuntu with cmake 3.0.2  BUILD_SHARED_LIBS on
      - Ubuntu with cmake 2.8.12.2 (LLVM minimum version)
      - Ubuntu out-of-LLVM-tree
      
      Differential Revision: http://reviews.llvm.org/D12810
      
      llvm-svn: 248484
      519b3cfd
  5. Sep 21, 2015
  6. Sep 20, 2015
  7. Sep 18, 2015
    • Michael Kruse's avatar
      Remove unused variable Dimension [NFC] · 84f70acd
      Michael Kruse authored
      llvm-svn: 248026
      84f70acd
    • Michael Kruse's avatar
      Merge IRAccess into MemoryAccess · e2bccbbf
      Michael Kruse authored
      All MemoryAccess objects will be owned by ScopInfo::AccFuncMap which 
      previously stored the IRAccess objects. Instead of creating new 
      MemoryAccess objects, the already created ones are reused, but their 
      order might be different now. Some fields of IRAccess and MemoryAccess 
      had the same meaning and are merged.
      
      This is the last step of fusioning TempScopInfo.{h|cpp} and 
      ScopInfo.{h.cpp}. Some refactoring might still make sense.
      
      Differential Revision: http://reviews.llvm.org/D12843
      
      llvm-svn: 248024
      e2bccbbf
    • Tobias Grosser's avatar
      Store EscapeMap as Value* instead of AllocInst · b09455de
      Tobias Grosser authored
      This currently does not change the behavior in Polly, but it allows us to later
      also overwrite the EscapeMap with our GlobalMap.
      
      llvm-svn: 247970
      b09455de
  8. Sep 17, 2015
Loading