/llvm-project/clang-tools-extra/clang-tidy/concurrency/ |
H A D | ConcurrencyTidyModule.cpp | 16 namespace concurrency { namespace 21 CheckFactories.registerCheck<concurrency::MtUnsafeCheck>( in addCheckFactories() 22 "concurrency-mt-unsafe"); in addCheckFactories() 24 "concurrency-thread-canceltype-asynchronous"); in addCheckFactories() 28 } // namespace concurrency 31 static ClangTidyModuleRegistry::Add<concurrency::ConcurrencyModule> 32 X("concurrency-module", "Adds concurrency checks.");
|
H A D | MtUnsafeCheck.cpp | 263 template <> struct OptionEnumMapping<concurrency::MtUnsafeCheck::FunctionSet> { 265 std::pair<concurrency::MtUnsafeCheck::FunctionSet, StringRef>> 267 static constexpr std::pair<concurrency::MtUnsafeCheck::FunctionSet, in getEnumMapping() 269 Mapping[] = {{concurrency::MtUnsafeCheck::FunctionSet::Posix, "posix"}, in getEnumMapping() 270 {concurrency::MtUnsafeCheck::FunctionSet::Glibc, "glibc"}, in getEnumMapping() 271 {concurrency::MtUnsafeCheck::FunctionSet::Any, "any"}}; in getEnumMapping() 276 namespace concurrency { namespace 313 } // namespace concurrency
|
H A D | ThreadCanceltypeAsynchronousCheck.h | 14 namespace clang::tidy::concurrency { 19 /// http://clang.llvm.org/extra/clang-tidy/checks/concurrency/thread-canceltype-asynchronous.html 28 } // namespace clang::tidy::concurrency
|
H A D | MtUnsafeCheck.h | 14 namespace clang::tidy::concurrency { 19 /// http://clang.llvm.org/extra/clang-tidy/checks/concurrency/mt-unsafe.html 37 } // namespace clang::tidy::concurrency
|
H A D | ThreadCanceltypeAsynchronousCheck.cpp | 16 namespace clang::tidy::concurrency { namespace 35 } // namespace clang::tidy::concurrency
|
/llvm-project/clang-tools-extra/test/clang-tidy/checkers/concurrency/ |
H A D | mt-unsafe-any.cpp | 1 // RUN: %check_clang_tidy %s concurrency-mt-unsafe %t 10 // CHECK-MESSAGES: :[[@LINE-1]]:3: warning: function is not thread safe [concurrency-mt-unsafe] in foo() 12 // CHECK-MESSAGES: :[[@LINE-1]]:3: warning: function is not thread safe [concurrency-mt-unsafe] in foo() 15 // CHECK-MESSAGES: :[[@LINE-1]]:13: warning: function is not thread safe [concurrency-mt-unsafe] in foo() 17 // CHECK-MESSAGES: :[[@LINE-1]]:8: warning: function is not thread safe [concurrency-mt-unsafe] in foo() 23 // CHECK-MESSAGES: :[[@LINE-1]]:3: warning: function is not thread safe [concurrency-mt-unsafe] in foo()
|
H A D | mt-unsafe-posix.cpp | 1 // RUN: %check_clang_tidy %s concurrency-mt-unsafe %t -- -config='{CheckOptions: {concurrency-mt-un… 13 // CHECK-MESSAGES: :[[@LINE-1]]:13: warning: function is not thread safe [concurrency-mt-unsafe] in foo() 15 // CHECK-MESSAGES: :[[@LINE-1]]:8: warning: function is not thread safe [concurrency-mt-unsafe] in foo() 21 // CHECK-MESSAGES: :[[@LINE-1]]:3: warning: function is not thread safe [concurrency-mt-unsafe] in foo()
|
H A D | mt-unsafe-glibc.cpp | 1 // RUN: %check_clang_tidy %s concurrency-mt-unsafe %t -- -config='{CheckOptions: {concurrency-mt-un… 9 // CHECK-MESSAGES: :[[@LINE-1]]:3: warning: function is not thread safe [concurrency-mt-unsafe] in foo() 12 // CHECK-MESSAGES: :[[@LINE-1]]:3: warning: function is not thread safe [concurrency-mt-unsafe] in foo()
|
H A D | thread-canceltype-asynchronous.cpp | 1 // RUN: %check_clang_tidy %s concurrency-thread-canceltype-asynchronous %t 17 …cancel type for a pthread should not be 'PTHREAD_CANCEL_ASYNCHRONOUS' [concurrency-thread-cancelty… in main() 32 …cancel type for a pthread should not be 'PTHREAD_CANCEL_ASYNCHRONOUS' [concurrency-thread-cancelty… in f1() 37 …cancel type for a pthread should not be 'PTHREAD_CANCEL_ASYNCHRONOUS' [concurrency-thread-cancelty… in f1()
|
/llvm-project/libcxx/docs/Helpers/ |
H A D | Styles.rst |
|
/llvm-project/clang-tools-extra/docs/clang-tidy/checks/cert/ |
H A D | pos47-c.rst | 3 :http-equiv=refresh: 5;URL=../concurrency/thread-canceltype-asynchronous.html 9 :doc:`concurrency-thread-canceltype-asynchronous <../concurrency/thread-canceltype-asynchronous>` f…
|
/llvm-project/clang-tools-extra/docs/clang-tidy/checks/concurrency/ |
H A D | thread-canceltype-asynchronous.rst | 1 .. title:: clang-tidy - concurrency-thread-canceltype-asynchronous 3 concurrency-thread-canceltype-asynchronous
|
H A D | mt-unsafe.rst | 1 .. title:: clang-tidy - concurrency-mt-unsafe 3 concurrency-mt-unsafe
|
/llvm-project/utils/bazel/llvm-project-overlay/clang-tools-extra/clang-tidy/ |
H A D | BUILD.bazel | 207 name = "concurrency", 304 ":concurrency", 340 ":concurrency",
|
/llvm-project/.github/workflows/ |
H A D | release-sources.yml | 33 # do this is that it allows us to take advantage of concurrency groups 37 concurrency:
|
H A D | spirv-tests.yml | 14 concurrency:
|
H A D | llvm-project-workflow-tests.yml | 19 concurrency:
|
H A D | lld-tests.yml | 25 concurrency:
|
H A D | libclc-tests.yml | 27 concurrency:
|
H A D | lldb-tests.yml | 27 concurrency:
|
H A D | clang-tests.yml | 25 concurrency:
|
/llvm-project/libcxx/docs/Status/ |
H A D | Cxx23Papers.csv | 100 "`P2396R1 <https://wg21.link/P2396R1>`__","Concurrency TS 2 fixes ","2022-11 (Kona)","","",""
|
/llvm-project/llvm/docs/ |
H A D | Reference.rst | 175 Information about LLVM's concurrency model. 203 Target-defined relaxation to LLVM's concurrency model.
|
/llvm-project/clang/lib/Tooling/ |
H A D | AllTUsExecution.cpp | 152 "execute-concurrency", 154 "parallel. Set to 0 for hardware concurrency. "
|
/llvm-project/llvm/utils/gn/secondary/clang-tools-extra/clang-tidy/concurrency/ |
H A D | BUILD.gn | 1 static_library("concurrency") {
|