|
|
|
|
|
by amluto
638 days ago
|
|
I would expect the relevant optimization to be inlining and/or specialization. An inlined function could allow the JIT detect that the hot path creates and destroys an object without ever using it. Alternatively, if the JIT could specialize the callee for the specific function that is passed in, then the overhead would go away. (One think I like about less heavily JIT-reliant languages is that it can be more obvious when something will incur a runtime cost.) |
|