vote up 6 vote down star
2

I was looking through the plans for C++0x and came upon std::initializer_list for implementing initializer lists in user classes. This class could not be implemented in C++ without using itself, or else using some "compiler magic". If it could, it wouldn't be needed since whatever technique you used to implement initializer_list could be used to implement initializer lists in your own class.

What other classes require some form of "compiler magic" to work? Which classes are in the Standard Library that could not be implemented by a third-party library?

Edit: Maybe instead of implemented, I should say instantiated. It's more the fact that this class is so directly linked with a language feature (you can't use initializer lists without initializer_list).

A comparison with C# might clear up what I'm wondering about: IEnumerable and IDisposable are actually hard-coded into language features. I had always assumed C++ was free of this, since Stroustrup tried to make everything implementable in libraries. So, are there any other classes / types that are inextricably bound to a language feature.

flag

This may be a religious issue - Stroustrup designed C++ to allow functionality to be implemented in "libraries" instead of "language features". The extent to which this holds for implementers as well as users depends on how many of those libraries need to use secret compiler hooks to actually work. – Steve Jessop Oct 30 '08 at 16:13
So there may be resistance to admitting that you can't just implement the core language specification in "the compiler" and then bung the standard libraries in as pure user-mode code that works anywhere. Although Boost has a good go at it, and runtime hooks are no breach of Stroustrup's intentions. – Steve Jessop Oct 30 '08 at 16:23

8 Answers

vote up 2 vote down check

std::type_info is a simple class, although populating it requires typeinfo -- a compiler construct.

Likewise, exceptions are normal objects, but throwing exceptions requires compiler magic (where are the exceptions allocated?).

std::initializer_list, OTOH, is much simpler.

Looking at wikipedia, std::initializer_list can be initialized by an array of T, which means it has a conversion constructor (i.e., a constructor that takes a single argument of array of T):

namespace std {
     template<typename T> class initializer_list {
         T internal_array[];
         public:
         initializer_list(T other_array[]) : internal_array(other_array) { };

         // ... other methods needed to actually access internal_array
     }
}

Likewise, a class that uses a std::initializer_list does so by declaring a constructor that takes a single std::initializer_list argument -- a.k.a. a conversion constructor:

struct my_class {
    ...
    my_class(std::initializer_list<int>) ...
}

So the line:

 my_class m = {1, 2, 3};

Causes the compiler to think: "I need to call a constructor for my_class -> my_class has a constructor that takes a std::initializer_list -> I have an array of int -> I can convert an array of int to a std::initializer_list -> and I can pass that to the my_class constructor."

The only magic involved is the compiler is allowed to implicitly use two user-defined conversions, which is not generally allowed.


Looking over this answer, I realize I'm missing a few features of initializer lists (that is, a few restrictions). One, initializer lists can only be constructed statically by the compiler using the { } notation. While providing only a single constructor does limit how objects can be constructed (i.e., "only using arrays"), the list I wrote would accept an already-created array:

int arry[] = {1, 2, 3};
my_class = arry;

And I didn't bother messing with rvalue references.

But I would argue that (1) the class itself is a normal class, and (2) the magic involved in using it is less than it seems at first glance.

link|flag
my_class m = {1,2,3} will not work since it requires two user defined casts and the standard only allows one UDC to be called automatically. – Motti Oct 30 '08 at 10:38
That's why I wrote "The only magic involved is the compiler is allowed to implicitly use two user-defined conversions, which is not generally allowed." right above the line. Later I added the "wait, this doesn't have all the restrictions the standard asks for" part below the line. – Max Lybbert Oct 30 '08 at 16:38
I'm a little confused here, the UDC is from {1,2,3} to initializer_list correct? This has to be built into the compiler, there's no way it would be able to see the relation otherwise, plus as far as I can tell, the actual steps involved in creating the array must also be built into the compiler, as there's no public method in initializer_list that can accept an array. I may just be misreading what you're saying, but I'm feeling pretty confused at the moment. – Dave 2 days ago
vote up 0 vote down

MSalter points out printf/cout/stdout in a comment. You could implement any one of them in terms of the one of the others (I think), but you can't implement the whole set of them together without OS calls or compiler magic, because:

  1. These are all the ways of accessing the process's standard output stream. You have to stuff the bytes somewhere, and that's implementation-specific in the absence of these things. Unless I've forgotten another way of accessing it, but the point is you can't implement standard output other than through implementation-specific "magic".

  2. They have "magic" behaviour in the runtime, which I think could not be perfectly imitated by a pure library. For example, you couldn't just use static initialization to construct cout, because the order of static initialization between compilation units is not defined, so there would be no guarantee that it would exist in time to be used by other static initializers. stdout is perhaps easier, since it's just fd 1, so any apparatus supporting it can be created by the calls it's passed into when they see it.

link|flag
cout is initialized by means of a Schwarz counter. Given a working printf, it’s rather straightforward to implement std::cout. – Roman Odaisky Oct 30 '08 at 15:50
Good point, but for hitch-free portable operation, the counter should be given a reserved name, so it doesn't clash with anything the user might define. Using reserved names is a (very mild) form of compiler magic. – Steve Jessop Oct 30 '08 at 16:07
Of course by that argument, defining anything in std:: is compiler magic, so it's impossible to implement any standard library feature in pure user code ;-). I guess you just draw a line in the sand what "magic" means. – Steve Jessop Oct 30 '08 at 16:18
vote up 2 vote down

C++ allows compilers to define otherwise undefined behavior. This makes it possible to implement the Standard Library in non-standard C++. For instance, "onebyone" wonders about atexit(). The library writers can assume things about the compiler that makes their non-portable C++ work OK for their compiler.

link|flag
This is the thing - I think you can implement atexit() using "C++, without atexit(), but plus a bunch of compiler-specific magic". You can't implement it using "C++, without atexit, full stop". But it's a very simple observation that you can implement anything with compiler magic to support you... – Steve Jessop Oct 30 '08 at 13:57
vote up 1 vote down

Anything that the runtime "hooks into" at defined points is likely not to be implementable as a portable library in the hypothetical language "C++, excluding that thing".

So for instance I think atexit() in <cstdlib> can't be implemented purely as a library, since there is no other way in C++ to ensure it is called at the right time in the termination sequence, that is before any global destructor.

Of course, you could argue that C features "don't count" for this question. In which case std::unexpected may be a better example, for exactly the same reason. If it didn't exist, there would be no way to implement it without tinkering with the exception code emitted by the compiler.

[Edit: I just noticed the questioner actually asked what classes can't be implemented, not what parts of the standard library can't be implemented. So actually these examples don't strictly answer the question.]

link|flag
Throwing exceptions are also magic. But the exception classes are as normal as they come. – Max Lybbert Oct 30 '08 at 0:00
Indeed. But 'throw' is a language feature, not part of the standard library, so there's perhaps more expectation that it would be orthogonal to the rest of the language. – Steve Jessop Oct 30 '08 at 0:05
I should perhaps be clear that by "exception code" in the above I don't mean the code of the exceptions classes. I mean the code which ensures that the registered unexpected function is called when an unexpected exception is thrown. That's hidden away in the compiler out of reach of regular code. – Steve Jessop Oct 30 '08 at 2:51
vote up 0 vote down

Again from C++0x, I think that threads would not be implementable as a portable library in the hypothetical language "C++0x, with all the standard libraries except threads".

[Edit: just to clarify, there seems to be some disagreement as to what it would mean to "implement threads". What I understand it to mean in the context of this question is:

1) Implement the C++0x threading specification (whatever that turns out to be). Note C++0x, which is what I and the questioner are both talking about. Not any other threading specification, such as POSIX.

2) without "compiler magic". This means not adding anything to the compiler to help your implementation work, and not relying on any non-standard implementation details (such as a particular stack layout, or a means of switching stacks, or non-portable system calls to set a timed interrupt) to produce a thread library that works only on a particular C++ implementation. In other words: pure, portable C++. You can use signals and setjmp/longjmp, since they are portable, but my impression is that's not enough.

3) Assume a C++0x compiler, except that it's missing all parts of the C++0x threading specification. If all it's missing is some data structure (that stores an exit value and a synchronisation primitive used by join() or equivalent), but the compiler magic to implement threads is present, then obviously that data structure could be added as a third-party portable component. But that's kind of a dull answer, when the question was about which C++0x standard library classes require compiler magic to support them. IMO.]

link|flag
you can implement threads using C++, it's not even that hard. Of course it's nicer to let the OS do the work but just about any language can implement some form of threads without OS support, outside of calls to processor-level interrupts and timers. – tloach Oct 29 '08 at 23:51
Maybe I'm just being dim, but I don't see how it can be done without support from the runtime, or calls to POSIX or other OS functions. Obviously you can implement a threaded OS in C++, complete with its own C++ compiler, but that's not what the questioner means. – Steve Jessop Oct 29 '08 at 23:59
You can implement threads in C/C++ without using operating system threads; you end up putting wrappers around the system calls and multiplexing the higher level threads on a single OS thread. See early Unix threading libraries before threads were in the underlying OS (eg. FreeBSD 4) – janm Oct 30 '08 at 0:27
"putting wrappers around the system calls" sounds to me like something non-portable. Or it could be that we aren't understanding the same thing by the question: did FreeBSD really implement threads without jigging the compiler at all? – Steve Jessop Oct 30 '08 at 1:22
e.g, how do you know a hypothetical "C++0x-without-threads" compiler won't reorder instructions in a way that would, in "C++0x-with-threads", invalidly create a data race? Calls with memory barriers (or permit deschedule if no pre-emption) need compiler magic to prevent re-ordering across them, no? – Steve Jessop Oct 30 '08 at 1:30
show 20 more comments
vote up 0 vote down

I think you're pretty safe on this score. C++ mostly serves as a thick layer of abstraction around C. Since C++ is also a superset of C itself, the core language primitives are almost always implemented sans-classes (in a C-style). In other words, you're not going to find many situations like Java's Object which is a class which has special meaning hard-coded into the compiler.

link|flag
I'm wondering which situations those are, obviously type_info and initializer_list do have special meaning hard-coded into the compiler. – Eclipse Oct 29 '08 at 17:17
vote up 2 vote down

All classes in the standard library, by definition, must be implemented in C++. Some of them hide some obscure language/compiler constructs, but still are just wrappers around that complexity, not language features.

link|flag
How would you implement either of those without some compiler help? – Eclipse Oct 29 '08 at 17:01
If the code relies on compiler constructs that are not part of the standard, it is not C++. – Jonathan Oct 29 '08 at 17:03
Think std::string as an example. At face value, it looks magic, but you could actually implement it yourself without too much headache. – Daniel Spiewak Oct 29 '08 at 17:07
That's why initializer_list and type_info are so weird. As far as I can tell, everything else can be implemented by any user. – Eclipse Oct 29 '08 at 17:10
Untrue, and unsourced. Type_traits in fact will require compiler help. And std::printf()/std::cout somehow need to access the OS, which often is not C++ code either. – MSalters Oct 30 '08 at 9:58
vote up 5 vote down

The only other one I could think of was the type_info class returned by typeid. As far as I can tell, VC++ implements this by instantiating all the needed type_info classes statically at compile time, and then simply casting a pointer at runtime based on values in the vtable. These are things that could be done using C code, but not in a standard-conforming or portable way.

link|flag
But isn't it typeid which is magic rather than type_info? – fizzer Oct 29 '08 at 23:34

Your Answer

Get an OpenID
or

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