blob: ef1235e1d8c7271fdb444397c93aea8f03360c5d [file] [log] [blame]
Richard Trieue7f7ed22017-02-22 01:11:25 +00001//===-- ODRHash.cpp - Hashing to diagnose ODR failures ----------*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9///
10/// \file
11/// This file implements the ODRHash class, which calculates a hash based
12/// on AST nodes, which is stable across different runs.
13///
14//===----------------------------------------------------------------------===//
15
16#include "clang/AST/ODRHash.h"
17
18#include "clang/AST/DeclVisitor.h"
19#include "clang/AST/NestedNameSpecifier.h"
20#include "clang/AST/StmtVisitor.h"
21#include "clang/AST/TypeVisitor.h"
22
23using namespace clang;
24
Richard Trieu639d7b62017-02-22 22:22:42 +000025void ODRHash::AddStmt(const Stmt *S) {
26 assert(S && "Expecting non-null pointer.");
27 S->ProcessODRHash(ID, *this);
28}
Richard Trieud0786092017-02-23 00:23:01 +000029
30void ODRHash::AddIdentifierInfo(const IdentifierInfo *II) {
31 assert(II && "Expecting non-null pointer.");
32 ID.AddString(II->getName());
33}
34
Richard Trieu8459ddf2017-02-24 02:59:12 +000035void ODRHash::AddDeclarationName(DeclarationName Name) {
Richard Trieuf65efae2018-02-22 05:32:25 +000036 // Index all DeclarationName and use index numbers to refer to them.
37 auto Result = DeclNameMap.insert(std::make_pair(Name, DeclNameMap.size()));
38 ID.AddInteger(Result.first->second);
39 if (!Result.second) {
40 // If found in map, the the DeclarationName has previously been processed.
41 return;
42 }
43
44 // First time processing each DeclarationName, also process its details.
Richard Trieu8459ddf2017-02-24 02:59:12 +000045 AddBoolean(Name.isEmpty());
46 if (Name.isEmpty())
47 return;
48
49 auto Kind = Name.getNameKind();
50 ID.AddInteger(Kind);
51 switch (Kind) {
52 case DeclarationName::Identifier:
53 AddIdentifierInfo(Name.getAsIdentifierInfo());
54 break;
55 case DeclarationName::ObjCZeroArgSelector:
56 case DeclarationName::ObjCOneArgSelector:
57 case DeclarationName::ObjCMultiArgSelector: {
58 Selector S = Name.getObjCSelector();
59 AddBoolean(S.isNull());
60 AddBoolean(S.isKeywordSelector());
61 AddBoolean(S.isUnarySelector());
62 unsigned NumArgs = S.getNumArgs();
63 for (unsigned i = 0; i < NumArgs; ++i) {
64 AddIdentifierInfo(S.getIdentifierInfoForSlot(i));
65 }
66 break;
67 }
68 case DeclarationName::CXXConstructorName:
69 case DeclarationName::CXXDestructorName:
70 AddQualType(Name.getCXXNameType());
71 break;
72 case DeclarationName::CXXOperatorName:
73 ID.AddInteger(Name.getCXXOverloadedOperator());
74 break;
75 case DeclarationName::CXXLiteralOperatorName:
76 AddIdentifierInfo(Name.getCXXLiteralIdentifier());
77 break;
78 case DeclarationName::CXXConversionFunctionName:
79 AddQualType(Name.getCXXNameType());
80 break;
81 case DeclarationName::CXXUsingDirective:
82 break;
83 case DeclarationName::CXXDeductionGuideName: {
84 auto *Template = Name.getCXXDeductionGuideTemplate();
85 AddBoolean(Template);
86 if (Template) {
87 AddDecl(Template);
88 }
89 }
90 }
91}
92
Richard Trieuce81b192017-05-17 03:23:35 +000093void ODRHash::AddNestedNameSpecifier(const NestedNameSpecifier *NNS) {
Richard Trieu96b41642017-07-01 02:00:05 +000094 assert(NNS && "Expecting non-null pointer.");
95 const auto *Prefix = NNS->getPrefix();
96 AddBoolean(Prefix);
97 if (Prefix) {
98 AddNestedNameSpecifier(Prefix);
Richard Trieuce81b192017-05-17 03:23:35 +000099 }
100 auto Kind = NNS->getKind();
101 ID.AddInteger(Kind);
102 switch (Kind) {
103 case NestedNameSpecifier::Identifier:
104 AddIdentifierInfo(NNS->getAsIdentifier());
105 break;
106 case NestedNameSpecifier::Namespace:
107 AddDecl(NNS->getAsNamespace());
108 break;
109 case NestedNameSpecifier::NamespaceAlias:
110 AddDecl(NNS->getAsNamespaceAlias());
111 break;
112 case NestedNameSpecifier::TypeSpec:
113 case NestedNameSpecifier::TypeSpecWithTemplate:
114 AddType(NNS->getAsType());
115 break;
116 case NestedNameSpecifier::Global:
117 case NestedNameSpecifier::Super:
118 break;
119 }
120}
121
Richard Trieu96b49622017-05-31 00:31:58 +0000122void ODRHash::AddTemplateName(TemplateName Name) {
123 auto Kind = Name.getKind();
124 ID.AddInteger(Kind);
125
126 switch (Kind) {
127 case TemplateName::Template:
128 AddDecl(Name.getAsTemplateDecl());
129 break;
130 // TODO: Support these cases.
131 case TemplateName::OverloadedTemplate:
132 case TemplateName::QualifiedTemplate:
133 case TemplateName::DependentTemplate:
134 case TemplateName::SubstTemplateTemplateParm:
135 case TemplateName::SubstTemplateTemplateParmPack:
136 break;
137 }
138}
139
Richard Trieu3b261bb72017-06-13 22:21:18 +0000140void ODRHash::AddTemplateArgument(TemplateArgument TA) {
141 const auto Kind = TA.getKind();
142 ID.AddInteger(Kind);
Richard Trieu1dcb4052017-06-14 01:28:00 +0000143
144 switch (Kind) {
145 case TemplateArgument::Null:
Richard Trieu8844c522017-06-30 22:40:33 +0000146 llvm_unreachable("Expected valid TemplateArgument");
Richard Trieu1dcb4052017-06-14 01:28:00 +0000147 case TemplateArgument::Type:
Richard Trieu8844c522017-06-30 22:40:33 +0000148 AddQualType(TA.getAsType());
149 break;
Richard Trieu1dcb4052017-06-14 01:28:00 +0000150 case TemplateArgument::Declaration:
Richard Trieu7282d322018-04-25 00:31:15 +0000151 AddDecl(TA.getAsDecl());
152 break;
Richard Trieu1dcb4052017-06-14 01:28:00 +0000153 case TemplateArgument::NullPtr:
154 case TemplateArgument::Integral:
Richard Trieuee132d62017-06-14 03:17:26 +0000155 break;
Richard Trieu1dcb4052017-06-14 01:28:00 +0000156 case TemplateArgument::Template:
157 case TemplateArgument::TemplateExpansion:
Richard Trieuee132d62017-06-14 03:17:26 +0000158 AddTemplateName(TA.getAsTemplateOrTemplatePattern());
Richard Trieu1dcb4052017-06-14 01:28:00 +0000159 break;
160 case TemplateArgument::Expression:
161 AddStmt(TA.getAsExpr());
162 break;
163 case TemplateArgument::Pack:
Richard Trieud9201d02017-06-15 01:35:06 +0000164 ID.AddInteger(TA.pack_size());
165 for (auto SubTA : TA.pack_elements()) {
166 AddTemplateArgument(SubTA);
167 }
Richard Trieu1dcb4052017-06-14 01:28:00 +0000168 break;
169 }
Richard Trieu3b261bb72017-06-13 22:21:18 +0000170}
171
Richard Trieu498117b2017-08-23 02:43:59 +0000172void ODRHash::AddTemplateParameterList(const TemplateParameterList *TPL) {
173 assert(TPL && "Expecting non-null pointer.");
174
175 ID.AddInteger(TPL->size());
176 for (auto *ND : TPL->asArray()) {
177 AddSubDecl(ND);
178 }
179}
Richard Trieue7f7ed22017-02-22 01:11:25 +0000180
181void ODRHash::clear() {
Richard Trieuf65efae2018-02-22 05:32:25 +0000182 DeclNameMap.clear();
Richard Trieue7f7ed22017-02-22 01:11:25 +0000183 Bools.clear();
184 ID.clear();
185}
186
187unsigned ODRHash::CalculateHash() {
188 // Append the bools to the end of the data segment backwards. This allows
189 // for the bools data to be compressed 32 times smaller compared to using
190 // ID.AddBoolean
191 const unsigned unsigned_bits = sizeof(unsigned) * CHAR_BIT;
192 const unsigned size = Bools.size();
193 const unsigned remainder = size % unsigned_bits;
194 const unsigned loops = size / unsigned_bits;
195 auto I = Bools.rbegin();
196 unsigned value = 0;
197 for (unsigned i = 0; i < remainder; ++i) {
198 value <<= 1;
199 value |= *I;
200 ++I;
201 }
202 ID.AddInteger(value);
203
204 for (unsigned i = 0; i < loops; ++i) {
205 value = 0;
206 for (unsigned j = 0; j < unsigned_bits; ++j) {
207 value <<= 1;
208 value |= *I;
209 ++I;
210 }
211 ID.AddInteger(value);
212 }
213
214 assert(I == Bools.rend());
215 Bools.clear();
216 return ID.ComputeHash();
217}
218
Benjamin Kramerbffdf4c2017-08-20 13:02:57 +0000219namespace {
Richard Trieue7f7ed22017-02-22 01:11:25 +0000220// Process a Decl pointer. Add* methods call back into ODRHash while Visit*
221// methods process the relevant parts of the Decl.
222class ODRDeclVisitor : public ConstDeclVisitor<ODRDeclVisitor> {
223 typedef ConstDeclVisitor<ODRDeclVisitor> Inherited;
224 llvm::FoldingSetNodeID &ID;
Richard Trieu639d7b62017-02-22 22:22:42 +0000225 ODRHash &Hash;
Richard Trieue7f7ed22017-02-22 01:11:25 +0000226
227public:
Richard Trieu639d7b62017-02-22 22:22:42 +0000228 ODRDeclVisitor(llvm::FoldingSetNodeID &ID, ODRHash &Hash)
229 : ID(ID), Hash(Hash) {}
230
231 void AddStmt(const Stmt *S) {
232 Hash.AddBoolean(S);
233 if (S) {
234 Hash.AddStmt(S);
235 }
236 }
Richard Trieue7f7ed22017-02-22 01:11:25 +0000237
Richard Trieud0786092017-02-23 00:23:01 +0000238 void AddIdentifierInfo(const IdentifierInfo *II) {
239 Hash.AddBoolean(II);
240 if (II) {
241 Hash.AddIdentifierInfo(II);
242 }
243 }
244
Richard Trieubcaaf962017-02-23 03:25:57 +0000245 void AddQualType(QualType T) {
246 Hash.AddQualType(T);
247 }
248
Richard Trieuac6a1b62017-07-08 02:04:42 +0000249 void AddDecl(const Decl *D) {
250 Hash.AddBoolean(D);
251 if (D) {
252 Hash.AddDecl(D);
253 }
254 }
255
Richard Trieu498117b2017-08-23 02:43:59 +0000256 void AddTemplateArgument(TemplateArgument TA) {
257 Hash.AddTemplateArgument(TA);
258 }
259
Richard Trieue7f7ed22017-02-22 01:11:25 +0000260 void Visit(const Decl *D) {
261 ID.AddInteger(D->getKind());
262 Inherited::Visit(D);
263 }
264
Richard Trieud0786092017-02-23 00:23:01 +0000265 void VisitNamedDecl(const NamedDecl *D) {
Richard Trieu583e2c12017-03-04 00:08:58 +0000266 Hash.AddDeclarationName(D->getDeclName());
Richard Trieud0786092017-02-23 00:23:01 +0000267 Inherited::VisitNamedDecl(D);
268 }
269
Richard Trieubcaaf962017-02-23 03:25:57 +0000270 void VisitValueDecl(const ValueDecl *D) {
Richard Trieu9747a7c2017-07-14 01:36:41 +0000271 if (!isa<FunctionDecl>(D)) {
272 AddQualType(D->getType());
273 }
Richard Trieubcaaf962017-02-23 03:25:57 +0000274 Inherited::VisitValueDecl(D);
275 }
276
Richard Trieu6e13ff32017-06-16 02:44:29 +0000277 void VisitVarDecl(const VarDecl *D) {
278 Hash.AddBoolean(D->isStaticLocal());
279 Hash.AddBoolean(D->isConstexpr());
280 const bool HasInit = D->hasInit();
281 Hash.AddBoolean(HasInit);
282 if (HasInit) {
283 AddStmt(D->getInit());
284 }
285 Inherited::VisitVarDecl(D);
286 }
287
Richard Trieu02552272017-05-02 23:58:52 +0000288 void VisitParmVarDecl(const ParmVarDecl *D) {
289 // TODO: Handle default arguments.
290 Inherited::VisitParmVarDecl(D);
291 }
292
Richard Trieue7f7ed22017-02-22 01:11:25 +0000293 void VisitAccessSpecDecl(const AccessSpecDecl *D) {
294 ID.AddInteger(D->getAccess());
295 Inherited::VisitAccessSpecDecl(D);
296 }
Richard Trieu639d7b62017-02-22 22:22:42 +0000297
298 void VisitStaticAssertDecl(const StaticAssertDecl *D) {
299 AddStmt(D->getAssertExpr());
300 AddStmt(D->getMessage());
301
302 Inherited::VisitStaticAssertDecl(D);
303 }
Richard Trieud0786092017-02-23 00:23:01 +0000304
305 void VisitFieldDecl(const FieldDecl *D) {
Richard Trieu93772fc2017-02-24 20:59:28 +0000306 const bool IsBitfield = D->isBitField();
307 Hash.AddBoolean(IsBitfield);
308
309 if (IsBitfield) {
310 AddStmt(D->getBitWidth());
311 }
Richard Trieu8d543e22017-02-24 23:35:37 +0000312
313 Hash.AddBoolean(D->isMutable());
314 AddStmt(D->getInClassInitializer());
Richard Trieuff60e0f2017-02-25 01:29:34 +0000315
316 Inherited::VisitFieldDecl(D);
Richard Trieud0786092017-02-23 00:23:01 +0000317 }
Richard Trieu48143742017-02-28 21:24:38 +0000318
319 void VisitFunctionDecl(const FunctionDecl *D) {
Richard Trieu583e2c12017-03-04 00:08:58 +0000320 ID.AddInteger(D->getStorageClass());
321 Hash.AddBoolean(D->isInlineSpecified());
322 Hash.AddBoolean(D->isVirtualAsWritten());
323 Hash.AddBoolean(D->isPure());
324 Hash.AddBoolean(D->isDeletedAsWritten());
325
Richard Trieu02552272017-05-02 23:58:52 +0000326 ID.AddInteger(D->param_size());
327
328 for (auto *Param : D->parameters()) {
329 Hash.AddSubDecl(Param);
330 }
331
Richard Trieu9747a7c2017-07-14 01:36:41 +0000332 AddQualType(D->getReturnType());
333
Richard Trieu7282d322018-04-25 00:31:15 +0000334 const auto* SpecializationArgs = D->getTemplateSpecializationArgs();
335 Hash.AddBoolean(SpecializationArgs);
336 if (SpecializationArgs) {
337 ID.AddInteger(SpecializationArgs->size());
338 for (const TemplateArgument &TA : SpecializationArgs->asArray()) {
339 Hash.AddTemplateArgument(TA);
340 }
341 }
342
Richard Trieu48143742017-02-28 21:24:38 +0000343 Inherited::VisitFunctionDecl(D);
344 }
345
346 void VisitCXXMethodDecl(const CXXMethodDecl *D) {
Richard Trieu583e2c12017-03-04 00:08:58 +0000347 Hash.AddBoolean(D->isConst());
348 Hash.AddBoolean(D->isVolatile());
349
Richard Trieu48143742017-02-28 21:24:38 +0000350 Inherited::VisitCXXMethodDecl(D);
351 }
Richard Trieu33562c22017-03-08 00:13:19 +0000352
353 void VisitTypedefNameDecl(const TypedefNameDecl *D) {
354 AddQualType(D->getUnderlyingType());
355
356 Inherited::VisitTypedefNameDecl(D);
357 }
358
359 void VisitTypedefDecl(const TypedefDecl *D) {
360 Inherited::VisitTypedefDecl(D);
361 }
362
363 void VisitTypeAliasDecl(const TypeAliasDecl *D) {
364 Inherited::VisitTypeAliasDecl(D);
365 }
Richard Trieuac6a1b62017-07-08 02:04:42 +0000366
367 void VisitFriendDecl(const FriendDecl *D) {
368 TypeSourceInfo *TSI = D->getFriendType();
369 Hash.AddBoolean(TSI);
370 if (TSI) {
371 AddQualType(TSI->getType());
372 } else {
373 AddDecl(D->getFriendDecl());
374 }
375 }
Richard Trieu498117b2017-08-23 02:43:59 +0000376
377 void VisitTemplateTypeParmDecl(const TemplateTypeParmDecl *D) {
378 // Only care about default arguments as part of the definition.
379 const bool hasDefaultArgument =
380 D->hasDefaultArgument() && !D->defaultArgumentWasInherited();
381 Hash.AddBoolean(hasDefaultArgument);
382 if (hasDefaultArgument) {
383 AddTemplateArgument(D->getDefaultArgument());
384 }
Richard Trieu9359e8f2018-05-30 01:12:26 +0000385 Hash.AddBoolean(D->isParameterPack());
Richard Trieu498117b2017-08-23 02:43:59 +0000386
387 Inherited::VisitTemplateTypeParmDecl(D);
388 }
389
390 void VisitNonTypeTemplateParmDecl(const NonTypeTemplateParmDecl *D) {
391 // Only care about default arguments as part of the definition.
392 const bool hasDefaultArgument =
393 D->hasDefaultArgument() && !D->defaultArgumentWasInherited();
394 Hash.AddBoolean(hasDefaultArgument);
395 if (hasDefaultArgument) {
396 AddStmt(D->getDefaultArgument());
397 }
Richard Trieu9359e8f2018-05-30 01:12:26 +0000398 Hash.AddBoolean(D->isParameterPack());
Richard Trieu498117b2017-08-23 02:43:59 +0000399
400 Inherited::VisitNonTypeTemplateParmDecl(D);
401 }
402
403 void VisitTemplateTemplateParmDecl(const TemplateTemplateParmDecl *D) {
404 // Only care about default arguments as part of the definition.
405 const bool hasDefaultArgument =
406 D->hasDefaultArgument() && !D->defaultArgumentWasInherited();
407 Hash.AddBoolean(hasDefaultArgument);
408 if (hasDefaultArgument) {
409 AddTemplateArgument(D->getDefaultArgument().getArgument());
410 }
Richard Trieu9359e8f2018-05-30 01:12:26 +0000411 Hash.AddBoolean(D->isParameterPack());
Richard Trieu498117b2017-08-23 02:43:59 +0000412
413 Inherited::VisitTemplateTemplateParmDecl(D);
414 }
Richard Trieu9359e8f2018-05-30 01:12:26 +0000415
416 void VisitTemplateDecl(const TemplateDecl *D) {
417 Hash.AddTemplateParameterList(D->getTemplateParameters());
418
419 Inherited::VisitTemplateDecl(D);
420 }
421
422 void VisitRedeclarableTemplateDecl(const RedeclarableTemplateDecl *D) {
423 Hash.AddBoolean(D->isMemberSpecialization());
424 Inherited::VisitRedeclarableTemplateDecl(D);
425 }
426
427 void VisitFunctionTemplateDecl(const FunctionTemplateDecl *D) {
428 Visit(D->getTemplatedDecl());
Richard Trieu5d014062018-06-07 00:20:58 +0000429 AddDecl(D->getTemplatedDecl());
Richard Trieu9359e8f2018-05-30 01:12:26 +0000430 Inherited::VisitFunctionTemplateDecl(D);
431 }
Richard Trieue7f7ed22017-02-22 01:11:25 +0000432};
Benjamin Kramerbffdf4c2017-08-20 13:02:57 +0000433} // namespace
Richard Trieue7f7ed22017-02-22 01:11:25 +0000434
435// Only allow a small portion of Decl's to be processed. Remove this once
436// all Decl's can be handled.
437bool ODRHash::isWhitelistedDecl(const Decl *D, const CXXRecordDecl *Parent) {
438 if (D->isImplicit()) return false;
439 if (D->getDeclContext() != Parent) return false;
440
441 switch (D->getKind()) {
442 default:
443 return false;
444 case Decl::AccessSpec:
Richard Trieu1c71d512017-07-15 02:55:13 +0000445 case Decl::CXXConstructor:
446 case Decl::CXXDestructor:
Richard Trieu48143742017-02-28 21:24:38 +0000447 case Decl::CXXMethod:
Richard Trieud0786092017-02-23 00:23:01 +0000448 case Decl::Field:
Richard Trieuac6a1b62017-07-08 02:04:42 +0000449 case Decl::Friend:
Richard Trieu9359e8f2018-05-30 01:12:26 +0000450 case Decl::FunctionTemplate:
Richard Trieu639d7b62017-02-22 22:22:42 +0000451 case Decl::StaticAssert:
Richard Trieu33562c22017-03-08 00:13:19 +0000452 case Decl::TypeAlias:
453 case Decl::Typedef:
Richard Trieu6e13ff32017-06-16 02:44:29 +0000454 case Decl::Var:
Richard Trieue7f7ed22017-02-22 01:11:25 +0000455 return true;
456 }
457}
458
459void ODRHash::AddSubDecl(const Decl *D) {
460 assert(D && "Expecting non-null pointer.");
Richard Trieue7f7ed22017-02-22 01:11:25 +0000461
Richard Trieu639d7b62017-02-22 22:22:42 +0000462 ODRDeclVisitor(ID, *this).Visit(D);
Richard Trieue7f7ed22017-02-22 01:11:25 +0000463}
464
465void ODRHash::AddCXXRecordDecl(const CXXRecordDecl *Record) {
466 assert(Record && Record->hasDefinition() &&
467 "Expected non-null record to be a definition.");
Richard Trieu02552272017-05-02 23:58:52 +0000468
Richard Trieu5fb82ef2017-08-05 00:54:19 +0000469 const DeclContext *DC = Record;
470 while (DC) {
471 if (isa<ClassTemplateSpecializationDecl>(DC)) {
472 return;
473 }
474 DC = DC->getParent();
Richard Trieu02552272017-05-02 23:58:52 +0000475 }
476
Richard Trieue7f7ed22017-02-22 01:11:25 +0000477 AddDecl(Record);
478
479 // Filter out sub-Decls which will not be processed in order to get an
480 // accurate count of Decl's.
481 llvm::SmallVector<const Decl *, 16> Decls;
482 for (const Decl *SubDecl : Record->decls()) {
483 if (isWhitelistedDecl(SubDecl, Record)) {
484 Decls.push_back(SubDecl);
485 }
486 }
487
488 ID.AddInteger(Decls.size());
489 for (auto SubDecl : Decls) {
490 AddSubDecl(SubDecl);
491 }
Richard Trieu498117b2017-08-23 02:43:59 +0000492
493 const ClassTemplateDecl *TD = Record->getDescribedClassTemplate();
494 AddBoolean(TD);
495 if (TD) {
496 AddTemplateParameterList(TD->getTemplateParameters());
497 }
Richard Trieue13eabe2017-09-30 02:19:17 +0000498
499 ID.AddInteger(Record->getNumBases());
500 auto Bases = Record->bases();
501 for (auto Base : Bases) {
502 AddQualType(Base.getType());
503 ID.AddInteger(Base.isVirtual());
504 ID.AddInteger(Base.getAccessSpecifierAsWritten());
505 }
Richard Trieue7f7ed22017-02-22 01:11:25 +0000506}
507
Richard Trieue6caa262017-12-23 00:41:01 +0000508void ODRHash::AddFunctionDecl(const FunctionDecl *Function) {
509 assert(Function && "Expecting non-null pointer.");
510
511 // Skip hashing these kinds of function.
512 if (Function->isImplicit()) return;
513 if (Function->isDefaulted()) return;
514 if (Function->isDeleted()) return;
515 if (!Function->hasBody()) return;
516 if (!Function->getBody()) return;
517
518 // Skip functions that are specializations or in specialization context.
519 const DeclContext *DC = Function;
520 while (DC) {
521 if (isa<ClassTemplateSpecializationDecl>(DC)) return;
522 if (auto *F = dyn_cast<FunctionDecl>(DC))
523 if (F->isFunctionTemplateSpecialization()) return;
524 DC = DC->getParent();
525 }
526
527 AddDecl(Function);
528
529 AddQualType(Function->getReturnType());
530
531 ID.AddInteger(Function->param_size());
532 for (auto Param : Function->parameters())
533 AddSubDecl(Param);
534
535 AddStmt(Function->getBody());
536}
537
Richard Trieue7f7ed22017-02-22 01:11:25 +0000538void ODRHash::AddDecl(const Decl *D) {
539 assert(D && "Expecting non-null pointer.");
Richard Trieuf72fb7e2017-12-21 22:38:29 +0000540 D = D->getCanonicalDecl();
Richard Trieuf65efae2018-02-22 05:32:25 +0000541
542 if (const NamedDecl *ND = dyn_cast<NamedDecl>(D)) {
543 AddDeclarationName(ND->getDeclName());
Richard Trieue7f7ed22017-02-22 01:11:25 +0000544 return;
545 }
546
547 ID.AddInteger(D->getKind());
Richard Trieuf65efae2018-02-22 05:32:25 +0000548 // TODO: Handle non-NamedDecl here.
Richard Trieue7f7ed22017-02-22 01:11:25 +0000549}
550
Benjamin Kramerbffdf4c2017-08-20 13:02:57 +0000551namespace {
Richard Trieubcaaf962017-02-23 03:25:57 +0000552// Process a Type pointer. Add* methods call back into ODRHash while Visit*
553// methods process the relevant parts of the Type.
554class ODRTypeVisitor : public TypeVisitor<ODRTypeVisitor> {
555 typedef TypeVisitor<ODRTypeVisitor> Inherited;
556 llvm::FoldingSetNodeID &ID;
557 ODRHash &Hash;
558
559public:
560 ODRTypeVisitor(llvm::FoldingSetNodeID &ID, ODRHash &Hash)
561 : ID(ID), Hash(Hash) {}
562
563 void AddStmt(Stmt *S) {
564 Hash.AddBoolean(S);
565 if (S) {
566 Hash.AddStmt(S);
567 }
568 }
569
Richard Trieu8459ddf2017-02-24 02:59:12 +0000570 void AddDecl(Decl *D) {
571 Hash.AddBoolean(D);
572 if (D) {
573 Hash.AddDecl(D);
574 }
575 }
576
Richard Trieu02552272017-05-02 23:58:52 +0000577 void AddQualType(QualType T) {
578 Hash.AddQualType(T);
579 }
580
Richard Trieu3e03d3e2017-06-29 22:53:04 +0000581 void AddType(const Type *T) {
582 Hash.AddBoolean(T);
583 if (T) {
584 Hash.AddType(T);
585 }
586 }
587
Richard Trieu58bb7bd2017-05-17 02:29:02 +0000588 void AddNestedNameSpecifier(const NestedNameSpecifier *NNS) {
Richard Trieu96b41642017-07-01 02:00:05 +0000589 Hash.AddBoolean(NNS);
590 if (NNS) {
591 Hash.AddNestedNameSpecifier(NNS);
592 }
Richard Trieu58bb7bd2017-05-17 02:29:02 +0000593 }
594
595 void AddIdentifierInfo(const IdentifierInfo *II) {
596 Hash.AddBoolean(II);
597 if (II) {
598 Hash.AddIdentifierInfo(II);
599 }
600 }
601
Richard Trieu02552272017-05-02 23:58:52 +0000602 void VisitQualifiers(Qualifiers Quals) {
603 ID.AddInteger(Quals.getAsOpaqueValue());
604 }
605
Richard Trieubcaaf962017-02-23 03:25:57 +0000606 void Visit(const Type *T) {
607 ID.AddInteger(T->getTypeClass());
608 Inherited::Visit(T);
609 }
610
611 void VisitType(const Type *T) {}
612
Richard Trieu02552272017-05-02 23:58:52 +0000613 void VisitAdjustedType(const AdjustedType *T) {
614 AddQualType(T->getOriginalType());
615 AddQualType(T->getAdjustedType());
616 VisitType(T);
617 }
618
619 void VisitDecayedType(const DecayedType *T) {
620 AddQualType(T->getDecayedType());
621 AddQualType(T->getPointeeType());
622 VisitAdjustedType(T);
623 }
624
625 void VisitArrayType(const ArrayType *T) {
626 AddQualType(T->getElementType());
627 ID.AddInteger(T->getSizeModifier());
628 VisitQualifiers(T->getIndexTypeQualifiers());
629 VisitType(T);
630 }
631 void VisitConstantArrayType(const ConstantArrayType *T) {
632 T->getSize().Profile(ID);
633 VisitArrayType(T);
634 }
635
636 void VisitDependentSizedArrayType(const DependentSizedArrayType *T) {
637 AddStmt(T->getSizeExpr());
638 VisitArrayType(T);
639 }
640
641 void VisitIncompleteArrayType(const IncompleteArrayType *T) {
642 VisitArrayType(T);
643 }
644
645 void VisitVariableArrayType(const VariableArrayType *T) {
646 AddStmt(T->getSizeExpr());
647 VisitArrayType(T);
648 }
649
Richard Trieubcaaf962017-02-23 03:25:57 +0000650 void VisitBuiltinType(const BuiltinType *T) {
651 ID.AddInteger(T->getKind());
652 VisitType(T);
653 }
Richard Trieu8459ddf2017-02-24 02:59:12 +0000654
Richard Trieu02552272017-05-02 23:58:52 +0000655 void VisitFunctionType(const FunctionType *T) {
656 AddQualType(T->getReturnType());
657 T->getExtInfo().Profile(ID);
658 Hash.AddBoolean(T->isConst());
659 Hash.AddBoolean(T->isVolatile());
660 Hash.AddBoolean(T->isRestrict());
661 VisitType(T);
662 }
663
664 void VisitFunctionNoProtoType(const FunctionNoProtoType *T) {
665 VisitFunctionType(T);
666 }
667
668 void VisitFunctionProtoType(const FunctionProtoType *T) {
669 ID.AddInteger(T->getNumParams());
670 for (auto ParamType : T->getParamTypes())
671 AddQualType(ParamType);
672
673 VisitFunctionType(T);
674 }
675
Richard Trieu15970af2018-04-13 22:34:43 +0000676 void VisitPointerType(const PointerType *T) {
677 AddQualType(T->getPointeeType());
678 VisitType(T);
679 }
680
681 void VisitReferenceType(const ReferenceType *T) {
682 AddQualType(T->getPointeeTypeAsWritten());
683 VisitType(T);
684 }
685
686 void VisitLValueReferenceType(const LValueReferenceType *T) {
687 VisitReferenceType(T);
688 }
689
690 void VisitRValueReferenceType(const RValueReferenceType *T) {
691 VisitReferenceType(T);
692 }
693
Richard Trieu8459ddf2017-02-24 02:59:12 +0000694 void VisitTypedefType(const TypedefType *T) {
695 AddDecl(T->getDecl());
Richard Trieu3e03d3e2017-06-29 22:53:04 +0000696 QualType UnderlyingType = T->getDecl()->getUnderlyingType();
697 VisitQualifiers(UnderlyingType.getQualifiers());
Richard Trieucaaccee2018-04-12 02:26:49 +0000698 while (true) {
699 if (const TypedefType *Underlying =
700 dyn_cast<TypedefType>(UnderlyingType.getTypePtr())) {
701 UnderlyingType = Underlying->getDecl()->getUnderlyingType();
702 continue;
703 }
704 if (const ElaboratedType *Underlying =
705 dyn_cast<ElaboratedType>(UnderlyingType.getTypePtr())) {
706 UnderlyingType = Underlying->getNamedType();
707 continue;
708 }
709
710 break;
Richard Trieu3e03d3e2017-06-29 22:53:04 +0000711 }
712 AddType(UnderlyingType.getTypePtr());
Richard Trieu8459ddf2017-02-24 02:59:12 +0000713 VisitType(T);
714 }
Richard Trieu58bb7bd2017-05-17 02:29:02 +0000715
716 void VisitTagType(const TagType *T) {
717 AddDecl(T->getDecl());
718 VisitType(T);
719 }
720
721 void VisitRecordType(const RecordType *T) { VisitTagType(T); }
722 void VisitEnumType(const EnumType *T) { VisitTagType(T); }
723
724 void VisitTypeWithKeyword(const TypeWithKeyword *T) {
725 ID.AddInteger(T->getKeyword());
726 VisitType(T);
727 };
728
729 void VisitDependentNameType(const DependentNameType *T) {
730 AddNestedNameSpecifier(T->getQualifier());
731 AddIdentifierInfo(T->getIdentifier());
732 VisitTypeWithKeyword(T);
733 }
734
735 void VisitDependentTemplateSpecializationType(
736 const DependentTemplateSpecializationType *T) {
737 AddIdentifierInfo(T->getIdentifier());
738 AddNestedNameSpecifier(T->getQualifier());
739 ID.AddInteger(T->getNumArgs());
740 for (const auto &TA : T->template_arguments()) {
741 Hash.AddTemplateArgument(TA);
742 }
743 VisitTypeWithKeyword(T);
744 }
745
746 void VisitElaboratedType(const ElaboratedType *T) {
747 AddNestedNameSpecifier(T->getQualifier());
748 AddQualType(T->getNamedType());
749 VisitTypeWithKeyword(T);
750 }
Richard Trieu96b49622017-05-31 00:31:58 +0000751
752 void VisitTemplateSpecializationType(const TemplateSpecializationType *T) {
753 ID.AddInteger(T->getNumArgs());
754 for (const auto &TA : T->template_arguments()) {
755 Hash.AddTemplateArgument(TA);
756 }
757 Hash.AddTemplateName(T->getTemplateName());
758 VisitType(T);
759 }
Richard Trieud9201d02017-06-15 01:35:06 +0000760
761 void VisitTemplateTypeParmType(const TemplateTypeParmType *T) {
762 ID.AddInteger(T->getDepth());
763 ID.AddInteger(T->getIndex());
764 Hash.AddBoolean(T->isParameterPack());
765 AddDecl(T->getDecl());
766 }
Richard Trieubcaaf962017-02-23 03:25:57 +0000767};
Benjamin Kramerbffdf4c2017-08-20 13:02:57 +0000768} // namespace
Richard Trieubcaaf962017-02-23 03:25:57 +0000769
770void ODRHash::AddType(const Type *T) {
771 assert(T && "Expecting non-null pointer.");
Richard Trieubcaaf962017-02-23 03:25:57 +0000772 ODRTypeVisitor(ID, *this).Visit(T);
773}
774
775void ODRHash::AddQualType(QualType T) {
776 AddBoolean(T.isNull());
777 if (T.isNull())
778 return;
779 SplitQualType split = T.split();
780 ID.AddInteger(split.Quals.getAsOpaqueValue());
781 AddType(split.Ty);
782}
783
Richard Trieue7f7ed22017-02-22 01:11:25 +0000784void ODRHash::AddBoolean(bool Value) {
785 Bools.push_back(Value);
786}