Skip to content

Commit 97d7f74

Browse files
committed
winch(aarch64): Sync SP with SSP when dropping stack
This commit is a follow-up to #10146 and represents another step toward fixing the remaining issues discovered through spec tests in the same vein as #10201 Specifically, this commit ensures that the stack pointer is always in sync with the shadow stack pointer. The previous approach was lossy because it only performed the sync when reserving stack space. While this approach worked in some cases, it failed to account for situations where the shadow stack pointer might be adjusted and aligned for calls. As a result, the stack pointer could become unaligned when claiming stack space, leading to issues at call sites. It is possible to avoid the unconditional move and perform it only when alignment is needed, i.e., at call sites and when the real stack pointer is unaligned. However, as of now, the simplest solution is to always perform the sync, which integrates best with the current infrastructure.
1 parent 287e8fb commit 97d7f74

File tree

1 file changed

+11
-0
lines changed
  • winch/codegen/src/isa/aarch64

1 file changed

+11
-0
lines changed

winch/codegen/src/isa/aarch64/masm.rs

+11
Original file line numberDiff line numberDiff line change
@@ -163,6 +163,17 @@ impl Masm for MacroAssembler {
163163
self.asm
164164
.add_ir(bytes as u64, ssp, writable!(ssp), OperandSize::S64);
165165

166+
// We must ensure that the real stack pointer reflects the the offset
167+
// tracked by `self.sp_offset`, we use such value to calculate
168+
// alignment, which is crucial for calls.
169+
//
170+
// As an optimization: this synchronization doesn't need to happen all
171+
// the time, in theory we could ensure to sync the shadow stack pointer
172+
// with the stack pointer when alignment is required, like at callsites.
173+
// This is the simplest approach at the time of writing, which
174+
// integrates well with the rest of the aarch64 infrastructure.
175+
self.move_shadow_sp_to_sp();
176+
166177
self.decrement_sp(bytes);
167178
Ok(())
168179
}

0 commit comments

Comments
 (0)