The type-punning tag has no wiki summary.
1
vote
0answers
65 views
Assigning and getting union values, type punning
I have a union, ok.
This union is inside a struct, and that union is unnamed (something) like that.
typedef enum TYPES {INT, FLOAT, CHAR, POINTER TO FUNCTION /* Please pay attention on this */};
...
4
votes
1answer
139 views
Type punning with void * without breaking the strict aliasing rule in C99
I recently came across the strict aliasing rule, but I'm having trouble understanding how to use void * to perform type punning without breaking the rule.
I know this breaks the rule:
int x = ...
-1
votes
2answers
208 views
reinterpret_cast/type punning functionality in C with unions [closed]
I am trying to write 512 bytes as unsigned char, but read them as fields in a struct. Below is the union I have come up with.
typedef union {
unsigned char buffer[512]; //512 bytes
struct {
...
0
votes
3answers
102 views
Is it safe to transport a double through an int in C++03?
EDIT: Skip down below the horizontal rule for my newest version of the question.
Assuming only that sizeof(double) * CHAR_BITS <= 64, is the assert in following program guaranteed by C++03 to ...
13
votes
4answers
467 views
strict aliasing and memory alignment
I have performance critical code and there is a huge function that allocates like 40 arrays of different size on the stack at the beginning of the function. Most of these arrays have to have certain ...
5
votes
1answer
181 views
aligned_storage and strict aliasing
I'm currently using aligned_storage to implement an 'Optional' type similar to that of boost::optional. To accomplish this I have a class member like so:
typename std::aligned_storage<sizeof(T), ...
43
votes
5answers
1k views
C# 'unsafe' function — *(float*)(&result) vs. (float)(result)
Can anyone explain in a simple way the codes below:
public unsafe static float sample(){
int result = 154 + (153 << 8) + (25 << 16) + (64 << 24);
return ...
12
votes
3answers
572 views
Aliasing `T*` with `char*` is allowed. Is it also allowed the other way around?
Note: This question has been renamed and reduced to make it more focused and readable. Most of the comments refer to the old text.
According to the standard objects of different type may not share ...
18
votes
3answers
743 views
Is type-punning through a union unspecified in C99, and has it become specified in C11?
A number of answers for the Stack Overflow question Getting the IEEE Single-precision bits for a float suggest using a union structure for type punning (e.g.: turning the bits of a float into a ...
1
vote
3answers
499 views
free/delete union malloc/new Array in C/C++
I was working and was considering using a union. I decided against it, because the design really called for a struct/class, but it eventually lead to the following hypothetical question:
Suppose you ...
2
votes
4answers
409 views
Make interchangeable class types via pointer casting only, without having to allocate any new objects?
UPDATE: I do appreciate "don't want that, want this instead" suggestions. They are useful, especially when provided in context of the motivating scenario. Still...regardless of goodness/badness, ...
3
votes
2answers
135 views
Deriving from a base class whose instances reside in a fixed format (database, MMF)…how to be safe?
(Note: I'm looking for really any suggestions on the right search terms to read up on this category of issue. "Object-relational-mapping" occurred to me as a place where I could find some good prior ...
7
votes
1answer
263 views
Generic char[] based storage and avoiding strict-aliasing related UB
I'm trying to build a class template that packs a bunch of types in a suitably large char array, and allows access to the data as individual correctly typed references. Now, according to the standard ...
5
votes
1answer
247 views
Strict aliasing and std::array vs C-style array
When compiling the following code with gcc 4.7 (g++-mp-4.7 (GCC) 4.7.0 built with MacPorts on OS X) I get seemingly contradictory results.
The compiler does not complain when I try to reinterpret and ...
0
votes
4answers
615 views
union for uint32_t and uint8_t[4] undefined behavior?
In the comments of this answer it is said that it would be undefined behavior to split up an integer into their bytes using a union like follows. The code given at that place is similar though not ...
3
votes
1answer
223 views
Type punning, char[] and dereferencing
I have a structure which aims at storing user defined data (i.e. from a plugin). It has a such a char[] with a given maximum size to store that data.
struct A
{
// other members omitted
// ...
17
votes
4answers
4k views
strict aliasing and alignment
I need a safe way to alias between arbitrary POD types, conforming to ISO-C++11 explicitly considering 3.10/10 and 3.11 of n3242 or later.
There are a lot of questions about strict aliasing here, most ...
0
votes
2answers
123 views
type-punned warning
I want to do something like this:
#define EQ4(a_,b_) (*(int*)(a_)==*(int*)(b_))
char *s1 = "food";
char *s2 = "fred";
return EQ4(s1,s2);
but gcc is producing this warning: Warning: dereferencing ...
5
votes
3answers
229 views
When CAN i break aliasing rules?
I get this warning. I would like defined behavior but i would like to keep this code as it is. When may i break aliasing rules?
warning: dereferencing type-punned pointer will break ...
4
votes
6answers
895 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 ...
4
votes
2answers
2k views
Fix for dereferencing type-punned pointer will break strict-aliasing
I'm trying to fix two warnings when compiling a specific program using GCC. The warnings are:
warning: dereferencing type-punned pointer will break
strict-aliasing rules [-Wstrict-aliasing]
and the ...
8
votes
5answers
465 views
Portable data reinterpretation
I want to reinterpret data of one type as another type in a portable way (C99).
I am not talking about casting, I want a reinterpretation of some given data.
Also, by portable I mean that it does not ...
4
votes
4answers
448 views
C type punning question
How do I make the below function generic for uint8_t, uint16_t, uint32_t, int8_t, int16_t, int32_t and float_t?
I don't like repeating the same logic in every case as you can see. The only difference ...
1
vote
3answers
1k 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++ ...
3
votes
4answers
287 views
Does a simple cast to perform a 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 ...
6
votes
5answers
1k views
Is reinterpret_cast mostly useless?
I've read various previous questions about the use of reinterpret_cast, and I've also read the relevant wording in the C++ standard. Essentially, what it comes down to is that the result of a ...
0
votes
1answer
193 views
Convert pointer to loop option in C#
How would I convert this into a loop and not to use the pointer.
byte[] InputBuffer = new byte[8];
unsafe {
fixed (byte* pInputBuffer = InputBuffer) {
((long*)pInputBuffer)[0] = value;
...
11
votes
4answers
868 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 ...
6
votes
4answers
624 views
Placement-new vs gcc 4.4.3 strict-aliasing rules
I've got some code that I've been using successfully for some years to implement a "variant-type object"; that is, a C++ object that can hold a values of various types, but only uses (approximately) ...
2
votes
4answers
249 views
Analysis of C code
Here is function that i am writing on 64 bit linux machine.
void myfunc(unsigned char* arr) //array of 8 bytes is passed by reference
{
unsigned long a = 0; //8 bytes
unsigned char* LL = ...
4
votes
2answers
267 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 ...
2
votes
1answer
551 views
Redundant __packed__ attributes
This code is for Microchip's PIC32MX microprocessor. Their compiler is essentially GCC 3.4.
I tend use GCC's __packed__ attribute to pack bitfields into a union, and later retrieve them as an ...
6
votes
2answers
680 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 = ...;
...
8
votes
6answers
443 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 ...
3
votes
1answer
239 views
Compile time float packing/punning
I'm writing C for the PIC32MX, compiled with Microchip's PIC32 C compiler (based on GCC 3.4).
Added The standard I'm following is GNU99 (C99 with GNU extensions, compiler flag -std=gnu99)
My problem ...
42
votes
13answers
9k views
Purpose of Unions in C and C++
I have used unions earlier comfortably; today I was alarmed when I read this post and came to know that this code
union ARGB
{
uint32_t colour;
struct componentsTag
{
uint8_t b;
...
3
votes
2answers
913 views
Java: Using type punning on primitive arrays?
I need to be able to convert byte arrays to/from other primitive type arrays, but instead of casting, I need type punning. Correct term for raw copy without casting?
I thought it would be possible to ...
5
votes
5answers
258 views
Reassemble float from bytes inline
I'm working with HiTech PICC32 on the PIC32MX series of microprocessors, but I think this question is general enough for anyone knowledgable in C. (This is almost equivalent to C90, with sizeof(int) = ...
10
votes
4answers
3k views
Opinions on type-punning in C++?
I'm curious about conventions for type-punning pointers/arrays in C++. Here's the use case I have at the moment:
Compute a simple 32-bit checksum over a binary blob of data by treating it as an ...
11
votes
5answers
3k views
Safely punning char* to double in C
In an Open Source program I
wrote, I'm reading binary data (written by another program) from a file and outputting ints, doubles,
and other assorted data types. One of the challenges is that it needs ...
205
votes
8answers
39k 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?
