Getting the size of an indiviual field from a c++ struct field - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T07:48:28Zhttp://stackoverflow.com/feeds/question/539251http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/539251/getting-the-size-of-an-indiviual-field-from-a-c-struct-field1Getting the size of an indiviual field from a c++ struct fieldJeffrey Martinez2009-02-11T22:57:07Z2009-02-12T00:54:12Z
<p>The short version is: How do I learn the size (in bits) of an individual field of a c++ field?</p>
<p>To clarify, an example of the field I am talking about:</p>
<pre><code>struct Test {
unsigned field1 : 4; // takes up 4 bits
unsigned field2 : 8; // 8 bits
unsigned field3 : 1; // 1 bit
unsigned field4 : 3; // 3 bits
unsigned field5 : 16; // 16 more to make it a 32 bit struct
int normal_member; // normal struct variable member, 4 bytes on my system
};
Test t;
t.field1 = 1;
t.field2 = 5;
// etc.
</code></pre>
<p>To get the size of the entire Test object is easy, we just say</p>
<pre><code>sizeof(Test); // returns 8, for 8 bytes total size
</code></pre>
<p>We can get a normal struct member through</p>
<pre><code>sizeof(((Test*)0)->normal_member); // returns 4 (on my system)
</code></pre>
<p>I would like to know how to get the size of an individual field, say Test::field4. The above example for a normal struct member does not work. Any ideas? Or does someone know a reason why it cannot work? I am fairly convinced that sizeof will not be of help since it only returns size in bytes, but if anyone knows otherwise I'm all ears.</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/539251/getting-the-size-of-an-indiviual-field-from-a-c-struct-field/539279#5392791Answer by Matt Davison for Getting the size of an indiviual field from a c++ struct fieldMatt Davison2009-02-11T23:06:08Z2009-02-11T23:39:07Z<p>This is not possible</p>
<p>Answer to comment:
Because the type is just an int, there is no 'bit' type. The bit field assignment syntax is just short hand for performing the bitwise code for reads and writes.</p>
http://stackoverflow.com/questions/539251/getting-the-size-of-an-indiviual-field-from-a-c-struct-field/539281#5392811Answer by Adam Rosenfield for Getting the size of an indiviual field from a c++ struct fieldAdam Rosenfield2009-02-11T23:07:14Z2009-02-11T23:07:14Z<p>I don't think you can do it. If you <em>really</em> need the size, I suggest you use a <code>#define</code> (or, better yet, if possible a <code>const</code> variable -- I'm not sure if that's legal) as so:</p>
<pre><code>#define TEST_FIELD1_SIZE 4
struct Test {
unsigned field1 : TEST_FIELD1_SIZE;
...
}
</code></pre>
http://stackoverflow.com/questions/539251/getting-the-size-of-an-indiviual-field-from-a-c-struct-field/539285#5392854Answer by strager for Getting the size of an indiviual field from a c++ struct fieldstrager2009-02-11T23:08:40Z2009-02-11T23:08:40Z<p>You cannot take the <code>sizeof</code> a bitfield and get the number of bits.</p>
<p>Your best bet would be use <code>#define</code>s or <code>enum</code>s:</p>
<pre><code>struct Test {
enum Sizes {
sizeof_field1 = 4,
sizeof_field2 = 8,
sizeof_field3 = 1,
sizeof_field4 = 3,
sizeof_field5 = 16,
};
unsigned field1 : sizeof_field1; // takes up 4 bits
unsigned field2 : sizeof_field2; // 8 bits
unsigned field3 : sizeof_field3; // 1 bit
unsigned field4 : sizeof_field4; // 3 bits
unsigned field5 : sizeof_field5; // 16 more to make it a 32 bit struct
int normal_member; // normal struct variable member, 4 bytes on my system
};
printf("%d\n", Test::sizeof_field1); // prints 4
</code></pre>
<p>For the sake of consistency, I believe you can move <code>normal_member</code> up to the top and add an entry in <code>Sizes</code> using <code>sizeof(normal_member)</code>. This messes with the order of your data, though.</p>
http://stackoverflow.com/questions/539251/getting-the-size-of-an-indiviual-field-from-a-c-struct-field/539293#5392934Answer by sfossen for Getting the size of an indiviual field from a c++ struct fieldsfossen2009-02-11T23:10:48Z2009-02-11T23:24:32Z<p>Seems unlikely, since sizeof() is in bytes, and you want bits.</p>
<p><a href="http://en.wikipedia.org/wiki/Sizeof" rel="nofollow">http://en.wikipedia.org/wiki/Sizeof</a></p>
<p>building on the bit counting answer, you can use.</p>
<p><a href="http://www-graphics.stanford.edu/~seander/bithacks.html" rel="nofollow">http://www-graphics.stanford.edu/~seander/bithacks.html</a></p>
http://stackoverflow.com/questions/539251/getting-the-size-of-an-indiviual-field-from-a-c-struct-field/539307#5393077Answer by ChrisW for Getting the size of an indiviual field from a c++ struct fieldChrisW2009-02-11T23:16:34Z2009-02-11T23:16:34Z<p>You can calculate the size at run time, fwiw, e.g.:</p>
<pre><code>//instantiate
Test t;
//fill all bits in the field
t.field1 = ~0;
//extract to unsigned integer
unsigned int i = t.field1;
... TODO use contents of i to calculate the bit-width of the field ...
</code></pre>
http://stackoverflow.com/questions/539251/getting-the-size-of-an-indiviual-field-from-a-c-struct-field/539571#5395710Answer by strager for Getting the size of an indiviual field from a c++ struct fieldstrager2009-02-12T00:54:12Z2009-02-12T00:54:12Z<p>Using <a href="http://stackoverflow.com/questions/539251/getting-the-size-of-an-indiviual-field-from-a-c-struct-field/539307#539307">ChrisW's idea</a> (nice, by the way), you can create a helper macro:</p>
<pre><code>#define SIZEOF_BITFIELD(class,member,out) { \
class tmp_; \
tmp_.member = ~0; \
unsigned int tmp2_ = tmp_.member; \
++tmp2_; \
out = log2(tmp2_); \
}
unsigned int log2(unsigned int x) {
// Overflow occured.
if(!x) {
return sizeof(unsigned int) * CHAR_BIT;
}
// Some bit twiddling... Exploiting the fact that floats use base 2 and store the exponent. Assumes 32-bit IEEE.
float f = (float)x;
return (*(unsigned int *)&f >> 23) - 0x7f;
}
</code></pre>
<p>Usage:</p>
<pre><code>size_t size;
SIZEOF_BITFIELD(Test, field1, size); // Class of the field, field itself, output variable.
printf("%d\n", size); // Prints 4.
</code></pre>
<p>My attempts to use templated functions have failed. I'm not an expert on templates, however, so it <em>may</em> still be possible to have a clean method (e.g. <code>sizeof_bitfield(Test::field1)</code>).</p>