VirtualBox

source: vbox/trunk/src/VBox/VMM/testcase/tstCompiler.cpp@ 3723

Last change on this file since 3723 was 2981, checked in by vboxsync, 17 years ago

InnoTek -> innotek: all the headers and comments.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 6.7 KB
Line 
1/* $Id: tstCompiler.cpp 2981 2007-06-01 16:01:28Z vboxsync $ */
2/** @file
3 * Testing how the compiler deals with various things.
4 *
5 * This is testcase requires manual inspection and might not be very useful
6 * in non-optimized compiler modes.
7 */
8
9/*
10 * Copyright (C) 2006-2007 innotek GmbH
11 *
12 * This file is part of VirtualBox Open Source Edition (OSE), as
13 * available from http://www.virtualbox.org. This file is free software;
14 * you can redistribute it and/or modify it under the terms of the GNU
15 * General Public License as published by the Free Software Foundation,
16 * in version 2 as it comes in the "COPYING" file of the VirtualBox OSE
17 * distribution. VirtualBox OSE is distributed in the hope that it will
18 * be useful, but WITHOUT ANY WARRANTY of any kind.
19 *
20 * If you received this file as part of a commercial VirtualBox
21 * distribution, then only the terms of your commercial VirtualBox
22 * license agreement apply instead of the previous paragraph.
23 */
24
25
26/*******************************************************************************
27* Header Files *
28*******************************************************************************/
29#include <VBox/dis.h>
30#include <VBox/disopcode.h>
31#include <iprt/stream.h>
32#include <VBox/x86.h>
33
34#if 1
35
36/**
37 * PAE page table entry.
38 */
39#ifdef __GNUC__
40__extension__ /* Makes it shut up about the 40 bit uint64_t field. */
41#endif
42typedef struct X86PTEPAEBITS64
43{
44 /** Flags whether(=1) or not the page is present. */
45 uint64_t u1Present : 1;
46 /** Read(=0) / Write(=1) flag. */
47 uint64_t u1Write : 1;
48 /** User(=1) / Supervisor(=0) flag. */
49 uint64_t u1User : 1;
50 /** Write Thru flag. If PAT enabled, bit 0 of the index. */
51 uint64_t u1WriteThru : 1;
52 /** Cache disabled flag. If PAT enabled, bit 1 of the index. */
53 uint64_t u1CacheDisable : 1;
54 /** Accessed flag.
55 * Indicates that the page have been read or written to. */
56 uint64_t u1Accessed : 1;
57 /** Dirty flag.
58 * Indicates that the page have been written to. */
59 uint64_t u1Dirty : 1;
60 /** Reserved / If PAT enabled, bit 2 of the index. */
61 uint64_t u1PAT : 1;
62 /** Global flag. (Ignored in all but final level.) */
63 uint64_t u1Global : 1;
64 /** Available for use to system software. */
65 uint64_t u3Available : 3;
66 /** Physical Page number of the next level. */
67 uint64_t u40PageNo : 40;
68 /** MBZ bits */
69 uint64_t u11Reserved : 11;
70 /** No Execute flag. */
71 uint64_t u1NoExecute : 1;
72} X86PTEPAEBITS64;
73/** Pointer to a page table entry. */
74typedef X86PTEPAEBITS64 *PX86PTEPAEBITS64;
75
76/**
77 * PAE Page table entry.
78 */
79typedef union X86PTEPAE64
80{
81 /** Bit field view. */
82 X86PTEPAEBITS64 n;
83 /** Unsigned integer view */
84 X86PGPAEUINT u;
85 /** 32-bit view. */
86 uint32_t au32[2];
87 /** 16-bit view. */
88 uint16_t au16[4];
89 /** 8-bit view. */
90 uint8_t au8[8];
91} X86PTEPAE64;
92/** Pointer to a PAE page table entry. */
93typedef X86PTEPAE64 *PX86PTEPAE64;
94/** @} */
95
96#else /* use current (uint32_t based) PAE structures */
97
98#define X86PTEPAE64 X86PTEPAE
99#define PX86PTEPAE64 PX86PTEPAE
100
101#endif
102
103
104void SetPresent(PX86PTE pPte)
105{
106 pPte->n.u1Present = 1;
107}
108
109
110void SetPresent64(PX86PTEPAE64 pPte)
111{
112 pPte->n.u1Present = 1;
113}
114
115
116void SetWriteDirtyAccessed(PX86PTE pPte)
117{
118 pPte->n.u1Write = 1;
119 pPte->n.u1Dirty = 1;
120 pPte->n.u1Accessed = 1;
121}
122
123
124void SetWriteDirtyAccessed64(PX86PTEPAE64 pPte)
125{
126 pPte->n.u1Write = 1;
127 pPte->n.u1Dirty = 1;
128 pPte->n.u1Accessed = 1;
129}
130
131
132void SetWriteDirtyAccessedClearAVL(PX86PTE pPte)
133{
134 pPte->n.u1Write = 1;
135 pPte->n.u1Dirty = 1;
136 pPte->n.u1Accessed = 1;
137 pPte->u &= ~BIT(10);
138}
139
140
141void SetWriteDirtyAccessedClearAVL64(PX86PTEPAE64 pPte)
142{
143 pPte->n.u1Write = 1;
144 pPte->n.u1Dirty = 1;
145 pPte->n.u1Accessed = 1;
146 pPte->u &= ~BIT(10); /* bad, but serves as demonstration. */
147}
148
149
150bool Test3232(X86PTEPAE Pte)
151{
152 return !!(Pte.u & BIT(10));
153}
154
155
156bool Test3264(X86PTEPAE Pte)
157{
158 return !!(Pte.u & BIT64(10));
159}
160
161
162bool Test6432(X86PTEPAE64 Pte)
163{
164 return !!(Pte.u & BIT(10));
165}
166
167
168bool Test6464(X86PTEPAE64 Pte)
169{
170 return !!(Pte.u & BIT64(10));
171}
172
173
174void Mix6432Consts(PX86PTEPAE64 pPteDst, PX86PTEPAE64 pPteSrc)
175{
176 pPteDst->u = pPteSrc->u & ~(X86_PTE_PAE_PG_MASK | X86_PTE_AVL_MASK | X86_PTE_PAT | X86_PTE_PCD | X86_PTE_PWT);
177}
178
179
180void Mix32Var64Const64Data(PX86PTEPAE64 pPteDst, uint32_t fMask, uint32_t fFlags)
181{
182 pPteDst->u = (pPteDst->u & (fMask | X86_PTE_PAE_PG_MASK)) | (fFlags & ~X86_PTE_PAE_PG_MASK);
183}
184
185
186X86PTE Return32BitStruct(PX86PTE paPT)
187{
188 return paPT[10];
189}
190
191
192X86PTEPAE64 Return64BitStruct(PX86PTEPAE64 paPT)
193{
194 return paPT[10];
195}
196
197
198static void DisasFunction(const char *pszName, PFNRT pv)
199{
200 RTPrintf("tstBitFields: Disassembly of %s:\n", pszName);
201 RTUINTPTR uCur = (RTUINTPTR)pv;
202 RTUINTPTR uCurMax = uCur + 256;
203 DISCPUSTATE Cpu = {0};
204 Cpu.mode = CPUMODE_32BIT;
205 do
206 {
207 char sz[256];
208 uint32_t cbInstr = 0;
209 if (DISInstr(&Cpu, uCur, 0, &cbInstr, sz))
210 {
211 RTPrintf("tstBitFields: %s", sz);
212 uCur += cbInstr;
213 }
214 else
215 {
216 RTPrintf("tstBitFields: %p: %02x - DISInstr failed!\n", uCur, *(uint8_t *)uCur);
217 uCur += 1;
218 }
219 } while (Cpu.pCurInstr->opcode != OP_RETN || uCur > uCurMax);
220}
221
222
223int main()
224{
225 RTPrintf("tstBitFields: This testcase requires manual inspection of the output!\n"
226 "\n"
227 "tstBitFields: The compiler must be able to combine operations when\n"
228 "tstBitFields: optimizing, if not we're screwed.\n"
229 "\n");
230 DisasFunction("SetPresent", (PFNRT)&SetPresent);
231 RTPrintf("\n");
232 DisasFunction("SetPresent64", (PFNRT)&SetPresent64);
233 RTPrintf("\n");
234 DisasFunction("SetWriteDirtyAccessed", (PFNRT)&SetWriteDirtyAccessed);
235 RTPrintf("\n");
236 DisasFunction("SetWriteDirtyAccessed64", (PFNRT)&SetWriteDirtyAccessed64);
237 RTPrintf("\n");
238 DisasFunction("SetWriteDirtyAccessedClearAVL", (PFNRT)&SetWriteDirtyAccessedClearAVL);
239 RTPrintf("\n");
240 DisasFunction("SetWriteDirtyAccessedClearAVL64", (PFNRT)&SetWriteDirtyAccessedClearAVL64);
241 RTPrintf("\n");
242 DisasFunction("Test3232", (PFNRT)&Test3232);
243 DisasFunction("Test3264", (PFNRT)&Test3264);
244 DisasFunction("Test6432", (PFNRT)&Test6432);
245 DisasFunction("Test6464", (PFNRT)&Test6464);
246 RTPrintf("\n");
247 DisasFunction("Mix6432Consts", (PFNRT)&Mix6432Consts);
248 RTPrintf("\n");
249 DisasFunction("Mix32Var64Const64Data", (PFNRT)&Mix32Var64Const64Data);
250 RTPrintf("\n");
251 DisasFunction("Return32BitStruct", (PFNRT)&Return32BitStruct);
252 RTPrintf("\n");
253 DisasFunction("Return64BitStruct", (PFNRT)&Return64BitStruct);
254 return 0;
255}
256
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