VirtualBox

source: vbox/trunk/src/VBox/VMM/VMMR0/TRPMR0.cpp@ 20961

Last change on this file since 20961 was 19207, checked in by vboxsync, 15 years ago

Forward-ported r46552: TRPMR0.cpp: Workaround for darwin/amd64 tripple fault.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 3.8 KB
Line 
1/* $Id: TRPMR0.cpp 19207 2009-04-27 12:05:38Z vboxsync $ */
2/** @file
3 * TRPM - The Trap Monitor - HC Ring 0
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_TRPM
27#include <VBox/trpm.h>
28#include "TRPMInternal.h"
29#include <VBox/vm.h>
30#include <VBox/vmm.h>
31#include <VBox/err.h>
32#include <VBox/log.h>
33#include <iprt/assert.h>
34#include <iprt/asm.h>
35
36
37/**
38 * Dispatches an interrupt that arrived while we were in the guest context.
39 *
40 * @param pVM The VM handle.
41 * @remark Must be called with interrupts disabled.
42 */
43VMMR0DECL(void) TRPMR0DispatchHostInterrupt(PVM pVM)
44{
45 /*
46 * Get the active interrupt vector number.
47 */
48 PVMCPU pVCpu = VMMGetCpu0(pVM);
49 RTUINT uActiveVector = pVCpu->trpm.s.uActiveVector;
50 pVCpu->trpm.s.uActiveVector = ~0;
51 AssertMsgReturnVoid(uActiveVector < 256, ("uActiveVector=%#x is invalid! (More assertions to come, please enjoy!)\n", uActiveVector));
52
53#if HC_ARCH_BITS == 64 && defined(RT_OS_DARWIN)
54 /*
55 * Do it the simple and safe way.
56 *
57 * This is a workaround for an optimization bug in the code below
58 * or a gcc 4.2 on mac (snow leopard seed 314).
59 */
60 trpmR0DispatchHostInterruptSimple(uActiveVector);
61
62#else /* The complicated way: */
63
64# ifdef VBOX_WITH_HYBRID_32BIT_KERNEL
65 /*
66 * Check if we're in long mode or not.
67 */
68 if ( (ASMCpuId_EDX(0x80000001) & X86_CPUID_AMD_FEATURE_EDX_LONG_MODE)
69 && (ASMRdMsr(MSR_K6_EFER) & MSR_K6_EFER_LMA))
70 {
71 trpmR0DispatchHostInterruptSimple(uActiveVector);
72 return;
73 }
74# endif
75
76 /*
77 * Get the handler pointer (16:32 ptr) / (16:48 ptr).
78 */
79 RTIDTR Idtr;
80 ASMGetIDTR(&Idtr);
81# if HC_ARCH_BITS == 32
82 PVBOXIDTE pIdte = &((PVBOXIDTE)Idtr.pIdt)[uActiveVector];
83# else
84 PVBOXIDTE pIdte = &((PVBOXIDTE)Idtr.pIdt)[uActiveVector * 2];
85# endif
86 AssertMsgReturnVoid(pIdte->Gen.u1Present, ("The IDT entry (%d) is not present!\n", uActiveVector));
87 AssertMsgReturnVoid( pIdte->Gen.u3Type1 == VBOX_IDTE_TYPE1
88 || pIdte->Gen.u5Type2 == VBOX_IDTE_TYPE2_INT_32,
89 ("The IDT entry (%d) is not 32-bit int gate! type1=%#x type2=%#x\n",
90 uActiveVector, pIdte->Gen.u3Type1, pIdte->Gen.u5Type2));
91# if HC_ARCH_BITS == 32
92 RTFAR32 pfnHandler;
93 pfnHandler.off = VBOXIDTE_OFFSET(*pIdte);
94 pfnHandler.sel = pIdte->Gen.u16SegSel;
95
96 const RTR0UINTREG uRSP = ~(RTR0UINTREG)0;
97
98# else /* 64-bit: */
99 RTFAR64 pfnHandler;
100 pfnHandler.off = VBOXIDTE_OFFSET(*pIdte);
101 pfnHandler.off |= (uint64_t)(*(uint32_t *)(pIdte + 1)) << 32; //cleanup!
102 pfnHandler.sel = pIdte->Gen.u16SegSel;
103
104 RTR0UINTREG uRSP = ~(RTR0UINTREG)0;
105 if (pIdte->au32[1] & 0x7 /*IST*/)
106 {
107 trpmR0DispatchHostInterruptSimple(uActiveVector);
108 return;
109 }
110
111# endif
112
113 /*
114 * Dispatch it.
115 */
116 trpmR0DispatchHostInterrupt(pfnHandler.off, pfnHandler.sel, uRSP);
117#endif
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