diff options
author | Alexander Fomin <alexander.fomin@intel.com> | 2015-08-21 14:06:41 +0300 |
---|---|---|
committer | Alexander Fomin <alexander.fomin@intel.com> | 2015-08-21 14:48:05 +0300 |
commit | ab4e4ed5dabc378c06ee647afd5793513393ae3f (patch) | |
tree | 385f7b4cde68bed550a963c01c7967003d7b2c0e /gas | |
parent | 80152258b9dfe033828e5c5b6dc3252be1ba7a84 (diff) | |
download | gdb-ab4e4ed5dabc378c06ee647afd5793513393ae3f.zip gdb-ab4e4ed5dabc378c06ee647afd5793513393ae3f.tar.gz gdb-ab4e4ed5dabc378c06ee647afd5793513393ae3f.tar.bz2 |
PR binutils/18257: Properly decode x86/Intel mask instructions.
opcodes/
PR binutils/18257
* i386-dis.c: Use MOD_TABLE for most of mask instructions.
(MOD enum): Add MOD_VEX_W_0_0F41_P_0_LEN_1, MOD_VEX_W_1_0F41_P_0_LEN_1,
MOD_VEX_W_0_0F41_P_2_LEN_1, MOD_VEX_W_1_0F41_P_2_LEN_1,
MOD_VEX_W_0_0F42_P_0_LEN_1, MOD_VEX_W_1_0F42_P_0_LEN_1,
MOD_VEX_W_0_0F42_P_2_LEN_1, MOD_VEX_W_1_0F42_P_2_LEN_1,
MOD_VEX_W_0_0F44_P_0_LEN_1, MOD_VEX_W_1_0F44_P_0_LEN_1,
MOD_VEX_W_0_0F44_P_2_LEN_1, MOD_VEX_W_1_0F44_P_2_LEN_1,
MOD_VEX_W_0_0F45_P_0_LEN_1, MOD_VEX_W_1_0F45_P_0_LEN_1,
MOD_VEX_W_0_0F45_P_2_LEN_1, MOD_VEX_W_1_0F45_P_2_LEN_1,
MOD_VEX_W_0_0F46_P_0_LEN_1, MOD_VEX_W_1_0F46_P_0_LEN_1,
MOD_VEX_W_0_0F46_P_2_LEN_1, MOD_VEX_W_1_0F46_P_2_LEN_1,
MOD_VEX_W_0_0F47_P_0_LEN_1, MOD_VEX_W_1_0F47_P_0_LEN_1,
MOD_VEX_W_0_0F47_P_2_LEN_1, MOD_VEX_W_1_0F47_P_2_LEN_1,
MOD_VEX_W_0_0F4A_P_0_LEN_1, MOD_VEX_W_1_0F4A_P_0_LEN_1,
MOD_VEX_W_0_0F4A_P_2_LEN_1, MOD_VEX_W_1_0F4A_P_2_LEN_1,
MOD_VEX_W_0_0F4B_P_0_LEN_1, MOD_VEX_W_1_0F4B_P_0_LEN_1,
MOD_VEX_W_0_0F4B_P_2_LEN_1, MOD_VEX_W_0_0F91_P_0_LEN_0,
MOD_VEX_W_1_0F91_P_0_LEN_0, MOD_VEX_W_0_0F91_P_2_LEN_0,
MOD_VEX_W_1_0F91_P_2_LEN_0, MOD_VEX_W_0_0F92_P_0_LEN_0,
MOD_VEX_W_0_0F92_P_2_LEN_0, MOD_VEX_W_0_0F92_P_3_LEN_0,
MOD_VEX_W_1_0F92_P_3_LEN_0, MOD_VEX_W_0_0F93_P_0_LEN_0,
MOD_VEX_W_0_0F93_P_2_LEN_0, MOD_VEX_W_0_0F93_P_3_LEN_0,
MOD_VEX_W_1_0F93_P_3_LEN_0, MOD_VEX_W_0_0F98_P_0_LEN_0,
MOD_VEX_W_1_0F98_P_0_LEN_0, MOD_VEX_W_0_0F98_P_2_LEN_0,
MOD_VEX_W_1_0F98_P_2_LEN_0, MOD_VEX_W_0_0F99_P_0_LEN_0,
MOD_VEX_W_1_0F99_P_0_LEN_0, MOD_VEX_W_0_0F99_P_2_LEN_0,
MOD_VEX_W_1_0F99_P_2_LEN_0, MOD_VEX_W_0_0F3A30_P_2_LEN_0,
MOD_VEX_W_1_0F3A30_P_2_LEN_0, MOD_VEX_W_0_0F3A31_P_2_LEN_0,
MOD_VEX_W_1_0F3A31_P_2_LEN_0, MOD_VEX_W_0_0F3A32_P_2_LEN_0,
MOD_VEX_W_1_0F3A32_P_2_LEN_0, MOD_VEX_W_0_0F3A33_P_2_LEN_0,
MOD_VEX_W_1_0F3A33_P_2_LEN_0.
(vex_w_table): Replace terminals with MOD_TABLE entries for
most of mask instructions.
gas/testsuite
PR binutils/18257
* gas/i386/disassem.s: Add mask instructions with invalid ModR/M byte.
* gas/i386/x86-64-disassem.s: Likewise.
* gas/i386/disassem.d: Updated.
* gas/i386/x86-64-disassem.d: Likewise.
Diffstat (limited to 'gas')
-rw-r--r-- | gas/testsuite/ChangeLog | 8 | ||||
-rw-r--r-- | gas/testsuite/gas/i386/disassem.d | 332 | ||||
-rw-r--r-- | gas/testsuite/gas/i386/disassem.s | 166 | ||||
-rw-r--r-- | gas/testsuite/gas/i386/x86-64-disassem.d | 332 | ||||
-rw-r--r-- | gas/testsuite/gas/i386/x86-64-disassem.s | 166 |
5 files changed, 1002 insertions, 2 deletions
diff --git a/gas/testsuite/ChangeLog b/gas/testsuite/ChangeLog index a12b7b4..f949d02 100644 --- a/gas/testsuite/ChangeLog +++ b/gas/testsuite/ChangeLog @@ -1,3 +1,11 @@ +2015-08-21 Alexander Fomin <alexander.fomin@intel.com> + + PR binutils/18257 + * gas/i386/disassem.s: Add mask instructions with invalid ModR/M byte. + * gas/i386/x86-64-disassem.s: Likewise. + * gas/i386/disassem.d: Updated. + * gas/i386/x86-64-disassem.d: Likewise. + 2015-08-19 Jiong Wang <jiong.wang@arm.com> * gas/aarch64/reloc-dtprel-lo12-ldst8.s: New testcase. diff --git a/gas/testsuite/gas/i386/disassem.d b/gas/testsuite/gas/i386/disassem.d index d8c6d61..2f39662 100644 --- a/gas/testsuite/gas/i386/disassem.d +++ b/gas/testsuite/gas/i386/disassem.d @@ -10,5 +10,335 @@ Disassembly of section \.text: [ ]*[a-f0-9]+:[ ]*ff[ ]*\(bad\) [ ]*[a-f0-9]+:[ ]*ef[ ]*out %eax,\(%dx\) [ ]*[a-f0-9]+:[ ]*ff[ ]*\(bad\) -[ ]*[a-f0-9]+:[ ]*d8[ ]*\.byte 0xd8 +[ ]*[a-f0-9]+:[ ]*d8 90 90 90 90 90[ ]*fcoms -0x6f6f6f70\(%eax\) +[ ]*[a-f0-9]+:[ ]*c5 ec 4a[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*9b[ ]*fwait +[ ]*[a-f0-9]+:[ ]*c5 ec 4a[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*6f[ ]*outsl %ds:\(%esi\),\(%dx\) +[ ]*[a-f0-9]+:[ ]*c5 ec 4a[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*3f[ ]*aas[ ]* +[ ]*[a-f0-9]+:[ ]*c5 ed 4a[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*9b[ ]*fwait +[ ]*[a-f0-9]+:[ ]*c5 ed 4a[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*6f[ ]*outsl %ds:\(%esi\),\(%dx\) +[ ]*[a-f0-9]+:[ ]*c5 ed 4a[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*3f[ ]*aas[ ]* +[ ]*[a-f0-9]+:[ ]*c4 e1 ec 4a[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*9b[ ]*fwait +[ ]*[a-f0-9]+:[ ]*c4 e1 ec 4a[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*6f[ ]*outsl %ds:\(%esi\),\(%dx\) +[ ]*[a-f0-9]+:[ ]*c4 e1 ec 4a[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*3f[ ]*aas[ ]* +[ ]*[a-f0-9]+:[ ]*c4 e1 ed 4a[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*9b[ ]*fwait +[ ]*[a-f0-9]+:[ ]*c4 e1 ed 4a[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*6f[ ]*outsl %ds:\(%esi\),\(%dx\) +[ ]*[a-f0-9]+:[ ]*c4 e1 ed 4a[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*3f[ ]*aas[ ]* +[ ]*[a-f0-9]+:[ ]*c5 ec 41[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*9b[ ]*fwait +[ ]*[a-f0-9]+:[ ]*c5 ec 41[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*6f[ ]*outsl %ds:\(%esi\),\(%dx\) +[ ]*[a-f0-9]+:[ ]*c5 ec 41[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*3f[ ]*aas[ ]* +[ ]*[a-f0-9]+:[ ]*c5 ed 41[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*9b[ ]*fwait +[ ]*[a-f0-9]+:[ ]*c5 ed 41[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*6f[ ]*outsl %ds:\(%esi\),\(%dx\) +[ ]*[a-f0-9]+:[ ]*c5 ed 41[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*3f[ ]*aas[ ]* +[ ]*[a-f0-9]+:[ ]*c4 e1 ec 41[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*9b[ ]*fwait +[ ]*[a-f0-9]+:[ ]*c4 e1 ec 41[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*6f[ ]*outsl %ds:\(%esi\),\(%dx\) +[ ]*[a-f0-9]+:[ ]*c4 e1 ec 41[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*3f[ ]*aas[ ]* +[ ]*[a-f0-9]+:[ ]*c4 e1 ed 41[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*9b[ ]*fwait +[ ]*[a-f0-9]+:[ ]*c4 e1 ed 41[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*6f[ ]*outsl %ds:\(%esi\),\(%dx\) +[ ]*[a-f0-9]+:[ ]*c4 e1 ed 41[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*3f[ ]*aas[ ]* +[ ]*[a-f0-9]+:[ ]*c5 ec 42[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*9b[ ]*fwait +[ ]*[a-f0-9]+:[ ]*c5 ec 42[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*6f[ ]*outsl %ds:\(%esi\),\(%dx\) +[ ]*[a-f0-9]+:[ ]*c5 ec 42[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*3f[ ]*aas[ ]* +[ ]*[a-f0-9]+:[ ]*c5 ed 42[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*9b[ ]*fwait +[ ]*[a-f0-9]+:[ ]*c5 ed 42[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*6f[ ]*outsl %ds:\(%esi\),\(%dx\) +[ ]*[a-f0-9]+:[ ]*c5 ed 42[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*3f[ ]*aas[ ]* +[ ]*[a-f0-9]+:[ ]*c4 e1 ec 42[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*9b[ ]*fwait +[ ]*[a-f0-9]+:[ ]*c4 e1 ec 42[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*6f[ ]*outsl %ds:\(%esi\),\(%dx\) +[ ]*[a-f0-9]+:[ ]*c4 e1 ec 42[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*3f[ ]*aas[ ]* +[ ]*[a-f0-9]+:[ ]*c4 e1 ed 42[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*9b[ ]*fwait +[ ]*[a-f0-9]+:[ ]*c4 e1 ed 42[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*6f[ ]*outsl %ds:\(%esi\),\(%dx\) +[ ]*[a-f0-9]+:[ ]*c4 e1 ed 42[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*3f[ ]*aas[ ]* +[ ]*[a-f0-9]+:[ ]*c5 ec 4b[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*9b[ ]*fwait +[ ]*[a-f0-9]+:[ ]*c5 ec 4b[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*6f[ ]*outsl %ds:\(%esi\),\(%dx\) +[ ]*[a-f0-9]+:[ ]*c5 ec 4b[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*3f[ ]*aas[ ]* +[ ]*[a-f0-9]+:[ ]*c5 ed 4b[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*9b[ ]*fwait +[ ]*[a-f0-9]+:[ ]*c5 ed 4b[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*6f[ ]*outsl %ds:\(%esi\),\(%dx\) +[ ]*[a-f0-9]+:[ ]*c5 ed 4b[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*3f[ ]*aas[ ]* +[ ]*[a-f0-9]+:[ ]*c4 e1 ec 4b[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*9b[ ]*fwait +[ ]*[a-f0-9]+:[ ]*c4 e1 ec 4b[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*6f[ ]*outsl %ds:\(%esi\),\(%dx\) +[ ]*[a-f0-9]+:[ ]*c4 e1 ec 4b[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*3f[ ]*aas[ ]* +[ ]*[a-f0-9]+:[ ]*c5 f8 44[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*9b[ ]*fwait +[ ]*[a-f0-9]+:[ ]*c5 f8 44[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*6f[ ]*outsl %ds:\(%esi\),\(%dx\) +[ ]*[a-f0-9]+:[ ]*c5 f8 44[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*3f[ ]*aas[ ]* +[ ]*[a-f0-9]+:[ ]*c5 f9 44[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*9b[ ]*fwait +[ ]*[a-f0-9]+:[ ]*c5 f9 44[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*6f[ ]*outsl %ds:\(%esi\),\(%dx\) +[ ]*[a-f0-9]+:[ ]*c5 f9 44[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*3f[ ]*aas[ ]* +[ ]*[a-f0-9]+:[ ]*c4 e1 f8 44[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*9b[ ]*fwait +[ ]*[a-f0-9]+:[ ]*c4 e1 f8 44[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*6f[ ]*outsl %ds:\(%esi\),\(%dx\) +[ ]*[a-f0-9]+:[ ]*c4 e1 f8 44[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*3f[ ]*aas[ ]* +[ ]*[a-f0-9]+:[ ]*c4 e1 f9 44[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*9b[ ]*fwait +[ ]*[a-f0-9]+:[ ]*c4 e1 f9 44[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*6f[ ]*outsl %ds:\(%esi\),\(%dx\) +[ ]*[a-f0-9]+:[ ]*c4 e1 f9 44[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*3f[ ]*aas[ ]* +[ ]*[a-f0-9]+:[ ]*c5 ec 45[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*9b[ ]*fwait +[ ]*[a-f0-9]+:[ ]*c5 ec 45[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*6f[ ]*outsl %ds:\(%esi\),\(%dx\) +[ ]*[a-f0-9]+:[ ]*c5 ec 45[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*3f[ ]*aas[ ]* +[ ]*[a-f0-9]+:[ ]*c5 ed 45[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*9b[ ]*fwait +[ ]*[a-f0-9]+:[ ]*c5 ed 45[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*6f[ ]*outsl %ds:\(%esi\),\(%dx\) +[ ]*[a-f0-9]+:[ ]*c5 ed 45[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*3f[ ]*aas[ ]* +[ ]*[a-f0-9]+:[ ]*c4 e1 ec 45[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*9b[ ]*fwait +[ ]*[a-f0-9]+:[ ]*c4 e1 ec 45[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*6f[ ]*outsl %ds:\(%esi\),\(%dx\) +[ ]*[a-f0-9]+:[ ]*c4 e1 ec 45[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*3f[ ]*aas[ ]* +[ ]*[a-f0-9]+:[ ]*c4 e1 ed 45[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*9b[ ]*fwait +[ ]*[a-f0-9]+:[ ]*c4 e1 ed 45[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*6f[ ]*outsl %ds:\(%esi\),\(%dx\) +[ ]*[a-f0-9]+:[ ]*c4 e1 ed 45[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*3f[ ]*aas[ ]* +[ ]*[a-f0-9]+:[ ]*c5 f8 98[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*9b[ ]*fwait +[ ]*[a-f0-9]+:[ ]*c5 f8 98[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*6f[ ]*outsl %ds:\(%esi\),\(%dx\) +[ ]*[a-f0-9]+:[ ]*c5 f8 98[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*3f[ ]*aas[ ]* +[ ]*[a-f0-9]+:[ ]*c5 f9 98[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*9b[ ]*fwait +[ ]*[a-f0-9]+:[ ]*c5 f9 98[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*6f[ ]*outsl %ds:\(%esi\),\(%dx\) +[ ]*[a-f0-9]+:[ ]*c5 f9 98[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*3f[ ]*aas[ ]* +[ ]*[a-f0-9]+:[ ]*c4 e1 f8 98[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*9b[ ]*fwait +[ ]*[a-f0-9]+:[ ]*c4 e1 f8 98[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*6f[ ]*outsl %ds:\(%esi\),\(%dx\) +[ ]*[a-f0-9]+:[ ]*c4 e1 f8 98[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*3f[ ]*aas[ ]* +[ ]*[a-f0-9]+:[ ]*c4 e1 f9 98[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*9b[ ]*fwait +[ ]*[a-f0-9]+:[ ]*c4 e1 f9 98[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*6f[ ]*outsl %ds:\(%esi\),\(%dx\) +[ ]*[a-f0-9]+:[ ]*c4 e1 f9 98[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*3f[ ]*aas[ ]* +[ ]*[a-f0-9]+:[ ]*c5 ec 46[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*9b[ ]*fwait +[ ]*[a-f0-9]+:[ ]*c5 ec 46[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*6f[ ]*outsl %ds:\(%esi\),\(%dx\) +[ ]*[a-f0-9]+:[ ]*c5 ec 46[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*3f[ ]*aas[ ]* +[ ]*[a-f0-9]+:[ ]*c5 ed 46[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*9b[ ]*fwait +[ ]*[a-f0-9]+:[ ]*c5 ed 46[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*6f[ ]*outsl %ds:\(%esi\),\(%dx\) +[ ]*[a-f0-9]+:[ ]*c5 ed 46[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*3f[ ]*aas[ ]* +[ ]*[a-f0-9]+:[ ]*c4 e1 ec 46[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*9b[ ]*fwait +[ ]*[a-f0-9]+:[ ]*c4 e1 ec 46[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*6f[ ]*outsl %ds:\(%esi\),\(%dx\) +[ ]*[a-f0-9]+:[ ]*c4 e1 ec 46[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*3f[ ]*aas[ ]* +[ ]*[a-f0-9]+:[ ]*c4 e1 ed 46[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*9b[ ]*fwait +[ ]*[a-f0-9]+:[ ]*c4 e1 ed 46[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*6f[ ]*outsl %ds:\(%esi\),\(%dx\) +[ ]*[a-f0-9]+:[ ]*c4 e1 ed 46[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*3f[ ]*aas[ ]* +[ ]*[a-f0-9]+:[ ]*c5 ec 47[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*9b[ ]*fwait +[ ]*[a-f0-9]+:[ ]*c5 ec 47[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*6f[ ]*outsl %ds:\(%esi\),\(%dx\) +[ ]*[a-f0-9]+:[ ]*c5 ec 47[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*3f[ ]*aas[ ]* +[ ]*[a-f0-9]+:[ ]*c5 ed 47[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*9b[ ]*fwait +[ ]*[a-f0-9]+:[ ]*c5 ed 47[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*6f[ ]*outsl %ds:\(%esi\),\(%dx\) +[ ]*[a-f0-9]+:[ ]*c5 ed 47[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*3f[ ]*aas[ ]* +[ ]*[a-f0-9]+:[ ]*c4 e1 ec 47[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*9b[ ]*fwait +[ ]*[a-f0-9]+:[ ]*c4 e1 ec 47[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*6f[ ]*outsl %ds:\(%esi\),\(%dx\) +[ ]*[a-f0-9]+:[ ]*c4 e1 ec 47[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*3f[ ]*aas[ ]* +[ ]*[a-f0-9]+:[ ]*c4 e1 ed 47[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*9b[ ]*fwait +[ ]*[a-f0-9]+:[ ]*c4 e1 ed 47[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*6f[ ]*outsl %ds:\(%esi\),\(%dx\) +[ ]*[a-f0-9]+:[ ]*c4 e1 ed 47[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*3f[ ]*aas[ ]* +[ ]*[a-f0-9]+:[ ]*c5 f8 99[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*9b[ ]*fwait +[ ]*[a-f0-9]+:[ ]*c5 f8 99[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*6f[ ]*outsl %ds:\(%esi\),\(%dx\) +[ ]*[a-f0-9]+:[ ]*c5 f8 99[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*3f[ ]*aas[ ]* +[ ]*[a-f0-9]+:[ ]*c5 f9 99[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*9b[ ]*fwait +[ ]*[a-f0-9]+:[ ]*c5 f9 99[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*6f[ ]*outsl %ds:\(%esi\),\(%dx\) +[ ]*[a-f0-9]+:[ ]*c5 f9 99[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*3f[ ]*aas[ ]* +[ ]*[a-f0-9]+:[ ]*c4 e1 f8 99[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*9b[ ]*fwait +[ ]*[a-f0-9]+:[ ]*c4 e1 f8 99[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*6f[ ]*outsl %ds:\(%esi\),\(%dx\) +[ ]*[a-f0-9]+:[ ]*c4 e1 f8 99[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*3f[ ]*aas[ ]* +[ ]*[a-f0-9]+:[ ]*c4 e1 f9 99[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*9b[ ]*fwait +[ ]*[a-f0-9]+:[ ]*c4 e1 f9 99[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*6f[ ]*outsl %ds:\(%esi\),\(%dx\) +[ ]*[a-f0-9]+:[ ]*c4 e1 f9 99[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*3f[ ]*aas[ ]* +[ ]*[a-f0-9]+:[ ]*c4 e3 f9 30[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*8f 01[ ]*popl \(%ecx\) +[ ]*[a-f0-9]+:[ ]*c4 e3 f9 30[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*6a 01[ ]*push \$0x1 +[ ]*[a-f0-9]+:[ ]*c4 e3 f9 30[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*04 01[ ]*add \$0x1,%al +[ ]*[a-f0-9]+:[ ]*c4 e3 79 30[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*8f 01[ ]*popl \(%ecx\) +[ ]*[a-f0-9]+:[ ]*c4 e3 79 30[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*6a 01[ ]*push \$0x1 +[ ]*[a-f0-9]+:[ ]*c4 e3 79 30[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*04 01[ ]*add \$0x1,%al +[ ]*[a-f0-9]+:[ ]*c4 e3 f9 31[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*8f 01[ ]*popl \(%ecx\) +[ ]*[a-f0-9]+:[ ]*c4 e3 f9 31[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*6a 01[ ]*push \$0x1 +[ ]*[a-f0-9]+:[ ]*c4 e3 f9 31[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*04 01[ ]*add \$0x1,%al +[ ]*[a-f0-9]+:[ ]*c4 e3 79 31[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*8f 01[ ]*popl \(%ecx\) +[ ]*[a-f0-9]+:[ ]*c4 e3 79 31[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*6a 01[ ]*push \$0x1 +[ ]*[a-f0-9]+:[ ]*c4 e3 79 31[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*04 01[ ]*add \$0x1,%al +[ ]*[a-f0-9]+:[ ]*c4 e3 f9 32[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*8f 01[ ]*popl \(%ecx\) +[ ]*[a-f0-9]+:[ ]*c4 e3 f9 32[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*6a 01[ ]*push \$0x1 +[ ]*[a-f0-9]+:[ ]*c4 e3 f9 32[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*04 01[ ]*add \$0x1,%al +[ ]*[a-f0-9]+:[ ]*c4 e3 79 32[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*8f 01[ ]*popl \(%ecx\) +[ ]*[a-f0-9]+:[ ]*c4 e3 79 32[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*6a 01[ ]*push \$0x1 +[ ]*[a-f0-9]+:[ ]*c4 e3 79 32[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*04 01[ ]*add \$0x1,%al +[ ]*[a-f0-9]+:[ ]*c4 e3 f9 33[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*8f 01[ ]*popl \(%ecx\) +[ ]*[a-f0-9]+:[ ]*c4 e3 f9 33[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*6a 01[ ]*push \$0x1 +[ ]*[a-f0-9]+:[ ]*c4 e3 f9 33[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*04 01[ ]*add \$0x1,%al +[ ]*[a-f0-9]+:[ ]*c4 e3 79 33[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*8f 01[ ]*popl \(%ecx\) +[ ]*[a-f0-9]+:[ ]*c4 e3 79 33[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*6a 01[ ]*push \$0x1 +[ ]*[a-f0-9]+:[ ]*c4 e3 79 33[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*04 01[ ]*add \$0x1,%al +[ ]*[a-f0-9]+:[ ]*c5 f8 92[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*9b[ ]*fwait +[ ]*[a-f0-9]+:[ ]*c5 f8 92[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*6f[ ]*outsl %ds:\(%esi\),\(%dx\) +[ ]*[a-f0-9]+:[ ]*c5 f8 92[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*3f[ ]*aas[ ]* +[ ]*[a-f0-9]+:[ ]*c5 f9 92[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*9b[ ]*fwait +[ ]*[a-f0-9]+:[ ]*c5 f9 92[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*6f[ ]*outsl %ds:\(%esi\),\(%dx\) +[ ]*[a-f0-9]+:[ ]*c5 f9 92[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*3f[ ]*aas[ ]* +[ ]*[a-f0-9]+:[ ]*c5 fb 92[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*9b[ ]*fwait +[ ]*[a-f0-9]+:[ ]*c5 fb 92[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*6f[ ]*outsl %ds:\(%esi\),\(%dx\) +[ ]*[a-f0-9]+:[ ]*c5 fb 92[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*3f[ ]*aas[ ]* +[ ]*[a-f0-9]+:[ ]*c4 e1 f9 92[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*9b[ ]*fwait +[ ]*[a-f0-9]+:[ ]*c4 e1 f9 92[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*6f[ ]*outsl %ds:\(%esi\),\(%dx\) +[ ]*[a-f0-9]+:[ ]*c4 e1 f9 92[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*3f[ ]*aas[ ]* +[ ]*[a-f0-9]+:[ ]*c5 f8 93[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*9b[ ]*fwait +[ ]*[a-f0-9]+:[ ]*c5 f8 93[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*6f[ ]*outsl %ds:\(%esi\),\(%dx\) +[ ]*[a-f0-9]+:[ ]*c5 f8 93[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*3f[ ]*aas[ ]* +[ ]*[a-f0-9]+:[ ]*c5 f9 93[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*9b[ ]*fwait +[ ]*[a-f0-9]+:[ ]*c5 f9 93[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*6f[ ]*outsl %ds:\(%esi\),\(%dx\) +[ ]*[a-f0-9]+:[ ]*c5 f9 93[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*3f[ ]*aas[ ]* +[ ]*[a-f0-9]+:[ ]*c5 fb 93[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*9b[ ]*fwait +[ ]*[a-f0-9]+:[ ]*c5 fb 93[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*6f[ ]*outsl %ds:\(%esi\),\(%dx\) +[ ]*[a-f0-9]+:[ ]*c5 fb 93[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*3f[ ]*aas[ ]* +[ ]*[a-f0-9]+:[ ]*c4 e1 f9 93[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*9b[ ]*fwait +[ ]*[a-f0-9]+:[ ]*c4 e1 f9 93[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*6f[ ]*outsl %ds:\(%esi\),\(%dx\) +[ ]*[a-f0-9]+:[ ]*c4 e1 f9 93[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*3f[ ]*aas[ ]* #pass diff --git a/gas/testsuite/gas/i386/disassem.s b/gas/testsuite/gas/i386/disassem.s index 81b0ef3..2e6c157 100644 --- a/gas/testsuite/gas/i386/disassem.s +++ b/gas/testsuite/gas/i386/disassem.s @@ -1,3 +1,169 @@ .text .byte 0xFF, 0xEF .byte 0xFF, 0xD8 +.fill 0x5, 0x1, 0x90 +.byte 0xC5, 0xEC, 0x4A, 0x9B +.byte 0xC5, 0xEC, 0x4A, 0x6F +.byte 0xC5, 0xEC, 0x4A, 0x3F +.byte 0xC5, 0xED, 0x4A, 0x9B +.byte 0xC5, 0xED, 0x4A, 0x6F +.byte 0xC5, 0xED, 0x4A, 0x3F +.byte 0xC4, 0xE1, 0xEC, 0x4A, 0x9B +.byte 0xC4, 0xE1, 0xEC, 0x4A, 0x6F +.byte 0xC4, 0xE1, 0xEC, 0x4A, 0x3F +.byte 0xC4, 0xE1, 0xED, 0x4A, 0x9B +.byte 0xC4, 0xE1, 0xED, 0x4A, 0x6F +.byte 0xC4, 0xE1, 0xED, 0x4A, 0x3F +.byte 0xC5, 0xEC, 0x41, 0x9B +.byte 0xC5, 0xEC, 0x41, 0x6F +.byte 0xC5, 0xEC, 0x41, 0x3F +.byte 0xC5, 0xED, 0x41, 0x9B +.byte 0xC5, 0xED, 0x41, 0x6F +.byte 0xC5, 0xED, 0x41, 0x3F +.byte 0xC4, 0xE1, 0xEC, 0x41, 0x9B +.byte 0xC4, 0xE1, 0xEC, 0x41, 0x6F +.byte 0xC4, 0xE1, 0xEC, 0x41, 0x3F +.byte 0xC4, 0xE1, 0xED, 0x41, 0x9B +.byte 0xC4, 0xE1, 0xED, 0x41, 0x6F +.byte 0xC4, 0xE1, 0xED, 0x41, 0x3F +.byte 0xC5, 0xEC, 0x42, 0x9B +.byte 0xC5, 0xEC, 0x42, 0x6F +.byte 0xC5, 0xEC, 0x42, 0x3F +.byte 0xC5, 0xED, 0x42, 0x9B +.byte 0xC5, 0xED, 0x42, 0x6F +.byte 0xC5, 0xED, 0x42, 0x3F +.byte 0xC4, 0xE1, 0xEC, 0x42, 0x9B +.byte 0xC4, 0xE1, 0xEC, 0x42, 0x6F +.byte 0xC4, 0xE1, 0xEC, 0x42, 0x3F +.byte 0xC4, 0xE1, 0xED, 0x42, 0x9B +.byte 0xC4, 0xE1, 0xED, 0x42, 0x6F +.byte 0xC4, 0xE1, 0xED, 0x42, 0x3F +.byte 0xC5, 0xEC, 0x4B, 0x9B +.byte 0xC5, 0xEC, 0x4B, 0x6F +.byte 0xC5, 0xEC, 0x4B, 0x3F +.byte 0xC5, 0xED, 0x4B, 0x9B +.byte 0xC5, 0xED, 0x4B, 0x6F +.byte 0xC5, 0xED, 0x4B, 0x3F +.byte 0xC4, 0xE1, 0xEC, 0x4B, 0x9B +.byte 0xC4, 0xE1, 0xEC, 0x4B, 0x6F +.byte 0xC4, 0xE1, 0xEC, 0x4B, 0x3F +.byte 0xC5, 0xF8, 0x44, 0x9B +.byte 0xC5, 0xF8, 0x44, 0x6F +.byte 0xC5, 0xF8, 0x44, 0x3F +.byte 0xC5, 0xF9, 0x44, 0x9B +.byte 0xC5, 0xF9, 0x44, 0x6F +.byte 0xC5, 0xF9, 0x44, 0x3F +.byte 0xC4, 0xE1, 0xF8, 0x44, 0x9B +.byte 0xC4, 0xE1, 0xF8, 0x44, 0x6F +.byte 0xC4, 0xE1, 0xF8, 0x44, 0x3F +.byte 0xC4, 0xE1, 0xF9, 0x44, 0x9B +.byte 0xC4, 0xE1, 0xF9, 0x44, 0x6F +.byte 0xC4, 0xE1, 0xF9, 0x44, 0x3F +.byte 0xC5, 0xEC, 0x45, 0x9B +.byte 0xC5, 0xEC, 0x45, 0x6F +.byte 0xC5, 0xEC, 0x45, 0x3F +.byte 0xC5, 0xED, 0x45, 0x9B +.byte 0xC5, 0xED, 0x45, 0x6F +.byte 0xC5, 0xED, 0x45, 0x3F +.byte 0xC4, 0xE1, 0xEC, 0x45, 0x9B +.byte 0xC4, 0xE1, 0xEC, 0x45, 0x6F +.byte 0xC4, 0xE1, 0xEC, 0x45, 0x3F +.byte 0xC4, 0xE1, 0xED, 0x45, 0x9B +.byte 0xC4, 0xE1, 0xED, 0x45, 0x6F +.byte 0xC4, 0xE1, 0xED, 0x45, 0x3F +.byte 0xC5, 0xF8, 0x98, 0x9B +.byte 0xC5, 0xF8, 0x98, 0x6F +.byte 0xC5, 0xF8, 0x98, 0x3F +.byte 0xC5, 0xF9, 0x98, 0x9B +.byte 0xC5, 0xF9, 0x98, 0x6F +.byte 0xC5, 0xF9, 0x98, 0x3F +.byte 0xC4, 0xE1, 0xF8, 0x98, 0x9B +.byte 0xC4, 0xE1, 0xF8, 0x98, 0x6F +.byte 0xC4, 0xE1, 0xF8, 0x98, 0x3F +.byte 0xC4, 0xE1, 0xF9, 0x98, 0x9B +.byte 0xC4, 0xE1, 0xF9, 0x98, 0x6F +.byte 0xC4, 0xE1, 0xF9, 0x98, 0x3F +.byte 0xC5, 0xEC, 0x46, 0x9B +.byte 0xC5, 0xEC, 0x46, 0x6F +.byte 0xC5, 0xEC, 0x46, 0x3F +.byte 0xC5, 0xED, 0x46, 0x9B +.byte 0xC5, 0xED, 0x46, 0x6F +.byte 0xC5, 0xED, 0x46, 0x3F +.byte 0xC4, 0xE1, 0xEC, 0x46, 0x9B +.byte 0xC4, 0xE1, 0xEC, 0x46, 0x6F +.byte 0xC4, 0xE1, 0xEC, 0x46, 0x3F +.byte 0xC4, 0xE1, 0xED, 0x46, 0x9B +.byte 0xC4, 0xE1, 0xED, 0x46, 0x6F +.byte 0xC4, 0xE1, 0xED, 0x46, 0x3F +.byte 0xC5, 0xEC, 0x47, 0x9B +.byte 0xC5, 0xEC, 0x47, 0x6F +.byte 0xC5, 0xEC, 0x47, 0x3F +.byte 0xC5, 0xED, 0x47, 0x9B +.byte 0xC5, 0xED, 0x47, 0x6F +.byte 0xC5, 0xED, 0x47, 0x3F +.byte 0xC4, 0xE1, 0xEC, 0x47, 0x9B +.byte 0xC4, 0xE1, 0xEC, 0x47, 0x6F +.byte 0xC4, 0xE1, 0xEC, 0x47, 0x3F +.byte 0xC4, 0xE1, 0xED, 0x47, 0x9B +.byte 0xC4, 0xE1, 0xED, 0x47, 0x6F +.byte 0xC4, 0xE1, 0xED, 0x47, 0x3F +.byte 0xC5, 0xF8, 0x99, 0x9B +.byte 0xC5, 0xF8, 0x99, 0x6F +.byte 0xC5, 0xF8, 0x99, 0x3F +.byte 0xC5, 0xF9, 0x99, 0x9B +.byte 0xC5, 0xF9, 0x99, 0x6F +.byte 0xC5, 0xF9, 0x99, 0x3F +.byte 0xC4, 0xE1, 0xF8, 0x99, 0x9B +.byte 0xC4, 0xE1, 0xF8, 0x99, 0x6F +.byte 0xC4, 0xE1, 0xF8, 0x99, 0x3F +.byte 0xC4, 0xE1, 0xF9, 0x99, 0x9B +.byte 0xC4, 0xE1, 0xF9, 0x99, 0x6F +.byte 0xC4, 0xE1, 0xF9, 0x99, 0x3F +.byte 0xC4, 0xE3, 0xF9, 0x30, 0x8F, 0x01 +.byte 0xC4, 0xE3, 0xF9, 0x30, 0x6A, 0x01 +.byte 0xC4, 0xE3, 0xF9, 0x30, 0x04, 0x01 +.byte 0xC4, 0xE3, 0x79, 0x30, 0x8F, 0x01 +.byte 0xC4, 0xE3, 0x79, 0x30, 0x6A, 0x01 +.byte 0xC4, 0xE3, 0x79, 0x30, 0x04, 0x01 +.byte 0xC4, 0xE3, 0xF9, 0x31, 0x8F, 0x01 +.byte 0xC4, 0xE3, 0xF9, 0x31, 0x6A, 0x01 +.byte 0xC4, 0xE3, 0xF9, 0x31, 0x04, 0x01 +.byte 0xC4, 0xE3, 0x79, 0x31, 0x8F, 0x01 +.byte 0xC4, 0xE3, 0x79, 0x31, 0x6A, 0x01 +.byte 0xC4, 0xE3, 0x79, 0x31, 0x04, 0x01 +.byte 0xC4, 0xE3, 0xF9, 0x32, 0x8F, 0x01 +.byte 0xC4, 0xE3, 0xF9, 0x32, 0x6A, 0x01 +.byte 0xC4, 0xE3, 0xF9, 0x32, 0x04, 0x01 +.byte 0xC4, 0xE3, 0x79, 0x32, 0x8F, 0x01 +.byte 0xC4, 0xE3, 0x79, 0x32, 0x6A, 0x01 +.byte 0xC4, 0xE3, 0x79, 0x32, 0x04, 0x01 +.byte 0xC4, 0xE3, 0xF9, 0x33, 0x8F, 0x01 +.byte 0xC4, 0xE3, 0xF9, 0x33, 0x6A, 0x01 +.byte 0xC4, 0xE3, 0xF9, 0x33, 0x04, 0x01 +.byte 0xC4, 0xE3, 0x79, 0x33, 0x8F, 0x01 +.byte 0xC4, 0xE3, 0x79, 0x33, 0x6A, 0x01 +.byte 0xC4, 0xE3, 0x79, 0x33, 0x04, 0x01 +.byte 0xC5, 0xF8, 0x92, 0x9B +.byte 0xC5, 0xF8, 0x92, 0x6F +.byte 0xC5, 0xF8, 0x92, 0x3F +.byte 0xC5, 0xF9, 0x92, 0x9B +.byte 0xC5, 0xF9, 0x92, 0x6F +.byte 0xC5, 0xF9, 0x92, 0x3F +.byte 0xC5, 0xFB, 0x92, 0x9B +.byte 0xC5, 0xFB, 0x92, 0x6F +.byte 0xC5, 0xFB, 0x92, 0x3F +.byte 0xC4, 0xE1, 0xF9, 0x92, 0x9B +.byte 0xC4, 0xE1, 0xF9, 0x92, 0x6F +.byte 0xC4, 0xE1, 0xF9, 0x92, 0x3F +.byte 0xC5, 0xF8, 0x93, 0x9B +.byte 0xC5, 0xF8, 0x93, 0x6F +.byte 0xC5, 0xF8, 0x93, 0x3F +.byte 0xC5, 0xF9, 0x93, 0x9B +.byte 0xC5, 0xF9, 0x93, 0x6F +.byte 0xC5, 0xF9, 0x93, 0x3F +.byte 0xC5, 0xFB, 0x93, 0x9B +.byte 0xC5, 0xFB, 0x93, 0x6F +.byte 0xC5, 0xFB, 0x93, 0x3F +.byte 0xC4, 0xE1, 0xF9, 0x93, 0x9B +.byte 0xC4, 0xE1, 0xF9, 0x93, 0x6F +.byte 0xC4, 0xE1, 0xF9, 0x93, 0x3F diff --git a/gas/testsuite/gas/i386/x86-64-disassem.d b/gas/testsuite/gas/i386/x86-64-disassem.d index 8662af9..f21bab0 100644 --- a/gas/testsuite/gas/i386/x86-64-disassem.d +++ b/gas/testsuite/gas/i386/x86-64-disassem.d @@ -10,5 +10,335 @@ Disassembly of section \.text: [ ]*[a-f0-9]+:[ ]*ff[ ]*\(bad\) [ ]*[a-f0-9]+:[ ]*ef[ ]*out %eax,\(%dx\) [ ]*[a-f0-9]+:[ ]*ff[ ]*\(bad\) -[ ]*[a-f0-9]+:[ ]*d8[ ]*\.byte 0xd8 +[ ]*[a-f0-9]+:[ ]*d8 90 90 90 90 90[ ]*fcoms -0x6f6f6f70\(%rax\) +[ ]*[a-f0-9]+:[ ]*c5 ec 4a[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*9b[ ]*fwait +[ ]*[a-f0-9]+:[ ]*c5 ec 4a[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*6f[ ]*outsl %ds:\(%rsi\),\(%dx\) +[ ]*[a-f0-9]+:[ ]*c5 ec 4a[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*3f[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*c5 ed 4a[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*9b[ ]*fwait +[ ]*[a-f0-9]+:[ ]*c5 ed 4a[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*6f[ ]*outsl %ds:\(%rsi\),\(%dx\) +[ ]*[a-f0-9]+:[ ]*c5 ed 4a[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*3f[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*c4 e1 ec 4a[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*9b[ ]*fwait +[ ]*[a-f0-9]+:[ ]*c4 e1 ec 4a[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*6f[ ]*outsl %ds:\(%rsi\),\(%dx\) +[ ]*[a-f0-9]+:[ ]*c4 e1 ec 4a[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*3f[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*c4 e1 ed 4a[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*9b[ ]*fwait +[ ]*[a-f0-9]+:[ ]*c4 e1 ed 4a[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*6f[ ]*outsl %ds:\(%rsi\),\(%dx\) +[ ]*[a-f0-9]+:[ ]*c4 e1 ed 4a[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*3f[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*c5 ec 41[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*9b[ ]*fwait +[ ]*[a-f0-9]+:[ ]*c5 ec 41[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*6f[ ]*outsl %ds:\(%rsi\),\(%dx\) +[ ]*[a-f0-9]+:[ ]*c5 ec 41[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*3f[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*c5 ed 41[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*9b[ ]*fwait +[ ]*[a-f0-9]+:[ ]*c5 ed 41[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*6f[ ]*outsl %ds:\(%rsi\),\(%dx\) +[ ]*[a-f0-9]+:[ ]*c5 ed 41[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*3f[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*c4 e1 ec 41[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*9b[ ]*fwait +[ ]*[a-f0-9]+:[ ]*c4 e1 ec 41[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*6f[ ]*outsl %ds:\(%rsi\),\(%dx\) +[ ]*[a-f0-9]+:[ ]*c4 e1 ec 41[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*3f[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*c4 e1 ed 41[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*9b[ ]*fwait +[ ]*[a-f0-9]+:[ ]*c4 e1 ed 41[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*6f[ ]*outsl %ds:\(%rsi\),\(%dx\) +[ ]*[a-f0-9]+:[ ]*c4 e1 ed 41[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*3f[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*c5 ec 42[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*9b[ ]*fwait +[ ]*[a-f0-9]+:[ ]*c5 ec 42[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*6f[ ]*outsl %ds:\(%rsi\),\(%dx\) +[ ]*[a-f0-9]+:[ ]*c5 ec 42[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*3f[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*c5 ed 42[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*9b[ ]*fwait +[ ]*[a-f0-9]+:[ ]*c5 ed 42[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*6f[ ]*outsl %ds:\(%rsi\),\(%dx\) +[ ]*[a-f0-9]+:[ ]*c5 ed 42[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*3f[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*c4 e1 ec 42[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*9b[ ]*fwait +[ ]*[a-f0-9]+:[ ]*c4 e1 ec 42[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*6f[ ]*outsl %ds:\(%rsi\),\(%dx\) +[ ]*[a-f0-9]+:[ ]*c4 e1 ec 42[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*3f[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*c4 e1 ed 42[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*9b[ ]*fwait +[ ]*[a-f0-9]+:[ ]*c4 e1 ed 42[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*6f[ ]*outsl %ds:\(%rsi\),\(%dx\) +[ ]*[a-f0-9]+:[ ]*c4 e1 ed 42[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*3f[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*c5 ec 4b[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*9b[ ]*fwait +[ ]*[a-f0-9]+:[ ]*c5 ec 4b[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*6f[ ]*outsl %ds:\(%rsi\),\(%dx\) +[ ]*[a-f0-9]+:[ ]*c5 ec 4b[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*3f[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*c5 ed 4b[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*9b[ ]*fwait +[ ]*[a-f0-9]+:[ ]*c5 ed 4b[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*6f[ ]*outsl %ds:\(%rsi\),\(%dx\) +[ ]*[a-f0-9]+:[ ]*c5 ed 4b[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*3f[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*c4 e1 ec 4b[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*9b[ ]*fwait +[ ]*[a-f0-9]+:[ ]*c4 e1 ec 4b[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*6f[ ]*outsl %ds:\(%rsi\),\(%dx\) +[ ]*[a-f0-9]+:[ ]*c4 e1 ec 4b[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*3f[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*c5 f8 44[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*9b[ ]*fwait +[ ]*[a-f0-9]+:[ ]*c5 f8 44[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*6f[ ]*outsl %ds:\(%rsi\),\(%dx\) +[ ]*[a-f0-9]+:[ ]*c5 f8 44[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*3f[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*c5 f9 44[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*9b[ ]*fwait +[ ]*[a-f0-9]+:[ ]*c5 f9 44[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*6f[ ]*outsl %ds:\(%rsi\),\(%dx\) +[ ]*[a-f0-9]+:[ ]*c5 f9 44[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*3f[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*c4 e1 f8 44[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*9b[ ]*fwait +[ ]*[a-f0-9]+:[ ]*c4 e1 f8 44[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*6f[ ]*outsl %ds:\(%rsi\),\(%dx\) +[ ]*[a-f0-9]+:[ ]*c4 e1 f8 44[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*3f[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*c4 e1 f9 44[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*9b[ ]*fwait +[ ]*[a-f0-9]+:[ ]*c4 e1 f9 44[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*6f[ ]*outsl %ds:\(%rsi\),\(%dx\) +[ ]*[a-f0-9]+:[ ]*c4 e1 f9 44[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*3f[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*c5 ec 45[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*9b[ ]*fwait +[ ]*[a-f0-9]+:[ ]*c5 ec 45[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*6f[ ]*outsl %ds:\(%rsi\),\(%dx\) +[ ]*[a-f0-9]+:[ ]*c5 ec 45[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*3f[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*c5 ed 45[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*9b[ ]*fwait +[ ]*[a-f0-9]+:[ ]*c5 ed 45[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*6f[ ]*outsl %ds:\(%rsi\),\(%dx\) +[ ]*[a-f0-9]+:[ ]*c5 ed 45[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*3f[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*c4 e1 ec 45[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*9b[ ]*fwait +[ ]*[a-f0-9]+:[ ]*c4 e1 ec 45[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*6f[ ]*outsl %ds:\(%rsi\),\(%dx\) +[ ]*[a-f0-9]+:[ ]*c4 e1 ec 45[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*3f[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*c4 e1 ed 45[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*9b[ ]*fwait +[ ]*[a-f0-9]+:[ ]*c4 e1 ed 45[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*6f[ ]*outsl %ds:\(%rsi\),\(%dx\) +[ ]*[a-f0-9]+:[ ]*c4 e1 ed 45[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*3f[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*c5 f8 98[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*9b[ ]*fwait +[ ]*[a-f0-9]+:[ ]*c5 f8 98[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*6f[ ]*outsl %ds:\(%rsi\),\(%dx\) +[ ]*[a-f0-9]+:[ ]*c5 f8 98[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*3f[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*c5 f9 98[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*9b[ ]*fwait +[ ]*[a-f0-9]+:[ ]*c5 f9 98[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*6f[ ]*outsl %ds:\(%rsi\),\(%dx\) +[ ]*[a-f0-9]+:[ ]*c5 f9 98[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*3f[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*c4 e1 f8 98[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*9b[ ]*fwait +[ ]*[a-f0-9]+:[ ]*c4 e1 f8 98[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*6f[ ]*outsl %ds:\(%rsi\),\(%dx\) +[ ]*[a-f0-9]+:[ ]*c4 e1 f8 98[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*3f[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*c4 e1 f9 98[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*9b[ ]*fwait +[ ]*[a-f0-9]+:[ ]*c4 e1 f9 98[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*6f[ ]*outsl %ds:\(%rsi\),\(%dx\) +[ ]*[a-f0-9]+:[ ]*c4 e1 f9 98[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*3f[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*c5 ec 46[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*9b[ ]*fwait +[ ]*[a-f0-9]+:[ ]*c5 ec 46[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*6f[ ]*outsl %ds:\(%rsi\),\(%dx\) +[ ]*[a-f0-9]+:[ ]*c5 ec 46[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*3f[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*c5 ed 46[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*9b[ ]*fwait +[ ]*[a-f0-9]+:[ ]*c5 ed 46[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*6f[ ]*outsl %ds:\(%rsi\),\(%dx\) +[ ]*[a-f0-9]+:[ ]*c5 ed 46[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*3f[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*c4 e1 ec 46[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*9b[ ]*fwait +[ ]*[a-f0-9]+:[ ]*c4 e1 ec 46[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*6f[ ]*outsl %ds:\(%rsi\),\(%dx\) +[ ]*[a-f0-9]+:[ ]*c4 e1 ec 46[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*3f[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*c4 e1 ed 46[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*9b[ ]*fwait +[ ]*[a-f0-9]+:[ ]*c4 e1 ed 46[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*6f[ ]*outsl %ds:\(%rsi\),\(%dx\) +[ ]*[a-f0-9]+:[ ]*c4 e1 ed 46[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*3f[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*c5 ec 47[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*9b[ ]*fwait +[ ]*[a-f0-9]+:[ ]*c5 ec 47[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*6f[ ]*outsl %ds:\(%rsi\),\(%dx\) +[ ]*[a-f0-9]+:[ ]*c5 ec 47[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*3f[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*c5 ed 47[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*9b[ ]*fwait +[ ]*[a-f0-9]+:[ ]*c5 ed 47[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*6f[ ]*outsl %ds:\(%rsi\),\(%dx\) +[ ]*[a-f0-9]+:[ ]*c5 ed 47[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*3f[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*c4 e1 ec 47[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*9b[ ]*fwait +[ ]*[a-f0-9]+:[ ]*c4 e1 ec 47[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*6f[ ]*outsl %ds:\(%rsi\),\(%dx\) +[ ]*[a-f0-9]+:[ ]*c4 e1 ec 47[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*3f[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*c4 e1 ed 47[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*9b[ ]*fwait +[ ]*[a-f0-9]+:[ ]*c4 e1 ed 47[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*6f[ ]*outsl %ds:\(%rsi\),\(%dx\) +[ ]*[a-f0-9]+:[ ]*c4 e1 ed 47[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*3f[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*c5 f8 99[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*9b[ ]*fwait +[ ]*[a-f0-9]+:[ ]*c5 f8 99[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*6f[ ]*outsl %ds:\(%rsi\),\(%dx\) +[ ]*[a-f0-9]+:[ ]*c5 f8 99[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*3f[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*c5 f9 99[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*9b[ ]*fwait +[ ]*[a-f0-9]+:[ ]*c5 f9 99[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*6f[ ]*outsl %ds:\(%rsi\),\(%dx\) +[ ]*[a-f0-9]+:[ ]*c5 f9 99[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*3f[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*c4 e1 f8 99[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*9b[ ]*fwait +[ ]*[a-f0-9]+:[ ]*c4 e1 f8 99[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*6f[ ]*outsl %ds:\(%rsi\),\(%dx\) +[ ]*[a-f0-9]+:[ ]*c4 e1 f8 99[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*3f[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*c4 e1 f9 99[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*9b[ ]*fwait +[ ]*[a-f0-9]+:[ ]*c4 e1 f9 99[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*6f[ ]*outsl %ds:\(%rsi\),\(%dx\) +[ ]*[a-f0-9]+:[ ]*c4 e1 f9 99[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*3f[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*c4 e3 f9 30[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*8f 01[ ]*popq \(%rcx\) +[ ]*[a-f0-9]+:[ ]*c4 e3 f9 30[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*6a 01[ ]*pushq \$0x1 +[ ]*[a-f0-9]+:[ ]*c4 e3 f9 30[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*04 01[ ]*add \$0x1,%al +[ ]*[a-f0-9]+:[ ]*c4 e3 79 30[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*8f 01[ ]*popq \(%rcx\) +[ ]*[a-f0-9]+:[ ]*c4 e3 79 30[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*6a 01[ ]*pushq \$0x1 +[ ]*[a-f0-9]+:[ ]*c4 e3 79 30[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*04 01[ ]*add \$0x1,%al +[ ]*[a-f0-9]+:[ ]*c4 e3 f9 31[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*8f 01[ ]*popq \(%rcx\) +[ ]*[a-f0-9]+:[ ]*c4 e3 f9 31[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*6a 01[ ]*pushq \$0x1 +[ ]*[a-f0-9]+:[ ]*c4 e3 f9 31[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*04 01[ ]*add \$0x1,%al +[ ]*[a-f0-9]+:[ ]*c4 e3 79 31[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*8f 01[ ]*popq \(%rcx\) +[ ]*[a-f0-9]+:[ ]*c4 e3 79 31[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*6a 01[ ]*pushq \$0x1 +[ ]*[a-f0-9]+:[ ]*c4 e3 79 31[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*04 01[ ]*add \$0x1,%al +[ ]*[a-f0-9]+:[ ]*c4 e3 f9 32[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*8f 01[ ]*popq \(%rcx\) +[ ]*[a-f0-9]+:[ ]*c4 e3 f9 32[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*6a 01[ ]*pushq \$0x1 +[ ]*[a-f0-9]+:[ ]*c4 e3 f9 32[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*04 01[ ]*add \$0x1,%al +[ ]*[a-f0-9]+:[ ]*c4 e3 79 32[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*8f 01[ ]*popq \(%rcx\) +[ ]*[a-f0-9]+:[ ]*c4 e3 79 32[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*6a 01[ ]*pushq \$0x1 +[ ]*[a-f0-9]+:[ ]*c4 e3 79 32[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*04 01[ ]*add \$0x1,%al +[ ]*[a-f0-9]+:[ ]*c4 e3 f9 33[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*8f 01[ ]*popq \(%rcx\) +[ ]*[a-f0-9]+:[ ]*c4 e3 f9 33[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*6a 01[ ]*pushq \$0x1 +[ ]*[a-f0-9]+:[ ]*c4 e3 f9 33[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*04 01[ ]*add \$0x1,%al +[ ]*[a-f0-9]+:[ ]*c4 e3 79 33[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*8f 01[ ]*popq \(%rcx\) +[ ]*[a-f0-9]+:[ ]*c4 e3 79 33[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*6a 01[ ]*pushq \$0x1 +[ ]*[a-f0-9]+:[ ]*c4 e3 79 33[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*04 01[ ]*add \$0x1,%al +[ ]*[a-f0-9]+:[ ]*c5 f8 92[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*9b[ ]*fwait +[ ]*[a-f0-9]+:[ ]*c5 f8 92[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*6f[ ]*outsl %ds:\(%rsi\),\(%dx\) +[ ]*[a-f0-9]+:[ ]*c5 f8 92[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*3f[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*c5 f9 92[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*9b[ ]*fwait +[ ]*[a-f0-9]+:[ ]*c5 f9 92[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*6f[ ]*outsl %ds:\(%rsi\),\(%dx\) +[ ]*[a-f0-9]+:[ ]*c5 f9 92[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*3f[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*c5 fb 92[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*9b[ ]*fwait +[ ]*[a-f0-9]+:[ ]*c5 fb 92[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*6f[ ]*outsl %ds:\(%rsi\),\(%dx\) +[ ]*[a-f0-9]+:[ ]*c5 fb 92[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*3f[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*c4 e1 f9 92[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*9b[ ]*fwait +[ ]*[a-f0-9]+:[ ]*c4 e1 f9 92[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*6f[ ]*outsl %ds:\(%rsi\),\(%dx\) +[ ]*[a-f0-9]+:[ ]*c4 e1 f9 92[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*3f[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*c5 f8 93[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*9b[ ]*fwait +[ ]*[a-f0-9]+:[ ]*c5 f8 93[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*6f[ ]*outsl %ds:\(%rsi\),\(%dx\) +[ ]*[a-f0-9]+:[ ]*c5 f8 93[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*3f[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*c5 f9 93[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*9b[ ]*fwait +[ ]*[a-f0-9]+:[ ]*c5 f9 93[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*6f[ ]*outsl %ds:\(%rsi\),\(%dx\) +[ ]*[a-f0-9]+:[ ]*c5 f9 93[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*3f[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*c5 fb 93[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*9b[ ]*fwait +[ ]*[a-f0-9]+:[ ]*c5 fb 93[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*6f[ ]*outsl %ds:\(%rsi\),\(%dx\) +[ ]*[a-f0-9]+:[ ]*c5 fb 93[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*3f[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*c4 e1 f9 93[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*9b[ ]*fwait +[ ]*[a-f0-9]+:[ ]*c4 e1 f9 93[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*6f[ ]*outsl %ds:\(%rsi\),\(%dx\) +[ ]*[a-f0-9]+:[ ]*c4 e1 f9 93[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*3f[ ]*\(bad\)[ ]* #pass diff --git a/gas/testsuite/gas/i386/x86-64-disassem.s b/gas/testsuite/gas/i386/x86-64-disassem.s index 81b0ef3..2e6c157 100644 --- a/gas/testsuite/gas/i386/x86-64-disassem.s +++ b/gas/testsuite/gas/i386/x86-64-disassem.s @@ -1,3 +1,169 @@ .text .byte 0xFF, 0xEF .byte 0xFF, 0xD8 +.fill 0x5, 0x1, 0x90 +.byte 0xC5, 0xEC, 0x4A, 0x9B +.byte 0xC5, 0xEC, 0x4A, 0x6F +.byte 0xC5, 0xEC, 0x4A, 0x3F +.byte 0xC5, 0xED, 0x4A, 0x9B +.byte 0xC5, 0xED, 0x4A, 0x6F +.byte 0xC5, 0xED, 0x4A, 0x3F +.byte 0xC4, 0xE1, 0xEC, 0x4A, 0x9B +.byte 0xC4, 0xE1, 0xEC, 0x4A, 0x6F +.byte 0xC4, 0xE1, 0xEC, 0x4A, 0x3F +.byte 0xC4, 0xE1, 0xED, 0x4A, 0x9B +.byte 0xC4, 0xE1, 0xED, 0x4A, 0x6F +.byte 0xC4, 0xE1, 0xED, 0x4A, 0x3F +.byte 0xC5, 0xEC, 0x41, 0x9B +.byte 0xC5, 0xEC, 0x41, 0x6F +.byte 0xC5, 0xEC, 0x41, 0x3F +.byte 0xC5, 0xED, 0x41, 0x9B +.byte 0xC5, 0xED, 0x41, 0x6F +.byte 0xC5, 0xED, 0x41, 0x3F +.byte 0xC4, 0xE1, 0xEC, 0x41, 0x9B +.byte 0xC4, 0xE1, 0xEC, 0x41, 0x6F +.byte 0xC4, 0xE1, 0xEC, 0x41, 0x3F +.byte 0xC4, 0xE1, 0xED, 0x41, 0x9B +.byte 0xC4, 0xE1, 0xED, 0x41, 0x6F +.byte 0xC4, 0xE1, 0xED, 0x41, 0x3F +.byte 0xC5, 0xEC, 0x42, 0x9B +.byte 0xC5, 0xEC, 0x42, 0x6F +.byte 0xC5, 0xEC, 0x42, 0x3F +.byte 0xC5, 0xED, 0x42, 0x9B +.byte 0xC5, 0xED, 0x42, 0x6F +.byte 0xC5, 0xED, 0x42, 0x3F +.byte 0xC4, 0xE1, 0xEC, 0x42, 0x9B +.byte 0xC4, 0xE1, 0xEC, 0x42, 0x6F +.byte 0xC4, 0xE1, 0xEC, 0x42, 0x3F +.byte 0xC4, 0xE1, 0xED, 0x42, 0x9B +.byte 0xC4, 0xE1, 0xED, 0x42, 0x6F +.byte 0xC4, 0xE1, 0xED, 0x42, 0x3F +.byte 0xC5, 0xEC, 0x4B, 0x9B +.byte 0xC5, 0xEC, 0x4B, 0x6F +.byte 0xC5, 0xEC, 0x4B, 0x3F +.byte 0xC5, 0xED, 0x4B, 0x9B +.byte 0xC5, 0xED, 0x4B, 0x6F +.byte 0xC5, 0xED, 0x4B, 0x3F +.byte 0xC4, 0xE1, 0xEC, 0x4B, 0x9B +.byte 0xC4, 0xE1, 0xEC, 0x4B, 0x6F +.byte 0xC4, 0xE1, 0xEC, 0x4B, 0x3F +.byte 0xC5, 0xF8, 0x44, 0x9B +.byte 0xC5, 0xF8, 0x44, 0x6F +.byte 0xC5, 0xF8, 0x44, 0x3F +.byte 0xC5, 0xF9, 0x44, 0x9B +.byte 0xC5, 0xF9, 0x44, 0x6F +.byte 0xC5, 0xF9, 0x44, 0x3F +.byte 0xC4, 0xE1, 0xF8, 0x44, 0x9B +.byte 0xC4, 0xE1, 0xF8, 0x44, 0x6F +.byte 0xC4, 0xE1, 0xF8, 0x44, 0x3F +.byte 0xC4, 0xE1, 0xF9, 0x44, 0x9B +.byte 0xC4, 0xE1, 0xF9, 0x44, 0x6F +.byte 0xC4, 0xE1, 0xF9, 0x44, 0x3F +.byte 0xC5, 0xEC, 0x45, 0x9B +.byte 0xC5, 0xEC, 0x45, 0x6F +.byte 0xC5, 0xEC, 0x45, 0x3F +.byte 0xC5, 0xED, 0x45, 0x9B +.byte 0xC5, 0xED, 0x45, 0x6F +.byte 0xC5, 0xED, 0x45, 0x3F +.byte 0xC4, 0xE1, 0xEC, 0x45, 0x9B +.byte 0xC4, 0xE1, 0xEC, 0x45, 0x6F +.byte 0xC4, 0xE1, 0xEC, 0x45, 0x3F +.byte 0xC4, 0xE1, 0xED, 0x45, 0x9B +.byte 0xC4, 0xE1, 0xED, 0x45, 0x6F +.byte 0xC4, 0xE1, 0xED, 0x45, 0x3F +.byte 0xC5, 0xF8, 0x98, 0x9B +.byte 0xC5, 0xF8, 0x98, 0x6F +.byte 0xC5, 0xF8, 0x98, 0x3F +.byte 0xC5, 0xF9, 0x98, 0x9B +.byte 0xC5, 0xF9, 0x98, 0x6F +.byte 0xC5, 0xF9, 0x98, 0x3F +.byte 0xC4, 0xE1, 0xF8, 0x98, 0x9B +.byte 0xC4, 0xE1, 0xF8, 0x98, 0x6F +.byte 0xC4, 0xE1, 0xF8, 0x98, 0x3F +.byte 0xC4, 0xE1, 0xF9, 0x98, 0x9B +.byte 0xC4, 0xE1, 0xF9, 0x98, 0x6F +.byte 0xC4, 0xE1, 0xF9, 0x98, 0x3F +.byte 0xC5, 0xEC, 0x46, 0x9B +.byte 0xC5, 0xEC, 0x46, 0x6F +.byte 0xC5, 0xEC, 0x46, 0x3F +.byte 0xC5, 0xED, 0x46, 0x9B +.byte 0xC5, 0xED, 0x46, 0x6F +.byte 0xC5, 0xED, 0x46, 0x3F +.byte 0xC4, 0xE1, 0xEC, 0x46, 0x9B +.byte 0xC4, 0xE1, 0xEC, 0x46, 0x6F +.byte 0xC4, 0xE1, 0xEC, 0x46, 0x3F +.byte 0xC4, 0xE1, 0xED, 0x46, 0x9B +.byte 0xC4, 0xE1, 0xED, 0x46, 0x6F +.byte 0xC4, 0xE1, 0xED, 0x46, 0x3F +.byte 0xC5, 0xEC, 0x47, 0x9B +.byte 0xC5, 0xEC, 0x47, 0x6F +.byte 0xC5, 0xEC, 0x47, 0x3F +.byte 0xC5, 0xED, 0x47, 0x9B +.byte 0xC5, 0xED, 0x47, 0x6F +.byte 0xC5, 0xED, 0x47, 0x3F +.byte 0xC4, 0xE1, 0xEC, 0x47, 0x9B +.byte 0xC4, 0xE1, 0xEC, 0x47, 0x6F +.byte 0xC4, 0xE1, 0xEC, 0x47, 0x3F +.byte 0xC4, 0xE1, 0xED, 0x47, 0x9B +.byte 0xC4, 0xE1, 0xED, 0x47, 0x6F +.byte 0xC4, 0xE1, 0xED, 0x47, 0x3F +.byte 0xC5, 0xF8, 0x99, 0x9B +.byte 0xC5, 0xF8, 0x99, 0x6F +.byte 0xC5, 0xF8, 0x99, 0x3F +.byte 0xC5, 0xF9, 0x99, 0x9B +.byte 0xC5, 0xF9, 0x99, 0x6F +.byte 0xC5, 0xF9, 0x99, 0x3F +.byte 0xC4, 0xE1, 0xF8, 0x99, 0x9B +.byte 0xC4, 0xE1, 0xF8, 0x99, 0x6F +.byte 0xC4, 0xE1, 0xF8, 0x99, 0x3F +.byte 0xC4, 0xE1, 0xF9, 0x99, 0x9B +.byte 0xC4, 0xE1, 0xF9, 0x99, 0x6F +.byte 0xC4, 0xE1, 0xF9, 0x99, 0x3F +.byte 0xC4, 0xE3, 0xF9, 0x30, 0x8F, 0x01 +.byte 0xC4, 0xE3, 0xF9, 0x30, 0x6A, 0x01 +.byte 0xC4, 0xE3, 0xF9, 0x30, 0x04, 0x01 +.byte 0xC4, 0xE3, 0x79, 0x30, 0x8F, 0x01 +.byte 0xC4, 0xE3, 0x79, 0x30, 0x6A, 0x01 +.byte 0xC4, 0xE3, 0x79, 0x30, 0x04, 0x01 +.byte 0xC4, 0xE3, 0xF9, 0x31, 0x8F, 0x01 +.byte 0xC4, 0xE3, 0xF9, 0x31, 0x6A, 0x01 +.byte 0xC4, 0xE3, 0xF9, 0x31, 0x04, 0x01 +.byte 0xC4, 0xE3, 0x79, 0x31, 0x8F, 0x01 +.byte 0xC4, 0xE3, 0x79, 0x31, 0x6A, 0x01 +.byte 0xC4, 0xE3, 0x79, 0x31, 0x04, 0x01 +.byte 0xC4, 0xE3, 0xF9, 0x32, 0x8F, 0x01 +.byte 0xC4, 0xE3, 0xF9, 0x32, 0x6A, 0x01 +.byte 0xC4, 0xE3, 0xF9, 0x32, 0x04, 0x01 +.byte 0xC4, 0xE3, 0x79, 0x32, 0x8F, 0x01 +.byte 0xC4, 0xE3, 0x79, 0x32, 0x6A, 0x01 +.byte 0xC4, 0xE3, 0x79, 0x32, 0x04, 0x01 +.byte 0xC4, 0xE3, 0xF9, 0x33, 0x8F, 0x01 +.byte 0xC4, 0xE3, 0xF9, 0x33, 0x6A, 0x01 +.byte 0xC4, 0xE3, 0xF9, 0x33, 0x04, 0x01 +.byte 0xC4, 0xE3, 0x79, 0x33, 0x8F, 0x01 +.byte 0xC4, 0xE3, 0x79, 0x33, 0x6A, 0x01 +.byte 0xC4, 0xE3, 0x79, 0x33, 0x04, 0x01 +.byte 0xC5, 0xF8, 0x92, 0x9B +.byte 0xC5, 0xF8, 0x92, 0x6F +.byte 0xC5, 0xF8, 0x92, 0x3F +.byte 0xC5, 0xF9, 0x92, 0x9B +.byte 0xC5, 0xF9, 0x92, 0x6F +.byte 0xC5, 0xF9, 0x92, 0x3F +.byte 0xC5, 0xFB, 0x92, 0x9B +.byte 0xC5, 0xFB, 0x92, 0x6F +.byte 0xC5, 0xFB, 0x92, 0x3F +.byte 0xC4, 0xE1, 0xF9, 0x92, 0x9B +.byte 0xC4, 0xE1, 0xF9, 0x92, 0x6F +.byte 0xC4, 0xE1, 0xF9, 0x92, 0x3F +.byte 0xC5, 0xF8, 0x93, 0x9B +.byte 0xC5, 0xF8, 0x93, 0x6F +.byte 0xC5, 0xF8, 0x93, 0x3F +.byte 0xC5, 0xF9, 0x93, 0x9B +.byte 0xC5, 0xF9, 0x93, 0x6F +.byte 0xC5, 0xF9, 0x93, 0x3F +.byte 0xC5, 0xFB, 0x93, 0x9B +.byte 0xC5, 0xFB, 0x93, 0x6F +.byte 0xC5, 0xFB, 0x93, 0x3F +.byte 0xC4, 0xE1, 0xF9, 0x93, 0x9B +.byte 0xC4, 0xE1, 0xF9, 0x93, 0x6F +.byte 0xC4, 0xE1, 0xF9, 0x93, 0x3F |