new instrumentation for laf-intel
Writing down notes...
4 byte cmp
t1=reg
qword mem[0]=K
top:
cmp t1[0], byte mem[0]
je break
t1>>8
mem>>8
jmp top
--------------
8 byte cmp (do the loop 2x)
t1=reg
qword mem[0]=K
top:
cmp t1[0], byte mem[0]
je break
t1>>8
mem>>8
jmp top
top2:
cmp t1[0], byte mem[0]
je break
t1>>8
mem>>8
jmp top2
Edited by Anh Nguyen-Tuong