X-Git-Url: http://v3vee.org/palacios/gitweb/gitweb.cgi?a=blobdiff_plain;f=palacios%2Fsrc%2Fpalacios%2Fvmm_decoder.c;fp=palacios%2Fsrc%2Fpalacios%2Fvmm_decoder.c;h=593b038ab3fc6ba2b142af8bfd880eeeb26ede56;hb=66a1a4c7a9edcd7d8bc207aca093d694a6e6b5b2;hp=8aca0e6bb0d9f46477384f3a6b7bc66f0064715e;hpb=f7cf9c19ecb0a589dd45ae0d2c91814bd3c2acc2;p=palacios-OLD.git diff --git a/palacios/src/palacios/vmm_decoder.c b/palacios/src/palacios/vmm_decoder.c index 8aca0e6..593b038 100644 --- a/palacios/src/palacios/vmm_decoder.c +++ b/palacios/src/palacios/vmm_decoder.c @@ -21,7 +21,7 @@ #include -int opcode_cmp(const uchar_t * op1, const uchar_t * op2) { +int v3_opcode_cmp(const uchar_t * op1, const uchar_t * op2) { if (op1[0] != op2[0]) { return op1[0] - op2[0];; } else { @@ -30,7 +30,7 @@ int opcode_cmp(const uchar_t * op1, const uchar_t * op2) { } -void strip_rep_prefix(uchar_t * instr, int length) { +void v3_strip_rep_prefix(uchar_t * instr, int length) { int read_ctr = 0; int write_ctr = 0; int found = 0;