home *** CD-ROM | disk | FTP | other *** search
/ Il CD di internet / CD.iso / SOURCE / D / LIBC / LIBC-4.6 / LIBC-4 / libc-linux / sysdeps / i386 / setjmp / __longjmp.c next >
Encoding:
C/C++ Source or Header  |  1994-08-23  |  1.9 KB  |  80 lines

  1. /* Copyright (C) 1991, 1992 Free Software Foundation, Inc.
  2. This file is part of the GNU C Library.
  3.  
  4. The GNU C Library is free software; you can redistribute it and/or
  5. modify it under the terms of the GNU Library General Public License as
  6. published by the Free Software Foundation; either version 2 of the
  7. License, or (at your option) any later version.
  8.  
  9. The GNU C Library is distributed in the hope that it will be useful,
  10. but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  12. Library General Public License for more details.
  13.  
  14. You should have received a copy of the GNU Library General Public
  15. License along with the GNU C Library; see the file COPYING.LIB.  If
  16. not, write to the Free Software Foundation, Inc., 675 Mass Ave,
  17. Cambridge, MA 02139, USA.  */
  18.  
  19. #include <ansidecl.h>
  20. #include <errno.h>
  21. #include <setjmp.h>
  22. #include <stdlib.h>
  23.  
  24.  
  25. #ifndef    __GNUC__
  26.   #error This file uses GNU C extensions; you must compile with GCC.
  27. #endif
  28.  
  29.  
  30. #define REGS \
  31.   REG (bx);\
  32.   REG (si);\
  33.   REG (di);\
  34.   REG (bp);\
  35.   REG (sp)
  36.  
  37. #ifndef linux
  38. #define REG(xx) register long int xx asm (#xx)
  39. REGS;
  40. #undef    REG
  41. #endif
  42.  
  43. /* Jump to the position specified by ENV, causing the
  44.    setjmp call there to return VAL, or 1 if VAL is 0.  */
  45. void
  46. DEFUN(__longjmp, (env, val),
  47.       CONST jmp_buf env AND
  48.       int val)
  49. {
  50.   /* We specify explicit registers because, when not optimizing,
  51.      the compiler will generate code that uses the frame pointer
  52.      after it's been munged.  */
  53.  
  54.   register CONST __typeof (env[0]) *e asm ("cx");
  55.   register int v asm ("ax");
  56.  
  57.   e = env;
  58.   v = val == 0 ? 1 : val;
  59.  
  60. #ifdef linux
  61. #define REG(xx) asm volatile ("movl %0,%%e" #xx : : \
  62.         "m" ((long int) (e->__##xx)))
  63. #else
  64. #define    REG(xx)    xx = (long int) e->__##xx
  65. #endif
  66.   REGS;
  67.  
  68.   asm volatile ("jmp %*%0" : : "g" (e->__pc), "a" (v));
  69.  
  70.   /* NOTREACHED */
  71.   abort ();
  72. }
  73.  
  74.  
  75.  
  76. #include <gnu-stabs.h>
  77. #ifdef elf_alias
  78. elf_alias (__longjmp, longjmp);
  79. #endif
  80.