2010-08-20 16:03:52 +00:00
|
|
|
//===- ASTCommon.h - Common stuff for ASTReader/ASTWriter -*- C++ -*-=========//
|
|
|
|
//
|
2019-01-19 08:50:56 +00:00
|
|
|
// 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
|
2010-08-20 16:03:52 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file defines common functions that both ASTReader and ASTWriter use.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2014-08-13 16:25:19 +00:00
|
|
|
#ifndef LLVM_CLANG_LIB_SERIALIZATION_ASTCOMMON_H
|
|
|
|
#define LLVM_CLANG_LIB_SERIALIZATION_ASTCOMMON_H
|
2010-08-20 16:03:52 +00:00
|
|
|
|
2011-08-09 15:13:55 +00:00
|
|
|
#include "clang/AST/ASTContext.h"
|
2015-02-07 03:11:11 +00:00
|
|
|
#include "clang/AST/DeclFriend.h"
|
2012-12-04 09:13:33 +00:00
|
|
|
#include "clang/Serialization/ASTBitCodes.h"
|
2010-08-20 16:04:20 +00:00
|
|
|
|
2010-08-20 16:03:52 +00:00
|
|
|
namespace clang {
|
|
|
|
|
|
|
|
namespace serialization {
|
|
|
|
|
2010-10-24 17:26:50 +00:00
|
|
|
enum DeclUpdateKind {
|
2010-10-28 07:38:42 +00:00
|
|
|
UPD_CXX_ADDED_IMPLICIT_MEMBER,
|
2011-04-24 16:28:13 +00:00
|
|
|
UPD_CXX_ADDED_TEMPLATE_SPECIALIZATION,
|
2011-04-29 08:19:30 +00:00
|
|
|
UPD_CXX_ADDED_ANONYMOUS_NAMESPACE,
|
2014-08-07 18:53:08 +00:00
|
|
|
UPD_CXX_ADDED_FUNCTION_DEFINITION,
|
2017-12-05 01:31:47 +00:00
|
|
|
UPD_CXX_ADDED_VAR_DEFINITION,
|
|
|
|
UPD_CXX_POINT_OF_INSTANTIATION,
|
2014-04-19 03:48:30 +00:00
|
|
|
UPD_CXX_INSTANTIATED_CLASS_DEFINITION,
|
2016-01-06 22:34:54 +00:00
|
|
|
UPD_CXX_INSTANTIATED_DEFAULT_ARGUMENT,
|
2016-08-24 21:25:37 +00:00
|
|
|
UPD_CXX_INSTANTIATED_DEFAULT_MEMBER_INITIALIZER,
|
2015-03-10 01:41:22 +00:00
|
|
|
UPD_CXX_RESOLVED_DTOR_DELETE,
|
2014-03-20 21:47:22 +00:00
|
|
|
UPD_CXX_RESOLVED_EXCEPTION_SPEC,
|
2013-09-05 00:02:25 +00:00
|
|
|
UPD_CXX_DEDUCED_RETURN_TYPE,
|
2014-03-21 01:48:23 +00:00
|
|
|
UPD_DECL_MARKED_USED,
|
|
|
|
UPD_MANGLING_NUMBER,
|
2014-11-11 04:05:39 +00:00
|
|
|
UPD_STATIC_LOCAL_NUMBER,
|
2015-03-26 04:09:53 +00:00
|
|
|
UPD_DECL_MARKED_OPENMP_THREADPRIVATE,
|
2019-03-07 17:54:44 +00:00
|
|
|
UPD_DECL_MARKED_OPENMP_ALLOCATE,
|
2016-04-06 11:38:59 +00:00
|
|
|
UPD_DECL_MARKED_OPENMP_DECLARETARGET,
|
2015-06-26 05:28:36 +00:00
|
|
|
UPD_DECL_EXPORTED,
|
|
|
|
UPD_ADDED_ATTR_TO_RECORD
|
2010-10-24 17:26:50 +00:00
|
|
|
};
|
|
|
|
|
2010-08-20 16:04:20 +00:00
|
|
|
TypeIdx TypeIdxFromBuiltin(const BuiltinType *BT);
|
|
|
|
|
|
|
|
template <typename IdxForTypeTy>
|
2011-08-09 15:13:55 +00:00
|
|
|
TypeID MakeTypeID(ASTContext &Context, QualType T, IdxForTypeTy IdxForType) {
|
2010-08-20 16:04:20 +00:00
|
|
|
if (T.isNull())
|
|
|
|
return PREDEF_TYPE_NULL_ID;
|
|
|
|
|
|
|
|
unsigned FastQuals = T.getLocalFastQualifiers();
|
2010-12-10 11:01:00 +00:00
|
|
|
T.removeLocalFastQualifiers();
|
2010-08-20 16:04:20 +00:00
|
|
|
|
|
|
|
if (T.hasLocalNonFastQualifiers())
|
|
|
|
return IdxForType(T).asTypeID(FastQuals);
|
|
|
|
|
|
|
|
assert(!T.hasLocalQualifiers());
|
|
|
|
|
|
|
|
if (const BuiltinType *BT = dyn_cast<BuiltinType>(T.getTypePtr()))
|
|
|
|
return TypeIdxFromBuiltin(BT).asTypeID(FastQuals);
|
|
|
|
|
2011-08-09 15:13:55 +00:00
|
|
|
if (T == Context.AutoDeductTy)
|
|
|
|
return TypeIdx(PREDEF_TYPE_AUTO_DEDUCT).asTypeID(FastQuals);
|
|
|
|
if (T == Context.AutoRRefDeductTy)
|
|
|
|
return TypeIdx(PREDEF_TYPE_AUTO_RREF_DEDUCT).asTypeID(FastQuals);
|
|
|
|
|
2010-08-20 16:04:20 +00:00
|
|
|
return IdxForType(T).asTypeID(FastQuals);
|
|
|
|
}
|
|
|
|
|
2010-08-20 16:03:52 +00:00
|
|
|
unsigned ComputeHash(Selector Sel);
|
|
|
|
|
2018-05-09 01:00:01 +00:00
|
|
|
/// Retrieve the "definitive" declaration that provides all of the
|
2013-01-21 15:25:38 +00:00
|
|
|
/// visible entries for the given declaration context, if there is one.
|
|
|
|
///
|
|
|
|
/// The "definitive" declaration is the only place where we need to look to
|
|
|
|
/// find information about the declarations within the given declaration
|
|
|
|
/// context. For example, C++ and Objective-C classes, C structs/unions, and
|
|
|
|
/// Objective-C protocols, categories, and extensions are all defined in a
|
|
|
|
/// single place in the source code, so they have definitive declarations
|
|
|
|
/// associated with them. C++ namespaces, on the other hand, can have
|
|
|
|
/// multiple definitions.
|
2013-01-22 17:08:30 +00:00
|
|
|
const DeclContext *getDefinitiveDeclContext(const DeclContext *DC);
|
2013-01-21 15:25:38 +00:00
|
|
|
|
2018-05-09 01:00:01 +00:00
|
|
|
/// Determine whether the given declaration kind is redeclarable.
|
2013-01-21 16:16:40 +00:00
|
|
|
bool isRedeclarableDeclKind(unsigned Kind);
|
|
|
|
|
2018-05-09 01:00:01 +00:00
|
|
|
/// Determine whether the given declaration needs an anonymous
|
2014-08-28 01:33:39 +00:00
|
|
|
/// declaration number.
|
|
|
|
bool needsAnonymousDeclarationNumber(const NamedDecl *D);
|
|
|
|
|
2018-05-09 01:00:01 +00:00
|
|
|
/// Visit each declaration within \c DC that needs an anonymous
|
2015-02-07 03:11:11 +00:00
|
|
|
/// declaration number and call \p Visit with the declaration and its number.
|
|
|
|
template<typename Fn> void numberAnonymousDeclsWithin(const DeclContext *DC,
|
|
|
|
Fn Visit) {
|
|
|
|
unsigned Index = 0;
|
|
|
|
for (Decl *LexicalD : DC->decls()) {
|
|
|
|
// For a friend decl, we care about the declaration within it, if any.
|
|
|
|
if (auto *FD = dyn_cast<FriendDecl>(LexicalD))
|
|
|
|
LexicalD = FD->getFriendDecl();
|
|
|
|
|
|
|
|
auto *ND = dyn_cast_or_null<NamedDecl>(LexicalD);
|
|
|
|
if (!ND || !needsAnonymousDeclarationNumber(ND))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
Visit(ND, Index++);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-05 23:37:13 +00:00
|
|
|
/// Determine whether the given declaration will be included in the per-module
|
|
|
|
/// initializer if it needs to be eagerly handed to the AST consumer. If so, we
|
|
|
|
/// should not hand it to the consumer when deserializing it, nor include it in
|
|
|
|
/// the list of eagerly deserialized declarations.
|
|
|
|
inline bool isPartOfPerModuleInitializer(const Decl *D) {
|
|
|
|
if (isa<ImportDecl>(D))
|
|
|
|
return true;
|
|
|
|
// Template instantiations are notionally in an "instantiation unit" rather
|
|
|
|
// than in any particular translation unit, so they need not be part of any
|
|
|
|
// particular (sub)module's per-module initializer.
|
|
|
|
if (auto *VD = dyn_cast<VarDecl>(D))
|
|
|
|
return !isTemplateInstantiation(VD->getTemplateSpecializationKind());
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2010-08-20 16:03:52 +00:00
|
|
|
} // namespace serialization
|
|
|
|
|
|
|
|
} // namespace clang
|
|
|
|
|
|
|
|
#endif
|