setjmp.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:2k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * Copyright (C) 1996 Paul Mackerras.
  3.  *
  4.  *      This program is free software; you can redistribute it and/or
  5.  *      modify it under the terms of the GNU General Public License
  6.  *      as published by the Free Software Foundation; either version
  7.  *      2 of the License, or (at your option) any later version.
  8.  *
  9.  * NB this file must be compiled with -O2.
  10.  */
  11. int
  12. xmon_setjmp(long *buf)  /* NOTE: assert(sizeof(buf) > 184) */
  13. {
  14. /* XXX should save fp regs as well */
  15. asm volatile (
  16. "mflr 0; std 0,0(%0)n
  17.  std 1,8(%0)n
  18.  std 2,16(%0)n
  19.  mfcr 0; std 0,24(%0)n
  20.  std 13,32(%0)n
  21.  std 14,40(%0)n
  22.  std 15,48(%0)n
  23.  std 16,56(%0)n
  24.  std 17,64(%0)n
  25.  std 18,72(%0)n
  26.  std 19,80(%0)n
  27.  std 20,88(%0)n
  28.  std 21,96(%0)n
  29.  std 22,104(%0)n
  30.  std 23,112(%0)n
  31.  std 24,120(%0)n
  32.  std 25,128(%0)n
  33.  std 26,136(%0)n
  34.  std 27,144(%0)n
  35.  std 28,152(%0)n
  36.  std 29,160(%0)n
  37.  std 30,168(%0)n
  38.  std 31,176(%0)n
  39.  " : : "r" (buf));
  40.     return 0;
  41. }
  42. void
  43. xmon_longjmp(long *buf, int val)
  44. {
  45. if (val == 0)
  46. val = 1;
  47. asm volatile (
  48. "ld 13,32(%0)n
  49.  ld 14,40(%0)n
  50.  ld 15,48(%0)n
  51.  ld 16,56(%0)n
  52.  ld 17,64(%0)n
  53.  ld 18,72(%0)n
  54.  ld 19,80(%0)n
  55.  ld 20,88(%0)n
  56.  ld 21,96(%0)n
  57.  ld 22,104(%0)n
  58.  ld 23,112(%0)n
  59.  ld 24,120(%0)n
  60.  ld 25,128(%0)n
  61.  ld 26,136(%0)n
  62.  ld 27,144(%0)n
  63.  ld 28,152(%0)n
  64.  ld 29,160(%0)n
  65.  ld 30,168(%0)n
  66.  ld 31,176(%0)n
  67.  ld 0,24(%0)n
  68.  mtcrf 0x38,0n
  69.  ld 0,0(%0)n
  70.  ld 1,8(%0)n
  71.  ld 2,16(%0)n
  72.  mtlr 0n
  73.  mr 3,%1n
  74.  " : : "r" (buf), "r" (val));
  75. }