How the compilers implement the virtual inheritance?

In the following code:

class A {
  public:
    A(int) {}
};

class B : public virtual A {
  public:
    B() : A(1) {}
};

class C : public B {
  public:
    C() : A(3), B() {}
};

Does a compiler generate two instance of B::ctor function, one without A(1) call, and one with it? So when B::constructor is called from derived class's constructor the first instance is used, otherwise the second.

link|improve this question

67% accept rate
Armen: I guess the simplest is that A constructor initializer checks and sets a flag that it's been execeuted. That implies some pre-initialization, clearing that flag, but the compiler knows that B and C has some virtual inheritance to deal with. The slightly more difficult issue is the vtable layout; as I recall Bjarne wrote somewhere that he had to implement it to convince himself that it was possible. – Cheers and hth. - Alf Sep 9 '11 at 11:19
feedback

4 Answers

up vote 4 down vote accepted

It's implementation-dependent. GCC (see this question), for example, will emit two constructors, one with a call to A(1), another one without.

B1()
B2() // no A

When B is constructed, the "full" version is called:

B1():
    A(1)
    B() body

When C is constructed, the base version is called instead:

C():
    A(3)
    B2()
       B() body
    C() body

In fact, two constructors will be emitted even if there is no virtual inheritance, and they will be identical.

link|improve this answer
feedback

The compiler does not create another constructor of B - but it ignores the A(1). Since A is virtually inherited, it is constructed first, with its default constructor. And since it's already constructed when B() is invoked, the A(1) part is ignored.

Edit - I missed the A(3) part in C's constructor initialization list. When virtual inheritance is used, only the most derived class initializes the virtual base classes. So A will be constructed with A(3) and not its default constructor. The rest still stands - any initializations of A by an intermediate class (here B) are ignored.

Edit 2, trying to answer the actual question regarding the implementation of the above:

In Visual Studio (at least 2010), a flag is used instead of having two implementations of B(). Since B virtually inherits from A, before it calls A's constructor, the flag is checked. If the flag is not set, the call to A() is skipped. Then, in every class deriving from B, the flag is reset after it initializes A. The same mechanism is used to prevent C from initializing A if it's part of some D (if D inherits from C, D will initialize A).

link|improve this answer
1  
Actually, gcc does generate two versions of the constructor, one to be called when B is instantiated, another one for C. stackoverflow.com/questions/6921295/… – Alex B Sep 9 '11 at 11:21
:) My question is how the compiler ignore that part? In the assembly code of B::ctor what is generated for A(1) call? – MKo Sep 9 '11 at 11:22
-1 This purported answer is restating the question. With more details yes. But it's just the question again. – Cheers and hth. - Alf Sep 9 '11 at 11:59
MKo, @Alf, my bad. Added an explanation of the actual implementation in VS. – eran Sep 9 '11 at 13:22
@eran, OK I remove my downvote and instead upvote. Facts are always good to have. It would be nice if the selected answer and this one could be merged, but I don't know SO mechanism for that? – Cheers and hth. - Alf Sep 9 '11 at 13:56
feedback

I suggest you to read some papers. These two are really interesting, especially the first since it comes from C++'s father:

[1] Bjarne Stroustrup. Multiple Inheritance for C++. The C/C++ Users Journal, May 1999.

[2] J. Templ. A Systematic Approach to Multiple Inheritance Implementation. ACM SIGPLAN Notices, Volume 28, No. 4 April 1993.

I used them as main references while making a seminar (as a student) on multiple inheritance in my university.

link|improve this answer
feedback

As mentioned before, it depends on the compiler implementation.

But, usually each time a programmer adds a new method, is stored in code, even if there is another method with the same id. elsewhere ("overriden" or "overloaded").

The code for each method is stored only once, so if a class inherits and uses the same method from a parent class, internally, its uses a pointer to the code, it doesn't duplicates the code.

If a parent class defines a virtual method, and if a child class overrides it, both methods are stored. Each class has something called "Virtual Method Table" where there is a table of pointers to each method.

Don't worry about performance, the compiler doesn't duplicate code for methods.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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