gpt4 book ai didi

c++ - 如何检查从哪里引用函数

转载 作者:塔克拉玛干 更新时间:2023-11-03 01:35:43 24 4
gpt4 key购买 nike

在裸机 C/C++ 项目中,我使用 gcc-arm-embedded (目前最新的 4.9-2015-q2 )。

出于某些原因,我必须避免使用某些函数,例如一些 stdio 等(不想使用重定向或半主机)。

此外,我将 FreeRtos 与 heap_4.c 一起使用,例如malloc()直接重定向到 pvPortMalloc()像这样:

void* malloc(size_t s) {
return pvPortMalloc(s);
}

因此,我不想在我的二进制文件中包含工具链堆管理代码的任何部分。

现在,在某些情况下,我团队的开发人员意味着使用例如printf()间接引用 _malloc_r() (以及更多)并且实际上很难找出它的引用来源以及修复位置。

(这里使用 printf() 只是一个例子。在我的项目中,我自定义实现了 printf() ,它不使用 stdio 直接打印到 uart。但还有其他情况,例如类型信息 demangeling,...)

目前,我的项目(由大约 200 个 c 和 c++ 源文件组成)在没有引用 _malloc_r() 的情况下编译良好。以任何方式 - 只要我用 gcc 4.8 构建.

但是当使用 gcc 4.9 构建时, 我看到不需要的引用 _malloc_r还有一些。

可能有命令行工具来分析我的 elf 文件以找出从哪里引用了特定函数?

编辑 2015-07-20:

  • 最后,我解决了我的根本问题,我需要用 gcc 4.9 构建我的整个项目没有引用 _malloc_r在我的代码中。
  • 我通过应用 this answer 找到的一些引用资料.
  • 我进一步发现,有一个 __gnu_cxx::__snprintf_lite()其中引用了完整的iostream我不想在我的代码中。这__gnu_cxx::__snprintf_lite()gcc 的一些异常(exception)使用stl实现(例如 __throw_out_of_range_fmt() 引用)。 (是的,我的代码使用 std::map )。我摆脱的方法iostream只是简单地提供我自己的 __gnu_cxx::__snprintf_lite()像这样(有我自己的小脚印 vsnprintf ):

    namespace __gnu_cxx {
    int __snprintf_lite(char* buf, size_t bufsize, const char* fmt, va_list ap) {
    return vsnprintf(buf, bufsize, fmt, ap);
    }
    }

    这可以通过查看 gcc-4.9 库源代码(例如 src/gcc/libstdc++-v3/src/c++11/snprintf_lite.cc)来检查。

最佳答案

这是一个在静态编译程序中找出对 _exit 的引用的例子:

/* hello.c */
#include <stdlib.h>
#include <unistd.h>

int main(void)
{
write(1, "Hello\n", 6);
_exit(0);
}

编译它:

$ gcc hello.c -static -g

找出_exit的地址:

$ nm a.out | grep " _exit"
000000000040f760 T _exit

objdump -d -j .text反汇编,grep获取_exit地址,cut地址出来该行并将其通过管道传输到 addr2line:

$ objdump -d -j .text a.out | grep 40f760 | cut -c 1-8 | addr2line -e a.out -f
oom
dl-tls.o:?
main
/home/m/hello.c:8
__run_exit_handlers
??:?
??
??:0
_Exit
??:?
_dl_non_dynamic_init
??:?
abort
??:?
do_lookup_x
dl-lookup.o:?
_dl_relocate_object
??:?
_dl_signal_error
??:?
dl_open_worker
dl-open.o:?
_dl_close_worker.part.0
dl-close.o:?
_dl_start_profile
??:?

结果是:

函数oommain__run_exit_handlers、...确实引用了函数_exit

关于c++ - 如何检查从哪里引用函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31088678/

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