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
This commit is contained in:
parent
6015985895
commit
202be274a4
273 changed files with 1854 additions and 1837 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -12,9 +12,9 @@ Disassembly of section .text:
|
|||
[ ]*[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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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\)
|
||||
|
|
|
@ -32,18 +32,18 @@ Disassembly of section .text:
|
|||
+[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
|
||||
|
|
|
@ -30,18 +30,18 @@ Disassembly of section .text:
|
|||
+[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
|
||||
|
|
|
@ -11,346 +11,346 @@ Disassembly of section \.text:
|
|||
[ ]*[a-f0-9]+:[ ]*ef[ ]*out %eax,\(%dx\)
|
||||
[ ]*[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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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>:
|
||||
#...
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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\)
|
||||
|
|
|
@ -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\)
|
||||
|
|
|
@ -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\)
|
||||
|
|
|
@ -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\]
|
||||
|
|
|
@ -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
|
||||
|
@ -100,7 +100,7 @@ Disassembly of section .text:
|
|||
*[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]+: 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]+: 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,7 +193,7 @@ 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\)
|
||||
|
@ -201,11 +201,11 @@ Disassembly of section .text:
|
|||
*[0-9a-f]+: c8 90 90 90[ ]+enterl \$0x9090,\$0x90
|
||||
*[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 06[ ]+clts
|
||||
*[0-9a-f]+: 0f 08[ ]+invd
|
||||
*[0-9a-f]+: 0f 09[ ]+wbinvd
|
||||
*[0-9a-f]+: 0f 0b[ ]+ud2[ ]+
|
||||
*[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
|
||||
|
@ -467,7 +467,7 @@ Disassembly of section .text:
|
|||
*[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 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 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 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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -72,19 +72,19 @@ Disassembly of section .text:
|
|||
[ ]*[a-f0-9]+: 90 nop
|
||||
[ ]*[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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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\)
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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\)
|
||||
|
|
|
@ -12,9 +12,9 @@ Disassembly of section .text:
|
|||
[ ]*[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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -11,344 +11,344 @@ Disassembly of section \.text:
|
|||
[ ]*[a-f0-9]+:[ ]*ef[ ]*out %eax,\(%dx\)
|
||||
[ ]*[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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -16,7 +16,7 @@ Disassembly of section .text:
|
|||
[ ]*[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]+: 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
|
||||
|
|
|
@ -12,19 +12,19 @@ Disassembly of section .text:
|
|||
+[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]+: 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]+: 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]+: 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]+: 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
|
||||
|
|
|
@ -35,7 +35,7 @@ Disassembly of section .text:
|
|||
+[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]+: 9d popf
|
||||
+[a-f0-9]+: 0f ae e8 lfence
|
||||
+[a-f0-9]+: d7 xlat %ds:\(%rbx\)
|
||||
+[a-f0-9]+: 0f ae e8 lfence
|
||||
|
@ -100,7 +100,7 @@ Disassembly of section .text:
|
|||
+[a-f0-9]+: f7 29 imull \(%rcx\)
|
||||
+[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]+: ac lods %ds:\(%rsi\),%al
|
||||
|
|
|
@ -11,19 +11,19 @@ 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]+: 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]+: 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]+: c3 ret
|
||||
+[a-f0-9]+: 48 83 0c 24 00 orq \$0x0,\(%rsp\)
|
||||
+[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]+: 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]+: 66 48 c2 28 00 data16 rex\.W ret \$0x28
|
||||
|
|
|
@ -12,7 +12,7 @@ Disassembly of section .text:
|
|||
+[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]+: 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
|
||||
|
@ -20,7 +20,7 @@ Disassembly of section .text:
|
|||
+[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]+: 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
|
||||
|
@ -28,7 +28,7 @@ Disassembly of section .text:
|
|||
+[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]+: 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
|
||||
|
|
|
@ -10,19 +10,19 @@ 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]+: 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]+: 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]+: c3 ret
|
||||
+[a-f0-9]+: 48 83 0c 24 00 orq \$0x0,\(%rsp\)
|
||||
+[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]+: 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]+: 66 48 c2 28 00 data16 rex\.W ret \$0x28
|
||||
|
|
|
@ -11,19 +11,19 @@ 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]+: 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]+: 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]+: c3 ret
|
||||
+[a-f0-9]+: 48 c1 24 24 00 shlq \$0x0,\(%rsp\)
|
||||
+[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]+: 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]+: 66 48 c2 28 00 data16 rex\.W ret \$0x28
|
||||
|
|
|
@ -11,19 +11,19 @@ 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]+: 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]+: 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]+: c3 ret
|
||||
+[a-f0-9]+: 48 c1 24 24 00 shlq \$0x0,\(%rsp\)
|
||||
+[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]+: 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]+: 66 48 c2 28 00 data16 rex\.W ret \$0x28
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -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\)
|
||||
|
|
|
@ -12,8 +12,8 @@ Disassembly of section .text:
|
|||
[ ]*[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]+: 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
|
||||
|
@ -271,16 +271,16 @@ 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]+: 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
|
||||
|
@ -322,11 +322,11 @@ Disassembly of section .text:
|
|||
[ ]*[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]+: 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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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: *
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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:
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -105,13 +105,13 @@ Disassembly of section .text:
|
|||
[ ]*[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>:
|
||||
|
|
|
@ -105,13 +105,13 @@ Disassembly of section .text:
|
|||
[ ]*[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>:
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue