diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2008-02-12 00:04:45 +0000 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2008-02-12 00:04:45 +0000 |
commit | 475a2301db23da20a59a59814f8b1a9eebce7855 (patch) | |
tree | 5a6d714e4f60447a7317b10e356ba4fece733b78 /opcodes/i386-opc.h | |
parent | 86ed6051f72836e8bac640770bb47b04571df758 (diff) | |
download | gdb-475a2301db23da20a59a59814f8b1a9eebce7855.zip gdb-475a2301db23da20a59a59814f8b1a9eebce7855.tar.gz gdb-475a2301db23da20a59a59814f8b1a9eebce7855.tar.bz2 |
gas/testsuite/
2002-02-11 H.J. Lu <hongjiu.lu@intel.com>
* gas/i386/i386.exp: Run xsave, xsave-intel, x86-64-xsave
and x86-64-xsave-intel.
* gas/i386/x86-64-xsave-intel.d: New file.
* gas/i386/x86-64-xsave.d: Likewise.
* gas/i386/x86-64-xsave.s: Likewise.
* gas/i386/xsave-intel.d: Likewise.
* gas/i386/xsave.d: Likewise.
* gas/i386/xsave.s: Likewise.
opcodes/
2008-02-11 H.J. Lu <hongjiu.lu@intel.com>
* i386-gen.c (cpu_flags): Add CpuXsave.
* i386-opc.h (CpuXsave): New.
(Cpu64): Updated.
(i386_cpu_flags): Add cpuxsave.
* i386-dis.c (MOD_0FAE_REG_4): New.
(RM_0F01_REG_2): Likewise.
(MOD_0FAE_REG_5): Updated.
(RM_0F01_REG_3): Likewise.
(reg_table): Use MOD_0FAE_REG_4.
(mod_table): Use RM_0F01_REG_2. Add MOD_0FAE_REG_4. Updated
for xrstor.
(rm_table): Add RM_0F01_REG_2.
* i386-opc.tbl: Add xsave, xrstor, xgetbv and xsetbv.
* i386-init.h: Regenerated.
* i386-tbl.h: Likewise.
Diffstat (limited to 'opcodes/i386-opc.h')
-rw-r--r-- | opcodes/i386-opc.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/opcodes/i386-opc.h b/opcodes/i386-opc.h index b8c5612..bbf2ff8 100644 --- a/opcodes/i386-opc.h +++ b/opcodes/i386-opc.h @@ -80,8 +80,10 @@ #define CpuSSE4_2 (CpuSSE4_1 + 1) /* SSE5 support required */ #define CpuSSE5 (CpuSSE4_2 + 1) +/* Xsave/xrstor New Instuctions support required */ +#define CpuXsave (CpuSSE5 + 1) /* 64bit support available, used by -march= in assembler. */ -#define CpuLM (CpuSSE5 + 1) +#define CpuLM (CpuXsave + 1) /* 64bit support required */ #define Cpu64 (CpuLM + 1) /* Not supported in the 64bit mode */ @@ -129,6 +131,7 @@ typedef union i386_cpu_flags unsigned int cpusse4_1:1; unsigned int cpusse4_2:1; unsigned int cpusse5:1; + unsigned int cpuxsave:1; unsigned int cpulm:1; unsigned int cpu64:1; unsigned int cpuno64:1; |