diff options
author | Andrew Burgess <aburgess@redhat.com> | 2022-05-26 13:11:11 +0100 |
---|---|---|
committer | Andrew Burgess <aburgess@redhat.com> | 2022-05-27 14:12:33 +0100 |
commit | 202be274a41a912f705141d9fb3574f4b0d415e1 (patch) | |
tree | b916bd95dbcd7f04fd60a4c58712642740fc4ace /gas | |
parent | 601598589589734c21bacfc00cd4aed4f3fd1a1f (diff) | |
download | gdb-202be274a41a912f705141d9fb3574f4b0d415e1.zip gdb-202be274a41a912f705141d9fb3574f4b0d415e1.tar.gz gdb-202be274a41a912f705141d9fb3574f4b0d415e1.tar.bz2 |
opcodes/i386: remove trailing whitespace from insns with zero operands
While working on another patch[1] I had need to touch this code in
i386-dis.c:
ins->obufp = ins->mnemonicendp;
for (i = strlen (ins->obuf) + prefix_length; i < 6; i++)
oappend (ins, " ");
oappend (ins, " ");
(*ins->info->fprintf_styled_func)
(ins->info->stream, dis_style_mnemonic, "%s", ins->obuf);
What this code does is add whitespace after the instruction mnemonic
and before the instruction operands.
The problem I ran into when working on this code can be seen by
assembling this input file:
.text
nop
retq
Now, when I disassemble, here's the output. I've replaced trailing
whitespace with '_' so that the issue is clearer:
Disassembly of section .text:
0000000000000000 <.text>:
0: 90 nop
1: c3 retq___
Notice that there's no trailing whitespace after 'nop', but there are
three spaces after 'retq'!
What happens is that instruction mnemonics are emitted into a buffer
instr_info::obuf, then instr_info::mnemonicendp is setup to point to
the '\0' character at the end of the mnemonic.
When we emit the whitespace, this is then added starting at the
mnemonicendp position. Lets consider 'retq', first the buffer is
setup like this:
'r' 'e' 't' 'q' '\0'
Then we add whitespace characters at the '\0', converting the buffer
to this:
'r' 'e' 't' 'q' ' ' ' ' ' ' '\0'
However, 'nop' is actually an alias for 'xchg %rax,%rax', so,
initially, the buffer is setup like this:
'x' 'c' 'h' 'g' '\0'
Then in NOP_Fixup we spot that we have an instruction that is an alias
for 'nop', and adjust the buffer to this:
'n' 'o' 'p' '\0' '\0'
The second '\0' is left over from the original buffer contents.
However, when we rewrite the buffer, we don't afjust mnemonicendp,
which still points at the second '\0' character.
Now, when we insert whitespace we get:
'n' 'o' 'p' '\0' ' ' ' ' ' ' ' ' '\0'
Notice the whitespace is inserted after the first '\0', so, when we
print the buffer, the whitespace is not printed.
The fix for this is pretty easy, I can change NOP_Fixup to adjust
mnemonicendp, but now a bunch of tests start failing, we now produce
whitespace after the 'nop', which the tests don't expect.
So, I could update the tests to expect the whitespace....
...except I'm not a fan of trailing whitespace, so I'd really rather
not.
Turns out, I can pretty easily update the whitespace emitting code to
spot instructions that have zero operands and just not emit any
whitespace in this case. So this is what I've done.
I've left in the fix for NOP_Fixup, I think updating mnemonicendp is
probably a good thing, though this is not really required any more.
I've then updated all the tests that I saw failing to adjust the
expected patterns to account for the change in whitespace.
[1] https://sourceware.org/pipermail/binutils/2022-April/120610.html
Diffstat (limited to 'gas')
203 files changed, 1666 insertions, 1666 deletions
diff --git a/gas/testsuite/gas/i386/387.d b/gas/testsuite/gas/i386/387.d index 145381d..7c0f4b9 100644 --- a/gas/testsuite/gas/i386/387.d +++ b/gas/testsuite/gas/i386/387.d @@ -7,11 +7,11 @@ Disassembly of section .text: 0+ <_387>: -[ ]*[0-9a-f]+: d9 ff[ ]+fcos[ ]* -[ ]*[0-9a-f]+: d9 f5[ ]+fprem1[ ]* -[ ]*[0-9a-f]+: d9 fe[ ]+fsin[ ]* -[ ]*[0-9a-f]+: d9 fb[ ]+fsincos[ ]* +[ ]*[0-9a-f]+: d9 ff[ ]+fcos +[ ]*[0-9a-f]+: d9 f5[ ]+fprem1 +[ ]*[0-9a-f]+: d9 fe[ ]+fsin +[ ]*[0-9a-f]+: d9 fb[ ]+fsincos [ ]*[0-9a-f]+: dd e1[ ]+fucom[ ]+%st\(1\) [ ]*[0-9a-f]+: dd e9[ ]+fucomp[ ]+%st\(1\) -[ ]*[0-9a-f]+: da e9[ ]+fucompp[ ]* +[ ]*[0-9a-f]+: da e9[ ]+fucompp #pass diff --git a/gas/testsuite/gas/i386/adx-intel.d b/gas/testsuite/gas/i386/adx-intel.d index 1de1e8f..cd63afa 100644 --- a/gas/testsuite/gas/i386/adx-intel.d +++ b/gas/testsuite/gas/i386/adx-intel.d @@ -31,11 +31,11 @@ Disassembly of section .text: [ ]*[a-f0-9]+: 67 66 0f 38 f6 42 24 adcx eax,DWORD PTR \[bp\+si\+0x24\] [ ]*[a-f0-9]+: 66 0f 38 f6 d1 adcx edx,ecx [ ]*[a-f0-9]+: 67 66 0f 38 f6 54 f4 adcx edx,DWORD PTR \[si-0xc\] -[ ]*[a-f0-9]+: f4 hlt * +[ ]*[a-f0-9]+: f4 hlt [ ]*[a-f0-9]+: 67 66 0f 38 f6 00 adcx eax,DWORD PTR \[bx\+si\] [ ]*[a-f0-9]+: 67 f3 0f 38 f6 42 24 adox eax,DWORD PTR \[bp\+si\+0x24\] [ ]*[a-f0-9]+: f3 0f 38 f6 d1 adox edx,ecx [ ]*[a-f0-9]+: 67 f3 0f 38 f6 54 f4 adox edx,DWORD PTR \[si-0xc\] -[ ]*[a-f0-9]+: f4 hlt * +[ ]*[a-f0-9]+: f4 hlt [ ]*[a-f0-9]+: 67 f3 0f 38 f6 00 adox eax,DWORD PTR \[bx\+si\] #pass diff --git a/gas/testsuite/gas/i386/adx.d b/gas/testsuite/gas/i386/adx.d index 2c54be3..3de1e8b 100644 --- a/gas/testsuite/gas/i386/adx.d +++ b/gas/testsuite/gas/i386/adx.d @@ -30,11 +30,11 @@ Disassembly of section .text: [ ]*[a-f0-9]+: 67 66 0f 38 f6 42 24 adcx 0x24\(%bp,%si\),%eax [ ]*[a-f0-9]+: 66 0f 38 f6 d1 adcx %ecx,%edx [ ]*[a-f0-9]+: 67 66 0f 38 f6 54 f4 adcx -0xc\(%si\),%edx -[ ]*[a-f0-9]+: f4 hlt * +[ ]*[a-f0-9]+: f4 hlt [ ]*[a-f0-9]+: 67 66 0f 38 f6 00 adcx \(%bx,%si\),%eax [ ]*[a-f0-9]+: 67 f3 0f 38 f6 42 24 adox 0x24\(%bp,%si\),%eax [ ]*[a-f0-9]+: f3 0f 38 f6 d1 adox %ecx,%edx [ ]*[a-f0-9]+: 67 f3 0f 38 f6 54 f4 adox -0xc\(%si\),%edx -[ ]*[a-f0-9]+: f4 hlt * +[ ]*[a-f0-9]+: f4 hlt [ ]*[a-f0-9]+: 67 f3 0f 38 f6 00 adox \(%bx,%si\),%eax #pass diff --git a/gas/testsuite/gas/i386/align-branch-4a.d b/gas/testsuite/gas/i386/align-branch-4a.d index 2b1e0b1..4c46c85 100644 --- a/gas/testsuite/gas/i386/align-branch-4a.d +++ b/gas/testsuite/gas/i386/align-branch-4a.d @@ -20,7 +20,7 @@ Disassembly of section .text: 16: 89 75 f4 mov %esi,-0xc\(%ebp\) 19: 89 75 f4 mov %esi,-0xc\(%ebp\) 1c: 89 75 f4 mov %esi,-0xc\(%ebp\) - 1f: c3 ret + 1f: c3 ret 20: 55 push %ebp 21: 55 push %ebp 22: 64 a3 01 00 00 00 mov %eax,%fs:0x1 diff --git a/gas/testsuite/gas/i386/align-branch-4b.d b/gas/testsuite/gas/i386/align-branch-4b.d index c7690d3..6745c5a 100644 --- a/gas/testsuite/gas/i386/align-branch-4b.d +++ b/gas/testsuite/gas/i386/align-branch-4b.d @@ -20,7 +20,7 @@ Disassembly of section .text: 17: 89 75 f4 mov %esi,-0xc\(%ebp\) 1a: 89 75 f4 mov %esi,-0xc\(%ebp\) 1d: 89 75 f4 mov %esi,-0xc\(%ebp\) - 20: c3 ret + 20: c3 ret 21: 3e 3e 3e 55 ds ds ds push %ebp 25: 55 push %ebp 26: 64 a3 01 00 00 00 mov %eax,%fs:0x1 diff --git a/gas/testsuite/gas/i386/align-branch-6.d b/gas/testsuite/gas/i386/align-branch-6.d index 29e2787..46e245d 100644 --- a/gas/testsuite/gas/i386/align-branch-6.d +++ b/gas/testsuite/gas/i386/align-branch-6.d @@ -18,5 +18,5 @@ Disassembly of section .text: +[a-f0-9]+: 8d b4 26 00 00 00 00 lea 0x0\(%esi,%eiz,1\),%esi +[a-f0-9]+: 8d 74 26 00 lea 0x0\(%esi,%eiz,1\),%esi +[a-f0-9]+: f2 73 bf bnd jae 0 <_start> - +[a-f0-9]+: c3 ret + +[a-f0-9]+: c3 ret #pass diff --git a/gas/testsuite/gas/i386/amd.d b/gas/testsuite/gas/i386/amd.d index a164c06..0ccfcf1 100644 --- a/gas/testsuite/gas/i386/amd.d +++ b/gas/testsuite/gas/i386/amd.d @@ -8,7 +8,7 @@ Disassembly of section .text: 0+ <foo>: [ ]*[a-f0-9]+: 0f 0d 03 prefetch \(%ebx\) [ ]*[a-f0-9]+: 0f 0d 0c 75 00 10 00 00 prefetchw 0x1000\(,%esi,2\) -[ ]*[a-f0-9]+: 0f 0e femms +[ ]*[a-f0-9]+: 0f 0e femms [ ]*[a-f0-9]+: 0f 0f 00 bf pavgusb \(%eax\),%mm0 [ ]*[a-f0-9]+: 0f 0f 48 02 1d pf2id 0x2\(%eax\),%mm1 [ ]*[a-f0-9]+: 0f 0f 90 00 01 00 00 ae pfacc 0x100\(%eax\),%mm2 @@ -28,11 +28,11 @@ Disassembly of section .text: [ ]*[a-f0-9]+: 0f 0f c5 aa pfsubr %mm5,%mm0 [ ]*[a-f0-9]+: 0f 0f ce 0d pi2fd %mm6,%mm1 [ ]*[a-f0-9]+: 0f 0f d7 b7 pmulhrw %mm7,%mm2 -[ ]*[a-f0-9]+: 0f 05 syscall -[ ]*[a-f0-9]+: 0f 07 sysret -[ ]*[a-f0-9]+: 0f 01 f9 rdtscp -[ ]*[a-f0-9]+: 2e 0f \(bad\) +[ ]*[a-f0-9]+: 0f 05 syscall +[ ]*[a-f0-9]+: 0f 07 sysret +[ ]*[a-f0-9]+: 0f 01 f9 rdtscp +[ ]*[a-f0-9]+: 2e 0f \(bad\) [ ]*[a-f0-9]+: 0f 54 c3 andps %xmm3,%xmm0 [ ]*[a-f0-9]+: 07 pop %es -[ ]*[a-f0-9]+: c3 ret +[ ]*[a-f0-9]+: c3 ret #pass diff --git a/gas/testsuite/gas/i386/arch-10.d b/gas/testsuite/gas/i386/arch-10.d index f97698e..d89a31e 100644 --- a/gas/testsuite/gas/i386/arch-10.d +++ b/gas/testsuite/gas/i386/arch-10.d @@ -9,7 +9,7 @@ Disassembly of section .text: 0+ <.text>: [ ]*[a-f0-9]+: 0f 44 d8 cmove %eax,%ebx [ ]*[a-f0-9]+: 0f ae 38 clflush \(%eax\) -[ ]*[a-f0-9]+: 0f 05 syscall +[ ]*[a-f0-9]+: 0f 05 syscall [ ]*[a-f0-9]+: 0f fc dc paddb %mm4,%mm3 [ ]*[a-f0-9]+: f3 0f 58 dc addss %xmm4,%xmm3 [ ]*[a-f0-9]+: f2 0f 58 dc addsd %xmm4,%xmm3 @@ -17,10 +17,10 @@ Disassembly of section .text: [ ]*[a-f0-9]+: 66 0f 38 01 dc phaddw %xmm4,%xmm3 [ ]*[a-f0-9]+: 66 0f 38 41 d9 phminposuw %xmm1,%xmm3 [ ]*[a-f0-9]+: f2 0f 38 f1 d9 crc32 %ecx,%ebx -[ ]*[a-f0-9]+: c5 fc 77 vzeroall -[ ]*[a-f0-9]+: 0f 01 c4 vmxoff -[ ]*[a-f0-9]+: 0f 37 getsec -[ ]*[a-f0-9]+: 0f 01 d0 xgetbv +[ ]*[a-f0-9]+: c5 fc 77 vzeroall +[ ]*[a-f0-9]+: 0f 01 c4 vmxoff +[ ]*[a-f0-9]+: 0f 37 getsec +[ ]*[a-f0-9]+: 0f 01 d0 xgetbv [ ]*[a-f0-9]+: 0f ae 31 xsaveopt \(%ecx\) [ ]*[a-f0-9]+: 66 0f 38 dc 01 aesenc \(%ecx\),%xmm0 [ ]*[a-f0-9]+: 66 0f 3a 44 c1 08 pclmulqdq \$0x8,%xmm1,%xmm0 @@ -29,12 +29,12 @@ Disassembly of section .text: [ ]*[a-f0-9]+: c4 e2 c9 98 d4 vfmadd132pd %xmm4,%xmm6,%xmm2 [ ]*[a-f0-9]+: 0f 38 f0 19 movbe \(%ecx\),%ebx [ ]*[a-f0-9]+: 66 0f 38 80 19 invept \(%ecx\),%ebx -[ ]*[a-f0-9]+: 0f 01 f9 rdtscp +[ ]*[a-f0-9]+: 0f 01 f9 rdtscp [ ]*[a-f0-9]+: 0f 0d 0c 75 00 10 00 00 prefetchw 0x1000\(,%esi,2\) [ ]*[a-f0-9]+: f2 0f 79 ca insertq %xmm2,%xmm1 -[ ]*[a-f0-9]+: 0f 01 da vmload +[ ]*[a-f0-9]+: 0f 01 da vmload [ ]*[a-f0-9]+: f3 0f bd d9 lzcnt %ecx,%ebx -[ ]*[a-f0-9]+: 0f a7 c0 xstore-rng +[ ]*[a-f0-9]+: 0f a7 c0 xstore-rng [ ]*[a-f0-9]+: 0f 1f 00 nopl \(%eax\) [ ]*[a-f0-9]+: c4 e2 60 f3 c9 blsr %ecx,%ebx [ ]*[a-f0-9]+: 8f e9 60 01 c9 blcfill %ecx,%ebx diff --git a/gas/testsuite/gas/i386/arch-13.d b/gas/testsuite/gas/i386/arch-13.d index 7a1278f..17a5f3f 100644 --- a/gas/testsuite/gas/i386/arch-13.d +++ b/gas/testsuite/gas/i386/arch-13.d @@ -7,14 +7,14 @@ Disassembly of section .text: 0+ <.text>: -[ ]*[a-f0-9]+: 0f 01 ca clac -[ ]*[a-f0-9]+: 0f 01 cb stac +[ ]*[a-f0-9]+: 0f 01 ca clac +[ ]*[a-f0-9]+: 0f 01 cb stac [ ]*[a-f0-9]+: 66 0f 38 f6 ca adcx %edx,%ecx [ ]*[a-f0-9]+: f3 0f 38 f6 ca adox %edx,%ecx [ ]*[a-f0-9]+: 0f c7 f8 rdseed %eax -[ ]*[a-f0-9]+: 0f 01 fc clzero[ ]* -[ ]*[a-f0-9]+: 0f 01 fc clzero[ ]* -[ ]*[a-f0-9]+: 67 0f 01 fc addr16 clzero[ ]* +[ ]*[a-f0-9]+: 0f 01 fc clzero +[ ]*[a-f0-9]+: 0f 01 fc clzero +[ ]*[a-f0-9]+: 67 0f 01 fc addr16 clzero [ ]*[a-f0-9]+: 0f c7 21 xsavec \(%ecx\) [ ]*[a-f0-9]+: 0f c7 29 xsaves \(%ecx\) [ ]*[a-f0-9]+: 66 0f ae 39 clflushopt \(%ecx\) @@ -25,10 +25,10 @@ Disassembly of section .text: [ ]*[a-f0-9]+: 0f 01 fb mwaitx %eax,%ecx,%ebx [ ]*[a-f0-9]+:[ ]*66 0f ae 31[ ]*clwb \(%ecx\) [ ]*[a-f0-9]+:[ ]*66 0f ae b4 f4 c0 1d fe ff[ ]*clwb -0x1e240\(%esp,%esi,8\) -[ ]*[a-f0-9]+:[ ]*f3 0f 01 fa[ ]*mcommit[ ]* +[ ]*[a-f0-9]+:[ ]*f3 0f 01 fa[ ]*mcommit [ ]*[a-f0-9]+:[ ]*f3 0f c7 f8[ ]*rdpid %eax -[ ]*[a-f0-9]+:[ ]*0f 01 fd[ ]*rdpru[ ]* -[ ]*[a-f0-9]+:[ ]*f3 0f 01 d9[ ]*vmgexit[ ]* -[ ]*[a-f0-9]+:[ ]*f2 0f 01 d9[ ]*vmgexit[ ]* -[ ]*[a-f0-9]+:[ ]*f3 0f 09[ ]*wbnoinvd[ ]* +[ ]*[a-f0-9]+:[ ]*0f 01 fd[ ]*rdpru +[ ]*[a-f0-9]+:[ ]*f3 0f 01 d9[ ]*vmgexit +[ ]*[a-f0-9]+:[ ]*f2 0f 01 d9[ ]*vmgexit +[ ]*[a-f0-9]+:[ ]*f3 0f 09[ ]*wbnoinvd #pass diff --git a/gas/testsuite/gas/i386/arch-14.d b/gas/testsuite/gas/i386/arch-14.d index 55edf27..2d269af 100644 --- a/gas/testsuite/gas/i386/arch-14.d +++ b/gas/testsuite/gas/i386/arch-14.d @@ -6,9 +6,9 @@ Disassembly of section .text: 0+ <.text>: -[ ]*[0-9a-f]+:[ ]+0f 01 fe[ ]+invlpgb[ ]* -[ ]*[0-9a-f]+:[ ]+0f 01 ff[ ]+tlbsync[ ]* -[ ]*[a-f0-9]+:[ ]*f2 0f 01 ff[ ]+pvalidate[ ]* -[ ]*[a-f0-9]+:[ ]*0f 01 ee[ ]+rdpkru[ ]* -[ ]*[a-f0-9]+:[ ]*0f 01 ef[ ]+wrpkru[ ]* +[ ]*[0-9a-f]+:[ ]+0f 01 fe[ ]+invlpgb +[ ]*[0-9a-f]+:[ ]+0f 01 ff[ ]+tlbsync +[ ]*[a-f0-9]+:[ ]*f2 0f 01 ff[ ]+pvalidate +[ ]*[a-f0-9]+:[ ]*0f 01 ee[ ]+rdpkru +[ ]*[a-f0-9]+:[ ]*0f 01 ef[ ]+wrpkru #pass diff --git a/gas/testsuite/gas/i386/arch-4.d b/gas/testsuite/gas/i386/arch-4.d index dc2c05d..54fde15 100644 --- a/gas/testsuite/gas/i386/arch-4.d +++ b/gas/testsuite/gas/i386/arch-4.d @@ -8,7 +8,7 @@ Disassembly of section .text: 0+ <.text>: [ ]*[a-f0-9]+: 0f ff 07 [ ]*ud0 \(%edi\),%eax [ ]*[a-f0-9]+: 0f b9 07 [ ]*ud1 \(%edi\),%eax -[ ]*[a-f0-9]+: 0f 0b ud2 -[ ]*[a-f0-9]+: 0f 0b ud2 +[ ]*[a-f0-9]+: 0f 0b ud2 +[ ]*[a-f0-9]+: 0f 0b ud2 [ ]*[a-f0-9]+: 0f b9 07 [ ]*ud1 \(%edi\),%eax #pass diff --git a/gas/testsuite/gas/i386/arch-9.d b/gas/testsuite/gas/i386/arch-9.d index 6736af8..858dcf2 100644 --- a/gas/testsuite/gas/i386/arch-9.d +++ b/gas/testsuite/gas/i386/arch-9.d @@ -6,5 +6,5 @@ Disassembly of section .text: 0+ <.text>: -[ ]*[a-f0-9]+: 0f a7 c0 xstore-rng +[ ]*[a-f0-9]+: 0f a7 c0 xstore-rng #pass diff --git a/gas/testsuite/gas/i386/avx-16bit.d b/gas/testsuite/gas/i386/avx-16bit.d index c1c6929..0c306bf 100644 --- a/gas/testsuite/gas/i386/avx-16bit.d +++ b/gas/testsuite/gas/i386/avx-16bit.d @@ -7,8 +7,8 @@ Disassembly of section .text: 0+ <_start>: -[ ]*[a-f0-9]+: c5 fc 77 vzeroall -[ ]*[a-f0-9]+: c5 f8 77 vzeroupper +[ ]*[a-f0-9]+: c5 fc 77 vzeroall +[ ]*[a-f0-9]+: c5 f8 77 vzeroupper [ ]*[a-f0-9]+: 67 c5 f8 ae 11 vldmxcsr \(%ecx\) [ ]*[a-f0-9]+: 67 c5 f8 ae 19 vstmxcsr \(%ecx\) [ ]*[a-f0-9]+: 67 c4 e2 5d 2d 31 vmaskmovpd \(%ecx\),%ymm4,%ymm6 diff --git a/gas/testsuite/gas/i386/avx-gather-intel.d b/gas/testsuite/gas/i386/avx-gather-intel.d index 7493d52..e4f0d21 100644 --- a/gas/testsuite/gas/i386/avx-gather-intel.d +++ b/gas/testsuite/gas/i386/avx-gather-intel.d @@ -1,4 +1,4 @@ -#as: +#as: #objdump: -dwMintel #name: i386 AVX GATHER insns (Intel disassembly) #source: avx-gather.s diff --git a/gas/testsuite/gas/i386/avx-gather.d b/gas/testsuite/gas/i386/avx-gather.d index 8ad267f..a255253 100644 --- a/gas/testsuite/gas/i386/avx-gather.d +++ b/gas/testsuite/gas/i386/avx-gather.d @@ -1,4 +1,4 @@ -#as: +#as: #objdump: -dw #name: i386 AVX GATHER insns diff --git a/gas/testsuite/gas/i386/avx-intel.d b/gas/testsuite/gas/i386/avx-intel.d index 85a329b..7816227 100644 --- a/gas/testsuite/gas/i386/avx-intel.d +++ b/gas/testsuite/gas/i386/avx-intel.d @@ -7,8 +7,8 @@ Disassembly of section .text: 0+ <_start>: -[ ]*[a-f0-9]+: c5 fc 77 vzeroall -[ ]*[a-f0-9]+: c5 f8 77 vzeroupper +[ ]*[a-f0-9]+: c5 fc 77 vzeroall +[ ]*[a-f0-9]+: c5 f8 77 vzeroupper [ ]*[a-f0-9]+: c5 f8 ae 11 vldmxcsr DWORD PTR \[ecx\] [ ]*[a-f0-9]+: c5 f8 ae 19 vstmxcsr DWORD PTR \[ecx\] [ ]*[a-f0-9]+: c4 e2 5d 2d 31 vmaskmovpd ymm6,ymm4,YMMWORD PTR \[ecx\] diff --git a/gas/testsuite/gas/i386/avx-wig.d b/gas/testsuite/gas/i386/avx-wig.d index 7a8f947..9cab639 100644 --- a/gas/testsuite/gas/i386/avx-wig.d +++ b/gas/testsuite/gas/i386/avx-wig.d @@ -316,6 +316,6 @@ Disassembly of section .text: +[a-f0-9]+: c4 e1 cc 14 d4 vunpcklps %ymm4,%ymm6,%ymm2 +[a-f0-9]+: c4 e1 cd 57 d4 vxorpd %ymm4,%ymm6,%ymm2 +[a-f0-9]+: c4 e1 cc 57 d4 vxorps %ymm4,%ymm6,%ymm2 - +[a-f0-9]+: c4 e1 fc 77 vzeroall - +[a-f0-9]+: c4 e1 f8 77 vzeroupper + +[a-f0-9]+: c4 e1 fc 77 vzeroall + +[a-f0-9]+: c4 e1 f8 77 vzeroupper #pass diff --git a/gas/testsuite/gas/i386/avx.d b/gas/testsuite/gas/i386/avx.d index 4741c45..9bbfbba 100644 --- a/gas/testsuite/gas/i386/avx.d +++ b/gas/testsuite/gas/i386/avx.d @@ -6,8 +6,8 @@ Disassembly of section .text: 0+ <_start>: -[ ]*[a-f0-9]+: c5 fc 77 vzeroall -[ ]*[a-f0-9]+: c5 f8 77 vzeroupper +[ ]*[a-f0-9]+: c5 fc 77 vzeroall +[ ]*[a-f0-9]+: c5 f8 77 vzeroupper [ ]*[a-f0-9]+: c5 f8 ae 11 vldmxcsr \(%ecx\) [ ]*[a-f0-9]+: c5 f8 ae 19 vstmxcsr \(%ecx\) [ ]*[a-f0-9]+: c4 e2 5d 2d 31 vmaskmovpd \(%ecx\),%ymm4,%ymm6 diff --git a/gas/testsuite/gas/i386/avx512f-nondef.d b/gas/testsuite/gas/i386/avx512f-nondef.d index 07ffe60..a062fe3 100644 --- a/gas/testsuite/gas/i386/avx512f-nondef.d +++ b/gas/testsuite/gas/i386/avx512f-nondef.d @@ -1,4 +1,4 @@ -#as: +#as: #objdump: -dw #name: i386 AVX512F insns with nondefault values in ignored / reserved bits @@ -16,7 +16,7 @@ Disassembly of section .text: [ ]*[a-f0-9]+: 62 f2 7e 48 31 72 7f vpmovdb %zmm6,0x7f0\(%edx\) [ ]*[a-f0-9]+: 62 f2 7e 58 31 72 7f vpmovdb %zmm6,0x7f0\(%edx\)\{bad\} [ ]*[a-f0-9]+: 62 f1 7c 88 58 \(bad\) -[ ]*[a-f0-9]+: c3 ret * +[ ]*[a-f0-9]+: c3 ret [ ]*[a-f0-9]+: 62 f2 7d 4f 92 01 vgatherdps \(bad\),%zmm0\{%k7\} [ ]*[a-f0-9]+: 67 62 f2 7d 4f 92 01 addr16 vgatherdps \(bad\),%zmm0\{%k7\} [ ]*[a-f0-9]+: 62 f2 7d cf 92 04 08 vgatherdps \(%eax,%zmm1(,1)?\),%zmm0\{%k7\}\{z\}/\(bad\) diff --git a/gas/testsuite/gas/i386/bmi-intel.d b/gas/testsuite/gas/i386/bmi-intel.d index 38eb5b4..baaa1ce 100644 --- a/gas/testsuite/gas/i386/bmi-intel.d +++ b/gas/testsuite/gas/i386/bmi-intel.d @@ -1,4 +1,4 @@ -#as: +#as: #objdump: -dwMintel #name: i386 BMI insns (Intel disassembly) #source: bmi.s diff --git a/gas/testsuite/gas/i386/bmi.d b/gas/testsuite/gas/i386/bmi.d index 1cded8b..1f468d3 100644 --- a/gas/testsuite/gas/i386/bmi.d +++ b/gas/testsuite/gas/i386/bmi.d @@ -1,4 +1,4 @@ -#as: +#as: #objdump: -dw #name: i386 BMI insns diff --git a/gas/testsuite/gas/i386/bmi2-intel.d b/gas/testsuite/gas/i386/bmi2-intel.d index fa12a0c..438443b 100644 --- a/gas/testsuite/gas/i386/bmi2-intel.d +++ b/gas/testsuite/gas/i386/bmi2-intel.d @@ -1,4 +1,4 @@ -#as: +#as: #objdump: -dwMintel #name: i386 BMI2 insns (Intel disassembly) #source: bmi2.s diff --git a/gas/testsuite/gas/i386/bmi2.d b/gas/testsuite/gas/i386/bmi2.d index d52e4d1..9f59ca3 100644 --- a/gas/testsuite/gas/i386/bmi2.d +++ b/gas/testsuite/gas/i386/bmi2.d @@ -1,4 +1,4 @@ -#as: +#as: #objdump: -dw #name: i386 BMI2 insns diff --git a/gas/testsuite/gas/i386/cet-intel.d b/gas/testsuite/gas/i386/cet-intel.d index 787d6d2..27e6737 100644 --- a/gas/testsuite/gas/i386/cet-intel.d +++ b/gas/testsuite/gas/i386/cet-intel.d @@ -10,40 +10,40 @@ Disassembly of section .text: 0+ <_start>: +[a-f0-9]+: f3 0f ae e9 incsspd ecx +[a-f0-9]+: f3 0f 1e c9 rdsspd ecx - +[a-f0-9]+: f3 0f 01 ea saveprevssp + +[a-f0-9]+: f3 0f 01 ea saveprevssp +[a-f0-9]+: f3 0f 01 29 rstorssp QWORD PTR \[ecx\] +[a-f0-9]+: 0f 38 f6 04 02 wrssd \[edx\+eax\*1\],eax +[a-f0-9]+: 66 0f 38 f5 14 2f wrussd \[edi\+ebp\*1\],edx - +[a-f0-9]+: f3 0f 01 e8 setssbsy + +[a-f0-9]+: f3 0f 01 e8 setssbsy +[a-f0-9]+: f3 0f ae 34 04 clrssbsy QWORD PTR \[esp\+eax\*1\] - +[a-f0-9]+: f3 0f 1e fa endbr64 - +[a-f0-9]+: f3 0f 1e fb endbr32 + +[a-f0-9]+: f3 0f 1e fa endbr64 + +[a-f0-9]+: f3 0f 1e fb endbr32 +[a-f0-9]+: f3 0f ae e9 incsspd ecx +[a-f0-9]+: f3 0f 1e c9 rdsspd ecx - +[a-f0-9]+: f3 0f 01 ea saveprevssp + +[a-f0-9]+: f3 0f 01 ea saveprevssp +[a-f0-9]+: f3 0f 01 6c 01 90 rstorssp QWORD PTR \[ecx\+eax\*1-0x70\] +[a-f0-9]+: 0f 38 f6 02 wrssd \[edx\],eax +[a-f0-9]+: 0f 38 f6 10 wrssd \[eax\],edx +[a-f0-9]+: 66 0f 38 f5 14 2f wrussd \[edi\+ebp\*1\],edx +[a-f0-9]+: 66 0f 38 f5 3c 0e wrussd \[esi\+ecx\*1\],edi - +[a-f0-9]+: f3 0f 01 e8 setssbsy + +[a-f0-9]+: f3 0f 01 e8 setssbsy +[a-f0-9]+: f3 0f ae 34 44 clrssbsy QWORD PTR \[esp\+eax\*2\] - +[a-f0-9]+: f3 0f 1e fa endbr64 - +[a-f0-9]+: f3 0f 1e fb endbr32 + +[a-f0-9]+: f3 0f 1e fa endbr64 + +[a-f0-9]+: f3 0f 1e fb endbr32 +[a-f0-9]+: f3 0f ae e9 incsspd ecx +[a-f0-9]+: f3 0f 1e c9 rdsspd ecx - +[a-f0-9]+: f3 0f 01 ea saveprevssp * + +[a-f0-9]+: f3 0f 01 ea saveprevssp +[a-f0-9]+: 67 f3 0f 01 6c 01 rstorssp QWORD PTR \[si\+0x1\] - +[a-f0-9]+: 90 nop * + +[a-f0-9]+: 90 nop +[a-f0-9]+: 67 0f 38 f6 02 wrssd \[bp\+si\],eax +[a-f0-9]+: 67 0f 38 f6 10 wrssd \[bx\+si\],edx +[a-f0-9]+: 67 66 0f 38 f5 14 wrussd \[si\],edx - +[a-f0-9]+: 2f das * + +[a-f0-9]+: 2f das +[a-f0-9]+: 67 66 0f 38 f5 3c wrussd \[si\],edi +[a-f0-9]+: 0e push cs - +[a-f0-9]+: f3 0f 01 e8 setssbsy * + +[a-f0-9]+: f3 0f 01 e8 setssbsy +[a-f0-9]+: 67 f3 0f ae 34 clrssbsy QWORD PTR \[si\] +[a-f0-9]+: 44 inc esp - +[a-f0-9]+: f3 0f 1e fa endbr64 * - +[a-f0-9]+: f3 0f 1e fb endbr32 * + +[a-f0-9]+: f3 0f 1e fa endbr64 + +[a-f0-9]+: f3 0f 1e fb endbr32 #pass diff --git a/gas/testsuite/gas/i386/cet.d b/gas/testsuite/gas/i386/cet.d index b0a23b8..7869ab8 100644 --- a/gas/testsuite/gas/i386/cet.d +++ b/gas/testsuite/gas/i386/cet.d @@ -8,40 +8,40 @@ Disassembly of section .text: 0+ <_start>: +[a-f0-9]+: f3 0f ae e9 incsspd %ecx +[a-f0-9]+: f3 0f 1e c9 rdsspd %ecx - +[a-f0-9]+: f3 0f 01 ea saveprevssp + +[a-f0-9]+: f3 0f 01 ea saveprevssp +[a-f0-9]+: f3 0f 01 29 rstorssp \(%ecx\) +[a-f0-9]+: 0f 38 f6 04 02 wrssd %eax,\(%edx,%eax,1\) +[a-f0-9]+: 66 0f 38 f5 14 2f wrussd %edx,\(%edi,%ebp,1\) - +[a-f0-9]+: f3 0f 01 e8 setssbsy + +[a-f0-9]+: f3 0f 01 e8 setssbsy +[a-f0-9]+: f3 0f ae 34 04 clrssbsy \(%esp,%eax,1\) - +[a-f0-9]+: f3 0f 1e fa endbr64 - +[a-f0-9]+: f3 0f 1e fb endbr32 + +[a-f0-9]+: f3 0f 1e fa endbr64 + +[a-f0-9]+: f3 0f 1e fb endbr32 +[a-f0-9]+: f3 0f ae e9 incsspd %ecx +[a-f0-9]+: f3 0f 1e c9 rdsspd %ecx - +[a-f0-9]+: f3 0f 01 ea saveprevssp + +[a-f0-9]+: f3 0f 01 ea saveprevssp +[a-f0-9]+: f3 0f 01 6c 01 90 rstorssp -0x70\(%ecx,%eax,1\) +[a-f0-9]+: 0f 38 f6 02 wrssd %eax,\(%edx\) +[a-f0-9]+: 0f 38 f6 10 wrssd %edx,\(%eax\) +[a-f0-9]+: 66 0f 38 f5 14 2f wrussd %edx,\(%edi,%ebp,1\) +[a-f0-9]+: 66 0f 38 f5 3c 0e wrussd %edi,\(%esi,%ecx,1\) - +[a-f0-9]+: f3 0f 01 e8 setssbsy + +[a-f0-9]+: f3 0f 01 e8 setssbsy +[a-f0-9]+: f3 0f ae 34 44 clrssbsy \(%esp,%eax,2\) - +[a-f0-9]+: f3 0f 1e fa endbr64 - +[a-f0-9]+: f3 0f 1e fb endbr32 + +[a-f0-9]+: f3 0f 1e fa endbr64 + +[a-f0-9]+: f3 0f 1e fb endbr32 +[a-f0-9]+: f3 0f ae e9 incsspd %ecx +[a-f0-9]+: f3 0f 1e c9 rdsspd %ecx - +[a-f0-9]+: f3 0f 01 ea saveprevssp * + +[a-f0-9]+: f3 0f 01 ea saveprevssp +[a-f0-9]+: 67 f3 0f 01 6c 01 rstorssp 0x1\(%si\) - +[a-f0-9]+: 90 nop * + +[a-f0-9]+: 90 nop +[a-f0-9]+: 67 0f 38 f6 02 wrssd %eax,\(%bp,%si\) +[a-f0-9]+: 67 0f 38 f6 10 wrssd %edx,\(%bx,%si\) +[a-f0-9]+: 67 66 0f 38 f5 14 wrussd %edx,\(%si\) - +[a-f0-9]+: 2f das * + +[a-f0-9]+: 2f das +[a-f0-9]+: 67 66 0f 38 f5 3c wrussd %edi,\(%si\) +[a-f0-9]+: 0e push %cs - +[a-f0-9]+: f3 0f 01 e8 setssbsy * + +[a-f0-9]+: f3 0f 01 e8 setssbsy +[a-f0-9]+: 67 f3 0f ae 34 clrssbsy \(%si\) +[a-f0-9]+: 44 inc %esp - +[a-f0-9]+: f3 0f 1e fa endbr64 * - +[a-f0-9]+: f3 0f 1e fb endbr32 * + +[a-f0-9]+: f3 0f 1e fa endbr64 + +[a-f0-9]+: f3 0f 1e fb endbr32 #pass diff --git a/gas/testsuite/gas/i386/clzero.d b/gas/testsuite/gas/i386/clzero.d index 369873f..771eb2f 100644 --- a/gas/testsuite/gas/i386/clzero.d +++ b/gas/testsuite/gas/i386/clzero.d @@ -7,5 +7,5 @@ Disassembly of section \.text: 00000000 <_start>: -[ ]*[a-f0-9]+: 0f 01 fc clzero +[ ]*[a-f0-9]+: 0f 01 fc clzero #pass diff --git a/gas/testsuite/gas/i386/disassem.d b/gas/testsuite/gas/i386/disassem.d index be821ad..ac52818 100644 --- a/gas/testsuite/gas/i386/disassem.d +++ b/gas/testsuite/gas/i386/disassem.d @@ -7,350 +7,350 @@ Disassembly of section \.text: 0+ <\.text>: -[ ]*[a-f0-9]+:[ ]*ff[ ]*\(bad\) +[ ]*[a-f0-9]+:[ ]*ff[ ]*\(bad\) [ ]*[a-f0-9]+:[ ]*ef[ ]*out %eax,\(%dx\) -[ ]*[a-f0-9]+:[ ]*ff[ ]*\(bad\) +[ ]*[a-f0-9]+:[ ]*ff[ ]*\(bad\) [ ]*[a-f0-9]+:[ ]*d8 90 90 90 90 90[ ]*fcoms -0x6f6f6f70\(%eax\) -[ ]*[a-f0-9]+:[ ]*c5 ec 4a[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*c5 ec 4a[ ]*\(bad\) [ ]*[a-f0-9]+:[ ]*9b[ ]*fwait -[ ]*[a-f0-9]+:[ ]*c5 ec 4a[ ]*\(bad\)[ ]* +[ ]*[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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*c4 e1 f9 99[ ]*\(bad\) +[ ]*[a-f0-9]+:[ ]*3f[ ]*aas +[ ]*[a-f0-9]+:[ ]*c4 e3 f9 30[ ]*\(bad\) [ ]*[a-f0-9]+:[ ]*8f 01[ ]*pop \(%ecx\) -[ ]*[a-f0-9]+:[ ]*c4 e3 f9 30[ ]*\(bad\)[ ]* +[ ]*[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]+:[ ]*c4 e3 f9 30[ ]*\(bad\) [ ]*[a-f0-9]+:[ ]*04 01[ ]*add \$0x1,%al -[ ]*[a-f0-9]+:[ ]*c4 e3 79 30[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*c4 e3 79 30[ ]*\(bad\) [ ]*[a-f0-9]+:[ ]*8f 01[ ]*pop \(%ecx\) -[ ]*[a-f0-9]+:[ ]*c4 e3 79 30[ ]*\(bad\)[ ]* +[ ]*[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]+:[ ]*c4 e3 79 30[ ]*\(bad\) [ ]*[a-f0-9]+:[ ]*04 01[ ]*add \$0x1,%al -[ ]*[a-f0-9]+:[ ]*c4 e3 f9 31[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*c4 e3 f9 31[ ]*\(bad\) [ ]*[a-f0-9]+:[ ]*8f 01[ ]*pop \(%ecx\) -[ ]*[a-f0-9]+:[ ]*c4 e3 f9 31[ ]*\(bad\)[ ]* +[ ]*[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]+:[ ]*c4 e3 f9 31[ ]*\(bad\) [ ]*[a-f0-9]+:[ ]*04 01[ ]*add \$0x1,%al -[ ]*[a-f0-9]+:[ ]*c4 e3 79 31[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*c4 e3 79 31[ ]*\(bad\) [ ]*[a-f0-9]+:[ ]*8f 01[ ]*pop \(%ecx\) -[ ]*[a-f0-9]+:[ ]*c4 e3 79 31[ ]*\(bad\)[ ]* +[ ]*[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]+:[ ]*c4 e3 79 31[ ]*\(bad\) [ ]*[a-f0-9]+:[ ]*04 01[ ]*add \$0x1,%al -[ ]*[a-f0-9]+:[ ]*c4 e3 f9 32[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*c4 e3 f9 32[ ]*\(bad\) [ ]*[a-f0-9]+:[ ]*8f 01[ ]*pop \(%ecx\) -[ ]*[a-f0-9]+:[ ]*c4 e3 f9 32[ ]*\(bad\)[ ]* +[ ]*[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]+:[ ]*c4 e3 f9 32[ ]*\(bad\) [ ]*[a-f0-9]+:[ ]*04 01[ ]*add \$0x1,%al -[ ]*[a-f0-9]+:[ ]*c4 e3 79 32[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*c4 e3 79 32[ ]*\(bad\) [ ]*[a-f0-9]+:[ ]*8f 01[ ]*pop \(%ecx\) -[ ]*[a-f0-9]+:[ ]*c4 e3 79 32[ ]*\(bad\)[ ]* +[ ]*[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]+:[ ]*c4 e3 79 32[ ]*\(bad\) [ ]*[a-f0-9]+:[ ]*04 01[ ]*add \$0x1,%al -[ ]*[a-f0-9]+:[ ]*c4 e3 f9 33[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*c4 e3 f9 33[ ]*\(bad\) [ ]*[a-f0-9]+:[ ]*8f 01[ ]*pop \(%ecx\) -[ ]*[a-f0-9]+:[ ]*c4 e3 f9 33[ ]*\(bad\)[ ]* +[ ]*[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]+:[ ]*c4 e3 f9 33[ ]*\(bad\) [ ]*[a-f0-9]+:[ ]*04 01[ ]*add \$0x1,%al -[ ]*[a-f0-9]+:[ ]*c4 e3 79 33[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*c4 e3 79 33[ ]*\(bad\) [ ]*[a-f0-9]+:[ ]*8f 01[ ]*pop \(%ecx\) -[ ]*[a-f0-9]+:[ ]*c4 e3 79 33[ ]*\(bad\)[ ]* +[ ]*[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]+:[ ]*c4 e3 79 33[ ]*\(bad\) [ ]*[a-f0-9]+:[ ]*04 01[ ]*add \$0x1,%al -[ ]*[a-f0-9]+:[ ]*c5 f8 92[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*c5 f8 92[ ]*\(bad\) [ ]*[a-f0-9]+:[ ]*9b[ ]*fwait -[ ]*[a-f0-9]+:[ ]*c5 f8 92[ ]*\(bad\)[ ]* +[ ]*[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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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[ ]* -[ ]*[a-f0-9]+:[ ]*c4 e2 01 1c[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*c4 e1 f9 93[ ]*\(bad\) +[ ]*[a-f0-9]+:[ ]*3f[ ]*aas +[ ]*[a-f0-9]+:[ ]*c4 e2 01 1c[ ]*\(bad\) [ ]*[a-f0-9]+:[ ]*41[ ]*inc[ ]*%ecx -[ ]*[a-f0-9]+:[ ]*37[ ]*aaa[ ]* -[ ]*[a-f0-9]+:[ ]*62 f2 ad 08 1c[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*37[ ]*aaa +[ ]*[a-f0-9]+:[ ]*62 f2 ad 08 1c[ ]*\(bad\) [ ]*[a-f0-9]+:[ ]*01 01[ ]*add[ ]*%eax,\(%ecx\) -[ ]*[a-f0-9]+:[ ]*62 f3 7d 28 1b[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*62 f3 7d 28 1b[ ]*\(bad\) [ ]*[a-f0-9]+:[ ]*c8 25 62 f3[ ]*enter[ ]*\$0x6225,\$0xf3 -[ ]*[a-f0-9]+:[ ]*62 f3 75 08 23[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*62 f3 75 08 23[ ]*\(bad\) [ ]*[a-f0-9]+:[ ]*c2 25 62[ ]*ret[ ]*\$0x6225 -[ ]*[a-f0-9]+:[ ]*62 f2 7d 28 5b[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*62 f2 7d 28 5b[ ]*\(bad\) [ ]*[a-f0-9]+:[ ]*41[ ]*inc[ ]*%ecx -[ ]*[a-f0-9]+:[ ]*37[ ]*aaa[ ]* +[ ]*[a-f0-9]+:[ ]*37[ ]*aaa #pass diff --git a/gas/testsuite/gas/i386/fence-as-lock-add-no.d b/gas/testsuite/gas/i386/fence-as-lock-add-no.d index 2083066..8efa877 100644 --- a/gas/testsuite/gas/i386/fence-as-lock-add-no.d +++ b/gas/testsuite/gas/i386/fence-as-lock-add-no.d @@ -8,7 +8,7 @@ Disassembly of section .text: 0+ <main>: -[ ]*[a-f0-9]+: 0f ae e8[ ]* lfence -[ ]*[a-f0-9]+: 0f ae f0[ ]* mfence -[ ]*[a-f0-9]+: 0f ae f8[ ]* sfence +[ ]*[a-f0-9]+: 0f ae e8[ ]* lfence +[ ]*[a-f0-9]+: 0f ae f0[ ]* mfence +[ ]*[a-f0-9]+: 0f ae f8[ ]* sfence #pass diff --git a/gas/testsuite/gas/i386/fpu-bad.d b/gas/testsuite/gas/i386/fpu-bad.d index ea1fe24..415e5e6 100644 --- a/gas/testsuite/gas/i386/fpu-bad.d +++ b/gas/testsuite/gas/i386/fpu-bad.d @@ -7,5 +7,5 @@ Disassembly of section .text: 0+ <start>: - +[a-f0-9]+: dd f0 \(bad\) + +[a-f0-9]+: dd f0 \(bad\) #pass diff --git a/gas/testsuite/gas/i386/iamcu-4.d b/gas/testsuite/gas/i386/iamcu-4.d index e71971f..b255d5d 100644 --- a/gas/testsuite/gas/i386/iamcu-4.d +++ b/gas/testsuite/gas/i386/iamcu-4.d @@ -6,6 +6,6 @@ Disassembly of section .text: 0+ <.text>: - +[a-f0-9]+: d9 ff fcos + +[a-f0-9]+: d9 ff fcos +[a-f0-9]+: 66 0f 58 01 addpd \(%ecx\),%xmm0 #pass diff --git a/gas/testsuite/gas/i386/iamcu-5.d b/gas/testsuite/gas/i386/iamcu-5.d index 1378f1c..2eaed3b 100644 --- a/gas/testsuite/gas/i386/iamcu-5.d +++ b/gas/testsuite/gas/i386/iamcu-5.d @@ -6,6 +6,6 @@ Disassembly of section .text: 0+ <.text>: - +[a-f0-9]+: d9 ff fcos + +[a-f0-9]+: d9 ff fcos +[a-f0-9]+: 66 0f 58 01 addpd \(%ecx\),%xmm0 #pass diff --git a/gas/testsuite/gas/i386/ifunc.d b/gas/testsuite/gas/i386/ifunc.d index ed933b9..7206eb9 100644 --- a/gas/testsuite/gas/i386/ifunc.d +++ b/gas/testsuite/gas/i386/ifunc.d @@ -9,11 +9,11 @@ Disassembly of section .text: [ ]*[a-f0-9]+: e9 fc ff ff ff jmp 1 <foo\+0x1> 1: R_386_PLT32 ifunc 0+5 <ifunc>: -[ ]*[a-f0-9]+: c3 ret +[ ]*[a-f0-9]+: c3 ret 0+6 <bar>: [ ]*[a-f0-9]+: eb 00 jmp 8 <normal> 0+8 <normal>: -[ ]*[a-f0-9]+: c3 ret +[ ]*[a-f0-9]+: c3 ret #pass diff --git a/gas/testsuite/gas/i386/ilp32/mixed-mode-reloc64.d b/gas/testsuite/gas/i386/ilp32/mixed-mode-reloc64.d index f071a22..7b30dfc 100644 --- a/gas/testsuite/gas/i386/ilp32/mixed-mode-reloc64.d +++ b/gas/testsuite/gas/i386/ilp32/mixed-mode-reloc64.d @@ -7,9 +7,9 @@ RELOCATION RECORDS FOR \[.text\]: OFFSET[ ]+TYPE[ ]+VALUE[ ]* -[0-9a-f]+[ ]+R_X86_64_GOT32[ ]+xtrn[ ]* -[0-9a-f]+[ ]+R_X86_64_PLT32[ ]+xtrn-0x0*4[ ]* -[0-9a-f]+[ ]+R_X86_64_GOT32[ ]+xtrn[ ]* -[0-9a-f]+[ ]+R_X86_64_PLT32[ ]+xtrn-0x0*4[ ]* -[0-9a-f]+[ ]+R_X86_64_GOT32[ ]+xtrn[ ]* -[0-9a-f]+[ ]+R_X86_64_PLT32[ ]+xtrn-0x0*4[ ]* +[0-9a-f]+[ ]+R_X86_64_GOT32[ ]+xtrn +[0-9a-f]+[ ]+R_X86_64_PLT32[ ]+xtrn-0x0*4 +[0-9a-f]+[ ]+R_X86_64_GOT32[ ]+xtrn +[0-9a-f]+[ ]+R_X86_64_PLT32[ ]+xtrn-0x0*4 +[0-9a-f]+[ ]+R_X86_64_GOT32[ ]+xtrn +[0-9a-f]+[ ]+R_X86_64_PLT32[ ]+xtrn-0x0*4 diff --git a/gas/testsuite/gas/i386/ilp32/svme64.d b/gas/testsuite/gas/i386/ilp32/svme64.d index 677cf9b..1325ffa 100644 --- a/gas/testsuite/gas/i386/ilp32/svme64.d +++ b/gas/testsuite/gas/i386/ilp32/svme64.d @@ -8,34 +8,34 @@ Disassembly of section .text: 0+000 <common>: -[ ]*[0-9a-f]+:[ ]+0f 01 dd[ ]+clgi[ ]* -[ ]*[0-9a-f]+:[ ]+0f 01 df[ ]+invlpga[ ]* -[ ]*[0-9a-f]+:[ ]+0f 01 de[ ]+skinit[ ]* -[ ]*[0-9a-f]+:[ ]+0f 01 dc[ ]+stgi[ ]* -[ ]*[0-9a-f]+:[ ]+0f 01 da[ ]+vmload[ ]* -[ ]*[0-9a-f]+:[ ]+0f 01 d9[ ]+vmmcall[ ]* -[ ]*[0-9a-f]+:[ ]+0f 01 d8[ ]+vmrun[ ]* -[ ]*[0-9a-f]+:[ ]+0f 01 db[ ]+vmsave[ ]* +[ ]*[0-9a-f]+:[ ]+0f 01 dd[ ]+clgi +[ ]*[0-9a-f]+:[ ]+0f 01 df[ ]+invlpga +[ ]*[0-9a-f]+:[ ]+0f 01 de[ ]+skinit +[ ]*[0-9a-f]+:[ ]+0f 01 dc[ ]+stgi +[ ]*[0-9a-f]+:[ ]+0f 01 da[ ]+vmload +[ ]*[0-9a-f]+:[ ]+0f 01 d9[ ]+vmmcall +[ ]*[0-9a-f]+:[ ]+0f 01 d8[ ]+vmrun +[ ]*[0-9a-f]+:[ ]+0f 01 db[ ]+vmsave [0-9a-f]+ <att64>: -[ ]*[0-9a-f]+:[ ]+0f 01 df[ ]+invlpga[ ]* -[ ]*[0-9a-f]+:[ ]+0f 01 da[ ]+vmload[ ]* -[ ]*[0-9a-f]+:[ ]+0f 01 d8[ ]+vmrun[ ]* -[ ]*[0-9a-f]+:[ ]+0f 01 db[ ]+vmsave[ ]* +[ ]*[0-9a-f]+:[ ]+0f 01 df[ ]+invlpga +[ ]*[0-9a-f]+:[ ]+0f 01 da[ ]+vmload +[ ]*[0-9a-f]+:[ ]+0f 01 d8[ ]+vmrun +[ ]*[0-9a-f]+:[ ]+0f 01 db[ ]+vmsave [0-9a-f]+ <att32>: -[ ]*[0-9a-f]+:[ ]+0f 01 de[ ]+skinit[ ]* -[ ]*[0-9a-f]+:[ ]+67 0f 01 df[ ]+addr32 invlpga[ ] -[ ]*[0-9a-f]+:[ ]+67 0f 01 da[ ]+addr32 vmload[ ] -[ ]*[0-9a-f]+:[ ]+67 0f 01 d8[ ]+addr32 vmrun[ ] -[ ]*[0-9a-f]+:[ ]+67 0f 01 db[ ]+addr32 vmsave[ ] +[ ]*[0-9a-f]+:[ ]+0f 01 de[ ]+skinit +[ ]*[0-9a-f]+:[ ]+67 0f 01 df[ ]+addr32 invlpga +[ ]*[0-9a-f]+:[ ]+67 0f 01 da[ ]+addr32 vmload +[ ]*[0-9a-f]+:[ ]+67 0f 01 d8[ ]+addr32 vmrun +[ ]*[0-9a-f]+:[ ]+67 0f 01 db[ ]+addr32 vmsave [0-9a-f]+ <intel64>: -[ ]*[0-9a-f]+:[ ]+0f 01 df[ ]+invlpga[ ]* -[ ]*[0-9a-f]+:[ ]+0f 01 da[ ]+vmload[ ]* -[ ]*[0-9a-f]+:[ ]+0f 01 d8[ ]+vmrun[ ]* -[ ]*[0-9a-f]+:[ ]+0f 01 db[ ]+vmsave[ ]* +[ ]*[0-9a-f]+:[ ]+0f 01 df[ ]+invlpga +[ ]*[0-9a-f]+:[ ]+0f 01 da[ ]+vmload +[ ]*[0-9a-f]+:[ ]+0f 01 d8[ ]+vmrun +[ ]*[0-9a-f]+:[ ]+0f 01 db[ ]+vmsave [0-9a-f]+ <intel32>: -[ ]*[0-9a-f]+:[ ]+0f 01 de[ ]+skinit[ ]* -[ ]*[0-9a-f]+:[ ]+67 0f 01 df[ ]+addr32 invlpga[ ] -[ ]*[0-9a-f]+:[ ]+67 0f 01 da[ ]+addr32 vmload[ ] -[ ]*[0-9a-f]+:[ ]+67 0f 01 d8[ ]+addr32 vmrun[ ] -[ ]*[0-9a-f]+:[ ]+67 0f 01 db[ ]+addr32 vmsave[ ] +[ ]*[0-9a-f]+:[ ]+0f 01 de[ ]+skinit +[ ]*[0-9a-f]+:[ ]+67 0f 01 df[ ]+addr32 invlpga +[ ]*[0-9a-f]+:[ ]+67 0f 01 da[ ]+addr32 vmload +[ ]*[0-9a-f]+:[ ]+67 0f 01 d8[ ]+addr32 vmrun +[ ]*[0-9a-f]+:[ ]+67 0f 01 db[ ]+addr32 vmsave #pass diff --git a/gas/testsuite/gas/i386/ilp32/x86-64-branch.d b/gas/testsuite/gas/i386/ilp32/x86-64-branch.d index acf8c42..b553bb1 100644 --- a/gas/testsuite/gas/i386/ilp32/x86-64-branch.d +++ b/gas/testsuite/gas/i386/ilp32/x86-64-branch.d @@ -23,7 +23,7 @@ Disassembly of section .text: [ ]*[a-f0-9]+: 66 e8 00 00 00 00 data16 call (0x)?2a <.*> 26: R_X86_64_PLT32 foo-0x4 [ ]*[a-f0-9]+: 66 e9 00 00 00 00 data16 jmp (0x)?30 <.*> 2c: R_X86_64_PLT32 foo-0x4 [ ]*[a-f0-9]+: 66 0f 82 00 00 00 00 data16 jb (0x)?37 <.*> 33: R_X86_64_PLT32 foo-0x4 -[ ]*[a-f0-9]+: 66 c3 data16 ret * +[ ]*[a-f0-9]+: 66 c3 data16 ret [ ]*[a-f0-9]+: 66 c2 08 00 data16 ret \$0x8 [ ]*[a-f0-9]+: 3e 74 03[ ]+je,pt +[0-9a-fx]+ <.*> [ ]*[a-f0-9]+: 2e 74 00[ ]+je,pn +[0-9a-fx]+ <.*> @@ -40,6 +40,6 @@ Disassembly of section .text: [ ]*[a-f0-9]+: 66 ff 20 data16 jmp \*\(%rax\) [ ]*[a-f0-9]+: e8 00 00 00 00 call [0-9a-fx]* <.*> [0-9a-f]*: R_X86_64_PC32 \*ABS\*\+0x10003c [ ]*[a-f0-9]+: e9 00 00 00 00 jmp [0-9a-fx]* <.*> [0-9a-f]*: R_X86_64_PC32 \*ABS\*\+0x10003c -[ ]*[a-f0-9]+: 66 c3 data16 ret * +[ ]*[a-f0-9]+: 66 c3 data16 ret [ ]*[a-f0-9]+: 66 c2 08 00 data16 ret \$0x8 #pass diff --git a/gas/testsuite/gas/i386/ilp32/x86-64-cbw-intel.d b/gas/testsuite/gas/i386/ilp32/x86-64-cbw-intel.d index 6d955eb..037eb8b 100644 --- a/gas/testsuite/gas/i386/ilp32/x86-64-cbw-intel.d +++ b/gas/testsuite/gas/i386/ilp32/x86-64-cbw-intel.d @@ -7,18 +7,18 @@ Disassembly of section .text: 0+000 <_cbw>: - 0: 66 98 cbw - 2: 98 cwde - 3: 48 98 cdqe - 5: 66 40 98 rex cbw - 8: 40 98 rex cwde - a: 66 48 98 data16 cdqe + 0: 66 98 cbw + 2: 98 cwde + 3: 48 98 cdqe + 5: 66 40 98 rex cbw + 8: 40 98 rex cwde + a: 66 48 98 data16 cdqe 0+00d <_cwd>: - d: 66 99 cwd - f: 99 cdq - 10: 48 99 cqo - 12: 66 40 99 rex cwd - 15: 40 99 rex cdq - 17: 66 48 99 data16 cqo + d: 66 99 cwd + f: 99 cdq + 10: 48 99 cqo + 12: 66 40 99 rex cwd + 15: 40 99 rex cdq + 17: 66 48 99 data16 cqo #pass diff --git a/gas/testsuite/gas/i386/ilp32/x86-64-cbw.d b/gas/testsuite/gas/i386/ilp32/x86-64-cbw.d index 3cb0697..66c3952 100644 --- a/gas/testsuite/gas/i386/ilp32/x86-64-cbw.d +++ b/gas/testsuite/gas/i386/ilp32/x86-64-cbw.d @@ -7,18 +7,18 @@ Disassembly of section .text: 0+000 <_cbw>: - 0: 66 98 cbtw - 2: 98 cwtl - 3: 48 98 cltq - 5: 66 40 98 rex cbtw - 8: 40 98 rex cwtl - a: 66 48 98 data16 cltq + 0: 66 98 cbtw + 2: 98 cwtl + 3: 48 98 cltq + 5: 66 40 98 rex cbtw + 8: 40 98 rex cwtl + a: 66 48 98 data16 cltq 0+00d <_cwd>: - d: 66 99 cwtd - f: 99 cltd - 10: 48 99 cqto - 12: 66 40 99 rex cwtd - 15: 40 99 rex cltd - 17: 66 48 99 data16 cqto + d: 66 99 cwtd + f: 99 cltd + 10: 48 99 cqto + 12: 66 40 99 rex cwtd + 15: 40 99 rex cltd + 17: 66 48 99 data16 cqto #pass diff --git a/gas/testsuite/gas/i386/ilp32/x86-64-opcode-inval-intel.d b/gas/testsuite/gas/i386/ilp32/x86-64-opcode-inval-intel.d index cefd9fd..a2b09d2 100644 --- a/gas/testsuite/gas/i386/ilp32/x86-64-opcode-inval-intel.d +++ b/gas/testsuite/gas/i386/ilp32/x86-64-opcode-inval-intel.d @@ -8,43 +8,43 @@ Disassembly of section .text: 0+ <aaa>: -[ ]*[a-f0-9]+: 37 \(bad\) +[ ]*[a-f0-9]+: 37 \(bad\) 0+1 <aad0>: -[ ]*[a-f0-9]+: d5 \(bad\) +[ ]*[a-f0-9]+: d5 \(bad\) [ ]*[a-f0-9]+: 0a .byte 0xa 0+3 <aad1>: -[ ]*[a-f0-9]+: d5 \(bad\) +[ ]*[a-f0-9]+: d5 \(bad\) [ ]*[a-f0-9]+: 02 .byte 0x2 0+5 <aam0>: -[ ]*[a-f0-9]+: d4 \(bad\) +[ ]*[a-f0-9]+: d4 \(bad\) [ ]*[a-f0-9]+: 0a .byte 0xa 0+7 <aam1>: -[ ]*[a-f0-9]+: d4 \(bad\) +[ ]*[a-f0-9]+: d4 \(bad\) [ ]*[a-f0-9]+: 02 .byte 0x2 0+9 <aas>: -[ ]*[a-f0-9]+: 3f \(bad\) +[ ]*[a-f0-9]+: 3f \(bad\) 0+a <bound>: [ ]*[a-f0-9]+: 62 .byte 0x62 [ ]*[a-f0-9]+: 10 .byte 0x10 0+c <daa>: -[ ]*[a-f0-9]+: 27 \(bad\) +[ ]*[a-f0-9]+: 27 \(bad\) 0+d <das>: -[ ]*[a-f0-9]+: 2f \(bad\) +[ ]*[a-f0-9]+: 2f \(bad\) 0+e <into>: -[ ]*[a-f0-9]+: ce \(bad\) +[ ]*[a-f0-9]+: ce \(bad\) 0+f <pusha>: -[ ]*[a-f0-9]+: 60 \(bad\) +[ ]*[a-f0-9]+: 60 \(bad\) 0+10 <popa>: -[ ]*[a-f0-9]+: 61 \(bad\) +[ ]*[a-f0-9]+: 61 \(bad\) #pass diff --git a/gas/testsuite/gas/i386/ilp32/x86-64-opcode-inval.d b/gas/testsuite/gas/i386/ilp32/x86-64-opcode-inval.d index 21ac5de..5a17b0b 100644 --- a/gas/testsuite/gas/i386/ilp32/x86-64-opcode-inval.d +++ b/gas/testsuite/gas/i386/ilp32/x86-64-opcode-inval.d @@ -8,43 +8,43 @@ Disassembly of section .text: 0+ <aaa>: -[ ]*[a-f0-9]+: 37 \(bad\) +[ ]*[a-f0-9]+: 37 \(bad\) 0+1 <aad0>: -[ ]*[a-f0-9]+: d5 \(bad\) +[ ]*[a-f0-9]+: d5 \(bad\) [ ]*[a-f0-9]+: 0a .byte 0xa 0+3 <aad1>: -[ ]*[a-f0-9]+: d5 \(bad\) +[ ]*[a-f0-9]+: d5 \(bad\) [ ]*[a-f0-9]+: 02 .byte 0x2 0+5 <aam0>: -[ ]*[a-f0-9]+: d4 \(bad\) +[ ]*[a-f0-9]+: d4 \(bad\) [ ]*[a-f0-9]+: 0a .byte 0xa 0+7 <aam1>: -[ ]*[a-f0-9]+: d4 \(bad\) +[ ]*[a-f0-9]+: d4 \(bad\) [ ]*[a-f0-9]+: 02 .byte 0x2 0+9 <aas>: -[ ]*[a-f0-9]+: 3f \(bad\) +[ ]*[a-f0-9]+: 3f \(bad\) 0+a <bound>: [ ]*[a-f0-9]+: 62 .byte 0x62 [ ]*[a-f0-9]+: 10 .byte 0x10 0+c <daa>: -[ ]*[a-f0-9]+: 27 \(bad\) +[ ]*[a-f0-9]+: 27 \(bad\) 0+d <das>: -[ ]*[a-f0-9]+: 2f \(bad\) +[ ]*[a-f0-9]+: 2f \(bad\) 0+e <into>: -[ ]*[a-f0-9]+: ce \(bad\) +[ ]*[a-f0-9]+: ce \(bad\) 0+f <pusha>: -[ ]*[a-f0-9]+: 60 \(bad\) +[ ]*[a-f0-9]+: 60 \(bad\) 0+10 <popa>: -[ ]*[a-f0-9]+: 61 \(bad\) +[ ]*[a-f0-9]+: 61 \(bad\) #pass diff --git a/gas/testsuite/gas/i386/ilp32/x86-64-vmx.d b/gas/testsuite/gas/i386/ilp32/x86-64-vmx.d index ca98d74..c3d91bd 100644 --- a/gas/testsuite/gas/i386/ilp32/x86-64-vmx.d +++ b/gas/testsuite/gas/i386/ilp32/x86-64-vmx.d @@ -7,10 +7,10 @@ Disassembly of section .text: 0+000 <foo>: - 0: 0f 01 c1 [ ]*vmcall - 3: 0f 01 c2 [ ]*vmlaunch - 6: 0f 01 c3 [ ]*vmresume - 9: 0f 01 c4 [ ]*vmxoff + 0: 0f 01 c1 [ ]*vmcall + 3: 0f 01 c2 [ ]*vmlaunch + 6: 0f 01 c3 [ ]*vmresume + 9: 0f 01 c4 [ ]*vmxoff c: 66 0f c7 30 [ ]*vmclear \(%rax\) 10: 0f c7 30 [ ]*vmptrld \(%rax\) 13: 0f c7 38 [ ]*vmptrst \(%rax\) diff --git a/gas/testsuite/gas/i386/ilp32/x86-64-xsave-intel.d b/gas/testsuite/gas/i386/ilp32/x86-64-xsave-intel.d index 1c08752..ef31b4b 100644 --- a/gas/testsuite/gas/i386/ilp32/x86-64-xsave-intel.d +++ b/gas/testsuite/gas/i386/ilp32/x86-64-xsave-intel.d @@ -8,8 +8,8 @@ Disassembly of section .text: 0+ <_start>: -[ ]*[a-f0-9]+: 0f 01 d0 xgetbv -[ ]*[a-f0-9]+: 0f 01 d1 xsetbv +[ ]*[a-f0-9]+: 0f 01 d0 xgetbv +[ ]*[a-f0-9]+: 0f 01 d1 xsetbv [ ]*[a-f0-9]+: 0f ae 20 xsave \[rax\] [ ]*[a-f0-9]+: 41 0f ae 20 xsave \[r8\] [ ]*[a-f0-9]+: 41 0f ae 24 00 xsave \[r8\+rax\*1\] diff --git a/gas/testsuite/gas/i386/ilp32/x86-64-xsave.d b/gas/testsuite/gas/i386/ilp32/x86-64-xsave.d index b578c51..577f5d3 100644 --- a/gas/testsuite/gas/i386/ilp32/x86-64-xsave.d +++ b/gas/testsuite/gas/i386/ilp32/x86-64-xsave.d @@ -7,8 +7,8 @@ Disassembly of section .text: 0+ <_start>: -[ ]*[a-f0-9]+: 0f 01 d0 xgetbv -[ ]*[a-f0-9]+: 0f 01 d1 xsetbv +[ ]*[a-f0-9]+: 0f 01 d0 xgetbv +[ ]*[a-f0-9]+: 0f 01 d1 xsetbv [ ]*[a-f0-9]+: 0f ae 20 xsave \(%rax\) [ ]*[a-f0-9]+: 41 0f ae 20 xsave \(%r8\) [ ]*[a-f0-9]+: 41 0f ae 24 00 xsave \(%r8,%rax,1\) diff --git a/gas/testsuite/gas/i386/ilp32/x86-64.d b/gas/testsuite/gas/i386/ilp32/x86-64.d index dbc3cea..9f7e794 100644 --- a/gas/testsuite/gas/i386/ilp32/x86-64.d +++ b/gas/testsuite/gas/i386/ilp32/x86-64.d @@ -99,8 +99,8 @@ Disassembly of section .text: [ ]*[a-f0-9]+: a3 11 22 33 44 55 66 77 88 movabs %eax,0x8877665544332211 [ ]*[a-f0-9]+: 48 a1 11 22 33 44 55 66 77 88 movabs 0x8877665544332211,%rax [ ]*[a-f0-9]+: 48 a3 11 22 33 44 55 66 77 88 movabs %rax,0x8877665544332211 -[ ]*[a-f0-9]+: 48 99 cqto -[ ]*[a-f0-9]+: 48 98 cltq +[ ]*[a-f0-9]+: 48 99 cqto +[ ]*[a-f0-9]+: 48 98 cltq [ ]*[a-f0-9]+: 48 63 c0 movslq %eax,%rax [ ]*[a-f0-9]+: 48 0f bf c0 movswq %ax,%rax [ ]*[a-f0-9]+: 48 0f be c0 movsbq %al,%rax diff --git a/gas/testsuite/gas/i386/intel-got32.d b/gas/testsuite/gas/i386/intel-got32.d index 8e5c797..5e18a2f 100644 --- a/gas/testsuite/gas/i386/intel-got32.d +++ b/gas/testsuite/gas/i386/intel-got32.d @@ -7,5 +7,5 @@ Disassembly of section .text: 0+000 <_start>: [ ]*[0-9a-f]+:[ ]+8b 15 04 00 00 00[ ]+mov[ ]+edx,(DWORD PTR )?(ds:)?0x4 -[ ]*[0-9a-f]+:[ ]+c3[ ]+ret[ ]* +[ ]*[0-9a-f]+:[ ]+c3[ ]+ret #pass diff --git a/gas/testsuite/gas/i386/intel-got64.d b/gas/testsuite/gas/i386/intel-got64.d index e16f552..08722da 100644 --- a/gas/testsuite/gas/i386/intel-got64.d +++ b/gas/testsuite/gas/i386/intel-got64.d @@ -8,5 +8,5 @@ Disassembly of section .text: 0+000 <_start>: [ ]*[0-9a-f]+:[ ]+a1 00 00 00 00 00 00 00 00[ ]+movabs[ ]+eax,(ds:)?0x0 [ ]*[0-9a-f]+:[ ]+ff 35 00 00 00 00[ ]+push[ ]+(QWORD PTR )?\[rip(\+(0x)?0)?\]([ ]+#.*)? -[ ]*[0-9a-f]+:[ ]+c3[ ]+ret[ ]* +[ ]*[0-9a-f]+:[ ]+c3[ ]+ret #pass diff --git a/gas/testsuite/gas/i386/intel-intel.d b/gas/testsuite/gas/i386/intel-intel.d index b2663dd..a2bc62b 100644 --- a/gas/testsuite/gas/i386/intel-intel.d +++ b/gas/testsuite/gas/i386/intel-intel.d @@ -46,28 +46,28 @@ Disassembly of section .text: [ ]*[a-f0-9]+: 23 90 90 90 90 90 + and edx,DWORD PTR \[eax-0x6f6f6f70\] [ ]*[a-f0-9]+: 24 90 + and al,0x90 [ ]*[a-f0-9]+: 25 90 90 90 90 + and eax,0x90909090 -[ ]*[a-f0-9]+: 27 + daa * +[ ]*[a-f0-9]+: 27 + daa [ ]*[a-f0-9]+: 28 90 90 90 90 90 + sub BYTE PTR \[eax-0x6f6f6f70\],dl [ ]*[a-f0-9]+: 29 90 90 90 90 90 + sub DWORD PTR \[eax-0x6f6f6f70\],edx [ ]*[a-f0-9]+: 2a 90 90 90 90 90 + sub dl,BYTE PTR \[eax-0x6f6f6f70\] [ ]*[a-f0-9]+: 2b 90 90 90 90 90 + sub edx,DWORD PTR \[eax-0x6f6f6f70\] [ ]*[a-f0-9]+: 2c 90 + sub al,0x90 [ ]*[a-f0-9]+: 2d 90 90 90 90 + sub eax,0x90909090 -[ ]*[a-f0-9]+: 2f + das * +[ ]*[a-f0-9]+: 2f + das [ ]*[a-f0-9]+: 30 90 90 90 90 90 + xor BYTE PTR \[eax-0x6f6f6f70\],dl [ ]*[a-f0-9]+: 31 90 90 90 90 90 + xor DWORD PTR \[eax-0x6f6f6f70\],edx [ ]*[a-f0-9]+: 32 90 90 90 90 90 + xor dl,BYTE PTR \[eax-0x6f6f6f70\] [ ]*[a-f0-9]+: 33 90 90 90 90 90 + xor edx,DWORD PTR \[eax-0x6f6f6f70\] [ ]*[a-f0-9]+: 34 90 + xor al,0x90 [ ]*[a-f0-9]+: 35 90 90 90 90 + xor eax,0x90909090 -[ ]*[a-f0-9]+: 37 + aaa * +[ ]*[a-f0-9]+: 37 + aaa [ ]*[a-f0-9]+: 38 90 90 90 90 90 + cmp BYTE PTR \[eax-0x6f6f6f70\],dl [ ]*[a-f0-9]+: 39 90 90 90 90 90 + cmp DWORD PTR \[eax-0x6f6f6f70\],edx [ ]*[a-f0-9]+: 3a 90 90 90 90 90 + cmp dl,BYTE PTR \[eax-0x6f6f6f70\] [ ]*[a-f0-9]+: 3b 90 90 90 90 90 + cmp edx,DWORD PTR \[eax-0x6f6f6f70\] [ ]*[a-f0-9]+: 3c 90 + cmp al,0x90 [ ]*[a-f0-9]+: 3d 90 90 90 90 + cmp eax,0x90909090 -[ ]*[a-f0-9]+: 3f + aas * +[ ]*[a-f0-9]+: 3f + aas [ ]*[a-f0-9]+: 40 + inc eax [ ]*[a-f0-9]+: 41 + inc ecx [ ]*[a-f0-9]+: 42 + inc edx @@ -100,8 +100,8 @@ Disassembly of section .text: [ ]*[a-f0-9]+: 5d + pop ebp [ ]*[a-f0-9]+: 5e + pop esi [ ]*[a-f0-9]+: 5f + pop edi -[ ]*[a-f0-9]+: 60 + pusha * -[ ]*[a-f0-9]+: 61 + popa * +[ ]*[a-f0-9]+: 60 + pusha +[ ]*[a-f0-9]+: 61 + popa [ ]*[a-f0-9]+: 62 90 90 90 90 90 + bound edx,QWORD PTR \[eax-0x6f6f6f70\] [ ]*[a-f0-9]+: 63 90 90 90 90 90 + arpl WORD PTR \[eax-0x6f6f6f70\],dx [ ]*[a-f0-9]+: 68 90 90 90 90 + push 0x90909090 @@ -151,14 +151,14 @@ Disassembly of section .text: [ ]*[a-f0-9]+: 95 + xchg ebp,eax [ ]*[a-f0-9]+: 96 + xchg esi,eax [ ]*[a-f0-9]+: 97 + xchg edi,eax -[ ]*[a-f0-9]+: 98 + cwde * -[ ]*[a-f0-9]+: 99 + cdq * +[ ]*[a-f0-9]+: 98 + cwde +[ ]*[a-f0-9]+: 99 + cdq [ ]*[a-f0-9]+: 9a 90 90 90 90 90 90 call 0x9090:0x90909090 [ ]*[a-f0-9]+: 9b + fwait -[ ]*[a-f0-9]+: 9c + pushf * -[ ]*[a-f0-9]+: 9d + popf * -[ ]*[a-f0-9]+: 9e + sahf * -[ ]*[a-f0-9]+: 9f + lahf * +[ ]*[a-f0-9]+: 9c + pushf +[ ]*[a-f0-9]+: 9d + popf +[ ]*[a-f0-9]+: 9e + sahf +[ ]*[a-f0-9]+: 9f + lahf [ ]*[a-f0-9]+: a0 90 90 90 90 + mov al,ds:0x90909090 [ ]*[a-f0-9]+: a1 90 90 90 90 + mov eax,ds:0x90909090 [ ]*[a-f0-9]+: a2 90 90 90 90 + mov ds:0x90909090,al @@ -194,21 +194,21 @@ Disassembly of section .text: [ ]*[a-f0-9]+: c0 90 90 90 90 90 90 rcl BYTE PTR \[eax-0x6f6f6f70\],0x90 [ ]*[a-f0-9]+: c1 90 90 90 90 90 90 rcl DWORD PTR \[eax-0x6f6f6f70\],0x90 [ ]*[a-f0-9]+: c2 90 90 + ret 0x9090 -[ ]*[a-f0-9]+: c3 + ret * +[ ]*[a-f0-9]+: c3 + ret [ ]*[a-f0-9]+: c4 90 90 90 90 90 + les edx,FWORD PTR \[eax-0x6f6f6f70\] [ ]*[a-f0-9]+: c5 90 90 90 90 90 + lds edx,FWORD PTR \[eax-0x6f6f6f70\] [ ]*[a-f0-9]+: c6 80 90 90 90 90 90 mov BYTE PTR \[eax-0x6f6f6f70\],0x90 [ ]*[a-f0-9]+: c7 80 90 90 90 90 90 90 90 90 mov DWORD PTR \[eax-0x6f6f6f70\],0x90909090 [ ]*[a-f0-9]+: c8 90 90 90 + enter 0x9090,0x90 -[ ]*[a-f0-9]+: c9 + leave * +[ ]*[a-f0-9]+: c9 + leave [ ]*[a-f0-9]+: ca 90 90 + retf 0x9090 -[ ]*[a-f0-9]+: cb + retf * +[ ]*[a-f0-9]+: cb + retf [ ]*[a-f0-9]+: ca 90 90 + retf 0x9090 -[ ]*[a-f0-9]+: cb + retf * -[ ]*[a-f0-9]+: cc + int3 * +[ ]*[a-f0-9]+: cb + retf +[ ]*[a-f0-9]+: cc + int3 [ ]*[a-f0-9]+: cd 90 + int 0x90 -[ ]*[a-f0-9]+: ce + into * -[ ]*[a-f0-9]+: cf + iret * +[ ]*[a-f0-9]+: ce + into +[ ]*[a-f0-9]+: cf + iret [ ]*[a-f0-9]+: d0 90 90 90 90 90 + rcl BYTE PTR \[eax-0x6f6f6f70\],1 [ ]*[a-f0-9]+: d1 90 90 90 90 90 + rcl DWORD PTR \[eax-0x6f6f6f70\],1 [ ]*[a-f0-9]+: d2 90 90 90 90 90 + rcl BYTE PTR \[eax-0x6f6f6f70\],cl @@ -240,35 +240,35 @@ Disassembly of section .text: [ ]*[a-f0-9]+: ed + in eax,dx [ ]*[a-f0-9]+: ee + out dx,al [ ]*[a-f0-9]+: ef + out dx,eax -[ ]*[a-f0-9]+: f4 + hlt * -[ ]*[a-f0-9]+: f5 + cmc * +[ ]*[a-f0-9]+: f4 + hlt +[ ]*[a-f0-9]+: f5 + cmc [ ]*[a-f0-9]+: f6 90 90 90 90 90 + not BYTE PTR \[eax-0x6f6f6f70\] [ ]*[a-f0-9]+: f7 90 90 90 90 90 + not DWORD PTR \[eax-0x6f6f6f70\] -[ ]*[a-f0-9]+: f8 + clc * -[ ]*[a-f0-9]+: f9 + stc * -[ ]*[a-f0-9]+: fa + cli * -[ ]*[a-f0-9]+: fb + sti * -[ ]*[a-f0-9]+: fc + cld * -[ ]*[a-f0-9]+: fd + std * +[ ]*[a-f0-9]+: f8 + clc +[ ]*[a-f0-9]+: f9 + stc +[ ]*[a-f0-9]+: fa + cli +[ ]*[a-f0-9]+: fb + sti +[ ]*[a-f0-9]+: fc + cld +[ ]*[a-f0-9]+: fd + std [ ]*[a-f0-9]+: ff 90 90 90 90 90 + call DWORD PTR \[eax-0x6f6f6f70\] [ ]*[a-f0-9]+: 0f 00 90 90 90 90 90 lldt WORD PTR \[eax-0x6f6f6f70\] [ ]*[a-f0-9]+: 0f 01 90 90 90 90 90 lgdtd \[eax-0x6f6f6f70\] [ ]*[a-f0-9]+: 0f 02 90 90 90 90 90 lar edx,WORD PTR \[eax-0x6f6f6f70\] [ ]*[a-f0-9]+: 0f 03 90 90 90 90 90 lsl edx,WORD PTR \[eax-0x6f6f6f70\] -[ ]*[a-f0-9]+: 0f 06 + clts * -[ ]*[a-f0-9]+: 0f 08 + invd * -[ ]*[a-f0-9]+: 0f 09 + wbinvd * -[ ]*[a-f0-9]+: 0f 0b + ud2 * +[ ]*[a-f0-9]+: 0f 06 + clts +[ ]*[a-f0-9]+: 0f 08 + invd +[ ]*[a-f0-9]+: 0f 09 + wbinvd +[ ]*[a-f0-9]+: 0f 0b + ud2 [ ]*[a-f0-9]+: 0f 20 d0 + mov eax,cr2 [ ]*[a-f0-9]+: 0f 21 d0 + mov eax,dr2 [ ]*[a-f0-9]+: 0f 22 d0 + mov cr2,eax [ ]*[a-f0-9]+: 0f 23 d0 + mov dr2,eax [ ]*[a-f0-9]+: 0f 24 d0 + mov eax,tr2 [ ]*[a-f0-9]+: 0f 26 d0 + mov tr2,eax -[ ]*[a-f0-9]+: 0f 30 + wrmsr * -[ ]*[a-f0-9]+: 0f 31 + rdtsc * -[ ]*[a-f0-9]+: 0f 32 + rdmsr * -[ ]*[a-f0-9]+: 0f 33 + rdpmc * +[ ]*[a-f0-9]+: 0f 30 + wrmsr +[ ]*[a-f0-9]+: 0f 31 + rdtsc +[ ]*[a-f0-9]+: 0f 32 + rdmsr +[ ]*[a-f0-9]+: 0f 33 + rdpmc [ ]*[a-f0-9]+: 0f 40 90 90 90 90 90 cmovo edx,DWORD PTR \[eax-0x6f6f6f70\] [ ]*[a-f0-9]+: 0f 41 90 90 90 90 90 cmovno edx,DWORD PTR \[eax-0x6f6f6f70\] [ ]*[a-f0-9]+: 0f 42 90 90 90 90 90 cmovb edx,DWORD PTR \[eax-0x6f6f6f70\] @@ -305,7 +305,7 @@ Disassembly of section .text: [ ]*[a-f0-9]+: 0f 74 90 90 90 90 90 pcmpeqb mm2,QWORD PTR \[eax-0x6f6f6f70\] [ ]*[a-f0-9]+: 0f 75 90 90 90 90 90 pcmpeqw mm2,QWORD PTR \[eax-0x6f6f6f70\] [ ]*[a-f0-9]+: 0f 76 90 90 90 90 90 pcmpeqd mm2,QWORD PTR \[eax-0x6f6f6f70\] -[ ]*[a-f0-9]+: 0f 77 + emms * +[ ]*[a-f0-9]+: 0f 77 + emms [ ]*[a-f0-9]+: 0f 7e 90 90 90 90 90 movd DWORD PTR \[eax-0x6f6f6f70\],mm2 [ ]*[a-f0-9]+: 0f 7f 90 90 90 90 90 movq QWORD PTR \[eax-0x6f6f6f70\],mm2 [ ]*[a-f0-9]+: 0f 80 90 90 90 90 + jo 909094e6 <barn\+0x909089a4> @@ -342,13 +342,13 @@ Disassembly of section .text: [ ]*[a-f0-9]+: 0f 9f 80 90 90 90 90 setg BYTE PTR \[eax-0x6f6f6f70\] [ ]*[a-f0-9]+: 0f a0 + push fs [ ]*[a-f0-9]+: 0f a1 + pop fs -[ ]*[a-f0-9]+: 0f a2 + cpuid * +[ ]*[a-f0-9]+: 0f a2 + cpuid [ ]*[a-f0-9]+: 0f a3 90 90 90 90 90 bt DWORD PTR \[eax-0x6f6f6f70\],edx [ ]*[a-f0-9]+: 0f a4 90 90 90 90 90 90 shld DWORD PTR \[eax-0x6f6f6f70\],edx,0x90 [ ]*[a-f0-9]+: 0f a5 90 90 90 90 90 shld DWORD PTR \[eax-0x6f6f6f70\],edx,cl [ ]*[a-f0-9]+: 0f a8 + push gs [ ]*[a-f0-9]+: 0f a9 + pop gs -[ ]*[a-f0-9]+: 0f aa + rsm * +[ ]*[a-f0-9]+: 0f aa + rsm [ ]*[a-f0-9]+: 0f ab 90 90 90 90 90 bts DWORD PTR \[eax-0x6f6f6f70\],edx [ ]*[a-f0-9]+: 0f ac 90 90 90 90 90 90 shrd DWORD PTR \[eax-0x6f6f6f70\],edx,0x90 [ ]*[a-f0-9]+: 0f ad 90 90 90 90 90 shrd DWORD PTR \[eax-0x6f6f6f70\],edx,cl @@ -361,7 +361,7 @@ Disassembly of section .text: [ ]*[a-f0-9]+: 0f b5 90 90 90 90 90 lgs edx,FWORD PTR \[eax-0x6f6f6f70\] [ ]*[a-f0-9]+: 0f b6 90 90 90 90 90 movzx edx,BYTE PTR \[eax-0x6f6f6f70\] [ ]*[a-f0-9]+: 0f b7 90 90 90 90 90 movzx edx,WORD PTR \[eax-0x6f6f6f70\] -[ ]*[a-f0-9]+: 0f 0b + ud2 * +[ ]*[a-f0-9]+: 0f 0b + ud2 [ ]*[a-f0-9]+: 0f bb 90 90 90 90 90 btc DWORD PTR \[eax-0x6f6f6f70\],edx [ ]*[a-f0-9]+: 0f bc 90 90 90 90 90 bsf edx,DWORD PTR \[eax-0x6f6f6f70\] [ ]*[a-f0-9]+: 0f bd 90 90 90 90 90 bsr edx,DWORD PTR \[eax-0x6f6f6f70\] @@ -469,8 +469,8 @@ Disassembly of section .text: [ ]*[a-f0-9]+: 66 5d + pop bp [ ]*[a-f0-9]+: 66 5e + pop si [ ]*[a-f0-9]+: 66 5f + pop di -[ ]*[a-f0-9]+: 66 60 + pushaw * -[ ]*[a-f0-9]+: 66 61 + popaw * +[ ]*[a-f0-9]+: 66 60 + pushaw +[ ]*[a-f0-9]+: 66 61 + popaw [ ]*[a-f0-9]+: 66 62 90 90 90 90 90 bound dx,DWORD PTR \[eax-0x6f6f6f70\] [ ]*[a-f0-9]+: 66 68 90 90 + pushw 0x9090 [ ]*[a-f0-9]+: 66 69 90 90 90 90 90 90 90 imul dx,WORD PTR \[eax-0x6f6f6f70\],0x9090 @@ -494,11 +494,11 @@ Disassembly of section .text: [ ]*[a-f0-9]+: 66 95 + xchg bp,ax [ ]*[a-f0-9]+: 66 96 + xchg si,ax [ ]*[a-f0-9]+: 66 97 + xchg di,ax -[ ]*[a-f0-9]+: 66 98 + cbw * -[ ]*[a-f0-9]+: 66 99 + cwd * +[ ]*[a-f0-9]+: 66 98 + cbw +[ ]*[a-f0-9]+: 66 99 + cwd [ ]*[a-f0-9]+: 66 9a 90 90 90 90 + call 0x9090:0x9090 -[ ]*[a-f0-9]+: 66 9c + pushfw * -[ ]*[a-f0-9]+: 66 9d + popfw * +[ ]*[a-f0-9]+: 66 9c + pushfw +[ ]*[a-f0-9]+: 66 9d + popfw [ ]*[a-f0-9]+: 66 a1 90 90 90 90 + mov ax,ds:0x90909090 [ ]*[a-f0-9]+: 66 a3 90 90 90 90 + mov ds:0x90909090,ax [ ]*[a-f0-9]+: 66 a5 + movs WORD PTR es:\[edi\],WORD PTR ds:\[esi\] @@ -517,17 +517,17 @@ Disassembly of section .text: [ ]*[a-f0-9]+: 66 bf 90 90 + mov di,0x9090 [ ]*[a-f0-9]+: 66 c1 90 90 90 90 90 90 rcl WORD PTR \[eax-0x6f6f6f70\],0x90 [ ]*[a-f0-9]+: 66 c2 90 90 + retw 0x9090 -[ ]*[a-f0-9]+: 66 c3 + retw * +[ ]*[a-f0-9]+: 66 c3 + retw [ ]*[a-f0-9]+: 66 c4 90 90 90 90 90 les dx,DWORD PTR \[eax-0x6f6f6f70\] [ ]*[a-f0-9]+: 66 c5 90 90 90 90 90 lds dx,DWORD PTR \[eax-0x6f6f6f70\] [ ]*[a-f0-9]+: 66 c7 80 90 90 90 90 90 90 mov WORD PTR \[eax-0x6f6f6f70\],0x9090 [ ]*[a-f0-9]+: 66 c8 90 90 90 + enterw 0x9090,0x90 -[ ]*[a-f0-9]+: 66 c9 + leavew * +[ ]*[a-f0-9]+: 66 c9 + leavew [ ]*[a-f0-9]+: 66 ca 90 90 + retfw 0x9090 -[ ]*[a-f0-9]+: 66 cb + retfw * +[ ]*[a-f0-9]+: 66 cb + retfw [ ]*[a-f0-9]+: 66 ca 90 90 + retfw 0x9090 -[ ]*[a-f0-9]+: 66 cb + retfw * -[ ]*[a-f0-9]+: 66 cf + iretw * +[ ]*[a-f0-9]+: 66 cb + retfw +[ ]*[a-f0-9]+: 66 cf + iretw [ ]*[a-f0-9]+: 66 d1 90 90 90 90 90 rcl WORD PTR \[eax-0x6f6f6f70\],1 [ ]*[a-f0-9]+: 66 d3 90 90 90 90 90 rcl WORD PTR \[eax-0x6f6f6f70\],cl [ ]*[a-f0-9]+: 66 e5 90 + in ax,0x90 @@ -580,10 +580,10 @@ Disassembly of section .text: [ ]*[a-f0-9]+: 66 0f c1 90 90 90 90 90 xadd WORD PTR \[eax-0x6f6f6f70\],dx [a-f0-9]+ <gs_foo>: -[ ]*[a-f0-9]+: c3 + ret * +[ ]*[a-f0-9]+: c3 + ret [a-f0-9]+ <short_foo>: -[ ]*[a-f0-9]+: c3 + ret * +[ ]*[a-f0-9]+: c3 + ret [a-f0-9]+ <bar>: [ ]*[a-f0-9]+: e8 f9 ff ff ff + call 9d9 <gs_foo> @@ -607,7 +607,7 @@ Disassembly of section .text: [ ]*[a-f0-9]+: 0e + push cs [ ]*[a-f0-9]+: 8b 04 5d 00 00 00 00 mov eax,DWORD PTR \[ebx\*2\+0x0\] [ ]*[a-f0-9]+: 10 14 85 90 90 90 90 adc BYTE PTR \[eax\*4-0x6f6f6f70\],dl -[ ]*[a-f0-9]+: 2f + das * +[ ]*[a-f0-9]+: 2f + das [ ]*[a-f0-9]+: ea 90 90 90 90 90 90 jmp 0x9090:0x90909090 [ ]*[a-f0-9]+: 66 a5 + movs WORD PTR es:\[edi\],WORD PTR ds:\[esi\] [ ]*[a-f0-9]+: 70 90 + jo 9be <foo\+0x9be> diff --git a/gas/testsuite/gas/i386/intel.d b/gas/testsuite/gas/i386/intel.d index fe71dcf..7bc28ed 100644 --- a/gas/testsuite/gas/i386/intel.d +++ b/gas/testsuite/gas/i386/intel.d @@ -45,28 +45,28 @@ Disassembly of section .text: [ ]*[a-f0-9]+: 23 90 90 90 90 90 [ ]*and -0x6f6f6f70\(%eax\),%edx [ ]*[a-f0-9]+: 24 90 [ ]*and \$0x90,%al [ ]*[a-f0-9]+: 25 90 90 90 90 [ ]*and \$0x90909090,%eax -[ ]*[a-f0-9]+: 27 [ ]*daa +[ ]*[a-f0-9]+: 27 [ ]*daa [ ]*[a-f0-9]+: 28 90 90 90 90 90 [ ]*sub %dl,-0x6f6f6f70\(%eax\) [ ]*[a-f0-9]+: 29 90 90 90 90 90 [ ]*sub %edx,-0x6f6f6f70\(%eax\) [ ]*[a-f0-9]+: 2a 90 90 90 90 90 [ ]*sub -0x6f6f6f70\(%eax\),%dl [ ]*[a-f0-9]+: 2b 90 90 90 90 90 [ ]*sub -0x6f6f6f70\(%eax\),%edx [ ]*[a-f0-9]+: 2c 90 [ ]*sub \$0x90,%al [ ]*[a-f0-9]+: 2d 90 90 90 90 [ ]*sub \$0x90909090,%eax -[ ]*[a-f0-9]+: 2f [ ]*das +[ ]*[a-f0-9]+: 2f [ ]*das [ ]*[a-f0-9]+: 30 90 90 90 90 90 [ ]*xor %dl,-0x6f6f6f70\(%eax\) [ ]*[a-f0-9]+: 31 90 90 90 90 90 [ ]*xor %edx,-0x6f6f6f70\(%eax\) [ ]*[a-f0-9]+: 32 90 90 90 90 90 [ ]*xor -0x6f6f6f70\(%eax\),%dl [ ]*[a-f0-9]+: 33 90 90 90 90 90 [ ]*xor -0x6f6f6f70\(%eax\),%edx [ ]*[a-f0-9]+: 34 90 [ ]*xor \$0x90,%al [ ]*[a-f0-9]+: 35 90 90 90 90 [ ]*xor \$0x90909090,%eax -[ ]*[a-f0-9]+: 37 [ ]*aaa +[ ]*[a-f0-9]+: 37 [ ]*aaa [ ]*[a-f0-9]+: 38 90 90 90 90 90 [ ]*cmp %dl,-0x6f6f6f70\(%eax\) [ ]*[a-f0-9]+: 39 90 90 90 90 90 [ ]*cmp %edx,-0x6f6f6f70\(%eax\) [ ]*[a-f0-9]+: 3a 90 90 90 90 90 [ ]*cmp -0x6f6f6f70\(%eax\),%dl [ ]*[a-f0-9]+: 3b 90 90 90 90 90 [ ]*cmp -0x6f6f6f70\(%eax\),%edx [ ]*[a-f0-9]+: 3c 90 [ ]*cmp \$0x90,%al [ ]*[a-f0-9]+: 3d 90 90 90 90 [ ]*cmp \$0x90909090,%eax -[ ]*[a-f0-9]+: 3f [ ]*aas +[ ]*[a-f0-9]+: 3f [ ]*aas [ ]*[a-f0-9]+: 40 [ ]*inc %eax [ ]*[a-f0-9]+: 41 [ ]*inc %ecx [ ]*[a-f0-9]+: 42 [ ]*inc %edx @@ -99,8 +99,8 @@ Disassembly of section .text: [ ]*[a-f0-9]+: 5d [ ]*pop %ebp [ ]*[a-f0-9]+: 5e [ ]*pop %esi [ ]*[a-f0-9]+: 5f [ ]*pop %edi -[ ]*[a-f0-9]+: 60 [ ]*pusha -[ ]*[a-f0-9]+: 61 [ ]*popa +[ ]*[a-f0-9]+: 60 [ ]*pusha +[ ]*[a-f0-9]+: 61 [ ]*popa [ ]*[a-f0-9]+: 62 90 90 90 90 90 [ ]*bound %edx,-0x6f6f6f70\(%eax\) [ ]*[a-f0-9]+: 63 90 90 90 90 90 [ ]*arpl %dx,-0x6f6f6f70\(%eax\) [ ]*[a-f0-9]+: 68 90 90 90 90 [ ]*push \$0x90909090 @@ -150,14 +150,14 @@ Disassembly of section .text: [ ]*[a-f0-9]+: 95 [ ]*xchg %eax,%ebp [ ]*[a-f0-9]+: 96 [ ]*xchg %eax,%esi [ ]*[a-f0-9]+: 97 [ ]*xchg %eax,%edi -[ ]*[a-f0-9]+: 98 [ ]*cwtl -[ ]*[a-f0-9]+: 99 [ ]*cltd +[ ]*[a-f0-9]+: 98 [ ]*cwtl +[ ]*[a-f0-9]+: 99 [ ]*cltd [ ]*[a-f0-9]+: 9a 90 90 90 90 90 90 [ ]*lcall \$0x9090,\$0x90909090 [ ]*[a-f0-9]+: 9b [ ]*fwait -[ ]*[a-f0-9]+: 9c [ ]*pushf -[ ]*[a-f0-9]+: 9d [ ]*popf -[ ]*[a-f0-9]+: 9e [ ]*sahf -[ ]*[a-f0-9]+: 9f [ ]*lahf +[ ]*[a-f0-9]+: 9c [ ]*pushf +[ ]*[a-f0-9]+: 9d [ ]*popf +[ ]*[a-f0-9]+: 9e [ ]*sahf +[ ]*[a-f0-9]+: 9f [ ]*lahf [ ]*[a-f0-9]+: a0 90 90 90 90 [ ]*mov 0x90909090,%al [ ]*[a-f0-9]+: a1 90 90 90 90 [ ]*mov 0x90909090,%eax [ ]*[a-f0-9]+: a2 90 90 90 90 [ ]*mov %al,0x90909090 @@ -193,21 +193,21 @@ Disassembly of section .text: [ ]*[a-f0-9]+: c0 90 90 90 90 90 90 [ ]*rclb \$0x90,-0x6f6f6f70\(%eax\) [ ]*[a-f0-9]+: c1 90 90 90 90 90 90 [ ]*rcll \$0x90,-0x6f6f6f70\(%eax\) [ ]*[a-f0-9]+: c2 90 90 [ ]*ret \$0x9090 -[ ]*[a-f0-9]+: c3 [ ]*ret +[ ]*[a-f0-9]+: c3 [ ]*ret [ ]*[a-f0-9]+: c4 90 90 90 90 90 [ ]*les -0x6f6f6f70\(%eax\),%edx [ ]*[a-f0-9]+: c5 90 90 90 90 90 [ ]*lds -0x6f6f6f70\(%eax\),%edx [ ]*[a-f0-9]+: c6 80 90 90 90 90 90 [ ]*movb \$0x90,-0x6f6f6f70\(%eax\) [ ]*[a-f0-9]+: c7 80 90 90 90 90 90 90 90 90 [ ]*movl \$0x90909090,-0x6f6f6f70\(%eax\) [ ]*[a-f0-9]+: c8 90 90 90 [ ]*enter \$0x9090,\$0x90 -[ ]*[a-f0-9]+: c9 [ ]*leave +[ ]*[a-f0-9]+: c9 [ ]*leave [ ]*[a-f0-9]+: ca 90 90 [ ]*lret \$0x9090 -[ ]*[a-f0-9]+: cb [ ]*lret +[ ]*[a-f0-9]+: cb [ ]*lret [ ]*[a-f0-9]+: ca 90 90 [ ]*lret \$0x9090 -[ ]*[a-f0-9]+: cb [ ]*lret -[ ]*[a-f0-9]+: cc [ ]*int3 +[ ]*[a-f0-9]+: cb [ ]*lret +[ ]*[a-f0-9]+: cc [ ]*int3 [ ]*[a-f0-9]+: cd 90 [ ]*int \$0x90 -[ ]*[a-f0-9]+: ce [ ]*into -[ ]*[a-f0-9]+: cf [ ]*iret +[ ]*[a-f0-9]+: ce [ ]*into +[ ]*[a-f0-9]+: cf [ ]*iret [ ]*[a-f0-9]+: d0 90 90 90 90 90 [ ]*rclb -0x6f6f6f70\(%eax\) [ ]*[a-f0-9]+: d1 90 90 90 90 90 [ ]*rcll -0x6f6f6f70\(%eax\) [ ]*[a-f0-9]+: d2 90 90 90 90 90 [ ]*rclb %cl,-0x6f6f6f70\(%eax\) @@ -239,35 +239,35 @@ Disassembly of section .text: [ ]*[a-f0-9]+: ed [ ]*in \(%dx\),%eax [ ]*[a-f0-9]+: ee [ ]*out %al,\(%dx\) [ ]*[a-f0-9]+: ef [ ]*out %eax,\(%dx\) -[ ]*[a-f0-9]+: f4 [ ]*hlt -[ ]*[a-f0-9]+: f5 [ ]*cmc +[ ]*[a-f0-9]+: f4 [ ]*hlt +[ ]*[a-f0-9]+: f5 [ ]*cmc [ ]*[a-f0-9]+: f6 90 90 90 90 90 [ ]*notb -0x6f6f6f70\(%eax\) [ ]*[a-f0-9]+: f7 90 90 90 90 90 [ ]*notl -0x6f6f6f70\(%eax\) -[ ]*[a-f0-9]+: f8 [ ]*clc -[ ]*[a-f0-9]+: f9 [ ]*stc -[ ]*[a-f0-9]+: fa [ ]*cli -[ ]*[a-f0-9]+: fb [ ]*sti -[ ]*[a-f0-9]+: fc [ ]*cld -[ ]*[a-f0-9]+: fd [ ]*std +[ ]*[a-f0-9]+: f8 [ ]*clc +[ ]*[a-f0-9]+: f9 [ ]*stc +[ ]*[a-f0-9]+: fa [ ]*cli +[ ]*[a-f0-9]+: fb [ ]*sti +[ ]*[a-f0-9]+: fc [ ]*cld +[ ]*[a-f0-9]+: fd [ ]*std [ ]*[a-f0-9]+: ff 90 90 90 90 90 [ ]*call \*-0x6f6f6f70\(%eax\) [ ]*[a-f0-9]+: 0f 00 90 90 90 90 90 [ ]*lldt -0x6f6f6f70\(%eax\) [ ]*[a-f0-9]+: 0f 01 90 90 90 90 90 [ ]*lgdtl -0x6f6f6f70\(%eax\) [ ]*[a-f0-9]+: 0f 02 90 90 90 90 90 [ ]*lar -0x6f6f6f70\(%eax\),%edx [ ]*[a-f0-9]+: 0f 03 90 90 90 90 90 [ ]*lsl -0x6f6f6f70\(%eax\),%edx -[ ]*[a-f0-9]+: 0f 06 [ ]*clts -[ ]*[a-f0-9]+: 0f 08 [ ]*invd -[ ]*[a-f0-9]+: 0f 09 [ ]*wbinvd -[ ]*[a-f0-9]+: 0f 0b [ ]*ud2 +[ ]*[a-f0-9]+: 0f 06 [ ]*clts +[ ]*[a-f0-9]+: 0f 08 [ ]*invd +[ ]*[a-f0-9]+: 0f 09 [ ]*wbinvd +[ ]*[a-f0-9]+: 0f 0b [ ]*ud2 [ ]*[a-f0-9]+: 0f 20 d0 [ ]*mov %cr2,%eax [ ]*[a-f0-9]+: 0f 21 d0 [ ]*mov %db2,%eax [ ]*[a-f0-9]+: 0f 22 d0 [ ]*mov %eax,%cr2 [ ]*[a-f0-9]+: 0f 23 d0 [ ]*mov %eax,%db2 [ ]*[a-f0-9]+: 0f 24 d0 [ ]*mov %tr2,%eax [ ]*[a-f0-9]+: 0f 26 d0 [ ]*mov %eax,%tr2 -[ ]*[a-f0-9]+: 0f 30 [ ]*wrmsr -[ ]*[a-f0-9]+: 0f 31 [ ]*rdtsc -[ ]*[a-f0-9]+: 0f 32 [ ]*rdmsr -[ ]*[a-f0-9]+: 0f 33 [ ]*rdpmc +[ ]*[a-f0-9]+: 0f 30 [ ]*wrmsr +[ ]*[a-f0-9]+: 0f 31 [ ]*rdtsc +[ ]*[a-f0-9]+: 0f 32 [ ]*rdmsr +[ ]*[a-f0-9]+: 0f 33 [ ]*rdpmc [ ]*[a-f0-9]+: 0f 40 90 90 90 90 90 [ ]*cmovo -0x6f6f6f70\(%eax\),%edx [ ]*[a-f0-9]+: 0f 41 90 90 90 90 90 [ ]*cmovno -0x6f6f6f70\(%eax\),%edx [ ]*[a-f0-9]+: 0f 42 90 90 90 90 90 [ ]*cmovb -0x6f6f6f70\(%eax\),%edx @@ -304,7 +304,7 @@ Disassembly of section .text: [ ]*[a-f0-9]+: 0f 74 90 90 90 90 90 [ ]*pcmpeqb -0x6f6f6f70\(%eax\),%mm2 [ ]*[a-f0-9]+: 0f 75 90 90 90 90 90 [ ]*pcmpeqw -0x6f6f6f70\(%eax\),%mm2 [ ]*[a-f0-9]+: 0f 76 90 90 90 90 90 [ ]*pcmpeqd -0x6f6f6f70\(%eax\),%mm2 -[ ]*[a-f0-9]+: 0f 77 [ ]*emms +[ ]*[a-f0-9]+: 0f 77 [ ]*emms [ ]*[a-f0-9]+: 0f 7e 90 90 90 90 90 [ ]*movd %mm2,-0x6f6f6f70\(%eax\) [ ]*[a-f0-9]+: 0f 7f 90 90 90 90 90 [ ]*movq %mm2,-0x6f6f6f70\(%eax\) [ ]*[a-f0-9]+: 0f 80 90 90 90 90 [ ]*jo (0x)?909094e6.* @@ -341,13 +341,13 @@ Disassembly of section .text: [ ]*[a-f0-9]+: 0f 9f 80 90 90 90 90 [ ]*setg -0x6f6f6f70\(%eax\) [ ]*[a-f0-9]+: 0f a0 [ ]*push %fs [ ]*[a-f0-9]+: 0f a1 [ ]*pop %fs -[ ]*[a-f0-9]+: 0f a2 [ ]*cpuid +[ ]*[a-f0-9]+: 0f a2 [ ]*cpuid [ ]*[a-f0-9]+: 0f a3 90 90 90 90 90 [ ]*bt %edx,-0x6f6f6f70\(%eax\) [ ]*[a-f0-9]+: 0f a4 90 90 90 90 90 90 [ ]*shld \$0x90,%edx,-0x6f6f6f70\(%eax\) [ ]*[a-f0-9]+: 0f a5 90 90 90 90 90 [ ]*shld %cl,%edx,-0x6f6f6f70\(%eax\) [ ]*[a-f0-9]+: 0f a8 [ ]*push %gs [ ]*[a-f0-9]+: 0f a9 [ ]*pop %gs -[ ]*[a-f0-9]+: 0f aa [ ]*rsm +[ ]*[a-f0-9]+: 0f aa [ ]*rsm [ ]*[a-f0-9]+: 0f ab 90 90 90 90 90 [ ]*bts %edx,-0x6f6f6f70\(%eax\) [ ]*[a-f0-9]+: 0f ac 90 90 90 90 90 90 [ ]*shrd \$0x90,%edx,-0x6f6f6f70\(%eax\) [ ]*[a-f0-9]+: 0f ad 90 90 90 90 90 [ ]*shrd %cl,%edx,-0x6f6f6f70\(%eax\) @@ -360,7 +360,7 @@ Disassembly of section .text: [ ]*[a-f0-9]+: 0f b5 90 90 90 90 90 [ ]*lgs -0x6f6f6f70\(%eax\),%edx [ ]*[a-f0-9]+: 0f b6 90 90 90 90 90 [ ]*movzbl -0x6f6f6f70\(%eax\),%edx [ ]*[a-f0-9]+: 0f b7 90 90 90 90 90 [ ]*movzwl -0x6f6f6f70\(%eax\),%edx -[ ]*[a-f0-9]+: 0f 0b [ ]*ud2[ ]* +[ ]*[a-f0-9]+: 0f 0b [ ]*ud2 [ ]*[a-f0-9]+: 0f bb 90 90 90 90 90 [ ]*btc %edx,-0x6f6f6f70\(%eax\) [ ]*[a-f0-9]+: 0f bc 90 90 90 90 90 [ ]*bsf -0x6f6f6f70\(%eax\),%edx [ ]*[a-f0-9]+: 0f bd 90 90 90 90 90 [ ]*bsr -0x6f6f6f70\(%eax\),%edx @@ -468,8 +468,8 @@ Disassembly of section .text: [ ]*[a-f0-9]+: 66 5d [ ]*pop %bp [ ]*[a-f0-9]+: 66 5e [ ]*pop %si [ ]*[a-f0-9]+: 66 5f [ ]*pop %di -[ ]*[a-f0-9]+: 66 60 [ ]*pushaw -[ ]*[a-f0-9]+: 66 61 [ ]*popaw +[ ]*[a-f0-9]+: 66 60 [ ]*pushaw +[ ]*[a-f0-9]+: 66 61 [ ]*popaw [ ]*[a-f0-9]+: 66 62 90 90 90 90 90 [ ]*bound %dx,-0x6f6f6f70\(%eax\) [ ]*[a-f0-9]+: 66 68 90 90 [ ]*pushw \$0x9090 [ ]*[a-f0-9]+: 66 69 90 90 90 90 90 90 90 [ ]*imul \$0x9090,-0x6f6f6f70\(%eax\),%dx @@ -493,11 +493,11 @@ Disassembly of section .text: [ ]*[a-f0-9]+: 66 95 [ ]*xchg %ax,%bp [ ]*[a-f0-9]+: 66 96 [ ]*xchg %ax,%si [ ]*[a-f0-9]+: 66 97 [ ]*xchg %ax,%di -[ ]*[a-f0-9]+: 66 98 [ ]*cbtw -[ ]*[a-f0-9]+: 66 99 [ ]*cwtd +[ ]*[a-f0-9]+: 66 98 [ ]*cbtw +[ ]*[a-f0-9]+: 66 99 [ ]*cwtd [ ]*[a-f0-9]+: 66 9a 90 90 90 90 [ ]*lcallw \$0x9090,\$0x9090 -[ ]*[a-f0-9]+: 66 9c [ ]*pushfw -[ ]*[a-f0-9]+: 66 9d [ ]*popfw +[ ]*[a-f0-9]+: 66 9c [ ]*pushfw +[ ]*[a-f0-9]+: 66 9d [ ]*popfw [ ]*[a-f0-9]+: 66 a1 90 90 90 90 [ ]*mov 0x90909090,%ax [ ]*[a-f0-9]+: 66 a3 90 90 90 90 [ ]*mov %ax,0x90909090 [ ]*[a-f0-9]+: 66 a5 [ ]*movsw %ds:\(%esi\),%es:\(%edi\) @@ -516,17 +516,17 @@ Disassembly of section .text: [ ]*[a-f0-9]+: 66 bf 90 90 [ ]*mov \$0x9090,%di [ ]*[a-f0-9]+: 66 c1 90 90 90 90 90 90 [ ]*rclw \$0x90,-0x6f6f6f70\(%eax\) [ ]*[a-f0-9]+: 66 c2 90 90 [ ]*retw \$0x9090 -[ ]*[a-f0-9]+: 66 c3 [ ]*retw +[ ]*[a-f0-9]+: 66 c3 [ ]*retw [ ]*[a-f0-9]+: 66 c4 90 90 90 90 90 [ ]*les -0x6f6f6f70\(%eax\),%dx [ ]*[a-f0-9]+: 66 c5 90 90 90 90 90 [ ]*lds -0x6f6f6f70\(%eax\),%dx [ ]*[a-f0-9]+: 66 c7 80 90 90 90 90 90 90 [ ]*movw \$0x9090,-0x6f6f6f70\(%eax\) [ ]*[a-f0-9]+: 66 c8 90 90 90 [ ]*enterw \$0x9090,\$0x90 -[ ]*[a-f0-9]+: 66 c9 [ ]*leavew +[ ]*[a-f0-9]+: 66 c9 [ ]*leavew [ ]*[a-f0-9]+: 66 ca 90 90 [ ]*lretw \$0x9090 -[ ]*[a-f0-9]+: 66 cb [ ]*lretw +[ ]*[a-f0-9]+: 66 cb [ ]*lretw [ ]*[a-f0-9]+: 66 ca 90 90 [ ]*lretw \$0x9090 -[ ]*[a-f0-9]+: 66 cb [ ]*lretw -[ ]*[a-f0-9]+: 66 cf [ ]*iretw +[ ]*[a-f0-9]+: 66 cb [ ]*lretw +[ ]*[a-f0-9]+: 66 cf [ ]*iretw [ ]*[a-f0-9]+: 66 d1 90 90 90 90 90 [ ]*rclw -0x6f6f6f70\(%eax\) [ ]*[a-f0-9]+: 66 d3 90 90 90 90 90 [ ]*rclw %cl,-0x6f6f6f70\(%eax\) [ ]*[a-f0-9]+: 66 e5 90 [ ]*in \$0x90,%ax @@ -579,10 +579,10 @@ Disassembly of section .text: [ ]*[a-f0-9]+: 66 0f c1 90 90 90 90 90 [ ]*xadd %dx,-0x6f6f6f70\(%eax\) [a-f0-9]+ <gs_foo>: -[ ]*[a-f0-9]+: c3 [ ]*ret +[ ]*[a-f0-9]+: c3 [ ]*ret [a-f0-9]+ <short_foo>: -[ ]*[a-f0-9]+: c3 [ ]*ret +[ ]*[a-f0-9]+: c3 [ ]*ret [a-f0-9]+ <bar>: [ ]*[a-f0-9]+: e8 f9 ff ff ff [ ]*call 9d9 <gs_foo> @@ -606,7 +606,7 @@ Disassembly of section .text: [ ]*[a-f0-9]+: 0e [ ]*push %cs [ ]*[a-f0-9]+: 8b 04 5d 00 00 00 00 [ ]*mov 0x0\(,%ebx,2\),%eax [ ]*[a-f0-9]+: 10 14 85 90 90 90 90 [ ]*adc %dl,-0x6f6f6f70\(,%eax,4\) -[ ]*[a-f0-9]+: 2f [ ]*das +[ ]*[a-f0-9]+: 2f [ ]*das [ ]*[a-f0-9]+: ea 90 90 90 90 90 90 [ ]*ljmp \$0x9090,\$0x90909090 [ ]*[a-f0-9]+: 66 a5 [ ]*movsw %ds:\(%esi\),%es:\(%edi\) [ ]*[a-f0-9]+: 70 90 [ ]*jo 9be <foo\+0x9be> diff --git a/gas/testsuite/gas/i386/intelpic.d b/gas/testsuite/gas/i386/intelpic.d index d78894a..e0f8739 100644 --- a/gas/testsuite/gas/i386/intelpic.d +++ b/gas/testsuite/gas/i386/intelpic.d @@ -7,7 +7,7 @@ Disassembly of section .text: 0+ <gs_foo>: -[ ]*[a-f0-9]+: c3 ret +[ ]*[a-f0-9]+: c3 ret 0+1 <bar>: [ ]*[a-f0-9]+: 8d 83 14 00 00 00 lea 0x14\(%ebx\),%eax diff --git a/gas/testsuite/gas/i386/invlpgb.d b/gas/testsuite/gas/i386/invlpgb.d index e645364..7500c13 100644 --- a/gas/testsuite/gas/i386/invlpgb.d +++ b/gas/testsuite/gas/i386/invlpgb.d @@ -6,13 +6,13 @@ Disassembly of section \.text: 00000000 <_start>: -[ ]*[a-f0-9]+:[ ]+0f 01 fe[ ]+invlpgb[ ]* +[ ]*[a-f0-9]+:[ ]+0f 01 fe[ ]+invlpgb [0-9a-f]+ <att32>: -[ ]*[a-f0-9]+:[ ]+0f 01 fe[ ]+invlpgb[ ]* +[ ]*[a-f0-9]+:[ ]+0f 01 fe[ ]+invlpgb [0-9a-f]+ <att16>: -[ ]*[a-f0-9]+:[ ]+67 0f 01 fe[ ]+addr16 invlpgb[ ]* +[ ]*[a-f0-9]+:[ ]+67 0f 01 fe[ ]+addr16 invlpgb [0-9a-f]+ <intel32>: -[ ]*[a-f0-9]+:[ ]+0f 01 fe[ ]+invlpgb[ ]* +[ ]*[a-f0-9]+:[ ]+0f 01 fe[ ]+invlpgb [0-9a-f]+ <intel16>: -[ ]*[a-f0-9]+:[ ]+67 0f 01 fe[ ]+addr16 invlpgb[ ]* +[ ]*[a-f0-9]+:[ ]+67 0f 01 fe[ ]+addr16 invlpgb #pass diff --git a/gas/testsuite/gas/i386/invlpgb64.d b/gas/testsuite/gas/i386/invlpgb64.d index 2582481..9658355 100644 --- a/gas/testsuite/gas/i386/invlpgb64.d +++ b/gas/testsuite/gas/i386/invlpgb64.d @@ -7,13 +7,13 @@ Disassembly of section \.text: 0+000 <_start>: -[ ]*[a-f0-9]+:[ ]+0f 01 fe[ ]+invlpgb[ ]* +[ ]*[a-f0-9]+:[ ]+0f 01 fe[ ]+invlpgb [0-9a-f]+ <att64>: -[ ]*[a-f0-9]+:[ ]+0f 01 fe[ ]+invlpgb[ ]* +[ ]*[a-f0-9]+:[ ]+0f 01 fe[ ]+invlpgb [0-9a-f]+ <att32>: -[ ]*[a-f0-9]+:[ ]+67 0f 01 fe[ ]+addr32 invlpgb[ ]* +[ ]*[a-f0-9]+:[ ]+67 0f 01 fe[ ]+addr32 invlpgb [0-9a-f]+ <intel64>: -[ ]*[a-f0-9]+:[ ]+0f 01 fe[ ]+invlpgb[ ]* +[ ]*[a-f0-9]+:[ ]+0f 01 fe[ ]+invlpgb [0-9a-f]+ <intel32>: -[ ]*[a-f0-9]+:[ ]+67 0f 01 fe[ ]+addr32 invlpgb[ ]* +[ ]*[a-f0-9]+:[ ]+67 0f 01 fe[ ]+addr32 invlpgb #pass diff --git a/gas/testsuite/gas/i386/invpcid-intel.d b/gas/testsuite/gas/i386/invpcid-intel.d index 28cee1a..4e63ac1 100644 --- a/gas/testsuite/gas/i386/invpcid-intel.d +++ b/gas/testsuite/gas/i386/invpcid-intel.d @@ -1,4 +1,4 @@ -#as: +#as: #objdump: -dwMintel #name: i386 INVPCID insns (Intel disassembly) #source: invpcid.s diff --git a/gas/testsuite/gas/i386/invpcid.d b/gas/testsuite/gas/i386/invpcid.d index d40037c..08b282b 100644 --- a/gas/testsuite/gas/i386/invpcid.d +++ b/gas/testsuite/gas/i386/invpcid.d @@ -1,4 +1,4 @@ -#as: +#as: #objdump: -dw #name: i386 INVPCID insns diff --git a/gas/testsuite/gas/i386/jump16.d b/gas/testsuite/gas/i386/jump16.d index df4facc..d661e3c 100644 --- a/gas/testsuite/gas/i386/jump16.d +++ b/gas/testsuite/gas/i386/jump16.d @@ -80,10 +80,10 @@ Disassembly of section .text: [ ]+117: (R_386_)?16 yyy [ ]*[a-f0-9]+: ea 00 00 00 00 ljmp \$0x0,\$0x0 11a: (R_386_)?16 xxx [ ]+11c: (R_386_)?16 yyy -[ ]*[a-f0-9]+: cf iret -[ ]*[a-f0-9]+: cf iret -[ ]*[a-f0-9]+: 66 cf iretl -[ ]*[a-f0-9]+: cf iret -[ ]*[a-f0-9]+: cf iret -[ ]*[a-f0-9]+: 66 cf iretl +[ ]*[a-f0-9]+: cf iret +[ ]*[a-f0-9]+: cf iret +[ ]*[a-f0-9]+: 66 cf iretl +[ ]*[a-f0-9]+: cf iret +[ ]*[a-f0-9]+: cf iret +[ ]*[a-f0-9]+: 66 cf iretl #pass diff --git a/gas/testsuite/gas/i386/katmai.d b/gas/testsuite/gas/i386/katmai.d index aabb399..c67923a 100644 --- a/gas/testsuite/gas/i386/katmai.d +++ b/gas/testsuite/gas/i386/katmai.d @@ -74,7 +74,7 @@ Disassembly of section .text: 110: f3 0f 5e 1c 24 [ ]*divss \(%esp\),%xmm3 115: 0f ae 55 00 [ ]*ldmxcsr 0x0\(%ebp\) 119: 0f ae 1e [ ]*stmxcsr \(%esi\) - 11c: 0f ae f8 [ ]*sfence + 11c: 0f ae f8 [ ]*sfence 11f: 0f 5f c1 [ ]*maxps %xmm1,%xmm0 122: 0f 5f 0a [ ]*maxps \(%edx\),%xmm1 125: f3 0f 5f d3 [ ]*maxss %xmm3,%xmm2 diff --git a/gas/testsuite/gas/i386/lfence-byte.d b/gas/testsuite/gas/i386/lfence-byte.d index 7e8bb3f..6d9a889 100644 --- a/gas/testsuite/gas/i386/lfence-byte.d +++ b/gas/testsuite/gas/i386/lfence-byte.d @@ -11,20 +11,20 @@ Disassembly of section .text: 0+ <_start>: +[a-f0-9]+: f3 aa rep stos %al,%es:\(%edi\) +[a-f0-9]+: 83 0c 24 00 orl \$0x0,\(%esp\) - +[a-f0-9]+: 0f ae e8 lfence - +[a-f0-9]+: f3 c3 repz ret - +[a-f0-9]+: f3 c3 repz ret - +[a-f0-9]+: f3 c3 repz ret - +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: f3 c3 repz ret + +[a-f0-9]+: f3 c3 repz ret + +[a-f0-9]+: f3 c3 repz ret + +[a-f0-9]+: 0f ae e8 lfence +[a-f0-9]+: ff d0 call \*%eax - +[a-f0-9]+: f3 c3 repz ret - +[a-f0-9]+: 66 66 c3 data16 retw - +[a-f0-9]+: f3 c3 repz ret + +[a-f0-9]+: f3 c3 repz ret + +[a-f0-9]+: 66 66 c3 data16 retw + +[a-f0-9]+: f3 c3 repz ret +[a-f0-9]+: 9b fwait +[a-f0-9]+: 83 0c 24 00 orl \$0x0,\(%esp\) - +[a-f0-9]+: 0f ae e8 lfence - +[a-f0-9]+: f3 c3 repz ret - +[a-f0-9]+: f3 c3 repz ret - +[a-f0-9]+: c3 ret + +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: f3 c3 repz ret + +[a-f0-9]+: f3 c3 repz ret + +[a-f0-9]+: c3 ret +[a-f0-9]+: f3 ff d0 repz call \*%eax #pass diff --git a/gas/testsuite/gas/i386/lfence-indbr-a.d b/gas/testsuite/gas/i386/lfence-indbr-a.d index fffcd43..42de421 100644 --- a/gas/testsuite/gas/i386/lfence-indbr-a.d +++ b/gas/testsuite/gas/i386/lfence-indbr-a.d @@ -10,9 +10,9 @@ Disassembly of section .text: 0+ <_start>: - +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: 0f ae e8 lfence +[a-f0-9]+: ff d2 call \*%edx - +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: 0f ae e8 lfence +[a-f0-9]+: ff e2 jmp \*%edx +[a-f0-9]+: ff 12 call \*\(%edx\) +[a-f0-9]+: ff 22 jmp \*\(%edx\) diff --git a/gas/testsuite/gas/i386/lfence-indbr-b.d b/gas/testsuite/gas/i386/lfence-indbr-b.d index 040c5df..1a968de 100644 --- a/gas/testsuite/gas/i386/lfence-indbr-b.d +++ b/gas/testsuite/gas/i386/lfence-indbr-b.d @@ -9,9 +9,9 @@ Disassembly of section .text: 0+ <_start>: - +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: 0f ae e8 lfence +[a-f0-9]+: ff d2 call \*%edx - +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: 0f ae e8 lfence +[a-f0-9]+: ff e2 jmp \*%edx +[a-f0-9]+: ff 12 call \*\(%edx\) +[a-f0-9]+: ff 22 jmp \*\(%edx\) diff --git a/gas/testsuite/gas/i386/lfence-load.d b/gas/testsuite/gas/i386/lfence-load.d index 04d7f9a..33ebef5 100644 --- a/gas/testsuite/gas/i386/lfence-load.d +++ b/gas/testsuite/gas/i386/lfence-load.d @@ -10,14 +10,14 @@ Disassembly of section .text: 0+ <_start>: +[a-f0-9]+: c5 f8 ae 55 00 vldmxcsr 0x0\(%ebp\) - +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: 0f ae e8 lfence +[a-f0-9]+: 0f 01 55 00 lgdtl 0x0\(%ebp\) - +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: 0f ae e8 lfence +[a-f0-9]+: 0f c7 75 00 vmptrld 0x0\(%ebp\) - +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: 0f ae e8 lfence +[a-f0-9]+: 66 0f c7 75 00 vmclear 0x0\(%ebp\) +[a-f0-9]+: 66 0f 38 82 55 00 invpcid 0x0\(%ebp\),%edx - +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: 0f ae e8 lfence +[a-f0-9]+: 0f 01 7d 00 invlpg 0x0\(%ebp\) +[a-f0-9]+: 0f ae 7d 00 clflush 0x0\(%ebp\) +[a-f0-9]+: 66 0f ae 7d 00 clflushopt 0x0\(%ebp\) @@ -34,105 +34,105 @@ Disassembly of section .text: +[a-f0-9]+: 0f 18 5d 00 prefetcht2 0x0\(%ebp\) +[a-f0-9]+: 0f 0d 4d 00 prefetchw 0x0\(%ebp\) +[a-f0-9]+: 1f pop %ds - +[a-f0-9]+: 0f ae e8 lfence - +[a-f0-9]+: 9d popf - +[a-f0-9]+: 0f ae e8 lfence - +[a-f0-9]+: 61 popa - +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: 9d popf + +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: 61 popa + +[a-f0-9]+: 0f ae e8 lfence +[a-f0-9]+: d7 xlat %ds:\(%ebx\) - +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: 0f ae e8 lfence +[a-f0-9]+: d9 55 00 fsts 0x0\(%ebp\) +[a-f0-9]+: d9 45 00 flds 0x0\(%ebp\) - +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: 0f ae e8 lfence +[a-f0-9]+: db 55 00 fistl 0x0\(%ebp\) +[a-f0-9]+: df 55 00 fists 0x0\(%ebp\) +[a-f0-9]+: db 45 00 fildl 0x0\(%ebp\) - +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: 0f ae e8 lfence +[a-f0-9]+: df 45 00 filds 0x0\(%ebp\) - +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: 0f ae e8 lfence +[a-f0-9]+: 9b dd 75 00 fsave 0x0\(%ebp\) +[a-f0-9]+: dd 65 00 frstor 0x0\(%ebp\) - +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: 0f ae e8 lfence +[a-f0-9]+: df 45 00 filds 0x0\(%ebp\) - +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: 0f ae e8 lfence +[a-f0-9]+: df 4d 00 fisttps 0x0\(%ebp\) +[a-f0-9]+: d9 65 00 fldenv 0x0\(%ebp\) - +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: 0f ae e8 lfence +[a-f0-9]+: 9b d9 75 00 fstenv 0x0\(%ebp\) +[a-f0-9]+: d8 45 00 fadds 0x0\(%ebp\) - +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: 0f ae e8 lfence +[a-f0-9]+: d8 04 24 fadds \(%esp\) - +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: 0f ae e8 lfence +[a-f0-9]+: d8 c3 fadd %st\(3\),%st +[a-f0-9]+: d8 01 fadds \(%ecx\) - +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: 0f ae e8 lfence +[a-f0-9]+: df 01 filds \(%ecx\) - +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: 0f ae e8 lfence +[a-f0-9]+: df 11 fists \(%ecx\) +[a-f0-9]+: 0f ae 29 xrstor \(%ecx\) - +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: 0f ae e8 lfence +[a-f0-9]+: 0f 18 01 prefetchnta \(%ecx\) +[a-f0-9]+: 0f c7 09 cmpxchg8b \(%ecx\) - +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: 0f ae e8 lfence +[a-f0-9]+: 41 inc %ecx +[a-f0-9]+: 0f 01 10 lgdtl \(%eax\) - +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: 0f ae e8 lfence +[a-f0-9]+: 0f 0f 66 02 b0 pfcmpeq 0x2\(%esi\),%mm4 - +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: 0f ae e8 lfence +[a-f0-9]+: 8f 00 pop \(%eax\) - +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: 0f ae e8 lfence +[a-f0-9]+: 58 pop %eax - +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: 0f ae e8 lfence +[a-f0-9]+: 66 d1 11 rclw \(%ecx\) - +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: 0f ae e8 lfence +[a-f0-9]+: f7 01 01 00 00 00 testl \$0x1,\(%ecx\) - +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: 0f ae e8 lfence +[a-f0-9]+: ff 01 incl \(%ecx\) - +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: 0f ae e8 lfence +[a-f0-9]+: f7 11 notl \(%ecx\) - +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: 0f ae e8 lfence +[a-f0-9]+: f7 31 divl \(%ecx\) - +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: 0f ae e8 lfence +[a-f0-9]+: f7 21 mull \(%ecx\) - +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: 0f ae e8 lfence +[a-f0-9]+: f7 39 idivl \(%ecx\) - +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: 0f ae e8 lfence +[a-f0-9]+: f7 29 imull \(%ecx\) - +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: 0f ae e8 lfence +[a-f0-9]+: 8d 04 40 lea \(%eax,%eax,2\),%eax - +[a-f0-9]+: c9 leave + +[a-f0-9]+: c9 leave +[a-f0-9]+: 6e outsb %ds:\(%esi\),\(%dx\) - +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: 0f ae e8 lfence +[a-f0-9]+: ac lods %ds:\(%esi\),%al - +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: 0f ae e8 lfence +[a-f0-9]+: f3 a5 rep movsl %ds:\(%esi\),%es:\(%edi\) - +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: 0f ae e8 lfence +[a-f0-9]+: f3 af repz scas %es:\(%edi\),%eax - +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: 0f ae e8 lfence +[a-f0-9]+: f3 a7 repz cmpsl %es:\(%edi\),%ds:\(%esi\) - +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: 0f ae e8 lfence +[a-f0-9]+: f3 ad rep lods %ds:\(%esi\),%eax - +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: 0f ae e8 lfence +[a-f0-9]+: 83 00 01 addl \$0x1,\(%eax\) - +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: 0f ae e8 lfence +[a-f0-9]+: 0f ba 20 01 btl \$0x1,\(%eax\) - +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: 0f ae e8 lfence +[a-f0-9]+: 0f c1 03 xadd %eax,\(%ebx\) - +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: 0f ae e8 lfence +[a-f0-9]+: 0f c1 c3 xadd %eax,%ebx +[a-f0-9]+: 87 03 xchg %eax,\(%ebx\) - +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: 0f ae e8 lfence +[a-f0-9]+: 93 xchg %eax,%ebx +[a-f0-9]+: 39 45 40 cmp %eax,0x40\(%ebp\) - +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: 0f ae e8 lfence +[a-f0-9]+: 3b 45 40 cmp 0x40\(%ebp\),%eax - +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: 0f ae e8 lfence +[a-f0-9]+: 01 45 40 add %eax,0x40\(%ebp\) - +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: 0f ae e8 lfence +[a-f0-9]+: 03 00 add \(%eax\),%eax - +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: 0f ae e8 lfence +[a-f0-9]+: 85 45 40 test %eax,0x40\(%ebp\) - +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: 0f ae e8 lfence +[a-f0-9]+: 85 45 40 test %eax,0x40\(%ebp\) - +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: 0f ae e8 lfence #pass diff --git a/gas/testsuite/gas/i386/lfence-ret-a.d b/gas/testsuite/gas/i386/lfence-ret-a.d index 613d1d5..383cffff 100644 --- a/gas/testsuite/gas/i386/lfence-ret-a.d +++ b/gas/testsuite/gas/i386/lfence-ret-a.d @@ -10,15 +10,15 @@ Disassembly of section .text: 0+ <_start>: +[a-f0-9]+: 66 83 0c 24 00 orw \$0x0,\(%esp\) - +[a-f0-9]+: 0f ae e8 lfence - +[a-f0-9]+: 66 c3 retw + +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: 66 c3 retw +[a-f0-9]+: 66 83 0c 24 00 orw \$0x0,\(%esp\) - +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: 0f ae e8 lfence +[a-f0-9]+: 66 c2 14 00 retw \$0x14 +[a-f0-9]+: 83 0c 24 00 orl \$0x0,\(%esp\) - +[a-f0-9]+: 0f ae e8 lfence - +[a-f0-9]+: c3 ret + +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: c3 ret +[a-f0-9]+: 83 0c 24 00 orl \$0x0,\(%esp\) - +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: 0f ae e8 lfence +[a-f0-9]+: c2 1e 00 ret \$0x1e #pass diff --git a/gas/testsuite/gas/i386/lfence-ret-b.d b/gas/testsuite/gas/i386/lfence-ret-b.d index e6dd4f4..def17ed 100644 --- a/gas/testsuite/gas/i386/lfence-ret-b.d +++ b/gas/testsuite/gas/i386/lfence-ret-b.d @@ -11,18 +11,18 @@ Disassembly of section .text: 0+ <_start>: +[a-f0-9]+: 66 f7 14 24 notw \(%esp\) +[a-f0-9]+: 66 f7 14 24 notw \(%esp\) - +[a-f0-9]+: 0f ae e8 lfence - +[a-f0-9]+: 66 c3 retw + +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: 66 c3 retw +[a-f0-9]+: 66 f7 14 24 notw \(%esp\) +[a-f0-9]+: 66 f7 14 24 notw \(%esp\) - +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: 0f ae e8 lfence +[a-f0-9]+: 66 c2 14 00 retw \$0x14 +[a-f0-9]+: f7 14 24 notl \(%esp\) +[a-f0-9]+: f7 14 24 notl \(%esp\) - +[a-f0-9]+: 0f ae e8 lfence - +[a-f0-9]+: c3 ret + +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: c3 ret +[a-f0-9]+: f7 14 24 notl \(%esp\) +[a-f0-9]+: f7 14 24 notl \(%esp\) - +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: 0f ae e8 lfence +[a-f0-9]+: c2 1e 00 ret \$0x1e #pass diff --git a/gas/testsuite/gas/i386/lfence-ret-c.d b/gas/testsuite/gas/i386/lfence-ret-c.d index 02f57fe..f96bac2 100644 --- a/gas/testsuite/gas/i386/lfence-ret-c.d +++ b/gas/testsuite/gas/i386/lfence-ret-c.d @@ -9,15 +9,15 @@ Disassembly of section .text: 0+ <_start>: +[a-f0-9]+: 66 83 0c 24 00 orw \$0x0,\(%esp\) - +[a-f0-9]+: 0f ae e8 lfence - +[a-f0-9]+: 66 c3 retw + +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: 66 c3 retw +[a-f0-9]+: 66 83 0c 24 00 orw \$0x0,\(%esp\) - +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: 0f ae e8 lfence +[a-f0-9]+: 66 c2 14 00 retw \$0x14 +[a-f0-9]+: 83 0c 24 00 orl \$0x0,\(%esp\) - +[a-f0-9]+: 0f ae e8 lfence - +[a-f0-9]+: c3 ret + +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: c3 ret +[a-f0-9]+: 83 0c 24 00 orl \$0x0,\(%esp\) - +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: 0f ae e8 lfence +[a-f0-9]+: c2 1e 00 ret \$0x1e #pass diff --git a/gas/testsuite/gas/i386/lfence-ret-d.d b/gas/testsuite/gas/i386/lfence-ret-d.d index 9078216..e72e4a1 100644 --- a/gas/testsuite/gas/i386/lfence-ret-d.d +++ b/gas/testsuite/gas/i386/lfence-ret-d.d @@ -10,15 +10,15 @@ Disassembly of section .text: 0+ <_start>: +[a-f0-9]+: 66 c1 24 24 00 shlw \$0x0,\(%esp\) - +[a-f0-9]+: 0f ae e8 lfence - +[a-f0-9]+: 66 c3 retw + +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: 66 c3 retw +[a-f0-9]+: 66 c1 24 24 00 shlw \$0x0,\(%esp\) - +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: 0f ae e8 lfence +[a-f0-9]+: 66 c2 14 00 retw \$0x14 +[a-f0-9]+: c1 24 24 00 shll \$0x0,\(%esp\) - +[a-f0-9]+: 0f ae e8 lfence - +[a-f0-9]+: c3 ret + +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: c3 ret +[a-f0-9]+: c1 24 24 00 shll \$0x0,\(%esp\) - +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: 0f ae e8 lfence +[a-f0-9]+: c2 1e 00 ret \$0x1e #pass diff --git a/gas/testsuite/gas/i386/mixed-mode-reloc32.d b/gas/testsuite/gas/i386/mixed-mode-reloc32.d index d0d786b..e087145 100644 --- a/gas/testsuite/gas/i386/mixed-mode-reloc32.d +++ b/gas/testsuite/gas/i386/mixed-mode-reloc32.d @@ -7,9 +7,9 @@ RELOCATION RECORDS FOR \[.text\]: OFFSET[ ]+TYPE[ ]+VALUE[ ]* -[0-9a-f]+[ ]+R_386_GOT32[ ]+xtrn[ ]* -[0-9a-f]+[ ]+R_386_PLT32[ ]+xtrn[ ]* -[0-9a-f]+[ ]+R_386_GOT32X[ ]+xtrn[ ]* -[0-9a-f]+[ ]+R_386_PLT32[ ]+xtrn[ ]* -[0-9a-f]+[ ]+R_386_GOT32X[ ]+xtrn[ ]* -[0-9a-f]+[ ]+R_386_PLT32[ ]+xtrn[ ]* +[0-9a-f]+[ ]+R_386_GOT32[ ]+xtrn +[0-9a-f]+[ ]+R_386_PLT32[ ]+xtrn +[0-9a-f]+[ ]+R_386_GOT32X[ ]+xtrn +[0-9a-f]+[ ]+R_386_PLT32[ ]+xtrn +[0-9a-f]+[ ]+R_386_GOT32X[ ]+xtrn +[0-9a-f]+[ ]+R_386_PLT32[ ]+xtrn diff --git a/gas/testsuite/gas/i386/mixed-mode-reloc64.d b/gas/testsuite/gas/i386/mixed-mode-reloc64.d index f0e62e0..120dad9 100644 --- a/gas/testsuite/gas/i386/mixed-mode-reloc64.d +++ b/gas/testsuite/gas/i386/mixed-mode-reloc64.d @@ -7,9 +7,9 @@ RELOCATION RECORDS FOR \[.text\]: OFFSET[ ]+TYPE[ ]+VALUE[ ]* -[0-9a-f]+[ ]+R_X86_64_GOT32[ ]+xtrn[ ]* -[0-9a-f]+[ ]+R_X86_64_PLT32[ ]+xtrn-0x0*4[ ]* -[0-9a-f]+[ ]+R_X86_64_GOT32[ ]+xtrn[ ]* -[0-9a-f]+[ ]+R_X86_64_PLT32[ ]+xtrn-0x0*4[ ]* -[0-9a-f]+[ ]+R_X86_64_GOT32[ ]+xtrn[ ]* -[0-9a-f]+[ ]+R_X86_64_PLT32[ ]+xtrn-0x0*4[ ]* +[0-9a-f]+[ ]+R_X86_64_GOT32[ ]+xtrn +[0-9a-f]+[ ]+R_X86_64_PLT32[ ]+xtrn-0x0*4 +[0-9a-f]+[ ]+R_X86_64_GOT32[ ]+xtrn +[0-9a-f]+[ ]+R_X86_64_PLT32[ ]+xtrn-0x0*4 +[0-9a-f]+[ ]+R_X86_64_GOT32[ ]+xtrn +[0-9a-f]+[ ]+R_X86_64_PLT32[ ]+xtrn-0x0*4 diff --git a/gas/testsuite/gas/i386/mpx-16bit.d b/gas/testsuite/gas/i386/mpx-16bit.d index b80fe29..b26bc1a 100644 --- a/gas/testsuite/gas/i386/mpx-16bit.d +++ b/gas/testsuite/gas/i386/mpx-16bit.d @@ -68,7 +68,7 @@ Disassembly of section .text: [ ]*[a-f0-9]+: f2 0f 84 88 01 bnd je [a-f0-9]+ <foo> [ ]*[a-f0-9]+: f2 e9 84 01 bnd jmp [a-f0-9]+ <foo> [ ]*[a-f0-9]+: 67 f2 ff 21 bnd jmp \*\(%ecx\) -[ ]*[a-f0-9]+: f2 c3 bnd ret * +[ ]*[a-f0-9]+: f2 c3 bnd ret [ ]*[a-f0-9]+: 67 f3 0f 1b 08 bndmk \(%eax\),%bnd1 [ ]*[a-f0-9]+: 67 f3 0f 1b 0d 99 03 00 00 addr32 bndmk 0x399,%bnd1 [ ]*[a-f0-9]+: 67 f3 0f 1b 49 03 bndmk 0x3\(%ecx\),%bnd1 @@ -127,10 +127,10 @@ Disassembly of section .text: [ ]*[a-f0-9]+: f2 74 09 bnd je [a-f0-9]+ <foo> [ ]*[a-f0-9]+: f2 eb 06 bnd jmp [a-f0-9]+ <foo> [ ]*[a-f0-9]+: 66 f2 ff e1 bnd jmpl? \*%ecx -[ ]*[a-f0-9]+: f2 c3 bnd ret * +[ ]*[a-f0-9]+: f2 c3 bnd ret [a-f0-9]+ <foo>: -[ ]*[a-f0-9]+: f2 c3 bnd ret * +[ ]*[a-f0-9]+: f2 c3 bnd ret [a-f0-9]+ <bad>: #... diff --git a/gas/testsuite/gas/i386/mpx-add-bnd-prefix.d b/gas/testsuite/gas/i386/mpx-add-bnd-prefix.d index 780f371..5ba3ca5 100644 --- a/gas/testsuite/gas/i386/mpx-add-bnd-prefix.d +++ b/gas/testsuite/gas/i386/mpx-add-bnd-prefix.d @@ -14,13 +14,13 @@ Disassembly of section .text: [ ]*[a-f0-9]+: f2 74 08 bnd je 14 <foo> [ ]*[a-f0-9]+: f2 eb 05 bnd jmp 14 <foo> [ ]*[a-f0-9]+: f2 ff 23 bnd jmp \*\(%ebx\) -[ ]*[a-f0-9]+: f2 c3 bnd ret +[ ]*[a-f0-9]+: f2 c3 bnd ret 0+14 <foo>: -[ ]*[a-f0-9]+: f2 c3 bnd ret -[ ]*[a-f0-9]+: f2 c3 bnd ret -[ ]*[a-f0-9]+: f2 c3 bnd ret -[ ]*[a-f0-9]+: f2 c3 bnd ret +[ ]*[a-f0-9]+: f2 c3 bnd ret +[ ]*[a-f0-9]+: f2 c3 bnd ret +[ ]*[a-f0-9]+: f2 c3 bnd ret +[ ]*[a-f0-9]+: f2 c3 bnd ret [ ]*[a-f0-9]+: f2 e8 f2 ff ff ff bnd call 14 <foo> [ ]*[a-f0-9]+: 01 c3 add %eax,%ebx [ ]*[a-f0-9]+: e2 ee loop 14 <foo> diff --git a/gas/testsuite/gas/i386/mpx.d b/gas/testsuite/gas/i386/mpx.d index c7c08ad..a12081c 100644 --- a/gas/testsuite/gas/i386/mpx.d +++ b/gas/testsuite/gas/i386/mpx.d @@ -67,7 +67,7 @@ Disassembly of section .text: [ ]*[a-f0-9]+: f2 0f 84 59 01 00 00 bnd je 2a9 <foo> [ ]*[a-f0-9]+: f2 e9 53 01 00 00 bnd jmp 2a9 <foo> [ ]*[a-f0-9]+: f2 ff 21 bnd jmp \*\(%ecx\) -[ ]*[a-f0-9]+: f2 c3 bnd ret +[ ]*[a-f0-9]+: f2 c3 bnd ret [ ]*[a-f0-9]+: f3 0f 1b 08 bndmk \(%eax\),%bnd1 [ ]*[a-f0-9]+: f3 0f 1b 0d 99 03 00 00 bndmk 0x399,%bnd1 [ ]*[a-f0-9]+: f3 0f 1b 49 03 bndmk 0x3\(%ecx\),%bnd1 @@ -126,10 +126,10 @@ Disassembly of section .text: [ ]*[a-f0-9]+: f2 74 08 bnd je 2a9 <foo> [ ]*[a-f0-9]+: f2 eb 05 bnd jmp 2a9 <foo> [ ]*[a-f0-9]+: f2 ff e1 bnd jmp \*%ecx -[ ]*[a-f0-9]+: f2 c3 bnd ret +[ ]*[a-f0-9]+: f2 c3 bnd ret [a-f0-9]+ <foo>: -[ ]*[a-f0-9]+: f2 c3 bnd ret +[ ]*[a-f0-9]+: f2 c3 bnd ret [a-f0-9]+ <bad>: [ ]*[a-f0-9]+: 0f 1a 30 bndldx \(%eax\),\(bad\) diff --git a/gas/testsuite/gas/i386/noextreg.d b/gas/testsuite/gas/i386/noextreg.d index ba175fc..feea60a 100644 --- a/gas/testsuite/gas/i386/noextreg.d +++ b/gas/testsuite/gas/i386/noextreg.d @@ -50,5 +50,5 @@ Disassembly of section .text: [ ]*[a-f0-9]+: c4 e3 79 48 00 00 vpermil2ps \$0x0,%xmm0,\(%eax\),%xmm0,%xmm0 [ ]*[a-f0-9]+: c4 e3 39 48 00 00 vpermil2ps \$0x0,%xmm0,\(%eax\),%xmm0,%xmm0 [ ]*[a-f0-9]+: c4 e3 79 48 00 80 vpermil2ps \$0x0,%xmm0,\(%eax\),%xmm0,%xmm0 -[ ]*[a-f0-9]+: c3 ret[ ]* +[ ]*[a-f0-9]+: c3 ret #pass diff --git a/gas/testsuite/gas/i386/nops-8.d b/gas/testsuite/gas/i386/nops-8.d index 2c34410..2d99ac7 100644 --- a/gas/testsuite/gas/i386/nops-8.d +++ b/gas/testsuite/gas/i386/nops-8.d @@ -1948,8 +1948,8 @@ Disassembly of section .text: +[a-f0-9]+: f3 0f 1e f7 repz nop %edi +[a-f0-9]+: f3 0f 1e f8 repz nop %eax +[a-f0-9]+: f3 0f 1e f9 repz nop %ecx - +[a-f0-9]+: f3 0f 1e fa endbr64 * - +[a-f0-9]+: f3 0f 1e fb endbr32 * + +[a-f0-9]+: f3 0f 1e fa endbr64 + +[a-f0-9]+: f3 0f 1e fb endbr32 +[a-f0-9]+: f3 0f 1e fc repz nop %esp +[a-f0-9]+: f3 0f 1e fd repz nop %ebp +[a-f0-9]+: f3 0f 1e fe repz nop %esi diff --git a/gas/testsuite/gas/i386/noreg64-data16.d b/gas/testsuite/gas/i386/noreg64-data16.d index f5e921c..f1e6709 100644 --- a/gas/testsuite/gas/i386/noreg64-data16.d +++ b/gas/testsuite/gas/i386/noreg64-data16.d @@ -66,7 +66,7 @@ Disassembly of section .text: *[a-f0-9]+: 66 ff 00 incw \(%rax\) *[a-f0-9]+: 66 6d insw \(%dx\),%es:\(%rdi\) *[a-f0-9]+: 66 6d insw \(%dx\),%es:\(%rdi\) - *[a-f0-9]+: 66 cf iretw * + *[a-f0-9]+: 66 cf iretw *[a-f0-9]+: 66 ff 20 jmpw \*\(%rax\) *[a-f0-9]+: 66 ff 18 lcallw \*\(%rax\) *[a-f0-9]+: 66 0f 01 10 data16 lgdt \(%rax\) @@ -76,7 +76,7 @@ Disassembly of section .text: *[a-f0-9]+: 66 0f 01 30 data16 lmsw \(%rax\) *[a-f0-9]+: 66 ad lods %ds:\(%rsi\),%ax *[a-f0-9]+: 66 ad lods %ds:\(%rsi\),%ax - *[a-f0-9]+: 66 cb lretw * + *[a-f0-9]+: 66 cb lretw *[a-f0-9]+: 66 ca 04 00 lretw \$0x4 *[a-f0-9]+: 66 0f 00 18 data16 ltr \(%rax\) *[a-f0-9]+: 66 c7 00 12 00 movw \$0x12,\(%rax\) @@ -150,8 +150,8 @@ Disassembly of section .text: *[a-f0-9]+: 66 81 28 89 00 subw \$0x89,\(%rax\) *[a-f0-9]+: 66 81 28 34 12 subw \$0x1234,\(%rax\) *[a-f0-9]+: 66 81 28 78 56 subw \$0x5678,\(%rax\) - *[a-f0-9]+: 66 0f 35 data16 sysexitl * - *[a-f0-9]+: 66 0f 07 data16 sysretl * + *[a-f0-9]+: 66 0f 35 data16 sysexitl + *[a-f0-9]+: 66 0f 07 data16 sysretl *[a-f0-9]+: 66 f7 00 89 00 testw \$0x89,\(%rax\) *[a-f0-9]+: 66 f7 00 34 12 testw \$0x1234,\(%rax\) *[a-f0-9]+: 66 f7 00 78 56 testw \$0x5678,\(%rax\) diff --git a/gas/testsuite/gas/i386/noreg64-rex64.d b/gas/testsuite/gas/i386/noreg64-rex64.d index bf16ab7..cd8679e 100644 --- a/gas/testsuite/gas/i386/noreg64-rex64.d +++ b/gas/testsuite/gas/i386/noreg64-rex64.d @@ -64,7 +64,7 @@ Disassembly of section .text: *[a-f0-9]+: 48 ff 00 incq \(%rax\) *[a-f0-9]+: 48 6d rex\.W insl \(%dx\),%es:\(%rdi\) *[a-f0-9]+: 48 6d rex\.W insl \(%dx\),%es:\(%rdi\) - *[a-f0-9]+: 48 cf iretq * + *[a-f0-9]+: 48 cf iretq *[a-f0-9]+: 48 ff 20 rex\.W jmp \*\(%rax\) *[a-f0-9]+: 48 ff 18 rex\.W lcall \*\(%rax\) *[a-f0-9]+: 48 0f 01 10 rex\.W lgdt \(%rax\) @@ -74,7 +74,7 @@ Disassembly of section .text: *[a-f0-9]+: 48 0f 01 30 rex\.W lmsw \(%rax\) *[a-f0-9]+: 48 ad lods %ds:\(%rsi\),%rax *[a-f0-9]+: 48 ad lods %ds:\(%rsi\),%rax - *[a-f0-9]+: 48 cb lretq * + *[a-f0-9]+: 48 cb lretq *[a-f0-9]+: 48 ca 04 00 lretq \$0x4 *[a-f0-9]+: 48 0f 00 18 rex\.W ltr \(%rax\) *[a-f0-9]+: 48 c7 00 12 00 00 00 movq \$0x12,\(%rax\) @@ -149,8 +149,8 @@ Disassembly of section .text: *[a-f0-9]+: 48 81 28 89 00 00 00 subq \$0x89,\(%rax\) *[a-f0-9]+: 48 81 28 34 12 00 00 subq \$0x1234,\(%rax\) *[a-f0-9]+: 48 81 28 78 56 34 12 subq \$0x12345678,\(%rax\) - *[a-f0-9]+: 48 0f 35 sysexitq * - *[a-f0-9]+: 48 0f 07 sysretq * + *[a-f0-9]+: 48 0f 35 sysexitq + *[a-f0-9]+: 48 0f 07 sysretq *[a-f0-9]+: 48 f7 00 89 00 00 00 testq \$0x89,\(%rax\) *[a-f0-9]+: 48 f7 00 34 12 00 00 testq \$0x1234,\(%rax\) *[a-f0-9]+: 48 f7 00 78 56 34 12 testq \$0x12345678,\(%rax\) diff --git a/gas/testsuite/gas/i386/noreg64.d b/gas/testsuite/gas/i386/noreg64.d index e73caee..354d890 100644 --- a/gas/testsuite/gas/i386/noreg64.d +++ b/gas/testsuite/gas/i386/noreg64.d @@ -64,7 +64,7 @@ Disassembly of section .text: *[a-f0-9]+: ff 00 incl \(%rax\) *[a-f0-9]+: 6d insl \(%dx\),%es:\(%rdi\) *[a-f0-9]+: 6d insl \(%dx\),%es:\(%rdi\) - *[a-f0-9]+: cf iret * + *[a-f0-9]+: cf iret *[a-f0-9]+: ff 20 jmp \*\(%rax\) *[a-f0-9]+: ff 18 lcall \*\(%rax\) *[a-f0-9]+: 0f 01 10 lgdt \(%rax\) @@ -74,7 +74,7 @@ Disassembly of section .text: *[a-f0-9]+: 0f 01 30 lmsw \(%rax\) *[a-f0-9]+: ad lods %ds:\(%rsi\),%eax *[a-f0-9]+: ad lods %ds:\(%rsi\),%eax - *[a-f0-9]+: cb lret * + *[a-f0-9]+: cb lret *[a-f0-9]+: ca 04 00 lret \$0x4 *[a-f0-9]+: 0f 00 18 ltr \(%rax\) *[a-f0-9]+: c7 00 12 00 00 00 movl \$0x12,\(%rax\) @@ -151,8 +151,8 @@ Disassembly of section .text: *[a-f0-9]+: 81 28 89 00 00 00 subl \$0x89,\(%rax\) *[a-f0-9]+: 81 28 34 12 00 00 subl \$0x1234,\(%rax\) *[a-f0-9]+: 81 28 78 56 34 12 subl \$0x12345678,\(%rax\) - *[a-f0-9]+: 0f 35 sysexitl * - *[a-f0-9]+: 0f 07 sysretl * + *[a-f0-9]+: 0f 35 sysexitl + *[a-f0-9]+: 0f 07 sysretl *[a-f0-9]+: f7 00 89 00 00 00 testl \$0x89,\(%rax\) *[a-f0-9]+: f7 00 34 12 00 00 testl \$0x1234,\(%rax\) *[a-f0-9]+: f7 00 78 56 34 12 testl \$0x12345678,\(%rax\) diff --git a/gas/testsuite/gas/i386/opcode-intel.d b/gas/testsuite/gas/i386/opcode-intel.d index 732b033..9da5e7f 100644 --- a/gas/testsuite/gas/i386/opcode-intel.d +++ b/gas/testsuite/gas/i386/opcode-intel.d @@ -45,28 +45,28 @@ Disassembly of section .text: *[0-9a-f]+: 23 90 90 90 90 90[ ]+and[ ]+edx,(DWORD PTR )?\[eax-0x6f6f6f70\] *[0-9a-f]+: 24 90[ ]+and[ ]+al,0x90 *[0-9a-f]+: 25 90 90 90 90[ ]+and[ ]+eax,0x90909090 - *[0-9a-f]+: 27[ ]+daa[ ]* + *[0-9a-f]+: 27[ ]+daa *[0-9a-f]+: 28 90 90 90 90 90[ ]+sub[ ]+(BYTE PTR )?\[eax-0x6f6f6f70\],dl *[0-9a-f]+: 29 90 90 90 90 90[ ]+sub[ ]+(DWORD PTR )?\[eax-0x6f6f6f70\],edx *[0-9a-f]+: 2a 90 90 90 90 90[ ]+sub[ ]+dl,(BYTE PTR )?\[eax-0x6f6f6f70\] *[0-9a-f]+: 2b 90 90 90 90 90[ ]+sub[ ]+edx,(DWORD PTR )?\[eax-0x6f6f6f70\] *[0-9a-f]+: 2c 90[ ]+sub[ ]+al,0x90 *[0-9a-f]+: 2d 90 90 90 90[ ]+sub[ ]+eax,0x90909090 - *[0-9a-f]+: 2f[ ]+das[ ]* + *[0-9a-f]+: 2f[ ]+das *[0-9a-f]+: 30 90 90 90 90 90[ ]+xor[ ]+(BYTE PTR )?\[eax-0x6f6f6f70\],dl *[0-9a-f]+: 31 90 90 90 90 90[ ]+xor[ ]+(DWORD PTR )?\[eax-0x6f6f6f70\],edx *[0-9a-f]+: 32 90 90 90 90 90[ ]+xor[ ]+dl,(BYTE PTR )?\[eax-0x6f6f6f70\] *[0-9a-f]+: 33 90 90 90 90 90[ ]+xor[ ]+edx,(DWORD PTR )?\[eax-0x6f6f6f70\] *[0-9a-f]+: 34 90[ ]+xor[ ]+al,0x90 *[0-9a-f]+: 35 90 90 90 90[ ]+xor[ ]+eax,0x90909090 - *[0-9a-f]+: 37[ ]+aaa[ ]* + *[0-9a-f]+: 37[ ]+aaa *[0-9a-f]+: 38 90 90 90 90 90[ ]+cmp[ ]+(BYTE PTR )?\[eax-0x6f6f6f70\],dl *[0-9a-f]+: 39 90 90 90 90 90[ ]+cmp[ ]+(DWORD PTR )?\[eax-0x6f6f6f70\],edx *[0-9a-f]+: 3a 90 90 90 90 90[ ]+cmp[ ]+dl,(BYTE PTR )?\[eax-0x6f6f6f70\] *[0-9a-f]+: 3b 90 90 90 90 90[ ]+cmp[ ]+edx,(DWORD PTR )?\[eax-0x6f6f6f70\] *[0-9a-f]+: 3c 90[ ]+cmp[ ]+al,0x90 *[0-9a-f]+: 3d 90 90 90 90[ ]+cmp[ ]+eax,0x90909090 - *[0-9a-f]+: 3f[ ]+aas[ ]* + *[0-9a-f]+: 3f[ ]+aas *[0-9a-f]+: 40[ ]+inc[ ]+eax *[0-9a-f]+: 41[ ]+inc[ ]+ecx *[0-9a-f]+: 42[ ]+inc[ ]+edx @@ -99,8 +99,8 @@ Disassembly of section .text: *[0-9a-f]+: 5d[ ]+pop[ ]+ebp *[0-9a-f]+: 5e[ ]+pop[ ]+esi *[0-9a-f]+: 5f[ ]+pop[ ]+edi - *[0-9a-f]+: 60[ ]+pusha[ ]* - *[0-9a-f]+: 61[ ]+popa[ ]* + *[0-9a-f]+: 60[ ]+pusha + *[0-9a-f]+: 61[ ]+popa *[0-9a-f]+: 62 90 90 90 90 90[ ]+bound[ ]+edx,(QWORD PTR )?\[eax-0x6f6f6f70\] *[0-9a-f]+: 63 90 90 90 90 90[ ]+arpl[ ]+(WORD PTR )?\[eax-0x6f6f6f70\],dx *[0-9a-f]+: 68 90 90 90 90[ ]+push[ ]+0x90909090 @@ -142,7 +142,7 @@ Disassembly of section .text: *[0-9a-f]+: 8d 90 90 90 90 90[ ]+lea[ ]+edx,\[eax-0x6f6f6f70\] *[0-9a-f]+: 8e 90 90 90 90 90[ ]+mov[ ]+ss,(WORD PTR )?\[eax-0x6f6f6f70\] *[0-9a-f]+: 8f 80 90 90 90 90[ ]+pop[ ]+DWORD PTR \[eax-0x6f6f6f70\] - *[0-9a-f]+: 90[ ]+nop[ ]* + *[0-9a-f]+: 90[ ]+nop *[0-9a-f]+: 91[ ]+xchg[ ]+ecx,eax *[0-9a-f]+: 92[ ]+xchg[ ]+edx,eax *[0-9a-f]+: 93[ ]+xchg[ ]+ebx,eax @@ -150,14 +150,14 @@ Disassembly of section .text: *[0-9a-f]+: 95[ ]+xchg[ ]+ebp,eax *[0-9a-f]+: 96[ ]+xchg[ ]+esi,eax *[0-9a-f]+: 97[ ]+xchg[ ]+edi,eax - *[0-9a-f]+: 98[ ]+cwde[ ]* - *[0-9a-f]+: 99[ ]+cdq[ ]* + *[0-9a-f]+: 98[ ]+cwde + *[0-9a-f]+: 99[ ]+cdq *[0-9a-f]+: 9a 90 90 90 90 90 90[ ]+call[ ]+0x9090:0x90909090 *[0-9a-f]+: 9b[ ]+fwait - *[0-9a-f]+: 9c[ ]+pushf[ ]* - *[0-9a-f]+: 9d[ ]+popf[ ]* - *[0-9a-f]+: 9e[ ]+sahf[ ]* - *[0-9a-f]+: 9f[ ]+lahf[ ]* + *[0-9a-f]+: 9c[ ]+pushf + *[0-9a-f]+: 9d[ ]+popf + *[0-9a-f]+: 9e[ ]+sahf + *[0-9a-f]+: 9f[ ]+lahf *[0-9a-f]+: a0 90 90 90 90[ ]+mov[ ]+al,ds:0x90909090 *[0-9a-f]+: a1 90 90 90 90[ ]+mov[ ]+eax,ds:0x90909090 *[0-9a-f]+: a2 90 90 90 90[ ]+mov[ ]+ds:0x90909090,al @@ -193,19 +193,19 @@ Disassembly of section .text: *[0-9a-f]+: c0 90 90 90 90 90 90[ ]+rcl[ ]+BYTE PTR \[eax-0x6f6f6f70\],0x90 *[0-9a-f]+: c1 90 90 90 90 90 90[ ]+rcl[ ]+DWORD PTR \[eax-0x6f6f6f70\],0x90 *[0-9a-f]+: c2 90 90[ ]+ret[ ]+0x9090 - *[0-9a-f]+: c3[ ]+ret[ ]* + *[0-9a-f]+: c3[ ]+ret *[0-9a-f]+: c4 90 90 90 90 90[ ]+les[ ]+edx,(FWORD PTR )?\[eax-0x6f6f6f70\] *[0-9a-f]+: c5 90 90 90 90 90[ ]+lds[ ]+edx,(FWORD PTR )?\[eax-0x6f6f6f70\] *[0-9a-f]+: c6 80 90 90 90 90 90[ ]+mov[ ]+BYTE PTR \[eax-0x6f6f6f70\],0x90 *[0-9a-f]+: c7 80 90 90 90 90 90 90 90 90[ ]+mov[ ]+DWORD PTR \[eax-0x6f6f6f70\],0x90909090 *[0-9a-f]+: c8 90 90 90[ ]+enter[ ]+0x9090,0x90 - *[0-9a-f]+: c9[ ]+leave[ ]* + *[0-9a-f]+: c9[ ]+leave *[0-9a-f]+: ca 90 90[ ]+retf[ ]+0x9090 - *[0-9a-f]+: cb[ ]+retf[ ]* - *[0-9a-f]+: cc[ ]+int3[ ]* + *[0-9a-f]+: cb[ ]+retf + *[0-9a-f]+: cc[ ]+int3 *[0-9a-f]+: cd 90[ ]+int[ ]+0x90 - *[0-9a-f]+: ce[ ]+into[ ]* - *[0-9a-f]+: cf[ ]+iret[ ]* + *[0-9a-f]+: ce[ ]+into + *[0-9a-f]+: cf[ ]+iret *[0-9a-f]+: d0 90 90 90 90 90[ ]+rcl[ ]+BYTE PTR \[eax-0x6f6f6f70\],1 *[0-9a-f]+: d1 90 90 90 90 90[ ]+rcl[ ]+DWORD PTR \[eax-0x6f6f6f70\],1 *[0-9a-f]+: d2 90 90 90 90 90[ ]+rcl[ ]+BYTE PTR \[eax-0x6f6f6f70\],cl @@ -237,35 +237,35 @@ Disassembly of section .text: *[0-9a-f]+: ed[ ]+in[ ]+eax,dx *[0-9a-f]+: ee[ ]+out[ ]+dx,al *[0-9a-f]+: ef[ ]+out[ ]+dx,eax - *[0-9a-f]+: f4[ ]+hlt[ ]* - *[0-9a-f]+: f5[ ]+cmc[ ]* + *[0-9a-f]+: f4[ ]+hlt + *[0-9a-f]+: f5[ ]+cmc *[0-9a-f]+: f6 90 90 90 90 90[ ]+not[ ]+BYTE PTR \[eax-0x6f6f6f70\] *[0-9a-f]+: f7 90 90 90 90 90[ ]+not[ ]+DWORD PTR \[eax-0x6f6f6f70\] - *[0-9a-f]+: f8[ ]+clc[ ]* - *[0-9a-f]+: f9[ ]+stc[ ]* - *[0-9a-f]+: fa[ ]+cli[ ]* - *[0-9a-f]+: fb[ ]+sti[ ]* - *[0-9a-f]+: fc[ ]+cld[ ]* - *[0-9a-f]+: fd[ ]+std[ ]* + *[0-9a-f]+: f8[ ]+clc + *[0-9a-f]+: f9[ ]+stc + *[0-9a-f]+: fa[ ]+cli + *[0-9a-f]+: fb[ ]+sti + *[0-9a-f]+: fc[ ]+cld + *[0-9a-f]+: fd[ ]+std *[0-9a-f]+: ff 90 90 90 90 90[ ]+call[ ]+DWORD PTR \[eax-0x6f6f6f70\] *[0-9a-f]+: 0f 00 90 90 90 90 90[ ]+lldt[ ]+(WORD PTR )?\[eax-0x6f6f6f70\] *[0-9a-f]+: 0f 01 90 90 90 90 90[ ]+lgdtd[ ]+\[eax-0x6f6f6f70\] *[0-9a-f]+: 0f 02 90 90 90 90 90[ ]+lar[ ]+edx,(WORD PTR )?\[eax-0x6f6f6f70\] *[0-9a-f]+: 0f 03 90 90 90 90 90[ ]+lsl[ ]+edx,(WORD PTR )?\[eax-0x6f6f6f70\] - *[0-9a-f]+: 0f 06[ ]+clts[ ]* - *[0-9a-f]+: 0f 08[ ]+invd[ ]* - *[0-9a-f]+: 0f 09[ ]+wbinvd[ ]* - *[0-9a-f]+: 0f 0b[ ]+ud2[ ]* + *[0-9a-f]+: 0f 06[ ]+clts + *[0-9a-f]+: 0f 08[ ]+invd + *[0-9a-f]+: 0f 09[ ]+wbinvd + *[0-9a-f]+: 0f 0b[ ]+ud2 *[0-9a-f]+: 0f 20 d0[ ]+mov[ ]+eax,cr2 *[0-9a-f]+: 0f 21 d0[ ]+mov[ ]+eax,dr2 *[0-9a-f]+: 0f 22 d0[ ]+mov[ ]+cr2,eax *[0-9a-f]+: 0f 23 d0[ ]+mov[ ]+dr2,eax *[0-9a-f]+: 0f 24 d0[ ]+mov[ ]+eax,tr2 *[0-9a-f]+: 0f 26 d0[ ]+mov[ ]+tr2,eax - *[0-9a-f]+: 0f 30[ ]+wrmsr[ ]* - *[0-9a-f]+: 0f 31[ ]+rdtsc[ ]* - *[0-9a-f]+: 0f 32[ ]+rdmsr[ ]* - *[0-9a-f]+: 0f 33[ ]+rdpmc[ ]* + *[0-9a-f]+: 0f 30[ ]+wrmsr + *[0-9a-f]+: 0f 31[ ]+rdtsc + *[0-9a-f]+: 0f 32[ ]+rdmsr + *[0-9a-f]+: 0f 33[ ]+rdpmc *[0-9a-f]+: 0f 40 90 90 90 90 90[ ]+cmovo[ ]+edx,(DWORD PTR )?\[eax-0x6f6f6f70\] *[0-9a-f]+: 0f 41 90 90 90 90 90[ ]+cmovno[ ]+edx,(DWORD PTR )?\[eax-0x6f6f6f70\] *[0-9a-f]+: 0f 42 90 90 90 90 90[ ]+cmovb[ ]+edx,(DWORD PTR )?\[eax-0x6f6f6f70\] @@ -302,7 +302,7 @@ Disassembly of section .text: *[0-9a-f]+: 0f 74 90 90 90 90 90[ ]+pcmpeqb[ ]+mm2,(QWORD PTR )?\[eax-0x6f6f6f70\] *[0-9a-f]+: 0f 75 90 90 90 90 90[ ]+pcmpeqw[ ]+mm2,(QWORD PTR )?\[eax-0x6f6f6f70\] *[0-9a-f]+: 0f 76 90 90 90 90 90[ ]+pcmpeqd[ ]+mm2,(QWORD PTR )?\[eax-0x6f6f6f70\] - *[0-9a-f]+: 0f 77[ ]+emms[ ]* + *[0-9a-f]+: 0f 77[ ]+emms *[0-9a-f]+: 0f 7e 90 90 90 90 90[ ]+movd[ ]+(DWORD PTR )?\[eax-0x6f6f6f70\],mm2 *[0-9a-f]+: 0f 7f 90 90 90 90 90[ ]+movq[ ]+(QWORD PTR )?\[eax-0x6f6f6f70\],mm2 *[0-9a-f]+: 0f 80 90 90 90 90[ ]+jo[ ]+909094e2 <foo\+0x909094e2> @@ -339,13 +339,13 @@ Disassembly of section .text: *[0-9a-f]+: 0f 9f 80 90 90 90 90[ ]+setg[ ]+(BYTE PTR )?\[eax-0x6f6f6f70\] *[0-9a-f]+: 0f a0[ ]+push[ ]+fs *[0-9a-f]+: 0f a1[ ]+pop[ ]+fs - *[0-9a-f]+: 0f a2[ ]+cpuid[ ]* + *[0-9a-f]+: 0f a2[ ]+cpuid *[0-9a-f]+: 0f a3 90 90 90 90 90[ ]+bt[ ]+(DWORD PTR )?\[eax-0x6f6f6f70\],edx *[0-9a-f]+: 0f a4 90 90 90 90 90 90[ ]+shld[ ]+(DWORD PTR )?\[eax-0x6f6f6f70\],edx,0x90 *[0-9a-f]+: 0f a5 90 90 90 90 90[ ]+shld[ ]+(DWORD PTR )?\[eax-0x6f6f6f70\],edx,cl *[0-9a-f]+: 0f a8[ ]+push[ ]+gs *[0-9a-f]+: 0f a9[ ]+pop[ ]+gs - *[0-9a-f]+: 0f aa[ ]+rsm[ ]* + *[0-9a-f]+: 0f aa[ ]+rsm *[0-9a-f]+: 0f ab 90 90 90 90 90[ ]+bts[ ]+(DWORD PTR )?\[eax-0x6f6f6f70\],edx *[0-9a-f]+: 0f ac 90 90 90 90 90 90[ ]+shrd[ ]+(DWORD PTR )?\[eax-0x6f6f6f70\],edx,0x90 *[0-9a-f]+: 0f ad 90 90 90 90 90[ ]+shrd[ ]+(DWORD PTR )?\[eax-0x6f6f6f70\],edx,cl @@ -358,7 +358,7 @@ Disassembly of section .text: *[0-9a-f]+: 0f b5 90 90 90 90 90[ ]+lgs[ ]+edx,(FWORD PTR )?\[eax-0x6f6f6f70\] *[0-9a-f]+: 0f b6 90 90 90 90 90[ ]+movzx[ ]+edx,BYTE PTR \[eax-0x6f6f6f70\] *[0-9a-f]+: 0f b7 90 90 90 90 90[ ]+movzx[ ]+edx,WORD PTR \[eax-0x6f6f6f70\] - *[0-9a-f]+: 0f 0b[ ]+ud2[ ]* + *[0-9a-f]+: 0f 0b[ ]+ud2 *[0-9a-f]+: 0f bb 90 90 90 90 90[ ]+btc[ ]+(DWORD PTR )?\[eax-0x6f6f6f70\],edx *[0-9a-f]+: 0f bc 90 90 90 90 90[ ]+bsf[ ]+edx,(DWORD PTR )?\[eax-0x6f6f6f70\] *[0-9a-f]+: 0f bd 90 90 90 90 90[ ]+bsr[ ]+edx,(DWORD PTR )?\[eax-0x6f6f6f70\] @@ -466,8 +466,8 @@ Disassembly of section .text: *[0-9a-f]+: 66 5d[ ]+pop[ ]+bp *[0-9a-f]+: 66 5e[ ]+pop[ ]+si *[0-9a-f]+: 66 5f[ ]+pop[ ]+di - *[0-9a-f]+: 66 60[ ]+pushaw[ ]* - *[0-9a-f]+: 66 61[ ]+popaw[ ]* + *[0-9a-f]+: 66 60[ ]+pushaw + *[0-9a-f]+: 66 61[ ]+popaw *[0-9a-f]+: 66 62 90 90 90 90 90[ ]+bound[ ]+dx,(DWORD PTR )?\[eax-0x6f6f6f70\] *[0-9a-f]+: 66 68 90 90[ ]+pushw[ ]+0x9090 *[0-9a-f]+: 66 69 90 90 90 90 90 90 90[ ]+imul[ ]+dx,(WORD PTR )?\[eax-0x6f6f6f70\],0x9090 @@ -491,11 +491,11 @@ Disassembly of section .text: *[0-9a-f]+: 66 95[ ]+xchg[ ]+bp,ax *[0-9a-f]+: 66 96[ ]+xchg[ ]+si,ax *[0-9a-f]+: 66 97[ ]+xchg[ ]+di,ax - *[0-9a-f]+: 66 98[ ]+cbw[ ]* - *[0-9a-f]+: 66 99[ ]+cwd[ ]* + *[0-9a-f]+: 66 98[ ]+cbw + *[0-9a-f]+: 66 99[ ]+cwd *[0-9a-f]+: 66 9a 90 90 90 90[ ]+call[ ]+0x9090:0x9090 - *[0-9a-f]+: 66 9c[ ]+pushfw[ ]* - *[0-9a-f]+: 66 9d[ ]+popfw[ ]* + *[0-9a-f]+: 66 9c[ ]+pushfw + *[0-9a-f]+: 66 9d[ ]+popfw *[0-9a-f]+: 66 a1 90 90 90 90[ ]+mov[ ]+ax,ds:0x90909090 *[0-9a-f]+: 66 a3 90 90 90 90[ ]+mov[ ]+ds:0x90909090,ax *[0-9a-f]+: 66 a5[ ]+movs[ ]+WORD PTR es:\[edi\],(WORD PTR )?ds:\[esi\] @@ -514,15 +514,15 @@ Disassembly of section .text: *[0-9a-f]+: 66 bf 90 90[ ]+mov[ ]+di,0x9090 *[0-9a-f]+: 66 c1 90 90 90 90 90 90[ ]+rcl[ ]+WORD PTR \[eax-0x6f6f6f70\],0x90 *[0-9a-f]+: 66 c2 90 90[ ]+retw[ ]+0x9090 - *[0-9a-f]+: 66 c3[ ]+retw[ ]* + *[0-9a-f]+: 66 c3[ ]+retw *[0-9a-f]+: 66 c4 90 90 90 90 90[ ]+les[ ]+dx,(DWORD PTR )?\[eax-0x6f6f6f70\] *[0-9a-f]+: 66 c5 90 90 90 90 90[ ]+lds[ ]+dx,(DWORD PTR )?\[eax-0x6f6f6f70\] *[0-9a-f]+: 66 c7 80 90 90 90 90 90 90[ ]+mov[ ]+WORD PTR \[eax-0x6f6f6f70\],0x9090 *[0-9a-f]+: 66 c8 90 90 90[ ]+enterw[ ]+0x9090,0x90 - *[0-9a-f]+: 66 c9[ ]+leavew[ ]* + *[0-9a-f]+: 66 c9[ ]+leavew *[0-9a-f]+: 66 ca 90 90[ ]+retfw[ ]+0x9090 - *[0-9a-f]+: 66 cb[ ]+retfw[ ]* - *[0-9a-f]+: 66 cf[ ]+iretw[ ]* + *[0-9a-f]+: 66 cb[ ]+retfw + *[0-9a-f]+: 66 cf[ ]+iretw *[0-9a-f]+: 66 d1 90 90 90 90 90[ ]+rcl[ ]+WORD PTR \[eax-0x6f6f6f70\],1 *[0-9a-f]+: 66 d3 90 90 90 90 90[ ]+rcl[ ]+WORD PTR \[eax-0x6f6f6f70\],cl *[0-9a-f]+: 66 e5 90[ ]+in[ ]+ax,0x90 @@ -588,7 +588,7 @@ Disassembly of section .text: *[0-9a-f]+: 85 c3 [ ]*test[ ]+ebx,eax *[0-9a-f]+: 85 d8 [ ]*test[ ]+eax,ebx *[0-9a-f]+: 85 18 [ ]*test[ ]+(DWORD PTR )?\[eax\],ebx - *[0-9a-f]+: f1[ ]+int1[ ]+ + *[0-9a-f]+: f1[ ]+int1 [ ]*[a-f0-9]+: 0f 4a 90 90 90 90 90 cmovp edx,DWORD PTR \[eax-0x6f6f6f70\] [ ]*[a-f0-9]+: 0f 4b 90 90 90 90 90 cmovnp edx,DWORD PTR \[eax-0x6f6f6f70\] [ ]*[a-f0-9]+: 66 0f 4a 90 90 90 90 90 cmovp dx,WORD PTR \[eax-0x6f6f6f70\] diff --git a/gas/testsuite/gas/i386/opcode-suffix.d b/gas/testsuite/gas/i386/opcode-suffix.d index 6a9c4cd..7a157ee 100644 --- a/gas/testsuite/gas/i386/opcode-suffix.d +++ b/gas/testsuite/gas/i386/opcode-suffix.d @@ -45,28 +45,28 @@ Disassembly of section .text: *[0-9a-f]+: 23 90 90 90 90 90[ ]+andl[ ]+-0x6f6f6f70\(%eax\),%edx *[0-9a-f]+: 24 90[ ]+andb[ ]+\$0x90,%al *[0-9a-f]+: 25 90 90 90 90[ ]+andl[ ]+\$0x90909090,%eax - *[0-9a-f]+: 27[ ]+daa[ ]+ + *[0-9a-f]+: 27[ ]+daa *[0-9a-f]+: 28 90 90 90 90 90[ ]+subb[ ]+%dl,-0x6f6f6f70\(%eax\) *[0-9a-f]+: 29 90 90 90 90 90[ ]+subl[ ]+%edx,-0x6f6f6f70\(%eax\) *[0-9a-f]+: 2a 90 90 90 90 90[ ]+subb[ ]+-0x6f6f6f70\(%eax\),%dl *[0-9a-f]+: 2b 90 90 90 90 90[ ]+subl[ ]+-0x6f6f6f70\(%eax\),%edx *[0-9a-f]+: 2c 90[ ]+subb[ ]+\$0x90,%al *[0-9a-f]+: 2d 90 90 90 90[ ]+subl[ ]+\$0x90909090,%eax - *[0-9a-f]+: 2f[ ]+das[ ]+ + *[0-9a-f]+: 2f[ ]+das *[0-9a-f]+: 30 90 90 90 90 90[ ]+xorb[ ]+%dl,-0x6f6f6f70\(%eax\) *[0-9a-f]+: 31 90 90 90 90 90[ ]+xorl[ ]+%edx,-0x6f6f6f70\(%eax\) *[0-9a-f]+: 32 90 90 90 90 90[ ]+xorb[ ]+-0x6f6f6f70\(%eax\),%dl *[0-9a-f]+: 33 90 90 90 90 90[ ]+xorl[ ]+-0x6f6f6f70\(%eax\),%edx *[0-9a-f]+: 34 90[ ]+xorb[ ]+\$0x90,%al *[0-9a-f]+: 35 90 90 90 90[ ]+xorl[ ]+\$0x90909090,%eax - *[0-9a-f]+: 37[ ]+aaa[ ]+ + *[0-9a-f]+: 37[ ]+aaa *[0-9a-f]+: 38 90 90 90 90 90[ ]+cmpb[ ]+%dl,-0x6f6f6f70\(%eax\) *[0-9a-f]+: 39 90 90 90 90 90[ ]+cmpl[ ]+%edx,-0x6f6f6f70\(%eax\) *[0-9a-f]+: 3a 90 90 90 90 90[ ]+cmpb[ ]+-0x6f6f6f70\(%eax\),%dl *[0-9a-f]+: 3b 90 90 90 90 90[ ]+cmpl[ ]+-0x6f6f6f70\(%eax\),%edx *[0-9a-f]+: 3c 90[ ]+cmpb[ ]+\$0x90,%al *[0-9a-f]+: 3d 90 90 90 90[ ]+cmpl[ ]+\$0x90909090,%eax - *[0-9a-f]+: 3f[ ]+aas[ ]+ + *[0-9a-f]+: 3f[ ]+aas *[0-9a-f]+: 40[ ]+incl[ ]+%eax *[0-9a-f]+: 41[ ]+incl[ ]+%ecx *[0-9a-f]+: 42[ ]+incl[ ]+%edx @@ -99,8 +99,8 @@ Disassembly of section .text: *[0-9a-f]+: 5d[ ]+popl[ ]+%ebp *[0-9a-f]+: 5e[ ]+popl[ ]+%esi *[0-9a-f]+: 5f[ ]+popl[ ]+%edi - *[0-9a-f]+: 60[ ]+pushal - *[0-9a-f]+: 61[ ]+popal[ ]+ + *[0-9a-f]+: 60[ ]+pushal + *[0-9a-f]+: 61[ ]+popal *[0-9a-f]+: 62 90 90 90 90 90[ ]+boundl %edx,-0x6f6f6f70\(%eax\) *[0-9a-f]+: 63 90 90 90 90 90[ ]+arpl[ ]+%dx,-0x6f6f6f70\(%eax\) *[0-9a-f]+: 68 90 90 90 90[ ]+pushl[ ]+\$0x90909090 @@ -150,14 +150,14 @@ Disassembly of section .text: *[0-9a-f]+: 95[ ]+xchgl[ ]+%eax,%ebp *[0-9a-f]+: 96[ ]+xchgl[ ]+%eax,%esi *[0-9a-f]+: 97[ ]+xchgl[ ]+%eax,%edi - *[0-9a-f]+: 98[ ]+cwtl[ ]+ - *[0-9a-f]+: 99[ ]+cltd[ ]+ + *[0-9a-f]+: 98[ ]+cwtl + *[0-9a-f]+: 99[ ]+cltd *[0-9a-f]+: 9a 90 90 90 90 90 90[ ]+lcalll \$0x9090,\$0x90909090 *[0-9a-f]+: 9b[ ]+fwait - *[0-9a-f]+: 9c[ ]+pushfl - *[0-9a-f]+: 9d[ ]+popfl[ ]+ - *[0-9a-f]+: 9e[ ]+sahf[ ]+ - *[0-9a-f]+: 9f[ ]+lahf[ ]+ + *[0-9a-f]+: 9c[ ]+pushfl + *[0-9a-f]+: 9d[ ]+popfl + *[0-9a-f]+: 9e[ ]+sahf + *[0-9a-f]+: 9f[ ]+lahf *[0-9a-f]+: a0 90 90 90 90[ ]+movb[ ]+0x90909090,%al *[0-9a-f]+: a1 90 90 90 90[ ]+movl[ ]+0x90909090,%eax *[0-9a-f]+: a2 90 90 90 90[ ]+movb[ ]+%al,0x90909090 @@ -193,19 +193,19 @@ Disassembly of section .text: *[0-9a-f]+: c0 90 90 90 90 90 90[ ]+rclb[ ]+\$0x90,-0x6f6f6f70\(%eax\) *[0-9a-f]+: c1 90 90 90 90 90 90[ ]+rcll[ ]+\$0x90,-0x6f6f6f70\(%eax\) *[0-9a-f]+: c2 90 90[ ]+retl[ ]+\$0x9090 - *[0-9a-f]+: c3[ ]+retl[ ]+ + *[0-9a-f]+: c3[ ]+retl *[0-9a-f]+: c4 90 90 90 90 90[ ]+lesl[ ]+-0x6f6f6f70\(%eax\),%edx *[0-9a-f]+: c5 90 90 90 90 90[ ]+ldsl[ ]+-0x6f6f6f70\(%eax\),%edx *[0-9a-f]+: c6 80 90 90 90 90 90[ ]+movb[ ]+\$0x90,-0x6f6f6f70\(%eax\) *[0-9a-f]+: c7 80 90 90 90 90 90 90 90 90[ ]+movl[ ]+\$0x90909090,-0x6f6f6f70\(%eax\) *[0-9a-f]+: c8 90 90 90[ ]+enterl \$0x9090,\$0x90 - *[0-9a-f]+: c9[ ]+leavel + *[0-9a-f]+: c9[ ]+leavel *[0-9a-f]+: ca 90 90[ ]+lretl[ ]+\$0x9090 - *[0-9a-f]+: cb[ ]+lretl[ ]+ - *[0-9a-f]+: cc[ ]+int3[ ]+ + *[0-9a-f]+: cb[ ]+lretl + *[0-9a-f]+: cc[ ]+int3 *[0-9a-f]+: cd 90[ ]+int[ ]+\$0x90 - *[0-9a-f]+: ce[ ]+into[ ]+ - *[0-9a-f]+: cf[ ]+iretl[ ]+ + *[0-9a-f]+: ce[ ]+into + *[0-9a-f]+: cf[ ]+iretl *[0-9a-f]+: d0 90 90 90 90 90[ ]+rclb[ ]+-0x6f6f6f70\(%eax\) *[0-9a-f]+: d1 90 90 90 90 90[ ]+rcll[ ]+-0x6f6f6f70\(%eax\) *[0-9a-f]+: d2 90 90 90 90 90[ ]+rclb[ ]+%cl,-0x6f6f6f70\(%eax\) @@ -237,35 +237,35 @@ Disassembly of section .text: *[0-9a-f]+: ed[ ]+inl[ ]+\(%dx\),%eax *[0-9a-f]+: ee[ ]+outb[ ]+%al,\(%dx\) *[0-9a-f]+: ef[ ]+outl[ ]+%eax,\(%dx\) - *[0-9a-f]+: f4[ ]+hlt[ ]+ - *[0-9a-f]+: f5[ ]+cmc[ ]+ + *[0-9a-f]+: f4[ ]+hlt + *[0-9a-f]+: f5[ ]+cmc *[0-9a-f]+: f6 90 90 90 90 90[ ]+notb[ ]+-0x6f6f6f70\(%eax\) *[0-9a-f]+: f7 90 90 90 90 90[ ]+notl[ ]+-0x6f6f6f70\(%eax\) - *[0-9a-f]+: f8[ ]+clc[ ]+ - *[0-9a-f]+: f9[ ]+stc[ ]+ - *[0-9a-f]+: fa[ ]+cli[ ]+ - *[0-9a-f]+: fb[ ]+sti[ ]+ - *[0-9a-f]+: fc[ ]+cld[ ]+ - *[0-9a-f]+: fd[ ]+std[ ]+ + *[0-9a-f]+: f8[ ]+clc + *[0-9a-f]+: f9[ ]+stc + *[0-9a-f]+: fa[ ]+cli + *[0-9a-f]+: fb[ ]+sti + *[0-9a-f]+: fc[ ]+cld + *[0-9a-f]+: fd[ ]+std *[0-9a-f]+: ff 90 90 90 90 90[ ]+calll[ ]+\*-0x6f6f6f70\(%eax\) *[0-9a-f]+: 0f 00 90 90 90 90 90[ ]+lldt[ ]+-0x6f6f6f70\(%eax\) *[0-9a-f]+: 0f 01 90 90 90 90 90[ ]+lgdtl[ ]+-0x6f6f6f70\(%eax\) *[0-9a-f]+: 0f 02 90 90 90 90 90[ ]+larl[ ]+-0x6f6f6f70\(%eax\),%edx *[0-9a-f]+: 0f 03 90 90 90 90 90[ ]+lsll[ ]+-0x6f6f6f70\(%eax\),%edx - *[0-9a-f]+: 0f 06[ ]+clts[ ]+ - *[0-9a-f]+: 0f 08[ ]+invd[ ]+ - *[0-9a-f]+: 0f 09[ ]+wbinvd - *[0-9a-f]+: 0f 0b[ ]+ud2[ ]+ + *[0-9a-f]+: 0f 06[ ]+clts + *[0-9a-f]+: 0f 08[ ]+invd + *[0-9a-f]+: 0f 09[ ]+wbinvd + *[0-9a-f]+: 0f 0b[ ]+ud2 *[0-9a-f]+: 0f 20 d0[ ]+movl[ ]+%cr2,%eax *[0-9a-f]+: 0f 21 d0[ ]+movl[ ]+%db2,%eax *[0-9a-f]+: 0f 22 d0[ ]+movl[ ]+%eax,%cr2 *[0-9a-f]+: 0f 23 d0[ ]+movl[ ]+%eax,%db2 *[0-9a-f]+: 0f 24 d0[ ]+movl[ ]+%tr2,%eax *[0-9a-f]+: 0f 26 d0[ ]+movl[ ]+%eax,%tr2 - *[0-9a-f]+: 0f 30[ ]+wrmsr[ ]+ - *[0-9a-f]+: 0f 31[ ]+rdtsc[ ]+ - *[0-9a-f]+: 0f 32[ ]+rdmsr[ ]+ - *[0-9a-f]+: 0f 33[ ]+rdpmc[ ]+ + *[0-9a-f]+: 0f 30[ ]+wrmsr + *[0-9a-f]+: 0f 31[ ]+rdtsc + *[0-9a-f]+: 0f 32[ ]+rdmsr + *[0-9a-f]+: 0f 33[ ]+rdpmc *[0-9a-f]+: 0f 40 90 90 90 90 90[ ]+cmovol[ ]+-0x6f6f6f70\(%eax\),%edx *[0-9a-f]+: 0f 41 90 90 90 90 90[ ]+cmovnol -0x6f6f6f70\(%eax\),%edx *[0-9a-f]+: 0f 42 90 90 90 90 90[ ]+cmovbl[ ]+-0x6f6f6f70\(%eax\),%edx @@ -302,7 +302,7 @@ Disassembly of section .text: *[0-9a-f]+: 0f 74 90 90 90 90 90[ ]+pcmpeqb -0x6f6f6f70\(%eax\),%mm2 *[0-9a-f]+: 0f 75 90 90 90 90 90[ ]+pcmpeqw -0x6f6f6f70\(%eax\),%mm2 *[0-9a-f]+: 0f 76 90 90 90 90 90[ ]+pcmpeqd -0x6f6f6f70\(%eax\),%mm2 - *[0-9a-f]+: 0f 77[ ]+emms[ ]+ + *[0-9a-f]+: 0f 77[ ]+emms *[0-9a-f]+: 0f 7e 90 90 90 90 90[ ]+movd[ ]+%mm2,-0x6f6f6f70\(%eax\) *[0-9a-f]+: 0f 7f 90 90 90 90 90[ ]+movq[ ]+%mm2,-0x6f6f6f70\(%eax\) *[0-9a-f]+: 0f 80 90 90 90 90[ ]+jo[ ]+909094e2 <foo\+0x909094e2> @@ -339,13 +339,13 @@ Disassembly of section .text: *[0-9a-f]+: 0f 9f 80 90 90 90 90[ ]+setg[ ]+-0x6f6f6f70\(%eax\) *[0-9a-f]+: 0f a0[ ]+pushl[ ]+%fs *[0-9a-f]+: 0f a1[ ]+popl[ ]+%fs - *[0-9a-f]+: 0f a2[ ]+cpuid[ ]+ + *[0-9a-f]+: 0f a2[ ]+cpuid *[0-9a-f]+: 0f a3 90 90 90 90 90[ ]+btl[ ]+%edx,-0x6f6f6f70\(%eax\) *[0-9a-f]+: 0f a4 90 90 90 90 90 90[ ]+shldl[ ]+\$0x90,%edx,-0x6f6f6f70\(%eax\) *[0-9a-f]+: 0f a5 90 90 90 90 90[ ]+shldl[ ]+%cl,%edx,-0x6f6f6f70\(%eax\) *[0-9a-f]+: 0f a8[ ]+pushl[ ]+%gs *[0-9a-f]+: 0f a9[ ]+popl[ ]+%gs - *[0-9a-f]+: 0f aa[ ]+rsm[ ]+ + *[0-9a-f]+: 0f aa[ ]+rsm *[0-9a-f]+: 0f ab 90 90 90 90 90[ ]+btsl[ ]+%edx,-0x6f6f6f70\(%eax\) *[0-9a-f]+: 0f ac 90 90 90 90 90 90[ ]+shrdl[ ]+\$0x90,%edx,-0x6f6f6f70\(%eax\) *[0-9a-f]+: 0f ad 90 90 90 90 90[ ]+shrdl[ ]+%cl,%edx,-0x6f6f6f70\(%eax\) @@ -358,7 +358,7 @@ Disassembly of section .text: *[0-9a-f]+: 0f b5 90 90 90 90 90[ ]+lgsl[ ]+-0x6f6f6f70\(%eax\),%edx *[0-9a-f]+: 0f b6 90 90 90 90 90[ ]+movzbl -0x6f6f6f70\(%eax\),%edx *[0-9a-f]+: 0f b7 90 90 90 90 90[ ]+movzwl -0x6f6f6f70\(%eax\),%edx - *[0-9a-f]+: 0f 0b[ ]+ud2[ ]* + *[0-9a-f]+: 0f 0b[ ]+ud2 *[0-9a-f]+: 0f bb 90 90 90 90 90[ ]+btcl[ ]+%edx,-0x6f6f6f70\(%eax\) *[0-9a-f]+: 0f bc 90 90 90 90 90[ ]+bsfl[ ]+-0x6f6f6f70\(%eax\),%edx *[0-9a-f]+: 0f bd 90 90 90 90 90[ ]+bsrl[ ]+-0x6f6f6f70\(%eax\),%edx @@ -466,8 +466,8 @@ Disassembly of section .text: *[0-9a-f]+: 66 5d[ ]+popw[ ]+%bp *[0-9a-f]+: 66 5e[ ]+popw[ ]+%si *[0-9a-f]+: 66 5f[ ]+popw[ ]+%di - *[0-9a-f]+: 66 60[ ]+pushaw - *[0-9a-f]+: 66 61[ ]+popaw[ ]+ + *[0-9a-f]+: 66 60[ ]+pushaw + *[0-9a-f]+: 66 61[ ]+popaw *[0-9a-f]+: 66 62 90 90 90 90 90[ ]+boundw %dx,-0x6f6f6f70\(%eax\) *[0-9a-f]+: 66 68 90 90[ ]+pushw[ ]+\$0x9090 *[0-9a-f]+: 66 69 90 90 90 90 90 90 90[ ]+imulw[ ]+\$0x9090,-0x6f6f6f70\(%eax\),%dx @@ -491,11 +491,11 @@ Disassembly of section .text: *[0-9a-f]+: 66 95[ ]+xchgw[ ]+%ax,%bp *[0-9a-f]+: 66 96[ ]+xchgw[ ]+%ax,%si *[0-9a-f]+: 66 97[ ]+xchgw[ ]+%ax,%di - *[0-9a-f]+: 66 98[ ]+cbtw[ ]+ - *[0-9a-f]+: 66 99[ ]+cwtd[ ]+ + *[0-9a-f]+: 66 98[ ]+cbtw + *[0-9a-f]+: 66 99[ ]+cwtd *[0-9a-f]+: 66 9a 90 90 90 90[ ]+lcallw \$0x9090,\$0x9090 - *[0-9a-f]+: 66 9c[ ]+pushfw - *[0-9a-f]+: 66 9d[ ]+popfw[ ]+ + *[0-9a-f]+: 66 9c[ ]+pushfw + *[0-9a-f]+: 66 9d[ ]+popfw *[0-9a-f]+: 66 a1 90 90 90 90[ ]+movw[ ]+0x90909090,%ax *[0-9a-f]+: 66 a3 90 90 90 90[ ]+movw[ ]+%ax,0x90909090 *[0-9a-f]+: 66 a5[ ]+movsw[ ]+%ds:\(%esi\),%es:\(%edi\) @@ -514,15 +514,15 @@ Disassembly of section .text: *[0-9a-f]+: 66 bf 90 90[ ]+movw[ ]+\$0x9090,%di *[0-9a-f]+: 66 c1 90 90 90 90 90 90[ ]+rclw[ ]+\$0x90,-0x6f6f6f70\(%eax\) *[0-9a-f]+: 66 c2 90 90[ ]+retw[ ]+\$0x9090 - *[0-9a-f]+: 66 c3[ ]+retw[ ]+ + *[0-9a-f]+: 66 c3[ ]+retw *[0-9a-f]+: 66 c4 90 90 90 90 90[ ]+lesw[ ]+-0x6f6f6f70\(%eax\),%dx *[0-9a-f]+: 66 c5 90 90 90 90 90[ ]+ldsw[ ]+-0x6f6f6f70\(%eax\),%dx *[0-9a-f]+: 66 c7 80 90 90 90 90 90 90[ ]+movw[ ]+\$0x9090,-0x6f6f6f70\(%eax\) *[0-9a-f]+: 66 c8 90 90 90[ ]+enterw \$0x9090,\$0x90 - *[0-9a-f]+: 66 c9[ ]+leavew + *[0-9a-f]+: 66 c9[ ]+leavew *[0-9a-f]+: 66 ca 90 90[ ]+lretw[ ]+\$0x9090 - *[0-9a-f]+: 66 cb[ ]+lretw[ ]+ - *[0-9a-f]+: 66 cf[ ]+iretw[ ]+ + *[0-9a-f]+: 66 cb[ ]+lretw + *[0-9a-f]+: 66 cf[ ]+iretw *[0-9a-f]+: 66 d1 90 90 90 90 90[ ]+rclw[ ]+-0x6f6f6f70\(%eax\) *[0-9a-f]+: 66 d3 90 90 90 90 90[ ]+rclw[ ]+%cl,-0x6f6f6f70\(%eax\) *[0-9a-f]+: 66 e5 90[ ]+inw[ ]+\$0x90,%ax @@ -588,7 +588,7 @@ Disassembly of section .text: *[0-9a-f]+: 85 c3 [ ]*testl[ ]+%eax,%ebx *[0-9a-f]+: 85 d8 [ ]*testl[ ]+%ebx,%eax *[0-9a-f]+: 85 18 [ ]*testl[ ]+%ebx,\(%eax\) - *[0-9a-f]+: f1[ ]+int1[ ]+ + *[0-9a-f]+: f1[ ]+int1 [ ]*[a-f0-9]+: 0f 4a 90 90 90 90 90 cmovpl -0x6f6f6f70\(%eax\),%edx [ ]*[a-f0-9]+: 0f 4b 90 90 90 90 90 cmovnpl -0x6f6f6f70\(%eax\),%edx [ ]*[a-f0-9]+: 66 0f 4a 90 90 90 90 90 cmovpw -0x6f6f6f70\(%eax\),%dx diff --git a/gas/testsuite/gas/i386/opcode.d b/gas/testsuite/gas/i386/opcode.d index 9c1f67f..c431c4e 100644 --- a/gas/testsuite/gas/i386/opcode.d +++ b/gas/testsuite/gas/i386/opcode.d @@ -44,28 +44,28 @@ Disassembly of section .text: 95: 23 90 90 90 90 90 [ ]*and -0x6f6f6f70\(%eax\),%edx 9b: 24 90 [ ]*and \$0x90,%al 9d: 25 90 90 90 90 [ ]*and \$0x90909090,%eax - a2: 27 [ ]*daa + a2: 27 [ ]*daa a3: 28 90 90 90 90 90 [ ]*sub %dl,-0x6f6f6f70\(%eax\) a9: 29 90 90 90 90 90 [ ]*sub %edx,-0x6f6f6f70\(%eax\) af: 2a 90 90 90 90 90 [ ]*sub -0x6f6f6f70\(%eax\),%dl b5: 2b 90 90 90 90 90 [ ]*sub -0x6f6f6f70\(%eax\),%edx bb: 2c 90 [ ]*sub \$0x90,%al bd: 2d 90 90 90 90 [ ]*sub \$0x90909090,%eax - c2: 2f [ ]*das + c2: 2f [ ]*das c3: 30 90 90 90 90 90 [ ]*xor %dl,-0x6f6f6f70\(%eax\) c9: 31 90 90 90 90 90 [ ]*xor %edx,-0x6f6f6f70\(%eax\) cf: 32 90 90 90 90 90 [ ]*xor -0x6f6f6f70\(%eax\),%dl d5: 33 90 90 90 90 90 [ ]*xor -0x6f6f6f70\(%eax\),%edx db: 34 90 [ ]*xor \$0x90,%al dd: 35 90 90 90 90 [ ]*xor \$0x90909090,%eax - e2: 37 [ ]*aaa + e2: 37 [ ]*aaa e3: 38 90 90 90 90 90 [ ]*cmp %dl,-0x6f6f6f70\(%eax\) e9: 39 90 90 90 90 90 [ ]*cmp %edx,-0x6f6f6f70\(%eax\) ef: 3a 90 90 90 90 90 [ ]*cmp -0x6f6f6f70\(%eax\),%dl f5: 3b 90 90 90 90 90 [ ]*cmp -0x6f6f6f70\(%eax\),%edx fb: 3c 90 [ ]*cmp \$0x90,%al fd: 3d 90 90 90 90 [ ]*cmp \$0x90909090,%eax - 102: 3f [ ]*aas + 102: 3f [ ]*aas 103: 40 [ ]*inc %eax 104: 41 [ ]*inc %ecx 105: 42 [ ]*inc %edx @@ -98,8 +98,8 @@ Disassembly of section .text: 120: 5d [ ]*pop %ebp 121: 5e [ ]*pop %esi 122: 5f [ ]*pop %edi - 123: 60 [ ]*pusha - 124: 61 [ ]*popa + 123: 60 [ ]*pusha + 124: 61 [ ]*popa 125: 62 90 90 90 90 90 [ ]*bound %edx,-0x6f6f6f70\(%eax\) 12b: 63 90 90 90 90 90 [ ]*arpl %dx,-0x6f6f6f70\(%eax\) 131: 68 90 90 90 90 [ ]*push \$0x90909090 @@ -149,14 +149,14 @@ Disassembly of section .text: 1d2: 95 [ ]*xchg %eax,%ebp 1d3: 96 [ ]*xchg %eax,%esi 1d4: 97 [ ]*xchg %eax,%edi - 1d5: 98 [ ]*cwtl - 1d6: 99 [ ]*cltd + 1d5: 98 [ ]*cwtl + 1d6: 99 [ ]*cltd 1d7: 9a 90 90 90 90 90 90 [ ]*lcall \$0x9090,\$0x90909090 1de: 9b [ ]*fwait - 1df: 9c [ ]*pushf - 1e0: 9d [ ]*popf - 1e1: 9e [ ]*sahf - 1e2: 9f [ ]*lahf + 1df: 9c [ ]*pushf + 1e0: 9d [ ]*popf + 1e1: 9e [ ]*sahf + 1e2: 9f [ ]*lahf 1e3: a0 90 90 90 90 [ ]*mov 0x90909090,%al 1e8: a1 90 90 90 90 [ ]*mov 0x90909090,%eax 1ed: a2 90 90 90 90 [ ]*mov %al,0x90909090 @@ -192,19 +192,19 @@ Disassembly of section .text: 240: c0 90 90 90 90 90 90 [ ]*rclb \$0x90,-0x6f6f6f70\(%eax\) 247: c1 90 90 90 90 90 90 [ ]*rcll \$0x90,-0x6f6f6f70\(%eax\) 24e: c2 90 90 [ ]*ret \$0x9090 - 251: c3 [ ]*ret + 251: c3 [ ]*ret 252: c4 90 90 90 90 90 [ ]*les -0x6f6f6f70\(%eax\),%edx 258: c5 90 90 90 90 90 [ ]*lds -0x6f6f6f70\(%eax\),%edx 25e: c6 80 90 90 90 90 90 [ ]*movb \$0x90,-0x6f6f6f70\(%eax\) 265: c7 80 90 90 90 90 90 90 90 90 [ ]*movl \$0x90909090,-0x6f6f6f70\(%eax\) 26f: c8 90 90 90 [ ]*enter \$0x9090,\$0x90 - 273: c9 [ ]*leave + 273: c9 [ ]*leave 274: ca 90 90 [ ]*lret \$0x9090 - 277: cb [ ]*lret - 278: cc [ ]*int3 + 277: cb [ ]*lret + 278: cc [ ]*int3 279: cd 90 [ ]*int \$0x90 - 27b: ce [ ]*into - 27c: cf [ ]*iret + 27b: ce [ ]*into + 27c: cf [ ]*iret 27d: d0 90 90 90 90 90 [ ]*rclb -0x6f6f6f70\(%eax\) 283: d1 90 90 90 90 90 [ ]*rcll -0x6f6f6f70\(%eax\) 289: d2 90 90 90 90 90 [ ]*rclb %cl,-0x6f6f6f70\(%eax\) @@ -236,35 +236,35 @@ Disassembly of section .text: 2ee: ed [ ]*in \(%dx\),%eax 2ef: ee [ ]*out %al,\(%dx\) 2f0: ef [ ]*out %eax,\(%dx\) - 2f1: f4 [ ]*hlt - 2f2: f5 [ ]*cmc + 2f1: f4 [ ]*hlt + 2f2: f5 [ ]*cmc 2f3: f6 90 90 90 90 90 [ ]*notb -0x6f6f6f70\(%eax\) 2f9: f7 90 90 90 90 90 [ ]*notl -0x6f6f6f70\(%eax\) - 2ff: f8 [ ]*clc - 300: f9 [ ]*stc - 301: fa [ ]*cli - 302: fb [ ]*sti - 303: fc [ ]*cld - 304: fd [ ]*std + 2ff: f8 [ ]*clc + 300: f9 [ ]*stc + 301: fa [ ]*cli + 302: fb [ ]*sti + 303: fc [ ]*cld + 304: fd [ ]*std 305: ff 90 90 90 90 90 [ ]*call \*-0x6f6f6f70\(%eax\) 30b: 0f 00 90 90 90 90 90 [ ]*lldt -0x6f6f6f70\(%eax\) 312: 0f 01 90 90 90 90 90 [ ]*lgdtl -0x6f6f6f70\(%eax\) 319: 0f 02 90 90 90 90 90 [ ]*lar -0x6f6f6f70\(%eax\),%edx 320: 0f 03 90 90 90 90 90 [ ]*lsl -0x6f6f6f70\(%eax\),%edx - 327: 0f 06 [ ]*clts - 329: 0f 08 [ ]*invd - 32b: 0f 09 [ ]*wbinvd - 32d: 0f 0b [ ]*ud2 + 327: 0f 06 [ ]*clts + 329: 0f 08 [ ]*invd + 32b: 0f 09 [ ]*wbinvd + 32d: 0f 0b [ ]*ud2 32f: 0f 20 d0 [ ]*mov %cr2,%eax 332: 0f 21 d0 [ ]*mov %db2,%eax 335: 0f 22 d0 [ ]*mov %eax,%cr2 338: 0f 23 d0 [ ]*mov %eax,%db2 33b: 0f 24 d0 [ ]*mov %tr2,%eax 33e: 0f 26 d0 [ ]*mov %eax,%tr2 - 341: 0f 30 [ ]*wrmsr - 343: 0f 31 [ ]*rdtsc - 345: 0f 32 [ ]*rdmsr - 347: 0f 33 [ ]*rdpmc + 341: 0f 30 [ ]*wrmsr + 343: 0f 31 [ ]*rdtsc + 345: 0f 32 [ ]*rdmsr + 347: 0f 33 [ ]*rdpmc 349: 0f 40 90 90 90 90 90 [ ]*cmovo -0x6f6f6f70\(%eax\),%edx 350: 0f 41 90 90 90 90 90 [ ]*cmovno -0x6f6f6f70\(%eax\),%edx 357: 0f 42 90 90 90 90 90 [ ]*cmovb -0x6f6f6f70\(%eax\),%edx @@ -301,7 +301,7 @@ Disassembly of section .text: 427: 0f 74 90 90 90 90 90 [ ]*pcmpeqb -0x6f6f6f70\(%eax\),%mm2 42e: 0f 75 90 90 90 90 90 [ ]*pcmpeqw -0x6f6f6f70\(%eax\),%mm2 435: 0f 76 90 90 90 90 90 [ ]*pcmpeqd -0x6f6f6f70\(%eax\),%mm2 - 43c: 0f 77 [ ]*emms + 43c: 0f 77 [ ]*emms 43e: 0f 7e 90 90 90 90 90 [ ]*movd %mm2,-0x6f6f6f70\(%eax\) 445: 0f 7f 90 90 90 90 90 [ ]*movq %mm2,-0x6f6f6f70\(%eax\) 44c: 0f 80 90 90 90 90 [ ]*jo (0x)?909094e2.* @@ -338,13 +338,13 @@ Disassembly of section .text: 515: 0f 9f 80 90 90 90 90 [ ]*setg -0x6f6f6f70\(%eax\) 51c: 0f a0 [ ]*push %fs 51e: 0f a1 [ ]*pop %fs - 520: 0f a2 [ ]*cpuid + 520: 0f a2 [ ]*cpuid 522: 0f a3 90 90 90 90 90 [ ]*bt %edx,-0x6f6f6f70\(%eax\) 529: 0f a4 90 90 90 90 90 90 [ ]*shld \$0x90,%edx,-0x6f6f6f70\(%eax\) 531: 0f a5 90 90 90 90 90 [ ]*shld %cl,%edx,-0x6f6f6f70\(%eax\) 538: 0f a8 [ ]*push %gs 53a: 0f a9 [ ]*pop %gs - 53c: 0f aa [ ]*rsm + 53c: 0f aa [ ]*rsm 53e: 0f ab 90 90 90 90 90 [ ]*bts %edx,-0x6f6f6f70\(%eax\) 545: 0f ac 90 90 90 90 90 90 [ ]*shrd \$0x90,%edx,-0x6f6f6f70\(%eax\) 54d: 0f ad 90 90 90 90 90 [ ]*shrd %cl,%edx,-0x6f6f6f70\(%eax\) @@ -357,7 +357,7 @@ Disassembly of section .text: 57e: 0f b5 90 90 90 90 90 [ ]*lgs -0x6f6f6f70\(%eax\),%edx 585: 0f b6 90 90 90 90 90 [ ]*movzbl -0x6f6f6f70\(%eax\),%edx 58c: 0f b7 90 90 90 90 90 [ ]*movzwl -0x6f6f6f70\(%eax\),%edx - 593: 0f 0b [ ]*ud2[ ]* + 593: 0f 0b [ ]*ud2 595: 0f bb 90 90 90 90 90 [ ]*btc %edx,-0x6f6f6f70\(%eax\) 59c: 0f bc 90 90 90 90 90 [ ]*bsf -0x6f6f6f70\(%eax\),%edx 5a3: 0f bd 90 90 90 90 90 [ ]*bsr -0x6f6f6f70\(%eax\),%edx @@ -465,8 +465,8 @@ Disassembly of section .text: 779: 66 5d [ ]*pop %bp 77b: 66 5e [ ]*pop %si 77d: 66 5f [ ]*pop %di - 77f: 66 60 [ ]*pushaw - 781: 66 61 [ ]*popaw + 77f: 66 60 [ ]*pushaw + 781: 66 61 [ ]*popaw 783: 66 62 90 90 90 90 90 [ ]*bound %dx,-0x6f6f6f70\(%eax\) 78a: 66 68 90 90 [ ]*pushw \$0x9090 78e: 66 69 90 90 90 90 90 90 90 [ ]*imul \$0x9090,-0x6f6f6f70\(%eax\),%dx @@ -490,11 +490,11 @@ Disassembly of section .text: 7ef: 66 95 [ ]*xchg %ax,%bp 7f1: 66 96 [ ]*xchg %ax,%si 7f3: 66 97 [ ]*xchg %ax,%di - 7f5: 66 98 [ ]*cbtw - 7f7: 66 99 [ ]*cwtd + 7f5: 66 98 [ ]*cbtw + 7f7: 66 99 [ ]*cwtd 7f9: 66 9a 90 90 90 90 [ ]*lcallw \$0x9090,\$0x9090 - 7ff: 66 9c [ ]*pushfw - 801: 66 9d [ ]*popfw + 7ff: 66 9c [ ]*pushfw + 801: 66 9d [ ]*popfw 803: 66 a1 90 90 90 90 [ ]*mov 0x90909090,%ax 809: 66 a3 90 90 90 90 [ ]*mov %ax,0x90909090 80f: 66 a5 [ ]*movsw %ds:\(%esi\),%es:\(%edi\) @@ -513,15 +513,15 @@ Disassembly of section .text: 839: 66 bf 90 90 [ ]*mov \$0x9090,%di 83d: 66 c1 90 90 90 90 90 90 [ ]*rclw \$0x90,-0x6f6f6f70\(%eax\) 845: 66 c2 90 90 [ ]*retw \$0x9090 - 849: 66 c3 [ ]*retw + 849: 66 c3 [ ]*retw 84b: 66 c4 90 90 90 90 90 [ ]*les -0x6f6f6f70\(%eax\),%dx 852: 66 c5 90 90 90 90 90 [ ]*lds -0x6f6f6f70\(%eax\),%dx 859: 66 c7 80 90 90 90 90 90 90 [ ]*movw \$0x9090,-0x6f6f6f70\(%eax\) 862: 66 c8 90 90 90 [ ]*enterw \$0x9090,\$0x90 - 867: 66 c9 [ ]*leavew + 867: 66 c9 [ ]*leavew 869: 66 ca 90 90 [ ]*lretw \$0x9090 - 86d: 66 cb [ ]*lretw - 86f: 66 cf [ ]*iretw + 86d: 66 cb [ ]*lretw + 86f: 66 cf [ ]*iretw 871: 66 d1 90 90 90 90 90 [ ]*rclw -0x6f6f6f70\(%eax\) 878: 66 d3 90 90 90 90 90 [ ]*rclw %cl,-0x6f6f6f70\(%eax\) 87f: 66 e5 90 [ ]*in \$0x90,%ax @@ -587,7 +587,7 @@ Disassembly of section .text: 9f5: 85 c3 [ ]*test %eax,%ebx 9f7: 85 d8 [ ]*test %ebx,%eax 9f9: 85 18 [ ]*test %ebx,\(%eax\) - 9fb: f1 [ ]*int1 + 9fb: f1 [ ]*int1 [ ]*[a-f0-9]+: 0f 4a 90 90 90 90 90 cmovp -0x6f6f6f70\(%eax\),%edx [ ]*[a-f0-9]+: 0f 4b 90 90 90 90 90 cmovnp -0x6f6f6f70\(%eax\),%edx [ ]*[a-f0-9]+: 66 0f 4a 90 90 90 90 90 cmovp -0x6f6f6f70\(%eax\),%dx diff --git a/gas/testsuite/gas/i386/ospke.d b/gas/testsuite/gas/i386/ospke.d index 6e0afb0..b519172 100644 --- a/gas/testsuite/gas/i386/ospke.d +++ b/gas/testsuite/gas/i386/ospke.d @@ -7,6 +7,6 @@ Disassembly of section .text: 0+ <_start>: -[ ]*[a-f0-9]+: 0f 01 ee rdpkru -[ ]*[a-f0-9]+: 0f 01 ef wrpkru +[ ]*[a-f0-9]+: 0f 01 ee rdpkru +[ ]*[a-f0-9]+: 0f 01 ef wrpkru #pass diff --git a/gas/testsuite/gas/i386/padlock.d b/gas/testsuite/gas/i386/padlock.d index 886ee12..eae6b24 100644 --- a/gas/testsuite/gas/i386/padlock.d +++ b/gas/testsuite/gas/i386/padlock.d @@ -6,22 +6,22 @@ Disassembly of section .text: 0+000 <foo>: - 0:[ ]*0f a7 c0 [ ]*xstore-rng - 3:[ ]*f3 0f a7 c0 [ ]*repz xstore-rng - 7:[ ]*f3 0f a7 c8 [ ]*repz xcrypt-ecb - b:[ ]*f3 0f a7 c8 [ ]*repz xcrypt-ecb - f:[ ]*f3 0f a7 d0 [ ]*repz xcrypt-cbc - 13:[ ]*f3 0f a7 d0 [ ]*repz xcrypt-cbc - 17:[ ]*f3 0f a7 e0 [ ]*repz xcrypt-cfb - 1b:[ ]*f3 0f a7 e0 [ ]*repz xcrypt-cfb - 1f:[ ]*f3 0f a7 e8 [ ]*repz xcrypt-ofb - 23:[ ]*f3 0f a7 e8 [ ]*repz xcrypt-ofb - 27:[ ]*0f a7 c0 [ ]*xstore-rng - 2a:[ ]*f3 0f a7 c0 [ ]*repz xstore-rng - 2e:[ ]*f3 0f a6 c0 [ ]*repz montmul - 32:[ ]*f3 0f a6 c0 [ ]*repz montmul - 36:[ ]*f3 0f a6 c8 [ ]*repz xsha1 - 3a:[ ]*f3 0f a6 c8 [ ]*repz xsha1 - 3e:[ ]*f3 0f a6 d0 [ ]*repz xsha256 - 42:[ ]*f3 0f a6 d0 [ ]*repz xsha256 + 0:[ ]*0f a7 c0 [ ]*xstore-rng + 3:[ ]*f3 0f a7 c0 [ ]*repz xstore-rng + 7:[ ]*f3 0f a7 c8 [ ]*repz xcrypt-ecb + b:[ ]*f3 0f a7 c8 [ ]*repz xcrypt-ecb + f:[ ]*f3 0f a7 d0 [ ]*repz xcrypt-cbc + 13:[ ]*f3 0f a7 d0 [ ]*repz xcrypt-cbc + 17:[ ]*f3 0f a7 e0 [ ]*repz xcrypt-cfb + 1b:[ ]*f3 0f a7 e0 [ ]*repz xcrypt-cfb + 1f:[ ]*f3 0f a7 e8 [ ]*repz xcrypt-ofb + 23:[ ]*f3 0f a7 e8 [ ]*repz xcrypt-ofb + 27:[ ]*0f a7 c0 [ ]*xstore-rng + 2a:[ ]*f3 0f a7 c0 [ ]*repz xstore-rng + 2e:[ ]*f3 0f a6 c0 [ ]*repz montmul + 32:[ ]*f3 0f a6 c0 [ ]*repz montmul + 36:[ ]*f3 0f a6 c8 [ ]*repz xsha1 + 3a:[ ]*f3 0f a6 c8 [ ]*repz xsha1 + 3e:[ ]*f3 0f a6 d0 [ ]*repz xsha256 + 42:[ ]*f3 0f a6 d0 [ ]*repz xsha256 #pass diff --git a/gas/testsuite/gas/i386/pconfig-intel.d b/gas/testsuite/gas/i386/pconfig-intel.d index 08584fe..922fdab 100644 --- a/gas/testsuite/gas/i386/pconfig-intel.d +++ b/gas/testsuite/gas/i386/pconfig-intel.d @@ -7,5 +7,5 @@ Disassembly of section .text: 0+ <_start>: -[ ]*[a-f0-9]+:[ ]*0f 01 c5[ ]*pconfig[ ]* +[ ]*[a-f0-9]+:[ ]*0f 01 c5[ ]*pconfig #pass diff --git a/gas/testsuite/gas/i386/pconfig.d b/gas/testsuite/gas/i386/pconfig.d index de61788..1444c18 100644 --- a/gas/testsuite/gas/i386/pconfig.d +++ b/gas/testsuite/gas/i386/pconfig.d @@ -7,5 +7,5 @@ Disassembly of section .text: 0+ <_start>: -[ ]*[a-f0-9]+:[ ]*0f 01 c5[ ]*pconfig[ ]* +[ ]*[a-f0-9]+:[ ]*0f 01 c5[ ]*pconfig #pass diff --git a/gas/testsuite/gas/i386/prefix.d b/gas/testsuite/gas/i386/prefix.d index 58bf8b3..8c8b552 100644 --- a/gas/testsuite/gas/i386/prefix.d +++ b/gas/testsuite/gas/i386/prefix.d @@ -35,56 +35,56 @@ Disassembly of section .text: [ ]*[a-f0-9]+: f2 66 90 repnz xchg %ax,%ax [ ]*[a-f0-9]+: f2 67 66 90 repnz addr16 xchg %ax,%ax [ ]*[a-f0-9]+: f2 67 f0 66 90 repnz addr16 lock xchg %ax,%ax -[ ]*[a-f0-9]+: f3 66 90 data16 pause -[ ]*[a-f0-9]+: f3 67 f0 66 90 addr16 lock data16 pause +[ ]*[a-f0-9]+: f3 66 90 data16 pause +[ ]*[a-f0-9]+: f3 67 f0 66 90 addr16 lock data16 pause [ ]*[a-f0-9]+: f3 67 f2 66 90 repz addr16 repnz xchg %ax,%ax [ ]*[a-f0-9]+: f2 3e 90 repnz ds nop [ ]*[a-f0-9]+: f2 f0 67 3e 90 repnz lock addr16 ds nop -[ ]*[a-f0-9]+: f3 3e 90 ds pause -[ ]*[a-f0-9]+: f3 66 3e 90 data16 ds pause -[ ]*[a-f0-9]+: f3 f0 3e 90 lock ds pause -[ ]*[a-f0-9]+: f3 f0 67 3e 90 lock addr16 ds pause +[ ]*[a-f0-9]+: f3 3e 90 ds pause +[ ]*[a-f0-9]+: f3 66 3e 90 data16 ds pause +[ ]*[a-f0-9]+: f3 f0 3e 90 lock ds pause +[ ]*[a-f0-9]+: f3 f0 67 3e 90 lock addr16 ds pause [ ]*[a-f0-9]+: f3 f2 67 3e 90 repz repnz addr16 ds nop [ ]*[a-f0-9]+: 66 f0 36 90 lock ss xchg %ax,%ax [ ]*[a-f0-9]+: f2 36 90 repnz ss nop [ ]*[a-f0-9]+: f2 66 36 90 repnz ss xchg %ax,%ax [ ]*[a-f0-9]+: f2 f0 36 90 repnz lock ss nop [ ]*[a-f0-9]+: f2 f0 67 36 90 repnz lock addr16 ss nop -[ ]*[a-f0-9]+: f3 36 90 ss pause -[ ]*[a-f0-9]+: f3 67 36 90 addr16 ss pause -[ ]*[a-f0-9]+: f3 f0 67 36 90 lock addr16 ss pause +[ ]*[a-f0-9]+: f3 36 90 ss pause +[ ]*[a-f0-9]+: f3 67 36 90 addr16 ss pause +[ ]*[a-f0-9]+: f3 f0 67 36 90 lock addr16 ss pause [ ]*[a-f0-9]+: f3 f2 36 90 repz repnz ss nop [ ]*[a-f0-9]+: f3 f2 67 36 90 repz repnz addr16 ss nop [ ]*[a-f0-9]+: f3 f0 f2 66 36 90 repz lock repnz ss xchg %ax,%ax [ ]*[a-f0-9]+: 66 3e 36 90 ds ss xchg %ax,%ax [ ]*[a-f0-9]+: 67 66 3e 36 90 addr16 ds ss xchg %ax,%ax [ ]*[a-f0-9]+: 67 f0 66 3e 36 90 addr16 lock ds ss xchg %ax,%ax -[ ]*[a-f0-9]+: f3 66 3e 36 90 data16 ds ss pause -[ ]*[a-f0-9]+: f3 f0 66 3e 36 90 lock data16 ds ss pause +[ ]*[a-f0-9]+: f3 66 3e 36 90 data16 ds ss pause +[ ]*[a-f0-9]+: f3 f0 66 3e 36 90 lock data16 ds ss pause [ ]*[a-f0-9]+: f3 f2 67 3e 36 90 repz repnz addr16 ds ss nop [ ]*[a-f0-9]+: f3 67 f2 66 3e 36 90 repz addr16 repnz ds ss xchg %ax,%ax [ ]*[a-f0-9]+: f3 0f c7 f8 rdpid %eax [ ]*[a-f0-9]+: 90 nop -[ ]*[a-f0-9]+: f3 0f c7 \(bad\) +[ ]*[a-f0-9]+: f3 0f c7 \(bad\) [ ]*[a-f0-9]+: f0 90 lock nop -[ ]*[a-f0-9]+: f2 0f c7 \(bad\) -[ ]*[a-f0-9]+: f8 clc +[ ]*[a-f0-9]+: f2 0f c7 \(bad\) +[ ]*[a-f0-9]+: f8 clc [ ]*[a-f0-9]+: 90 nop -[ ]*[a-f0-9]+: f2 0f c7 \(bad\) +[ ]*[a-f0-9]+: f2 0f c7 \(bad\) [ ]*[a-f0-9]+: f0 90 lock nop -[ ]*[a-f0-9]+: f3 0f 28 \(bad\) * +[ ]*[a-f0-9]+: f3 0f 28 \(bad\) [ ]*[a-f0-9]+: ff cc dec %esp -[ ]*[a-f0-9]+: c5 fa 28 \(bad\) * +[ ]*[a-f0-9]+: c5 fa 28 \(bad\) [ ]*[a-f0-9]+: ff cc dec %esp -[ ]*[a-f0-9]+: c4 e1 7b 28 \(bad\) * +[ ]*[a-f0-9]+: c4 e1 7b 28 \(bad\) [ ]*[a-f0-9]+: ff cc dec %esp -[ ]*[a-f0-9]+: 62 f1 fc 08 28 \(bad\) * +[ ]*[a-f0-9]+: 62 f1 fc 08 28 \(bad\) [ ]*[a-f0-9]+: ff cc dec %esp -[ ]*[a-f0-9]+: 62 f1 7e 08 28 \(bad\) * +[ ]*[a-f0-9]+: 62 f1 7e 08 28 \(bad\) [ ]*[a-f0-9]+: ff cc dec %esp -[ ]*[a-f0-9]+: 62 f1 7d 08 28 \(bad\) * +[ ]*[a-f0-9]+: 62 f1 7d 08 28 \(bad\) [ ]*[a-f0-9]+: ff cc dec %esp -[ ]*[a-f0-9]+: 62 f1 ff 08 28 \(bad\) * +[ ]*[a-f0-9]+: 62 f1 ff 08 28 \(bad\) [ ]*[a-f0-9]+: ff cc dec %esp [ ]*[a-f0-9]+: 66 c5 f8 28 c0 data16 vmovaps %xmm0,%xmm0 [ ]*[a-f0-9]+: f3 c4 e1 78 28 c0 repz vmovaps %xmm0,%xmm0 diff --git a/gas/testsuite/gas/i386/relax-3.d b/gas/testsuite/gas/i386/relax-3.d index 4610553..c212bfb 100644 --- a/gas/testsuite/gas/i386/relax-3.d +++ b/gas/testsuite/gas/i386/relax-3.d @@ -16,17 +16,17 @@ Disassembly of section .text: [ ]*[a-f0-9]+: e9 fc ff ff ff jmp 1e <foo\+0x1e> 1e: R_386_PC32 hidden_undef 0+22 <hidden_def>: -[ ]*[a-f0-9]+: c3 ret +[ ]*[a-f0-9]+: c3 ret 0+23 <weak_hidden_def>: -[ ]*[a-f0-9]+: c3 ret +[ ]*[a-f0-9]+: c3 ret 0+24 <global_def>: -[ ]*[a-f0-9]+: c3 ret +[ ]*[a-f0-9]+: c3 ret 0+25 <weak_def>: -[ ]*[a-f0-9]+: c3 ret +[ ]*[a-f0-9]+: c3 ret 0+26 <local>: -[ ]*[a-f0-9]+: c3 ret +[ ]*[a-f0-9]+: c3 ret #pass diff --git a/gas/testsuite/gas/i386/relax-4.d b/gas/testsuite/gas/i386/relax-4.d index 2039251..6f2ae38 100644 --- a/gas/testsuite/gas/i386/relax-4.d +++ b/gas/testsuite/gas/i386/relax-4.d @@ -16,17 +16,17 @@ Disassembly of section .text: [ ]*[a-f0-9]+: e9 fc ff ff ff jmp 1b <foo\+0x1b> 1b: R_386_PC32 hidden_undef 0+1f <hidden_def>: -[ ]*[a-f0-9]+: c3 ret +[ ]*[a-f0-9]+: c3 ret 0+20 <weak_hidden_def>: -[ ]*[a-f0-9]+: c3 ret +[ ]*[a-f0-9]+: c3 ret 0+21 <global_def>: -[ ]*[a-f0-9]+: c3 ret +[ ]*[a-f0-9]+: c3 ret 0+22 <weak_def>: -[ ]*[a-f0-9]+: c3 ret +[ ]*[a-f0-9]+: c3 ret 0+23 <local>: -[ ]*[a-f0-9]+: c3 ret +[ ]*[a-f0-9]+: c3 ret #pass diff --git a/gas/testsuite/gas/i386/relax-5.d b/gas/testsuite/gas/i386/relax-5.d index c377133..5fcd7f6 100644 --- a/gas/testsuite/gas/i386/relax-5.d +++ b/gas/testsuite/gas/i386/relax-5.d @@ -5,7 +5,7 @@ Disassembly of section .text: 0+ <printk>: - +[a-f0-9]+: c3 ret + +[a-f0-9]+: c3 ret Disassembly of section .init.text: diff --git a/gas/testsuite/gas/i386/rtm-intel.d b/gas/testsuite/gas/i386/rtm-intel.d index 6758c71..1251127 100644 --- a/gas/testsuite/gas/i386/rtm-intel.d +++ b/gas/testsuite/gas/i386/rtm-intel.d @@ -11,10 +11,10 @@ Disassembly of section .text: [ ]*[a-f0-9]+: c6 f8 08 xabort 0x8 [ ]*[a-f0-9]+: c7 f8 fa ff ff ff xbegin 3 <foo\+0x3> [ ]*[a-f0-9]+: c7 f8 00 00 00 00 xbegin f <foo\+0xf> -[ ]*[a-f0-9]+: 0f 01 d5 xend +[ ]*[a-f0-9]+: 0f 01 d5 xend [ ]*[a-f0-9]+: c6 f8 08 xabort 0x8 [ ]*[a-f0-9]+: c7 f8 fa ff ff ff xbegin 15 <foo\+0x15> [ ]*[a-f0-9]+: c7 f8 00 00 00 00 xbegin 21 <foo\+0x21> -[ ]*[a-f0-9]+: 0f 01 d5 xend -[ ]*[a-f0-9]+: 0f 01 d6 xtest +[ ]*[a-f0-9]+: 0f 01 d5 xend +[ ]*[a-f0-9]+: 0f 01 d6 xtest #pass diff --git a/gas/testsuite/gas/i386/rtm.d b/gas/testsuite/gas/i386/rtm.d index ffdda50..d04a903 100644 --- a/gas/testsuite/gas/i386/rtm.d +++ b/gas/testsuite/gas/i386/rtm.d @@ -10,10 +10,10 @@ Disassembly of section .text: [ ]*[a-f0-9]+: c6 f8 08 xabort \$0x8 [ ]*[a-f0-9]+: c7 f8 fa ff ff ff xbegin 3 <foo\+0x3> [ ]*[a-f0-9]+: c7 f8 00 00 00 00 xbegin f <foo\+0xf> -[ ]*[a-f0-9]+: 0f 01 d5 xend +[ ]*[a-f0-9]+: 0f 01 d5 xend [ ]*[a-f0-9]+: c6 f8 08 xabort \$0x8 [ ]*[a-f0-9]+: c7 f8 fa ff ff ff xbegin 15 <foo\+0x15> [ ]*[a-f0-9]+: c7 f8 00 00 00 00 xbegin 21 <foo\+0x21> -[ ]*[a-f0-9]+: 0f 01 d5 xend -[ ]*[a-f0-9]+: 0f 01 d6 xtest +[ ]*[a-f0-9]+: 0f 01 d5 xend +[ ]*[a-f0-9]+: 0f 01 d6 xtest #pass diff --git a/gas/testsuite/gas/i386/se1.d b/gas/testsuite/gas/i386/se1.d index d7800ab..96d4932 100644 --- a/gas/testsuite/gas/i386/se1.d +++ b/gas/testsuite/gas/i386/se1.d @@ -8,7 +8,7 @@ Disassembly of section .text: 0+ <_start>: -[ ]*[a-f0-9]+: 0f 01 cf encls -[ ]*[a-f0-9]+: 0f 01 d7 enclu -[ ]*[a-f0-9]+: 0f 01 c0 enclv +[ ]*[a-f0-9]+: 0f 01 cf encls +[ ]*[a-f0-9]+: 0f 01 d7 enclu +[ ]*[a-f0-9]+: 0f 01 c0 enclv #pass diff --git a/gas/testsuite/gas/i386/secidx.d b/gas/testsuite/gas/i386/secidx.d index baf299f..2db427b 100644 --- a/gas/testsuite/gas/i386/secidx.d +++ b/gas/testsuite/gas/i386/secidx.d @@ -4,7 +4,7 @@ .*: +file format pe-i386 RELOCATION RECORDS FOR \[\.data\]: -OFFSET[ ]+TYPE[ ]+VALUE +OFFSET[ ]+TYPE[ ]+VALUE 0+24 secidx \.text 0+27 secidx \.text 0+2a secidx \.text diff --git a/gas/testsuite/gas/i386/secrel.d b/gas/testsuite/gas/i386/secrel.d index f6e31c7..afc4ba1 100644 --- a/gas/testsuite/gas/i386/secrel.d +++ b/gas/testsuite/gas/i386/secrel.d @@ -4,7 +4,7 @@ .*: +file format pe-i386 RELOCATION RECORDS FOR \[\.data\]: -OFFSET[ ]+TYPE[ ]+VALUE * +OFFSET[ ]+TYPE[ ]+VALUE 0+24 secrel32 \.text 0+29 secrel32 \.text 0+2e secrel32 \.text diff --git a/gas/testsuite/gas/i386/serialize.d b/gas/testsuite/gas/i386/serialize.d index ba50158..00f26ec 100644 --- a/gas/testsuite/gas/i386/serialize.d +++ b/gas/testsuite/gas/i386/serialize.d @@ -8,5 +8,5 @@ Disassembly of section \.text: 0+ <_start>: -[ ]*[a-f0-9]+: 0f 01 e8 + serialize * +[ ]*[a-f0-9]+: 0f 01 e8 + serialize #pass diff --git a/gas/testsuite/gas/i386/size-5a.d b/gas/testsuite/gas/i386/size-5a.d index 56d0342..d186308 100644 --- a/gas/testsuite/gas/i386/size-5a.d +++ b/gas/testsuite/gas/i386/size-5a.d @@ -24,5 +24,5 @@ Disassembly of section .text: [ ]*[a-f0-9]+: 8d 0d bd ff ff ff lea 0xffffffbd,%ecx [ ]*[a-f0-9]+: 8d 15 bd 00 00 00 lea 0xbd,%edx [ ]*[a-f0-9]+: 8d 15 bd 0f 00 00 lea 0xfbd,%edx -[ ]*[a-f0-9]+: c3 ret * +[ ]*[a-f0-9]+: c3 ret #pass diff --git a/gas/testsuite/gas/i386/smap.d b/gas/testsuite/gas/i386/smap.d index 16ae63a..60478b4 100644 --- a/gas/testsuite/gas/i386/smap.d +++ b/gas/testsuite/gas/i386/smap.d @@ -6,6 +6,6 @@ Disassembly of section .text: 0+ <foo>: -[ ]*[a-f0-9]+: 0f 01 ca clac -[ ]*[a-f0-9]+: 0f 01 cb stac +[ ]*[a-f0-9]+: 0f 01 ca clac +[ ]*[a-f0-9]+: 0f 01 cb stac #pass diff --git a/gas/testsuite/gas/i386/smx.d b/gas/testsuite/gas/i386/smx.d index c0546f9..3db596c 100644 --- a/gas/testsuite/gas/i386/smx.d +++ b/gas/testsuite/gas/i386/smx.d @@ -6,5 +6,5 @@ Disassembly of section .text: 0+000 <foo>: -[ ]*[a-f0-9]+: 0f 37 getsec +[ ]*[a-f0-9]+: 0f 37 getsec #pass diff --git a/gas/testsuite/gas/i386/snp.d b/gas/testsuite/gas/i386/snp.d index 81d386c..151d595 100644 --- a/gas/testsuite/gas/i386/snp.d +++ b/gas/testsuite/gas/i386/snp.d @@ -7,12 +7,12 @@ Disassembly of section \.text: 0+ <att>: -[ ]*[a-f0-9]+:[ ]+f2 0f 01 ff[ ]+pvalidate[ ]* -[ ]*[a-f0-9]+:[ ]+f2 0f 01 ff[ ]+pvalidate[ ]* -[ ]*[a-f0-9]+:[ ]+67 f2 0f 01 ff[ ]+addr16 pvalidate[ ]* +[ ]*[a-f0-9]+:[ ]+f2 0f 01 ff[ ]+pvalidate +[ ]*[a-f0-9]+:[ ]+f2 0f 01 ff[ ]+pvalidate +[ ]*[a-f0-9]+:[ ]+67 f2 0f 01 ff[ ]+addr16 pvalidate [0-9a-f]+ <intel>: -[ ]*[a-f0-9]+:[ ]+f2 0f 01 ff[ ]+pvalidate[ ]* -[ ]*[a-f0-9]+:[ ]+f2 0f 01 ff[ ]+pvalidate[ ]* -[ ]*[a-f0-9]+:[ ]+67 f2 0f 01 ff[ ]+addr16 pvalidate[ ]* +[ ]*[a-f0-9]+:[ ]+f2 0f 01 ff[ ]+pvalidate +[ ]*[a-f0-9]+:[ ]+f2 0f 01 ff[ ]+pvalidate +[ ]*[a-f0-9]+:[ ]+67 f2 0f 01 ff[ ]+addr16 pvalidate #pass diff --git a/gas/testsuite/gas/i386/snp64.d b/gas/testsuite/gas/i386/snp64.d index 2b3e9ee..e7ba8c6 100644 --- a/gas/testsuite/gas/i386/snp64.d +++ b/gas/testsuite/gas/i386/snp64.d @@ -8,30 +8,30 @@ Disassembly of section \.text: 0+ <att>: -[ ]*[a-f0-9]+:[ ]+f2 0f 01 ff[ ]+pvalidate[ ]* -[ ]*[a-f0-9]+:[ ]+67 f2 0f 01 ff[ ]+addr32 pvalidate[ ]* -[ ]*[a-f0-9]+:[ ]+f2 0f 01 ff[ ]+pvalidate[ ]* -[ ]*[a-f0-9]+:[ ]+f3 0f 01 ff[ ]+psmash[ ]* -[ ]*[a-f0-9]+:[ ]+f3 0f 01 ff[ ]+psmash[ ]* -[ ]*[a-f0-9]+:[ ]+67 f3 0f 01 ff[ ]+addr32 psmash[ ]* -[ ]*[a-f0-9]+:[ ]+f2 0f 01 fe[ ]+rmpupdate[ ]* -[ ]*[a-f0-9]+:[ ]+f2 0f 01 fe[ ]+rmpupdate[ ]* -[ ]*[a-f0-9]+:[ ]+67 f2 0f 01 fe[ ]+addr32 rmpupdate[ ]* -[ ]*[a-f0-9]+:[ ]+f3 0f 01 fe[ ]+rmpadjust[ ]* -[ ]*[a-f0-9]+:[ ]+f3 0f 01 fe[ ]+rmpadjust[ ]* -[ ]*[a-f0-9]+:[ ]+67 f3 0f 01 fe[ ]+addr32 rmpadjust[ ]* +[ ]*[a-f0-9]+:[ ]+f2 0f 01 ff[ ]+pvalidate +[ ]*[a-f0-9]+:[ ]+67 f2 0f 01 ff[ ]+addr32 pvalidate +[ ]*[a-f0-9]+:[ ]+f2 0f 01 ff[ ]+pvalidate +[ ]*[a-f0-9]+:[ ]+f3 0f 01 ff[ ]+psmash +[ ]*[a-f0-9]+:[ ]+f3 0f 01 ff[ ]+psmash +[ ]*[a-f0-9]+:[ ]+67 f3 0f 01 ff[ ]+addr32 psmash +[ ]*[a-f0-9]+:[ ]+f2 0f 01 fe[ ]+rmpupdate +[ ]*[a-f0-9]+:[ ]+f2 0f 01 fe[ ]+rmpupdate +[ ]*[a-f0-9]+:[ ]+67 f2 0f 01 fe[ ]+addr32 rmpupdate +[ ]*[a-f0-9]+:[ ]+f3 0f 01 fe[ ]+rmpadjust +[ ]*[a-f0-9]+:[ ]+f3 0f 01 fe[ ]+rmpadjust +[ ]*[a-f0-9]+:[ ]+67 f3 0f 01 fe[ ]+addr32 rmpadjust [0-9a-f]+ <intel>: -[ ]*[a-f0-9]+:[ ]+f2 0f 01 ff[ ]+pvalidate[ ]* -[ ]*[a-f0-9]+:[ ]+67 f2 0f 01 ff[ ]+addr32 pvalidate[ ]* -[ ]*[a-f0-9]+:[ ]+f2 0f 01 ff[ ]+pvalidate[ ]* -[ ]*[a-f0-9]+:[ ]+f3 0f 01 ff[ ]+psmash[ ]* -[ ]*[a-f0-9]+:[ ]+f3 0f 01 ff[ ]+psmash[ ]* -[ ]*[a-f0-9]+:[ ]+67 f3 0f 01 ff[ ]+addr32 psmash[ ]* -[ ]*[a-f0-9]+:[ ]+f2 0f 01 fe[ ]+rmpupdate[ ]* -[ ]*[a-f0-9]+:[ ]+f2 0f 01 fe[ ]+rmpupdate[ ]* -[ ]*[a-f0-9]+:[ ]+67 f2 0f 01 fe[ ]+addr32 rmpupdate[ ]* -[ ]*[a-f0-9]+:[ ]+f3 0f 01 fe[ ]+rmpadjust[ ]* -[ ]*[a-f0-9]+:[ ]+f3 0f 01 fe[ ]+rmpadjust[ ]* -[ ]*[a-f0-9]+:[ ]+67 f3 0f 01 fe[ ]+addr32 rmpadjust[ ]* +[ ]*[a-f0-9]+:[ ]+f2 0f 01 ff[ ]+pvalidate +[ ]*[a-f0-9]+:[ ]+67 f2 0f 01 ff[ ]+addr32 pvalidate +[ ]*[a-f0-9]+:[ ]+f2 0f 01 ff[ ]+pvalidate +[ ]*[a-f0-9]+:[ ]+f3 0f 01 ff[ ]+psmash +[ ]*[a-f0-9]+:[ ]+f3 0f 01 ff[ ]+psmash +[ ]*[a-f0-9]+:[ ]+67 f3 0f 01 ff[ ]+addr32 psmash +[ ]*[a-f0-9]+:[ ]+f2 0f 01 fe[ ]+rmpupdate +[ ]*[a-f0-9]+:[ ]+f2 0f 01 fe[ ]+rmpupdate +[ ]*[a-f0-9]+:[ ]+67 f2 0f 01 fe[ ]+addr32 rmpupdate +[ ]*[a-f0-9]+:[ ]+f3 0f 01 fe[ ]+rmpadjust +[ ]*[a-f0-9]+:[ ]+f3 0f 01 fe[ ]+rmpadjust +[ ]*[a-f0-9]+:[ ]+67 f3 0f 01 fe[ ]+addr32 rmpadjust #pass diff --git a/gas/testsuite/gas/i386/sse-noavx.d b/gas/testsuite/gas/i386/sse-noavx.d index 6052c62..ef47567 100644 --- a/gas/testsuite/gas/i386/sse-noavx.d +++ b/gas/testsuite/gas/i386/sse-noavx.d @@ -17,9 +17,9 @@ Disassembly of section .text: [ ]*[a-f0-9]+: df 08 fisttps \(%eax\) [ ]*[a-f0-9]+: db 08 fisttpl \(%eax\) [ ]*[a-f0-9]+: dd 08 fisttpll \(%eax\) -[ ]*[a-f0-9]+: 0f ae e8 lfence +[ ]*[a-f0-9]+: 0f ae e8 lfence [ ]*[a-f0-9]+: 0f f7 c7 maskmovq %mm7,%mm0 -[ ]*[a-f0-9]+: 0f ae f0 mfence +[ ]*[a-f0-9]+: 0f ae f0 mfence [ ]*[a-f0-9]+: 0f 01 c8 monitor %eax,%ecx,%edx [ ]*[a-f0-9]+: f2 0f d6 c8 movdq2q %xmm0,%mm1 [ ]*[a-f0-9]+: 0f c3 00 movnti %eax,\(%eax\) @@ -62,5 +62,5 @@ Disassembly of section .text: [ ]*[a-f0-9]+: 0f 38 0a c1 psignd %mm1,%mm0 [ ]*[a-f0-9]+: 0f 38 09 c1 psignw %mm1,%mm0 [ ]*[a-f0-9]+: 0f fb c1 psubq %mm1,%mm0 -[ ]*[a-f0-9]+: 0f ae f8 sfence +[ ]*[a-f0-9]+: 0f ae f8 sfence #pass diff --git a/gas/testsuite/gas/i386/sse2-16bit.d b/gas/testsuite/gas/i386/sse2-16bit.d index a097036..48b4eb5 100644 --- a/gas/testsuite/gas/i386/sse2-16bit.d +++ b/gas/testsuite/gas/i386/sse2-16bit.d @@ -8,9 +8,9 @@ Disassembly of section .text: 0+ <foo>: [ ]*[a-f0-9]+: 67 0f c3 00 movnti %eax,\(%eax\) -[ ]*[a-f0-9]+: 0f ae f8 sfence -[ ]*[a-f0-9]+: 0f ae e8 lfence -[ ]*[a-f0-9]+: 0f ae f0 mfence +[ ]*[a-f0-9]+: 0f ae f8 sfence +[ ]*[a-f0-9]+: 0f ae e8 lfence +[ ]*[a-f0-9]+: 0f ae f0 mfence [ ]*[a-f0-9]+: 67 66 0f 58 01 addpd \(%ecx\),%xmm0 [ ]*[a-f0-9]+: 66 0f 58 ca addpd %xmm2,%xmm1 [ ]*[a-f0-9]+: 67 f2 0f 58 13 addsd \(%ebx\),%xmm2 @@ -79,7 +79,7 @@ Disassembly of section .text: [ ]*[a-f0-9]+: 67 f2 0f 5e 1c 24 divsd \(%esp\),%xmm3 [ ]*[a-f0-9]+: 67 0f ae 55 00 ldmxcsr 0x0\(%ebp\) [ ]*[a-f0-9]+: 67 0f ae 1e stmxcsr \(%esi\) -[ ]*[a-f0-9]+: 0f ae f8 sfence +[ ]*[a-f0-9]+: 0f ae f8 sfence [ ]*[a-f0-9]+: 66 0f 5f c1 maxpd %xmm1,%xmm0 [ ]*[a-f0-9]+: 67 66 0f 5f 0a maxpd \(%edx\),%xmm1 [ ]*[a-f0-9]+: f2 0f 5f d3 maxsd %xmm3,%xmm2 diff --git a/gas/testsuite/gas/i386/sse2.d b/gas/testsuite/gas/i386/sse2.d index 23f7b43..59e852a 100644 --- a/gas/testsuite/gas/i386/sse2.d +++ b/gas/testsuite/gas/i386/sse2.d @@ -8,9 +8,9 @@ Disassembly of section .text: 0+ <foo>: [ ]*[a-f0-9]+: 0f c3 00 movnti %eax,\(%eax\) -[ ]*[a-f0-9]+: 0f ae f8 sfence -[ ]*[a-f0-9]+: 0f ae e8 lfence -[ ]*[a-f0-9]+: 0f ae f0 mfence +[ ]*[a-f0-9]+: 0f ae f8 sfence +[ ]*[a-f0-9]+: 0f ae e8 lfence +[ ]*[a-f0-9]+: 0f ae f0 mfence [ ]*[a-f0-9]+: 66 0f 58 01 addpd \(%ecx\),%xmm0 [ ]*[a-f0-9]+: 66 0f 58 ca addpd %xmm2,%xmm1 [ ]*[a-f0-9]+: f2 0f 58 13 addsd \(%ebx\),%xmm2 @@ -79,7 +79,7 @@ Disassembly of section .text: [ ]*[a-f0-9]+: f2 0f 5e 1c 24 divsd \(%esp\),%xmm3 [ ]*[a-f0-9]+: 0f ae 55 00 ldmxcsr 0x0\(%ebp\) [ ]*[a-f0-9]+: 0f ae 1e stmxcsr \(%esi\) -[ ]*[a-f0-9]+: 0f ae f8 sfence +[ ]*[a-f0-9]+: 0f ae f8 sfence [ ]*[a-f0-9]+: 66 0f 5f c1 maxpd %xmm1,%xmm0 [ ]*[a-f0-9]+: 66 0f 5f 0a maxpd \(%edx\),%xmm1 [ ]*[a-f0-9]+: f2 0f 5f d3 maxsd %xmm3,%xmm2 diff --git a/gas/testsuite/gas/i386/sse3-intel.d b/gas/testsuite/gas/i386/sse3-intel.d index ec87eaa..d58e743 100644 --- a/gas/testsuite/gas/i386/sse3-intel.d +++ b/gas/testsuite/gas/i386/sse3-intel.d @@ -23,21 +23,21 @@ Disassembly of section .text: [ ]*[0-9a-f]+: f2 0f 7d d2[ ]+hsubps xmm2,xmm2 [ ]*[0-9a-f]+: f2 0f 7d 1c 24[ ]+hsubps xmm3,(XMMWORD PTR )?\[esp\] [ ]*[0-9a-f]+: f2 0f f0 2e[ ]+lddqu xmm5,(XMMWORD PTR )?\[esi\] -[ ]*[0-9a-f]+: 0f 01 c8[ ]+monitor * -[ ]*[0-9a-f]+: 0f 01 c8[ ]+monitor * +[ ]*[0-9a-f]+: 0f 01 c8[ ]+monitor +[ ]*[0-9a-f]+: 0f 01 c8[ ]+monitor [ ]*[0-9a-f]+: f2 0f 12 f7[ ]+movddup xmm6,xmm7 [ ]*[0-9a-f]+: f2 0f 12 38[ ]+movddup xmm7,(QWORD PTR )?\[eax\] [ ]*[0-9a-f]+: f3 0f 16 01[ ]+movshdup xmm0,(XMMWORD PTR )?\[ecx\] [ ]*[0-9a-f]+: f3 0f 16 ca[ ]+movshdup xmm1,xmm2 [ ]*[0-9a-f]+: f3 0f 12 13[ ]+movsldup xmm2,(XMMWORD PTR )?\[ebx\] [ ]*[0-9a-f]+: f3 0f 12 dc[ ]+movsldup xmm3,xmm4 -[ ]*[0-9a-f]+: 0f 01 c9[ ]+mwait * -[ ]*[0-9a-f]+: 0f 01 c9[ ]+mwait * -[ ]*[0-9a-f]+: 67 0f 01 c8[ ]+addr16 monitor * -[ ]*[0-9a-f]+: 67 0f 01 c8[ ]+addr16 monitor * +[ ]*[0-9a-f]+: 0f 01 c9[ ]+mwait +[ ]*[0-9a-f]+: 0f 01 c9[ ]+mwait +[ ]*[0-9a-f]+: 67 0f 01 c8[ ]+addr16 monitor +[ ]*[0-9a-f]+: 67 0f 01 c8[ ]+addr16 monitor [ ]*[0-9a-f]+: f2 0f 12 38[ ]+movddup xmm7,(QWORD PTR )?\[eax\] [ ]*[0-9a-f]+: f2 0f 12 38[ ]+movddup xmm7,(QWORD PTR )?\[eax\] -[ ]*[0-9a-f]+: 0f 01 c8[ ]+monitor * -[ ]*[0-9a-f]+: 67 0f 01 c8[ ]+addr16 monitor * -[ ]*[0-9a-f]+: 0f 01 c9[ ]+mwait * +[ ]*[0-9a-f]+: 0f 01 c8[ ]+monitor +[ ]*[0-9a-f]+: 67 0f 01 c8[ ]+addr16 monitor +[ ]*[0-9a-f]+: 0f 01 c9[ ]+mwait #pass diff --git a/gas/testsuite/gas/i386/suffix-intel.d b/gas/testsuite/gas/i386/suffix-intel.d index b20d927..7ca5b48 100644 --- a/gas/testsuite/gas/i386/suffix-intel.d +++ b/gas/testsuite/gas/i386/suffix-intel.d @@ -7,20 +7,20 @@ Disassembly of section .text: 0+ <foo>: -[ ]*[a-f0-9]+: 0f 01 c8 monitor -[ ]*[a-f0-9]+: 0f 01 c9 mwait -[ ]*[a-f0-9]+: 0f 01 c1 vmcall -[ ]*[a-f0-9]+: 0f 01 c2 vmlaunch -[ ]*[a-f0-9]+: 0f 01 c3 vmresume -[ ]*[a-f0-9]+: 0f 01 c4 vmxoff -[ ]*[a-f0-9]+: 66 cf iretw -[ ]*[a-f0-9]+: cf iretd -[ ]*[a-f0-9]+: cf iretd -[ ]*[a-f0-9]+: 0f 07 sysretd -[ ]*[a-f0-9]+: 0f 07 sysretd -[ ]*[a-f0-9]+: 66 cf iretw -[ ]*[a-f0-9]+: cf iretd -[ ]*[a-f0-9]+: cf iretd -[ ]*[a-f0-9]+: 0f 07 sysretd -[ ]*[a-f0-9]+: 0f 07 sysretd +[ ]*[a-f0-9]+: 0f 01 c8 monitor +[ ]*[a-f0-9]+: 0f 01 c9 mwait +[ ]*[a-f0-9]+: 0f 01 c1 vmcall +[ ]*[a-f0-9]+: 0f 01 c2 vmlaunch +[ ]*[a-f0-9]+: 0f 01 c3 vmresume +[ ]*[a-f0-9]+: 0f 01 c4 vmxoff +[ ]*[a-f0-9]+: 66 cf iretw +[ ]*[a-f0-9]+: cf iretd +[ ]*[a-f0-9]+: cf iretd +[ ]*[a-f0-9]+: 0f 07 sysretd +[ ]*[a-f0-9]+: 0f 07 sysretd +[ ]*[a-f0-9]+: 66 cf iretw +[ ]*[a-f0-9]+: cf iretd +[ ]*[a-f0-9]+: cf iretd +[ ]*[a-f0-9]+: 0f 07 sysretd +[ ]*[a-f0-9]+: 0f 07 sysretd #pass diff --git a/gas/testsuite/gas/i386/suffix.d b/gas/testsuite/gas/i386/suffix.d index 44be5ed..d76dca3 100644 --- a/gas/testsuite/gas/i386/suffix.d +++ b/gas/testsuite/gas/i386/suffix.d @@ -8,18 +8,18 @@ Disassembly of section .text: 0+ <foo>: [ ]*[a-f0-9]+: 0f 01 c8 monitor %eax,%ecx,%edx [ ]*[a-f0-9]+: 0f 01 c9 mwait %eax,%ecx -[ ]*[a-f0-9]+: 0f 01 c1 vmcall -[ ]*[a-f0-9]+: 0f 01 c2 vmlaunch -[ ]*[a-f0-9]+: 0f 01 c3 vmresume -[ ]*[a-f0-9]+: 0f 01 c4 vmxoff -[ ]*[a-f0-9]+: 66 cf iretw -[ ]*[a-f0-9]+: cf iretl -[ ]*[a-f0-9]+: cf iretl -[ ]*[a-f0-9]+: 0f 07 sysretl -[ ]*[a-f0-9]+: 0f 07 sysretl -[ ]*[a-f0-9]+: 66 cf iretw -[ ]*[a-f0-9]+: cf iretl -[ ]*[a-f0-9]+: cf iretl -[ ]*[a-f0-9]+: 0f 07 sysretl -[ ]*[a-f0-9]+: 0f 07 sysretl +[ ]*[a-f0-9]+: 0f 01 c1 vmcall +[ ]*[a-f0-9]+: 0f 01 c2 vmlaunch +[ ]*[a-f0-9]+: 0f 01 c3 vmresume +[ ]*[a-f0-9]+: 0f 01 c4 vmxoff +[ ]*[a-f0-9]+: 66 cf iretw +[ ]*[a-f0-9]+: cf iretl +[ ]*[a-f0-9]+: cf iretl +[ ]*[a-f0-9]+: 0f 07 sysretl +[ ]*[a-f0-9]+: 0f 07 sysretl +[ ]*[a-f0-9]+: 66 cf iretw +[ ]*[a-f0-9]+: cf iretl +[ ]*[a-f0-9]+: cf iretl +[ ]*[a-f0-9]+: 0f 07 sysretl +[ ]*[a-f0-9]+: 0f 07 sysretl #pass diff --git a/gas/testsuite/gas/i386/svme.d b/gas/testsuite/gas/i386/svme.d index f5c17b7..917a989 100644 --- a/gas/testsuite/gas/i386/svme.d +++ b/gas/testsuite/gas/i386/svme.d @@ -6,34 +6,34 @@ Disassembly of section .text: 0+000 <common>: -[ ]*[0-9a-f]+:[ ]+0f 01 dd[ ]+clgi[ ]* -[ ]*[0-9a-f]+:[ ]+0f 01 df[ ]+invlpga[ ]* -[ ]*[0-9a-f]+:[ ]+0f 01 de[ ]+skinit[ ]* -[ ]*[0-9a-f]+:[ ]+0f 01 dc[ ]+stgi[ ]* -[ ]*[0-9a-f]+:[ ]+0f 01 da[ ]+vmload[ ]* -[ ]*[0-9a-f]+:[ ]+0f 01 d9[ ]+vmmcall[ ]* -[ ]*[0-9a-f]+:[ ]+0f 01 d8[ ]+vmrun[ ]* -[ ]*[0-9a-f]+:[ ]+0f 01 db[ ]+vmsave[ ]* +[ ]*[0-9a-f]+:[ ]+0f 01 dd[ ]+clgi +[ ]*[0-9a-f]+:[ ]+0f 01 df[ ]+invlpga +[ ]*[0-9a-f]+:[ ]+0f 01 de[ ]+skinit +[ ]*[0-9a-f]+:[ ]+0f 01 dc[ ]+stgi +[ ]*[0-9a-f]+:[ ]+0f 01 da[ ]+vmload +[ ]*[0-9a-f]+:[ ]+0f 01 d9[ ]+vmmcall +[ ]*[0-9a-f]+:[ ]+0f 01 d8[ ]+vmrun +[ ]*[0-9a-f]+:[ ]+0f 01 db[ ]+vmsave [0-9a-f]+ <att32>: -[ ]*[0-9a-f]+:[ ]+0f 01 de[ ]+skinit[ ]* -[ ]*[0-9a-f]+:[ ]+0f 01 df[ ]+invlpga[ ]* -[ ]*[0-9a-f]+:[ ]+0f 01 da[ ]+vmload[ ]* -[ ]*[0-9a-f]+:[ ]+0f 01 d8[ ]+vmrun[ ]* -[ ]*[0-9a-f]+:[ ]+0f 01 db[ ]+vmsave[ ]* +[ ]*[0-9a-f]+:[ ]+0f 01 de[ ]+skinit +[ ]*[0-9a-f]+:[ ]+0f 01 df[ ]+invlpga +[ ]*[0-9a-f]+:[ ]+0f 01 da[ ]+vmload +[ ]*[0-9a-f]+:[ ]+0f 01 d8[ ]+vmrun +[ ]*[0-9a-f]+:[ ]+0f 01 db[ ]+vmsave [0-9a-f]+ <att16>: -[ ]*[0-9a-f]+:[ ]+67 0f 01 df[ ]+addr16 invlpga[ ]* -[ ]*[0-9a-f]+:[ ]+67 0f 01 da[ ]+addr16 vmload[ ]* -[ ]*[0-9a-f]+:[ ]+67 0f 01 d8[ ]+addr16 vmrun[ ]* -[ ]*[0-9a-f]+:[ ]+67 0f 01 db[ ]+addr16 vmsave[ ]* +[ ]*[0-9a-f]+:[ ]+67 0f 01 df[ ]+addr16 invlpga +[ ]*[0-9a-f]+:[ ]+67 0f 01 da[ ]+addr16 vmload +[ ]*[0-9a-f]+:[ ]+67 0f 01 d8[ ]+addr16 vmrun +[ ]*[0-9a-f]+:[ ]+67 0f 01 db[ ]+addr16 vmsave [0-9a-f]+ <intel32>: -[ ]*[0-9a-f]+:[ ]+0f 01 de[ ]+skinit[ ]* -[ ]*[0-9a-f]+:[ ]+0f 01 df[ ]+invlpga[ ]* -[ ]*[0-9a-f]+:[ ]+0f 01 da[ ]+vmload[ ]* -[ ]*[0-9a-f]+:[ ]+0f 01 d8[ ]+vmrun[ ]* -[ ]*[0-9a-f]+:[ ]+0f 01 db[ ]+vmsave[ ]* +[ ]*[0-9a-f]+:[ ]+0f 01 de[ ]+skinit +[ ]*[0-9a-f]+:[ ]+0f 01 df[ ]+invlpga +[ ]*[0-9a-f]+:[ ]+0f 01 da[ ]+vmload +[ ]*[0-9a-f]+:[ ]+0f 01 d8[ ]+vmrun +[ ]*[0-9a-f]+:[ ]+0f 01 db[ ]+vmsave [0-9a-f]+ <intel16>: -[ ]*[0-9a-f]+:[ ]+67 0f 01 df[ ]+addr16 invlpga[ ]* -[ ]*[0-9a-f]+:[ ]+67 0f 01 da[ ]+addr16 vmload[ ]* -[ ]*[0-9a-f]+:[ ]+67 0f 01 d8[ ]+addr16 vmrun[ ]* -[ ]*[0-9a-f]+:[ ]+67 0f 01 db[ ]+addr16 vmsave[ ]* +[ ]*[0-9a-f]+:[ ]+67 0f 01 df[ ]+addr16 invlpga +[ ]*[0-9a-f]+:[ ]+67 0f 01 da[ ]+addr16 vmload +[ ]*[0-9a-f]+:[ ]+67 0f 01 d8[ ]+addr16 vmrun +[ ]*[0-9a-f]+:[ ]+67 0f 01 db[ ]+addr16 vmsave #pass diff --git a/gas/testsuite/gas/i386/svme64.d b/gas/testsuite/gas/i386/svme64.d index 640b947..9237fd5 100644 --- a/gas/testsuite/gas/i386/svme64.d +++ b/gas/testsuite/gas/i386/svme64.d @@ -8,34 +8,34 @@ Disassembly of section .text: 0+000 <common>: -[ ]*[0-9a-f]+:[ ]+0f 01 dd[ ]+clgi[ ]* -[ ]*[0-9a-f]+:[ ]+0f 01 df[ ]+invlpga[ ]* -[ ]*[0-9a-f]+:[ ]+0f 01 de[ ]+skinit[ ]* -[ ]*[0-9a-f]+:[ ]+0f 01 dc[ ]+stgi[ ]* -[ ]*[0-9a-f]+:[ ]+0f 01 da[ ]+vmload[ ]* -[ ]*[0-9a-f]+:[ ]+0f 01 d9[ ]+vmmcall[ ]* -[ ]*[0-9a-f]+:[ ]+0f 01 d8[ ]+vmrun[ ]* -[ ]*[0-9a-f]+:[ ]+0f 01 db[ ]+vmsave[ ]* +[ ]*[0-9a-f]+:[ ]+0f 01 dd[ ]+clgi +[ ]*[0-9a-f]+:[ ]+0f 01 df[ ]+invlpga +[ ]*[0-9a-f]+:[ ]+0f 01 de[ ]+skinit +[ ]*[0-9a-f]+:[ ]+0f 01 dc[ ]+stgi +[ ]*[0-9a-f]+:[ ]+0f 01 da[ ]+vmload +[ ]*[0-9a-f]+:[ ]+0f 01 d9[ ]+vmmcall +[ ]*[0-9a-f]+:[ ]+0f 01 d8[ ]+vmrun +[ ]*[0-9a-f]+:[ ]+0f 01 db[ ]+vmsave [0-9a-f]+ <att64>: -[ ]*[0-9a-f]+:[ ]+0f 01 df[ ]+invlpga[ ]* -[ ]*[0-9a-f]+:[ ]+0f 01 da[ ]+vmload[ ]* -[ ]*[0-9a-f]+:[ ]+0f 01 d8[ ]+vmrun[ ]* -[ ]*[0-9a-f]+:[ ]+0f 01 db[ ]+vmsave[ ]* +[ ]*[0-9a-f]+:[ ]+0f 01 df[ ]+invlpga +[ ]*[0-9a-f]+:[ ]+0f 01 da[ ]+vmload +[ ]*[0-9a-f]+:[ ]+0f 01 d8[ ]+vmrun +[ ]*[0-9a-f]+:[ ]+0f 01 db[ ]+vmsave [0-9a-f]+ <att32>: -[ ]*[0-9a-f]+:[ ]+0f 01 de[ ]+skinit[ ]* -[ ]*[0-9a-f]+:[ ]+67 0f 01 df[ ]+addr32 invlpga[ ] -[ ]*[0-9a-f]+:[ ]+67 0f 01 da[ ]+addr32 vmload[ ] -[ ]*[0-9a-f]+:[ ]+67 0f 01 d8[ ]+addr32 vmrun[ ] -[ ]*[0-9a-f]+:[ ]+67 0f 01 db[ ]+addr32 vmsave[ ] +[ ]*[0-9a-f]+:[ ]+0f 01 de[ ]+skinit +[ ]*[0-9a-f]+:[ ]+67 0f 01 df[ ]+addr32 invlpga +[ ]*[0-9a-f]+:[ ]+67 0f 01 da[ ]+addr32 vmload +[ ]*[0-9a-f]+:[ ]+67 0f 01 d8[ ]+addr32 vmrun +[ ]*[0-9a-f]+:[ ]+67 0f 01 db[ ]+addr32 vmsave [0-9a-f]+ <intel64>: -[ ]*[0-9a-f]+:[ ]+0f 01 df[ ]+invlpga[ ]* -[ ]*[0-9a-f]+:[ ]+0f 01 da[ ]+vmload[ ]* -[ ]*[0-9a-f]+:[ ]+0f 01 d8[ ]+vmrun[ ]* -[ ]*[0-9a-f]+:[ ]+0f 01 db[ ]+vmsave[ ]* +[ ]*[0-9a-f]+:[ ]+0f 01 df[ ]+invlpga +[ ]*[0-9a-f]+:[ ]+0f 01 da[ ]+vmload +[ ]*[0-9a-f]+:[ ]+0f 01 d8[ ]+vmrun +[ ]*[0-9a-f]+:[ ]+0f 01 db[ ]+vmsave [0-9a-f]+ <intel32>: -[ ]*[0-9a-f]+:[ ]+0f 01 de[ ]+skinit[ ]* -[ ]*[0-9a-f]+:[ ]+67 0f 01 df[ ]+addr32 invlpga[ ] -[ ]*[0-9a-f]+:[ ]+67 0f 01 da[ ]+addr32 vmload[ ] -[ ]*[0-9a-f]+:[ ]+67 0f 01 d8[ ]+addr32 vmrun[ ] -[ ]*[0-9a-f]+:[ ]+67 0f 01 db[ ]+addr32 vmsave[ ] +[ ]*[0-9a-f]+:[ ]+0f 01 de[ ]+skinit +[ ]*[0-9a-f]+:[ ]+67 0f 01 df[ ]+addr32 invlpga +[ ]*[0-9a-f]+:[ ]+67 0f 01 da[ ]+addr32 vmload +[ ]*[0-9a-f]+:[ ]+67 0f 01 d8[ ]+addr32 vmrun +[ ]*[0-9a-f]+:[ ]+67 0f 01 db[ ]+addr32 vmsave #pass diff --git a/gas/testsuite/gas/i386/tbm-intel.d b/gas/testsuite/gas/i386/tbm-intel.d index ede0a1e..bd20427 100644 --- a/gas/testsuite/gas/i386/tbm-intel.d +++ b/gas/testsuite/gas/i386/tbm-intel.d @@ -1,4 +1,4 @@ -#as: +#as: #objdump: -dwMintel #name: i386 TBM insns (Intel disassembly) #source: tbm.s diff --git a/gas/testsuite/gas/i386/tdx.d b/gas/testsuite/gas/i386/tdx.d index 35263be..fe4d1a2 100644 --- a/gas/testsuite/gas/i386/tdx.d +++ b/gas/testsuite/gas/i386/tdx.d @@ -8,5 +8,5 @@ Disassembly of section \.text: 0+ <_start>: -[ ]*[a-f0-9]+: 66 0f 01 cc + tdcall * +[ ]*[a-f0-9]+: 66 0f 01 cc + tdcall #pass diff --git a/gas/testsuite/gas/i386/tlbsync.d b/gas/testsuite/gas/i386/tlbsync.d index 3c3c57f..0f390a2 100644 --- a/gas/testsuite/gas/i386/tlbsync.d +++ b/gas/testsuite/gas/i386/tlbsync.d @@ -7,5 +7,5 @@ Disassembly of section \.text: 00000000 <_start>: -[ ]*[a-f0-9]+: 0f 01 ff tlbsync[ ]* +[ ]*[a-f0-9]+: 0f 01 ff tlbsync #pass diff --git a/gas/testsuite/gas/i386/tlsd.d b/gas/testsuite/gas/i386/tlsd.d index 620a0d9..99aa701 100644 --- a/gas/testsuite/gas/i386/tlsd.d +++ b/gas/testsuite/gas/i386/tlsd.d @@ -29,5 +29,5 @@ Disassembly of section .text: 34: 8d 88 00 00 00 00 [ ]*lea 0x0\(%eax\),%ecx [ ]+36: R_386_TLS_LDO_32 baz 3a: 8b 5d fc [ ]*mov -0x4\(%ebp\),%ebx - 3d: c9 [ ]*leave[ ]* - 3e: c3 [ ]*ret[ ]* + 3d: c9 [ ]*leave + 3e: c3 [ ]*ret diff --git a/gas/testsuite/gas/i386/tlsnopic.d b/gas/testsuite/gas/i386/tlsnopic.d index 703231a..e54dbbc 100644 --- a/gas/testsuite/gas/i386/tlsnopic.d +++ b/gas/testsuite/gas/i386/tlsnopic.d @@ -17,7 +17,7 @@ Disassembly of section .text: 1e: 2d 00 00 00 00 [ ]*sub \$0x0,%eax [ ]+1f: R_386_TLS_LE_32 bar 23: 65 8b 0d 00 00 00 00 [ ]*mov %gs:0x0,%ecx - 2a: 90 [ ]*nop[ ]* + 2a: 90 [ ]*nop 2b: 81 e9 00 00 00 00 [ ]*sub \$0x0,%ecx [ ]+2d: R_386_TLS_LE_32 baz 31: 65 8b 0d 00 00 00 00 [ ]*mov %gs:0x0,%ecx @@ -34,4 +34,4 @@ Disassembly of section .text: 4f: 65 a1 00 00 00 00 [ ]*mov %gs:0x0,%eax 55: 03 05 00 00 00 00 [ ]*add 0x0,%eax 57: R_386_TLS_IE foo - 5b: c3 [ ]*ret[ ]* + 5b: c3 [ ]*ret diff --git a/gas/testsuite/gas/i386/tlspic.d b/gas/testsuite/gas/i386/tlspic.d index ccb292c..7434658 100644 --- a/gas/testsuite/gas/i386/tlspic.d +++ b/gas/testsuite/gas/i386/tlspic.d @@ -26,5 +26,5 @@ Disassembly of section .text: 33: 03 8b 00 00 00 00 [ ]*add 0x0\(%ebx\),%ecx [ ]+35: R_386_TLS_GOTIE foo 39: 8b 5d fc [ ]*mov -0x4\(%ebp\),%ebx - 3c: c9 [ ]*leave[ ]* - 3d: c3 [ ]*ret[ ]* + 3c: c9 [ ]*leave + 3d: c3 [ ]*ret diff --git a/gas/testsuite/gas/i386/tsxldtrk.d b/gas/testsuite/gas/i386/tsxldtrk.d index 457007c..edfc4a6 100644 --- a/gas/testsuite/gas/i386/tsxldtrk.d +++ b/gas/testsuite/gas/i386/tsxldtrk.d @@ -8,6 +8,6 @@ Disassembly of section \.text: 0+ <_start>: - +[a-f0-9]+: f2 0f 01 e8 xsusldtrk[ ]* - +[a-f0-9]+: f2 0f 01 e9 xresldtrk[ ]* + +[a-f0-9]+: f2 0f 01 e8 xsusldtrk + +[a-f0-9]+: f2 0f 01 e9 xresldtrk #pass diff --git a/gas/testsuite/gas/i386/unique.d b/gas/testsuite/gas/i386/unique.d index 0337733..7b89ee4 100644 --- a/gas/testsuite/gas/i386/unique.d +++ b/gas/testsuite/gas/i386/unique.d @@ -8,26 +8,26 @@ Disassembly of section .text: 0+ <foo>: +[a-f0-9]+: 89 c3 mov %eax,%ebx - +[a-f0-9]+: c3 ret + +[a-f0-9]+: c3 ret Disassembly of section .text: 0+ <bar>: +[a-f0-9]+: 31 c3 xor %eax,%ebx - +[a-f0-9]+: c3 ret + +[a-f0-9]+: c3 ret Disassembly of section .text: 0+ <foo1>: +[a-f0-9]+: 89 c3 mov %eax,%ebx - +[a-f0-9]+: c3 ret + +[a-f0-9]+: c3 ret Disassembly of section .text: 0+ <bar1>: +[a-f0-9]+: 01 c3 add %eax,%ebx +[a-f0-9]+: 90 nop - +[a-f0-9]+: c3 ret + +[a-f0-9]+: c3 ret Disassembly of section .text: @@ -36,7 +36,7 @@ Disassembly of section .text: +[a-f0-9]+: 90 nop +[a-f0-9]+: 90 nop +[a-f0-9]+: 90 nop - +[a-f0-9]+: c3 ret + +[a-f0-9]+: c3 ret Disassembly of section .text: @@ -44,5 +44,5 @@ Disassembly of section .text: +[a-f0-9]+: 31 c3 xor %eax,%ebx +[a-f0-9]+: 90 nop +[a-f0-9]+: 90 nop - +[a-f0-9]+: c3 ret + +[a-f0-9]+: c3 ret #pass diff --git a/gas/testsuite/gas/i386/vmfunc.d b/gas/testsuite/gas/i386/vmfunc.d index dd6998d..af7908d 100644 --- a/gas/testsuite/gas/i386/vmfunc.d +++ b/gas/testsuite/gas/i386/vmfunc.d @@ -6,6 +6,6 @@ Disassembly of section .text: 0+ <foo>: -[ ]*[a-f0-9]+: 0f 01 d4 vmfunc +[ ]*[a-f0-9]+: 0f 01 d4 vmfunc [ ]*[a-f0-9]+: 90 nop #pass diff --git a/gas/testsuite/gas/i386/vmx.d b/gas/testsuite/gas/i386/vmx.d index 3905b05..4346e71 100644 --- a/gas/testsuite/gas/i386/vmx.d +++ b/gas/testsuite/gas/i386/vmx.d @@ -6,10 +6,10 @@ Disassembly of section .text: 0+000 <foo>: - 0: 0f 01 c1 [ ]*vmcall - 3: 0f 01 c2 [ ]*vmlaunch - 6: 0f 01 c3 [ ]*vmresume - 9: 0f 01 c4 [ ]*vmxoff + 0: 0f 01 c1 [ ]*vmcall + 3: 0f 01 c2 [ ]*vmlaunch + 6: 0f 01 c3 [ ]*vmresume + 9: 0f 01 c4 [ ]*vmxoff c: 66 0f c7 30 [ ]*vmclear \(%eax\) 10: 0f c7 30 [ ]*vmptrld \(%eax\) 13: 0f c7 38 [ ]*vmptrst \(%eax\) @@ -22,10 +22,10 @@ Disassembly of section .text: 29: 0f 79 d8 [ ]*vmwrite %eax,%ebx 2c: 0f 79 18 [ ]*vmwrite \(%eax\),%ebx 2f: 0f 79 18 [ ]*vmwrite \(%eax\),%ebx -[ ]*[a-f0-9]+: 0f 01 c1[ ]*vmcall * -[ ]*[a-f0-9]+: 0f 01 c2[ ]*vmlaunch * -[ ]*[a-f0-9]+: 0f 01 c3[ ]*vmresume * -[ ]*[a-f0-9]+: 0f 01 c4[ ]*vmxoff * +[ ]*[a-f0-9]+: 0f 01 c1[ ]*vmcall +[ ]*[a-f0-9]+: 0f 01 c2[ ]*vmlaunch +[ ]*[a-f0-9]+: 0f 01 c3[ ]*vmresume +[ ]*[a-f0-9]+: 0f 01 c4[ ]*vmxoff [ ]*[a-f0-9]+: 67 66 0f c7 30[ ]*vmclear \(%bx,%si\) [ ]*[a-f0-9]+: 67 0f c7 30[ ]*vmptrld \(%bx,%si\) [ ]*[a-f0-9]+: 67 0f c7 38[ ]*vmptrst \(%bx,%si\) diff --git a/gas/testsuite/gas/i386/wbnoinvd-intel.d b/gas/testsuite/gas/i386/wbnoinvd-intel.d index 34d390e..b0cf866 100644 --- a/gas/testsuite/gas/i386/wbnoinvd-intel.d +++ b/gas/testsuite/gas/i386/wbnoinvd-intel.d @@ -7,5 +7,5 @@ Disassembly of section .text: 0+ <_start>: -[ ]*[a-f0-9]+:[ ]*f3 0f 09[ ]*wbnoinvd[ ]* +[ ]*[a-f0-9]+:[ ]*f3 0f 09[ ]*wbnoinvd #pass diff --git a/gas/testsuite/gas/i386/wbnoinvd.d b/gas/testsuite/gas/i386/wbnoinvd.d index 051b3d0..255315f 100644 --- a/gas/testsuite/gas/i386/wbnoinvd.d +++ b/gas/testsuite/gas/i386/wbnoinvd.d @@ -7,5 +7,5 @@ Disassembly of section .text: 0+ <_start>: -[ ]*[a-f0-9]+:[ ]*f3 0f 09[ ]*wbnoinvd[ ]* +[ ]*[a-f0-9]+:[ ]*f3 0f 09[ ]*wbnoinvd #pass diff --git a/gas/testsuite/gas/i386/wrap32-text.d b/gas/testsuite/gas/i386/wrap32-text.d index 03776f7..e06554d 100644 --- a/gas/testsuite/gas/i386/wrap32-text.d +++ b/gas/testsuite/gas/i386/wrap32-text.d @@ -39,5 +39,5 @@ Disassembly of section .text: [ ]*[0-9a-f]+:[ ]+81 02 00 ff ff ff addl \$0xffffff00,\(%edx\)[ ]+[0-9a-f]+: (R_386_|dir)?32[ ]+sym [ ]*[0-9a-f]+:[ ]+81 00 f4 00 00 00 addl \$0xf4,\(%eax\)[ ]+[0-9a-f]+: (R_386_|dir)?32[ ]+sym [ ]*[0-9a-f]+:[ ]+81 02 f4 00 00 00 addl \$0xf4,\(%edx\)[ ]+[0-9a-f]+: (R_386_|dir)?32[ ]+sym -[ ]*[0-9a-f]+:[ ]+c3 ret * +[ ]*[0-9a-f]+:[ ]+c3 ret #pass diff --git a/gas/testsuite/gas/i386/x86-64-align-branch-1a.d b/gas/testsuite/gas/i386/x86-64-align-branch-1a.d index 0253d36..b030a41 100644 --- a/gas/testsuite/gas/i386/x86-64-align-branch-1a.d +++ b/gas/testsuite/gas/i386/x86-64-align-branch-1a.d @@ -73,5 +73,5 @@ Disassembly of section .text: be: 89 b5 50 fb ff ff mov %esi,-0x4b0\(%rbp\) c4: eb c2 jmp (0x)?88( .*)? c6: 5d pop %rbp - c7: c3 ret * + c7: c3 ret #pass diff --git a/gas/testsuite/gas/i386/x86-64-align-branch-1b.d b/gas/testsuite/gas/i386/x86-64-align-branch-1b.d index b043a7a..51625af 100644 --- a/gas/testsuite/gas/i386/x86-64-align-branch-1b.d +++ b/gas/testsuite/gas/i386/x86-64-align-branch-1b.d @@ -73,5 +73,5 @@ Disassembly of section .text: be: 89 b5 50 fb ff ff mov %esi,-0x4b0\(%rbp\) c4: eb c2 jmp (0x)?88( .*)? c6: 5d pop %rbp - c7: c3 ret * + c7: c3 ret #pass diff --git a/gas/testsuite/gas/i386/x86-64-align-branch-1c.d b/gas/testsuite/gas/i386/x86-64-align-branch-1c.d index e972354..3dc1f78 100644 --- a/gas/testsuite/gas/i386/x86-64-align-branch-1c.d +++ b/gas/testsuite/gas/i386/x86-64-align-branch-1c.d @@ -73,5 +73,5 @@ Disassembly of section .text: be: 89 b5 50 fb ff ff mov %esi,-0x4b0\(%rbp\) c4: eb c2 jmp (0x)?88( .*)? c6: 5d pop %rbp - c7: c3 ret * + c7: c3 ret #pass diff --git a/gas/testsuite/gas/i386/x86-64-align-branch-1d.d b/gas/testsuite/gas/i386/x86-64-align-branch-1d.d index 99065a6..e2de094 100644 --- a/gas/testsuite/gas/i386/x86-64-align-branch-1d.d +++ b/gas/testsuite/gas/i386/x86-64-align-branch-1d.d @@ -72,5 +72,5 @@ Disassembly of section .text: bc: 89 b5 50 fb ff ff mov %esi,-0x4b0\(%rbp\) c2: eb c2 jmp (0x)?86( .*)? c4: 5d pop %rbp - c5: c3 ret * + c5: c3 ret #pass diff --git a/gas/testsuite/gas/i386/x86-64-align-branch-1e.d b/gas/testsuite/gas/i386/x86-64-align-branch-1e.d index 9bb1a1c..d92c411 100644 --- a/gas/testsuite/gas/i386/x86-64-align-branch-1e.d +++ b/gas/testsuite/gas/i386/x86-64-align-branch-1e.d @@ -72,5 +72,5 @@ Disassembly of section .text: b9: 89 b5 50 fb ff ff mov %esi,-0x4b0\(%rbp\) bf: eb c2 jmp (0x)?83( .*)? c1: 5d pop %rbp - c2: c3 ret * + c2: c3 ret #pass diff --git a/gas/testsuite/gas/i386/x86-64-align-branch-1f.d b/gas/testsuite/gas/i386/x86-64-align-branch-1f.d index 4381202..10f94c2 100644 --- a/gas/testsuite/gas/i386/x86-64-align-branch-1f.d +++ b/gas/testsuite/gas/i386/x86-64-align-branch-1f.d @@ -73,5 +73,5 @@ Disassembly of section .text: bb: 89 b5 50 fb ff ff mov %esi,-0x4b0\(%rbp\) c1: eb c2 jmp (0x)?85( .*)? c3: 5d pop %rbp - c4: c3 ret * + c4: c3 ret #pass diff --git a/gas/testsuite/gas/i386/x86-64-align-branch-1g.d b/gas/testsuite/gas/i386/x86-64-align-branch-1g.d index af6c869..7b1febf 100644 --- a/gas/testsuite/gas/i386/x86-64-align-branch-1g.d +++ b/gas/testsuite/gas/i386/x86-64-align-branch-1g.d @@ -73,5 +73,5 @@ Disassembly of section .text: be: 89 b5 50 fb ff ff mov %esi,-0x4b0\(%rbp\) c4: eb c2 jmp (0x)?88( .*)? c6: 5d pop %rbp - c7: c3 ret * + c7: c3 ret #pass diff --git a/gas/testsuite/gas/i386/x86-64-align-branch-1h.d b/gas/testsuite/gas/i386/x86-64-align-branch-1h.d index ce7879e..0b6466f 100644 --- a/gas/testsuite/gas/i386/x86-64-align-branch-1h.d +++ b/gas/testsuite/gas/i386/x86-64-align-branch-1h.d @@ -72,5 +72,5 @@ Disassembly of section .text: b8: 89 b5 50 fb ff ff mov %esi,-0x4b0\(%rbp\) be: eb c2 jmp (0x)?82( .*)? c0: 5d pop %rbp - c1: c3 ret * + c1: c3 ret #pass diff --git a/gas/testsuite/gas/i386/x86-64-align-branch-1i.d b/gas/testsuite/gas/i386/x86-64-align-branch-1i.d index dfef04c..c37542a 100644 --- a/gas/testsuite/gas/i386/x86-64-align-branch-1i.d +++ b/gas/testsuite/gas/i386/x86-64-align-branch-1i.d @@ -76,5 +76,5 @@ Disassembly of section .text: be: 89 b5 50 fb ff ff mov %esi,-0x4b0\(%rbp\) c4: eb c2 jmp (0x)?88( .*)? c6: 5d pop %rbp - c7: c3 ret * + c7: c3 ret #pass diff --git a/gas/testsuite/gas/i386/x86-64-align-branch-4a.d b/gas/testsuite/gas/i386/x86-64-align-branch-4a.d index 40f8c66..6d242f8 100644 --- a/gas/testsuite/gas/i386/x86-64-align-branch-4a.d +++ b/gas/testsuite/gas/i386/x86-64-align-branch-4a.d @@ -17,7 +17,7 @@ Disassembly of section .text: 16: 89 75 f4 mov %esi,-0xc\(%rbp\) 19: 89 75 f4 mov %esi,-0xc\(%rbp\) 1c: 89 75 f4 mov %esi,-0xc\(%rbp\) - 1f: c3 ret * + 1f: c3 ret 20: 55 push %rbp 21: 64 89 04 25 01 00 00 00 mov %eax,%fs:0x1 29: 55 push %rbp diff --git a/gas/testsuite/gas/i386/x86-64-align-branch-4b.d b/gas/testsuite/gas/i386/x86-64-align-branch-4b.d index e90b359..ba34a43 100644 --- a/gas/testsuite/gas/i386/x86-64-align-branch-4b.d +++ b/gas/testsuite/gas/i386/x86-64-align-branch-4b.d @@ -17,7 +17,7 @@ Disassembly of section .text: 17: 89 75 f4 mov %esi,-0xc\(%rbp\) 1a: 89 75 f4 mov %esi,-0xc\(%rbp\) 1d: 89 75 f4 mov %esi,-0xc\(%rbp\) - 20: c3 ret * + 20: c3 ret 21: 2e 2e 55 cs cs push %rbp 24: 64 89 04 25 01 00 00 00 mov %eax,%fs:0x1 2c: 55 push %rbp diff --git a/gas/testsuite/gas/i386/x86-64-align-branch-6.d b/gas/testsuite/gas/i386/x86-64-align-branch-6.d index e061592..01a28ae 100644 --- a/gas/testsuite/gas/i386/x86-64-align-branch-6.d +++ b/gas/testsuite/gas/i386/x86-64-align-branch-6.d @@ -15,5 +15,5 @@ Disassembly of section .text: +[a-f0-9]+: 66 66 2e 0f 1f 84 00 00 00 00 00 data16 cs nopw 0x0\(%rax,%rax,1\) +[a-f0-9]+: 0f 1f 80 00 00 00 00 nopl 0x0\(%rax\) +[a-f0-9]+: f2 73 bf bnd jae 0 <_start> - +[a-f0-9]+: c3 ret * + +[a-f0-9]+: c3 ret #pass diff --git a/gas/testsuite/gas/i386/x86-64-amx-bad.d b/gas/testsuite/gas/i386/x86-64-amx-bad.d index 087e89a..f3d7fbe 100644 --- a/gas/testsuite/gas/i386/x86-64-amx-bad.d +++ b/gas/testsuite/gas/i386/x86-64-amx-bad.d @@ -9,9 +9,9 @@ Disassembly of section \.text: 0+ <\.text>: -[ ]*[a-f0-9]+:[ ]*c4 e2 d2 5c[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*c4 e2 d2 5c[ ]*\(bad\) [ ]*[a-f0-9]+:[ ]*dc 90 90 90 90 90[ ]*fcoml.* -[ ]*[a-f0-9]+:[ ]*c4 e2 56 5c[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*c4 e2 56 5c[ ]*\(bad\) [ ]*[a-f0-9]+:[ ]*dc 90 90 90 90 90[ ]*fcoml.* [ ]*[a-f0-9]+:[ ]*c4 62 52 5c dc[ ]*tdpbf16ps %tmm5,%tmm4,\(bad\) [ ]*[a-f0-9]+:[ ]*c4 c2 52 5c dc[ ]*tdpbf16ps %tmm5,\(bad\),%tmm3 diff --git a/gas/testsuite/gas/i386/x86-64-amx-intel.d b/gas/testsuite/gas/i386/x86-64-amx-intel.d index fc5e074..0d0d211 100644 --- a/gas/testsuite/gas/i386/x86-64-amx-intel.d +++ b/gas/testsuite/gas/i386/x86-64-amx-intel.d @@ -29,7 +29,7 @@ Disassembly of section \.text: [ ]*[a-f0-9]+:[ ]*c4 e2 79 4b 2c 11[ ]*tileloaddt1 tmm5,\[rcx\+rdx\*1\] [ ]*[a-f0-9]+:[ ]*67 c4 e2 79 4b 0c 51[ ]*tileloaddt1 tmm1,\[ecx\+edx\*2\] [ ]*[a-f0-9]+:[ ]*c4 e2 79 4b 0c 61[ ]*tileloaddt1 tmm1,\[rcx\+riz\*2\] -[ ]*[a-f0-9]+:[ ]*c4 e2 78 49 c0[ ]*tilerelease * +[ ]*[a-f0-9]+:[ ]*c4 e2 78 49 c0[ ]*tilerelease [ ]*[a-f0-9]+:[ ]*c4 e2 7a 4b 2c 21[ ]*tilestored \[rcx\+riz\*1\],tmm5 [ ]*[a-f0-9]+:[ ]*67 c4 e2 7a 4b 2c 21[ ]*tilestored \[ecx\+eiz\*1\],tmm5 [ ]*[a-f0-9]+:[ ]*c4 e2 7a 4b 2c 11[ ]*tilestored \[rcx\+rdx\*1\],tmm5 @@ -59,7 +59,7 @@ Disassembly of section \.text: [ ]*[a-f0-9]+:[ ]*c4 e2 79 4b 2c 11[ ]*tileloaddt1 tmm5,\[rcx\+rdx\*1\] [ ]*[a-f0-9]+:[ ]*67 c4 e2 79 4b 0c 51[ ]*tileloaddt1 tmm1,\[ecx\+edx\*2\] [ ]*[a-f0-9]+:[ ]*c4 e2 79 4b 0c 61[ ]*tileloaddt1 tmm1,\[rcx\+riz\*2\] -[ ]*[a-f0-9]+:[ ]*c4 e2 78 49 c0[ ]*tilerelease * +[ ]*[a-f0-9]+:[ ]*c4 e2 78 49 c0[ ]*tilerelease [ ]*[a-f0-9]+:[ ]*c4 e2 7a 4b 2c 21[ ]*tilestored \[rcx\+riz\*1\],tmm5 [ ]*[a-f0-9]+:[ ]*67 c4 e2 7a 4b 2c 21[ ]*tilestored \[ecx\+eiz\*1\],tmm5 [ ]*[a-f0-9]+:[ ]*c4 e2 7a 4b 2c 11[ ]*tilestored \[rcx\+rdx\*1\],tmm5 diff --git a/gas/testsuite/gas/i386/x86-64-amx.d b/gas/testsuite/gas/i386/x86-64-amx.d index ad6f422..7f08a1d 100644 --- a/gas/testsuite/gas/i386/x86-64-amx.d +++ b/gas/testsuite/gas/i386/x86-64-amx.d @@ -29,7 +29,7 @@ Disassembly of section \.text: [ ]*[a-f0-9]+:[ ]*c4 e2 79 4b 2c 11[ ]*tileloaddt1 \(%rcx,%rdx,1\),%tmm5 [ ]*[a-f0-9]+:[ ]*67 c4 e2 79 4b 0c 51[ ]*tileloaddt1 \(%ecx,%edx,2\),%tmm1 [ ]*[a-f0-9]+:[ ]*c4 e2 79 4b 0c 61[ ]*tileloaddt1 \(%rcx,%riz,2\),%tmm1 -[ ]*[a-f0-9]+:[ ]*c4 e2 78 49 c0[ ]*tilerelease * +[ ]*[a-f0-9]+:[ ]*c4 e2 78 49 c0[ ]*tilerelease [ ]*[a-f0-9]+:[ ]*c4 e2 7a 4b 2c 21[ ]*tilestored %tmm5,\(%rcx,%riz,1\) [ ]*[a-f0-9]+:[ ]*67 c4 e2 7a 4b 2c 21[ ]*tilestored %tmm5,\(%ecx,%eiz,1\) [ ]*[a-f0-9]+:[ ]*c4 e2 7a 4b 2c 11[ ]*tilestored %tmm5,\(%rcx,%rdx,1\) @@ -59,7 +59,7 @@ Disassembly of section \.text: [ ]*[a-f0-9]+:[ ]*c4 e2 79 4b 2c 11[ ]*tileloaddt1 \(%rcx,%rdx,1\),%tmm5 [ ]*[a-f0-9]+:[ ]*67 c4 e2 79 4b 0c 51[ ]*tileloaddt1 \(%ecx,%edx,2\),%tmm1 [ ]*[a-f0-9]+:[ ]*c4 e2 79 4b 0c 61[ ]*tileloaddt1 \(%rcx,%riz,2\),%tmm1 -[ ]*[a-f0-9]+:[ ]*c4 e2 78 49 c0[ ]*tilerelease * +[ ]*[a-f0-9]+:[ ]*c4 e2 78 49 c0[ ]*tilerelease [ ]*[a-f0-9]+:[ ]*c4 e2 7a 4b 2c 21[ ]*tilestored %tmm5,\(%rcx,%riz,1\) [ ]*[a-f0-9]+:[ ]*67 c4 e2 7a 4b 2c 21[ ]*tilestored %tmm5,\(%ecx,%eiz,1\) [ ]*[a-f0-9]+:[ ]*c4 e2 7a 4b 2c 11[ ]*tilestored %tmm5,\(%rcx,%rdx,1\) diff --git a/gas/testsuite/gas/i386/x86-64-arch-2.d b/gas/testsuite/gas/i386/x86-64-arch-2.d index d175c15..21fdc97 100644 --- a/gas/testsuite/gas/i386/x86-64-arch-2.d +++ b/gas/testsuite/gas/i386/x86-64-arch-2.d @@ -9,7 +9,7 @@ Disassembly of section .text: 0+ <.text>: [ ]*[a-f0-9]+: 0f 44 d8 cmove %eax,%ebx [ ]*[a-f0-9]+: 0f ae 38 clflush \(%rax\) -[ ]*[a-f0-9]+: 0f 05 syscall +[ ]*[a-f0-9]+: 0f 05 syscall [ ]*[a-f0-9]+: 0f fc dc paddb %mm4,%mm3 [ ]*[a-f0-9]+: f3 0f 58 dc addss %xmm4,%xmm3 [ ]*[a-f0-9]+: f2 0f 58 dc addsd %xmm4,%xmm3 @@ -17,10 +17,10 @@ Disassembly of section .text: [ ]*[a-f0-9]+: 66 0f 38 01 dc phaddw %xmm4,%xmm3 [ ]*[a-f0-9]+: 66 0f 38 41 d9 phminposuw %xmm1,%xmm3 [ ]*[a-f0-9]+: f2 0f 38 f1 d9 crc32 %ecx,%ebx -[ ]*[a-f0-9]+: c5 fc 77 vzeroall -[ ]*[a-f0-9]+: 0f 01 c4 vmxoff -[ ]*[a-f0-9]+: 0f 37 getsec -[ ]*[a-f0-9]+: 0f 01 d0 xgetbv +[ ]*[a-f0-9]+: c5 fc 77 vzeroall +[ ]*[a-f0-9]+: 0f 01 c4 vmxoff +[ ]*[a-f0-9]+: 0f 37 getsec +[ ]*[a-f0-9]+: 0f 01 d0 xgetbv [ ]*[a-f0-9]+: 0f ae 31 xsaveopt \(%rcx\) [ ]*[a-f0-9]+: 66 0f 38 dc 01 aesenc \(%rcx\),%xmm0 [ ]*[a-f0-9]+: 66 0f 3a 44 c1 08 pclmulqdq \$0x8,%xmm1,%xmm0 @@ -30,12 +30,12 @@ Disassembly of section .text: [ ]*[a-f0-9]+: 0f 38 f0 19 movbe \(%rcx\),%ebx [ ]*[a-f0-9]+: 48 0f c7 0e cmpxchg16b \(%rsi\) [ ]*[a-f0-9]+: 66 0f 38 80 19 invept \(%rcx\),%rbx -[ ]*[a-f0-9]+: 0f 01 f9 rdtscp +[ ]*[a-f0-9]+: 0f 01 f9 rdtscp [ ]*[a-f0-9]+: 0f 0d 0c 75 00 10 00 00 prefetchw 0x1000\(,%rsi,2\) [ ]*[a-f0-9]+: f2 0f 79 ca insertq %xmm2,%xmm1 -[ ]*[a-f0-9]+: 0f 01 da vmload +[ ]*[a-f0-9]+: 0f 01 da vmload [ ]*[a-f0-9]+: f3 0f bd d9 lzcnt %ecx,%ebx -[ ]*[a-f0-9]+: 0f a7 c0 xstore-rng +[ ]*[a-f0-9]+: 0f a7 c0 xstore-rng [ ]*[a-f0-9]+: c4 e2 60 f3 c9 blsr %ecx,%ebx [ ]*[a-f0-9]+: 8f e9 60 01 c9 blcfill %ecx,%ebx #pass diff --git a/gas/testsuite/gas/i386/x86-64-arch-3.d b/gas/testsuite/gas/i386/x86-64-arch-3.d index ae14199..52f6cf6 100644 --- a/gas/testsuite/gas/i386/x86-64-arch-3.d +++ b/gas/testsuite/gas/i386/x86-64-arch-3.d @@ -7,14 +7,14 @@ Disassembly of section .text: 0+ <.text>: -[ ]*[a-f0-9]+: 0f 01 ca clac -[ ]*[a-f0-9]+: 0f 01 cb stac +[ ]*[a-f0-9]+: 0f 01 ca clac +[ ]*[a-f0-9]+: 0f 01 cb stac [ ]*[a-f0-9]+: 66 0f 38 f6 ca adcx %edx,%ecx [ ]*[a-f0-9]+: f3 0f 38 f6 ca adox %edx,%ecx [ ]*[a-f0-9]+: 0f c7 f8 rdseed %eax -[ ]*[a-f0-9]+: 0f 01 fc clzero[ ]* -[ ]*[a-f0-9]+: 0f 01 fc clzero[ ]* -[ ]*[a-f0-9]+: 67 0f 01 fc addr32 clzero[ ]* +[ ]*[a-f0-9]+: 0f 01 fc clzero +[ ]*[a-f0-9]+: 0f 01 fc clzero +[ ]*[a-f0-9]+: 67 0f 01 fc addr32 clzero [ ]*[a-f0-9]+: 44 0f 38 c8 00 sha1nexte \(%rax\),%xmm8 [ ]*[a-f0-9]+: 48 0f c7 21 xsavec64 \(%rcx\) [ ]*[a-f0-9]+: 48 0f c7 29 xsaves64 \(%rcx\) @@ -29,9 +29,9 @@ Disassembly of section .text: [ ]*[a-f0-9]+: 0f 01 fb mwaitx %eax,%ecx,%ebx [ ]*[a-f0-9]+:[ ]*66 0f ae 31[ ]*clwb \(%rcx\) [ ]*[a-f0-9]+:[ ]*66 42 0f ae b4 f0 23 01 00 00[ ]*clwb 0x123\(%rax,%r14,8\) -[ ]*[a-f0-9]+:[ ]*f3 0f 01 fa[ ]*mcommit[ ]* +[ ]*[a-f0-9]+:[ ]*f3 0f 01 fa[ ]*mcommit [ ]*[a-f0-9]+:[ ]*f3 0f c7 f8[ ]*rdpid %rax [ ]*[a-f0-9]+:[ ]*f3 41 0f c7 fa[ ]*rdpid %r10 -[ ]*[a-f0-9]+:[ ]*0f 01 fd[ ]*rdpru[ ]* -[ ]*[a-f0-9]+:[ ]*f3 0f 09[ ]*wbnoinvd[ ]* +[ ]*[a-f0-9]+:[ ]*0f 01 fd[ ]*rdpru +[ ]*[a-f0-9]+:[ ]*f3 0f 09[ ]*wbnoinvd #pass diff --git a/gas/testsuite/gas/i386/x86-64-arch-4.d b/gas/testsuite/gas/i386/x86-64-arch-4.d index f5373d5..465b777 100644 --- a/gas/testsuite/gas/i386/x86-64-arch-4.d +++ b/gas/testsuite/gas/i386/x86-64-arch-4.d @@ -6,8 +6,8 @@ Disassembly of section .text: 0+ <.text>: -[ ]*[0-9a-f]+:[ ]+0f 01 fe[ ]+invlpgb[ ]* -[ ]*[0-9a-f]+:[ ]+0f 01 ff[ ]+tlbsync[ ]* +[ ]*[0-9a-f]+:[ ]+0f 01 fe[ ]+invlpgb +[ ]*[0-9a-f]+:[ ]+0f 01 ff[ ]+tlbsync [ ]*[a-f0-9]+:[ ]*c4 43 35 44 d0 ab[ ]*vpclmulqdq \$0xab,%ymm8,%ymm9,%ymm10 [ ]*[a-f0-9]+:[ ]*c4 23 35 44 94 f0 24 01 00 00 7b[ ]*vpclmulqdq \$0x7b,0x124\(%rax,%r14,8\),%ymm9,%ymm10 [ ]*[a-f0-9]+:[ ]*c4 63 35 44 92 e0 0f 00 00 7b[ ]*vpclmulqdq \$0x7b,0xfe0\(%rdx\),%ymm9,%ymm10 @@ -23,11 +23,11 @@ Disassembly of section .text: [ ]*[a-f0-9]+: c4 e2 4d de 39[ ]+vaesdec \(%rcx\),%ymm6,%ymm7 [ ]*[a-f0-9]+: c4 e2 4d df d4[ ]+vaesdeclast %ymm4,%ymm6,%ymm2 [ ]*[a-f0-9]+: c4 e2 4d df 39[ ]+vaesdeclast \(%rcx\),%ymm6,%ymm7 -[ ]*[a-f0-9]+: f3 0f 01 ff[ ]+psmash[ ]* -[ ]*[a-f0-9]+: f2 0f 01 ff[ ]+pvalidate[ ]* -[ ]*[a-f0-9]+: f2 0f 01 fe[ ]+rmpupdate[ ]* -[ ]*[a-f0-9]+: f3 0f 01 fe[ ]+rmpadjust[ ]* +[ ]*[a-f0-9]+: f3 0f 01 ff[ ]+psmash +[ ]*[a-f0-9]+: f2 0f 01 ff[ ]+pvalidate +[ ]*[a-f0-9]+: f2 0f 01 fe[ ]+rmpupdate +[ ]*[a-f0-9]+: f3 0f 01 fe[ ]+rmpadjust [ ]*[a-f0-9]+: 66 0f 38 82 10[ ]+invpcid \(%rax\),%rdx -[ ]*[a-f0-9]+: 0f 01 ee[ ]+rdpkru[ ]* -[ ]*[a-f0-9]+: 0f 01 ef[ ]+wrpkru[ ]* +[ ]*[a-f0-9]+: 0f 01 ee[ ]+rdpkru +[ ]*[a-f0-9]+: 0f 01 ef[ ]+wrpkru #pass diff --git a/gas/testsuite/gas/i386/x86-64-avx-gather-intel.d b/gas/testsuite/gas/i386/x86-64-avx-gather-intel.d index 936338c..fd4e4f9 100644 --- a/gas/testsuite/gas/i386/x86-64-avx-gather-intel.d +++ b/gas/testsuite/gas/i386/x86-64-avx-gather-intel.d @@ -1,4 +1,4 @@ -#as: +#as: #objdump: -dwMintel #name: x86-64 AVX GATHER insns (Intel disassembly) #source: x86-64-avx-gather.s diff --git a/gas/testsuite/gas/i386/x86-64-avx-gather.d b/gas/testsuite/gas/i386/x86-64-avx-gather.d index 2298275..b4a2422 100644 --- a/gas/testsuite/gas/i386/x86-64-avx-gather.d +++ b/gas/testsuite/gas/i386/x86-64-avx-gather.d @@ -1,4 +1,4 @@ -#as: +#as: #objdump: -dw #name: x86-64 AVX GATHER insns diff --git a/gas/testsuite/gas/i386/x86-64-avx-intel.d b/gas/testsuite/gas/i386/x86-64-avx-intel.d index 7eb281e..dd7cbd6 100644 --- a/gas/testsuite/gas/i386/x86-64-avx-intel.d +++ b/gas/testsuite/gas/i386/x86-64-avx-intel.d @@ -7,8 +7,8 @@ Disassembly of section .text: 0+ <_start>: -[ ]*[a-f0-9]+: c5 fc 77 vzeroall -[ ]*[a-f0-9]+: c5 f8 77 vzeroupper +[ ]*[a-f0-9]+: c5 fc 77 vzeroall +[ ]*[a-f0-9]+: c5 f8 77 vzeroupper [ ]*[a-f0-9]+: c5 f8 ae 11 vldmxcsr DWORD PTR \[rcx\] [ ]*[a-f0-9]+: c5 f8 ae 19 vstmxcsr DWORD PTR \[rcx\] [ ]*[a-f0-9]+: c4 e2 5d 2d 31 vmaskmovpd ymm6,ymm4,YMMWORD PTR \[rcx\] diff --git a/gas/testsuite/gas/i386/x86-64-avx-wig.d b/gas/testsuite/gas/i386/x86-64-avx-wig.d index 2144746..2374822 100644 --- a/gas/testsuite/gas/i386/x86-64-avx-wig.d +++ b/gas/testsuite/gas/i386/x86-64-avx-wig.d @@ -271,6 +271,6 @@ Disassembly of section .text: +[a-f0-9]+: c4 e1 cc 14 d4 vunpcklps %ymm4,%ymm6,%ymm2 +[a-f0-9]+: c4 e1 cd 57 d4 vxorpd %ymm4,%ymm6,%ymm2 +[a-f0-9]+: c4 e1 cc 57 d4 vxorps %ymm4,%ymm6,%ymm2 - +[a-f0-9]+: c4 e1 fc 77 vzeroall - +[a-f0-9]+: c4 e1 f8 77 vzeroupper + +[a-f0-9]+: c4 e1 fc 77 vzeroall + +[a-f0-9]+: c4 e1 f8 77 vzeroupper #pass diff --git a/gas/testsuite/gas/i386/x86-64-avx.d b/gas/testsuite/gas/i386/x86-64-avx.d index 9721b00..336f879 100644 --- a/gas/testsuite/gas/i386/x86-64-avx.d +++ b/gas/testsuite/gas/i386/x86-64-avx.d @@ -6,8 +6,8 @@ Disassembly of section .text: 0+ <_start>: -[ ]*[a-f0-9]+: c5 fc 77 vzeroall -[ ]*[a-f0-9]+: c5 f8 77 vzeroupper +[ ]*[a-f0-9]+: c5 fc 77 vzeroall +[ ]*[a-f0-9]+: c5 f8 77 vzeroupper [ ]*[a-f0-9]+: c5 f8 ae 11 vldmxcsr \(%rcx\) [ ]*[a-f0-9]+: c5 f8 ae 19 vstmxcsr \(%rcx\) [ ]*[a-f0-9]+: c4 e2 5d 2d 31 vmaskmovpd \(%rcx\),%ymm4,%ymm6 diff --git a/gas/testsuite/gas/i386/x86-64-avx512f-nondef.d b/gas/testsuite/gas/i386/x86-64-avx512f-nondef.d index e8ddfd5..b274f62 100644 --- a/gas/testsuite/gas/i386/x86-64-avx512f-nondef.d +++ b/gas/testsuite/gas/i386/x86-64-avx512f-nondef.d @@ -1,4 +1,4 @@ -#as: +#as: #objdump: -dw #name: x86-64 AVX512F insns with nondefault values in ignored bits diff --git a/gas/testsuite/gas/i386/x86-64-bmi-intel.d b/gas/testsuite/gas/i386/x86-64-bmi-intel.d index 09cfa00..185a073 100644 --- a/gas/testsuite/gas/i386/x86-64-bmi-intel.d +++ b/gas/testsuite/gas/i386/x86-64-bmi-intel.d @@ -1,4 +1,4 @@ -#as: +#as: #objdump: -dwMintel #name: x86-64 BMI insns (Intel disassembly) #source: x86-64-bmi.s diff --git a/gas/testsuite/gas/i386/x86-64-bmi.d b/gas/testsuite/gas/i386/x86-64-bmi.d index 9b59d10..03de92f 100644 --- a/gas/testsuite/gas/i386/x86-64-bmi.d +++ b/gas/testsuite/gas/i386/x86-64-bmi.d @@ -1,4 +1,4 @@ -#as: +#as: #objdump: -dw #name: x86-64 BMI insns diff --git a/gas/testsuite/gas/i386/x86-64-bmi2-intel.d b/gas/testsuite/gas/i386/x86-64-bmi2-intel.d index b692c1d..da339c9 100644 --- a/gas/testsuite/gas/i386/x86-64-bmi2-intel.d +++ b/gas/testsuite/gas/i386/x86-64-bmi2-intel.d @@ -1,4 +1,4 @@ -#as: +#as: #objdump: -dwMintel #name: x86-64 BMI2 insns (Intel disassembly) #source: x86-64-bmi2.s diff --git a/gas/testsuite/gas/i386/x86-64-bmi2.d b/gas/testsuite/gas/i386/x86-64-bmi2.d index 0bcdb28..4f3c2f2 100644 --- a/gas/testsuite/gas/i386/x86-64-bmi2.d +++ b/gas/testsuite/gas/i386/x86-64-bmi2.d @@ -1,4 +1,4 @@ -#as: +#as: #objdump: -dw #name: x86-64 BMI2 insns diff --git a/gas/testsuite/gas/i386/x86-64-branch-2.d b/gas/testsuite/gas/i386/x86-64-branch-2.d index fab75a6..e1ec668 100644 --- a/gas/testsuite/gas/i386/x86-64-branch-2.d +++ b/gas/testsuite/gas/i386/x86-64-branch-2.d @@ -15,6 +15,6 @@ Disassembly of section .text: [ ]*[a-f0-9]+: 89 c3 mov %eax,%ebx [ ]*[a-f0-9]+: 66 e8 00 00 callw 11 <bar\+0x6> f: R_X86_64_PC16 foo-0x2 [ ]*[a-f0-9]+: 66 48 e8 00 00 00 00 data16 rex\.W call 18 <bar\+0xd> 14: R_X86_64_PLT32 foo-0x4 -[ ]*[a-f0-9]+: 66 c3 retw * +[ ]*[a-f0-9]+: 66 c3 retw [ ]*[a-f0-9]+: 66 c2 08 00 retw \$0x8 #pass diff --git a/gas/testsuite/gas/i386/x86-64-branch.d b/gas/testsuite/gas/i386/x86-64-branch.d index 02509d2..aee4bf83 100644 --- a/gas/testsuite/gas/i386/x86-64-branch.d +++ b/gas/testsuite/gas/i386/x86-64-branch.d @@ -22,7 +22,7 @@ Disassembly of section .text: [ ]*[a-f0-9]+: 66 e8 00 00 00 00 data16 call (0x2a|2a <.*>) [ ]*[a-f0-9]+: 66 e9 00 00 00 00 data16 jmp (0x30|30 <.*>) [ ]*[a-f0-9]+: 66 0f 82 00 00 00 00 data16 jb (0x37|37 <.*>) -[ ]*[a-f0-9]+: 66 c3 data16 ret * +[ ]*[a-f0-9]+: 66 c3 data16 ret [ ]*[a-f0-9]+: 66 c2 08 00 data16 ret \$0x8 [ ]*[a-f0-9]+: 3e 74 03[ ]+je,pt +[0-9a-fx]+ <.*> [ ]*[a-f0-9]+: 2e 74 00[ ]+je,pn +[0-9a-fx]+ <.*> @@ -39,6 +39,6 @@ Disassembly of section .text: [ ]*[a-f0-9]+: 66 ff 20 data16 jmp \*\(%rax\) [ ]*[a-f0-9]+: e8 .. 00 (00|10) 00 call [0-9a-fx]* <.*> [ ]*[a-f0-9]+: e9 .. 00 (00|10) 00 jmp [0-9a-fx]* <.*> -[ ]*[a-f0-9]+: 66 c3 data16 ret * +[ ]*[a-f0-9]+: 66 c3 data16 ret [ ]*[a-f0-9]+: 66 c2 08 00 data16 ret \$0x8 #pass diff --git a/gas/testsuite/gas/i386/x86-64-cbw-intel.d b/gas/testsuite/gas/i386/x86-64-cbw-intel.d index df4173a..82bef5d 100644 --- a/gas/testsuite/gas/i386/x86-64-cbw-intel.d +++ b/gas/testsuite/gas/i386/x86-64-cbw-intel.d @@ -7,18 +7,18 @@ Disassembly of section .text: 0+000 <_cbw>: - 0: 66 98 cbw - 2: 98 cwde - 3: 48 98 cdqe - 5: 66 40 98 rex cbw - 8: 40 98 rex cwde - a: 66 48 98 data16 cdqe + 0: 66 98 cbw + 2: 98 cwde + 3: 48 98 cdqe + 5: 66 40 98 rex cbw + 8: 40 98 rex cwde + a: 66 48 98 data16 cdqe 0+00d <_cwd>: - d: 66 99 cwd - f: 99 cdq - 10: 48 99 cqo - 12: 66 40 99 rex cwd - 15: 40 99 rex cdq - 17: 66 48 99 data16 cqo + d: 66 99 cwd + f: 99 cdq + 10: 48 99 cqo + 12: 66 40 99 rex cwd + 15: 40 99 rex cdq + 17: 66 48 99 data16 cqo #pass diff --git a/gas/testsuite/gas/i386/x86-64-cbw.d b/gas/testsuite/gas/i386/x86-64-cbw.d index 859ef9b..d16c647 100644 --- a/gas/testsuite/gas/i386/x86-64-cbw.d +++ b/gas/testsuite/gas/i386/x86-64-cbw.d @@ -6,18 +6,18 @@ Disassembly of section .text: 0+000 <_cbw>: - 0: 66 98 cbtw - 2: 98 cwtl - 3: 48 98 cltq - 5: 66 40 98 rex cbtw - 8: 40 98 rex cwtl - a: 66 48 98 data16 cltq + 0: 66 98 cbtw + 2: 98 cwtl + 3: 48 98 cltq + 5: 66 40 98 rex cbtw + 8: 40 98 rex cwtl + a: 66 48 98 data16 cltq 0+00d <_cwd>: - d: 66 99 cwtd - f: 99 cltd - 10: 48 99 cqto - 12: 66 40 99 rex cwtd - 15: 40 99 rex cltd - 17: 66 48 99 data16 cqto + d: 66 99 cwtd + f: 99 cltd + 10: 48 99 cqto + 12: 66 40 99 rex cwtd + 15: 40 99 rex cltd + 17: 66 48 99 data16 cqto #pass diff --git a/gas/testsuite/gas/i386/x86-64-cet-intel.d b/gas/testsuite/gas/i386/x86-64-cet-intel.d index 7b9a125..3f72c01 100644 --- a/gas/testsuite/gas/i386/x86-64-cet-intel.d +++ b/gas/testsuite/gas/i386/x86-64-cet-intel.d @@ -11,21 +11,21 @@ Disassembly of section .text: +[a-f0-9]+: f3 48 0f ae e8 incsspq rax +[a-f0-9]+: f3 41 0f 1e cc rdsspd r12d +[a-f0-9]+: f3 48 0f 1e c8 rdsspq rax - +[a-f0-9]+: f3 0f 01 ea saveprevssp + +[a-f0-9]+: f3 0f 01 ea saveprevssp +[a-f0-9]+: f3 41 0f 01 2c 24 rstorssp QWORD PTR \[r12\] +[a-f0-9]+: 41 0f 38 f6 04 24 wrssd \[r12\],eax +[a-f0-9]+: 4a 0f 38 f6 14 39 wrssq \[rcx\+r15\*1\],rdx +[a-f0-9]+: 66 41 0f 38 f5 04 24 wrussd \[r12\],eax +[a-f0-9]+: 66 48 0f 38 f5 0c 03 wrussq \[rbx\+rax\*1\],rcx - +[a-f0-9]+: f3 0f 01 e8 setssbsy + +[a-f0-9]+: f3 0f 01 e8 setssbsy +[a-f0-9]+: f3 42 0f ae 34 26 clrssbsy QWORD PTR \[rsi\+r12\*1\] - +[a-f0-9]+: f3 0f 1e fa endbr64 - +[a-f0-9]+: f3 0f 1e fb endbr32 + +[a-f0-9]+: f3 0f 1e fa endbr64 + +[a-f0-9]+: f3 0f 1e fb endbr32 +[a-f0-9]+: f3 41 0f ae ec incsspd r12d +[a-f0-9]+: f3 48 0f ae e8 incsspq rax +[a-f0-9]+: f3 41 0f 1e cc rdsspd r12d +[a-f0-9]+: f3 48 0f 1e c8 rdsspq rax - +[a-f0-9]+: f3 0f 01 ea saveprevssp + +[a-f0-9]+: f3 0f 01 ea saveprevssp +[a-f0-9]+: f3 41 0f 01 2c 24 rstorssp QWORD PTR \[r12\] +[a-f0-9]+: 41 0f 38 f6 04 24 wrssd \[r12\],eax +[a-f0-9]+: 44 0f 38 f6 20 wrssd \[rax\],r12d @@ -35,8 +35,8 @@ Disassembly of section .text: +[a-f0-9]+: 66 44 0f 38 f5 20 wrussd \[rax\],r12d +[a-f0-9]+: 66 48 0f 38 f5 0c 03 wrussq \[rbx\+rax\*1\],rcx +[a-f0-9]+: 66 48 0f 38 f5 1c 01 wrussq \[rcx\+rax\*1\],rbx - +[a-f0-9]+: f3 0f 01 e8 setssbsy + +[a-f0-9]+: f3 0f 01 e8 setssbsy +[a-f0-9]+: f3 42 0f ae 34 26 clrssbsy QWORD PTR \[rsi\+r12\*1\] - +[a-f0-9]+: f3 0f 1e fa endbr64 - +[a-f0-9]+: f3 0f 1e fb endbr32 + +[a-f0-9]+: f3 0f 1e fa endbr64 + +[a-f0-9]+: f3 0f 1e fb endbr32 #pass diff --git a/gas/testsuite/gas/i386/x86-64-cet.d b/gas/testsuite/gas/i386/x86-64-cet.d index 27749662..02424bf 100644 --- a/gas/testsuite/gas/i386/x86-64-cet.d +++ b/gas/testsuite/gas/i386/x86-64-cet.d @@ -10,21 +10,21 @@ Disassembly of section .text: +[a-f0-9]+: f3 48 0f ae e8 incsspq %rax +[a-f0-9]+: f3 41 0f 1e cc rdsspd %r12d +[a-f0-9]+: f3 48 0f 1e c8 rdsspq %rax - +[a-f0-9]+: f3 0f 01 ea saveprevssp + +[a-f0-9]+: f3 0f 01 ea saveprevssp +[a-f0-9]+: f3 41 0f 01 2c 24 rstorssp \(%r12\) +[a-f0-9]+: 41 0f 38 f6 04 24 wrssd %eax,\(%r12\) +[a-f0-9]+: 4a 0f 38 f6 14 39 wrssq %rdx,\(%rcx,%r15,1\) +[a-f0-9]+: 66 41 0f 38 f5 04 24 wrussd %eax,\(%r12\) +[a-f0-9]+: 66 48 0f 38 f5 0c 03 wrussq %rcx,\(%rbx,%rax,1\) - +[a-f0-9]+: f3 0f 01 e8 setssbsy + +[a-f0-9]+: f3 0f 01 e8 setssbsy +[a-f0-9]+: f3 42 0f ae 34 26 clrssbsy \(%rsi,%r12,1\) - +[a-f0-9]+: f3 0f 1e fa endbr64 - +[a-f0-9]+: f3 0f 1e fb endbr32 + +[a-f0-9]+: f3 0f 1e fa endbr64 + +[a-f0-9]+: f3 0f 1e fb endbr32 +[a-f0-9]+: f3 41 0f ae ec incsspd %r12d +[a-f0-9]+: f3 48 0f ae e8 incsspq %rax +[a-f0-9]+: f3 41 0f 1e cc rdsspd %r12d +[a-f0-9]+: f3 48 0f 1e c8 rdsspq %rax - +[a-f0-9]+: f3 0f 01 ea saveprevssp + +[a-f0-9]+: f3 0f 01 ea saveprevssp +[a-f0-9]+: f3 41 0f 01 2c 24 rstorssp \(%r12\) +[a-f0-9]+: 41 0f 38 f6 04 24 wrssd %eax,\(%r12\) +[a-f0-9]+: 44 0f 38 f6 20 wrssd %r12d,\(%rax\) @@ -34,8 +34,8 @@ Disassembly of section .text: +[a-f0-9]+: 66 44 0f 38 f5 20 wrussd %r12d,\(%rax\) +[a-f0-9]+: 66 48 0f 38 f5 0c 03 wrussq %rcx,\(%rbx,%rax,1\) +[a-f0-9]+: 66 48 0f 38 f5 1c 01 wrussq %rbx,\(%rcx,%rax,1\) - +[a-f0-9]+: f3 0f 01 e8 setssbsy + +[a-f0-9]+: f3 0f 01 e8 setssbsy +[a-f0-9]+: f3 42 0f ae 34 26 clrssbsy \(%rsi,%r12,1\) - +[a-f0-9]+: f3 0f 1e fa endbr64 - +[a-f0-9]+: f3 0f 1e fb endbr32 + +[a-f0-9]+: f3 0f 1e fa endbr64 + +[a-f0-9]+: f3 0f 1e fb endbr32 #pass diff --git a/gas/testsuite/gas/i386/x86-64-clzero.d b/gas/testsuite/gas/i386/x86-64-clzero.d index 9c0d35f..a36bcfc 100644 --- a/gas/testsuite/gas/i386/x86-64-clzero.d +++ b/gas/testsuite/gas/i386/x86-64-clzero.d @@ -8,5 +8,5 @@ Disassembly of section \.text: 0+ <_start>: -[ ]*[a-f0-9]+: 0f 01 fc clzero +[ ]*[a-f0-9]+: 0f 01 fc clzero #pass diff --git a/gas/testsuite/gas/i386/x86-64-disassem.d b/gas/testsuite/gas/i386/x86-64-disassem.d index a9706b8..7c67fd4 100644 --- a/gas/testsuite/gas/i386/x86-64-disassem.d +++ b/gas/testsuite/gas/i386/x86-64-disassem.d @@ -7,348 +7,348 @@ Disassembly of section \.text: 0+ <\.text>: -[ ]*[a-f0-9]+:[ ]*ff[ ]*\(bad\) +[ ]*[a-f0-9]+:[ ]*ff[ ]*\(bad\) [ ]*[a-f0-9]+:[ ]*ef[ ]*out %eax,\(%dx\) -[ ]*[a-f0-9]+:[ ]*ff[ ]*\(bad\) +[ ]*[a-f0-9]+:[ ]*ff[ ]*\(bad\) [ ]*[a-f0-9]+:[ ]*d8 90 90 90 90 90[ ]*fcoms -0x6f6f6f70\(%rax\) -[ ]*[a-f0-9]+:[ ]*c5 ec 4a[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*c5 ec 4a[ ]*\(bad\) [ ]*[a-f0-9]+:[ ]*9b[ ]*fwait -[ ]*[a-f0-9]+:[ ]*c5 ec 4a[ ]*\(bad\)[ ]* +[ ]*[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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*c4 e1 f9 99[ ]*\(bad\) +[ ]*[a-f0-9]+:[ ]*3f[ ]*\(bad\) +[ ]*[a-f0-9]+:[ ]*c4 e3 f9 30[ ]*\(bad\) [ ]*[a-f0-9]+:[ ]*8f 01[ ]*pop \(%rcx\) -[ ]*[a-f0-9]+:[ ]*c4 e3 f9 30[ ]*\(bad\)[ ]* +[ ]*[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]+:[ ]*c4 e3 f9 30[ ]*\(bad\) [ ]*[a-f0-9]+:[ ]*04 01[ ]*add \$0x1,%al -[ ]*[a-f0-9]+:[ ]*c4 e3 79 30[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*c4 e3 79 30[ ]*\(bad\) [ ]*[a-f0-9]+:[ ]*8f 01[ ]*pop \(%rcx\) -[ ]*[a-f0-9]+:[ ]*c4 e3 79 30[ ]*\(bad\)[ ]* +[ ]*[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]+:[ ]*c4 e3 79 30[ ]*\(bad\) [ ]*[a-f0-9]+:[ ]*04 01[ ]*add \$0x1,%al -[ ]*[a-f0-9]+:[ ]*c4 e3 f9 31[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*c4 e3 f9 31[ ]*\(bad\) [ ]*[a-f0-9]+:[ ]*8f 01[ ]*pop \(%rcx\) -[ ]*[a-f0-9]+:[ ]*c4 e3 f9 31[ ]*\(bad\)[ ]* +[ ]*[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]+:[ ]*c4 e3 f9 31[ ]*\(bad\) [ ]*[a-f0-9]+:[ ]*04 01[ ]*add \$0x1,%al -[ ]*[a-f0-9]+:[ ]*c4 e3 79 31[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*c4 e3 79 31[ ]*\(bad\) [ ]*[a-f0-9]+:[ ]*8f 01[ ]*pop \(%rcx\) -[ ]*[a-f0-9]+:[ ]*c4 e3 79 31[ ]*\(bad\)[ ]* +[ ]*[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]+:[ ]*c4 e3 79 31[ ]*\(bad\) [ ]*[a-f0-9]+:[ ]*04 01[ ]*add \$0x1,%al -[ ]*[a-f0-9]+:[ ]*c4 e3 f9 32[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*c4 e3 f9 32[ ]*\(bad\) [ ]*[a-f0-9]+:[ ]*8f 01[ ]*pop \(%rcx\) -[ ]*[a-f0-9]+:[ ]*c4 e3 f9 32[ ]*\(bad\)[ ]* +[ ]*[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]+:[ ]*c4 e3 f9 32[ ]*\(bad\) [ ]*[a-f0-9]+:[ ]*04 01[ ]*add \$0x1,%al -[ ]*[a-f0-9]+:[ ]*c4 e3 79 32[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*c4 e3 79 32[ ]*\(bad\) [ ]*[a-f0-9]+:[ ]*8f 01[ ]*pop \(%rcx\) -[ ]*[a-f0-9]+:[ ]*c4 e3 79 32[ ]*\(bad\)[ ]* +[ ]*[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]+:[ ]*c4 e3 79 32[ ]*\(bad\) [ ]*[a-f0-9]+:[ ]*04 01[ ]*add \$0x1,%al -[ ]*[a-f0-9]+:[ ]*c4 e3 f9 33[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*c4 e3 f9 33[ ]*\(bad\) [ ]*[a-f0-9]+:[ ]*8f 01[ ]*pop \(%rcx\) -[ ]*[a-f0-9]+:[ ]*c4 e3 f9 33[ ]*\(bad\)[ ]* +[ ]*[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]+:[ ]*c4 e3 f9 33[ ]*\(bad\) [ ]*[a-f0-9]+:[ ]*04 01[ ]*add \$0x1,%al -[ ]*[a-f0-9]+:[ ]*c4 e3 79 33[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*c4 e3 79 33[ ]*\(bad\) [ ]*[a-f0-9]+:[ ]*8f 01[ ]*pop \(%rcx\) -[ ]*[a-f0-9]+:[ ]*c4 e3 79 33[ ]*\(bad\)[ ]* +[ ]*[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]+:[ ]*c4 e3 79 33[ ]*\(bad\) [ ]*[a-f0-9]+:[ ]*04 01[ ]*add \$0x1,%al -[ ]*[a-f0-9]+:[ ]*c5 f8 92[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*c5 f8 92[ ]*\(bad\) [ ]*[a-f0-9]+:[ ]*9b[ ]*fwait -[ ]*[a-f0-9]+:[ ]*c5 f8 92[ ]*\(bad\)[ ]* +[ ]*[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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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]+:[ ]*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\)[ ]* -[ ]*[a-f0-9]+:[ ]*c4 62 01 1c[ ]*\(bad\)[ ]* -[ ]*[a-f0-9]+:[ ]*41 37[ ]*rex.B \(bad\)[ ]* -[ ]*[a-f0-9]+:[ ]*62 72 ad 08 1c[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*c4 e1 f9 93[ ]*\(bad\) +[ ]*[a-f0-9]+:[ ]*3f[ ]*\(bad\) +[ ]*[a-f0-9]+:[ ]*c4 62 01 1c[ ]*\(bad\) +[ ]*[a-f0-9]+:[ ]*41 37[ ]*rex.B \(bad\) +[ ]*[a-f0-9]+:[ ]*62 72 ad 08 1c[ ]*\(bad\) [ ]*[a-f0-9]+:[ ]*01 01[ ]*add[ ]*%eax,\(%rcx\) -[ ]*[a-f0-9]+:[ ]*62 f3 7d 28 1b[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*62 f3 7d 28 1b[ ]*\(bad\) [ ]*[a-f0-9]+:[ ]*c8 25 62 f3[ ]*enter *\$0x6225,\$0xf3 -[ ]*[a-f0-9]+:[ ]*62 f3 75 08 23[ ]*\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*62 f3 75 08 23[ ]*\(bad\) [ ]*[a-f0-9]+:[ ]*c2 25 62[ ]*ret *\$0x6225 -[ ]*[a-f0-9]+:[ ]*62 f2 7d 28 5b[ ]*\(bad\)[ ]* -[ ]*[a-f0-9]+:[ ]*41 37[ ]*rex.B \(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]*62 f2 7d 28 5b[ ]*\(bad\) +[ ]*[a-f0-9]+:[ ]*41 37[ ]*rex.B \(bad\) #pass diff --git a/gas/testsuite/gas/i386/x86-64-fence-as-lock-add-no.d b/gas/testsuite/gas/i386/x86-64-fence-as-lock-add-no.d index 9277448..e7cae60 100644 --- a/gas/testsuite/gas/i386/x86-64-fence-as-lock-add-no.d +++ b/gas/testsuite/gas/i386/x86-64-fence-as-lock-add-no.d @@ -8,7 +8,7 @@ Disassembly of section .text: 0+ <main>: -[ ]*[a-f0-9]+: 0f ae e8[ ]* lfence -[ ]*[a-f0-9]+: 0f ae f0[ ]* mfence -[ ]*[a-f0-9]+: 0f ae f8[ ]* sfence +[ ]*[a-f0-9]+: 0f ae e8[ ]* lfence +[ ]*[a-f0-9]+: 0f ae f0[ ]* mfence +[ ]*[a-f0-9]+: 0f ae f8[ ]* sfence #pass diff --git a/gas/testsuite/gas/i386/x86-64-ifunc.d b/gas/testsuite/gas/i386/x86-64-ifunc.d index 39e3ddf..bf81bd1 100644 --- a/gas/testsuite/gas/i386/x86-64-ifunc.d +++ b/gas/testsuite/gas/i386/x86-64-ifunc.d @@ -10,11 +10,11 @@ Disassembly of section .text: [ ]*[a-f0-9]+: e9 00 00 00 00 jmp 5 <ifunc> 1: R_X86_64_PLT32 ifunc(\+0xf+c|-0x4) 0+5 <ifunc>: -[ ]*[a-f0-9]+: c3 ret * +[ ]*[a-f0-9]+: c3 ret 0+6 <bar>: [ ]*[a-f0-9]+: eb 00 jmp 8 <normal> 0+8 <normal>: -[ ]*[a-f0-9]+: c3 ret * +[ ]*[a-f0-9]+: c3 ret #pass diff --git a/gas/testsuite/gas/i386/x86-64-intel64.d b/gas/testsuite/gas/i386/x86-64-intel64.d index 496e2e5..a55de66 100644 --- a/gas/testsuite/gas/i386/x86-64-intel64.d +++ b/gas/testsuite/gas/i386/x86-64-intel64.d @@ -14,9 +14,9 @@ Disassembly of section .text: [ ]*[a-f0-9]+: 48 0f b2 1a lss \(%rdx\),%rbx [ ]*[a-f0-9]+: 48 ff 18 rex\.W lcall \*\(%rax\) [ ]*[a-f0-9]+: 48 ff 29 rex\.W ljmp \*\(%rcx\) -[ ]*[a-f0-9]+: 0f 05 syscall -[ ]*[a-f0-9]+: 0f 07 sysretl -[ ]*[a-f0-9]+: 48 0f 07 sysretq * +[ ]*[a-f0-9]+: 0f 05 syscall +[ ]*[a-f0-9]+: 0f 07 sysretl +[ ]*[a-f0-9]+: 48 0f 07 sysretq [ ]*[a-f0-9]+: 48 0f b4 01 lfs \(%rcx\),%rax [ ]*[a-f0-9]+: 48 0f b4 01 lfs \(%rcx\),%rax [ ]*[a-f0-9]+: 48 0f b5 0a lgs \(%rdx\),%rcx diff --git a/gas/testsuite/gas/i386/x86-64-invpcid-intel.d b/gas/testsuite/gas/i386/x86-64-invpcid-intel.d index 94a78617..ab17a1b 100644 --- a/gas/testsuite/gas/i386/x86-64-invpcid-intel.d +++ b/gas/testsuite/gas/i386/x86-64-invpcid-intel.d @@ -1,4 +1,4 @@ -#as: +#as: #objdump: -dwMintel #name: x86-64 INVPCID insns (Intel disassembly) #source: x86-64-invpcid.s diff --git a/gas/testsuite/gas/i386/x86-64-invpcid.d b/gas/testsuite/gas/i386/x86-64-invpcid.d index 7a3101a..8089895 100644 --- a/gas/testsuite/gas/i386/x86-64-invpcid.d +++ b/gas/testsuite/gas/i386/x86-64-invpcid.d @@ -1,4 +1,4 @@ -#as: +#as: #objdump: -dw #name: x86-64 INVPCID insns diff --git a/gas/testsuite/gas/i386/x86-64-lfence-byte.d b/gas/testsuite/gas/i386/x86-64-lfence-byte.d index e84d746..ddc6423 100644 --- a/gas/testsuite/gas/i386/x86-64-lfence-byte.d +++ b/gas/testsuite/gas/i386/x86-64-lfence-byte.d @@ -11,20 +11,20 @@ Disassembly of section .text: 0+ <_start>: +[a-f0-9]+: f3 aa rep stos %al,%es:\(%rdi\) +[a-f0-9]+: 48 83 0c 24 00 orq \$0x0,\(%rsp\) - +[a-f0-9]+: 0f ae e8 lfence - +[a-f0-9]+: f3 c3 repz ret * - +[a-f0-9]+: f3 c3 repz ret * - +[a-f0-9]+: f3 c3 repz ret * - +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: f3 c3 repz ret + +[a-f0-9]+: f3 c3 repz ret + +[a-f0-9]+: f3 c3 repz ret + +[a-f0-9]+: 0f ae e8 lfence +[a-f0-9]+: ff d0 call \*%rax - +[a-f0-9]+: f3 c3 repz ret * - +[a-f0-9]+: 66 66 c3 data16 retw - +[a-f0-9]+: f3 c3 repz ret * + +[a-f0-9]+: f3 c3 repz ret + +[a-f0-9]+: 66 66 c3 data16 retw + +[a-f0-9]+: f3 c3 repz ret +[a-f0-9]+: 9b fwait +[a-f0-9]+: 48 83 0c 24 00 orq \$0x0,\(%rsp\) - +[a-f0-9]+: 0f ae e8 lfence - +[a-f0-9]+: f3 c3 repz ret * - +[a-f0-9]+: f3 c3 repz ret * - +[a-f0-9]+: c3 ret * + +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: f3 c3 repz ret + +[a-f0-9]+: f3 c3 repz ret + +[a-f0-9]+: c3 ret +[a-f0-9]+: f3 ff d0 repz call \*%rax #pass diff --git a/gas/testsuite/gas/i386/x86-64-lfence-indbr-a.d b/gas/testsuite/gas/i386/x86-64-lfence-indbr-a.d index 7910f60..729214a 100644 --- a/gas/testsuite/gas/i386/x86-64-lfence-indbr-a.d +++ b/gas/testsuite/gas/i386/x86-64-lfence-indbr-a.d @@ -10,9 +10,9 @@ Disassembly of section .text: 0+ <_start>: - +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: 0f ae e8 lfence +[a-f0-9]+: ff d2 call \*%rdx - +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: 0f ae e8 lfence +[a-f0-9]+: ff e2 jmp \*%rdx +[a-f0-9]+: ff 12 call \*\(%rdx\) +[a-f0-9]+: ff 22 jmp \*\(%rdx\) diff --git a/gas/testsuite/gas/i386/x86-64-lfence-indbr-b.d b/gas/testsuite/gas/i386/x86-64-lfence-indbr-b.d index 5ffdda2..2d3b273 100644 --- a/gas/testsuite/gas/i386/x86-64-lfence-indbr-b.d +++ b/gas/testsuite/gas/i386/x86-64-lfence-indbr-b.d @@ -9,9 +9,9 @@ Disassembly of section .text: 0+ <_start>: - +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: 0f ae e8 lfence +[a-f0-9]+: ff d2 call \*%rdx - +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: 0f ae e8 lfence +[a-f0-9]+: ff e2 jmp \*%rdx +[a-f0-9]+: ff 12 call \*\(%rdx\) +[a-f0-9]+: ff 22 jmp \*\(%rdx\) diff --git a/gas/testsuite/gas/i386/x86-64-lfence-load.d b/gas/testsuite/gas/i386/x86-64-lfence-load.d index 714df8c..2af86fc 100644 --- a/gas/testsuite/gas/i386/x86-64-lfence-load.d +++ b/gas/testsuite/gas/i386/x86-64-lfence-load.d @@ -10,14 +10,14 @@ Disassembly of section .text: 0+ <_start>: +[a-f0-9]+: c5 f8 ae 55 00 vldmxcsr 0x0\(%rbp\) - +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: 0f ae e8 lfence +[a-f0-9]+: 0f 01 55 00 lgdt 0x0\(%rbp\) - +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: 0f ae e8 lfence +[a-f0-9]+: 0f c7 75 00 vmptrld 0x0\(%rbp\) - +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: 0f ae e8 lfence +[a-f0-9]+: 66 0f c7 75 00 vmclear 0x0\(%rbp\) +[a-f0-9]+: 66 0f 38 82 55 00 invpcid 0x0\(%rbp\),%rdx - +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: 0f ae e8 lfence +[a-f0-9]+: 67 0f 01 38 invlpg \(%eax\) +[a-f0-9]+: 0f ae 7d 00 clflush 0x0\(%rbp\) +[a-f0-9]+: 66 0f ae 7d 00 clflushopt 0x0\(%rbp\) @@ -34,105 +34,105 @@ Disassembly of section .text: +[a-f0-9]+: 0f 18 5d 00 prefetcht2 0x0\(%rbp\) +[a-f0-9]+: 0f 0d 4d 00 prefetchw 0x0\(%rbp\) +[a-f0-9]+: 0f a1 pop %fs - +[a-f0-9]+: 0f ae e8 lfence - +[a-f0-9]+: 9d popf * - +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: 9d popf + +[a-f0-9]+: 0f ae e8 lfence +[a-f0-9]+: d7 xlat %ds:\(%rbx\) - +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: 0f ae e8 lfence +[a-f0-9]+: d9 55 00 fsts 0x0\(%rbp\) +[a-f0-9]+: d9 45 00 flds 0x0\(%rbp\) - +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: 0f ae e8 lfence +[a-f0-9]+: db 55 00 fistl 0x0\(%rbp\) +[a-f0-9]+: df 55 00 fists 0x0\(%rbp\) +[a-f0-9]+: db 45 00 fildl 0x0\(%rbp\) - +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: 0f ae e8 lfence +[a-f0-9]+: df 45 00 filds 0x0\(%rbp\) - +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: 0f ae e8 lfence +[a-f0-9]+: 9b dd 75 00 fsave 0x0\(%rbp\) +[a-f0-9]+: dd 65 00 frstor 0x0\(%rbp\) - +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: 0f ae e8 lfence +[a-f0-9]+: df 45 00 filds 0x0\(%rbp\) - +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: 0f ae e8 lfence +[a-f0-9]+: df 4d 00 fisttps 0x0\(%rbp\) +[a-f0-9]+: d9 65 00 fldenv 0x0\(%rbp\) - +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: 0f ae e8 lfence +[a-f0-9]+: 9b d9 75 00 fstenv 0x0\(%rbp\) +[a-f0-9]+: d8 45 00 fadds 0x0\(%rbp\) - +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: 0f ae e8 lfence +[a-f0-9]+: d8 04 24 fadds \(%rsp\) - +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: 0f ae e8 lfence +[a-f0-9]+: d8 c3 fadd %st\(3\),%st +[a-f0-9]+: d8 01 fadds \(%rcx\) - +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: 0f ae e8 lfence +[a-f0-9]+: df 01 filds \(%rcx\) - +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: 0f ae e8 lfence +[a-f0-9]+: df 11 fists \(%rcx\) +[a-f0-9]+: 0f ae 29 xrstor \(%rcx\) - +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: 0f ae e8 lfence +[a-f0-9]+: 0f 18 01 prefetchnta \(%rcx\) +[a-f0-9]+: 0f c7 09 cmpxchg8b \(%rcx\) - +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: 0f ae e8 lfence +[a-f0-9]+: 48 0f c7 09 cmpxchg16b \(%rcx\) - +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: 0f ae e8 lfence +[a-f0-9]+: ff c1 inc %ecx +[a-f0-9]+: 0f 01 10 lgdt \(%rax\) - +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: 0f ae e8 lfence +[a-f0-9]+: 0f 0f 66 02 b0 pfcmpeq 0x2\(%rsi\),%mm4 - +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: 0f ae e8 lfence +[a-f0-9]+: 8f 00 pop \(%rax\) - +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: 0f ae e8 lfence +[a-f0-9]+: 58 pop %rax - +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: 0f ae e8 lfence +[a-f0-9]+: 66 d1 11 rclw \(%rcx\) - +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: 0f ae e8 lfence +[a-f0-9]+: f7 01 01 00 00 00 testl \$0x1,\(%rcx\) - +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: 0f ae e8 lfence +[a-f0-9]+: ff 01 incl \(%rcx\) - +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: 0f ae e8 lfence +[a-f0-9]+: f7 11 notl \(%rcx\) - +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: 0f ae e8 lfence +[a-f0-9]+: f7 31 divl \(%rcx\) - +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: 0f ae e8 lfence +[a-f0-9]+: f7 21 mull \(%rcx\) - +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: 0f ae e8 lfence +[a-f0-9]+: f7 39 idivl \(%rcx\) - +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: 0f ae e8 lfence +[a-f0-9]+: f7 29 imull \(%rcx\) - +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: 0f ae e8 lfence +[a-f0-9]+: 48 8d 04 40 lea \(%rax,%rax,2\),%rax - +[a-f0-9]+: c9 leave * + +[a-f0-9]+: c9 leave +[a-f0-9]+: 6e outsb %ds:\(%rsi\),\(%dx\) - +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: 0f ae e8 lfence +[a-f0-9]+: ac lods %ds:\(%rsi\),%al - +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: 0f ae e8 lfence +[a-f0-9]+: f3 a5 rep movsl %ds:\(%rsi\),%es:\(%rdi\) - +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: 0f ae e8 lfence +[a-f0-9]+: f3 af repz scas %es:\(%rdi\),%eax - +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: 0f ae e8 lfence +[a-f0-9]+: f3 a7 repz cmpsl %es:\(%rdi\),%ds:\(%rsi\) - +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: 0f ae e8 lfence +[a-f0-9]+: f3 ad rep lods %ds:\(%rsi\),%eax - +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: 0f ae e8 lfence +[a-f0-9]+: 41 83 03 01 addl \$0x1,\(%r11\) - +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: 0f ae e8 lfence +[a-f0-9]+: 41 0f ba 23 01 btl \$0x1,\(%r11\) - +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: 0f ae e8 lfence +[a-f0-9]+: 48 0f c1 03 xadd %rax,\(%rbx\) - +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: 0f ae e8 lfence +[a-f0-9]+: 48 0f c1 c3 xadd %rax,%rbx +[a-f0-9]+: 48 87 03 xchg %rax,\(%rbx\) - +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: 0f ae e8 lfence +[a-f0-9]+: 48 93 xchg %rax,%rbx +[a-f0-9]+: 48 39 45 40 cmp %rax,0x40\(%rbp\) - +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: 0f ae e8 lfence +[a-f0-9]+: 48 3b 45 40 cmp 0x40\(%rbp\),%rax - +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: 0f ae e8 lfence +[a-f0-9]+: 48 01 45 40 add %rax,0x40\(%rbp\) - +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: 0f ae e8 lfence +[a-f0-9]+: 48 03 00 add \(%rax\),%rax - +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: 0f ae e8 lfence +[a-f0-9]+: 48 85 45 40 test %rax,0x40\(%rbp\) - +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: 0f ae e8 lfence +[a-f0-9]+: 48 85 45 40 test %rax,0x40\(%rbp\) - +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: 0f ae e8 lfence #pass diff --git a/gas/testsuite/gas/i386/x86-64-lfence-ret-a.d b/gas/testsuite/gas/i386/x86-64-lfence-ret-a.d index b74b59c..352de3b 100644 --- a/gas/testsuite/gas/i386/x86-64-lfence-ret-a.d +++ b/gas/testsuite/gas/i386/x86-64-lfence-ret-a.d @@ -10,21 +10,21 @@ Disassembly of section .text: 0+ <_start>: +[a-f0-9]+: 48 83 0c 24 00 orq \$0x0,\(%rsp\) - +[a-f0-9]+: 0f ae e8 lfence - +[a-f0-9]+: 66 c3 data16 ret * + +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: 66 c3 data16 ret +[a-f0-9]+: 48 83 0c 24 00 orq \$0x0,\(%rsp\) - +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: 0f ae e8 lfence +[a-f0-9]+: 66 c2 14 00 data16 ret \$0x14 +[a-f0-9]+: 48 83 0c 24 00 orq \$0x0,\(%rsp\) - +[a-f0-9]+: 0f ae e8 lfence - +[a-f0-9]+: c3 ret * + +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: c3 ret +[a-f0-9]+: 48 83 0c 24 00 orq \$0x0,\(%rsp\) - +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: 0f ae e8 lfence +[a-f0-9]+: c2 1e 00 ret \$0x1e +[a-f0-9]+: 48 83 0c 24 00 orq \$0x0,\(%rsp\) - +[a-f0-9]+: 0f ae e8 lfence - +[a-f0-9]+: 66 48 c3 data16 rex\.W ret * + +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: 66 48 c3 data16 rex\.W ret +[a-f0-9]+: 48 83 0c 24 00 orq \$0x0,\(%rsp\) - +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: 0f ae e8 lfence +[a-f0-9]+: 66 48 c2 28 00 data16 rex\.W ret \$0x28 #pass diff --git a/gas/testsuite/gas/i386/x86-64-lfence-ret-b.d b/gas/testsuite/gas/i386/x86-64-lfence-ret-b.d index 1aecd38..2e4f781 100644 --- a/gas/testsuite/gas/i386/x86-64-lfence-ret-b.d +++ b/gas/testsuite/gas/i386/x86-64-lfence-ret-b.d @@ -11,26 +11,26 @@ Disassembly of section .text: 0+ <_start>: +[a-f0-9]+: 48 f7 14 24 notq \(%rsp\) +[a-f0-9]+: 48 f7 14 24 notq \(%rsp\) - +[a-f0-9]+: 0f ae e8 lfence - +[a-f0-9]+: 66 c3 data16 ret * + +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: 66 c3 data16 ret +[a-f0-9]+: 48 f7 14 24 notq \(%rsp\) +[a-f0-9]+: 48 f7 14 24 notq \(%rsp\) - +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: 0f ae e8 lfence +[a-f0-9]+: 66 c2 14 00 data16 ret \$0x14 +[a-f0-9]+: 48 f7 14 24 notq \(%rsp\) +[a-f0-9]+: 48 f7 14 24 notq \(%rsp\) - +[a-f0-9]+: 0f ae e8 lfence - +[a-f0-9]+: c3 ret * + +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: c3 ret +[a-f0-9]+: 48 f7 14 24 notq \(%rsp\) +[a-f0-9]+: 48 f7 14 24 notq \(%rsp\) - +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: 0f ae e8 lfence +[a-f0-9]+: c2 1e 00 ret \$0x1e +[a-f0-9]+: 48 f7 14 24 notq \(%rsp\) +[a-f0-9]+: 48 f7 14 24 notq \(%rsp\) - +[a-f0-9]+: 0f ae e8 lfence - +[a-f0-9]+: 66 48 c3 data16 rex\.W ret * + +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: 66 48 c3 data16 rex\.W ret +[a-f0-9]+: 48 f7 14 24 notq \(%rsp\) +[a-f0-9]+: 48 f7 14 24 notq \(%rsp\) - +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: 0f ae e8 lfence +[a-f0-9]+: 66 48 c2 28 00 data16 rex\.W ret \$0x28 #pass diff --git a/gas/testsuite/gas/i386/x86-64-lfence-ret-c.d b/gas/testsuite/gas/i386/x86-64-lfence-ret-c.d index ca8f2c0..35d8b80 100644 --- a/gas/testsuite/gas/i386/x86-64-lfence-ret-c.d +++ b/gas/testsuite/gas/i386/x86-64-lfence-ret-c.d @@ -9,21 +9,21 @@ Disassembly of section .text: 0+ <_start>: +[a-f0-9]+: 48 83 0c 24 00 orq \$0x0,\(%rsp\) - +[a-f0-9]+: 0f ae e8 lfence - +[a-f0-9]+: 66 c3 data16 ret * + +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: 66 c3 data16 ret +[a-f0-9]+: 48 83 0c 24 00 orq \$0x0,\(%rsp\) - +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: 0f ae e8 lfence +[a-f0-9]+: 66 c2 14 00 data16 ret \$0x14 +[a-f0-9]+: 48 83 0c 24 00 orq \$0x0,\(%rsp\) - +[a-f0-9]+: 0f ae e8 lfence - +[a-f0-9]+: c3 ret * + +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: c3 ret +[a-f0-9]+: 48 83 0c 24 00 orq \$0x0,\(%rsp\) - +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: 0f ae e8 lfence +[a-f0-9]+: c2 1e 00 ret \$0x1e +[a-f0-9]+: 48 83 0c 24 00 orq \$0x0,\(%rsp\) - +[a-f0-9]+: 0f ae e8 lfence - +[a-f0-9]+: 66 48 c3 data16 rex\.W ret * + +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: 66 48 c3 data16 rex\.W ret +[a-f0-9]+: 48 83 0c 24 00 orq \$0x0,\(%rsp\) - +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: 0f ae e8 lfence +[a-f0-9]+: 66 48 c2 28 00 data16 rex\.W ret \$0x28 #pass diff --git a/gas/testsuite/gas/i386/x86-64-lfence-ret-d.d b/gas/testsuite/gas/i386/x86-64-lfence-ret-d.d index 94a18b8..10be59d 100644 --- a/gas/testsuite/gas/i386/x86-64-lfence-ret-d.d +++ b/gas/testsuite/gas/i386/x86-64-lfence-ret-d.d @@ -10,21 +10,21 @@ Disassembly of section .text: 0+ <_start>: +[a-f0-9]+: 48 c1 24 24 00 shlq \$0x0,\(%rsp\) - +[a-f0-9]+: 0f ae e8 lfence - +[a-f0-9]+: 66 c3 data16 ret * + +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: 66 c3 data16 ret +[a-f0-9]+: 48 c1 24 24 00 shlq \$0x0,\(%rsp\) - +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: 0f ae e8 lfence +[a-f0-9]+: 66 c2 14 00 data16 ret \$0x14 +[a-f0-9]+: 48 c1 24 24 00 shlq \$0x0,\(%rsp\) - +[a-f0-9]+: 0f ae e8 lfence - +[a-f0-9]+: c3 ret * + +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: c3 ret +[a-f0-9]+: 48 c1 24 24 00 shlq \$0x0,\(%rsp\) - +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: 0f ae e8 lfence +[a-f0-9]+: c2 1e 00 ret \$0x1e +[a-f0-9]+: 48 c1 24 24 00 shlq \$0x0,\(%rsp\) - +[a-f0-9]+: 0f ae e8 lfence - +[a-f0-9]+: 66 48 c3 data16 rex\.W ret * + +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: 66 48 c3 data16 rex\.W ret +[a-f0-9]+: 48 c1 24 24 00 shlq \$0x0,\(%rsp\) - +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: 0f ae e8 lfence +[a-f0-9]+: 66 48 c2 28 00 data16 rex\.W ret \$0x28 #pass diff --git a/gas/testsuite/gas/i386/x86-64-lfence-ret-e.d b/gas/testsuite/gas/i386/x86-64-lfence-ret-e.d index e52e35c..ba8d9c9 100644 --- a/gas/testsuite/gas/i386/x86-64-lfence-ret-e.d +++ b/gas/testsuite/gas/i386/x86-64-lfence-ret-e.d @@ -10,21 +10,21 @@ Disassembly of section .text: 0+ <_start>: +[a-f0-9]+: 48 c1 24 24 00 shlq \$0x0,\(%rsp\) - +[a-f0-9]+: 0f ae e8 lfence - +[a-f0-9]+: 66 c3 data16 ret * + +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: 66 c3 data16 ret +[a-f0-9]+: 48 c1 24 24 00 shlq \$0x0,\(%rsp\) - +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: 0f ae e8 lfence +[a-f0-9]+: 66 c2 14 00 data16 ret \$0x14 +[a-f0-9]+: 48 c1 24 24 00 shlq \$0x0,\(%rsp\) - +[a-f0-9]+: 0f ae e8 lfence - +[a-f0-9]+: c3 ret * + +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: c3 ret +[a-f0-9]+: 48 c1 24 24 00 shlq \$0x0,\(%rsp\) - +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: 0f ae e8 lfence +[a-f0-9]+: c2 1e 00 ret \$0x1e +[a-f0-9]+: 48 c1 24 24 00 shlq \$0x0,\(%rsp\) - +[a-f0-9]+: 0f ae e8 lfence - +[a-f0-9]+: 66 48 c3 data16 rex\.W ret * + +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: 66 48 c3 data16 rex\.W ret +[a-f0-9]+: 48 c1 24 24 00 shlq \$0x0,\(%rsp\) - +[a-f0-9]+: 0f ae e8 lfence + +[a-f0-9]+: 0f ae e8 lfence +[a-f0-9]+: 66 48 c2 28 00 data16 rex\.W ret \$0x28 #pass diff --git a/gas/testsuite/gas/i386/x86-64-mpx-add-bnd-prefix.d b/gas/testsuite/gas/i386/x86-64-mpx-add-bnd-prefix.d index 6fda4dc..1bbec10 100644 --- a/gas/testsuite/gas/i386/x86-64-mpx-add-bnd-prefix.d +++ b/gas/testsuite/gas/i386/x86-64-mpx-add-bnd-prefix.d @@ -14,13 +14,13 @@ Disassembly of section .text: [ ]*[a-f0-9]+: f2 74 08 bnd je 14 <foo> [ ]*[a-f0-9]+: f2 eb 05 bnd jmp 14 <foo> [ ]*[a-f0-9]+: f2 ff 23 bnd jmp \*\(%rbx\) -[ ]*[a-f0-9]+: f2 c3 bnd ret * +[ ]*[a-f0-9]+: f2 c3 bnd ret 0+14 <foo>: -[ ]*[a-f0-9]+: f2 c3 bnd ret * -[ ]*[a-f0-9]+: f2 c3 bnd ret * -[ ]*[a-f0-9]+: f2 c3 bnd ret * -[ ]*[a-f0-9]+: f2 c3 bnd ret * +[ ]*[a-f0-9]+: f2 c3 bnd ret +[ ]*[a-f0-9]+: f2 c3 bnd ret +[ ]*[a-f0-9]+: f2 c3 bnd ret +[ ]*[a-f0-9]+: f2 c3 bnd ret [ ]*[a-f0-9]+: f2 e8 f2 ff ff ff bnd call 14 <foo> [ ]*[a-f0-9]+: 48 01 c3 add %rax,%rbx [ ]*[a-f0-9]+: e2 ed loop 14 <foo> diff --git a/gas/testsuite/gas/i386/x86-64-mpx.d b/gas/testsuite/gas/i386/x86-64-mpx.d index 2f45af0..0794e7e 100644 --- a/gas/testsuite/gas/i386/x86-64-mpx.d +++ b/gas/testsuite/gas/i386/x86-64-mpx.d @@ -97,7 +97,7 @@ Disassembly of section .text: [ ]*[a-f0-9]+: f2 e9 11 02 00 00 bnd jmp [0-9a-f]+ <foo> [ ]*[a-f0-9]+: f2 ff 21 bnd jmp \*\(%rcx\) [ ]*[a-f0-9]+: f2 41 ff 24 24 bnd jmp \*\(%r12\) -[ ]*[a-f0-9]+: f2 c3 bnd ret * +[ ]*[a-f0-9]+: f2 c3 bnd ret [ ]*[a-f0-9]+: f3 41 0f 1b 0b bndmk \(%r11\),%bnd1 [ ]*[a-f0-9]+: f3 0f 1b 08 bndmk \(%rax\),%bnd1 [ ]*[a-f0-9]+: f3 0f 1b 0c 25 99 03 00 00 bndmk 0x399,%bnd1 @@ -183,10 +183,10 @@ Disassembly of section .text: [ ]*[a-f0-9]+: f2 eb 09 bnd jmp [0-9a-f]+ <foo> [ ]*[a-f0-9]+: f2 ff e1 bnd jmp \*%rcx [ ]*[a-f0-9]+: f2 41 ff e4 bnd jmp \*%r12 -[ ]*[a-f0-9]+: f2 c3 bnd ret * +[ ]*[a-f0-9]+: f2 c3 bnd ret [a-f0-9]+ <foo>: -[ ]*[a-f0-9]+: f2 c3 bnd ret * +[ ]*[a-f0-9]+: f2 c3 bnd ret [a-f0-9]+ <bad>: [ ]*[a-f0-9]+: 0f 1a 30 bndldx \(%rax\),\(bad\) diff --git a/gas/testsuite/gas/i386/x86-64-opcode-inval-intel.d b/gas/testsuite/gas/i386/x86-64-opcode-inval-intel.d index df7c8bd..6ee5b2f 100644 --- a/gas/testsuite/gas/i386/x86-64-opcode-inval-intel.d +++ b/gas/testsuite/gas/i386/x86-64-opcode-inval-intel.d @@ -8,43 +8,43 @@ Disassembly of section .text: 0+ <aaa>: -[ ]*[a-f0-9]+: 37 \(bad\) +[ ]*[a-f0-9]+: 37 \(bad\) 0+1 <aad0>: -[ ]*[a-f0-9]+: d5 \(bad\) +[ ]*[a-f0-9]+: d5 \(bad\) [ ]*[a-f0-9]+: 0a .byte 0xa 0+3 <aad1>: -[ ]*[a-f0-9]+: d5 \(bad\) +[ ]*[a-f0-9]+: d5 \(bad\) [ ]*[a-f0-9]+: 02 .byte 0x2 0+5 <aam0>: -[ ]*[a-f0-9]+: d4 \(bad\) +[ ]*[a-f0-9]+: d4 \(bad\) [ ]*[a-f0-9]+: 0a .byte 0xa 0+7 <aam1>: -[ ]*[a-f0-9]+: d4 \(bad\) +[ ]*[a-f0-9]+: d4 \(bad\) [ ]*[a-f0-9]+: 02 .byte 0x2 0+9 <aas>: -[ ]*[a-f0-9]+: 3f \(bad\) +[ ]*[a-f0-9]+: 3f \(bad\) 0+a <bound>: [ ]*[a-f0-9]+: 62 .byte 0x62 [ ]*[a-f0-9]+: 10 .byte 0x10 0+c <daa>: -[ ]*[a-f0-9]+: 27 \(bad\) +[ ]*[a-f0-9]+: 27 \(bad\) 0+d <das>: -[ ]*[a-f0-9]+: 2f \(bad\) +[ ]*[a-f0-9]+: 2f \(bad\) 0+e <into>: -[ ]*[a-f0-9]+: ce \(bad\) +[ ]*[a-f0-9]+: ce \(bad\) 0+f <pusha>: -[ ]*[a-f0-9]+: 60 \(bad\) +[ ]*[a-f0-9]+: 60 \(bad\) 0+10 <popa>: -[ ]*[a-f0-9]+: 61 \(bad\) +[ ]*[a-f0-9]+: 61 \(bad\) #pass diff --git a/gas/testsuite/gas/i386/x86-64-opcode-inval.d b/gas/testsuite/gas/i386/x86-64-opcode-inval.d index d0d08cb..12f02c1 100644 --- a/gas/testsuite/gas/i386/x86-64-opcode-inval.d +++ b/gas/testsuite/gas/i386/x86-64-opcode-inval.d @@ -7,43 +7,43 @@ Disassembly of section .text: 0+ <aaa>: -[ ]*[a-f0-9]+: 37 \(bad\) +[ ]*[a-f0-9]+: 37 \(bad\) 0+1 <aad0>: -[ ]*[a-f0-9]+: d5 \(bad\) +[ ]*[a-f0-9]+: d5 \(bad\) [ ]*[a-f0-9]+: 0a .byte 0xa 0+3 <aad1>: -[ ]*[a-f0-9]+: d5 \(bad\) +[ ]*[a-f0-9]+: d5 \(bad\) [ ]*[a-f0-9]+: 02 .byte 0x2 0+5 <aam0>: -[ ]*[a-f0-9]+: d4 \(bad\) +[ ]*[a-f0-9]+: d4 \(bad\) [ ]*[a-f0-9]+: 0a .byte 0xa 0+7 <aam1>: -[ ]*[a-f0-9]+: d4 \(bad\) +[ ]*[a-f0-9]+: d4 \(bad\) [ ]*[a-f0-9]+: 02 .byte 0x2 0+9 <aas>: -[ ]*[a-f0-9]+: 3f \(bad\) +[ ]*[a-f0-9]+: 3f \(bad\) 0+a <bound>: [ ]*[a-f0-9]+: 62 .byte 0x62 [ ]*[a-f0-9]+: 10 .byte 0x10 0+c <daa>: -[ ]*[a-f0-9]+: 27 \(bad\) +[ ]*[a-f0-9]+: 27 \(bad\) 0+d <das>: -[ ]*[a-f0-9]+: 2f \(bad\) +[ ]*[a-f0-9]+: 2f \(bad\) 0+e <into>: -[ ]*[a-f0-9]+: ce \(bad\) +[ ]*[a-f0-9]+: ce \(bad\) 0+f <pusha>: -[ ]*[a-f0-9]+: 60 \(bad\) +[ ]*[a-f0-9]+: 60 \(bad\) 0+10 <popa>: -[ ]*[a-f0-9]+: 61 \(bad\) +[ ]*[a-f0-9]+: 61 \(bad\) #pass diff --git a/gas/testsuite/gas/i386/x86-64-opcode.d b/gas/testsuite/gas/i386/x86-64-opcode.d index c925938..e347869 100644 --- a/gas/testsuite/gas/i386/x86-64-opcode.d +++ b/gas/testsuite/gas/i386/x86-64-opcode.d @@ -11,12 +11,12 @@ Disassembly of section .text: [ ]*[a-f0-9]+: ff 10 call \*\(%rax\) [ ]*[a-f0-9]+: 41 ff 10 call \*\(%r8\) [ ]*[a-f0-9]+: ff 10 call \*\(%rax\) -[ ]*[a-f0-9]+: cb lret -[ ]*[a-f0-9]+: 48 cb lretq * -[ ]*[a-f0-9]+: c3 ret * -[ ]*[a-f0-9]+: cf iret -[ ]*[a-f0-9]+: 66 cf iretw -[ ]*[a-f0-9]+: 48 cf iretq +[ ]*[a-f0-9]+: cb lret +[ ]*[a-f0-9]+: 48 cb lretq +[ ]*[a-f0-9]+: c3 ret +[ ]*[a-f0-9]+: cf iret +[ ]*[a-f0-9]+: 66 cf iretw +[ ]*[a-f0-9]+: 48 cf iretq [ ]*[a-f0-9]+: 41 8c 08 mov %cs,\(%r8\) [ ]*[a-f0-9]+: 8c 08 mov %cs,\(%rax\) [ ]*[a-f0-9]+: 41 8c 10 mov %ss,\(%r8\) @@ -271,19 +271,19 @@ Disassembly of section .text: [ ]*[a-f0-9]+: 0f a1 pop %fs [ ]*[a-f0-9]+: 0f a9 pop %gs [ ]*[a-f0-9]+: 0f a9 pop %gs -[ ]*[a-f0-9]+: 9d popf * -[ ]*[a-f0-9]+: 9d popf * +[ ]*[a-f0-9]+: 9d popf +[ ]*[a-f0-9]+: 9d popf [ ]*[a-f0-9]+: 41 ff 30 push \(%r8\) [ ]*[a-f0-9]+: ff 30 push \(%rax\) [ ]*[a-f0-9]+: 0f a0 push %fs [ ]*[a-f0-9]+: 0f a0 push %fs [ ]*[a-f0-9]+: 0f a8 push %gs [ ]*[a-f0-9]+: 0f a8 push %gs -[ ]*[a-f0-9]+: 9c pushf * -[ ]*[a-f0-9]+: 9c pushf * -[ ]*[a-f0-9]+: 0f 77 emms -[ ]*[a-f0-9]+: 0f 0e femms -[ ]*[a-f0-9]+: 0f 08 invd +[ ]*[a-f0-9]+: 9c pushf +[ ]*[a-f0-9]+: 9c pushf +[ ]*[a-f0-9]+: 0f 77 emms +[ ]*[a-f0-9]+: 0f 0e femms +[ ]*[a-f0-9]+: 0f 08 invd [ ]*[a-f0-9]+: 41 0f 01 38 invlpg \(%r8\) [ ]*[a-f0-9]+: 0f 01 38 invlpg \(%rax\) [ ]*[a-f0-9]+: 41 0f 01 38 invlpg \(%r8\) @@ -320,13 +320,13 @@ Disassembly of section .text: [ ]*[a-f0-9]+: 0f 00 c8 str %eax [ ]*[a-f0-9]+: 66 0f 00 c8 str %ax [ ]*[a-f0-9]+: 0f 00 08 str \(%rax\) -[ ]*[a-f0-9]+: 0f 05 syscall -[ ]*[a-f0-9]+: 0f 07 sysretl -[ ]*[a-f0-9]+: 48 0f 07 sysretq * -[ ]*[a-f0-9]+: 0f 01 f8 swapgs +[ ]*[a-f0-9]+: 0f 05 syscall +[ ]*[a-f0-9]+: 0f 07 sysretl +[ ]*[a-f0-9]+: 48 0f 07 sysretq +[ ]*[a-f0-9]+: 0f 01 f8 swapgs [ ]*[a-f0-9]+: 66 68 22 22 pushw \$0x2222 -[ ]*[a-f0-9]+: f1 int1 + -[ ]*[a-f0-9]+: cc int3 + +[ ]*[a-f0-9]+: f1 int1 +[ ]*[a-f0-9]+: cc int3 [ ]*[a-f0-9]+: cd 90 int \$0x90 [ ]*[a-f0-9]+: f6 c9 01 test \$(0x)?0*1,%cl [ ]*[a-f0-9]+: 66 f7 c9 02 00 test \$(0x)?0*2,%cx diff --git a/gas/testsuite/gas/i386/x86-64-ospke.d b/gas/testsuite/gas/i386/x86-64-ospke.d index 88e7ec0..d1da1d2 100644 --- a/gas/testsuite/gas/i386/x86-64-ospke.d +++ b/gas/testsuite/gas/i386/x86-64-ospke.d @@ -8,6 +8,6 @@ Disassembly of section .text: 0+ <_start>: -[ ]*[a-f0-9]+: 0f 01 ee rdpkru -[ ]*[a-f0-9]+: 0f 01 ef wrpkru +[ ]*[a-f0-9]+: 0f 01 ee rdpkru +[ ]*[a-f0-9]+: 0f 01 ef wrpkru #pass diff --git a/gas/testsuite/gas/i386/x86-64-pconfig-intel.d b/gas/testsuite/gas/i386/x86-64-pconfig-intel.d index 08584fe..922fdab 100644 --- a/gas/testsuite/gas/i386/x86-64-pconfig-intel.d +++ b/gas/testsuite/gas/i386/x86-64-pconfig-intel.d @@ -7,5 +7,5 @@ Disassembly of section .text: 0+ <_start>: -[ ]*[a-f0-9]+:[ ]*0f 01 c5[ ]*pconfig[ ]* +[ ]*[a-f0-9]+:[ ]*0f 01 c5[ ]*pconfig #pass diff --git a/gas/testsuite/gas/i386/x86-64-pconfig.d b/gas/testsuite/gas/i386/x86-64-pconfig.d index de61788..1444c18 100644 --- a/gas/testsuite/gas/i386/x86-64-pconfig.d +++ b/gas/testsuite/gas/i386/x86-64-pconfig.d @@ -7,5 +7,5 @@ Disassembly of section .text: 0+ <_start>: -[ ]*[a-f0-9]+:[ ]*0f 01 c5[ ]*pconfig[ ]* +[ ]*[a-f0-9]+:[ ]*0f 01 c5[ ]*pconfig #pass diff --git a/gas/testsuite/gas/i386/x86-64-property-1.d b/gas/testsuite/gas/i386/x86-64-property-1.d index 52db167..bf53e8f 100644 --- a/gas/testsuite/gas/i386/x86-64-property-1.d +++ b/gas/testsuite/gas/i386/x86-64-property-1.d @@ -6,4 +6,4 @@ Displaying notes found in: .note.gnu.property [ ]+Owner[ ]+Data size[ ]+Description GNU 0x[0-9a-f]+ NT_GNU_PROPERTY_TYPE_0 - Properties: x86 ISA used: + Properties: x86 ISA used: * diff --git a/gas/testsuite/gas/i386/x86-64-relax-2.d b/gas/testsuite/gas/i386/x86-64-relax-2.d index fba47c1..e0fbe49 100644 --- a/gas/testsuite/gas/i386/x86-64-relax-2.d +++ b/gas/testsuite/gas/i386/x86-64-relax-2.d @@ -19,17 +19,17 @@ Disassembly of section .text: [ ]*[a-f0-9]+: e9 00 00 00 00 jmp 22 <hidden_def> 1e: R_X86_64_PLT32 hidden_undef-0x4 0+22 <hidden_def>: -[ ]*[a-f0-9]+: c3 ret * +[ ]*[a-f0-9]+: c3 ret 0+23 <weak_hidden_def>: -[ ]*[a-f0-9]+: c3 ret * +[ ]*[a-f0-9]+: c3 ret 0+24 <global_def>: -[ ]*[a-f0-9]+: c3 ret * +[ ]*[a-f0-9]+: c3 ret 0+25 <weak_def>: -[ ]*[a-f0-9]+: c3 ret * +[ ]*[a-f0-9]+: c3 ret 0+26 <local>: -[ ]*[a-f0-9]+: c3 ret * +[ ]*[a-f0-9]+: c3 ret #pass diff --git a/gas/testsuite/gas/i386/x86-64-relax-3.d b/gas/testsuite/gas/i386/x86-64-relax-3.d index 01df9ef..4c2361c 100644 --- a/gas/testsuite/gas/i386/x86-64-relax-3.d +++ b/gas/testsuite/gas/i386/x86-64-relax-3.d @@ -18,17 +18,17 @@ Disassembly of section .text: [ ]*[a-f0-9]+: e9 00 00 00 00 jmp 1f <hidden_def> 1b: R_X86_64_PLT32 hidden_undef-0x4 0+1f <hidden_def>: -[ ]*[a-f0-9]+: c3 ret * +[ ]*[a-f0-9]+: c3 ret 0+20 <weak_hidden_def>: -[ ]*[a-f0-9]+: c3 ret * +[ ]*[a-f0-9]+: c3 ret 0+21 <global_def>: -[ ]*[a-f0-9]+: c3 ret * +[ ]*[a-f0-9]+: c3 ret 0+22 <weak_def>: -[ ]*[a-f0-9]+: c3 ret * +[ ]*[a-f0-9]+: c3 ret 0+23 <local>: -[ ]*[a-f0-9]+: c3 ret * +[ ]*[a-f0-9]+: c3 ret #pass diff --git a/gas/testsuite/gas/i386/x86-64-relax-4.d b/gas/testsuite/gas/i386/x86-64-relax-4.d index ca12c03..a5d6597 100644 --- a/gas/testsuite/gas/i386/x86-64-relax-4.d +++ b/gas/testsuite/gas/i386/x86-64-relax-4.d @@ -7,7 +7,7 @@ Disassembly of section .text: 0+ <printk>: - +[a-f0-9]+: c3 ret * + +[a-f0-9]+: c3 ret Disassembly of section .init.text: diff --git a/gas/testsuite/gas/i386/x86-64-rtm-intel.d b/gas/testsuite/gas/i386/x86-64-rtm-intel.d index e79c4cb..042e92c 100644 --- a/gas/testsuite/gas/i386/x86-64-rtm-intel.d +++ b/gas/testsuite/gas/i386/x86-64-rtm-intel.d @@ -11,10 +11,10 @@ Disassembly of section .text: [ ]*[a-f0-9]+: c6 f8 08 xabort 0x8 [ ]*[a-f0-9]+: c7 f8 fa ff ff ff xbegin 3 <foo\+0x3> [ ]*[a-f0-9]+: c7 f8 00 00 00 00 xbegin f <foo\+0xf> -[ ]*[a-f0-9]+: 0f 01 d5 xend +[ ]*[a-f0-9]+: 0f 01 d5 xend [ ]*[a-f0-9]+: c6 f8 08 xabort 0x8 [ ]*[a-f0-9]+: c7 f8 fa ff ff ff xbegin 15 <foo\+0x15> [ ]*[a-f0-9]+: c7 f8 00 00 00 00 xbegin 21 <foo\+0x21> -[ ]*[a-f0-9]+: 0f 01 d5 xend -[ ]*[a-f0-9]+: 0f 01 d6 xtest +[ ]*[a-f0-9]+: 0f 01 d5 xend +[ ]*[a-f0-9]+: 0f 01 d6 xtest #pass diff --git a/gas/testsuite/gas/i386/x86-64-rtm.d b/gas/testsuite/gas/i386/x86-64-rtm.d index b23864b..afbae53 100644 --- a/gas/testsuite/gas/i386/x86-64-rtm.d +++ b/gas/testsuite/gas/i386/x86-64-rtm.d @@ -10,10 +10,10 @@ Disassembly of section .text: [ ]*[a-f0-9]+: c6 f8 08 xabort \$0x8 [ ]*[a-f0-9]+: c7 f8 fa ff ff ff xbegin 3 <foo\+0x3> [ ]*[a-f0-9]+: c7 f8 00 00 00 00 xbegin f <foo\+0xf> -[ ]*[a-f0-9]+: 0f 01 d5 xend +[ ]*[a-f0-9]+: 0f 01 d5 xend [ ]*[a-f0-9]+: c6 f8 08 xabort \$0x8 [ ]*[a-f0-9]+: c7 f8 fa ff ff ff xbegin 15 <foo\+0x15> [ ]*[a-f0-9]+: c7 f8 00 00 00 00 xbegin 21 <foo\+0x21> -[ ]*[a-f0-9]+: 0f 01 d5 xend -[ ]*[a-f0-9]+: 0f 01 d6 xtest +[ ]*[a-f0-9]+: 0f 01 d5 xend +[ ]*[a-f0-9]+: 0f 01 d6 xtest #pass diff --git a/gas/testsuite/gas/i386/x86-64-se1.d b/gas/testsuite/gas/i386/x86-64-se1.d index a515219..874a67c 100644 --- a/gas/testsuite/gas/i386/x86-64-se1.d +++ b/gas/testsuite/gas/i386/x86-64-se1.d @@ -8,7 +8,7 @@ Disassembly of section .text: 0+ <_start>: -[ ]*[a-f0-9]+: 0f 01 cf encls -[ ]*[a-f0-9]+: 0f 01 d7 enclu -[ ]*[a-f0-9]+: 0f 01 c0 enclv +[ ]*[a-f0-9]+: 0f 01 cf encls +[ ]*[a-f0-9]+: 0f 01 d7 enclu +[ ]*[a-f0-9]+: 0f 01 c0 enclv #pass diff --git a/gas/testsuite/gas/i386/x86-64-serialize.d b/gas/testsuite/gas/i386/x86-64-serialize.d index 79ac814..39bbdac 100644 --- a/gas/testsuite/gas/i386/x86-64-serialize.d +++ b/gas/testsuite/gas/i386/x86-64-serialize.d @@ -8,5 +8,5 @@ Disassembly of section \.text: 0+ <_start>: -[ ]*[a-f0-9]+: 0f 01 e8 + serialize * +[ ]*[a-f0-9]+: 0f 01 e8 + serialize #pass diff --git a/gas/testsuite/gas/i386/x86-64-smap.d b/gas/testsuite/gas/i386/x86-64-smap.d index 639bc31..482cddf 100644 --- a/gas/testsuite/gas/i386/x86-64-smap.d +++ b/gas/testsuite/gas/i386/x86-64-smap.d @@ -7,6 +7,6 @@ Disassembly of section .text: 0+ <foo>: -[ ]*[a-f0-9]+: 0f 01 ca clac -[ ]*[a-f0-9]+: 0f 01 cb stac +[ ]*[a-f0-9]+: 0f 01 ca clac +[ ]*[a-f0-9]+: 0f 01 cb stac #pass diff --git a/gas/testsuite/gas/i386/x86-64-sse-noavx.d b/gas/testsuite/gas/i386/x86-64-sse-noavx.d index d9d17a5..7bee7e7 100644 --- a/gas/testsuite/gas/i386/x86-64-sse-noavx.d +++ b/gas/testsuite/gas/i386/x86-64-sse-noavx.d @@ -18,9 +18,9 @@ Disassembly of section .text: [ ]*[a-f0-9]+: df 08 fisttps \(%rax\) [ ]*[a-f0-9]+: db 08 fisttpl \(%rax\) [ ]*[a-f0-9]+: dd 08 fisttpll \(%rax\) -[ ]*[a-f0-9]+: 0f ae e8 lfence +[ ]*[a-f0-9]+: 0f ae e8 lfence [ ]*[a-f0-9]+: 0f f7 c7 maskmovq %mm7,%mm0 -[ ]*[a-f0-9]+: 0f ae f0 mfence +[ ]*[a-f0-9]+: 0f ae f0 mfence [ ]*[a-f0-9]+: 0f 01 c8 monitor %rax,%ecx,%edx [ ]*[a-f0-9]+: f2 0f d6 c8 movdq2q %xmm0,%mm1 [ ]*[a-f0-9]+: 0f c3 00 movnti %eax,\(%rax\) @@ -63,5 +63,5 @@ Disassembly of section .text: [ ]*[a-f0-9]+: 0f 38 0a c1 psignd %mm1,%mm0 [ ]*[a-f0-9]+: 0f 38 09 c1 psignw %mm1,%mm0 [ ]*[a-f0-9]+: 0f fb c1 psubq %mm1,%mm0 -[ ]*[a-f0-9]+: 0f ae f8 sfence +[ ]*[a-f0-9]+: 0f ae f8 sfence #pass diff --git a/gas/testsuite/gas/i386/x86-64-sse3-intel.d b/gas/testsuite/gas/i386/x86-64-sse3-intel.d index 44f1503..a8bf665 100644 --- a/gas/testsuite/gas/i386/x86-64-sse3-intel.d +++ b/gas/testsuite/gas/i386/x86-64-sse3-intel.d @@ -23,24 +23,24 @@ Disassembly of section .text: [ ]*[a-f0-9]+: f2 0f 7d d2[ ]+hsubps xmm2,xmm2 [ ]*[a-f0-9]+: f2 0f 7d 1c 24[ ]+hsubps xmm3,(XMMWORD PTR )?\[rsp\] [ ]*[a-f0-9]+: f2 0f f0 2e[ ]+lddqu xmm5,(XMMWORD PTR )?\[rsi\] -[ ]*[a-f0-9]+: 0f 01 c8[ ]+monitor * -[ ]*[a-f0-9]+: 0f 01 c8[ ]+monitor * -[ ]*[a-f0-9]+: 0f 01 c8[ ]+monitor * +[ ]*[a-f0-9]+: 0f 01 c8[ ]+monitor +[ ]*[a-f0-9]+: 0f 01 c8[ ]+monitor +[ ]*[a-f0-9]+: 0f 01 c8[ ]+monitor [ ]*[a-f0-9]+: f2 0f 12 f7[ ]+movddup xmm6,xmm7 [ ]*[a-f0-9]+: f2 0f 12 38[ ]+movddup xmm7,(QWORD PTR )?\[rax\] [ ]*[a-f0-9]+: f3 0f 16 01[ ]+movshdup xmm0,(XMMWORD PTR )?\[rcx\] [ ]*[a-f0-9]+: f3 0f 16 ca[ ]+movshdup xmm1,xmm2 [ ]*[a-f0-9]+: f3 0f 12 13[ ]+movsldup xmm2,(XMMWORD PTR )?\[rbx\] [ ]*[a-f0-9]+: f3 0f 12 dc[ ]+movsldup xmm3,xmm4 -[ ]*[a-f0-9]+: 0f 01 c9[ ]+mwait * -[ ]*[a-f0-9]+: 0f 01 c9[ ]+mwait * -[ ]*[a-f0-9]+: 0f 01 c9[ ]+mwait * -[ ]*[a-f0-9]+: 67 0f 01 c8[ ]+addr32 monitor * -[ ]*[a-f0-9]+: 67 0f 01 c8[ ]+addr32 monitor * -[ ]*[a-f0-9]+: 67 0f 01 c8[ ]+addr32 monitor * +[ ]*[a-f0-9]+: 0f 01 c9[ ]+mwait +[ ]*[a-f0-9]+: 0f 01 c9[ ]+mwait +[ ]*[a-f0-9]+: 0f 01 c9[ ]+mwait +[ ]*[a-f0-9]+: 67 0f 01 c8[ ]+addr32 monitor +[ ]*[a-f0-9]+: 67 0f 01 c8[ ]+addr32 monitor +[ ]*[a-f0-9]+: 67 0f 01 c8[ ]+addr32 monitor [ ]*[a-f0-9]+: f2 0f 12 38[ ]+movddup xmm7,(QWORD PTR )?\[rax\] [ ]*[a-f0-9]+: f2 0f 12 38[ ]+movddup xmm7,(QWORD PTR )?\[rax\] -[ ]*[a-f0-9]+: 0f 01 c8[ ]+monitor * -[ ]*[a-f0-9]+: 67 0f 01 c8[ ]+addr32 monitor * -[ ]*[a-f0-9]+: 0f 01 c9[ ]+mwait * +[ ]*[a-f0-9]+: 0f 01 c8[ ]+monitor +[ ]*[a-f0-9]+: 67 0f 01 c8[ ]+addr32 monitor +[ ]*[a-f0-9]+: 0f 01 c9[ ]+mwait #pass diff --git a/gas/testsuite/gas/i386/x86-64-suffix-intel.d b/gas/testsuite/gas/i386/x86-64-suffix-intel.d index 55d4a8d..5e10572 100644 --- a/gas/testsuite/gas/i386/x86-64-suffix-intel.d +++ b/gas/testsuite/gas/i386/x86-64-suffix-intel.d @@ -8,23 +8,23 @@ Disassembly of section .text: 0+ <foo>: -[ ]*[a-f0-9]+: 0f 01 c8 monitor -[ ]*[a-f0-9]+: 0f 01 c9 mwait -[ ]*[a-f0-9]+: 0f 01 c1 vmcall -[ ]*[a-f0-9]+: 0f 01 c2 vmlaunch -[ ]*[a-f0-9]+: 0f 01 c3 vmresume -[ ]*[a-f0-9]+: 0f 01 c4 vmxoff -[ ]*[a-f0-9]+: 66 cf iretw -[ ]*[a-f0-9]+: cf iretd -[ ]*[a-f0-9]+: 48 cf iretq -[ ]*[a-f0-9]+: 0f 07 sysretd +[ ]*[a-f0-9]+: 0f 01 c8 monitor +[ ]*[a-f0-9]+: 0f 01 c9 mwait +[ ]*[a-f0-9]+: 0f 01 c1 vmcall +[ ]*[a-f0-9]+: 0f 01 c2 vmlaunch +[ ]*[a-f0-9]+: 0f 01 c3 vmresume +[ ]*[a-f0-9]+: 0f 01 c4 vmxoff +[ ]*[a-f0-9]+: 66 cf iretw +[ ]*[a-f0-9]+: cf iretd +[ ]*[a-f0-9]+: 48 cf iretq +[ ]*[a-f0-9]+: 0f 07 sysretd [ ]*[a-f0-9]+: 48 89 e5 mov rbp,rsp -[ ]*[a-f0-9]+: 48 0f 07 sysretq -[ ]*[a-f0-9]+: 66 cf iretw -[ ]*[a-f0-9]+: cf iretd -[ ]*[a-f0-9]+: cf iretd -[ ]*[a-f0-9]+: 48 cf iretq -[ ]*[a-f0-9]+: 0f 07 sysretd +[ ]*[a-f0-9]+: 48 0f 07 sysretq +[ ]*[a-f0-9]+: 66 cf iretw +[ ]*[a-f0-9]+: cf iretd +[ ]*[a-f0-9]+: cf iretd +[ ]*[a-f0-9]+: 48 cf iretq +[ ]*[a-f0-9]+: 0f 07 sysretd [ ]*[a-f0-9]+: 48 89 e5 mov rbp,rsp -[ ]*[a-f0-9]+: 48 0f 07 sysretq +[ ]*[a-f0-9]+: 48 0f 07 sysretq #pass diff --git a/gas/testsuite/gas/i386/x86-64-suffix.d b/gas/testsuite/gas/i386/x86-64-suffix.d index 5ae1173..e8edfa4 100644 --- a/gas/testsuite/gas/i386/x86-64-suffix.d +++ b/gas/testsuite/gas/i386/x86-64-suffix.d @@ -9,21 +9,21 @@ Disassembly of section .text: 0+ <foo>: [ ]*[a-f0-9]+: 0f 01 c8 monitor %rax,%ecx,%edx [ ]*[a-f0-9]+: 0f 01 c9 mwait %eax,%ecx -[ ]*[a-f0-9]+: 0f 01 c1 vmcall -[ ]*[a-f0-9]+: 0f 01 c2 vmlaunch -[ ]*[a-f0-9]+: 0f 01 c3 vmresume -[ ]*[a-f0-9]+: 0f 01 c4 vmxoff -[ ]*[a-f0-9]+: 66 cf iretw -[ ]*[a-f0-9]+: cf iretl -[ ]*[a-f0-9]+: 48 cf iretq -[ ]*[a-f0-9]+: 0f 07 sysretl +[ ]*[a-f0-9]+: 0f 01 c1 vmcall +[ ]*[a-f0-9]+: 0f 01 c2 vmlaunch +[ ]*[a-f0-9]+: 0f 01 c3 vmresume +[ ]*[a-f0-9]+: 0f 01 c4 vmxoff +[ ]*[a-f0-9]+: 66 cf iretw +[ ]*[a-f0-9]+: cf iretl +[ ]*[a-f0-9]+: 48 cf iretq +[ ]*[a-f0-9]+: 0f 07 sysretl [ ]*[a-f0-9]+: 48 89 e5 movq %rsp,%rbp -[ ]*[a-f0-9]+: 48 0f 07 sysretq -[ ]*[a-f0-9]+: 66 cf iretw -[ ]*[a-f0-9]+: cf iretl -[ ]*[a-f0-9]+: cf iretl -[ ]*[a-f0-9]+: 48 cf iretq -[ ]*[a-f0-9]+: 0f 07 sysretl +[ ]*[a-f0-9]+: 48 0f 07 sysretq +[ ]*[a-f0-9]+: 66 cf iretw +[ ]*[a-f0-9]+: cf iretl +[ ]*[a-f0-9]+: cf iretl +[ ]*[a-f0-9]+: 48 cf iretq +[ ]*[a-f0-9]+: 0f 07 sysretl [ ]*[a-f0-9]+: 48 89 e5 movq %rsp,%rbp -[ ]*[a-f0-9]+: 48 0f 07 sysretq +[ ]*[a-f0-9]+: 48 0f 07 sysretq #pass diff --git a/gas/testsuite/gas/i386/x86-64-sysenter-amd.d b/gas/testsuite/gas/i386/x86-64-sysenter-amd.d index b3fa23c..0f7655e 100644 --- a/gas/testsuite/gas/i386/x86-64-sysenter-amd.d +++ b/gas/testsuite/gas/i386/x86-64-sysenter-amd.d @@ -7,10 +7,10 @@ Disassembly of section .text: 0+ <.text>: -[ ]*[a-f0-9]+:[ ]+0f 34[ ]+\(bad\)[ ]* -[ ]*[a-f0-9]+:[ ]+0f 35[ ]+\(bad\)[ ]* -[ ]*[a-f0-9]+:[ ]+48 0f 35[ ]+\(bad\)[ ]* -[ ]*[a-f0-9]+:[ ]+0f 34[ ]+\(bad\)[ ]* -[ ]*[a-f0-9]+:[ ]+0f 35[ ]+\(bad\)[ ]* -[ ]*[a-f0-9]+:[ ]+48 0f 35[ ]+\(bad\)[ ]* +[ ]*[a-f0-9]+:[ ]+0f 34[ ]+\(bad\) +[ ]*[a-f0-9]+:[ ]+0f 35[ ]+\(bad\) +[ ]*[a-f0-9]+:[ ]+48 0f 35[ ]+\(bad\) +[ ]*[a-f0-9]+:[ ]+0f 34[ ]+\(bad\) +[ ]*[a-f0-9]+:[ ]+0f 35[ ]+\(bad\) +[ ]*[a-f0-9]+:[ ]+48 0f 35[ ]+\(bad\) #pass diff --git a/gas/testsuite/gas/i386/x86-64-sysenter-intel.d b/gas/testsuite/gas/i386/x86-64-sysenter-intel.d index 451cd91..bd41168 100644 --- a/gas/testsuite/gas/i386/x86-64-sysenter-intel.d +++ b/gas/testsuite/gas/i386/x86-64-sysenter-intel.d @@ -8,10 +8,10 @@ Disassembly of section .text: 0+ <.text>: -[ ]*[a-f0-9]+: 0f 34 sysenter * -[ ]*[a-f0-9]+: 0f 35 sysexitl * -[ ]*[a-f0-9]+: 48 0f 35 sysexitq * -[ ]*[a-f0-9]+: 0f 34 sysenter * -[ ]*[a-f0-9]+: 0f 35 sysexitl * -[ ]*[a-f0-9]+: 48 0f 35 sysexitq * +[ ]*[a-f0-9]+: 0f 34 sysenter +[ ]*[a-f0-9]+: 0f 35 sysexitl +[ ]*[a-f0-9]+: 48 0f 35 sysexitq +[ ]*[a-f0-9]+: 0f 34 sysenter +[ ]*[a-f0-9]+: 0f 35 sysexitl +[ ]*[a-f0-9]+: 48 0f 35 sysexitq #pass diff --git a/gas/testsuite/gas/i386/x86-64-tbm-intel.d b/gas/testsuite/gas/i386/x86-64-tbm-intel.d index 40a68ff..7d2d208 100644 --- a/gas/testsuite/gas/i386/x86-64-tbm-intel.d +++ b/gas/testsuite/gas/i386/x86-64-tbm-intel.d @@ -1,4 +1,4 @@ -#as: +#as: #objdump: -dwMintel #name: x86-64 TBM insns (Intel disassembly) #source: x86-64-tbm.s diff --git a/gas/testsuite/gas/i386/x86-64-tdx.d b/gas/testsuite/gas/i386/x86-64-tdx.d index ea3e83c..64c85b2 100644 --- a/gas/testsuite/gas/i386/x86-64-tdx.d +++ b/gas/testsuite/gas/i386/x86-64-tdx.d @@ -8,8 +8,8 @@ Disassembly of section \.text: 0+ <_start>: -[ ]*[a-f0-9]+: 66 0f 01 cc + tdcall * -[ ]*[a-f0-9]+: 66 0f 01 cd + seamret * -[ ]*[a-f0-9]+: 66 0f 01 ce + seamops * -[ ]*[a-f0-9]+: 66 0f 01 cf + seamcall * +[ ]*[a-f0-9]+: 66 0f 01 cc + tdcall +[ ]*[a-f0-9]+: 66 0f 01 cd + seamret +[ ]*[a-f0-9]+: 66 0f 01 ce + seamops +[ ]*[a-f0-9]+: 66 0f 01 cf + seamcall #pass diff --git a/gas/testsuite/gas/i386/x86-64-tsxldtrk.d b/gas/testsuite/gas/i386/x86-64-tsxldtrk.d index e2e54f5..00da0a3 100644 --- a/gas/testsuite/gas/i386/x86-64-tsxldtrk.d +++ b/gas/testsuite/gas/i386/x86-64-tsxldtrk.d @@ -8,6 +8,6 @@ Disassembly of section \.text: 0+ <_start>: - +[a-f0-9]+: f2 0f 01 e8 xsusldtrk[ ]* - +[a-f0-9]+: f2 0f 01 e9 xresldtrk[ ]* + +[a-f0-9]+: f2 0f 01 e8 xsusldtrk + +[a-f0-9]+: f2 0f 01 e9 xresldtrk #pass diff --git a/gas/testsuite/gas/i386/x86-64-uintr.d b/gas/testsuite/gas/i386/x86-64-uintr.d index 2208092..b292a72 100644 --- a/gas/testsuite/gas/i386/x86-64-uintr.d +++ b/gas/testsuite/gas/i386/x86-64-uintr.d @@ -8,10 +8,10 @@ Disassembly of section \.text: 0+ <_start>: - +[a-f0-9]+: f3 0f 01 ec uiret * - +[a-f0-9]+: f3 0f 01 ed testui * - +[a-f0-9]+: f3 0f 01 ee clui * - +[a-f0-9]+: f3 0f 01 ef stui * + +[a-f0-9]+: f3 0f 01 ec uiret + +[a-f0-9]+: f3 0f 01 ed testui + +[a-f0-9]+: f3 0f 01 ee clui + +[a-f0-9]+: f3 0f 01 ef stui +[a-f0-9]+: f3 0f c7 f0 senduipi %rax +[a-f0-9]+: f3 41 0f c7 f2 senduipi %r10 #pass diff --git a/gas/testsuite/gas/i386/x86-64-unique.d b/gas/testsuite/gas/i386/x86-64-unique.d index 219e245..9b5454a 100644 --- a/gas/testsuite/gas/i386/x86-64-unique.d +++ b/gas/testsuite/gas/i386/x86-64-unique.d @@ -8,26 +8,26 @@ Disassembly of section .text: 0+ <foo>: +[a-f0-9]+: 89 c3 mov %eax,%ebx - +[a-f0-9]+: c3 ret * + +[a-f0-9]+: c3 ret Disassembly of section .text: 0+ <bar>: +[a-f0-9]+: 31 c3 xor %eax,%ebx - +[a-f0-9]+: c3 ret * + +[a-f0-9]+: c3 ret Disassembly of section .text: 0+ <foo1>: +[a-f0-9]+: 89 c3 mov %eax,%ebx - +[a-f0-9]+: c3 ret * + +[a-f0-9]+: c3 ret Disassembly of section .text: 0+ <bar1>: +[a-f0-9]+: 01 c3 add %eax,%ebx +[a-f0-9]+: 90 nop - +[a-f0-9]+: c3 ret * + +[a-f0-9]+: c3 ret Disassembly of section .text: @@ -36,7 +36,7 @@ Disassembly of section .text: +[a-f0-9]+: 90 nop +[a-f0-9]+: 90 nop +[a-f0-9]+: 90 nop - +[a-f0-9]+: c3 ret * + +[a-f0-9]+: c3 ret Disassembly of section .text: @@ -44,5 +44,5 @@ Disassembly of section .text: +[a-f0-9]+: 31 c3 xor %eax,%ebx +[a-f0-9]+: 90 nop +[a-f0-9]+: 90 nop - +[a-f0-9]+: c3 ret * + +[a-f0-9]+: c3 ret #pass diff --git a/gas/testsuite/gas/i386/x86-64-vmfunc.d b/gas/testsuite/gas/i386/x86-64-vmfunc.d index 2af8761..3d7fae5 100644 --- a/gas/testsuite/gas/i386/x86-64-vmfunc.d +++ b/gas/testsuite/gas/i386/x86-64-vmfunc.d @@ -7,6 +7,6 @@ Disassembly of section .text: 0+ <foo>: -[ ]*[a-f0-9]+: 0f 01 d4 vmfunc +[ ]*[a-f0-9]+: 0f 01 d4 vmfunc [ ]*[a-f0-9]+: 90 nop #pass diff --git a/gas/testsuite/gas/i386/x86-64-vmx.d b/gas/testsuite/gas/i386/x86-64-vmx.d index 201dc05..5770007 100644 --- a/gas/testsuite/gas/i386/x86-64-vmx.d +++ b/gas/testsuite/gas/i386/x86-64-vmx.d @@ -6,10 +6,10 @@ Disassembly of section .text: 0+000 <foo>: - 0: 0f 01 c1 [ ]*vmcall - 3: 0f 01 c2 [ ]*vmlaunch - 6: 0f 01 c3 [ ]*vmresume - 9: 0f 01 c4 [ ]*vmxoff + 0: 0f 01 c1 [ ]*vmcall + 3: 0f 01 c2 [ ]*vmlaunch + 6: 0f 01 c3 [ ]*vmresume + 9: 0f 01 c4 [ ]*vmxoff c: 66 0f c7 30 [ ]*vmclear \(%rax\) 10: 0f c7 30 [ ]*vmptrld \(%rax\) 13: 0f c7 38 [ ]*vmptrst \(%rax\) diff --git a/gas/testsuite/gas/i386/x86-64-wbnoinvd-intel.d b/gas/testsuite/gas/i386/x86-64-wbnoinvd-intel.d index 34d390e..b0cf866 100644 --- a/gas/testsuite/gas/i386/x86-64-wbnoinvd-intel.d +++ b/gas/testsuite/gas/i386/x86-64-wbnoinvd-intel.d @@ -7,5 +7,5 @@ Disassembly of section .text: 0+ <_start>: -[ ]*[a-f0-9]+:[ ]*f3 0f 09[ ]*wbnoinvd[ ]* +[ ]*[a-f0-9]+:[ ]*f3 0f 09[ ]*wbnoinvd #pass diff --git a/gas/testsuite/gas/i386/x86-64-wbnoinvd.d b/gas/testsuite/gas/i386/x86-64-wbnoinvd.d index 051b3d0..255315f 100644 --- a/gas/testsuite/gas/i386/x86-64-wbnoinvd.d +++ b/gas/testsuite/gas/i386/x86-64-wbnoinvd.d @@ -7,5 +7,5 @@ Disassembly of section .text: 0+ <_start>: -[ ]*[a-f0-9]+:[ ]*f3 0f 09[ ]*wbnoinvd[ ]* +[ ]*[a-f0-9]+:[ ]*f3 0f 09[ ]*wbnoinvd #pass diff --git a/gas/testsuite/gas/i386/x86-64-xsave-intel.d b/gas/testsuite/gas/i386/x86-64-xsave-intel.d index f516402..8fbbd1c 100644 --- a/gas/testsuite/gas/i386/x86-64-xsave-intel.d +++ b/gas/testsuite/gas/i386/x86-64-xsave-intel.d @@ -8,8 +8,8 @@ Disassembly of section .text: 0+ <_start>: -[ ]*[a-f0-9]+: 0f 01 d0 xgetbv -[ ]*[a-f0-9]+: 0f 01 d1 xsetbv +[ ]*[a-f0-9]+: 0f 01 d0 xgetbv +[ ]*[a-f0-9]+: 0f 01 d1 xsetbv [ ]*[a-f0-9]+: 0f ae 20 xsave \[rax\] [ ]*[a-f0-9]+: 41 0f ae 20 xsave \[r8\] [ ]*[a-f0-9]+: 41 0f ae 24 00 xsave \[r8\+rax\*1\] diff --git a/gas/testsuite/gas/i386/x86-64-xsave.d b/gas/testsuite/gas/i386/x86-64-xsave.d index 46c07d4..84b8722 100644 --- a/gas/testsuite/gas/i386/x86-64-xsave.d +++ b/gas/testsuite/gas/i386/x86-64-xsave.d @@ -6,8 +6,8 @@ Disassembly of section .text: 0+ <_start>: -[ ]*[a-f0-9]+: 0f 01 d0 xgetbv -[ ]*[a-f0-9]+: 0f 01 d1 xsetbv +[ ]*[a-f0-9]+: 0f 01 d0 xgetbv +[ ]*[a-f0-9]+: 0f 01 d1 xsetbv [ ]*[a-f0-9]+: 0f ae 20 xsave \(%rax\) [ ]*[a-f0-9]+: 41 0f ae 20 xsave \(%r8\) [ ]*[a-f0-9]+: 41 0f ae 24 00 xsave \(%r8,%rax,1\) diff --git a/gas/testsuite/gas/i386/x86_64-intel.d b/gas/testsuite/gas/i386/x86_64-intel.d index 5a57bfb..e40a2e5 100644 --- a/gas/testsuite/gas/i386/x86_64-intel.d +++ b/gas/testsuite/gas/i386/x86_64-intel.d @@ -100,18 +100,18 @@ Disassembly of section .text: [ ]*[a-f0-9]+: a3 11 22 33 44 55 66 77 88 movabs ds:0x8877665544332211,eax [ ]*[a-f0-9]+: 48 a1 11 22 33 44 55 66 77 88 movabs rax,ds:0x8877665544332211 [ ]*[a-f0-9]+: 48 a3 11 22 33 44 55 66 77 88 movabs ds:0x8877665544332211,rax -[ ]*[a-f0-9]+: 48 99 cqo -[ ]*[a-f0-9]+: 48 98 cdqe +[ ]*[a-f0-9]+: 48 99 cqo +[ ]*[a-f0-9]+: 48 98 cdqe [ ]*[a-f0-9]+: 48 63 c0 movsxd rax,eax [ ]*[a-f0-9]+: 48 0f bf c0 movsx rax,ax [ ]*[a-f0-9]+: 48 0f be c0 movsx rax,al -[ ]*[a-f0-9]+: cb retf * +[ ]*[a-f0-9]+: cb retf [ ]*[a-f0-9]+: ca 10 00 retf 0x10 -[ ]*[a-f0-9]+: 66 cb retfw * +[ ]*[a-f0-9]+: 66 cb retfw [ ]*[a-f0-9]+: 66 ca 02 00 retfw 0x2 -[ ]*[a-f0-9]+: cb retf * +[ ]*[a-f0-9]+: cb retf [ ]*[a-f0-9]+: ca 04 00 retf 0x4 -[ ]*[a-f0-9]+: 48 cb retfq * +[ ]*[a-f0-9]+: 48 cb retfq [ ]*[a-f0-9]+: 48 ca 08 00 retfq 0x8 [0-9a-f]+ <bar>: diff --git a/gas/testsuite/gas/i386/x86_64.d b/gas/testsuite/gas/i386/x86_64.d index 0c867f8..73c6873 100644 --- a/gas/testsuite/gas/i386/x86_64.d +++ b/gas/testsuite/gas/i386/x86_64.d @@ -100,18 +100,18 @@ Disassembly of section .text: [ ]*[a-f0-9]+: a3 11 22 33 44 55 66 77 88 movabs %eax,0x8877665544332211 [ ]*[a-f0-9]+: 48 a1 11 22 33 44 55 66 77 88 movabs 0x8877665544332211,%rax [ ]*[a-f0-9]+: 48 a3 11 22 33 44 55 66 77 88 movabs %rax,0x8877665544332211 -[ ]*[a-f0-9]+: 48 99 cqto -[ ]*[a-f0-9]+: 48 98 cltq +[ ]*[a-f0-9]+: 48 99 cqto +[ ]*[a-f0-9]+: 48 98 cltq [ ]*[a-f0-9]+: 48 63 c0 movslq %eax,%rax [ ]*[a-f0-9]+: 48 0f bf c0 movswq %ax,%rax [ ]*[a-f0-9]+: 48 0f be c0 movsbq %al,%rax -[ ]*[a-f0-9]+: cb lret * +[ ]*[a-f0-9]+: cb lret [ ]*[a-f0-9]+: ca 10 00 lret \$0x10 -[ ]*[a-f0-9]+: 66 cb lretw * +[ ]*[a-f0-9]+: 66 cb lretw [ ]*[a-f0-9]+: 66 ca 02 00 lretw \$0x2 -[ ]*[a-f0-9]+: cb lret * +[ ]*[a-f0-9]+: cb lret [ ]*[a-f0-9]+: ca 04 00 lret \$0x4 -[ ]*[a-f0-9]+: 48 cb lretq * +[ ]*[a-f0-9]+: 48 cb lretq [ ]*[a-f0-9]+: 48 ca 08 00 lretq \$0x8 [0-9a-f]+ <bar>: diff --git a/gas/testsuite/gas/i386/xsave-intel.d b/gas/testsuite/gas/i386/xsave-intel.d index c43e33a..9e88f7c 100644 --- a/gas/testsuite/gas/i386/xsave-intel.d +++ b/gas/testsuite/gas/i386/xsave-intel.d @@ -11,8 +11,8 @@ Disassembly of section .text: [ ]*[a-f0-9]+: 0f ae 2b xrstor \[ebx\] [ ]*[a-f0-9]+: 0f ae 23 xsave \[ebx\] [ ]*[a-f0-9]+: 0f ae 33 xsaveopt \[ebx\] -[ ]*[a-f0-9]+: 0f 01 d0 xgetbv -[ ]*[a-f0-9]+: 0f 01 d1 xsetbv +[ ]*[a-f0-9]+: 0f 01 d0 xgetbv +[ ]*[a-f0-9]+: 0f 01 d1 xsetbv [ ]*[a-f0-9]+: 0f ae 29 xrstor \[ecx\] [ ]*[a-f0-9]+: 0f ae 21 xsave \[ecx\] [ ]*[a-f0-9]+: 0f ae 31 xsaveopt \[ecx\] diff --git a/gas/testsuite/gas/i386/xsave.d b/gas/testsuite/gas/i386/xsave.d index d9cf2da..4dabb36 100644 --- a/gas/testsuite/gas/i386/xsave.d +++ b/gas/testsuite/gas/i386/xsave.d @@ -9,8 +9,8 @@ Disassembly of section .text: [ ]*[a-f0-9]+: 0f ae 2b xrstor \(%ebx\) [ ]*[a-f0-9]+: 0f ae 23 xsave \(%ebx\) [ ]*[a-f0-9]+: 0f ae 33 xsaveopt \(%ebx\) -[ ]*[a-f0-9]+: 0f 01 d0 xgetbv -[ ]*[a-f0-9]+: 0f 01 d1 xsetbv +[ ]*[a-f0-9]+: 0f 01 d0 xgetbv +[ ]*[a-f0-9]+: 0f 01 d1 xsetbv [ ]*[a-f0-9]+: 0f ae 29 xrstor \(%ecx\) [ ]*[a-f0-9]+: 0f ae 21 xsave \(%ecx\) [ ]*[a-f0-9]+: 0f ae 31 xsaveopt \(%ecx\) |