In about every other case where something is classified as undefined behavior there're lots of objections - instead of admitting that code contains an error that should be queued for fixing people try to excuse undefined behavior by "explaining what happens".

I'm trying to gather all the most ingenious ways to make such excuses. Here're the ones I've heard so far:

Excuse 1 Here's a test program showing that behavior is this.
Why it's wrong This is observed behavior - no guarantee that the program doesn't silently send your passwords over the network when run on Sunday 13th. Actual behavior will depend on the implementation, context of calling the code, program data layout, other numerous factors.

Excuse 2 I carefully examined the emitted machine code and behavior is clearly this.
Why it's wrong C++ standard only requires behavior, not specific machine code. Even when compiling correct code the compiler can emit different code each time - for example it can allocate a variable on a register or in memory and clearly code for those will be different. In case of UB there're no requirements on behavior so whatever code could be emitted.

Excuse 3 I carefully validated the compiler, the runtime, the operating system and the processor and I'm sure that behavior is this.
Why it's wrong All that validation becomes useless once the compiler/runtime/OS/processor or a version of them changes. So code with UB is automatically unportable - even between versions of the same compiler which means no service packs and no updates to the tools and to the platform.

What other "excuses" of undefined behavior are there?

link|improve this question

76% accept rate
feedback

7 Answers

up vote 7 down vote accepted

"The reason why the Standard committee needed to classify this behaviour as undefined is XXX, which clearly doesn't and won't apply to us because YYY, thus we'll rely on the behaviour as we understand it to be."

  • some people may really know the reasons, other people think they do, or pretend they do... :-/
  • LOGIC FLAW - even knowing the original reasons, the classification as undefined behaviour has left the door open for compiler writers or the Committee to implement/standardise any manner of behaviour for any reason at any time...

"There's widespread usage assuming XXX, such that if actual behaviour changed, then the fallout would be catastrophic (at least on our deployment environment(s)). So, it's safe to rely on compiler vendors and the Committee not allowing/forcing different behaviour."

IMHO, there are cases where such arguments warrant some consideration as practical if ugly, e.g.:

  • using unions for reinterpretting memory storing different types (even if only by including existing headers that do so, such as ieee754.h on my Linux box)
  • expecting certain things to be thread-safe though not promised by the Standard (whether or not you can find explicit implementation-specific documentation to that effect - I know e.g. SGI is professional enough to document their implementation standards)
    • another example is the need for volatile in threaded code - we can't rely on the Standard as it doesn't cover threading
  • expecting (non-member) pointers to be the same size
  • expecting strings to be contiguous (wasn't that the one being added to C++0x now?)
  • the "struct hack" - suggested in Matthieu's comment (thanks) - indexing into 0-element arrays at the end of structures, where new/malloc was used to allocate extra space encompassing the addresses involved

    ...

Risking undefined behaviour because you don't expect/believe that potential issue will actually happen / "common sense" expectations re likely inputs, the relationships of numeric type ranges to realistic data volumes for the hardware etc..

  • risking numeric overflow (e.g. if giving UNIX tail a "display line numbers" option, could assume the line numbers fit in a long or even int without worrying about incrementing it past the max)
  • risking invalid conversions due to range etc. (e.g. calculating the average of some "building height in metres" inputs from stdin using doubles, but then having to pass the result to a database update routine expecting a float)
  • risking divide by 0 on the assumption that the program will terminate in some way that the user can clearly see indicates a problem with their input, or reflects the precision limitations of the machine

    ...

link|improve this answer
2  
you can throw in the infamous Struct Hack which though legalized by C99 is actually UB in C++ :) – Matthieu M. Nov 24 '10 at 14:22
I'll accept this one because it is sooo "logical" and sounds sooo smart. – sharptooth Nov 26 '10 at 12:48
1  
@sharptooth: it's a bluff... viva la dot points 8-] – Tony Delroy Nov 26 '10 at 14:08
Great point about scenarios like the struct hack. – Derrick Turk Dec 3 '10 at 21:26
feedback

"I've done this for years and I've never had a problem."

Why it's wrong This is another case of observed behaviour. A new compiler may come out tomorrow that follows the standard but handles your UB differently. An old compiler may behave differently in some circumstance you haven't tried (and you can't try them all).

link|improve this answer
LOL. Great. We also had a program that contained UB yet "worked fine" for 5 years: stackoverflow.com/questions/908872/… – sharptooth Nov 24 '10 at 10:31
I'm sure I've made several and been ignorant. Worse, I've probably used this excuse myself once or twice ;) – sje397 Nov 24 '10 at 10:36
feedback

I write for specific OS/architecture, and I do write things that are strictly speaking undefined behavior. For example I'm using invalid pointer values (without dereferencing them). Plus I dig very deep into exception handling implementation details.

I AM NOT GOING TO APOLOGIZE FOR THIS!

It works perfectly, and this is enough for me. Don't like it - fine, rewrite it the way you like.

link|improve this answer
Well, this is reasonable. Have you noticed that I wrote "should be queued for fixing" instead of "should be fixed immediately"? That was deliberate - we all know that fixing all errors ASAP is not a smart choice. – sharptooth Nov 24 '10 at 11:05
In the context of your answer, I'd just like to add that another dimension to this is responsibility: if programming for a work production system (investment banking) I set different thresholds than when scratching together a new GUI frontend for playing my music at home. The consequences of errors, probability of deployment on an architecture that invalidates my assumptions, required longevity, ease to fix, etc all differ. – Tony Delroy Nov 24 '10 at 11:18
@sharptooth: My point is that I'm not going to fix this at all. This is my type of "excuse", if you want. I mix C/C++ code with assembler at will, assume 2-complement integer arithmetics, and so on. Id do realize that my code is very OS/architecture-dependent. And I don't take any responsibility for its porting. – valdo Nov 24 '10 at 11:36
@Tony: As I've already said, my code is very OS/architecture-dependent, I admit this. However I don't accept the argument about overall code "quality level" and "maintenance cost". I write a robust software, including servers that run 24/7. – valdo Nov 24 '10 at 11:38
2  
... but if you're writing low-level code, you sometimes have no choice but to believe in what your implementation does, whether the implementation is adequately documented or not. – Steve Jessop Nov 24 '10 at 13:45
show 2 more comments
feedback

"The chances of something like that happening that are slim to nothing"

Why its wrong Obviously wrong considering that any slim chance is still possible.

or

"Noone would be stupid enough to rewrite this registry entry/change this text file/do this to the program/do that on the keyboard..."

Why its wrong Similar to the above, it could happen, now matter how unlikely. This isn't classical undefined behaviour, where you cannot rely on what your compiler will do with your code, and how the system runs it, but how the user treats your program/OS (which is far less predictable).

link|improve this answer
LOL. Great thing. This feels funny until that code is responsible for security where specially trained people will do their best to exploit all possible ways to break it. – sharptooth Nov 24 '10 at 10:50
1  
Lol. 'Never underestimate user stupidity' – Antonio Pérez Nov 24 '10 at 15:03
2  
Yup. "With the speed of today's computers, 'Once in a billion' is next Tuesday." – Piskvor Nov 25 '10 at 14:32
1  
@Piskvor: With a determined attacker using a botnet once in a billion is in ten minutes. – sharptooth Nov 26 '10 at 12:46
@sharptooth: Even better. – Piskvor Nov 26 '10 at 12:48
feedback

C++ doesn’t allow all programs to have well-defined semantics. The most prominent examples are multithreading or generally any OS specific code: it is generally impossible to write this without using assumptions that exceed what is guaranteed by the standard.

For example, C++ makes no guarantees at all about the atomicity and global ordering of multithreaded read/write operations. But both are required when writing lock-free code. In those situations, one has to ignore the standard and rely on the specifications of the underlying system.

Arguably, this is a weakness of C++. It can also be considered a strength, because it makes the C++ future-proof in the face of new systems.

link|improve this answer
feedback

Excuse: "this code self-evidently is only for use on 2's complement systems (or whatever: 8 bit char, no strict aliasing, etc). Everyone uses such systems anyway (and won't compile my code with high optimization), so nobody will ever have a problem."

Why it's wrong: if I'm that confident that all I'm relying on is 2's complement (or whatever), then I can explicitly document the restriction. My ignorance of any other kind of system is not strong evidence that they don't exist.

This serves two purposes: (1) anyone porting the code or running it on a new system has a checklist of what they need to know from the implementation to know whether the code "should" work. (2) those maintaining the code know that the assumption has been made, and therefore that they can rely on it too if there's good reason.

Having a code base where half the programmers (at random) assume 2's complement implicitly, and the other half introduce extra code to cope with other cases, is just daft. That said, a code base where a few bits of really critical code assume 2's complement (or whatever), but the bulk is written portably, will be easier to port to a 1s' complement system (or compiler options that rely on strict aliasing rules for optimization) since there's less code to review.

link|improve this answer
feedback

Excuse: I checked the code and it should be fine.

I hate that one.

Why it's wrong: Remember the golden rule of programming: If you haven't tested it, it doesn't work.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.