1. Must a conforming C++ Standard Library Implementation be implemented in C++?
  2. If not, is it allowed to do magic things that are not doable in pure C++ & Standard Library & some implementation defined behaviour?

  • I am aware that there are parallel implementations that rely on extensions (in pre C++11 at least), but are they really conforming?
  • I couldn't find any requirement in the standard, but maybe my standard-fu is weak today
link|improve this question

I'm reminded of a quote about the State of the Union: "If the President buys Congress a subscription to the Wall Street Journal, he's fulfilled his Constitutional obligations!" – spraff Feb 6 at 16:41
The "as if" rule allows the implementation to choose any implementation it likes. – Raymond Chen Feb 6 at 17:53
feedback

3 Answers

up vote 4 down vote accepted

No.

Actually, it is even prescribed by the Standard that #include <map> (for example) could simply import a pre-stored AST and not refer to a file, at all.

link|improve this answer
Let me accept this. Dietmars answer is imho less concrete than yours. – phresnel Feb 23 at 16:46
feedback

There is no requirement at all how the standard C++ library (or the standard C library for that matter) is implemented. All the library needs to achieve is to implement the documented and specified interface. How this is done is entirely up to the implementation. Part of standard libraries are often implemented by the compiler in some magic way and in C++2011 there are several interfaces which actually cannot be implemented using standard C++2011 language facilities! Primarily this is true for some of the traits in <type_traits> but there are other things.

Just for the reference: how C++ is implemented and what it actually really means to conform to the standard is held extremely vague. The relevant clause is 1.4 [intro.compliance]. It merely speaks about diagnostics being issued and what a program has to do, constraint to resource limitations, however.

link|improve this answer
+1: Being a moderate template writer myself, I am really curious which type-traits that would be. – phresnel Feb 6 at 16:48
You don't need any recent additions to find things which can't be implemented using standard language facilities. The language itself has no concept of IO, so filebuf et al. need something more (Posix, anyway---but that's not standard C++). In fact, the fact that something is useful, even to a small community, but cannot be implemented with standard language constructs, is often a motivation to add it to the library. (In C, this was the argument given for offsetof.) – James Kanze Feb 6 at 16:53
@phresnel: I don't have a readily available comprehensive list of things which can't be implemented without compiler support. However, things like is_trivially_default_constructible would need to test information about how the default constructor is actually declared or if it is synthesized. Several compiler implement various type traits but they often implement more than is absolutely necessary because the compiler can be a lot more efficient in telling certain traits instead of inspecting a somewhat contrived instantiation. – Dietmar Kühl Feb 6 at 16:58
@JamesKanze: I have refined my second question slightly to include "implementation defined behaviour". Should that not saturate the IO requirement? – phresnel Feb 6 at 16:59
1  
@DietmarKühl How? How do you get the bytes from the OS into a C++ object (array of char, or whatever) without going outside the C++ language (which as far as I can tell, doesn't even acknowledge the existence of bytes outside the program)? – James Kanze Feb 6 at 17:11
show 3 more comments
feedback

Not at all, only the interface needs to be C++.

link|improve this answer
2  
What do you mean by this? #include <some-std-header> doesn't have to include a file: it may just notify the compiler about certain definitions to be made available in the translation unit, i.e. I don't think the interface needs to be in C++, either. It somewhat depends on what you consider an interface, though... – Dietmar Kühl Feb 6 at 16:40
I guess so (but guesses should not be part of a question :)), too, but I was more looking for references or quotations. – phresnel Feb 6 at 16:49
@DietmarKühl I believe this technique was actually used by Visual Age. – James Kanze Feb 6 at 16:54
feedback

Your Answer

 
or
required, but never shown

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