Say like:

a[i] = i++;

link|improve this question

1  
Are you sure. That looks well defined. – Loki Astari Dec 15 '08 at 7:10
8  
6.2.2 Evaluation Order [expr.evaluation] in The C++ programming language say so.I dont have any other reference – yesraaj Dec 15 '08 at 7:24
4  
He's right.. just looked at 6.2.2 in The C++ Programming Language and it says v[i] = i++ is undefined – dancavallaro Dec 15 '08 at 7:24
3  
I would imagine because the the comiler make execute the i++ before or after calculating the memory location of v[i]. sure, i is always going to be assigned there. but it could write to either v[i] or v[i+1] depending on order of operations.. – Evan Teran Dec 15 '08 at 7:44
1  
All that The C++ Programming Language says is "The order of operations of subexpressions within an expression is undefined. In particular, you cannot assume that the expression is evaluated left to right." – dancavallaro Dec 15 '08 at 8:14
show 4 more comments
feedback

14 Answers

up vote 141 down vote accepted

By going through the C++ standard, I found that the following actions will yield undefined behavior. My list does not include the use of the C++ standard library.

  • Dereferencing a NULL pointer
  • Dereferencing a pointer returned by a request for a zero-size object
  • Using pointers to objects whose lifetime has ended (for instance, stack allocated objects or deleted objects)
  • Depending on the value of an uninitialized automatic variable
  • A zero second operand to integer / and % operators
  • Performing pointer arithmetic that yields a result outside the boundaries (+1) of an array.
  • Dereferencing the pointer to (after) the end of an array if there is no suitable object at that place
  • Converting a floating point value to a value that can't be represented by the target type
  • Evaluating an expression whose result is not in the range of the corresponding types
  • Converting pointers to objects of incompatible types
  • Attempting to modify a string literal or other const object during its lifetime
  • Not returning a value from a value-returning function (directly or by flowing off from a try-block)
  • Using the value of any object of type other than volatile or sig_atomic_t at the receipt of a signal
  • A non-empty source file that doesn't end with a newline, or ends with a backslash
  • Preprocessor numeric values that can't be represented by a long int
  • A backslash followed by a character that is not part of the specified escape codes in a character or string constant (this is implementation-defined in C++11).
  • Concatenating a narrow with a wide string literal during preprocessing
  • Multiple different definitions for the same entity (class, template, enumeration, inline function, static member function, etc.)
  • Calling exit during the destruction of a program with static storage duration
  • Cascading destructions of objects with static storage duration
  • Shifting values by a negative amount
  • The result of assigning to partially overlapping objects
  • Recursively re-entering a function during the initialization of its static objects
  • Making virtual function calls to pure virtual functions of an object from its constructor or destructor
  • Referring to nonstatic members of objects that have not been constructed or have already been destructed
  • Infinite recursion in the instantiation of templates
  • Dynamically generating the defined token in a #if expression
  • Preprocessing directive on the left side of a function-like macro definition
  • Stack overflow
  • Exceeding implementation limits (number of nested blocks, number of functions in a program, available stack space ...)
link|improve this answer
21  
Why would you community wiki this answer!? You deserve the rep for it! Good work! – Simucal Dec 15 '08 at 10:28
19  
So other people could add to the list. – SLaks Dec 28 '09 at 18:23
Hm... NaN (x / 0) and Infinity (0 / 0) were covered by the IEE 754, if C++ was designed later, why does it record x / 0 as undefined? – new123456 Apr 5 '11 at 13:22
Re: "A backslash followed by a character that is not part of the specified escape codes in a character or string constant." That's UB in C89 (§3.1.3.4) and C++03 (which incorporates C89), but not in C99. C99 says that "the result is not a token and a diagnostic is required" (§6.4.4.4). Presumably C++0x (which incorporates C89) will be the same. – Adam Rosenfield Jun 7 '11 at 4:31
The C99 standard has a list of undefined behaviors in appendix J.2. It would take some work to adapt this list to C++. You'd have to change the references to the correct C++ clauses rather than the C99 clauses, remove anything irrelevant, and also check whether all those things really are undefined in C++ as well as C. But it provides a start. – Steve Jessop Jun 7 '11 at 8:13
feedback

The compiler is free to re-order the evaluation parts of an expression (assuming the meaning is unchanged).

From the original question:

a[i] = i++;

// This expression has three parts:
(a) a[i]
(b) i++
(c) Assign (b) to (a)

// (c) is guaranteed to happen after (a) and (b)
// But (a) and (b) can be done in either order.
// See n2521 Section 5.17
// (b) increments i but returns the original value.
// See n2521 Section 5.2.6
// Thus this expression can be written as:

int rhs  = i++;
int lhs& = a[i];
lhs = rhs;

// or
int lhs& = a[i];
int rhs  = i++;
lhs = rhs;

Double Checked locking. And one easy mistake to make.

A* a = new A("plop");

// Looks simple enough.
// But this can be split into three parts.
(a) allocate Memory
(b) Call constructor
(c) Assign value to 'a'

// No problem here:
// The compiler is allowed to do this:
(a) allocate Memory
(c) Assign value to 'a'
(b) Call constructor.
// This is because the whole thing is between two sequence points.

// So what is the big deal.
// Simple Double checked lock. (I know there are many other problems with this).
if (a == null) // (Point B)
{
    Lock   lock(mutex);
    if (a == null)
    {
        a = new A("Plop");  // (Point A).
    }
}
a->doStuff();

// Think of this situation.
// Thread 1: Reaches point A. Executes (a)(c)
// Thread 1: Is about to do (b) and gets unscheduled.
// Thread 2: Reaches point B. It can now skip the if block
//           Remember (c) has been done thus 'a' is not NULL.
//           But the memory has not been initialized.
//           Thread 2 now executes doStuff() on an uninitialized variable.

// The solution to this problem is to move the assignment of 'a'
// To the other side of the sequence point.
if (a == null) // (Point B)
{
    Lock   lock(mutex);
    if (a == null)
    {
        A* tmp = new A("Plop");  // (Point A).
        a = tmp;
    }
}
a->doStuff();

// Of course there are still other problems because of C++ support for
// threads. But hopefully these are addresses in the next standard.
link|improve this answer
what is mean by sequence point? – yesraaj Dec 15 '08 at 8:25
1  
Ooh... that's nasty, especially since I've seen that exact structure recommended in Java – Tom Dec 15 '08 at 14:44
Note that some compilers do define the behaviour in this situation. In VC++ 2005+, for example, if a is volatile, the needed memory bariers are set up to prevent instruction reordering so that double-checked locking works. – Eclipse Jun 23 '09 at 16:11
@Eclipse: Interesting. – Loki Astari Jun 23 '09 at 20:56
show 9 more comments
feedback

The order that function parameters are evaluated is unspecified behavior. (This won't make your program crash, explode, or order pizza... unlike undefined behavior.)

The only requirement is that all parameters must be fully evaluated before the function is called.


This:

// The simple obvious one.
callFunc(getA(),getB());

Can be equivalent to this:

int a = getA();
int b = getB();
callFunc(a,b);

Or this:

int b = getB();
int a = getA();
callFunc(a,b);

It can be either; it's up to the compiler. The result can matter, depending on the side effects.

link|improve this answer
2  
That is very nasty. – JaredPar Dec 15 '08 at 7:16
15  
The order is unspecified, not undefined. – Rob Kennedy Dec 15 '08 at 7:55
I hate this one :) I lost a day of work once tracking down one of these cases... anyways learned my lesson and haven't fallen again fortunately – Robert Gould Dec 15 '08 at 8:29
@Rob: I would argue with you about the change in meaning here, but I know the standards committee is very picky on the exact definition of these two words. So I'll just change it :-) – Loki Astari Dec 15 '08 at 8:34
1  
I got lucky on this one. I got bitten by it when I was in college and had a professor who took one look at it and told me my problem in about 5 seconds. No telling how much time I would have wasted debugging otherwise. – Bill the Lizard Dec 15 '08 at 16:06
feedback

A guide to undefined behavior in C and C++.

link|improve this answer
Very enjoyable blog serie. Especially the part about instruction reordering, I knew about it, of course, but never thought this could hamper debug :) – Matthieu M. Aug 22 '10 at 12:03
feedback

My favourite is "Infinite recursion in the instantiation of templates" because I believe it's the only one where the undefined behaviour occurs at compile time.

link|improve this answer
Done this before, but I don't see how its undefined. Its quite obvious your doing an infinite recursion in afterthought. – Robert Gould Dec 15 '08 at 8:25
The problem is that the compiler cannot examine your code and decide precisely whether it will suffer from infinite recursion or not. It's an instance of the halting problem. See: stackoverflow.com/questions/235984/… – Daniel Earwicker Dec 15 '08 at 9:17
Yeah its definitely a halting problem – Robert Gould Dec 16 '08 at 1:44
it made my system crash because of swapping caused by too little memory. – Johannes Schaub - litb Dec 28 '08 at 11:13
Preprocessor constants that don't fit into an int is also compile time. – Joshua Aug 17 '10 at 21:01
feedback

Besides undefined behaviour there is also equally nasty implementation-defined behaviour.

Undefined behaviour occurs when a program does something the result of which is not specified by the standard.

Implementation-defined behaviour is an action by a program the result of which is not defined by the standard, but which the implementation is required to document. An example is "Multibyte character literals" from this question.

Implementation-defined behaviour only bites you when you start porting (but upgrading to new version of compiler is also porting!)

link|improve this answer
feedback

Maybe what C++ pitfalls should i avoid will help.

link|improve this answer
feedback
const int i = 10; 
int *p =  const_cast<int*>( &i );
*p = 1234; //Undefined
link|improve this answer
feedback

The only type for which C++ guarantees a size is char. And the size is 1. The size of all other types is platform dependent

link|improve this answer
Isn't that what <cstdint> is for? It defines types such as uint16_6 et cetera. – Jasper Bekkers Dec 15 '08 at 7:54
Yes, but the size of most types, say long, is not well defined. – JaredPar Dec 15 '08 at 8:04
also cstdint isn't part of the current c++ standard yet. see boost/stdint.hpp for a currently portable solution. – Evan Teran Dec 15 '08 at 8:07
That's not undefined behaviour. The standard says that conforming platform defines the sizes, rather than the standard defining them. – Daniel Earwicker Dec 15 '08 at 8:16
Also not that the standard does not define how much 1 byte is. It is at least 8 bits, but anything above that is allowed, so a C++-byte is not necessarily equal to a real life byte / anyways, I vote you up as this does not deserve a down-vote. – phresnel Feb 2 '10 at 8:37
show 1 more comment
feedback

Variables may only be updated once in an expression
(Technically once between sequence points).

int i =1;
i = ++i;

// Undefined. Assignment to i twice in the same expression.
link|improve this answer
Infact at least once between two sequence points. – Prasoon Saurav Aug 12 '10 at 13:10
@Prasoon: I think you meant : at most once between two sequence points. :-) – Nawaz Jun 7 '11 at 9:24
feedback

Namespace-level objects in different compilation units should never depend on each other for initialization, because their initialization order is undefined

link|improve this answer
feedback

A basic understanding of the various environmental limits, the full list is in section 5.2.4.1 of the C spec, here are a few;

  • 127 parameters in one function definition
  • 127 arguments in one function call
  • 127 parameters in one macro definition
  • 127 arguments in one macro invocation
  • 4095 characters in a logical source line
  • 4095 characters in a character string literal or wide string literal (after concatenation)
  • 65535 bytes in an object (in a hosted environment only)
  • 15nesting levels for #includedfiles
  • 1023 case labels for a switch statement (excluding those for anynested switch statements)

I was actually a bit surprised at the limit of 1023 case labels for a switch statement, I can forsee that being exceeded for generated code/lex/parsers fairly easially.

If these limits are exceeded, you have undefined behavior (crashes, security flaws, etc...).

Right, I know this is from the C spec, but C++ shares these basic supports.

link|improve this answer
If you hit these limits, you've got more problems than undefined behavior. – new123456 Apr 22 '11 at 2:00
feedback

The evaluation order of function parameters is arbitrary. (So do not place operations between brackets in a function call)

link|improve this answer
feedback

Any program that uses multithreading.

link|improve this answer
1  
This isn't undefined per se. It just isn't directly supported by the language. Butby the same logic you could say, "any program which uses Windows Edit Boxes" which is, of course, nonsense. – John Dibling Jun 15 '09 at 18:04
2  
multithreading and "edit boxes" are not analogous in this context. I'm not sure whether or not multithreading is officially considered a source of undefined behavior, but clearly multithreading has the potential to break a program in ways that could be considered "undefined" or at least "unpredictable". The answer could have perhaps been stated less broadly, but it does make a good point. – nobar Nov 9 '09 at 16:26
Multithreading would be defined as implementation defined behavior NOT undefined behavior. – Loki Astari Dec 3 '10 at 15:45
It isn't undefined, it is just unpredictable. This is because you don't know the order by which statements are executed, but you know there are only so many different ways it can go. – Alexander Rafferty Dec 20 '10 at 0:48
+1 this is undefined behavior in the realms of Standard C++. The Standard does not define behavior for it. – Johannes Schaub - litb Sep 3 '11 at 12:39
feedback

Your Answer

 
or
required, but never shown

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