VirtualBox

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

Last change on this file since 20543 was 20374, checked in by vboxsync, 15 years ago

*: s/RT_\(BEGIN|END\)_DECLS/RT_C_DECLS_\1/g

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 4.1 KB
Line 
1/* $Id: CPUMGC.cpp 20374 2009-06-08 00:43:21Z vboxsync $ */
2/** @file
3 * CPUM - Guest Context Code.
4 */
5
6/*
7 * Copyright (C) 2006-2007 Sun Microsystems, Inc.
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 (GPL) as published by the Free Software
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16 *
17 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
18 * Clara, CA 95054 USA or visit http://www.sun.com if you need
19 * additional information or have any questions.
20 */
21
22
23/*******************************************************************************
24* Header Files *
25*******************************************************************************/
26#define LOG_GROUP LOG_GROUP_CPUM
27#include <VBox/cpum.h>
28#include <VBox/vmm.h>
29#include <VBox/trpm.h>
30#include "CPUMInternal.h"
31#include <VBox/vm.h>
32#include <VBox/err.h>
33#include <iprt/assert.h>
34#include <VBox/log.h>
35
36
37/*******************************************************************************
38* Internal Functions *
39*******************************************************************************/
40RT_C_DECLS_BEGIN /* addressed from asm (not called so no DECLASM). */
41DECLCALLBACK(int) cpumGCHandleNPAndGP(PVM pVM, PCPUMCTXCORE pRegFrame, uintptr_t uUser);
42RT_C_DECLS_END
43
44
45/**
46 * Deal with traps occuring during segment loading and IRET
47 * when resuming guest context.
48 *
49 * @returns VBox status code.
50 * @param pVM The VM handle.
51 * @param pRegFrame The register frame.
52 * @param uUser User argument. In this case a combination of the
53 * CPUM_HANDLER_* \#defines.
54 */
55DECLCALLBACK(int) cpumGCHandleNPAndGP(PVM pVM, PCPUMCTXCORE pRegFrame, uintptr_t uUser)
56{
57 Log(("********************************************************\n"));
58 Log(("cpumGCHandleNPAndGP: eip=%RX32 uUser=%#x\n", pRegFrame->eip, uUser));
59 Log(("********************************************************\n"));
60
61 PVMCPU pVCpu = VMMGetCpu0(pVM);
62
63 /*
64 * Update the guest cpu state.
65 */
66 if (uUser & CPUM_HANDLER_CTXCORE_IN_EBP)
67 {
68 PCPUMCTXCORE pGstCtxCore = (PCPUMCTXCORE)CPUMGetGuestCtxCore(pVCpu);
69 PCCPUMCTXCORE pGstCtxCoreSrc = (PCPUMCTXCORE)pRegFrame->ebp;
70 *pGstCtxCore = *pGstCtxCoreSrc;
71 }
72
73 /*
74 * Take action based on what's happended.
75 */
76 switch (uUser & CPUM_HANDLER_TYPEMASK)
77 {
78 case CPUM_HANDLER_GS:
79 // if (!pVM->cpum.s.Guest.ldtr)
80 // {
81 // pRegFrame->gs = 0;
82 // pRegFrame->eip += 6; /* mov gs, [edx + CPUM.Guest.gs] */
83 // return VINF_SUCCESS;
84 // }
85 case CPUM_HANDLER_DS:
86 case CPUM_HANDLER_ES:
87 case CPUM_HANDLER_FS:
88 TRPMGCHyperReturnToHost(pVM, VINF_EM_RAW_STALE_SELECTOR);
89 break;
90
91 /* Make sure we restore the guest context from the interrupt stack frame. */
92 case CPUM_HANDLER_IRET:
93 {
94 PCPUMCTXCORE pGstCtxCore = (PCPUMCTXCORE)CPUMGetGuestCtxCore(pVCpu);
95 uint32_t *pEsp = (uint32_t *)pRegFrame->esp;
96
97 /* Sync general purpose registers */
98 *pGstCtxCore = *pRegFrame;
99
100 pGstCtxCore->eip = *pEsp++;
101 pGstCtxCore->cs = (RTSEL)*pEsp++;
102 pGstCtxCore->eflags.u32 = *pEsp++;
103 pGstCtxCore->esp = *pEsp++;
104 pGstCtxCore->ss = (RTSEL)*pEsp++;
105 if (pGstCtxCore->eflags.Bits.u1VM)
106 {
107 pGstCtxCore->es = (RTSEL)*pEsp++;
108 pGstCtxCore->ds = (RTSEL)*pEsp++;
109 pGstCtxCore->fs = (RTSEL)*pEsp++;
110 pGstCtxCore->gs = (RTSEL)*pEsp++;
111 }
112
113 TRPMGCHyperReturnToHost(pVM, VINF_EM_RAW_IRET_TRAP);
114 break;
115 }
116 }
117 return VERR_TRPM_DONT_PANIC;
118}
119
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