//===- PtrState.h - ARC State for a Ptr -------------------------*- 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 // //===----------------------------------------------------------------------===// // // This file contains declarations for the ARC state associated with a ptr. It // is only used by the ARC Sequence Dataflow computation. By separating this // from the actual dataflow, it is easier to consider the mechanics of the ARC // optimization separate from the actual predicates being used. // //===----------------------------------------------------------------------===// #ifndef LLVM_LIB_TRANSFORMS_OBJCARC_PTRSTATE_H #define LLVM_LIB_TRANSFORMS_OBJCARC_PTRSTATE_H #include "llvm/ADT/SmallPtrSet.h" #include "llvm/Analysis/ObjCARCInstKind.h" #include "llvm/Support/Compiler.h" namespace llvm { class BasicBlock; class Instruction; class MDNode; class raw_ostream; class Value; namespace objcarc { class ARCMDKindCache; class BundledRetainClaimRVs; class ProvenanceAnalysis; /// \enum Sequence /// /// A sequence of states that a pointer may go through in which an /// objc_retain and objc_release are actually needed. enum Sequence { … }; raw_ostream &operator<<(raw_ostream &OS, const Sequence S) LLVM_ATTRIBUTE_UNUSED; /// Unidirectional information about either a /// retain-decrement-use-release sequence or release-use-decrement-retain /// reverse sequence. struct RRInfo { … }; /// This class summarizes several per-pointer runtime properties which /// are propagated through the flow graph. class PtrState { … }; struct BottomUpPtrState : PtrState { … }; struct TopDownPtrState : PtrState { … }; } // end namespace objcarc } // end namespace llvm #endif // LLVM_LIB_TRANSFORMS_OBJCARC_PTRSTATE_H