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

I write C code that makes certain assumptions about the implementation, such as:

  • char is 8 bits.
  • signed integral types are two's complement.
  • >> on signed integers sign-extends.
  • integer division rounds negative quotients towards zero.
  • double is IEEE-754 doubles and can be type-punned to and from uint64_t with the expected result.
  • comparisons involving NaN always evaluate to false.
  • a null pointer is all zero bits.
  • all data pointers have the same representation, and can be converted to size_t and back again without information loss.
  • pointer arithmetic on char* is the same as ordinary arithmetic on size_t.
  • functions pointers can be cast to void* and back again without information loss.

Now, all of these are things that the C standard doesn't guarantee, so strictly speaking my code is non-portable. However, they happen to be true on the architectures and ABIs I'm currently targeting, and after careful consideration I've decided that the risk they will fail to hold on some architecture that I'll need to target in the future is acceptably low compared to the pragmatic benefits I derive from making the assumptions now.

The question is: how do I best document this decision? Many of my assumptions are made by practically everyone (non-octet chars? or sign-magnitude integers? on a future, commercially successful, architecture?). Others are more arguable -- the most risky probably being the one about function pointers. But if I just list everything I assume beyond what the standard gives me, the reader's eyes are just going to glaze over, and he may not notice the ones that actually matter.

So, is there some well-known set of assumptions about being a "somewhat orthodox" architecture that I can incorporate by reference, and then only document explicitly where I go beyond even that? (Effectively such a "profile" would define a new language that is a superset of C, but it might not acknowledge that in so many words -- and it may not be a pragmatically useful way to think of it either).

Clarification: I'm looking for a shorthand way to document my choices, not for a way to test automatically whether a given compiler matches my expectations. The latter is obviously useful too, but does not solve everything. For example, if a business partner contacts us saying, "we're making a device based on Google's new G2015 chip; will your software run on it?" -- then it would be nice to be able to answer "we haven't worked with that arch yet, but it shouldn't be a problem if it has a C compiler that satisfies such-and-such".

Clarify even more since somebody has voted to close as "not constructive": I'm not looking for discussion here, just for pointers to actual, existing, formal documents that can simplify my documentation by being incorporated by reference.

share|improve this question
3  
I think I'd describe it as a subset of C, not a superset. I'd see it as not "C and more", but "C and less". Effectively you'd be restricting what could be considered "C". – Flexo Aug 24 '11 at 13:50
2  
If you use autoconf you can document these with configure time tests. – Flexo Aug 24 '11 at 13:52
@awoodland, both perspectives can be argued. I'm using "superset" in the sense of "more programs have a defined behavior". Of course that also means that "fewer compilers will meet these expectations". – Henning Makholm Aug 24 '11 at 13:52
One thing you could do is write a single feature test function that checks all those things, perhaps statically, and include that at some point early in your program. – Kerrek SB Aug 24 '11 at 13:53
2  
"functions pointers can be cast to void* and back again without information loss." POSIX.1-2001 promises you that via dlsym() – Flexo Aug 24 '11 at 13:57
show 9 more comments

2 Answers

I would introduce a STATIC_ASSERT macro and put all your assumptions in such asserts.

share|improve this answer
1  
I'm not too keen on relying entirely on experiment. For example, the main risk related to comparing to NaN is not that the implementation will always get it wrong (relative to my expectations), but that it will sometimes work and sometimes not, such as with a compiler that freely rewrites a<b to !(a>=b) and vice versa based on what it thinks will generate more efficient code in context. It is entirely plausible that a concrete experiment will succeed by accident, even if the compiler doesn't actually guarantee the behavior I rely on. – Henning Makholm Aug 24 '11 at 14:02
1  
Fair point, your own application will always be the ultimate test. But I think this would be a good idea to establish at least some kind of base line guarantee. – Andreas Brinck Aug 24 '11 at 14:09

Most compiler documentation includes a section that describes the specific behavior of implementation-dependent features. Can you point to that section of the gcc or msvc docs to describe your assumptions?

share|improve this answer
I could, but that would amount to s much stronger requirement than I want to make. It's not going to impress customers much if I tell them that "my code is fairly portable: it will work on any compiler that does things exactly the same ways as GCC on x86". – Henning Makholm Aug 24 '11 at 14:44

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.