blob: 15df865852941931f6fcaca3f9f2f0b168954e24 [file] [log] [blame]
Douglas Gregor639cccc2010-02-09 22:26:47 +00001//===--- ASTDiagnostic.cpp - Diagnostic Printing Hooks for AST Nodes ------===//
2//
Chandler Carruth2946cd72019-01-19 08:50:56 +00003// 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
Douglas Gregor639cccc2010-02-09 22:26:47 +00006//
7//===----------------------------------------------------------------------===//
8//
9// This file implements a diagnostic formatting hook for AST elements.
10//
11//===----------------------------------------------------------------------===//
Eugene Zelenko0a4f3f42016-02-10 19:11:58 +000012
Douglas Gregor639cccc2010-02-09 22:26:47 +000013#include "clang/AST/ASTDiagnostic.h"
Douglas Gregor639cccc2010-02-09 22:26:47 +000014#include "clang/AST/ASTContext.h"
Alp Tokerfb8d02b2014-06-05 22:10:59 +000015#include "clang/AST/ASTLambda.h"
Aaron Ballman3e424b52013-12-26 18:30:57 +000016#include "clang/AST/Attr.h"
Douglas Gregor639cccc2010-02-09 22:26:47 +000017#include "clang/AST/DeclObjC.h"
Richard Trieu91844232012-06-26 18:18:47 +000018#include "clang/AST/DeclTemplate.h"
Chandler Carruth3a022472012-12-04 09:13:33 +000019#include "clang/AST/ExprCXX.h"
20#include "clang/AST/TemplateBase.h"
Douglas Gregor639cccc2010-02-09 22:26:47 +000021#include "clang/AST/Type.h"
22#include "llvm/Support/raw_ostream.h"
23
24using namespace clang;
25
Chandler Carruthd102f2d2010-05-13 11:37:24 +000026// Returns a desugared version of the QualType, and marks ShouldAKA as true
27// whenever we remove significant sugar from the type.
28static QualType Desugar(ASTContext &Context, QualType QT, bool &ShouldAKA) {
29 QualifierCollector QC;
30
Douglas Gregor639cccc2010-02-09 22:26:47 +000031 while (true) {
Chandler Carruthd102f2d2010-05-13 11:37:24 +000032 const Type *Ty = QC.strip(QT);
33
Douglas Gregor639cccc2010-02-09 22:26:47 +000034 // Don't aka just because we saw an elaborated type...
Richard Smith30482bc2011-02-20 03:19:35 +000035 if (const ElaboratedType *ET = dyn_cast<ElaboratedType>(Ty)) {
36 QT = ET->desugar();
Douglas Gregor639cccc2010-02-09 22:26:47 +000037 continue;
38 }
Abramo Bagnara924a8f32010-12-10 16:29:40 +000039 // ... or a paren type ...
Richard Smith30482bc2011-02-20 03:19:35 +000040 if (const ParenType *PT = dyn_cast<ParenType>(Ty)) {
41 QT = PT->desugar();
Abramo Bagnara924a8f32010-12-10 16:29:40 +000042 continue;
43 }
Leonard Chanc72aaf62019-05-07 03:20:17 +000044 // ... or a macro defined type ...
45 if (const MacroQualifiedType *MDT = dyn_cast<MacroQualifiedType>(Ty)) {
46 QT = MDT->desugar();
47 continue;
48 }
Richard Smith30482bc2011-02-20 03:19:35 +000049 // ...or a substituted template type parameter ...
50 if (const SubstTemplateTypeParmType *ST =
51 dyn_cast<SubstTemplateTypeParmType>(Ty)) {
52 QT = ST->desugar();
53 continue;
54 }
John McCall4223a9e2011-03-04 04:00:19 +000055 // ...or an attributed type...
56 if (const AttributedType *AT = dyn_cast<AttributedType>(Ty)) {
57 QT = AT->desugar();
58 continue;
59 }
Reid Kleckner0503a872013-12-05 01:23:43 +000060 // ...or an adjusted type...
61 if (const AdjustedType *AT = dyn_cast<AdjustedType>(Ty)) {
62 QT = AT->desugar();
63 continue;
64 }
Richard Smith30482bc2011-02-20 03:19:35 +000065 // ... or an auto type.
66 if (const AutoType *AT = dyn_cast<AutoType>(Ty)) {
67 if (!AT->isSugared())
68 break;
69 QT = AT->desugar();
Douglas Gregor639cccc2010-02-09 22:26:47 +000070 continue;
71 }
Chandler Carruthd102f2d2010-05-13 11:37:24 +000072
Nikola Smiljanicfa007282015-07-16 01:06:17 +000073 // Desugar FunctionType if return type or any parameter type should be
74 // desugared. Preserve nullability attribute on desugared types.
75 if (const FunctionType *FT = dyn_cast<FunctionType>(Ty)) {
76 bool DesugarReturn = false;
77 QualType SugarRT = FT->getReturnType();
78 QualType RT = Desugar(Context, SugarRT, DesugarReturn);
79 if (auto nullability = AttributedType::stripOuterNullability(SugarRT)) {
80 RT = Context.getAttributedType(
81 AttributedType::getNullabilityAttrKind(*nullability), RT, RT);
82 }
83
84 bool DesugarArgument = false;
85 SmallVector<QualType, 4> Args;
86 const FunctionProtoType *FPT = dyn_cast<FunctionProtoType>(FT);
87 if (FPT) {
88 for (QualType SugarPT : FPT->param_types()) {
89 QualType PT = Desugar(Context, SugarPT, DesugarArgument);
90 if (auto nullability =
91 AttributedType::stripOuterNullability(SugarPT)) {
92 PT = Context.getAttributedType(
93 AttributedType::getNullabilityAttrKind(*nullability), PT, PT);
94 }
95 Args.push_back(PT);
96 }
97 }
98
99 if (DesugarReturn || DesugarArgument) {
100 ShouldAKA = true;
101 QT = FPT ? Context.getFunctionType(RT, Args, FPT->getExtProtoInfo())
102 : Context.getFunctionNoProtoType(RT, FT->getExtInfo());
Richard Smith3f1b5d02011-05-05 21:57:07 +0000103 break;
Nikola Smiljanicfa007282015-07-16 01:06:17 +0000104 }
105 }
106
107 // Desugar template specializations if any template argument should be
108 // desugared.
109 if (const TemplateSpecializationType *TST =
110 dyn_cast<TemplateSpecializationType>(Ty)) {
111 if (!TST->isTypeAlias()) {
112 bool DesugarArgument = false;
113 SmallVector<TemplateArgument, 4> Args;
114 for (unsigned I = 0, N = TST->getNumArgs(); I != N; ++I) {
115 const TemplateArgument &Arg = TST->getArg(I);
116 if (Arg.getKind() == TemplateArgument::Type)
117 Args.push_back(Desugar(Context, Arg.getAsType(), DesugarArgument));
118 else
119 Args.push_back(Arg);
120 }
121
122 if (DesugarArgument) {
123 ShouldAKA = true;
124 QT = Context.getTemplateSpecializationType(
David Majnemer6fbeee32016-07-07 04:43:07 +0000125 TST->getTemplateName(), Args, QT);
Nikola Smiljanicfa007282015-07-16 01:06:17 +0000126 }
127 break;
128 }
129 }
Chandler Carruthd102f2d2010-05-13 11:37:24 +0000130
Douglas Gregor639cccc2010-02-09 22:26:47 +0000131 // Don't desugar magic Objective-C types.
132 if (QualType(Ty,0) == Context.getObjCIdType() ||
133 QualType(Ty,0) == Context.getObjCClassType() ||
134 QualType(Ty,0) == Context.getObjCSelType() ||
135 QualType(Ty,0) == Context.getObjCProtoType())
136 break;
Chandler Carruthd102f2d2010-05-13 11:37:24 +0000137
Douglas Gregor639cccc2010-02-09 22:26:47 +0000138 // Don't desugar va_list.
Charles Davisc7d5c942015-09-17 20:55:33 +0000139 if (QualType(Ty, 0) == Context.getBuiltinVaListType() ||
140 QualType(Ty, 0) == Context.getBuiltinMSVaListType())
Douglas Gregor639cccc2010-02-09 22:26:47 +0000141 break;
Chandler Carruthd102f2d2010-05-13 11:37:24 +0000142
Douglas Gregor639cccc2010-02-09 22:26:47 +0000143 // Otherwise, do a single-step desugar.
144 QualType Underlying;
145 bool IsSugar = false;
146 switch (Ty->getTypeClass()) {
147#define ABSTRACT_TYPE(Class, Base)
148#define TYPE(Class, Base) \
149case Type::Class: { \
150const Class##Type *CTy = cast<Class##Type>(Ty); \
151if (CTy->isSugared()) { \
152IsSugar = true; \
153Underlying = CTy->desugar(); \
154} \
155break; \
156}
157#include "clang/AST/TypeNodes.def"
158 }
Chandler Carruthd102f2d2010-05-13 11:37:24 +0000159
Douglas Gregor639cccc2010-02-09 22:26:47 +0000160 // If it wasn't sugared, we're done.
161 if (!IsSugar)
162 break;
Chandler Carruthd102f2d2010-05-13 11:37:24 +0000163
Douglas Gregor639cccc2010-02-09 22:26:47 +0000164 // If the desugared type is a vector type, we don't want to expand
165 // it, it will turn into an attribute mess. People want their "vec4".
166 if (isa<VectorType>(Underlying))
167 break;
Chandler Carruthd102f2d2010-05-13 11:37:24 +0000168
Douglas Gregor639cccc2010-02-09 22:26:47 +0000169 // Don't desugar through the primary typedef of an anonymous type.
Chris Lattneredbdff62010-09-04 23:16:01 +0000170 if (const TagType *UTT = Underlying->getAs<TagType>())
171 if (const TypedefType *QTT = dyn_cast<TypedefType>(QT))
Richard Smithdda56e42011-04-15 14:24:37 +0000172 if (UTT->getDecl()->getTypedefNameForAnonDecl() == QTT->getDecl())
Chris Lattneredbdff62010-09-04 23:16:01 +0000173 break;
Chandler Carruthd102f2d2010-05-13 11:37:24 +0000174
175 // Record that we actually looked through an opaque type here.
176 ShouldAKA = true;
Douglas Gregor639cccc2010-02-09 22:26:47 +0000177 QT = Underlying;
Douglas Gregor639cccc2010-02-09 22:26:47 +0000178 }
Chandler Carruthd102f2d2010-05-13 11:37:24 +0000179
180 // If we have a pointer-like type, desugar the pointee as well.
181 // FIXME: Handle other pointer-like types.
182 if (const PointerType *Ty = QT->getAs<PointerType>()) {
Chris Lattneredbdff62010-09-04 23:16:01 +0000183 QT = Context.getPointerType(Desugar(Context, Ty->getPointeeType(),
184 ShouldAKA));
Douglas Gregore9d95f12015-07-07 03:57:35 +0000185 } else if (const auto *Ty = QT->getAs<ObjCObjectPointerType>()) {
186 QT = Context.getObjCObjectPointerType(Desugar(Context, Ty->getPointeeType(),
187 ShouldAKA));
Chandler Carruthd102f2d2010-05-13 11:37:24 +0000188 } else if (const LValueReferenceType *Ty = QT->getAs<LValueReferenceType>()) {
Chris Lattneredbdff62010-09-04 23:16:01 +0000189 QT = Context.getLValueReferenceType(Desugar(Context, Ty->getPointeeType(),
190 ShouldAKA));
Douglas Gregor7a2a1162011-01-20 16:08:06 +0000191 } else if (const RValueReferenceType *Ty = QT->getAs<RValueReferenceType>()) {
192 QT = Context.getRValueReferenceType(Desugar(Context, Ty->getPointeeType(),
193 ShouldAKA));
Douglas Gregore9d95f12015-07-07 03:57:35 +0000194 } else if (const auto *Ty = QT->getAs<ObjCObjectType>()) {
195 if (Ty->getBaseType().getTypePtr() != Ty && !ShouldAKA) {
196 QualType BaseType = Desugar(Context, Ty->getBaseType(), ShouldAKA);
197 QT = Context.getObjCObjectType(BaseType, Ty->getTypeArgsAsWritten(),
198 llvm::makeArrayRef(Ty->qual_begin(),
Douglas Gregorab209d82015-07-07 03:58:42 +0000199 Ty->getNumProtocols()),
200 Ty->isKindOfTypeAsWritten());
Douglas Gregore9d95f12015-07-07 03:57:35 +0000201 }
Douglas Gregor639cccc2010-02-09 22:26:47 +0000202 }
Chandler Carruthd102f2d2010-05-13 11:37:24 +0000203
John McCall717d9b02010-12-10 11:01:00 +0000204 return QC.apply(Context, QT);
Douglas Gregor639cccc2010-02-09 22:26:47 +0000205}
206
Fangrui Song6907ce22018-07-30 19:24:48 +0000207/// Convert the given type to a string suitable for printing as part of
Chandler Carruthd102f2d2010-05-13 11:37:24 +0000208/// a diagnostic.
209///
Chandler Carruthd5173952011-07-11 17:49:21 +0000210/// There are four main criteria when determining whether we should have an
Chandler Carruthd102f2d2010-05-13 11:37:24 +0000211/// a.k.a. clause when pretty-printing a type:
212///
213/// 1) Some types provide very minimal sugar that doesn't impede the
214/// user's understanding --- for example, elaborated type
215/// specifiers. If this is all the sugar we see, we don't want an
216/// a.k.a. clause.
217/// 2) Some types are technically sugared but are much more familiar
218/// when seen in their sugared form --- for example, va_list,
219/// vector types, and the magic Objective C types. We don't
220/// want to desugar these, even if we do produce an a.k.a. clause.
221/// 3) Some types may have already been desugared previously in this diagnostic.
222/// if this is the case, doing another "aka" would just be clutter.
Chandler Carruthd5173952011-07-11 17:49:21 +0000223/// 4) Two different types within the same diagnostic have the same output
224/// string. In this case, force an a.k.a with the desugared type when
225/// doing so will provide additional information.
Douglas Gregor639cccc2010-02-09 22:26:47 +0000226///
227/// \param Context the context in which the type was allocated
228/// \param Ty the type to print
Chandler Carruthd5173952011-07-11 17:49:21 +0000229/// \param QualTypeVals pointer values to QualTypes which are used in the
230/// diagnostic message
Douglas Gregor639cccc2010-02-09 22:26:47 +0000231static std::string
232ConvertTypeToDiagnosticString(ASTContext &Context, QualType Ty,
Craig Toppere4753502014-06-12 05:32:27 +0000233 ArrayRef<DiagnosticsEngine::ArgumentValue> PrevArgs,
234 ArrayRef<intptr_t> QualTypeVals) {
Douglas Gregor639cccc2010-02-09 22:26:47 +0000235 // FIXME: Playing with std::string is really slow.
Chandler Carruthd5173952011-07-11 17:49:21 +0000236 bool ForceAKA = false;
237 QualType CanTy = Ty.getCanonicalType();
Douglas Gregorc0b07282011-09-27 22:38:19 +0000238 std::string S = Ty.getAsString(Context.getPrintingPolicy());
239 std::string CanS = CanTy.getAsString(Context.getPrintingPolicy());
Chandler Carruthd5173952011-07-11 17:49:21 +0000240
Bill Wendling8eb771d2012-02-22 09:51:33 +0000241 for (unsigned I = 0, E = QualTypeVals.size(); I != E; ++I) {
Chandler Carruthd5173952011-07-11 17:49:21 +0000242 QualType CompareTy =
Bill Wendling8eb771d2012-02-22 09:51:33 +0000243 QualType::getFromOpaquePtr(reinterpret_cast<void*>(QualTypeVals[I]));
Richard Smithbcc22fc2012-03-09 08:00:36 +0000244 if (CompareTy.isNull())
245 continue;
Chandler Carruthd5173952011-07-11 17:49:21 +0000246 if (CompareTy == Ty)
247 continue; // Same types
248 QualType CompareCanTy = CompareTy.getCanonicalType();
249 if (CompareCanTy == CanTy)
250 continue; // Same canonical types
Douglas Gregorc0b07282011-09-27 22:38:19 +0000251 std::string CompareS = CompareTy.getAsString(Context.getPrintingPolicy());
Justin Bogner25bf8cb2015-07-08 18:32:26 +0000252 bool ShouldAKA = false;
253 QualType CompareDesugar = Desugar(Context, CompareTy, ShouldAKA);
Richard Trieu5d1aff02011-11-14 19:39:25 +0000254 std::string CompareDesugarStr =
255 CompareDesugar.getAsString(Context.getPrintingPolicy());
256 if (CompareS != S && CompareDesugarStr != S)
257 continue; // The type string is different than the comparison string
258 // and the desugared comparison string.
259 std::string CompareCanS =
260 CompareCanTy.getAsString(Context.getPrintingPolicy());
Fangrui Song6907ce22018-07-30 19:24:48 +0000261
Chandler Carruthd5173952011-07-11 17:49:21 +0000262 if (CompareCanS == CanS)
263 continue; // No new info from canonical type
264
265 ForceAKA = true;
266 break;
267 }
Chandler Carruthd102f2d2010-05-13 11:37:24 +0000268
269 // Check to see if we already desugared this type in this
270 // diagnostic. If so, don't do it again.
271 bool Repeated = false;
Craig Toppere4753502014-06-12 05:32:27 +0000272 for (unsigned i = 0, e = PrevArgs.size(); i != e; ++i) {
Chandler Carruthd102f2d2010-05-13 11:37:24 +0000273 // TODO: Handle ak_declcontext case.
David Blaikie9c902b52011-09-25 23:23:43 +0000274 if (PrevArgs[i].first == DiagnosticsEngine::ak_qualtype) {
Chandler Carruthd102f2d2010-05-13 11:37:24 +0000275 void *Ptr = (void*)PrevArgs[i].second;
276 QualType PrevTy(QualType::getFromOpaquePtr(Ptr));
277 if (PrevTy == Ty) {
278 Repeated = true;
279 break;
280 }
281 }
282 }
283
Douglas Gregor639cccc2010-02-09 22:26:47 +0000284 // Consider producing an a.k.a. clause if removing all the direct
285 // sugar gives us something "significantly different".
Chandler Carruthd102f2d2010-05-13 11:37:24 +0000286 if (!Repeated) {
287 bool ShouldAKA = false;
288 QualType DesugaredTy = Desugar(Context, Ty, ShouldAKA);
Chandler Carruthd5173952011-07-11 17:49:21 +0000289 if (ShouldAKA || ForceAKA) {
290 if (DesugaredTy == Ty) {
291 DesugaredTy = Ty.getCanonicalType();
292 }
Douglas Gregorc0b07282011-09-27 22:38:19 +0000293 std::string akaStr = DesugaredTy.getAsString(Context.getPrintingPolicy());
Chandler Carruthd5173952011-07-11 17:49:21 +0000294 if (akaStr != S) {
295 S = "'" + S + "' (aka '" + akaStr + "')";
296 return S;
297 }
Chandler Carruthd102f2d2010-05-13 11:37:24 +0000298 }
Benjamin Kramer1adc8c32014-04-25 20:41:38 +0000299
300 // Give some additional info on vector types. These are either not desugared
301 // or displaying complex __attribute__ expressions so add details of the
302 // type and element count.
303 if (Ty->isVectorType()) {
304 const VectorType *VTy = Ty->getAs<VectorType>();
305 std::string DecoratedString;
306 llvm::raw_string_ostream OS(DecoratedString);
307 const char *Values = VTy->getNumElements() > 1 ? "values" : "value";
308 OS << "'" << S << "' (vector of " << VTy->getNumElements() << " '"
309 << VTy->getElementType().getAsString(Context.getPrintingPolicy())
310 << "' " << Values << ")";
311 return OS.str();
312 }
Douglas Gregor639cccc2010-02-09 22:26:47 +0000313 }
Chandler Carruthd102f2d2010-05-13 11:37:24 +0000314
Douglas Gregor639cccc2010-02-09 22:26:47 +0000315 S = "'" + S + "'";
316 return S;
317}
318
Richard Trieu91844232012-06-26 18:18:47 +0000319static bool FormatTemplateTypeDiff(ASTContext &Context, QualType FromType,
320 QualType ToType, bool PrintTree,
321 bool PrintFromType, bool ElideType,
Benjamin Kramer8de90462013-02-22 16:08:12 +0000322 bool ShowColors, raw_ostream &OS);
Richard Trieu91844232012-06-26 18:18:47 +0000323
Chandler Carruthd5173952011-07-11 17:49:21 +0000324void clang::FormatASTNodeDiagnosticArgument(
David Blaikie9c902b52011-09-25 23:23:43 +0000325 DiagnosticsEngine::ArgumentKind Kind,
Chandler Carruthd5173952011-07-11 17:49:21 +0000326 intptr_t Val,
Craig Topper3aa4fb32014-06-12 05:32:35 +0000327 StringRef Modifier,
328 StringRef Argument,
Craig Toppere4753502014-06-12 05:32:27 +0000329 ArrayRef<DiagnosticsEngine::ArgumentValue> PrevArgs,
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000330 SmallVectorImpl<char> &Output,
Chandler Carruthd5173952011-07-11 17:49:21 +0000331 void *Cookie,
Bill Wendling8eb771d2012-02-22 09:51:33 +0000332 ArrayRef<intptr_t> QualTypeVals) {
Douglas Gregor639cccc2010-02-09 22:26:47 +0000333 ASTContext &Context = *static_cast<ASTContext*>(Cookie);
Fangrui Song6907ce22018-07-30 19:24:48 +0000334
Benjamin Kramer7192c9e2013-02-22 15:46:08 +0000335 size_t OldEnd = Output.size();
336 llvm::raw_svector_ostream OS(Output);
Douglas Gregor639cccc2010-02-09 22:26:47 +0000337 bool NeedQuotes = true;
Fangrui Song6907ce22018-07-30 19:24:48 +0000338
Douglas Gregor639cccc2010-02-09 22:26:47 +0000339 switch (Kind) {
David Blaikie83d382b2011-09-23 05:06:16 +0000340 default: llvm_unreachable("unknown ArgumentKind");
Anastasia Stulova4cebc9d2019-01-04 11:50:36 +0000341 case DiagnosticsEngine::ak_qual: {
342 assert(Modifier.empty() && Argument.empty() &&
343 "Invalid modifier for Qualfiers argument");
344
345 Qualifiers Q(Qualifiers::fromOpaqueValue(Val));
346 auto S = Q.getAsString();
347 if (S.empty()) {
348 OS << "unqualified";
349 NeedQuotes = false;
350 } else {
351 OS << Q.getAsString();
352 }
353 break;
354 }
Richard Trieu91844232012-06-26 18:18:47 +0000355 case DiagnosticsEngine::ak_qualtype_pair: {
Richard Trieu50f5f462012-07-10 01:46:04 +0000356 TemplateDiffTypes &TDT = *reinterpret_cast<TemplateDiffTypes*>(Val);
Richard Trieu91844232012-06-26 18:18:47 +0000357 QualType FromType =
358 QualType::getFromOpaquePtr(reinterpret_cast<void*>(TDT.FromType));
359 QualType ToType =
360 QualType::getFromOpaquePtr(reinterpret_cast<void*>(TDT.ToType));
361
362 if (FormatTemplateTypeDiff(Context, FromType, ToType, TDT.PrintTree,
363 TDT.PrintFromType, TDT.ElideType,
Benjamin Kramer8de90462013-02-22 16:08:12 +0000364 TDT.ShowColors, OS)) {
Richard Trieu91844232012-06-26 18:18:47 +0000365 NeedQuotes = !TDT.PrintTree;
Richard Trieu50f5f462012-07-10 01:46:04 +0000366 TDT.TemplateDiffUsed = true;
Richard Trieu91844232012-06-26 18:18:47 +0000367 break;
368 }
369
370 // Don't fall-back during tree printing. The caller will handle
371 // this case.
372 if (TDT.PrintTree)
373 return;
374
Benjamin Kramer7192c9e2013-02-22 15:46:08 +0000375 // Attempting to do a template diff on non-templates. Set the variables
Richard Trieu91844232012-06-26 18:18:47 +0000376 // and continue with regular type printing of the appropriate type.
377 Val = TDT.PrintFromType ? TDT.FromType : TDT.ToType;
Craig Topper3aa4fb32014-06-12 05:32:35 +0000378 Modifier = StringRef();
379 Argument = StringRef();
Richard Trieu91844232012-06-26 18:18:47 +0000380 // Fall through
Galina Kistanovaf87496d2017-06-03 06:31:42 +0000381 LLVM_FALLTHROUGH;
Richard Trieu91844232012-06-26 18:18:47 +0000382 }
David Blaikie9c902b52011-09-25 23:23:43 +0000383 case DiagnosticsEngine::ak_qualtype: {
Craig Topper3aa4fb32014-06-12 05:32:35 +0000384 assert(Modifier.empty() && Argument.empty() &&
Douglas Gregor639cccc2010-02-09 22:26:47 +0000385 "Invalid modifier for QualType argument");
Fangrui Song6907ce22018-07-30 19:24:48 +0000386
Douglas Gregor639cccc2010-02-09 22:26:47 +0000387 QualType Ty(QualType::getFromOpaquePtr(reinterpret_cast<void*>(Val)));
Craig Toppere4753502014-06-12 05:32:27 +0000388 OS << ConvertTypeToDiagnosticString(Context, Ty, PrevArgs, QualTypeVals);
Douglas Gregor639cccc2010-02-09 22:26:47 +0000389 NeedQuotes = false;
390 break;
391 }
David Blaikie9c902b52011-09-25 23:23:43 +0000392 case DiagnosticsEngine::ak_declarationname: {
Craig Topper3aa4fb32014-06-12 05:32:35 +0000393 if (Modifier == "objcclass" && Argument.empty())
Benjamin Kramer7192c9e2013-02-22 15:46:08 +0000394 OS << '+';
Craig Topper3aa4fb32014-06-12 05:32:35 +0000395 else if (Modifier == "objcinstance" && Argument.empty())
Benjamin Kramer7192c9e2013-02-22 15:46:08 +0000396 OS << '-';
Douglas Gregor639cccc2010-02-09 22:26:47 +0000397 else
Craig Topper3aa4fb32014-06-12 05:32:35 +0000398 assert(Modifier.empty() && Argument.empty() &&
Douglas Gregor639cccc2010-02-09 22:26:47 +0000399 "Invalid modifier for DeclarationName argument");
Benjamin Kramer7192c9e2013-02-22 15:46:08 +0000400
David Blaikied4da8722013-05-14 21:04:00 +0000401 OS << DeclarationName::getFromOpaqueInteger(Val);
Douglas Gregor639cccc2010-02-09 22:26:47 +0000402 break;
403 }
David Blaikie9c902b52011-09-25 23:23:43 +0000404 case DiagnosticsEngine::ak_nameddecl: {
Douglas Gregor639cccc2010-02-09 22:26:47 +0000405 bool Qualified;
Craig Topper3aa4fb32014-06-12 05:32:35 +0000406 if (Modifier == "q" && Argument.empty())
Douglas Gregor639cccc2010-02-09 22:26:47 +0000407 Qualified = true;
408 else {
Craig Topper3aa4fb32014-06-12 05:32:35 +0000409 assert(Modifier.empty() && Argument.empty() &&
Douglas Gregor639cccc2010-02-09 22:26:47 +0000410 "Invalid modifier for NamedDecl* argument");
411 Qualified = false;
412 }
Chandler Carruthc841b6e2011-08-31 09:01:53 +0000413 const NamedDecl *ND = reinterpret_cast<const NamedDecl*>(Val);
Benjamin Kramer9170e912013-02-22 15:46:01 +0000414 ND->getNameForDiagnostic(OS, Context.getPrintingPolicy(), Qualified);
Douglas Gregor639cccc2010-02-09 22:26:47 +0000415 break;
416 }
David Blaikie9c902b52011-09-25 23:23:43 +0000417 case DiagnosticsEngine::ak_nestednamespec: {
Benjamin Kramer7192c9e2013-02-22 15:46:08 +0000418 NestedNameSpecifier *NNS = reinterpret_cast<NestedNameSpecifier*>(Val);
419 NNS->print(OS, Context.getPrintingPolicy());
Douglas Gregor639cccc2010-02-09 22:26:47 +0000420 NeedQuotes = false;
421 break;
422 }
David Blaikie9c902b52011-09-25 23:23:43 +0000423 case DiagnosticsEngine::ak_declcontext: {
Douglas Gregor639cccc2010-02-09 22:26:47 +0000424 DeclContext *DC = reinterpret_cast<DeclContext *> (Val);
425 assert(DC && "Should never have a null declaration context");
Alp Tokerfb8d02b2014-06-05 22:10:59 +0000426 NeedQuotes = false;
427
Richard Trieu3af6c102014-08-27 03:05:19 +0000428 // FIXME: Get the strings for DeclContext from some localized place
Douglas Gregor639cccc2010-02-09 22:26:47 +0000429 if (DC->isTranslationUnit()) {
David Blaikiebbafb8a2012-03-11 07:00:24 +0000430 if (Context.getLangOpts().CPlusPlus)
Benjamin Kramer7192c9e2013-02-22 15:46:08 +0000431 OS << "the global namespace";
Douglas Gregor639cccc2010-02-09 22:26:47 +0000432 else
Benjamin Kramer7192c9e2013-02-22 15:46:08 +0000433 OS << "the global scope";
Richard Trieu3af6c102014-08-27 03:05:19 +0000434 } else if (DC->isClosure()) {
435 OS << "block literal";
436 } else if (isLambdaCallOperator(DC)) {
437 OS << "lambda expression";
Douglas Gregor639cccc2010-02-09 22:26:47 +0000438 } else if (TypeDecl *Type = dyn_cast<TypeDecl>(DC)) {
Benjamin Kramer7192c9e2013-02-22 15:46:08 +0000439 OS << ConvertTypeToDiagnosticString(Context,
440 Context.getTypeDeclType(Type),
Craig Toppere4753502014-06-12 05:32:27 +0000441 PrevArgs, QualTypeVals);
Douglas Gregor639cccc2010-02-09 22:26:47 +0000442 } else {
Richard Trieu3af6c102014-08-27 03:05:19 +0000443 assert(isa<NamedDecl>(DC) && "Expected a NamedDecl");
Douglas Gregor639cccc2010-02-09 22:26:47 +0000444 NamedDecl *ND = cast<NamedDecl>(DC);
445 if (isa<NamespaceDecl>(ND))
Benjamin Kramer7192c9e2013-02-22 15:46:08 +0000446 OS << "namespace ";
Douglas Gregor639cccc2010-02-09 22:26:47 +0000447 else if (isa<ObjCMethodDecl>(ND))
Benjamin Kramer7192c9e2013-02-22 15:46:08 +0000448 OS << "method ";
Douglas Gregor639cccc2010-02-09 22:26:47 +0000449 else if (isa<FunctionDecl>(ND))
Benjamin Kramer7192c9e2013-02-22 15:46:08 +0000450 OS << "function ";
451
452 OS << '\'';
453 ND->getNameForDiagnostic(OS, Context.getPrintingPolicy(), true);
454 OS << '\'';
Douglas Gregor639cccc2010-02-09 22:26:47 +0000455 }
Douglas Gregor639cccc2010-02-09 22:26:47 +0000456 break;
457 }
David Majnemerb1004102014-03-02 18:46:05 +0000458 case DiagnosticsEngine::ak_attr: {
459 const Attr *At = reinterpret_cast<Attr *>(Val);
460 assert(At && "Received null Attr object!");
461 OS << '\'' << At->getSpelling() << '\'';
462 NeedQuotes = false;
463 break;
464 }
Douglas Gregor639cccc2010-02-09 22:26:47 +0000465 }
Benjamin Kramer7192c9e2013-02-22 15:46:08 +0000466
Benjamin Kramer7192c9e2013-02-22 15:46:08 +0000467 if (NeedQuotes) {
468 Output.insert(Output.begin()+OldEnd, '\'');
Douglas Gregor639cccc2010-02-09 22:26:47 +0000469 Output.push_back('\'');
Benjamin Kramer7192c9e2013-02-22 15:46:08 +0000470 }
Douglas Gregor639cccc2010-02-09 22:26:47 +0000471}
Richard Trieu91844232012-06-26 18:18:47 +0000472
473/// TemplateDiff - A class that constructs a pretty string for a pair of
474/// QualTypes. For the pair of types, a diff tree will be created containing
475/// all the information about the templates and template arguments. Afterwards,
476/// the tree is transformed to a string according to the options passed in.
477namespace {
478class TemplateDiff {
479 /// Context - The ASTContext which is used for comparing template arguments.
480 ASTContext &Context;
481
482 /// Policy - Used during expression printing.
483 PrintingPolicy Policy;
484
485 /// ElideType - Option to elide identical types.
486 bool ElideType;
487
488 /// PrintTree - Format output string as a tree.
489 bool PrintTree;
490
491 /// ShowColor - Diagnostics support color, so bolding will be used.
492 bool ShowColor;
493
Richard Trieu2331c8b2016-01-15 05:48:38 +0000494 /// FromTemplateType - When single type printing is selected, this is the
495 /// type to be be printed. When tree printing is selected, this type will
496 /// show up first in the tree.
497 QualType FromTemplateType;
Richard Trieu91844232012-06-26 18:18:47 +0000498
Richard Trieu2331c8b2016-01-15 05:48:38 +0000499 /// ToTemplateType - The type that FromType is compared to. Only in tree
500 /// printing will this type be outputed.
501 QualType ToTemplateType;
Richard Trieu91844232012-06-26 18:18:47 +0000502
Richard Trieu91844232012-06-26 18:18:47 +0000503 /// OS - The stream used to construct the output strings.
Benjamin Kramer8de90462013-02-22 16:08:12 +0000504 raw_ostream &OS;
Richard Trieu91844232012-06-26 18:18:47 +0000505
506 /// IsBold - Keeps track of the bold formatting for the output string.
507 bool IsBold;
508
509 /// DiffTree - A tree representation the differences between two types.
510 class DiffTree {
Richard Trieub4cff112013-03-15 20:35:18 +0000511 public:
Richard Trieu14714c42016-01-14 22:56:39 +0000512 /// DiffKind - The difference in a DiffNode. Fields of
513 /// TemplateArgumentInfo needed by each difference can be found in the
514 /// Set* and Get* functions.
Richard Trieub4cff112013-03-15 20:35:18 +0000515 enum DiffKind {
516 /// Incomplete or invalid node.
517 Invalid,
Richard Trieu12074502016-02-02 00:36:59 +0000518 /// Another level of templates
Richard Trieub4cff112013-03-15 20:35:18 +0000519 Template,
Richard Trieu14714c42016-01-14 22:56:39 +0000520 /// Type difference, all type differences except those falling under
521 /// the Template difference.
Richard Trieub4cff112013-03-15 20:35:18 +0000522 Type,
Richard Trieu14714c42016-01-14 22:56:39 +0000523 /// Expression difference, this is only when both arguments are
524 /// expressions. If one argument is an expression and the other is
525 /// Integer or Declaration, then use that diff type instead.
Richard Trieub4cff112013-03-15 20:35:18 +0000526 Expression,
Richard Trieu14714c42016-01-14 22:56:39 +0000527 /// Template argument difference
Richard Trieub4cff112013-03-15 20:35:18 +0000528 TemplateTemplate,
Richard Trieu14714c42016-01-14 22:56:39 +0000529 /// Integer difference
Richard Trieub4cff112013-03-15 20:35:18 +0000530 Integer,
Richard Trieu14714c42016-01-14 22:56:39 +0000531 /// Declaration difference, nullptr arguments are included here
Richard Trieu9213ce52016-01-15 05:01:53 +0000532 Declaration,
533 /// One argument being integer and the other being declaration
534 FromIntegerAndToDeclaration,
535 FromDeclarationAndToInteger
Richard Trieub4cff112013-03-15 20:35:18 +0000536 };
Richard Trieu14714c42016-01-14 22:56:39 +0000537
Richard Trieub4cff112013-03-15 20:35:18 +0000538 private:
Richard Trieu14714c42016-01-14 22:56:39 +0000539 /// TemplateArgumentInfo - All the information needed to pretty print
540 /// a template argument. See the Set* and Get* functions to see which
541 /// fields are used for each DiffKind.
542 struct TemplateArgumentInfo {
543 QualType ArgType;
544 Qualifiers Qual;
545 llvm::APSInt Val;
546 bool IsValidInt = false;
547 Expr *ArgExpr = nullptr;
548 TemplateDecl *TD = nullptr;
549 ValueDecl *VD = nullptr;
550 bool NeedAddressOf = false;
551 bool IsNullPtr = false;
552 bool IsDefault = false;
553 };
554
Richard Trieu91844232012-06-26 18:18:47 +0000555 /// DiffNode - The root node stores the original type. Each child node
556 /// stores template arguments of their parents. For templated types, the
557 /// template decl is also stored.
558 struct DiffNode {
Richard Trieu14714c42016-01-14 22:56:39 +0000559 DiffKind Kind = Invalid;
Richard Trieub4cff112013-03-15 20:35:18 +0000560
Richard Trieu91844232012-06-26 18:18:47 +0000561 /// NextNode - The index of the next sibling node or 0.
Richard Trieu14714c42016-01-14 22:56:39 +0000562 unsigned NextNode = 0;
Richard Trieu91844232012-06-26 18:18:47 +0000563
564 /// ChildNode - The index of the first child node or 0.
Richard Trieu14714c42016-01-14 22:56:39 +0000565 unsigned ChildNode = 0;
Richard Trieu91844232012-06-26 18:18:47 +0000566
567 /// ParentNode - The index of the parent node.
Richard Trieu14714c42016-01-14 22:56:39 +0000568 unsigned ParentNode = 0;
Richard Trieu91844232012-06-26 18:18:47 +0000569
Richard Trieu14714c42016-01-14 22:56:39 +0000570 TemplateArgumentInfo FromArgInfo, ToArgInfo;
Richard Trieu91844232012-06-26 18:18:47 +0000571
572 /// Same - Whether the two arguments evaluate to the same value.
Richard Trieu14714c42016-01-14 22:56:39 +0000573 bool Same = false;
Richard Trieu91844232012-06-26 18:18:47 +0000574
Richard Trieu14714c42016-01-14 22:56:39 +0000575 DiffNode(unsigned ParentNode = 0) : ParentNode(ParentNode) {}
Richard Trieu91844232012-06-26 18:18:47 +0000576 };
577
578 /// FlatTree - A flattened tree used to store the DiffNodes.
Dmitri Gribenkof8579502013-01-12 19:30:44 +0000579 SmallVector<DiffNode, 16> FlatTree;
Richard Trieu91844232012-06-26 18:18:47 +0000580
581 /// CurrentNode - The index of the current node being used.
582 unsigned CurrentNode;
583
584 /// NextFreeNode - The index of the next unused node. Used when creating
585 /// child nodes.
586 unsigned NextFreeNode;
587
588 /// ReadNode - The index of the current node being read.
589 unsigned ReadNode;
Richard Trieu14714c42016-01-14 22:56:39 +0000590
Richard Trieu91844232012-06-26 18:18:47 +0000591 public:
592 DiffTree() :
593 CurrentNode(0), NextFreeNode(1) {
594 FlatTree.push_back(DiffNode());
595 }
596
Richard Trieu14714c42016-01-14 22:56:39 +0000597 // Node writing functions, one for each valid DiffKind element.
598 void SetTemplateDiff(TemplateDecl *FromTD, TemplateDecl *ToTD,
599 Qualifiers FromQual, Qualifiers ToQual,
600 bool FromDefault, bool ToDefault) {
601 assert(FlatTree[CurrentNode].Kind == Invalid && "Node is not empty.");
602 FlatTree[CurrentNode].Kind = Template;
603 FlatTree[CurrentNode].FromArgInfo.TD = FromTD;
604 FlatTree[CurrentNode].ToArgInfo.TD = ToTD;
605 FlatTree[CurrentNode].FromArgInfo.Qual = FromQual;
606 FlatTree[CurrentNode].ToArgInfo.Qual = ToQual;
607 SetDefault(FromDefault, ToDefault);
Richard Trieu91844232012-06-26 18:18:47 +0000608 }
609
Richard Trieu14714c42016-01-14 22:56:39 +0000610 void SetTypeDiff(QualType FromType, QualType ToType, bool FromDefault,
611 bool ToDefault) {
612 assert(FlatTree[CurrentNode].Kind == Invalid && "Node is not empty.");
613 FlatTree[CurrentNode].Kind = Type;
614 FlatTree[CurrentNode].FromArgInfo.ArgType = FromType;
615 FlatTree[CurrentNode].ToArgInfo.ArgType = ToType;
616 SetDefault(FromDefault, ToDefault);
Richard Trieu91844232012-06-26 18:18:47 +0000617 }
618
Richard Trieu2c22a862016-01-15 01:08:56 +0000619 void SetExpressionDiff(Expr *FromExpr, Expr *ToExpr, bool FromDefault,
620 bool ToDefault) {
Richard Trieu14714c42016-01-14 22:56:39 +0000621 assert(FlatTree[CurrentNode].Kind == Invalid && "Node is not empty.");
622 FlatTree[CurrentNode].Kind = Expression;
623 FlatTree[CurrentNode].FromArgInfo.ArgExpr = FromExpr;
624 FlatTree[CurrentNode].ToArgInfo.ArgExpr = ToExpr;
Richard Trieu14714c42016-01-14 22:56:39 +0000625 SetDefault(FromDefault, ToDefault);
Richard Trieu91844232012-06-26 18:18:47 +0000626 }
627
Richard Trieu14714c42016-01-14 22:56:39 +0000628 void SetTemplateTemplateDiff(TemplateDecl *FromTD, TemplateDecl *ToTD,
629 bool FromDefault, bool ToDefault) {
630 assert(FlatTree[CurrentNode].Kind == Invalid && "Node is not empty.");
631 FlatTree[CurrentNode].Kind = TemplateTemplate;
632 FlatTree[CurrentNode].FromArgInfo.TD = FromTD;
633 FlatTree[CurrentNode].ToArgInfo.TD = ToTD;
634 SetDefault(FromDefault, ToDefault);
Richard Trieu6df89452012-11-01 21:29:28 +0000635 }
636
Benjamin Kramer7320b992016-06-15 14:20:56 +0000637 void SetIntegerDiff(const llvm::APSInt &FromInt, const llvm::APSInt &ToInt,
Richard Trieu14714c42016-01-14 22:56:39 +0000638 bool IsValidFromInt, bool IsValidToInt,
Richard Trieud5c73782016-01-15 02:55:17 +0000639 QualType FromIntType, QualType ToIntType,
Richard Trieu14714c42016-01-14 22:56:39 +0000640 Expr *FromExpr, Expr *ToExpr, bool FromDefault,
641 bool ToDefault) {
642 assert(FlatTree[CurrentNode].Kind == Invalid && "Node is not empty.");
643 FlatTree[CurrentNode].Kind = Integer;
644 FlatTree[CurrentNode].FromArgInfo.Val = FromInt;
645 FlatTree[CurrentNode].ToArgInfo.Val = ToInt;
646 FlatTree[CurrentNode].FromArgInfo.IsValidInt = IsValidFromInt;
647 FlatTree[CurrentNode].ToArgInfo.IsValidInt = IsValidToInt;
Richard Trieud5c73782016-01-15 02:55:17 +0000648 FlatTree[CurrentNode].FromArgInfo.ArgType = FromIntType;
649 FlatTree[CurrentNode].ToArgInfo.ArgType = ToIntType;
Richard Trieu14714c42016-01-14 22:56:39 +0000650 FlatTree[CurrentNode].FromArgInfo.ArgExpr = FromExpr;
651 FlatTree[CurrentNode].ToArgInfo.ArgExpr = ToExpr;
652 SetDefault(FromDefault, ToDefault);
Richard Trieub7243852012-09-28 20:32:51 +0000653 }
654
Richard Trieu14714c42016-01-14 22:56:39 +0000655 void SetDeclarationDiff(ValueDecl *FromValueDecl, ValueDecl *ToValueDecl,
656 bool FromAddressOf, bool ToAddressOf,
Richard Trieu2c22a862016-01-15 01:08:56 +0000657 bool FromNullPtr, bool ToNullPtr, Expr *FromExpr,
658 Expr *ToExpr, bool FromDefault, bool ToDefault) {
Richard Trieu14714c42016-01-14 22:56:39 +0000659 assert(FlatTree[CurrentNode].Kind == Invalid && "Node is not empty.");
660 FlatTree[CurrentNode].Kind = Declaration;
661 FlatTree[CurrentNode].FromArgInfo.VD = FromValueDecl;
662 FlatTree[CurrentNode].ToArgInfo.VD = ToValueDecl;
663 FlatTree[CurrentNode].FromArgInfo.NeedAddressOf = FromAddressOf;
664 FlatTree[CurrentNode].ToArgInfo.NeedAddressOf = ToAddressOf;
665 FlatTree[CurrentNode].FromArgInfo.IsNullPtr = FromNullPtr;
666 FlatTree[CurrentNode].ToArgInfo.IsNullPtr = ToNullPtr;
Richard Trieu2c22a862016-01-15 01:08:56 +0000667 FlatTree[CurrentNode].FromArgInfo.ArgExpr = FromExpr;
668 FlatTree[CurrentNode].ToArgInfo.ArgExpr = ToExpr;
Richard Trieu14714c42016-01-14 22:56:39 +0000669 SetDefault(FromDefault, ToDefault);
670 }
671
Richard Trieu9213ce52016-01-15 05:01:53 +0000672 void SetFromDeclarationAndToIntegerDiff(
673 ValueDecl *FromValueDecl, bool FromAddressOf, bool FromNullPtr,
Benjamin Kramer7320b992016-06-15 14:20:56 +0000674 Expr *FromExpr, const llvm::APSInt &ToInt, bool IsValidToInt,
Richard Trieu9213ce52016-01-15 05:01:53 +0000675 QualType ToIntType, Expr *ToExpr, bool FromDefault, bool ToDefault) {
676 assert(FlatTree[CurrentNode].Kind == Invalid && "Node is not empty.");
677 FlatTree[CurrentNode].Kind = FromDeclarationAndToInteger;
678 FlatTree[CurrentNode].FromArgInfo.VD = FromValueDecl;
679 FlatTree[CurrentNode].FromArgInfo.NeedAddressOf = FromAddressOf;
680 FlatTree[CurrentNode].FromArgInfo.IsNullPtr = FromNullPtr;
681 FlatTree[CurrentNode].FromArgInfo.ArgExpr = FromExpr;
682 FlatTree[CurrentNode].ToArgInfo.Val = ToInt;
683 FlatTree[CurrentNode].ToArgInfo.IsValidInt = IsValidToInt;
684 FlatTree[CurrentNode].ToArgInfo.ArgType = ToIntType;
685 FlatTree[CurrentNode].ToArgInfo.ArgExpr = ToExpr;
686 SetDefault(FromDefault, ToDefault);
687 }
688
689 void SetFromIntegerAndToDeclarationDiff(
Benjamin Kramer7320b992016-06-15 14:20:56 +0000690 const llvm::APSInt &FromInt, bool IsValidFromInt, QualType FromIntType,
Richard Trieu9213ce52016-01-15 05:01:53 +0000691 Expr *FromExpr, ValueDecl *ToValueDecl, bool ToAddressOf,
692 bool ToNullPtr, Expr *ToExpr, bool FromDefault, bool ToDefault) {
693 assert(FlatTree[CurrentNode].Kind == Invalid && "Node is not empty.");
694 FlatTree[CurrentNode].Kind = FromIntegerAndToDeclaration;
695 FlatTree[CurrentNode].FromArgInfo.Val = FromInt;
696 FlatTree[CurrentNode].FromArgInfo.IsValidInt = IsValidFromInt;
697 FlatTree[CurrentNode].FromArgInfo.ArgType = FromIntType;
698 FlatTree[CurrentNode].FromArgInfo.ArgExpr = FromExpr;
699 FlatTree[CurrentNode].ToArgInfo.VD = ToValueDecl;
700 FlatTree[CurrentNode].ToArgInfo.NeedAddressOf = ToAddressOf;
701 FlatTree[CurrentNode].ToArgInfo.IsNullPtr = ToNullPtr;
702 FlatTree[CurrentNode].ToArgInfo.ArgExpr = ToExpr;
703 SetDefault(FromDefault, ToDefault);
704 }
705
Richard Trieu14714c42016-01-14 22:56:39 +0000706 /// SetDefault - Sets FromDefault and ToDefault flags of the current node.
707 void SetDefault(bool FromDefault, bool ToDefault) {
James Y Knight925d60e2016-01-15 05:57:41 +0000708 assert((!FromDefault || !ToDefault) && "Both arguments cannot be default.");
Richard Trieu14714c42016-01-14 22:56:39 +0000709 FlatTree[CurrentNode].FromArgInfo.IsDefault = FromDefault;
710 FlatTree[CurrentNode].ToArgInfo.IsDefault = ToDefault;
Richard Trieu954aaaf2013-02-27 01:41:53 +0000711 }
712
Richard Trieu91844232012-06-26 18:18:47 +0000713 /// SetSame - Sets the same flag of the current node.
714 void SetSame(bool Same) {
715 FlatTree[CurrentNode].Same = Same;
716 }
717
Richard Trieub4cff112013-03-15 20:35:18 +0000718 /// SetKind - Sets the current node's type.
719 void SetKind(DiffKind Kind) {
720 FlatTree[CurrentNode].Kind = Kind;
721 }
722
Richard Trieu91844232012-06-26 18:18:47 +0000723 /// Up - Changes the node to the parent of the current node.
724 void Up() {
Richard Trieu2331c8b2016-01-15 05:48:38 +0000725 assert(FlatTree[CurrentNode].Kind != Invalid &&
726 "Cannot exit node before setting node information.");
Richard Trieu91844232012-06-26 18:18:47 +0000727 CurrentNode = FlatTree[CurrentNode].ParentNode;
728 }
729
730 /// AddNode - Adds a child node to the current node, then sets that node
731 /// node as the current node.
732 void AddNode() {
Richard Trieu2331c8b2016-01-15 05:48:38 +0000733 assert(FlatTree[CurrentNode].Kind == Template &&
734 "Only Template nodes can have children nodes.");
Richard Trieu91844232012-06-26 18:18:47 +0000735 FlatTree.push_back(DiffNode(CurrentNode));
736 DiffNode &Node = FlatTree[CurrentNode];
737 if (Node.ChildNode == 0) {
738 // If a child node doesn't exist, add one.
739 Node.ChildNode = NextFreeNode;
740 } else {
741 // If a child node exists, find the last child node and add a
742 // next node to it.
743 unsigned i;
744 for (i = Node.ChildNode; FlatTree[i].NextNode != 0;
745 i = FlatTree[i].NextNode) {
746 }
747 FlatTree[i].NextNode = NextFreeNode;
748 }
749 CurrentNode = NextFreeNode;
750 ++NextFreeNode;
751 }
752
753 // Node reading functions.
754 /// StartTraverse - Prepares the tree for recursive traversal.
755 void StartTraverse() {
756 ReadNode = 0;
757 CurrentNode = NextFreeNode;
758 NextFreeNode = 0;
759 }
760
761 /// Parent - Move the current read node to its parent.
762 void Parent() {
763 ReadNode = FlatTree[ReadNode].ParentNode;
764 }
765
Richard Trieu14714c42016-01-14 22:56:39 +0000766 void GetTemplateDiff(TemplateDecl *&FromTD, TemplateDecl *&ToTD,
767 Qualifiers &FromQual, Qualifiers &ToQual) {
768 assert(FlatTree[ReadNode].Kind == Template && "Unexpected kind.");
769 FromTD = FlatTree[ReadNode].FromArgInfo.TD;
770 ToTD = FlatTree[ReadNode].ToArgInfo.TD;
771 FromQual = FlatTree[ReadNode].FromArgInfo.Qual;
772 ToQual = FlatTree[ReadNode].ToArgInfo.Qual;
Richard Trieu91844232012-06-26 18:18:47 +0000773 }
774
Richard Trieu14714c42016-01-14 22:56:39 +0000775 void GetTypeDiff(QualType &FromType, QualType &ToType) {
776 assert(FlatTree[ReadNode].Kind == Type && "Unexpected kind");
777 FromType = FlatTree[ReadNode].FromArgInfo.ArgType;
778 ToType = FlatTree[ReadNode].ToArgInfo.ArgType;
Richard Trieu91844232012-06-26 18:18:47 +0000779 }
780
Richard Trieu2c22a862016-01-15 01:08:56 +0000781 void GetExpressionDiff(Expr *&FromExpr, Expr *&ToExpr) {
Richard Trieu14714c42016-01-14 22:56:39 +0000782 assert(FlatTree[ReadNode].Kind == Expression && "Unexpected kind");
783 FromExpr = FlatTree[ReadNode].FromArgInfo.ArgExpr;
784 ToExpr = FlatTree[ReadNode].ToArgInfo.ArgExpr;
Richard Trieu91844232012-06-26 18:18:47 +0000785 }
786
Richard Trieu14714c42016-01-14 22:56:39 +0000787 void GetTemplateTemplateDiff(TemplateDecl *&FromTD, TemplateDecl *&ToTD) {
788 assert(FlatTree[ReadNode].Kind == TemplateTemplate && "Unexpected kind.");
789 FromTD = FlatTree[ReadNode].FromArgInfo.TD;
790 ToTD = FlatTree[ReadNode].ToArgInfo.TD;
Richard Trieu6df89452012-11-01 21:29:28 +0000791 }
792
Richard Trieu14714c42016-01-14 22:56:39 +0000793 void GetIntegerDiff(llvm::APSInt &FromInt, llvm::APSInt &ToInt,
794 bool &IsValidFromInt, bool &IsValidToInt,
Richard Trieud5c73782016-01-15 02:55:17 +0000795 QualType &FromIntType, QualType &ToIntType,
Richard Trieu14714c42016-01-14 22:56:39 +0000796 Expr *&FromExpr, Expr *&ToExpr) {
797 assert(FlatTree[ReadNode].Kind == Integer && "Unexpected kind.");
798 FromInt = FlatTree[ReadNode].FromArgInfo.Val;
799 ToInt = FlatTree[ReadNode].ToArgInfo.Val;
800 IsValidFromInt = FlatTree[ReadNode].FromArgInfo.IsValidInt;
801 IsValidToInt = FlatTree[ReadNode].ToArgInfo.IsValidInt;
Richard Trieud5c73782016-01-15 02:55:17 +0000802 FromIntType = FlatTree[ReadNode].FromArgInfo.ArgType;
803 ToIntType = FlatTree[ReadNode].ToArgInfo.ArgType;
Richard Trieu14714c42016-01-14 22:56:39 +0000804 FromExpr = FlatTree[ReadNode].FromArgInfo.ArgExpr;
805 ToExpr = FlatTree[ReadNode].ToArgInfo.ArgExpr;
Richard Trieub7243852012-09-28 20:32:51 +0000806 }
807
Richard Trieu14714c42016-01-14 22:56:39 +0000808 void GetDeclarationDiff(ValueDecl *&FromValueDecl, ValueDecl *&ToValueDecl,
809 bool &FromAddressOf, bool &ToAddressOf,
Richard Trieu2c22a862016-01-15 01:08:56 +0000810 bool &FromNullPtr, bool &ToNullPtr, Expr *&FromExpr,
811 Expr *&ToExpr) {
Richard Trieu14714c42016-01-14 22:56:39 +0000812 assert(FlatTree[ReadNode].Kind == Declaration && "Unexpected kind.");
813 FromValueDecl = FlatTree[ReadNode].FromArgInfo.VD;
814 ToValueDecl = FlatTree[ReadNode].ToArgInfo.VD;
815 FromAddressOf = FlatTree[ReadNode].FromArgInfo.NeedAddressOf;
816 ToAddressOf = FlatTree[ReadNode].ToArgInfo.NeedAddressOf;
817 FromNullPtr = FlatTree[ReadNode].FromArgInfo.IsNullPtr;
818 ToNullPtr = FlatTree[ReadNode].ToArgInfo.IsNullPtr;
Richard Trieu2c22a862016-01-15 01:08:56 +0000819 FromExpr = FlatTree[ReadNode].FromArgInfo.ArgExpr;
820 ToExpr = FlatTree[ReadNode].ToArgInfo.ArgExpr;
Richard Trieu14714c42016-01-14 22:56:39 +0000821 }
822
Richard Trieu9213ce52016-01-15 05:01:53 +0000823 void GetFromDeclarationAndToIntegerDiff(
824 ValueDecl *&FromValueDecl, bool &FromAddressOf, bool &FromNullPtr,
825 Expr *&FromExpr, llvm::APSInt &ToInt, bool &IsValidToInt,
826 QualType &ToIntType, Expr *&ToExpr) {
827 assert(FlatTree[ReadNode].Kind == FromDeclarationAndToInteger &&
828 "Unexpected kind.");
829 FromValueDecl = FlatTree[ReadNode].FromArgInfo.VD;
830 FromAddressOf = FlatTree[ReadNode].FromArgInfo.NeedAddressOf;
831 FromNullPtr = FlatTree[ReadNode].FromArgInfo.IsNullPtr;
832 FromExpr = FlatTree[ReadNode].FromArgInfo.ArgExpr;
833 ToInt = FlatTree[ReadNode].ToArgInfo.Val;
834 IsValidToInt = FlatTree[ReadNode].ToArgInfo.IsValidInt;
835 ToIntType = FlatTree[ReadNode].ToArgInfo.ArgType;
836 ToExpr = FlatTree[ReadNode].ToArgInfo.ArgExpr;
837 }
838
839 void GetFromIntegerAndToDeclarationDiff(
840 llvm::APSInt &FromInt, bool &IsValidFromInt, QualType &FromIntType,
841 Expr *&FromExpr, ValueDecl *&ToValueDecl, bool &ToAddressOf,
842 bool &ToNullPtr, Expr *&ToExpr) {
843 assert(FlatTree[ReadNode].Kind == FromIntegerAndToDeclaration &&
844 "Unexpected kind.");
845 FromInt = FlatTree[ReadNode].FromArgInfo.Val;
846 IsValidFromInt = FlatTree[ReadNode].FromArgInfo.IsValidInt;
847 FromIntType = FlatTree[ReadNode].FromArgInfo.ArgType;
848 FromExpr = FlatTree[ReadNode].FromArgInfo.ArgExpr;
849 ToValueDecl = FlatTree[ReadNode].ToArgInfo.VD;
850 ToAddressOf = FlatTree[ReadNode].ToArgInfo.NeedAddressOf;
851 ToNullPtr = FlatTree[ReadNode].ToArgInfo.IsNullPtr;
852 ToExpr = FlatTree[ReadNode].ToArgInfo.ArgExpr;
853 }
854
Richard Trieu14714c42016-01-14 22:56:39 +0000855 /// FromDefault - Return true if the from argument is the default.
856 bool FromDefault() {
857 return FlatTree[ReadNode].FromArgInfo.IsDefault;
858 }
859
860 /// ToDefault - Return true if the to argument is the default.
861 bool ToDefault() {
862 return FlatTree[ReadNode].ToArgInfo.IsDefault;
Richard Trieu954aaaf2013-02-27 01:41:53 +0000863 }
864
Richard Trieu91844232012-06-26 18:18:47 +0000865 /// NodeIsSame - Returns true the arguments are the same.
866 bool NodeIsSame() {
867 return FlatTree[ReadNode].Same;
868 }
869
870 /// HasChildrend - Returns true if the node has children.
871 bool HasChildren() {
872 return FlatTree[ReadNode].ChildNode != 0;
873 }
874
875 /// MoveToChild - Moves from the current node to its child.
876 void MoveToChild() {
877 ReadNode = FlatTree[ReadNode].ChildNode;
878 }
879
880 /// AdvanceSibling - If there is a next sibling, advance to it and return
881 /// true. Otherwise, return false.
882 bool AdvanceSibling() {
883 if (FlatTree[ReadNode].NextNode == 0)
884 return false;
885
886 ReadNode = FlatTree[ReadNode].NextNode;
887 return true;
888 }
889
890 /// HasNextSibling - Return true if the node has a next sibling.
891 bool HasNextSibling() {
892 return FlatTree[ReadNode].NextNode != 0;
893 }
894
Richard Trieu91844232012-06-26 18:18:47 +0000895 /// Empty - Returns true if the tree has no information.
896 bool Empty() {
Richard Trieub4cff112013-03-15 20:35:18 +0000897 return GetKind() == Invalid;
898 }
899
900 /// GetKind - Returns the current node's type.
901 DiffKind GetKind() {
902 return FlatTree[ReadNode].Kind;
Richard Trieu91844232012-06-26 18:18:47 +0000903 }
904 };
905
906 DiffTree Tree;
907
Richard Trieuac1e2f82016-01-14 23:30:12 +0000908 /// TSTiterator - a pair of iterators that walks the
909 /// TemplateSpecializationType and the desugared TemplateSpecializationType.
910 /// The deseguared TemplateArgument should provide the canonical argument
911 /// for comparisons.
912 class TSTiterator {
Richard Trieu91844232012-06-26 18:18:47 +0000913 typedef const TemplateArgument& reference;
914 typedef const TemplateArgument* pointer;
915
Richard Trieuac1e2f82016-01-14 23:30:12 +0000916 /// InternalIterator - an iterator that is used to enter a
917 /// TemplateSpecializationType and read TemplateArguments inside template
918 /// parameter packs in order with the rest of the TemplateArguments.
919 struct InternalIterator {
920 /// TST - the template specialization whose arguments this iterator
921 /// traverse over.
922 const TemplateSpecializationType *TST;
Richard Trieu91844232012-06-26 18:18:47 +0000923
Richard Trieuac1e2f82016-01-14 23:30:12 +0000924 /// Index - the index of the template argument in TST.
925 unsigned Index;
Richard Trieu64ab30392013-03-15 23:55:09 +0000926
Richard Trieuac1e2f82016-01-14 23:30:12 +0000927 /// CurrentTA - if CurrentTA is not the same as EndTA, then CurrentTA
928 /// points to a TemplateArgument within a parameter pack.
929 TemplateArgument::pack_iterator CurrentTA;
Richard Trieu91844232012-06-26 18:18:47 +0000930
Richard Trieuac1e2f82016-01-14 23:30:12 +0000931 /// EndTA - the end iterator of a parameter pack
932 TemplateArgument::pack_iterator EndTA;
Richard Trieu91844232012-06-26 18:18:47 +0000933
Richard Trieuac1e2f82016-01-14 23:30:12 +0000934 /// InternalIterator - Constructs an iterator and sets it to the first
935 /// template argument.
936 InternalIterator(const TemplateSpecializationType *TST)
937 : TST(TST), Index(0), CurrentTA(nullptr), EndTA(nullptr) {
Richard Trieue1a6a7d2016-08-05 03:16:36 +0000938 if (!TST) return;
939
Richard Trieuac1e2f82016-01-14 23:30:12 +0000940 if (isEnd()) return;
Richard Trieu91844232012-06-26 18:18:47 +0000941
Richard Trieuac1e2f82016-01-14 23:30:12 +0000942 // Set to first template argument. If not a parameter pack, done.
943 TemplateArgument TA = TST->getArg(0);
944 if (TA.getKind() != TemplateArgument::Pack) return;
Richard Trieu91844232012-06-26 18:18:47 +0000945
Richard Trieuac1e2f82016-01-14 23:30:12 +0000946 // Start looking into the parameter pack.
Richard Trieu91844232012-06-26 18:18:47 +0000947 CurrentTA = TA.pack_begin();
948 EndTA = TA.pack_end();
949
Richard Trieuac1e2f82016-01-14 23:30:12 +0000950 // Found a valid template argument.
951 if (CurrentTA != EndTA) return;
952
953 // Parameter pack is empty, use the increment to get to a valid
954 // template argument.
955 ++(*this);
Richard Trieu91844232012-06-26 18:18:47 +0000956 }
Richard Trieuac1e2f82016-01-14 23:30:12 +0000957
Richard Smithe0ab8732016-10-28 19:54:43 +0000958 /// Return true if the iterator is non-singular.
959 bool isValid() const { return TST; }
960
Richard Trieuac1e2f82016-01-14 23:30:12 +0000961 /// isEnd - Returns true if the iterator is one past the end.
962 bool isEnd() const {
Richard Trieue056aee2016-08-06 01:44:06 +0000963 assert(TST && "InternalIterator is invalid with a null TST.");
Richard Trieuac1e2f82016-01-14 23:30:12 +0000964 return Index >= TST->getNumArgs();
965 }
966
967 /// &operator++ - Increment the iterator to the next template argument.
968 InternalIterator &operator++() {
Richard Trieue056aee2016-08-06 01:44:06 +0000969 assert(TST && "InternalIterator is invalid with a null TST.");
Richard Trieuac1e2f82016-01-14 23:30:12 +0000970 if (isEnd()) {
971 return *this;
972 }
973
974 // If in a parameter pack, advance in the parameter pack.
975 if (CurrentTA != EndTA) {
976 ++CurrentTA;
977 if (CurrentTA != EndTA)
978 return *this;
979 }
980
981 // Loop until a template argument is found, or the end is reached.
982 while (true) {
983 // Advance to the next template argument. Break if reached the end.
984 if (++Index == TST->getNumArgs())
985 break;
986
987 // If the TemplateArgument is not a parameter pack, done.
988 TemplateArgument TA = TST->getArg(Index);
989 if (TA.getKind() != TemplateArgument::Pack)
990 break;
991
992 // Handle parameter packs.
993 CurrentTA = TA.pack_begin();
994 EndTA = TA.pack_end();
995
996 // If the parameter pack is empty, try to advance again.
997 if (CurrentTA != EndTA)
998 break;
999 }
1000 return *this;
1001 }
1002
1003 /// operator* - Returns the appropriate TemplateArgument.
1004 reference operator*() const {
Richard Trieue056aee2016-08-06 01:44:06 +00001005 assert(TST && "InternalIterator is invalid with a null TST.");
Richard Trieuac1e2f82016-01-14 23:30:12 +00001006 assert(!isEnd() && "Index exceeds number of arguments.");
1007 if (CurrentTA == EndTA)
1008 return TST->getArg(Index);
1009 else
1010 return *CurrentTA;
1011 }
1012
1013 /// operator-> - Allow access to the underlying TemplateArgument.
1014 pointer operator->() const {
Richard Trieue056aee2016-08-06 01:44:06 +00001015 assert(TST && "InternalIterator is invalid with a null TST.");
Richard Trieuac1e2f82016-01-14 23:30:12 +00001016 return &operator*();
1017 }
1018 };
1019
1020 InternalIterator SugaredIterator;
1021 InternalIterator DesugaredIterator;
1022
1023 public:
1024 TSTiterator(ASTContext &Context, const TemplateSpecializationType *TST)
Richard Smithe0ab8732016-10-28 19:54:43 +00001025 : SugaredIterator(TST),
Richard Trieuac1e2f82016-01-14 23:30:12 +00001026 DesugaredIterator(
Richard Smithe0ab8732016-10-28 19:54:43 +00001027 (TST->isSugared() && !TST->isTypeAlias())
1028 ? GetTemplateSpecializationType(Context, TST->desugar())
1029 : nullptr) {}
Richard Trieuac1e2f82016-01-14 23:30:12 +00001030
1031 /// &operator++ - Increment the iterator to the next template argument.
1032 TSTiterator &operator++() {
1033 ++SugaredIterator;
Richard Smithe0ab8732016-10-28 19:54:43 +00001034 if (DesugaredIterator.isValid())
Richard Trieua7564d72016-03-30 22:23:00 +00001035 ++DesugaredIterator;
Richard Trieu91844232012-06-26 18:18:47 +00001036 return *this;
1037 }
1038
1039 /// operator* - Returns the appropriate TemplateArgument.
1040 reference operator*() const {
Richard Trieuac1e2f82016-01-14 23:30:12 +00001041 return *SugaredIterator;
Richard Trieu91844232012-06-26 18:18:47 +00001042 }
1043
1044 /// operator-> - Allow access to the underlying TemplateArgument.
1045 pointer operator->() const {
1046 return &operator*();
1047 }
Richard Trieu64ab30392013-03-15 23:55:09 +00001048
Richard Trieuac1e2f82016-01-14 23:30:12 +00001049 /// isEnd - Returns true if no more TemplateArguments are available.
1050 bool isEnd() const {
1051 return SugaredIterator.isEnd();
1052 }
1053
1054 /// hasDesugaredTA - Returns true if there is another TemplateArgument
1055 /// available.
1056 bool hasDesugaredTA() const {
Richard Smithe0ab8732016-10-28 19:54:43 +00001057 return DesugaredIterator.isValid() && !DesugaredIterator.isEnd();
Richard Trieuac1e2f82016-01-14 23:30:12 +00001058 }
1059
1060 /// getDesugaredTA - Returns the desugared TemplateArgument.
1061 reference getDesugaredTA() const {
Richard Smithe0ab8732016-10-28 19:54:43 +00001062 assert(DesugaredIterator.isValid() &&
Richard Trieua7564d72016-03-30 22:23:00 +00001063 "Desugared TemplateArgument should not be used.");
Richard Trieuac1e2f82016-01-14 23:30:12 +00001064 return *DesugaredIterator;
Richard Trieu64ab30392013-03-15 23:55:09 +00001065 }
Richard Trieu91844232012-06-26 18:18:47 +00001066 };
1067
1068 // These functions build up the template diff tree, including functions to
Richard Trieuac1e2f82016-01-14 23:30:12 +00001069 // retrieve and compare template arguments.
Richard Trieu91844232012-06-26 18:18:47 +00001070
Richard Trieu2331c8b2016-01-15 05:48:38 +00001071 static const TemplateSpecializationType *GetTemplateSpecializationType(
Richard Trieu91844232012-06-26 18:18:47 +00001072 ASTContext &Context, QualType Ty) {
1073 if (const TemplateSpecializationType *TST =
1074 Ty->getAs<TemplateSpecializationType>())
1075 return TST;
1076
1077 const RecordType *RT = Ty->getAs<RecordType>();
1078
1079 if (!RT)
Craig Topper36250ad2014-05-12 05:36:57 +00001080 return nullptr;
Richard Trieu91844232012-06-26 18:18:47 +00001081
1082 const ClassTemplateSpecializationDecl *CTSD =
1083 dyn_cast<ClassTemplateSpecializationDecl>(RT->getDecl());
1084
1085 if (!CTSD)
Craig Topper36250ad2014-05-12 05:36:57 +00001086 return nullptr;
Richard Trieu91844232012-06-26 18:18:47 +00001087
1088 Ty = Context.getTemplateSpecializationType(
1089 TemplateName(CTSD->getSpecializedTemplate()),
David Majnemer6fbeee32016-07-07 04:43:07 +00001090 CTSD->getTemplateArgs().asArray(),
Richard Trieu3cee4132013-03-23 01:38:36 +00001091 Ty.getLocalUnqualifiedType().getCanonicalType());
Richard Trieu91844232012-06-26 18:18:47 +00001092
1093 return Ty->getAs<TemplateSpecializationType>();
1094 }
1095
Richard Trieu14714c42016-01-14 22:56:39 +00001096 /// Returns true if the DiffType is Type and false for Template.
1097 static bool OnlyPerformTypeDiff(ASTContext &Context, QualType FromType,
1098 QualType ToType,
1099 const TemplateSpecializationType *&FromArgTST,
1100 const TemplateSpecializationType *&ToArgTST) {
1101 if (FromType.isNull() || ToType.isNull())
1102 return true;
1103
1104 if (Context.hasSameType(FromType, ToType))
1105 return true;
1106
1107 FromArgTST = GetTemplateSpecializationType(Context, FromType);
1108 ToArgTST = GetTemplateSpecializationType(Context, ToType);
1109
1110 if (!FromArgTST || !ToArgTST)
1111 return true;
1112
1113 if (!hasSameTemplate(FromArgTST, ToArgTST))
1114 return true;
1115
1116 return false;
1117 }
1118
Richard Trieu9fee0b72014-08-27 06:24:47 +00001119 /// DiffTypes - Fills a DiffNode with information about a type difference.
Richard Trieu2c22a862016-01-15 01:08:56 +00001120 void DiffTypes(const TSTiterator &FromIter, const TSTiterator &ToIter) {
1121 QualType FromType = GetType(FromIter);
1122 QualType ToType = GetType(ToIter);
Richard Trieu9fee0b72014-08-27 06:24:47 +00001123
Richard Trieu14714c42016-01-14 22:56:39 +00001124 bool FromDefault = FromIter.isEnd() && !FromType.isNull();
1125 bool ToDefault = ToIter.isEnd() && !ToType.isNull();
Richard Trieu9fee0b72014-08-27 06:24:47 +00001126
Richard Trieu14714c42016-01-14 22:56:39 +00001127 const TemplateSpecializationType *FromArgTST = nullptr;
1128 const TemplateSpecializationType *ToArgTST = nullptr;
1129 if (OnlyPerformTypeDiff(Context, FromType, ToType, FromArgTST, ToArgTST)) {
1130 Tree.SetTypeDiff(FromType, ToType, FromDefault, ToDefault);
1131 Tree.SetSame(!FromType.isNull() && !ToType.isNull() &&
1132 Context.hasSameType(FromType, ToType));
1133 } else {
1134 assert(FromArgTST && ToArgTST &&
1135 "Both template specializations need to be valid.");
1136 Qualifiers FromQual = FromType.getQualifiers(),
1137 ToQual = ToType.getQualifiers();
1138 FromQual -= QualType(FromArgTST, 0).getQualifiers();
1139 ToQual -= QualType(ToArgTST, 0).getQualifiers();
1140 Tree.SetTemplateDiff(FromArgTST->getTemplateName().getAsTemplateDecl(),
1141 ToArgTST->getTemplateName().getAsTemplateDecl(),
1142 FromQual, ToQual, FromDefault, ToDefault);
1143 DiffTemplate(FromArgTST, ToArgTST);
Richard Trieu9fee0b72014-08-27 06:24:47 +00001144 }
Richard Trieu9fee0b72014-08-27 06:24:47 +00001145 }
1146
1147 /// DiffTemplateTemplates - Fills a DiffNode with information about a
1148 /// template template difference.
1149 void DiffTemplateTemplates(const TSTiterator &FromIter,
Richard Trieu2c22a862016-01-15 01:08:56 +00001150 const TSTiterator &ToIter) {
1151 TemplateDecl *FromDecl = GetTemplateDecl(FromIter);
1152 TemplateDecl *ToDecl = GetTemplateDecl(ToIter);
Richard Trieu14714c42016-01-14 22:56:39 +00001153 Tree.SetTemplateTemplateDiff(FromDecl, ToDecl, FromIter.isEnd() && FromDecl,
1154 ToIter.isEnd() && ToDecl);
Richard Trieu9fee0b72014-08-27 06:24:47 +00001155 Tree.SetSame(FromDecl && ToDecl &&
1156 FromDecl->getCanonicalDecl() == ToDecl->getCanonicalDecl());
Richard Trieu9fee0b72014-08-27 06:24:47 +00001157 }
1158
1159 /// InitializeNonTypeDiffVariables - Helper function for DiffNonTypes
Richard Trieud5c73782016-01-15 02:55:17 +00001160 static void InitializeNonTypeDiffVariables(ASTContext &Context,
1161 const TSTiterator &Iter,
1162 NonTypeTemplateParmDecl *Default,
1163 llvm::APSInt &Value, bool &HasInt,
1164 QualType &IntType, bool &IsNullPtr,
1165 Expr *&E, ValueDecl *&VD,
1166 bool &NeedAddressOf) {
Richard Trieu2c22a862016-01-15 01:08:56 +00001167 if (!Iter.isEnd()) {
1168 switch (Iter->getKind()) {
1169 default:
1170 llvm_unreachable("unknown ArgumentKind");
1171 case TemplateArgument::Integral:
1172 Value = Iter->getAsIntegral();
1173 HasInt = true;
Richard Trieud5c73782016-01-15 02:55:17 +00001174 IntType = Iter->getIntegralType();
Richard Trieu2c22a862016-01-15 01:08:56 +00001175 return;
1176 case TemplateArgument::Declaration: {
1177 VD = Iter->getAsDecl();
1178 QualType ArgType = Iter->getParamTypeForDecl();
1179 QualType VDType = VD->getType();
1180 if (ArgType->isPointerType() &&
1181 Context.hasSameType(ArgType->getPointeeType(), VDType))
1182 NeedAddressOf = true;
1183 return;
Richard Trieu9fee0b72014-08-27 06:24:47 +00001184 }
Richard Trieu2c22a862016-01-15 01:08:56 +00001185 case TemplateArgument::NullPtr:
1186 IsNullPtr = true;
1187 return;
1188 case TemplateArgument::Expression:
1189 E = Iter->getAsExpr();
Richard Trieu9fee0b72014-08-27 06:24:47 +00001190 }
Richard Trieu2c22a862016-01-15 01:08:56 +00001191 } else if (!Default->isParameterPack()) {
1192 E = Default->getDefaultArgument();
Richard Trieu9fee0b72014-08-27 06:24:47 +00001193 }
1194
Richard Trieu2c22a862016-01-15 01:08:56 +00001195 if (!Iter.hasDesugaredTA()) return;
Richard Trieu9fee0b72014-08-27 06:24:47 +00001196
Richard Trieu2c22a862016-01-15 01:08:56 +00001197 const TemplateArgument& TA = Iter.getDesugaredTA();
1198 switch (TA.getKind()) {
1199 default:
1200 llvm_unreachable("unknown ArgumentKind");
1201 case TemplateArgument::Integral:
1202 Value = TA.getAsIntegral();
1203 HasInt = true;
Richard Trieud5c73782016-01-15 02:55:17 +00001204 IntType = TA.getIntegralType();
Richard Trieu2c22a862016-01-15 01:08:56 +00001205 return;
1206 case TemplateArgument::Declaration: {
1207 VD = TA.getAsDecl();
1208 QualType ArgType = TA.getParamTypeForDecl();
1209 QualType VDType = VD->getType();
1210 if (ArgType->isPointerType() &&
1211 Context.hasSameType(ArgType->getPointeeType(), VDType))
1212 NeedAddressOf = true;
1213 return;
1214 }
1215 case TemplateArgument::NullPtr:
1216 IsNullPtr = true;
1217 return;
1218 case TemplateArgument::Expression:
1219 // TODO: Sometimes, the desugared template argument Expr differs from
1220 // the sugared template argument Expr. It may be useful in the future
1221 // but for now, it is just discarded.
1222 if (!E)
1223 E = TA.getAsExpr();
1224 return;
1225 }
Richard Trieu9fee0b72014-08-27 06:24:47 +00001226 }
1227
1228 /// DiffNonTypes - Handles any template parameters not handled by DiffTypes
1229 /// of DiffTemplatesTemplates, such as integer and declaration parameters.
1230 void DiffNonTypes(const TSTiterator &FromIter, const TSTiterator &ToIter,
1231 NonTypeTemplateParmDecl *FromDefaultNonTypeDecl,
1232 NonTypeTemplateParmDecl *ToDefaultNonTypeDecl) {
1233 Expr *FromExpr = nullptr, *ToExpr = nullptr;
1234 llvm::APSInt FromInt, ToInt;
Richard Trieud5c73782016-01-15 02:55:17 +00001235 QualType FromIntType, ToIntType;
Richard Trieu9fee0b72014-08-27 06:24:47 +00001236 ValueDecl *FromValueDecl = nullptr, *ToValueDecl = nullptr;
Richard Trieu2c22a862016-01-15 01:08:56 +00001237 bool HasFromInt = false, HasToInt = false, FromNullPtr = false,
1238 ToNullPtr = false, NeedFromAddressOf = false, NeedToAddressOf = false;
Richard Trieud5c73782016-01-15 02:55:17 +00001239 InitializeNonTypeDiffVariables(
1240 Context, FromIter, FromDefaultNonTypeDecl, FromInt, HasFromInt,
1241 FromIntType, FromNullPtr, FromExpr, FromValueDecl, NeedFromAddressOf);
Richard Trieu2c22a862016-01-15 01:08:56 +00001242 InitializeNonTypeDiffVariables(Context, ToIter, ToDefaultNonTypeDecl, ToInt,
Richard Trieud5c73782016-01-15 02:55:17 +00001243 HasToInt, ToIntType, ToNullPtr, ToExpr,
1244 ToValueDecl, NeedToAddressOf);
Richard Trieu2c22a862016-01-15 01:08:56 +00001245
Richard Trieu14714c42016-01-14 22:56:39 +00001246 bool FromDefault = FromIter.isEnd() &&
1247 (FromExpr || FromValueDecl || HasFromInt || FromNullPtr);
1248 bool ToDefault = ToIter.isEnd() &&
1249 (ToExpr || ToValueDecl || HasToInt || ToNullPtr);
1250
Richard Trieu9213ce52016-01-15 05:01:53 +00001251 bool FromDeclaration = FromValueDecl || FromNullPtr;
1252 bool ToDeclaration = ToValueDecl || ToNullPtr;
1253
1254 if (FromDeclaration && HasToInt) {
1255 Tree.SetFromDeclarationAndToIntegerDiff(
1256 FromValueDecl, NeedFromAddressOf, FromNullPtr, FromExpr, ToInt,
1257 HasToInt, ToIntType, ToExpr, FromDefault, ToDefault);
1258 Tree.SetSame(false);
1259 return;
1260
1261 }
1262
1263 if (HasFromInt && ToDeclaration) {
1264 Tree.SetFromIntegerAndToDeclarationDiff(
1265 FromInt, HasFromInt, FromIntType, FromExpr, ToValueDecl,
1266 NeedToAddressOf, ToNullPtr, ToExpr, FromDefault, ToDefault);
1267 Tree.SetSame(false);
1268 return;
1269 }
1270
Richard Trieu9fee0b72014-08-27 06:24:47 +00001271 if (HasFromInt || HasToInt) {
Richard Trieud5c73782016-01-15 02:55:17 +00001272 Tree.SetIntegerDiff(FromInt, ToInt, HasFromInt, HasToInt, FromIntType,
1273 ToIntType, FromExpr, ToExpr, FromDefault, ToDefault);
Richard Trieu15b66532015-01-24 02:48:32 +00001274 if (HasFromInt && HasToInt) {
Richard Trieud5c73782016-01-15 02:55:17 +00001275 Tree.SetSame(Context.hasSameType(FromIntType, ToIntType) &&
1276 FromInt == ToInt);
Richard Trieu15b66532015-01-24 02:48:32 +00001277 }
Richard Trieu9fee0b72014-08-27 06:24:47 +00001278 return;
1279 }
1280
Richard Trieu2c22a862016-01-15 01:08:56 +00001281 if (FromDeclaration || ToDeclaration) {
1282 Tree.SetDeclarationDiff(FromValueDecl, ToValueDecl, NeedFromAddressOf,
1283 NeedToAddressOf, FromNullPtr, ToNullPtr, FromExpr,
1284 ToExpr, FromDefault, ToDefault);
1285 bool BothNull = FromNullPtr && ToNullPtr;
1286 bool SameValueDecl =
1287 FromValueDecl && ToValueDecl &&
1288 NeedFromAddressOf == NeedToAddressOf &&
1289 FromValueDecl->getCanonicalDecl() == ToValueDecl->getCanonicalDecl();
1290 Tree.SetSame(BothNull || SameValueDecl);
1291 return;
1292 }
Richard Trieu9fee0b72014-08-27 06:24:47 +00001293
Richard Trieu2c22a862016-01-15 01:08:56 +00001294 assert((FromExpr || ToExpr) && "Both template arguments cannot be empty.");
1295 Tree.SetExpressionDiff(FromExpr, ToExpr, FromDefault, ToDefault);
1296 Tree.SetSame(IsEqualExpr(Context, FromExpr, ToExpr));
Richard Trieu9fee0b72014-08-27 06:24:47 +00001297 }
1298
Richard Trieu91844232012-06-26 18:18:47 +00001299 /// DiffTemplate - recursively visits template arguments and stores the
1300 /// argument info into a tree.
1301 void DiffTemplate(const TemplateSpecializationType *FromTST,
1302 const TemplateSpecializationType *ToTST) {
1303 // Begin descent into diffing template tree.
Benjamin Kramer3b05e202013-10-08 16:58:52 +00001304 TemplateParameterList *ParamsFrom =
Richard Trieu91844232012-06-26 18:18:47 +00001305 FromTST->getTemplateName().getAsTemplateDecl()->getTemplateParameters();
Benjamin Kramer3b05e202013-10-08 16:58:52 +00001306 TemplateParameterList *ParamsTo =
1307 ToTST->getTemplateName().getAsTemplateDecl()->getTemplateParameters();
Richard Trieu91844232012-06-26 18:18:47 +00001308 unsigned TotalArgs = 0;
Richard Trieu64ab30392013-03-15 23:55:09 +00001309 for (TSTiterator FromIter(Context, FromTST), ToIter(Context, ToTST);
Richard Trieu91844232012-06-26 18:18:47 +00001310 !FromIter.isEnd() || !ToIter.isEnd(); ++TotalArgs) {
1311 Tree.AddNode();
1312
1313 // Get the parameter at index TotalArgs. If index is larger
1314 // than the total number of parameters, then there is an
1315 // argument pack, so re-use the last parameter.
Richard Trieu9fee0b72014-08-27 06:24:47 +00001316 unsigned FromParamIndex = std::min(TotalArgs, ParamsFrom->size() - 1);
1317 unsigned ToParamIndex = std::min(TotalArgs, ParamsTo->size() - 1);
1318 NamedDecl *FromParamND = ParamsFrom->getParam(FromParamIndex);
1319 NamedDecl *ToParamND = ParamsTo->getParam(ToParamIndex);
Benjamin Kramer3b05e202013-10-08 16:58:52 +00001320
Richard Trieu2c22a862016-01-15 01:08:56 +00001321 assert(FromParamND->getKind() == ToParamND->getKind() &&
1322 "Parameter Decl are not the same kind.");
Richard Trieu91844232012-06-26 18:18:47 +00001323
Richard Trieu2c22a862016-01-15 01:08:56 +00001324 if (isa<TemplateTypeParmDecl>(FromParamND)) {
1325 DiffTypes(FromIter, ToIter);
1326 } else if (isa<TemplateTemplateParmDecl>(FromParamND)) {
1327 DiffTemplateTemplates(FromIter, ToIter);
1328 } else if (isa<NonTypeTemplateParmDecl>(FromParamND)) {
1329 NonTypeTemplateParmDecl *FromDefaultNonTypeDecl =
1330 cast<NonTypeTemplateParmDecl>(FromParamND);
1331 NonTypeTemplateParmDecl *ToDefaultNonTypeDecl =
1332 cast<NonTypeTemplateParmDecl>(ToParamND);
Richard Trieu9fee0b72014-08-27 06:24:47 +00001333 DiffNonTypes(FromIter, ToIter, FromDefaultNonTypeDecl,
1334 ToDefaultNonTypeDecl);
Richard Trieu2c22a862016-01-15 01:08:56 +00001335 } else {
1336 llvm_unreachable("Unexpected Decl type.");
1337 }
Richard Trieu91844232012-06-26 18:18:47 +00001338
Richard Trieu64ab30392013-03-15 23:55:09 +00001339 ++FromIter;
1340 ++ToIter;
Richard Trieu91844232012-06-26 18:18:47 +00001341 Tree.Up();
1342 }
1343 }
1344
Richard Trieu8e14cac2012-09-28 19:51:57 +00001345 /// makeTemplateList - Dump every template alias into the vector.
1346 static void makeTemplateList(
Craig Topper5603df42013-07-05 19:34:19 +00001347 SmallVectorImpl<const TemplateSpecializationType *> &TemplateList,
Richard Trieu8e14cac2012-09-28 19:51:57 +00001348 const TemplateSpecializationType *TST) {
1349 while (TST) {
1350 TemplateList.push_back(TST);
1351 if (!TST->isTypeAlias())
1352 return;
1353 TST = TST->getAliasedType()->getAs<TemplateSpecializationType>();
1354 }
1355 }
1356
1357 /// hasSameBaseTemplate - Returns true when the base templates are the same,
1358 /// even if the template arguments are not.
1359 static bool hasSameBaseTemplate(const TemplateSpecializationType *FromTST,
1360 const TemplateSpecializationType *ToTST) {
Douglas Gregor8e9f55f2013-01-31 01:08:35 +00001361 return FromTST->getTemplateName().getAsTemplateDecl()->getCanonicalDecl() ==
1362 ToTST->getTemplateName().getAsTemplateDecl()->getCanonicalDecl();
Richard Trieu8e14cac2012-09-28 19:51:57 +00001363 }
1364
Richard Trieu91844232012-06-26 18:18:47 +00001365 /// hasSameTemplate - Returns true if both types are specialized from the
1366 /// same template declaration. If they come from different template aliases,
1367 /// do a parallel ascension search to determine the highest template alias in
1368 /// common and set the arguments to them.
1369 static bool hasSameTemplate(const TemplateSpecializationType *&FromTST,
1370 const TemplateSpecializationType *&ToTST) {
1371 // Check the top templates if they are the same.
Richard Trieu8e14cac2012-09-28 19:51:57 +00001372 if (hasSameBaseTemplate(FromTST, ToTST))
Richard Trieu91844232012-06-26 18:18:47 +00001373 return true;
1374
1375 // Create vectors of template aliases.
1376 SmallVector<const TemplateSpecializationType*, 1> FromTemplateList,
1377 ToTemplateList;
1378
Richard Trieu8e14cac2012-09-28 19:51:57 +00001379 makeTemplateList(FromTemplateList, FromTST);
1380 makeTemplateList(ToTemplateList, ToTST);
Richard Trieu91844232012-06-26 18:18:47 +00001381
Craig Topper61ac9062013-07-08 03:55:09 +00001382 SmallVectorImpl<const TemplateSpecializationType *>::reverse_iterator
Richard Trieu91844232012-06-26 18:18:47 +00001383 FromIter = FromTemplateList.rbegin(), FromEnd = FromTemplateList.rend(),
1384 ToIter = ToTemplateList.rbegin(), ToEnd = ToTemplateList.rend();
1385
1386 // Check if the lowest template types are the same. If not, return.
Richard Trieu8e14cac2012-09-28 19:51:57 +00001387 if (!hasSameBaseTemplate(*FromIter, *ToIter))
Richard Trieu91844232012-06-26 18:18:47 +00001388 return false;
1389
1390 // Begin searching up the template aliases. The bottom most template
1391 // matches so move up until one pair does not match. Use the template
1392 // right before that one.
1393 for (; FromIter != FromEnd && ToIter != ToEnd; ++FromIter, ++ToIter) {
Richard Trieu8e14cac2012-09-28 19:51:57 +00001394 if (!hasSameBaseTemplate(*FromIter, *ToIter))
Richard Trieu91844232012-06-26 18:18:47 +00001395 break;
1396 }
1397
1398 FromTST = FromIter[-1];
1399 ToTST = ToIter[-1];
1400
1401 return true;
1402 }
1403
1404 /// GetType - Retrieves the template type arguments, including default
1405 /// arguments.
Richard Trieu2c22a862016-01-15 01:08:56 +00001406 static QualType GetType(const TSTiterator &Iter) {
Richard Trieu91844232012-06-26 18:18:47 +00001407 if (!Iter.isEnd())
Richard Trieu17f13ec2013-04-03 03:06:48 +00001408 return Iter->getAsType();
Richard Trieu2c22a862016-01-15 01:08:56 +00001409 if (Iter.hasDesugaredTA())
Richard Trieuac1e2f82016-01-14 23:30:12 +00001410 return Iter.getDesugaredTA().getAsType();
Richard Trieu2c22a862016-01-15 01:08:56 +00001411 return QualType();
Richard Trieu38800892014-07-24 04:24:50 +00001412 }
1413
Richard Trieu91844232012-06-26 18:18:47 +00001414 /// GetTemplateDecl - Retrieves the template template arguments, including
1415 /// default arguments.
Richard Trieu2c22a862016-01-15 01:08:56 +00001416 static TemplateDecl *GetTemplateDecl(const TSTiterator &Iter) {
Richard Trieu91844232012-06-26 18:18:47 +00001417 if (!Iter.isEnd())
Richard Trieu17f13ec2013-04-03 03:06:48 +00001418 return Iter->getAsTemplate().getAsTemplateDecl();
Richard Trieu2c22a862016-01-15 01:08:56 +00001419 if (Iter.hasDesugaredTA())
1420 return Iter.getDesugaredTA().getAsTemplate().getAsTemplateDecl();
Craig Topper36250ad2014-05-12 05:36:57 +00001421 return nullptr;
Richard Trieu91844232012-06-26 18:18:47 +00001422 }
1423
Richard Trieu2c22a862016-01-15 01:08:56 +00001424 /// IsEqualExpr - Returns true if the expressions are the same in regards to
1425 /// template arguments. These expressions are dependent, so profile them
1426 /// instead of trying to evaluate them.
Richard Trieu15b66532015-01-24 02:48:32 +00001427 static bool IsEqualExpr(ASTContext &Context, Expr *FromExpr, Expr *ToExpr) {
Richard Trieu91844232012-06-26 18:18:47 +00001428 if (FromExpr == ToExpr)
1429 return true;
1430
1431 if (!FromExpr || !ToExpr)
1432 return false;
1433
Richard Trieu2c22a862016-01-15 01:08:56 +00001434 llvm::FoldingSetNodeID FromID, ToID;
1435 FromExpr->Profile(FromID, Context, true);
1436 ToExpr->Profile(ToID, Context, true);
1437 return FromID == ToID;
Richard Trieu91844232012-06-26 18:18:47 +00001438 }
1439
1440 // These functions converts the tree representation of the template
1441 // differences into the internal character vector.
1442
1443 /// TreeToString - Converts the Tree object into a character stream which
1444 /// will later be turned into the output string.
1445 void TreeToString(int Indent = 1) {
1446 if (PrintTree) {
1447 OS << '\n';
Benjamin Kramer6582c362013-02-22 16:13:34 +00001448 OS.indent(2 * Indent);
Richard Trieu91844232012-06-26 18:18:47 +00001449 ++Indent;
1450 }
1451
1452 // Handle cases where the difference is not templates with different
1453 // arguments.
Richard Trieub4cff112013-03-15 20:35:18 +00001454 switch (Tree.GetKind()) {
Richard Trieub4cff112013-03-15 20:35:18 +00001455 case DiffTree::Invalid:
1456 llvm_unreachable("Template diffing failed with bad DiffNode");
1457 case DiffTree::Type: {
Richard Trieu91844232012-06-26 18:18:47 +00001458 QualType FromType, ToType;
Richard Trieu14714c42016-01-14 22:56:39 +00001459 Tree.GetTypeDiff(FromType, ToType);
Richard Trieu91844232012-06-26 18:18:47 +00001460 PrintTypeNames(FromType, ToType, Tree.FromDefault(), Tree.ToDefault(),
1461 Tree.NodeIsSame());
1462 return;
1463 }
Richard Trieub4cff112013-03-15 20:35:18 +00001464 case DiffTree::Expression: {
Richard Trieu91844232012-06-26 18:18:47 +00001465 Expr *FromExpr, *ToExpr;
Richard Trieu2c22a862016-01-15 01:08:56 +00001466 Tree.GetExpressionDiff(FromExpr, ToExpr);
1467 PrintExpr(FromExpr, ToExpr, Tree.FromDefault(), Tree.ToDefault(),
1468 Tree.NodeIsSame());
Richard Trieu91844232012-06-26 18:18:47 +00001469 return;
1470 }
Richard Trieub4cff112013-03-15 20:35:18 +00001471 case DiffTree::TemplateTemplate: {
Richard Trieu91844232012-06-26 18:18:47 +00001472 TemplateDecl *FromTD, *ToTD;
Richard Trieu14714c42016-01-14 22:56:39 +00001473 Tree.GetTemplateTemplateDiff(FromTD, ToTD);
Richard Trieu91844232012-06-26 18:18:47 +00001474 PrintTemplateTemplate(FromTD, ToTD, Tree.FromDefault(),
1475 Tree.ToDefault(), Tree.NodeIsSame());
1476 return;
1477 }
Richard Trieub4cff112013-03-15 20:35:18 +00001478 case DiffTree::Integer: {
Richard Trieu6df89452012-11-01 21:29:28 +00001479 llvm::APSInt FromInt, ToInt;
Richard Trieu64ab30392013-03-15 23:55:09 +00001480 Expr *FromExpr, *ToExpr;
Richard Trieu6df89452012-11-01 21:29:28 +00001481 bool IsValidFromInt, IsValidToInt;
Richard Trieud5c73782016-01-15 02:55:17 +00001482 QualType FromIntType, ToIntType;
Richard Trieu14714c42016-01-14 22:56:39 +00001483 Tree.GetIntegerDiff(FromInt, ToInt, IsValidFromInt, IsValidToInt,
Richard Trieud5c73782016-01-15 02:55:17 +00001484 FromIntType, ToIntType, FromExpr, ToExpr);
1485 PrintAPSInt(FromInt, ToInt, IsValidFromInt, IsValidToInt, FromIntType,
1486 ToIntType, FromExpr, ToExpr, Tree.FromDefault(),
1487 Tree.ToDefault(), Tree.NodeIsSame());
Richard Trieu6df89452012-11-01 21:29:28 +00001488 return;
1489 }
Richard Trieub4cff112013-03-15 20:35:18 +00001490 case DiffTree::Declaration: {
Richard Trieu954aaaf2013-02-27 01:41:53 +00001491 ValueDecl *FromValueDecl, *ToValueDecl;
Richard Trieu091872c52013-05-07 21:36:24 +00001492 bool FromAddressOf, ToAddressOf;
Richard Trieu14714c42016-01-14 22:56:39 +00001493 bool FromNullPtr, ToNullPtr;
Richard Trieu2c22a862016-01-15 01:08:56 +00001494 Expr *FromExpr, *ToExpr;
Richard Trieu14714c42016-01-14 22:56:39 +00001495 Tree.GetDeclarationDiff(FromValueDecl, ToValueDecl, FromAddressOf,
Richard Trieu2c22a862016-01-15 01:08:56 +00001496 ToAddressOf, FromNullPtr, ToNullPtr, FromExpr,
1497 ToExpr);
Richard Trieu091872c52013-05-07 21:36:24 +00001498 PrintValueDecl(FromValueDecl, ToValueDecl, FromAddressOf, ToAddressOf,
Richard Trieu2c22a862016-01-15 01:08:56 +00001499 FromNullPtr, ToNullPtr, FromExpr, ToExpr,
1500 Tree.FromDefault(), Tree.ToDefault(), Tree.NodeIsSame());
Richard Trieu954aaaf2013-02-27 01:41:53 +00001501 return;
1502 }
Richard Trieu9213ce52016-01-15 05:01:53 +00001503 case DiffTree::FromDeclarationAndToInteger: {
1504 ValueDecl *FromValueDecl;
1505 bool FromAddressOf;
1506 bool FromNullPtr;
1507 Expr *FromExpr;
1508 llvm::APSInt ToInt;
1509 bool IsValidToInt;
1510 QualType ToIntType;
1511 Expr *ToExpr;
1512 Tree.GetFromDeclarationAndToIntegerDiff(
1513 FromValueDecl, FromAddressOf, FromNullPtr, FromExpr, ToInt,
1514 IsValidToInt, ToIntType, ToExpr);
1515 assert((FromValueDecl || FromNullPtr) && IsValidToInt);
1516 PrintValueDeclAndInteger(FromValueDecl, FromAddressOf, FromNullPtr,
1517 FromExpr, Tree.FromDefault(), ToInt, ToIntType,
1518 ToExpr, Tree.ToDefault());
1519 return;
1520 }
1521 case DiffTree::FromIntegerAndToDeclaration: {
1522 llvm::APSInt FromInt;
1523 bool IsValidFromInt;
1524 QualType FromIntType;
1525 Expr *FromExpr;
1526 ValueDecl *ToValueDecl;
1527 bool ToAddressOf;
1528 bool ToNullPtr;
1529 Expr *ToExpr;
1530 Tree.GetFromIntegerAndToDeclarationDiff(
1531 FromInt, IsValidFromInt, FromIntType, FromExpr, ToValueDecl,
1532 ToAddressOf, ToNullPtr, ToExpr);
1533 assert(IsValidFromInt && (ToValueDecl || ToNullPtr));
1534 PrintIntegerAndValueDecl(FromInt, FromIntType, FromExpr,
1535 Tree.FromDefault(), ToValueDecl, ToAddressOf,
1536 ToNullPtr, ToExpr, Tree.ToDefault());
1537 return;
1538 }
Richard Trieub4cff112013-03-15 20:35:18 +00001539 case DiffTree::Template: {
1540 // Node is root of template. Recurse on children.
1541 TemplateDecl *FromTD, *ToTD;
Richard Trieu14714c42016-01-14 22:56:39 +00001542 Qualifiers FromQual, ToQual;
1543 Tree.GetTemplateDiff(FromTD, ToTD, FromQual, ToQual);
Richard Trieu954aaaf2013-02-27 01:41:53 +00001544
Richard Trieu2331c8b2016-01-15 05:48:38 +00001545 PrintQualifiers(FromQual, ToQual);
1546
Richard Trieub4cff112013-03-15 20:35:18 +00001547 if (!Tree.HasChildren()) {
1548 // If we're dealing with a template specialization with zero
1549 // arguments, there are no children; special-case this.
1550 OS << FromTD->getNameAsString() << "<>";
1551 return;
Richard Trieu91844232012-06-26 18:18:47 +00001552 }
Richard Trieub4cff112013-03-15 20:35:18 +00001553
Richard Trieu14714c42016-01-14 22:56:39 +00001554 OS << FromTD->getNameAsString() << '<';
Richard Trieub4cff112013-03-15 20:35:18 +00001555 Tree.MoveToChild();
1556 unsigned NumElideArgs = 0;
Richard Trieu12074502016-02-02 00:36:59 +00001557 bool AllArgsElided = true;
Richard Trieub4cff112013-03-15 20:35:18 +00001558 do {
1559 if (ElideType) {
1560 if (Tree.NodeIsSame()) {
1561 ++NumElideArgs;
1562 continue;
1563 }
Richard Trieu12074502016-02-02 00:36:59 +00001564 AllArgsElided = false;
Richard Trieub4cff112013-03-15 20:35:18 +00001565 if (NumElideArgs > 0) {
1566 PrintElideArgs(NumElideArgs, Indent);
1567 NumElideArgs = 0;
1568 OS << ", ";
1569 }
1570 }
1571 TreeToString(Indent);
1572 if (Tree.HasNextSibling())
1573 OS << ", ";
1574 } while (Tree.AdvanceSibling());
Richard Trieu12074502016-02-02 00:36:59 +00001575 if (NumElideArgs > 0) {
1576 if (AllArgsElided)
1577 OS << "...";
1578 else
1579 PrintElideArgs(NumElideArgs, Indent);
1580 }
Richard Trieu91844232012-06-26 18:18:47 +00001581
Richard Trieub4cff112013-03-15 20:35:18 +00001582 Tree.Parent();
1583 OS << ">";
1584 return;
1585 }
1586 }
Richard Trieu91844232012-06-26 18:18:47 +00001587 }
1588
1589 // To signal to the text printer that a certain text needs to be bolded,
1590 // a special character is injected into the character stream which the
1591 // text printer will later strip out.
1592
1593 /// Bold - Start bolding text.
1594 void Bold() {
1595 assert(!IsBold && "Attempting to bold text that is already bold.");
1596 IsBold = true;
1597 if (ShowColor)
1598 OS << ToggleHighlight;
1599 }
1600
1601 /// Unbold - Stop bolding text.
1602 void Unbold() {
1603 assert(IsBold && "Attempting to remove bold from unbold text.");
1604 IsBold = false;
1605 if (ShowColor)
1606 OS << ToggleHighlight;
1607 }
1608
1609 // Functions to print out the arguments and highlighting the difference.
1610
1611 /// PrintTypeNames - prints the typenames, bolding differences. Will detect
1612 /// typenames that are the same and attempt to disambiguate them by using
1613 /// canonical typenames.
1614 void PrintTypeNames(QualType FromType, QualType ToType,
1615 bool FromDefault, bool ToDefault, bool Same) {
1616 assert((!FromType.isNull() || !ToType.isNull()) &&
1617 "Only one template argument may be missing.");
1618
1619 if (Same) {
Richard Trieud86c9012014-07-25 00:24:02 +00001620 OS << FromType.getAsString(Policy);
Richard Trieu91844232012-06-26 18:18:47 +00001621 return;
1622 }
1623
Richard Trieub7243852012-09-28 20:32:51 +00001624 if (!FromType.isNull() && !ToType.isNull() &&
1625 FromType.getLocalUnqualifiedType() ==
1626 ToType.getLocalUnqualifiedType()) {
1627 Qualifiers FromQual = FromType.getLocalQualifiers(),
Alp Tokeraced95a2013-11-26 02:52:41 +00001628 ToQual = ToType.getLocalQualifiers();
Richard Trieub7243852012-09-28 20:32:51 +00001629 PrintQualifiers(FromQual, ToQual);
1630 FromType.getLocalUnqualifiedType().print(OS, Policy);
1631 return;
1632 }
1633
Richard Trieu91844232012-06-26 18:18:47 +00001634 std::string FromTypeStr = FromType.isNull() ? "(no argument)"
Richard Trieud86c9012014-07-25 00:24:02 +00001635 : FromType.getAsString(Policy);
Richard Trieu91844232012-06-26 18:18:47 +00001636 std::string ToTypeStr = ToType.isNull() ? "(no argument)"
Richard Trieud86c9012014-07-25 00:24:02 +00001637 : ToType.getAsString(Policy);
Richard Trieu91844232012-06-26 18:18:47 +00001638 // Switch to canonical typename if it is better.
1639 // TODO: merge this with other aka printing above.
1640 if (FromTypeStr == ToTypeStr) {
Richard Trieud86c9012014-07-25 00:24:02 +00001641 std::string FromCanTypeStr =
1642 FromType.getCanonicalType().getAsString(Policy);
1643 std::string ToCanTypeStr = ToType.getCanonicalType().getAsString(Policy);
Richard Trieu91844232012-06-26 18:18:47 +00001644 if (FromCanTypeStr != ToCanTypeStr) {
1645 FromTypeStr = FromCanTypeStr;
1646 ToTypeStr = ToCanTypeStr;
1647 }
1648 }
1649
1650 if (PrintTree) OS << '[';
1651 OS << (FromDefault ? "(default) " : "");
1652 Bold();
1653 OS << FromTypeStr;
1654 Unbold();
1655 if (PrintTree) {
1656 OS << " != " << (ToDefault ? "(default) " : "");
1657 Bold();
1658 OS << ToTypeStr;
1659 Unbold();
1660 OS << "]";
1661 }
Richard Trieu91844232012-06-26 18:18:47 +00001662 }
1663
1664 /// PrintExpr - Prints out the expr template arguments, highlighting argument
1665 /// differences.
Richard Trieu2c22a862016-01-15 01:08:56 +00001666 void PrintExpr(const Expr *FromExpr, const Expr *ToExpr, bool FromDefault,
1667 bool ToDefault, bool Same) {
Richard Trieu91844232012-06-26 18:18:47 +00001668 assert((FromExpr || ToExpr) &&
1669 "Only one template argument may be missing.");
1670 if (Same) {
Richard Trieu2c22a862016-01-15 01:08:56 +00001671 PrintExpr(FromExpr);
Richard Trieu91844232012-06-26 18:18:47 +00001672 } else if (!PrintTree) {
1673 OS << (FromDefault ? "(default) " : "");
1674 Bold();
Richard Trieu2c22a862016-01-15 01:08:56 +00001675 PrintExpr(FromExpr);
Richard Trieu91844232012-06-26 18:18:47 +00001676 Unbold();
1677 } else {
1678 OS << (FromDefault ? "[(default) " : "[");
1679 Bold();
Richard Trieu2c22a862016-01-15 01:08:56 +00001680 PrintExpr(FromExpr);
Richard Trieu91844232012-06-26 18:18:47 +00001681 Unbold();
1682 OS << " != " << (ToDefault ? "(default) " : "");
1683 Bold();
Richard Trieu2c22a862016-01-15 01:08:56 +00001684 PrintExpr(ToExpr);
Richard Trieu91844232012-06-26 18:18:47 +00001685 Unbold();
1686 OS << ']';
1687 }
1688 }
1689
1690 /// PrintExpr - Actual formatting and printing of expressions.
Richard Trieu2c22a862016-01-15 01:08:56 +00001691 void PrintExpr(const Expr *E) {
Richard Trieu38800892014-07-24 04:24:50 +00001692 if (E) {
Craig Topper36250ad2014-05-12 05:36:57 +00001693 E->printPretty(OS, nullptr, Policy);
Richard Trieu38800892014-07-24 04:24:50 +00001694 return;
1695 }
Richard Trieu38800892014-07-24 04:24:50 +00001696 OS << "(no argument)";
Richard Trieu91844232012-06-26 18:18:47 +00001697 }
1698
1699 /// PrintTemplateTemplate - Handles printing of template template arguments,
1700 /// highlighting argument differences.
1701 void PrintTemplateTemplate(TemplateDecl *FromTD, TemplateDecl *ToTD,
1702 bool FromDefault, bool ToDefault, bool Same) {
1703 assert((FromTD || ToTD) && "Only one template argument may be missing.");
Richard Trieue673d71a2013-01-31 02:47:46 +00001704
1705 std::string FromName = FromTD ? FromTD->getName() : "(no argument)";
1706 std::string ToName = ToTD ? ToTD->getName() : "(no argument)";
1707 if (FromTD && ToTD && FromName == ToName) {
1708 FromName = FromTD->getQualifiedNameAsString();
1709 ToName = ToTD->getQualifiedNameAsString();
1710 }
1711
Richard Trieu91844232012-06-26 18:18:47 +00001712 if (Same) {
1713 OS << "template " << FromTD->getNameAsString();
1714 } else if (!PrintTree) {
1715 OS << (FromDefault ? "(default) template " : "template ");
1716 Bold();
Richard Trieue673d71a2013-01-31 02:47:46 +00001717 OS << FromName;
Richard Trieu91844232012-06-26 18:18:47 +00001718 Unbold();
1719 } else {
1720 OS << (FromDefault ? "[(default) template " : "[template ");
1721 Bold();
Richard Trieue673d71a2013-01-31 02:47:46 +00001722 OS << FromName;
Richard Trieu91844232012-06-26 18:18:47 +00001723 Unbold();
1724 OS << " != " << (ToDefault ? "(default) template " : "template ");
1725 Bold();
Richard Trieue673d71a2013-01-31 02:47:46 +00001726 OS << ToName;
Richard Trieu91844232012-06-26 18:18:47 +00001727 Unbold();
1728 OS << ']';
1729 }
1730 }
1731
Richard Trieu6df89452012-11-01 21:29:28 +00001732 /// PrintAPSInt - Handles printing of integral arguments, highlighting
1733 /// argument differences.
Benjamin Kramer7320b992016-06-15 14:20:56 +00001734 void PrintAPSInt(const llvm::APSInt &FromInt, const llvm::APSInt &ToInt,
Richard Trieud5c73782016-01-15 02:55:17 +00001735 bool IsValidFromInt, bool IsValidToInt, QualType FromIntType,
1736 QualType ToIntType, Expr *FromExpr, Expr *ToExpr,
1737 bool FromDefault, bool ToDefault, bool Same) {
Richard Trieu6df89452012-11-01 21:29:28 +00001738 assert((IsValidFromInt || IsValidToInt) &&
1739 "Only one integral argument may be missing.");
1740
1741 if (Same) {
Richard Trieud5c73782016-01-15 02:55:17 +00001742 if (FromIntType->isBooleanType()) {
1743 OS << ((FromInt == 0) ? "false" : "true");
1744 } else {
1745 OS << FromInt.toString(10);
1746 }
1747 return;
1748 }
1749
1750 bool PrintType = IsValidFromInt && IsValidToInt &&
1751 !Context.hasSameType(FromIntType, ToIntType);
1752
1753 if (!PrintTree) {
Richard Trieu6df89452012-11-01 21:29:28 +00001754 OS << (FromDefault ? "(default) " : "");
Richard Trieud5c73782016-01-15 02:55:17 +00001755 PrintAPSInt(FromInt, FromExpr, IsValidFromInt, FromIntType, PrintType);
Richard Trieu6df89452012-11-01 21:29:28 +00001756 } else {
1757 OS << (FromDefault ? "[(default) " : "[");
Richard Trieud5c73782016-01-15 02:55:17 +00001758 PrintAPSInt(FromInt, FromExpr, IsValidFromInt, FromIntType, PrintType);
Richard Trieu6df89452012-11-01 21:29:28 +00001759 OS << " != " << (ToDefault ? "(default) " : "");
Richard Trieud5c73782016-01-15 02:55:17 +00001760 PrintAPSInt(ToInt, ToExpr, IsValidToInt, ToIntType, PrintType);
Richard Trieu6df89452012-11-01 21:29:28 +00001761 OS << ']';
1762 }
1763 }
1764
Richard Trieu64ab30392013-03-15 23:55:09 +00001765 /// PrintAPSInt - If valid, print the APSInt. If the expression is
1766 /// gives more information, print it too.
Benjamin Kramer7320b992016-06-15 14:20:56 +00001767 void PrintAPSInt(const llvm::APSInt &Val, Expr *E, bool Valid,
1768 QualType IntType, bool PrintType) {
Richard Trieu64ab30392013-03-15 23:55:09 +00001769 Bold();
1770 if (Valid) {
1771 if (HasExtraInfo(E)) {
1772 PrintExpr(E);
1773 Unbold();
1774 OS << " aka ";
1775 Bold();
1776 }
Richard Trieud5c73782016-01-15 02:55:17 +00001777 if (PrintType) {
1778 Unbold();
1779 OS << "(";
1780 Bold();
1781 IntType.print(OS, Context.getPrintingPolicy());
1782 Unbold();
1783 OS << ") ";
1784 Bold();
1785 }
1786 if (IntType->isBooleanType()) {
1787 OS << ((Val == 0) ? "false" : "true");
1788 } else {
1789 OS << Val.toString(10);
1790 }
Nikola Smiljanic3fe1e092014-07-01 04:17:53 +00001791 } else if (E) {
1792 PrintExpr(E);
Richard Trieu64ab30392013-03-15 23:55:09 +00001793 } else {
1794 OS << "(no argument)";
1795 }
1796 Unbold();
1797 }
Richard Trieu15b66532015-01-24 02:48:32 +00001798
Richard Trieu14714c42016-01-14 22:56:39 +00001799 /// HasExtraInfo - Returns true if E is not an integer literal, the
1800 /// negation of an integer literal, or a boolean literal.
Richard Trieu64ab30392013-03-15 23:55:09 +00001801 bool HasExtraInfo(Expr *E) {
1802 if (!E) return false;
Richard Trieu15b66532015-01-24 02:48:32 +00001803
1804 E = E->IgnoreImpCasts();
1805
Richard Trieu64ab30392013-03-15 23:55:09 +00001806 if (isa<IntegerLiteral>(E)) return false;
1807
1808 if (UnaryOperator *UO = dyn_cast<UnaryOperator>(E))
1809 if (UO->getOpcode() == UO_Minus)
1810 if (isa<IntegerLiteral>(UO->getSubExpr()))
1811 return false;
1812
Richard Trieu14714c42016-01-14 22:56:39 +00001813 if (isa<CXXBoolLiteralExpr>(E))
1814 return false;
1815
Richard Trieu64ab30392013-03-15 23:55:09 +00001816 return true;
1817 }
1818
Richard Trieu2c22a862016-01-15 01:08:56 +00001819 void PrintValueDecl(ValueDecl *VD, bool AddressOf, Expr *E, bool NullPtr) {
Richard Trieu38800892014-07-24 04:24:50 +00001820 if (VD) {
1821 if (AddressOf)
1822 OS << "&";
1823 OS << VD->getName();
1824 return;
1825 }
1826
1827 if (NullPtr) {
Richard Trieu2c22a862016-01-15 01:08:56 +00001828 if (E && !isa<CXXNullPtrLiteralExpr>(E)) {
1829 PrintExpr(E);
1830 if (IsBold) {
1831 Unbold();
1832 OS << " aka ";
1833 Bold();
1834 } else {
1835 OS << " aka ";
1836 }
1837 }
1838
Richard Trieu38800892014-07-24 04:24:50 +00001839 OS << "nullptr";
1840 return;
1841 }
1842
1843 OS << "(no argument)";
1844 }
1845
Richard Trieu954aaaf2013-02-27 01:41:53 +00001846 /// PrintDecl - Handles printing of Decl arguments, highlighting
1847 /// argument differences.
1848 void PrintValueDecl(ValueDecl *FromValueDecl, ValueDecl *ToValueDecl,
Richard Trieu38800892014-07-24 04:24:50 +00001849 bool FromAddressOf, bool ToAddressOf, bool FromNullPtr,
Richard Trieu2c22a862016-01-15 01:08:56 +00001850 bool ToNullPtr, Expr *FromExpr, Expr *ToExpr,
1851 bool FromDefault, bool ToDefault, bool Same) {
Richard Trieu38800892014-07-24 04:24:50 +00001852 assert((FromValueDecl || FromNullPtr || ToValueDecl || ToNullPtr) &&
Richard Trieu954aaaf2013-02-27 01:41:53 +00001853 "Only one Decl argument may be NULL");
1854
1855 if (Same) {
Richard Trieu2c22a862016-01-15 01:08:56 +00001856 PrintValueDecl(FromValueDecl, FromAddressOf, FromExpr, FromNullPtr);
Richard Trieu954aaaf2013-02-27 01:41:53 +00001857 } else if (!PrintTree) {
1858 OS << (FromDefault ? "(default) " : "");
1859 Bold();
Richard Trieu2c22a862016-01-15 01:08:56 +00001860 PrintValueDecl(FromValueDecl, FromAddressOf, FromExpr, FromNullPtr);
Richard Trieu954aaaf2013-02-27 01:41:53 +00001861 Unbold();
1862 } else {
1863 OS << (FromDefault ? "[(default) " : "[");
1864 Bold();
Richard Trieu2c22a862016-01-15 01:08:56 +00001865 PrintValueDecl(FromValueDecl, FromAddressOf, FromExpr, FromNullPtr);
Richard Trieu954aaaf2013-02-27 01:41:53 +00001866 Unbold();
1867 OS << " != " << (ToDefault ? "(default) " : "");
1868 Bold();
Richard Trieu2c22a862016-01-15 01:08:56 +00001869 PrintValueDecl(ToValueDecl, ToAddressOf, ToExpr, ToNullPtr);
Richard Trieu954aaaf2013-02-27 01:41:53 +00001870 Unbold();
1871 OS << ']';
1872 }
Richard Trieu954aaaf2013-02-27 01:41:53 +00001873 }
1874
Richard Trieu9213ce52016-01-15 05:01:53 +00001875 /// PrintValueDeclAndInteger - Uses the print functions for ValueDecl and
1876 /// APSInt to print a mixed difference.
1877 void PrintValueDeclAndInteger(ValueDecl *VD, bool NeedAddressOf,
1878 bool IsNullPtr, Expr *VDExpr, bool DefaultDecl,
Benjamin Kramer7320b992016-06-15 14:20:56 +00001879 const llvm::APSInt &Val, QualType IntType,
Richard Trieu9213ce52016-01-15 05:01:53 +00001880 Expr *IntExpr, bool DefaultInt) {
1881 if (!PrintTree) {
1882 OS << (DefaultDecl ? "(default) " : "");
1883 Bold();
1884 PrintValueDecl(VD, NeedAddressOf, VDExpr, IsNullPtr);
1885 Unbold();
1886 } else {
1887 OS << (DefaultDecl ? "[(default) " : "[");
1888 Bold();
1889 PrintValueDecl(VD, NeedAddressOf, VDExpr, IsNullPtr);
1890 Unbold();
1891 OS << " != " << (DefaultInt ? "(default) " : "");
1892 PrintAPSInt(Val, IntExpr, true /*Valid*/, IntType, false /*PrintType*/);
1893 OS << ']';
1894 }
1895 }
1896
1897 /// PrintIntegerAndValueDecl - Uses the print functions for APSInt and
1898 /// ValueDecl to print a mixed difference.
Benjamin Kramer7320b992016-06-15 14:20:56 +00001899 void PrintIntegerAndValueDecl(const llvm::APSInt &Val, QualType IntType,
Richard Trieu9213ce52016-01-15 05:01:53 +00001900 Expr *IntExpr, bool DefaultInt, ValueDecl *VD,
1901 bool NeedAddressOf, bool IsNullPtr,
1902 Expr *VDExpr, bool DefaultDecl) {
1903 if (!PrintTree) {
1904 OS << (DefaultInt ? "(default) " : "");
1905 PrintAPSInt(Val, IntExpr, true /*Valid*/, IntType, false /*PrintType*/);
1906 } else {
1907 OS << (DefaultInt ? "[(default) " : "[");
1908 PrintAPSInt(Val, IntExpr, true /*Valid*/, IntType, false /*PrintType*/);
1909 OS << " != " << (DefaultDecl ? "(default) " : "");
1910 Bold();
1911 PrintValueDecl(VD, NeedAddressOf, VDExpr, IsNullPtr);
1912 Unbold();
1913 OS << ']';
1914 }
1915 }
1916
Richard Trieu91844232012-06-26 18:18:47 +00001917 // Prints the appropriate placeholder for elided template arguments.
1918 void PrintElideArgs(unsigned NumElideArgs, unsigned Indent) {
1919 if (PrintTree) {
1920 OS << '\n';
1921 for (unsigned i = 0; i < Indent; ++i)
1922 OS << " ";
1923 }
1924 if (NumElideArgs == 0) return;
1925 if (NumElideArgs == 1)
1926 OS << "[...]";
1927 else
1928 OS << "[" << NumElideArgs << " * ...]";
1929 }
1930
Richard Trieub7243852012-09-28 20:32:51 +00001931 // Prints and highlights differences in Qualifiers.
1932 void PrintQualifiers(Qualifiers FromQual, Qualifiers ToQual) {
1933 // Both types have no qualifiers
1934 if (FromQual.empty() && ToQual.empty())
1935 return;
1936
1937 // Both types have same qualifiers
1938 if (FromQual == ToQual) {
1939 PrintQualifier(FromQual, /*ApplyBold*/false);
1940 return;
1941 }
1942
1943 // Find common qualifiers and strip them from FromQual and ToQual.
1944 Qualifiers CommonQual = Qualifiers::removeCommonQualifiers(FromQual,
1945 ToQual);
1946
1947 // The qualifiers are printed before the template name.
1948 // Inline printing:
1949 // The common qualifiers are printed. Then, qualifiers only in this type
1950 // are printed and highlighted. Finally, qualifiers only in the other
1951 // type are printed and highlighted inside parentheses after "missing".
1952 // Tree printing:
1953 // Qualifiers are printed next to each other, inside brackets, and
1954 // separated by "!=". The printing order is:
1955 // common qualifiers, highlighted from qualifiers, "!=",
1956 // common qualifiers, highlighted to qualifiers
1957 if (PrintTree) {
1958 OS << "[";
1959 if (CommonQual.empty() && FromQual.empty()) {
1960 Bold();
1961 OS << "(no qualifiers) ";
1962 Unbold();
1963 } else {
1964 PrintQualifier(CommonQual, /*ApplyBold*/false);
1965 PrintQualifier(FromQual, /*ApplyBold*/true);
1966 }
1967 OS << "!= ";
1968 if (CommonQual.empty() && ToQual.empty()) {
1969 Bold();
1970 OS << "(no qualifiers)";
1971 Unbold();
1972 } else {
1973 PrintQualifier(CommonQual, /*ApplyBold*/false,
1974 /*appendSpaceIfNonEmpty*/!ToQual.empty());
1975 PrintQualifier(ToQual, /*ApplyBold*/true,
1976 /*appendSpaceIfNonEmpty*/false);
1977 }
1978 OS << "] ";
1979 } else {
1980 PrintQualifier(CommonQual, /*ApplyBold*/false);
1981 PrintQualifier(FromQual, /*ApplyBold*/true);
1982 }
1983 }
1984
1985 void PrintQualifier(Qualifiers Q, bool ApplyBold,
1986 bool AppendSpaceIfNonEmpty = true) {
1987 if (Q.empty()) return;
1988 if (ApplyBold) Bold();
1989 Q.print(OS, Policy, AppendSpaceIfNonEmpty);
1990 if (ApplyBold) Unbold();
1991 }
1992
Richard Trieu91844232012-06-26 18:18:47 +00001993public:
1994
Benjamin Kramer8de90462013-02-22 16:08:12 +00001995 TemplateDiff(raw_ostream &OS, ASTContext &Context, QualType FromType,
1996 QualType ToType, bool PrintTree, bool PrintFromType,
1997 bool ElideType, bool ShowColor)
Richard Trieu91844232012-06-26 18:18:47 +00001998 : Context(Context),
1999 Policy(Context.getLangOpts()),
2000 ElideType(ElideType),
2001 PrintTree(PrintTree),
2002 ShowColor(ShowColor),
2003 // When printing a single type, the FromType is the one printed.
Richard Trieu2331c8b2016-01-15 05:48:38 +00002004 FromTemplateType(PrintFromType ? FromType : ToType),
2005 ToTemplateType(PrintFromType ? ToType : FromType),
Benjamin Kramer8de90462013-02-22 16:08:12 +00002006 OS(OS),
Richard Trieu91844232012-06-26 18:18:47 +00002007 IsBold(false) {
2008 }
2009
2010 /// DiffTemplate - Start the template type diffing.
2011 void DiffTemplate() {
Richard Trieu2331c8b2016-01-15 05:48:38 +00002012 Qualifiers FromQual = FromTemplateType.getQualifiers(),
2013 ToQual = ToTemplateType.getQualifiers();
Richard Trieub7243852012-09-28 20:32:51 +00002014
Richard Trieu91844232012-06-26 18:18:47 +00002015 const TemplateSpecializationType *FromOrigTST =
Richard Trieu2331c8b2016-01-15 05:48:38 +00002016 GetTemplateSpecializationType(Context, FromTemplateType);
Richard Trieu91844232012-06-26 18:18:47 +00002017 const TemplateSpecializationType *ToOrigTST =
Richard Trieu2331c8b2016-01-15 05:48:38 +00002018 GetTemplateSpecializationType(Context, ToTemplateType);
Richard Trieu91844232012-06-26 18:18:47 +00002019
2020 // Only checking templates.
2021 if (!FromOrigTST || !ToOrigTST)
2022 return;
2023
2024 // Different base templates.
2025 if (!hasSameTemplate(FromOrigTST, ToOrigTST)) {
2026 return;
2027 }
2028
Richard Trieub7243852012-09-28 20:32:51 +00002029 FromQual -= QualType(FromOrigTST, 0).getQualifiers();
2030 ToQual -= QualType(ToOrigTST, 0).getQualifiers();
Richard Trieu91844232012-06-26 18:18:47 +00002031
2032 // Same base template, but different arguments.
Richard Trieu14714c42016-01-14 22:56:39 +00002033 Tree.SetTemplateDiff(FromOrigTST->getTemplateName().getAsTemplateDecl(),
2034 ToOrigTST->getTemplateName().getAsTemplateDecl(),
2035 FromQual, ToQual, false /*FromDefault*/,
2036 false /*ToDefault*/);
Richard Trieu91844232012-06-26 18:18:47 +00002037
2038 DiffTemplate(FromOrigTST, ToOrigTST);
David Blaikie47e45182012-06-26 18:52:09 +00002039 }
Richard Trieu91844232012-06-26 18:18:47 +00002040
Benjamin Kramer6582c362013-02-22 16:13:34 +00002041 /// Emit - When the two types given are templated types with the same
Richard Trieu91844232012-06-26 18:18:47 +00002042 /// base template, a string representation of the type difference will be
Benjamin Kramer6582c362013-02-22 16:13:34 +00002043 /// emitted to the stream and return true. Otherwise, return false.
Benjamin Kramer8de90462013-02-22 16:08:12 +00002044 bool Emit() {
Richard Trieu91844232012-06-26 18:18:47 +00002045 Tree.StartTraverse();
2046 if (Tree.Empty())
2047 return false;
2048
2049 TreeToString();
2050 assert(!IsBold && "Bold is applied to end of string.");
Richard Trieu91844232012-06-26 18:18:47 +00002051 return true;
2052 }
2053}; // end class TemplateDiff
Eugene Zelenko0a4f3f42016-02-10 19:11:58 +00002054} // end anonymous namespace
Richard Trieu91844232012-06-26 18:18:47 +00002055
2056/// FormatTemplateTypeDiff - A helper static function to start the template
2057/// diff and return the properly formatted string. Returns true if the diff
2058/// is successful.
2059static bool FormatTemplateTypeDiff(ASTContext &Context, QualType FromType,
2060 QualType ToType, bool PrintTree,
Fangrui Song6907ce22018-07-30 19:24:48 +00002061 bool PrintFromType, bool ElideType,
Benjamin Kramer8de90462013-02-22 16:08:12 +00002062 bool ShowColors, raw_ostream &OS) {
Richard Trieu91844232012-06-26 18:18:47 +00002063 if (PrintTree)
2064 PrintFromType = true;
Benjamin Kramer8de90462013-02-22 16:08:12 +00002065 TemplateDiff TD(OS, Context, FromType, ToType, PrintTree, PrintFromType,
Richard Trieu91844232012-06-26 18:18:47 +00002066 ElideType, ShowColors);
2067 TD.DiffTemplate();
Benjamin Kramer8de90462013-02-22 16:08:12 +00002068 return TD.Emit();
Richard Trieu91844232012-06-26 18:18:47 +00002069}