VirtualBox

source: vbox/trunk/src/VBox/HostDrivers/Support/testcase/tstInt.cpp@ 67954

Last change on this file since 67954 was 62490, checked in by vboxsync, 8 years ago

(C) 2016

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 7.9 KB
Line 
1/* $Id: tstInt.cpp 62490 2016-07-22 18:41:49Z vboxsync $ */
2/** @file
3 * SUP Testcase - Test the interrupt gate feature of the support library.
4 */
5
6/*
7 * Copyright (C) 2006-2016 Oracle Corporation
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 * The contents of this file may alternatively be used under the terms
18 * of the Common Development and Distribution License Version 1.0
19 * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
20 * VirtualBox OSE distribution, in which case the provisions of the
21 * CDDL are applicable instead of those of the GPL.
22 *
23 * You may elect to license modified versions of this file under the
24 * terms and conditions of either the GPL or the CDDL or both.
25 */
26
27
28/*********************************************************************************************************************************
29* Header Files *
30*********************************************************************************************************************************/
31#include <VBox/sup.h>
32#include <VBox/vmm/vm.h>
33#include <VBox/vmm/vmm.h>
34#include <VBox/err.h>
35#include <VBox/param.h>
36#include <iprt/asm-amd64-x86.h>
37#include <iprt/initterm.h>
38#include <iprt/stream.h>
39#include <iprt/string.h>
40#include <iprt/alloc.h>
41#include <iprt/time.h>
42#include <iprt/path.h>
43
44
45int main(int argc, char **argv)
46{
47 int rcRet = 0;
48 int i;
49 int rc;
50 int cIterations = argc > 1 ? RTStrToUInt32(argv[1]) : 32;
51 if (cIterations == 0)
52 cIterations = 64;
53
54 /*
55 * Init.
56 */
57 RTR3InitExe(argc, &argv, 0);
58 PSUPDRVSESSION pSession;
59 rc = SUPR3Init(&pSession);
60 rcRet += rc != 0;
61 RTPrintf("tstInt: SUPR3Init -> rc=%Rrc\n", rc);
62 char szFile[RTPATH_MAX];
63 if (!rc)
64 {
65 rc = RTPathExecDir(szFile, sizeof(szFile) - sizeof("/VMMR0.r0"));
66 }
67 char szAbsFile[RTPATH_MAX];
68 if (RT_SUCCESS(rc))
69 {
70 strcat(szFile, "/VMMR0.r0");
71 rc = RTPathAbs(szFile, szAbsFile, sizeof(szAbsFile));
72 }
73 if (RT_SUCCESS(rc))
74 {
75 /*
76 * Load VMM code.
77 */
78 rc = SUPR3LoadVMM(szAbsFile);
79 if (RT_SUCCESS(rc))
80 {
81 /*
82 * Create a fake 'VM'.
83 */
84 PVMR0 pVMR0 = NIL_RTR0PTR;
85 PVM pVM = NULL;
86 const unsigned cPages = RT_ALIGN_Z(sizeof(*pVM), PAGE_SIZE) >> PAGE_SHIFT;
87 PSUPPAGE paPages = (PSUPPAGE)RTMemAllocZ(cPages * sizeof(SUPPAGE));
88 if (paPages)
89 rc = SUPR3LowAlloc(cPages, (void **)&pVM, &pVMR0, &paPages[0]);
90 else
91 rc = VERR_NO_MEMORY;
92 if (RT_SUCCESS(rc))
93 {
94 pVM->pVMRC = 0;
95 pVM->pVMR3 = pVM;
96 pVM->pVMR0 = pVMR0;
97 pVM->paVMPagesR3 = paPages;
98 pVM->pSession = pSession;
99 pVM->enmVMState = VMSTATE_CREATED;
100
101 rc = SUPR3SetVMForFastIOCtl(pVMR0);
102 if (!rc)
103 {
104
105 /*
106 * Call VMM code with invalid function.
107 */
108 for (i = cIterations; i > 0; i--)
109 {
110 rc = SUPR3CallVMMR0(pVMR0, NIL_VMCPUID, VMMR0_DO_SLOW_NOP, NULL);
111 if (rc != VINF_SUCCESS)
112 {
113 RTPrintf("tstInt: SUPR3CallVMMR0 -> rc=%Rrc i=%d Expected VINF_SUCCESS!\n", rc, i);
114 rcRet++;
115 break;
116 }
117 }
118 RTPrintf("tstInt: Performed SUPR3CallVMMR0 %d times (rc=%Rrc)\n", cIterations, rc);
119
120 /*
121 * The fast path.
122 */
123 if (rc == VINF_SUCCESS)
124 {
125 RTTimeNanoTS();
126 uint64_t StartTS = RTTimeNanoTS();
127 uint64_t StartTick = ASMReadTSC();
128 uint64_t MinTicks = UINT64_MAX;
129 for (i = 0; i < 1000000; i++)
130 {
131 uint64_t OneStartTick = ASMReadTSC();
132 rc = SUPR3CallVMMR0Fast(pVMR0, VMMR0_DO_NOP, 0);
133 uint64_t Ticks = ASMReadTSC() - OneStartTick;
134 if (Ticks < MinTicks)
135 MinTicks = Ticks;
136
137 if (RT_UNLIKELY(rc != VINF_SUCCESS))
138 {
139 RTPrintf("tstInt: SUPR3CallVMMR0Fast -> rc=%Rrc i=%d Expected VINF_SUCCESS!\n", rc, i);
140 rcRet++;
141 break;
142 }
143 }
144 uint64_t Ticks = ASMReadTSC() - StartTick;
145 uint64_t NanoSecs = RTTimeNanoTS() - StartTS;
146
147 RTPrintf("tstInt: SUPR3CallVMMR0Fast - %d iterations in %llu ns / %llu ticks. %llu ns / %#llu ticks per iteration. Min %llu ticks.\n",
148 i, NanoSecs, Ticks, NanoSecs / i, Ticks / i, MinTicks);
149
150 /*
151 * The ordinary path.
152 */
153 RTTimeNanoTS();
154 StartTS = RTTimeNanoTS();
155 StartTick = ASMReadTSC();
156 MinTicks = UINT64_MAX;
157 for (i = 0; i < 1000000; i++)
158 {
159 uint64_t OneStartTick = ASMReadTSC();
160 rc = SUPR3CallVMMR0Ex(pVMR0, NIL_VMCPUID, VMMR0_DO_SLOW_NOP, 0, NULL);
161 uint64_t OneTicks = ASMReadTSC() - OneStartTick;
162 if (OneTicks < MinTicks)
163 MinTicks = OneTicks;
164
165 if (RT_UNLIKELY(rc != VINF_SUCCESS))
166 {
167 RTPrintf("tstInt: SUPR3CallVMMR0Ex -> rc=%Rrc i=%d Expected VINF_SUCCESS!\n", rc, i);
168 rcRet++;
169 break;
170 }
171 }
172 Ticks = ASMReadTSC() - StartTick;
173 NanoSecs = RTTimeNanoTS() - StartTS;
174
175 RTPrintf("tstInt: SUPR3CallVMMR0Ex - %d iterations in %llu ns / %llu ticks. %llu ns / %#llu ticks per iteration. Min %llu ticks.\n",
176 i, NanoSecs, Ticks, NanoSecs / i, Ticks / i, MinTicks);
177 }
178 }
179 else
180 {
181 RTPrintf("tstInt: SUPR3SetVMForFastIOCtl failed: %Rrc\n", rc);
182 rcRet++;
183 }
184 }
185 else
186 {
187 RTPrintf("tstInt: SUPR3ContAlloc(%#zx,,) failed\n", sizeof(*pVM));
188 rcRet++;
189 }
190
191 /*
192 * Unload VMM.
193 */
194 rc = SUPR3UnloadVMM();
195 if (rc)
196 {
197 RTPrintf("tstInt: SUPR3UnloadVMM failed with rc=%Rrc\n", rc);
198 rcRet++;
199 }
200 }
201 else
202 {
203 RTPrintf("tstInt: SUPR3LoadVMM failed with rc=%Rrc\n", rc);
204 rcRet++;
205 }
206
207 /*
208 * Terminate.
209 */
210 rc = SUPR3Term(false /*fForced*/);
211 rcRet += rc != 0;
212 RTPrintf("tstInt: SUPR3Term -> rc=%Rrc\n", rc);
213 }
214
215 return !!rc;
216}
217
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use