Displaying 2 results from an estimated 2 matches for "op_siz".
Did you mean:
  op_size
  
2005 Apr 02
1
[PATCH] VMX support for MMIO/PIO in VM8086 mode
...case 0x2e: //CS
             case 0x36: //SS
             case 0x3e: //DS
             case 0x26: //ES
             case 0x64: //FS
             case 0x65: //GS
+		thread_inst->seg_sel = *inst;
                 break;
             case 0x66: //32bit->16bit
                 thread_inst->op_size = WORD;
                 break;
             case 0x67:
+		printf("Not handling 0x67 (yet)\n");
+		domain_crash_synchronous(); 
                 break;
             default:
                 return inst;
@@ -165,7 +175,7 @@
     }
 }
 
-static inline unsigned long get_immediate(const uns...
2005 Nov 03
0
[PATCH] vmx-platform-vmread.patch
...unsigned char size_reg = 0;
+    int index;
 
     init_instruction(instr);
 
     opcode = check_prefix(opcode, instr, &rex);
-
-    __vmread(GUEST_RFLAGS, &eflags);
-    if (eflags & X86_EFLAGS_VM)
-        vm86 = 1;
 
     if (vm86) { /* meaning is reversed */
         if (instr->op_size == WORD)
@@ -636,7 +631,6 @@
     struct vcpu *v = current;
     vcpu_iodata_t *vio;
     ioreq_t *p;
-    int vm86;
     struct cpu_user_regs *regs;
     extern long evtchn_send(int lport);
 
@@ -649,8 +643,6 @@
     }
 
     p = &vio->vp_ioreq;
-
-    vm86 = regs->eflags & X86_EFLA...