home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Source Code 1993 July / THE_SOURCE_CODE_CD_ROM.iso / gnu / glibc-1.06 / sysdeps / i386 / __longjmp.c next >
Encoding:
C/C++ Source or Header  |  1992-04-07  |  1.7 KB  |  67 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. #define REG(xx) register long int xx asm (#xx)
  38. REGS;
  39. #undef    REG
  40.  
  41. /* Jump to the position specified by ENV, causing the
  42.    setjmp call there to return VAL, or 1 if VAL is 0.  */
  43. __NORETURN
  44. void
  45. DEFUN(__longjmp, (env, val),
  46.       CONST jmp_buf env AND
  47.       int val)
  48. {
  49.   /* We specify explicit registers because, when not optimizing,
  50.      the compiler will generate code that uses the frame pointer
  51.      after it's been munged.  */
  52.  
  53.   register CONST __typeof (env[0]) *e asm ("cx");
  54.   register int v asm ("ax");
  55.  
  56.   e = env;
  57.   v = val == 0 ? 1 : val;
  58.  
  59. #define    REG(xx)    xx = (long int) e->__##xx
  60.   REGS;
  61.  
  62.   asm volatile ("jmp %*%0" : : "g" (e->__pc), "a" (v));
  63.  
  64.   /* NOTREACHED */
  65.   abort ();
  66. }
  67.