blob: 3d528f3ccb4556cf9621046673a3ac2447598186 [file] [log] [blame]
Douglas Gregor41ef0c32009-07-28 00:33:38 +00001//===---- StmtProfile.cpp - Profile implementation for Stmt ASTs ----------===//
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// This file implements the Stmt::Profile method, which builds a unique bit
Douglas Gregor00aa3a62009-07-28 16:39:25 +000011// representation that identifies a statement/expression.
Douglas Gregor41ef0c32009-07-28 00:33:38 +000012//
13//===----------------------------------------------------------------------===//
14#include "clang/AST/ASTContext.h"
Douglas Gregor071f4eb2009-07-28 14:44:31 +000015#include "clang/AST/DeclCXX.h"
16#include "clang/AST/DeclObjC.h"
Douglas Gregor41ef0c32009-07-28 00:33:38 +000017#include "clang/AST/DeclTemplate.h"
18#include "clang/AST/Expr.h"
19#include "clang/AST/ExprCXX.h"
20#include "clang/AST/ExprObjC.h"
21#include "clang/AST/StmtVisitor.h"
22#include "llvm/ADT/FoldingSet.h"
Douglas Gregor41ef0c32009-07-28 00:33:38 +000023using namespace clang;
24
25namespace {
Benjamin Kramer770b4a82009-11-28 19:03:38 +000026 class StmtProfiler : public StmtVisitor<StmtProfiler> {
Douglas Gregor41ef0c32009-07-28 00:33:38 +000027 llvm::FoldingSetNodeID &ID;
28 ASTContext &Context;
29 bool Canonical;
Mike Stump1eb44332009-09-09 15:08:12 +000030
Douglas Gregor41ef0c32009-07-28 00:33:38 +000031 public:
32 StmtProfiler(llvm::FoldingSetNodeID &ID, ASTContext &Context,
Mike Stump1eb44332009-09-09 15:08:12 +000033 bool Canonical)
Douglas Gregor41ef0c32009-07-28 00:33:38 +000034 : ID(ID), Context(Context), Canonical(Canonical) { }
Mike Stump1eb44332009-09-09 15:08:12 +000035
Douglas Gregor41ef0c32009-07-28 00:33:38 +000036 void VisitStmt(Stmt *S);
Mike Stump1eb44332009-09-09 15:08:12 +000037
Douglas Gregor3fe81fc2009-07-28 15:27:13 +000038#define STMT(Node, Base) void Visit##Node(Node *S);
Douglas Gregor071f4eb2009-07-28 14:44:31 +000039#include "clang/AST/StmtNodes.def"
Mike Stump1eb44332009-09-09 15:08:12 +000040
Douglas Gregor41ef0c32009-07-28 00:33:38 +000041 /// \brief Visit a declaration that is referenced within an expression
42 /// or statement.
43 void VisitDecl(Decl *D);
Mike Stump1eb44332009-09-09 15:08:12 +000044
45 /// \brief Visit a type that is referenced within an expression or
Douglas Gregor41ef0c32009-07-28 00:33:38 +000046 /// statement.
47 void VisitType(QualType T);
Mike Stump1eb44332009-09-09 15:08:12 +000048
Douglas Gregor41ef0c32009-07-28 00:33:38 +000049 /// \brief Visit a name that occurs within an expression or statement.
50 void VisitName(DeclarationName Name);
Mike Stump1eb44332009-09-09 15:08:12 +000051
Douglas Gregor41ef0c32009-07-28 00:33:38 +000052 /// \brief Visit a nested-name-specifier that occurs within an expression
53 /// or statement.
54 void VisitNestedNameSpecifier(NestedNameSpecifier *NNS);
Mike Stump1eb44332009-09-09 15:08:12 +000055
Douglas Gregor41ef0c32009-07-28 00:33:38 +000056 /// \brief Visit a template name that occurs within an expression or
57 /// statement.
58 void VisitTemplateName(TemplateName Name);
Mike Stump1eb44332009-09-09 15:08:12 +000059
Douglas Gregor41ef0c32009-07-28 00:33:38 +000060 /// \brief Visit template arguments that occur within an expression or
61 /// statement.
John McCall833ca992009-10-29 08:12:44 +000062 void VisitTemplateArguments(const TemplateArgumentLoc *Args, unsigned NumArgs);
63
64 /// \brief Visit a single template argument.
65 void VisitTemplateArgument(const TemplateArgument &Arg);
Douglas Gregor41ef0c32009-07-28 00:33:38 +000066 };
67}
68
69void StmtProfiler::VisitStmt(Stmt *S) {
70 ID.AddInteger(S->getStmtClass());
71 for (Stmt::child_iterator C = S->child_begin(), CEnd = S->child_end();
72 C != CEnd; ++C)
73 Visit(*C);
74}
75
Douglas Gregor3fe81fc2009-07-28 15:27:13 +000076void StmtProfiler::VisitDeclStmt(DeclStmt *S) {
77 VisitStmt(S);
78 for (DeclStmt::decl_iterator D = S->decl_begin(), DEnd = S->decl_end();
79 D != DEnd; ++D)
80 VisitDecl(*D);
81}
82
83void StmtProfiler::VisitNullStmt(NullStmt *S) {
84 VisitStmt(S);
85}
86
87void StmtProfiler::VisitCompoundStmt(CompoundStmt *S) {
88 VisitStmt(S);
89}
90
91void StmtProfiler::VisitSwitchCase(SwitchCase *S) {
92 VisitStmt(S);
93}
94
95void StmtProfiler::VisitCaseStmt(CaseStmt *S) {
96 VisitStmt(S);
97}
98
99void StmtProfiler::VisitDefaultStmt(DefaultStmt *S) {
100 VisitStmt(S);
101}
102
103void StmtProfiler::VisitLabelStmt(LabelStmt *S) {
104 VisitStmt(S);
105 VisitName(S->getID());
106}
107
108void StmtProfiler::VisitIfStmt(IfStmt *S) {
109 VisitStmt(S);
Douglas Gregor99e9b4d2009-11-25 00:27:52 +0000110 VisitDecl(S->getConditionVariable());
Douglas Gregor3fe81fc2009-07-28 15:27:13 +0000111}
112
Douglas Gregor828e2262009-07-29 16:09:57 +0000113void StmtProfiler::VisitSwitchStmt(SwitchStmt *S) {
114 VisitStmt(S);
Douglas Gregor99e9b4d2009-11-25 00:27:52 +0000115 VisitDecl(S->getConditionVariable());
Douglas Gregor828e2262009-07-29 16:09:57 +0000116}
117
Douglas Gregor3fe81fc2009-07-28 15:27:13 +0000118void StmtProfiler::VisitWhileStmt(WhileStmt *S) {
119 VisitStmt(S);
Douglas Gregor99e9b4d2009-11-25 00:27:52 +0000120 VisitDecl(S->getConditionVariable());
Douglas Gregor3fe81fc2009-07-28 15:27:13 +0000121}
122
123void StmtProfiler::VisitDoStmt(DoStmt *S) {
124 VisitStmt(S);
125}
126
127void StmtProfiler::VisitForStmt(ForStmt *S) {
128 VisitStmt(S);
129}
130
131void StmtProfiler::VisitGotoStmt(GotoStmt *S) {
132 VisitStmt(S);
133 VisitName(S->getLabel()->getID());
134}
135
136void StmtProfiler::VisitIndirectGotoStmt(IndirectGotoStmt *S) {
137 VisitStmt(S);
138}
139
140void StmtProfiler::VisitContinueStmt(ContinueStmt *S) {
141 VisitStmt(S);
142}
143
144void StmtProfiler::VisitBreakStmt(BreakStmt *S) {
145 VisitStmt(S);
146}
147
148void StmtProfiler::VisitReturnStmt(ReturnStmt *S) {
149 VisitStmt(S);
150}
151
152void StmtProfiler::VisitAsmStmt(AsmStmt *S) {
153 VisitStmt(S);
154 ID.AddBoolean(S->isVolatile());
155 ID.AddBoolean(S->isSimple());
156 VisitStringLiteral(S->getAsmString());
157 ID.AddInteger(S->getNumOutputs());
158 for (unsigned I = 0, N = S->getNumOutputs(); I != N; ++I) {
159 ID.AddString(S->getOutputName(I));
160 VisitStringLiteral(S->getOutputConstraintLiteral(I));
161 }
162 ID.AddInteger(S->getNumInputs());
163 for (unsigned I = 0, N = S->getNumInputs(); I != N; ++I) {
164 ID.AddString(S->getInputName(I));
165 VisitStringLiteral(S->getInputConstraintLiteral(I));
166 }
167 ID.AddInteger(S->getNumClobbers());
168 for (unsigned I = 0, N = S->getNumClobbers(); I != N; ++I)
169 VisitStringLiteral(S->getClobber(I));
170}
171
172void StmtProfiler::VisitCXXCatchStmt(CXXCatchStmt *S) {
173 VisitStmt(S);
174 VisitType(S->getCaughtType());
175}
176
177void StmtProfiler::VisitCXXTryStmt(CXXTryStmt *S) {
178 VisitStmt(S);
179}
180
181void StmtProfiler::VisitObjCForCollectionStmt(ObjCForCollectionStmt *S) {
182 VisitStmt(S);
183}
184
185void StmtProfiler::VisitObjCAtCatchStmt(ObjCAtCatchStmt *S) {
186 VisitStmt(S);
187 ID.AddBoolean(S->hasEllipsis());
188 if (S->getCatchParamDecl())
189 VisitType(S->getCatchParamDecl()->getType());
190}
191
192void StmtProfiler::VisitObjCAtFinallyStmt(ObjCAtFinallyStmt *S) {
193 VisitStmt(S);
194}
195
196void StmtProfiler::VisitObjCAtTryStmt(ObjCAtTryStmt *S) {
197 VisitStmt(S);
198}
199
200void StmtProfiler::VisitObjCAtSynchronizedStmt(ObjCAtSynchronizedStmt *S) {
201 VisitStmt(S);
202}
203
204void StmtProfiler::VisitObjCAtThrowStmt(ObjCAtThrowStmt *S) {
205 VisitStmt(S);
206}
207
Douglas Gregor41ef0c32009-07-28 00:33:38 +0000208void StmtProfiler::VisitExpr(Expr *S) {
209 VisitStmt(S);
210}
211
212void StmtProfiler::VisitDeclRefExpr(DeclRefExpr *S) {
213 VisitExpr(S);
Douglas Gregora2813ce2009-10-23 18:54:35 +0000214 VisitNestedNameSpecifier(S->getQualifier());
Douglas Gregor41ef0c32009-07-28 00:33:38 +0000215 VisitDecl(S->getDecl());
Douglas Gregora2813ce2009-10-23 18:54:35 +0000216 VisitTemplateArguments(S->getTemplateArgs(), S->getNumTemplateArgs());
Douglas Gregor41ef0c32009-07-28 00:33:38 +0000217}
218
219void StmtProfiler::VisitPredefinedExpr(PredefinedExpr *S) {
220 VisitExpr(S);
221 ID.AddInteger(S->getIdentType());
222}
223
224void StmtProfiler::VisitIntegerLiteral(IntegerLiteral *S) {
225 VisitExpr(S);
226 S->getValue().Profile(ID);
227}
228
229void StmtProfiler::VisitCharacterLiteral(CharacterLiteral *S) {
230 VisitExpr(S);
231 ID.AddBoolean(S->isWide());
232 ID.AddInteger(S->getValue());
233}
234
235void StmtProfiler::VisitFloatingLiteral(FloatingLiteral *S) {
236 VisitExpr(S);
237 S->getValue().Profile(ID);
238 ID.AddBoolean(S->isExact());
239}
240
241void StmtProfiler::VisitImaginaryLiteral(ImaginaryLiteral *S) {
242 VisitExpr(S);
243}
244
245void StmtProfiler::VisitStringLiteral(StringLiteral *S) {
246 VisitExpr(S);
Daniel Dunbar932eb6d2009-09-22 10:06:21 +0000247 ID.AddString(S->getString());
Douglas Gregor41ef0c32009-07-28 00:33:38 +0000248 ID.AddBoolean(S->isWide());
249}
250
251void StmtProfiler::VisitParenExpr(ParenExpr *S) {
252 VisitExpr(S);
253}
254
Nate Begeman2ef13e52009-08-10 23:49:36 +0000255void StmtProfiler::VisitParenListExpr(ParenListExpr *S) {
256 VisitExpr(S);
257}
258
Douglas Gregor41ef0c32009-07-28 00:33:38 +0000259void StmtProfiler::VisitUnaryOperator(UnaryOperator *S) {
260 VisitExpr(S);
261 ID.AddInteger(S->getOpcode());
262}
263
Douglas Gregor8ecdb652010-04-28 22:16:22 +0000264void StmtProfiler::VisitOffsetOfExpr(OffsetOfExpr *S) {
265 VisitType(S->getTypeSourceInfo()->getType());
266 unsigned n = S->getNumComponents();
267 for (unsigned i = 0; i < n; ++i) {
268 const OffsetOfExpr::OffsetOfNode& ON = S->getComponent(i);
269 ID.AddInteger(ON.getKind());
270 switch (ON.getKind()) {
271 case OffsetOfExpr::OffsetOfNode::Array:
272 // Expressions handled below.
273 break;
274
275 case OffsetOfExpr::OffsetOfNode::Field:
276 VisitDecl(ON.getField());
277 break;
278
279 case OffsetOfExpr::OffsetOfNode::Identifier:
280 ID.AddPointer(ON.getFieldName());
281 break;
282 }
283 }
284
285 VisitExpr(S);
286}
287
Douglas Gregor41ef0c32009-07-28 00:33:38 +0000288void StmtProfiler::VisitSizeOfAlignOfExpr(SizeOfAlignOfExpr *S) {
289 VisitExpr(S);
290 ID.AddBoolean(S->isSizeOf());
291 if (S->isArgumentType())
292 VisitType(S->getArgumentType());
293}
294
295void StmtProfiler::VisitArraySubscriptExpr(ArraySubscriptExpr *S) {
296 VisitExpr(S);
297}
298
299void StmtProfiler::VisitCallExpr(CallExpr *S) {
300 VisitExpr(S);
301}
302
303void StmtProfiler::VisitMemberExpr(MemberExpr *S) {
304 VisitExpr(S);
305 VisitDecl(S->getMemberDecl());
Douglas Gregor83f6faf2009-08-31 23:41:50 +0000306 VisitNestedNameSpecifier(S->getQualifier());
Douglas Gregor41ef0c32009-07-28 00:33:38 +0000307 ID.AddBoolean(S->isArrow());
308}
309
310void StmtProfiler::VisitCompoundLiteralExpr(CompoundLiteralExpr *S) {
311 VisitExpr(S);
312 ID.AddBoolean(S->isFileScope());
313}
314
Douglas Gregor41ef0c32009-07-28 00:33:38 +0000315void StmtProfiler::VisitCastExpr(CastExpr *S) {
316 VisitExpr(S);
317}
318
319void StmtProfiler::VisitImplicitCastExpr(ImplicitCastExpr *S) {
320 VisitCastExpr(S);
321 ID.AddBoolean(S->isLvalueCast());
322}
323
324void StmtProfiler::VisitExplicitCastExpr(ExplicitCastExpr *S) {
325 VisitCastExpr(S);
326 VisitType(S->getTypeAsWritten());
327}
328
329void StmtProfiler::VisitCStyleCastExpr(CStyleCastExpr *S) {
330 VisitExplicitCastExpr(S);
331}
332
333void StmtProfiler::VisitBinaryOperator(BinaryOperator *S) {
334 VisitExpr(S);
335 ID.AddInteger(S->getOpcode());
336}
337
338void StmtProfiler::VisitCompoundAssignOperator(CompoundAssignOperator *S) {
339 VisitBinaryOperator(S);
340}
341
342void StmtProfiler::VisitConditionalOperator(ConditionalOperator *S) {
343 VisitExpr(S);
344}
345
346void StmtProfiler::VisitAddrLabelExpr(AddrLabelExpr *S) {
347 VisitExpr(S);
Douglas Gregor3fe81fc2009-07-28 15:27:13 +0000348 VisitName(S->getLabel()->getID());
Douglas Gregor41ef0c32009-07-28 00:33:38 +0000349}
350
351void StmtProfiler::VisitStmtExpr(StmtExpr *S) {
352 VisitExpr(S);
353}
354
355void StmtProfiler::VisitTypesCompatibleExpr(TypesCompatibleExpr *S) {
356 VisitExpr(S);
357 VisitType(S->getArgType1());
358 VisitType(S->getArgType2());
359}
360
361void StmtProfiler::VisitShuffleVectorExpr(ShuffleVectorExpr *S) {
362 VisitExpr(S);
363}
364
365void StmtProfiler::VisitChooseExpr(ChooseExpr *S) {
366 VisitExpr(S);
367}
368
369void StmtProfiler::VisitGNUNullExpr(GNUNullExpr *S) {
370 VisitExpr(S);
371}
372
Douglas Gregor828e2262009-07-29 16:09:57 +0000373void StmtProfiler::VisitVAArgExpr(VAArgExpr *S) {
374 VisitExpr(S);
375}
376
Douglas Gregor41ef0c32009-07-28 00:33:38 +0000377void StmtProfiler::VisitInitListExpr(InitListExpr *S) {
378 if (S->getSyntacticForm()) {
379 VisitInitListExpr(S->getSyntacticForm());
380 return;
381 }
Mike Stump1eb44332009-09-09 15:08:12 +0000382
Douglas Gregor41ef0c32009-07-28 00:33:38 +0000383 VisitExpr(S);
384}
385
386void StmtProfiler::VisitDesignatedInitExpr(DesignatedInitExpr *S) {
387 VisitExpr(S);
388 ID.AddBoolean(S->usesGNUSyntax());
389 for (DesignatedInitExpr::designators_iterator D = S->designators_begin(),
390 DEnd = S->designators_end();
391 D != DEnd; ++D) {
392 if (D->isFieldDesignator()) {
393 ID.AddInteger(0);
394 VisitName(D->getFieldName());
395 continue;
396 }
Mike Stump1eb44332009-09-09 15:08:12 +0000397
Douglas Gregor41ef0c32009-07-28 00:33:38 +0000398 if (D->isArrayDesignator()) {
399 ID.AddInteger(1);
400 } else {
401 assert(D->isArrayRangeDesignator());
402 ID.AddInteger(2);
403 }
404 ID.AddInteger(D->getFirstExprIndex());
405 }
406}
407
408void StmtProfiler::VisitImplicitValueInitExpr(ImplicitValueInitExpr *S) {
409 VisitExpr(S);
410}
411
412void StmtProfiler::VisitExtVectorElementExpr(ExtVectorElementExpr *S) {
413 VisitExpr(S);
414 VisitName(&S->getAccessor());
415}
416
417void StmtProfiler::VisitBlockExpr(BlockExpr *S) {
418 VisitExpr(S);
419 VisitDecl(S->getBlockDecl());
420}
421
422void StmtProfiler::VisitBlockDeclRefExpr(BlockDeclRefExpr *S) {
423 VisitExpr(S);
424 VisitDecl(S->getDecl());
425 ID.AddBoolean(S->isByRef());
426 ID.AddBoolean(S->isConstQualAdded());
427}
428
429void StmtProfiler::VisitCXXOperatorCallExpr(CXXOperatorCallExpr *S) {
430 VisitCallExpr(S);
431 ID.AddInteger(S->getOperator());
432}
433
434void StmtProfiler::VisitCXXMemberCallExpr(CXXMemberCallExpr *S) {
435 VisitCallExpr(S);
436}
437
438void StmtProfiler::VisitCXXNamedCastExpr(CXXNamedCastExpr *S) {
439 VisitExplicitCastExpr(S);
440}
441
442void StmtProfiler::VisitCXXStaticCastExpr(CXXStaticCastExpr *S) {
443 VisitCXXNamedCastExpr(S);
444}
445
446void StmtProfiler::VisitCXXDynamicCastExpr(CXXDynamicCastExpr *S) {
447 VisitCXXNamedCastExpr(S);
448}
449
450void StmtProfiler::VisitCXXReinterpretCastExpr(CXXReinterpretCastExpr *S) {
451 VisitCXXNamedCastExpr(S);
452}
453
454void StmtProfiler::VisitCXXConstCastExpr(CXXConstCastExpr *S) {
455 VisitCXXNamedCastExpr(S);
456}
457
458void StmtProfiler::VisitCXXBoolLiteralExpr(CXXBoolLiteralExpr *S) {
459 VisitExpr(S);
460 ID.AddBoolean(S->getValue());
461}
462
Douglas Gregor828e2262009-07-29 16:09:57 +0000463void StmtProfiler::VisitCXXNullPtrLiteralExpr(CXXNullPtrLiteralExpr *S) {
464 VisitExpr(S);
465}
466
Douglas Gregor41ef0c32009-07-28 00:33:38 +0000467void StmtProfiler::VisitCXXTypeidExpr(CXXTypeidExpr *S) {
468 VisitExpr(S);
469 if (S->isTypeOperand())
470 VisitType(S->getTypeOperand());
471}
472
473void StmtProfiler::VisitCXXThisExpr(CXXThisExpr *S) {
474 VisitExpr(S);
475}
476
477void StmtProfiler::VisitCXXThrowExpr(CXXThrowExpr *S) {
478 VisitExpr(S);
479}
480
481void StmtProfiler::VisitCXXDefaultArgExpr(CXXDefaultArgExpr *S) {
482 VisitExpr(S);
483 VisitDecl(S->getParam());
484}
485
486void StmtProfiler::VisitCXXBindTemporaryExpr(CXXBindTemporaryExpr *S) {
487 VisitExpr(S);
488 VisitDecl(
489 const_cast<CXXDestructorDecl *>(S->getTemporary()->getDestructor()));
490}
491
Anders Carlssoneb60edf2010-01-29 02:39:32 +0000492void StmtProfiler::VisitCXXBindReferenceExpr(CXXBindReferenceExpr *S) {
493 VisitExpr(S);
494}
495
Douglas Gregor41ef0c32009-07-28 00:33:38 +0000496void StmtProfiler::VisitCXXConstructExpr(CXXConstructExpr *S) {
497 VisitExpr(S);
498 VisitDecl(S->getConstructor());
499 ID.AddBoolean(S->isElidable());
500}
501
502void StmtProfiler::VisitCXXFunctionalCastExpr(CXXFunctionalCastExpr *S) {
503 VisitExplicitCastExpr(S);
504}
505
506void StmtProfiler::VisitCXXTemporaryObjectExpr(CXXTemporaryObjectExpr *S) {
507 VisitCXXConstructExpr(S);
508}
509
510void StmtProfiler::VisitCXXZeroInitValueExpr(CXXZeroInitValueExpr *S) {
511 VisitExpr(S);
512}
513
Douglas Gregor41ef0c32009-07-28 00:33:38 +0000514void StmtProfiler::VisitCXXDeleteExpr(CXXDeleteExpr *S) {
515 VisitExpr(S);
516 ID.AddBoolean(S->isGlobalDelete());
517 ID.AddBoolean(S->isArrayForm());
518 VisitDecl(S->getOperatorDelete());
519}
520
521
522void StmtProfiler::VisitCXXNewExpr(CXXNewExpr *S) {
523 VisitExpr(S);
524 VisitType(S->getAllocatedType());
525 VisitDecl(S->getOperatorNew());
526 VisitDecl(S->getOperatorDelete());
527 VisitDecl(S->getConstructor());
528 ID.AddBoolean(S->isArray());
529 ID.AddInteger(S->getNumPlacementArgs());
530 ID.AddBoolean(S->isGlobalNew());
531 ID.AddBoolean(S->isParenTypeId());
532 ID.AddBoolean(S->hasInitializer());
533 ID.AddInteger(S->getNumConstructorArgs());
534}
535
Douglas Gregora71d8192009-09-04 17:36:40 +0000536void StmtProfiler::VisitCXXPseudoDestructorExpr(CXXPseudoDestructorExpr *S) {
537 VisitExpr(S);
538 ID.AddBoolean(S->isArrow());
539 VisitNestedNameSpecifier(S->getQualifier());
540 VisitType(S->getDestroyedType());
541}
542
Mike Stump1eb44332009-09-09 15:08:12 +0000543void
John McCallba135432009-11-21 08:51:07 +0000544StmtProfiler::VisitUnresolvedLookupExpr(UnresolvedLookupExpr *S) {
Douglas Gregor41ef0c32009-07-28 00:33:38 +0000545 VisitExpr(S);
John McCallf7a1a742009-11-24 19:00:30 +0000546 VisitNestedNameSpecifier(S->getQualifier());
Douglas Gregor41ef0c32009-07-28 00:33:38 +0000547 VisitName(S->getName());
John McCallf7a1a742009-11-24 19:00:30 +0000548 ID.AddBoolean(S->hasExplicitTemplateArgs());
549 if (S->hasExplicitTemplateArgs())
550 VisitTemplateArguments(S->getTemplateArgs(), S->getNumTemplateArgs());
Douglas Gregor41ef0c32009-07-28 00:33:38 +0000551}
552
553void StmtProfiler::VisitUnaryTypeTraitExpr(UnaryTypeTraitExpr *S) {
554 VisitExpr(S);
555 ID.AddInteger(S->getTrait());
556 VisitType(S->getQueriedType());
557}
558
John McCall865d4472009-11-19 22:55:06 +0000559void
560StmtProfiler::VisitDependentScopeDeclRefExpr(DependentScopeDeclRefExpr *S) {
Douglas Gregor41ef0c32009-07-28 00:33:38 +0000561 VisitExpr(S);
562 VisitName(S->getDeclName());
563 VisitNestedNameSpecifier(S->getQualifier());
John McCallf7a1a742009-11-24 19:00:30 +0000564 ID.AddBoolean(S->hasExplicitTemplateArgs());
565 if (S->hasExplicitTemplateArgs())
566 VisitTemplateArguments(S->getTemplateArgs(), S->getNumTemplateArgs());
Douglas Gregor41ef0c32009-07-28 00:33:38 +0000567}
568
Douglas Gregor071f4eb2009-07-28 14:44:31 +0000569void StmtProfiler::VisitCXXExprWithTemporaries(CXXExprWithTemporaries *S) {
570 VisitExpr(S);
Douglas Gregor071f4eb2009-07-28 14:44:31 +0000571 for (unsigned I = 0, N = S->getNumTemporaries(); I != N; ++I)
572 VisitDecl(
573 const_cast<CXXDestructorDecl *>(S->getTemporary(I)->getDestructor()));
574}
575
Mike Stump1eb44332009-09-09 15:08:12 +0000576void
Douglas Gregor071f4eb2009-07-28 14:44:31 +0000577StmtProfiler::VisitCXXUnresolvedConstructExpr(CXXUnresolvedConstructExpr *S) {
578 VisitExpr(S);
579 VisitType(S->getTypeAsWritten());
580}
581
John McCall865d4472009-11-19 22:55:06 +0000582void
583StmtProfiler::VisitCXXDependentScopeMemberExpr(CXXDependentScopeMemberExpr *S) {
John McCallaa81e162009-12-01 22:10:20 +0000584 ID.AddBoolean(S->isImplicitAccess());
585 if (!S->isImplicitAccess()) {
586 VisitExpr(S);
587 ID.AddBoolean(S->isArrow());
588 }
Douglas Gregora38c6872009-09-03 16:14:30 +0000589 VisitNestedNameSpecifier(S->getQualifier());
Douglas Gregor071f4eb2009-07-28 14:44:31 +0000590 VisitName(S->getMember());
John McCallaa81e162009-12-01 22:10:20 +0000591 ID.AddBoolean(S->hasExplicitTemplateArgs());
592 if (S->hasExplicitTemplateArgs())
John McCall129e2df2009-11-30 22:42:35 +0000593 VisitTemplateArguments(S->getTemplateArgs(), S->getNumTemplateArgs());
594}
595
596void StmtProfiler::VisitUnresolvedMemberExpr(UnresolvedMemberExpr *S) {
John McCallaa81e162009-12-01 22:10:20 +0000597 ID.AddBoolean(S->isImplicitAccess());
598 if (!S->isImplicitAccess()) {
599 VisitExpr(S);
600 ID.AddBoolean(S->isArrow());
601 }
John McCall129e2df2009-11-30 22:42:35 +0000602 VisitNestedNameSpecifier(S->getQualifier());
603 VisitName(S->getMemberName());
604 ID.AddBoolean(S->hasExplicitTemplateArgs());
605 if (S->hasExplicitTemplateArgs())
606 VisitTemplateArguments(S->getTemplateArgs(), S->getNumTemplateArgs());
Douglas Gregor071f4eb2009-07-28 14:44:31 +0000607}
608
609void StmtProfiler::VisitObjCStringLiteral(ObjCStringLiteral *S) {
610 VisitExpr(S);
611}
612
613void StmtProfiler::VisitObjCEncodeExpr(ObjCEncodeExpr *S) {
614 VisitExpr(S);
615 VisitType(S->getEncodedType());
616}
617
618void StmtProfiler::VisitObjCSelectorExpr(ObjCSelectorExpr *S) {
619 VisitExpr(S);
620 VisitName(S->getSelector());
621}
622
623void StmtProfiler::VisitObjCProtocolExpr(ObjCProtocolExpr *S) {
624 VisitExpr(S);
625 VisitDecl(S->getProtocol());
626}
627
628void StmtProfiler::VisitObjCIvarRefExpr(ObjCIvarRefExpr *S) {
629 VisitExpr(S);
630 VisitDecl(S->getDecl());
631 ID.AddBoolean(S->isArrow());
632 ID.AddBoolean(S->isFreeIvar());
633}
634
635void StmtProfiler::VisitObjCPropertyRefExpr(ObjCPropertyRefExpr *S) {
636 VisitExpr(S);
637 VisitDecl(S->getProperty());
638}
639
Fariborz Jahanian09105f52009-08-20 17:02:02 +0000640void StmtProfiler::VisitObjCImplicitSetterGetterRefExpr(
641 ObjCImplicitSetterGetterRefExpr *S) {
Douglas Gregor071f4eb2009-07-28 14:44:31 +0000642 VisitExpr(S);
643 VisitDecl(S->getGetterMethod());
644 VisitDecl(S->getSetterMethod());
Fariborz Jahaniand2ae5aa2009-08-18 21:37:33 +0000645 VisitDecl(S->getInterfaceDecl());
Douglas Gregor071f4eb2009-07-28 14:44:31 +0000646}
647
648void StmtProfiler::VisitObjCMessageExpr(ObjCMessageExpr *S) {
649 VisitExpr(S);
650 VisitName(S->getSelector());
651 VisitDecl(S->getMethodDecl());
652}
653
654void StmtProfiler::VisitObjCSuperExpr(ObjCSuperExpr *S) {
655 VisitExpr(S);
656}
657
658void StmtProfiler::VisitObjCIsaExpr(ObjCIsaExpr *S) {
659 VisitExpr(S);
660 ID.AddBoolean(S->isArrow());
661}
662
Douglas Gregord584eb22009-07-28 15:32:17 +0000663void StmtProfiler::VisitDecl(Decl *D) {
Douglas Gregor4a3f7802009-07-31 15:45:02 +0000664 ID.AddInteger(D? D->getKind() : 0);
Mike Stump1eb44332009-09-09 15:08:12 +0000665
Douglas Gregorb1975722009-07-30 23:18:24 +0000666 if (Canonical && D) {
Douglas Gregor6ebd15e2009-07-31 05:24:01 +0000667 if (NonTypeTemplateParmDecl *NTTP = dyn_cast<NonTypeTemplateParmDecl>(D)) {
Douglas Gregord584eb22009-07-28 15:32:17 +0000668 ID.AddInteger(NTTP->getDepth());
669 ID.AddInteger(NTTP->getIndex());
Douglas Gregor828e2262009-07-29 16:09:57 +0000670 VisitType(NTTP->getType());
Douglas Gregor41ef0c32009-07-28 00:33:38 +0000671 return;
672 }
Mike Stump1eb44332009-09-09 15:08:12 +0000673
Douglas Gregor4a3f7802009-07-31 15:45:02 +0000674 if (ParmVarDecl *Parm = dyn_cast<ParmVarDecl>(D)) {
675 // The Itanium C++ ABI uses the type of a parameter when mangling
676 // expressions that involve function parameters, so we will use the
677 // parameter's type for establishing function parameter identity. That
Mike Stump1eb44332009-09-09 15:08:12 +0000678 // way, our definition of "equivalent" (per C++ [temp.over.link])
Douglas Gregor4a3f7802009-07-31 15:45:02 +0000679 // matches the definition of "equivalent" used for name mangling.
680 VisitType(Parm->getType());
681 return;
682 }
Mike Stump1eb44332009-09-09 15:08:12 +0000683
Douglas Gregora2ffb982009-07-31 15:46:56 +0000684 if (TemplateTemplateParmDecl *TTP = dyn_cast<TemplateTemplateParmDecl>(D)) {
685 ID.AddInteger(TTP->getDepth());
686 ID.AddInteger(TTP->getIndex());
687 return;
688 }
Douglas Gregor41ef0c32009-07-28 00:33:38 +0000689 }
Mike Stump1eb44332009-09-09 15:08:12 +0000690
Douglas Gregord584eb22009-07-28 15:32:17 +0000691 ID.AddPointer(D? D->getCanonicalDecl() : 0);
692}
693
694void StmtProfiler::VisitType(QualType T) {
695 if (Canonical)
696 T = Context.getCanonicalType(T);
Mike Stump1eb44332009-09-09 15:08:12 +0000697
Douglas Gregor41ef0c32009-07-28 00:33:38 +0000698 ID.AddPointer(T.getAsOpaquePtr());
699}
700
701void StmtProfiler::VisitName(DeclarationName Name) {
702 ID.AddPointer(Name.getAsOpaquePtr());
703}
704
705void StmtProfiler::VisitNestedNameSpecifier(NestedNameSpecifier *NNS) {
706 if (Canonical)
707 NNS = Context.getCanonicalNestedNameSpecifier(NNS);
708 ID.AddPointer(NNS);
709}
710
711void StmtProfiler::VisitTemplateName(TemplateName Name) {
712 if (Canonical)
713 Name = Context.getCanonicalTemplateName(Name);
Mike Stump1eb44332009-09-09 15:08:12 +0000714
Douglas Gregor41ef0c32009-07-28 00:33:38 +0000715 Name.Profile(ID);
716}
717
John McCall833ca992009-10-29 08:12:44 +0000718void StmtProfiler::VisitTemplateArguments(const TemplateArgumentLoc *Args,
Douglas Gregor41ef0c32009-07-28 00:33:38 +0000719 unsigned NumArgs) {
720 ID.AddInteger(NumArgs);
John McCall833ca992009-10-29 08:12:44 +0000721 for (unsigned I = 0; I != NumArgs; ++I)
722 VisitTemplateArgument(Args[I].getArgument());
723}
Mike Stump1eb44332009-09-09 15:08:12 +0000724
John McCall833ca992009-10-29 08:12:44 +0000725void StmtProfiler::VisitTemplateArgument(const TemplateArgument &Arg) {
726 // Mostly repetitive with TemplateArgument::Profile!
727 ID.AddInteger(Arg.getKind());
728 switch (Arg.getKind()) {
729 case TemplateArgument::Null:
730 break;
Mike Stump1eb44332009-09-09 15:08:12 +0000731
John McCall833ca992009-10-29 08:12:44 +0000732 case TemplateArgument::Type:
733 VisitType(Arg.getAsType());
734 break;
Mike Stump1eb44332009-09-09 15:08:12 +0000735
Douglas Gregor788cd062009-11-11 01:00:40 +0000736 case TemplateArgument::Template:
737 VisitTemplateName(Arg.getAsTemplate());
738 break;
739
John McCall833ca992009-10-29 08:12:44 +0000740 case TemplateArgument::Declaration:
741 VisitDecl(Arg.getAsDecl());
742 break;
Mike Stump1eb44332009-09-09 15:08:12 +0000743
John McCall833ca992009-10-29 08:12:44 +0000744 case TemplateArgument::Integral:
745 Arg.getAsIntegral()->Profile(ID);
746 VisitType(Arg.getIntegralType());
747 break;
Mike Stump1eb44332009-09-09 15:08:12 +0000748
John McCall833ca992009-10-29 08:12:44 +0000749 case TemplateArgument::Expression:
750 Visit(Arg.getAsExpr());
751 break;
Mike Stump1eb44332009-09-09 15:08:12 +0000752
John McCall833ca992009-10-29 08:12:44 +0000753 case TemplateArgument::Pack:
754 const TemplateArgument *Pack = Arg.pack_begin();
755 for (unsigned i = 0, e = Arg.pack_size(); i != e; ++i)
756 VisitTemplateArgument(Pack[i]);
757 break;
Douglas Gregor41ef0c32009-07-28 00:33:38 +0000758 }
759}
760
761void Stmt::Profile(llvm::FoldingSetNodeID &ID, ASTContext &Context,
762 bool Canonical) {
763 StmtProfiler Profiler(ID, Context, Canonical);
764 Profiler.Visit(this);
765}