1 //===- ASTStructuralEquivalence.cpp ---------------------------------------===// 2 // 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4 // See https://llvm.org/LICENSE.txt for license information. 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6 // 7 //===----------------------------------------------------------------------===// 8 // 9 // This file implement StructuralEquivalenceContext class and helper functions 10 // for layout matching. 11 // 12 // The structural equivalence check could have been implemented as a parallel 13 // BFS on a pair of graphs. That must have been the original approach at the 14 // beginning. 15 // Let's consider this simple BFS algorithm from the `s` source: 16 // ``` 17 // void bfs(Graph G, int s) 18 // { 19 // Queue<Integer> queue = new Queue<Integer>(); 20 // marked[s] = true; // Mark the source 21 // queue.enqueue(s); // and put it on the queue. 22 // while (!q.isEmpty()) { 23 // int v = queue.dequeue(); // Remove next vertex from the queue. 24 // for (int w : G.adj(v)) 25 // if (!marked[w]) // For every unmarked adjacent vertex, 26 // { 27 // marked[w] = true; 28 // queue.enqueue(w); 29 // } 30 // } 31 // } 32 // ``` 33 // Indeed, it has it's queue, which holds pairs of nodes, one from each graph, 34 // this is the `DeclsToCheck` member. `VisitedDecls` plays the role of the 35 // marking (`marked`) functionality above, we use it to check whether we've 36 // already seen a pair of nodes. 37 // 38 // We put in the elements into the queue only in the toplevel decl check 39 // function: 40 // ``` 41 // static bool IsStructurallyEquivalent(StructuralEquivalenceContext &Context, 42 // Decl *D1, Decl *D2); 43 // ``` 44 // The `while` loop where we iterate over the children is implemented in 45 // `Finish()`. And `Finish` is called only from the two **member** functions 46 // which check the equivalency of two Decls or two Types. ASTImporter (and 47 // other clients) call only these functions. 48 // 49 // The `static` implementation functions are called from `Finish`, these push 50 // the children nodes to the queue via `static bool 51 // IsStructurallyEquivalent(StructuralEquivalenceContext &Context, Decl *D1, 52 // Decl *D2)`. So far so good, this is almost like the BFS. However, if we 53 // let a static implementation function to call `Finish` via another **member** 54 // function that means we end up with two nested while loops each of them 55 // working on the same queue. This is wrong and nobody can reason about it's 56 // doing. Thus, static implementation functions must not call the **member** 57 // functions. 58 // 59 //===----------------------------------------------------------------------===// 60 61 #include "clang/AST/ASTStructuralEquivalence.h" 62 #include "clang/AST/ASTContext.h" 63 #include "clang/AST/ASTDiagnostic.h" 64 #include "clang/AST/Decl.h" 65 #include "clang/AST/DeclBase.h" 66 #include "clang/AST/DeclCXX.h" 67 #include "clang/AST/DeclFriend.h" 68 #include "clang/AST/DeclObjC.h" 69 #include "clang/AST/DeclOpenMP.h" 70 #include "clang/AST/DeclTemplate.h" 71 #include "clang/AST/ExprCXX.h" 72 #include "clang/AST/ExprConcepts.h" 73 #include "clang/AST/ExprObjC.h" 74 #include "clang/AST/ExprOpenMP.h" 75 #include "clang/AST/NestedNameSpecifier.h" 76 #include "clang/AST/StmtObjC.h" 77 #include "clang/AST/StmtOpenMP.h" 78 #include "clang/AST/TemplateBase.h" 79 #include "clang/AST/TemplateName.h" 80 #include "clang/AST/Type.h" 81 #include "clang/Basic/ExceptionSpecificationType.h" 82 #include "clang/Basic/IdentifierTable.h" 83 #include "clang/Basic/LLVM.h" 84 #include "clang/Basic/SourceLocation.h" 85 #include "llvm/ADT/APInt.h" 86 #include "llvm/ADT/APSInt.h" 87 #include "llvm/ADT/None.h" 88 #include "llvm/ADT/Optional.h" 89 #include "llvm/ADT/StringExtras.h" 90 #include "llvm/Support/Casting.h" 91 #include "llvm/Support/Compiler.h" 92 #include "llvm/Support/ErrorHandling.h" 93 #include <cassert> 94 #include <utility> 95 96 using namespace clang; 97 98 static bool IsStructurallyEquivalent(StructuralEquivalenceContext &Context, 99 QualType T1, QualType T2); 100 static bool IsStructurallyEquivalent(StructuralEquivalenceContext &Context, 101 Decl *D1, Decl *D2); 102 static bool IsStructurallyEquivalent(StructuralEquivalenceContext &Context, 103 const TemplateArgument &Arg1, 104 const TemplateArgument &Arg2); 105 static bool IsStructurallyEquivalent(StructuralEquivalenceContext &Context, 106 NestedNameSpecifier *NNS1, 107 NestedNameSpecifier *NNS2); 108 static bool IsStructurallyEquivalent(const IdentifierInfo *Name1, 109 const IdentifierInfo *Name2); 110 111 static bool IsStructurallyEquivalent(StructuralEquivalenceContext &Context, 112 const DeclarationName Name1, 113 const DeclarationName Name2) { 114 if (Name1.getNameKind() != Name2.getNameKind()) 115 return false; 116 117 switch (Name1.getNameKind()) { 118 119 case DeclarationName::Identifier: 120 return IsStructurallyEquivalent(Name1.getAsIdentifierInfo(), 121 Name2.getAsIdentifierInfo()); 122 123 case DeclarationName::CXXConstructorName: 124 case DeclarationName::CXXDestructorName: 125 case DeclarationName::CXXConversionFunctionName: 126 return IsStructurallyEquivalent(Context, Name1.getCXXNameType(), 127 Name2.getCXXNameType()); 128 129 case DeclarationName::CXXDeductionGuideName: { 130 if (!IsStructurallyEquivalent( 131 Context, Name1.getCXXDeductionGuideTemplate()->getDeclName(), 132 Name2.getCXXDeductionGuideTemplate()->getDeclName())) 133 return false; 134 return IsStructurallyEquivalent(Context, 135 Name1.getCXXDeductionGuideTemplate(), 136 Name2.getCXXDeductionGuideTemplate()); 137 } 138 139 case DeclarationName::CXXOperatorName: 140 return Name1.getCXXOverloadedOperator() == Name2.getCXXOverloadedOperator(); 141 142 case DeclarationName::CXXLiteralOperatorName: 143 return IsStructurallyEquivalent(Name1.getCXXLiteralIdentifier(), 144 Name2.getCXXLiteralIdentifier()); 145 146 case DeclarationName::CXXUsingDirective: 147 return true; // FIXME When do we consider two using directives equal? 148 149 case DeclarationName::ObjCZeroArgSelector: 150 case DeclarationName::ObjCOneArgSelector: 151 case DeclarationName::ObjCMultiArgSelector: 152 return true; // FIXME 153 } 154 155 llvm_unreachable("Unhandled kind of DeclarationName"); 156 return true; 157 } 158 159 namespace { 160 /// Encapsulates Stmt comparison logic. 161 class StmtComparer { 162 StructuralEquivalenceContext &Context; 163 164 // IsStmtEquivalent overloads. Each overload compares a specific statement 165 // and only has to compare the data that is specific to the specific statement 166 // class. Should only be called from TraverseStmt. 167 168 bool IsStmtEquivalent(const AddrLabelExpr *E1, const AddrLabelExpr *E2) { 169 return IsStructurallyEquivalent(Context, E1->getLabel(), E2->getLabel()); 170 } 171 172 bool IsStmtEquivalent(const AtomicExpr *E1, const AtomicExpr *E2) { 173 return E1->getOp() == E2->getOp(); 174 } 175 176 bool IsStmtEquivalent(const BinaryOperator *E1, const BinaryOperator *E2) { 177 return E1->getOpcode() == E2->getOpcode(); 178 } 179 180 bool IsStmtEquivalent(const CallExpr *E1, const CallExpr *E2) { 181 // FIXME: IsStructurallyEquivalent requires non-const Decls. 182 Decl *Callee1 = const_cast<Decl *>(E1->getCalleeDecl()); 183 Decl *Callee2 = const_cast<Decl *>(E2->getCalleeDecl()); 184 185 // Compare whether both calls know their callee. 186 if (static_cast<bool>(Callee1) != static_cast<bool>(Callee2)) 187 return false; 188 189 // Both calls have no callee, so nothing to do. 190 if (!static_cast<bool>(Callee1)) 191 return true; 192 193 assert(Callee2); 194 return IsStructurallyEquivalent(Context, Callee1, Callee2); 195 } 196 197 bool IsStmtEquivalent(const CharacterLiteral *E1, 198 const CharacterLiteral *E2) { 199 return E1->getValue() == E2->getValue() && E1->getKind() == E2->getKind(); 200 } 201 202 bool IsStmtEquivalent(const ChooseExpr *E1, const ChooseExpr *E2) { 203 return true; // Semantics only depend on children. 204 } 205 206 bool IsStmtEquivalent(const CompoundStmt *E1, const CompoundStmt *E2) { 207 // Number of children is actually checked by the generic children comparison 208 // code, but a CompoundStmt is one of the few statements where the number of 209 // children frequently differs and the number of statements is also always 210 // precomputed. Directly comparing the number of children here is thus 211 // just an optimization. 212 return E1->size() == E2->size(); 213 } 214 215 bool IsStmtEquivalent(const DependentScopeDeclRefExpr *DE1, 216 const DependentScopeDeclRefExpr *DE2) { 217 if (!IsStructurallyEquivalent(Context, DE1->getDeclName(), 218 DE2->getDeclName())) 219 return false; 220 return IsStructurallyEquivalent(Context, DE1->getQualifier(), 221 DE2->getQualifier()); 222 } 223 224 bool IsStmtEquivalent(const Expr *E1, const Expr *E2) { 225 return IsStructurallyEquivalent(Context, E1->getType(), E2->getType()); 226 } 227 228 bool IsStmtEquivalent(const ExpressionTraitExpr *E1, 229 const ExpressionTraitExpr *E2) { 230 return E1->getTrait() == E2->getTrait() && E1->getValue() == E2->getValue(); 231 } 232 233 bool IsStmtEquivalent(const FloatingLiteral *E1, const FloatingLiteral *E2) { 234 return E1->isExact() == E2->isExact() && E1->getValue() == E2->getValue(); 235 } 236 237 bool IsStmtEquivalent(const GenericSelectionExpr *E1, 238 const GenericSelectionExpr *E2) { 239 for (auto Pair : zip_longest(E1->getAssocTypeSourceInfos(), 240 E2->getAssocTypeSourceInfos())) { 241 Optional<TypeSourceInfo *> Child1 = std::get<0>(Pair); 242 Optional<TypeSourceInfo *> Child2 = std::get<1>(Pair); 243 // Skip this case if there are a different number of associated types. 244 if (!Child1 || !Child2) 245 return false; 246 247 if (!IsStructurallyEquivalent(Context, (*Child1)->getType(), 248 (*Child2)->getType())) 249 return false; 250 } 251 252 return true; 253 } 254 255 bool IsStmtEquivalent(const ImplicitCastExpr *CastE1, 256 const ImplicitCastExpr *CastE2) { 257 return IsStructurallyEquivalent(Context, CastE1->getType(), 258 CastE2->getType()); 259 } 260 261 bool IsStmtEquivalent(const IntegerLiteral *E1, const IntegerLiteral *E2) { 262 return E1->getValue() == E2->getValue(); 263 } 264 265 bool IsStmtEquivalent(const MemberExpr *E1, const MemberExpr *E2) { 266 return IsStructurallyEquivalent(Context, E1->getFoundDecl(), 267 E2->getFoundDecl()); 268 } 269 270 bool IsStmtEquivalent(const ObjCStringLiteral *E1, 271 const ObjCStringLiteral *E2) { 272 // Just wraps a StringLiteral child. 273 return true; 274 } 275 276 bool IsStmtEquivalent(const Stmt *S1, const Stmt *S2) { return true; } 277 278 bool IsStmtEquivalent(const SourceLocExpr *E1, const SourceLocExpr *E2) { 279 return E1->getIdentKind() == E2->getIdentKind(); 280 } 281 282 bool IsStmtEquivalent(const StmtExpr *E1, const StmtExpr *E2) { 283 return E1->getTemplateDepth() == E2->getTemplateDepth(); 284 } 285 286 bool IsStmtEquivalent(const StringLiteral *E1, const StringLiteral *E2) { 287 return E1->getBytes() == E2->getBytes(); 288 } 289 290 bool IsStmtEquivalent(const SubstNonTypeTemplateParmExpr *E1, 291 const SubstNonTypeTemplateParmExpr *E2) { 292 return IsStructurallyEquivalent(Context, E1->getParameter(), 293 E2->getParameter()); 294 } 295 296 bool IsStmtEquivalent(const SubstNonTypeTemplateParmPackExpr *E1, 297 const SubstNonTypeTemplateParmPackExpr *E2) { 298 return IsStructurallyEquivalent(Context, E1->getArgumentPack(), 299 E2->getArgumentPack()); 300 } 301 302 bool IsStmtEquivalent(const TypeTraitExpr *E1, const TypeTraitExpr *E2) { 303 if (E1->getTrait() != E2->getTrait()) 304 return false; 305 306 for (auto Pair : zip_longest(E1->getArgs(), E2->getArgs())) { 307 Optional<TypeSourceInfo *> Child1 = std::get<0>(Pair); 308 Optional<TypeSourceInfo *> Child2 = std::get<1>(Pair); 309 // Different number of args. 310 if (!Child1 || !Child2) 311 return false; 312 313 if (!IsStructurallyEquivalent(Context, (*Child1)->getType(), 314 (*Child2)->getType())) 315 return false; 316 } 317 return true; 318 } 319 320 bool IsStmtEquivalent(const UnaryExprOrTypeTraitExpr *E1, 321 const UnaryExprOrTypeTraitExpr *E2) { 322 if (E1->getKind() != E2->getKind()) 323 return false; 324 return IsStructurallyEquivalent(Context, E1->getTypeOfArgument(), 325 E2->getTypeOfArgument()); 326 } 327 328 bool IsStmtEquivalent(const UnaryOperator *E1, const UnaryOperator *E2) { 329 return E1->getOpcode() == E2->getOpcode(); 330 } 331 332 bool IsStmtEquivalent(const VAArgExpr *E1, const VAArgExpr *E2) { 333 // Semantics only depend on children. 334 return true; 335 } 336 337 /// End point of the traversal chain. 338 bool TraverseStmt(const Stmt *S1, const Stmt *S2) { return true; } 339 340 // Create traversal methods that traverse the class hierarchy and return 341 // the accumulated result of the comparison. Each TraverseStmt overload 342 // calls the TraverseStmt overload of the parent class. For example, 343 // the TraverseStmt overload for 'BinaryOperator' calls the TraverseStmt 344 // overload of 'Expr' which then calls the overload for 'Stmt'. 345 #define STMT(CLASS, PARENT) \ 346 bool TraverseStmt(const CLASS *S1, const CLASS *S2) { \ 347 if (!TraverseStmt(static_cast<const PARENT *>(S1), \ 348 static_cast<const PARENT *>(S2))) \ 349 return false; \ 350 return IsStmtEquivalent(S1, S2); \ 351 } 352 #include "clang/AST/StmtNodes.inc" 353 354 public: 355 StmtComparer(StructuralEquivalenceContext &C) : Context(C) {} 356 357 /// Determine whether two statements are equivalent. The statements have to 358 /// be of the same kind. The children of the statements and their properties 359 /// are not compared by this function. 360 bool IsEquivalent(const Stmt *S1, const Stmt *S2) { 361 if (S1->getStmtClass() != S2->getStmtClass()) 362 return false; 363 364 // Each TraverseStmt walks the class hierarchy from the leaf class to 365 // the root class 'Stmt' (e.g. 'BinaryOperator' -> 'Expr' -> 'Stmt'). Cast 366 // the Stmt we have here to its specific subclass so that we call the 367 // overload that walks the whole class hierarchy from leaf to root (e.g., 368 // cast to 'BinaryOperator' so that 'Expr' and 'Stmt' is traversed). 369 switch (S1->getStmtClass()) { 370 case Stmt::NoStmtClass: 371 llvm_unreachable("Can't traverse NoStmtClass"); 372 #define STMT(CLASS, PARENT) \ 373 case Stmt::StmtClass::CLASS##Class: \ 374 return TraverseStmt(static_cast<const CLASS *>(S1), \ 375 static_cast<const CLASS *>(S2)); 376 #define ABSTRACT_STMT(S) 377 #include "clang/AST/StmtNodes.inc" 378 } 379 llvm_unreachable("Invalid statement kind"); 380 } 381 }; 382 } // namespace 383 384 /// Determine structural equivalence of two statements. 385 static bool IsStructurallyEquivalent(StructuralEquivalenceContext &Context, 386 const Stmt *S1, const Stmt *S2) { 387 if (!S1 || !S2) 388 return S1 == S2; 389 390 // Compare the statements itself. 391 StmtComparer Comparer(Context); 392 if (!Comparer.IsEquivalent(S1, S2)) 393 return false; 394 395 // Iterate over the children of both statements and also compare them. 396 for (auto Pair : zip_longest(S1->children(), S2->children())) { 397 Optional<const Stmt *> Child1 = std::get<0>(Pair); 398 Optional<const Stmt *> Child2 = std::get<1>(Pair); 399 // One of the statements has a different amount of children than the other, 400 // so the statements can't be equivalent. 401 if (!Child1 || !Child2) 402 return false; 403 if (!IsStructurallyEquivalent(Context, *Child1, *Child2)) 404 return false; 405 } 406 return true; 407 } 408 409 /// Determine whether two identifiers are equivalent. 410 static bool IsStructurallyEquivalent(const IdentifierInfo *Name1, 411 const IdentifierInfo *Name2) { 412 if (!Name1 || !Name2) 413 return Name1 == Name2; 414 415 return Name1->getName() == Name2->getName(); 416 } 417 418 /// Determine whether two nested-name-specifiers are equivalent. 419 static bool IsStructurallyEquivalent(StructuralEquivalenceContext &Context, 420 NestedNameSpecifier *NNS1, 421 NestedNameSpecifier *NNS2) { 422 if (NNS1->getKind() != NNS2->getKind()) 423 return false; 424 425 NestedNameSpecifier *Prefix1 = NNS1->getPrefix(), 426 *Prefix2 = NNS2->getPrefix(); 427 if ((bool)Prefix1 != (bool)Prefix2) 428 return false; 429 430 if (Prefix1) 431 if (!IsStructurallyEquivalent(Context, Prefix1, Prefix2)) 432 return false; 433 434 switch (NNS1->getKind()) { 435 case NestedNameSpecifier::Identifier: 436 return IsStructurallyEquivalent(NNS1->getAsIdentifier(), 437 NNS2->getAsIdentifier()); 438 case NestedNameSpecifier::Namespace: 439 return IsStructurallyEquivalent(Context, NNS1->getAsNamespace(), 440 NNS2->getAsNamespace()); 441 case NestedNameSpecifier::NamespaceAlias: 442 return IsStructurallyEquivalent(Context, NNS1->getAsNamespaceAlias(), 443 NNS2->getAsNamespaceAlias()); 444 case NestedNameSpecifier::TypeSpec: 445 case NestedNameSpecifier::TypeSpecWithTemplate: 446 return IsStructurallyEquivalent(Context, QualType(NNS1->getAsType(), 0), 447 QualType(NNS2->getAsType(), 0)); 448 case NestedNameSpecifier::Global: 449 return true; 450 case NestedNameSpecifier::Super: 451 return IsStructurallyEquivalent(Context, NNS1->getAsRecordDecl(), 452 NNS2->getAsRecordDecl()); 453 } 454 return false; 455 } 456 457 static bool IsStructurallyEquivalent(StructuralEquivalenceContext &Context, 458 const TemplateName &N1, 459 const TemplateName &N2) { 460 TemplateDecl *TemplateDeclN1 = N1.getAsTemplateDecl(); 461 TemplateDecl *TemplateDeclN2 = N2.getAsTemplateDecl(); 462 if (TemplateDeclN1 && TemplateDeclN2) { 463 if (!IsStructurallyEquivalent(Context, TemplateDeclN1, TemplateDeclN2)) 464 return false; 465 // If the kind is different we compare only the template decl. 466 if (N1.getKind() != N2.getKind()) 467 return true; 468 } else if (TemplateDeclN1 || TemplateDeclN2) 469 return false; 470 else if (N1.getKind() != N2.getKind()) 471 return false; 472 473 // Check for special case incompatibilities. 474 switch (N1.getKind()) { 475 476 case TemplateName::OverloadedTemplate: { 477 OverloadedTemplateStorage *OS1 = N1.getAsOverloadedTemplate(), 478 *OS2 = N2.getAsOverloadedTemplate(); 479 OverloadedTemplateStorage::iterator I1 = OS1->begin(), I2 = OS2->begin(), 480 E1 = OS1->end(), E2 = OS2->end(); 481 for (; I1 != E1 && I2 != E2; ++I1, ++I2) 482 if (!IsStructurallyEquivalent(Context, *I1, *I2)) 483 return false; 484 return I1 == E1 && I2 == E2; 485 } 486 487 case TemplateName::AssumedTemplate: { 488 AssumedTemplateStorage *TN1 = N1.getAsAssumedTemplateName(), 489 *TN2 = N1.getAsAssumedTemplateName(); 490 return TN1->getDeclName() == TN2->getDeclName(); 491 } 492 493 case TemplateName::DependentTemplate: { 494 DependentTemplateName *DN1 = N1.getAsDependentTemplateName(), 495 *DN2 = N2.getAsDependentTemplateName(); 496 if (!IsStructurallyEquivalent(Context, DN1->getQualifier(), 497 DN2->getQualifier())) 498 return false; 499 if (DN1->isIdentifier() && DN2->isIdentifier()) 500 return IsStructurallyEquivalent(DN1->getIdentifier(), 501 DN2->getIdentifier()); 502 else if (DN1->isOverloadedOperator() && DN2->isOverloadedOperator()) 503 return DN1->getOperator() == DN2->getOperator(); 504 return false; 505 } 506 507 case TemplateName::SubstTemplateTemplateParmPack: { 508 SubstTemplateTemplateParmPackStorage 509 *P1 = N1.getAsSubstTemplateTemplateParmPack(), 510 *P2 = N2.getAsSubstTemplateTemplateParmPack(); 511 return IsStructurallyEquivalent(Context, P1->getArgumentPack(), 512 P2->getArgumentPack()) && 513 IsStructurallyEquivalent(Context, P1->getParameterPack(), 514 P2->getParameterPack()); 515 } 516 517 case TemplateName::Template: 518 case TemplateName::QualifiedTemplate: 519 case TemplateName::SubstTemplateTemplateParm: 520 // It is sufficient to check value of getAsTemplateDecl. 521 break; 522 523 } 524 525 return true; 526 } 527 528 /// Determine whether two template arguments are equivalent. 529 static bool IsStructurallyEquivalent(StructuralEquivalenceContext &Context, 530 const TemplateArgument &Arg1, 531 const TemplateArgument &Arg2) { 532 if (Arg1.getKind() != Arg2.getKind()) 533 return false; 534 535 switch (Arg1.getKind()) { 536 case TemplateArgument::Null: 537 return true; 538 539 case TemplateArgument::Type: 540 return IsStructurallyEquivalent(Context, Arg1.getAsType(), Arg2.getAsType()); 541 542 case TemplateArgument::Integral: 543 if (!IsStructurallyEquivalent(Context, Arg1.getIntegralType(), 544 Arg2.getIntegralType())) 545 return false; 546 547 return llvm::APSInt::isSameValue(Arg1.getAsIntegral(), 548 Arg2.getAsIntegral()); 549 550 case TemplateArgument::Declaration: 551 return IsStructurallyEquivalent(Context, Arg1.getAsDecl(), Arg2.getAsDecl()); 552 553 case TemplateArgument::NullPtr: 554 return true; // FIXME: Is this correct? 555 556 case TemplateArgument::Template: 557 return IsStructurallyEquivalent(Context, Arg1.getAsTemplate(), 558 Arg2.getAsTemplate()); 559 560 case TemplateArgument::TemplateExpansion: 561 return IsStructurallyEquivalent(Context, 562 Arg1.getAsTemplateOrTemplatePattern(), 563 Arg2.getAsTemplateOrTemplatePattern()); 564 565 case TemplateArgument::Expression: 566 return IsStructurallyEquivalent(Context, Arg1.getAsExpr(), 567 Arg2.getAsExpr()); 568 569 case TemplateArgument::Pack: 570 if (Arg1.pack_size() != Arg2.pack_size()) 571 return false; 572 573 for (unsigned I = 0, N = Arg1.pack_size(); I != N; ++I) 574 if (!IsStructurallyEquivalent(Context, Arg1.pack_begin()[I], 575 Arg2.pack_begin()[I])) 576 return false; 577 578 return true; 579 } 580 581 llvm_unreachable("Invalid template argument kind"); 582 } 583 584 /// Determine structural equivalence for the common part of array 585 /// types. 586 static bool IsArrayStructurallyEquivalent(StructuralEquivalenceContext &Context, 587 const ArrayType *Array1, 588 const ArrayType *Array2) { 589 if (!IsStructurallyEquivalent(Context, Array1->getElementType(), 590 Array2->getElementType())) 591 return false; 592 if (Array1->getSizeModifier() != Array2->getSizeModifier()) 593 return false; 594 if (Array1->getIndexTypeQualifiers() != Array2->getIndexTypeQualifiers()) 595 return false; 596 597 return true; 598 } 599 600 /// Determine structural equivalence based on the ExtInfo of functions. This 601 /// is inspired by ASTContext::mergeFunctionTypes(), we compare calling 602 /// conventions bits but must not compare some other bits. 603 static bool IsStructurallyEquivalent(StructuralEquivalenceContext &Context, 604 FunctionType::ExtInfo EI1, 605 FunctionType::ExtInfo EI2) { 606 // Compatible functions must have compatible calling conventions. 607 if (EI1.getCC() != EI2.getCC()) 608 return false; 609 610 // Regparm is part of the calling convention. 611 if (EI1.getHasRegParm() != EI2.getHasRegParm()) 612 return false; 613 if (EI1.getRegParm() != EI2.getRegParm()) 614 return false; 615 616 if (EI1.getProducesResult() != EI2.getProducesResult()) 617 return false; 618 if (EI1.getNoCallerSavedRegs() != EI2.getNoCallerSavedRegs()) 619 return false; 620 if (EI1.getNoCfCheck() != EI2.getNoCfCheck()) 621 return false; 622 623 return true; 624 } 625 626 /// Check the equivalence of exception specifications. 627 static bool IsEquivalentExceptionSpec(StructuralEquivalenceContext &Context, 628 const FunctionProtoType *Proto1, 629 const FunctionProtoType *Proto2) { 630 631 auto Spec1 = Proto1->getExceptionSpecType(); 632 auto Spec2 = Proto2->getExceptionSpecType(); 633 634 if (isUnresolvedExceptionSpec(Spec1) || isUnresolvedExceptionSpec(Spec2)) 635 return true; 636 637 if (Spec1 != Spec2) 638 return false; 639 if (Spec1 == EST_Dynamic) { 640 if (Proto1->getNumExceptions() != Proto2->getNumExceptions()) 641 return false; 642 for (unsigned I = 0, N = Proto1->getNumExceptions(); I != N; ++I) { 643 if (!IsStructurallyEquivalent(Context, Proto1->getExceptionType(I), 644 Proto2->getExceptionType(I))) 645 return false; 646 } 647 } else if (isComputedNoexcept(Spec1)) { 648 if (!IsStructurallyEquivalent(Context, Proto1->getNoexceptExpr(), 649 Proto2->getNoexceptExpr())) 650 return false; 651 } 652 653 return true; 654 } 655 656 /// Determine structural equivalence of two types. 657 static bool IsStructurallyEquivalent(StructuralEquivalenceContext &Context, 658 QualType T1, QualType T2) { 659 if (T1.isNull() || T2.isNull()) 660 return T1.isNull() && T2.isNull(); 661 662 QualType OrigT1 = T1; 663 QualType OrigT2 = T2; 664 665 if (!Context.StrictTypeSpelling) { 666 // We aren't being strict about token-to-token equivalence of types, 667 // so map down to the canonical type. 668 T1 = Context.FromCtx.getCanonicalType(T1); 669 T2 = Context.ToCtx.getCanonicalType(T2); 670 } 671 672 if (T1.getQualifiers() != T2.getQualifiers()) 673 return false; 674 675 Type::TypeClass TC = T1->getTypeClass(); 676 677 if (T1->getTypeClass() != T2->getTypeClass()) { 678 // Compare function types with prototypes vs. without prototypes as if 679 // both did not have prototypes. 680 if (T1->getTypeClass() == Type::FunctionProto && 681 T2->getTypeClass() == Type::FunctionNoProto) 682 TC = Type::FunctionNoProto; 683 else if (T1->getTypeClass() == Type::FunctionNoProto && 684 T2->getTypeClass() == Type::FunctionProto) 685 TC = Type::FunctionNoProto; 686 else 687 return false; 688 } 689 690 switch (TC) { 691 case Type::Builtin: 692 // FIXME: Deal with Char_S/Char_U. 693 if (cast<BuiltinType>(T1)->getKind() != cast<BuiltinType>(T2)->getKind()) 694 return false; 695 break; 696 697 case Type::Complex: 698 if (!IsStructurallyEquivalent(Context, 699 cast<ComplexType>(T1)->getElementType(), 700 cast<ComplexType>(T2)->getElementType())) 701 return false; 702 break; 703 704 case Type::Adjusted: 705 case Type::Decayed: 706 if (!IsStructurallyEquivalent(Context, 707 cast<AdjustedType>(T1)->getOriginalType(), 708 cast<AdjustedType>(T2)->getOriginalType())) 709 return false; 710 break; 711 712 case Type::Pointer: 713 if (!IsStructurallyEquivalent(Context, 714 cast<PointerType>(T1)->getPointeeType(), 715 cast<PointerType>(T2)->getPointeeType())) 716 return false; 717 break; 718 719 case Type::BlockPointer: 720 if (!IsStructurallyEquivalent(Context, 721 cast<BlockPointerType>(T1)->getPointeeType(), 722 cast<BlockPointerType>(T2)->getPointeeType())) 723 return false; 724 break; 725 726 case Type::LValueReference: 727 case Type::RValueReference: { 728 const auto *Ref1 = cast<ReferenceType>(T1); 729 const auto *Ref2 = cast<ReferenceType>(T2); 730 if (Ref1->isSpelledAsLValue() != Ref2->isSpelledAsLValue()) 731 return false; 732 if (Ref1->isInnerRef() != Ref2->isInnerRef()) 733 return false; 734 if (!IsStructurallyEquivalent(Context, Ref1->getPointeeTypeAsWritten(), 735 Ref2->getPointeeTypeAsWritten())) 736 return false; 737 break; 738 } 739 740 case Type::MemberPointer: { 741 const auto *MemPtr1 = cast<MemberPointerType>(T1); 742 const auto *MemPtr2 = cast<MemberPointerType>(T2); 743 if (!IsStructurallyEquivalent(Context, MemPtr1->getPointeeType(), 744 MemPtr2->getPointeeType())) 745 return false; 746 if (!IsStructurallyEquivalent(Context, QualType(MemPtr1->getClass(), 0), 747 QualType(MemPtr2->getClass(), 0))) 748 return false; 749 break; 750 } 751 752 case Type::ConstantArray: { 753 const auto *Array1 = cast<ConstantArrayType>(T1); 754 const auto *Array2 = cast<ConstantArrayType>(T2); 755 if (!llvm::APInt::isSameValue(Array1->getSize(), Array2->getSize())) 756 return false; 757 758 if (!IsArrayStructurallyEquivalent(Context, Array1, Array2)) 759 return false; 760 break; 761 } 762 763 case Type::IncompleteArray: 764 if (!IsArrayStructurallyEquivalent(Context, cast<ArrayType>(T1), 765 cast<ArrayType>(T2))) 766 return false; 767 break; 768 769 case Type::VariableArray: { 770 const auto *Array1 = cast<VariableArrayType>(T1); 771 const auto *Array2 = cast<VariableArrayType>(T2); 772 if (!IsStructurallyEquivalent(Context, Array1->getSizeExpr(), 773 Array2->getSizeExpr())) 774 return false; 775 776 if (!IsArrayStructurallyEquivalent(Context, Array1, Array2)) 777 return false; 778 779 break; 780 } 781 782 case Type::DependentSizedArray: { 783 const auto *Array1 = cast<DependentSizedArrayType>(T1); 784 const auto *Array2 = cast<DependentSizedArrayType>(T2); 785 if (!IsStructurallyEquivalent(Context, Array1->getSizeExpr(), 786 Array2->getSizeExpr())) 787 return false; 788 789 if (!IsArrayStructurallyEquivalent(Context, Array1, Array2)) 790 return false; 791 792 break; 793 } 794 795 case Type::DependentAddressSpace: { 796 const auto *DepAddressSpace1 = cast<DependentAddressSpaceType>(T1); 797 const auto *DepAddressSpace2 = cast<DependentAddressSpaceType>(T2); 798 if (!IsStructurallyEquivalent(Context, DepAddressSpace1->getAddrSpaceExpr(), 799 DepAddressSpace2->getAddrSpaceExpr())) 800 return false; 801 if (!IsStructurallyEquivalent(Context, DepAddressSpace1->getPointeeType(), 802 DepAddressSpace2->getPointeeType())) 803 return false; 804 805 break; 806 } 807 808 case Type::DependentSizedExtVector: { 809 const auto *Vec1 = cast<DependentSizedExtVectorType>(T1); 810 const auto *Vec2 = cast<DependentSizedExtVectorType>(T2); 811 if (!IsStructurallyEquivalent(Context, Vec1->getSizeExpr(), 812 Vec2->getSizeExpr())) 813 return false; 814 if (!IsStructurallyEquivalent(Context, Vec1->getElementType(), 815 Vec2->getElementType())) 816 return false; 817 break; 818 } 819 820 case Type::DependentVector: { 821 const auto *Vec1 = cast<DependentVectorType>(T1); 822 const auto *Vec2 = cast<DependentVectorType>(T2); 823 if (Vec1->getVectorKind() != Vec2->getVectorKind()) 824 return false; 825 if (!IsStructurallyEquivalent(Context, Vec1->getSizeExpr(), 826 Vec2->getSizeExpr())) 827 return false; 828 if (!IsStructurallyEquivalent(Context, Vec1->getElementType(), 829 Vec2->getElementType())) 830 return false; 831 break; 832 } 833 834 case Type::Vector: 835 case Type::ExtVector: { 836 const auto *Vec1 = cast<VectorType>(T1); 837 const auto *Vec2 = cast<VectorType>(T2); 838 if (!IsStructurallyEquivalent(Context, Vec1->getElementType(), 839 Vec2->getElementType())) 840 return false; 841 if (Vec1->getNumElements() != Vec2->getNumElements()) 842 return false; 843 if (Vec1->getVectorKind() != Vec2->getVectorKind()) 844 return false; 845 break; 846 } 847 848 case Type::DependentSizedMatrix: { 849 const DependentSizedMatrixType *Mat1 = cast<DependentSizedMatrixType>(T1); 850 const DependentSizedMatrixType *Mat2 = cast<DependentSizedMatrixType>(T2); 851 // The element types, row and column expressions must be structurally 852 // equivalent. 853 if (!IsStructurallyEquivalent(Context, Mat1->getRowExpr(), 854 Mat2->getRowExpr()) || 855 !IsStructurallyEquivalent(Context, Mat1->getColumnExpr(), 856 Mat2->getColumnExpr()) || 857 !IsStructurallyEquivalent(Context, Mat1->getElementType(), 858 Mat2->getElementType())) 859 return false; 860 break; 861 } 862 863 case Type::ConstantMatrix: { 864 const ConstantMatrixType *Mat1 = cast<ConstantMatrixType>(T1); 865 const ConstantMatrixType *Mat2 = cast<ConstantMatrixType>(T2); 866 // The element types must be structurally equivalent and the number of rows 867 // and columns must match. 868 if (!IsStructurallyEquivalent(Context, Mat1->getElementType(), 869 Mat2->getElementType()) || 870 Mat1->getNumRows() != Mat2->getNumRows() || 871 Mat1->getNumColumns() != Mat2->getNumColumns()) 872 return false; 873 break; 874 } 875 876 case Type::FunctionProto: { 877 const auto *Proto1 = cast<FunctionProtoType>(T1); 878 const auto *Proto2 = cast<FunctionProtoType>(T2); 879 880 if (Proto1->getNumParams() != Proto2->getNumParams()) 881 return false; 882 for (unsigned I = 0, N = Proto1->getNumParams(); I != N; ++I) { 883 if (!IsStructurallyEquivalent(Context, Proto1->getParamType(I), 884 Proto2->getParamType(I))) 885 return false; 886 } 887 if (Proto1->isVariadic() != Proto2->isVariadic()) 888 return false; 889 890 if (Proto1->getMethodQuals() != Proto2->getMethodQuals()) 891 return false; 892 893 // Check exceptions, this information is lost in canonical type. 894 const auto *OrigProto1 = 895 cast<FunctionProtoType>(OrigT1.getDesugaredType(Context.FromCtx)); 896 const auto *OrigProto2 = 897 cast<FunctionProtoType>(OrigT2.getDesugaredType(Context.ToCtx)); 898 if (!IsEquivalentExceptionSpec(Context, OrigProto1, OrigProto2)) 899 return false; 900 901 // Fall through to check the bits common with FunctionNoProtoType. 902 LLVM_FALLTHROUGH; 903 } 904 905 case Type::FunctionNoProto: { 906 const auto *Function1 = cast<FunctionType>(T1); 907 const auto *Function2 = cast<FunctionType>(T2); 908 if (!IsStructurallyEquivalent(Context, Function1->getReturnType(), 909 Function2->getReturnType())) 910 return false; 911 if (!IsStructurallyEquivalent(Context, Function1->getExtInfo(), 912 Function2->getExtInfo())) 913 return false; 914 break; 915 } 916 917 case Type::UnresolvedUsing: 918 if (!IsStructurallyEquivalent(Context, 919 cast<UnresolvedUsingType>(T1)->getDecl(), 920 cast<UnresolvedUsingType>(T2)->getDecl())) 921 return false; 922 break; 923 924 case Type::Attributed: 925 if (!IsStructurallyEquivalent(Context, 926 cast<AttributedType>(T1)->getModifiedType(), 927 cast<AttributedType>(T2)->getModifiedType())) 928 return false; 929 if (!IsStructurallyEquivalent( 930 Context, cast<AttributedType>(T1)->getEquivalentType(), 931 cast<AttributedType>(T2)->getEquivalentType())) 932 return false; 933 break; 934 935 case Type::BTFTagAttributed: 936 if (!IsStructurallyEquivalent( 937 Context, cast<BTFTagAttributedType>(T1)->getWrappedType(), 938 cast<BTFTagAttributedType>(T2)->getWrappedType())) 939 return false; 940 break; 941 942 case Type::Paren: 943 if (!IsStructurallyEquivalent(Context, cast<ParenType>(T1)->getInnerType(), 944 cast<ParenType>(T2)->getInnerType())) 945 return false; 946 break; 947 948 case Type::MacroQualified: 949 if (!IsStructurallyEquivalent( 950 Context, cast<MacroQualifiedType>(T1)->getUnderlyingType(), 951 cast<MacroQualifiedType>(T2)->getUnderlyingType())) 952 return false; 953 break; 954 955 case Type::Using: 956 if (!IsStructurallyEquivalent(Context, cast<UsingType>(T1)->getFoundDecl(), 957 cast<UsingType>(T2)->getFoundDecl())) 958 return false; 959 break; 960 961 case Type::Typedef: 962 if (!IsStructurallyEquivalent(Context, cast<TypedefType>(T1)->getDecl(), 963 cast<TypedefType>(T2)->getDecl())) 964 return false; 965 break; 966 967 case Type::TypeOfExpr: 968 if (!IsStructurallyEquivalent( 969 Context, cast<TypeOfExprType>(T1)->getUnderlyingExpr(), 970 cast<TypeOfExprType>(T2)->getUnderlyingExpr())) 971 return false; 972 break; 973 974 case Type::TypeOf: 975 if (!IsStructurallyEquivalent(Context, 976 cast<TypeOfType>(T1)->getUnderlyingType(), 977 cast<TypeOfType>(T2)->getUnderlyingType())) 978 return false; 979 break; 980 981 case Type::UnaryTransform: 982 if (!IsStructurallyEquivalent( 983 Context, cast<UnaryTransformType>(T1)->getUnderlyingType(), 984 cast<UnaryTransformType>(T2)->getUnderlyingType())) 985 return false; 986 break; 987 988 case Type::Decltype: 989 if (!IsStructurallyEquivalent(Context, 990 cast<DecltypeType>(T1)->getUnderlyingExpr(), 991 cast<DecltypeType>(T2)->getUnderlyingExpr())) 992 return false; 993 break; 994 995 case Type::Auto: { 996 auto *Auto1 = cast<AutoType>(T1); 997 auto *Auto2 = cast<AutoType>(T2); 998 if (!IsStructurallyEquivalent(Context, Auto1->getDeducedType(), 999 Auto2->getDeducedType())) 1000 return false; 1001 if (Auto1->isConstrained() != Auto2->isConstrained()) 1002 return false; 1003 if (Auto1->isConstrained()) { 1004 if (Auto1->getTypeConstraintConcept() != 1005 Auto2->getTypeConstraintConcept()) 1006 return false; 1007 ArrayRef<TemplateArgument> Auto1Args = 1008 Auto1->getTypeConstraintArguments(); 1009 ArrayRef<TemplateArgument> Auto2Args = 1010 Auto2->getTypeConstraintArguments(); 1011 if (Auto1Args.size() != Auto2Args.size()) 1012 return false; 1013 for (unsigned I = 0, N = Auto1Args.size(); I != N; ++I) { 1014 if (!IsStructurallyEquivalent(Context, Auto1Args[I], Auto2Args[I])) 1015 return false; 1016 } 1017 } 1018 break; 1019 } 1020 1021 case Type::DeducedTemplateSpecialization: { 1022 const auto *DT1 = cast<DeducedTemplateSpecializationType>(T1); 1023 const auto *DT2 = cast<DeducedTemplateSpecializationType>(T2); 1024 if (!IsStructurallyEquivalent(Context, DT1->getTemplateName(), 1025 DT2->getTemplateName())) 1026 return false; 1027 if (!IsStructurallyEquivalent(Context, DT1->getDeducedType(), 1028 DT2->getDeducedType())) 1029 return false; 1030 break; 1031 } 1032 1033 case Type::Record: 1034 case Type::Enum: 1035 if (!IsStructurallyEquivalent(Context, cast<TagType>(T1)->getDecl(), 1036 cast<TagType>(T2)->getDecl())) 1037 return false; 1038 break; 1039 1040 case Type::TemplateTypeParm: { 1041 const auto *Parm1 = cast<TemplateTypeParmType>(T1); 1042 const auto *Parm2 = cast<TemplateTypeParmType>(T2); 1043 if (Parm1->getDepth() != Parm2->getDepth()) 1044 return false; 1045 if (Parm1->getIndex() != Parm2->getIndex()) 1046 return false; 1047 if (Parm1->isParameterPack() != Parm2->isParameterPack()) 1048 return false; 1049 1050 // Names of template type parameters are never significant. 1051 break; 1052 } 1053 1054 case Type::SubstTemplateTypeParm: { 1055 const auto *Subst1 = cast<SubstTemplateTypeParmType>(T1); 1056 const auto *Subst2 = cast<SubstTemplateTypeParmType>(T2); 1057 if (!IsStructurallyEquivalent(Context, 1058 QualType(Subst1->getReplacedParameter(), 0), 1059 QualType(Subst2->getReplacedParameter(), 0))) 1060 return false; 1061 if (!IsStructurallyEquivalent(Context, Subst1->getReplacementType(), 1062 Subst2->getReplacementType())) 1063 return false; 1064 break; 1065 } 1066 1067 case Type::SubstTemplateTypeParmPack: { 1068 const auto *Subst1 = cast<SubstTemplateTypeParmPackType>(T1); 1069 const auto *Subst2 = cast<SubstTemplateTypeParmPackType>(T2); 1070 if (!IsStructurallyEquivalent(Context, 1071 QualType(Subst1->getReplacedParameter(), 0), 1072 QualType(Subst2->getReplacedParameter(), 0))) 1073 return false; 1074 if (!IsStructurallyEquivalent(Context, Subst1->getArgumentPack(), 1075 Subst2->getArgumentPack())) 1076 return false; 1077 break; 1078 } 1079 1080 case Type::TemplateSpecialization: { 1081 const auto *Spec1 = cast<TemplateSpecializationType>(T1); 1082 const auto *Spec2 = cast<TemplateSpecializationType>(T2); 1083 if (!IsStructurallyEquivalent(Context, Spec1->getTemplateName(), 1084 Spec2->getTemplateName())) 1085 return false; 1086 if (Spec1->getNumArgs() != Spec2->getNumArgs()) 1087 return false; 1088 for (unsigned I = 0, N = Spec1->getNumArgs(); I != N; ++I) { 1089 if (!IsStructurallyEquivalent(Context, Spec1->getArg(I), 1090 Spec2->getArg(I))) 1091 return false; 1092 } 1093 break; 1094 } 1095 1096 case Type::Elaborated: { 1097 const auto *Elab1 = cast<ElaboratedType>(T1); 1098 const auto *Elab2 = cast<ElaboratedType>(T2); 1099 // CHECKME: what if a keyword is ETK_None or ETK_typename ? 1100 if (Elab1->getKeyword() != Elab2->getKeyword()) 1101 return false; 1102 if (!IsStructurallyEquivalent(Context, Elab1->getQualifier(), 1103 Elab2->getQualifier())) 1104 return false; 1105 if (!IsStructurallyEquivalent(Context, Elab1->getNamedType(), 1106 Elab2->getNamedType())) 1107 return false; 1108 break; 1109 } 1110 1111 case Type::InjectedClassName: { 1112 const auto *Inj1 = cast<InjectedClassNameType>(T1); 1113 const auto *Inj2 = cast<InjectedClassNameType>(T2); 1114 if (!IsStructurallyEquivalent(Context, 1115 Inj1->getInjectedSpecializationType(), 1116 Inj2->getInjectedSpecializationType())) 1117 return false; 1118 break; 1119 } 1120 1121 case Type::DependentName: { 1122 const auto *Typename1 = cast<DependentNameType>(T1); 1123 const auto *Typename2 = cast<DependentNameType>(T2); 1124 if (!IsStructurallyEquivalent(Context, Typename1->getQualifier(), 1125 Typename2->getQualifier())) 1126 return false; 1127 if (!IsStructurallyEquivalent(Typename1->getIdentifier(), 1128 Typename2->getIdentifier())) 1129 return false; 1130 1131 break; 1132 } 1133 1134 case Type::DependentTemplateSpecialization: { 1135 const auto *Spec1 = cast<DependentTemplateSpecializationType>(T1); 1136 const auto *Spec2 = cast<DependentTemplateSpecializationType>(T2); 1137 if (!IsStructurallyEquivalent(Context, Spec1->getQualifier(), 1138 Spec2->getQualifier())) 1139 return false; 1140 if (!IsStructurallyEquivalent(Spec1->getIdentifier(), 1141 Spec2->getIdentifier())) 1142 return false; 1143 if (Spec1->getNumArgs() != Spec2->getNumArgs()) 1144 return false; 1145 for (unsigned I = 0, N = Spec1->getNumArgs(); I != N; ++I) { 1146 if (!IsStructurallyEquivalent(Context, Spec1->getArg(I), 1147 Spec2->getArg(I))) 1148 return false; 1149 } 1150 break; 1151 } 1152 1153 case Type::PackExpansion: 1154 if (!IsStructurallyEquivalent(Context, 1155 cast<PackExpansionType>(T1)->getPattern(), 1156 cast<PackExpansionType>(T2)->getPattern())) 1157 return false; 1158 break; 1159 1160 case Type::ObjCInterface: { 1161 const auto *Iface1 = cast<ObjCInterfaceType>(T1); 1162 const auto *Iface2 = cast<ObjCInterfaceType>(T2); 1163 if (!IsStructurallyEquivalent(Context, Iface1->getDecl(), 1164 Iface2->getDecl())) 1165 return false; 1166 break; 1167 } 1168 1169 case Type::ObjCTypeParam: { 1170 const auto *Obj1 = cast<ObjCTypeParamType>(T1); 1171 const auto *Obj2 = cast<ObjCTypeParamType>(T2); 1172 if (!IsStructurallyEquivalent(Context, Obj1->getDecl(), Obj2->getDecl())) 1173 return false; 1174 1175 if (Obj1->getNumProtocols() != Obj2->getNumProtocols()) 1176 return false; 1177 for (unsigned I = 0, N = Obj1->getNumProtocols(); I != N; ++I) { 1178 if (!IsStructurallyEquivalent(Context, Obj1->getProtocol(I), 1179 Obj2->getProtocol(I))) 1180 return false; 1181 } 1182 break; 1183 } 1184 1185 case Type::ObjCObject: { 1186 const auto *Obj1 = cast<ObjCObjectType>(T1); 1187 const auto *Obj2 = cast<ObjCObjectType>(T2); 1188 if (!IsStructurallyEquivalent(Context, Obj1->getBaseType(), 1189 Obj2->getBaseType())) 1190 return false; 1191 if (Obj1->getNumProtocols() != Obj2->getNumProtocols()) 1192 return false; 1193 for (unsigned I = 0, N = Obj1->getNumProtocols(); I != N; ++I) { 1194 if (!IsStructurallyEquivalent(Context, Obj1->getProtocol(I), 1195 Obj2->getProtocol(I))) 1196 return false; 1197 } 1198 break; 1199 } 1200 1201 case Type::ObjCObjectPointer: { 1202 const auto *Ptr1 = cast<ObjCObjectPointerType>(T1); 1203 const auto *Ptr2 = cast<ObjCObjectPointerType>(T2); 1204 if (!IsStructurallyEquivalent(Context, Ptr1->getPointeeType(), 1205 Ptr2->getPointeeType())) 1206 return false; 1207 break; 1208 } 1209 1210 case Type::Atomic: 1211 if (!IsStructurallyEquivalent(Context, cast<AtomicType>(T1)->getValueType(), 1212 cast<AtomicType>(T2)->getValueType())) 1213 return false; 1214 break; 1215 1216 case Type::Pipe: 1217 if (!IsStructurallyEquivalent(Context, cast<PipeType>(T1)->getElementType(), 1218 cast<PipeType>(T2)->getElementType())) 1219 return false; 1220 break; 1221 case Type::BitInt: { 1222 const auto *Int1 = cast<BitIntType>(T1); 1223 const auto *Int2 = cast<BitIntType>(T2); 1224 1225 if (Int1->isUnsigned() != Int2->isUnsigned() || 1226 Int1->getNumBits() != Int2->getNumBits()) 1227 return false; 1228 break; 1229 } 1230 case Type::DependentBitInt: { 1231 const auto *Int1 = cast<DependentBitIntType>(T1); 1232 const auto *Int2 = cast<DependentBitIntType>(T2); 1233 1234 if (Int1->isUnsigned() != Int2->isUnsigned() || 1235 !IsStructurallyEquivalent(Context, Int1->getNumBitsExpr(), 1236 Int2->getNumBitsExpr())) 1237 return false; 1238 } 1239 } // end switch 1240 1241 return true; 1242 } 1243 1244 /// Determine structural equivalence of two fields. 1245 static bool IsStructurallyEquivalent(StructuralEquivalenceContext &Context, 1246 FieldDecl *Field1, FieldDecl *Field2) { 1247 const auto *Owner2 = cast<RecordDecl>(Field2->getDeclContext()); 1248 1249 // For anonymous structs/unions, match up the anonymous struct/union type 1250 // declarations directly, so that we don't go off searching for anonymous 1251 // types 1252 if (Field1->isAnonymousStructOrUnion() && 1253 Field2->isAnonymousStructOrUnion()) { 1254 RecordDecl *D1 = Field1->getType()->castAs<RecordType>()->getDecl(); 1255 RecordDecl *D2 = Field2->getType()->castAs<RecordType>()->getDecl(); 1256 return IsStructurallyEquivalent(Context, D1, D2); 1257 } 1258 1259 // Check for equivalent field names. 1260 IdentifierInfo *Name1 = Field1->getIdentifier(); 1261 IdentifierInfo *Name2 = Field2->getIdentifier(); 1262 if (!::IsStructurallyEquivalent(Name1, Name2)) { 1263 if (Context.Complain) { 1264 Context.Diag2( 1265 Owner2->getLocation(), 1266 Context.getApplicableDiagnostic(diag::err_odr_tag_type_inconsistent)) 1267 << Context.ToCtx.getTypeDeclType(Owner2); 1268 Context.Diag2(Field2->getLocation(), diag::note_odr_field_name) 1269 << Field2->getDeclName(); 1270 Context.Diag1(Field1->getLocation(), diag::note_odr_field_name) 1271 << Field1->getDeclName(); 1272 } 1273 return false; 1274 } 1275 1276 if (!IsStructurallyEquivalent(Context, Field1->getType(), 1277 Field2->getType())) { 1278 if (Context.Complain) { 1279 Context.Diag2( 1280 Owner2->getLocation(), 1281 Context.getApplicableDiagnostic(diag::err_odr_tag_type_inconsistent)) 1282 << Context.ToCtx.getTypeDeclType(Owner2); 1283 Context.Diag2(Field2->getLocation(), diag::note_odr_field) 1284 << Field2->getDeclName() << Field2->getType(); 1285 Context.Diag1(Field1->getLocation(), diag::note_odr_field) 1286 << Field1->getDeclName() << Field1->getType(); 1287 } 1288 return false; 1289 } 1290 1291 if (Field1->isBitField()) 1292 return IsStructurallyEquivalent(Context, Field1->getBitWidth(), 1293 Field2->getBitWidth()); 1294 1295 return true; 1296 } 1297 1298 /// Determine structural equivalence of two methods. 1299 static bool IsStructurallyEquivalent(StructuralEquivalenceContext &Context, 1300 CXXMethodDecl *Method1, 1301 CXXMethodDecl *Method2) { 1302 bool PropertiesEqual = 1303 Method1->getDeclKind() == Method2->getDeclKind() && 1304 Method1->getRefQualifier() == Method2->getRefQualifier() && 1305 Method1->getAccess() == Method2->getAccess() && 1306 Method1->getOverloadedOperator() == Method2->getOverloadedOperator() && 1307 Method1->isStatic() == Method2->isStatic() && 1308 Method1->isConst() == Method2->isConst() && 1309 Method1->isVolatile() == Method2->isVolatile() && 1310 Method1->isVirtual() == Method2->isVirtual() && 1311 Method1->isPure() == Method2->isPure() && 1312 Method1->isDefaulted() == Method2->isDefaulted() && 1313 Method1->isDeleted() == Method2->isDeleted(); 1314 if (!PropertiesEqual) 1315 return false; 1316 // FIXME: Check for 'final'. 1317 1318 if (auto *Constructor1 = dyn_cast<CXXConstructorDecl>(Method1)) { 1319 auto *Constructor2 = cast<CXXConstructorDecl>(Method2); 1320 if (!Constructor1->getExplicitSpecifier().isEquivalent( 1321 Constructor2->getExplicitSpecifier())) 1322 return false; 1323 } 1324 1325 if (auto *Conversion1 = dyn_cast<CXXConversionDecl>(Method1)) { 1326 auto *Conversion2 = cast<CXXConversionDecl>(Method2); 1327 if (!Conversion1->getExplicitSpecifier().isEquivalent( 1328 Conversion2->getExplicitSpecifier())) 1329 return false; 1330 if (!IsStructurallyEquivalent(Context, Conversion1->getConversionType(), 1331 Conversion2->getConversionType())) 1332 return false; 1333 } 1334 1335 const IdentifierInfo *Name1 = Method1->getIdentifier(); 1336 const IdentifierInfo *Name2 = Method2->getIdentifier(); 1337 if (!::IsStructurallyEquivalent(Name1, Name2)) { 1338 return false; 1339 // TODO: Names do not match, add warning like at check for FieldDecl. 1340 } 1341 1342 // Check the prototypes. 1343 if (!::IsStructurallyEquivalent(Context, 1344 Method1->getType(), Method2->getType())) 1345 return false; 1346 1347 return true; 1348 } 1349 1350 /// Determine structural equivalence of two lambda classes. 1351 static bool 1352 IsStructurallyEquivalentLambdas(StructuralEquivalenceContext &Context, 1353 CXXRecordDecl *D1, CXXRecordDecl *D2) { 1354 assert(D1->isLambda() && D2->isLambda() && 1355 "Must be called on lambda classes"); 1356 if (!IsStructurallyEquivalent(Context, D1->getLambdaCallOperator(), 1357 D2->getLambdaCallOperator())) 1358 return false; 1359 1360 return true; 1361 } 1362 1363 /// Determine if context of a class is equivalent. 1364 static bool IsRecordContextStructurallyEquivalent(RecordDecl *D1, 1365 RecordDecl *D2) { 1366 // The context should be completely equal, including anonymous and inline 1367 // namespaces. 1368 // We compare objects as part of full translation units, not subtrees of 1369 // translation units. 1370 DeclContext *DC1 = D1->getDeclContext()->getNonTransparentContext(); 1371 DeclContext *DC2 = D2->getDeclContext()->getNonTransparentContext(); 1372 while (true) { 1373 // Special case: We allow a struct defined in a function to be equivalent 1374 // with a similar struct defined outside of a function. 1375 if ((DC1->isFunctionOrMethod() && DC2->isTranslationUnit()) || 1376 (DC2->isFunctionOrMethod() && DC1->isTranslationUnit())) 1377 return true; 1378 1379 if (DC1->getDeclKind() != DC2->getDeclKind()) 1380 return false; 1381 if (DC1->isTranslationUnit()) 1382 break; 1383 if (DC1->isInlineNamespace() != DC2->isInlineNamespace()) 1384 return false; 1385 if (const auto *ND1 = dyn_cast<NamedDecl>(DC1)) { 1386 const auto *ND2 = cast<NamedDecl>(DC2); 1387 if (!DC1->isInlineNamespace() && 1388 !IsStructurallyEquivalent(ND1->getIdentifier(), ND2->getIdentifier())) 1389 return false; 1390 } 1391 1392 DC1 = DC1->getParent()->getNonTransparentContext(); 1393 DC2 = DC2->getParent()->getNonTransparentContext(); 1394 } 1395 1396 return true; 1397 } 1398 1399 /// Determine structural equivalence of two records. 1400 static bool IsStructurallyEquivalent(StructuralEquivalenceContext &Context, 1401 RecordDecl *D1, RecordDecl *D2) { 1402 1403 // Check for equivalent structure names. 1404 IdentifierInfo *Name1 = D1->getIdentifier(); 1405 if (!Name1 && D1->getTypedefNameForAnonDecl()) 1406 Name1 = D1->getTypedefNameForAnonDecl()->getIdentifier(); 1407 IdentifierInfo *Name2 = D2->getIdentifier(); 1408 if (!Name2 && D2->getTypedefNameForAnonDecl()) 1409 Name2 = D2->getTypedefNameForAnonDecl()->getIdentifier(); 1410 if (!IsStructurallyEquivalent(Name1, Name2)) 1411 return false; 1412 1413 if (D1->isUnion() != D2->isUnion()) { 1414 if (Context.Complain) { 1415 Context.Diag2(D2->getLocation(), Context.getApplicableDiagnostic( 1416 diag::err_odr_tag_type_inconsistent)) 1417 << Context.ToCtx.getTypeDeclType(D2); 1418 Context.Diag1(D1->getLocation(), diag::note_odr_tag_kind_here) 1419 << D1->getDeclName() << (unsigned)D1->getTagKind(); 1420 } 1421 return false; 1422 } 1423 1424 if (!D1->getDeclName() && !D2->getDeclName()) { 1425 // If both anonymous structs/unions are in a record context, make sure 1426 // they occur in the same location in the context records. 1427 if (Optional<unsigned> Index1 = 1428 StructuralEquivalenceContext::findUntaggedStructOrUnionIndex(D1)) { 1429 if (Optional<unsigned> Index2 = 1430 StructuralEquivalenceContext::findUntaggedStructOrUnionIndex( 1431 D2)) { 1432 if (*Index1 != *Index2) 1433 return false; 1434 } 1435 } 1436 } 1437 1438 // If the records occur in different context (namespace), these should be 1439 // different. This is specially important if the definition of one or both 1440 // records is missing. 1441 if (!IsRecordContextStructurallyEquivalent(D1, D2)) 1442 return false; 1443 1444 // If both declarations are class template specializations, we know 1445 // the ODR applies, so check the template and template arguments. 1446 const auto *Spec1 = dyn_cast<ClassTemplateSpecializationDecl>(D1); 1447 const auto *Spec2 = dyn_cast<ClassTemplateSpecializationDecl>(D2); 1448 if (Spec1 && Spec2) { 1449 // Check that the specialized templates are the same. 1450 if (!IsStructurallyEquivalent(Context, Spec1->getSpecializedTemplate(), 1451 Spec2->getSpecializedTemplate())) 1452 return false; 1453 1454 // Check that the template arguments are the same. 1455 if (Spec1->getTemplateArgs().size() != Spec2->getTemplateArgs().size()) 1456 return false; 1457 1458 for (unsigned I = 0, N = Spec1->getTemplateArgs().size(); I != N; ++I) 1459 if (!IsStructurallyEquivalent(Context, Spec1->getTemplateArgs().get(I), 1460 Spec2->getTemplateArgs().get(I))) 1461 return false; 1462 } 1463 // If one is a class template specialization and the other is not, these 1464 // structures are different. 1465 else if (Spec1 || Spec2) 1466 return false; 1467 1468 // Compare the definitions of these two records. If either or both are 1469 // incomplete (i.e. it is a forward decl), we assume that they are 1470 // equivalent. 1471 D1 = D1->getDefinition(); 1472 D2 = D2->getDefinition(); 1473 if (!D1 || !D2) 1474 return true; 1475 1476 // If any of the records has external storage and we do a minimal check (or 1477 // AST import) we assume they are equivalent. (If we didn't have this 1478 // assumption then `RecordDecl::LoadFieldsFromExternalStorage` could trigger 1479 // another AST import which in turn would call the structural equivalency 1480 // check again and finally we'd have an improper result.) 1481 if (Context.EqKind == StructuralEquivalenceKind::Minimal) 1482 if (D1->hasExternalLexicalStorage() || D2->hasExternalLexicalStorage()) 1483 return true; 1484 1485 // If one definition is currently being defined, we do not compare for 1486 // equality and we assume that the decls are equal. 1487 if (D1->isBeingDefined() || D2->isBeingDefined()) 1488 return true; 1489 1490 if (auto *D1CXX = dyn_cast<CXXRecordDecl>(D1)) { 1491 if (auto *D2CXX = dyn_cast<CXXRecordDecl>(D2)) { 1492 if (D1CXX->hasExternalLexicalStorage() && 1493 !D1CXX->isCompleteDefinition()) { 1494 D1CXX->getASTContext().getExternalSource()->CompleteType(D1CXX); 1495 } 1496 1497 if (D1CXX->isLambda() != D2CXX->isLambda()) 1498 return false; 1499 if (D1CXX->isLambda()) { 1500 if (!IsStructurallyEquivalentLambdas(Context, D1CXX, D2CXX)) 1501 return false; 1502 } 1503 1504 if (D1CXX->getNumBases() != D2CXX->getNumBases()) { 1505 if (Context.Complain) { 1506 Context.Diag2(D2->getLocation(), 1507 Context.getApplicableDiagnostic( 1508 diag::err_odr_tag_type_inconsistent)) 1509 << Context.ToCtx.getTypeDeclType(D2); 1510 Context.Diag2(D2->getLocation(), diag::note_odr_number_of_bases) 1511 << D2CXX->getNumBases(); 1512 Context.Diag1(D1->getLocation(), diag::note_odr_number_of_bases) 1513 << D1CXX->getNumBases(); 1514 } 1515 return false; 1516 } 1517 1518 // Check the base classes. 1519 for (CXXRecordDecl::base_class_iterator Base1 = D1CXX->bases_begin(), 1520 BaseEnd1 = D1CXX->bases_end(), 1521 Base2 = D2CXX->bases_begin(); 1522 Base1 != BaseEnd1; ++Base1, ++Base2) { 1523 if (!IsStructurallyEquivalent(Context, Base1->getType(), 1524 Base2->getType())) { 1525 if (Context.Complain) { 1526 Context.Diag2(D2->getLocation(), 1527 Context.getApplicableDiagnostic( 1528 diag::err_odr_tag_type_inconsistent)) 1529 << Context.ToCtx.getTypeDeclType(D2); 1530 Context.Diag2(Base2->getBeginLoc(), diag::note_odr_base) 1531 << Base2->getType() << Base2->getSourceRange(); 1532 Context.Diag1(Base1->getBeginLoc(), diag::note_odr_base) 1533 << Base1->getType() << Base1->getSourceRange(); 1534 } 1535 return false; 1536 } 1537 1538 // Check virtual vs. non-virtual inheritance mismatch. 1539 if (Base1->isVirtual() != Base2->isVirtual()) { 1540 if (Context.Complain) { 1541 Context.Diag2(D2->getLocation(), 1542 Context.getApplicableDiagnostic( 1543 diag::err_odr_tag_type_inconsistent)) 1544 << Context.ToCtx.getTypeDeclType(D2); 1545 Context.Diag2(Base2->getBeginLoc(), diag::note_odr_virtual_base) 1546 << Base2->isVirtual() << Base2->getSourceRange(); 1547 Context.Diag1(Base1->getBeginLoc(), diag::note_odr_base) 1548 << Base1->isVirtual() << Base1->getSourceRange(); 1549 } 1550 return false; 1551 } 1552 } 1553 1554 // Check the friends for consistency. 1555 CXXRecordDecl::friend_iterator Friend2 = D2CXX->friend_begin(), 1556 Friend2End = D2CXX->friend_end(); 1557 for (CXXRecordDecl::friend_iterator Friend1 = D1CXX->friend_begin(), 1558 Friend1End = D1CXX->friend_end(); 1559 Friend1 != Friend1End; ++Friend1, ++Friend2) { 1560 if (Friend2 == Friend2End) { 1561 if (Context.Complain) { 1562 Context.Diag2(D2->getLocation(), 1563 Context.getApplicableDiagnostic( 1564 diag::err_odr_tag_type_inconsistent)) 1565 << Context.ToCtx.getTypeDeclType(D2CXX); 1566 Context.Diag1((*Friend1)->getFriendLoc(), diag::note_odr_friend); 1567 Context.Diag2(D2->getLocation(), diag::note_odr_missing_friend); 1568 } 1569 return false; 1570 } 1571 1572 if (!IsStructurallyEquivalent(Context, *Friend1, *Friend2)) { 1573 if (Context.Complain) { 1574 Context.Diag2(D2->getLocation(), 1575 Context.getApplicableDiagnostic( 1576 diag::err_odr_tag_type_inconsistent)) 1577 << Context.ToCtx.getTypeDeclType(D2CXX); 1578 Context.Diag1((*Friend1)->getFriendLoc(), diag::note_odr_friend); 1579 Context.Diag2((*Friend2)->getFriendLoc(), diag::note_odr_friend); 1580 } 1581 return false; 1582 } 1583 } 1584 1585 if (Friend2 != Friend2End) { 1586 if (Context.Complain) { 1587 Context.Diag2(D2->getLocation(), 1588 Context.getApplicableDiagnostic( 1589 diag::err_odr_tag_type_inconsistent)) 1590 << Context.ToCtx.getTypeDeclType(D2); 1591 Context.Diag2((*Friend2)->getFriendLoc(), diag::note_odr_friend); 1592 Context.Diag1(D1->getLocation(), diag::note_odr_missing_friend); 1593 } 1594 return false; 1595 } 1596 } else if (D1CXX->getNumBases() > 0) { 1597 if (Context.Complain) { 1598 Context.Diag2(D2->getLocation(), 1599 Context.getApplicableDiagnostic( 1600 diag::err_odr_tag_type_inconsistent)) 1601 << Context.ToCtx.getTypeDeclType(D2); 1602 const CXXBaseSpecifier *Base1 = D1CXX->bases_begin(); 1603 Context.Diag1(Base1->getBeginLoc(), diag::note_odr_base) 1604 << Base1->getType() << Base1->getSourceRange(); 1605 Context.Diag2(D2->getLocation(), diag::note_odr_missing_base); 1606 } 1607 return false; 1608 } 1609 } 1610 1611 // Check the fields for consistency. 1612 RecordDecl::field_iterator Field2 = D2->field_begin(), 1613 Field2End = D2->field_end(); 1614 for (RecordDecl::field_iterator Field1 = D1->field_begin(), 1615 Field1End = D1->field_end(); 1616 Field1 != Field1End; ++Field1, ++Field2) { 1617 if (Field2 == Field2End) { 1618 if (Context.Complain) { 1619 Context.Diag2(D2->getLocation(), 1620 Context.getApplicableDiagnostic( 1621 diag::err_odr_tag_type_inconsistent)) 1622 << Context.ToCtx.getTypeDeclType(D2); 1623 Context.Diag1(Field1->getLocation(), diag::note_odr_field) 1624 << Field1->getDeclName() << Field1->getType(); 1625 Context.Diag2(D2->getLocation(), diag::note_odr_missing_field); 1626 } 1627 return false; 1628 } 1629 1630 if (!IsStructurallyEquivalent(Context, *Field1, *Field2)) 1631 return false; 1632 } 1633 1634 if (Field2 != Field2End) { 1635 if (Context.Complain) { 1636 Context.Diag2(D2->getLocation(), Context.getApplicableDiagnostic( 1637 diag::err_odr_tag_type_inconsistent)) 1638 << Context.ToCtx.getTypeDeclType(D2); 1639 Context.Diag2(Field2->getLocation(), diag::note_odr_field) 1640 << Field2->getDeclName() << Field2->getType(); 1641 Context.Diag1(D1->getLocation(), diag::note_odr_missing_field); 1642 } 1643 return false; 1644 } 1645 1646 return true; 1647 } 1648 1649 static bool IsStructurallyEquivalent(StructuralEquivalenceContext &Context, 1650 EnumConstantDecl *D1, 1651 EnumConstantDecl *D2) { 1652 const llvm::APSInt &FromVal = D1->getInitVal(); 1653 const llvm::APSInt &ToVal = D2->getInitVal(); 1654 if (FromVal.isSigned() != ToVal.isSigned()) 1655 return false; 1656 if (FromVal.getBitWidth() != ToVal.getBitWidth()) 1657 return false; 1658 if (FromVal != ToVal) 1659 return false; 1660 1661 if (!IsStructurallyEquivalent(D1->getIdentifier(), D2->getIdentifier())) 1662 return false; 1663 1664 // Init expressions are the most expensive check, so do them last. 1665 return IsStructurallyEquivalent(Context, D1->getInitExpr(), 1666 D2->getInitExpr()); 1667 } 1668 1669 /// Determine structural equivalence of two enums. 1670 static bool IsStructurallyEquivalent(StructuralEquivalenceContext &Context, 1671 EnumDecl *D1, EnumDecl *D2) { 1672 1673 // Check for equivalent enum names. 1674 IdentifierInfo *Name1 = D1->getIdentifier(); 1675 if (!Name1 && D1->getTypedefNameForAnonDecl()) 1676 Name1 = D1->getTypedefNameForAnonDecl()->getIdentifier(); 1677 IdentifierInfo *Name2 = D2->getIdentifier(); 1678 if (!Name2 && D2->getTypedefNameForAnonDecl()) 1679 Name2 = D2->getTypedefNameForAnonDecl()->getIdentifier(); 1680 if (!IsStructurallyEquivalent(Name1, Name2)) 1681 return false; 1682 1683 // Compare the definitions of these two enums. If either or both are 1684 // incomplete (i.e. forward declared), we assume that they are equivalent. 1685 D1 = D1->getDefinition(); 1686 D2 = D2->getDefinition(); 1687 if (!D1 || !D2) 1688 return true; 1689 1690 EnumDecl::enumerator_iterator EC2 = D2->enumerator_begin(), 1691 EC2End = D2->enumerator_end(); 1692 for (EnumDecl::enumerator_iterator EC1 = D1->enumerator_begin(), 1693 EC1End = D1->enumerator_end(); 1694 EC1 != EC1End; ++EC1, ++EC2) { 1695 if (EC2 == EC2End) { 1696 if (Context.Complain) { 1697 Context.Diag2(D2->getLocation(), 1698 Context.getApplicableDiagnostic( 1699 diag::err_odr_tag_type_inconsistent)) 1700 << Context.ToCtx.getTypeDeclType(D2); 1701 Context.Diag1(EC1->getLocation(), diag::note_odr_enumerator) 1702 << EC1->getDeclName() << toString(EC1->getInitVal(), 10); 1703 Context.Diag2(D2->getLocation(), diag::note_odr_missing_enumerator); 1704 } 1705 return false; 1706 } 1707 1708 llvm::APSInt Val1 = EC1->getInitVal(); 1709 llvm::APSInt Val2 = EC2->getInitVal(); 1710 if (!llvm::APSInt::isSameValue(Val1, Val2) || 1711 !IsStructurallyEquivalent(EC1->getIdentifier(), EC2->getIdentifier())) { 1712 if (Context.Complain) { 1713 Context.Diag2(D2->getLocation(), 1714 Context.getApplicableDiagnostic( 1715 diag::err_odr_tag_type_inconsistent)) 1716 << Context.ToCtx.getTypeDeclType(D2); 1717 Context.Diag2(EC2->getLocation(), diag::note_odr_enumerator) 1718 << EC2->getDeclName() << toString(EC2->getInitVal(), 10); 1719 Context.Diag1(EC1->getLocation(), diag::note_odr_enumerator) 1720 << EC1->getDeclName() << toString(EC1->getInitVal(), 10); 1721 } 1722 return false; 1723 } 1724 } 1725 1726 if (EC2 != EC2End) { 1727 if (Context.Complain) { 1728 Context.Diag2(D2->getLocation(), Context.getApplicableDiagnostic( 1729 diag::err_odr_tag_type_inconsistent)) 1730 << Context.ToCtx.getTypeDeclType(D2); 1731 Context.Diag2(EC2->getLocation(), diag::note_odr_enumerator) 1732 << EC2->getDeclName() << toString(EC2->getInitVal(), 10); 1733 Context.Diag1(D1->getLocation(), diag::note_odr_missing_enumerator); 1734 } 1735 return false; 1736 } 1737 1738 return true; 1739 } 1740 1741 static bool IsStructurallyEquivalent(StructuralEquivalenceContext &Context, 1742 TemplateParameterList *Params1, 1743 TemplateParameterList *Params2) { 1744 if (Params1->size() != Params2->size()) { 1745 if (Context.Complain) { 1746 Context.Diag2(Params2->getTemplateLoc(), 1747 Context.getApplicableDiagnostic( 1748 diag::err_odr_different_num_template_parameters)) 1749 << Params1->size() << Params2->size(); 1750 Context.Diag1(Params1->getTemplateLoc(), 1751 diag::note_odr_template_parameter_list); 1752 } 1753 return false; 1754 } 1755 1756 for (unsigned I = 0, N = Params1->size(); I != N; ++I) { 1757 if (Params1->getParam(I)->getKind() != Params2->getParam(I)->getKind()) { 1758 if (Context.Complain) { 1759 Context.Diag2(Params2->getParam(I)->getLocation(), 1760 Context.getApplicableDiagnostic( 1761 diag::err_odr_different_template_parameter_kind)); 1762 Context.Diag1(Params1->getParam(I)->getLocation(), 1763 diag::note_odr_template_parameter_here); 1764 } 1765 return false; 1766 } 1767 1768 if (!IsStructurallyEquivalent(Context, Params1->getParam(I), 1769 Params2->getParam(I))) 1770 return false; 1771 } 1772 1773 return true; 1774 } 1775 1776 static bool IsStructurallyEquivalent(StructuralEquivalenceContext &Context, 1777 TemplateTypeParmDecl *D1, 1778 TemplateTypeParmDecl *D2) { 1779 if (D1->isParameterPack() != D2->isParameterPack()) { 1780 if (Context.Complain) { 1781 Context.Diag2(D2->getLocation(), 1782 Context.getApplicableDiagnostic( 1783 diag::err_odr_parameter_pack_non_pack)) 1784 << D2->isParameterPack(); 1785 Context.Diag1(D1->getLocation(), diag::note_odr_parameter_pack_non_pack) 1786 << D1->isParameterPack(); 1787 } 1788 return false; 1789 } 1790 1791 return true; 1792 } 1793 1794 static bool IsStructurallyEquivalent(StructuralEquivalenceContext &Context, 1795 NonTypeTemplateParmDecl *D1, 1796 NonTypeTemplateParmDecl *D2) { 1797 if (D1->isParameterPack() != D2->isParameterPack()) { 1798 if (Context.Complain) { 1799 Context.Diag2(D2->getLocation(), 1800 Context.getApplicableDiagnostic( 1801 diag::err_odr_parameter_pack_non_pack)) 1802 << D2->isParameterPack(); 1803 Context.Diag1(D1->getLocation(), diag::note_odr_parameter_pack_non_pack) 1804 << D1->isParameterPack(); 1805 } 1806 return false; 1807 } 1808 1809 // Check types. 1810 if (!IsStructurallyEquivalent(Context, D1->getType(), D2->getType())) { 1811 if (Context.Complain) { 1812 Context.Diag2(D2->getLocation(), 1813 Context.getApplicableDiagnostic( 1814 diag::err_odr_non_type_parameter_type_inconsistent)) 1815 << D2->getType() << D1->getType(); 1816 Context.Diag1(D1->getLocation(), diag::note_odr_value_here) 1817 << D1->getType(); 1818 } 1819 return false; 1820 } 1821 1822 return true; 1823 } 1824 1825 static bool IsStructurallyEquivalent(StructuralEquivalenceContext &Context, 1826 TemplateTemplateParmDecl *D1, 1827 TemplateTemplateParmDecl *D2) { 1828 if (D1->isParameterPack() != D2->isParameterPack()) { 1829 if (Context.Complain) { 1830 Context.Diag2(D2->getLocation(), 1831 Context.getApplicableDiagnostic( 1832 diag::err_odr_parameter_pack_non_pack)) 1833 << D2->isParameterPack(); 1834 Context.Diag1(D1->getLocation(), diag::note_odr_parameter_pack_non_pack) 1835 << D1->isParameterPack(); 1836 } 1837 return false; 1838 } 1839 1840 // Check template parameter lists. 1841 return IsStructurallyEquivalent(Context, D1->getTemplateParameters(), 1842 D2->getTemplateParameters()); 1843 } 1844 1845 static bool IsTemplateDeclCommonStructurallyEquivalent( 1846 StructuralEquivalenceContext &Ctx, TemplateDecl *D1, TemplateDecl *D2) { 1847 if (!IsStructurallyEquivalent(D1->getIdentifier(), D2->getIdentifier())) 1848 return false; 1849 if (!D1->getIdentifier()) // Special name 1850 if (D1->getNameAsString() != D2->getNameAsString()) 1851 return false; 1852 return IsStructurallyEquivalent(Ctx, D1->getTemplateParameters(), 1853 D2->getTemplateParameters()); 1854 } 1855 1856 static bool IsStructurallyEquivalent(StructuralEquivalenceContext &Context, 1857 ClassTemplateDecl *D1, 1858 ClassTemplateDecl *D2) { 1859 // Check template parameters. 1860 if (!IsTemplateDeclCommonStructurallyEquivalent(Context, D1, D2)) 1861 return false; 1862 1863 // Check the templated declaration. 1864 return IsStructurallyEquivalent(Context, D1->getTemplatedDecl(), 1865 D2->getTemplatedDecl()); 1866 } 1867 1868 static bool IsStructurallyEquivalent(StructuralEquivalenceContext &Context, 1869 FunctionTemplateDecl *D1, 1870 FunctionTemplateDecl *D2) { 1871 // Check template parameters. 1872 if (!IsTemplateDeclCommonStructurallyEquivalent(Context, D1, D2)) 1873 return false; 1874 1875 // Check the templated declaration. 1876 return IsStructurallyEquivalent(Context, D1->getTemplatedDecl()->getType(), 1877 D2->getTemplatedDecl()->getType()); 1878 } 1879 1880 static bool IsStructurallyEquivalent(StructuralEquivalenceContext &Context, 1881 ConceptDecl *D1, 1882 ConceptDecl *D2) { 1883 // Check template parameters. 1884 if (!IsTemplateDeclCommonStructurallyEquivalent(Context, D1, D2)) 1885 return false; 1886 1887 // Check the constraint expression. 1888 return IsStructurallyEquivalent(Context, D1->getConstraintExpr(), 1889 D2->getConstraintExpr()); 1890 } 1891 1892 static bool IsStructurallyEquivalent(StructuralEquivalenceContext &Context, 1893 FriendDecl *D1, FriendDecl *D2) { 1894 if ((D1->getFriendType() && D2->getFriendDecl()) || 1895 (D1->getFriendDecl() && D2->getFriendType())) { 1896 return false; 1897 } 1898 if (D1->getFriendType() && D2->getFriendType()) 1899 return IsStructurallyEquivalent(Context, 1900 D1->getFriendType()->getType(), 1901 D2->getFriendType()->getType()); 1902 if (D1->getFriendDecl() && D2->getFriendDecl()) 1903 return IsStructurallyEquivalent(Context, D1->getFriendDecl(), 1904 D2->getFriendDecl()); 1905 return false; 1906 } 1907 1908 static bool IsStructurallyEquivalent(StructuralEquivalenceContext &Context, 1909 TypedefNameDecl *D1, TypedefNameDecl *D2) { 1910 if (!IsStructurallyEquivalent(D1->getIdentifier(), D2->getIdentifier())) 1911 return false; 1912 1913 return IsStructurallyEquivalent(Context, D1->getUnderlyingType(), 1914 D2->getUnderlyingType()); 1915 } 1916 1917 static bool IsStructurallyEquivalent(StructuralEquivalenceContext &Context, 1918 FunctionDecl *D1, FunctionDecl *D2) { 1919 if (!IsStructurallyEquivalent(D1->getIdentifier(), D2->getIdentifier())) 1920 return false; 1921 1922 if (D1->isOverloadedOperator()) { 1923 if (!D2->isOverloadedOperator()) 1924 return false; 1925 if (D1->getOverloadedOperator() != D2->getOverloadedOperator()) 1926 return false; 1927 } 1928 1929 // FIXME: Consider checking for function attributes as well. 1930 if (!IsStructurallyEquivalent(Context, D1->getType(), D2->getType())) 1931 return false; 1932 1933 return true; 1934 } 1935 1936 /// Determine structural equivalence of two declarations. 1937 static bool IsStructurallyEquivalent(StructuralEquivalenceContext &Context, 1938 Decl *D1, Decl *D2) { 1939 // FIXME: Check for known structural equivalences via a callback of some sort. 1940 1941 D1 = D1->getCanonicalDecl(); 1942 D2 = D2->getCanonicalDecl(); 1943 std::pair<Decl *, Decl *> P{D1, D2}; 1944 1945 // Check whether we already know that these two declarations are not 1946 // structurally equivalent. 1947 if (Context.NonEquivalentDecls.count(P)) 1948 return false; 1949 1950 // Check if a check for these declarations is already pending. 1951 // If yes D1 and D2 will be checked later (from DeclsToCheck), 1952 // or these are already checked (and equivalent). 1953 bool Inserted = Context.VisitedDecls.insert(P).second; 1954 if (!Inserted) 1955 return true; 1956 1957 Context.DeclsToCheck.push(P); 1958 1959 return true; 1960 } 1961 1962 DiagnosticBuilder StructuralEquivalenceContext::Diag1(SourceLocation Loc, 1963 unsigned DiagID) { 1964 assert(Complain && "Not allowed to complain"); 1965 if (LastDiagFromC2) 1966 FromCtx.getDiagnostics().notePriorDiagnosticFrom(ToCtx.getDiagnostics()); 1967 LastDiagFromC2 = false; 1968 return FromCtx.getDiagnostics().Report(Loc, DiagID); 1969 } 1970 1971 DiagnosticBuilder StructuralEquivalenceContext::Diag2(SourceLocation Loc, 1972 unsigned DiagID) { 1973 assert(Complain && "Not allowed to complain"); 1974 if (!LastDiagFromC2) 1975 ToCtx.getDiagnostics().notePriorDiagnosticFrom(FromCtx.getDiagnostics()); 1976 LastDiagFromC2 = true; 1977 return ToCtx.getDiagnostics().Report(Loc, DiagID); 1978 } 1979 1980 Optional<unsigned> 1981 StructuralEquivalenceContext::findUntaggedStructOrUnionIndex(RecordDecl *Anon) { 1982 ASTContext &Context = Anon->getASTContext(); 1983 QualType AnonTy = Context.getRecordType(Anon); 1984 1985 const auto *Owner = dyn_cast<RecordDecl>(Anon->getDeclContext()); 1986 if (!Owner) 1987 return None; 1988 1989 unsigned Index = 0; 1990 for (const auto *D : Owner->noload_decls()) { 1991 const auto *F = dyn_cast<FieldDecl>(D); 1992 if (!F) 1993 continue; 1994 1995 if (F->isAnonymousStructOrUnion()) { 1996 if (Context.hasSameType(F->getType(), AnonTy)) 1997 break; 1998 ++Index; 1999 continue; 2000 } 2001 2002 // If the field looks like this: 2003 // struct { ... } A; 2004 QualType FieldType = F->getType(); 2005 // In case of nested structs. 2006 while (const auto *ElabType = dyn_cast<ElaboratedType>(FieldType)) 2007 FieldType = ElabType->getNamedType(); 2008 2009 if (const auto *RecType = dyn_cast<RecordType>(FieldType)) { 2010 const RecordDecl *RecDecl = RecType->getDecl(); 2011 if (RecDecl->getDeclContext() == Owner && !RecDecl->getIdentifier()) { 2012 if (Context.hasSameType(FieldType, AnonTy)) 2013 break; 2014 ++Index; 2015 continue; 2016 } 2017 } 2018 } 2019 2020 return Index; 2021 } 2022 2023 unsigned StructuralEquivalenceContext::getApplicableDiagnostic( 2024 unsigned ErrorDiagnostic) { 2025 if (ErrorOnTagTypeMismatch) 2026 return ErrorDiagnostic; 2027 2028 switch (ErrorDiagnostic) { 2029 case diag::err_odr_variable_type_inconsistent: 2030 return diag::warn_odr_variable_type_inconsistent; 2031 case diag::err_odr_variable_multiple_def: 2032 return diag::warn_odr_variable_multiple_def; 2033 case diag::err_odr_function_type_inconsistent: 2034 return diag::warn_odr_function_type_inconsistent; 2035 case diag::err_odr_tag_type_inconsistent: 2036 return diag::warn_odr_tag_type_inconsistent; 2037 case diag::err_odr_field_type_inconsistent: 2038 return diag::warn_odr_field_type_inconsistent; 2039 case diag::err_odr_ivar_type_inconsistent: 2040 return diag::warn_odr_ivar_type_inconsistent; 2041 case diag::err_odr_objc_superclass_inconsistent: 2042 return diag::warn_odr_objc_superclass_inconsistent; 2043 case diag::err_odr_objc_method_result_type_inconsistent: 2044 return diag::warn_odr_objc_method_result_type_inconsistent; 2045 case diag::err_odr_objc_method_num_params_inconsistent: 2046 return diag::warn_odr_objc_method_num_params_inconsistent; 2047 case diag::err_odr_objc_method_param_type_inconsistent: 2048 return diag::warn_odr_objc_method_param_type_inconsistent; 2049 case diag::err_odr_objc_method_variadic_inconsistent: 2050 return diag::warn_odr_objc_method_variadic_inconsistent; 2051 case diag::err_odr_objc_property_type_inconsistent: 2052 return diag::warn_odr_objc_property_type_inconsistent; 2053 case diag::err_odr_objc_property_impl_kind_inconsistent: 2054 return diag::warn_odr_objc_property_impl_kind_inconsistent; 2055 case diag::err_odr_objc_synthesize_ivar_inconsistent: 2056 return diag::warn_odr_objc_synthesize_ivar_inconsistent; 2057 case diag::err_odr_different_num_template_parameters: 2058 return diag::warn_odr_different_num_template_parameters; 2059 case diag::err_odr_different_template_parameter_kind: 2060 return diag::warn_odr_different_template_parameter_kind; 2061 case diag::err_odr_parameter_pack_non_pack: 2062 return diag::warn_odr_parameter_pack_non_pack; 2063 case diag::err_odr_non_type_parameter_type_inconsistent: 2064 return diag::warn_odr_non_type_parameter_type_inconsistent; 2065 } 2066 llvm_unreachable("Diagnostic kind not handled in preceding switch"); 2067 } 2068 2069 bool StructuralEquivalenceContext::IsEquivalent(Decl *D1, Decl *D2) { 2070 2071 // Ensure that the implementation functions (all static functions in this TU) 2072 // never call the public ASTStructuralEquivalence::IsEquivalent() functions, 2073 // because that will wreak havoc the internal state (DeclsToCheck and 2074 // VisitedDecls members) and can cause faulty behaviour. 2075 // In other words: Do not start a graph search from a new node with the 2076 // internal data of another search in progress. 2077 // FIXME: Better encapsulation and separation of internal and public 2078 // functionality. 2079 assert(DeclsToCheck.empty()); 2080 assert(VisitedDecls.empty()); 2081 2082 if (!::IsStructurallyEquivalent(*this, D1, D2)) 2083 return false; 2084 2085 return !Finish(); 2086 } 2087 2088 bool StructuralEquivalenceContext::IsEquivalent(QualType T1, QualType T2) { 2089 assert(DeclsToCheck.empty()); 2090 assert(VisitedDecls.empty()); 2091 if (!::IsStructurallyEquivalent(*this, T1, T2)) 2092 return false; 2093 2094 return !Finish(); 2095 } 2096 2097 bool StructuralEquivalenceContext::IsEquivalent(Stmt *S1, Stmt *S2) { 2098 assert(DeclsToCheck.empty()); 2099 assert(VisitedDecls.empty()); 2100 if (!::IsStructurallyEquivalent(*this, S1, S2)) 2101 return false; 2102 2103 return !Finish(); 2104 } 2105 2106 bool StructuralEquivalenceContext::CheckCommonEquivalence(Decl *D1, Decl *D2) { 2107 // Check for equivalent described template. 2108 TemplateDecl *Template1 = D1->getDescribedTemplate(); 2109 TemplateDecl *Template2 = D2->getDescribedTemplate(); 2110 if ((Template1 != nullptr) != (Template2 != nullptr)) 2111 return false; 2112 if (Template1 && !IsStructurallyEquivalent(*this, Template1, Template2)) 2113 return false; 2114 2115 // FIXME: Move check for identifier names into this function. 2116 2117 return true; 2118 } 2119 2120 bool StructuralEquivalenceContext::CheckKindSpecificEquivalence( 2121 Decl *D1, Decl *D2) { 2122 2123 // Kind mismatch. 2124 if (D1->getKind() != D2->getKind()) 2125 return false; 2126 2127 // Cast the Decls to their actual subclass so that the right overload of 2128 // IsStructurallyEquivalent is called. 2129 switch (D1->getKind()) { 2130 #define ABSTRACT_DECL(DECL) 2131 #define DECL(DERIVED, BASE) \ 2132 case Decl::Kind::DERIVED: \ 2133 return ::IsStructurallyEquivalent(*this, static_cast<DERIVED##Decl *>(D1), \ 2134 static_cast<DERIVED##Decl *>(D2)); 2135 #include "clang/AST/DeclNodes.inc" 2136 } 2137 return true; 2138 } 2139 2140 bool StructuralEquivalenceContext::Finish() { 2141 while (!DeclsToCheck.empty()) { 2142 // Check the next declaration. 2143 std::pair<Decl *, Decl *> P = DeclsToCheck.front(); 2144 DeclsToCheck.pop(); 2145 2146 Decl *D1 = P.first; 2147 Decl *D2 = P.second; 2148 2149 bool Equivalent = 2150 CheckCommonEquivalence(D1, D2) && CheckKindSpecificEquivalence(D1, D2); 2151 2152 if (!Equivalent) { 2153 // Note that these two declarations are not equivalent (and we already 2154 // know about it). 2155 NonEquivalentDecls.insert(P); 2156 2157 return true; 2158 } 2159 } 2160 2161 return false; 2162 } 2163