00001 /* 00002 * Copyright (c) 2000, 2001, 2002, 2003, 2004, 2005, 2008, 2009 00003 * The President and Fellows of Harvard College. 00004 * 00005 * Redistribution and use in source and binary forms, with or without 00006 * modification, are permitted provided that the following conditions 00007 * are met: 00008 * 1. Redistributions of source code must retain the above copyright 00009 * notice, this list of conditions and the following disclaimer. 00010 * 2. Redistributions in binary form must reproduce the above copyright 00011 * notice, this list of conditions and the following disclaimer in the 00012 * documentation and/or other materials provided with the distribution. 00013 * 3. Neither the name of the University nor the names of its contributors 00014 * may be used to endorse or promote products derived from this software 00015 * without specific prior written permission. 00016 * 00017 * THIS SOFTWARE IS PROVIDED BY THE UNIVERSITY AND CONTRIBUTORS ``AS IS'' AND 00018 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 00019 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 00020 * ARE DISCLAIMED. IN NO EVENT SHALL THE UNIVERSITY OR CONTRIBUTORS BE LIABLE 00021 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 00022 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 00023 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 00024 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 00025 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 00026 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 00027 * SUCH DAMAGE. 00028 */ 00029 00030 /* 00031 * Macros for general-purpose register numbers for MIPS. 00032 * 00033 * Exported to userlevel because it's ~standard for that architecture. 00034 */ 00035 00036 #ifndef _KERN_MIPS_REGDEFS_H_ 00037 #define _KERN_MIPS_REGDEFS_H_ 00038 00039 00040 #define z0 $0 /* always zero register */ 00041 #define AT $1 /* assembler temp register */ 00042 #define v0 $2 /* value 0 */ 00043 #define v1 $3 /* value 1 */ 00044 #define a0 $4 /* argument 0 */ 00045 #define a1 $5 /* argument 1 */ 00046 #define a2 $6 /* argument 2 */ 00047 #define a3 $7 /* argument 3 */ 00048 #define t0 $8 /* temporary (caller-save) 0 */ 00049 #define t1 $9 /* temporary (caller-save) 1 */ 00050 #define t2 $10 /* temporary (caller-save) 2 */ 00051 #define t3 $11 /* temporary (caller-save) 3 */ 00052 #define t4 $12 /* temporary (caller-save) 4 */ 00053 #define t5 $13 /* temporary (caller-save) 5 */ 00054 #define t6 $14 /* temporary (caller-save) 6 */ 00055 #define t7 $15 /* temporary (caller-save) 7 */ 00056 #define s0 $16 /* saved (callee-save) 0 */ 00057 #define s1 $17 /* saved (callee-save) 1 */ 00058 #define s2 $18 /* saved (callee-save) 2 */ 00059 #define s3 $19 /* saved (callee-save) 3 */ 00060 #define s4 $20 /* saved (callee-save) 4 */ 00061 #define s5 $21 /* saved (callee-save) 5 */ 00062 #define s6 $22 /* saved (callee-save) 6 */ 00063 #define s7 $23 /* saved (callee-save) 7 */ 00064 #define t8 $24 /* temporary (caller-save) 8 */ 00065 #define t9 $25 /* temporary (caller-save) 9 */ 00066 #define k0 $26 /* kernel temporary 0 */ 00067 #define k1 $27 /* kernel temporary 1 */ 00068 #define gp $28 /* global pointer */ 00069 #define sp $29 /* stack pointer */ 00070 #define s8 $30 /* saved (callee-save) 8 = frame pointer */ 00071 #define ra $31 /* return address */ 00072 00073 00074 #endif /* _KERN_MIPS_REGDEFS_H_ */