Luca Versari | 99fddff | 2022-05-25 10:22:32 -0700 | [diff] [blame] | 1 | // Part of the Crubit project, under the Apache License v2.0 with LLVM |
| 2 | // Exceptions. See /LICENSE for license information. |
| 3 | // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception |
| 4 | |
| 5 | // Tests involving recursion. |
| 6 | |
| 7 | #include "gmock/gmock.h" |
| 8 | #include "gtest/gtest.h" |
| 9 | #include "lifetime_analysis/test/lifetime_analysis_test.h" |
| 10 | |
| 11 | namespace clang { |
| 12 | namespace tidy { |
| 13 | namespace lifetimes { |
| 14 | namespace { |
| 15 | |
| 16 | TEST_F(LifetimeAnalysisTest, InfiniteDirectRecursion) { |
| 17 | // TODO(danakj): Infinite recursion is UB, so we would like to avoid that we |
| 18 | // call an opaque function that is able to break the recursion (by exiting the |
| 19 | // program, theoretically). |
| 20 | EXPECT_THAT(GetLifetimes(R"( |
| 21 | void opaque(); |
| 22 | int* f(int* a) { |
| 23 | // TODO(danakj): opaque(); |
| 24 | return f(a); |
| 25 | } |
| 26 | )"), |
| 27 | LifetimesAre({{"f", "a -> b"}})); |
| 28 | } |
| 29 | |
| 30 | TEST_F(LifetimeAnalysisTest, FiniteDirectRecursion_1Pointee) { |
| 31 | EXPECT_THAT(GetLifetimes(R"( |
| 32 | int* f(int n, int* a) { |
| 33 | if (n <= 0) return a; |
| 34 | return f(n - 1, a); |
| 35 | } |
| 36 | )"), |
| 37 | LifetimesAre({{"f", "(), a -> a"}})); |
| 38 | } |
| 39 | |
| 40 | TEST_F(LifetimeAnalysisTest, FiniteDirectRecursion_2Pointees) { |
| 41 | EXPECT_THAT(GetLifetimes(R"( |
| 42 | int* f(int n, int* a, int* b) { |
| 43 | if (n <= 0) return a; |
| 44 | return f(n - 1, b, a); |
| 45 | } |
| 46 | )"), |
| 47 | LifetimesAre({{"f", "(), a, a -> a"}})); |
| 48 | } |
| 49 | |
| 50 | TEST_F(LifetimeAnalysisTest, FiniteDirectRecursion_3Pointees) { |
| 51 | EXPECT_THAT(GetLifetimes(R"( |
| 52 | int* f(int n, int* a, int* b, int *c) { |
| 53 | if (n <= 0) return a; |
| 54 | return f(n - 1, b, c, a); |
| 55 | } |
| 56 | )"), |
| 57 | LifetimesAre({{"f", "(), a, a, a -> a"}})); |
| 58 | } |
| 59 | |
| 60 | TEST_F(LifetimeAnalysisTest, MutualFiniteRecursion) { |
| 61 | EXPECT_THAT(GetLifetimes(R"( |
| 62 | int* g(int n, int* a); |
| 63 | int* f(int n, int* a) { |
| 64 | if (n == 0) return a; |
| 65 | return g(n - 1, a); |
| 66 | } |
| 67 | int* g(int n, int* a) { |
| 68 | if (n == 0) return a; |
| 69 | return f(n - 1, a); |
| 70 | } |
| 71 | )"), |
| 72 | LifetimesAre({{"f", "(), a -> a"}, {"g", "(), a -> a"}})); |
| 73 | } |
| 74 | |
| 75 | } // namespace |
| 76 | } // namespace lifetimes |
| 77 | } // namespace tidy |
| 78 | } // namespace clang |