I'm trying to implement a basic object-oriented ANSI C runtime and using Objective-C as a guide.

They're seems to be three parts. A Class Description, Class Interface, and Class Implementation. In order for the Class Interface to be instantiated, the familiar method of using the Class object to instantiate one's object can only happen if the runtime has already instantiated your class object using the class description.

So are all Class definitions allocated statically at first run to provide the ability to instantiate using the Class object? Or if they are allocated dynamically (on initial call), how? Is it a part of the run loop or is the Class actually a function that determines if it has already been allocated or not prior to forwarding the message?

link|improve this question

80% accept rate
feedback

1 Answer

up vote 5 down vote accepted

The runtime does some initialization via constructor functions that get called before actual program execution. They go by __attribute__((constructor)) in both gcc and clang.

In the case of Objective-C some of them are embedded in the binary by the compiler. You would have to include them in your headers for similar effect.

These functions use data automatically embedded by the compiler. They do things such as building hash tables for the class lookup function which are then used for the actual message passing.

Instances on the other hand are allocated dynamically.

I am doing something similar, so I don't really know a lot better than that, but this is as deep as I have dug.

link|improve this answer
So, the Obj-C lexer, inside the compiler, generates generic class descriptions from your interface (.h file), stores the list in a hash table for class lookup, but what triggers the initialization using the mentioned constructors? doesn't something have to be called in main to set this up? – Anderson Feb 8 '10 at 6:42
The compiler injects call to the runtime's constructors at compile-time? – Anderson Feb 8 '10 at 7:31
1  
No, there is a section of the binary called .ctors that contains a list of function pointers to be called. That list is written to by the compiler-linker from the list of functions which have a constructor attribute and executed either at the startup code if a static library or by the initialization code in dynamic linked files. – jbcreix Feb 8 '10 at 8:03
1  
A module(.m file) constructor is a function that calls the runtime with a pointer to the compiler generated Module structure, which contains references to everything else. – jbcreix Feb 9 '10 at 8:17
1  
Of course, that is done for convenience, but if you had your class descriptions stored in data files you could build the structures you need from a file. The difference is that the compiled Objc generates structures that are readily usable by the runtime, so you would be doing that part of the work JIT. – jbcreix Feb 11 '10 at 1:36
show 6 more comments
feedback

Your Answer

 
or
required, but never shown

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