//===-- APINotesTypes.cpp - API Notes Data Types ----------------*- 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 // //===----------------------------------------------------------------------===// #include "clang/APINotes/Types.h" #include "llvm/Support/raw_ostream.h" namespace clang { namespace api_notes { LLVM_DUMP_METHOD void CommonEntityInfo::dump(llvm::raw_ostream &OS) const { if (Unavailable) OS << "[Unavailable] (" << UnavailableMsg << ")" << ' '; if (UnavailableInSwift) OS << "[UnavailableInSwift] "; if (SwiftPrivateSpecified) OS << (SwiftPrivate ? "[SwiftPrivate] " : ""); if (!SwiftName.empty()) OS << "Swift Name: " << SwiftName << ' '; OS << '\n'; } LLVM_DUMP_METHOD void CommonTypeInfo::dump(llvm::raw_ostream &OS) const { static_cast(*this).dump(OS); if (SwiftBridge) OS << "Swift Briged Type: " << *SwiftBridge << ' '; if (NSErrorDomain) OS << "NSError Domain: " << *NSErrorDomain << ' '; OS << '\n'; } LLVM_DUMP_METHOD void ObjCContextInfo::dump(llvm::raw_ostream &OS) { static_cast(*this).dump(OS); if (HasDefaultNullability) OS << "DefaultNullability: " << DefaultNullability << ' '; if (HasDesignatedInits) OS << "[HasDesignatedInits] "; if (SwiftImportAsNonGenericSpecified) OS << (SwiftImportAsNonGeneric ? "[SwiftImportAsNonGeneric] " : ""); if (SwiftObjCMembersSpecified) OS << (SwiftObjCMembers ? "[SwiftObjCMembers] " : ""); OS << '\n'; } LLVM_DUMP_METHOD void VariableInfo::dump(llvm::raw_ostream &OS) const { static_cast(*this).dump(OS); if (NullabilityAudited) OS << "Audited Nullability: " << Nullable << ' '; if (!Type.empty()) OS << "C Type: " << Type << ' '; OS << '\n'; } LLVM_DUMP_METHOD void ObjCPropertyInfo::dump(llvm::raw_ostream &OS) const { static_cast(*this).dump(OS); if (SwiftImportAsAccessorsSpecified) OS << (SwiftImportAsAccessors ? "[SwiftImportAsAccessors] " : ""); OS << '\n'; } LLVM_DUMP_METHOD void ParamInfo::dump(llvm::raw_ostream &OS) const { static_cast(*this).dump(OS); if (NoEscapeSpecified) OS << (NoEscape ? "[NoEscape] " : ""); OS << "RawRetainCountConvention: " << RawRetainCountConvention << ' '; OS << '\n'; } LLVM_DUMP_METHOD void FunctionInfo::dump(llvm::raw_ostream &OS) const { static_cast(*this).dump(OS); OS << (NullabilityAudited ? "[NullabilityAudited] " : "") << "RawRetainCountConvention: " << RawRetainCountConvention << ' '; if (!ResultType.empty()) OS << "Result Type: " << ResultType << ' '; if (!Params.empty()) OS << '\n'; for (auto &PI : Params) PI.dump(OS); } LLVM_DUMP_METHOD void ObjCMethodInfo::dump(llvm::raw_ostream &OS) { static_cast(*this).dump(OS); OS << (DesignatedInit ? "[DesignatedInit] " : "") << (RequiredInit ? "[RequiredInit] " : "") << '\n'; } LLVM_DUMP_METHOD void TagInfo::dump(llvm::raw_ostream &OS) { static_cast(*this).dump(OS); if (HasFlagEnum) OS << (IsFlagEnum ? "[FlagEnum] " : ""); if (EnumExtensibility) OS << "Enum Extensibility: " << static_cast(*EnumExtensibility) << ' '; OS << '\n'; } LLVM_DUMP_METHOD void TypedefInfo::dump(llvm::raw_ostream &OS) const { static_cast(*this).dump(OS); if (SwiftWrapper) OS << "Swift Type: " << static_cast(*SwiftWrapper) << ' '; OS << '\n'; } } // namespace api_notes } // namespace clang