Tagged Questions
The sequence-points tag has no wiki summary.
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 ...
38
votes
3answers
584 views
In C99, is f()+g() undefined or merely unspecified?
I used to think that in C99, even if the side-effects of functions f and g interfered, and although the expression f() + g() does not contain a sequence point, f and g would contain some, so the ...
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 ...
20
votes
2answers
247 views
is i=f(); defined when f modifies i?
Related question: Any good reason why assignment operator isn't a sequence point?
From the comp.lang.c FAQ I would infer that the program below is undefined. Strangely, it only mentions the call ...
19
votes
6answers
983 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
6answers
256 views
Is there a sequence point between these assignments?
Is there a sequence point between the two assignments in the following code:
f(f(x=1,1),x=2);
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?
10
votes
5answers
295 views
Is “*p = ++(*q)” undefined when p and q point to the same object?
after reading about sequence points, I learned that i = ++i is undefined.
So how about this code:
int i;
int *p = &i;
int *q = &i;
*p = ++(*q); // that should also be undefined ...
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
302 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
461 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
3answers
187 views
Is there a sequence point between structure member initializations?
Is there a sequence point between structure member initialization expressions?
For example, is it well defined that the code bellow will always print "a, b"?
#include <stdio.h>
typedef struct ...
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.
...
5
votes
2answers
294 views
Is “int i = x++, j = x++;” legal?
Pretty clear in the title, I think. I'm not entirely sure on this, and I can't find a good answer via the Googles (alas, I haven't committed to the fine art of standards-fu), so I ask:
int i = x++, j ...
5
votes
3answers
1k views
What's wrong with this fix for double checked locking?
So I've seen a lot of articles now claiming that on C++ double checked locking, commonly used to prevent multiple threads from trying to initialize a lazily created singleton, is broken. Normal double ...
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
1answer
183 views
sequence points in java
Is there a guaranteed sequence of execution of the following java code:
int i = getA() + getB();
Is getA() always executed before getB(), as any average person would expect?
3
votes
1answer
154 views
Is gcc's -Wsequence-point warning flag broken?
I'm getting a warning for this line:
e = strtol(++s, (char **)&s, 10);
Moving the ++s to a separate statement makes the warning go away, but as far as I can tell, this warning is completely ...
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
3answers
123 views
Suggestions for concise index handling in circular buffer
I've implemented a circular buffer, and I would like a concise means of updating the buffer pointer while properly handling the wrap-around.
Assuming an array of size 10, my first response was ...
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
3answers
159 views
Is this program having any sequence point issues?
#include<stdio.h>
int main()
{
int i=7,j;
j=(i++,++i,j*i);
return 0;
}
j=(i++,++i,j*i);Is this well defined ? Let me clear my doubt.
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
3answers
57 views
Associativity and Sequence Points in C
Since the associativity of '?' is from right to left,any 2 consecutive '?' operators must be treated as such,Right?
Now,
int x=-1;
int y=x?x++?x:-1:1;
I expect this to be executed as:
int y = x ? ...
0
votes
1answer
87 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++) {
...
0
votes
1answer
254 views
Post Increment with respect to Sequence Points
When does the post increment operator affect the increment? I have come across two opinions:
1) From http://gd.tuwien.ac.at/languages/c/programming-bbrown/c_015.htm:
POST means do the operation ...
0
votes
1answer
82 views
Sequence points in a language with left to right evaluation order?
When evaluation order is specified as "left to right" and language is a (pseudo) C-like, which are the sequence points in the following examples?
int x = 1;
int z = x-- + x; // z = 1 + 0 or z = 1 + ...