Tagged Questions

109
votes
4answers
5k views

Undefined Behavior and Sequence Points

What are "Sequence Points"? What is the relation between Undefined Behaviour and Sequence Points? I often use funny and convoluted expressions like a[++i] = i;, to make myself feel better. Why ...
27
votes
5answers
1k views

Undefined Behavior and Sequence Points Reloaded

Consider this topic a sequel of the following topic: Previous Installment Undefined Behavior and Sequence Points Let's revisit this funny and convoluted expression (the italicized phrases ...
19
votes
6answers
982 views

Is this code well-defined?

This code is taken from a discussion going on here. someInstance.Fun(++k).Gun(10).Sun(k).Tun(); Is this code well-defined? Is ++k in Fun() evaluated before k in Sun()? What if k is user-defined ...
13
votes
7answers
783 views

How do Prefix and Postfix operations work?

Can someone tell me how prefix / postfix operators really work? I've been looking online a lot but haven't found anything. From what I can tell prefix first increments, then does the operation and ...
12
votes
2answers
486 views

Unsequenced value computations (a.k.a sequence points)

Sorry for opening this topic again, but thinking about this topic itself has started giving me an Undefined Behavior. Want to move into the zone of well-defined behavior. Given int i = 0; int v[10]; ...
11
votes
5answers
145 views

Does placement-new introduce a sequence point?

Consider the following line of code: new (p++) T(); If the constructor T() throws an exception, is p guaranteed to have already been incremented?
9
votes
3answers
202 views

Sequence Points and Method Chaining

The following expression is often used to demonstrate undefined unspecified behaviour: f() + g() If f() and g() both have side effects on some shared object then the behaviour is undefined ...
9
votes
4answers
301 views

Can a C/C++ compiler legally cache a variable in a register across a pthread library call?

Suppose that we have the following bit of code: #include <pthread.h> #include <stdio.h> #include <stdlib.h> void guarantee(bool cond, const char *msg) { if (!cond) { ...
9
votes
3answers
459 views

Any good reason why assignment operator isn't a sequence point?

Is there any good reason for operator = not being a sequence point? Both in C and C++. I have trouble thinking about an counter-example.
9
votes
3answers
264 views

complicated expression involving logical AND (&&)

void main(void) { int x,y,z; x=y=z=1; z = x && y && ++z;//is this fine? } I have lately started reading about sequence points stuffs but I cannot figure out whether the above ...
8
votes
2answers
173 views

Is this code well defined?

I suspect the following chaining of functions would result in unspecified sequence according to the C++ standards (assume C++0x). Just want a confirmation and if anyone could provide an explanation, ...
8
votes
3answers
500 views

C++11 without sequence point?

Wikipedia says that sequence points are deprecated in C++11. What does that mean? Does that mean that undefined behaviors due to sequence points has no effects?
7
votes
5answers
281 views

An explanation about Sequence points

Lately, I have seen a lot of questions being asked about output for some crazy yet syntactically allowed code statements like like i = ++i + 1 and i=(i,i++,i)+1;. Frankly realistically speaking hardly ...
7
votes
4answers
284 views

Behavior of an expression: Defined or Undefined?

I have the following code int m[4]={1,2,3,4}, *y; y=m; *y = f(y++); // Expression A My friend told me that Expression A has a well defined behavior but I am not sure whether he is correct. ...
4
votes
3answers
132 views

Why does gcc not give a warning at undefined behaviour in code inside?

I just read this SO C++ FAQ about undefined behavior and sequence points and experimented a bit. In the following code gcc-4.5.2 gives me a warning only in the line mentioned in the code comment, ...
4
votes
5answers
431 views

Is this “*ptr++ = *ptr + a” undefined behavior?

Well, I'm not really in serious need of this answer, I am just inquisitive. Expressions like *ptr++ = a are perfectly valid since we are operating on two objects ptr and *ptr but if i write *ptr++ = ...
4
votes
6answers
512 views

Which issues have you encountered due to sequence points in C and C++?

Below are two common issues resulting in undefined behavior due to the sequence point rules: a[i] = i++; //has a read and write between sequence points i = i++; //2 writes between sequence points ...
3
votes
2answers
136 views

Sequence points in C++ and exceptions

Can compiler reorder variable setting and throw() op in C++? Or, does standard C++ 14882-1998 allows or prohibit compiler of this transform? For code: bool funct() { bool succeeded = false; ...
3
votes
3answers
208 views

Why is this Undefined Behavior?

Why does the following given expression invoke undefined behavior? int i = 5; i = (i,i++,i) + 1 My question is influenced by Als' question here
2
votes
2answers
56 views

Argument evaluation order between chained static function calls

I am curious why there is a difference in the argument evaluation order between chained static functions and member functions. From the answers at this question I can see it is unspecified what the ...
2
votes
2answers
101 views

Is there a guaranteed happens-before relationship for argument evaluation to chained methods?

I want to trim a string in C++ with this code: std::string str(" Trim test "); str.erase( /* 1 */ 0, /* 2 */ ...
2
votes
1answer
376 views

Is (++i)++ undefined behavior?

Is (++i)++ undefined behavior? Is it possible that the side effect of prefix increment happens after retrieving the incremented object for postfix increment to operate on? That would seem strange to ...
2
votes
4answers
216 views

Can assignment be done before constructor is called?

A comment to http://stackoverflow.com/questions/945232/whats-wrong-with-this-fix-for-double-checked-locking says: The issue is that the variable may be assigned before the constructor is run ...
1
vote
2answers
112 views

Variable assignment in 1st condition and using same variable in 2nd condition Well defined?

Is this well defined? Streamreader ^reader = gcnew Streamreader("test.txt"); String ^line; while ((line = reader->ReadLine()) != nullptr && line != "") { //do stuff } I believe ...
0
votes
1answer
86 views

Passing sequence of 2D points as arguments to cvFitLine

I have the following code fragment: int count = (int)sizes.size(); CvSeq* seq = cvCreateSeq(0, sizeof(CvSeq), sizeof(CvPoint2D32f), memStorage); float line[4]; for (int i=0;i<count;i++) { ...