VirtualBox

source: vbox/trunk/src/VBox/VMM/VMMGC/CPUMGC.cpp@ 5605

Last change on this file since 5605 was 4071, checked in by vboxsync, 17 years ago

Biggest check-in ever. New source code headers for all (C) innotek files.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 3.9 KB
Line 
1/* $Id: CPUMGC.cpp 4071 2007-08-07 17:07:59Z vboxsync $ */
2/** @file
3 * CPUM - Guest Context Code.
4 */
5
6/*
7 * Copyright (C) 2006-2007 innotek GmbH
8 *
9 * This file is part of VirtualBox Open Source Edition (OSE), as
10 * available from http://www.virtualbox.org. This file is free software;
11 * you can redistribute it and/or modify it under the terms of the GNU
12 * General Public License as published by the Free Software Foundation,
13 * in version 2 as it comes in the "COPYING" file of the VirtualBox OSE
14 * distribution. VirtualBox OSE is distributed in the hope that it will
15 * be useful, but WITHOUT ANY WARRANTY of any kind.
16 */
17
18
19/*******************************************************************************
20* Header Files *
21*******************************************************************************/
22#define LOG_GROUP LOG_GROUP_CPUM
23#include <VBox/cpum.h>
24#include <VBox/vmm.h>
25#include <VBox/trpm.h>
26#include "CPUMInternal.h"
27#include <VBox/vm.h>
28#include <VBox/err.h>
29#include <iprt/assert.h>
30#include <VBox/log.h>
31
32
33/*******************************************************************************
34* Internal Functions *
35*******************************************************************************/
36__BEGIN_DECLS /* addressed from asm (not called so no DECLASM). */
37DECLCALLBACK(int) cpumGCHandleNPAndGP(PVM pVM, PCPUMCTXCORE pRegFrame, uintptr_t uUser);
38__END_DECLS
39
40
41/**
42 * Deal with traps occuring during segment loading and IRET
43 * when resuming guest context.
44 *
45 * @returns VBox status code.
46 * @param pVM The VM handle.
47 * @param pRegFrame The register frame.
48 * @param uUser User argument. In this case a combination of the
49 * CPUM_HANDLER_* \#defines.
50 */
51DECLCALLBACK(int) cpumGCHandleNPAndGP(PVM pVM, PCPUMCTXCORE pRegFrame, uintptr_t uUser)
52{
53 Log(("********************************************************\n"));
54 Log(("cpumGCHandleNPAndGP: eip=%RX32 uUser=%#x\n", pRegFrame->eip, uUser));
55 Log(("********************************************************\n"));
56
57 /*
58 * Update the guest cpu state.
59 */
60 if (uUser & CPUM_HANDLER_CTXCORE_IN_EBP)
61 {
62 PCPUMCTXCORE pGstCtxCore = CPUMCTX2CORE(&pVM->cpum.s.Guest);
63 PCCPUMCTXCORE pGstCtxCoreSrc = (PCPUMCTXCORE)pRegFrame->ebp;
64 *pGstCtxCore = *pGstCtxCoreSrc;
65 }
66
67 /*
68 * Take action based on what's happended.
69 */
70 switch (uUser & CPUM_HANDLER_TYPEMASK)
71 {
72 case CPUM_HANDLER_GS:
73 // if (!pVM->cpum.s.Guest.ldtr)
74 // {
75 // pRegFrame->gs = 0;
76 // pRegFrame->eip += 6; /* mov gs, [edx + CPUM.Guest.gs] */
77 // return VINF_SUCCESS;
78 // }
79 case CPUM_HANDLER_DS:
80 case CPUM_HANDLER_ES:
81 case CPUM_HANDLER_FS:
82 TRPMGCHyperReturnToHost(pVM, VINF_EM_RAW_STALE_SELECTOR);
83 break;
84
85 /* Make sure we restore the guest context from the interrupt stack frame. */
86 case CPUM_HANDLER_IRET:
87 {
88 PCPUMCTXCORE pGstCtxCore = CPUMCTX2CORE(&pVM->cpum.s.Guest);
89 uint32_t *pEsp = (uint32_t *)pRegFrame->esp;
90
91 /* Sync general purpose registers */
92 *pGstCtxCore = *pRegFrame;
93
94 pGstCtxCore->eip = *pEsp++;
95 pGstCtxCore->cs = (RTSEL)*pEsp++;
96 pGstCtxCore->eflags.u32 = *pEsp++;
97 pGstCtxCore->esp = *pEsp++;
98 pGstCtxCore->ss = (RTSEL)*pEsp++;
99 if (pGstCtxCore->eflags.Bits.u1VM)
100 {
101 pGstCtxCore->es = (RTSEL)*pEsp++;
102 pGstCtxCore->ds = (RTSEL)*pEsp++;
103 pGstCtxCore->fs = (RTSEL)*pEsp++;
104 pGstCtxCore->gs = (RTSEL)*pEsp++;
105 }
106
107 TRPMGCHyperReturnToHost(pVM, VINF_EM_RAW_IRET_TRAP);
108 break;
109 }
110 }
111 return VERR_TRPM_DONT_PANIC;
112}
113
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette