-
-/*
- * This defines the state saved before entry into compatibility mode.
- * The machine state is pushed automatically and the compat state is
- * synthethized in the exception handling code.
- */
-struct x86_saved_state_compat32 {
- struct x86_saved_state32_tagged iss32;
-#if defined(__LP64__) && defined(KERNEL)
-#else
- uint32_t pad_for_16byte_alignment[2];
-#endif
- struct x86_64_intr_stack_frame isf64;
-};
-typedef struct x86_saved_state_compat32 x86_saved_state_compat32_t;
-
-struct x86_sframe_compat32 {
- struct x86_64_intr_stack_frame slf;
-#if defined(__LP64__) && defined(KERNEL)
-#else
- uint32_t pad_for_16byte_alignment[2];
-#endif
- struct x86_saved_state_compat32 ssf;
- uint32_t empty[4];
-};
-typedef struct x86_sframe_compat32 x86_sframe_compat32_t;