xref: /freebsd/sys/cddl/dev/dtrace/powerpc/regset.h (revision 29363fb446372cb3f10bc98664e9767c53fbb457)
1*c7570492SJustin Hibbits /*
2*c7570492SJustin Hibbits  * CDDL HEADER START
3*c7570492SJustin Hibbits  *
4*c7570492SJustin Hibbits  * The contents of this file are subject to the terms of the
5*c7570492SJustin Hibbits  * Common Development and Distribution License, Version 1.0 only
6*c7570492SJustin Hibbits  * (the "License").  You may not use this file except in compliance
7*c7570492SJustin Hibbits  * with the License.
8*c7570492SJustin Hibbits  *
9*c7570492SJustin Hibbits  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
10*c7570492SJustin Hibbits  * or http://www.opensolaris.org/os/licensing.
11*c7570492SJustin Hibbits  * See the License for the specific language governing permissions
12*c7570492SJustin Hibbits  * and limitations under the License.
13*c7570492SJustin Hibbits  *
14*c7570492SJustin Hibbits  * When distributing Covered Code, include this CDDL HEADER in each
15*c7570492SJustin Hibbits  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
16*c7570492SJustin Hibbits  * If applicable, add the following below this CDDL HEADER, with the
17*c7570492SJustin Hibbits  * fields enclosed by brackets "[]" replaced with your own identifying
18*c7570492SJustin Hibbits  * information: Portions Copyright [yyyy] [name of copyright owner]
19*c7570492SJustin Hibbits  *
20*c7570492SJustin Hibbits  * CDDL HEADER END
21*c7570492SJustin Hibbits  *
22*c7570492SJustin Hibbits  */
23*c7570492SJustin Hibbits /*
24*c7570492SJustin Hibbits  * Copyright 2004 Sun Microsystems, Inc.  All rights reserved.
25*c7570492SJustin Hibbits  * Use is subject to license terms.
26*c7570492SJustin Hibbits  */
27*c7570492SJustin Hibbits 
28*c7570492SJustin Hibbits /*	Copyright (c) 1990, 1991 UNIX System Laboratories, Inc. */
29*c7570492SJustin Hibbits 
30*c7570492SJustin Hibbits /*	Copyright (c) 1984, 1986, 1987, 1988, 1989 AT&T		*/
31*c7570492SJustin Hibbits /*	All Rights Reserved	*/
32*c7570492SJustin Hibbits 
33*c7570492SJustin Hibbits #ifndef	_REGSET_H
34*c7570492SJustin Hibbits #define	_REGSET_H
35*c7570492SJustin Hibbits 
36*c7570492SJustin Hibbits /*
37*c7570492SJustin Hibbits  */
38*c7570492SJustin Hibbits 
39*c7570492SJustin Hibbits #ifdef __cplusplus
40*c7570492SJustin Hibbits extern "C" {
41*c7570492SJustin Hibbits #endif
42*c7570492SJustin Hibbits 
43*c7570492SJustin Hibbits /*
44*c7570492SJustin Hibbits  * XXXDTRACE: define registers properly
45*c7570492SJustin Hibbits  */
46*c7570492SJustin Hibbits 
47*c7570492SJustin Hibbits #if 0
48*c7570492SJustin Hibbits #define REG_PC  PC
49*c7570492SJustin Hibbits #define REG_FP  EBP
50*c7570492SJustin Hibbits #define REG_SP  SP
51*c7570492SJustin Hibbits #define REG_PS  EFL
52*c7570492SJustin Hibbits #define REG_R0  EAX
53*c7570492SJustin Hibbits #define REG_R1  EDX
54*c7570492SJustin Hibbits #endif
55*c7570492SJustin Hibbits 
56*c7570492SJustin Hibbits #ifdef	__cplusplus
57*c7570492SJustin Hibbits }
58*c7570492SJustin Hibbits #endif
59*c7570492SJustin Hibbits 
60*c7570492SJustin Hibbits #endif	/* _REGSET_H */
61*c7570492SJustin Hibbits 
62