c++ - libclang 返回太多关于函数声明的信息

标签 c++ clang libclang

我有以下使用 clang-c API 的代码。

#include <iostream>
#include <string>
#include <clang-c/Index.h>

CXChildVisitResult printVisitor(CXCursor cursor, CXCursor parent, CXClientData client_data) 
{       
    CXCursor cursor1 = clang_getCursorReferenced(cursor);

    CXType type = clang_getCursorType(cursor1);
    CXCursorKind kind = clang_getCursorKind(cursor1);
    CXString str = clang_getTypeSpelling(type);
    CXString str1 = clang_getCursorSpelling(cursor1);
    std::string cstr = clang_getCString(str);
    std::string cstr1 = clang_getCString(str1);

    if(type.kind != 0 && kind == CXCursorKind::CXCursor_FunctionDecl)
    {
        std::cout << "Declaration!\n" << "type is: " << cstr << std::endl;
        std::cout << "name is: " << cstr1 << std::endl;
    }

    return CXChildVisit_Recurse;
}

int main (int argc, char** argv)
{
 CXIndex index = clang_createIndex (
         false, // excludeDeclarationFromPCH
         true   // displayDiagnostics
 );
 CXTranslationUnit unit = clang_parseTranslationUnit (
         index,                           // CIdx
         "main1.cpp",                      // source_filename
         argv + 1 ,                        // command_line_args
         argc - 1 ,                        // num_command_line_args
         0,                                // unsave_files
         0,                                // num_unsaved_files
         CXTranslationUnit_None           // options
 );
 if (unit != 0 )
         std::cout << "Translation unit successfully created" << std::endl;
 else
         std::cout << "Translation unit was not created" << std::endl;

 CXCursor rootCursor = clang_getTranslationUnitCursor(unit);

    clang_visitChildren(rootCursor, printVisitor, NULL);


 clang_disposeTranslationUnit(unit);
 clang_disposeIndex(index);
}

此代码解析以下内容。

double getSum(double a, float b)
{
    return a + b;
}

int main(void)
{
    int a = 5;
    float b = 6;
    double c = a + b;
    return getSum(c, b);
}

程序运行时,我看到以下内容。

    Translation unit successfully created
    Declaration!
    type is: double (double, float)
    name is: getSum
    Declaration!
    type is: int ()
    name is: main
    Declaration!
    type is: double (double, float)
    name is: getSum
    Declaration!
    type is: double (double, float)
    name is: getSum
    Declaration!
    type is: double (double, float)
    name is: getSum
    Declaration!
    type is: double (double, float)
    name is: getSum

当我在代码中只有一个声明时,为什么我得到这么多 getSum() 的声明?

最佳答案

当您使用 clang_getCursorReferenced 时,您会获得在当前位置引用的 CXCursor。例如,函数声明引用自身,并被相应的函数调用引用。在您的示例中,您将因此获得对函数声明(函数声明本身或函数调用)的每个引用的肯定匹配。

现在另一件事是每个 CXCursor 代表 AST 的一部分,要么是叶,要么是带有子部分的更复杂的部分。例如,在遍历 AST 时,您会依次找到以下游标:

  • return getSum(c, b)
  • getSum(c, b)
  • getSum

所有这些游标都引用了 getSum 函数声明,我的猜测是这些游标触发了对 getSum 的多次引用。

调用clang_getCursorExtent可以查看当前游标对应的是源代码的哪一部分|

关于c++ - libclang 返回太多关于函数声明的信息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20280744/

相关文章:

c++ - std::shared_ptr 和初始化列表

c++ - 在 libclang 中获取类型的不合格版本

python clang : Getting Template Arguments

c++ - 赋值运算符的 boolean 和字符串重载 (C++)

c++ - CMake 不生成 compile_commands.json

c++ - 使用 Dev C++ 执行 C++ 程序是否需要 iostream.h?

c++ - 如何使用 Clang 更喜欢一个图书馆位置而不是另一个图书馆位置?

c++ - 在 Windows 10 上使用 Clang 和 LLD

python - 为什么 Libclang 无法获得头文件中定义的函数的定义?

c++ - 带有包含和源路径的 CMake - 基本设置