about summary refs log tree commit diff stats
path: root/miasm2/arch/x86/sem.py
diff options
context:
space:
mode:
authorAjax <commial@gmail.com>2015-11-13 11:54:46 +0100
committerAjax <commial@gmail.com>2015-11-13 11:54:46 +0100
commitd6a6f4aaa661ee45232b9b985f7b59c516b8b6c4 (patch)
tree81472efc2f767f9742f30b21aa024ecc39d87651 /miasm2/arch/x86/sem.py
parente4627f5c4ea3e0f3e3555d7d72d7be0cfeefbf6e (diff)
downloadmiasm-d6a6f4aaa661ee45232b9b985f7b59c516b8b6c4.tar.gz
miasm-d6a6f4aaa661ee45232b9b985f7b59c516b8b6c4.zip
x86: >>>/<<< c_cf are no more needed: use c_rez with rotate-1
Diffstat (limited to 'miasm2/arch/x86/sem.py')
-rw-r--r--miasm2/arch/x86/sem.py15
1 files changed, 7 insertions, 8 deletions
diff --git a/miasm2/arch/x86/sem.py b/miasm2/arch/x86/sem.py
index d8648644..f77fc2d4 100644
--- a/miasm2/arch/x86/sem.py
+++ b/miasm2/arch/x86/sem.py
@@ -415,20 +415,19 @@ def get_shift(a, b):
     shift = expr_simp(shift)
     return shift
 
-def _rotate_tpl(ir, instr, a, b, op, op_cf=None, left=False):
+def _rotate_tpl(ir, instr, a, b, op, left=False):
     """Template for generate rotater with operation @op
     A temporary basic block is generated to handle 0-rotate
     @op: operation to execute
-    @op_cf (optional): operation to use for carry flag. If not set, use @op
     @left (optional): indicates a left rotate if set, default is False
     """
-    if op_cf is None:
-        op_cf = op
-
     shifter = get_shift(a, b)
     res = m2_expr.ExprOp(op, a, shifter, cf.zeroExtend(a.size))
-    new_cf = m2_expr.ExprOp(op_cf, a, shifter, cf.zeroExtend(a.size))[:1]
 
+    new_cf = m2_expr.ExprOp(op, a,
+                            shifter - m2_expr.ExprInt(1, size=shifter.size),
+                            cf.zeroExtend(a.size))
+    new_cf = new_cf.msb() if left else new_cf[:1]
     new_of = m2_expr.ExprCond(b - m2_expr.ExprInt(1, size=b.size),
                               m2_expr.ExprInt(0, size=of.size),
                               res.msb() ^ new_cf if left else (a ^ res).msb())
@@ -481,11 +480,11 @@ def l_ror(ir, instr, a, b):
 
 
 def rcl(ir, instr, a, b):
-    return _rotate_tpl(ir, instr, a, b, '<<<c_rez', '<<<c_cf', left=True)
+    return _rotate_tpl(ir, instr, a, b, '<<<c_rez', left=True)
 
 
 def rcr(ir, instr, a, b):
-    return _rotate_tpl(ir, instr, a, b, '>>>c_rez', '>>>c_cf')
+    return _rotate_tpl(ir, instr, a, b, '>>>c_rez')
 
 
 def _shift_tpl(op, ir, instr, a, b, c=None, op_inv=None, left=False):