[all-commits] [llvm/llvm-project] e69e55: new altera single work item barrier check

David Zarzycki via All-commits all-commits at lists.llvm.org
Fri Dec 18 04:59:03 PST 2020


  Branch: refs/heads/master
  Home:   https://github.com/llvm/llvm-project
  Commit: e69e551e0e5fddffb6479da6a2998457104ba9e6
      https://github.com/llvm/llvm-project/commit/e69e551e0e5fddffb6479da6a2998457104ba9e6
  Author: Frank Derry Wanye <wanyef at mail.gvsu.edu>
  Date:   2020-12-18 (Fri, 18 Dec 2020)

  Changed paths:
    M clang-tools-extra/clang-tidy/altera/AlteraTidyModule.cpp
    M clang-tools-extra/clang-tidy/altera/CMakeLists.txt
    A clang-tools-extra/clang-tidy/altera/SingleWorkItemBarrierCheck.cpp
    A clang-tools-extra/clang-tidy/altera/SingleWorkItemBarrierCheck.h
    M clang-tools-extra/docs/ReleaseNotes.rst
    A clang-tools-extra/docs/clang-tidy/checks/altera-single-work-item-barrier.rst
    M clang-tools-extra/docs/clang-tidy/checks/list.rst
    A clang-tools-extra/test/clang-tidy/checkers/altera-single-work-item-barrier.cpp

  Log Message:
  -----------
  new altera single work item barrier check

This lint check is a part of the FLOCL (FPGA Linters for OpenCL)
project out of the Synergy Lab at Virginia Tech.

FLOCL is a set of lint checks aimed at FPGA developers who write code
in OpenCL.

The altera single work item barrier check finds OpenCL kernel functions
that call a barrier function but do not call an ID function. These
kernel functions will be treated as single work-item kernels, which
could be inefficient or lead to errors.

Based on the "Altera SDK for OpenCL: Best Practices Guide."


  Commit: 430d5d8429473c2b10b109991d7577a3cea41140
      https://github.com/llvm/llvm-project/commit/430d5d8429473c2b10b109991d7577a3cea41140
  Author: David Zarzycki <dave at znu.io>
  Date:   2020-12-18 (Fri, 18 Dec 2020)

  Changed paths:
    M lldb/include/lldb/lldb-enumerations.h
    M lldb/source/Plugins/TypeSystem/Clang/TypeSystemClang.cpp

  Log Message:
  -----------
  [LLDB] Unbreak the build after recent clang changes

9e08e51a20d0d2b1c5724bb17e969d036fced4cd introduced a new enum case.


Compare: https://github.com/llvm/llvm-project/compare/e35f9229dcb2...430d5d842947


More information about the All-commits mailing list