Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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;
        uint8_t g;
        uint8_t r;
        uint8_t a;
    } components;
} pixel;

pixel.colour = 0xff040201;
/* ---- somewhere down the code ---- */
if(pixel.components.a)

is actually undefined behaviour I.e. reading from a member of the union other than the one recently written to leads to undefined behaviour. If this isn't the intended behaviour of unions, what is? Can some one please explain it elaborately?

share|improve this question
3  
Simply stated, compilers are allowed to insert padding between elements in a structure. Thus, b, g, r, and a may not be contiguous, and thus not match the layout of a uint32_t. This is in addition to the Endianess issues that others have pointed out. – Thomas Matthews Feb 22 '10 at 18:48
I'll reselect ammoQ's answer as the accepted one, since it's more correct and clearer. Thereby, anyone referring to this question later in time, should understand the issue behind using union in the type-punned way and the real purpose behind it. Thanks for all the answers and comments! – legends2k Feb 22 '10 at 23:13
Thanks AndreyT for giving a practical example on the usage of unions (which is to save space), I understood it fully for that explanation and ammoQ's code. – legends2k Feb 22 '10 at 23:23

13 Answers

up vote 27 down vote accepted

The purpose of unions is rather obvious, but for some reason people miss it quite often.

The purpose of union is to save memory by using the same memory region for storing different objects at different times. That's it.

It is like a room in a hotel. Different people use it for non-overlapping periods of time. These people never meet, and generally don't need to know anything about each other.

That's exactly what union does. If you know that several objects in your program hold values with non-overlapping value-lifetimes, then you can "merge" these objects into a union and thus save memory. Just like a hotel room has at most one "active" tenant at each moment of time, a union has at most one "active" member at each moment of program time. Only the "active" member can be read. By writing into other member you switch the "active" status to that other member.

For some reason, this original purpose of the union got "overriden" with something completely different: writing one member of a union and then inspecting it through another member. This kind of memory reinterpretation is not a valid use of unions. It generally leads to undefined behavior.

share|improve this answer
1  
+1 for being elaborate, giving a simple practical example and saying about the legacy of unions! – legends2k Feb 22 '10 at 22:52
1  
In keeping with the example, you could associate the access of the union through another member other than the currently written one, akin to calling the hotel room looking for a, but finding b.Someone picked up the phone, but its not safe. – Daniel Jan 29 '11 at 9:53
1  
What about type punning? – Nick Jan 18 '12 at 11:15
@Nick: It has never been legal to use unions for type punning until very recently, when the practice was standardized by the C committee. – AndreyT Jan 18 '12 at 20:57
@AndreyT: So is it now legal (as in standardized in C and C++) to do this type of punning and still be portable? If so which versions of the language standards sanctify it? – legends2k May 7 at 14:36

The behavior is undefined from the language point of view. Consider that different platforms can have different constraints in memory alignment and endianness. The code in a big endian versus a little endian machine will update the values in the struct differently. Fixing the behavior in the language would require all implementations to use the same endianness (and memory alignment constraints...) limiting use.

If you are using C++ (you are using two tags) and you really care about portability, then you can just use the struct and provide a setter that takes the uint32_t and sets the fields appropriately through bitmask operations. The same can be done in C with a function.

Edit: I was expecting AProgrammer to write down an answer to vote and close this one. As some comments have pointed out, endianness is dealt in other parts of the standard by letting each implementation decide what to do, and alignment and padding can also be handled differently. Now, the strict aliasing rules that AProgrammer implicitly refers to are a important point here. The compiler is allowed to make assumptions on the modification (or lack of modification) of variables. In the case of the union, the compiler could reorder instructions and move the read of each color component over the write to the colour variable.

share|improve this answer
+1 for the clear and simple reply! I agree, for portability, the method you've given in the 2nd para holds good; but can I use the way I've put up in the question, if my code is tied down to a single architecture (paying the price of protability), since it saves 4 bytes for each pixel value and some time saved in running that function? – legends2k Feb 22 '10 at 11:39
The endian issue doesn't force the standard to declare it as undefined behaviour - reinterpret_cast has exactly the same endian issues, but has implementation defined behaviour. – Joe Gauterin Feb 22 '10 at 11:42
1  
@legends2k, the problem is that optimizer may assume that an uint32_t is not modified by writing to a uint8_t and so you get the wrong value when the optimized use that assumption... @Joe, the undefined behavior appears as soon as you access the pointer (I know, there are some exceptions). – AProgrammer Feb 22 '10 at 13:31
1  
@legends2k/AProgrammer: The result of a reinterpret_cast is implementation defined. Using the pointer returned does not result in undefined behaviour, only in implementation defined behaviour. In other words, the behaviour must be consistant and defined, but it isn't portable. – Joe Gauterin Feb 22 '10 at 16:46
1  
@legends2k: any decent optimizer will recognize bitwise operations that select an entire byte and generate code to read/write the byte, same as the union but well-defined (and portable). e.g. uint8_t getRed() const { return colour & 0x000000FF; } void setRed(uint8_t r) { colour = (colour & ~0x000000FF) | r; } – Ben Voigt Feb 22 '10 at 22:13
show 5 more comments

You could use unions to create structs like the following, which contains a field that tells us which component of the union is actually used:

struct VAROBJECT
{
    enum o_t { Int, Double, String } objectType;

    union
    {
        int intValue;
        double dblValue;
        char *strValue;
    } value;
} object;
share|improve this answer
I totally agree, without entering the undefined-behaviour chaos, perhaps this is the best intended behaviour of unions I can think of; but won't is waste space when am just using, say int or char* for 10 items of object[]; in which case, I can actually declare separate structs for each data type instead of VAROBJECT? Wouldn't it reduce clutter and use lesser space? – legends2k Feb 22 '10 at 12:24
2  
legends: In some cases, you simply can't do that. You use something like VAROBJECT in C in the same cases when you use Object in Java. – ammoQ Feb 22 '10 at 19:02
Your code along with AndreyT's explanation gives the right examples for the actual purpose of unions; hence I've reselected your answer. – legends2k Feb 22 '10 at 23:16

If this isn't the intended behaviour of unions, what is? Can some one please explain it elaborately?

“undefined” does not necessarily equal unintended. The fact that this behaviour is undefined follows logically from the fact that hardware and software architectures differ and C tries to cater to all of them (at least in theory). However, for any given platform, we can still make sure that the code works as expected, even though it is undefined, because unportable.

On the other hand, unions may have been developed merely as a means to save memory by aliasing memory addresses and reusing them conveniently. For what it’s worth, I’m not convinced by that explanation. ;-)

share|improve this answer
2  
The major problem with that line of reasoning is that optimizers' writers like to (ab)use undefined behaviors to help simplify the generated code. So even if there is a natural implementation for your target, don't rely on it, you won't get it if it helps winning a benchmark. – AProgrammer Feb 22 '10 at 13:41
"However, for any given platform, we can still make sure that the code works as expected" No you cannot. C and C++ are not assembly. The contracts you have with the implementation are the standard and the implementation documentation. – curiousguy Oct 3 '11 at 17:24
2  
@curiousguy You’re wrong. But for clarity, I should have said “for a given, documented behaviour, that is”. Platforms do rely on such behaviour, so it’s a moot point arguing that you cannot do that. In reality, you must, you have no other choice. In particular, both POSIX and the Windows SDK contain APIs that cause UB. Your contract is therefore not only with the C or C++ standard, it’s also with the platform. – Konrad Rudolph Oct 3 '11 at 17:54
"But for clarity, I should have said “for a given, documented behaviour, that is”" It was clear enough to me. A given documented behaviour for reinterpret_cast might be that the resulting value cannot be dereferenced until you go back to the original type. "In particular, both POSIX and the Windows SDK contain APIs that cause UB." Do you mean the sockaddr* types? "our contract is therefore not only with the C or C++ standard, it’s also with the platform." I did not meant to say that the contract is limited to the ISO C++ standard. Guaranties made in other standards count as well. – curiousguy Oct 3 '11 at 20:17
@curiousguy The POSIX example I was thinking of is dlsym (the requirement of function addresses to be compatible with void*). The WinAPI has similar requirements for function addresses and for several undefined reinterpret_cast mappings (cf. LPARAM, WPARAM). It’s not clear what your definition of a standard is – it seems very post-hoc. “Undefined behaviour” has a very precise meaning according to the C++ standard, and that was the meaning I used. Whether you adhere to some other standard or platform SDK is irrelevant for this violation. – Konrad Rudolph Oct 3 '11 at 20:21
show 10 more comments

As you say, this is strictly undefined behaviour, though it will "work" on many platforms. The real reason for using unions is to create variant records.

union A {
   int i;
   double d;
};

A a[10];    // records in "a" can be either ints or doubles 
a[0].i = 42;
a[1].d = 1.23;

Of course, you also need some sort of discriminator to say what the variant actually contains. And note that in C++ unions are not much use because they can only contain POD types - effectively those without constructors and destructors.

share|improve this answer
Have you used it thus (like in the question)?? :) – legends2k Feb 22 '10 at 11:26
It's a bit pedantic, but I don't quite accept "variant records". That is, I'm sure they were in mind, but if they were a priority why not provide them? "Provide the building block because it might be useful to build other things as well" just seems intuitively more likely. Especially given at least one more application that was probably in mind - memory mapped I/O registers, where the input and output registers (while overlapped) are distinct entities with their own names, types etc. – Steve314 Feb 22 '10 at 11:45
@Stev314 If that was the use they had in mind, they could have made it not be undefined behaviour. – anon Feb 22 '10 at 11:49
@Neil: +1 for the first to say about the actual usage without hitting undefined behaviour. I guess they could have made it implementation defined like other type punning operations (reinterpret_cast, etc.). But like I asked, have you used it for type-punning? – legends2k Feb 22 '10 at 12:31
@Neil - the memory-mapped register example isn't undefined, the usual endian/etc aside and given a "volatile" flag. Writing to an address in this model doesn't reference the same register as reading the same address. Therefore there is no "what are you reading back" issue as you're not reading back - whatever output you wrote to that address, when you read you're just reading an independent input. The only issue is making sure you read the input side of the union and write the output side. Was common in embedded stuff - probably still is. – Steve314 Feb 22 '10 at 12:56
show 2 more comments

Although this is strictly undefined behaviour, in practice it will work with pretty much any compiler. It is such a widely used paradigm that any self-respecting compiler will need to do "the right thing" in cases such as this. It's certainly to be preferred over type-punning, which may well generate broken code with some compilers.

share|improve this answer
1  
Isn't there an endian issue? A relatively easy fix compared with "undefined", but worth taking into account for some projects if so. – Steve314 Feb 22 '10 at 11:26

Technically it's undefined, but in reality most (all?) compilers treat it exactly the same as using a reinterpret_cast from one type to the other, the result of which is implementation defined. I wouldn't lose sleep over your current code.

share|improve this answer
"a reinterpret_cast from one type to the other, the result of which is implementation defined." No, it is not. Implementations do not have to define it, and most do not define it. Also, what would be the allowed implementation defined behaviour of casting some random value to a pointer? – curiousguy Oct 3 '11 at 17:35

In C it was a nice way to implement something like an variant.

enum possibleTypes{
  eInt,
  eDouble,
  eChar
}


struct Value{

    union Value {
      int iVal_;
      double dval;
      char cVal;
    } value_;
    possibleTypes discriminator_;
} 

switch(val.discriminator_)
{
  case eInt: val.value_.iVal_; break;

In times of litlle memory this structure is using less memory than a struct that has all the member.

By the way C provides

    typedef struct {
      unsigned int mantissa_low:32;      //mantissa
      unsigned int mantissa_high:20;
      unsigned int exponent:11;         //exponent
      unsigned int sign:1;
    } realVal;

to access bit values.

share|improve this answer
Although both your examples are perfectly defined in the standard; but, hey, using bit fields is sure shot unportable code, isn't it? – legends2k Feb 22 '10 at 12:28
No it isn't. As far as I know its widely supported. – Totonga Feb 22 '10 at 15:57

In C++, Boost Variant implement a safe version of the union, designed to prevent undefined behavior as much as possible.

Its performances are identical to the enum + union construct (stack allocated too etc) but it uses a template list of types instead of the enum :)

share|improve this answer

The behaviour may be undefined, but that just means there isn't a "standard". All decent compilers offer #pragmas to control packing and alignment, but may have different defaults. The defaults will also change depending on the optimisation settings used.

Also, unions are not just for saving space. They can help modern compilers with type punning. If you reinterpret_cast<> everything the compiler can't make assumptions about what you are doing. It may have to throw away what it knows about your type and start again (forcing a write back to memory, which is very inefficient these days compared to CPU clock speed).

share|improve this answer

Others have mentioned the architecture differences (little - big endian).

I read the problem that since the memory for the variables is shared, then by writing to one, the others change and, depending on their type, the value could be meaningless.

eg. union{ float f; int i; } x;

Writing to x.i would be meaningless if you then read from x.f - unless that is what you intended in order to look at the sign, exponent or mantissa components of the float.

I think there is also an issue of alignment: If some variables must be word aligned then you might not get the expected result.

eg. union{ char c[4]; int i; } x;

If, hypothetically, on some machine a char had to be word aligned then c[0] and c[1] would share storage with i but not c[2] and c[3].

share|improve this answer
A byte that has to be word aligned? That makes no sense. A byte has no alignment requirement, by definition. – curiousguy Oct 3 '11 at 17:54
Yes, I probably should have used a better example. Thanks. – philcolbourn May 11 '12 at 11:28

You can use a a union for two main reasons:

  1. A handy way to access the same data in different ways, like in your example
  2. A way to save space when there are different data members of which only one can ever be 'active'

1 Is really more of a C-style hack to short-cut writing code on the basis you know how the target system's memory architecture works. As already said you can normally get away with it if you don't actually target lots of different platforms. I believe some compilers might let you use packing directives also (I know they do on structs)?

A good example of 2. can be found in the VARIANT type used extensively in COM.

share|improve this answer
+1 for giving the partical COM example! – legends2k Feb 22 '10 at 12:26

For one more example of the actual use of unions, the CORBA framework serializes objects using the tagged union approach. All user-defined classes are members of one (huge) union, and an integer identifier tells the demarshaller how to interpret the union.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.