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.
汇编代码如下:
call next next: popl %eax
我想之后call next,返回地址将被压入堆栈,对吗?但是在上面的代码中,返回地址是什么?
call next
在该代码执行后 %eax 将具有标签“next”的地址
最终效果是 %eax 指向标签“下一个”
它是紧跟在指令后面的call指令的地址。请参阅您的 CPU 文档以了解其call工作原理。
call