@@ -715,10 +715,12 @@ template<class DeclTy>
715
715
bool
716
716
ASTVisitor::
717
717
constructFunction (
718
- FunctionInfo& I, DeclTy* D)
718
+ FunctionInfo& I, DeclTy* D, char const * name )
719
719
{
720
720
if (! extractInfo (I, D))
721
721
return false ;
722
+ if (name)
723
+ I.Name = name;
722
724
LineNumber = getLine (D);
723
725
if (D->isThisDeclarationADefinition ())
724
726
I.DefLoc .emplace (LineNumber, File, IsFileInRootDir);
@@ -813,15 +815,13 @@ constructFunction(
813
815
//
814
816
if constexpr (std::derived_from<DeclTy, CXXDestructorDecl>)
815
817
{
816
- // I.Name.append("-dtor");
817
818
}
818
819
819
820
//
820
821
// CXXConstructorDecl
821
822
//
822
823
if constexpr (std::derived_from<DeclTy, CXXConstructorDecl>)
823
824
{
824
- // I.Name.append("-ctor");
825
825
I.specs1 .isExplicit = D->getExplicitSpecifier ().isSpecified ();
826
826
}
827
827
@@ -830,7 +830,6 @@ constructFunction(
830
830
//
831
831
if constexpr (std::derived_from<DeclTy, CXXConversionDecl>)
832
832
{
833
- // I.Name.append("-conv");
834
833
I.specs1 .isExplicit = D->getExplicitSpecifier ().isSpecified ();
835
834
}
836
835
@@ -1082,12 +1081,13 @@ requires std::derived_from<DeclTy, CXXMethodDecl>
1082
1081
void
1083
1082
ASTVisitor::
1084
1083
buildFunction (
1085
- DeclTy* D)
1084
+ DeclTy* D,
1085
+ char const * name)
1086
1086
{
1087
1087
if (! shouldExtract (D))
1088
1088
return ;
1089
1089
FunctionInfo I;
1090
- if (! constructFunction (I, D))
1090
+ if (! constructFunction (I, D, name ))
1091
1091
return ;
1092
1092
insertBitcode (ex_, writeBitcode (I));
1093
1093
insertBitcode (ex_, writeParent (I, D->getAccess ()));
@@ -1213,9 +1213,16 @@ WalkUpFromCXXDestructorDecl(
1213
1213
1214
1214
bool
1215
1215
ASTVisitor::
1216
- WalkUpFromCXXConstructorDecl (
1216
+ TraverseCXXConstructorDecl (
1217
1217
CXXConstructorDecl* D)
1218
1218
{
1219
+ /*
1220
+ auto s = D->getParent()->getName();
1221
+ std::string s;
1222
+ DeclarationName DN = D->getDeclName();
1223
+ if(DN)
1224
+ s = DN.getAsString();
1225
+ */
1219
1226
buildFunction (D);
1220
1227
return true ;
1221
1228
}
0 commit comments