The first commit of a series of 6 commits for the amd64 port.
[dragonfly.git] / sys / cpu / amd64 / include / frame.h
1 /*-
2  * Copyright (c) 2003 Peter Wemm.
3  * Copyright (c) 1990 The Regents of the University of California.
4  * All rights reserved.
5  *
6  * This code is derived from software contributed to Berkeley by
7  * William Jolitz.
8  *
9  * Redistribution and use in source and binary forms, with or without
10  * modification, are permitted provided that the following conditions
11  * are met:
12  * 1. Redistributions of source code must retain the above copyright
13  *    notice, this list of conditions and the following disclaimer.
14  * 2. Redistributions in binary form must reproduce the above copyright
15  *    notice, this list of conditions and the following disclaimer in the
16  *    documentation and/or other materials provided with the distribution.
17  * 3. All advertising materials mentioning features or use of this software
18  *    must display the following acknowledgement:
19  *      This product includes software developed by the University of
20  *      California, Berkeley and its contributors.
21  * 4. Neither the name of the University nor the names of its contributors
22  *    may be used to endorse or promote products derived from this software
23  *    without specific prior written permission.
24  *
25  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
26  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
27  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
28  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
29  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
30  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
31  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
32  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
33  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
34  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
35  * SUCH DAMAGE.
36  *
37  *      from: @(#)frame.h       5.2 (Berkeley) 1/18/91
38  * $FreeBSD: src/sys/amd64/include/frame.h,v 1.26 2003/11/08 04:39:22 peter Exp $
39  * $DragonFly: src/sys/cpu/amd64/include/frame.h,v 1.1 2007/08/21 19:40:24 corecode Exp $
40  */
41
42 #ifndef _CPU_FRAME_H_
43 #define _CPU_FRAME_H_
44
45 /*
46  * System stack frames.
47  */
48
49 /*
50  * Exception/Trap Stack Frame
51  *
52  * The ordering of this is specifically so that we can take first 6
53  * the syscall arguments directly from the beginning of the frame.
54  */
55
56 struct trapframe {
57         /* fs XXX */
58         /* es XXX */
59         /* ds XXX */
60         register_t      tf_rdi;
61         register_t      tf_rsi;
62         register_t      tf_rdx;
63         register_t      tf_rcx;
64         register_t      tf_r8;
65         register_t      tf_r9;
66         register_t      tf_rax;
67         register_t      tf_rbx;
68         register_t      tf_rbp;
69         register_t      tf_r10;
70         register_t      tf_r11;
71         register_t      tf_r12;
72         register_t      tf_r13;
73         register_t      tf_r14;
74         register_t      tf_r15;
75         register_t      tf_trapno;
76         register_t      tf_addr;
77         register_t      tf_flags;
78         /* below portion defined in hardware */
79         register_t      tf_err;
80         register_t      tf_rip;
81         register_t      tf_cs;
82         register_t      tf_rflags;
83         register_t      tf_rsp;
84         register_t      tf_ss;
85 };
86
87 /* Interrupt stack frame */
88
89 struct intrframe {
90         /* vec */
91         /* ppl */
92         /* fs XXX */
93         /* es XXX */
94         /* ds XXX */
95         register_t      if_rdi;
96         register_t      if_rsi;
97         register_t      if_rdx;
98         register_t      if_rcx;
99         register_t      if_r8;
100         register_t      if_r9;
101         register_t      if_rax;
102         register_t      if_rbx;
103         register_t      if_rbp;
104         register_t      if_r10;
105         register_t      if_r11;
106         register_t      if_r12;
107         register_t      if_r13;
108         register_t      if_r14;
109         register_t      if_r15;
110         register_t      :64;            /* compat with trap frame - trapno */
111         register_t      :64;            /* compat with trap frame - addr */
112         register_t      :64;            /* compat with trap frame - flags */
113         register_t      :64;            /* compat with trap frame - err */
114         /* below portion defined in hardware */
115         register_t      if_rip;
116         register_t      if_cs;
117         register_t      if_rflags;
118         register_t      if_rsp;
119         register_t      if_ss;
120 };
121
122 int     kdb_trap(int, int, struct trapframe *);
123
124 #endif /* _CPU_FRAME_H_ */