How to work with FP in C

我是研究僧i 提交于 2020-03-05 04:05:08

问题


I am trying to learn and better understand FP(BP), which according to my textbook is "FP(BP): point to the stack frame of current active function". I have learned that the stack frame link list ends in 0. Therefore, in order to print out the stack frame link list, I have written this function:

int a = 1;
int b = 2;
int c = 3;

asm("movl %ebp, FP"); //Sets FP
int *i = FP;

while(i != 0)
{
    printf("Value: %d \n", i); //Not working
    printf("Hex Address: %#X \n", i);
    i = *i;
}

So I think the hex line address is working. It prints 3 hex addresses. I may be wrong but what I'm trying to do is print the values of all 3 variables in the "active function" and also their hex addresses. My value line is not working. Maybe I'm not understanding how function stack is working? I've tried printing i like i, *i, &i, tried all difference things, doesn't work.

Any help clarifying?

来源:https://stackoverflow.com/questions/48274130/how-to-work-with-fp-in-c

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!