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.
The text was updated successfully, but these errors were encountered:
Now compiler accesses local variables in a stack by storing address of them into
rax
first, then emitsmov [rax] rax
. It takes more lines of assembly code.Rewrite code generator to access local variable with an expression
mov [rsp-8] rax
.The text was updated successfully, but these errors were encountered: