You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jun 1, 2023. It is now read-only.
nextstate resets the stack at every ; which is a waste and adds enormous run-time costs.
Track the stack depth for each op result if statically possible, add the oplines field to each op, thus get rid of most nextstate COPs.
nextstate is one of the most costly ops (see dtrace Porting/op.d), and is called every single line.
nextstate resets the stack at every
;
which is a waste and adds enormous run-time costs.Track the stack depth for each op result if statically possible, add the oplines field to each op, thus get rid of most nextstate COPs.
nextstate is one of the most costly ops (see dtrace Porting/op.d), and is called every single line.
stack tracking+oplines. see the jit #220
The text was updated successfully, but these errors were encountered: