I am trying to match the value of an integer passed to a ForStmt's condition. However, the loopbound
is a call to a FunctionDecl
and I don't seem to get this with ParamVarDecl
.
MWE: My Test Example:
void testASTVistor (int N) {
N = 123;
for (int i = 0; i <= GetBoundFunc(N), i++ ){
//do Sth;
}
}
Here is the AST dump:
FunctionDecl 0x5602066f0db8 <FOO.cpp:XXX:XXX> col:X implicit used GetBoundFunc 'unsigned short (unsigned short) noexcept' extern
|-ParmVarDecl 0x5602066f0e50 <<invalid sloc>> <invalid sloc> 'unsigned short'
|-NoThrowAttr 0x5602066f0eb8 <col:X> Implicit
|-ConstAttr 0x5602066f0ef8 <col:X> Implicit
`-Attr 0x5602066f0f08 <col:X> Implicit
ASTRecursiveVisitor:
class BinaryVisitor : public clang::RecursiveASTVisitor<BinaryVisitor> {
public:
bool VisitBinaryOperator(clang::BinaryOperator *BO) {
if (const CallExpr *RHS = dyn_cast<CallExpr>(BO->getRHS()->IgnoreParenImpCasts())) {
if (const FunctionDecl *FD = dyn_cast_or_null<FunctionDecl>(RHS->getDirectCallee())) {
if (FD->getNameAsString().std::string::find("GetBoundFunc") != std::string::npos) {
if (const ParmVarDecl *Bound = dyn_cast<ParmVarDecl>(FD->getParamDecl(0))) {
return true;
}
}
}
};
/// ...
BinaryVisitor visitor;
visitor.TraverseDecl(someDecl);
I am not sure why Bound
is returned as a Null
pointer here. I have debugged the code up until the previous IfStmt
and they seems to work. Any help would be appreciated.
First of all, there seems to be a couple of typos in the sample code (
n = 123
,i <= myBoundFunc(N), i++
).Anyhow, the easiest way to understand what is going on with the AST is to dump AST. Assuming this is the test program:
You can ask Clang to dump the AST:
You'll get the following output:
And if I get your question right, then you are looking for the following snippet:
In which case you don't need the
FunctionDecl
, but instead you can get the first arg of theCallExpr
viaRHS->getArg(0)
and cast it to theDeclRefExpr
and do the further checks to get to the value you need.As of the
FunctionDecl::getParamDecl
returningNULL
it is hard to say without seeing themyBoundFunc
declaration.