使用GCC插件打印调用函数名称

时间:2015-03-30 12:53:30

标签: c++ gcc plugins g++ gimple

我需要使用gcc plugins打印程序的被调用函数的名称 为此,我创建了一个将在ssa pass之后调用的传递,我已经启动了插件,我可以使用gimple_stmt_iterator循环其语句:

int read_calls(){
  unsigned i;
  const_tree str, op;
  basic_block bb;
  gimple stmt;
  tree fnt;
  FOR_EACH_BB_FN(bb, cfun) {
    gimple_stmt_iterator gsi;
    for (gsi=gsi_start_bb(bb); !gsi_end_p(gsi); gsi_next(&gsi))
    {
        stmt = gsi_stmt(gsi);
        if (is_gimple_call(stmt)){
          const char* name = THE_FUNCTION_I_NEED(stmt);
          cerr << " Function : " << name << " is called \n";
        }
    }
  }
  return 0;
}

如何使用gimple节点打印被调用函数的名称? 我是否还可以打印其他信息,例如调用它的行号,调用函数的名称等等。?

2 个答案:

答案 0 :(得分:2)

我知道三种方式:

1:

tree current_fn_decl = gimple_call_fndecl(stmt);
const char* name = function_name(DECL_STRUCT_FUNCTION(current_fn_decl);

2:

const char* name = IDENTIFIER_POINTER(DECL_NAME(current_fn_decl));

3:

tree current_fn_decl = gimple_call_fndecl(stmt);
const char* name = get_name(current_fn_decl);

答案 1 :(得分:1)

我一直在寻找几个小时的答案,答案其实很简单: get_name(tree node) ...由于文档很差,我一直在尝试很多功能......我在这里找到了它: GCC Middle and Back End API Reference

正如你所看到的,没有关于函数功能的评论,并且它退出了我发现的关于gcc的最佳文档,无论如何get_name(..)工作正常,我还没找到如何打印来源线