1233409Sgonzo/*
2233409Sgonzo * CDDL HEADER START
3233409Sgonzo *
4233409Sgonzo * The contents of this file are subject to the terms of the
5233409Sgonzo * Common Development and Distribution License, Version 1.0 only
6233409Sgonzo * (the "License").  You may not use this file except in compliance
7233409Sgonzo * with the License.
8233409Sgonzo *
9233409Sgonzo * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
10233409Sgonzo * or http://www.opensolaris.org/os/licensing.
11233409Sgonzo * See the License for the specific language governing permissions
12233409Sgonzo * and limitations under the License.
13233409Sgonzo *
14233409Sgonzo * When distributing Covered Code, include this CDDL HEADER in each
15233409Sgonzo * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
16233409Sgonzo * If applicable, add the following below this CDDL HEADER, with the
17233409Sgonzo * fields enclosed by brackets "[]" replaced with your own identifying
18233409Sgonzo * information: Portions Copyright [yyyy] [name of copyright owner]
19233409Sgonzo *
20233409Sgonzo * CDDL HEADER END
21233409Sgonzo *
22233409Sgonzo * $FreeBSD: releng/11.0/sys/cddl/dev/dtrace/mips/regset.h 233409 2012-03-24 05:14:37Z gonzo $
23233409Sgonzo */
24233409Sgonzo/*
25233409Sgonzo * Copyright 2004 Sun Microsystems, Inc.  All rights reserved.
26233409Sgonzo * Use is subject to license terms.
27233409Sgonzo */
28233409Sgonzo
29233409Sgonzo/*	Copyright (c) 1990, 1991 UNIX System Laboratories, Inc. */
30233409Sgonzo
31233409Sgonzo/*	Copyright (c) 1984, 1986, 1987, 1988, 1989 AT&T		*/
32233409Sgonzo/*	All Rights Reserved	*/
33233409Sgonzo
34233409Sgonzo#ifndef	_REGSET_H
35233409Sgonzo#define	_REGSET_H
36233409Sgonzo
37233409Sgonzo/*
38233409Sgonzo * #pragma ident	"@(#)regset.h	1.11	05/06/08 SMI"
39233409Sgonzo */
40233409Sgonzo
41233409Sgonzo#ifdef __cplusplus
42233409Sgonzoextern "C" {
43233409Sgonzo#endif
44233409Sgonzo
45233409Sgonzo/*
46233409Sgonzo * XXXDTRACE: define registers properly
47233409Sgonzo */
48233409Sgonzo
49233409Sgonzo#if 0
50233409Sgonzo#define REG_PC  PC
51233409Sgonzo#define REG_FP  EBP
52233409Sgonzo#define REG_SP  SP
53233409Sgonzo#define REG_PS  EFL
54233409Sgonzo#define REG_R0  EAX
55233409Sgonzo#define REG_R1  EDX
56233409Sgonzo#endif
57233409Sgonzo
58233409Sgonzo#ifdef	__cplusplus
59233409Sgonzo}
60233409Sgonzo#endif
61233409Sgonzo
62233409Sgonzo#endif	/* _REGSET_H */
63