10

I want to get the arguments passed to a function. for example, if I have the call

printf("%d%d", i, j);

the output should be

%d%d
i
j

I am able to get to function calls using VisitCallExpr() in RecursiveASTVisitor. Also able to get the number of arguments and the argument types. But I don't know how to get the arguments.

bool MyRecursiveASTVisitor::VisitCallExpr (clang::CallExpr *E)  
{
    for(int i=0, j=E->getNumArgs(); i<j; i++)
    {
        llvm::errs() << "argType: " << E->getArg(i)->getType().getAsString() << "\n";
    }
    return true;
}

Output:

argType: char *
argType: int
argType: int

Please help me getting the arguments.

Praetorian
  • 106,671
  • 19
  • 240
  • 328
Srikanth Vaindam
  • 455
  • 4
  • 13

2 Answers2

13

your answer was very helpful martins. I didn't know about printPretty(...) function. Now, I am able to print the arguments. below is my code to print the arguments.

bool MyRecursiveASTVisitor::VisitCallExpr (clang::CallExpr *E)
{
    clang::LangOptions LangOpts;
    LangOpts.CPlusPlus = true;
    clang::PrintingPolicy Policy(LangOpts);

    for(int i=0, j=E->getNumArgs(); i<j; i++)
    {
        std::string TypeS;
        llvm::raw_string_ostream s(TypeS);
        E->getArg(i)->printPretty(s, 0, Policy);
        llvm::errs() << "arg: " << s.str() << "\n";
    }
    return true;
}

and the output looks like this:

"%d%d"
i
j
Srikanth Vaindam
  • 455
  • 4
  • 13
10

You are calling E->getArg(i)->getType() - but that is type of argument. Use E->getArg(i) to get Expr* representing value of argument. Then use printPretty(...) method to pretty-print it to string, if you need string value.

Chris
  • 1,657
  • 1
  • 13
  • 20
Mārtiņš Možeiko
  • 12,733
  • 2
  • 45
  • 45
  • Hi martins, your answer was very helpful martins. I didn't know about printPretty(...) function. Now, I am able to print the arguments. Thank You. – Srikanth Vaindam Mar 09 '12 at 18:39