diff options
author | Julie Hockett <juliehockett@google.com> | 2018-03-14 23:47:50 +0000 |
---|---|---|
committer | Julie Hockett <juliehockett@google.com> | 2018-03-14 23:47:50 +0000 |
commit | b6f7c934ac4bf27618f496d1d40df9f53e76eee1 (patch) | |
tree | fb34202c353a7349a1639aa5fe25d172eda95906 /clang-tools-extra/test/clang-tidy/zircon-temporary-objects.cpp | |
parent | 9407bb5f548ebd5900a0fc8226c7f49ee247126f (diff) | |
download | bcm5719-llvm-b6f7c934ac4bf27618f496d1d40df9f53e76eee1.tar.gz bcm5719-llvm-b6f7c934ac4bf27618f496d1d40df9f53e76eee1.zip |
[clang-tidy] Add Zircon module to clang-tidy
Adding a Zircon module to clang-tidy for checks specific to the Zircon
kernel, and adding a checker to fuchsia-zx (for zircon) to flag instances
where specific objects are temporarily created.
Differential Revision: https://reviews.llvm.org/D44346
llvm-svn: 327590
Diffstat (limited to 'clang-tools-extra/test/clang-tidy/zircon-temporary-objects.cpp')
-rw-r--r-- | clang-tools-extra/test/clang-tidy/zircon-temporary-objects.cpp | 109 |
1 files changed, 109 insertions, 0 deletions
diff --git a/clang-tools-extra/test/clang-tidy/zircon-temporary-objects.cpp b/clang-tools-extra/test/clang-tidy/zircon-temporary-objects.cpp new file mode 100644 index 00000000000..b29b4821abd --- /dev/null +++ b/clang-tools-extra/test/clang-tidy/zircon-temporary-objects.cpp @@ -0,0 +1,109 @@ +// RUN: %check_clang_tidy %s zircon-temporary-objects %t -- \ +// RUN: -config="{CheckOptions: [{key: zircon-temporary-objects.Names, value: 'Foo;NS::Bar'}]}" \ +// RUN: -header-filter=.* \ +// RUN: -- -std=c++11 + +// Should flag instances of Foo, NS::Bar. + +class Foo { +public: + Foo() = default; + Foo(int Val) : Val(Val){}; + +private: + int Val; +}; + +namespace NS { + +class Bar { +public: + Bar() = default; + Bar(int Val) : Val(Val){}; + +private: + int Val; +}; + +} // namespace NS + +class Bar { +public: + Bar() = default; + Bar(int Val) : Val(Val){}; + +private: + int Val; +}; + +int func(Foo F) { return 1; }; + +int main() { + Foo F; + Foo *F2 = new Foo(); + new Foo(); + Foo(); + // CHECK-MESSAGES: :[[@LINE-1]]:3: warning: creating a temporary object of type 'Foo' is prohibited + Foo F3 = Foo(); + // CHECK-MESSAGES: :[[@LINE-1]]:12: warning: creating a temporary object of type 'Foo' is prohibited + + Bar(); + NS::Bar(); +// CHECK-MESSAGES: :[[@LINE-1]]:3: warning: creating a temporary object of type 'NS::Bar' is prohibited + + int A = func(Foo()); + // CHECK-MESSAGES: :[[@LINE-1]]:16: warning: creating a temporary object of type 'Foo' is prohibited + + Foo F4(0); + Foo *F5 = new Foo(0); + new Foo(0); + Foo(0); + // CHECK-MESSAGES: :[[@LINE-1]]:3: warning: creating a temporary object of type 'Foo' is prohibited + Foo F6 = Foo(0); + // CHECK-MESSAGES: :[[@LINE-1]]:12: warning: creating a temporary object of type 'Foo' is prohibited + + Bar(0); + NS::Bar(0); +// CHECK-MESSAGES: :[[@LINE-1]]:3: warning: creating a temporary object of type 'NS::Bar' is prohibited + + int B = func(Foo(0)); + // CHECK-MESSAGES: :[[@LINE-1]]:16: warning: creating a temporary object of type 'Foo' is prohibited +} + +namespace NS { + +void f() { + Bar(); +// CHECK-MESSAGES: :[[@LINE-1]]:3: warning: creating a temporary object of type 'NS::Bar' is prohibited + Bar(0); +// CHECK-MESSAGES: :[[@LINE-1]]:3: warning: creating a temporary object of type 'NS::Bar' is prohibited +} + +} // namespace NS + +template <typename Ty> +Ty make_ty() { return Ty(); } +// CHECK-MESSAGES: :[[@LINE-1]]:23: warning: creating a temporary object of type 'Foo' is prohibited +// CHECK-MESSAGES: :[[@LINE-2]]:23: warning: creating a temporary object of type 'NS::Bar' is prohibited + +void ty_func() { + make_ty<Bar>(); + make_ty<NS::Bar>(); + make_ty<Foo>(); +} + +// Inheriting the disallowed class does not trigger the check. + +class Bingo : NS::Bar {}; // Not explicitly disallowed + +void f2() { + Bingo(); +} + +template <typename Ty> +class Quux : Ty {}; + +void f3() { + Quux<NS::Bar>(); + Quux<Bar>(); +} |