Thought Leadership

Exception handling in C++ – developers are wary

By Colin Walls

As I mentioned last week, I am very much in “C++ mode” just now, mainly because I am preparing for some online classes. As a result of various social media contacts, I am getting some interesting impressions of how C++ is viewed among embedded developers. There is certainly much controversy. Some developers love it, but many are very critical.

Various aspects of the language concern engineers, and a particular one is exception handling …

The Exception Handling System [EHS] in C++ has nothing to be with exceptions in the sense of being hardware interrupts. It is designed to handle exceptional situations that are detected by the software. The intention is to provide a controlled failure mode, where a smooth exit from some deeply nested function calls is required [without resorting to goto].

EHSThe use of EHS is quite straightforward. Code that needs EHS activated during its execution is enclosed in a try block. A throw statement is used to assert an exception, which is identified by means of a class. Processing of the exception is performed by some code in a catch block. There is normally one catch block for each type of exception that may be asserted.

This seems quite neat and simple and does provide a way to write fairly readable code in which exception handling is needed. However, there are some key points that should make embedded developers wary:

  • If you are going to use the EHS, the additional code much be incorporated [a compiler option] for the entire application. It is not obvious to the human reader [or the compiler] what functions might be called [indirectly] by the code in a try block. This additional code adds size and reduces execution performance.
  • Many compilers default to including EHS code. This means that the unwitting user incorporates the overhead automatically, even if they have no intention of using the EHS. A compiler switch is normally available to activate or deactivate the EHS code generation.
  • If you application’s exception handling needs are simple, there are two ways to deploy the EHS which reduce the overheads:
    1. Use a generic catch block [where the type is specified with “…”] instead of one for each type of exception.
    2. Do not include any catch blocks. This results in the library function terminate() being called when an exception is thrown. This function can be customized.

Personally, I would shy away from using EHS, but, used with care, it may be beneficial to many designs. The overhead should be carefully measured.

Comments

0 thoughts about “Exception handling in C++ – developers are wary
  • Using macros (remember those?) you can invent “alternative keywords” (e.g. TRY, CATCH THROW) which will allow code to be compiled with or without exception handling enabled. The macro keyword substitutes do their obvious things with EH enabled. if EH is disabled, you can, with a configuration macro, cause TRY to become null, CATCH to become “if (false)” and THROW to cause some kind of assertion error.

    I, too, tend to shy away from EH in the real-time and smallish embedded projects in which I am typically involved. However, even for these, using the above macros allows EH to be turned on for testing and this can be very useful.An important part of testing is to test the error paths. An assertion error will kill your test suite but an exception can be caught and checked by the relevant test, allowing further tests to run normally.

Leave a Reply

This article first appeared on the Siemens Digital Industries Software blog at https://blogs.sw.siemens.com/embedded-software/2014/05/12/exception-handling-in-c-developers-are-wary/