The Event Register for a PE is set by any of the following:
In ARMv8-A A64, the WFE instruction is unconditional. So I think there are two typical ways to implement the lock function, with or without SEVL.
The first way (without SEVL) is:
func spin_lock
MOV w2, #1
loop:
LDXR w1, [x0]
CBNZ w1, sleep
STXR w1, w2, [x0]
CBZ w1, end
B loop
sleep:
WFE
B loop
end:
ret
endfunc spin_lock
The second way (with SEVL) is:
func spin_lock
MOV w2, #1
SEVL
l1:
WFE
l2:
LDXR w1, [x0]
CBNZ w1, l1
STXR w1, w2, [x0]
CBNZ w1, l2
RET
endfunc spin_lock
As the first way listed above, I think the lock function will still work fine with just WFE. Therefore, I still don't understand why ARM designed it. Maybe it can be used for efficiency or other scenarios.