forked from cppalliance/mrdocs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathASTVisitor.cpp
3488 lines (3219 loc) · 103 KB
/
ASTVisitor.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
//
// This is a derivative work. originally part of the LLVM Project.
// Licensed under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
// Copyright (c) 2023 Vinnie Falco ([email protected])
// Copyright (c) 2023 Krystian Stasiowski ([email protected])
// Copyright (c) 2024 Alan de Freitas ([email protected])
//
// Official repository: https://github.com/cppalliance/mrdocs
//
#include "lib/AST/ASTVisitor.hpp"
#include "lib/AST/NameInfoBuilder.hpp"
#include "lib/AST/ClangHelpers.hpp"
#include "lib/AST/ParseJavadoc.hpp"
#include "lib/AST/TypeInfoBuilder.hpp"
#include "lib/Support/Path.hpp"
#include "lib/Support/Debug.hpp"
#include "lib/Support/Radix.hpp"
#include "lib/Lib/Diagnostics.hpp"
#include <mrdocs/Metadata.hpp>
#include <mrdocs/Support/ScopeExit.hpp>
#include <mrdocs/Support/Algorithm.hpp>
#include <clang/AST/AST.h>
#include <clang/AST/Attr.h>
#include <clang/AST/ODRHash.h>
#include <clang/AST/TypeVisitor.h>
#include <clang/Frontend/CompilerInstance.h>
#include <clang/Index/USRGeneration.h>
#include <clang/Lex/Lexer.h>
#include <clang/Sema/Lookup.h>
#include <clang/Sema/Sema.h>
#include <clang/Sema/Template.h>
#include <llvm/ADT/StringExtras.h>
#include <llvm/Support/Error.h>
#include <llvm/Support/SHA1.h>
#include <llvm/Support/Process.h>
#include <memory>
#include <optional>
#include <ranges>
#include <unordered_set>
namespace clang::mrdocs {
ASTVisitor::
ASTVisitor(
ConfigImpl const& config,
Diagnostics const& diags,
CompilerInstance& compiler,
ASTContext& context,
Sema& sema) noexcept
: config_(config)
, diags_(diags)
, compiler_(compiler)
, context_(context)
, source_(context.getSourceManager())
, sema_(sema)
{
// Install handlers for our custom commands
initCustomCommentCommands(context_);
// The traversal scope should *only* consist of the
// top-level TranslationUnitDecl.
// If this `assert` fires, then it means
// ASTContext::setTraversalScope is being (erroneously)
// used somewhere
MRDOCS_ASSERT(context_.getTraversalScope() ==
std::vector<Decl*>{context_.getTranslationUnitDecl()});
}
void
ASTVisitor::
build()
{
// Traverse the translation unit, only extracting
// declarations which satisfy all filter conditions.
// dependencies will be tracked, but not extracted
TranslationUnitDecl const* TU = context_.getTranslationUnitDecl();
traverse(TU);
MRDOCS_ASSERT(find(SymbolID::global));
}
template <
class InfoTy,
std::derived_from<Decl> DeclTy>
Info*
ASTVisitor::
traverse(DeclTy const* D)
{
MRDOCS_ASSERT(D);
MRDOCS_CHECK_OR(!D->isInvalidDecl(), nullptr);
MRDOCS_SYMBOL_TRACE(D, context_);
if constexpr (std::same_as<DeclTy, Decl>)
{
// Convert to the most derived type of the Decl
// and call the appropriate traverse function
return visit(D, [&]<typename DeclTyU>(DeclTyU* U) -> Info*
{
if constexpr (!std::same_as<DeclTyU, Decl>)
{
return traverse(U);
}
return nullptr;
});
}
else if constexpr (HasInfoTypeFor<DeclTy> || std::derived_from<InfoTy, Info>)
{
// If the declaration has a corresponding Info type,
// we build the Info object and populate it with the
// necessary information.
using R = std::conditional_t<
std::same_as<InfoTy, void>,
InfoTypeFor_t<DeclTy>,
InfoTy>;
auto exp = upsert<R>(D);
MRDOCS_CHECK_OR(exp, nullptr);
auto& [I, isNew] = *exp;
// Populate the base classes with the necessary information.
// Even when the object is new, we want to update the source locations
// and the documentation status.
populate(dynamic_cast<Info&>(I), isNew, D);
// Populate the derived Info object with the necessary information
// when the object is new. If the object already exists, this
// information would be redundant.
populate(I, D);
// Traverse the members of the declaration according to the
// current extraction mode.
traverseMembers(I, D);
// Traverse the parents of the declaration in dependency mode.
traverseParent(I, D);
return &I;
}
return nullptr;
}
Info*
ASTVisitor::
traverse(FunctionTemplateDecl const* D)
{
// Route the traversal to GuideInfo or FunctionInfo
if (FunctionDecl* FD = D->getTemplatedDecl();
FD && isa<CXXDeductionGuideDecl>(FD))
{
return traverse<GuideInfo>(D);
}
return traverse<FunctionInfo>(D);
}
Info*
ASTVisitor::
traverse(UsingDirectiveDecl const* D)
{
MRDOCS_SYMBOL_TRACE(D, context_);
// Find the parent namespace
ScopeExitRestore s1(mode_, TraversalMode::Dependency);
Decl const* P = getParent(D);
MRDOCS_SYMBOL_TRACE(P, context_);
Info* PI = findOrTraverse(P);
MRDOCS_CHECK_OR(PI, nullptr);
auto* const PNI = dynamic_cast<NamespaceInfo*>(PI);
MRDOCS_CHECK_OR(PNI, nullptr);
// Find the nominated namespace
Decl const* ND = D->getNominatedNamespace();
MRDOCS_SYMBOL_TRACE(ND, context_);
ScopeExitRestore s2(mode_, TraversalMode::Dependency);
Info* NDI = findOrTraverse(ND);
MRDOCS_CHECK_OR(NDI, nullptr);
auto res = toNameInfo(ND);
MRDOCS_ASSERT(res);
MRDOCS_ASSERT(res->isIdentifier());
if (NameInfo NI = *res;
!contains(PNI->UsingDirectives, NI))
{
PNI->UsingDirectives.push_back(std::move(NI));
}
return nullptr;
}
Info*
ASTVisitor::
traverse(IndirectFieldDecl const* D)
{
return traverse(D->getAnonField());
}
template <
std::derived_from<Info> InfoTy,
std::derived_from<Decl> DeclTy>
requires (!std::derived_from<DeclTy, RedeclarableTemplateDecl>)
void
ASTVisitor::
traverseMembers(InfoTy& I, DeclTy const* DC)
{
// When a declaration context is a function, we should
// not traverse its members as function arguments are
// not main Info members.
if constexpr (
!std::derived_from<DeclTy, FunctionDecl> &&
std::derived_from<DeclTy, DeclContext>)
{
// We only need members of regular symbols and see-below namespaces
// - If symbol is SeeBelow we want the members if it's a namespace
MRDOCS_CHECK_OR(
I.Extraction != ExtractionMode::SeeBelow ||
I.Kind == InfoKind::Namespace);
// - If symbol is a Dependency, we only want the members if
// the traversal mode is BaseClass
MRDOCS_CHECK_OR(
I.Extraction != ExtractionMode::Dependency ||
mode_ == TraversalMode::BaseClass);
// - If symbol is ImplementationDefined, we only want the members if
// the traversal mode is BaseClass
MRDOCS_CHECK_OR(
I.Extraction != ExtractionMode::ImplementationDefined ||
mode_ == TraversalMode::BaseClass);
// There are many implicit declarations, especially in the
// translation unit declaration, so we preemtively skip them here.
auto explicitMembers = std::ranges::views::filter(DC->decls(), [](Decl* D)
{
return !D->isImplicit() || isa<IndirectFieldDecl>(D);
});
for (auto* D : explicitMembers)
{
// No matter what happens in the process, we restore the
// traversal mode to the original mode for the next member
ScopeExitRestore s(mode_);
// Traverse the member
traverse(D);
}
}
}
template <
std::derived_from<Info> InfoTy,
std::derived_from<RedeclarableTemplateDecl> DeclTy>
void
ASTVisitor::
traverseMembers(InfoTy& I, DeclTy const* D)
{
traverseMembers(I, D->getTemplatedDecl());
}
template <
std::derived_from<Info> InfoTy,
std::derived_from<Decl> DeclTy>
requires (!std::derived_from<DeclTy, RedeclarableTemplateDecl>)
void
ASTVisitor::
traverseParent(InfoTy& I, DeclTy const* DC)
{
MRDOCS_SYMBOL_TRACE(DC, context_);
if (Decl const* PD = getParent(DC))
{
MRDOCS_SYMBOL_TRACE(PD, context_);
// Check if we haven't already extracted or started
// to extract the parent scope:
// Traverse the parent scope as a dependency if it
// hasn't been extracted yet
Info* PI = nullptr;
{
ScopeExitRestore s(mode_, Dependency);
if (PI = findOrTraverse(PD); !PI)
{
return;
}
}
// If we found the parent scope, set it as the parent
I.Parent = PI->id;
visit(*PI, [&]<typename ParentInfoTy>(ParentInfoTy& PU) -> void
{
if constexpr (InfoParent<ParentInfoTy>)
{
addMember(PU, I);
}
});
}
}
template <
std::derived_from<Info> InfoTy,
std::derived_from<RedeclarableTemplateDecl> DeclTy>
void
ASTVisitor::
traverseParent(InfoTy& I, DeclTy const* D)
{
traverseParent(I, D->getTemplatedDecl());
}
Expected<llvm::SmallString<128>>
ASTVisitor::
generateUSR(Decl const* D) const
{
MRDOCS_ASSERT(D);
llvm::SmallString<128> res;
if (auto const* NAD = dyn_cast<NamespaceAliasDecl>(D))
{
if (index::generateUSRForDecl(cast<Decl>(NAD->getNamespace()), res))
{
return Unexpected(Error("Failed to generate USR"));
}
res.append("@NA");
res.append(NAD->getNameAsString());
return res;
}
// Handling UsingDecl
if (auto const* UD = dyn_cast<UsingDecl>(D))
{
for (auto const* shadow : UD->shadows())
{
if (index::generateUSRForDecl(shadow->getTargetDecl(), res))
{
return Unexpected(Error("Failed to generate USR"));
}
}
res.append("@UDec");
res.append(UD->getQualifiedNameAsString());
return res;
}
if (auto const* UD = dyn_cast<UsingDirectiveDecl>(D))
{
if (index::generateUSRForDecl(UD->getNominatedNamespace(), res))
{
return Unexpected(Error("Failed to generate USR"));
}
res.append("@UDDec");
res.append(UD->getQualifiedNameAsString());
return res;
}
// Handling UnresolvedUsingTypenameDecl
if (auto const* UD = dyn_cast<UnresolvedUsingTypenameDecl>(D))
{
if (index::generateUSRForDecl(UD, res))
{
return Unexpected(Error("Failed to generate USR"));
}
res.append("@UUTDec");
res.append(UD->getQualifiedNameAsString());
return res;
}
// Handling UnresolvedUsingValueDecl
if (auto const* UD = dyn_cast<UnresolvedUsingValueDecl>(D))
{
if (index::generateUSRForDecl(UD, res))
{
return Unexpected(Error("Failed to generate USR"));
}
res.append("@UUV");
res.append(UD->getQualifiedNameAsString());
return res;
}
// Handling UsingPackDecl
if (auto const* UD = dyn_cast<UsingPackDecl>(D))
{
if (index::generateUSRForDecl(UD, res))
{
return Unexpected(Error("Failed to generate USR"));
}
res.append("@UPD");
res.append(UD->getQualifiedNameAsString());
return res;
}
// Handling UsingEnumDecl
if (auto const* UD = dyn_cast<UsingEnumDecl>(D))
{
if (index::generateUSRForDecl(UD, res))
{
return Unexpected(Error("Failed to generate USR"));
}
res.append("@UED");
EnumDecl const* ED = UD->getEnumDecl();
res.append(ED->getQualifiedNameAsString());
return res;
}
// KRYSTIAN NOTE: clang doesn't currently support
// generating USRs for friend declarations, so we
// will improvise until I can merge a patch which
// adds support for them
if(auto const* FD = dyn_cast<FriendDecl>(D))
{
// first, generate the USR for the containing class
if (index::generateUSRForDecl(cast<Decl>(FD->getDeclContext()), res))
{
return Unexpected(Error("Failed to generate USR"));
}
// add a seperator for uniqueness
res.append("@FD");
// if the friend declaration names a type,
// use the USR generator for types
if (TypeSourceInfo* TSI = FD->getFriendType())
{
if (index::generateUSRForType(TSI->getType(), context_, res))
{
return Unexpected(Error("Failed to generate USR"));
}
return res;
}
// otherwise, fallthrough and append the
// USR of the nominated declaration
if (!((D = FD->getFriendDecl())))
{
return Unexpected(Error("Failed to generate USR"));
}
}
if (index::generateUSRForDecl(D, res))
{
return Unexpected(Error("Failed to generate USR"));
}
auto const* Described = dyn_cast_if_present<TemplateDecl>(D);
auto const* Templated = D;
if (auto const* DT = D->getDescribedTemplate())
{
Described = DT;
if (auto const* TD = DT->getTemplatedDecl())
{
Templated = TD;
}
}
if(Described)
{
TemplateParameterList const* TPL = Described->getTemplateParameters();
if(auto const* RC = TPL->getRequiresClause())
{
RC = SubstituteConstraintExpressionWithoutSatisfaction(
sema_, cast<NamedDecl>(isa<FunctionTemplateDecl>(Described) ? Described : Templated), RC);
if (!RC)
{
return Unexpected(Error("Failed to generate USR"));
}
ODRHash odr_hash;
odr_hash.AddStmt(RC);
res.append("@TPL#");
res.append(llvm::itostr(odr_hash.CalculateHash()));
}
}
if(auto* FD = dyn_cast<FunctionDecl>(Templated);
FD && FD->getTrailingRequiresClause())
{
Expr const* RC = FD->getTrailingRequiresClause();
RC = SubstituteConstraintExpressionWithoutSatisfaction(
sema_, cast<NamedDecl>(Described ? Described : Templated), RC);
if (!RC)
{
return Unexpected(Error("Failed to generate USR"));
}
ODRHash odr_hash;
odr_hash.AddStmt(RC);
res.append("@TRC#");
res.append(llvm::itostr(odr_hash.CalculateHash()));
}
return res;
}
bool
ASTVisitor::
generateID(
Decl const* D,
SymbolID& id) const
{
if (!D)
{
return false;
}
if (isa<TranslationUnitDecl>(D))
{
id = SymbolID::global;
return true;
}
if (auto exp = generateUSR(D))
{
auto h = llvm::SHA1::hash(arrayRefFromStringRef(*exp));
id = SymbolID(h.data());
return true;
}
return false;
}
SymbolID
ASTVisitor::
generateID(Decl const* D) const
{
SymbolID id = SymbolID::invalid;
generateID(D, id);
return id;
}
template <std::derived_from<Decl> DeclTy>
void
ASTVisitor::
populate(Info& I, bool const isNew, DeclTy const* D)
{
populate(I.javadoc, D);
populate(dynamic_cast<SourceInfo&>(I), D);
// All other information is redundant if the symbol is not new
MRDOCS_CHECK_OR(isNew);
// These should already have been populated by traverseImpl
MRDOCS_ASSERT(I.id);
MRDOCS_ASSERT(I.Kind != InfoKind::None);
I.Name = extractName(D);
}
template <std::derived_from<Decl> DeclTy>
void
ASTVisitor::
populate(SourceInfo& I, DeclTy const* D)
{
clang::SourceLocation Loc = D->getBeginLoc();
if (Loc.isInvalid())
{
Loc = D->getLocation();
}
if (Loc.isValid())
{
populate(
dynamic_cast<SourceInfo&>(I),
Loc,
isDefinition(D),
isDocumented(D));
}
}
bool
ASTVisitor::
populate(
std::optional<Javadoc>& javadoc,
Decl const* D)
{
RawComment const* RC = getDocumentation(D);
MRDOCS_CHECK_OR(RC, false);
comments::FullComment* FC =
RC->parse(D->getASTContext(), &sema_.getPreprocessor(), D);
MRDOCS_CHECK_OR(FC, false);
parseJavadoc(javadoc, FC, D, config_, diags_);
return true;
}
void
ASTVisitor::
populate(
SourceInfo& I,
clang::SourceLocation const loc,
bool const definition,
bool const documented)
{
unsigned line = source_.getPresumedLoc(
loc, false).getLine();
FileInfo* file = findFileInfo(loc);
MRDOCS_ASSERT(file);
if (definition)
{
if (I.DefLoc)
{
return;
}
I.DefLoc.emplace(file->full_path, file->short_path, file->source_path, line, documented);
}
else
{
auto const existing = std::ranges::
find_if(I.Loc,
[line, file](Location const& l)
{
return l.LineNumber == line &&
l.FullPath == file->full_path;
});
if (existing != I.Loc.end())
{
return;
}
I.Loc.emplace_back(file->full_path, file->short_path, file->source_path, line, documented);
}
}
void
ASTVisitor::
populate(
NamespaceInfo& I,
NamespaceDecl const* D)
{
I.IsAnonymous = D->isAnonymousNamespace();
if (!I.IsAnonymous)
{
I.Name = extractName(D);
}
I.IsInline = D->isInline();
}
void
ASTVisitor::
populate(
NamespaceInfo& I,
TranslationUnitDecl const*)
{
I.id = SymbolID::global;
I.IsAnonymous = false;
I.IsInline = false;
}
void
ASTVisitor::
populate(
RecordInfo& I,
CXXRecordDecl const* D)
{
if (D->getTypedefNameForAnonDecl())
{
I.IsTypeDef = true;
}
I.KeyKind = toRecordKeyKind(D->getTagKind());
// These are from CXXRecordDecl::isEffectivelyFinal()
I.IsFinal = D->hasAttr<FinalAttr>();
if (auto const* DT = D->getDestructor())
{
I.IsFinalDestructor = DT->hasAttr<FinalAttr>();
}
// Extract direct bases. D->bases() will get the bases
// from whichever declaration is the definition (if any)
if(D->hasDefinition() && I.Bases.empty())
{
for (CXXBaseSpecifier const& B : D->bases())
{
AccessSpecifier const access = B.getAccessSpecifier();
if (!config_->extractPrivateBases &&
access == AS_private)
{
continue;
}
QualType const BT = B.getType();
auto BaseType = toTypeInfo(BT, BaseClass);
// If we're going to copy the members from the specialization,
// we need to instantiate and traverse the specialization
// as a dependency.
if (config_->extractImplicitSpecializations)
{
[&] {
auto* TST = BT->getAs<TemplateSpecializationType>();
MRDOCS_CHECK_OR(TST);
MRDOCS_SYMBOL_TRACE(TST, context_);
auto const* CTSD = dyn_cast_or_null<
ClassTemplateSpecializationDecl>(
TST->getAsCXXRecordDecl());
MRDOCS_CHECK_OR(CTSD);
MRDOCS_SYMBOL_TRACE(CTSD, context_);
// Traverse the Decl as a dependency
ScopeExitRestore s(mode_, TraversalMode::BaseClass);
Info const* SI = findOrTraverse(CTSD);
MRDOCS_CHECK_OR(SI);
auto& inner = innermostType(BaseType);
MRDOCS_CHECK_OR(inner);
MRDOCS_CHECK_OR(inner->isNamed());
auto& NTI = dynamic_cast<NamedTypeInfo&>(*inner);
MRDOCS_CHECK_OR(NTI.Name);
MRDOCS_CHECK_OR(NTI.Name->isSpecialization());
auto& SNI = dynamic_cast<SpecializationNameInfo&>(*NTI.Name);
SNI.specializationID = SI->id;
}();
}
// CXXBaseSpecifier::getEllipsisLoc indicates whether the
// base was a pack expansion; a PackExpansionType is not built
// for base-specifiers
if (BaseType && B.getEllipsisLoc().isValid())
{
BaseType->IsPackExpansion = true;
}
I.Bases.emplace_back(
std::move(BaseType),
toAccessKind(access),
B.isVirtual());
}
}
}
void
ASTVisitor::
populate(RecordInfo& I, ClassTemplateDecl const* D)
{
populate(I.Template, D->getTemplatedDecl(), D);
populate(I, D->getTemplatedDecl());
}
void
ASTVisitor::
populate(RecordInfo& I, ClassTemplateSpecializationDecl const* D)
{
populate(I.Template, D, D->getSpecializedTemplate());
populate(I, cast<CXXRecordDecl>(D));
}
void
ASTVisitor::
populate(RecordInfo& I, ClassTemplatePartialSpecializationDecl const* D)
{
populate(I, dynamic_cast<ClassTemplateSpecializationDecl const*>(D));
}
void
ASTVisitor::
populate(
FunctionInfo& I,
FunctionDecl const* D)
{
MRDOCS_SYMBOL_TRACE(D, context_);
// D is the templated declaration if FTD is non-null
if (D->isFunctionTemplateSpecialization())
{
if (!I.Template)
{
I.Template.emplace();
}
if (auto* FTSI = D->getTemplateSpecializationInfo())
{
generateID(
getInstantiatedFrom(FTSI->getTemplate()),
I.Template->Primary);
// TemplateArguments is used instead of TemplateArgumentsAsWritten
// because explicit specializations of function templates may have
// template arguments deduced from their return type and parameters
if(auto* Args = FTSI->TemplateArguments)
{
populate(I.Template->Args, Args->asArray());
}
}
else if (auto* DFTSI = D->getDependentSpecializationInfo())
{
// Only extract the ID of the primary template if there is
// a single candidate primary template.
if (auto Candidates = DFTSI->getCandidates(); Candidates.size() == 1)
{
generateID(getInstantiatedFrom(
Candidates.front()), I.Template->Primary);
}
if(auto* Args = DFTSI->TemplateArgumentsAsWritten)
{
populate(I.Template->Args, Args);
}
}
}
// Get the function type and extract information that comes from the type
if (auto FT = getDeclaratorType(D); !FT.isNull())
{
MRDOCS_SYMBOL_TRACE(FT, context_);
auto const* FPT = FT->template getAs<FunctionProtoType>();
MRDOCS_SYMBOL_TRACE(FPT, context_);
populate(I.Noexcept, FPT);
I.HasTrailingReturn |= FPT->hasTrailingReturn();
}
I.OverloadedOperator = toOperatorKind(D->getOverloadedOperator());
I.IsVariadic |= D->isVariadic();
I.IsDefaulted |= D->isDefaulted();
I.IsExplicitlyDefaulted |= D->isExplicitlyDefaulted();
I.IsDeleted |= D->isDeleted();
I.IsDeletedAsWritten |= D->isDeletedAsWritten();
I.IsNoReturn |= D->isNoReturn();
I.HasOverrideAttr |= D->hasAttr<OverrideAttr>();
if (ConstexprSpecKind const CSK = D->getConstexprKind();
CSK != ConstexprSpecKind::Unspecified)
{
I.Constexpr = toConstexprKind(CSK);
}
if (StorageClass const SC = D->getStorageClass())
{
I.StorageClass = toStorageClassKind(SC);
}
I.IsNodiscard |= D->hasAttr<WarnUnusedResultAttr>();
I.IsExplicitObjectMemberFunction |= D->hasCXXExplicitFunctionObjectParameter();
ArrayRef<ParmVarDecl*> const params = D->parameters();
I.Params.resize(params.size());
for (std::size_t i = 0; i < params.size(); ++i)
{
ParmVarDecl const* P = params[i];
MRDOCS_SYMBOL_TRACE(P, context_);
Param& param = I.Params[i];
if (!param.Name && !P->getName().empty())
{
param.Name = P->getName();
}
if (!param.Type)
{
param.Type = toTypeInfo(P->getOriginalType());
}
Expr const* default_arg = P->hasUninstantiatedDefaultArg() ?
P->getUninstantiatedDefaultArg() : P->getInit();
if (!param.Default && default_arg)
{
param.Default = getSourceCode(default_arg->getSourceRange());
param.Default = trim(*param.Default);
if (param.Default->starts_with("= "))
{
param.Default->erase(0, 2);
param.Default = ltrim(*param.Default);
}
}
}
I.Class = toFunctionClass(D->getDeclKind());
// extract the return type in direct dependency mode
// if it contains a placeholder type which is
// deduceded as a local class type
QualType const RT = D->getReturnType();
MRDOCS_SYMBOL_TRACE(RT, context_);
I.ReturnType = toTypeInfo(RT);
if (auto* TRC = D->getTrailingRequiresClause())
{
populate(I.Requires, TRC);
}
else if (I.Requires.Written.empty())
{
// Return type SFINAE constraints
if (I.ReturnType &&
!I.ReturnType->Constraints.empty())
{
for (ExprInfo const& constraint: I.ReturnType->Constraints)
{
if (!I.Requires.Written.empty())
{
I.Requires.Written += " && ";
}
I.Requires.Written += constraint.Written;
}
}
// Iterate I.Params to find trailing requires clauses
for (auto it = I.Params.begin(); it != I.Params.end(); )
{
if (it->Type &&
!it->Type->Constraints.empty())
{
for (ExprInfo const& constraint: it->Type->Constraints)
{
if (!I.Requires.Written.empty())
{
I.Requires.Written += " && ";
}
I.Requires.Written += constraint.Written;
}
it = I.Params.erase(it);
}
else
{
++it;
}
}
}
populateAttributes(I, D);
}
void
ASTVisitor::
populate(FunctionInfo& I, FunctionTemplateDecl const* D)
{
FunctionDecl const* TD = D->getTemplatedDecl();
populate(I.Template, TD, D);
populate(I, TD);
}
void
ASTVisitor::
populate(FunctionInfo& I, CXXMethodDecl const* D)
{
FunctionDecl const* FD = D;
populate(I, FD);
I.IsRecordMethod = true;
I.IsVirtual |= D->isVirtual();
I.IsVirtualAsWritten |= D->isVirtualAsWritten();
I.IsPure |= D->isPureVirtual();
I.IsConst |= D->isConst();
I.IsVolatile |= D->isVolatile();
I.RefQualifier = toReferenceKind(D->getRefQualifier());
I.IsFinal |= D->hasAttr<FinalAttr>();
}
void
ASTVisitor::
populate(FunctionInfo& I, CXXConstructorDecl const* D)
{
CXXMethodDecl const* FD = D;
populate(I, FD);
populate(I.Explicit, D->getExplicitSpecifier());
}
void
ASTVisitor::
populate(FunctionInfo& I, CXXDestructorDecl const* D)
{
CXXMethodDecl const* FD = D;
populate(I, FD);
}
void
ASTVisitor::
populate(FunctionInfo& I, CXXConversionDecl const* D)
{
CXXMethodDecl const* FD = D;
populate(I, FD);
populate(I.Explicit, D->getExplicitSpecifier());
}
void
ASTVisitor::
populate(
EnumInfo& I,
EnumDecl const* D)
{
I.Scoped = D->isScoped();
if (D->isFixed())
{
I.UnderlyingType = toTypeInfo(D->getIntegerType());
}
}
void
ASTVisitor::
populate(
EnumConstantInfo& I,
EnumConstantDecl const* D)
{
I.Name = extractName(D);
populate(
I.Initializer,
D->getInitExpr(),
D->getInitVal());
}
void
ASTVisitor::
populate(TypedefInfo& I, TypedefNameDecl const* D)
{
QualType const QT = D->getUnderlyingType();
I.Type = toTypeInfo(QT);
}
void
ASTVisitor::
populate(TypedefInfo& I, TypedefDecl const* D)
{
populate(I, cast<TypedefNameDecl>(D));
}
void