c++ Programming Glossary: fpo
What is exactly the base pointer and stack pointer? To what do they point? http://stackoverflow.com/questions/1395591/what-is-exactly-the-base-pointer-and-stack-pointer-to-what-do-they-point in first local mov ebx ebp 8 Load ebx from second local FPO or frame pointer omission optimization which you can enable..
Can optimizations affect the ability to debug a VC++ app using its PDB? http://stackoverflow.com/questions/563000/can-optimizations-affect-the-ability-to-debug-a-vc-app-using-its-pdb when the compiler uses different kinds of optimizations FPO PGO intrinsic functions inlining etc. If so is the effect of.. use PGO this jumping around will probably just get worse. FPO shouldn't affect debuggability too much provided you have a.. contains all the info necessary to unwind the stack for FPO frames. FPO can be a problem when using tools that need to take..
|