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
Now compiler accesses local variables in a stack by storing address of them into rax first, then emits mov [rax] rax. It takes more lines of assembly code.
Rewrite code generator to access local variable with an expression mov [rsp-8] rax.