about summary refs log tree commit diff
path: root/src/setjmp/x32
Commit message (Collapse)AuthorAgeFilesLines
* setjmp: optimize longjmp prologuesAlexander Monakov2020-08-121-5/+3
| | | | | Use a branchless sequence that is one byte shorter on 64-bit, same size on 32-bit. Thanks to Pete Cawley for suggesting this variant.
* setjmp: optimize x86 longjmp epiloguesAlexander Monakov2020-08-111-4/+2
|
* setjmp: avoid useless REX-prefix on xor %eax, %eaxAlexander Monakov2020-08-111-1/+1
|
* setjmp: fix x86-64 longjmp argument adjustmentAlexander Monakov2020-08-111-3/+3
| | | | | | | | | | | | | | | | | longjmp 'val' argument is an int, but the assembly is referencing 64-bit registers as if the argument was a long, or the caller was responsible for extending the argument. Though the psABI is not clear on this, the interpretation in GCC is that high bits may be arbitrary and the callee is responsible for sign/zero-extending the value as needed (likewise for return values: callers must anticipate that high bits may be garbage). Therefore testing %rax is a functional bug: setjmp would wrongly return zero if longjmp was called with val==0, but high bits of %rsi happened to be non-zero. Rewrite the prologue to refer to 32-bit registers. In passing, change 'test' to use %rsi, as there's no advantage to using %rax and the new form is cheaper on processors that do not perform move elimination.
* import vanilla x86_64 code as x32rofl0r2014-02-232-0/+44