vote up 2 vote down star

When writing a header library (like Boost), can one define free-floating (non-method) functions without (1) bloating the generated binary and (2) incurring "unused" warnings?

When I define a function in a header that's included by multiple source files which in turn is linked into the same binary, the linker complains about redefinitions. One way around this is to make the functions static, but this reproduces the code in each translation unit (BTW, can linkers safely dereplicate these?). Furthermore, this triggers compiler warnings about the function being unused.

I was trying to look for an example of a free-floating function in Boost, but I couldn't find one. Is the trick to contain everything in a class (or template)?

flag

WHY would you want to do something like that? – AndreyT Oct 14 at 21:03
BTW, can linkers safely dereplicate these - you probably have a better chance with inline. – peterchen Oct 14 at 21:12
There are implementation-specific features that can solve this at limking stage. Like __declspec(selectany) in MS implementation and __attribute__((weak)) in GCC. – AndreyT Oct 14 at 21:44

5 Answers

vote up 3 vote down check

Er... The answer to your question is simply don't. You just don't define functions in header files, unless they are inline.

'static' function can also be defined in headers, but it is only useful for very specific rare purposes. Using 'static' just to work around a multiple-definition problem is utter nonsense.

Again, header files are for non-defining function declarations. Why on Earth would you want to define functions there?

You said you are writing "header library". What's a "header library"? Please note, that Boost defines its "functions" in header files because their "functions" are not really functions, they are function templates. Function templates have to be defined in header files (well, almost). If that's wasn't the case, Boost wouldn't be doing something as strange as defining anything in header files.

link|flag
Er...., templates. :) Excellent point nonetheless. I addressed the technical nature of using static in my answer but not the correctness of it. – Troubadour Oct 14 at 21:06
If the OP was defining templates, he woudn't have the multiple definition problems in the first place. Also, there's a terminological distinction here that I'm always trying to observe: function template is not a function. – AndreyT Oct 14 at 21:09
Yes I know he wouldn't have that problem if he were using templates. What's that got to do with the price of bread? I suppose I'll have to take your word for it that you were using "function" to refer to non-template functions, obviously your edit appeared after my comment. Sorry for upvoting you. – Troubadour Oct 14 at 21:15
Well, maybe I misunderstood your comment somehow (I still don't understant what offended you.) But even though my edit appeared after yor comment, I saw your comment only after I submitted my edit (i.e. you submitted your comment wile I was busy making the edit). For that, of course, you can only take my word. – AndreyT Oct 14 at 21:37
vote up 9 vote down

If you really want to define the function (as opposed to declaring it), you'll need to use inline to prevent linker errors.

Otherwise, you can declare the function in the header file and provide its implementation separately in your source file.

link|flag
Of course, using "inline" increases the chances that the function be inlined, which can result in code bloat in the application using that header. – Vladimir Prus Oct 15 at 17:11
vote up 8 vote down

You can use the inline keyword:

inline void wont_give_linker_errors(void)
{
    // ...
}
link|flag
vote up 1 vote down

Besides the already mentioned inline, with most compilers templates have to be defined in headers (and with all compilers it's allowed). Since boost is mostly templates, that explains why it is almost all headers.

link|flag
vote up -1 vote down

People have suggested inline but that violates the very first part of your question i.e. it bloats the code as the full definition is inserted into the code at each call of the function. The answer to your overall question is therefore "No".

If you mark them as static then they are still defined in each source file as you rightly pointed out but only once and so that's a better option than inline if code size is the only issue. I don't know if linkers can, or are allowed to, spot the duplicates and merge them. I suspect not.

Edit:

Just to clear up any confusion as to whether I support the notion of using static and/or defining functions within headers files generally then rest assured I don't. This was simply meant as a technical response as to the differences between functions marked inline and static defined in header files. Nothing more.

link|flag
1  
inline has two roles: first, prevent multiple definitions to be an error. Second, it's a hint to the compiler that this function can be inlined. In practice, compilers don't inline large functions (unless e.g. it's the only occurence). – peterchen Oct 14 at 21:09
Isn't it the other way round? Aren't those precisely static functions that would trigger the "unused" warnings? (Doesn't static mean that each including file gets its own version of the function, and since it is "custom-made", it would indeed be nice if they all used it somewhere?) – UncleBens Oct 14 at 21:13
@peterchen: I know it's a hint so I'm describing a worst-case scenario, something I didn't make clear. – Troubadour Oct 14 at 21:18
@UncleBens: I'm not sure who you're asking the question to? Using static may well give unused warnings, certainly the OP said it did for him. I certainly haven't said anything to contradict that. – Troubadour Oct 14 at 21:20
1  
@Troubadour: I meant, you talked about requirement 1), but suggested something that is pretty much guaranteed to fail requirement 2). Also, wouldn't static mean the same function will be generated multiple times, making the exe larger? Also, what makes you think the compiler cannot choose to inline (or not) the static function, as long as it sees the implementation? (As far as I see, the purpose of inline is so that you can define functions in headers, without which the compiler has no option but not to inline.) – UncleBens Oct 14 at 23:23
show 2 more comments

Your Answer

Get an OpenID
or

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