~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/arch/x86/um/setjmp_32.S

Version: ~ [ linux-6.11-rc3 ] ~ [ linux-6.10.4 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.45 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.104 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.164 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.223 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.281 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.319 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.9 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  1 /* SPDX-License-Identifier: GPL-2.0 */
  2 #
  3 # arch/i386/setjmp.S
  4 #
  5 # setjmp/longjmp for the i386 architecture
  6 #
  7 
  8 #
  9 # The jmp_buf is assumed to contain the following, in order:
 10 #       %ebx
 11 #       %esp
 12 #       %ebp
 13 #       %esi
 14 #       %edi
 15 #       <return address>
 16 #
 17 
 18         .text
 19         .align 4
 20         .globl kernel_setjmp
 21         .type kernel_setjmp, @function
 22 kernel_setjmp:
 23 #ifdef _REGPARM
 24         movl %eax,%edx
 25 #else
 26         movl 4(%esp),%edx
 27 #endif
 28         popl %ecx                       # Return address, and adjust the stack
 29         xorl %eax,%eax                  # Return value
 30         movl %ebx,(%edx)
 31         movl %esp,4(%edx)               # Post-return %esp!
 32         pushl %ecx                      # Make the call/return stack happy
 33         movl %ebp,8(%edx)
 34         movl %esi,12(%edx)
 35         movl %edi,16(%edx)
 36         movl %ecx,20(%edx)              # Return address
 37         RET
 38 
 39         .size kernel_setjmp,.-kernel_setjmp
 40 
 41         .text
 42         .align 4
 43         .globl kernel_longjmp
 44         .type kernel_longjmp, @function
 45 kernel_longjmp:
 46 #ifdef _REGPARM
 47         xchgl %eax,%edx
 48 #else
 49         movl 4(%esp),%edx               # jmp_ptr address
 50         movl 8(%esp),%eax               # Return value
 51 #endif
 52         movl (%edx),%ebx
 53         movl 4(%edx),%esp
 54         movl 8(%edx),%ebp
 55         movl 12(%edx),%esi
 56         movl 16(%edx),%edi
 57         jmp *20(%edx)
 58 
 59         .size kernel_longjmp,.-kernel_longjmp

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php