|
struct | clang::lifetimes::internal::AccessPath |
| Represents the storage location being borrowed, e.g., a specific stack variable. More...
|
|
struct | clang::lifetimes::internal::Loan |
| Information about a single borrow, or "Loan". More...
|
|
struct | clang::lifetimes::internal::Origin |
| An Origin is a symbolic identifier that represents the set of possible loans a pointer-like object could hold at any given time. More...
|
|
class | clang::lifetimes::internal::LoanManager |
| Manages the creation, storage and retrieval of loans. More...
|
|
class | clang::lifetimes::internal::OriginManager |
| Manages the creation, storage, and retrieval of origins for pointer-like variables and expressions. More...
|
|
class | clang::lifetimes::internal::Fact |
| An abstract base class for a single, atomic lifetime-relevant event. More...
|
|
class | clang::lifetimes::internal::IssueFact |
|
class | clang::lifetimes::internal::ExpireFact |
|
class | clang::lifetimes::internal::AssignOriginFact |
|
class | clang::lifetimes::internal::ReturnOfOriginFact |
|
class | clang::lifetimes::internal::UseFact |
|
class | clang::lifetimes::internal::TestPointFact |
| A dummy-fact used to mark a specific point in the code for testing. More...
|
|
class | clang::lifetimes::internal::FactManager |
|
class | clang::lifetimes::internal::FactGenerator |
|
class | clang::lifetimes::internal::DataflowAnalysis< Derived, LatticeType, Dir > |
| A generic, policy-based driver for dataflow analyses. More...
|
|
struct | clang::lifetimes::internal::LifetimeFactory |
| An object to hold the factories for immutable collections, ensuring that all created states share the same underlying memory management. More...
|
|
struct | clang::lifetimes::internal::LoanPropagationLattice |
| Represents the dataflow lattice for loan propagation. More...
|
|
class | clang::lifetimes::internal::LoanPropagationAnalysis |
| The analysis that tracks which loans belong to which origins. More...
|
|
struct | clang::lifetimes::internal::ExpiredLattice |
| The dataflow lattice for tracking the set of expired loans. More...
|
|
class | clang::lifetimes::internal::ExpiredLoansAnalysis |
| The analysis that tracks which loans have expired. More...
|
|
struct | clang::lifetimes::internal::PendingWarning |
| Struct to store the complete context for a potential lifetime violation. More...
|
|
class | clang::lifetimes::internal::LifetimeChecker |
|
|
template<typename T > |
static llvm::ImmutableSet< T > | clang::lifetimes::internal::utils::join (llvm::ImmutableSet< T > A, llvm::ImmutableSet< T > B, typename llvm::ImmutableSet< T >::Factory &F) |
| Computes the union of two ImmutableSets.
|
|
template<typename T > |
static bool | clang::lifetimes::internal::utils::isSubsetOf (const llvm::ImmutableSet< T > &A, const llvm::ImmutableSet< T > &B) |
| Checks if set A is a subset of set B.
|
|
template<typename K , typename V , typename Joiner > |
static llvm::ImmutableMap< K, V > | clang::lifetimes::internal::utils::join (llvm::ImmutableMap< K, V > A, llvm::ImmutableMap< K, V > B, typename llvm::ImmutableMap< K, V >::Factory &F, Joiner JoinValues) |
| Computes the key-wise union of two ImmutableMaps.
|
|
void | clang::lifetimes::runLifetimeSafetyAnalysis (AnalysisDeclContext &AC, LifetimeSafetyReporter *Reporter) |
| The main entry point for the analysis.
|
|