VirtualBox

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

Last change on this file since 12989 was 8155, checked in by vboxsync, 17 years ago

The Big Sun Rebranding Header Change

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 4.1 KB
Line 
1/* $Id: CPUMGC.cpp 8155 2008-04-18 15:16:47Z 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*******************************************************************************/
40__BEGIN_DECLS /* addressed from asm (not called so no DECLASM). */
41DECLCALLBACK(int) cpumGCHandleNPAndGP(PVM pVM, PCPUMCTXCORE pRegFrame, uintptr_t uUser);
42__END_DECLS
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 /*
62 * Update the guest cpu state.
63 */
64 if (uUser & CPUM_HANDLER_CTXCORE_IN_EBP)
65 {
66 PCPUMCTXCORE pGstCtxCore = CPUMCTX2CORE(&pVM->cpum.s.Guest);
67 PCCPUMCTXCORE pGstCtxCoreSrc = (PCPUMCTXCORE)pRegFrame->ebp;
68 *pGstCtxCore = *pGstCtxCoreSrc;
69 }
70
71 /*
72 * Take action based on what's happended.
73 */
74 switch (uUser & CPUM_HANDLER_TYPEMASK)
75 {
76 case CPUM_HANDLER_GS:
77 // if (!pVM->cpum.s.Guest.ldtr)
78 // {
79 // pRegFrame->gs = 0;
80 // pRegFrame->eip += 6; /* mov gs, [edx + CPUM.Guest.gs] */
81 // return VINF_SUCCESS;
82 // }
83 case CPUM_HANDLER_DS:
84 case CPUM_HANDLER_ES:
85 case CPUM_HANDLER_FS:
86 TRPMGCHyperReturnToHost(pVM, VINF_EM_RAW_STALE_SELECTOR);
87 break;
88
89 /* Make sure we restore the guest context from the interrupt stack frame. */
90 case CPUM_HANDLER_IRET:
91 {
92 PCPUMCTXCORE pGstCtxCore = CPUMCTX2CORE(&pVM->cpum.s.Guest);
93 uint32_t *pEsp = (uint32_t *)pRegFrame->esp;
94
95 /* Sync general purpose registers */
96 *pGstCtxCore = *pRegFrame;
97
98 pGstCtxCore->eip = *pEsp++;
99 pGstCtxCore->cs = (RTSEL)*pEsp++;
100 pGstCtxCore->eflags.u32 = *pEsp++;
101 pGstCtxCore->esp = *pEsp++;
102 pGstCtxCore->ss = (RTSEL)*pEsp++;
103 if (pGstCtxCore->eflags.Bits.u1VM)
104 {
105 pGstCtxCore->es = (RTSEL)*pEsp++;
106 pGstCtxCore->ds = (RTSEL)*pEsp++;
107 pGstCtxCore->fs = (RTSEL)*pEsp++;
108 pGstCtxCore->gs = (RTSEL)*pEsp++;
109 }
110
111 TRPMGCHyperReturnToHost(pVM, VINF_EM_RAW_IRET_TRAP);
112 break;
113 }
114 }
115 return VERR_TRPM_DONT_PANIC;
116}
117
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