-
Notifications
You must be signed in to change notification settings - Fork 32
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add a description to all instructions #35
Comments
There are many instructions to document and most of them have self On Fri, Jan 9, 2015, 14:28 Florent Cailhol notifications@github.com wrote:
|
Everything related to
What is |
Will add. Here is explanation: OSR stands for on stack replacement a process when a version of the code for a running function is replaced by a different version of the code (e.g. optimized) while the function is still running (is on the stack). OSR is used to optimize functions with long running loops while these loops are still running.
In general you don't need to concern yourself with semantics of these instructions - they are implementation detail of OSR mechanism.
|
Currently the only instructions with a description are:
Change
,CheckMaps
andDeoptimize
.Adding a description to all instructions (or the commonest) would be a great improvement to understand the IR.
The text was updated successfully, but these errors were encountered: