Example #1
0
 public static bool IsFlow(this ExtendedInstructionInfo info)
 {
     return(info.InstructionFlags.IsSet(Constants.X86.InstFlagFlow));
 }
Example #2
0
 public static bool IsSpecialMem(this ExtendedInstructionInfo info)
 {
     return(info.InstructionFlags.IsSet(Constants.X86.InstFlagSpecialMem));
 }
Example #3
0
 public static bool IsZeroIfMem(this ExtendedInstructionInfo info)
 {
     return(info.InstructionFlags.IsSet(Constants.X86.InstFlagZ));
 }
Example #4
0
 public static bool IsLockable(this ExtendedInstructionInfo info)
 {
     return(info.InstructionFlags.IsSet(Constants.X86.InstFlagLock));
 }