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