Does -fomit-frame-pointer always omit the frame pointer? Is there ever a situation where both the pc and fp need to be setup? Does dynamic stack growth force the fp to be setup? Asking specifically for MIPS32. Thanks!
|
feedback
|
|
The frame pointer is not really needed for correct execution, except sometimes for exception unwind. Dynamic stack growth usually requires some kind of a frame pointer, but it is not tied to a particular register, but rather allocated through normal data flow analysis. Basically, | |||
|
feedback
|
|
Not a mips person, but something that should apply to any system: If the stack needs to be aligned at any point, a frame would need to be used to store the original pointer(as the stack address and alignment may not be know) | |||
|
feedback
|
|
No, the frame pointer is not normally needed. The compiler may access local variables relative to the stack pointer and does not need a special frame pointer. Nevertheless, the standard frame pointer setup sequence can help when debugging a crashed program (even when not compiled with So, when using | |||
|
feedback
|