vote up 9 vote down star
3

I understand that there is a resource hit from using RTTI, but how big is it? Everywhere I've looked just says that "RTTI is expensive," but none of them actually give any benchmarks or quantitative data reguarding memory, processor time, or speed.

So, just how expensive is RTTI? I might use it on an embedded system where I have only 4MB of RAM, so every bit counts.

Edit: As per S. Lott's answer, it would be better if I include what I'm actually doing. I am using a class to pass in data of different lengths and that can perform different actions, so it would be difficult to do this using only virtual functions. It seems that using a few dynamic_casts could remedy this problem by allowing the different derived classes to be passed through the different levels yet still allow them to act completely differently.

From my understanding, dynamic_cast uses RTTI, so I was wondering how feasable it would be to use on a limited system.

flag

6 Answers

vote up 7 vote down

It depends on the scale of things. For the most part it's just a couple checks and a few pointer dereferences. In most implementations, at the top of every object that has virtual functions, there is a pointer to a vtable that holds a list of pointers to all the implementations of the virtual function on that class. I would guess that most implementations would use this to either store another pointer to the type_info structure for the class.

For example in pseudo-c++:

struct Base
{
    virtual ~Base() {}
};

struct Derived
{
    virtual ~Derived() {}
};


int main()
{
    Base *d = new Derived();
    const char *name = typeid(*d).name(); // C++ way

    // faked up way (this won't actually work, but gives an idea of what might be happening in some implementations).
    const vtable *vt = reinterpret_cast<vtable *>(d);
    type_info *ti = vt->typeinfo;
    const char *name = ProcessRawName(ti->name);       
}

In general the real argument against RTTI is the unmaintainability of having to modify code everywhere every time you add a new derived class. Instead of switch statements everywhere, factor those into virtual functions. This moves all the code that is different between classes into the classes themselves, so that a new derivation just needs to override all the virtual functions to become a fully functioning class. If you've ever had to hunt through a large code base for every time someone checks the type of a class and does something different, you'll quickly learn to stay away from that style of programming.

If your compiler lets you totally turn off RTTI, the final resulting code size savings can be significant though, with such a small RAM space. The compiler needs to generate a type_info structure for every single class with a virtual function. If you turn off RTTI, all these structures do not need to be included in the executable image.

link|flag
vote up 3 vote down

For a simple check, RTTI can be as cheap as a pointer comparison. For inheritance checking, it can be as expensive as a strcmp for every type in an inheritance tree if you are dynamic_cast-ing from the top to the bottom in one implementation out there.

You can also reduce the overhead by not using dynamic_cast and instead checking the type explicitly via &typeid(...)==&typeid(type). While that doesn't necessarily work for .dlls or other dynamically loaded code, it can be quite fast for things that are statically linked.

Although at that point it's like using a switch statement, so there you go.

link|flag
1  
Do you have any referencs for the strcmp version? It seems extremely inefficient and inaccurate to use strcmp for a type check. – JaredPar Feb 24 at 2:12
In a poor implementation that could have multiple type_info objects per type, it could implement bool type_info::operator==(const type_info &x) const as "!strcmp(name(), x.name())" – Greg Rogers Feb 24 at 14:33
Step into the disassembly of either dynamic_cast or typeid().operator== for MSVC and you'll hit a strcmp in there. I assume its there for the horrible case where you are comparing against a type compiled in another .dll. And it uses the mangled name, so at least it's correct given the same compiler. – MSN Feb 24 at 14:42
you are supposed to do "typeid(...)==typeid(type)" and not compare the address – Johannes Schaub - litb Feb 24 at 15:20
My point is that you can do &typeid(...)==&typeid(blah) as an early out and will be safe. It may not actually do anything useful since typeid(...) could be generated on the stack, but if their addresses are equal, then their types are equal. – MSN Feb 24 at 17:01
vote up 1 vote down

So, just how expensive is RTTI?

That depends entirely on the compiler you're using. I understand that some use string comparisons, and others use real algorithms.

Your only hope is to write a sample program and see what your compiler does (or at least determine how much time it takes to execute a million dynamic_casts or a million typeids).

link|flag
vote up 1 vote down

It's always best to measure things. In the following code, under g++, the use of hand coded type identification seems to be about three times faster than RTTI. I'm sure that a more realistic hand coded implementtaion using strings instead of chars would be slower, bringing the timings close together..

#include <iostream>
using namespace std;

struct Base {
    virtual ~Base() {}
    virtual char Type() const = 0;
};

struct A : public Base {
    char Type() const {
        return 'A';
    }
};

struct B : public Base {;
    char Type() const {
        return 'B';
    }
};

int main() {
    Base * bp = new A;
    int n = 0;
    for ( int i = 0; i < 10000000; i++ ) {
#ifdef RTTI
        if ( A * a = dynamic_cast <A*> ( bp ) ) {
            n++;
        }
#else
        if ( bp->Type() == 'A' ) {
            A * a = static_cast <A*>(bp);
            n++;
        }
#endif
    }
    cout << n << endl;
}
link|flag
try not to do it with dynamic_cast, but with typeid. it could speed up performance. – Johannes Schaub - litb Feb 24 at 15:22
but using dynamic_cast is more realistic, at least looking at my code – Neil Butterworth Feb 24 at 15:25
it does a different thing: it checks also whether bp points to a type derived from A. your == 'A' checks whether it points exactly to an 'A'. i also think the test is unfair somewhat: the compiler can easily see bp cannot point to anything different than A. but i think it doesn't optimize here. – Johannes Schaub - litb Feb 24 at 15:30
anyway, i've tested your code. and it gives me "0.016s" for RTTI and "0.044s" for the virtual function calls. (using -O2) – Johannes Schaub - litb Feb 24 at 15:34
though changing it to use typeid does not make any difference here (still 0.016s) – Johannes Schaub - litb Feb 24 at 15:36
show 2 more comments
vote up 1 vote down

The standard way:

cout << (typeid(Base) == typeid(Derived)) << endl;

Standard RTTI is expensive because it relies on doing a underlying string compare and thus the speed of RTTI can vary depending on the class name length.

The reason why string compares are used is to make it work consistently across library/DLL boundaries. If you build your application statically and/or you are using certain compilers then you can probably use:

cout << (typeid(Base).name() == typeid(Derived).name()) << endl;

Which is not guaranteed to work (will never give a false positive, but may give false negatives) but can be up to 15 times faster. This relies on the implementation of typeid() to work in a certain way and all you are doing is comparing an internal char pointer. This is also sometimes equivalent to:

cout << (&typeid(Base) == &typeid(Derived)) << endl;

You can however use a hybrid safely which will be very fast if the types match, and will be worst case for unmatched types:

cout << ( typeid(Base).name() == typeid(Derived).name() || 
          typeid(Base) == typeid(Derived) ) << endl;

To understand whether you need to optimize this you need to see how much of your time you spend getting a new packet, compared to the time it takes to process the packet. In most cases a string compare will probably not be a large overhead. (depending on your class or namespace::class name length)

The safest way to optimize this is to implement your own typeid as an int (or a enum Type : int ) as part of your Base class and use that to determine the type of the class, and then just use static_cast<> or reinterpret_cast<>

For me the difference is roughly 15 times on unoptimized MS VS 2005 C++ SP1.

link|flag
vote up -2 vote down

RTTI can be "expensive" because you've added an if-statement every single time you do the RTTI comparison. In deeply nested iterations, this can be pricey. In something that never gets executed in a loop it's essentially free.

The choice is to use proper polymorphic design, eliminating the if-statement. In deeply nested loops, this is essential for performance. Otherwise, it doesn't matter very much.

RTTI is also expensive because it can obscure the subclass hierarchy (if there even is one). It can have the side-effect of removing the "object oriented" from "object oriented programming".

link|flag
Not necessarily - I was going to use it indirectly via dynamic_cast, and keep the hierarchy in place, because I need to downcast because each subtype needs to have different (variably sized) data which must be applied differently, hence dynamic_cast. – Cristián Romo Feb 24 at 0:11
@Cristián Romo: Please update your question with these new facts. dynamic_cast is a (sometimes) necessary evil in C++. Asking about RTTI performance when you are forced to do it doesn't make a lot of sense. – S.Lott Feb 24 at 0:26
@S.Lott: Updated. Sorry about the confusion. – Cristián Romo Feb 24 at 3:31

Your Answer

Get an OpenID
or

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