Hacker Newsnew | past | comments | ask | show | jobs | submitlogin

Inline caches require runtime supports that were ideologically verboten to C++


You can implement it with templates and people do things like this often. In modern C++, it's even pretty easy to make this type of trick support `constexpr`.


Do it manually and hacky, yes.

At that point though, one could claim that they can do it in C as well and implement half of Objective-C


Except that to keep objc_msgSend performance good enough with Objective-C dispatch semantics, a little bit of pure Assembly code help is required.


well, I wasn't implying full semantics. Or fast, to be honest. Still could be faster than vtable though...


Sure enough.

Going back to the technical implementation part, depending on the C++ version, and being able to understand the target at compile time, no need to do it manually and hacky.

There is enough support in constexpr, consteval, concepts, and now compile time reflection, to do it automatically, assuming the dispatch target can be resolved at compile time.




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

Search: