Why is the destructor ignored in this C++ code? (Turbo C++ Explorer, Borland C++ Builder 2006) - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T02:38:16Z http://stackoverflow.com/feeds/question/473720 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/473720/why-is-the-destructor-ignored-in-this-c-code-turbo-c-explorer-borland-c 6 Why is the destructor ignored in this C++ code? (Turbo C++ Explorer, Borland C++ Builder 2006) Sebastian 2009-01-23T17:10:35Z 2009-05-05T15:50:22Z <p>The following code demonstrates a weird problem I have in a Turbo C++ Explorer project. One of the three stack objects in D::D() is not destroyed after going out of scope. </p> <p>This only happens if compiled in release mode, the auto_ptrs a_ and b_ are of different types and the exception thrown doesn't inherit from std::exception. It appears to work just fine in VC++ 2005 and C++ Builder 2009. I did install the BDS2006 Update 2, the hotfix rollup and hotfix 12.</p> <p>Is it my code or the compiler? Do you know of a fix? Not being able to reliably use auto_ptr in a VCL project would be quite inconvenient. </p> <p><br></p> <pre><code>#include &lt;memory&gt; #include &lt;stdexcept&gt; #include &lt;iostream&gt; typedef std::exception my_error; // will work fine if replaced with line below //class my_error : public std::exception {}; class A {}; class B {}; class C { public: C(int id) : id_(id) { std::cout &lt;&lt; "C::C() " &lt;&lt; id_ &lt;&lt; std::endl; }; ~C() { std::cout &lt;&lt; "C::~C() " &lt;&lt; id_ &lt;&lt; std::endl; }; private: int id_; }; class D { public: D() { C c1(1); C c2(2); C c3(3); throw my_error(); }; private: std::auto_ptr&lt;A&gt; a_; std::auto_ptr&lt;B&gt; b_; // will work fine if replaced with line below // std::auto_ptr&lt;A&gt; b_; // std::auto_ptr&lt;C&gt; c_; // see expected output }; #pragma argsused int main(int argc, char* argv[]) { try { D d; } catch (...) { std::cout &lt;&lt; "caught exception" &lt;&lt; std::endl; } return 0; } </code></pre> <p><br> Expected:</p> <pre> C::C() 1 C::C() 2 C::C() 3 C::~C() 3 C::~C() 2 C::~C() 1 caught exception </pre> <p><br> Got:</p> <pre> C::C() 1 C::C() 2 C::C() 3 C::~C() 2 C::~C() 1 caught exception </pre> <p><br> Got (with line '<code>// std::auto_ptr&lt;C&gt; c_;</code>' uncommented):</p> <pre> C::C() 1 C::C() 2 C::C() 3 C::~C() 1 caught exception </pre> <p><br> <strong>Edit:</strong> Made suggested changes <br><br> <strong>Edit 2:</strong><br> I just tested it with C++ Builder 2007 (11.0.2902.10471), which shows the same problem. The release configuration works as soon as I check the "Debug information" box in Project -> Options -> C++ Compiler -> Debugging. It surprises me that the executable gets smaller with "Debug information" enabled (down to 31.5 KB from 39.5 KB ). <br><br> <strong>Edit 3:</strong><br> In Turbo C++ Explorer (C++ Builder 2006) (10.0.2288.42451) the release configuration works if I uncheck the "Inline function expansion (-vi)" box in Project -> Options -> C++ Compiler -> Debugging. Replacing the first line (<code>#include &lt;memory&gt;</code>) with the following code makes it work, too. </p> <pre><code>#pragma option push -vi- #include &lt;memory&gt; #pragma option pop </code></pre> http://stackoverflow.com/questions/473720/why-is-the-destructor-ignored-in-this-c-code-turbo-c-explorer-borland-c/473737#473737 1 Answer by Andrew Rollings for Why is the destructor ignored in this C++ code? (Turbo C++ Explorer, Borland C++ Builder 2006) Andrew Rollings 2009-01-23T17:15:45Z 2009-01-23T17:15:45Z <p>If an exception is thrown in an object constructor, the destructor will not run.</p> <p>The compiler has no way of knowing if the constructor completed sufficiently for the destructor to run correctly.</p> <p>See <a href="http://www.parashift.com/c++-faq-lite/exceptions.html#faq-17.4" rel="nofollow">http://www.parashift.com/c++-faq-lite/exceptions.html#faq-17.4</a></p> <p>EDIT: Responding to the comment below... In this case, it's most likely a compiler bug lumping the 'don't run the destructor' rule in with incorrectly not destroying objects on the stack.</p> http://stackoverflow.com/questions/473720/why-is-the-destructor-ignored-in-this-c-code-turbo-c-explorer-borland-c/473753#473753 5 Answer by JaredPar for Why is the destructor ignored in this C++ code? (Turbo C++ Explorer, Borland C++ Builder 2006) JaredPar 2009-01-23T17:21:09Z 2009-01-23T17:21:09Z <p>This appears to be a compiler bug. I just ran the same sample in VS2008SP1 and got the expected output. </p> http://stackoverflow.com/questions/473720/why-is-the-destructor-ignored-in-this-c-code-turbo-c-explorer-borland-c/473763#473763 4 Answer by Arkadiy for Why is the destructor ignored in this C++ code? (Turbo C++ Explorer, Borland C++ Builder 2006) Arkadiy 2009-01-23T17:24:05Z 2009-01-23T17:24:05Z <p>For whatever it's worth, GCC 3.4.6 does the expected thing:</p> <pre><code>$ g++ main.cpp $ a.out C::C() C::C() C::~C() C::~C() caught exception </code></pre> http://stackoverflow.com/questions/473720/why-is-the-destructor-ignored-in-this-c-code-turbo-c-explorer-borland-c/473765#473765 1 Answer by Ismael for Why is the destructor ignored in this C++ code? (Turbo C++ Explorer, Borland C++ Builder 2006) Ismael 2009-01-23T17:24:47Z 2009-01-23T17:24:47Z <p>Maybe the cout stream is not flushed? Can you try with cerr instead? or directly put a breakpoint in destructor and check if they are hit?</p> http://stackoverflow.com/questions/473720/why-is-the-destructor-ignored-in-this-c-code-turbo-c-explorer-borland-c/473773#473773 0 Answer by Rob K for Why is the destructor ignored in this C++ code? (Turbo C++ Explorer, Borland C++ Builder 2006) Rob K 2009-01-23T17:26:26Z 2009-01-23T17:26:26Z <p>Looks like a bug in the exception handling stack unwind code. Try making a simple class E with an instance of it in D's constructor and see if it gets called. </p> http://stackoverflow.com/questions/473720/why-is-the-destructor-ignored-in-this-c-code-turbo-c-explorer-borland-c/825542#825542 2 Answer by Moritz Beutel for Why is the destructor ignored in this C++ code? (Turbo C++ Explorer, Borland C++ Builder 2006) Moritz Beutel 2009-05-05T15:50:22Z 2009-05-05T15:50:22Z <p>It's a compiler bug in C++Builder 2006. C++Builder 2009 fixes it; this is the output I get for BCC v6.1:</p> <pre><code>C::C() 1 C::C() 2 C::C() 3 C::~C() 3 C::~C() 2 C::~C() 1 caught exception</code></pre>