Is there any way, short of putting an attribute on each function prototype, to let gcc know that C functions can never propagate exceptions, i.e. that all functions declared inside extern "C" should be __attribute__((nothrow))? Ideal would be a -f style command line option.
|
|
|||
| show 2 more comments |
|
You can always use |
|||||||||||||
|
|
Side note: It's not necessarily so that
Compiling and running this creates a C-linkage function
I.e. there can be "exception leakage" with |
|||||
|
|
When exception is raised it generate interrupt which unroll stack and override existing stack. It goes up to the point where try/except syntax is. This mean than you do not have any overhead if you do not use exceptions. Only overhead in memory/time is at try/catch blocks and stack unrolling at throw(). If your c functions does not generate exceptions your overhead will be only in space when you will call try/catch in your C++ but is same for any number of exceptions. (and small time overhead on initialising this small space whit constant). |
|||
|
|
|
GCC 4.5 seems to optimize those out for me automatically. Indeed, this line appears in the list of changes at http://gcc.gnu.org/gcc-4.5/changes.html :
|
|||||
|
extern "C"functions can't throw exceptions (with defined behavior)? If so you'd want GCC to make the optimization without an option. But it might not be, if the function was declaredextern "C"but (unlike your code) implemented in C++, I suppose in practice it can throw exceptions as long as it isn't actually called from C. Can't remember if that's legal or not. – Steve Jessop Jan 14 '11 at 23:27qsort). However, the gcc developers want to exceptions to be part of C (they can be part of "GNU C" with-fexceptions) and want to support exceptions across C/C++ code boundaries in the case of callbacks and such. Thus the mess we're in. – R.. Jan 14 '11 at 23:31#ifndef THAT_ATTRIBUTES #ifdef __cplusplus #define THAT_ATTRIBUTES __attribute__((nothrow)) #else #define THAT_ATTRIBUTESat the start of every header, to avoid the dependency oncommon_junk.h. I sympathise with your anti-junk stance, though, it's much nicer to write proper C and expect implementations to do something reasonable with it. – Steve Jessop Jan 14 '11 at 23:32