57#include "llvm/ADT/ArrayRef.h"
58#include "llvm/ADT/DenseMap.h"
59#include "llvm/ADT/STLExtras.h"
60#include "llvm/ADT/ScopeExit.h"
61#include "llvm/ADT/SmallVector.h"
62#include "llvm/Support/ErrorHandling.h"
63#include "llvm/Support/MemoryBuffer.h"
74 using llvm::make_error;
89 return "NameConflict";
91 return "UnsupportedConstruct";
93 return "Unknown error";
95 llvm_unreachable(
"Invalid error code.");
96 return "Invalid error code.";
102 llvm_unreachable(
"Function not implemented.");
113 Redecls.push_back(R);
116 std::reverse(Redecls.begin(), Redecls.end());
121 if (
auto *FD = dyn_cast<FunctionDecl>(D))
123 if (
auto *VD = dyn_cast<VarDecl>(D))
125 if (
auto *TD = dyn_cast<TagDecl>(D))
127 llvm_unreachable(
"Bad declaration kind");
148 bool const IgnoreChildErrors;
152 : FromDC(FromDC), IgnoreChildErrors(!
isa<
TagDecl>(FromDC)) {}
162 if (ChildErr && !IgnoreChildErrors)
163 ResultErr = joinErrors(std::move(ResultErr), std::move(ChildErr));
165 consumeError(std::move(ChildErr));
171 if (!IgnoreChildErrors || !FromDC)
173 return FromDC->containsDecl(FromChildD);
179 public StmtVisitor<ASTNodeImporter, ExpectedStmt> {
183 template <
typename ImportT>
184 [[nodiscard]]
Error importInto(ImportT &To,
const ImportT &From) {
185 return Importer.importInto(To, From);
191 template <
typename ImportT>
192 [[nodiscard]]
Error importInto(ImportT *&To, ImportT *From) {
193 auto ToOrErr = Importer.Import(From);
195 To = cast_or_null<ImportT>(*ToOrErr);
196 return ToOrErr.takeError();
201 template <
typename T>
205 auto ToOrErr = Importer.Import(From);
207 return ToOrErr.takeError();
208 return cast_or_null<T>(*ToOrErr);
211 template <
typename T>
212 auto import(
const T *From) {
213 return import(
const_cast<T *
>(From));
217 template <
typename T>
219 return Importer.Import(From);
223 template <
typename T>
227 return import(*From);
234 template <
typename ToDeclT>
struct CallOverloadedCreateFun {
235 template <
typename... Args>
decltype(
auto)
operator()(Args &&... args) {
236 return ToDeclT::Create(std::forward<Args>(args)...);
246 template <
typename ToDeclT,
typename FromDeclT,
typename... Args>
247 [[nodiscard]]
bool GetImportedOrCreateDecl(ToDeclT *&ToD, FromDeclT *FromD,
252 CallOverloadedCreateFun<ToDeclT> OC;
253 return GetImportedOrCreateSpecialDecl(ToD, OC, FromD,
254 std::forward<Args>(args)...);
261 template <
typename NewDeclT,
typename ToDeclT,
typename FromDeclT,
263 [[nodiscard]]
bool GetImportedOrCreateDecl(ToDeclT *&ToD, FromDeclT *FromD,
265 CallOverloadedCreateFun<NewDeclT> OC;
266 return GetImportedOrCreateSpecialDecl(ToD, OC, FromD,
267 std::forward<Args>(args)...);
271 template <
typename ToDeclT,
typename CreateFunT,
typename FromDeclT,
274 GetImportedOrCreateSpecialDecl(ToDeclT *&ToD, CreateFunT CreateFun,
275 FromDeclT *FromD, Args &&...args) {
276 if (Importer.getImportDeclErrorIfAny(FromD)) {
280 ToD = cast_or_null<ToDeclT>(Importer.GetAlreadyImportedOrNull(FromD));
283 ToD = CreateFun(std::forward<Args>(args)...);
285 Importer.RegisterImportedDecl(FromD, ToD);
286 Importer.SharedState->markAsNewDecl(ToD);
287 InitializeImportedDecl(FromD, ToD);
291 void InitializeImportedDecl(
Decl *FromD,
Decl *ToD) {
295 if (FromD->isImplicit())
303 if (D->doesThisDeclarationHaveABody() &&
309 void addDeclToContexts(
Decl *FromD,
Decl *ToD) {
310 if (Importer.isMinimalImport()) {
314 if (!FromD->getDescribedTemplate() &&
321 DeclContext *FromLexicalDC = FromD->getLexicalDeclContext();
325 bool Visible =
false;
338 if (
auto *FromNamed = dyn_cast<NamedDecl>(FromD)) {
341 FromDC->
lookup(FromNamed->getDeclName());
342 if (llvm::is_contained(FromLookup, FromNamed))
355 LT->update(TP, OldDC);
359 updateLookupTableForTemplateParameters(
360 Params, Importer.getToContext().getTranslationUnitDecl());
363 template <
typename TemplateParmDeclT>
364 Error importTemplateParameterDefaultArgument(
const TemplateParmDeclT *D,
365 TemplateParmDeclT *ToD) {
366 if (D->hasDefaultArgument()) {
367 if (D->defaultArgumentWasInherited()) {
369 import(D->getDefaultArgStorage().getInheritedFrom());
370 if (!ToInheritedFromOrErr)
371 return ToInheritedFromOrErr.takeError();
372 TemplateParmDeclT *ToInheritedFrom = *ToInheritedFromOrErr;
373 if (!ToInheritedFrom->hasDefaultArgument()) {
377 import(D->getDefaultArgStorage()
379 ->getDefaultArgument());
380 if (!ToInheritedDefaultArgOrErr)
381 return ToInheritedDefaultArgOrErr.takeError();
382 ToInheritedFrom->setDefaultArgument(Importer.getToContext(),
383 *ToInheritedDefaultArgOrErr);
385 ToD->setInheritedDefaultArgument(ToD->getASTContext(),
389 import(D->getDefaultArgument());
390 if (!ToDefaultArgOrErr)
391 return ToDefaultArgOrErr.takeError();
394 if (!ToD->hasDefaultArgument())
395 ToD->setDefaultArgument(Importer.getToContext(),
399 return Error::success();
411#define TYPE(Class, Base) \
412 ExpectedType Visit##Class##Type(const Class##Type *T);
413#include "clang/AST/TypeNodes.inc"
450 (IDK ==
IDK_Default && !Importer.isMinimalImport());
471 template <
typename InContainerTy>
475 template<
typename InContainerTy>
482 std::tuple<FunctionTemplateDecl *, TemplateArgsTy>;
487 template <
typename DeclTy>
511 template <
typename T>
515 bool IgnoreTemplateParmDepth =
false);
725 Err = MaybeVal.takeError();
731 template<
typename IIter,
typename OIter>
733 using ItemT = std::remove_reference_t<
decltype(*Obegin)>;
734 for (; Ibegin != Iend; ++Ibegin, ++Obegin) {
737 return ToOrErr.takeError();
740 return Error::success();
747 template<
typename InContainerTy,
typename OutContainerTy>
749 const InContainerTy &InContainer, OutContainerTy &OutContainer) {
751 InContainer.begin(), InContainer.end(), OutContainer.begin());
754 template<
typename InContainerTy,
typename OIter>
766template <
typename InContainerTy>
770 auto ToLAngleLocOrErr =
import(FromLAngleLoc);
771 if (!ToLAngleLocOrErr)
772 return ToLAngleLocOrErr.takeError();
773 auto ToRAngleLocOrErr =
import(FromRAngleLoc);
774 if (!ToRAngleLocOrErr)
775 return ToRAngleLocOrErr.takeError();
780 Result = std::move(ToTAInfo);
781 return Error::success();
797 From.LAngleLoc, From.RAngleLoc, From.arguments(),
Result);
809 if (
Error Err = importInto(std::get<0>(
Result), FTSInfo->getTemplate()))
810 return std::move(Err);
815 return std::move(Err);
825 return std::move(Err);
828 if (!ToRequiresClause)
829 return ToRequiresClause.takeError();
832 if (!ToTemplateLocOrErr)
833 return ToTemplateLocOrErr.takeError();
835 if (!ToLAngleLocOrErr)
836 return ToLAngleLocOrErr.takeError();
838 if (!ToRAngleLocOrErr)
839 return ToRAngleLocOrErr.takeError();
842 Importer.getToContext(),
860 return ToTypeOrErr.takeError();
868 return ToTypeOrErr.takeError();
875 return ToOrErr.takeError();
878 return ToTypeOrErr.takeError();
879 return TemplateArgument(dyn_cast<ValueDecl>((*ToOrErr)->getCanonicalDecl()),
886 return ToTypeOrErr.takeError();
894 return ToTypeOrErr.takeError();
897 return ToValueOrErr.takeError();
904 if (!ToTemplateOrErr)
905 return ToTemplateOrErr.takeError();
913 if (!ToTemplateOrErr)
914 return ToTemplateOrErr.takeError();
925 return ToExpr.takeError();
931 return std::move(Err);
937 llvm_unreachable(
"Invalid template argument kind");
945 return ArgOrErr.takeError();
954 return E.takeError();
960 return TSIOrErr.takeError();
963 if (!ToTemplateKWLocOrErr)
964 return ToTemplateKWLocOrErr.takeError();
966 if (!ToTemplateQualifierLocOrErr)
967 return ToTemplateQualifierLocOrErr.takeError();
969 if (!ToTemplateNameLocOrErr)
970 return ToTemplateNameLocOrErr.takeError();
971 auto ToTemplateEllipsisLocOrErr =
973 if (!ToTemplateEllipsisLocOrErr)
974 return ToTemplateEllipsisLocOrErr.takeError();
976 Importer.getToContext(), *ToTemplateKWLocOrErr,
977 *ToTemplateQualifierLocOrErr, *ToTemplateNameLocOrErr,
978 *ToTemplateEllipsisLocOrErr);
988 size_t NumDecls = DG.
end() - DG.
begin();
990 ToDecls.reserve(NumDecls);
991 for (
Decl *FromD : DG) {
992 if (
auto ToDOrErr =
import(FromD))
993 ToDecls.push_back(*ToDOrErr);
995 return ToDOrErr.takeError();
1010 return ToDotLocOrErr.takeError();
1013 if (!ToFieldLocOrErr)
1014 return ToFieldLocOrErr.takeError();
1017 ToFieldName, *ToDotLocOrErr, *ToFieldLocOrErr);
1021 if (!ToLBracketLocOrErr)
1022 return ToLBracketLocOrErr.takeError();
1025 if (!ToRBracketLocOrErr)
1026 return ToRBracketLocOrErr.takeError();
1030 *ToLBracketLocOrErr,
1031 *ToRBracketLocOrErr);
1034 if (!ToEllipsisLocOrErr)
1035 return ToEllipsisLocOrErr.takeError();
1039 D.
getArrayIndex(), *ToLBracketLocOrErr, *ToEllipsisLocOrErr,
1040 *ToRBracketLocOrErr);
1045 Error Err = Error::success();
1048 auto ToConceptNameLoc =
1054 return std::move(Err);
1057 if (ASTTemplateArgs)
1059 return std::move(Err);
1061 Importer.getToContext(), ToNNS, ToTemplateKWLoc,
1065 Importer.getToContext(), ToTAInfo)
1071 char *ToStore =
new (Importer.getToContext())
char[FromStr.size()];
1072 std::copy(FromStr.begin(), FromStr.end(), ToStore);
1073 return StringRef(ToStore, FromStr.size());
1085 return ToSecondExpr.takeError();
1086 ToSat.
Details.emplace_back(ToSecondExpr.get());
1090 return ToCROrErr.takeError();
1091 ToSat.
Details.emplace_back(ToCROrErr.get());
1098 return ToPairFirst.takeError();
1100 ToSat.
Details.emplace_back(
new (Importer.getToContext())
1102 ToPairFirst.get(), ToPairSecond});
1106 return Error::success();
1111ASTNodeImporter::import(
1116 return ToLoc.takeError();
1118 return new (Importer.getToContext())
1130 return DiagOrErr.takeError();
1131 return new (Importer.getToContext()) TypeRequirement(*DiagOrErr);
1135 return ToType.takeError();
1136 return new (Importer.getToContext()) TypeRequirement(*ToType);
1144 bool IsRKSimple = From->
getKind() == Requirement::RK_Simple;
1147 std::optional<ExprRequirement::ReturnTypeRequirement> Req;
1153 const ExprRequirement::ReturnTypeRequirement &FromTypeRequirement =
1156 if (FromTypeRequirement.isTypeConstraint()) {
1157 const bool IsDependent = FromTypeRequirement.isDependent();
1159 import(FromTypeRequirement.getTypeConstraintTemplateParameterList());
1161 return ParamsOrErr.takeError();
1162 if (Status >= ExprRequirement::SS_ConstraintsNotSatisfied) {
1163 auto SubstConstraintExprOrErr =
1165 if (!SubstConstraintExprOrErr)
1166 return SubstConstraintExprOrErr.takeError();
1167 SubstitutedConstraintExpr = SubstConstraintExprOrErr.get();
1169 Req.emplace(ParamsOrErr.get(), IsDependent);
1170 }
else if (FromTypeRequirement.isSubstitutionFailure()) {
1171 auto DiagOrErr =
import(FromTypeRequirement.getSubstitutionDiagnostic());
1173 return DiagOrErr.takeError();
1174 Req.emplace(DiagOrErr.get());
1181 if (!NoexceptLocOrErr)
1182 return NoexceptLocOrErr.takeError();
1184 if (Status == ExprRequirement::SS_ExprSubstitutionFailure) {
1187 return DiagOrErr.takeError();
1188 return new (Importer.getToContext()) ExprRequirement(
1189 *DiagOrErr, IsRKSimple, *NoexceptLocOrErr, std::move(*Req));
1193 return ExprOrErr.takeError();
1195 *ExprOrErr, IsRKSimple, *NoexceptLocOrErr, std::move(*Req), Status,
1196 SubstitutedConstraintExpr);
1211 return new (Importer.getToContext())
1212 NestedRequirement(ToEntity, ToSatisfaction);
1216 return ToExpr.takeError();
1217 if (ToExpr.get()->isInstantiationDependent()) {
1218 return new (Importer.getToContext()) NestedRequirement(ToExpr.get());
1223 return std::move(Err);
1224 return new (Importer.getToContext()) NestedRequirement(
1225 Importer.getToContext(), ToExpr.get(), Satisfaction);
1233 switch (FromRequire->
getKind()) {
1243 llvm_unreachable(
"Unhandled requirement kind");
1253 return VarOrErr.takeError();
1258 return LocationOrErr.takeError();
1263 return std::move(Err);
1270template <
typename T>
1272 if (
Found->getLinkageInternal() != From->getLinkageInternal())
1275 if (From->hasExternalFormalLinkage())
1276 return Found->hasExternalFormalLinkage();
1277 if (Importer.GetFromTU(
Found) != From->getTranslationUnitDecl())
1279 if (From->isInAnonymousNamespace())
1280 return Found->isInAnonymousNamespace();
1282 return !
Found->isInAnonymousNamespace() &&
1283 !
Found->hasExternalFormalLinkage();
1303using namespace clang;
1309 FunctionDeclsWithImportInProgress.insert(D);
1312 return llvm::scope_exit([
this, LambdaD]() {
1314 FunctionDeclsWithImportInProgress.erase(LambdaD);
1321 return FunctionDeclsWithImportInProgress.find(D) !=
1322 FunctionDeclsWithImportInProgress.end();
1326 Importer.FromDiag(
SourceLocation(), diag::err_unsupported_ast_node)
1327 <<
T->getTypeClassName();
1332 ExpectedType UnderlyingTypeOrErr =
import(
T->getValueType());
1333 if (!UnderlyingTypeOrErr)
1334 return UnderlyingTypeOrErr.takeError();
1336 return Importer.getToContext().getAtomicType(*UnderlyingTypeOrErr);
1340 switch (
T->getKind()) {
1341#define IMAGE_TYPE(ImgType, Id, SingletonId, Access, Suffix) \
1342 case BuiltinType::Id: \
1343 return Importer.getToContext().SingletonId;
1344#include "clang/Basic/OpenCLImageTypes.def"
1345#define EXT_OPAQUE_TYPE(ExtType, Id, Ext) \
1346 case BuiltinType::Id: \
1347 return Importer.getToContext().Id##Ty;
1348#include "clang/Basic/OpenCLExtensionTypes.def"
1349#define SVE_TYPE(Name, Id, SingletonId) \
1350 case BuiltinType::Id: \
1351 return Importer.getToContext().SingletonId;
1352#include "clang/Basic/AArch64ACLETypes.def"
1353#define PPC_VECTOR_TYPE(Name, Id, Size) \
1354 case BuiltinType::Id: \
1355 return Importer.getToContext().Id##Ty;
1356#include "clang/Basic/PPCTypes.def"
1357#define RVV_TYPE(Name, Id, SingletonId) \
1358 case BuiltinType::Id: \
1359 return Importer.getToContext().SingletonId;
1360#include "clang/Basic/RISCVVTypes.def"
1361#define WASM_TYPE(Name, Id, SingletonId) \
1362 case BuiltinType::Id: \
1363 return Importer.getToContext().SingletonId;
1364#include "clang/Basic/WebAssemblyReferenceTypes.def"
1365#define AMDGPU_TYPE(Name, Id, SingletonId, Width, Align) \
1366 case BuiltinType::Id: \
1367 return Importer.getToContext().SingletonId;
1368#include "clang/Basic/AMDGPUTypes.def"
1369#define HLSL_INTANGIBLE_TYPE(Name, Id, SingletonId) \
1370 case BuiltinType::Id: \
1371 return Importer.getToContext().SingletonId;
1372#include "clang/Basic/HLSLIntangibleTypes.def"
1373#define SPIRV_TYPE(Name, Id, SingletonId) \
1374 case BuiltinType::Id: \
1375 return Importer.getToContext().SingletonId;
1376#include "clang/Basic/SPIRVTypes.def"
1377#define SHARED_SINGLETON_TYPE(Expansion)
1378#define BUILTIN_TYPE(Id, SingletonId) \
1379 case BuiltinType::Id: return Importer.getToContext().SingletonId;
1380#include "clang/AST/BuiltinTypes.def"
1388 case BuiltinType::Char_U:
1392 if (Importer.getToContext().getLangOpts().CharIsSigned)
1393 return Importer.getToContext().UnsignedCharTy;
1395 return Importer.getToContext().CharTy;
1397 case BuiltinType::Char_S:
1401 if (!Importer.getToContext().getLangOpts().CharIsSigned)
1402 return Importer.getToContext().SignedCharTy;
1404 return Importer.getToContext().CharTy;
1406 case BuiltinType::WChar_S:
1407 case BuiltinType::WChar_U:
1410 return Importer.getToContext().WCharTy;
1413 llvm_unreachable(
"Invalid BuiltinType Kind!");
1416ExpectedType ASTNodeImporter::VisitDecayedType(
const DecayedType *
T) {
1417 ExpectedType ToOriginalTypeOrErr =
import(
T->getOriginalType());
1418 if (!ToOriginalTypeOrErr)
1419 return ToOriginalTypeOrErr.takeError();
1421 return Importer.getToContext().getDecayedType(*ToOriginalTypeOrErr);
1424ExpectedType ASTNodeImporter::VisitComplexType(
const ComplexType *
T) {
1425 ExpectedType ToElementTypeOrErr =
import(
T->getElementType());
1426 if (!ToElementTypeOrErr)
1427 return ToElementTypeOrErr.takeError();
1429 return Importer.getToContext().getComplexType(*ToElementTypeOrErr);
1432ExpectedType ASTNodeImporter::VisitPointerType(
const PointerType *
T) {
1434 if (!ToPointeeTypeOrErr)
1435 return ToPointeeTypeOrErr.takeError();
1437 return Importer.getToContext().getPointerType(*ToPointeeTypeOrErr);
1440ExpectedType ASTNodeImporter::VisitBlockPointerType(
const BlockPointerType *
T) {
1443 if (!ToPointeeTypeOrErr)
1444 return ToPointeeTypeOrErr.takeError();
1446 return Importer.getToContext().getBlockPointerType(*ToPointeeTypeOrErr);
1450ASTNodeImporter::VisitLValueReferenceType(
const LValueReferenceType *
T) {
1452 ExpectedType ToPointeeTypeOrErr =
import(
T->getPointeeTypeAsWritten());
1453 if (!ToPointeeTypeOrErr)
1454 return ToPointeeTypeOrErr.takeError();
1456 return Importer.getToContext().getLValueReferenceType(*ToPointeeTypeOrErr);
1460ASTNodeImporter::VisitRValueReferenceType(
const RValueReferenceType *
T) {
1462 ExpectedType ToPointeeTypeOrErr =
import(
T->getPointeeTypeAsWritten());
1463 if (!ToPointeeTypeOrErr)
1464 return ToPointeeTypeOrErr.takeError();
1466 return Importer.getToContext().getRValueReferenceType(*ToPointeeTypeOrErr);
1470ASTNodeImporter::VisitMemberPointerType(
const MemberPointerType *
T) {
1473 if (!ToPointeeTypeOrErr)
1474 return ToPointeeTypeOrErr.takeError();
1476 auto QualifierOrErr =
import(
T->getQualifier());
1477 if (!QualifierOrErr)
1478 return QualifierOrErr.takeError();
1480 auto ClsOrErr =
import(
T->getMostRecentCXXRecordDecl());
1482 return ClsOrErr.takeError();
1484 return Importer.getToContext().getMemberPointerType(
1485 *ToPointeeTypeOrErr, *QualifierOrErr, *ClsOrErr);
1489ASTNodeImporter::VisitConstantArrayType(
const ConstantArrayType *
T) {
1490 Error Err = Error::success();
1491 auto ToElementType = importChecked(Err,
T->getElementType());
1492 auto ToSizeExpr = importChecked(Err,
T->getSizeExpr());
1494 return std::move(Err);
1496 return Importer.getToContext().getConstantArrayType(
1497 ToElementType,
T->getSize(), ToSizeExpr,
T->getSizeModifier(),
1498 T->getIndexTypeCVRQualifiers());
1502ASTNodeImporter::VisitArrayParameterType(
const ArrayParameterType *
T) {
1504 if (!ToArrayTypeOrErr)
1505 return ToArrayTypeOrErr.takeError();
1507 return Importer.getToContext().getArrayParameterType(*ToArrayTypeOrErr);
1511ASTNodeImporter::VisitIncompleteArrayType(
const IncompleteArrayType *
T) {
1512 ExpectedType ToElementTypeOrErr =
import(
T->getElementType());
1513 if (!ToElementTypeOrErr)
1514 return ToElementTypeOrErr.takeError();
1516 return Importer.getToContext().getIncompleteArrayType(*ToElementTypeOrErr,
1517 T->getSizeModifier(),
1518 T->getIndexTypeCVRQualifiers());
1522ASTNodeImporter::VisitVariableArrayType(
const VariableArrayType *
T) {
1523 Error Err = Error::success();
1524 QualType ToElementType = importChecked(Err,
T->getElementType());
1525 Expr *ToSizeExpr = importChecked(Err,
T->getSizeExpr());
1527 return std::move(Err);
1528 return Importer.getToContext().getVariableArrayType(
1529 ToElementType, ToSizeExpr,
T->getSizeModifier(),
1530 T->getIndexTypeCVRQualifiers());
1533ExpectedType ASTNodeImporter::VisitDependentSizedArrayType(
1534 const DependentSizedArrayType *
T) {
1535 Error Err = Error::success();
1536 QualType ToElementType = importChecked(Err,
T->getElementType());
1537 Expr *ToSizeExpr = importChecked(Err,
T->getSizeExpr());
1539 return std::move(Err);
1543 return Importer.getToContext().getDependentSizedArrayType(
1544 ToElementType, ToSizeExpr,
T->getSizeModifier(),
1545 T->getIndexTypeCVRQualifiers());
1548ExpectedType ASTNodeImporter::VisitDependentSizedExtVectorType(
1549 const DependentSizedExtVectorType *
T) {
1550 Error Err = Error::success();
1551 QualType ToElementType = importChecked(Err,
T->getElementType());
1552 Expr *ToSizeExpr = importChecked(Err,
T->getSizeExpr());
1553 SourceLocation ToAttrLoc = importChecked(Err,
T->getAttributeLoc());
1555 return std::move(Err);
1556 return Importer.getToContext().getDependentSizedExtVectorType(
1557 ToElementType, ToSizeExpr, ToAttrLoc);
1560ExpectedType ASTNodeImporter::VisitVectorType(
const VectorType *
T) {
1561 ExpectedType ToElementTypeOrErr =
import(
T->getElementType());
1562 if (!ToElementTypeOrErr)
1563 return ToElementTypeOrErr.takeError();
1565 return Importer.getToContext().getVectorType(*ToElementTypeOrErr,
1566 T->getNumElements(),
1567 T->getVectorKind());
1570ExpectedType ASTNodeImporter::VisitExtVectorType(
const ExtVectorType *
T) {
1571 ExpectedType ToElementTypeOrErr =
import(
T->getElementType());
1572 if (!ToElementTypeOrErr)
1573 return ToElementTypeOrErr.takeError();
1575 return Importer.getToContext().getExtVectorType(*ToElementTypeOrErr,
1576 T->getNumElements());
1580ASTNodeImporter::VisitFunctionNoProtoType(
const FunctionNoProtoType *
T) {
1584 if (!ToReturnTypeOrErr)
1585 return ToReturnTypeOrErr.takeError();
1587 return Importer.getToContext().getFunctionNoProtoType(*ToReturnTypeOrErr,
1592ASTNodeImporter::VisitFunctionProtoType(
const FunctionProtoType *
T) {
1594 if (!ToReturnTypeOrErr)
1595 return ToReturnTypeOrErr.takeError();
1598 SmallVector<QualType, 4> ArgTypes;
1602 return TyOrErr.takeError();
1603 ArgTypes.push_back(*TyOrErr);
1607 SmallVector<QualType, 4> ExceptionTypes;
1611 return TyOrErr.takeError();
1612 ExceptionTypes.push_back(*TyOrErr);
1616 Error Err = Error::success();
1617 FunctionProtoType::ExtProtoInfo ToEPI;
1633 return std::move(Err);
1635 return Importer.getToContext().getFunctionType(
1636 *ToReturnTypeOrErr, ArgTypes, ToEPI);
1640 const UnresolvedUsingType *
T) {
1641 Error Err = Error::success();
1642 auto ToQualifier = importChecked(Err,
T->getQualifier());
1643 auto *ToD = importChecked(Err,
T->getDecl());
1645 return std::move(Err);
1648 return Importer.getToContext().getCanonicalUnresolvedUsingType(ToD);
1649 return Importer.getToContext().getUnresolvedUsingType(
T->getKeyword(),
1653ExpectedType ASTNodeImporter::VisitParenType(
const ParenType *
T) {
1655 if (!ToInnerTypeOrErr)
1656 return ToInnerTypeOrErr.takeError();
1658 return Importer.getToContext().getParenType(*ToInnerTypeOrErr);
1662ASTNodeImporter::VisitPackIndexingType(clang::PackIndexingType
const *
T) {
1666 return Pattern.takeError();
1669 return Index.takeError();
1670 return Importer.getToContext().getPackIndexingType(*Pattern, *Index);
1673ExpectedType ASTNodeImporter::VisitTypedefType(
const TypedefType *
T) {
1674 Expected<TypedefNameDecl *> ToDeclOrErr =
import(
T->getDecl());
1676 return ToDeclOrErr.takeError();
1678 auto ToQualifierOrErr =
import(
T->getQualifier());
1679 if (!ToQualifierOrErr)
1680 return ToQualifierOrErr.takeError();
1683 T->typeMatchesDecl() ? QualType() : import(
T->desugar());
1684 if (!ToUnderlyingTypeOrErr)
1685 return ToUnderlyingTypeOrErr.takeError();
1687 return Importer.getToContext().getTypedefType(
1688 T->getKeyword(), *ToQualifierOrErr, *ToDeclOrErr, *ToUnderlyingTypeOrErr);
1691ExpectedType ASTNodeImporter::VisitTypeOfExprType(
const TypeOfExprType *
T) {
1694 return ToExprOrErr.takeError();
1695 return Importer.getToContext().getTypeOfExprType(*ToExprOrErr,
T->getKind());
1698ExpectedType ASTNodeImporter::VisitTypeOfType(
const TypeOfType *
T) {
1699 ExpectedType ToUnderlyingTypeOrErr =
import(
T->getUnmodifiedType());
1700 if (!ToUnderlyingTypeOrErr)
1701 return ToUnderlyingTypeOrErr.takeError();
1702 return Importer.getToContext().getTypeOfType(*ToUnderlyingTypeOrErr,
1706ExpectedType ASTNodeImporter::VisitUsingType(
const UsingType *
T) {
1707 Error Err = Error::success();
1708 auto ToQualifier = importChecked(Err,
T->getQualifier());
1709 auto *ToD = importChecked(Err,
T->getDecl());
1710 QualType ToT = importChecked(Err,
T->
desugar());
1712 return std::move(Err);
1713 return Importer.getToContext().getUsingType(
T->getKeyword(), ToQualifier, ToD,
1717ExpectedType ASTNodeImporter::VisitDecltypeType(
const DecltypeType *
T) {
1721 return ToExprOrErr.takeError();
1723 ExpectedType ToUnderlyingTypeOrErr =
import(
T->getUnderlyingType());
1724 if (!ToUnderlyingTypeOrErr)
1725 return ToUnderlyingTypeOrErr.takeError();
1727 return Importer.getToContext().getDecltypeType(
1728 *ToExprOrErr, *ToUnderlyingTypeOrErr);
1732ASTNodeImporter::VisitUnaryTransformType(
const UnaryTransformType *
T) {
1734 if (!ToBaseTypeOrErr)
1735 return ToBaseTypeOrErr.takeError();
1737 ExpectedType ToUnderlyingTypeOrErr =
import(
T->getUnderlyingType());
1738 if (!ToUnderlyingTypeOrErr)
1739 return ToUnderlyingTypeOrErr.takeError();
1741 return Importer.getToContext().getUnaryTransformType(
1742 *ToBaseTypeOrErr, *ToUnderlyingTypeOrErr,
T->getUTTKind());
1745ExpectedType ASTNodeImporter::VisitAutoType(
const AutoType *
T) {
1747 ExpectedType ToDeducedTypeOrErr =
import(
T->getDeducedType());
1748 if (!ToDeducedTypeOrErr)
1749 return ToDeducedTypeOrErr.takeError();
1752 if (
TemplateName FromTypeConstraint =
T->getTypeConstraintConcept();
1753 !FromTypeConstraint.isNull()) {
1754 Expected<TemplateName> ToTypeConstraintOrErr =
import(FromTypeConstraint);
1755 if (!ToTypeConstraintOrErr)
1756 return ToTypeConstraintOrErr.takeError();
1757 ToTypeConstraint = *ToTypeConstraintOrErr;
1760 SmallVector<TemplateArgument, 2> ToTemplateArgs;
1763 return std::move(Err);
1765 return Importer.getToContext().getAutoType(
1766 T->getDeducedKind(), *ToDeducedTypeOrErr,
T->getKeyword(),
1767 ToTypeConstraint, ToTemplateArgs);
1770ExpectedType ASTNodeImporter::VisitDeducedTemplateSpecializationType(
1771 const DeducedTemplateSpecializationType *
T) {
1773 Expected<TemplateName> ToTemplateNameOrErr =
import(
T->getTemplateName());
1774 if (!ToTemplateNameOrErr)
1775 return ToTemplateNameOrErr.takeError();
1776 ExpectedType ToDeducedTypeOrErr =
import(
T->getDeducedType());
1777 if (!ToDeducedTypeOrErr)
1778 return ToDeducedTypeOrErr.takeError();
1780 return Importer.getToContext().getDeducedTemplateSpecializationType(
1781 T->getDeducedKind(), *ToDeducedTypeOrErr,
T->getKeyword(),
1782 *ToTemplateNameOrErr);
1785ExpectedType ASTNodeImporter::VisitTagType(
const TagType *
T) {
1786 TagDecl *DeclForType =
T->getDecl();
1787 Expected<TagDecl *> ToDeclOrErr =
import(DeclForType);
1789 return ToDeclOrErr.takeError();
1795 Expected<TagDecl *> ToDefDeclOrErr =
import(DeclForType->
getDefinition());
1796 if (!ToDefDeclOrErr)
1797 return ToDefDeclOrErr.takeError();
1800 return Importer.getToContext().getCanonicalTagType(*ToDeclOrErr);
1802 auto ToQualifierOrErr =
import(
T->getQualifier());
1803 if (!ToQualifierOrErr)
1804 return ToQualifierOrErr.takeError();
1806 return Importer.getToContext().getTagType(
T->getKeyword(), *ToQualifierOrErr,
1807 *ToDeclOrErr,
T->isTagOwned());
1810ExpectedType ASTNodeImporter::VisitEnumType(
const EnumType *
T) {
1811 return VisitTagType(
T);
1814ExpectedType ASTNodeImporter::VisitRecordType(
const RecordType *
T) {
1815 return VisitTagType(
T);
1819ASTNodeImporter::VisitInjectedClassNameType(
const InjectedClassNameType *
T) {
1820 return VisitTagType(
T);
1823ExpectedType ASTNodeImporter::VisitAttributedType(
const AttributedType *
T) {
1824 ExpectedType ToModifiedTypeOrErr =
import(
T->getModifiedType());
1825 if (!ToModifiedTypeOrErr)
1826 return ToModifiedTypeOrErr.takeError();
1827 ExpectedType ToEquivalentTypeOrErr =
import(
T->getEquivalentType());
1828 if (!ToEquivalentTypeOrErr)
1829 return ToEquivalentTypeOrErr.takeError();
1831 return Importer.getToContext().getAttributedType(
1832 T->getAttrKind(), *ToModifiedTypeOrErr, *ToEquivalentTypeOrErr,
1837ASTNodeImporter::VisitCountAttributedType(
const CountAttributedType *
T) {
1839 if (!ToWrappedTypeOrErr)
1840 return ToWrappedTypeOrErr.takeError();
1842 Error Err = Error::success();
1843 Expr *CountExpr = importChecked(Err,
T->getCountExpr());
1845 SmallVector<TypeCoupledDeclRefInfo, 1> CoupledDecls;
1846 for (
const TypeCoupledDeclRefInfo &TI :
T->dependent_decls()) {
1847 Expected<ValueDecl *> ToDeclOrErr =
import(TI.getDecl());
1849 return ToDeclOrErr.takeError();
1850 CoupledDecls.emplace_back(*ToDeclOrErr, TI.isDeref());
1853 return Importer.getToContext().getCountAttributedType(
1854 *ToWrappedTypeOrErr, CountExpr,
T->isCountInBytes(),
T->isOrNull(),
1855 ArrayRef(CoupledDecls));
1859ASTNodeImporter::VisitLateParsedAttrType(
const LateParsedAttrType *
T) {
1860 llvm_unreachable(
"should be replaced with a concrete type before AST import");
1863ExpectedType ASTNodeImporter::VisitTemplateTypeParmType(
1864 const TemplateTypeParmType *
T) {
1865 Expected<TemplateTypeParmDecl *> ToDeclOrErr =
import(
T->getDecl());
1867 return ToDeclOrErr.takeError();
1869 return Importer.getToContext().getTemplateTypeParmType(
1870 T->getDepth(),
T->getIndex(),
T->isParameterPack(), *ToDeclOrErr);
1873ExpectedType ASTNodeImporter::VisitSubstTemplateTypeParmType(
1874 const SubstTemplateTypeParmType *
T) {
1875 Expected<Decl *> ReplacedOrErr =
import(
T->getAssociatedDecl());
1877 return ReplacedOrErr.takeError();
1879 ExpectedType ToReplacementTypeOrErr =
import(
T->getReplacementType());
1880 if (!ToReplacementTypeOrErr)
1881 return ToReplacementTypeOrErr.takeError();
1883 return Importer.getToContext().getSubstTemplateTypeParmType(
1884 *ToReplacementTypeOrErr, *ReplacedOrErr,
T->getIndex(),
T->getPackIndex(),
1888ExpectedType ASTNodeImporter::VisitSubstTemplateTypeParmPackType(
1889 const SubstTemplateTypeParmPackType *
T) {
1890 Expected<Decl *> ReplacedOrErr =
import(
T->getAssociatedDecl());
1892 return ReplacedOrErr.takeError();
1894 Expected<TemplateArgument> ToArgumentPack =
import(
T->getArgumentPack());
1895 if (!ToArgumentPack)
1896 return ToArgumentPack.takeError();
1898 return Importer.getToContext().getSubstTemplateTypeParmPackType(
1899 *ReplacedOrErr,
T->getIndex(),
T->getFinal(), *ToArgumentPack);
1902ExpectedType ASTNodeImporter::VisitSubstBuiltinTemplatePackType(
1903 const SubstBuiltinTemplatePackType *
T) {
1904 Expected<TemplateArgument> ToArgumentPack =
import(
T->getArgumentPack());
1905 if (!ToArgumentPack)
1906 return ToArgumentPack.takeError();
1907 return Importer.getToContext().getSubstBuiltinTemplatePack(*ToArgumentPack);
1910ExpectedType ASTNodeImporter::VisitTemplateSpecializationType(
1911 const TemplateSpecializationType *
T) {
1912 auto ToTemplateOrErr =
import(
T->getTemplateName());
1913 if (!ToTemplateOrErr)
1914 return ToTemplateOrErr.takeError();
1916 SmallVector<TemplateArgument, 2> ToTemplateArgs;
1919 return std::move(Err);
1923 if (!ToUnderlyingOrErr)
1924 return ToUnderlyingOrErr.takeError();
1925 return Importer.getToContext().getTemplateSpecializationType(
1926 T->getKeyword(), *ToTemplateOrErr, ToTemplateArgs, {},
1927 *ToUnderlyingOrErr);
1931ASTNodeImporter::VisitPackExpansionType(
const PackExpansionType *
T) {
1933 if (!ToPatternOrErr)
1934 return ToPatternOrErr.takeError();
1936 return Importer.getToContext().getPackExpansionType(*ToPatternOrErr,
1937 T->getNumExpansions(),
1942ASTNodeImporter::VisitDependentNameType(
const DependentNameType *
T) {
1943 auto ToQualifierOrErr =
import(
T->getQualifier());
1944 if (!ToQualifierOrErr)
1945 return ToQualifierOrErr.takeError();
1947 IdentifierInfo *Name = Importer.Import(
T->getIdentifier());
1948 return Importer.getToContext().getDependentNameType(
T->getKeyword(),
1949 *ToQualifierOrErr, Name);
1953ASTNodeImporter::VisitObjCInterfaceType(
const ObjCInterfaceType *
T) {
1954 Expected<ObjCInterfaceDecl *> ToDeclOrErr =
import(
T->getDecl());
1956 return ToDeclOrErr.takeError();
1958 return Importer.getToContext().getObjCInterfaceType(*ToDeclOrErr);
1961ExpectedType ASTNodeImporter::VisitObjCObjectType(
const ObjCObjectType *
T) {
1963 if (!ToBaseTypeOrErr)
1964 return ToBaseTypeOrErr.takeError();
1966 SmallVector<QualType, 4> TypeArgs;
1967 for (
auto TypeArg :
T->getTypeArgsAsWritten()) {
1969 TypeArgs.push_back(*TyOrErr);
1971 return TyOrErr.takeError();
1974 SmallVector<ObjCProtocolDecl *, 4> Protocols;
1975 for (
auto *P :
T->quals()) {
1976 if (Expected<ObjCProtocolDecl *> ProtocolOrErr =
import(P))
1977 Protocols.push_back(*ProtocolOrErr);
1979 return ProtocolOrErr.takeError();
1983 return Importer.getToContext().getObjCObjectType(*ToBaseTypeOrErr, TypeArgs,
1985 T->isKindOfTypeAsWritten());
1989ASTNodeImporter::VisitObjCObjectPointerType(
const ObjCObjectPointerType *
T) {
1991 if (!ToPointeeTypeOrErr)
1992 return ToPointeeTypeOrErr.takeError();
1994 return Importer.getToContext().getObjCObjectPointerType(*ToPointeeTypeOrErr);
1998ASTNodeImporter::VisitMacroQualifiedType(
const MacroQualifiedType *
T) {
1999 ExpectedType ToUnderlyingTypeOrErr =
import(
T->getUnderlyingType());
2000 if (!ToUnderlyingTypeOrErr)
2001 return ToUnderlyingTypeOrErr.takeError();
2003 IdentifierInfo *ToIdentifier = Importer.Import(
T->getMacroIdentifier());
2004 return Importer.getToContext().getMacroQualifiedType(*ToUnderlyingTypeOrErr,
2008ExpectedType clang::ASTNodeImporter::VisitAdjustedType(
const AdjustedType *
T) {
2009 Error Err = Error::success();
2010 QualType ToOriginalType = importChecked(Err,
T->getOriginalType());
2011 QualType ToAdjustedType = importChecked(Err,
T->getAdjustedType());
2013 return std::move(Err);
2015 return Importer.getToContext().getAdjustedType(ToOriginalType,
2019ExpectedType clang::ASTNodeImporter::VisitBitIntType(
const BitIntType *
T) {
2020 return Importer.getToContext().getBitIntType(
T->isUnsigned(),
2024ExpectedType clang::ASTNodeImporter::VisitBTFTagAttributedType(
2025 const clang::BTFTagAttributedType *
T) {
2026 Error Err = Error::success();
2027 const BTFTypeTagAttr *ToBTFAttr = importChecked(Err,
T->getAttr());
2028 QualType ToWrappedType = importChecked(Err,
T->getWrappedType());
2030 return std::move(Err);
2032 return Importer.getToContext().getBTFTagAttributedType(ToBTFAttr,
2036ExpectedType clang::ASTNodeImporter::VisitOverflowBehaviorType(
2037 const clang::OverflowBehaviorType *
T) {
2038 Error Err = Error::success();
2039 OverflowBehaviorType::OverflowBehaviorKind ToKind =
T->getBehaviorKind();
2042 return std::move(Err);
2044 return Importer.getToContext().getOverflowBehaviorType(ToKind,
2048ExpectedType clang::ASTNodeImporter::VisitHLSLAttributedResourceType(
2049 const clang::HLSLAttributedResourceType *
T) {
2050 Error Err = Error::success();
2051 HLSLAttributedResourceType::Attributes ToAttrs =
T->getAttrs();
2052 QualType ToWrappedType = importChecked(Err,
T->getWrappedType());
2053 QualType ToContainedType = importChecked(Err,
T->getContainedType());
2054 ToAttrs.SampleCountExpr = importChecked(Err,
T->getSampleCountExpr());
2056 return std::move(Err);
2058 return Importer.getToContext().getHLSLAttributedResourceType(
2059 ToWrappedType, ToContainedType, ToAttrs);
2062ExpectedType clang::ASTNodeImporter::VisitHLSLInlineSpirvType(
2063 const clang::HLSLInlineSpirvType *
T) {
2064 Error Err = Error::success();
2068 uint32_t ToAlignment =
T->getAlignment();
2070 llvm::SmallVector<SpirvOperand> ToOperands;
2072 for (
auto &Operand :
T->getOperands()) {
2073 using SpirvOperandKind = SpirvOperand::SpirvOperandKind;
2076 case SpirvOperandKind::ConstantId:
2077 ToOperands.push_back(SpirvOperand::createConstant(
2078 importChecked(Err,
Operand.getResultType()),
Operand.getValue()));
2080 case SpirvOperandKind::Literal:
2081 ToOperands.push_back(SpirvOperand::createLiteral(
Operand.getValue()));
2083 case SpirvOperandKind::TypeId:
2084 ToOperands.push_back(SpirvOperand::createType(
2085 importChecked(Err,
Operand.getResultType())));
2088 llvm_unreachable(
"Invalid SpirvOperand kind");
2092 return std::move(Err);
2095 return Importer.getToContext().getHLSLInlineSpirvType(
2096 ToOpcode, ToSize, ToAlignment, ToOperands);
2099ExpectedType clang::ASTNodeImporter::VisitConstantMatrixType(
2100 const clang::ConstantMatrixType *
T) {
2101 ExpectedType ToElementTypeOrErr =
import(
T->getElementType());
2102 if (!ToElementTypeOrErr)
2103 return ToElementTypeOrErr.takeError();
2105 return Importer.getToContext().getConstantMatrixType(
2106 *ToElementTypeOrErr,
T->getNumRows(),
T->getNumColumns());
2109ExpectedType clang::ASTNodeImporter::VisitDependentAddressSpaceType(
2110 const clang::DependentAddressSpaceType *
T) {
2111 Error Err = Error::success();
2113 Expr *ToAddrSpaceExpr = importChecked(Err,
T->getAddrSpaceExpr());
2114 SourceLocation ToAttrLoc = importChecked(Err,
T->getAttributeLoc());
2116 return std::move(Err);
2118 return Importer.getToContext().getDependentAddressSpaceType(
2119 ToPointeeType, ToAddrSpaceExpr, ToAttrLoc);
2122ExpectedType clang::ASTNodeImporter::VisitDependentBitIntType(
2123 const clang::DependentBitIntType *
T) {
2124 ExpectedExpr ToNumBitsExprOrErr =
import(
T->getNumBitsExpr());
2125 if (!ToNumBitsExprOrErr)
2126 return ToNumBitsExprOrErr.takeError();
2127 return Importer.getToContext().getDependentBitIntType(
T->isUnsigned(),
2128 *ToNumBitsExprOrErr);
2131ExpectedType clang::ASTNodeImporter::VisitPredefinedSugarType(
2132 const clang::PredefinedSugarType *
T) {
2133 return Importer.getToContext().getPredefinedSugarType(
T->getKind());
2136ExpectedType clang::ASTNodeImporter::VisitDependentSizedMatrixType(
2137 const clang::DependentSizedMatrixType *
T) {
2138 Error Err = Error::success();
2139 QualType ToElementType = importChecked(Err,
T->getElementType());
2140 Expr *ToRowExpr = importChecked(Err,
T->getRowExpr());
2141 Expr *ToColumnExpr = importChecked(Err,
T->getColumnExpr());
2142 SourceLocation ToAttrLoc = importChecked(Err,
T->getAttributeLoc());
2144 return std::move(Err);
2146 return Importer.getToContext().getDependentSizedMatrixType(
2147 ToElementType, ToRowExpr, ToColumnExpr, ToAttrLoc);
2150ExpectedType clang::ASTNodeImporter::VisitDependentVectorType(
2151 const clang::DependentVectorType *
T) {
2152 Error Err = Error::success();
2153 QualType ToElementType = importChecked(Err,
T->getElementType());
2154 Expr *ToSizeExpr = importChecked(Err,
T->getSizeExpr());
2155 SourceLocation ToAttrLoc = importChecked(Err,
T->getAttributeLoc());
2157 return std::move(Err);
2159 return Importer.getToContext().getDependentVectorType(
2160 ToElementType, ToSizeExpr, ToAttrLoc,
T->getVectorKind());
2163ExpectedType clang::ASTNodeImporter::VisitObjCTypeParamType(
2164 const clang::ObjCTypeParamType *
T) {
2165 Expected<ObjCTypeParamDecl *> ToDeclOrErr =
import(
T->getDecl());
2167 return ToDeclOrErr.takeError();
2169 SmallVector<ObjCProtocolDecl *, 4> ToProtocols;
2170 for (ObjCProtocolDecl *FromProtocol :
T->getProtocols()) {
2171 Expected<ObjCProtocolDecl *> ToProtocolOrErr =
import(FromProtocol);
2172 if (!ToProtocolOrErr)
2173 return ToProtocolOrErr.takeError();
2174 ToProtocols.push_back(*ToProtocolOrErr);
2177 return Importer.getToContext().getObjCTypeParamType(*ToDeclOrErr,
2181ExpectedType clang::ASTNodeImporter::VisitPipeType(
const clang::PipeType *
T) {
2182 ExpectedType ToElementTypeOrErr =
import(
T->getElementType());
2183 if (!ToElementTypeOrErr)
2184 return ToElementTypeOrErr.takeError();
2186 ASTContext &ToCtx = Importer.getToContext();
2187 if (
T->isReadOnly())
2207 if (
isa<RecordDecl>(D) && (FunDecl = dyn_cast<FunctionDecl>(OrigDC)) &&
2209 auto getLeafPointeeType = [](
const Type *
T) {
2210 while (
T->isPointerType() ||
T->isArrayType()) {
2211 T =
T->getPointeeOrArrayElementType();
2217 getLeafPointeeType(
P->getType().getCanonicalType().getTypePtr());
2218 auto *RT = dyn_cast<RecordType>(LeafT);
2219 if (RT && RT->getDecl() == D) {
2220 Importer.FromDiag(D->
getLocation(), diag::err_unsupported_ast_node)
2239 ToD = cast_or_null<NamedDecl>(Importer.GetAlreadyImportedOrNull(D));
2244 return Error::success();
2258 ToD = cast_or_null<NamedDecl>(Importer.GetAlreadyImportedOrNull(D));
2263 return Error::success();
2268 return Error::success();
2274 if (
RecordDecl *FromRecord = dyn_cast<RecordDecl>(FromD)) {
2276 if (FromRecord->getDefinition() && FromRecord->isCompleteDefinition() &&
2277 !ToRecord->getDefinition()) {
2282 return Error::success();
2285 if (
EnumDecl *FromEnum = dyn_cast<EnumDecl>(FromD)) {
2287 if (FromEnum->getDefinition() && !ToEnum->getDefinition()) {
2292 return Error::success();
2295 return Error::success();
2310 return Error::success();
2316 return ToRangeOrErr.takeError();
2317 return Error::success();
2323 return LocOrErr.takeError();
2324 return Error::success();
2332 return ToTInfoOrErr.takeError();
2333 return Error::success();
2336 llvm_unreachable(
"Unknown name kind.");
2341 if (Importer.isMinimalImport() && !ForceImport) {
2342 auto ToDCOrErr = Importer.ImportContext(FromDC);
2343 return ToDCOrErr.takeError();
2357 auto MightNeedReordering = [](
const Decl *D) {
2362 Error ChildErrors = Error::success();
2363 for (
auto *From : FromDC->
decls()) {
2364 if (!MightNeedReordering(From))
2373 if (!ImportedOrErr) {
2375 ImportedOrErr.takeError());
2378 FieldDecl *FieldFrom = dyn_cast_or_null<FieldDecl>(From);
2379 Decl *ImportedDecl = *ImportedOrErr;
2380 FieldDecl *FieldTo = dyn_cast_or_null<FieldDecl>(ImportedDecl);
2381 if (FieldFrom && FieldTo) {
2411 auto ToDCOrErr = Importer.ImportContext(FromDC);
2413 consumeError(std::move(ChildErrors));
2414 return ToDCOrErr.takeError();
2417 if (
const auto *FromRD = dyn_cast<RecordDecl>(FromDC)) {
2421 for (
auto *D : FromRD->decls()) {
2422 if (!MightNeedReordering(D))
2425 assert(D &&
"DC contains a null decl");
2426 if (
Decl *ToD = Importer.GetAlreadyImportedOrNull(D)) {
2428 assert(ToDC == ToD->getLexicalDeclContext() && ToDC->
containsDecl(ToD));
2440 for (
auto *From : FromDC->
decls()) {
2441 if (MightNeedReordering(From))
2447 ImportedOrErr.takeError());
2467 if (!FromRecordDecl || !ToRecordDecl) {
2468 const RecordType *RecordFrom = FromType->
getAs<RecordType>();
2469 const RecordType *RecordTo = ToType->
getAs<RecordType>();
2471 if (RecordFrom && RecordTo) {
2472 FromRecordDecl = RecordFrom->getDecl();
2473 ToRecordDecl = RecordTo->getDecl();
2477 if (FromRecordDecl && ToRecordDecl) {
2483 return Error::success();
2488 auto ToDCOrErr = Importer.ImportContext(FromD->
getDeclContext());
2490 return ToDCOrErr.takeError();
2494 auto ToLexicalDCOrErr = Importer.ImportContext(
2496 if (!ToLexicalDCOrErr)
2497 return ToLexicalDCOrErr.takeError();
2498 ToLexicalDC = *ToLexicalDCOrErr;
2502 return Error::success();
2508 "Import implicit methods to or from non-definition");
2511 if (FromM->isImplicit()) {
2514 return ToMOrErr.takeError();
2517 return Error::success();
2526 return ToTypedefOrErr.takeError();
2528 return Error::success();
2533 auto DefinitionCompleter = [To]() {
2554 ToCaptures.reserve(FromCXXRD->capture_size());
2555 for (
const auto &FromCapture : FromCXXRD->captures()) {
2556 if (
auto ToCaptureOrErr =
import(FromCapture))
2557 ToCaptures.push_back(*ToCaptureOrErr);
2559 return ToCaptureOrErr.takeError();
2568 DefinitionCompleter();
2572 return Error::success();
2582 if (!Importer.isMinimalImport())
2587 llvm::scope_exit DefinitionCompleterScopeExit(DefinitionCompleter);
2593 auto *ToCXX = dyn_cast<CXXRecordDecl>(To);
2594 auto *FromCXX = dyn_cast<CXXRecordDecl>(From);
2595 if (ToCXX && FromCXX && ToCXX->dataPtr() && FromCXX->dataPtr()) {
2597 struct CXXRecordDecl::DefinitionData &ToData = ToCXX->data();
2598 struct CXXRecordDecl::DefinitionData &FromData = FromCXX->data();
2600 #define FIELD(Name, Width, Merge) \
2601 ToData.Name = FromData.Name;
2602 #include "clang/AST/CXXRecordDeclDefinitionBits.def"
2605 ToCXX->setArgPassingRestrictions(FromCXX->getArgPassingRestrictions());
2608 for (
const auto &Base1 : FromCXX->bases()) {
2611 return TyOrErr.takeError();
2614 if (Base1.isPackExpansion()) {
2615 if (
ExpectedSLoc LocOrErr =
import(Base1.getEllipsisLoc()))
2616 EllipsisLoc = *LocOrErr;
2618 return LocOrErr.takeError();
2626 auto RangeOrErr =
import(Base1.getSourceRange());
2628 return RangeOrErr.takeError();
2630 auto TSIOrErr =
import(Base1.getTypeSourceInfo());
2632 return TSIOrErr.takeError();
2638 Base1.isBaseOfClass(),
2639 Base1.getAccessSpecifierAsWritten(),
2644 ToCXX->setBases(Bases.data(), Bases.size());
2652 return Error::success();
2657 return Error::success();
2661 return Error::success();
2665 return ToInitOrErr.takeError();
2676 return Error::success();
2684 return Error::success();
2693 import(
QualType(Importer.getFromContext().getCanonicalTagType(From)));
2695 return ToTypeOrErr.takeError();
2698 if (!ToPromotionTypeOrErr)
2699 return ToPromotionTypeOrErr.takeError();
2710 return Error::success();
2716 for (
const auto &Arg : FromArgs) {
2717 if (
auto ToOrErr =
import(Arg))
2718 ToArgs.push_back(*ToOrErr);
2720 return ToOrErr.takeError();
2723 return Error::success();
2729 return import(From);
2732template <
typename InContainerTy>
2735 for (
const auto &FromLoc : Container) {
2736 if (
auto ToLocOrErr =
import(FromLoc))
2739 return ToLocOrErr.takeError();
2741 return Error::success();
2751 bool IgnoreTemplateParmDepth) {
2754 Decl *ToOrigin = Importer.GetOriginalDecl(To);
2760 Importer.getToContext().getLangOpts(), Importer.getFromContext(),
2761 Importer.getToContext(), Importer.getNonEquivalentDecls(),
2763 false, Complain,
false,
2764 IgnoreTemplateParmDepth);
2769 Importer.FromDiag(D->
getLocation(), diag::err_unsupported_ast_node)
2775 Importer.FromDiag(D->
getLocation(), diag::err_unsupported_ast_node)
2784 return std::move(Err);
2789 return LocOrErr.takeError();
2792 if (GetImportedOrCreateDecl(ToD, D, Importer.getToContext(), DC, *LocOrErr))
2804 Importer.MapImported(D, ToD);
2810 Error Err = Error::success();
2815 return std::move(Err);
2819 return DCOrErr.takeError();
2823 if (GetImportedOrCreateDecl(ToD, D, Importer.getToContext(), DC, ToAsmString,
2824 ToAsmLoc, ToRParenLoc))
2839 return std::move(Err);
2844 if (GetImportedOrCreateDecl(ToD, D, Importer.getToContext(), DC, Loc,
2848 Error Err = Error::success();
2854 return std::move(Err);
2858 addDeclToContexts(D, ToD);
2866 return LocOrErr.takeError();
2869 return ColonLocOrErr.takeError();
2874 return DCOrErr.takeError();
2878 if (GetImportedOrCreateDecl(ToD, D, Importer.getToContext(), D->
getAccess(),
2879 DC, *LocOrErr, *ColonLocOrErr))
2893 return DCOrErr.takeError();
2897 Error Err = Error::success();
2903 return std::move(Err);
2906 if (GetImportedOrCreateDecl(
2907 ToD, D, Importer.getToContext(), DC, ToLocation, ToAssertExpr, ToMessage,
2920 return DCOrErr.takeError();
2924 Error Err = Error::success();
2930 return std::move(Err);
2933 if (GetImportedOrCreateDecl(ToD, D, Importer.getToContext(), DC, ToLocation,
2951 return std::move(Err);
2960 if (
auto *TU = dyn_cast<TranslationUnitDecl>(EnclosingDC))
2963 MergeWithNamespace =
2967 auto FoundDecls = Importer.findDeclsInToCtx(DC, Name);
2968 for (
auto *FoundDecl : FoundDecls) {
2972 if (
auto *FoundNS = dyn_cast<NamespaceDecl>(FoundDecl)) {
2973 MergeWithNamespace = FoundNS;
2974 ConflictingDecls.clear();
2978 ConflictingDecls.push_back(FoundDecl);
2981 if (!ConflictingDecls.empty()) {
2984 ConflictingDecls.size());
2986 Name = NameOrErr.get();
2988 return NameOrErr.takeError();
2994 return BeginLocOrErr.takeError();
2996 if (!RBraceLocOrErr)
2997 return RBraceLocOrErr.takeError();
3002 if (GetImportedOrCreateDecl(ToNamespace, D, Importer.getToContext(), DC,
3003 D->
isInline(), *BeginLocOrErr, Loc,
3014 if (
auto *TU = dyn_cast<TranslationUnitDecl>(DC))
3015 TU->setAnonymousNamespace(ToNamespace);
3020 Importer.MapImported(D, ToNamespace);
3023 return std::move(Err);
3035 return std::move(Err);
3041 Error Err = Error::success();
3048 return std::move(Err);
3053 if (GetImportedOrCreateDecl(
3054 ToD, D, Importer.getToContext(), DC, ToNamespaceLoc, ToAliasLoc,
3055 ToIdentifier, ToQualifierLoc, ToTargetNameLoc, ToNamespace))
3073 return std::move(Err);
3080 cast_or_null<DeclContext>(Importer.GetAlreadyImportedOrNull(
3092 auto FoundDecls = Importer.findDeclsInToCtx(DC, Name);
3093 for (
auto *FoundDecl : FoundDecls) {
3094 if (!FoundDecl->isInIdentifierNamespace(IDNS))
3096 if (
auto *FoundTypedef = dyn_cast<TypedefNameDecl>(FoundDecl)) {
3101 QualType FoundUT = FoundTypedef->getUnderlyingType();
3102 if (Importer.IsStructurallyEquivalent(FromUT, FoundUT)) {
3115 if (FromR && FoundR &&
3122 return Importer.MapImported(D, FoundTypedef);
3126 ConflictingDecls.push_back(FoundDecl);
3131 if (!ConflictingDecls.empty()) {
3133 Name, DC, IDNS, ConflictingDecls.data(), ConflictingDecls.size());
3135 Name = NameOrErr.get();
3137 return NameOrErr.takeError();
3141 Error Err = Error::success();
3146 return std::move(Err);
3153 if (GetImportedOrCreateDecl<TypeAliasDecl>(
3154 ToTypedef, D, Importer.getToContext(), DC, ToBeginLoc, Loc,
3157 }
else if (GetImportedOrCreateDecl<TypedefDecl>(
3158 ToTypedef, D, Importer.getToContext(), DC, ToBeginLoc, Loc,
3164 return std::move(Err);
3168 Importer.AddToLookupTable(ToTypedef);
3196 return std::move(Err);
3206 auto FoundDecls = Importer.findDeclsInToCtx(DC, Name);
3207 for (
auto *FoundDecl : FoundDecls) {
3208 if (!FoundDecl->isInIdentifierNamespace(IDNS))
3210 if (
auto *FoundAlias = dyn_cast<TypeAliasTemplateDecl>(FoundDecl)) {
3212 return Importer.MapImported(D, FoundAlias);
3213 ConflictingDecls.push_back(FoundDecl);
3217 if (!ConflictingDecls.empty()) {
3219 Name, DC, IDNS, ConflictingDecls.data(), ConflictingDecls.size());
3221 Name = NameOrErr.get();
3223 return NameOrErr.takeError();
3227 Error Err = Error::success();
3231 return std::move(Err);
3234 if (GetImportedOrCreateDecl(ToAlias, D, Importer.getToContext(), DC, Loc,
3235 Name, ToTemplateParameters, ToTemplatedDecl))
3238 ToTemplatedDecl->setDescribedAliasTemplate(ToAlias);
3243 if (DC != Importer.getToContext().getTranslationUnitDecl())
3244 updateLookupTableForTemplateParameters(*ToTemplateParameters);
3255 return std::move(Err);
3265 return BeginLocOrErr.takeError();
3266 if (GetImportedOrCreateDecl(ToLabel, D, Importer.getToContext(), DC, Loc,
3271 if (GetImportedOrCreateDecl(ToLabel, D, Importer.getToContext(), DC, Loc,
3279 return ToStmtOrErr.takeError();
3281 ToLabel->
setStmt(*ToStmtOrErr);
3294 return std::move(Err);
3304 return std::move(Err);
3306 }
else if (Importer.getToContext().getLangOpts().CPlusPlus)
3314 Importer.findDeclsInToCtx(DC, SearchName);
3315 for (
auto *FoundDecl : FoundDecls) {
3316 if (!FoundDecl->isInIdentifierNamespace(IDNS))
3319 if (
auto *
Typedef = dyn_cast<TypedefNameDecl>(FoundDecl)) {
3320 if (
const auto *Tag =
Typedef->getUnderlyingType()->getAs<TagType>())
3321 FoundDecl = Tag->getDecl();
3324 if (
auto *FoundEnum = dyn_cast<EnumDecl>(FoundDecl)) {
3330 return Importer.MapImported(D, FoundDef);
3334 ConflictingDecls.push_back(FoundDecl);
3343 if (SearchName && !ConflictingDecls.empty()) {
3345 SearchName, DC, IDNS, ConflictingDecls.data(),
3346 ConflictingDecls.size());
3348 Name = NameOrErr.get();
3350 return NameOrErr.takeError();
3354 Error Err = Error::success();
3360 return std::move(Err);
3364 if (GetImportedOrCreateDecl(
3365 D2, D, Importer.getToContext(), DC, ToBeginLoc,
3375 addDeclToContexts(D, D2);
3381 D2->setInstantiationOfMemberEnum(*ToInstOrErr, SK);
3383 return ToInstOrErr.takeError();
3384 if (
ExpectedSLoc POIOrErr =
import(MemberInfo->getPointOfInstantiation()))
3387 return POIOrErr.takeError();
3393 return std::move(Err);
3399 bool IsFriendTemplate =
false;
3400 if (
auto *DCXX = dyn_cast<CXXRecordDecl>(D)) {
3402 DCXX->getDescribedClassTemplate() &&
3403 DCXX->getDescribedClassTemplate()->getFriendObjectKind() !=
3413 return std::move(Err);
3423 return std::move(Err);
3425 }
else if (Importer.getToContext().getLangOpts().CPlusPlus)
3430 bool DependentFriend = IsFriendTemplate && IsDependentContext;
3437 Importer.findDeclsInToCtx(DC, SearchName);
3438 if (!FoundDecls.empty()) {
3445 for (
auto *FoundDecl : FoundDecls) {
3446 if (!FoundDecl->isInIdentifierNamespace(IDNS))
3450 if (
auto *
Typedef = dyn_cast<TypedefNameDecl>(
Found)) {
3451 if (
const auto *Tag =
Typedef->getUnderlyingType()->getAs<TagType>())
3452 Found = Tag->getDecl();
3455 if (
auto *FoundRecord = dyn_cast<RecordDecl>(
Found)) {
3477 Importer.MapImported(D, FoundDef);
3478 if (
const auto *DCXX = dyn_cast<CXXRecordDecl>(D)) {
3479 auto *FoundCXX = dyn_cast<CXXRecordDecl>(FoundDef);
3480 assert(FoundCXX &&
"Record type mismatch");
3482 if (!Importer.isMinimalImport())
3486 return std::move(Err);
3493 ConflictingDecls.push_back(FoundDecl);
3497 if (!ConflictingDecls.empty() && SearchName) {
3499 SearchName, DC, IDNS, ConflictingDecls.data(),
3500 ConflictingDecls.size());
3502 Name = NameOrErr.get();
3504 return NameOrErr.takeError();
3510 return BeginLocOrErr.takeError();
3515 if (
auto *DCXX = dyn_cast<CXXRecordDecl>(D)) {
3516 if (DCXX->isLambda()) {
3517 auto TInfoOrErr =
import(DCXX->getLambdaTypeInfo());
3519 return TInfoOrErr.takeError();
3520 if (GetImportedOrCreateSpecialDecl(
3522 DC, *TInfoOrErr, Loc, DCXX->getLambdaDependencyKind(),
3523 DCXX->isGenericLambda(), DCXX->getLambdaCaptureDefault()))
3525 Decl *ContextDecl = DCXX->getLambdaContextDecl();
3528 return CDeclOrErr.takeError();
3529 if (ContextDecl !=
nullptr) {
3534 if (GetImportedOrCreateDecl(D2CXX, D, Importer.getToContext(),
3537 cast_or_null<CXXRecordDecl>(PrevDecl)))
3544 addDeclToContexts(D, D2);
3547 DCXX->getDescribedClassTemplate()) {
3550 return std::move(Err);
3553 DCXX->getMemberSpecializationInfo()) {
3555 MemberInfo->getTemplateSpecializationKind();
3561 return ToInstOrErr.takeError();
3564 import(MemberInfo->getPointOfInstantiation()))
3568 return POIOrErr.takeError();
3572 if (GetImportedOrCreateDecl(D2, D, Importer.getToContext(),
3577 addDeclToContexts(D, D2);
3583 return BraceRangeOrErr.takeError();
3587 return QualifierLocOrErr.takeError();
3594 return std::move(Err);
3606 return std::move(Err);
3615 auto FoundDecls = Importer.findDeclsInToCtx(DC, Name);
3616 for (
auto *FoundDecl : FoundDecls) {
3617 if (!FoundDecl->isInIdentifierNamespace(IDNS))
3620 if (
auto *FoundEnumConstant = dyn_cast<EnumConstantDecl>(FoundDecl)) {
3622 return Importer.MapImported(D, FoundEnumConstant);
3623 ConflictingDecls.push_back(FoundDecl);
3627 if (!ConflictingDecls.empty()) {
3629 Name, DC, IDNS, ConflictingDecls.data(), ConflictingDecls.size());
3631 Name = NameOrErr.get();
3633 return NameOrErr.takeError();
3639 return TypeOrErr.takeError();
3643 return InitOrErr.takeError();
3646 if (GetImportedOrCreateDecl(
3647 ToEnumerator, D, Importer.getToContext(),
cast<EnumDecl>(DC), Loc,
3649 return ToEnumerator;
3654 return ToEnumerator;
3657template <
typename DeclTy>
3661 FromD->getTemplateParameterLists();
3662 if (FromTPLs.empty())
3663 return Error::success();
3665 for (
unsigned int I = 0; I < FromTPLs.size(); ++I)
3667 ToTPLists[I] = *ToTPListOrErr;
3669 return ToTPListOrErr.takeError();
3670 ToD->setTemplateParameterListsInfo(Importer.ToContext, ToTPLists);
3671 return Error::success();
3679 return Error::success();
3685 return Error::success();
3691 ToFD->setInstantiationOfMemberFunction(*InstFDOrErr, TSK);
3693 return InstFDOrErr.takeError();
3699 return POIOrErr.takeError();
3701 return Error::success();
3705 auto FunctionAndArgsOrErr =
3707 if (!FunctionAndArgsOrErr)
3708 return FunctionAndArgsOrErr.takeError();
3711 Importer.getToContext(), std::get<1>(*FunctionAndArgsOrErr));
3715 const auto *FromTAArgsAsWritten = FTSInfo->TemplateArgumentsAsWritten;
3716 if (FromTAArgsAsWritten)
3718 *FromTAArgsAsWritten, ToTAInfo))
3721 ExpectedSLoc POIOrErr =
import(FTSInfo->getPointOfInstantiation());
3723 return POIOrErr.takeError();
3729 ToFD->setFunctionTemplateSpecialization(
3730 std::get<0>(*FunctionAndArgsOrErr), ToTAList,
nullptr,
3731 TSK, FromTAArgsAsWritten ? &ToTAInfo :
nullptr, *POIOrErr);
3732 return Error::success();
3740 Candidates.
addDecl(*ToFTDOrErr);
3742 return ToFTDOrErr.takeError();
3747 const auto *FromTAArgsAsWritten = FromInfo->TemplateArgumentsAsWritten;
3748 if (FromTAArgsAsWritten)
3754 Importer.getToContext(), Candidates,
3755 FromTAArgsAsWritten ? &ToTAInfo :
nullptr);
3756 return Error::success();
3759 llvm_unreachable(
"All cases should be covered!");
3764 auto FunctionAndArgsOrErr =
3766 if (!FunctionAndArgsOrErr)
3767 return FunctionAndArgsOrErr.takeError();
3771 std::tie(
Template, ToTemplArgs) = *FunctionAndArgsOrErr;
3772 void *InsertPos =
nullptr;
3773 auto *FoundSpec =
Template->findSpecialization(ToTemplArgs, InsertPos);
3783 return ToBodyOrErr.takeError();
3785 return Error::success();
3792 ExplicitExpr = importChecked(Err, ESpec.
getExpr());
3799 auto RedeclIt = Redecls.begin();
3802 for (; RedeclIt != Redecls.end() && *RedeclIt != D; ++RedeclIt) {
3805 return ToRedeclOrErr.takeError();
3807 assert(*RedeclIt == D);
3815 return std::move(Err);
3830 if (!FoundFunctionOrErr)
3831 return FoundFunctionOrErr.takeError();
3832 if (
FunctionDecl *FoundFunction = *FoundFunctionOrErr) {
3833 if (
Decl *Def = FindAndMapDefinition(D, FoundFunction))
3835 FoundByLookup = FoundFunction;
3843 auto FoundDecls = Importer.findDeclsInToCtx(DC, Name);
3844 for (
auto *FoundDecl : FoundDecls) {
3845 if (!FoundDecl->isInIdentifierNamespace(IDNS))
3848 if (
auto *FoundFunction = dyn_cast<FunctionDecl>(FoundDecl)) {
3853 if (
Decl *Def = FindAndMapDefinition(D, FoundFunction))
3855 FoundByLookup = FoundFunction;
3862 if (Importer.getToContext().getLangOpts().CPlusPlus)
3866 Importer.ToDiag(Loc, diag::warn_odr_function_type_inconsistent)
3867 << Name << D->
getType() << FoundFunction->getType();
3868 Importer.ToDiag(FoundFunction->getLocation(), diag::note_odr_value_here)
3869 << FoundFunction->getType();
3870 ConflictingDecls.push_back(FoundDecl);
3874 if (!ConflictingDecls.empty()) {
3876 Name, DC, IDNS, ConflictingDecls.data(), ConflictingDecls.size());
3878 Name = NameOrErr.get();
3880 return NameOrErr.takeError();
3890 if (FoundByLookup) {
3900 "Templated function mapped to non-templated?");
3901 Importer.MapImported(DescribedD,
3904 return Importer.MapImported(D, FoundByLookup);
3916 return std::move(Err);
3927 bool UsedDifferentProtoType =
false;
3929 QualType FromReturnTy = FromFPT->getReturnType();
3937 if (Importer.FindFunctionDeclImportCycle.isCycle(D)) {
3938 FromReturnTy = Importer.getFromContext().VoidTy;
3939 UsedDifferentProtoType =
true;
3950 FromEPI = DefaultEPI;
3951 UsedDifferentProtoType =
true;
3953 FromTy = Importer.getFromContext().getFunctionType(
3954 FromReturnTy, FromFPT->getParamTypes(), FromEPI);
3955 FromTSI = Importer.getFromContext().getTrivialTypeSourceInfo(
3959 Error Err = Error::success();
3960 auto ScopedReturnTypeDeclCycleDetector =
3961 Importer.FindFunctionDeclImportCycle.makeScopedCycleDetection(D);
3972 return std::move(Err);
3978 Parameters.push_back(*ToPOrErr);
3980 return ToPOrErr.takeError();
3985 if (
auto *FromConstructor = dyn_cast<CXXConstructorDecl>(D)) {
3987 importExplicitSpecifier(Err, FromConstructor->getExplicitSpecifier());
3989 return std::move(Err);
3991 if (FromConstructor->isInheritingConstructor()) {
3993 import(FromConstructor->getInheritedConstructor());
3994 if (!ImportedInheritedCtor)
3995 return ImportedInheritedCtor.takeError();
3996 ToInheritedConstructor = *ImportedInheritedCtor;
3998 if (GetImportedOrCreateDecl<CXXConstructorDecl>(
4000 ToInnerLocStart, NameInfo,
T, TInfo, ESpec, D->
UsesFPIntrin(),
4002 ToInheritedConstructor, TrailingRequiresClause))
4006 Error Err = Error::success();
4008 Err,
const_cast<FunctionDecl *
>(FromDtor->getOperatorDelete()));
4009 auto ToThisArg =
importChecked(Err, FromDtor->getOperatorDeleteThisArg());
4011 return std::move(Err);
4013 if (GetImportedOrCreateDecl<CXXDestructorDecl>(
4017 TrailingRequiresClause))
4024 dyn_cast<CXXConversionDecl>(D)) {
4026 importExplicitSpecifier(Err, FromConversion->getExplicitSpecifier());
4028 return std::move(Err);
4029 if (GetImportedOrCreateDecl<CXXConversionDecl>(
4035 }
else if (
auto *
Method = dyn_cast<CXXMethodDecl>(D)) {
4036 if (GetImportedOrCreateDecl<CXXMethodDecl>(
4038 ToInnerLocStart, NameInfo,
T, TInfo,
Method->getStorageClass(),
4042 }
else if (
auto *Guide = dyn_cast<CXXDeductionGuideDecl>(D)) {
4044 importExplicitSpecifier(Err, Guide->getExplicitSpecifier());
4050 return std::move(Err);
4051 if (GetImportedOrCreateDecl<CXXDeductionGuideDecl>(
4052 ToFunction, D, Importer.getToContext(), DC, ToInnerLocStart, ESpec,
4053 NameInfo,
T, TInfo, ToEndLoc, Ctor,
4054 Guide->getDeductionCandidateKind(), TrailingRequiresClause,
4058 if (GetImportedOrCreateDecl(
4059 ToFunction, D, Importer.getToContext(), DC, ToInnerLocStart,
4067 if (FoundByLookup) {
4117 Importer.getToContext(), Lookups, Info->getFPFeatures(), Msg));
4121 for (
auto *Param : Parameters) {
4122 Param->setOwningFunction(ToFunction);
4125 LT->update(Param, Importer.getToContext().getTranslationUnitDecl());
4127 ToFunction->setParams(Parameters);
4134 for (
unsigned I = 0, N = Parameters.size(); I != N; ++I)
4135 ProtoLoc.setParam(I, Parameters[I]);
4141 auto ToFTOrErr =
import(FromFT);
4143 return ToFTOrErr.takeError();
4147 if (
auto *FromConstructor = dyn_cast<CXXConstructorDecl>(D)) {
4148 if (
unsigned NumInitializers = FromConstructor->getNumCtorInitializers()) {
4152 FromConstructor->inits(), CtorInitializers))
4153 return std::move(Err);
4156 llvm::copy(CtorInitializers, Memory);
4158 ToCtor->setCtorInitializers(Memory);
4159 ToCtor->setNumCtorInitializers(NumInitializers);
4165 return std::move(Err);
4167 if (
auto *FromCXXMethod = dyn_cast<CXXMethodDecl>(D))
4170 return std::move(Err);
4176 return std::move(Err);
4180 if (UsedDifferentProtoType) {
4182 ToFunction->
setType(*TyOrErr);
4184 return TyOrErr.takeError();
4188 return TSIOrErr.takeError();
4193 addDeclToContexts(D, ToFunction);
4196 for (++RedeclIt; RedeclIt != Redecls.end(); ++RedeclIt) {
4199 return ToRedeclOrErr.takeError();
4233 return std::move(Err);
4238 auto FoundDecls = Importer.findDeclsInToCtx(DC, Name);
4239 for (
auto *FoundDecl : FoundDecls) {
4240 if (
FieldDecl *FoundField = dyn_cast<FieldDecl>(FoundDecl)) {
4247 if (Importer.IsStructurallyEquivalent(D->
getType(),
4248 FoundField->getType())) {
4249 Importer.MapImported(D, FoundField);
4257 if (
ExpectedExpr ToInitializerOrErr =
import(FromInitializer)) {
4260 assert(FoundField->hasInClassInitializer() &&
4261 "Field should have an in-class initializer if it has an "
4262 "expression for it.");
4263 if (!FoundField->getInClassInitializer())
4264 FoundField->setInClassInitializer(*ToInitializerOrErr);
4266 return ToInitializerOrErr.takeError();
4273 Importer.ToDiag(Loc, diag::warn_odr_field_type_inconsistent)
4274 << Name << D->
getType() << FoundField->getType();
4275 Importer.ToDiag(FoundField->getLocation(), diag::note_odr_value_here)
4276 << FoundField->getType();
4282 Error Err = Error::success();
4288 return std::move(Err);
4289 const Type *ToCapturedVLAType =
nullptr;
4290 if (
Error Err = Importer.importInto(
4292 return std::move(Err);
4295 if (GetImportedOrCreateDecl(ToField, D, Importer.getToContext(), DC,
4297 ToType, ToTInfo, ToBitWidth, D->
isMutable(),
4304 if (ToCapturedVLAType)
4311 return std::move(Err);
4312 if (ToInitializer) {
4314 if (AlreadyImported)
4315 assert(ToInitializer == AlreadyImported &&
4316 "Duplicate import of in-class initializer.");
4331 return std::move(Err);
4336 auto FoundDecls = Importer.findDeclsInToCtx(DC, Name);
4337 for (
unsigned I = 0, N = FoundDecls.size(); I != N; ++I) {
4338 if (
auto *FoundField = dyn_cast<IndirectFieldDecl>(FoundDecls[I])) {
4345 if (Importer.IsStructurallyEquivalent(D->
getType(),
4346 FoundField->getType(),
4348 Importer.MapImported(D, FoundField);
4353 if (!Name && I < N-1)
4357 Importer.ToDiag(Loc, diag::warn_odr_field_type_inconsistent)
4358 << Name << D->
getType() << FoundField->getType();
4359 Importer.ToDiag(FoundField->getLocation(), diag::note_odr_value_here)
4360 << FoundField->getType();
4367 auto TypeOrErr =
import(D->
getType());
4369 return TypeOrErr.takeError();
4375 for (
auto *PI : D->
chain())
4377 NamedChain[i++] = *ToD;
4379 return ToD.takeError();
4383 if (GetImportedOrCreateDecl(ToIndirectField, D, Importer.getToContext(), DC,
4386 return ToIndirectField;
4391 return ToIndirectField;
4418 unsigned int FriendCount = 0;
4422 for (
FriendDecl *FoundFriend : RD->friends()) {
4423 if (FoundFriend == FD) {
4424 FriendPosition = FriendCount;
4431 assert(FriendPosition &&
"Friend decl not found in own parent.");
4432 return {FriendCount, *FriendPosition};
4435Expected<FriendDecl::FriendUnion>
4436ASTNodeImporter::importFriendUnion(FriendDecl *D) {
4438 NamedDecl *ToFriendD;
4440 return std::move(Err);
4453 return TSIOrErr.takeError();
4460 return std::move(Err);
4467 for (
FriendDecl *ImportedFriend : RD->friends())
4469 ImportedEquivalentFriends.push_back(ImportedFriend);
4474 assert(ImportedEquivalentFriends.size() <= CountAndPosition.
TotalCount &&
4475 "Class with non-matching friends is imported, ODR check wrong?");
4476 if (ImportedEquivalentFriends.size() == CountAndPosition.
TotalCount)
4477 return Importer.MapImported(
4478 D, ImportedEquivalentFriends[CountAndPosition.
IndexOfDecl]);
4482 auto ToFUOrErr = importFriendUnion(D);
4484 return ToFUOrErr.takeError();
4489 return LocationOrErr.takeError();
4491 if (!FriendLocOrErr)
4492 return FriendLocOrErr.takeError();
4494 if (!EllipsisLocOrErr)
4495 return EllipsisLocOrErr.takeError();
4498 if (GetImportedOrCreateDecl(FrD, D, Importer.getToContext(), DC,
4499 *LocationOrErr, ToFU, *FriendLocOrErr,
4512 return std::move(Err);
4516 for (
FriendDecl *ImportedFriend : RD->friends()) {
4517 auto *ImportedFriendTemplate = dyn_cast<FriendTemplateDecl>(ImportedFriend);
4518 if (ImportedFriendTemplate &&
4520 ImportedEquivalentFriends.push_back(ImportedFriendTemplate);
4525 assert(ImportedEquivalentFriends.size() <= CountAndPosition.
TotalCount &&
4526 "Class with non-matching friends is imported, ODR check wrong?");
4528 if (ImportedEquivalentFriends.size() == CountAndPosition.
TotalCount)
4529 return Importer.MapImported(
4530 D, ImportedEquivalentFriends[CountAndPosition.
IndexOfDecl]);
4535 auto ToFUOrErr = importFriendUnion(D);
4537 return ToFUOrErr.takeError();
4543 if (!FromTemplate.
isNull()) {
4545 return std::move(Err);
4551 return std::move(Err);
4555 return LocationOrErr.takeError();
4558 if (!FriendLocOrErr)
4559 return FriendLocOrErr.takeError();
4562 if (!EllipsisLocOrErr)
4563 return EllipsisLocOrErr.takeError();
4566 if (GetImportedOrCreateDecl(FTD, D, Importer.getToContext(), DC,
4567 *LocationOrErr, ToFU, *FriendLocOrErr, ToTPLs,
4568 *EllipsisLocOrErr, ToTemplate))
4584 return std::move(Err);
4589 auto FoundDecls = Importer.findDeclsInToCtx(DC, Name);
4590 for (
auto *FoundDecl : FoundDecls) {
4591 if (
ObjCIvarDecl *FoundIvar = dyn_cast<ObjCIvarDecl>(FoundDecl)) {
4592 if (Importer.IsStructurallyEquivalent(D->
getType(),
4593 FoundIvar->getType())) {
4594 Importer.MapImported(D, FoundIvar);
4598 Importer.ToDiag(Loc, diag::warn_odr_ivar_type_inconsistent)
4599 << Name << D->
getType() << FoundIvar->getType();
4600 Importer.ToDiag(FoundIvar->getLocation(), diag::note_odr_value_here)
4601 << FoundIvar->getType();
4607 Error Err = Error::success();
4613 return std::move(Err);
4616 if (GetImportedOrCreateDecl(
4619 ToType, ToTypeSourceInfo,
4631 auto RedeclIt = Redecls.begin();
4634 for (; RedeclIt != Redecls.end() && *RedeclIt != D; ++RedeclIt) {
4637 return RedeclOrErr.takeError();
4639 assert(*RedeclIt == D);
4647 return std::move(Err);
4653 VarDecl *FoundByLookup =
nullptr;
4657 auto FoundDecls = Importer.findDeclsInToCtx(DC, Name);
4658 for (
auto *FoundDecl : FoundDecls) {
4659 if (!FoundDecl->isInIdentifierNamespace(IDNS))
4662 if (
auto *FoundVar = dyn_cast<VarDecl>(FoundDecl)) {
4665 if (Importer.IsStructurallyEquivalent(D->
getType(),
4666 FoundVar->getType())) {
4674 return Importer.MapImported(D, FoundDef);
4678 const VarDecl *FoundDInit =
nullptr;
4679 if (D->
getInit() && FoundVar->getAnyInitializer(FoundDInit))
4681 return Importer.MapImported(D,
const_cast<VarDecl*
>(FoundDInit));
4683 FoundByLookup = FoundVar;
4688 = Importer.getToContext().getAsArrayType(FoundVar->getType());
4690 = Importer.getToContext().getAsArrayType(D->
getType());
4691 if (FoundArray && TArray) {
4695 if (
auto TyOrErr =
import(D->
getType()))
4696 FoundVar->setType(*TyOrErr);
4698 return TyOrErr.takeError();
4700 FoundByLookup = FoundVar;
4704 FoundByLookup = FoundVar;
4709 Importer.ToDiag(Loc, diag::warn_odr_variable_type_inconsistent)
4710 << Name << D->
getType() << FoundVar->getType();
4711 Importer.ToDiag(FoundVar->getLocation(), diag::note_odr_value_here)
4712 << FoundVar->getType();
4713 ConflictingDecls.push_back(FoundDecl);
4717 if (!ConflictingDecls.empty()) {
4719 Name, DC, IDNS, ConflictingDecls.data(), ConflictingDecls.size());
4721 Name = NameOrErr.get();
4723 return NameOrErr.takeError();
4727 Error Err = Error::success();
4733 return std::move(Err);
4736 if (
auto *FromDecomp = dyn_cast<DecompositionDecl>(D)) {
4740 return std::move(Err);
4742 if (GetImportedOrCreateDecl(
4743 ToDecomp, FromDecomp, Importer.getToContext(), DC, ToInnerLocStart,
4744 Loc, FromDecomp->getRSquareLoc(), ToType, ToTypeSourceInfo,
4750 if (GetImportedOrCreateDecl(ToVar, D, Importer.getToContext(), DC,
4751 ToInnerLocStart, Loc,
4766 if (FoundByLookup) {
4775 return ToVTOrErr.takeError();
4782 return ToInstOrErr.takeError();
4783 if (
ExpectedSLoc POIOrErr =
import(MSI->getPointOfInstantiation()))
4786 return POIOrErr.takeError();
4790 return std::move(Err);
4795 addDeclToContexts(D, ToVar);
4798 for (++RedeclIt; RedeclIt != Redecls.end(); ++RedeclIt) {
4801 return RedeclOrErr.takeError();
4810 DeclContext *DC = Importer.getToContext().getTranslationUnitDecl();
4812 Error Err = Error::success();
4817 return std::move(Err);
4821 if (GetImportedOrCreateDecl(ToParm, D, Importer.getToContext(), DC,
4822 ToLocation, ToDeclName.getAsIdentifierInfo(),
4834 return LocOrErr.takeError();
4843 return ToDefArgOrErr.takeError();
4847 if (
auto ToDefArgOrErr =
import(FromParam->
getDefaultArg()))
4850 return ToDefArgOrErr.takeError();
4853 return Error::success();
4858 Error Err = Error::success();
4863 return std::move(Err);
4870 DeclContext *DC = Importer.getToContext().getTranslationUnitDecl();
4872 Error Err = Error::success();
4879 return std::move(Err);
4882 if (GetImportedOrCreateDecl(ToParm, D, Importer.getToContext(), DC,
4883 ToInnerLocStart, ToLocation,
4884 ToDeclName.getAsIdentifierInfo(), ToType,
4893 return std::move(Err);
4913 return std::move(Err);
4917 auto FoundDecls = Importer.findDeclsInToCtx(DC, Name);
4918 for (
auto *FoundDecl : FoundDecls) {
4919 if (
auto *FoundMethod = dyn_cast<ObjCMethodDecl>(FoundDecl)) {
4925 FoundMethod->getReturnType())) {
4926 Importer.ToDiag(Loc, diag::warn_odr_objc_method_result_type_inconsistent)
4928 << FoundMethod->getReturnType();
4929 Importer.ToDiag(FoundMethod->getLocation(),
4930 diag::note_odr_objc_method_here)
4937 if (D->
param_size() != FoundMethod->param_size()) {
4938 Importer.ToDiag(Loc, diag::warn_odr_objc_method_num_params_inconsistent)
4940 << D->
param_size() << FoundMethod->param_size();
4941 Importer.ToDiag(FoundMethod->getLocation(),
4942 diag::note_odr_objc_method_here)
4950 PEnd = D->
param_end(), FoundP = FoundMethod->param_begin();
4951 P != PEnd; ++
P, ++FoundP) {
4952 if (!Importer.IsStructurallyEquivalent((*P)->getType(),
4953 (*FoundP)->getType())) {
4954 Importer.FromDiag((*P)->getLocation(),
4955 diag::warn_odr_objc_method_param_type_inconsistent)
4957 << (*P)->getType() << (*FoundP)->getType();
4958 Importer.ToDiag((*FoundP)->getLocation(), diag::note_odr_value_here)
4959 << (*FoundP)->getType();
4967 if (D->
isVariadic() != FoundMethod->isVariadic()) {
4968 Importer.ToDiag(Loc, diag::warn_odr_objc_method_variadic_inconsistent)
4970 Importer.ToDiag(FoundMethod->getLocation(),
4971 diag::note_odr_objc_method_here)
4978 return Importer.MapImported(D, FoundMethod);
4982 Error Err = Error::success();
4985 auto ToReturnTypeSourceInfo =
4988 return std::move(Err);
4991 if (GetImportedOrCreateDecl(
4992 ToMethod, D, Importer.getToContext(), Loc, ToEndLoc,
5006 ToParams.push_back(*ToPOrErr);
5008 return ToPOrErr.takeError();
5012 for (
auto *ToParam : ToParams) {
5013 ToParam->setOwningFunction(ToMethod);
5021 return std::move(Err);
5023 ToMethod->
setMethodParams(Importer.getToContext(), ToParams, ToSelLocs);
5045 return std::move(Err);
5049 Error Err = Error::success();
5055 return std::move(Err);
5058 if (GetImportedOrCreateDecl(
5062 ToColonLoc, ToTypeSourceInfo))
5068 return std::move(Err);
5069 Result->setTypeForDecl(ToTypeForDecl);
5070 Result->setLexicalDeclContext(LexicalDC);
5081 return std::move(Err);
5087 return std::move(Err);
5095 Error Err = Error::success();
5101 return std::move(Err);
5103 if (GetImportedOrCreateDecl(ToCategory, D, Importer.getToContext(), DC,
5119 return PListOrErr.takeError();
5128 FromProto != FromProtoEnd;
5129 ++FromProto, ++FromProtoLoc) {
5131 Protocols.push_back(*ToProtoOrErr);
5133 return ToProtoOrErr.takeError();
5135 if (
ExpectedSLoc ToProtoLocOrErr =
import(*FromProtoLoc))
5136 ProtocolLocs.push_back(*ToProtoLocOrErr);
5138 return ToProtoLocOrErr.takeError();
5143 ProtocolLocs.data(), Importer.getToContext());
5146 Importer.MapImported(D, ToCategory);
5151 return std::move(Err);
5159 return ToImplOrErr.takeError();
5171 return Error::success();
5184 FromProto != FromProtoEnd;
5185 ++FromProto, ++FromProtoLoc) {
5187 Protocols.push_back(*ToProtoOrErr);
5189 return ToProtoOrErr.takeError();
5191 if (
ExpectedSLoc ToProtoLocOrErr =
import(*FromProtoLoc))
5192 ProtocolLocs.push_back(*ToProtoLocOrErr);
5194 return ToProtoLocOrErr.takeError();
5200 ProtocolLocs.data(), Importer.getToContext());
5207 return Error::success();
5217 return Importer.MapImported(D, *ImportedDefOrErr);
5219 return ImportedDefOrErr.takeError();
5228 return std::move(Err);
5233 auto FoundDecls = Importer.findDeclsInToCtx(DC, Name);
5234 for (
auto *FoundDecl : FoundDecls) {
5238 if ((MergeWithProtocol = dyn_cast<ObjCProtocolDecl>(FoundDecl)))
5245 if (!ToAtBeginLocOrErr)
5246 return ToAtBeginLocOrErr.takeError();
5248 if (GetImportedOrCreateDecl(ToProto, D, Importer.getToContext(), DC,
5257 Importer.MapImported(D, ToProto);
5261 return std::move(Err);
5269 return std::move(Err);
5272 if (!ExternLocOrErr)
5273 return ExternLocOrErr.takeError();
5277 return LangLocOrErr.takeError();
5282 if (GetImportedOrCreateDecl(ToLinkageSpec, D, Importer.getToContext(), DC,
5283 *ExternLocOrErr, *LangLocOrErr,
5285 return ToLinkageSpec;
5289 if (!RBraceLocOrErr)
5290 return RBraceLocOrErr.takeError();
5297 return ToLinkageSpec;
5308 return ToShadowOrErr.takeError();
5319 return std::move(Err);
5323 Error Err = Error::success();
5328 return std::move(Err);
5332 return std::move(Err);
5335 if (GetImportedOrCreateDecl(ToUsing, D, Importer.getToContext(), DC,
5336 ToUsingLoc, ToQualifierLoc, NameInfo,
5344 Importer.getFromContext().getInstantiatedFromUsingDecl(D)) {
5346 Importer.getToContext().setInstantiatedFromUsingDecl(
5347 ToUsing, *ToPatternOrErr);
5349 return ToPatternOrErr.takeError();
5361 return std::move(Err);
5365 Error Err = Error::success();
5371 return std::move(Err);
5374 if (GetImportedOrCreateDecl(ToUsingEnum, D, Importer.getToContext(), DC,
5375 ToUsingLoc, ToEnumLoc, ToNameLoc, ToEnumType))
5382 Importer.getFromContext().getInstantiatedFromUsingEnumDecl(D)) {
5384 Importer.getToContext().setInstantiatedFromUsingEnumDecl(ToUsingEnum,
5387 return ToPatternOrErr.takeError();
5399 return std::move(Err);
5404 if (!ToIntroducerOrErr)
5405 return ToIntroducerOrErr.takeError();
5409 return ToTargetOrErr.takeError();
5412 if (
auto *FromConstructorUsingShadow =
5413 dyn_cast<ConstructorUsingShadowDecl>(D)) {
5414 Error Err = Error::success();
5416 Err, FromConstructorUsingShadow->getNominatedBaseClassShadowDecl());
5418 return std::move(Err);
5424 if (GetImportedOrCreateDecl<ConstructorUsingShadowDecl>(
5425 ToShadow, D, Importer.getToContext(), DC, Loc,
5427 Nominated ? Nominated : *ToTargetOrErr,
5428 FromConstructorUsingShadow->constructsVirtualBase()))
5431 if (GetImportedOrCreateDecl(ToShadow, D, Importer.getToContext(), DC, Loc,
5432 Name, *ToIntroducerOrErr, *ToTargetOrErr))
5440 Importer.getFromContext().getInstantiatedFromUsingShadowDecl(D)) {
5442 Importer.getToContext().setInstantiatedFromUsingShadowDecl(
5443 ToShadow, *ToPatternOrErr);
5447 return ToPatternOrErr.takeError();
5461 return std::move(Err);
5466 if (!ToComAncestorOrErr)
5467 return ToComAncestorOrErr.takeError();
5469 Error Err = Error::success();
5472 auto ToNamespaceKeyLocation =
5477 return std::move(Err);
5480 if (GetImportedOrCreateDecl(ToUsingDir, D, Importer.getToContext(), DC,
5482 ToNamespaceKeyLocation,
5485 ToNominatedNamespace, *ToComAncestorOrErr))
5500 return std::move(Err);
5504 auto ToInstantiatedFromUsingOrErr =
5506 if (!ToInstantiatedFromUsingOrErr)
5507 return ToInstantiatedFromUsingOrErr.takeError();
5510 return std::move(Err);
5513 if (GetImportedOrCreateDecl(ToUsingPack, D, Importer.getToContext(), DC,
5518 addDeclToContexts(D, ToUsingPack);
5530 return std::move(Err);
5534 Error Err = Error::success();
5540 return std::move(Err);
5544 return std::move(Err);
5547 if (GetImportedOrCreateDecl(ToUsingValue, D, Importer.getToContext(), DC,
5548 ToUsingLoc, ToQualifierLoc, NameInfo,
5550 return ToUsingValue;
5556 return ToUsingValue;
5566 return std::move(Err);
5570 Error Err = Error::success();
5576 return std::move(Err);
5579 if (GetImportedOrCreateDecl(ToUsing, D, Importer.getToContext(), DC,
5580 ToUsingLoc, ToTypenameLoc,
5581 ToQualifierLoc, Loc, Name, ToEllipsisLoc))
5592 Decl* ToD =
nullptr;
5594#define BuiltinTemplate(BTName) \
5595 case BuiltinTemplateKind::BTK##BTName: \
5596 ToD = Importer.getToContext().get##BTName##Decl(); \
5598#include "clang/Basic/BuiltinTemplates.inc"
5600 assert(ToD &&
"BuiltinTemplateDecl of unsupported kind!");
5601 Importer.MapImported(D, ToD);
5611 if (
auto FromSuperOrErr =
import(FromSuper))
5612 FromSuper = *FromSuperOrErr;
5614 return FromSuperOrErr.takeError();
5618 if ((
bool)FromSuper != (
bool)ToSuper ||
5621 diag::warn_odr_objc_superclass_inconsistent)
5628 diag::note_odr_objc_missing_superclass);
5631 diag::note_odr_objc_superclass)
5635 diag::note_odr_objc_missing_superclass);
5641 return Error::success();
5652 return SuperTInfoOrErr.takeError();
5663 FromProto != FromProtoEnd;
5664 ++FromProto, ++FromProtoLoc) {
5666 Protocols.push_back(*ToProtoOrErr);
5668 return ToProtoOrErr.takeError();
5670 if (
ExpectedSLoc ToProtoLocOrErr =
import(*FromProtoLoc))
5671 ProtocolLocs.push_back(*ToProtoLocOrErr);
5673 return ToProtoLocOrErr.takeError();
5679 ProtocolLocs.data(), Importer.getToContext());
5684 auto ToCatOrErr =
import(Cat);
5686 return ToCatOrErr.takeError();
5695 return ToImplOrErr.takeError();
5702 return Error::success();
5711 for (
auto *fromTypeParam : *list) {
5712 if (
auto toTypeParamOrErr =
import(fromTypeParam))
5713 toTypeParams.push_back(*toTypeParamOrErr);
5715 return toTypeParamOrErr.takeError();
5719 if (!LAngleLocOrErr)
5720 return LAngleLocOrErr.takeError();
5723 if (!RAngleLocOrErr)
5724 return RAngleLocOrErr.takeError();
5739 return Importer.MapImported(D, *ImportedDefOrErr);
5741 return ImportedDefOrErr.takeError();
5750 return std::move(Err);
5756 auto FoundDecls = Importer.findDeclsInToCtx(DC, Name);
5757 for (
auto *FoundDecl : FoundDecls) {
5761 if ((MergeWithIface = dyn_cast<ObjCInterfaceDecl>(FoundDecl)))
5769 if (!AtBeginLocOrErr)
5770 return AtBeginLocOrErr.takeError();
5772 if (GetImportedOrCreateDecl(
5773 ToIface, D, Importer.getToContext(), DC,
5781 Importer.MapImported(D, ToIface);
5784 if (
auto ToPListOrErr =
5788 return ToPListOrErr.takeError();
5792 return std::move(Err);
5801 return std::move(Err);
5807 return std::move(Err);
5809 Error Err = Error::success();
5814 return std::move(Err);
5816 if (GetImportedOrCreateDecl(
5817 ToImpl, D, Importer.getToContext(), DC,
5818 Importer.Import(D->
getIdentifier()), Category->getClassInterface(),
5819 ToLocation, ToAtStartLoc, ToCategoryNameLoc))
5824 Category->setImplementation(ToImpl);
5827 Importer.MapImported(D, ToImpl);
5829 return std::move(Err);
5839 return std::move(Err);
5844 return std::move(Err);
5852 return std::move(Err);
5854 Error Err = Error::success();
5861 return std::move(Err);
5863 if (GetImportedOrCreateDecl(Impl, D, Importer.getToContext(),
5872 Impl->setLexicalDeclContext(LexicalDC);
5886 Importer.ToDiag(Impl->getLocation(),
5887 diag::warn_odr_objc_superclass_inconsistent)
5891 if (Impl->getSuperClass())
5892 Importer.ToDiag(Impl->getLocation(),
5893 diag::note_odr_objc_superclass)
5894 << Impl->getSuperClass()->getDeclName();
5896 Importer.ToDiag(Impl->getLocation(),
5897 diag::note_odr_objc_missing_superclass);
5900 diag::note_odr_objc_superclass)
5904 diag::note_odr_objc_missing_superclass);
5912 return std::move(Err);
5924 return std::move(Err);
5929 auto FoundDecls = Importer.findDeclsInToCtx(DC, Name);
5930 for (
auto *FoundDecl : FoundDecls) {
5931 if (
auto *FoundProp = dyn_cast<ObjCPropertyDecl>(FoundDecl)) {
5938 if (!Importer.IsStructurallyEquivalent(D->
getType(),
5939 FoundProp->getType())) {
5940 Importer.ToDiag(Loc, diag::warn_odr_objc_property_type_inconsistent)
5941 << Name << D->
getType() << FoundProp->getType();
5942 Importer.ToDiag(FoundProp->getLocation(), diag::note_odr_value_here)
5943 << FoundProp->getType();
5951 Importer.MapImported(D, FoundProp);
5956 Error Err = Error::success();
5962 return std::move(Err);
5966 if (GetImportedOrCreateDecl(
5967 ToProperty, D, Importer.getToContext(), DC, Loc,
5969 ToLParenLoc, ToType,
5981 return std::move(Err);
6001 return std::move(Err);
6005 return std::move(Err);
6012 return std::move(Err);
6015 = InImpl->FindPropertyImplDecl(
Property->getIdentifier(),
6019 Error Err = Error::success();
6022 auto ToPropertyIvarDeclLoc =
6025 return std::move(Err);
6027 if (GetImportedOrCreateDecl(ToImpl, D, Importer.getToContext(), DC,
6031 ToPropertyIvarDeclLoc))
6041 diag::warn_odr_objc_property_impl_kind_inconsistent)
6046 diag::note_odr_objc_property_impl_kind)
6057 diag::warn_odr_objc_synthesize_ivar_inconsistent)
6062 diag::note_odr_objc_synthesize_ivar_here)
6069 Importer.MapImported(D, ToImpl);
6077 Error Err = Error::success();
6081 return std::move(Err);
6085 return Importer.ToContext.getTemplateParamObjectDecl(
T,
V);
6087 (void)GetImportedOrCreateSpecialDecl(ToD,
Create, D, ToType, ToValue);
6099 return BeginLocOrErr.takeError();
6103 return LocationOrErr.takeError();
6106 if (GetImportedOrCreateDecl(
6107 ToD, D, Importer.getToContext(),
6109 *BeginLocOrErr, *LocationOrErr,
6118 Error Err = Error::success();
6119 auto ToConceptRef =
importChecked(Err, TC->getConceptReference());
6120 auto ToIDC =
importChecked(Err, TC->getImmediatelyDeclaredConstraint());
6122 return std::move(Err);
6127 if (
Error Err = importTemplateParameterDefaultArgument(D, ToD))
6136 Error Err = Error::success();
6143 return std::move(Err);
6146 if (GetImportedOrCreateDecl(ToD, D, Importer.getToContext(),
6148 ToInnerLocStart, ToLocation, D->
getDepth(),
6150 ToDeclName.getAsIdentifierInfo(), ToType,
6154 Err = importTemplateParameterDefaultArgument(D, ToD);
6163 bool IsCanonical =
false;
6164 if (
auto *CanonD = Importer.getFromContext()
6165 .findCanonicalTemplateTemplateParmDeclInternal(D);
6172 return NameOrErr.takeError();
6177 return LocationOrErr.takeError();
6181 if (!TemplateParamsOrErr)
6182 return TemplateParamsOrErr.takeError();
6185 if (GetImportedOrCreateDecl(
6186 ToD, D, Importer.getToContext(),
6193 if (
Error Err = importTemplateParameterDefaultArgument(D, ToD))
6197 return Importer.getToContext()
6198 .insertCanonicalTemplateTemplateParmDeclInternal(ToD);
6206 assert(D->getTemplatedDecl() &&
"Should be called on templates only");
6207 auto *ToTemplatedDef = D->getTemplatedDecl()->getDefinition();
6208 if (!ToTemplatedDef)
6211 return cast_or_null<T>(TemplateWithDef);
6222 return std::move(Err);
6234 TD->getLexicalDeclContext()->isDependentContext();
6236 bool DependentFriend = IsDependentFriend(D);
6243 auto FoundDecls = Importer.findDeclsInToCtx(DC, Name);
6244 for (
auto *FoundDecl : FoundDecls) {
6249 auto *FoundTemplate = dyn_cast<ClassTemplateDecl>(FoundDecl);
6250 if (FoundTemplate) {
6255 bool IgnoreTemplateParmDepth =
6259 IgnoreTemplateParmDepth)) {
6260 if (DependentFriend || IsDependentFriend(FoundTemplate))
6266 return Importer.MapImported(D, TemplateWithDef);
6268 FoundByLookup = FoundTemplate;
6286 ConflictingDecls.push_back(FoundDecl);
6290 if (!ConflictingDecls.empty()) {
6293 ConflictingDecls.size());
6295 Name = NameOrErr.get();
6297 return NameOrErr.takeError();
6304 if (!TemplateParamsOrErr)
6305 return TemplateParamsOrErr.takeError();
6310 return std::move(Err);
6314 if (GetImportedOrCreateDecl(D2, D, Importer.getToContext(), DC, Loc, Name,
6315 *TemplateParamsOrErr, ToTemplated))
6323 addDeclToContexts(D, D2);
6324 updateLookupTableForTemplateParameters(**TemplateParamsOrErr);
6326 if (FoundByLookup) {
6340 "Found decl must have its templated decl set");
6343 if (ToTemplated != PrevTemplated)
6357 return std::move(Err);
6362 return std::move(Err);
6368 return std::move(Err);
6371 void *InsertPos =
nullptr;
6374 dyn_cast<ClassTemplatePartialSpecializationDecl>(D);
6382 return ToTPListOrErr.takeError();
6383 ToTPList = *ToTPListOrErr;
6394 Importer.MapImported(D, PrevDefinition);
6397 for (
auto *FromField : D->
fields()) {
6398 auto ToOrErr =
import(FromField);
6400 return ToOrErr.takeError();
6406 auto ToOrErr =
import(FromM);
6408 return ToOrErr.takeError();
6416 return PrevDefinition;
6427 return BeginLocOrErr.takeError();
6430 return IdLocOrErr.takeError();
6436 return std::move(Err);
6442 if (GetImportedOrCreateDecl<ClassTemplatePartialSpecializationDecl>(
6443 D2, D, Importer.getToContext(), D->
getTagKind(), DC, *BeginLocOrErr,
6444 *IdLocOrErr, ToTPList, ClassTemplate,
ArrayRef(TemplateArgs),
6446 cast_or_null<ClassTemplatePartialSpecializationDecl>(PrevDecl)))
6458 PartSpec2->setInstantiatedFromMember(*ToInstOrErr);
6460 return ToInstOrErr.takeError();
6462 updateLookupTableForTemplateParameters(*ToTPList);
6464 if (GetImportedOrCreateDecl(D2, D, Importer.getToContext(), D->
getTagKind(),
6465 DC, *BeginLocOrErr, *IdLocOrErr, ClassTemplate,
6490 return BraceRangeOrErr.takeError();
6493 return std::move(Err);
6499 return LocOrErr.takeError();
6507 return LocOrErr.takeError();
6512 return LocOrErr.takeError();
6518 return POIOrErr.takeError();
6524 if (
auto *CTD = dyn_cast<ClassTemplateDecl *>(
P)) {
6525 if (
auto CTDorErr =
import(CTD))
6529 auto CTPSDOrErr =
import(CTPSD);
6531 return CTPSDOrErr.takeError();
6534 for (
unsigned I = 0; I < DArgs.
size(); ++I) {
6536 if (
auto ArgOrErr =
import(DArg))
6537 D2ArgsVec[I] = *ArgOrErr;
6539 return ArgOrErr.takeError();
6549 return std::move(Err);
6561 return std::move(Err);
6567 "Variable templates cannot be declared at function scope");
6570 auto FoundDecls = Importer.findDeclsInToCtx(DC, Name);
6572 for (
auto *FoundDecl : FoundDecls) {
6576 if (
VarTemplateDecl *FoundTemplate = dyn_cast<VarTemplateDecl>(FoundDecl)) {
6586 assert(FoundTemplate->getDeclContext()->isRecord() &&
6587 "Member variable template imported as non-member, "
6588 "inconsistent imported AST?");
6590 return Importer.MapImported(D, FoundDef);
6592 return Importer.MapImported(D, FoundTemplate);
6595 return Importer.MapImported(D, FoundDef);
6597 FoundByLookup = FoundTemplate;
6600 ConflictingDecls.push_back(FoundDecl);
6604 if (!ConflictingDecls.empty()) {
6607 ConflictingDecls.size());
6609 Name = NameOrErr.get();
6611 return NameOrErr.takeError();
6620 return TypeOrErr.takeError();
6625 return std::move(Err);
6629 if (!TemplateParamsOrErr)
6630 return TemplateParamsOrErr.takeError();
6633 if (GetImportedOrCreateDecl(ToVarTD, D, Importer.getToContext(), DC, Loc,
6634 Name, *TemplateParamsOrErr, ToTemplated))
6642 if (DC != Importer.getToContext().getTranslationUnitDecl())
6643 updateLookupTableForTemplateParameters(**TemplateParamsOrErr);
6645 if (FoundByLookup) {
6649 auto *PrevTemplated =
6651 if (ToTemplated != PrevTemplated)
6666 auto RedeclIt = Redecls.begin();
6669 for (; RedeclIt != Redecls.end() && *RedeclIt != D; ++RedeclIt) {
6672 return RedeclOrErr.takeError();
6674 assert(*RedeclIt == D);
6678 return std::move(Err);
6683 return std::move(Err);
6688 return BeginLocOrErr.takeError();
6692 return IdLocOrErr.takeError();
6698 return std::move(Err);
6701 void *InsertPos =
nullptr;
6703 VarTemplate->findSpecialization(TemplateArgs, InsertPos);
6704 if (FoundSpecialization) {
6712 "Member variable template specialization imported as non-member, "
6713 "inconsistent imported AST?");
6715 return Importer.MapImported(D, FoundDef);
6717 return Importer.MapImported(D, FoundSpecialization);
6722 return Importer.MapImported(D, FoundDef);
6734 return std::move(Err);
6739 if (
auto *FromPartial = dyn_cast<PartVarSpecDecl>(D)) {
6740 auto ToTPListOrErr =
import(FromPartial->getTemplateParameters());
6742 return ToTPListOrErr.takeError();
6744 PartVarSpecDecl *ToPartial;
6745 if (GetImportedOrCreateDecl(ToPartial, D, Importer.getToContext(), DC,
6746 *BeginLocOrErr, *IdLocOrErr, *ToTPListOrErr,
6752 import(FromPartial->getInstantiatedFromMember()))
6753 ToPartial->setInstantiatedFromMember(*ToInstOrErr);
6755 return ToInstOrErr.takeError();
6757 if (FromPartial->isMemberSpecialization())
6758 ToPartial->setMemberSpecialization();
6766 if (GetImportedOrCreateDecl(D2, D, Importer.getToContext(), DC,
6775 if (!
VarTemplate->findSpecialization(TemplateArgs, InsertPos))
6780 return std::move(Err);
6785 return TInfoOrErr.takeError();
6792 return POIOrErr.takeError();
6803 return LocOrErr.takeError();
6811 return std::move(Err);
6813 if (FoundSpecialization)
6816 addDeclToContexts(D, D2);
6819 for (++RedeclIt; RedeclIt != Redecls.end(); ++RedeclIt) {
6822 return RedeclOrErr.takeError();
6836 return std::move(Err);
6848 auto FoundDecls = Importer.findDeclsInToCtx(DC, Name);
6849 for (
auto *FoundDecl : FoundDecls) {
6850 if (!FoundDecl->isInIdentifierNamespace(IDNS))
6853 if (
auto *FoundTemplate = dyn_cast<FunctionTemplateDecl>(FoundDecl)) {
6860 return Importer.MapImported(D, TemplateWithDef);
6862 FoundByLookup = FoundTemplate;
6872 return ParamsOrErr.takeError();
6877 return std::move(Err);
6894 OldParamDC.reserve(Params->
size());
6895 llvm::transform(*Params, std::back_inserter(OldParamDC),
6899 if (GetImportedOrCreateDecl(ToFunc, D, Importer.getToContext(), DC, Loc, Name,
6900 Params, TemplatedFD))
6914 ToFunc->setLexicalDeclContext(LexicalDC);
6915 addDeclToContexts(D, ToFunc);
6918 if (LT && !OldParamDC.empty()) {
6919 for (
unsigned int I = 0; I < OldParamDC.size(); ++I)
6920 LT->updateForced(Params->
getParam(I), OldParamDC[I]);
6923 if (FoundByLookup) {
6928 "Found decl must have its templated decl set");
6929 auto *PrevTemplated =
6931 if (TemplatedFD != PrevTemplated)
6948 return std::move(Err);
6951 if (GetImportedOrCreateDecl(To, D, Importer.getToContext(), DC, LocationOrErr,
6952 NameDeclOrErr, ToTemplateParameters,
6966 return std::move(Err);
6969 if (GetImportedOrCreateDecl(To, D, Importer.getToContext(), DC, RequiresLoc))
6982 return std::move(Err);
6986 return std::move(Err);
6989 if (GetImportedOrCreateDecl(To, D, Importer.getToContext(), DC, ToSL, ToArgs))
7001 Importer.FromDiag(S->
getBeginLoc(), diag::err_unsupported_ast_node)
7008 if (Importer.returnWithErrorInTest())
7015 Names.push_back(ToII);
7018 for (
unsigned I = 0, E = S->
getNumInputs(); I != E; I++) {
7022 Names.push_back(ToII);
7028 Clobbers.push_back(*ClobberOrErr);
7030 return ClobberOrErr.takeError();
7037 Constraints.push_back(*OutputOrErr);
7039 return OutputOrErr.takeError();
7042 for (
unsigned I = 0, E = S->
getNumInputs(); I != E; I++) {
7044 Constraints.push_back(*InputOrErr);
7046 return InputOrErr.takeError();
7052 return std::move(Err);
7056 return std::move(Err);
7060 return std::move(Err);
7064 return AsmLocOrErr.takeError();
7067 return AsmStrOrErr.takeError();
7069 if (!RParenLocOrErr)
7070 return RParenLocOrErr.takeError();
7072 return new (Importer.getToContext())
GCCAsmStmt(
7073 Importer.getToContext(),
7091 Error Err = Error::success();
7096 return std::move(Err);
7097 return new (Importer.getToContext())
DeclStmt(ToDG, ToBeginLoc, ToEndLoc);
7102 if (!ToSemiLocOrErr)
7103 return ToSemiLocOrErr.takeError();
7104 return new (Importer.getToContext())
NullStmt(
7112 return std::move(Err);
7115 if (!ToLBracLocOrErr)
7116 return ToLBracLocOrErr.takeError();
7119 if (!ToRBracLocOrErr)
7120 return ToRBracLocOrErr.takeError();
7125 *ToLBracLocOrErr, *ToRBracLocOrErr);
7130 Error Err = Error::success();
7138 return std::move(Err);
7141 ToCaseLoc, ToEllipsisLoc, ToColonLoc);
7142 ToStmt->setSubStmt(ToSubStmt);
7149 Error Err = Error::success();
7154 return std::move(Err);
7157 ToDefaultLoc, ToColonLoc, ToSubStmt);
7162 Error Err = Error::success();
7167 return std::move(Err);
7169 return new (Importer.getToContext())
LabelStmt(
7170 ToIdentLoc, ToLabelDecl, ToSubStmt);
7175 if (!ToAttrLocOrErr)
7176 return ToAttrLocOrErr.takeError();
7180 return std::move(Err);
7182 if (!ToSubStmtOrErr)
7183 return ToSubStmtOrErr.takeError();
7186 Importer.getToContext(), *ToAttrLocOrErr, ToAttrs, *ToSubStmtOrErr);
7191 Error Err = Error::success();
7202 return std::move(Err);
7205 ToInit, ToConditionVariable, ToCond, ToLParenLoc,
7206 ToRParenLoc, ToThen, ToElseLoc, ToElse);
7211 Error Err = Error::success();
7220 return std::move(Err);
7224 ToCond, ToLParenLoc, ToRParenLoc);
7225 ToStmt->setBody(ToBody);
7226 ToStmt->setSwitchLoc(ToSwitchLoc);
7234 return ToSCOrErr.takeError();
7235 if (LastChainedSwitchCase)
7238 ToStmt->setSwitchCaseList(*ToSCOrErr);
7239 LastChainedSwitchCase = *ToSCOrErr;
7247 Error Err = Error::success();
7255 return std::move(Err);
7258 ToBody, ToWhileLoc, ToLParenLoc, ToRParenLoc);
7263 Error Err = Error::success();
7270 return std::move(Err);
7272 return new (Importer.getToContext())
DoStmt(
7273 ToBody, ToCond, ToDoLoc, ToWhileLoc, ToRParenLoc);
7278 Error Err = Error::success();
7288 return std::move(Err);
7290 return new (Importer.getToContext())
ForStmt(
7291 Importer.getToContext(),
7292 ToInit, ToCond, ToConditionVariable, ToInc, ToBody, ToForLoc, ToLParenLoc,
7298 Error Err = Error::success();
7303 return std::move(Err);
7305 return new (Importer.getToContext())
GotoStmt(
7306 ToLabel, ToGotoLoc, ToLabelLoc);
7311 Error Err = Error::success();
7316 return std::move(Err);
7319 ToGotoLoc, ToStarLoc, ToTarget);
7322template <
typename StmtClass>
7325 Error Err = Error::success();
7326 auto ToLoc = NodeImporter.
importChecked(Err, S->getKwLoc());
7327 auto ToLabelLoc = S->hasLabelTarget()
7330 auto ToDecl = S->hasLabelTarget()
7334 return std::move(Err);
7335 return new (Importer.
getToContext()) StmtClass(ToLoc, ToLabelLoc, ToDecl);
7348 Error Err = Error::success();
7353 return std::move(Err);
7361 Error Err = Error::success();
7366 return std::move(Err);
7369 ToCatchLoc, ToExceptionDecl, ToHandlerBlock);
7375 return ToTryLocOrErr.takeError();
7378 if (!ToTryBlockOrErr)
7379 return ToTryBlockOrErr.takeError();
7382 for (
unsigned HI = 0, HE = S->
getNumHandlers(); HI != HE; ++HI) {
7384 if (
auto ToHandlerOrErr =
import(FromHandler))
7385 ToHandlers[HI] = *ToHandlerOrErr;
7387 return ToHandlerOrErr.takeError();
7396 Error Err = Error::success();
7410 return std::move(Err);
7413 ToInit, ToRangeStmt, ToBeginStmt, ToEndStmt, ToCond, ToInc, ToLoopVarStmt,
7414 ToBody, ToForLoc, ToCoawaitLoc, ToColonLoc, ToRParenLoc);
7419 Error Err = Error::success();
7427 return std::move(Err);
7432 Importer.getToContext(), ToESD, ToInit, ToExpansionVar, ToLParenLoc,
7433 ToColonLoc, ToRParenLoc);
7440 return std::move(Err);
7443 Importer.getToContext(), ToESD, ToInit, ToExpansionVar, ToRange,
7444 ToBegin, ToIter, ToLParenLoc, ToColonLoc, ToRParenLoc);
7448 auto ToDecompositionDeclStmt =
7451 return std::move(Err);
7454 Importer.getToContext(), ToESD, ToInit, ToExpansionVar,
7455 ToDecompositionDeclStmt, ToLParenLoc, ToColonLoc, ToRParenLoc);
7459 auto ToExpansionInitializer =
7462 return std::move(Err);
7464 Importer.getToContext(), ToESD, ToInit, ToExpansionVar,
7465 ToExpansionInitializer, ToLParenLoc, ToColonLoc, ToRParenLoc);
7469 llvm_unreachable(
"invalid pattern kind");
7474 Error Err = Error::success();
7484 return std::move(Err);
7487 Importer.getToContext(), ToParent, ToInstantiations, ToSharedStmts,
7493 Error Err = Error::success();
7500 return std::move(Err);
7511 Error Err = Error::success();
7517 return std::move(Err);
7520 ToAtCatchLoc, ToRParenLoc, ToCatchParamDecl, ToCatchBody);
7525 if (!ToAtFinallyLocOrErr)
7526 return ToAtFinallyLocOrErr.takeError();
7528 if (!ToAtFinallyStmtOrErr)
7529 return ToAtFinallyStmtOrErr.takeError();
7531 *ToAtFinallyStmtOrErr);
7536 Error Err = Error::success();
7541 return std::move(Err);
7546 if (
ExpectedStmt ToCatchStmtOrErr =
import(FromCatchStmt))
7547 ToCatchStmts[CI] = *ToCatchStmtOrErr;
7549 return ToCatchStmtOrErr.takeError();
7553 ToAtTryLoc, ToTryBody,
7554 ToCatchStmts.begin(), ToCatchStmts.size(),
7561 Error Err = Error::success();
7566 return std::move(Err);
7569 ToAtSynchronizedLoc, ToSynchExpr, ToSynchBody);
7574 if (!ToThrowLocOrErr)
7575 return ToThrowLocOrErr.takeError();
7577 if (!ToThrowExprOrErr)
7578 return ToThrowExprOrErr.takeError();
7580 *ToThrowLocOrErr, *ToThrowExprOrErr);
7587 return ToAtLocOrErr.takeError();
7589 if (!ToSubStmtOrErr)
7590 return ToSubStmtOrErr.takeError();
7599 Importer.FromDiag(E->
getBeginLoc(), diag::err_unsupported_ast_node)
7605 Error Err = Error::success();
7610 return std::move(Err);
7612 if (!ParentContextOrErr)
7613 return ParentContextOrErr.takeError();
7615 return new (Importer.getToContext())
7617 RParenLoc, *ParentContextOrErr);
7622 Error Err = Error::success();
7629 return std::move(Err);
7631 return new (Importer.getToContext())
7632 VAArgExpr(ToBuiltinLoc, ToSubExpr, ToWrittenTypeInfo, ToRParenLoc, ToType,
7638 Error Err = Error::success();
7646 return std::move(Err);
7655 return new (Importer.getToContext())
7656 ChooseExpr(ToBuiltinLoc, ToCond, ToLHS, ToRHS, ToType,
VK, OK,
7657 ToRParenLoc, CondIsTrue);
7661 Error Err = Error::success();
7668 return std::move(Err);
7671 Importer.getToContext(), ToSrcExpr, ToTSI, ToType, E->
getValueKind(),
7677 Error Err = Error::success();
7685 ToSubExprs.resize(NumSubExprs);
7688 return std::move(Err);
7691 Importer.getToContext(), ToSubExprs, ToType, ToBeginLoc, ToRParenLoc);
7697 return TypeOrErr.takeError();
7701 return BeginLocOrErr.takeError();
7703 return new (Importer.getToContext())
GNUNullExpr(*TypeOrErr, *BeginLocOrErr);
7708 Error Err = Error::success();
7710 Expr *ToControllingExpr =
nullptr;
7716 assert((ToControllingExpr || ToControllingType) &&
7717 "Either the controlling expr or type must be nonnull");
7721 return std::move(Err);
7726 return std::move(Err);
7731 return std::move(Err);
7733 const ASTContext &ToCtx = Importer.getToContext();
7735 if (ToControllingExpr) {
7737 ToCtx, ToGenericLoc, ToControllingExpr,
ArrayRef(ToAssocTypes),
7738 ArrayRef(ToAssocExprs), ToDefaultLoc, ToRParenLoc,
7742 ToCtx, ToGenericLoc, ToControllingType,
ArrayRef(ToAssocTypes),
7743 ArrayRef(ToAssocExprs), ToDefaultLoc, ToRParenLoc,
7747 if (ToControllingExpr) {
7749 ToCtx, ToGenericLoc, ToControllingExpr,
ArrayRef(ToAssocTypes),
7750 ArrayRef(ToAssocExprs), ToDefaultLoc, ToRParenLoc,
7754 ToCtx, ToGenericLoc, ToControllingType,
ArrayRef(ToAssocTypes),
7755 ArrayRef(ToAssocExprs), ToDefaultLoc, ToRParenLoc,
7761 Error Err = Error::success();
7766 return std::move(Err);
7775 Error Err = Error::success();
7782 return std::move(Err);
7788 return FoundDOrErr.takeError();
7789 ToFoundD = *FoundDOrErr;
7798 return std::move(Err);
7799 ToResInfo = &ToTAInfo;
7803 Importer.getToContext(), ToQualifierLoc, ToTemplateKeywordLoc, ToDecl,
7807 ToE->setHadMultipleCandidates(
true);
7815 return TypeOrErr.takeError();
7823 return ToInitOrErr.takeError();
7826 if (!ToEqualOrColonLocOrErr)
7827 return ToEqualOrColonLocOrErr.takeError();
7833 ToIndexExprs[I - 1] = *ToArgOrErr;
7835 return ToArgOrErr.takeError();
7840 return std::move(Err);
7843 Importer.getToContext(), ToDesignators,
7844 ToIndexExprs, *ToEqualOrColonLocOrErr,
7852 return ToTypeOrErr.takeError();
7855 if (!ToLocationOrErr)
7856 return ToLocationOrErr.takeError();
7859 *ToTypeOrErr, *ToLocationOrErr);
7865 return ToTypeOrErr.takeError();
7868 if (!ToLocationOrErr)
7869 return ToLocationOrErr.takeError();
7872 Importer.getToContext(), E->
getValue(), *ToTypeOrErr, *ToLocationOrErr);
7879 return ToTypeOrErr.takeError();
7882 if (!ToLocationOrErr)
7883 return ToLocationOrErr.takeError();
7887 *ToTypeOrErr, *ToLocationOrErr);
7891 auto ToTypeOrErr =
import(E->
getType());
7893 return ToTypeOrErr.takeError();
7896 if (!ToSubExprOrErr)
7897 return ToSubExprOrErr.takeError();
7900 *ToSubExprOrErr, *ToTypeOrErr);
7904 auto ToTypeOrErr =
import(E->
getType());
7906 return ToTypeOrErr.takeError();
7909 if (!ToLocationOrErr)
7910 return ToLocationOrErr.takeError();
7913 Importer.getToContext(), E->
getValue(), *ToTypeOrErr, *ToLocationOrErr,
7914 Importer.getToContext().getFixedPointScale(*ToTypeOrErr));
7920 return ToTypeOrErr.takeError();
7923 if (!ToLocationOrErr)
7924 return ToLocationOrErr.takeError();
7933 return ToTypeOrErr.takeError();
7938 return std::move(Err);
7947 Error Err = Error::success();
7953 return std::move(Err);
7956 ToLParenLoc, ToTypeSourceInfo, ToType, E->
getValueKind(),
7962 Error Err = Error::success();
7967 return std::move(Err);
7973 return std::move(Err);
7975 return new (Importer.getToContext())
AtomicExpr(
7977 ToBuiltinLoc, ToExprs, ToType, E->
getOp(), ToRParenLoc);
7981 Error Err = Error::success();
7987 return std::move(Err);
7990 ToAmpAmpLoc, ToLabelLoc, ToLabel, ToType);
7993 Error Err = Error::success();
7997 return std::move(Err);
8002 Error Err = Error::success();
8007 return std::move(Err);
8009 return new (Importer.getToContext())
8010 ParenExpr(ToLParen, ToRParen, ToSubExpr);
8016 return std::move(Err);
8019 if (!ToLParenLocOrErr)
8020 return ToLParenLocOrErr.takeError();
8023 if (!ToRParenLocOrErr)
8024 return ToRParenLocOrErr.takeError();
8027 ToExprs, *ToRParenLocOrErr);
8031 Error Err = Error::success();
8037 return std::move(Err);
8039 return new (Importer.getToContext())
8040 StmtExpr(ToSubStmt, ToType, ToLParenLoc, ToRParenLoc,
8045 Error Err = Error::success();
8050 return std::move(Err);
8054 UO->setType(ToType);
8055 UO->setSubExpr(ToSubExpr);
8057 UO->setOperatorLoc(ToOperatorLoc);
8068 Error Err = Error::success();
8073 return std::move(Err);
8078 if (!ToArgumentTypeInfoOrErr)
8079 return ToArgumentTypeInfoOrErr.takeError();
8082 E->
getKind(), *ToArgumentTypeInfoOrErr, ToType, ToOperatorLoc,
8087 if (!ToArgumentExprOrErr)
8088 return ToArgumentExprOrErr.takeError();
8091 E->
getKind(), *ToArgumentExprOrErr, ToType, ToOperatorLoc, ToRParenLoc);
8095 Error Err = Error::success();
8101 return std::move(Err);
8104 Importer.getToContext(), ToLHS, ToRHS, E->
getOpcode(), ToType,
8110 Error Err = Error::success();
8118 return std::move(Err);
8121 ToCond, ToQuestionLoc, ToLHS, ToColonLoc, ToRHS, ToType,
8127 Error Err = Error::success();
8137 return std::move(Err);
8140 ToCommon, ToOpaqueValue, ToCond, ToTrueExpr, ToFalseExpr,
8147 Error Err = Error::success();
8150 return std::move(Err);
8152 return new (Importer.getToContext())
8157 Error Err = Error::success();
8159 auto ToQueriedTypeSourceInfo =
8165 return std::move(Err);
8169 ToDimensionExpression, ToEndLoc, ToType);
8173 Error Err = Error::success();
8179 return std::move(Err);
8187 Error Err = Error::success();
8192 return std::move(Err);
8199 Error Err = Error::success();
8205 return std::move(Err);
8214 Error Err = Error::success();
8219 auto ToComputationResultType =
8223 return std::move(Err);
8226 Importer.getToContext(), ToLHS, ToRHS, E->
getOpcode(), ToType,
8229 ToComputationLHSType, ToComputationResultType);
8236 if (
auto SpecOrErr =
import(*I))
8237 Path.push_back(*SpecOrErr);
8239 return SpecOrErr.takeError();
8247 return ToTypeOrErr.takeError();
8250 if (!ToSubExprOrErr)
8251 return ToSubExprOrErr.takeError();
8254 if (!ToBasePathOrErr)
8255 return ToBasePathOrErr.takeError();
8258 Importer.getToContext(), *ToTypeOrErr, E->
getCastKind(), *ToSubExprOrErr,
8263 Error Err = Error::success();
8268 return std::move(Err);
8271 if (!ToBasePathOrErr)
8272 return ToBasePathOrErr.takeError();
8276 case Stmt::CStyleCastExprClass: {
8278 ExpectedSLoc ToLParenLocOrErr =
import(CCE->getLParenLoc());
8279 if (!ToLParenLocOrErr)
8280 return ToLParenLocOrErr.takeError();
8281 ExpectedSLoc ToRParenLocOrErr =
import(CCE->getRParenLoc());
8282 if (!ToRParenLocOrErr)
8283 return ToRParenLocOrErr.takeError();
8286 ToSubExpr, ToBasePath, CCE->getFPFeatures(), ToTypeInfoAsWritten,
8287 *ToLParenLocOrErr, *ToRParenLocOrErr);
8290 case Stmt::CXXFunctionalCastExprClass: {
8292 ExpectedSLoc ToLParenLocOrErr =
import(FCE->getLParenLoc());
8293 if (!ToLParenLocOrErr)
8294 return ToLParenLocOrErr.takeError();
8295 ExpectedSLoc ToRParenLocOrErr =
import(FCE->getRParenLoc());
8296 if (!ToRParenLocOrErr)
8297 return ToRParenLocOrErr.takeError();
8299 Importer.getToContext(), ToType, E->
getValueKind(), ToTypeInfoAsWritten,
8300 E->
getCastKind(), ToSubExpr, ToBasePath, FCE->getFPFeatures(),
8301 *ToLParenLocOrErr, *ToRParenLocOrErr);
8304 case Stmt::ObjCBridgedCastExprClass: {
8306 ExpectedSLoc ToLParenLocOrErr =
import(OCE->getLParenLoc());
8307 if (!ToLParenLocOrErr)
8308 return ToLParenLocOrErr.takeError();
8309 ExpectedSLoc ToBridgeKeywordLocOrErr =
import(OCE->getBridgeKeywordLoc());
8310 if (!ToBridgeKeywordLocOrErr)
8311 return ToBridgeKeywordLocOrErr.takeError();
8313 *ToLParenLocOrErr, OCE->getBridgeKind(), E->
getCastKind(),
8314 *ToBridgeKeywordLocOrErr, ToTypeInfoAsWritten, ToSubExpr);
8316 case Stmt::BuiltinBitCastExprClass: {
8318 ExpectedSLoc ToKWLocOrErr =
import(BBC->getBeginLoc());
8320 return ToKWLocOrErr.takeError();
8321 ExpectedSLoc ToRParenLocOrErr =
import(BBC->getEndLoc());
8322 if (!ToRParenLocOrErr)
8323 return ToRParenLocOrErr.takeError();
8326 ToTypeInfoAsWritten, *ToKWLocOrErr, *ToRParenLocOrErr);
8329 llvm_unreachable(
"Cast expression of unsupported type!");
8342 Error Err = Error::success();
8346 return std::move(Err);
8355 auto ToBSOrErr =
import(FromNode.
getBase());
8357 return ToBSOrErr.takeError();
8362 auto ToFieldOrErr =
import(FromNode.
getField());
8364 return ToFieldOrErr.takeError();
8365 ToNodes.push_back(
OffsetOfNode(ToBeginLoc, *ToFieldOrErr, ToEndLoc));
8370 ToNodes.push_back(
OffsetOfNode(ToBeginLoc, ToII, ToEndLoc));
8379 if (!ToIndexExprOrErr)
8380 return ToIndexExprOrErr.takeError();
8381 ToExprs[I] = *ToIndexExprOrErr;
8384 Error Err = Error::success();
8390 return std::move(Err);
8393 Importer.getToContext(), ToType, ToOperatorLoc, ToTypeSourceInfo, ToNodes,
8394 ToExprs, ToRParenLoc);
8398 Error Err = Error::success();
8404 return std::move(Err);
8413 ToType, ToOperand, ToCanThrow, ToBeginLoc, ToEndLoc);
8417 Error Err = Error::success();
8422 return std::move(Err);
8430 if (!ToUsedLocOrErr)
8431 return ToUsedLocOrErr.takeError();
8433 auto ToParamOrErr =
import(E->
getParam());
8435 return ToParamOrErr.takeError();
8437 auto UsedContextOrErr = Importer.ImportContext(E->
getUsedContext());
8438 if (!UsedContextOrErr)
8439 return UsedContextOrErr.takeError();
8449 std::optional<ParmVarDecl *> FromParam =
8450 Importer.getImportedFromDecl(ToParam);
8451 assert(FromParam &&
"ParmVarDecl was not imported?");
8454 return std::move(Err);
8456 Expr *RewrittenInit =
nullptr;
8460 return ExprOrErr.takeError();
8461 RewrittenInit = ExprOrErr.get();
8464 *ToParamOrErr, RewrittenInit,
8470 Error Err = Error::success();
8475 return std::move(Err);
8478 ToType, ToTypeSourceInfo, ToRParenLoc);
8484 if (!ToSubExprOrErr)
8485 return ToSubExprOrErr.takeError();
8487 auto ToDtorOrErr =
import(E->
getTemporary()->getDestructor());
8489 return ToDtorOrErr.takeError();
8499 Error Err = Error::success();
8505 return std::move(Err);
8509 return std::move(Err);
8512 Importer.getToContext(), ToConstructor, ToType, ToTypeSourceInfo, ToArgs,
8522 return std::move(Err);
8524 Error Err = Error::success();
8528 return std::move(Err);
8532 if (GetImportedOrCreateDecl(To, D, Temporary, ExtendingDecl,
8543 Error Err = Error::success();
8547 auto ToMaterializedDecl =
8550 return std::move(Err);
8552 if (!ToTemporaryExpr)
8553 ToTemporaryExpr =
cast<Expr>(ToMaterializedDecl->getTemporaryExpr());
8557 ToMaterializedDecl);
8563 Error Err = Error::success();
8567 return std::move(Err);
8569 return new (Importer.getToContext())
8574 Error Err = Error::success();
8580 return std::move(Err);
8589 ToPartialArguments))
8590 return std::move(Err);
8594 Importer.getToContext(), ToOperatorLoc, ToPack, ToPackLoc, ToRParenLoc,
8595 Length, ToPartialArguments);
8600 Error Err = Error::success();
8607 auto ToAllocatedTypeSourceInfo =
8612 return std::move(Err);
8617 return std::move(Err);
8620 Importer.getToContext(), E->
isGlobalNew(), ToOperatorNew,
8624 ToAllocatedTypeSourceInfo, ToSourceRange, ToDirectInitRange);
8628 Error Err = Error::success();
8634 return std::move(Err);
8643 Error Err = Error::success();
8649 return std::move(Err);
8653 return std::move(Err);
8656 Importer.getToContext(), ToType, ToLocation, ToConstructor,
8660 ToParenOrBraceRange);
8667 if (!ToSubExprOrErr)
8668 return ToSubExprOrErr.takeError();
8672 return std::move(Err);
8680 Error Err = Error::success();
8685 return std::move(Err);
8689 return std::move(Err);
8699 return ToTypeOrErr.takeError();
8702 if (!ToLocationOrErr)
8703 return ToLocationOrErr.takeError();
8712 return ToTypeOrErr.takeError();
8715 if (!ToLocationOrErr)
8716 return ToLocationOrErr.takeError();
8719 *ToTypeOrErr, *ToLocationOrErr);
8723 Error Err = Error::success();
8734 return std::move(Err);
8746 return std::move(Err);
8747 ResInfo = &ToTAInfo;
8751 ToOperatorLoc, ToQualifierLoc, ToTemplateKeywordLoc,
8752 ToMemberDecl, ToFoundDecl, ToMemberNameInfo,
8759 Error Err = Error::success();
8767 return std::move(Err);
8773 if (!ToDestroyedTypeLocOrErr)
8774 return ToDestroyedTypeLocOrErr.takeError();
8780 return ToTIOrErr.takeError();
8784 Importer.getToContext(), ToBase, E->
isArrow(), ToOperatorLoc,
8785 ToQualifierLoc, ToScopeTypeInfo, ToColonColonLoc, ToTildeLoc, Storage);
8790 Error Err = Error::success();
8795 auto ToFirstQualifierFoundInScope =
8798 return std::move(Err);
8800 Expr *ToBase =
nullptr;
8803 ToBase = *ToBaseOrErr;
8805 return ToBaseOrErr.takeError();
8814 return std::move(Err);
8815 ResInfo = &ToTAInfo;
8820 return std::move(Err);
8826 return std::move(Err);
8829 Importer.getToContext(), ToBase, ToType, E->
isArrow(), ToOperatorLoc,
8830 ToQualifierLoc, ToTemplateKeywordLoc, ToFirstQualifierFoundInScope,
8831 ToMemberNameInfo, ResInfo);
8836 Error Err = Error::success();
8841 return std::move(Err);
8845 return std::move(Err);
8851 return std::move(Err);
8859 Error Err = Error::success();
8867 return std::move(Err);
8871 return std::move(Err);
8878 return std::move(Err);
8879 ResInfo = &ToTAInfo;
8883 Importer.getToContext(), ToQualifierLoc, ToTemplateKeywordLoc,
8884 ToNameInfo, ResInfo);
8889 Error Err = Error::success();
8895 return std::move(Err);
8900 return std::move(Err);
8903 Importer.getToContext(), ToType, ToTypeSourceInfo, ToLParenLoc,
8910 if (!ToNamingClassOrErr)
8911 return ToNamingClassOrErr.takeError();
8914 if (!ToQualifierLocOrErr)
8915 return ToQualifierLocOrErr.takeError();
8917 Error Err = Error::success();
8921 return std::move(Err);
8926 return std::move(Err);
8929 for (
auto *D : E->
decls())
8930 if (
auto ToDOrErr =
import(D))
8933 return ToDOrErr.takeError();
8940 return std::move(Err);
8943 if (!ToTemplateKeywordLocOrErr)
8944 return ToTemplateKeywordLocOrErr.takeError();
8946 const bool KnownDependent =
8948 ExprDependence::TypeValue;
8950 Importer.getToContext(), *ToNamingClassOrErr, *ToQualifierLocOrErr,
8951 *ToTemplateKeywordLocOrErr, ToNameInfo, E->
requiresADL(), &ToTAInfo,
8952 ToDecls.
begin(), ToDecls.
end(), KnownDependent,
8957 Importer.getToContext(), *ToNamingClassOrErr, *ToQualifierLocOrErr,
8965 Error Err = Error::success();
8973 return std::move(Err);
8978 return std::move(Err);
8982 if (
auto ToDOrErr =
import(D))
8985 return ToDOrErr.takeError();
8993 return std::move(Err);
8994 ResInfo = &ToTAInfo;
8997 Expr *ToBase =
nullptr;
9000 ToBase = *ToBaseOrErr;
9002 return ToBaseOrErr.takeError();
9007 E->
isArrow(), ToOperatorLoc, ToQualifierLoc, ToTemplateKeywordLoc,
9008 ToNameInfo, ResInfo, ToDecls.
begin(), ToDecls.
end());
9012 Error Err = Error::success();
9017 return std::move(Err);
9022 return std::move(Err);
9024 if (
const auto *OCE = dyn_cast<CXXOperatorCallExpr>(E)) {
9026 Importer.getToContext(), OCE->getOperator(), ToCallee, ToArgs, ToType,
9027 OCE->getValueKind(), ToRParenLoc, OCE->getFPFeatures(),
9028 OCE->getADLCallKind());
9038 auto ToClassOrErr =
import(FromClass);
9040 return ToClassOrErr.takeError();
9045 return ToCallOpOrErr.takeError();
9049 return std::move(Err);
9051 Error Err = Error::success();
9056 return std::move(Err);
9067 Error Err = Error::success();
9072 return std::move(Err);
9076 return std::move(Err);
9087 return ToFillerOrErr.takeError();
9091 if (
auto ToFDOrErr =
import(FromFD))
9094 return ToFDOrErr.takeError();
9098 if (
auto ToSyntFormOrErr =
import(SyntForm))
9101 return ToSyntFormOrErr.takeError();
9115 return ToTypeOrErr.takeError();
9118 if (!ToSubExprOrErr)
9119 return ToSubExprOrErr.takeError();
9122 *ToTypeOrErr, *ToSubExprOrErr);
9127 Error Err = Error::success();
9132 return std::move(Err);
9140 Error Err = Error::success();
9145 return std::move(Err);
9148 ToType, ToCommonExpr, ToSubExpr);
9154 return ToTypeOrErr.takeError();
9160 if (!ToBeginLocOrErr)
9161 return ToBeginLocOrErr.takeError();
9163 auto ToFieldOrErr =
import(E->
getField());
9165 return ToFieldOrErr.takeError();
9167 auto UsedContextOrErr = Importer.ImportContext(E->
getUsedContext());
9168 if (!UsedContextOrErr)
9169 return UsedContextOrErr.takeError();
9173 "Field should have in-class initializer if there is a default init "
9174 "expression that uses it.");
9179 auto ToInClassInitializerOrErr =
9180 import(E->
getField()->getInClassInitializer());
9181 if (!ToInClassInitializerOrErr)
9182 return ToInClassInitializerOrErr.takeError();
9186 Expr *RewrittenInit =
nullptr;
9190 return ExprOrErr.takeError();
9191 RewrittenInit = ExprOrErr.get();
9195 ToField, *UsedContextOrErr, RewrittenInit);
9199 Error Err = Error::success();
9207 return std::move(Err);
9212 if (!ToBasePathOrErr)
9213 return ToBasePathOrErr.takeError();
9215 if (
auto CCE = dyn_cast<CXXStaticCastExpr>(E)) {
9217 Importer.getToContext(), ToType,
VK, CK, ToSubExpr, &(*ToBasePathOrErr),
9218 ToTypeInfoAsWritten, CCE->getFPFeatures(), ToOperatorLoc, ToRParenLoc,
9222 Importer.getToContext(), ToType,
VK, CK, ToSubExpr, &(*ToBasePathOrErr),
9223 ToTypeInfoAsWritten, ToOperatorLoc, ToRParenLoc, ToAngleBrackets);
9226 Importer.getToContext(), ToType,
VK, CK, ToSubExpr, &(*ToBasePathOrErr),
9227 ToTypeInfoAsWritten, ToOperatorLoc, ToRParenLoc, ToAngleBrackets);
9230 Importer.getToContext(), ToType,
VK, ToSubExpr, ToTypeInfoAsWritten,
9231 ToOperatorLoc, ToRParenLoc, ToAngleBrackets);
9233 llvm_unreachable(
"Unknown cast type");
9234 return make_error<ASTImportError>();
9240 Error Err = Error::success();
9247 return std::move(Err);
9250 ToType, E->
getValueKind(), ToNameLoc, ToReplacement, ToAssociatedDecl,
9255 Error Err = Error::success();
9260 return std::move(Err);
9264 return std::move(Err);
9271 E->
getTrait(), ToArgs, ToEndLoc, ToValue);
9281 return ToTypeOrErr.takeError();
9284 if (!ToSourceRangeOrErr)
9285 return ToSourceRangeOrErr.takeError();
9290 *ToTypeOrErr, *ToTSIOrErr, *ToSourceRangeOrErr);
9292 return ToTSIOrErr.takeError();
9296 if (!ToExprOperandOrErr)
9297 return ToExprOperandOrErr.takeError();
9300 *ToTypeOrErr, *ToExprOperandOrErr, *ToSourceRangeOrErr);
9304 Error Err = Error::success();
9315 return std::move(Err);
9317 return new (Importer.getToContext())
9323 Error Err = Error::success();
9331 return std::move(Err);
9335 return std::move(Err);
9340 return std::move(Err);
9342 LParenLoc, LocalParameters, RParenLoc,
9343 Requirements, RBraceLoc);
9348 Error Err = Error::success();
9352 return std::move(Err);
9355 Importer.getToContext(),
CL,
9360 return std::move(Err);
9362 Importer.getToContext(),
CL,
9368 Error Err = Error::success();
9374 return std::move(Err);
9377 ToType, E->
getValueKind(), ToPackLoc, ToArgPack, ToAssociatedDecl,
9384 return std::move(Err);
9387 return ToSyntOrErr.takeError();
9394 Error Err = Error::success();
9400 return std::move(Err);
9404 return std::move(Err);
9407 ToInitLoc, ToBeginLoc, ToEndLoc);
9412 Error Err = Error::success();
9416 return std::move(Err);
9418 return new (Importer.getToContext())
9424 Error ImportErrors = Error::success();
9426 if (
auto ImportedOrErr =
import(FromOverriddenMethod))
9428 (*ImportedOrErr)->getCanonicalDecl()));
9431 joinErrors(std::move(ImportErrors), ImportedOrErr.takeError());
9433 return ImportErrors;
9439 std::shared_ptr<ASTImporterSharedState> SharedState)
9440 : SharedState(SharedState), ToContext(ToContext), FromContext(FromContext),
9441 ToFileManager(ToFileManager), FromFileManager(FromFileManager),
9446 this->SharedState = std::make_shared<ASTImporterSharedState>();
9449 ImportedDecls[FromContext.getTranslationUnitDecl()] =
9450 ToContext.getTranslationUnitDecl();
9457 "Try to get field index for non-field.");
9461 return std::nullopt;
9464 for (
const auto *D : Owner->decls()) {
9472 llvm_unreachable(
"Field was not found in its parent context.");
9474 return std::nullopt;
9477ASTImporter::FoundDeclsTy
9487 if (SharedState->getLookupTable()) {
9495 dyn_cast<NamespaceDecl>(ReDC));
9496 for (
auto *D : NSChain) {
9498 SharedState->getLookupTable()->lookup(dyn_cast<NamespaceDecl>(D),
9505 SharedState->getLookupTable()->lookup(ReDC, Name);
9506 return FoundDeclsTy(LookupResult.begin(), LookupResult.end());
9510 FoundDeclsTy
Result(NoloadLookupResult.
begin(), NoloadLookupResult.
end());
9527void ASTImporter::AddToLookupTable(
Decl *ToD) {
9528 SharedState->addDeclToLookup(ToD);
9534 return Importer.
Visit(FromD);
9558 llvm::DenseMap<const Type *, const Type *>::iterator Pos =
9559 ImportedTypes.find(FromT);
9560 if (Pos != ImportedTypes.end())
9567 return ToTOrErr.takeError();
9570 ImportedTypes[FromT] = ToTOrErr->getTypePtr();
9572 return ToTOrErr->getTypePtr();
9581 return ToTyOrErr.takeError();
9594 return TOrErr.takeError();
9597 return BeginLocOrErr.takeError();
9599 return ToContext.getTrivialTypeSourceInfo(*TOrErr, *BeginLocOrErr);
9606template <
typename T>
struct AttrArgImporter {
9607 AttrArgImporter(
const AttrArgImporter<T> &) =
delete;
9608 AttrArgImporter(AttrArgImporter<T> &&) =
default;
9609 AttrArgImporter<T> &operator=(
const AttrArgImporter<T> &) =
delete;
9610 AttrArgImporter<T> &operator=(AttrArgImporter<T> &&) =
default;
9613 : To(I.importChecked(Err, From)) {}
9615 const T &value() {
return To; }
9626template <
typename T>
struct AttrArgArrayImporter {
9627 AttrArgArrayImporter(
const AttrArgArrayImporter<T> &) =
delete;
9628 AttrArgArrayImporter(AttrArgArrayImporter<T> &&) =
default;
9629 AttrArgArrayImporter<T> &operator=(
const AttrArgArrayImporter<T> &) =
delete;
9630 AttrArgArrayImporter<T> &operator=(AttrArgArrayImporter<T> &&) =
default;
9632 AttrArgArrayImporter(ASTNodeImporter &I,
Error &Err,
9633 const llvm::iterator_range<T *> &From,
9634 unsigned ArraySize) {
9637 To.reserve(ArraySize);
9641 T *value() {
return To.data(); }
9644 llvm::SmallVector<T, 2> To;
9648 Error Err{Error::success()};
9649 Attr *ToAttr =
nullptr;
9650 ASTImporter &Importer;
9651 ASTNodeImporter NImporter;
9654 AttrImporter(ASTImporter &I) : Importer(I), NImporter(I) {}
9659 template <
class T> AttrArgImporter<T> importArg(
const T &From) {
9660 return AttrArgImporter<T>(NImporter, Err, From);
9666 template <
typename T>
9667 AttrArgArrayImporter<T> importArrayArg(
const llvm::iterator_range<T *> &From,
9668 unsigned ArraySize) {
9669 return AttrArgArrayImporter<T>(NImporter, Err, From, ArraySize);
9680 template <
typename T,
typename... Arg>
9681 void importAttr(
const T *FromAttr, Arg &&...ImportedArg) {
9682 static_assert(std::is_base_of<Attr, T>::value,
9683 "T should be subclass of Attr.");
9684 assert(!ToAttr &&
"Use one AttrImporter to import one Attribute object.");
9686 const IdentifierInfo *ToAttrName = Importer.
Import(FromAttr->getAttrName());
9687 const IdentifierInfo *ToScopeName =
9688 Importer.
Import(FromAttr->getScopeName());
9689 SourceRange ToAttrRange =
9691 SourceLocation ToScopeLoc =
9697 AttributeCommonInfo ToI(
9698 ToAttrName, AttributeScopeInfo(ToScopeName, ToScopeLoc), ToAttrRange,
9699 FromAttr->getParsedKind(), FromAttr->getForm());
9703 std::forward<Arg>(ImportedArg)..., ToI);
9707 if (
auto *ToInheritableAttr = dyn_cast<InheritableAttr>(ToAttr))
9708 ToInheritableAttr->setInherited(FromAttr->isInherited());
9714 void cloneAttr(
const Attr *FromAttr) {
9715 assert(!ToAttr &&
"Use one AttrImporter to import one Attribute object.");
9727 llvm::Expected<Attr *> getResult() && {
9729 return std::move(Err);
9730 assert(ToAttr &&
"Attribute should be created.");
9737 AttrImporter AI(*
this);
9740 switch (FromAttr->
getKind()) {
9741 case attr::Aligned: {
9743 if (From->isAlignmentExpr())
9744 AI.importAttr(From,
true, AI.importArg(From->getAlignmentExpr()).value());
9746 AI.importAttr(From,
false,
9747 AI.importArg(From->getAlignmentType()).value());
9751 case attr::AlignValue: {
9753 AI.importAttr(From, AI.importArg(From->getAlignment()).value());
9757 case attr::Format: {
9759 AI.importAttr(From,
Import(From->getType()), From->getFormatIdx(),
9760 From->getFirstArg());
9764 case attr::EnableIf: {
9766 AI.importAttr(From, AI.importArg(From->getCond()).value(),
9767 From->getMessage());
9771 case attr::AssertCapability: {
9774 AI.importArrayArg(From->args(), From->args_size()).value(),
9778 case attr::AcquireCapability: {
9781 AI.importArrayArg(From->args(), From->args_size()).value(),
9785 case attr::TryAcquireCapability: {
9787 AI.importAttr(From, AI.importArg(From->getSuccessValue()).value(),
9788 AI.importArrayArg(From->args(), From->args_size()).value(),
9792 case attr::ReleaseCapability: {
9795 AI.importArrayArg(From->args(), From->args_size()).value(),
9799 case attr::RequiresCapability: {
9802 AI.importArrayArg(From->args(), From->args_size()).value(),
9806 case attr::GuardedBy: {
9809 AI.importArrayArg(From->args(), From->args_size()).value(),
9813 case attr::PtGuardedBy: {
9816 AI.importArrayArg(From->args(), From->args_size()).value(),
9820 case attr::AcquiredAfter: {
9823 AI.importArrayArg(From->args(), From->args_size()).value(),
9827 case attr::AcquiredBefore: {
9830 AI.importArrayArg(From->args(), From->args_size()).value(),
9834 case attr::LockReturned: {
9836 AI.importAttr(From, AI.importArg(From->getArg()).value());
9839 case attr::LocksExcluded: {
9842 AI.importArrayArg(From->args(), From->args_size()).value(),
9850 AI.cloneAttr(FromAttr);
9855 return std::move(AI).getResult();
9859 return ImportedDecls.lookup(FromD);
9863 auto FromDPos = ImportedFromDecls.find(ToD);
9864 if (FromDPos == ImportedFromDecls.end())
9874 ImportPath.push(FromD);
9875 llvm::scope_exit ImportPathBuilder([
this]() { ImportPath.pop(); });
9880 return make_error<ASTImportError>(*
Error);
9886 if (
auto Error = SharedState->getImportDeclErrorIfAny(ToD)) {
9888 return make_error<ASTImportError>(*
Error);
9895 if (ImportPath.hasCycleAtBack())
9896 SavedImportPaths[FromD].push_back(ImportPath.copyCycleAtBack());
9905 auto Pos = ImportedDecls.find(FromD);
9906 bool ToDWasCreated = Pos != ImportedDecls.end();
9910 Decl *CreatedToD = ToDWasCreated ? Pos->second :
nullptr;
9911 if (ToDWasCreated) {
9914 auto *ToD = CreatedToD;
9915 ImportedDecls.erase(Pos);
9920 if (
const auto *FromTD = dyn_cast<TagDecl>(FromD)) {
9921 if (
const Type *FromTy =
9923 ImportedTypes.erase(FromTy);
9937 auto PosF = ImportedFromDecls.find(ToD);
9938 if (PosF != ImportedFromDecls.end()) {
9943 SharedState->removeDeclFromLookup(ToD);
9944 ImportedFromDecls.erase(PosF);
9956 handleAllErrors(ToDOrErr.takeError(),
9961 SharedState->setImportDeclError(CreatedToD, ErrOut);
9965 for (
const auto &Path : SavedImportPaths[FromD]) {
9968 Decl *PrevFromDi = FromD;
9969 for (
Decl *FromDi : Path) {
9971 if (FromDi == FromD)
9978 PrevFromDi = FromDi;
9981 if (
const auto *FromTDi = dyn_cast<TagDecl>(FromDi)) {
9982 if (
const Type *FromTyi =
9984 ImportedTypes.erase(FromTyi);
9990 auto Ii = ImportedDecls.find(FromDi);
9991 if (Ii != ImportedDecls.end())
9992 SharedState->setImportDeclError(Ii->second, ErrOut);
9997 SavedImportPaths.erase(FromD);
10000 return make_error<ASTImportError>(ErrOut);
10012 return make_error<ASTImportError>(*Err);
10018 if (
auto Error = SharedState->getImportDeclErrorIfAny(ToD)) {
10020 return make_error<ASTImportError>(*
Error);
10023 assert(ImportedDecls.count(FromD) != 0 &&
"Missing call to MapImported?");
10027 auto ToAttrOrErr =
Import(FromAttr);
10031 return ToAttrOrErr.takeError();
10038 SavedImportPaths.erase(FromD);
10053 return ToDCOrErr.takeError();
10058 if (
auto *ToRecord = dyn_cast<RecordDecl>(ToDC)) {
10060 if (ToRecord->isCompleteDefinition())
10068 if (FromRecord->getASTContext().getExternalSource() &&
10069 !FromRecord->isCompleteDefinition())
10070 FromRecord->getASTContext().getExternalSource()->CompleteType(FromRecord);
10072 if (FromRecord->isCompleteDefinition())
10075 return std::move(Err);
10076 }
else if (
auto *ToEnum = dyn_cast<EnumDecl>(ToDC)) {
10078 if (ToEnum->isCompleteDefinition()) {
10080 }
else if (FromEnum->isCompleteDefinition()) {
10083 return std::move(Err);
10087 }
else if (
auto *ToClass = dyn_cast<ObjCInterfaceDecl>(ToDC)) {
10089 if (ToClass->getDefinition()) {
10094 return std::move(Err);
10098 }
else if (
auto *ToProto = dyn_cast<ObjCProtocolDecl>(ToDC)) {
10100 if (ToProto->getDefinition()) {
10105 return std::move(Err);
10116 return cast_or_null<Expr>(*ToSOrErr);
10118 return ToSOrErr.takeError();
10126 llvm::DenseMap<Stmt *, Stmt *>::iterator Pos = ImportedStmts.find(FromS);
10127 if (Pos != ImportedStmts.end())
10128 return Pos->second;
10136 if (
auto *ToE = dyn_cast<Expr>(*ToSOrErr)) {
10140 ToE->setValueKind(FromE->getValueKind());
10141 ToE->setObjectKind(FromE->getObjectKind());
10142 ToE->setDependence(FromE->getDependence());
10146 ImportedStmts[FromS] = *ToSOrErr;
10157 auto NSOrErr =
Import(Namespace);
10159 return NSOrErr.takeError();
10160 auto PrefixOrErr =
Import(Prefix);
10162 return PrefixOrErr.takeError();
10170 return RDOrErr.takeError();
10175 return TyOrErr.takeError();
10178 llvm_unreachable(
"Invalid nested name specifier kind");
10190 NestedNames.push_back(NNS);
10196 while (!NestedNames.empty()) {
10197 NNS = NestedNames.pop_back_val();
10200 return std::move(Err);
10207 return std::move(Err);
10211 return std::move(Err);
10217 ToLocalBeginLoc, ToLocalEndLoc);
10223 return std::move(Err);
10236 if (!ToSourceRangeOrErr)
10237 return ToSourceRangeOrErr.takeError();
10240 ToSourceRangeOrErr->getBegin(),
10241 ToSourceRangeOrErr->getEnd());
10245 llvm_unreachable(
"unexpected null nested name specifier");
10258 return ToTemplateOrErr.takeError();
10263 for (
auto *I : *FromStorage) {
10264 if (
auto ToOrErr =
Import(I))
10267 return ToOrErr.takeError();
10269 return ToContext.getOverloadedTemplateName(ToTemplates.
begin(),
10270 ToTemplates.
end());
10276 if (!DeclNameOrErr)
10277 return DeclNameOrErr.takeError();
10278 return ToContext.getAssumedTemplateName(*DeclNameOrErr);
10284 if (!QualifierOrErr)
10285 return QualifierOrErr.takeError();
10288 return TNOrErr.takeError();
10289 return ToContext.getQualifiedTemplateName(
10296 if (!QualifierOrErr)
10297 return QualifierOrErr.takeError();
10298 return ToContext.getDependentTemplateName(
10306 if (!ReplacementOrErr)
10307 return ReplacementOrErr.takeError();
10310 if (!AssociatedDeclOrErr)
10311 return AssociatedDeclOrErr.takeError();
10313 return ToContext.getSubstTemplateTemplateParm(
10314 *ReplacementOrErr, *AssociatedDeclOrErr, Subst->
getIndex(),
10322 auto ArgPackOrErr =
10325 return ArgPackOrErr.takeError();
10328 if (!AssociatedDeclOrErr)
10329 return AssociatedDeclOrErr.takeError();
10331 return ToContext.getSubstTemplateTemplateParmPack(
10332 *ArgPackOrErr, *AssociatedDeclOrErr, SubstPack->
getIndex(),
10338 return UsingOrError.takeError();
10342 llvm_unreachable(
"Unexpected DeducedTemplate");
10345 llvm_unreachable(
"Invalid template name kind");
10357 if (!ToFileIDOrErr)
10358 return ToFileIDOrErr.takeError();
10366 return std::move(Err);
10368 return std::move(Err);
10374 llvm::DenseMap<FileID, FileID>::iterator Pos = ImportedFileIDs.find(FromID);
10375 if (Pos != ImportedFileIDs.end())
10376 return Pos->second;
10388 return ToSpLoc.takeError();
10391 return ToExLocS.takeError();
10401 return ToExLocE.takeError();
10407 if (!IsBuiltin && !
Cache->BufferOverridden) {
10411 return ToIncludeLoc.takeError();
10422 if (
Cache->OrigEntry &&
Cache->OrigEntry->getDir()) {
10428 ToFileManager.getOptionalFileRef(
Cache->OrigEntry->getName());
10433 ToID = ToSM.
createFileID(*Entry, ToIncludeLocOrFakeLoc,
10440 std::optional<llvm::MemoryBufferRef> FromBuf =
10441 Cache->getBufferOrNone(FromContext.getDiagnostics(),
10446 std::unique_ptr<llvm::MemoryBuffer> ToBuf =
10447 llvm::MemoryBuffer::getMemBufferCopy(FromBuf->getBuffer(),
10448 FromBuf->getBufferIdentifier());
10454 assert(ToID.
isValid() &&
"Unexpected invalid fileID was created.");
10456 ImportedFileIDs[FromID] = ToID;
10463 return ToExprOrErr.takeError();
10466 if (!LParenLocOrErr)
10467 return LParenLocOrErr.takeError();
10470 if (!RParenLocOrErr)
10471 return RParenLocOrErr.takeError();
10476 return ToTInfoOrErr.takeError();
10481 return std::move(Err);
10484 ToContext, *ToTInfoOrErr, From->
isBaseVirtual(), *LParenLocOrErr,
10485 *ToExprOrErr, *RParenLocOrErr, EllipsisLoc);
10489 return ToFieldOrErr.takeError();
10492 if (!MemberLocOrErr)
10493 return MemberLocOrErr.takeError();
10496 ToContext, cast_or_null<FieldDecl>(*ToFieldOrErr), *MemberLocOrErr,
10497 *LParenLocOrErr, *ToExprOrErr, *RParenLocOrErr);
10500 if (!ToIFieldOrErr)
10501 return ToIFieldOrErr.takeError();
10504 if (!MemberLocOrErr)
10505 return MemberLocOrErr.takeError();
10508 ToContext, cast_or_null<IndirectFieldDecl>(*ToIFieldOrErr),
10509 *MemberLocOrErr, *LParenLocOrErr, *ToExprOrErr, *RParenLocOrErr);
10513 return ToTInfoOrErr.takeError();
10515 return new (ToContext)
10517 *ToExprOrErr, *RParenLocOrErr);
10520 return make_error<ASTImportError>();
10526 auto Pos = ImportedCXXBaseSpecifiers.find(BaseSpec);
10527 if (Pos != ImportedCXXBaseSpecifiers.end())
10528 return Pos->second;
10531 if (!ToSourceRange)
10532 return ToSourceRange.takeError();
10535 return ToTSI.takeError();
10537 if (!ToEllipsisLoc)
10538 return ToEllipsisLoc.takeError();
10542 ImportedCXXBaseSpecifiers[BaseSpec] =
Imported;
10554 return ToOrErr.takeError();
10555 Decl *To = *ToOrErr;
10560 if (
auto *ToRecord = dyn_cast<RecordDecl>(To)) {
10561 if (!ToRecord->getDefinition()) {
10568 if (
auto *ToEnum = dyn_cast<EnumDecl>(To)) {
10569 if (!ToEnum->getDefinition()) {
10575 if (
auto *ToIFace = dyn_cast<ObjCInterfaceDecl>(To)) {
10576 if (!ToIFace->getDefinition()) {
10583 if (
auto *ToProto = dyn_cast<ObjCProtocolDecl>(To)) {
10584 if (!ToProto->getDefinition()) {
10608 return ToSelOrErr.takeError();
10612 return ToContext.DeclarationNames.getCXXConstructorName(
10613 ToContext.getCanonicalType(*ToTyOrErr));
10615 return ToTyOrErr.takeError();
10620 return ToContext.DeclarationNames.getCXXDestructorName(
10621 ToContext.getCanonicalType(*ToTyOrErr));
10623 return ToTyOrErr.takeError();
10628 return ToContext.DeclarationNames.getCXXDeductionGuideName(
10631 return ToTemplateOrErr.takeError();
10636 return ToContext.DeclarationNames.getCXXConversionFunctionName(
10637 ToContext.getCanonicalType(*ToTyOrErr));
10639 return ToTyOrErr.takeError();
10643 return ToContext.DeclarationNames.getCXXOperatorName(
10647 return ToContext.DeclarationNames.getCXXLiteralOperatorName(
10655 llvm_unreachable(
"Invalid DeclarationName Kind!");
10683 for (
unsigned I = 1, N = FromSel.
getNumArgs(); I < N; ++I)
10685 return ToContext.Selectors.getSelector(FromSel.
getNumArgs(), Idents.data());
10691 llvm::Error Err = llvm::Error::success();
10692 auto ImportLoop = [&](
const APValue *From,
APValue *To,
unsigned Size) {
10693 for (
unsigned Idx = 0; Idx < Size; Idx++) {
10698 switch (FromValue.
getKind()) {
10712 ImportLoop(((
const APValue::Vec *)(
const char *)&FromValue.Data)->Elts,
10718 llvm_unreachable(
"Matrix APValue import not yet supported");
10722 ImportLoop(((
const APValue::Arr *)(
const char *)&FromValue.Data)->Elts,
10723 ((
const APValue::Arr *)(
const char *)&
Result.Data)->Elts,
10731 ((
const APValue::StructData *)(
const char *)&FromValue.Data)->Elts,
10732 ((
const APValue::StructData *)(
const char *)&
Result.Data)->Elts,
10741 return std::move(Err);
10746 Result.MakeAddrLabelDiff();
10750 return std::move(Err);
10756 const Decl *ImpMemPtrDecl =
10759 return std::move(Err);
10761 Result.setMemberPointerUninit(
10770 return std::move(Err);
10780 "in C++20 dynamic allocation are transient so they shouldn't "
10781 "appear in the AST");
10783 if (
const auto *E =
10785 FromElemTy = E->getType();
10788 return std::move(Err);
10798 return std::move(Err);
10810 return std::move(Err);
10823 for (
unsigned LoopIdx = 0; LoopIdx < PathLength; LoopIdx++) {
10825 const Decl *FromDecl =
10826 FromPath[LoopIdx].getAsBaseOrMember().getPointer();
10829 return std::move(Err);
10830 if (
auto *RD = dyn_cast<CXXRecordDecl>(FromDecl))
10831 FromElemTy = Importer.FromContext.getCanonicalTagType(RD);
10835 ImpDecl, FromPath[LoopIdx].getAsBaseOrMember().getInt()));
10838 Importer.FromContext.getAsArrayType(FromElemTy)->getElementType();
10840 FromPath[LoopIdx].getAsArrayIndex());
10848 return std::move(Err);
10856 unsigned NumDecls) {
10866 if (LastDiagFromFrom)
10867 ToContext.getDiagnostics().notePriorDiagnosticFrom(
10868 FromContext.getDiagnostics());
10869 LastDiagFromFrom =
false;
10870 return ToContext.getDiagnostics().Report(Loc, DiagID);
10874 if (!LastDiagFromFrom)
10875 FromContext.getDiagnostics().notePriorDiagnosticFrom(
10876 ToContext.getDiagnostics());
10877 LastDiagFromFrom =
true;
10878 return FromContext.getDiagnostics().Report(Loc, DiagID);
10882 if (
auto *ID = dyn_cast<ObjCInterfaceDecl>(D)) {
10883 if (!ID->getDefinition())
10884 ID->startDefinition();
10886 else if (
auto *PD = dyn_cast<ObjCProtocolDecl>(D)) {
10887 if (!PD->getDefinition())
10888 PD->startDefinition();
10890 else if (
auto *TD = dyn_cast<TagDecl>(D)) {
10891 if (!TD->getDefinition() && !TD->isBeingDefined()) {
10892 TD->startDefinition();
10893 TD->setCompleteDefinition(
true);
10897 assert(0 &&
"CompleteDecl called on a Decl that can't be completed");
10902 auto [Pos, Inserted] = ImportedDecls.try_emplace(From, To);
10903 assert((Inserted || Pos->second == To) &&
10904 "Try to import an already imported Decl");
10906 return Pos->second;
10909 ImportedFromDecls[To] = From;
10914 AddToLookupTable(To);
10918std::optional<ASTImportError>
10920 auto Pos = ImportDeclErrors.find(FromD);
10921 if (Pos != ImportDeclErrors.end())
10922 return Pos->second;
10924 return std::nullopt;
10928 auto InsertRes = ImportDeclErrors.insert({From,
Error});
10932 assert(InsertRes.second || InsertRes.first->second.Error ==
Error.Error);
10937 llvm::DenseMap<const Type *, const Type *>::iterator Pos =
10939 if (Pos != ImportedTypes.end()) {
10941 if (ToContext.hasSameType(*ToFromOrErr, To))
10944 llvm::consumeError(ToFromOrErr.takeError());
10949 getToContext().getLangOpts(), FromContext, ToContext, NonEquivalentDecls,
Defines the clang::ASTContext interface.
static FriendCountAndPosition getFriendCountAndPosition(ASTImporter &Importer, FriendDecl *FD)
static bool IsEquivalentFriend(ASTImporter &Importer, FriendDecl *FD1, FriendDecl *FD2)
static ExpectedStmt ImportLoopControlStmt(ASTNodeImporter &NodeImporter, ASTImporter &Importer, StmtClass *S)
static auto getTemplateDefinition(T *D) -> T *
static Error setTypedefNameForAnonDecl(TagDecl *From, TagDecl *To, ASTImporter &Importer)
static StructuralEquivalenceKind getStructuralEquivalenceKind(const ASTImporter &Importer)
This file provides some common utility functions for processing Lambda related AST Constructs.
Defines enum values for all the target-independent builtin functions.
Defines the C++ Decl subclasses, other than those for templates (found in DeclTemplate....
Defines the C++ template declaration subclasses.
Defines the ExceptionSpecificationType enumeration and various utility functions.
Defines the clang::Expr interface and subclasses for C++ expressions.
Defines the clang::FileManager interface and associated types.
Defines the clang::IdentifierInfo, clang::IdentifierTable, and clang::Selector interfaces.
Result
Implement __builtin_bit_cast and related operations.
Forward-declares and imports various common LLVM datatypes that clang wants to use unqualified.
Defines the LambdaCapture class.
Defines the clang::LangOptions interface.
llvm::MachO::Record Record
llvm::SmallVector< std::pair< const MemRegion *, SVal >, 4 > Bindings
Defines the clang::SourceLocation class and associated facilities.
Defines the SourceManager interface.
Defines various enumerations that describe declaration and type specifiers.
Defines the Objective-C statement AST node classes.
Defines the clang::TypeLoc interface and its subclasses.
C Language Family Type Representation.
llvm::APInt getValue() const
unsigned getVersion() const
QualType getTypeInfoType() const
static LValueBase getTypeInfo(TypeInfoLValue LV, QualType TypeInfo)
unsigned getCallIndex() const
A non-discriminated union of a base, field, or array index.
static LValuePathEntry ArrayIndex(uint64_t Index)
APValue - This class implements a discriminated union of [uninitialized] [APSInt] [APFloat],...
const LValueBase getLValueBase() const
ArrayRef< LValuePathEntry > getLValuePath() const
const FieldDecl * getUnionField() const
unsigned getStructNumFields() const
llvm::PointerIntPair< const Decl *, 1, bool > BaseOrMemberType
A FieldDecl or CXXRecordDecl, along with a flag indicating whether we mean a virtual or non-virtual b...
ValueKind getKind() const
bool isLValueOnePastTheEnd() const
bool isMemberPointerToDerivedMember() const
unsigned getArrayInitializedElts() const
unsigned getStructNumBases() const
unsigned getStructNumVirtualBases() const
bool hasLValuePath() const
const ValueDecl * getMemberPointerDecl() const
APValue & getUnionValue()
const AddrLabelExpr * getAddrLabelDiffRHS() const
CharUnits & getLValueOffset()
unsigned getVectorLength() const
ArrayRef< const CXXRecordDecl * > getMemberPointerPath() const
unsigned getArraySize() const
@ Indeterminate
This object has an indeterminate value (C++ [basic.indet]).
@ None
There is no such object (it's outside its lifetime).
bool isNullPointer() const
const AddrLabelExpr * getAddrLabelDiffLHS() const
Holds long-lived AST nodes (such as types and decls) that can be referred to throughout the semantic ...
QualType getReadPipeType(QualType T) const
Return a read_only pipe type for the specified type.
const LangOptions & getLangOpts() const
TypeSourceInfo * getTrivialTypeSourceInfo(QualType T, SourceLocation Loc=SourceLocation()) const
Allocate a TypeSourceInfo where all locations have been initialized to a given location,...
QualType getWritePipeType(QualType T) const
Return a write_only pipe type for the specified type.
ExternalASTSource * getExternalSource() const
Retrieve a pointer to the external AST source associated with this AST context, if any.
std::error_code convertToErrorCode() const override
void log(llvm::raw_ostream &OS) const override
std::string toString() const
@ Unknown
Not supported node or case.
@ UnsupportedConstruct
Naming ambiguity (likely ODR violation).
auto makeScopedCycleDetection(const FunctionDecl *D)
bool isCycle(const FunctionDecl *D) const
Imports selected nodes from one AST context into another context, merging AST nodes where appropriate...
ASTContext & getFromContext() const
Retrieve the context that AST nodes are being imported from.
ASTContext & getToContext() const
Retrieve the context that AST nodes are being imported into.
DiagnosticBuilder ToDiag(SourceLocation Loc, unsigned DiagID)
Report a diagnostic in the "to" context.
Decl * MapImported(Decl *From, Decl *To)
Store and assign the imported declaration to its counterpart.
static UnsignedOrNone getFieldIndex(Decl *F)
Determine the index of a field in its parent record.
TranslationUnitDecl * GetFromTU(Decl *ToD)
Return the translation unit from where the declaration was imported.
llvm::Expected< DeclContext * > ImportContext(DeclContext *FromDC)
Import the given declaration context from the "from" AST context into the "to" AST context.
llvm::Error ImportDefinition(Decl *From)
Import the definition of the given declaration, including all of the declarations it contains.
virtual Expected< DeclarationName > HandleNameConflict(DeclarationName Name, DeclContext *DC, unsigned IDNS, NamedDecl **Decls, unsigned NumDecls)
Cope with a name conflict when importing a declaration into the given context.
void RegisterImportedDecl(Decl *FromD, Decl *ToD)
std::optional< ASTImportError > getImportDeclErrorIfAny(Decl *FromD) const
Return if import of the given declaration has failed and if yes the kind of the problem.
friend class ASTNodeImporter
llvm::Error ImportTemplateArguments(ArrayRef< TemplateArgument > FromArgs, SmallVectorImpl< TemplateArgument > &ToArgs)
llvm::Error importInto(ImportT &To, const ImportT &From)
Import the given object, returns the result.
virtual void Imported(Decl *From, Decl *To)
Subclasses can override this function to observe all of the From -> To declaration mappings as they a...
DiagnosticBuilder FromDiag(SourceLocation Loc, unsigned DiagID)
Report a diagnostic in the "from" context.
llvm::DenseSet< std::tuple< Decl *, Decl *, int > > NonEquivalentDeclSet
bool IsStructurallyEquivalent(QualType From, QualType To, bool Complain=true)
Determine whether the given types are structurally equivalent.
virtual Expected< Decl * > ImportImpl(Decl *From)
Can be overwritten by subclasses to implement their own import logic.
bool isMinimalImport() const
Whether the importer will perform a minimal import, creating to-be-completed forward declarations whe...
ASTImporter(ASTContext &ToContext, FileManager &ToFileManager, ASTContext &FromContext, FileManager &FromFileManager, bool MinimalImport, std::shared_ptr< ASTImporterSharedState > SharedState=nullptr)
llvm::Expected< ExprWithCleanups::CleanupObject > Import(ExprWithCleanups::CleanupObject From)
Import cleanup objects owned by ExprWithCleanup.
virtual void CompleteDecl(Decl *D)
Called for ObjCInterfaceDecl, ObjCProtocolDecl, and TagDecl.
Decl * GetAlreadyImportedOrNull(const Decl *FromD) const
Return the copy of the given declaration in the "to" context if it has already been imported from the...
void setImportDeclError(Decl *From, ASTImportError Error)
Mark (newly) imported declaration with error.
ExpectedDecl VisitObjCImplementationDecl(ObjCImplementationDecl *D)
ExpectedStmt VisitGenericSelectionExpr(GenericSelectionExpr *E)
ExpectedStmt VisitTypeTraitExpr(TypeTraitExpr *E)
ExpectedDecl VisitTypeAliasTemplateDecl(TypeAliasTemplateDecl *D)
ExpectedDecl VisitObjCInterfaceDecl(ObjCInterfaceDecl *D)
ExpectedStmt VisitDeclRefExpr(DeclRefExpr *E)
ExpectedDecl VisitAccessSpecDecl(AccessSpecDecl *D)
ExpectedDecl VisitFunctionDecl(FunctionDecl *D)
ExpectedDecl VisitParmVarDecl(ParmVarDecl *D)
ExpectedStmt VisitImplicitValueInitExpr(ImplicitValueInitExpr *E)
ExpectedStmt VisitImplicitCastExpr(ImplicitCastExpr *E)
ExpectedDecl VisitCXXMethodDecl(CXXMethodDecl *D)
ExpectedDecl VisitUsingDecl(UsingDecl *D)
ExpectedDecl VisitObjCProtocolDecl(ObjCProtocolDecl *D)
ExpectedStmt VisitStmt(Stmt *S)
ExpectedDecl VisitTranslationUnitDecl(TranslationUnitDecl *D)
ExpectedDecl VisitFieldDecl(FieldDecl *D)
Error ImportFieldDeclDefinition(const FieldDecl *From, const FieldDecl *To)
Error ImportDefinitionIfNeeded(Decl *FromD, Decl *ToD=nullptr)
ExpectedStmt VisitCharacterLiteral(CharacterLiteral *E)
ExpectedStmt VisitCXXConstructExpr(CXXConstructExpr *E)
ExpectedStmt VisitObjCAtThrowStmt(ObjCAtThrowStmt *S)
ExpectedStmt VisitCXXExpansionSelectExpr(CXXExpansionSelectExpr *E)
ExpectedDecl VisitStaticAssertDecl(StaticAssertDecl *D)
ExpectedStmt VisitShuffleVectorExpr(ShuffleVectorExpr *E)
ExpectedDecl VisitObjCPropertyDecl(ObjCPropertyDecl *D)
ExpectedDecl VisitRecordDecl(RecordDecl *D)
ExpectedStmt VisitDependentScopeDeclRefExpr(DependentScopeDeclRefExpr *E)
ExpectedStmt VisitCXXExpansionStmtPattern(CXXExpansionStmtPattern *S)
ExpectedDecl VisitUsingShadowDecl(UsingShadowDecl *D)
Error ImportArrayChecked(const InContainerTy &InContainer, OIter Obegin)
ExpectedStmt VisitObjCAtFinallyStmt(ObjCAtFinallyStmt *S)
StringRef ImportASTStringRef(StringRef FromStr)
T importChecked(Error &Err, const T &From)
ExpectedStmt VisitVAArgExpr(VAArgExpr *E)
ExpectedStmt VisitDefaultStmt(DefaultStmt *S)
ExpectedDecl VisitUnresolvedUsingTypenameDecl(UnresolvedUsingTypenameDecl *D)
ExpectedStmt VisitCXXThrowExpr(CXXThrowExpr *E)
ExpectedDecl VisitLabelDecl(LabelDecl *D)
ExpectedStmt VisitSizeOfPackExpr(SizeOfPackExpr *E)
ExpectedDecl VisitRequiresExprBodyDecl(RequiresExprBodyDecl *E)
ExpectedStmt VisitObjCAtTryStmt(ObjCAtTryStmt *S)
ExpectedStmt VisitUnaryOperator(UnaryOperator *E)
Error ImportTemplateParameterLists(const DeclTy *FromD, DeclTy *ToD)
Error ImportDeclContext(DeclContext *FromDC, bool ForceImport=false)
ExpectedStmt VisitRequiresExpr(RequiresExpr *E)
ExpectedDecl VisitImplicitConceptSpecializationDecl(ImplicitConceptSpecializationDecl *D)
ExpectedStmt VisitContinueStmt(ContinueStmt *S)
ExpectedStmt VisitCXXMemberCallExpr(CXXMemberCallExpr *E)
ExpectedDecl VisitVarDecl(VarDecl *D)
ExpectedStmt VisitCXXStdInitializerListExpr(CXXStdInitializerListExpr *E)
ExpectedDecl VisitUnresolvedUsingValueDecl(UnresolvedUsingValueDecl *D)
Error ImportImplicitMethods(const CXXRecordDecl *From, CXXRecordDecl *To)
ExpectedStmt VisitPseudoObjectExpr(PseudoObjectExpr *E)
ExpectedStmt VisitCXXBindTemporaryExpr(CXXBindTemporaryExpr *E)
ExpectedStmt VisitImaginaryLiteral(ImaginaryLiteral *E)
ExpectedDecl VisitConceptDecl(ConceptDecl *D)
ExpectedDecl VisitLinkageSpecDecl(LinkageSpecDecl *D)
ExpectedDecl VisitCXXDestructorDecl(CXXDestructorDecl *D)
ExpectedStmt VisitCXXNamedCastExpr(CXXNamedCastExpr *E)
ExpectedStmt VisitOffsetOfExpr(OffsetOfExpr *OE)
ExpectedStmt VisitExprWithCleanups(ExprWithCleanups *E)
ExpectedDecl VisitIndirectFieldDecl(IndirectFieldDecl *D)
ExpectedStmt VisitCXXFoldExpr(CXXFoldExpr *E)
ExpectedDecl VisitTypeAliasDecl(TypeAliasDecl *D)
Expected< InheritedConstructor > ImportInheritedConstructor(const InheritedConstructor &From)
ExpectedStmt VisitCXXNewExpr(CXXNewExpr *E)
Error ImportDeclParts(NamedDecl *D, DeclarationName &Name, NamedDecl *&ToD, SourceLocation &Loc)
Error ImportDefinition(RecordDecl *From, RecordDecl *To, ImportDefinitionKind Kind=IDK_Default)
ExpectedStmt VisitObjCAutoreleasePoolStmt(ObjCAutoreleasePoolStmt *S)
ExpectedStmt VisitConstantExpr(ConstantExpr *E)
ExpectedStmt VisitCompoundLiteralExpr(CompoundLiteralExpr *E)
ExpectedStmt VisitCXXScalarValueInitExpr(CXXScalarValueInitExpr *E)
ExpectedDecl VisitDecl(Decl *D)
ExpectedDecl VisitCXXExpansionStmtDecl(CXXExpansionStmtDecl *D)
bool hasSameVisibilityContextAndLinkage(T *Found, T *From)
ExpectedStmt VisitParenExpr(ParenExpr *E)
ExpectedStmt VisitObjCForCollectionStmt(ObjCForCollectionStmt *S)
ExpectedStmt VisitSourceLocExpr(SourceLocExpr *E)
ExpectedStmt VisitInitListExpr(InitListExpr *E)
Expected< FunctionTemplateAndArgsTy > ImportFunctionTemplateWithTemplateArgsFromSpecialization(FunctionDecl *FromFD)
ExpectedStmt VisitReturnStmt(ReturnStmt *S)
SmallVector< TemplateArgument, 8 > TemplateArgsTy
ExpectedStmt VisitAtomicExpr(AtomicExpr *E)
ExpectedStmt VisitConditionalOperator(ConditionalOperator *E)
ExpectedStmt VisitChooseExpr(ChooseExpr *E)
ExpectedStmt VisitCompoundStmt(CompoundStmt *S)
Expected< TemplateArgument > ImportTemplateArgument(const TemplateArgument &From)
ExpectedStmt VisitCXXNullPtrLiteralExpr(CXXNullPtrLiteralExpr *E)
ExpectedStmt VisitCaseStmt(CaseStmt *S)
ExpectedStmt VisitCXXRewrittenBinaryOperator(CXXRewrittenBinaryOperator *E)
ExpectedStmt VisitDesignatedInitExpr(DesignatedInitExpr *E)
ExpectedStmt VisitSubstNonTypeTemplateParmPackExpr(SubstNonTypeTemplateParmPackExpr *E)
ExpectedDecl VisitObjCTypeParamDecl(ObjCTypeParamDecl *D)
ExpectedDecl VisitFileScopeAsmDecl(FileScopeAsmDecl *D)
ExpectedStmt VisitCompoundAssignOperator(CompoundAssignOperator *E)
ExpectedStmt VisitMaterializeTemporaryExpr(MaterializeTemporaryExpr *E)
ExpectedStmt VisitLambdaExpr(LambdaExpr *LE)
ExpectedStmt VisitBinaryOperator(BinaryOperator *E)
ExpectedStmt VisitCallExpr(CallExpr *E)
ExpectedStmt VisitDeclStmt(DeclStmt *S)
ExpectedStmt VisitCXXDeleteExpr(CXXDeleteExpr *E)
ExpectedStmt VisitUnaryExprOrTypeTraitExpr(UnaryExprOrTypeTraitExpr *E)
Error ImportArrayChecked(IIter Ibegin, IIter Iend, OIter Obegin)
ExpectedDecl VisitClassTemplateDecl(ClassTemplateDecl *D)
ExpectedDecl VisitTemplateTypeParmDecl(TemplateTypeParmDecl *D)
Expected< CXXCastPath > ImportCastPath(CastExpr *E)
Expected< APValue > ImportAPValue(const APValue &FromValue)
ExpectedDecl VisitFunctionTemplateDecl(FunctionTemplateDecl *D)
ExpectedStmt VisitGNUNullExpr(GNUNullExpr *E)
ExpectedDecl VisitClassTemplateSpecializationDecl(ClassTemplateSpecializationDecl *D)
ExpectedStmt VisitCXXDefaultArgExpr(CXXDefaultArgExpr *E)
ExpectedDecl VisitLifetimeExtendedTemporaryDecl(LifetimeExtendedTemporaryDecl *D)
Expected< concepts::Requirement * > ImportNestedRequirement(concepts::NestedRequirement *From)
ExpectedDecl VisitTypedefNameDecl(TypedefNameDecl *D, bool IsAlias)
ExpectedDecl VisitCXXConstructorDecl(CXXConstructorDecl *D)
ExpectedDecl VisitObjCCategoryImplDecl(ObjCCategoryImplDecl *D)
ExpectedDecl VisitObjCIvarDecl(ObjCIvarDecl *D)
Expected< ObjCTypeParamList * > ImportObjCTypeParamList(ObjCTypeParamList *list)
ExpectedDecl VisitUsingPackDecl(UsingPackDecl *D)
ExpectedStmt VisitWhileStmt(WhileStmt *S)
ExpectedDecl VisitEnumConstantDecl(EnumConstantDecl *D)
ExpectedStmt VisitUnresolvedMemberExpr(UnresolvedMemberExpr *E)
ExpectedStmt VisitCXXForRangeStmt(CXXForRangeStmt *S)
ExpectedDecl VisitFriendDecl(FriendDecl *D)
Error ImportContainerChecked(const InContainerTy &InContainer, OutContainerTy &OutContainer)
ExpectedStmt VisitCXXBoolLiteralExpr(CXXBoolLiteralExpr *E)
ExpectedStmt VisitExpressionTraitExpr(ExpressionTraitExpr *E)
bool IsStructuralMatch(Decl *From, Decl *To, bool Complain=true, bool IgnoreTemplateParmDepth=false)
ExpectedStmt VisitFixedPointLiteral(FixedPointLiteral *E)
ExpectedStmt VisitForStmt(ForStmt *S)
ExpectedStmt VisitUnresolvedLookupExpr(UnresolvedLookupExpr *E)
ExpectedDecl VisitEnumDecl(EnumDecl *D)
ExpectedStmt VisitCXXExpansionStmtInstantiation(CXXExpansionStmtInstantiation *S)
ExpectedDecl VisitFriendTemplateDecl(FriendTemplateDecl *D)
ExpectedStmt VisitCXXParenListInitExpr(CXXParenListInitExpr *E)
ExpectedDecl VisitObjCCategoryDecl(ObjCCategoryDecl *D)
ExpectedStmt VisitAddrLabelExpr(AddrLabelExpr *E)
ExpectedStmt VisitBinaryConditionalOperator(BinaryConditionalOperator *E)
ExpectedStmt VisitSwitchStmt(SwitchStmt *S)
ExpectedType VisitType(const Type *T)
ExpectedDecl VisitVarTemplateDecl(VarTemplateDecl *D)
ExpectedDecl ImportUsingShadowDecls(BaseUsingDecl *D, BaseUsingDecl *ToSI)
ExpectedStmt VisitPredefinedExpr(PredefinedExpr *E)
ExpectedStmt VisitOpaqueValueExpr(OpaqueValueExpr *E)
ExpectedDecl VisitNamespaceAliasDecl(NamespaceAliasDecl *D)
ExpectedStmt VisitCXXInheritedCtorInitExpr(CXXInheritedCtorInitExpr *E)
ExpectedDecl VisitVarTemplateSpecializationDecl(VarTemplateSpecializationDecl *D)
ExpectedStmt VisitPackExpansionExpr(PackExpansionExpr *E)
ExpectedStmt VisitCXXUnresolvedConstructExpr(CXXUnresolvedConstructExpr *E)
ExpectedDecl VisitObjCMethodDecl(ObjCMethodDecl *D)
Error ImportTemplateArguments(ArrayRef< TemplateArgument > FromArgs, SmallVectorImpl< TemplateArgument > &ToArgs)
ExpectedDecl VisitObjCPropertyImplDecl(ObjCPropertyImplDecl *D)
ExpectedStmt VisitCXXTemporaryObjectExpr(CXXTemporaryObjectExpr *E)
ExpectedDecl VisitImplicitParamDecl(ImplicitParamDecl *D)
ExpectedDecl VisitNonTypeTemplateParmDecl(NonTypeTemplateParmDecl *D)
ExpectedStmt VisitExplicitCastExpr(ExplicitCastExpr *E)
ExpectedStmt VisitArrayInitIndexExpr(ArrayInitIndexExpr *E)
Error ImportTemplateArgumentListInfo(const InContainerTy &Container, TemplateArgumentListInfo &ToTAInfo)
ExpectedStmt VisitDoStmt(DoStmt *S)
ExpectedStmt VisitNullStmt(NullStmt *S)
ExpectedStmt VisitCXXPseudoDestructorExpr(CXXPseudoDestructorExpr *E)
ExpectedDecl VisitBuiltinTemplateDecl(BuiltinTemplateDecl *D)
Error ImportOverriddenMethods(CXXMethodDecl *ToMethod, CXXMethodDecl *FromMethod)
ExpectedStmt VisitStringLiteral(StringLiteral *E)
Error ImportDeclarationNameLoc(const DeclarationNameInfo &From, DeclarationNameInfo &To)
ExpectedStmt VisitCXXDependentScopeMemberExpr(CXXDependentScopeMemberExpr *E)
ASTNodeImporter(ASTImporter &Importer)
ExpectedDecl VisitCXXDeductionGuideDecl(CXXDeductionGuideDecl *D)
ExpectedStmt VisitMemberExpr(MemberExpr *E)
ExpectedStmt VisitConceptSpecializationExpr(ConceptSpecializationExpr *E)
ExpectedStmt VisitCXXThisExpr(CXXThisExpr *E)
Error ImportInitializer(VarDecl *From, VarDecl *To)
ImportDefinitionKind
What we should import from the definition.
@ IDK_Everything
Import everything.
@ IDK_Default
Import the default subset of the definition, which might be nothing (if minimal import is set) or mig...
@ IDK_Basic
Import only the bare bones needed to establish a valid DeclContext.
ExpectedDecl VisitTypedefDecl(TypedefDecl *D)
ExpectedDecl VisitUsingDirectiveDecl(UsingDirectiveDecl *D)
ExpectedStmt VisitDependentTemplateIdExpr(DependentTemplateIdExpr *E)
ExpectedStmt VisitArrayTypeTraitExpr(ArrayTypeTraitExpr *E)
ExpectedDecl VisitTemplateTemplateParmDecl(TemplateTemplateParmDecl *D)
Expected< concepts::Requirement * > ImportExprRequirement(concepts::ExprRequirement *From)
ExpectedStmt VisitFloatingLiteral(FloatingLiteral *E)
ExpectedStmt VisitIfStmt(IfStmt *S)
ExpectedStmt VisitLabelStmt(LabelStmt *S)
ExpectedStmt VisitCXXTypeidExpr(CXXTypeidExpr *E)
ExpectedStmt VisitConvertVectorExpr(ConvertVectorExpr *E)
ExpectedDecl VisitUsingEnumDecl(UsingEnumDecl *D)
ExpectedStmt VisitGotoStmt(GotoStmt *S)
ExpectedStmt VisitSubstNonTypeTemplateParmExpr(SubstNonTypeTemplateParmExpr *E)
ExpectedStmt VisitObjCAtSynchronizedStmt(ObjCAtSynchronizedStmt *S)
ExpectedStmt VisitGCCAsmStmt(GCCAsmStmt *S)
ExpectedDecl VisitNamespaceDecl(NamespaceDecl *D)
ExpectedStmt VisitCXXTryStmt(CXXTryStmt *S)
Error ImportConstraintSatisfaction(const ASTConstraintSatisfaction &FromSat, ConstraintSatisfaction &ToSat)
ExpectedDecl VisitImportDecl(ImportDecl *D)
Error ImportFunctionDeclBody(FunctionDecl *FromFD, FunctionDecl *ToFD)
ExpectedStmt VisitArraySubscriptExpr(ArraySubscriptExpr *E)
Expected< concepts::Requirement * > ImportTypeRequirement(concepts::TypeRequirement *From)
ExpectedStmt VisitIntegerLiteral(IntegerLiteral *E)
ExpectedDecl VisitEmptyDecl(EmptyDecl *D)
ExpectedStmt VisitCXXNoexceptExpr(CXXNoexceptExpr *E)
ExpectedStmt VisitExpr(Expr *E)
Error ImportDefaultArgOfParmVarDecl(const ParmVarDecl *FromParam, ParmVarDecl *ToParam)
ExpectedStmt VisitArrayInitLoopExpr(ArrayInitLoopExpr *E)
ExpectedStmt VisitCXXCatchStmt(CXXCatchStmt *S)
ExpectedStmt VisitAttributedStmt(AttributedStmt *S)
ExpectedStmt VisitIndirectGotoStmt(IndirectGotoStmt *S)
ExpectedStmt VisitParenListExpr(ParenListExpr *E)
Expected< FunctionDecl * > FindFunctionTemplateSpecialization(FunctionDecl *FromFD)
ExpectedDecl VisitCXXConversionDecl(CXXConversionDecl *D)
ExpectedStmt VisitObjCAtCatchStmt(ObjCAtCatchStmt *S)
Error ImportTemplateInformation(FunctionDecl *FromFD, FunctionDecl *ToFD)
ExpectedStmt VisitStmtExpr(StmtExpr *E)
ExpectedStmt VisitCXXDefaultInitExpr(CXXDefaultInitExpr *E)
bool shouldForceImportDeclContext(ImportDefinitionKind IDK)
ExpectedDecl VisitBindingDecl(BindingDecl *D)
std::tuple< FunctionTemplateDecl *, TemplateArgsTy > FunctionTemplateAndArgsTy
ExpectedStmt VisitBreakStmt(BreakStmt *S)
DesignatedInitExpr::Designator Designator
ExpectedDecl VisitTemplateParamObjectDecl(TemplateParamObjectDecl *D)
SourceLocation getColonLoc() const
SourceLocation getQuestionLoc() const
Represents an access specifier followed by colon ':'.
SourceLocation getColonLoc() const
The location of the colon following the access specifier.
AddrLabelExpr - The GNU address of label extension, representing &&label.
SourceLocation getAmpAmpLoc() const
SourceLocation getLabelLoc() const
LabelDecl * getLabel() const
Represents the index of the current element of an array being initialized by an ArrayInitLoopExpr.
Represents a loop initializing the elements of an array.
OpaqueValueExpr * getCommonExpr() const
Get the common subexpression shared by all initializations (the source array).
Expr * getSubExpr() const
Get the initializer to use for each array element.
ArraySubscriptExpr - [C99 6.5.2.1] Array Subscripting.
SourceLocation getRBracketLoc() const
Expr * getLHS()
An array access can be written A[4] or 4[A] (both are equivalent).
An Embarcadero array type trait, as used in the implementation of __array_rank and __array_extent.
uint64_t getValue() const
SourceLocation getEndLoc() const LLVM_READONLY
ArrayTypeTrait getTrait() const
Expr * getDimensionExpression() const
TypeSourceInfo * getQueriedTypeSourceInfo() const
SourceLocation getBeginLoc() const LLVM_READONLY
Represents an array type, per C99 6.7.5.2 - Array Declarators.
SourceLocation getAsmLoc() const
unsigned getNumClobbers() const
unsigned getNumOutputs() const
unsigned getNumInputs() const
A structure for storing the information associated with a name that has been assumed to be a template...
DeclarationName getDeclName() const
Get the name of the template.
AtomicExpr - Variadic atomic builtins: __atomic_exchange, __atomic_fetch_*, __atomic_load,...
SourceLocation getRParenLoc() const
static unsigned getNumSubExprs(AtomicOp Op)
Determine the number of arguments the specified atomic builtin should have.
SourceLocation getBuiltinLoc() const
Attr - This represents one attribute.
attr::Kind getKind() const
void setPackExpansion(bool PE)
Attr * clone(ASTContext &C) const
SourceRange getRange() const
void setRange(SourceRange R)
void setAttrName(const IdentifierInfo *AttrNameII)
const IdentifierInfo * getAttrName() const
Represents an attribute applied to a statement.
SourceLocation getAttrLoc() const
ArrayRef< const Attr * > getAttrs() const
static AttributedStmt * Create(const ASTContext &C, SourceLocation Loc, ArrayRef< const Attr * > Attrs, Stmt *SubStmt)
Represents a C++ declaration that introduces decls from somewhere else.
void addShadowDecl(UsingShadowDecl *S)
shadow_range shadows() const
BinaryConditionalOperator - The GNU extension to the conditional operator which allows the middle ope...
Expr * getFalseExpr() const
getFalseExpr - Return the subexpression which will be evaluated if the condition evaluates to false; ...
OpaqueValueExpr * getOpaqueValue() const
getOpaqueValue - Return the opaque value placeholder.
Expr * getCond() const
getCond - Return the condition expression; this is defined in terms of the opaque value.
Expr * getTrueExpr() const
getTrueExpr - Return the subexpression which will be evaluated if the condition evaluates to true; th...
Expr * getCommon() const
getCommon - Return the common expression, written to the left of the condition.
A builtin binary operation expression such as "x + y" or "x <= y".
SourceLocation getOperatorLoc() const
static BinaryOperator * Create(const ASTContext &C, Expr *lhs, Expr *rhs, Opcode opc, QualType ResTy, ExprValueKind VK, ExprObjectKind OK, SourceLocation opLoc, FPOptionsOverride FPFeatures)
FPOptionsOverride getFPFeatures() const
A binding in a decomposition declaration.
void setDecomposedDecl(DecompositionDecl *Decomposed)
Set the decomposed variable for this BindingDecl.
Expr * getBinding() const
Get the expression to which this declaration is bound.
DecompositionDecl * getDecomposedDecl() const
Get the decomposition declaration that this binding represents a decomposition of.
void setBinding(QualType DeclaredType, Expr *Binding)
Set the binding for this BindingDecl, along with its declared type (which should be a possibly-cv-qua...
BreakStmt - This represents a break.
Represents a C++2a __builtin_bit_cast(T, v) expression.
Represents the builtin template declaration which is used to implement __make_integer_seq and other b...
BuiltinTemplateKind getBuiltinTemplateKind() const
This class is used for builtin types like 'int'.
static CStyleCastExpr * Create(const ASTContext &Context, QualType T, ExprValueKind VK, CastKind K, Expr *Op, const CXXCastPath *BasePath, FPOptionsOverride FPO, TypeSourceInfo *WrittenTy, SourceLocation L, SourceLocation R)
Represents a base class of a C++ class.
AccessSpecifier getAccessSpecifierAsWritten() const
Retrieves the access specifier as written in the source code (which may mean that no access specifier...
SourceLocation getEllipsisLoc() const
For a pack expansion, determine the location of the ellipsis.
bool isVirtual() const
Determines whether the base class is a virtual base class (or not).
TypeSourceInfo * getTypeSourceInfo() const
Retrieves the type and source location of the base class.
bool isBaseOfClass() const
Determine whether this base class is a base of a class declared with the 'class' keyword (vs.
SourceRange getSourceRange() const LLVM_READONLY
Retrieves the source range that contains the entire base specifier.
Represents binding an expression to a temporary.
CXXTemporary * getTemporary()
static CXXBindTemporaryExpr * Create(const ASTContext &C, CXXTemporary *Temp, Expr *SubExpr)
const Expr * getSubExpr() const
A boolean literal, per ([C++ lex.bool] Boolean literals).
static CXXBoolLiteralExpr * Create(const ASTContext &C, bool Val, QualType Ty, SourceLocation Loc)
SourceLocation getLocation() const
CXXCatchStmt - This represents a C++ catch block.
SourceLocation getCatchLoc() const
Stmt * getHandlerBlock() const
VarDecl * getExceptionDecl() const
static CXXConstCastExpr * Create(const ASTContext &Context, QualType T, ExprValueKind VK, Expr *Op, TypeSourceInfo *WrittenTy, SourceLocation L, SourceLocation RParenLoc, SourceRange AngleBrackets)
Represents a call to a C++ constructor.
SourceRange getParenOrBraceRange() const
void setIsImmediateEscalating(bool Set)
bool isElidable() const
Whether this construction is elidable.
bool hadMultipleCandidates() const
Whether the referred constructor was resolved from an overloaded set having size greater than 1.
static CXXConstructExpr * Create(const ASTContext &Ctx, QualType Ty, SourceLocation Loc, CXXConstructorDecl *Ctor, bool Elidable, ArrayRef< Expr * > Args, bool HadMultipleCandidates, bool ListInitialization, bool StdInitListInitialization, bool ZeroInitialization, CXXConstructionKind ConstructKind, SourceRange ParenOrBraceRange)
Create a C++ construction expression.
bool isStdInitListInitialization() const
Whether this constructor call was written as list-initialization, but was interpreted as forming a st...
bool isImmediateEscalating() const
bool requiresZeroInitialization() const
Whether this construction first requires zero-initialization before the initializer is called.
SourceLocation getLocation() const
CXXConstructorDecl * getConstructor() const
Get the constructor that this expression will (ultimately) call.
bool isListInitialization() const
Whether this constructor call was written as list-initialization.
unsigned getNumArgs() const
Return the number of arguments to the constructor call.
CXXConstructionKind getConstructionKind() const
Determine whether this constructor is actually constructing a base class (rather than a complete obje...
Represents a C++ constructor within a class.
Represents a C++ conversion function within a class.
Represents a C++ base or member initializer.
FieldDecl * getMember() const
If this is a member initializer, returns the declaration of the non-static data member being initiali...
bool isDelegatingInitializer() const
Determine whether this initializer is creating a delegating constructor.
Expr * getInit() const
Get the initializer.
SourceLocation getRParenLoc() const
SourceLocation getEllipsisLoc() const
SourceLocation getLParenLoc() const
bool isPackExpansion() const
Determine whether this initializer is a pack expansion.
TypeSourceInfo * getTypeSourceInfo() const
Returns the declarator information for a base class or delegating initializer.
bool isMemberInitializer() const
Determine whether this initializer is initializing a non-static data member.
bool isBaseInitializer() const
Determine whether this initializer is initializing a base class.
bool isIndirectMemberInitializer() const
SourceLocation getMemberLocation() const
IndirectFieldDecl * getIndirectMember() const
bool isBaseVirtual() const
Returns whether the base is virtual or not.
Represents a C++ deduction guide declaration.
SourceDeductionGuideKind getSourceDeductionGuideKind() const
A default argument (C++ [dcl.fct.default]).
SourceLocation getUsedLocation() const
Retrieve the location where this default argument was actually used.
const ParmVarDecl * getParam() const
Expr * getRewrittenExpr()
const DeclContext * getUsedContext() const
static CXXDefaultArgExpr * Create(const ASTContext &C, SourceLocation Loc, ParmVarDecl *Param, Expr *RewrittenExpr, DeclContext *UsedContext)
bool hasRewrittenInit() const
A use of a default initializer in a constructor or in aggregate initialization.
static CXXDefaultInitExpr * Create(const ASTContext &Ctx, SourceLocation Loc, FieldDecl *Field, DeclContext *UsedContext, Expr *RewrittenInitExpr)
Field is the non-static data member whose default initializer is used by this expression.
const DeclContext * getUsedContext() const
const Expr * getRewrittenExpr() const
Retrieve the initializing expression with evaluated immediate calls, if any.
bool hasRewrittenInit() const
FieldDecl * getField()
Get the field whose initializer will be used.
SourceLocation getBeginLoc() const
Represents a delete expression for memory deallocation and destructor calls, e.g.
FunctionDecl * getOperatorDelete() const
SourceLocation getBeginLoc() const
bool isGlobalDelete() const
bool doesUsualArrayDeleteWantSize() const
Answers whether the usual array deallocation function for the allocated type expects the size of the ...
bool isArrayFormAsWritten() const
Represents a C++ member access expression where the actual member referenced could not be resolved be...
bool isArrow() const
Determine whether this member expression used the '->' operator; otherwise, it used the '.
SourceLocation getOperatorLoc() const
Retrieve the location of the '->' or '.' operator.
static CXXDependentScopeMemberExpr * Create(const ASTContext &Ctx, Expr *Base, QualType BaseType, bool IsArrow, SourceLocation OperatorLoc, NestedNameSpecifierLoc QualifierLoc, SourceLocation TemplateKWLoc, NamedDecl *FirstQualifierFoundInScope, DeclarationNameInfo MemberNameInfo, const TemplateArgumentListInfo *TemplateArgs)
SourceLocation getLAngleLoc() const
Retrieve the location of the left angle bracket starting the explicit template argument list followin...
SourceLocation getTemplateKeywordLoc() const
Retrieve the location of the template keyword preceding the member name, if any.
const DeclarationNameInfo & getMemberNameInfo() const
Retrieve the name of the member that this expression refers to.
bool hasExplicitTemplateArgs() const
Determines whether this member expression actually had a C++ template argument list explicitly specif...
SourceLocation getMemberLoc() const
SourceLocation getRAngleLoc() const
Retrieve the location of the right angle bracket ending the explicit template argument list following...
DeclarationName getMember() const
Retrieve the name of the member that this expression refers to.
NamedDecl * getFirstQualifierFoundInScope() const
Retrieve the first part of the nested-name-specifier that was found in the scope of the member access...
Expr * getBase() const
Retrieve the base object of this member expressions, e.g., the x in x.m.
NestedNameSpecifierLoc getQualifierLoc() const
Retrieve the nested-name-specifier that qualifies the member name, with source location information.
bool isImplicitAccess() const
True if this is an implicit access, i.e.
ArrayRef< TemplateArgumentLoc > template_arguments() const
Represents a C++ destructor within a class.
void setOperatorDelete(FunctionDecl *OD, Expr *ThisArg)
static CXXDynamicCastExpr * Create(const ASTContext &Context, QualType T, ExprValueKind VK, CastKind Kind, Expr *Op, const CXXCastPath *Path, TypeSourceInfo *Written, SourceLocation L, SourceLocation RParenLoc, SourceRange AngleBrackets)
Helper that selects an expression from an InitListExpr depending on the current expansion index.
InitListExpr * getRangeExpr()
Represents a C++26 expansion statement declaration.
CXXExpansionStmtPattern * getExpansionPattern()
CXXExpansionStmtInstantiation * getInstantiations()
void setInstantiations(CXXExpansionStmtInstantiation *S)
NonTypeTemplateParmDecl * getIndexTemplateParm()
void setExpansionPattern(CXXExpansionStmtPattern *S)
Represents the code generated for an expanded expansion statement.
ArrayRef< Stmt * > getInstantiations() const
bool shouldApplyLifetimeExtensionToPreamble() const
CXXExpansionStmtDecl * getParent()
ArrayRef< Stmt * > getPreambleStmts() const
static CXXExpansionStmtInstantiation * Create(ASTContext &C, CXXExpansionStmtDecl *Parent, ArrayRef< Stmt * > Instantiations, ArrayRef< Stmt * > PreambleStmts, bool ShouldApplyLifetimeExtensionToPreamble)
CXXExpansionStmtPattern - Represents an unexpanded C++ expansion statement.
ExpansionStmtKind getKind() const
static CXXExpansionStmtPattern * CreateIterating(ASTContext &Context, CXXExpansionStmtDecl *ESD, Stmt *Init, DeclStmt *ExpansionVar, DeclStmt *Range, DeclStmt *Begin, DeclStmt *Iter, SourceLocation LParenLoc, SourceLocation ColonLoc, SourceLocation RParenLoc)
Create an iterating expansion statement pattern.
const DeclStmt * getIterVarStmt() const
DeclStmt * getExpansionVarStmt()
static CXXExpansionStmtPattern * CreateDependent(ASTContext &Context, CXXExpansionStmtDecl *ESD, Stmt *Init, DeclStmt *ExpansionVar, Expr *ExpansionInitializer, SourceLocation LParenLoc, SourceLocation ColonLoc, SourceLocation RParenLoc)
Create a dependent expansion statement pattern.
SourceLocation getRParenLoc() const
static CXXExpansionStmtPattern * CreateDestructuring(ASTContext &Context, CXXExpansionStmtDecl *ESD, Stmt *Init, DeclStmt *ExpansionVar, Stmt *DecompositionDeclStmt, SourceLocation LParenLoc, SourceLocation ColonLoc, SourceLocation RParenLoc)
Create a destructuring expansion statement pattern.
Stmt * getDecompositionDeclStmt()
const DeclStmt * getBeginVarStmt() const
SourceLocation getColonLoc() const
Expr * getExpansionInitializer()
const DeclStmt * getRangeVarStmt() const
CXXExpansionStmtDecl * getDecl()
static CXXExpansionStmtPattern * CreateEnumerating(ASTContext &Context, CXXExpansionStmtDecl *ESD, Stmt *Init, DeclStmt *ExpansionVar, SourceLocation LParenLoc, SourceLocation ColonLoc, SourceLocation RParenLoc)
Create an enumerating expansion statement pattern.
SourceLocation getLParenLoc() const
Represents a folding of a pack over an operator.
UnresolvedLookupExpr * getCallee() const
SourceLocation getLParenLoc() const
SourceLocation getEllipsisLoc() const
UnsignedOrNone getNumExpansions() const
SourceLocation getRParenLoc() const
BinaryOperatorKind getOperator() const
CXXForRangeStmt - This represents C++0x [stmt.ranged]'s ranged for statement, represented as 'for (ra...
DeclStmt * getBeginStmt()
DeclStmt * getLoopVarStmt()
SourceLocation getForLoc() const
DeclStmt * getRangeStmt()
SourceLocation getRParenLoc() const
SourceLocation getColonLoc() const
SourceLocation getCoawaitLoc() const
static CXXFunctionalCastExpr * Create(const ASTContext &Context, QualType T, ExprValueKind VK, TypeSourceInfo *Written, CastKind Kind, Expr *Op, const CXXCastPath *Path, FPOptionsOverride FPO, SourceLocation LPLoc, SourceLocation RPLoc)
Represents a call to an inherited base class constructor from an inheriting constructor.
bool constructsVBase() const
Determine whether this constructor is actually constructing a base class (rather than a complete obje...
CXXConstructorDecl * getConstructor() const
Get the constructor that this expression will call.
SourceLocation getLocation() const LLVM_READONLY
bool inheritedFromVBase() const
Determine whether the inherited constructor is inherited from a virtual base of the object we constru...
Represents a call to a member function that may be written either with member call syntax (e....
static CXXMemberCallExpr * Create(const ASTContext &Ctx, Expr *Fn, ArrayRef< Expr * > Args, QualType Ty, ExprValueKind VK, SourceLocation RP, FPOptionsOverride FPFeatures, unsigned MinNumArgs=0)
Represents a static or instance method of a struct/union/class.
void addOverriddenMethod(const CXXMethodDecl *MD)
overridden_method_range overridden_methods() const
CXXMethodDecl * getCanonicalDecl() override
Retrieves the "canonical" declaration of the given declaration.
Abstract class common to all of the C++ "named"/"keyword" casts.
SourceLocation getOperatorLoc() const
Retrieve the location of the cast operator keyword, e.g., static_cast.
SourceRange getAngleBrackets() const LLVM_READONLY
SourceLocation getRParenLoc() const
Retrieve the location of the closing parenthesis.
Represents a new-expression for memory allocation and constructor calls, e.g: "new CXXNewExpr(foo)".
static CXXNewExpr * Create(const ASTContext &Ctx, bool IsGlobalNew, FunctionDecl *OperatorNew, FunctionDecl *OperatorDelete, const ImplicitAllocationParameters &IAP, bool UsualArrayDeleteWantsSize, ArrayRef< Expr * > PlacementArgs, SourceRange TypeIdParens, std::optional< Expr * > ArraySize, CXXNewInitializationStyle InitializationStyle, Expr *Initializer, QualType Ty, TypeSourceInfo *AllocatedTypeInfo, SourceRange Range, SourceRange DirectInitRange)
Create a c++ new expression.
SourceRange getDirectInitRange() const
llvm::iterator_range< arg_iterator > placement_arguments()
std::optional< Expr * > getArraySize()
This might return std::nullopt even if isArray() returns true, since there might not be an array size...
CXXNewInitializationStyle getInitializationStyle() const
The kind of initializer this new-expression has.
ImplicitAllocationParameters implicitAllocationParameters() const
Provides the full set of information about expected implicit parameters in this call.
FunctionDecl * getOperatorDelete() const
unsigned getNumPlacementArgs() const
TypeSourceInfo * getAllocatedTypeSourceInfo() const
SourceRange getSourceRange() const
SourceRange getTypeIdParens() const
bool doesUsualArrayDeleteWantSize() const
Answers whether the usual array deallocation function for the allocated type expects the size of the ...
FunctionDecl * getOperatorNew() const
Expr * getInitializer()
The initializer of this new-expression.
Represents a C++11 noexcept expression (C++ [expr.unary.noexcept]).
SourceLocation getEndLoc() const
Expr * getOperand() const
SourceLocation getBeginLoc() const
The null pointer literal (C++11 [lex.nullptr])
SourceLocation getLocation() const
static CXXOperatorCallExpr * Create(const ASTContext &Ctx, OverloadedOperatorKind OpKind, Expr *Fn, ArrayRef< Expr * > Args, QualType Ty, ExprValueKind VK, SourceLocation OperatorLoc, FPOptionsOverride FPFeatures, ADLCallKind UsesADL=NotADL, bool IsReversed=false)
Represents a list-initialization with parenthesis.
static CXXParenListInitExpr * Create(ASTContext &C, ArrayRef< Expr * > Args, QualType T, unsigned NumUserSpecifiedExprs, SourceLocation InitLoc, SourceLocation LParenLoc, SourceLocation RParenLoc)
SourceLocation getEndLoc() const LLVM_READONLY
SourceLocation getInitLoc() const LLVM_READONLY
MutableArrayRef< Expr * > getInitExprs()
SourceLocation getBeginLoc() const LLVM_READONLY
MutableArrayRef< Expr * > getUserSpecifiedInitExprs()
Represents a C++ pseudo-destructor (C++ [expr.pseudo]).
TypeSourceInfo * getDestroyedTypeInfo() const
Retrieve the source location information for the type being destroyed.
bool isArrow() const
Determine whether this pseudo-destructor expression was written using an '->' (otherwise,...
TypeSourceInfo * getScopeTypeInfo() const
Retrieve the scope type in a qualified pseudo-destructor expression.
SourceLocation getTildeLoc() const
Retrieve the location of the '~'.
NestedNameSpecifierLoc getQualifierLoc() const
Retrieves the nested-name-specifier that qualifies the type name, with source-location information.
SourceLocation getDestroyedTypeLoc() const
Retrieve the starting location of the type being destroyed.
SourceLocation getColonColonLoc() const
Retrieve the location of the '::' in a qualified pseudo-destructor expression.
SourceLocation getOperatorLoc() const
Retrieve the location of the '.' or '->' operator.
const IdentifierInfo * getDestroyedTypeIdentifier() const
In a dependent pseudo-destructor expression for which we do not have full type information on the des...
Represents a C++ struct/union/class.
CXXRecordDecl * getMostRecentDecl()
CXXRecordDecl * getInstantiatedFromMemberClass() const
If this record is an instantiation of a member class, retrieves the member class from which it was in...
method_range methods() const
CXXRecordDecl * getDefinition() const
static CXXRecordDecl * CreateLambda(const ASTContext &C, DeclContext *DC, TypeSourceInfo *Info, SourceLocation Loc, unsigned DependencyKind, bool IsGeneric, LambdaCaptureDefault CaptureDefault)
TemplateSpecializationKind getTemplateSpecializationKind() const
Determine whether this particular class is a specialization or instantiation of a class template or m...
void setInstantiationOfMemberClass(CXXRecordDecl *RD, TemplateSpecializationKind TSK)
Specify that this record is an instantiation of the member class RD.
void setLambdaContextDecl(Decl *ContextDecl)
Set the context declaration for a lambda class.
void setDescribedClassTemplate(ClassTemplateDecl *Template)
void setLambdaNumbering(LambdaNumbering Numbering)
Set the mangling numbers for a lambda class.
MemberSpecializationInfo * getMemberSpecializationInfo() const
If this class is an instantiation of a member class of a class template specialization,...
void setTemplateSpecializationKind(TemplateSpecializationKind TSK)
Set the kind of specialization or template instantiation this is.
CXXRecordDecl * getPreviousDecl()
static CXXReinterpretCastExpr * Create(const ASTContext &Context, QualType T, ExprValueKind VK, CastKind Kind, Expr *Op, const CXXCastPath *Path, TypeSourceInfo *WrittenTy, SourceLocation L, SourceLocation RParenLoc, SourceRange AngleBrackets)
A rewritten comparison expression that was originally written using operator syntax.
Expr * getSemanticForm()
Get an equivalent semantic form for this expression.
bool isReversed() const
Determine whether this expression was rewritten in reverse form.
An expression "T()" which creates an rvalue of a non-class type T.
TypeSourceInfo * getTypeSourceInfo() const
SourceLocation getRParenLoc() const
static CXXStaticCastExpr * Create(const ASTContext &Context, QualType T, ExprValueKind VK, CastKind K, Expr *Op, const CXXCastPath *Path, TypeSourceInfo *Written, FPOptionsOverride FPO, SourceLocation L, SourceLocation RParenLoc, SourceRange AngleBrackets)
Implicit construction of a std::initializer_list<T> object from an array temporary within list-initia...
Represents a C++ functional cast expression that builds a temporary object.
static CXXTemporaryObjectExpr * Create(const ASTContext &Ctx, CXXConstructorDecl *Cons, QualType Ty, TypeSourceInfo *TSI, ArrayRef< Expr * > Args, SourceRange ParenOrBraceRange, bool HadMultipleCandidates, bool ListInitialization, bool StdInitListInitialization, bool ZeroInitialization)
TypeSourceInfo * getTypeSourceInfo() const
Represents a C++ temporary.
static CXXTemporary * Create(const ASTContext &C, const CXXDestructorDecl *Destructor)
Represents the this expression in C++.
static CXXThisExpr * Create(const ASTContext &Ctx, SourceLocation L, QualType Ty, bool IsImplicit)
SourceLocation getLocation() const
A C++ throw-expression (C++ [except.throw]).
const Expr * getSubExpr() const
SourceLocation getThrowLoc() const
bool isThrownVariableInScope() const
Determines whether the variable thrown by this expression (if any!) is within the innermost try block...
CXXTryStmt - A C++ try block, including all handlers.
SourceLocation getTryLoc() const
CXXCatchStmt * getHandler(unsigned i)
unsigned getNumHandlers() const
static CXXTryStmt * Create(const ASTContext &C, SourceLocation tryLoc, CompoundStmt *tryBlock, ArrayRef< Stmt * > handlers)
CompoundStmt * getTryBlock()
A C++ typeid expression (C++ [expr.typeid]), which gets the type_info that corresponds to the supplie...
bool isTypeOperand() const
TypeSourceInfo * getTypeOperandSourceInfo() const
Retrieve source information for the type operand.
Expr * getExprOperand() const
SourceRange getSourceRange() const LLVM_READONLY
Describes an explicit type conversion that uses functional notion but could not be resolved because o...
SourceLocation getLParenLoc() const
Retrieve the location of the left parentheses ('(') that precedes the argument list.
bool isListInitialization() const
Determine whether this expression models list-initialization.
static CXXUnresolvedConstructExpr * Create(const ASTContext &Context, QualType T, TypeSourceInfo *TSI, SourceLocation LParenLoc, ArrayRef< Expr * > Args, SourceLocation RParenLoc, bool IsListInit)
TypeSourceInfo * getTypeSourceInfo() const
Retrieve the type source information for the type being constructed.
SourceLocation getRParenLoc() const
Retrieve the location of the right parentheses (')') that follows the argument list.
unsigned getNumArgs() const
Retrieve the number of arguments.
CallExpr - Represents a function call (C99 6.5.2.2, C++ [expr.call]).
static CallExpr * Create(const ASTContext &Ctx, Expr *Fn, ArrayRef< Expr * > Args, QualType Ty, ExprValueKind VK, SourceLocation RParenLoc, FPOptionsOverride FPFeatures, unsigned MinNumArgs=0, ADLCallKind UsesADL=NotADL)
Create a call expression.
ADLCallKind getADLCallKind() const
FPOptionsOverride getFPFeatures() const
unsigned getNumArgs() const
getNumArgs - Return the number of actual arguments to this call.
SourceLocation getRParenLoc() const
CaseStmt - Represent a case statement.
SourceLocation getEllipsisLoc() const
Get the location of the ... in a case statement of the form LHS ... RHS.
static CaseStmt * Create(const ASTContext &Ctx, Expr *lhs, Expr *rhs, SourceLocation caseLoc, SourceLocation ellipsisLoc, SourceLocation colonLoc)
Build a case statement.
SourceLocation getCaseLoc() const
CastExpr - Base class for type casts, including both implicit casts (ImplicitCastExpr) and explicit c...
path_iterator path_begin()
CastKind getCastKind() const
FPOptionsOverride getFPFeatures() const
CharUnits - This is an opaque type for sizes expressed in character units.
SourceLocation getLocation() const
unsigned getValue() const
CharacterLiteralKind getKind() const
How to handle import errors that occur when import of a child declaration of a DeclContext fails.
bool ignoreChildErrorOnParent(Decl *FromChildD) const
Determine if import failure of a child does not cause import failure of its parent.
ChildErrorHandlingStrategy(const Decl *FromD)
void handleChildImportResult(Error &ResultErr, Error &&ChildErr)
Process the import result of a child (of the current declaration).
ChildErrorHandlingStrategy(const DeclContext *FromDC)
ChooseExpr - GNU builtin-in function __builtin_choose_expr.
SourceLocation getBuiltinLoc() const
bool isConditionDependent() const
bool isConditionTrue() const
isConditionTrue - Return whether the condition is true (i.e.
SourceLocation getRParenLoc() const
Declaration of a class template.
void AddPartialSpecialization(ClassTemplatePartialSpecializationDecl *D, void *InsertPos)
Insert the specified partial specialization knowing that it is not already in.
ClassTemplateDecl * getMostRecentDecl()
CXXRecordDecl * getTemplatedDecl() const
Get the underlying class declarations of the template.
ClassTemplatePartialSpecializationDecl * findPartialSpecialization(ArrayRef< TemplateArgument > Args, TemplateParameterList *TPL, void *&InsertPos)
Return the partial specialization with the provided arguments if it exists, otherwise return the inse...
bool isThisDeclarationADefinition() const
Returns whether this template declaration defines the primary class pattern.
void AddSpecialization(ClassTemplateSpecializationDecl *D, void *InsertPos)
Insert the specified specialization knowing that it is not already in.
ClassTemplateSpecializationDecl * findSpecialization(ArrayRef< TemplateArgument > Args, void *&InsertPos)
Return the specialization with the provided arguments if it exists, otherwise return the insertion po...
ClassTemplatePartialSpecializationDecl * getInstantiatedFromMember() const
Retrieve the member class template partial specialization from which this particular class template p...
TemplateParameterList * getTemplateParameters() const
Get the list of template parameters.
Represents a class template specialization, which refers to a class template with a given set of temp...
TemplateSpecializationKind getSpecializationKind() const
Determine the kind of specialization that this declaration represents.
const ASTTemplateArgumentListInfo * getTemplateArgsAsWritten() const
Retrieve the template argument list as written in the sources, if any.
ClassTemplateDecl * getSpecializedTemplate() const
Retrieve the template that this specialization specializes.
void setPointOfInstantiation(SourceLocation Loc)
SourceLocation getPointOfInstantiation() const
Get the point of instantiation (if any), or null if none.
void setExternKeywordLoc(SourceLocation Loc)
Sets the location of the extern keyword.
void setSpecializationKind(TemplateSpecializationKind TSK)
const TemplateArgumentList & getTemplateArgs() const
Retrieve the template arguments of the class template specialization.
SourceLocation getExternKeywordLoc() const
Gets the location of the extern keyword, if present.
SourceLocation getTemplateKeywordLoc() const
Gets the location of the template keyword, if present.
void setTemplateKeywordLoc(SourceLocation Loc)
Sets the location of the template keyword.
const TemplateArgumentList & getTemplateInstantiationArgs() const
Retrieve the set of template arguments that should be used to instantiate members of the class templa...
llvm::PointerUnion< ClassTemplateDecl *, ClassTemplatePartialSpecializationDecl * > getInstantiatedFrom() const
If this class template specialization is an instantiation of a template (rather than an explicit spec...
bool hasStrictPackMatch() const
void setInstantiationOf(ClassTemplatePartialSpecializationDecl *PartialSpec, const TemplateArgumentList *TemplateArgs)
Note that this class template specialization is actually an instantiation of the given class template...
bool isExplicitInstantiationOrSpecialization() const
True if this declaration is an explicit specialization, explicit instantiation declaration,...
void setTemplateArgsAsWritten(const ASTTemplateArgumentListInfo *ArgsWritten)
Set the template argument list as written in the sources.
CompoundAssignOperator - For compound assignments (e.g.
QualType getComputationLHSType() const
static CompoundAssignOperator * Create(const ASTContext &C, Expr *lhs, Expr *rhs, Opcode opc, QualType ResTy, ExprValueKind VK, ExprObjectKind OK, SourceLocation opLoc, FPOptionsOverride FPFeatures, QualType CompLHSType=QualType(), QualType CompResultType=QualType())
QualType getComputationResultType() const
CompoundLiteralExpr - [C99 6.5.2.5].
SourceLocation getLParenLoc() const
const Expr * getInitializer() const
TypeSourceInfo * getTypeSourceInfo() const
CompoundStmt - This represents a group of statements like { stmt stmt }.
FPOptionsOverride getStoredFPFeatures() const
Get FPOptionsOverride from trailing storage.
SourceLocation getLBracLoc() const
bool hasStoredFPFeatures() const
static CompoundStmt * Create(const ASTContext &C, ArrayRef< Stmt * > Stmts, FPOptionsOverride FPFeatures, SourceLocation LB, SourceLocation RB)
SourceLocation getRBracLoc() const
Declaration of a C++20 concept.
Expr * getConstraintExpr() const
A reference to a concept and its template args, as it appears in the code.
const NestedNameSpecifierLoc & getNestedNameSpecifierLoc() const
NamedDecl * getFoundDecl() const
const DeclarationNameInfo & getConceptNameInfo() const
static ConceptReference * Create(const ASTContext &C, NestedNameSpecifierLoc NNS, SourceLocation TemplateKWLoc, DeclarationNameInfo ConceptNameInfo, NamedDecl *FoundDecl, TemplateName NamedConcept, const ASTTemplateArgumentListInfo *ArgsAsWritten)
const ASTTemplateArgumentListInfo * getTemplateArgsAsWritten() const
TemplateName getNamedConcept() const
SourceLocation getTemplateKWLoc() const
Represents the specialization of a concept - evaluates to a prvalue of type bool.
static ConceptSpecializationExpr * Create(const ASTContext &C, ConceptReference *ConceptRef, ImplicitConceptSpecializationDecl *SpecDecl, const ConstraintSatisfaction *Satisfaction)
ConceptReference * getConceptReference() const
const ImplicitConceptSpecializationDecl * getSpecializationDecl() const
const ASTConstraintSatisfaction & getSatisfaction() const
Get elaborated satisfaction info about the template arguments' satisfaction of the named concept.
ConditionalOperator - The ?
Expr * getCond() const
getCond - Return the expression representing the condition for the ?
ConstantExpr - An expression that occurs in a constant context and optionally the result of evaluatin...
APValue getAPValueResult() const
static ConstantExpr * Create(const ASTContext &Context, Expr *E, const APValue &Result)
The result of a constraint satisfaction check, containing the necessary information to diagnose an un...
llvm::SmallVector< UnsatisfiedConstraintRecord, 4 > Details
The substituted constraint expr, if the template arguments could be substituted into them,...
Represents a shadow constructor declaration introduced into a class by a C++11 using-declaration that...
ContinueStmt - This represents a continue.
ConvertVectorExpr - Clang builtin function __builtin_convertvector This AST node provides support for...
FPOptionsOverride getStoredFPFeaturesOrDefault() const
Get the store FPOptionsOverride or default if not stored.
SourceLocation getRParenLoc() const
getRParenLoc - Return the location of final right parenthesis.
static ConvertVectorExpr * Create(const ASTContext &C, Expr *SrcExpr, TypeSourceInfo *TI, QualType DstType, ExprValueKind VK, ExprObjectKind OK, SourceLocation BuiltinLoc, SourceLocation RParenLoc, FPOptionsOverride FPFeatures)
SourceLocation getBuiltinLoc() const
getBuiltinLoc - Return the location of the __builtin_convertvector token.
TypeSourceInfo * getTypeSourceInfo() const
getTypeSourceInfo - Return the destination type.
Expr * getSrcExpr() const
getSrcExpr - Return the Expr to be converted.
A POD class for pairing a NamedDecl* with an access specifier.
static DeclAccessPair make(NamedDecl *D, AccessSpecifier AS)
NamedDecl * getDecl() const
AccessSpecifier getAccess() const
The results of name lookup within a DeclContext.
DeclContext - This is used only as base class of specific decl types that can act as declaration cont...
void makeDeclVisibleInContext(NamedDecl *D)
Makes a declaration visible within this context.
DeclContextLookupResult lookup_result
bool isDependentContext() const
Determines whether this context is dependent on a template parameter.
lookup_result lookup(DeclarationName Name) const
lookup - Find the declarations (if any) with the given Name in this context.
DeclContext * getRedeclContext()
getRedeclContext - Retrieve the context in which an entity conflicts with other entities of the same ...
void addDeclInternal(Decl *D)
Add the declaration D into this context, but suppress searches for external declarations with the sam...
bool containsDeclAndLoad(Decl *D) const
Checks whether a declaration is in this context.
void removeDecl(Decl *D)
Removes a declaration from this context.
lookup_result noload_lookup(DeclarationName Name)
Find the declarations with the given name that are visible within this context; don't attempt to retr...
bool containsDecl(Decl *D) const
Checks whether a declaration is in this context.
bool hasExternalLexicalStorage() const
Whether this DeclContext has external storage containing additional declarations that are lexically i...
DeclContext * getEnclosingNamespaceContext()
Retrieve the nearest enclosing namespace context.
decl_range decls() const
decls_begin/decls_end - Iterate over the declarations stored in this context.
bool isFunctionOrMethod() const
void localUncachedLookup(DeclarationName Name, SmallVectorImpl< NamedDecl * > &Results)
A simplistic name lookup mechanism that performs name lookup into this declaration context without co...
static DeclGroupRef Create(ASTContext &C, Decl **Decls, unsigned NumDecls)
A reference to a declared variable, function, enum, etc.
NamedDecl * getFoundDecl()
Get the NamedDecl through which this reference occurred.
bool hasExplicitTemplateArgs() const
Determines whether this declaration reference was followed by an explicit template argument list.
bool refersToEnclosingVariableOrCapture() const
Does this DeclRefExpr refer to an enclosing local or a captured variable?
SourceLocation getTemplateKeywordLoc() const
Retrieve the location of the template keyword preceding this name, if any.
static DeclRefExpr * Create(const ASTContext &Context, NestedNameSpecifierLoc QualifierLoc, SourceLocation TemplateKWLoc, ValueDecl *D, bool RefersToEnclosingVariableOrCapture, SourceLocation NameLoc, QualType T, ExprValueKind VK, NamedDecl *FoundD=nullptr, const TemplateArgumentListInfo *TemplateArgs=nullptr, NonOdrUseReason NOUR=NOUR_None)
SourceLocation getLAngleLoc() const
Retrieve the location of the left angle bracket starting the explicit template argument list followin...
NestedNameSpecifierLoc getQualifierLoc() const
If the name was qualified, retrieves the nested-name-specifier that precedes the name,...
ArrayRef< TemplateArgumentLoc > template_arguments() const
NonOdrUseReason isNonOdrUse() const
Is this expression a non-odr-use reference, and if so, why?
bool hadMultipleCandidates() const
Returns true if this expression refers to a function that was resolved from an overloaded set having ...
SourceLocation getLocation() const
SourceLocation getRAngleLoc() const
Retrieve the location of the right angle bracket ending the explicit template argument list following...
bool isImmediateEscalating() const
DeclStmt - Adaptor class for mixing declarations with statements and expressions.
SourceLocation getEndLoc() const
const DeclGroupRef getDeclGroup() const
SourceLocation getBeginLoc() const LLVM_READONLY
A simple visitor class that helps create declaration visitors.
Decl - This represents one declaration (or definition), e.g.
SourceLocation getEndLoc() const LLVM_READONLY
TemplateDecl * getDescribedTemplate() const
If this is a declaration that describes some template, this method returns that template declaration.
FriendObjectKind getFriendObjectKind() const
Determines whether this declaration is the object of a friend declaration and, if so,...
ASTContext & getASTContext() const LLVM_READONLY
bool isImplicit() const
isImplicit - Indicates whether the declaration was implicitly generated by the implementation.
@ FOK_None
Not a friend object.
void setObjectOfFriendDecl(bool PerformFriendInjection=false)
Changes the namespace of this declaration to reflect that it's the object of a friend declaration.
void setAccess(AccessSpecifier AS)
SourceLocation getLocation() const
const char * getDeclKindName() const
IdentifierNamespace
IdentifierNamespace - The different namespaces in which declarations may appear.
@ IDNS_NonMemberOperator
This declaration is a C++ operator declared in a non-class context.
@ IDNS_TagFriend
This declaration is a friend class.
@ IDNS_Ordinary
Ordinary names.
@ IDNS_ObjCProtocol
Objective C @protocol.
@ IDNS_Namespace
Namespaces, declared with 'namespace foo {}'.
@ IDNS_OrdinaryFriend
This declaration is a friend function.
@ IDNS_Tag
Tags, declared with 'struct foo;' and referenced with 'struct foo'.
void setImplicit(bool I=true)
void setIsUsed()
Set whether the declaration is used, in the sense of odr-use.
bool isUsed(bool CheckUsedAttr=true) const
Whether any (re-)declaration of the entity was used, meaning that a definition is required.
DeclContext * getDeclContext()
AccessSpecifier getAccess() const
bool isInAnonymousNamespace() const
SourceLocation getBeginLoc() const LLVM_READONLY
TranslationUnitDecl * getTranslationUnitDecl()
void setDeclContext(DeclContext *DC)
setDeclContext - Set both the semantic and lexical DeclContext to DC.
DeclContext * getLexicalDeclContext()
getLexicalDeclContext - The declaration context where this Decl was lexically declared (LexicalDC).
void setLexicalDeclContext(DeclContext *DC)
virtual Decl * getCanonicalDecl()
Retrieves the "canonical" declaration of the given declaration.
The name of a declaration.
IdentifierInfo * getAsIdentifierInfo() const
Retrieve the IdentifierInfo * stored in this declaration name, or null if this declaration name isn't...
TemplateDecl * getCXXDeductionGuideTemplate() const
If this name is the name of a C++ deduction guide, return the template associated with that name.
const IdentifierInfo * getCXXLiteralIdentifier() const
If this name is the name of a literal operator, retrieve the identifier associated with it.
static DeclarationName getUsingDirectiveName()
Returns the name for all C++ using-directives.
OverloadedOperatorKind getCXXOverloadedOperator() const
If this name is the name of an overloadable operator in C++ (e.g., operator+), retrieve the kind of o...
@ CXXConversionFunctionName
QualType getCXXNameType() const
If this name is one of the C++ names (of a constructor, destructor, or conversion function),...
Selector getObjCSelector() const
Get the Objective-C selector stored in this declaration name.
NameKind getNameKind() const
Determine what kind of name this is.
bool isEmpty() const
Evaluates true when this declaration name is empty.
SourceLocation getInnerLocStart() const
Return start of source range ignoring outer template declarations.
SourceLocation getBeginLoc() const LLVM_READONLY
const AssociatedConstraint & getTrailingRequiresClause() const
Get the constraint-expression introduced by the trailing requires-clause in the function/member decla...
void setTypeSourceInfo(TypeSourceInfo *TI)
void setQualifierInfo(NestedNameSpecifierLoc QualifierLoc)
NestedNameSpecifierLoc getQualifierLoc() const
Retrieve the nested-name-specifier (with source-location information) that qualifies the name of this...
TypeSourceInfo * getTypeSourceInfo() const
A decomposition declaration.
SourceLocation getDefaultLoc() const
A qualified reference to a name whose declaration cannot yet be resolved.
static DependentScopeDeclRefExpr * Create(const ASTContext &Context, NestedNameSpecifierLoc QualifierLoc, SourceLocation TemplateKWLoc, const DeclarationNameInfo &NameInfo, const TemplateArgumentListInfo *TemplateArgs)
SourceLocation getRAngleLoc() const
Retrieve the location of the right angle bracket ending the explicit template argument list following...
NestedNameSpecifierLoc getQualifierLoc() const
Retrieve the nested-name-specifier that qualifies the name, with source location information.
SourceLocation getLAngleLoc() const
Retrieve the location of the left angle bracket starting the explicit template argument list followin...
ArrayRef< TemplateArgumentLoc > template_arguments() const
bool hasExplicitTemplateArgs() const
Determines whether this lookup had explicit template arguments.
SourceLocation getTemplateKeywordLoc() const
Retrieve the location of the template keyword preceding this name, if any.
DeclarationName getDeclName() const
Retrieve the name that this expression refers to.
const DeclarationNameInfo & getNameInfo() const
Retrieve the name that this expression refers to.
A template-id naming a variable template or a concept through a template template parameter.
static DependentTemplateIdExpr * Create(const ASTContext &Context, const DeclarationNameInfo &NameInfo, TemplateName Name, const TemplateArgumentListInfo &TemplateArgs)
const DeclarationNameInfo & getNameInfo() const
ArrayRef< TemplateArgumentLoc > template_arguments() const
SourceLocation getRAngleLoc() const
DeclarationName getName() const
TemplateName getTemplateName() const
SourceLocation getNameLoc() const
SourceLocation getLAngleLoc() const
IdentifierOrOverloadedOperator getName() const
NestedNameSpecifier getQualifier() const
Return the nested name specifier that qualifies this name.
bool hasTemplateKeyword() const
Was this template name was preceeded by the template keyword?
Represents a single C99 designator.
unsigned getArrayIndex() const
bool isFieldDesignator() const
static Designator CreateArrayRangeDesignator(unsigned Index, SourceLocation LBracketLoc, SourceLocation EllipsisLoc, SourceLocation RBracketLoc)
Creates a GNU array-range designator.
static Designator CreateFieldDesignator(const IdentifierInfo *FieldName, SourceLocation DotLoc, SourceLocation FieldLoc)
Creates a field designator.
bool isArrayRangeDesignator() const
static Designator CreateArrayDesignator(unsigned Index, SourceLocation LBracketLoc, SourceLocation RBracketLoc)
Creates an array designator.
bool isArrayDesignator() const
SourceLocation getFieldLoc() const
SourceLocation getRBracketLoc() const
const IdentifierInfo * getFieldName() const
SourceLocation getEllipsisLoc() const
SourceLocation getDotLoc() const
SourceLocation getLBracketLoc() const
Represents a C99 designated initializer expression.
Expr * getSubExpr(unsigned Idx) const
bool usesGNUSyntax() const
Determines whether this designated initializer used the deprecated GNU syntax for designated initiali...
MutableArrayRef< Designator > designators()
Expr * getInit() const
Retrieve the initializer value.
unsigned size() const
Returns the number of designators in this initializer.
SourceLocation getEqualOrColonLoc() const
Retrieve the location of the '=' that precedes the initializer value itself, if present.
unsigned getNumSubExprs() const
Retrieve the total number of subexpressions in this designated initializer expression,...
static DesignatedInitExpr * Create(const ASTContext &C, ArrayRef< Designator > Designators, ArrayRef< Expr * > IndexExprs, SourceLocation EqualOrColonLoc, bool GNUSyntax, Expr *Init)
A little helper class used to produce diagnostics.
DoStmt - This represents a 'do/while' stmt.
SourceLocation getWhileLoc() const
SourceLocation getDoLoc() const
SourceLocation getRParenLoc() const
Symbolic representation of a dynamic allocation.
Represents an empty-declaration.
An instance of this object exists for each enum constant that is defined.
llvm::APSInt getInitVal() const
const Expr * getInitExpr() const
MemberSpecializationInfo * getMemberSpecializationInfo() const
If this enumeration is an instantiation of a member enumeration of a class template specialization,...
bool isScoped() const
Returns true if this is a C++11 scoped enumeration.
unsigned getNumNegativeBits() const
Returns the width in bits required to store all the negative enumerators of this enum.
bool isScopedUsingClassTag() const
Returns true if this is a C++11 scoped enumeration.
void setIntegerType(QualType T)
Set the underlying integer type.
EnumDecl * getMostRecentDecl()
bool isFixed() const
Returns true if this is an Objective-C, C++11, or Microsoft-style enumeration with a fixed underlying...
void completeDefinition(QualType NewType, QualType PromotionType, unsigned NumPositiveBits, unsigned NumNegativeBits)
When created, the EnumDecl corresponds to a forward-declared enum.
QualType getIntegerType() const
Return the integer type this enum decl corresponds to.
EnumDecl * getInstantiatedFromMemberEnum() const
Returns the enumeration (declared within the template) from which this enumeration type was instantia...
EnumDecl * getDefinition() const
unsigned getNumPositiveBits() const
Returns the width in bits required to store all the non-negative enumerators of this enum.
QualType getPromotionType() const
Return the integer type that enumerators should promote to.
ExplicitCastExpr - An explicit cast written in the source code.
TypeSourceInfo * getTypeInfoAsWritten() const
getTypeInfoAsWritten - Returns the type source info for the type that this expression is casting to.
Store information needed for an explicit specifier.
ExplicitSpecKind getKind() const
const Expr * getExpr() const
Represents an expression – generally a full-expression – that introduces cleanups to be run at the en...
bool cleanupsHaveSideEffects() const
ArrayRef< CleanupObject > getObjects() const
unsigned getNumObjects() const
llvm::PointerUnion< BlockDecl *, CompoundLiteralExpr * > CleanupObject
The type of objects that are kept in the cleanup.
static ExprWithCleanups * Create(const ASTContext &C, EmptyShell empty, unsigned numObjects)
This represents one expression.
bool isValueDependent() const
Determines whether the value of this expression depends on.
ExprValueKind getValueKind() const
getValueKind - The value kind that this expression produces.
bool isTypeDependent() const
Determines whether the type of this expression depends on.
bool containsUnexpandedParameterPack() const
Whether this expression contains an unexpanded parameter pack (for C++11 variadic templates).
ExprObjectKind getObjectKind() const
getObjectKind - The object kind that this expression produces.
bool isInstantiationDependent() const
Whether this expression is instantiation-dependent, meaning that it depends in some way on.
ExprDependence getDependence() const
An expression trait intrinsic.
SourceLocation getBeginLoc() const LLVM_READONLY
Expr * getQueriedExpression() const
ExpressionTrait getTrait() const
SourceLocation getEndLoc() const LLVM_READONLY
virtual void CompleteType(TagDecl *Tag)
Gives the external AST source an opportunity to complete an incomplete type.
Represents difference between two FPOptions values.
Represents a member of a struct/union/class.
bool isMutable() const
Determines whether this field is mutable (C++ only).
Expr * getInClassInitializer() const
Get the C++11 default member initializer for this member, or null if one has not been set.
bool hasInClassInitializer() const
Determine whether this member has a C++11 default member initializer.
InClassInitStyle getInClassInitStyle() const
Get the kind of (C++11) default member initializer that this field has.
void setInClassInitializer(Expr *NewInit)
Set the C++11 in-class initializer for this member.
Expr * getBitWidth() const
Returns the expression that represents the bit width, if this field is a bit field.
const VariableArrayType * getCapturedVLAType() const
Get the captured variable length array type.
void setCapturedVLAType(const VariableArrayType *VLAType)
Set the captured variable length array type for this field.
An opaque identifier used by SourceManager which refers to a source file (MemoryBuffer) along with it...
Implements support for file system lookup, file system caching, and directory search management.
SourceLocation getAsmLoc() const
const Expr * getAsmStringExpr() const
SourceLocation getRParenLoc() const
SourceLocation getLocation() const
Retrieve the location of the literal.
llvm::APInt getValue() const
Returns an internal integer representation of the literal.
SourceLocation getLocation() const
static FloatingLiteral * Create(const ASTContext &C, const llvm::APFloat &V, bool isexact, QualType Type, SourceLocation L)
llvm::APFloat getValue() const
ForStmt - This represents a 'for (init;cond;inc)' stmt.
VarDecl * getConditionVariable() const
Retrieve the variable declared in this "for" statement, if any.
SourceLocation getRParenLoc() const
SourceLocation getForLoc() const
SourceLocation getLParenLoc() const
FriendDecl - Represents the declaration of a friend entity, which can be a function,...
llvm::PointerUnion< NamedDecl *, TypeSourceInfo * > FriendUnion
SourceLocation getFriendLoc() const
SourceLocation getEllipsisLoc() const
Retrieves the location of the '...', if present.
virtual NamedDecl * getFriendDecl() const
If this friend declaration doesn't name a type, return the inner declaration.
TypeSourceInfo * getFriendType() const
If this friend declaration names an (untemplated but possibly dependent) type, return the type; other...
Declaration of a friend template.
TemplateName getFriendTemplateName() const
FriendTemplateEntityKind getFriendKind() const
ArrayRef< TemplateParameterList * > getTemplateParameterLists() const
const Expr * getSubExpr() const
static DefaultedOrDeletedFunctionInfo * Create(ASTContext &Context, ArrayRef< DeclAccessPair > Lookups, FPOptionsOverride FPFeatures, StringLiteral *DeletedMessage=nullptr)
Represents a function declaration or definition.
Stmt * getBody(const FunctionDecl *&Definition) const
Retrieve the body (definition) of the function.
ConstexprSpecKind getConstexprKind() const
DefaultedOrDeletedFunctionInfo * getDefaultedOrDeletedInfo() const
void setDescribedFunctionTemplate(FunctionTemplateDecl *Template)
FunctionTemplateDecl * getDescribedFunctionTemplate() const
Retrieves the function template that is described by this function declaration.
void setIsPureVirtual(bool P=true)
void setDefaultedOrDeletedInfo(DefaultedOrDeletedFunctionInfo *Info)
void setFriendConstraintRefersToEnclosingTemplate(bool V=true)
bool isDestroyingOperatorDelete() const
Determine whether this is a destroying operator delete.
bool UsesFPIntrin() const
Determine whether the function was declared in source context that requires constrained FP intrinsics...
SourceLocation getDefaultLoc() const
ArrayRef< ParmVarDecl * > parameters() const
bool isExplicitlyDefaulted() const
Whether this function is explicitly defaulted.
bool isTrivial() const
Whether this function is "trivial" in some specialized C++ senses.
bool hasWrittenPrototype() const
Whether this function has a written prototype.
MemberSpecializationInfo * getMemberSpecializationInfo() const
If this function is an instantiation of a member function of a class template specialization,...
FunctionTemplateSpecializationInfo * getTemplateSpecializationInfo() const
If this function is actually a function template specialization, retrieve information about this func...
void setDefaultLoc(SourceLocation NewLoc)
bool doesThisDeclarationHaveABody() const
Returns whether this specific declaration of the function has a body.
DependentFunctionTemplateSpecializationInfo * getDependentSpecializationInfo() const
@ TK_MemberSpecialization
@ TK_DependentNonTemplate
@ TK_FunctionTemplateSpecialization
@ TK_DependentFunctionTemplateSpecialization
StorageClass getStorageClass() const
Returns the storage class as written in the source.
bool FriendConstraintRefersToEnclosingTemplate() const
TemplatedKind getTemplatedKind() const
What kind of templated function this is.
void setInstantiatedFromDecl(FunctionDecl *FD)
Specify that this function declaration was instantiated from a FunctionDecl FD.
bool isDeletedAsWritten() const
void setDependentTemplateSpecialization(ASTContext &Context, const UnresolvedSetImpl &Templates, const TemplateArgumentListInfo *TemplateArgs)
Specifies that this function declaration is actually a dependent function template specialization.
bool isPureVirtual() const
Whether this virtual function is pure, i.e.
FunctionDecl * getMostRecentDecl()
Returns the most recent (re)declaration of this declaration.
void setVirtualAsWritten(bool V)
State that this function is marked as virtual explicitly.
void setIsDestroyingOperatorDelete(bool IsDestroyingDelete)
bool isTypeAwareOperatorNewOrDelete() const
Determine whether this is a type aware operator new or delete.
void setIsTypeAwareOperatorNewOrDelete(bool IsTypeAwareOperator=true)
void setRangeEnd(SourceLocation E)
bool isDefaulted() const
Whether this function is defaulted.
FunctionDecl * getInstantiatedFromDecl() const
TemplateSpecializationKind getTemplateSpecializationKind() const
Determine what kind of template instantiation this function represents.
void setDefaulted(bool D=true)
bool isVirtualAsWritten() const
Whether this function is marked as virtual explicitly.
void setDeletedAsWritten(bool D=true, StringLiteral *Message=nullptr)
void setExplicitlyDefaulted(bool ED=true)
State that this function is explicitly defaulted.
FunctionDecl * getInstantiatedFromMemberFunction() const
If this function is an instantiation of a member function of a class template specialization,...
DeclarationNameInfo getNameInfo() const
bool hasBody(const FunctionDecl *&Definition) const
Returns true if the function has a body.
FunctionDecl * getPreviousDecl()
Return the previous declaration of this declaration or NULL if this is the first declaration.
bool isInlineSpecified() const
Determine whether the "inline" keyword was specified for this function.
Represents a prototype with parameter type info, e.g.
ExtProtoInfo getExtProtoInfo() const
ArrayRef< QualType > exceptions() const
ArrayRef< QualType > param_types() const
Declaration of a template function.
FunctionDecl * getTemplatedDecl() const
Get the underlying function declaration of the template.
bool isThisDeclarationADefinition() const
Returns whether this template declaration defines the primary pattern.
FunctionTemplateDecl * getMostRecentDecl()
ExtInfo getExtInfo() const
QualType getReturnType() const
This represents a GCC inline-assembly statement extension.
unsigned getNumLabels() const
SourceLocation getRParenLoc() const
IdentifierInfo * getInputIdentifier(unsigned i) const
const Expr * getOutputConstraintExpr(unsigned i) const
const Expr * getInputConstraintExpr(unsigned i) const
IdentifierInfo * getOutputIdentifier(unsigned i) const
const Expr * getAsmStringExpr() const
Expr * getClobberExpr(unsigned i)
GNUNullExpr - Implements the GNU __null extension, which is a name for a null pointer constant that h...
SourceLocation getBeginLoc() const LLVM_READONLY
Represents a C11 generic selection.
TypeSourceInfo * getControllingType()
Return the controlling type of this generic selection expression.
ArrayRef< Expr * > getAssocExprs() const
bool isExprPredicate() const
Whether this generic selection uses an expression as its controlling argument.
SourceLocation getGenericLoc() const
SourceLocation getRParenLoc() const
unsigned getResultIndex() const
The zero-based index of the result expression's generic association in the generic selection's associ...
SourceLocation getDefaultLoc() const
static GenericSelectionExpr * Create(const ASTContext &Context, SourceLocation GenericLoc, Expr *ControllingExpr, ArrayRef< TypeSourceInfo * > AssocTypes, ArrayRef< Expr * > AssocExprs, SourceLocation DefaultLoc, SourceLocation RParenLoc, bool ContainsUnexpandedParameterPack, unsigned ResultIndex)
Create a non-result-dependent generic selection expression accepting an expression predicate.
bool isResultDependent() const
Whether this generic selection is result-dependent.
Expr * getControllingExpr()
Return the controlling expression of this generic selection expression.
ArrayRef< TypeSourceInfo * > getAssocTypeSourceInfos() const
GotoStmt - This represents a direct goto.
SourceLocation getLabelLoc() const
SourceLocation getGotoLoc() const
LabelDecl * getLabel() const
One of these records is kept for each identifier that is lexed.
unsigned getBuiltinID() const
Return a value indicating whether this is a builtin function.
void setBuiltinID(unsigned ID)
StringRef getName() const
Return the actual identifier string.
IfStmt - This represents an if/then/else.
static IfStmt * Create(const ASTContext &Ctx, SourceLocation IL, IfStatementKind Kind, Stmt *Init, VarDecl *Var, Expr *Cond, SourceLocation LPL, SourceLocation RPL, Stmt *Then, SourceLocation EL=SourceLocation(), Stmt *Else=nullptr)
Create an IfStmt.
SourceLocation getIfLoc() const
IfStatementKind getStatementKind() const
SourceLocation getElseLoc() const
SourceLocation getLParenLoc() const
SourceLocation getRParenLoc() const
VarDecl * getConditionVariable()
Retrieve the variable declared in this "if" statement, if any.
ImaginaryLiteral - We support imaginary integer and floating point literals, like "1....
const Expr * getSubExpr() const
ImplicitCastExpr - Allows us to explicitly represent implicit type conversions, which have no direct ...
static ImplicitCastExpr * Create(const ASTContext &Context, QualType T, CastKind Kind, Expr *Operand, const CXXCastPath *BasePath, ExprValueKind Cat, FPOptionsOverride FPO)
ArrayRef< TemplateArgument > getTemplateArguments() const
ImplicitParamKind getParameterKind() const
Returns the implicit parameter kind.
Represents an implicitly-generated value initialization of an object of a given type.
Describes a module import declaration, which makes the contents of the named module visible in the cu...
Represents a field injected from an anonymous union/struct into the parent scope.
unsigned getChainingSize() const
ArrayRef< NamedDecl * > chain() const
IndirectGotoStmt - This represents an indirect goto.
SourceLocation getGotoLoc() const
SourceLocation getStarLoc() const
Description of a constructor that was inherited from a base class.
CXXConstructorDecl * getConstructor() const
ConstructorUsingShadowDecl * getShadowDecl() const
Describes an C or C++ initializer list.
bool hasArrayFiller() const
Return true if this is an array initializer and its array "filler" has been set.
void setSyntacticForm(InitListExpr *Init)
FieldDecl * getInitializedFieldInUnion()
If this initializes a union, specifies which field in the union to initialize.
unsigned getNumInits() const
SourceLocation getLBraceLoc() const
void setArrayFiller(Expr *filler)
InitListExpr * getSyntacticForm() const
bool hadArrayRangeDesignator() const
Expr * getArrayFiller()
If this initializer list initializes an array with more elements than there are initializers in the l...
SourceLocation getRBraceLoc() const
void setInitializedFieldInUnion(FieldDecl *FD)
ArrayRef< Expr * > inits() const
void sawArrayRangeDesignator(bool ARD=true)
static IntegerLiteral * Create(const ASTContext &C, const llvm::APInt &V, QualType type, SourceLocation l)
Returns a new integer literal with value 'V' and type 'type'.
SourceLocation getLocation() const
Retrieve the location of the literal.
Represents the declaration of a label.
LabelStmt * getStmt() const
void setStmt(LabelStmt *T)
LabelStmt - Represents a label, which has a substatement.
LabelDecl * getDecl() const
SourceLocation getIdentLoc() const
Describes the capture of a variable or of this, or of a C++1y init-capture.
bool capturesVariable() const
Determine whether this capture handles a variable.
bool isPackExpansion() const
Determine whether this capture is a pack expansion, which captures a function parameter pack.
SourceLocation getEllipsisLoc() const
Retrieve the location of the ellipsis for a capture that is a pack expansion.
LambdaCaptureKind getCaptureKind() const
Determine the kind of capture.
ValueDecl * getCapturedVar() const
Retrieve the declaration of the local variable being captured.
bool isImplicit() const
Determine whether this was an implicit capture (not written between the square brackets introducing t...
SourceLocation getLocation() const
Retrieve the source location of the capture.
A C++ lambda expression, which produces a function object (of unspecified type) that can be invoked l...
static LambdaExpr * Create(const ASTContext &C, CXXRecordDecl *Class, SourceRange IntroducerRange, LambdaCaptureDefault CaptureDefault, SourceLocation CaptureDefaultLoc, bool ExplicitParams, bool ExplicitResultType, ArrayRef< Expr * > CaptureInits, SourceLocation ClosingBrace, bool ContainsUnexpandedParameterPack)
Construct a new lambda expression.
SourceLocation getEndLoc() const LLVM_READONLY
bool hasExplicitParameters() const
Determine whether this lambda has an explicit parameter list vs.
SourceRange getIntroducerRange() const
Retrieve the source range covering the lambda introducer, which contains the explicit capture list su...
unsigned capture_size() const
Determine the number of captures in this lambda.
CXXMethodDecl * getCallOperator() const
Retrieve the function call operator associated with this lambda expression.
bool hasExplicitResultType() const
Whether this lambda had its result type explicitly specified.
SourceLocation getCaptureDefaultLoc() const
Retrieve the location of this lambda's capture-default, if any.
llvm::iterator_range< capture_init_iterator > capture_inits()
Retrieve the initialization expressions for this lambda's captures.
LambdaCaptureDefault getCaptureDefault() const
Determine the default capture kind for this lambda.
CXXRecordDecl * getLambdaClass() const
Retrieve the class that corresponds to the lambda.
Implicit declaration of a temporary that was materialized by a MaterializeTemporaryExpr and lifetime-...
unsigned getManglingNumber() const
Expr * getTemporaryExpr()
Retrieve the expression to which the temporary materialization conversion was applied.
ValueDecl * getExtendingDecl()
Represents a linkage specification.
void setRBraceLoc(SourceLocation L)
LinkageSpecLanguageIDs getLanguage() const
Return the language specified by this linkage specification.
SourceLocation getExternLoc() const
SourceLocation getRBraceLoc() const
bool hasBraces() const
Determines whether this linkage specification had braces in its syntactic form.
Represents the results of name lookup.
Represents a prvalue temporary that is written into memory so that a reference can bind to it.
Expr * getSubExpr() const
Retrieve the temporary-generating subexpression whose value will be materialized into a glvalue.
bool isBoundToLvalueReference() const
Determine whether this materialized temporary is bound to an lvalue reference; otherwise,...
LifetimeExtendedTemporaryDecl * getLifetimeExtendedTemporaryDecl()
MemberExpr - [C99 6.5.2.3] Structure and Union Members.
ArrayRef< TemplateArgumentLoc > template_arguments() const
SourceLocation getOperatorLoc() const
SourceLocation getTemplateKeywordLoc() const
Retrieve the location of the template keyword preceding the member name, if any.
NestedNameSpecifierLoc getQualifierLoc() const
If the member name was qualified, retrieves the nested-name-specifier that precedes the member name,...
ValueDecl * getMemberDecl() const
Retrieve the member declaration to which this expression refers.
bool hasExplicitTemplateArgs() const
Determines whether the member name was followed by an explicit template argument list.
NonOdrUseReason isNonOdrUse() const
Is this expression a non-odr-use reference, and if so, why?
static MemberExpr * Create(const ASTContext &C, Expr *Base, bool IsArrow, SourceLocation OperatorLoc, NestedNameSpecifierLoc QualifierLoc, SourceLocation TemplateKWLoc, ValueDecl *MemberDecl, DeclAccessPair FoundDecl, DeclarationNameInfo MemberNameInfo, const TemplateArgumentListInfo *TemplateArgs, QualType T, ExprValueKind VK, ExprObjectKind OK, NonOdrUseReason NOUR)
SourceLocation getRAngleLoc() const
Retrieve the location of the right angle bracket ending the explicit template argument list following...
SourceLocation getLAngleLoc() const
Retrieve the location of the left angle bracket starting the explicit template argument list followin...
DeclarationNameInfo getMemberNameInfo() const
Retrieve the member declaration name info.
DeclAccessPair getFoundDecl() const
Retrieves the declaration found by lookup.
Provides information a specialization of a member of a class template, which may be a member function...
SourceLocation getPointOfInstantiation() const
Retrieve the first point of instantiation of this member.
void setPointOfInstantiation(SourceLocation POI)
Set the first point of instantiation.
This represents a decl that may have a name.
Linkage getLinkageInternal() const
Determine what kind of linkage this entity has.
IdentifierInfo * getIdentifier() const
Get the identifier that names this declaration, if there is one.
DeclarationName getDeclName() const
Get the actual, stored name of the declaration, which may be a special name.
Represents a C++ namespace alias.
NestedNameSpecifierLoc getQualifierLoc() const
Retrieve the nested-name-specifier that qualifies the name of the namespace, with source-location inf...
SourceLocation getAliasLoc() const
Returns the location of the alias name, i.e.
SourceLocation getNamespaceLoc() const
Returns the location of the namespace keyword.
SourceLocation getTargetNameLoc() const
Returns the location of the identifier in the named namespace.
NamespaceDecl * getNamespace()
Retrieve the namespace declaration aliased by this directive.
Represent a C++ namespace.
SourceLocation getRBraceLoc() const
SourceLocation getBeginLoc() const LLVM_READONLY
bool isInline() const
Returns true if this is an inline namespace declaration.
NamespaceDecl * getAnonymousNamespace() const
Retrieve the anonymous namespace that inhabits this namespace, if any.
bool isNested() const
Returns true if this is a nested namespace declaration.
void setRBraceLoc(SourceLocation L)
Class that aids in the construction of nested-name-specifiers along with source-location information ...
NestedNameSpecifierLoc getWithLocInContext(ASTContext &Context) const
Retrieve a nested-name-specifier with location information, copied into the given AST context.
A C++ nested-name-specifier augmented with source location information.
NamespaceAndPrefixLoc getAsNamespaceAndPrefix() const
NestedNameSpecifier getNestedNameSpecifier() const
Retrieve the nested-name-specifier to which this instance refers.
SourceLocation getLocalEndLoc() const
Retrieve the location of the end of this component of the nested-name-specifier.
SourceRange getSourceRange() const LLVM_READONLY
Retrieve the source range covering the entirety of this nested-name-specifier.
TypeLoc castAsTypeLoc() const
For a nested-name-specifier that refers to a type, retrieve the type with source-location information...
SourceLocation getLocalBeginLoc() const
Retrieve the location of the beginning of this component of the nested-name-specifier.
Represents a C++ nested name specifier, such as "\::std::vector<int>::".
CXXRecordDecl * getAsMicrosoftSuper() const
NamespaceAndPrefix getAsNamespaceAndPrefix() const
const Type * getAsType() const
Kind
The kind of specifier that completes this nested name specifier.
@ MicrosoftSuper
Microsoft's '__super' specifier, stored as a CXXRecordDecl* of the class it appeared in.
@ Global
The global specifier '::'. There is no stored value.
@ Type
A type, stored as a Type*.
@ Namespace
A namespace-like entity, stored as a NamespaceBaseDecl*.
NonTypeTemplateParmDecl - Declares a non-type template parameter, e.g., "Size" in.
unsigned getPosition() const
Get the position of the template parameter within its parameter list.
bool isParameterPack() const
Whether this parameter is a non-type template parameter pack.
unsigned getDepth() const
Get the nesting depth of the template parameter.
NullStmt - This is the null statement ";": C99 6.8.3p3.
bool hasLeadingEmptyMacro() const
SourceLocation getSemiLoc() const
Represents Objective-C's @catch statement.
const VarDecl * getCatchParamDecl() const
const Stmt * getCatchBody() const
SourceLocation getAtCatchLoc() const
SourceLocation getRParenLoc() const
Represents Objective-C's @finally statement.
const Stmt * getFinallyBody() const
SourceLocation getAtFinallyLoc() const
Represents Objective-C's @synchronized statement.
const Expr * getSynchExpr() const
const CompoundStmt * getSynchBody() const
SourceLocation getAtSynchronizedLoc() const
Represents Objective-C's @throw statement.
const Expr * getThrowExpr() const
SourceLocation getThrowLoc() const LLVM_READONLY
Represents Objective-C's @try ... @catch ... @finally statement.
const ObjCAtFinallyStmt * getFinallyStmt() const
Retrieve the @finally statement, if any.
static ObjCAtTryStmt * Create(const ASTContext &Context, SourceLocation atTryLoc, Stmt *atTryStmt, Stmt **CatchStmts, unsigned NumCatchStmts, Stmt *atFinallyStmt)
unsigned getNumCatchStmts() const
Retrieve the number of @catch statements in this try-catch-finally block.
const ObjCAtCatchStmt * getCatchStmt(unsigned I) const
Retrieve a @catch statement.
const Stmt * getTryBody() const
Retrieve the @try body.
SourceLocation getAtTryLoc() const
Retrieve the location of the @ in the @try.
Represents Objective-C's @autoreleasepool Statement.
SourceLocation getAtLoc() const
const Stmt * getSubStmt() const
An Objective-C "bridged" cast expression, which casts between Objective-C pointers and C pointers,...
ObjCCategoryDecl - Represents a category declaration.
void setTypeParamList(ObjCTypeParamList *TPL)
Set the type parameters of this category.
void setProtocolList(ObjCProtocolDecl *const *List, unsigned Num, const SourceLocation *Locs, ASTContext &C)
setProtocolList - Set the list of protocols that this interface implements.
ObjCCategoryImplDecl * getImplementation() const
ObjCInterfaceDecl * getClassInterface()
ObjCTypeParamList * getTypeParamList() const
Retrieve the type parameter list associated with this category or extension.
protocol_iterator protocol_end() const
ObjCProtocolList::loc_iterator protocol_loc_iterator
SourceLocation getIvarLBraceLoc() const
SourceLocation getIvarRBraceLoc() const
protocol_loc_iterator protocol_loc_begin() const
protocol_iterator protocol_begin() const
void setImplementation(ObjCCategoryImplDecl *ImplD)
ObjCProtocolList::iterator protocol_iterator
SourceLocation getCategoryNameLoc() const
ObjCCategoryImplDecl - An object of this class encapsulates a category @implementation declaration.
SourceLocation getCategoryNameLoc() const
ObjCCategoryDecl * getCategoryDecl() const
SourceLocation getAtStartLoc() const
Represents Objective-C's collection statement.
SourceLocation getForLoc() const
SourceLocation getRParenLoc() const
const ObjCInterfaceDecl * getClassInterface() const
ObjCImplementationDecl - Represents a class definition - this is where method definitions are specifi...
SourceLocation getIvarRBraceLoc() const
SourceLocation getSuperClassLoc() const
const ObjCInterfaceDecl * getSuperClass() const
SourceLocation getIvarLBraceLoc() const
Represents an ObjC class declaration.
void setProtocolList(ObjCProtocolDecl *const *List, unsigned Num, const SourceLocation *Locs, ASTContext &C)
setProtocolList - Set the list of protocols that this interface implements.
bool isImplicitInterfaceDecl() const
isImplicitInterfaceDecl - check that this is an implicitly declared ObjCInterfaceDecl node.
ObjCTypeParamList * getTypeParamListAsWritten() const
Retrieve the type parameters written on this particular declaration of the class.
ObjCCategoryDecl * FindCategoryDeclaration(const IdentifierInfo *CategoryId) const
FindCategoryDeclaration - Finds category declaration in the list of categories for this class and ret...
protocol_loc_iterator protocol_loc_begin() const
void setImplementation(ObjCImplementationDecl *ImplD)
known_categories_range known_categories() const
void setSuperClass(TypeSourceInfo *superClass)
protocol_iterator protocol_end() const
SourceLocation getSuperClassLoc() const
Retrieve the starting location of the superclass.
bool isThisDeclarationADefinition() const
Determine whether this particular declaration of this class is actually also a definition.
void setTypeParamList(ObjCTypeParamList *TPL)
Set the type parameters of this class.
ObjCProtocolList::iterator protocol_iterator
ObjCImplementationDecl * getImplementation() const
protocol_iterator protocol_begin() const
ObjCProtocolList::loc_iterator protocol_loc_iterator
void startDefinition()
Starts the definition of this Objective-C class, taking it from a forward declaration (@class) to a d...
ObjCInterfaceDecl * getCanonicalDecl() override
Retrieves the canonical declaration of this Objective-C class.
ObjCInterfaceDecl * getSuperClass() const
ObjCInterfaceDecl * getDefinition()
Retrieve the definition of this class, or NULL if this class has been forward-declared (with @class) ...
TypeSourceInfo * getSuperClassTInfo() const
ObjCIvarDecl - Represents an ObjC instance variable.
AccessControl getAccessControl() const
bool getSynthesize() const
ObjCMethodDecl - Represents an instance or class method declaration.
ImplicitParamDecl * getSelfDecl() const
ArrayRef< ParmVarDecl * > parameters() const
unsigned param_size() const
bool isPropertyAccessor() const
param_const_iterator param_end() const
param_const_iterator param_begin() const
SourceLocation getEndLoc() const LLVM_READONLY
TypeSourceInfo * getReturnTypeSourceInfo() const
void setMethodParams(ASTContext &C, ArrayRef< ParmVarDecl * > Params, ArrayRef< SourceLocation > SelLocs={})
Sets the method's parameters and selector source locations.
bool isSynthesizedAccessorStub() const
bool hasRelatedResultType() const
Determine whether this method has a result type that is related to the message receiver's type.
bool isInstanceMethod() const
void createImplicitParams(ASTContext &Context, const ObjCInterfaceDecl *ID)
createImplicitParams - Used to lazily create the self and cmd implicit parameters.
QualType getReturnType() const
ParmVarDecl *const * param_iterator
ObjCImplementationControl getImplementationControl() const
ObjCInterfaceDecl * getClassInterface()
void getSelectorLocs(SmallVectorImpl< SourceLocation > &SelLocs) const
Represents one property declaration in an Objective-C interface.
void setSetterName(Selector Sel, SourceLocation Loc=SourceLocation())
SourceLocation getGetterNameLoc() const
ObjCMethodDecl * getGetterMethodDecl() const
bool isInstanceProperty() const
ObjCMethodDecl * getSetterMethodDecl() const
SourceLocation getSetterNameLoc() const
SourceLocation getAtLoc() const
void setPropertyAttributes(ObjCPropertyAttribute::Kind PRVal)
ObjCIvarDecl * getPropertyIvarDecl() const
Selector getSetterName() const
TypeSourceInfo * getTypeSourceInfo() const
void setPropertyAttributesAsWritten(ObjCPropertyAttribute::Kind PRVal)
Selector getGetterName() const
void setPropertyIvarDecl(ObjCIvarDecl *Ivar)
SourceLocation getLParenLoc() const
void setSetterMethodDecl(ObjCMethodDecl *gDecl)
ObjCPropertyAttribute::Kind getPropertyAttributesAsWritten() const
ObjCPropertyAttribute::Kind getPropertyAttributes() const
void setGetterName(Selector Sel, SourceLocation Loc=SourceLocation())
PropertyControl getPropertyImplementation() const
void setGetterMethodDecl(ObjCMethodDecl *gDecl)
ObjCPropertyImplDecl - Represents implementation declaration of a property in a class or category imp...
ObjCIvarDecl * getPropertyIvarDecl() const
SourceLocation getPropertyIvarDeclLoc() const
Kind getPropertyImplementation() const
ObjCPropertyDecl * getPropertyDecl() const
SourceLocation getBeginLoc() const LLVM_READONLY
Represents an Objective-C protocol declaration.
bool isThisDeclarationADefinition() const
Determine whether this particular declaration is also the definition.
void setProtocolList(ObjCProtocolDecl *const *List, unsigned Num, const SourceLocation *Locs, ASTContext &C)
setProtocolList - Set the list of protocols that this interface implements.
ObjCProtocolDecl * getDefinition()
Retrieve the definition of this protocol, if any.
void startDefinition()
Starts the definition of this Objective-C protocol.
ObjCProtocolList::iterator protocol_iterator
protocol_iterator protocol_begin() const
ObjCProtocolList::loc_iterator protocol_loc_iterator
protocol_iterator protocol_end() const
protocol_loc_iterator protocol_loc_begin() const
Represents the declaration of an Objective-C type parameter.
unsigned getIndex() const
Retrieve the index into its type parameter list.
const Type * getTypeForDecl() const
SourceLocation getColonLoc() const
Retrieve the location of the ':' separating the type parameter name from the explicitly-specified bou...
ObjCTypeParamVariance getVariance() const
Determine the variance of this type parameter.
SourceLocation getVarianceLoc() const
Retrieve the location of the variance keyword.
Stores a list of Objective-C type parameters for a parameterized class or a category/extension thereo...
SourceLocation getRAngleLoc() const
static ObjCTypeParamList * create(ASTContext &ctx, SourceLocation lAngleLoc, ArrayRef< ObjCTypeParamDecl * > typeParams, SourceLocation rAngleLoc)
Create a new Objective-C type parameter list.
SourceLocation getLAngleLoc() const
OffsetOfExpr - [C99 7.17] - This represents an expression of the form offsetof(record-type,...
Expr * getIndexExpr(unsigned Idx)
SourceLocation getOperatorLoc() const
getOperatorLoc - Return the location of the operator.
const OffsetOfNode & getComponent(unsigned Idx) const
static OffsetOfExpr * Create(const ASTContext &C, QualType type, SourceLocation OperatorLoc, TypeSourceInfo *tsi, ArrayRef< OffsetOfNode > comps, ArrayRef< Expr * > exprs, SourceLocation RParenLoc)
TypeSourceInfo * getTypeSourceInfo() const
unsigned getNumExpressions() const
SourceLocation getRParenLoc() const
Return the location of the right parentheses.
unsigned getNumComponents() const
Helper class for OffsetOfExpr.
const IdentifierInfo * getFieldName() const
For a field or identifier offsetof node, returns the name of the field.
unsigned getArrayExprIndex() const
For an array element node, returns the index into the array of expressions.
FieldDecl * getField() const
For a field offsetof node, returns the field.
@ Array
An index into an array.
@ Identifier
A field in a dependent type, known only by its name.
@ Base
An implicit indirection through a C++ base class, when the field found is in a base class.
SourceLocation getBeginLoc() const LLVM_READONLY
Kind getKind() const
Determine what kind of offsetof node this is.
SourceLocation getEndLoc() const LLVM_READONLY
CXXBaseSpecifier * getBase() const
For a base class node, returns the base specifier.
OpaqueValueExpr - An expression referring to an opaque object of a fixed type and value class.
Expr * getSourceExpr() const
The source expression of an opaque value expression is the expression which originally generated the ...
SourceLocation getLocation() const
Retrieve the location of this expression.
bool hasExplicitTemplateArgs() const
Determines whether this expression had explicit template arguments.
SourceLocation getLAngleLoc() const
Retrieve the location of the left angle bracket starting the explicit template argument list followin...
const DeclarationNameInfo & getNameInfo() const
Gets the full name info.
SourceLocation getNameLoc() const
Gets the location of the name.
SourceLocation getTemplateKeywordLoc() const
Retrieve the location of the template keyword preceding this name, if any.
NestedNameSpecifierLoc getQualifierLoc() const
Fetches the nested-name qualifier with source-location information, if one was given.
llvm::iterator_range< decls_iterator > decls() const
void copyTemplateArgumentsInto(TemplateArgumentListInfo &List) const
Copies the template arguments into the given structure.
DeclarationName getName() const
Gets the name looked up.
SourceLocation getRAngleLoc() const
Retrieve the location of the right angle bracket ending the explicit template argument list following...
ArrayRef< TemplateArgumentLoc > template_arguments() const
A structure for storing the information associated with an overloaded template name.
Represents a C++11 pack expansion that produces a sequence of expressions.
Expr * getPattern()
Retrieve the pattern of the pack expansion.
UnsignedOrNone getNumExpansions() const
Determine the number of expansions that will be produced when this pack expansion is instantiated,...
SourceLocation getEllipsisLoc() const
Retrieve the location of the ellipsis that describes this pack expansion.
ParenExpr - This represents a parenthesized expression, e.g.
SourceLocation getLParen() const
Get the location of the left parentheses '('.
const Expr * getSubExpr() const
SourceLocation getRParen() const
Get the location of the right parentheses ')'.
ArrayRef< Expr * > exprs() const
static ParenListExpr * Create(const ASTContext &Ctx, SourceLocation LParenLoc, ArrayRef< Expr * > Exprs, SourceLocation RParenLoc)
Create a paren list.
unsigned getNumExprs() const
Return the number of expressions in this paren list.
SourceLocation getLParenLoc() const
SourceLocation getRParenLoc() const
Represents a parameter to a function.
bool isKNRPromoted() const
True if the value passed to this parameter must undergo K&R-style default argument promotion:
unsigned getFunctionScopeIndex() const
Returns the index of this parameter in its prototype or method scope.
void setObjCDeclQualifier(ObjCDeclQualifier QTVal)
void setDefaultArg(Expr *defarg)
SourceLocation getExplicitObjectParamThisLoc() const
void setUnparsedDefaultArg()
Specify that this parameter has an unparsed default argument.
bool hasUnparsedDefaultArg() const
Determines whether this parameter has a default argument that has not yet been parsed.
void setUninstantiatedDefaultArg(Expr *arg)
bool isObjCMethodParameter() const
ObjCDeclQualifier getObjCDeclQualifier() const
void setScopeInfo(unsigned scopeDepth, unsigned parameterIndex)
bool hasUninstantiatedDefaultArg() const
void setObjCMethodScopeInfo(unsigned parameterIndex)
bool hasInheritedDefaultArg() const
void setKNRPromoted(bool promoted)
void setExplicitObjectParameterLoc(SourceLocation Loc)
Expr * getUninstantiatedDefaultArg()
bool hasDefaultArg() const
Determines whether this parameter has a default argument, either parsed or not.
unsigned getFunctionScopeDepth() const
void setHasInheritedDefaultArg(bool I=true)
[C99 6.4.2.2] - A predefined identifier such as func.
SourceLocation getBeginLoc() const
static PredefinedExpr * Create(const ASTContext &Ctx, SourceLocation L, QualType FNTy, PredefinedIdentKind IK, bool IsTransparent, StringLiteral *SL)
Create a PredefinedExpr.
bool isTransparent() const
PredefinedIdentKind getIdentKind() const
StringLiteral * getFunctionName()
Stores the type being destroyed by a pseudo-destructor expression.
PseudoObjectExpr - An expression which accesses a pseudo-object l-value.
unsigned getResultExprIndex() const
Return the index of the result-bearing expression into the semantics expressions, or PseudoObjectExpr...
static PseudoObjectExpr * Create(const ASTContext &Context, Expr *syntactic, ArrayRef< Expr * > semantic, unsigned resultIndex)
ArrayRef< Expr * > semantics()
unsigned getNumSemanticExprs() const
Expr * getSyntacticForm()
Return the syntactic form of this expression, i.e.
A (possibly-)qualified type.
bool isNull() const
Return true if this QualType doesn't point to a type yet.
const Type * getTypePtr() const
Retrieves a pointer to the underlying (unqualified) type.
Qualifiers getLocalQualifiers() const
Retrieve the set of qualifiers local to this particular QualType instance, not including any qualifie...
Represents a template name as written in source code.
NestedNameSpecifier getQualifier() const
Return the nested name specifier that qualifies this name.
TemplateName getUnderlyingTemplate() const
Return the underlying template name.
bool hasTemplateKeyword() const
Whether the template name was prefixed by the "template" keyword.
Represents a struct/union/class.
bool isLambda() const
Determine whether this record is a class describing a lambda function object.
void setAnonymousStructOrUnion(bool Anon)
field_range fields() const
RecordDecl * getMostRecentDecl()
virtual void completeDefinition()
Note that the definition of this type is now complete.
RecordDecl * getDefinition() const
Returns the RecordDecl that actually defines this struct/union/class.
bool isAnonymousStructOrUnion() const
Whether this is an anonymous struct or union.
Provides common interface for the Decls that can be redeclared.
decl_type * getFirstDecl()
Return the first declaration of this declaration or itself if this is the only declaration.
void setPreviousDecl(decl_type *PrevDecl)
Set the previous declaration.
Represents the body of a requires-expression.
C++2a [expr.prim.req]: A requires-expression provides a concise way to express requirements on templa...
SourceLocation getLParenLoc() const
SourceLocation getRParenLoc() const
SourceLocation getRBraceLoc() const
SourceLocation getRequiresKWLoc() const
static RequiresExpr * Create(ASTContext &C, SourceLocation RequiresKWLoc, RequiresExprBodyDecl *Body, SourceLocation LParenLoc, ArrayRef< ParmVarDecl * > LocalParameters, SourceLocation RParenLoc, ArrayRef< concepts::Requirement * > Requirements, SourceLocation RBraceLoc)
RequiresExprBodyDecl * getBody() const
ArrayRef< concepts::Requirement * > getRequirements() const
ArrayRef< ParmVarDecl * > getLocalParameters() const
ReturnStmt - This represents a return, optionally of an expression: return; return 4;.
SourceLocation getReturnLoc() const
const VarDecl * getNRVOCandidate() const
Retrieve the variable that might be used for the named return value optimization.
static ReturnStmt * Create(const ASTContext &Ctx, SourceLocation RL, Expr *E, const VarDecl *NRVOCandidate)
Create a return statement.
Smart pointer class that efficiently represents Objective-C method names.
const IdentifierInfo * getIdentifierInfoForSlot(unsigned argIndex) const
Retrieve the identifier at a given position in the selector.
bool isNull() const
Determine whether this is the empty selector.
unsigned getNumArgs() const
ShuffleVectorExpr - clang-specific builtin-in function __builtin_shufflevector.
Expr ** getSubExprs()
Retrieve the array of expressions.
unsigned getNumSubExprs() const
getNumSubExprs - Return the size of the SubExprs array.
SourceLocation getRParenLoc() const
SourceLocation getBeginLoc() const LLVM_READONLY
Represents an expression that computes the length of a parameter pack.
SourceLocation getPackLoc() const
Determine the location of the parameter pack.
bool isPartiallySubstituted() const
Determine whether this represents a partially-substituted sizeof... expression, such as is produced f...
static SizeOfPackExpr * Create(ASTContext &Context, SourceLocation OperatorLoc, NamedDecl *Pack, SourceLocation PackLoc, SourceLocation RParenLoc, UnsignedOrNone Length=std::nullopt, ArrayRef< TemplateArgument > PartialArgs={})
ArrayRef< TemplateArgument > getPartialArguments() const
Get.
SourceLocation getOperatorLoc() const
Determine the location of the 'sizeof' keyword.
SourceLocation getRParenLoc() const
Determine the location of the right parenthesis.
NamedDecl * getPack() const
Retrieve the parameter pack.
unsigned getPackLength() const
Retrieve the length of the parameter pack.
Represents a function call to one of __builtin_LINE(), __builtin_COLUMN(), __builtin_FUNCTION(),...
SourceLocation getBeginLoc() const
const DeclContext * getParentContext() const
If the SourceLocExpr has been resolved return the subexpression representing the resolved value.
SourceLocation getEndLoc() const
SourceLocIdentKind getIdentKind() const
Encodes a location in the source.
bool isValid() const
Return true if this is a valid SourceLocation object.
This class handles loading and caching of source files into memory.
FileIDAndOffset getDecomposedLoc(SourceLocation Loc) const
Decompose the specified location into a raw FileID + Offset pair.
FileID getFileID(SourceLocation SpellingLoc) const
Return the FileID for a SourceLocation.
bool isWrittenInBuiltinFile(SourceLocation Loc) const
Returns whether Loc is located in a <built-in> file.
FileID createFileID(FileEntryRef SourceFile, SourceLocation IncludePos, SrcMgr::CharacteristicKind FileCharacter, int LoadedID=0, SourceLocation::UIntTy LoadedOffset=0)
Create a new FileID that represents the specified file being #included from the specified IncludePosi...
SourceLocation getComposedLoc(FileID FID, unsigned Offset) const
Form a SourceLocation from a FileID and Offset pair.
FileManager & getFileManager() const
FileID getMainFileID() const
Returns the FileID of the main source file.
unsigned getFileIDSize(FileID FID) const
The size of the SLocEntry that FID represents.
SourceLocation getLocForStartOfFile(FileID FID) const
Return the source location corresponding to the first byte of the specified file.
SourceLocation createExpansionLoc(SourceLocation SpellingLoc, SourceLocation ExpansionLocStart, SourceLocation ExpansionLocEnd, unsigned Length, bool ExpansionIsTokenRange=true, int LoadedID=0, SourceLocation::UIntTy LoadedOffset=0)
Creates an expansion SLocEntry for a macro use.
const SrcMgr::SLocEntry & getSLocEntry(FileID FID, bool *Invalid=nullptr) const
SourceLocation createMacroArgExpansionLoc(SourceLocation SpellingLoc, SourceLocation ExpansionLoc, unsigned Length)
Creates an expansion SLocEntry for the substitution of an argument into a function-like macro's body.
A trivial tuple used to represent a source range.
SourceLocation getEnd() const
SourceLocation getBegin() const
One instance of this struct is kept for every file loaded or used.
Each ExpansionInfo encodes the expansion location - where the token was ultimately expanded,...
SourceLocation getExpansionLocStart() const
bool isExpansionTokenRange() const
SourceLocation getSpellingLoc() const
bool isMacroArgExpansion() const
SourceLocation getExpansionLocEnd() const
const ContentCache & getContentCache() const
CharacteristicKind getFileCharacteristic() const
Return whether this is a system header or not.
SourceLocation getIncludeLoc() const
This is a discriminated union of FileInfo and ExpansionInfo.
const FileInfo & getFile() const
const ExpansionInfo & getExpansion() const
Represents a C++11 static_assert declaration.
SourceLocation getRParenLoc() const
StmtExpr - This is the GNU Statement Expression extension: ({int X=4; X;}).
CompoundStmt * getSubStmt()
unsigned getTemplateDepth() const
SourceLocation getRParenLoc() const
SourceLocation getLParenLoc() const
StmtVisitor - This class implements a simple visitor for Stmt subclasses.
Stmt - This represents one statement.
StmtClass getStmtClass() const
const char * getStmtClassName() const
SourceLocation getBeginLoc() const LLVM_READONLY
StringLiteral - This represents a string literal expression, e.g.
tokloc_iterator tokloc_begin() const
tokloc_iterator tokloc_end() const
StringLiteralKind getKind() const
static StringLiteral * Create(const ASTContext &Ctx, StringRef Str, StringLiteralKind Kind, bool Pascal, QualType Ty, ArrayRef< SourceLocation > Locs)
This is the "fully general" constructor that allows representation of strings formed from one or more...
StringRef getBytes() const
Allow access to clients that need the byte representation, such as ASTWriterStmt::VisitStringLiteral(...
unsigned getNumConcatenated() const
getNumConcatenated - Get the number of string literal tokens that were concatenated in translation ph...
Represents a reference to a non-type template parameter that has been substituted with a template arg...
Decl * getAssociatedDecl() const
A template-like entity which owns the whole pattern being substituted.
UnsignedOrNone getPackIndex() const
QualType getParameterType() const
Determine the substituted type of the template parameter.
unsigned getIndex() const
Returns the index of the replaced parameter in the associated declaration.
SourceLocation getNameLoc() const
Expr * getReplacement() const
Represents a reference to a non-type template parameter pack that has been substituted with a non-tem...
TemplateArgument getArgumentPack() const
Retrieve the template argument pack containing the substituted template arguments.
SourceLocation getParameterPackLocation() const
Retrieve the location of the parameter pack name.
Decl * getAssociatedDecl() const
A template-like entity which owns the whole pattern being substituted.
unsigned getIndex() const
Returns the index of the replaced parameter in the associated declaration.
A structure for storing an already-substituted template template parameter pack.
Decl * getAssociatedDecl() const
A template-like entity which owns the whole pattern being substituted.
TemplateArgument getArgumentPack() const
Retrieve the template template argument pack with which this parameter was substituted.
unsigned getIndex() const
Returns the index of the replaced parameter in the associated declaration.
A structure for storing the information associated with a substituted template template parameter.
TemplateName getReplacement() const
UnsignedOrNone getPackIndex() const
unsigned getIndex() const
Returns the index of the replaced parameter in the associated declaration.
Decl * getAssociatedDecl() const
A template-like entity which owns the whole pattern being substituted.
void setNextSwitchCase(SwitchCase *SC)
SourceLocation getColonLoc() const
const SwitchCase * getNextSwitchCase() const
SwitchStmt - This represents a 'switch' stmt.
SourceLocation getSwitchLoc() const
SourceLocation getLParenLoc() const
SourceLocation getRParenLoc() const
static SwitchStmt * Create(const ASTContext &Ctx, Stmt *Init, VarDecl *Var, Expr *Cond, SourceLocation LParenLoc, SourceLocation RParenLoc)
Create a switch statement.
VarDecl * getConditionVariable()
Retrieve the variable declared in this "switch" statement, if any.
SwitchCase * getSwitchCaseList()
Represents the declaration of a struct/union/class/enum.
SourceRange getBraceRange() const
bool isBeingDefined() const
Return true if this decl is currently being defined.
TagDecl * getDefinition() const
Returns the TagDecl that actually defines this struct/union/class/enum.
bool isThisDeclarationADefinition() const
Return true if this declaration is a completion definition of the type.
bool isCompleteDefinition() const
Return true if this decl has its body fully specified.
NestedNameSpecifierLoc getQualifierLoc() const
Retrieve the nested-name-specifier (with source-location information) that qualifies the name of this...
TypedefNameDecl * getTypedefNameForAnonDecl() const
void startDefinition()
Starts the definition of this tag declaration.
void setTypedefNameForAnonDecl(TypedefNameDecl *TDD)
void setQualifierInfo(NestedNameSpecifierLoc QualifierLoc)
TagKind getTagKind() const
void setBraceRange(SourceRange R)
void setCompleteDefinition(bool V=true)
True if this decl has its body fully specified.
A convenient class for passing around template argument information.
SourceLocation getRAngleLoc() const
void addArgument(const TemplateArgumentLoc &Loc)
ArrayRef< TemplateArgumentLoc > arguments() const
SourceLocation getLAngleLoc() const
A template argument list.
static TemplateArgumentList * CreateCopy(ASTContext &Context, ArrayRef< TemplateArgument > Args)
Create a new template argument list that copies the given set of template arguments.
unsigned size() const
Retrieve the number of template arguments in this template argument list.
ArrayRef< TemplateArgument > asArray() const
Produce this as an array ref.
Location wrapper for a TemplateArgument.
TemplateArgumentLocInfo getLocInfo() const
const TemplateArgument & getArgument() const
NestedNameSpecifierLoc getTemplateQualifierLoc() const
Represents a template argument.
QualType getStructuralValueType() const
Get the type of a StructuralValue.
QualType getParamTypeForDecl() const
Expr * getAsExpr() const
Retrieve the template argument as an expression.
UnsignedOrNone getNumTemplateExpansions() const
Retrieve the number of expansions that a template template argument expansion will produce,...
QualType getAsType() const
Retrieve the type for a type template argument.
QualType getNullPtrType() const
Retrieve the type for null non-type template argument.
TemplateName getAsTemplate() const
Retrieve the template name for a template name argument.
unsigned pack_size() const
The number of template arguments in the given template argument pack.
QualType getIntegralType() const
Retrieve the type of the integral value.
bool getIsDefaulted() const
If returns 'true', this TemplateArgument corresponds to a default template parameter.
ValueDecl * getAsDecl() const
Retrieve the declaration for a declaration non-type template argument.
ArrayRef< TemplateArgument > pack_elements() const
Iterator range referencing all of the elements of a template argument pack.
@ Declaration
The template argument is a declaration that was provided for a pointer, reference,...
@ Template
The template argument is a template name that was provided for a template template parameter.
@ StructuralValue
The template argument is a non-type template argument that can't be represented by the special-case D...
@ Pack
The template argument is actually a parameter pack.
@ TemplateExpansion
The template argument is a pack expansion of a template name that was provided for a template templat...
@ NullPtr
The template argument is a null pointer or null pointer to member that was provided for a non-type te...
@ Type
The template argument is a type.
@ Null
Represents an empty template argument, e.g., one that has not been deduced.
@ Integral
The template argument is an integral value stored in an llvm::APSInt that was provided for an integra...
@ Expression
The template argument is an expression, and we've not resolved it to one of the other forms yet,...
ArgKind getKind() const
Return the kind of stored template argument.
bool isCanonicalExpr() const
TemplateName getAsTemplateOrTemplatePattern() const
Retrieve the template argument as a template name; if the argument is a pack expansion,...
const APValue & getAsStructuralValue() const
Get the value of a StructuralValue.
TemplateParameterList * getTemplateParameters() const
Get the list of template parameters.
Represents a C++ template name within the type system.
TemplateDecl * getAsTemplateDecl(bool IgnoreDeduced=false) const
Retrieve the underlying template declaration that this template name refers to, if known.
bool isNull() const
Determine whether this template name is NULL.
DependentTemplateName * getAsDependentTemplateName() const
Retrieve the underlying dependent template name structure, if any.
QualifiedTemplateName * getAsQualifiedTemplateName() const
Retrieve the underlying qualified template name structure, if any.
OverloadedTemplateStorage * getAsOverloadedTemplate() const
Retrieve the underlying, overloaded function template declarations that this template name refers to,...
AssumedTemplateStorage * getAsAssumedTemplateName() const
Retrieve information on a name that has been assumed to be a template-name in order to permit a call ...
@ UsingTemplate
A template name that refers to a template declaration found through a specific using shadow declarati...
@ OverloadedTemplate
A set of overloaded template declarations.
@ Template
A single template declaration.
@ DependentTemplate
A dependent template name that has not been resolved to a template (or set of templates).
@ SubstTemplateTemplateParm
A template template parameter that has been substituted for some other template name.
@ SubstTemplateTemplateParmPack
A template template parameter pack that has been substituted for a template template argument pack,...
@ DeducedTemplate
A template name that refers to another TemplateName with deduced default arguments.
@ QualifiedTemplate
A qualified template name, where the qualification is kept to describe the source code as written.
@ AssumedTemplate
An unqualified-id that has been assumed to name a function template that will be found by ADL.
UsingShadowDecl * getAsUsingShadowDecl() const
Retrieve the using shadow declaration through which the underlying template declaration is introduced...
SubstTemplateTemplateParmPackStorage * getAsSubstTemplateTemplateParmPack() const
Retrieve the substituted template template parameter pack, if known.
SubstTemplateTemplateParmStorage * getAsSubstTemplateTemplateParm() const
Retrieve the substituted template template parameter, if known.
A template parameter object.
const APValue & getValue() const
Stores a list of template parameters for a TemplateDecl and its derived classes.
NamedDecl * getParam(unsigned Idx)
static TemplateParameterList * Create(const ASTContext &C, SourceLocation TemplateLoc, SourceLocation LAngleLoc, ArrayRef< NamedDecl * > Params, SourceLocation RAngleLoc, Expr *RequiresClause)
Expr * getRequiresClause()
The constraint-expression of the associated requires-clause.
SourceLocation getRAngleLoc() const
SourceLocation getLAngleLoc() const
SourceLocation getTemplateLoc() const
TemplateTemplateParmDecl - Declares a template template parameter, e.g., "T" in.
bool wasDeclaredWithTypename() const
Whether this template template parameter was declared with the 'typename' keyword.
TemplateNameKind templateParameterKind() const
unsigned getPosition() const
Get the position of the template parameter within its parameter list.
bool isParameterPack() const
Whether this template template parameter is a template parameter pack.
unsigned getDepth() const
Get the nesting depth of the template parameter.
Declaration of a template type parameter.
bool wasDeclaredWithTypename() const
Whether this template type parameter was declared with the 'typename' keyword.
unsigned getIndex() const
Retrieve the index of the template parameter.
void setTypeConstraint(ConceptReference *CR, Expr *ImmediatelyDeclaredConstraint, UnsignedOrNone ArgPackSubstIndex)
bool hasTypeConstraint() const
Determine whether this template parameter has a type-constraint.
const TypeConstraint * getTypeConstraint() const
Returns the type constraint associated with this template parameter (if any).
bool isParameterPack() const
Returns whether this is a parameter pack.
unsigned getDepth() const
Retrieve the depth of the template parameter.
The top declaration context.
Represents the declaration of a typedef-name via a C++11 alias-declaration.
TypeAliasTemplateDecl * getDescribedAliasTemplate() const
Declaration of an alias template.
TypeAliasDecl * getTemplatedDecl() const
Get the underlying function declaration of the template.
Models the abbreviated syntax to constrain a template type parameter: template <convertible_to<string...
SourceLocation getBeginLoc() const LLVM_READONLY
Symbolic representation of typeid(T) for some type T.
const Type * getType() const
SourceLocation getBeginLoc() const
Get the begin source location.
A container of type source information.
TypeLoc getTypeLoc() const
Return the TypeLoc wrapper for the type source info.
QualType getType() const
Return the type wrapped by this type source info.
A type trait used in the implementation of various C++11 and Library TR1 trait templates.
bool getBoolValue() const
ArrayRef< TypeSourceInfo * > getArgs() const
Retrieve the argument types.
static TypeTraitExpr * Create(const ASTContext &C, QualType T, SourceLocation Loc, TypeTrait Kind, ArrayRef< TypeSourceInfo * > Args, SourceLocation RParenLoc, bool Value)
Create a new type trait expression.
SourceLocation getEndLoc() const LLVM_READONLY
unsigned getNumArgs() const
Determine the number of arguments to this type trait.
TypeTrait getTrait() const
Determine which type trait this expression uses.
SourceLocation getBeginLoc() const LLVM_READONLY
const APValue & getAPValue() const
bool isStoredAsBoolean() const
ExpectedType Visit(const Type *T)
The base class of the type hierarchy.
RecordDecl * getAsRecordDecl() const
Retrieves the RecordDecl this type refers to.
QualType getPointeeType() const
If this is a pointer, ObjC object pointer, or block pointer, this returns the respective pointee.
const Type * getBaseElementTypeUnsafe() const
Get the base element type of this type, potentially discarding type qualifiers.
bool isIncompleteType(NamedDecl **Def=nullptr) const
Types are partitioned into 3 broad categories (C99 6.2.5p1): object types, function types,...
bool isCanonicalUnqualified() const
Determines if this type would be canonical if it had no further qualification.
const T * getAs() const
Member-template getAs<specific type>'.
bool isRecordType() const
Represents the declaration of a typedef-name via the 'typedef' type specifier.
Base class for declarations which introduce a typedef-name.
TypeSourceInfo * getTypeSourceInfo() const
QualType getUnderlyingType() const
UnaryExprOrTypeTraitExpr - expression with either a type or (unevaluated) expression operand.
SourceLocation getRParenLoc() const
SourceLocation getOperatorLoc() const
bool isArgumentType() const
TypeSourceInfo * getArgumentTypeInfo() const
UnaryExprOrTypeTrait getKind() const
UnaryOperator - This represents the unary-expression's (except sizeof and alignof),...
SourceLocation getOperatorLoc() const
getOperatorLoc - Return the location of the operator.
Expr * getSubExpr() const
bool hasStoredFPFeatures() const
Is FPFeatures in Trailing Storage?
FPOptionsOverride getStoredFPFeatures() const
Get FPFeatures from trailing storage.
static UnaryOperator * CreateEmpty(const ASTContext &C, bool hasFPFeatures)
bool canOverflow() const
Returns true if the unary operator can cause an overflow.
A reference to a name which we were able to look up during parsing but could not resolve to a specifi...
CXXRecordDecl * getNamingClass()
Gets the 'naming class' (in the sense of C++0x [class.access.base]p5) of the lookup.
bool requiresADL() const
True if this declaration should be extended by argument-dependent lookup.
static UnresolvedLookupExpr * Create(const ASTContext &Context, CXXRecordDecl *NamingClass, NestedNameSpecifierLoc QualifierLoc, const DeclarationNameInfo &NameInfo, bool RequiresADL, UnresolvedSetIterator Begin, UnresolvedSetIterator End, bool KnownDependent, bool KnownInstantiationDependent)
Represents a C++ member access expression for which lookup produced a set of overloaded functions.
bool isArrow() const
Determine whether this member expression used the '->' operator; otherwise, it used the '.
SourceLocation getOperatorLoc() const
Retrieve the location of the '->' or '.' operator.
bool hasUnresolvedUsing() const
Determine whether the lookup results contain an unresolved using declaration.
Expr * getBase()
Retrieve the base object of this member expressions, e.g., the x in x.m.
static UnresolvedMemberExpr * Create(const ASTContext &Context, bool HasUnresolvedUsing, Expr *Base, QualType BaseType, bool IsArrow, SourceLocation OperatorLoc, NestedNameSpecifierLoc QualifierLoc, SourceLocation TemplateKWLoc, const DeclarationNameInfo &MemberNameInfo, const TemplateArgumentListInfo *TemplateArgs, UnresolvedSetIterator Begin, UnresolvedSetIterator End)
bool isImplicitAccess() const
True if this is an implicit access, i.e., one in which the member being accessed was not written in t...
void addDecl(NamedDecl *D)
A set of unresolved declarations.
Represents a dependent using declaration which was marked with typename.
SourceLocation getTypenameLoc() const
Returns the source location of the 'typename' keyword.
NestedNameSpecifierLoc getQualifierLoc() const
Retrieve the nested-name-specifier that qualifies the name, with source-location information.
SourceLocation getUsingLoc() const
Returns the source location of the 'using' keyword.
SourceLocation getEllipsisLoc() const
Get the location of the ellipsis if this is a pack expansion.
Represents a dependent using declaration which was not marked with typename.
SourceLocation getUsingLoc() const
Returns the source location of the 'using' keyword.
NestedNameSpecifierLoc getQualifierLoc() const
Retrieve the nested-name-specifier that qualifies the name, with source-location information.
DeclarationNameInfo getNameInfo() const
SourceLocation getEllipsisLoc() const
Get the location of the ellipsis if this is a pack expansion.
Represents a C++ using-declaration.
bool hasTypename() const
Return true if the using declaration has 'typename'.
NestedNameSpecifierLoc getQualifierLoc() const
Retrieve the nested-name-specifier that qualifies the name, with source-location information.
DeclarationNameInfo getNameInfo() const
SourceLocation getUsingLoc() const
Return the source location of the 'using' keyword.
Represents C++ using-directive.
SourceLocation getUsingLoc() const
Return the location of the using keyword.
NamespaceDecl * getNominatedNamespace()
Returns the namespace nominated by this using-directive.
DeclContext * getCommonAncestor()
Returns the common ancestor context of this using-directive and its nominated namespace.
SourceLocation getNamespaceKeyLocation() const
Returns the location of the namespace keyword.
SourceLocation getIdentLocation() const
Returns the location of this using declaration's identifier.
NestedNameSpecifierLoc getQualifierLoc() const
Retrieve the nested-name-specifier that qualifies the name of the namespace, with source-location inf...
Represents a C++ using-enum-declaration.
SourceLocation getEnumLoc() const
The source location of the 'enum' keyword.
TypeSourceInfo * getEnumType() const
SourceLocation getUsingLoc() const
The source location of the 'using' keyword.
Represents a pack of using declarations that a single using-declarator pack-expanded into.
NamedDecl * getInstantiatedFromUsingDecl() const
Get the using declaration from which this was instantiated.
ArrayRef< NamedDecl * > expansions() const
Get the set of using declarations that this pack expanded into.
Represents a shadow declaration implicitly introduced into a scope by a (resolved) using-declaration ...
NamedDecl * getTargetDecl() const
Gets the underlying declaration which has been brought into the local scope.
BaseUsingDecl * getIntroducer() const
Gets the (written or instantiated) using declaration that introduced this declaration.
Represents a call to the builtin function __builtin_va_arg.
TypeSourceInfo * getWrittenTypeInfo() const
SourceLocation getBuiltinLoc() const
SourceLocation getRParenLoc() const
VarArgKind getVarargABI() const
const Expr * getSubExpr() const
Represent the declaration of a variable (in which case it is an lvalue) a function (in which case it ...
void setType(QualType newType)
Represents a variable declaration or definition.
VarTemplateDecl * getDescribedVarTemplate() const
Retrieves the variable template that is described by this variable declaration.
bool isConstexpr() const
Whether this variable is (C++11) constexpr.
void setInstantiationOfStaticDataMember(VarDecl *VD, TemplateSpecializationKind TSK)
Specify that this variable is an instantiation of the static data member VD.
VarDecl * getMostRecentDecl()
Returns the most recent (re)declaration of this declaration.
DefinitionKind isThisDeclarationADefinition(ASTContext &) const
Check whether this declaration is a definition.
bool isInlineSpecified() const
VarDecl * getDefinition(ASTContext &)
Get the real (not just tentative) definition for this declaration.
EvaluatedStmt * getEvaluatedStmt() const
EvaluatedStmt * ensureEvaluatedStmt() const
Convert the initializer for this declaration to the elaborated EvaluatedStmt form,...
void setInlineSpecified()
VarDecl * getInstantiatedFromStaticDataMember() const
If this variable is an instantiated static data member of a class template specialization,...
bool isFileVarDecl() const
Returns true for file scoped variable declaration.
void setTSCSpec(ThreadStorageClassSpecifier TSC)
bool isInline() const
Whether this variable is (C++1z) inline.
ThreadStorageClassSpecifier getTSCSpec() const
const Expr * getInit() const
void setConstexpr(bool IC)
void setDescribedVarTemplate(VarTemplateDecl *Template)
StorageClass getStorageClass() const
Returns the storage class as written in the source.
void setImplicitlyInline()
VarDecl * getPreviousDecl()
Return the previous declaration of this declaration or NULL if this is the first declaration.
const Expr * getAnyInitializer() const
Get the initializer for this variable, no matter which declaration it is attached to.
MemberSpecializationInfo * getMemberSpecializationInfo() const
If this variable is an instantiation of a static data member of a class template specialization,...
Declaration of a variable template.
VarDecl * getTemplatedDecl() const
Get the underlying variable declarations of the template.
bool isThisDeclarationADefinition() const
Returns whether this template declaration defines the primary variable pattern.
VarTemplateDecl * getMostRecentDecl()
Represents a variable template specialization, which refers to a variable template with a given set o...
SourceLocation getPointOfInstantiation() const
Get the point of instantiation (if any), or null if none.
void setTemplateArgsAsWritten(const ASTTemplateArgumentListInfo *ArgsWritten)
Set the template argument list as written in the sources.
const ASTTemplateArgumentListInfo * getTemplateArgsAsWritten() const
Retrieve the template argument list as written in the sources, if any.
void setSpecializationKind(TemplateSpecializationKind TSK)
const TemplateArgumentList & getTemplateArgs() const
Retrieve the template arguments of the variable template specialization.
void setPointOfInstantiation(SourceLocation Loc)
TemplateSpecializationKind getSpecializationKind() const
Determine the kind of specialization that this declaration represents.
VarTemplateDecl * getSpecializedTemplate() const
Retrieve the template that this specialization specializes.
VarTemplateSpecializationDecl * getMostRecentDecl()
WhileStmt - This represents a 'while' stmt.
SourceLocation getWhileLoc() const
SourceLocation getRParenLoc() const
VarDecl * getConditionVariable()
Retrieve the variable declared in this "while" statement, if any.
SourceLocation getLParenLoc() const
static WhileStmt * Create(const ASTContext &Ctx, VarDecl *Var, Expr *Cond, Stmt *Body, SourceLocation WL, SourceLocation LParenLoc, SourceLocation RParenLoc)
Create a while statement.
A requires-expression requirement which queries the validity and properties of an expression ('simple...
SubstitutionDiagnostic * getExprSubstitutionDiagnostic() const
ConceptSpecializationExpr * getReturnTypeRequirementSubstitutedConstraintExpr() const
const ReturnTypeRequirement & getReturnTypeRequirement() const
SatisfactionStatus getSatisfactionStatus() const
SourceLocation getNoexceptLoc() const
A requires-expression requirement which is satisfied when a general constraint expression is satisfie...
const ASTConstraintSatisfaction & getConstraintSatisfaction() const
bool hasInvalidConstraint() const
Expr * getConstraintExpr() const
StringRef getInvalidConstraintEntity()
A static requirement that can be used in a requires-expression to check properties of types and expre...
RequirementKind getKind() const
A requires-expression requirement which queries the existence of a type name or type template special...
bool isSubstitutionFailure() const
SubstitutionDiagnostic * getSubstitutionDiagnostic() const
TypeSourceInfo * getType() const
Top level wrappers for InstallAPI frontend operations.
CanQual< Type > CanQualType
Represents a canonical, potentially-qualified type.
bool isa(CodeGen::Address addr)
llvm::Expected< SourceLocation > ExpectedSLoc
StructuralEquivalenceKind
Whether to perform a normal or minimal equivalence check.
llvm::Expected< const Type * > ExpectedTypePtr
CanThrowResult
Possible results from evaluation of a noexcept expression.
@ TemplateName
The identifier is a template name. FIXME: Add an annotation for that.
ExprObjectKind
A further classification of the kind of object referenced by an l-value or x-value.
std::pair< FileID, unsigned > FileIDAndOffset
llvm::Expected< DeclarationName > ExpectedName
llvm::Expected< Decl * > ExpectedDecl
@ Property
The type of a property.
@ Result
The result type of a method or function.
OptionalUnsigned< unsigned > UnsignedOrNone
const FunctionProtoType * T
llvm::Expected< QualType > ExpectedType
@ Template
We are parsing a template declaration.
static OMPLinearClause * Create(const ASTContext &C, SourceLocation StartLoc, SourceLocation LParenLoc, OpenMPLinearClauseKind Modifier, SourceLocation ModifierLoc, SourceLocation ColonLoc, SourceLocation StepModifierLoc, SourceLocation EndLoc, ArrayRef< Expr * > VL, ArrayRef< Expr * > PL, ArrayRef< Expr * > IL, Expr *Step, Expr *CalcStep, Stmt *PreInit, Expr *PostUpdate)
Creates clause with a list of variables VL and a linear step Step.
@ VarTemplate
The name was classified as a variable template name.
std::pair< SourceLocation, StringRef > ConstraintSubstitutionDiagnostic
Unsatisfied constraint expressions if the template arguments could be substituted into them,...
CastKind
CastKind - The kind of operation required for a conversion.
ExprValueKind
The categorization of expression values, currently following the C++11 scheme.
llvm::SmallVector< Decl *, 2 > getCanonicalForwardRedeclChain(Decl *D)
SmallVector< CXXBaseSpecifier *, 4 > CXXCastPath
A simple array of base specifiers.
llvm::Expected< Expr * > ExpectedExpr
bool declaresSameEntity(const Decl *D1, const Decl *D2)
Determine whether two declarations declare the same entity.
TemplateSpecializationKind
Describes the kind of template specialization that a particular template specialization declaration r...
U cast(CodeGen::Address addr)
llvm::Expected< Stmt * > ExpectedStmt
static void updateFlags(const Decl *From, Decl *To)
__packed_splat4 __packed_splat2 __packed_splat8 __packed_splat4 __packed_splat2 __packed_splat4 __packed_splat2 __packed_splat8 __packed_splat4 uint32_t
Used as return type of getFriendCountAndPosition.
unsigned int IndexOfDecl
Index of the specific FriendDecl.
unsigned int TotalCount
Number of similar looking friends.
The result of a constraint satisfaction check, containing the necessary information to diagnose an un...
const UnsatisfiedConstraintRecord * end() const
static ASTConstraintSatisfaction * Rebuild(const ASTContext &C, const ASTConstraintSatisfaction &Satisfaction)
const UnsatisfiedConstraintRecord * begin() const
Represents an explicit template argument list in C++, e.g., the "<int>" in "sort<int>".
static const ASTTemplateArgumentListInfo * Create(const ASTContext &C, const TemplateArgumentListInfo &List)
const Expr * ConstraintExpr
DeclarationNameInfo - A collector data type for bundling together a DeclarationName and the correspon...
SourceLocation getLoc() const
getLoc - Returns the main location of the declaration name.
DeclarationName getName() const
getName - Returns the embedded declaration name.
void setCXXLiteralOperatorNameLoc(SourceLocation Loc)
setCXXLiteralOperatorNameLoc - Sets the location of the literal operator name (not the operator keywo...
void setNamedTypeInfo(TypeSourceInfo *TInfo)
setNamedTypeInfo - Sets the source type info associated to the name.
void setCXXOperatorNameRange(SourceRange R)
setCXXOperatorNameRange - Sets the range of the operator name (without the operator keyword).
SourceRange getCXXOperatorNameRange() const
getCXXOperatorNameRange - Gets the range of the operator name (without the operator keyword).
TypeSourceInfo * getNamedTypeInfo() const
SourceLocation getCXXLiteralOperatorNameLoc() const
getCXXLiteralOperatorNameLoc - Returns the location of the literal operator name (not the operator ke...
Structure used to store a statement, the constant value to which it was evaluated (if any),...
unsigned HasConstantInitialization
Whether this variable is known to have constant initialization.
unsigned HasConstantDestruction
Whether this variable is known to have constant destruction.
FunctionDecl * SourceDecl
The function whose exception specification this is, for EST_Unevaluated and EST_Uninstantiated.
FunctionDecl * SourceTemplate
The function template whose exception specification this is instantiated from, for EST_Uninstantiated...
ExceptionSpecificationType Type
The kind of exception specification this is.
ArrayRef< QualType > Exceptions
Explicitly-specified list of exception types.
Expr * NoexceptExpr
Noexcept expression, if this is a computed noexcept specification.
Extra information about a function prototype.
ExceptionSpecInfo ExceptionSpec
RefQualifierKind RefQualifier
unsigned HasTrailingReturn
FunctionType::ExtInfo ExtInfo
const IdentifierInfo * getIdentifier() const
Returns the identifier to which this template name refers.
OverloadedOperatorKind getOperator() const
Return the overloaded operator to which this template name refers.
NestedNameSpecifierLoc Prefix
const NamespaceBaseDecl * Namespace
bool IsEquivalent(Decl *D1, Decl *D2)
Determine whether the two declarations are structurally equivalent.
Location information for a TemplateArgument.
SourceLocation getTemplateEllipsisLoc() const
SourceLocation getTemplateKwLoc() const
TypeSourceInfo * getAsTypeSourceInfo() const
SourceLocation getTemplateNameLoc() const
StringRef SubstitutedEntity