blob: 390189f2f566165c890a619f71863433617d5c76 [file] [log] [blame]
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001/****************************************************************************
2 ****************************************************************************
3 ***
4 *** This header was automatically generated from a Linux kernel header
5 *** of the same name, to make information necessary for userspace to
6 *** call into the kernel available to libc. It contains only constants,
7 *** structures, and macros generated from the original header, and thus,
8 *** contains no copyrightable information.
9 ***
Ben Cheng654325d2012-03-07 21:13:49 -080010 *** To edit the content of this header, modify the corresponding
11 *** source file (e.g. under external/kernel-headers/original/) then
12 *** run bionic/libc/kernel/tools/update_all.py
13 ***
14 *** Any manual change here will be lost the next time this script will
15 *** be run. You've been warned!
16 ***
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080017 ****************************************************************************
18 ****************************************************************************/
19#ifndef _ASM_X86_SIGCONTEXT_H
20#define _ASM_X86_SIGCONTEXT_H
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080021#include <linux/compiler.h>
22#include <asm/types.h>
Ben Cheng654325d2012-03-07 21:13:49 -080023/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080024struct _fpreg {
25 unsigned short significand[4];
26 unsigned short exponent;
27};
Andrew Hsieh126601d2012-03-23 23:07:36 +080028/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080029struct _fpxreg {
30 unsigned short significand[4];
31 unsigned short exponent;
32 unsigned short padding[3];
Andrew Hsieh126601d2012-03-23 23:07:36 +080033/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080034};
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080035struct _xmmreg {
36 unsigned long element[4];
37};
Andrew Hsieh126601d2012-03-23 23:07:36 +080038/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080039struct _fpstate {
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080040 unsigned long cw;
41 unsigned long sw;
42 unsigned long tag;
Andrew Hsieh126601d2012-03-23 23:07:36 +080043/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080044 unsigned long ipoff;
45 unsigned long cssel;
46 unsigned long dataoff;
47 unsigned long datasel;
Andrew Hsieh126601d2012-03-23 23:07:36 +080048/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080049 struct _fpreg _st[8];
50 unsigned short status;
51 unsigned short magic;
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080052 unsigned long _fxsr_env[6];
Andrew Hsieh126601d2012-03-23 23:07:36 +080053/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080054 unsigned long mxcsr;
55 unsigned long reserved;
56 struct _fpxreg _fxsr_st[8];
57 struct _xmmreg _xmm[8];
Andrew Hsieh126601d2012-03-23 23:07:36 +080058/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080059 unsigned long padding[56];
60};
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080061#define X86_FXSR_MAGIC 0x0000
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080062struct sigcontext {
Andrew Hsieh126601d2012-03-23 23:07:36 +080063/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080064 unsigned short gs, __gsh;
65 unsigned short fs, __fsh;
66 unsigned short es, __esh;
67 unsigned short ds, __dsh;
Andrew Hsieh126601d2012-03-23 23:07:36 +080068/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080069 unsigned long edi;
70 unsigned long esi;
71 unsigned long ebp;
72 unsigned long esp;
Andrew Hsieh126601d2012-03-23 23:07:36 +080073/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080074 unsigned long ebx;
75 unsigned long edx;
76 unsigned long ecx;
77 unsigned long eax;
Andrew Hsieh126601d2012-03-23 23:07:36 +080078/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080079 unsigned long trapno;
80 unsigned long err;
81 unsigned long eip;
82 unsigned short cs, __csh;
Andrew Hsieh126601d2012-03-23 23:07:36 +080083/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080084 unsigned long eflags;
85 unsigned long esp_at_signal;
86 unsigned short ss, __ssh;
87 struct _fpstate __user * fpstate;
Andrew Hsieh126601d2012-03-23 23:07:36 +080088/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080089 unsigned long oldmask;
90 unsigned long cr2;
91};
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080092#endif
Andrew Hsieh126601d2012-03-23 23:07:36 +080093/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */