vote up 4 vote down star

Suppose I have one long long int and want to take its bits and construct four unsigned short ints out of it.

Particular order doesn't matter much here.

I generally know that I need to shift bits and truncate to the size of unsigned short int. But I think I may make some weird mistake somewhere, so I ask.

flag

3 Answers

vote up 10 vote down check
#include <stdint.h>
#include <stdio.h>

union ui64 {
    uint64_t one;
    uint16_t four[4];
};

int
main()
{
    union ui64 number = {0x123456789abcdef0};
    printf("%x %x %x %x\n", number.four[0], number.four[1],
                            number.four[2], number.four[3]);
    return 0;
}
link|flag
Would this be influenced by little/big-endian? – slashmais Sep 29 '08 at 10:59
Yes, you get different results for big-endian systems vs little-endian ones. – Chris Jester-Young Sep 29 '08 at 11:03
It's definitely a quick-and-hacky solution, on the same order as: "@numbers = unpack 'S4', pack 'Q', $number;" in Perl – Chris Jester-Young Sep 29 '08 at 11:04
Will fail nastily on e.g. a Cray and a TI DSP, to name but a few CPUs where short is/can be 32 bits. – MSalters Sep 29 '08 at 11:43
I 100% agree that this solution is not portable at all. Perhaps I should amend the answer to use inttypes.h. :-) – Chris Jester-Young Sep 29 '08 at 11:47
show 1 more comment
vote up 2 vote down
union LongLongIntToThreeUnsignedShorts {
   long long int long_long_int;
   unsigned short int short_ints[sizeof(long long int) / sizeof(short int)];
};

That should do what you are thinking about, without having to mess around with bit shifting.

link|flag
Can you guarantee that the struct won't have padding between short ints? – Alexander Sep 29 '08 at 10:48
good point. Array method would be more sensible. – workmad3 Sep 29 '08 at 10:48
Ooops - I originally wrote about three unsigned ints. That probably mislead you. Sorry for that. Your answer was helpful anyway. – phjr Sep 29 '08 at 10:50
It was <code>unsigned short int</code> originally (probably 2 bytes each -- that's OK). My point was that unless you're certain about the padding/alignment rules, that struct was dangerous. – Alexander Sep 29 '08 at 10:55
vote up 3 vote down
(unsigned short)((((unsigned long long int)value)>>(x))&(0xFFFF))

where value is your long long int, and x is 0, 16, 32 or 48 for the four shorts.

link|flag
The catch with bitshifting is that in C/C++ the behavior is undefined for negative numbers. – Alexander Sep 29 '08 at 10:52
For negative "value" it's not undefined, it's implementation-defined. For negative "x" it's undefined, but that never happens here. And the storage format of a negative integer is implementation-defined too (within certain possibilities), so on that score this is no worse than using a union. – Steve 'onebyone' Jessop Sep 29 '08 at 11:04
I don't care if the shift sign-extends the value, I'm masking out all but the bottom sixteen bits. Those are well-defined. – moonshadow Sep 29 '08 at 11:11
I think Alexander is pointing out that the result of a right shift on a negative signed quantity need not be either 0-fill or sign-fill. It can be anything, as long as the compiler documents what. At least in C++. I haven't checked the C standard too. On "almost all" compilers you're right, though. – Steve 'onebyone' Jessop Sep 29 '08 at 11:15
You got me: the right wording from the standard is "implementation-defined". I think the easiest fix for the solution in this answer is to convert value into an unsigned types first. Then the solution is superior to structs, because it yields the same results on big- and little-endian architectures. – Alexander Sep 29 '08 at 11:16
show 5 more comments

Your Answer

Get an OpenID
or

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