Home
last modified time | relevance | path

Searched full:concurrency (Results 1 – 25 of 82) sorted by relevance

1234

/llvm-project/clang-tools-extra/clang-tidy/concurrency/
H A DConcurrencyTidyModule.cpp16 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 DMtUnsafeCheck.cpp263 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 DThreadCanceltypeAsynchronousCheck.h14 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 DMtUnsafeCheck.h14 namespace clang::tidy::concurrency {
19 /// http://clang.llvm.org/extra/clang-tidy/checks/concurrency/mt-unsafe.html
37 } // namespace clang::tidy::concurrency
H A DThreadCanceltypeAsynchronousCheck.cpp16 namespace clang::tidy::concurrency { namespace
35 } // namespace clang::tidy::concurrency
/llvm-project/clang-tools-extra/test/clang-tidy/checkers/concurrency/
H A Dmt-unsafe-any.cpp1 // 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 Dmt-unsafe-posix.cpp1 // 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 Dmt-unsafe-glibc.cpp1 // 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 Dthread-canceltype-asynchronous.cpp1 // 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 DStyles.rst
/llvm-project/clang-tools-extra/docs/clang-tidy/checks/cert/
H A Dpos47-c.rst3 :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 Dthread-canceltype-asynchronous.rst1 .. title:: clang-tidy - concurrency-thread-canceltype-asynchronous
3 concurrency-thread-canceltype-asynchronous
H A Dmt-unsafe.rst1 .. title:: clang-tidy - concurrency-mt-unsafe
3 concurrency-mt-unsafe
/llvm-project/utils/bazel/llvm-project-overlay/clang-tools-extra/clang-tidy/
H A DBUILD.bazel207 name = "concurrency",
304 ":concurrency",
340 ":concurrency",
/llvm-project/.github/workflows/
H A Drelease-sources.yml33 # do this is that it allows us to take advantage of concurrency groups
37 concurrency:
H A Dspirv-tests.yml14 concurrency:
H A Dllvm-project-workflow-tests.yml19 concurrency:
H A Dlld-tests.yml25 concurrency:
H A Dlibclc-tests.yml27 concurrency:
H A Dlldb-tests.yml27 concurrency:
H A Dclang-tests.yml25 concurrency:
/llvm-project/libcxx/docs/Status/
H A DCxx23Papers.csv100 "`P2396R1 <https://wg21.link/P2396R1>`__","Concurrency TS 2 fixes ","2022-11 (Kona)","","",""
/llvm-project/llvm/docs/
H A DReference.rst175 Information about LLVM's concurrency model.
203 Target-defined relaxation to LLVM's concurrency model.
/llvm-project/clang/lib/Tooling/
H A DAllTUsExecution.cpp152 "execute-concurrency",
154 "parallel. Set to 0 for hardware concurrency. "
/llvm-project/llvm/utils/gn/secondary/clang-tools-extra/clang-tidy/concurrency/
H A DBUILD.gn1 static_library("concurrency") {

1234