What exactly does GCC -fobjc-direct-dispatch option?
- by Eonil
GCC manual says:
-fobjc-direct-dispatch
Allow fast jumps to the message dispatcher. On
Darwin this is accomplished via the comm page.
Can I assume this flag eliminates dynamic dispatch? How does it works?
I believe it should be fast as C function call if it linked directly.