//===-- Arena.h -------------------------------*- 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_ANALYSIS_FLOWSENSITIVE__ARENA_H #define LLVM_CLANG_ANALYSIS_FLOWSENSITIVE__ARENA_H #include "clang/Analysis/FlowSensitive/Formula.h" #include "clang/Analysis/FlowSensitive/StorageLocation.h" #include "clang/Analysis/FlowSensitive/Value.h" #include "llvm/ADT/StringRef.h" #include <vector> namespace clang::dataflow { /// The Arena owns the objects that model data within an analysis. /// For example, `Value`, `StorageLocation`, `Atom`, and `Formula`. class Arena { … }; } // namespace clang::dataflow #endif // LLVM_CLANG_ANALYSIS_FLOWSENSITIVE__ARENA_H