What exactly does GCC -fobjc-direct-dispatch option?

Posted by Eonil on Stack Overflow See other posts from Stack Overflow or by Eonil
Published on 2010-05-08T14:34:08Z Indexed on 2010/05/08 14:38 UTC
Read the original article Hit count: 209

Filed under:
|
|

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.

© Stack Overflow or respective owner

Related posts about gcc

Related posts about objective-c