Tagged Questions
The strict-aliasing tag has no wiki summary.
97
votes
8answers
18k views
What is the strict aliasing rule?
When asking about common undefined behavior in C, souls more enlightened than I referred to the strict aliasing rule.
What are they talking about?
14
votes
6answers
2k views
gcc, strict-aliasing, and casting through a union
Do you have any horror stories to tell? The GCC Manual recently added a warning regarding -fstrict-aliasing and casting a pointer through a union:
[...] Taking the address, casting the resulting ...
12
votes
5answers
1k views
gcc, strict-aliasing, and horror stories
In http://stackoverflow.com/questions/2906365/gcc-strict-aliasing-and-casting-through-a-union I asked whether anyone had encountered problems with union punning through pointers. So far, the answer ...
11
votes
4answers
3k views
C99 strict aliasing rules in C++ (GCC)
As far as I understand, GCC supports all of its C99 features in C++. But how is C99 strict aliasing handled in C++ code?
I know that casting with C casts between unrelated types is not ...
10
votes
4answers
387 views
float bits and strict aliasing
I am trying to extract the bits from a float without invoking undefined behavior. Here is my first attempt:
unsigned foo(float x)
{
unsigned* u = (unsigned*)&x;
return *u;
}
As I ...
10
votes
4answers
10k views
Dereferencing type-punned pointer will break strict-aliasing rules
I used the following piece of code to read data from files as part of a larger program.
double data_read(FILE *stream,int code) {
char data[8];
switch(code) {
case 0x08:
...
9
votes
4answers
198 views
Is this hack to remove aliasing warning UB?
We just upgraded our compiler to gcc 4.6 and now we get some of these warnings. At the moment our codebase is not in a state to be compiled with c++0x and anyway, we don't want to run this in prod (at ...
8
votes
3answers
240 views
Different behavior of shift operator with -O2 and without
Without -O2 this code prints 84 84, with O2 flag the output is 84 42. The code was compiled using gcc 4.4.3. on 64-bit Linux platform. Why the output for the following code is different?
Note that ...
8
votes
5answers
301 views
Strict pointer aliasing: any solution for a specific problem?
I have a problem caused by breaking strict pointer aliasing rule. I have a type T that comes from a template and some integral type Int of the same size (as with sizeof). My code essentially does ...
8
votes
4answers
4k views
How to cast sockaddr_storage and avoid breaking strict-aliasing rules
I'm using Beej's Guide to Networking and came across an aliasing issue. He proposes a function to return either the IPv4 or IPv6 address of a particular struct:
1 void *get_in_addr( struct sockaddr ...
7
votes
1answer
155 views
C overcoming aliasing restrictions (unions?)
Assume I have a sample source file, test.c, which I am compiling like so:
$ gcc -03 -Wall
test.c looks something like this ..
/// CMP128(x, y)
//
// arguments
// x - any pointer to an 128-bit ...
7
votes
5answers
346 views
Is unsigned char a[4][5]; a[1][7]; undefined behavior?
One of the examples of undefined behavior from the C standard reads (J.2):
— An array subscript is out of range, even if an object is apparently accessible with the
given subscript (as in the ...
7
votes
2answers
2k views
When is char* safe for strict pointer aliasing?
I've been trying to understand the strict aliasing rules as they apply to the char pointer.
Here this is stated:
It is always presumed that a char* may refer to an alias of any object.
Ok so in ...
6
votes
1answer
108 views
Strict aliasling warning on gcc 4.6.1 bug
I'm trying to compile the following on gcc with -pedantic-errors -pedantic -Wall -O2
#include <iostream>
void reset_uint32(uint32_t* pi)
{
char* c = (char*)(pi);
uint16_t* j = ...
6
votes
4answers
4k views
C++: “dereferencing type-punned pointer will break strict-aliasing rules” warning
I use a code where I cast an enum* to int*. Something like this:
enum foo { ... }
...
foo foobar;
int *pi = reinterpret_cast<int*>(&foobar);
When compiling the code (g++ 4.1.2), I get the ...
5
votes
3answers
101 views
char* conversion and aliasing rules
According to strict aliasing rules:
struct B { virtual ~B() {} };
struct D : public B { };
D d;
char *c = reinterpret_cast<char*>(&d);
A char* to any object of different type is valid. ...
5
votes
3answers
81 views
Enabling strict aliasing warnings in g++
What is the correct way to enable strict aliasing warnings in g++? Does VC++ 10 implement those rules?
5
votes
1answer
288 views
Why does boost::optional fail for classes inheriting virtual functions
boost::optional<> works perfect for simple data types but as soon as used for a class inheriting from a class implementing an interface it fails when strict aliasing is enabled.
Example:
#include ...
5
votes
2answers
396 views
C aliasing rules and memcpy
While answering another question, I thought of the following example:
void *p;
unsigned x = 17;
assert(sizeof(void*) >= sizeof(unsigned));
*(unsigned*)&p = 17; // (1)
memcpy(&p, ...
4
votes
2answers
239 views
Do I understand C/C++ strict-aliasing correctly?
I've read this article about C/C++ strict aliasing. I think the same applies to C++.
As I understand, strict aliasing is used to rearrange the code for performance optimization. That's why two ...
4
votes
1answer
490 views
Why are no strict-aliasing warnings generated for this code?
I have the following code:
struct A
{
short b;
};
struct B
{
double a;
};
void foo (struct B* src)
{
struct B* b = src;
struct A* a = (struct A*)src;
b->a = sin(rand());
...
4
votes
2answers
159 views
A cast that is breaking strict-aliasing rules
I have a function that takes a unsigned long* and needs to pass it to a external library that takes a unsigned int* and on this platform unsigned int/long are the same size.
void UpdateVar(unsigned ...
3
votes
6answers
94 views
How to safely perform type-punning in embedded system
Our team is currently using some ported code from an old architecture to a new product based on the ARM Cortex M3 platform using a customized version of GCC 4.5.1. We are reading data from a ...
3
votes
2answers
157 views
Odd C++ strict-aliasing warning
The following is a whittled-down version of my code for a unique_pointer-like class implementation that still exhibits the problem:
#include <tr1/type_traits>
template<typename T>
class ...
3
votes
1answer
157 views
Is strict aliasing is c or c++ thing?
In ISO/IEC 9899:TC2, the standard says following
6.3.2.3 Pointers
7. A pointer to an object or incomplete type may be converted to a pointer to a different
object or incomplete type. If the ...
3
votes
4answers
164 views
does simple cast to perform raw copy of a variable break strict aliasing?
I've been reading about strict aliasing quite a lot lately. The C/C++ standards say that the following code is invalid (undefined behavior to be correct), since the compiler might have the value of a ...
3
votes
4answers
345 views
Trying to understand a GCC error
I have the following bit of code:
#include <iostream>
#include <list>
#include <algorithm>
#include <iterator>
template<typename Iterator>
void foo(Iterator begin, ...
3
votes
5answers
389 views
Using (void*) as a type of an identifier
In my program, I have objects (of the same class) that must all have a unique identifier. For simplicity and performance, I chose to use the address of the object as identifier. And to keep the types ...
2
votes
1answer
62 views
Boost - warning about dereferencing pointers when building
I'm following the "Getting started" tutorial from the Boost website. I'm trying to build separatly-compiled libraries using the following commands:
./bootstrap.sh
and then
./b2
During the ...
2
votes
2answers
124 views
C memory allocator and strict aliasing
even after reading quite a bit about the strict-aliasing rules I am still confused. As far as I have understood this, it is impossible to implement a sane memory allocator that follows these rules, ...
2
votes
1answer
101 views
Type aliasing and dynamically allocated arrays
I'm trying to facilitate automatic vectorization by the compiler in the blitz++ array library. For this reason, I'd like to present a view of the array data that is in chunks of fixed-length vectors, ...
2
votes
1answer
357 views
Strict pointer aliasing: is access through a 'volatile' pointer/reference a solution?
On the heels of a specific problem, a self-answer and comments to it, I'd like to understand if it is a proper solution, workaround/hack or just plain wrong.
Specifically, I rewrote code:
T x = ...;
...
1
vote
2answers
235 views
c++ strict aliasing problem — driving me crazy
Okay... I'm getting kind of desperate trying to get this code to work with strict aliasing turned on (and -O3).
I was unable to shorten the code down (sry...) so it's fairly long ~170 lines...
...
1
vote
1answer
106 views
SSE data types and primitives
In most tutorials or code snippets on the net one sees the following:
float *arr= (float*) _aligned_malloc(length * sizeof(float), 16);
__m128 *m1 = (__m128*)arr;
Does this violate strict aliasing ...
1
vote
3answers
231 views
gcc: How to use __attribute((__may_alias__)) properly to avoid “derefencing type-punned pointer” warning
I've got some code that uses type-punning to avoid having to call a member "object"'s constructor and destructor unless/until it's actually necessary to use the object.
It works fine, but under g++ ...
1
vote
1answer
189 views
Simple storage class in C++ and strict aliasing
I have the following code for having a small class for storage.
#include <iostream>
template<typename T>
class storage
{
private:
struct destroy
{
T& m_t;
destroy(T& ...
1
vote
2answers
365 views
boost::bind breaks strict-aliasing rules?
Using Boost 1.43 and GCC 4.4.3, the following code
boost::bind(&SomeObject::memberFunc, this, _1));
Generates the following warning
boost/function/function_base.hpp:321:
warning: ...
1
vote
2answers
171 views
Does moving values of one type with another type violate strict aliasing?
Does it violate strict aliasing rules to move items of any type around using uint32_t, then read them back? If so, does it also violate strict aliasing rules to memcpy from an array of uint32_ts to ...
1
vote
2answers
336 views
Message-dispatch system in C that doesn't break strict aliasing and alignment
I'm writing an embedded control system in C that consists of multiple tasks that send messages to each other (a fairly common idiom, I believe!), but I'm having a hard time designing a mechanism ...
0
votes
1answer
58 views
gcc 4.4.4 optimization error only with O1 OR O2+no-strict-aliasing
Close: The problem was the use of a pointer to a stack variable that had gone out of scope. Nothing to do with optimization. Pity that valgrind can't find stack errors...
I have a segfault that ...
0
votes
4answers
224 views
Is it okay to cast a pointer-to-member-variable in this instance?
I've been refreshing/updating my knowledge of C++ lately, and learning about strict aliasing has made me a bit wary of casting pointers of one type to another. I know that this following code sample ...