vote up 7 vote down star
2

I recently came across some code that looked like:

if(sizeof(var,2) == 4) { ... }

(where var is a type)

I was quite surprised to see what appeared to be two arguments to the sizeof operator. A quick scan of the ISO/ANSI C99 standard did not yield any secrets. I couldn't come up with any reading of the grammar that allowed a comma there.

Searching Google Code, I was able to find an example of this syntax in some PPC code.

Is this some PPC-specific syntax? What does it mean?

EDIT: It turns out that both what I was looking at--as well as the linked code--is syntax specific to the WindRiver Diab compiler:

sizeof(type, int-const):

If int-const is 0 sizeof returns the size in bytes of type.

If int-const is 1 sizeof returns the alignment of type.

If int-const is 2 sizeof returns an integer constant designating the type of type. Look up "sizeof operator" in the Diab C/C++ User's Guide for values.

Wow, they've really overloaded the meaning of the sizeof operator.

EDIT2: Full documentation is here: http://www.vxdev.com/docs/vx55man/diab5.0ppc/c-additi.htm#3001432

flag

43% accept rate
It is important to this discussion to mention that "var" is a type. Because that would rule out the comma operator. But "var" in your question looks like a variable. – Johannes Schaub - litb Jun 8 at 18:01
Renamed variable for clarity. Thanks. – David Citron Jun 8 at 18:11
On Edit: Wow, that's ... a totally unnecessary complication of the C language. C is complicated enough... If you want to be able to say the alignment, write an alignof function, or operator, if you insist. sheesh. (Not your fault David, just venting about bad language implementers...) – Brian Postow Jun 8 at 18:13
@Brian: I totally agree. And the fact that they used the same old name (sizeof) for new behavior makes finding information about it (or knowing where to look) very tricky indeed! – David Citron Jun 8 at 18:16
@Brian: C itself isn't that complicated... I find it remarkably simple, just certain tasks are complicated to do in C. But I do agree that overloading sizeof would be a terrible idea. – Carson Myers Jun 9 at 5:06

4 Answers

vote up 6 vote down check

On further research, I discovered that this is behavior specific to the WindRiver Diab compiler. Please see the EDIT in the question for details.

link|flag
vote up 3 vote down

It looks to me like a simple application of the comma operator, which evaluates its first argument, throws away the result, then evaluates its second argument.

In this case, it's determining whether the literal 2 has size 4. The "var" part is irrelevant.

link|flag
I thought the same thing at first, but what's the point? And if that were true, then the linked code would never work, right? The second argument is an int literal, so its size would always be the size of an integer on that architecture. – David Citron Jun 8 at 17:43
Were the comma operator being used, wouldn't it be necessary to enclose the pair in another set of parentheses? – veefu Jun 8 at 17:47
Point? why do you think it has a point? – Brian Postow Jun 8 at 17:47
@veefu, no, because it's sizeof(exp) and the expression just happens to be var,2... – Brian Postow Jun 8 at 17:48
3  
@veefu: no, sizeof is an operator, not a function. You don't need parenthesis to "call" sizeof, "sizeof 1" works as well as "sizeof (1)". In general it's "sizeof <expression>" and in this case the expression is "(var, 2)". – sth Jun 8 at 17:52
vote up 1 vote down

As mentioned, the comma operator is being applied and sizeof is returning the size of an integer literal. Offhand this looks like an error on the author's part, but there could be some sinister coding happening.

sizeof expressions are not evaluated so they can be used for a number of tricky things. One example is to provide a reference for an otherwise unreferenced variable without causing the compiler to generate any code. See this article on creating a better assert macro for an example. Alexandrescu has some other examples of sizeof trickery in Modern C++ Design, if memory serves. It's possible, but not likely, that one of these non-obvious usages is intended.

Whatever the usage, if it's not commented in this situation then it's clearly not worth the trade-off in readability and should be changed.

link|flag
vote up 1 vote down

Looks like a red herring. My guess is that you are accidentally using the comma operator and sizeof is being applied to the last value.

link|flag
So why is the linked code written as it is, then? Hmmm.... – David Citron Jun 8 at 17:47
1  
A misnomer? What has the wrong name? – Rob Kennedy Jun 8 at 17:51
1  
@Rob, because I am not a master of the english language :). Switched it to a red herring – JaredPar Jun 8 at 17:57

Your Answer

Get an OpenID
or
never shown

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