X-Git-Url: http://v3vee.org/palacios/gitweb/gitweb.cgi?a=blobdiff_plain;f=palacios%2Fsrc%2Fpalacios%2Fvm_guest.c;h=f920d1bc8a8b3be5ea63d90e0d69f564086f4270;hb=abf911f47d91375cfbe41bee04e980aa829d26f3;hp=7b727ccec55881cf13e114c30d75e827283593fe;hpb=a109eb919a162bd7de58d62020801bc2e633be50;p=palacios-OLD.git diff --git a/palacios/src/palacios/vm_guest.c b/palacios/src/palacios/vm_guest.c index 7b727cc..f920d1b 100644 --- a/palacios/src/palacios/vm_guest.c +++ b/palacios/src/palacios/vm_guest.c @@ -1 +1,52 @@ #include +#include + +void PrintV3Segments(struct guest_info * info) { + struct v3_segments * segs = &(info->segments); + int i = 0; + struct v3_segment * seg_ptr; + + seg_ptr=(struct v3_segment *)segs; + + char *seg_names[] = {"CS", "DS" , "ES", "FS", "GS", "SS" , "LDTR", "GDTR", "IDTR", "TR", NULL}; + PrintDebug("Segments\n"); + + for (i = 0; seg_names[i] != NULL; i++) { + + PrintDebug("\t%s: Sel=%x, base=%x, limit=%x\n", seg_names[i], seg_ptr[i].selector, seg_ptr[i].base, seg_ptr[i].limit); + + } + +} + + +void PrintV3CtrlRegs(struct guest_info * info) { + struct v3_ctrl_regs * regs = &(info->ctrl_regs); + int i = 0; + v3_reg_t * reg_ptr; + char * reg_names[] = {"CR0", "CR2", "CR3", "CR4", "CR8", "FLAGS", NULL}; + + reg_ptr= (v3_reg_t *)regs; + + PrintDebug("32 bit Ctrl Regs:\n"); + + for (i = 0; reg_names[i] != NULL; i++) { + PrintDebug("\t%s=0x%x\n", reg_names[i], reg_ptr[i]); + } +} + + +void PrintV3GPRs(struct guest_info * info) { + struct v3_gprs * regs = &(info->vm_regs); + int i = 0; + v3_reg_t * reg_ptr; + char * reg_names[] = { "RDI", "RSI", "RBP", "RSP", "RBX", "RDX", "RCX", "RAX", NULL}; + + reg_ptr= (v3_reg_t *)regs; + + PrintDebug("32 bit GPRs:\n"); + + for (i = 0; reg_names[i] != NULL; i++) { + PrintDebug("\t%s=0x%x\n", reg_names[i], reg_ptr[i]); + } +}