Tagged Questions
10
votes
1answer
190 views
Array pointer aliasing - undefined behavior?
Does the following code invoke undefined behavior (due to aliasing violation or otherwise)?
int foo(int (*a)[10], int (*b)[5])
{
(*a)[5]++;
return (*b)[0];
}
int x[10];
foo(&x, (int ...
8
votes
6answers
154 views
Nested structs and strict aliasing in c
Please consider the following code:
typedef struct {
int type;
} object_t;
typedef struct {
object_t object;
int age;
} person_t;
int age(object_t *object) {
if (object->type == PERSON) ...
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
3answers
220 views
How to tell a C or a C++ compiler that pointers are not aliased
I have function that receives an array of pointers like so:
void foo(int *ptrs[], int num, int size)
{
/* The body is an example only */
for (int i = 0; i < size; ++i) {
for (int ...
2
votes
2answers
222 views
restrict-edness with pre-c99
Considering this code, VC9 doesn't detect aliasing :
typedef struct { int x, y; } vec_t;
void rotate_cw(vec_t const *from,
vec_t *to)
{
/* Notice x depends on y and vice ...
1
vote
3answers
183 views
Is the aliasing rule symmetric?
I had a discussion with someone on IRC and this question turned up. We are allowed by the Standard to change an object of type int by a char lvalue.
int a;
char *b = (char*) &a;
*b = 0;
Would ...