gpt4 book ai didi

c++ - 如何检查 Clang ASTvisitor 中的变量声明是否为数组

转载 作者:太空狗 更新时间:2023-10-29 20:36:26 25 4
gpt4 key购买 nike

我正在尝试确定 ASTvisitor 中的变量声明是否为数组,如果是数组我想确定数组的维数。您可以在下面找到我的代码。

bool VisitVarDecl(VarDecl *var)
{
if (astContext->getSourceManager().isInMainFile(var->getLocStart())) //checks if the node is in the main = input file.
{
FullSourceLoc FullLocation = astContext->getFullLoc(var->getLocStart());
if((var->hasLocalStorage() || var->isStaticLocal ()))
{
if (!var->isDefinedOutsideFunctionOrMethod())
{
if(avoid == 0)
{
numVariables++;
string varName = var->getQualifiedNameAsString();
string varType = var->getType().getAsString();
const Type *type = var->getType().getTypePtr();
if(type->isConstantArrayType())
{
const ArrayType *Array = type->castAsArrayTypeUnsafe();
cout << "Is array of type: " << Array->getElementType().getAsString() << endl;
}
REPORT << "[" << FullLocation.getSpellingLineNumber() << "," << FullLocation.getSpellingColumnNumber() << "]Variable Declaration: " << varName << " of type " << varType << "\n";
APIs << varType << ";";
}
else
{
avoid--;
REPORT << "Avoid is: " << avoid << endl;
}
}
}
}
return true;
}

我不知道我是否正确地进行了从 VarDecl 到 ArrayType 的“转换”。如果您有更好、更安全、更省心的方法,请接受任何意见。此外,我现在的主要问题是如何获得数组的维数,甚至是它的单元格大小。

谢谢大家

最佳答案

试试这个:

bool VisitVarDecl(VarDecl *D){  
if (auto t = dyn_cast_or_null<ConstantArrayType>(D->getType().getTypePtr())) {
t->getSize().dump(); // We got the array size as an APInt here
}
return true;
}

最后,这里是“更好、更安全、更省心的方式”:
the-isa-cast-and-dyn-cast-templates

关于c++ - 如何检查 Clang ASTvisitor 中的变量声明是否为数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38516855/

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