setjmp: optimize longjmp prologues

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.
This commit is contained in:
Alexander Monakov 2020-08-12 14:34:30 +03:00 committed by Rich Felker
parent 59b64ff686
commit 4554f155dd
3 changed files with 8 additions and 14 deletions

View file

@ -6,10 +6,8 @@ _longjmp:
longjmp: longjmp:
mov 4(%esp),%edx mov 4(%esp),%edx
mov 8(%esp),%eax mov 8(%esp),%eax
test %eax,%eax cmp $1,%eax
jnz 1f adc $0, %al
inc %eax
1:
mov (%edx),%ebx mov (%edx),%ebx
mov 4(%edx),%esi mov 4(%edx),%esi
mov 8(%edx),%edi mov 8(%edx),%edi

View file

@ -5,11 +5,9 @@
.type longjmp,@function .type longjmp,@function
_longjmp: _longjmp:
longjmp: longjmp:
mov %esi,%eax /* val will be longjmp return */ xor %eax,%eax
test %esi,%esi cmp $1,%esi /* CF = val ? 0 : 1 */
jnz 1f adc %esi,%eax /* eax = val + !val */
inc %eax /* if val==0, val=1 per longjmp semantics */
1:
mov (%rdi),%rbx /* rdi is the jmp_buf, restore regs from it */ mov (%rdi),%rbx /* rdi is the jmp_buf, restore regs from it */
mov 8(%rdi),%rbp mov 8(%rdi),%rbp
mov 16(%rdi),%r12 mov 16(%rdi),%r12

View file

@ -5,11 +5,9 @@
.type longjmp,@function .type longjmp,@function
_longjmp: _longjmp:
longjmp: longjmp:
mov %esi,%eax /* val will be longjmp return */ xor %eax,%eax
test %esi,%esi cmp $1,%esi /* CF = val ? 0 : 1 */
jnz 1f adc %esi,%eax /* eax = val + !val */
inc %eax /* if val==0, val=1 per longjmp semantics */
1:
mov (%rdi),%rbx /* rdi is the jmp_buf, restore regs from it */ mov (%rdi),%rbx /* rdi is the jmp_buf, restore regs from it */
mov 8(%rdi),%rbp mov 8(%rdi),%rbp
mov 16(%rdi),%r12 mov 16(%rdi),%r12