diff options
author | thegeorg <thegeorg@yandex-team.com> | 2024-03-13 13:58:24 +0300 |
---|---|---|
committer | thegeorg <thegeorg@yandex-team.com> | 2024-03-13 14:11:53 +0300 |
commit | 11a895b7e15d1c5a1f52706396b82e3f9db953cb (patch) | |
tree | fabc6d883b0f946151f61ae7865cee9f529a1fdd /contrib/libs/clang16/include/clang/ExtractAPI/AvailabilityInfo.h | |
parent | 9685917341315774aad5733b1793b1e533a88bbb (diff) | |
download | ydb-11a895b7e15d1c5a1f52706396b82e3f9db953cb.tar.gz |
Export clang-format16 via ydblib project
6e6be3a95868fde888d801b7590af4044049563f
Diffstat (limited to 'contrib/libs/clang16/include/clang/ExtractAPI/AvailabilityInfo.h')
-rw-r--r-- | contrib/libs/clang16/include/clang/ExtractAPI/AvailabilityInfo.h | 92 |
1 files changed, 92 insertions, 0 deletions
diff --git a/contrib/libs/clang16/include/clang/ExtractAPI/AvailabilityInfo.h b/contrib/libs/clang16/include/clang/ExtractAPI/AvailabilityInfo.h new file mode 100644 index 0000000000..061af305d6 --- /dev/null +++ b/contrib/libs/clang16/include/clang/ExtractAPI/AvailabilityInfo.h @@ -0,0 +1,92 @@ +#pragma once + +#ifdef __GNUC__ +#pragma GCC diagnostic push +#pragma GCC diagnostic ignored "-Wunused-parameter" +#endif + +//===- ExtractAPI/AvailabilityInfo.h - Availability Info --------*- 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 +// +//===----------------------------------------------------------------------===// +/// +/// \file +/// This file defines the AvailabilityInfo struct that collects availability +/// attributes of a symbol. +/// +//===----------------------------------------------------------------------===// + +#ifndef LLVM_CLANG_EXTRACTAPI_AVAILABILITY_INFO_H +#define LLVM_CLANG_EXTRACTAPI_AVAILABILITY_INFO_H + +#include "clang/AST/Decl.h" +#include "llvm/ADT/SmallVector.h" +#include "llvm/Support/Error.h" +#include "llvm/Support/VersionTuple.h" +#include "llvm/Support/raw_ostream.h" + +using llvm::VersionTuple; + +namespace clang { +namespace extractapi { + +/// Stores availability attributes of a symbol in a given domain. +struct AvailabilityInfo { + /// The domain for which this availability info item applies + std::string Domain; + VersionTuple Introduced; + VersionTuple Deprecated; + VersionTuple Obsoleted; + + AvailabilityInfo() = default; + + AvailabilityInfo(StringRef Domain, VersionTuple I, VersionTuple D, + VersionTuple O) + : Domain(Domain), Introduced(I), Deprecated(D), Obsoleted(O) {} +}; + +class AvailabilitySet { +private: + using AvailabilityList = llvm::SmallVector<AvailabilityInfo, 4>; + AvailabilityList Availabilities; + + bool UnconditionallyDeprecated = false; + bool UnconditionallyUnavailable = false; + +public: + AvailabilitySet(const Decl *Decl); + AvailabilitySet() = default; + + AvailabilityList::const_iterator begin() const { + return Availabilities.begin(); + } + + AvailabilityList::const_iterator end() const { return Availabilities.end(); } + + /// Check if the symbol is unconditionally deprecated. + /// + /// i.e. \code __attribute__((deprecated)) \endcode + bool isUnconditionallyDeprecated() const { return UnconditionallyDeprecated; } + + /// Check if the symbol is unconditionally unavailable. + /// + /// i.e. \code __attribute__((unavailable)) \endcode + bool isUnconditionallyUnavailable() const { + return UnconditionallyUnavailable; + } + + /// Determine if this AvailabilitySet represents default availability. + bool isDefault() const { return Availabilities.empty(); } +}; + +} // namespace extractapi +} // namespace clang + +#endif // LLVM_CLANG_EXTRACTAPI_AVAILABILITY_INFO_H + +#ifdef __GNUC__ +#pragma GCC diagnostic pop +#endif |