Stack Unwinding in C++
Stack Unwinding in C++
The process of removing function entries from function call stack at run time is called Stack Unwinding. Stack Unwinding is generally related to Exception Handling. In C++, when an exception occurs, the function call stack is linearly searched for the exception handler, and all the entries before the function with exception handler are removed from the function call stack. So exception handling involves Stack Unwinding if exception is not handled in same function (where it is thrown).
For example, output of the following program is:
Stack Unwinding also happens in Java when exception is not handled in same function.
For example, output of the following program is:
f3() Start f2() Start f1() Start Caught Exception: 100 f3() End
#include <iostream> using namespace std; // A sample function f1() that throws an int exception void f1() throw (int) { cout<<"\n f1() Start "; throw 100; cout<<"\n f1() End "; } // Another sample function f2() that calls f1() void f2() throw (int) { cout<<"\n f2() Start "; f1(); cout<<"\n f2() End "; } // Another sample function f3() that calls f2() and handles exception thrown by f1() void f3() { cout<<"\n f3() Start "; try { f2(); } catch(int i) { cout<<"\n Caught Exception: "<<i; } cout<<"\n f3() End"; } // A driver function to demonstrate Stack Unwinding process int main() { f3(); getchar(); return 0; }In the above program, when f1() throws exception, its entry is removed from the function call stack (because it f1() doesn’t contain exception handler for the thrown exception), then next entry in call stack is looked for exception handler. The next entry is f2(). Since f2() also doesn’t have handler, its entry is also removed from function call stack. The next entry in function call stack is f3(). Since f3() contains exception handler, the catch block inside f3() is executed, and finally the code after catch block is executed. Note that the following lines inside f1() and f2() are not executed at all.
//inside f1() cout<<"\n f1() End "; //inside f2() cout<<"\n f2() End ";On a side note, if there were some local class objects inside f1() and f2(), destructors for those local objects would have been called in Stack Unwinding process.
Stack Unwinding also happens in Java when exception is not handled in same function.
Stack unwinding is usually talked about in connection with exception handling. Here's an another example:
void func( int x )
{
char* pleak = new char[1024]; // might be lost => memory leak
std::string s( "hello world" ); // will be properly destructed
if ( x ) throw std::runtime_error( "boom" );
delete [] pleak; // will only get here if x == 0. if x!=0, throw exception
}
int main()
{
try
{
func( 10 );
}
catch ( const std::exception& e )
{
return 1;
}
return 0;
}
Here memory allocated for
pleak
will be lost if exception is thrown, while memory allocated to s
will be properly released by std::string
destructor in any case. The objects allocated on the stack are "unwound" when the scope is exited (here the scope is of the function func
.) This is done by the compiler inserting calls to destructors of automatic (stack) variables.
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++.
Comments
Post a Comment