X-Git-Url: http://v3vee.org/palacios/gitweb/gitweb.cgi?a=blobdiff_plain;f=palacios%2Finclude%2Fpalacios%2Fvm_guest.h;h=eb85d7d9eba114b65ef3be3321e85651465463ba;hb=9019b8dedfa7de9da84c55bc488a60a784231899;hp=63decc2765aae3e98c13775f3fb0d07266bf72f3;hpb=39849abeb743c4e6b669a790c307979fa8d51884;p=palacios.git diff --git a/palacios/include/palacios/vm_guest.h b/palacios/include/palacios/vm_guest.h index 63decc2..eb85d7d 100644 --- a/palacios/include/palacios/vm_guest.h +++ b/palacios/include/palacios/vm_guest.h @@ -81,9 +81,9 @@ struct v3_dbg_regs { }; struct v3_segment { - ushort_t selector; + uint16_t selector; uint_t limit; - ullong_t base; + uint64_t base; uint_t type : 4; uint_t system : 1; uint_t dpl : 2; @@ -116,7 +116,7 @@ struct v3_profiler; struct guest_info { - ullong_t rip; + uint64_t rip; uint_t cpl; @@ -138,7 +138,7 @@ struct guest_info { // This structure is how we get exceptions for the guest struct v3_excp_state excp_state; - v3_io_map_t io_map; + struct v3_io_map io_map; struct v3_msr_map msr_map; @@ -163,26 +163,15 @@ struct guest_info { v3_vm_operating_mode_t run_state; void * vmm_data; + uint64_t yield_cycle_period; + uint64_t yield_start_cycle; + + uint_t enable_profiler; struct v3_profiler profiler; void * decoder_state; - - v3_msr_t guest_efer; - - /* Do we need these ? */ - v3_msr_t guest_star; - v3_msr_t guest_lstar; - v3_msr_t guest_cstar; - v3_msr_t guest_syscall_mask; - v3_msr_t guest_gs_base; - - - //uint64_t fs; - //uint64_t gs; - - }; @@ -195,6 +184,8 @@ const uchar_t * v3_cpu_mode_to_str(v3_cpu_mode_t mode); const uchar_t * v3_mem_mode_to_str(v3_mem_mode_t mode); +void v3_print_guest_state(struct guest_info * info); + void v3_print_segments(struct guest_info * info); void v3_print_ctrl_regs(struct guest_info * info); void v3_print_GPRs(struct guest_info * info);