Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

109
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?
24
votes
13answers
2k 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; ...
11
votes
5answers
2k 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 ...
8
votes
4answers
2k 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 ...
6
votes
5answers
198 views

portable data reinterpretation in c

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 ...
6
votes
5answers
496 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 ...
5
votes
4answers
367 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) ...
5
votes
5answers
198 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) = ...
4
votes
6answers
136 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
4answers
241 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 ...
3
votes
1answer
178 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 ...
3
votes
2answers
479 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 ...
2
votes
4answers
202 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 = ...
1
vote
3answers
258 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++ ...
0
votes
1answer
118 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; ...
0
votes
1answer
216 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 ...