Hacker News new | past | comments | ask | show | jobs | submit login

You can't easily inline _virtual_ functions.

MSVC with PGO will do it, by inserting a guard on the vtable pointer and inlining the most common implementation. But you still take the possible cache miss of reading the vtable pointer, of course. And the other commonly used compilers (clang and gcc) don't do anything like this, even with PGO.




Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: