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.
使用 objdump -d ,我得到
80483b7: e9 73 7c fb f7 jmp 2f <_init-0x8048265> 80483bc: 5e pop %esi 80483bd: 89 76 08 mov %esi,0x8(%esi)
这是否意味着例如 jmp 指令的大小是 5 个字节?
这是否意味着例如 jmp 指令的大小是 5 个字节
是的,但是,您可以获得其他大小的跳转,因此请务必先检查 objdump 并查阅 intel 说明手册。