]> xenbits.xensource.com Git - people/tklengyel/memory-replay.git/commitdiff
Add more instruction to code tracer master
authorTamas K Lengyel <tamas.lengyel@intel.com>
Thu, 11 Jun 2020 18:04:10 +0000 (12:04 -0600)
committerTamas K Lengyel <tamas.lengyel@intel.com>
Thu, 11 Jun 2020 18:09:29 +0000 (12:09 -0600)
src/code_tracer.c

index bbb51629d7b0d94621f59c6b4047d367aafbd54f..d862d615c23f5e94822ea79f43ff48042cb7ee35 100644 (file)
@@ -28,6 +28,7 @@ static bool is_cf(unsigned int id)
     switch ( id )
     {
         case X86_INS_JA:
+        case X86_INS_JAE:
         case X86_INS_JBE:
         case X86_INS_JB:
         case X86_INS_JCXZ:
@@ -49,6 +50,8 @@ static bool is_cf(unsigned int id)
         case X86_INS_JS:
         case X86_INS_CALL:
         case X86_INS_RET:
+        case X86_INS_RETF:
+        case X86_INS_RETFQ:
         case X86_INS_INT3:
             return true;
         default: