|
|
|
|
|
by bzbarsky
4856 days ago
|
|
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. |
|