Displaying 1 result from an estimated 1 matches for "__get_rep_prefix".
2011 Nov 30
0
[PATCH 4/4] x86/emulator: cleanup
...(vex.pfx >= vex_f3)
+#define repe_prefix() (vex.pfx == vex_f3)
+#define repne_prefix() (vex.pfx == vex_f2)
+
/* Type, address-of, and value of an instruction''s operand. */
struct operand {
enum { OP_REG, OP_MEM, OP_IMM, OP_NONE } type;
@@ -734,7 +738,7 @@ static unsigned long __get_rep_prefix(
#define get_rep_prefix() ({ \
unsigned long max_reps = 1; \
- if ( rep_prefix ) \
+ if ( rep_prefix() )...