//==--- AbstractBasiceReader.h - Abstract basic value deserialization -----===// // // 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 CLANG_AST_ABSTRACTBASICREADER_H #define CLANG_AST_ABSTRACTBASICREADER_H #include "clang/AST/DeclTemplate.h" namespace clang { namespace serialization { template inline T makeNullableFromOptional(const Optional &value) { return (value ? *value : T()); } template inline T *makePointerFromOptional(Optional value) { return (value ? *value : nullptr); } // PropertyReader is a class concept that requires the following method: // BasicReader find(llvm::StringRef propertyName); // where BasicReader is some class conforming to the BasicReader concept. // An abstract AST-node reader is created with a PropertyReader and // performs a sequence of calls like so: // propertyReader.find(propertyName).read##TypeName() // to read the properties of the node it is deserializing. // BasicReader is a class concept that requires methods like: // ValueType read##TypeName(); // where TypeName is the name of a PropertyType node from PropertiesBase.td // and ValueType is the corresponding C++ type name. The read method may // require one or more buffer arguments. // // In addition to the concrete type names, BasicReader is expected to // implement these methods: // // template // void writeEnum(T value); // // Reads an enum value from the current property. EnumType will always // be an enum type. Only necessary if the BasicReader doesn't provide // type-specific readers for all the enum types. // // template // Optional writeOptional(); // // Reads an optional value from the current property. // // template // ArrayRef readArray(llvm::SmallVectorImpl &buffer); // // Reads an array of values from the current property. // // PropertyReader readObject(); // // Reads an object from the current property; the returned property // reader will be subjected to a sequence of property reads and then // discarded before any other properties are reader from the "outer" // property reader (which need not be the same type). The sub-reader // will be used as if with the following code: // // { // auto &&widget = W.find("widget").readObject(); // auto kind = widget.find("kind").readWidgetKind(); // auto declaration = widget.find("declaration").readDeclRef(); // return Widget(kind, declaration); // } // ReadDispatcher does type-based forwarding to one of the read methods // on the BasicReader passed in: // // template // struct ReadDispatcher { // template // static ValueType read(BasicReader &R, BufferTypes &&...); // }; // BasicReaderBase provides convenience implementations of the read methods // for EnumPropertyType and SubclassPropertyType types that just defer to // the "underlying" implementations (for UInt32 and the base class, // respectively). // // template // class BasicReaderBase { // protected: // BasicReaderBase(ASTContext &ctx); // Impl &asImpl(); // public: // ASTContext &getASTContext(); // ... // }; // The actual classes are auto-generated; see ClangASTPropertiesEmitter.cpp. #include "clang/AST/AbstractBasicReader.inc" /// DataStreamBasicReader provides convenience implementations for many /// BasicReader methods based on the assumption that the /// ultimate reader implementation is based on a variable-length stream /// of unstructured data (like Clang's module files). It is designed /// to pair with DataStreamBasicWriter. /// /// This class can also act as a PropertyReader, implementing find("...") /// by simply forwarding to itself. /// /// Unimplemented methods: /// readBool /// readUInt32 /// readUInt64 /// readIdentifier /// readSelector /// readSourceLocation /// readQualType /// readStmtRef /// readDeclRef template class DataStreamBasicReader : public BasicReaderBase { protected: using BasicReaderBase::asImpl; DataStreamBasicReader(ASTContext &ctx) : BasicReaderBase(ctx) {} public: using BasicReaderBase::getASTContext; /// Implement property-find by ignoring it. We rely on properties being /// serialized and deserialized in a reliable order instead. Impl &find(const char *propertyName) { return asImpl(); } template T readEnum() { return T(asImpl().readUInt32()); } // Implement object reading by forwarding to this, collapsing the // structure into a single data stream. Impl &readObject() { return asImpl(); } template llvm::ArrayRef readArray(llvm::SmallVectorImpl &buffer) { assert(buffer.empty()); uint32_t size = asImpl().readUInt32(); buffer.reserve(size); for (uint32_t i = 0; i != size; ++i) { buffer.push_back(ReadDispatcher::read(asImpl())); } return buffer; } template llvm::Optional readOptional(Args &&...args) { return UnpackOptionalValue::unpack( ReadDispatcher::read(asImpl(), std::forward(args)...)); } llvm::APSInt readAPSInt() { bool isUnsigned = asImpl().readBool(); llvm::APInt value = asImpl().readAPInt(); return llvm::APSInt(std::move(value), isUnsigned); } llvm::APInt readAPInt() { unsigned bitWidth = asImpl().readUInt32(); unsigned numWords = llvm::APInt::getNumWords(bitWidth); llvm::SmallVector data; for (uint32_t i = 0; i != numWords; ++i) data.push_back(asImpl().readUInt64()); return llvm::APInt(bitWidth, numWords, &data[0]); } llvm::FixedPointSemantics readFixedPointSemantics() { unsigned width = asImpl().readUInt32(); unsigned scale = asImpl().readUInt32(); unsigned tmp = asImpl().readUInt32(); bool isSigned = tmp & 0x1; bool isSaturated = tmp & 0x2; bool hasUnsignedPadding = tmp & 0x4; return llvm::FixedPointSemantics(width, scale, isSigned, isSaturated, hasUnsignedPadding); } APValue::LValuePathSerializationHelper readLValuePathSerializationHelper( SmallVectorImpl &path) { auto elemTy = asImpl().readQualType(); unsigned pathLength = asImpl().readUInt32(); for (unsigned i = 0; i < pathLength; ++i) { if (elemTy->template getAs()) { unsigned int_ = asImpl().readUInt32(); Decl *decl = asImpl().template readDeclAs(); if (auto *recordDecl = dyn_cast(decl)) elemTy = getASTContext().getRecordType(recordDecl); else elemTy = cast(decl)->getType(); path.push_back( APValue::LValuePathEntry(APValue::BaseOrMemberType(decl, int_))); } else { elemTy = getASTContext().getAsArrayType(elemTy)->getElementType(); path.push_back( APValue::LValuePathEntry::ArrayIndex(asImpl().readUInt32())); } } return APValue::LValuePathSerializationHelper(path, elemTy); } Qualifiers readQualifiers() { static_assert(sizeof(Qualifiers().getAsOpaqueValue()) <= sizeof(uint32_t), "update this if the value size changes"); uint32_t value = asImpl().readUInt32(); return Qualifiers::fromOpaqueValue(value); } FunctionProtoType::ExceptionSpecInfo readExceptionSpecInfo(llvm::SmallVectorImpl &buffer) { FunctionProtoType::ExceptionSpecInfo esi; esi.Type = ExceptionSpecificationType(asImpl().readUInt32()); if (esi.Type == EST_Dynamic) { esi.Exceptions = asImpl().template readArray(buffer); } else if (isComputedNoexcept(esi.Type)) { esi.NoexceptExpr = asImpl().readExprRef(); } else if (esi.Type == EST_Uninstantiated) { esi.SourceDecl = asImpl().readFunctionDeclRef(); esi.SourceTemplate = asImpl().readFunctionDeclRef(); } else if (esi.Type == EST_Unevaluated) { esi.SourceDecl = asImpl().readFunctionDeclRef(); } return esi; } FunctionProtoType::ExtParameterInfo readExtParameterInfo() { static_assert(sizeof(FunctionProtoType::ExtParameterInfo().getOpaqueValue()) <= sizeof(uint32_t), "opaque value doesn't fit into uint32_t"); uint32_t value = asImpl().readUInt32(); return FunctionProtoType::ExtParameterInfo::getFromOpaqueValue(value); } NestedNameSpecifier *readNestedNameSpecifier() { auto &ctx = getASTContext(); // We build this up iteratively. NestedNameSpecifier *cur = nullptr; uint32_t depth = asImpl().readUInt32(); for (uint32_t i = 0; i != depth; ++i) { auto kind = asImpl().readNestedNameSpecifierKind(); switch (kind) { case NestedNameSpecifier::Identifier: cur = NestedNameSpecifier::Create(ctx, cur, asImpl().readIdentifier()); continue; case NestedNameSpecifier::Namespace: cur = NestedNameSpecifier::Create(ctx, cur, asImpl().readNamespaceDeclRef()); continue; case NestedNameSpecifier::NamespaceAlias: cur = NestedNameSpecifier::Create(ctx, cur, asImpl().readNamespaceAliasDeclRef()); continue; case NestedNameSpecifier::TypeSpec: case NestedNameSpecifier::TypeSpecWithTemplate: cur = NestedNameSpecifier::Create(ctx, cur, kind == NestedNameSpecifier::TypeSpecWithTemplate, asImpl().readQualType().getTypePtr()); continue; case NestedNameSpecifier::Global: cur = NestedNameSpecifier::GlobalSpecifier(ctx); continue; case NestedNameSpecifier::Super: cur = NestedNameSpecifier::SuperSpecifier(ctx, asImpl().readCXXRecordDeclRef()); continue; } llvm_unreachable("bad nested name specifier kind"); } return cur; } }; } // end namespace serialization } // end namespace clang #endif