diff options
author | Jan Beulich <jbeulich@suse.com> | 2019-11-12 09:09:31 +0100 |
---|---|---|
committer | Jan Beulich <jbeulich@suse.com> | 2019-11-12 09:09:31 +0100 |
commit | 51c8edf68bf1e16c6d05fbb31a36e0cc436a9750 (patch) | |
tree | ca465dc8565167792ae44eb3f95b338720c813e0 /gas/ChangeLog | |
parent | 474da251bf92a11a08583080af77fa197570767f (diff) | |
download | fsf-binutils-gdb-51c8edf68bf1e16c6d05fbb31a36e0cc436a9750.zip fsf-binutils-gdb-51c8edf68bf1e16c6d05fbb31a36e0cc436a9750.tar.gz fsf-binutils-gdb-51c8edf68bf1e16c6d05fbb31a36e0cc436a9750.tar.bz2 |
x86: fold EsSeg into IsString
EsSeg (a per-operand bit) is used with IsString (a per-insn attribute)
only. Extend the attribute to 2 bits, thus allowing to encode
- not a string insn,
- string insn with neither operand requiring use of %es:,
- string insn with 1st operand requiring use of %es:,
- string insn with 2nd operand requiring use of %es:,
which covers all possible cases, allowing to drop EsSeg.
The (transient) need to comment out the OTUnused #define did uncover an
oversight in the earlier OTMax -> OTNum conversion, which is being taken
care of here.
Diffstat (limited to 'gas/ChangeLog')
-rw-r--r-- | gas/ChangeLog | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index 65e327d..223ea8d 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,5 +1,13 @@ 2019-11-12 Jan Beulich <jbeulich@suse.com> + * config/tc-i386.c (type_names): Remove OPERAND_TYPE_ESSEG + entry. + (md_assemble): Adjust isstring field use. Add assertion. + (check_string): Mostly re-write. + (i386_index_check): Adjust isstring field use and related code. + +2019-11-12 Jan Beulich <jbeulich@suse.com> + * config/tc-i386.c (process_immext): Remove SSE3, SVME, and MWAITX special case logic. (process_suffix): Replace immext field uses by instance ones. |