Skip to content
  1. Sep 13, 2016
  2. Sep 12, 2016
    • Michael Kruse's avatar
      Remove -fvisibility=hidden and FORCE_STATIC. · e5e752a2
      Michael Kruse authored
      The flag -fvisibility=hidden flag was used for the integrated Integer
      Set Library (and PPCG) to keep their definitions local to Polly. The
      motivation was the be loaded into a DragonEgg-powered GCC, where GCC
      might itself use ISL for its Graphite extension. The symbols of Polly's
      ISL and GCC's ISL would clash.
      
      The DragonEgg project is not actively developed anymore, but Polly's
      unittests need to call ISL functions to set up a testing environment.
      Unfortunately, the -fvisibility=hidden flag means that the ISL symbols
      are not available to the gtest executable as it resides outside of
      libPolly when linked dynamically. Currently, CMake links a second copy
      of ISL into the unittests which leads to subtle bugs. What got observed
      is that two isl_ids for isl_id_none exist, one for each library
      instance. Because isl_id's are compared by address, isl_id_none could
      happen to be different from isl_id_none, depending on which library
      instance set the address and does the comparison.
      
      Also remove the FORCE_STATIC flag which was introduced to keep the ISL
      symbols visible inside the same libPolly shared object, even when build
      with BUILD_SHARED_LIBS.
      
      Differential Revision: https://reviews.llvm.org/D24460
      
      llvm-svn: 281242
      e5e752a2
    • Roman Gareev's avatar
      Store the size of the outermost dimension in case of newly created arrays that... · f5aff704
      Roman Gareev authored
      
      Store the size of the outermost dimension in case of newly created arrays that require memory allocation.
      
      We do not need the size of the outermost dimension in most cases, but if we
      allocate memory for newly created arrays, that size is needed.
      
      Reviewed-by: default avatarMichael Kruse <llvm@meinersbur.de>
      
      Differential Revision: https://reviews.llvm.org/D23991
      
      llvm-svn: 281234
      f5aff704
    • Tobias Grosser's avatar
      GPGPU: Bail out gracefully in case of invalid IR · 5857b701
      Tobias Grosser authored
      Instead of aborting, we now bail out gracefully in case the kernel IR we
      generate is invalid. This can currently happen in case the SCoP stores
      pointer values, which we model as arrays, as data values into other arrays. In
      this case, the original pointer value is not available on the device and can
      consequently not be stored. As detecting this ahead of time is not so easy, we
      detect these situations after the invalid IR has been generated and bail out.
      
      llvm-svn: 281193
      5857b701
  3. Sep 11, 2016
  4. Sep 09, 2016
  5. Sep 08, 2016
    • Michael Kruse's avatar
      Add -polly-flatten-schedule pass. · 7886bd7c
      Michael Kruse authored
      The -polly-flatten-schedule pass reduces the number of scattering
      dimensions in its isl_union_map form to make them easier to understand.
      It is not meant to be used in production, only for debugging and
      regression tests.
      
      To illustrate, how it can make sets simpler, here is a lifetime set
      used computed by the porposed DeLICM pass without flattening:
      
          { Stmt_reduction_for[0, 4] -> [0, 2, o2, o3] : o2 < 0;
            Stmt_reduction_for[0, 4] -> [0, 1, o2, o3] : o2 >= 5;
            Stmt_reduction_for[0, 4] -> [0, 1, 4, o3] : o3 > 0;
            Stmt_reduction_for[0, i1] -> [0, 1, i1, 1] : 0 <= i1 <= 3;
            Stmt_reduction_for[0, 4] -> [0, 2, 0, o3] : o3 <= 0 }
      
      And here the same lifetime for a semantically identical one-dimensional
      schedule:
      
          { Stmt_reduction_for[0, i1] -> [2 + 3i1] : 0 <= i1 <= 4 }
      
      Differential Revision: https://reviews.llvm.org/D24310
      
      llvm-svn: 280948
      7886bd7c
    • Tobias Grosser's avatar
      GICHelper: Correctly assign return value · a2d80ba5
      Tobias Grosser authored
      ... to preserve reference counting logic.
      
      In practice the missing assignment would not have caused any issues. We still
      fix it as the code is wrong and it also causes noise in the clang static
      analysis runs.
      
      llvm-svn: 280946
      a2d80ba5
    • Tobias Grosser's avatar
      SCEVAffinator: Add missing __isl_take annotations · b27ed0da
      Tobias Grosser authored
      llvm-svn: 280943
      b27ed0da
    • Tobias Grosser's avatar
      ScopInfo: Make clear that no double-free problem exists · 55a7af7d
      Tobias Grosser authored
      When running the clang static analyser to check for memory issues, this code
      originally showed a double free, as the analyser was unable to understand that
      isl_set_free always returns NULL and consequently later uses of the isl object
      we just freed will never be reached. Without this knowledge, the analyser has
      to issue a warning.
      
      We refactor the code to make it clear that for empty maps the current loop
      iteration is aborted.
      
      llvm-svn: 280940
      55a7af7d
    • Tobias Grosser's avatar
      ScopDetection: Make sure we do not accidentally divide by zero · b316dc16
      Tobias Grosser authored
      This code path is likely never triggered, but by still handling this case
      locally we avoid warnings in clangs static analyzer.
      
      llvm-svn: 280939
      b316dc16
    • Tobias Grosser's avatar
      DependenceInfo: Make clear that no double-free problem exists · adfc9718
      Tobias Grosser authored
      When running the clang static analyser to check for memory issues, this code
      originally showed a double free, as the analyser was unable to understand that
      isl_union_map_free always returns NULL and consequently later uses of the isl
      object we just freed will never be reached. Without this knowledge, the analyser
      has to issue a warning.
      
      We refactor the code to make it clear that for empty maps the current loop
      iteration is aborted.
      
      llvm-svn: 280938
      adfc9718
    • Tobias Grosser's avatar
      IslNodeBuilder: Add missing __isl_take annotations · f3600dfa
      Tobias Grosser authored
      llvm-svn: 280936
      f3600dfa
    • Tobias Grosser's avatar
      ScopInfo: Add missing __isl_take annotation · 2a526fee
      Tobias Grosser authored
      llvm-svn: 280923
      2a526fee
  6. Sep 07, 2016
    • Michael Kruse's avatar
      Disable MSVC warnings on ISL. · 349779cc
      Michael Kruse authored
      Disable some Visual C++ warnings on ISL. These are not reported by GCC/Clang in
      the ISL build system. We do not intend to fix them in the Polly in-tree copy,
      hence disable these warnings.
      
      llvm-svn: 280811
      349779cc
  7. Sep 05, 2016
    • Michael Kruse's avatar
      Add check-polly-tests build target. · 56457972
      Michael Kruse authored
      The check-polly-tests target runs regression/unit tests but without checking
      formatting. This is useful to not having to reload a file in an open editor
      (which eg. clears the undo buffer, moves cursor/window position) when running
      polly-update-format.
      
      After this change, the following test targets exist:
       - check-polly-unittests to run unittests only
       - check-polly-tests to run unit and regression tests
       - polly-check-format to check formatting using clang-format
       - check-polly to run them all
      
      As a side-effect, when running check-polly, polly-check-format and run in
      parallel (instead of polly-check-format first).
      
      Differential Revision: https://reviews.llvm.org/D24191
      
      llvm-svn: 280654
      56457972
  8. Sep 03, 2016
    • Tobias Grosser's avatar
      ScopInfo: Do not derive assumptions from all GEP pointer instructions · 8d4cb1a0
      Tobias Grosser authored
      ... but instead rely on the assumptions that we derive for load/store
      instructions.
      
      Before we were able to delinearize arrays, we used GEP pointer instructions
      to derive information about the likely range of induction variables, which
      gave us more freedom during loop scheduling. Today, this is not needed
      any more as we delinearize multi-dimensional memory accesses and as part
      of this process also "assume" that all accesses to these arrays remain
      inbounds. The old derive-assumptions-from-GEP code has consequently become
      mostly redundant. We drop it both to clean up our code, but also to improve
      compile time. This change reduces the scop construction time for 3mm in
      no-asserts mode on my machine from 48 to 37 ms.
      
      llvm-svn: 280601
      8d4cb1a0
    • Tobias Grosser's avatar
      Dependences: Only create flat StmtSchedule in presence of reductions · 66c6506a
      Tobias Grosser authored
      Without reductions we do not need a flat union_map schedule describing
      the computation we want to perform, but can work purely on the schedule
      tree. This reduces the dependence computation and scheduling time from 33ms
      to 25ms. Another 30% reduction.
      
      llvm-svn: 280558
      66c6506a
    • Tobias Grosser's avatar
      Dependences: Exit early, if no reduction dependences are needed. · dff5de2e
      Tobias Grosser authored
      In case we do not compute reduction dependences or dependences that are more
      fine-grained than statement level dependences, we can avoid the corresponding
      part of the dependence analysis all together. For the 3mm benchmark, this
      reduces scheduling + dependence analysis time from 62ms to 33ms for a no-asserts
      build.  The majority of the compile time is anyhow spent in the LLVM backends,
      when doing code generation. Nevertheless, there is no need to waste compile time
      either.
      
      llvm-svn: 280557
      dff5de2e
    • Tobias Grosser's avatar
      Introduce option to run isl AST generation, but no IR generation. · b1000c39
      Tobias Grosser authored
      We replace the options
      
        -polly-code-generator=none
                             =isl
      
      with the options
      
        -polly-code-generation=none
                              =ast
                              =full
      
      This allows us to measure the overhead of Polly itself, versus the compile
      time increases due to us generating more IR and consequently the LLVM backends
      spending more time on this IR.
      
      We also use this opportunity to rename the option. The original name was
      introduced at a point where we still had two code generators. CLooG and the
      isl AST generator. Since we only have one AST generator left, there is no need
      to distinguish between 'isl' and something else. However, being able to disable
      code generation all together has been shown useful for debugging. Hence, we
      rename and extend this option to make it a good fit for its new use case.
      
      llvm-svn: 280554
      b1000c39
  9. Sep 02, 2016
    • Tobias Grosser's avatar
      Drop '@brief' from doxygen comments · c80d6979
      Tobias Grosser authored
      LLVM's coding guideline suggests to not use @brief for one-sentence doxygen
      comments to improve readability. Switch this once and for all to ensure people
      do not copy @brief comments from other parts of Polly, when writing new code.
      
      llvm-svn: 280468
      c80d6979
  10. Sep 01, 2016
    • Michael Kruse's avatar
      Allow mapping scalar MemoryAccesses to array elements. · 2fa35194
      Michael Kruse authored
      Change the code around setNewAccessRelation to allow to use a an existing array
      element for memory instead of an ad-hoc alloca. This facility will be used for
      DeLICM/DeGVN to convert scalar dependencies into regular ones.
      
      The changes necessary include:
      - Make the code generator use the implicit locations instead of the alloca ones.
      - A test case
      - Make the JScop importer accept changes of scalar accesses for that test case.
      - Adapt the MemoryAccess interface to the fact that the MemoryKind can change.
        They are named (get|is)OriginalXXX() to get the status of the memory access
        before any change by setNewAccessRelation() (some properties such as
        getIncoming() do not change even if the kind is changed and are still
        required). To get the modified properties, there is (get|is)LatestXXX(). The
        old accessors without Original|Latest become synonyms of the
        (get|is)OriginalXXX() to not make functional changes in unrelated code.
      
      Differential Revision: https://reviews.llvm.org/D23962
      
      llvm-svn: 280408
      2fa35194
    • Michael Kruse's avatar
      Check validity of new access relations. NFC. · 772ce720
      Michael Kruse authored
      There are some constraints on maps that can be access relations. In builds with assertions enabled, verify
      
        - The access domain is the same space as the statement's domain (modulo parameters).
        - Whether an access is defined for every instance of the statement. (codegen does not yet support partial access relations)
        - Whether the access range links to an array, represented by a ScopArrayInfo.
        - The number of access dimensions equals the dimensions of the array.
        - The array is not an indirect access. (also not supported by codegen)
      
      Differential Revision: https://reviews.llvm.org/D23916
      
      llvm-svn: 280404
      772ce720
    • Michael Kruse's avatar
      [ScopInfo] Add missing ISL annotations NFC. · d56b90a9
      Michael Kruse authored
      llvm-svn: 280343
      d56b90a9
    • Michael Kruse's avatar
      Update ISL to isl-0.17.1-203-g3fef898. · 77564f92
      Michael Kruse authored
      This version has isl_space_has_equal_tuples added to the public API.
      
      llvm-svn: 280341
      77564f92
  11. Aug 30, 2016
  12. Aug 26, 2016
Loading