Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

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 
", i); //Not working
    printf("Hex Address: %#X 
", 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?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
577 views
Welcome To Ask or Share your Answers For Others

1 Answer

Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...