Move restore up one level.

This commit is contained in:
Stephen Chung
2022-12-11 21:50:47 +08:00
parent 2c55c248fb
commit 397b5eb39d
4 changed files with 17 additions and 24 deletions

View File

@@ -26,8 +26,8 @@ Deprecated API's
Speed improvements
------------------
* The functions registration mechanism is revamped to take advantage of constant generics, among others.
* This yields a 10-20% speed improvements on certain real-life, function-call-heavy workloads.
* The function registration mechanism is revamped to take advantage of constant generics, among others, to omit checking code where possible. This yields a 10-20% speed improvements on certain real-life, function-call-heavy workloads.
* Functions taking function pointers as parameters, usually called with closures, now run faster because a link to the anonymous function (generated by the closure) is stored together with the function pointer itself. This allows short-circuiting the function lookup step.
Net features
------------