2012-07-02 21:47:06 +04:00
|
|
|
/*
|
|
|
|
* Copyright 2002-2009, Axel Dörfler, axeld@pinc-software.de.
|
|
|
|
* Distributed under the terms of the MIT License.
|
|
|
|
*
|
|
|
|
* Copyright 2001-2002, Travis Geiselbrecht. All rights reserved.
|
|
|
|
* Distributed under the terms of the NewOS License.
|
|
|
|
*/
|
|
|
|
#ifndef _KERNEL_ARCH_X86_32_IFRAME_H
|
|
|
|
#define _KERNEL_ARCH_X86_32_IFRAME_H
|
|
|
|
|
|
|
|
|
|
|
|
struct iframe {
|
|
|
|
uint32 type; // iframe type
|
|
|
|
uint32 gs;
|
|
|
|
uint32 fs;
|
|
|
|
uint32 es;
|
|
|
|
uint32 ds;
|
2012-07-09 19:43:01 +04:00
|
|
|
uint32 di;
|
|
|
|
uint32 si;
|
|
|
|
uint32 bp;
|
|
|
|
uint32 sp;
|
|
|
|
uint32 bx;
|
|
|
|
uint32 dx;
|
|
|
|
uint32 cx;
|
|
|
|
uint32 ax;
|
2012-07-02 21:47:06 +04:00
|
|
|
uint32 orig_eax;
|
|
|
|
uint32 orig_edx;
|
|
|
|
uint32 vector;
|
|
|
|
uint32 error_code;
|
2012-07-09 19:43:01 +04:00
|
|
|
uint32 ip;
|
2012-07-02 21:47:06 +04:00
|
|
|
uint32 cs;
|
|
|
|
uint32 flags;
|
|
|
|
|
2012-07-09 19:43:01 +04:00
|
|
|
// user_sp and user_ss are only present when the iframe is a userland
|
2012-07-02 21:47:06 +04:00
|
|
|
// iframe (IFRAME_IS_USER()). A kernel iframe is shorter.
|
2012-07-09 19:43:01 +04:00
|
|
|
uint32 user_sp;
|
2012-07-02 21:47:06 +04:00
|
|
|
uint32 user_ss;
|
|
|
|
};
|
|
|
|
|
2013-12-17 05:55:22 +04:00
|
|
|
#define IFRAME_IS_USER(f) ((f)->cs == USER_CODE_SELECTOR \
|
2012-07-02 21:47:06 +04:00
|
|
|
|| ((f)->flags & 0x20000) != 0)
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* _KERNEL_ARCH_X86_32_IFRAME_H */
|