setjmp.h 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. /* Define the machine-dependent type `jmp_buf'. Alpha version.
  2. Copyright (C) 1992,1997,2003,2005,2006 Free Software Foundation, Inc.
  3. This file is part of the GNU C Library.
  4. The GNU C Library is free software; you can redistribute it and/or
  5. modify it under the terms of the GNU Lesser General Public
  6. License as published by the Free Software Foundation; either
  7. version 2.1 of the License, or (at your option) any later version.
  8. The GNU C Library is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  11. Lesser General Public License for more details.
  12. You should have received a copy of the GNU Lesser General Public
  13. License along with the GNU C Library; if not, see
  14. <http://www.gnu.org/licenses/>. */
  15. #ifndef _BITS_SETJMP_H
  16. #define _BITS_SETJMP_H 1
  17. #if !defined _SETJMP_H && !defined _PTHREAD_H
  18. # error "Never include <bits/setjmp.h> directly; use <setjmp.h> instead."
  19. #endif
  20. /* The previous bits/setjmp.h had __jmp_buf defined as a structure.
  21. We use an array of 'long int' instead, to make writing the
  22. assembler easier. Naturally, user code should not depend on
  23. either representation. */
  24. /*
  25. * Integer registers:
  26. * $0 is the return value (va);
  27. * $1-$8, $22-$25, $28 are call-used (t0-t7, t8-t11, at);
  28. * $9-$14 we save here (s0-s5);
  29. * $15 is the FP and we save it here (fp or s6);
  30. * $16-$21 are input arguments (call-used) (a0-a5);
  31. * $26 is the return PC and we save it here (ra);
  32. * $27 is the procedure value (i.e., the address of __setjmp) (pv or t12);
  33. * $29 is the global pointer, which the caller will reconstruct
  34. * from the return address restored in $26 (gp);
  35. * $30 is the stack pointer and we save it here (sp);
  36. * $31 is always zero (zero).
  37. *
  38. * Floating-point registers:
  39. * $f0 is the floating return value;
  40. * $f1, $f10-$f15, $f22-$f30 are call-used;
  41. * $f2-$f9 we save here;
  42. * $f16-$21 are input args (call-used);
  43. * $f31 is always zero.
  44. *
  45. * Note that even on Alpha hardware that does not have an FPU (there
  46. * isn't such a thing currently) it is required to implement the FP
  47. * registers.
  48. */
  49. typedef long int __jmp_buf[17];
  50. #endif /* bits/setjmp.h */