2 * Copyright (C) 1996 Paul Mackerras.
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.
9 * NB this file must be compiled with -O2.
13 xmon_setjmp(long *buf
) /* NOTE: assert(sizeof(buf) > 184) */
15 /* XXX should save fp regs as well */
17 "mflr 0; std 0,0(%0)\n\
20 mfcr 0; std 0,24(%0)\n\
45 xmon_longjmp(long *buf
, int val
)
76 " : : "r" (buf
), "r" (val
));