从gcc函数树节点检索函数参数

时间:2017-03-03 10:47:53

标签: c++ c gcc compiler-construction

这个问题主要集中在gcc内部。我正在尝试使用gcc通用树。这个小项目是关于编译硬编码的前端,仅用于教育目的。我设法从外部调用printf并能够编译一个能够打印测试消息的可执行文件。后者证明我设法为函数准备参数。问题的实质是调用我自己的函数/方法并检索它的参数。

这是我准备电话的地方:

  tree testFn;
  tree testFndeclTypeParam[] = {
                                 integer_type_node
                               };
  tree testFndeclType = build_varargs_function_type_array(integer_type_node, 1, testFndeclTypeParam);
  tree testFnDecl = build_fn_decl("testFunc", testFndeclType);
  DECL_EXTERNAL(testFnDecl) = 1;
  testFn = build1(ADDR_EXPR, build_pointer_type(testFndeclType), testFnDecl);
  tree exprTest = build_int_cst_type(integer_type_node, 20);
  tree testStmt = build_call_array_loc(UNKNOWN_LOCATION, integer_type_node, testFn, 1, testArgs);
  append_to_statement_list(testStmt, &stackStmtList);

我可以确认函数" testFunc"绝对称之为。

现在另一边,这里是被调用的函数:

  // Built type of main "int (int)"
  tree mainFndeclTypeParam[] = {
                                 integer_type_node, // int
                               };

  tree mainFndeclType = build_function_type_array(integer_type_node, 1, mainFndeclTypeParam);
  tree mainFndecl = build_fn_decl("testFunc", mainFndeclType);  
  tree stackStmtList = alloc_stmt_list();
  tree parmList = build_decl(UNKNOWN_LOCATION, PARM_DECL, mainFndecl, integer_type_node);

我找不到一个显示如何检索参数的明确示例,但希望它在parmList中,即参数树节点。

1 个答案:

答案 0 :(得分:0)

对于那些对gcc编译器设计感兴趣的人来说,这是我的问题的解决方案。感谢Google或曾经维护过Java前端的人。

应该是:

tree typelist = TYPE_ARG_TYPES(TREE_TYPE(mainFndecl));
tree typeOfList = TREE_VALUE(typelist);
tree parmList = build_decl(UNKNOWN_LOCATION, PARM_DECL, NULL_TREE, typeOfList);
tree *ptr = &DECL_ARGUMENTS(mainFndecl);
*ptr = parmList;

可以使用TREE_CHAIN检索下一个参数,如果有的话。