The developerWorks Connections platform will be sunset on December 31, 2019. On January 1, 2020, this blog will no longer be available. More details available on our FAQ.
Co-author : Jin Song Ji We will talk about some basic concepts in Power Linux 64 bit programs. The best and most basic way to learn a new structure is to study the disassembled code, so we will continue doing so. We will learn another concept in PowerPC ELF ABI - Traceback table from some simple examples. From the following code: funcaddr.c ------------------------- int func() { return 2012; } int main(void) { func(); } -------------------------- We can get the following disassembled... [More]