What is stack unwinding? Searched through but couldn't find enlightening answer!
|
|
Stack unwinding is usually talked about in connection with exception handling. Here's an example:
Here memory allocated for Now this is a very powerful concept leading to the technique called RAII, that is Resource Acquisition Is Initialization, that helps us manage resources like memory, database connections, open file descriptors, etc. in C++. Now that allows us provide exception safety guarantees. |
|||||||||||||||
|
|
In a general sense, a stack "unwind" is pretty much synonymous with the end of a function call and the subsequent popping of the stack. However, specifically in the case of C++, stack unwinding has to do with how C++ calls the destructors for the objects allocated since the started of any code block. Objects that were created within the block are deallocated in reverse order of their allocation. |
|||||||||||||
|
|
All this relates to C++: Definition: As you create objects statically (on the stack as opposed to allocating them in the heap memory) and perform function calls, they are "stacked up". When a scope (anything delimited by You have the following issues related to stack unwinding:
If any destructor throws an exception during stack unwinding you end up in the land of undefined behavior which could cause your program to treminate unexpectedly (most common behavior) or the universe to end (theoretically possible but has not been observed in practice yet). |
|||||||||
|
|
Everyone has talked about the exception handling in C++. But,I think there is another connotation for stack unwinding and that is related to debugging. A debugger has to do stack unwinding whenever it is supposed to go to a frame previous to the current frame. However, this is sort of virtual unwinding as it needs to rewind when it comes back to current frame. The example for this could be up/down/bt commands in gdb. |
|||
|
|
|
Stack unwinding is a mostly C++ concept, dealing with how stack-allocated objects are destroyed when its scope is exited (either normally, or through an exception). Say you have this fragment of code:
|
|||||
|
|
I don't know if you read this yet, but Wikipedia's article on the call stack has a decent explanation. |
|||
|
|
|
When an exception is thrown and control passes from a try block to a handler, the C++ run time calls destructors for all automatic objects constructed since the beginning of the try block. This process is called stack unwinding. The automatic objects are destroyed in reverse order of their construction. (Automatic objects are local objects that have been declared auto or register, or not declared static or extern. An automatic object x is deleted whenever the program exits the block in which x is declared.) If an exception is thrown during construction of an object consisting of subobjects or array elements, destructors are only called for those subobjects or array elements successfully constructed before the exception was thrown. A destructor for a local static object will only be called if the object was successfully constructed. |
|||
|
|
