gpt4 book ai didi

c++ - libclang 给出类型限定符的错误结果

转载 作者:行者123 更新时间:2023-11-30 04:46:59 25 4
gpt4 key购买 nike

Currentlty 我正在做一个项目,用 libclang 转储 C++ 代码的类信息。还有一些关于类型限定符的悲惨经历:const、volatile、&、&& 以及它们的组合。以下是转储函数删除参数类型的示例代码。

auto _cur_cursor = one_node->get_cursor();
auto _cur_type = clang_getCursorType(_cur_cursor);
auto is_const = clang_isConstQualifiedType(_cur_type);
auto is_refer = clang_Type_getCXXRefQualifier(_cur_type);
auto is_volatile = clang_isVolatileQualifiedType(_cur_type);
auto is_pointer = clang_getPointeeType(_cur_type);
auto is_const_ref = false;
if (is_pointer.kind)
{
is_const_ref = clang_isConstQualifiedType(is_pointer);
}
the_logger.info("get parameter name {} type {} is_const {} is_reference {} is volatile {} is_pointer {} is_const_ref {}", utils::to_string(clang_getCursorSpelling(_cur_cursor)), utils::to_string(clang_getTypeSpelling(_cur_type)), is_const, is_refer, is_volatile, utils::to_string(is_pointer), is_const_ref);

下面是我的测试用例

int test_1(const std::vector<std::unordered_map<int, int>>&  a,  std::vector<int>&& b, std::vector<std::uint32_t>& c)
{
return b.size();
}

这个函数的输出是

[2019-06-01 23:14:18.171] [meta] [info] get parameter name a type const std::vector<std::unordered_map<int, int> > & is_const 0 is_reference 0 is volatile 0 is_pointer const std::vector<std::unordered_map<int, int> > is_const_ref true
[2019-06-01 23:14:18.171] [meta] [info] get parameter name b type std::vector<int> && is_const 0 is_reference 0 is volatile 0 is_pointer std::vector<int> is_const_ref false
[2019-06-01 23:14:18.171] [meta] [info] get parameter name c type std::vector<std::uint32_t> & is_const 0 is_reference 0 is volatile 0 is_pointer std::vector<std::uint32_t> is_const_ref false

这些观察结果对我来说是可疑的:

  1. clang_isConstQualifiedType 只对 const T 返回 true,对 const T (&, *, &&) 不返回 true
  2. clang_Type_getCXXRefQualifier 对于任何类型始终为 false
  3. clang_getPointeeType 为 T(,&, &&) 返回 T,为 const T(, &, &&) 返回 const T

这些 api 似乎没有按预期运行。有没有关于为 CXType 获得正确的 const 引用 volatile 限定符状态的想法?

最佳答案

  1. 和 3. const T (&, *, &&) 确实不是 const 限定类型,它是一个 (reference, pointer, r-value reference) 到 const 限定类型。 const T * const 将是指向 const 限定类型 Tconst 限定指针。你可以查看cppreference了解更多详情。

  2. 来自 libclang 的 documentation :

Retrieve the ref-qualifier kind of a function or method.

The ref-qualifier is returned for C++ functions or methods. For other types or non-C++ declarations, CXRefQualifier_None is returned.

您可能正在寻找其他东西。检查 CXType::kind(代码段中的 _cur_type.kind)CXType_PointerCXType_LValueReferenceCXType_RValueReference 代替。

我希望这对您有用。用 clang 玩得开心!

关于c++ - libclang 给出类型限定符的错误结果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56408216/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com