diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2006-11-08 19:56:02 +0000 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2006-11-08 19:56:02 +0000 |
commit | b7d9ef3748b9726f59df95eae857417166cc0fde (patch) | |
tree | 6440115f50292392b3344d0b460f64ae29ea6e08 /gas | |
parent | 3c9f59e48f6ec6d7598dd566c522709c58022e2b (diff) | |
download | gdb-b7d9ef3748b9726f59df95eae857417166cc0fde.zip gdb-b7d9ef3748b9726f59df95eae857417166cc0fde.tar.gz gdb-b7d9ef3748b9726f59df95eae857417166cc0fde.tar.bz2 |
gas/
2006-11-08 H.J. Lu <hongjiu.lu@intel.com>
* config/tc-i386.h (CpuPNI): Removed.
(CpuUnknownFlags): Replace CpuPNI with CpuSSE3.
* config/tc-i386.c (md_assemble): Likewise.
include/opcode/
2006-11-08 H.J. Lu <hongjiu.lu@intel.com>
* i386.h (i386_optab): Replace CpuPNI with CpuSSE3.
Diffstat (limited to 'gas')
-rw-r--r-- | gas/ChangeLog | 6 | ||||
-rw-r--r-- | gas/config/tc-i386.c | 4 | ||||
-rw-r--r-- | gas/config/tc-i386.h | 3 |
3 files changed, 9 insertions, 4 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index cfdef05..92cbfcd 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,9 @@ +2006-11-08 H.J. Lu <hongjiu.lu@intel.com> + + * config/tc-i386.h (CpuPNI): Removed. + (CpuUnknownFlags): Replace CpuPNI with CpuSSE3. + * config/tc-i386.c (md_assemble): Likewise. + 2006-11-08 Alan Modra <amodra@bigpond.net.au> * symbols.c (symbol_create, symbol_clone): Don't set udata.p. diff --git a/gas/config/tc-i386.c b/gas/config/tc-i386.c index 758fb22..767e7e3 100644 --- a/gas/config/tc-i386.c +++ b/gas/config/tc-i386.c @@ -1854,9 +1854,9 @@ md_assemble (line) { expressionS *exp; - if ((i.tm.cpu_flags & CpuPNI) && i.operands > 0) + if ((i.tm.cpu_flags & CpuSSE3) && i.operands > 0) { - /* These Intel Prescott New Instructions have the fixed + /* Streaming SIMD extensions 3 Instructions have the fixed operands with an opcode suffix which is coded in the same place as an 8-bit immediate field would be. Here we check those operands and remove them afterwards. */ diff --git a/gas/config/tc-i386.h b/gas/config/tc-i386.h index d0893f9..0d42e1b 100644 --- a/gas/config/tc-i386.h +++ b/gas/config/tc-i386.h @@ -183,7 +183,6 @@ typedef struct #define Cpu3dnow 0x2000 /* 3dnow! support required */ #define Cpu3dnowA 0x4000 /* 3dnow!Extensions support required */ #define CpuSSE3 0x8000 /* Streaming SIMD extensions 3 required */ -#define CpuPNI CpuSSE3 /* Prescott New Instructions required */ #define CpuPadLock 0x10000 /* VIA PadLock required */ #define CpuSVME 0x20000 /* AMD Secure Virtual Machine Ext-s required */ #define CpuVMX 0x40000 /* VMX Instructions required */ @@ -197,7 +196,7 @@ typedef struct /* The default value for unknown CPUs - enable all features to avoid problems. */ #define CpuUnknownFlags (Cpu186|Cpu286|Cpu386|Cpu486|Cpu586|Cpu686 \ - |CpuP4|CpuSledgehammer|CpuMMX|CpuMMX2|CpuSSE|CpuSSE2|CpuPNI|CpuVMX \ + |CpuP4|CpuSledgehammer|CpuMMX|CpuMMX2|CpuSSE|CpuSSE2|CpuSSE3|CpuVMX \ |Cpu3dnow|Cpu3dnowA|CpuK6|CpuPadLock|CpuSVME|CpuSSSE3|CpuABM|CpuSSE4a) /* the bits in opcode_modifier are used to generate the final opcode from |