X-Git-Url: http://v3vee.org/palacios/gitweb/gitweb.cgi?a=blobdiff_plain;f=palacios%2Finclude%2Fpalacios%2Fvm_guest.h;h=2aea24cc10aa2dae39faf7f26b1093219e653892;hb=c373d9a80b116014c546e7761982fedf7419664b;hp=79ba15de1067b27f4a8dab9e51c88789c3c3da4b;hpb=7e2d888010c6e0fcde47f06008b2c41e4c1b3637;p=palacios.git diff --git a/palacios/include/palacios/vm_guest.h b/palacios/include/palacios/vm_guest.h index 79ba15d..2aea24c 100644 --- a/palacios/include/palacios/vm_guest.h +++ b/palacios/include/palacios/vm_guest.h @@ -40,6 +40,16 @@ struct v3_ctrl_regs { }; + +struct v3_dbg_regs { + v3_reg_t dr0; + v3_reg_t dr1; + v3_reg_t dr2; + v3_reg_t dr3; + v3_reg_t dr6; + v3_reg_t dr7; +}; + struct v3_segment { ushort_t selector; uint_t limit; @@ -120,6 +130,7 @@ struct guest_info { struct v3_gprs vm_regs; struct v3_ctrl_regs ctrl_regs; + struct v3_dbg_regs dbg_regs; struct v3_segments segments; struct vm_ctrl_ops vm_ops;