1 /* Copyright (C) 1997, 1998, 2002, 2003, 2004 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
3 Contributed by Ralf Baechle <ralf@gnu.org>.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library. If not, see
17 <http://www.gnu.org/licenses/>. */
25 * Symbolic register names for 32 bit ABI
27 #define zero $0 /* wired zero */
28 #define AT $1 /* assembler temp - uppercase because of ".set at" */
29 #define v0 $2 /* return value */
31 #define a0 $4 /* argument registers */
35 #if _MIPS_SIM != _ABIO32
48 #else /* if _MIPS_SIM == _ABIO32 */
49 #define t0 $8 /* caller saved */
61 #endif /* _MIPS_SIM == _ABIO32 */
62 #define s0 $16 /* callee saved */
70 #define t8 $24 /* caller saved */
72 #define jp $25 /* PIC jump register */
73 #define k0 $26 /* kernel scratch */
75 #define gp $28 /* global pointer */
76 #define sp $29 /* stack pointer */
77 #define fp $30 /* frame pointer */
78 #define s8 $30 /* same like fp! */
79 #define ra $31 /* return address */
81 #endif /* _SYS_REGDEF_H */