xref: /freebsd/sys/x86/include/stack.h (revision 95ee2897e98f5d444f26ed2334cc7c439f9c16c6)
14db79febSMark Johnston /*-
24db79febSMark Johnston  * Mach Operating System
34db79febSMark Johnston  * Copyright (c) 1991,1990 Carnegie Mellon University
44db79febSMark Johnston  * All Rights Reserved.
54db79febSMark Johnston  *
64db79febSMark Johnston  * Permission to use, copy, modify and distribute this software and its
74db79febSMark Johnston  * documentation is hereby granted, provided that both the copyright
84db79febSMark Johnston  * notice and this permission notice appear in all copies of the
94db79febSMark Johnston  * software, derivative works or modified versions, and any portions
104db79febSMark Johnston  * thereof, and that both notices appear in supporting documentation.
114db79febSMark Johnston  *
124db79febSMark Johnston  * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS
134db79febSMark Johnston  * CONDITION.  CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND FOR
144db79febSMark Johnston  * ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
154db79febSMark Johnston  *
164db79febSMark Johnston  * Carnegie Mellon requests users of this software to return to
174db79febSMark Johnston  *
184db79febSMark Johnston  *  Software Distribution Coordinator  or  Software.Distribution@CS.CMU.EDU
194db79febSMark Johnston  *  School of Computer Science
204db79febSMark Johnston  *  Carnegie Mellon University
214db79febSMark Johnston  *  Pittsburgh PA 15213-3890
224db79febSMark Johnston  *
234db79febSMark Johnston  * any improvements or extensions that they make and grant Carnegie the
244db79febSMark Johnston  * rights to redistribute these changes.
254db79febSMark Johnston  */
264db79febSMark Johnston 
274db79febSMark Johnston #ifndef _X86_STACK_H
284db79febSMark Johnston #define	_X86_STACK_H
294db79febSMark Johnston 
304db79febSMark Johnston /*
314db79febSMark Johnston  * Stack trace.
324db79febSMark Johnston  */
334db79febSMark Johnston 
344db79febSMark Johnston #ifdef __i386__
354db79febSMark Johnston struct i386_frame {
364db79febSMark Johnston 	struct i386_frame	*f_frame;
374db79febSMark Johnston 	u_int			f_retaddr;
384db79febSMark Johnston 	u_int			f_arg0;
394db79febSMark Johnston };
404db79febSMark Johnston #endif
414db79febSMark Johnston 
424db79febSMark Johnston #ifdef __amd64__
434db79febSMark Johnston struct amd64_frame {
444db79febSMark Johnston 	struct amd64_frame	*f_frame;
454db79febSMark Johnston 	u_long			f_retaddr;
464db79febSMark Johnston };
474db79febSMark Johnston 
484db79febSMark Johnston struct i386_frame {
494db79febSMark Johnston 	uint32_t		f_frame;
504db79febSMark Johnston 	uint32_t		f_retaddr;
514db79febSMark Johnston 	uint32_t		f_arg0;
524db79febSMark Johnston };
534db79febSMark Johnston #endif /* __amd64__ */
544db79febSMark Johnston 
55610141ceSMark Johnston #ifdef _KERNEL
56*1c29da02SMark Johnston void	stack_capture_intr(void);
57610141ceSMark Johnston #endif
58610141ceSMark Johnston 
594db79febSMark Johnston #endif /* !_X86_STACK_H */
60