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
This is to help the optimizer, which works better with variables than memory access. The idea is to add new vars to represent new values pushed on the stack and keep somewhere the definition of which vars correspond to stack positions.
// push 2 on the stackvarx34=2// modify a data structure to say that x34 is top of stack
stackpostions.add(34);
The text was updated successfully, but these errors were encountered:
This is to help the optimizer, which works better with variables than memory access. The idea is to add new vars to represent new values pushed on the stack and keep somewhere the definition of which vars correspond to stack positions.
The text was updated successfully, but these errors were encountered: