Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何确定堆栈、全局和帧指针在 ELF 文件中的位置?
堆栈在进程或线程运行时设置。函数或例程主体包含如何调用或调用其他子例程的代码,它们指示将使用多少堆栈空间。
帧指针与动态更新的堆栈帧有关。
全局变量位于 ELF 文件的数据部分。
希望这可以帮到你。