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
Some of the registers used in the instrumentation are hardcoded (e.g., R15 in X86SpecFuzzPass::visitWrite). This approach works, but it does not produce an optimal assembly because we have to push/pop the register value every time we use it.
A better approach would be to look for non-live registers and, if available, use them.
The text was updated successfully, but these errors were encountered:
Some of the registers used in the instrumentation are hardcoded (e.g., R15 in
X86SpecFuzzPass::visitWrite
). This approach works, but it does not produce an optimal assembly because we have topush/pop
the register value every time we use it.A better approach would be to look for non-live registers and, if available, use them.
The text was updated successfully, but these errors were encountered: