diff options
author | Michael Wyman <michael@mwyman.com> | 2020-04-05 00:28:34 -0700 |
---|---|---|
committer | Michael Wyman <michael@mwyman.com> | 2020-04-10 08:51:21 -0700 |
commit | 89f1321fe4ef203a4674213280b430a274dc2001 (patch) | |
tree | ae506c8975d8bf93c05602674e75af4b8cbfe6ef /clang-tools-extra/clang-tidy/objc/NSInvocationArgumentLifetimeCheck.h | |
parent | 65b8b643b4ba75a2712ddc210aeaa7c6527f3bb4 (diff) | |
download | llvm-89f1321fe4ef203a4674213280b430a274dc2001.zip llvm-89f1321fe4ef203a4674213280b430a274dc2001.tar.gz llvm-89f1321fe4ef203a4674213280b430a274dc2001.tar.bz2 |
[clang-tidy] Add check to find calls to NSInvocation methods under ARC that don't have proper object argument lifetimes.
Summary: This check is similar to an ARC Migration check that warned about this incorrect usage under ARC, but most projects are no longer undergoing migration from pre-ARC code. The documentation for NSInvocation is not explicit about these requirements and incorrect usage has been found in many of our projects.
Reviewers: stephanemoore, benhamilton, dmaclach, alexfh, aaron.ballman, hokein, njames93
Reviewed By: stephanemoore, benhamilton, aaron.ballman
Subscribers: xazax.hun, Eugene.Zelenko, mgorny, cfe-commits
Tags: #clang, #clang-tools-extra
Differential Revision: https://reviews.llvm.org/D77571
Diffstat (limited to 'clang-tools-extra/clang-tidy/objc/NSInvocationArgumentLifetimeCheck.h')
-rw-r--r-- | clang-tools-extra/clang-tidy/objc/NSInvocationArgumentLifetimeCheck.h | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/clang-tools-extra/clang-tidy/objc/NSInvocationArgumentLifetimeCheck.h b/clang-tools-extra/clang-tidy/objc/NSInvocationArgumentLifetimeCheck.h new file mode 100644 index 0000000..6d0c30c --- /dev/null +++ b/clang-tools-extra/clang-tidy/objc/NSInvocationArgumentLifetimeCheck.h @@ -0,0 +1,39 @@ +//===--- NSInvocationArgumentLifetimeCheck.h - clang-tidy -------*- C++ -*-===// +// +// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. +// See https://llvm.org/LICENSE.txt for license information. +// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception +// +//===----------------------------------------------------------------------===// + +#ifndef LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_OBJC_NSINVOCATIONARGUMENTLIFETIMECHECK_H +#define LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_OBJC_NSINVOCATIONARGUMENTLIFETIMECHECK_H + +#include "../ClangTidyCheck.h" +#include "clang/Basic/LangStandard.h" + +namespace clang { +namespace tidy { +namespace objc { + +/// Finds calls to NSInvocation methods under ARC that don't have proper +/// argument object lifetimes. +/// +/// For the user-facing documentation see: +/// http://clang.llvm.org/extra/clang-tidy/checks/objc-nsinvocation-argument-lifetime.html +class NSInvocationArgumentLifetimeCheck : public ClangTidyCheck { +public: + NSInvocationArgumentLifetimeCheck(StringRef Name, ClangTidyContext *Context) + : ClangTidyCheck(Name, Context) {} + bool isLanguageVersionSupported(const LangOptions &LangOpts) const override { + return LangOpts.ObjC && LangOpts.ObjCAutoRefCount; + } + void registerMatchers(ast_matchers::MatchFinder *Finder) override; + void check(const ast_matchers::MatchFinder::MatchResult &Result) override; +}; + +} // namespace objc +} // namespace tidy +} // namespace clang + +#endif // LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_OBJC_NSINVOCATIONARGUMENTLIFETIMECHECK_H |