VirtualBox

source: vbox/trunk/src/VBox/Devices/testcase/tstDeviceStructSize.cpp@ 11147

Last change on this file since 11147 was 11145, checked in by vboxsync, 16 years ago

#1865: ATA and AHCI.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 7.8 KB
Line 
1/* $Id: tstDeviceStructSize.cpp 11145 2008-08-05 21:06:08Z vboxsync $ */
2/** @file
3 * tstDeviceStructSize - testcase for check structure sizes/alignment
4 * and to verify that HC and GC uses the same
5 * representation of the structures.
6 */
7
8/*
9 * Copyright (C) 2006-2007 Sun Microsystems, Inc.
10 *
11 * This file is part of VirtualBox Open Source Edition (OSE), as
12 * available from http://www.virtualbox.org. This file is free software;
13 * you can redistribute it and/or modify it under the terms of the GNU
14 * General Public License (GPL) as published by the Free Software
15 * Foundation, in version 2 as it comes in the "COPYING" file of the
16 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
17 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
18 *
19 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
20 * Clara, CA 95054 USA or visit http://www.sun.com if you need
21 * additional information or have any questions.
22 */
23
24/*******************************************************************************
25* Header Files *
26*******************************************************************************/
27#include <VBox/types.h>
28#include <VBox/x86.h>
29
30#define VBOX_DEVICE_STRUCT_TESTCASE
31#undef LOG_GROUP
32#include "Bus/DevPCI.cpp"
33#undef LOG_GROUP
34#include "Graphics/DevVGA.cpp"
35#undef LOG_GROUP
36#include "Input/DevPS2.cpp"
37#undef LOG_GROUP
38#include "Network/DevPCNet.cpp"
39#undef LOG_GROUP
40#include "PC/DevACPI.cpp"
41#undef LOG_GROUP
42#include "PC/DevPIC.cpp"
43#undef LOG_GROUP
44#include "PC/DevPit-i8254.cpp"
45#undef LOG_GROUP
46#include "PC/DevRTC.cpp"
47#undef LOG_GROUP
48#include "PC/DevAPIC.cpp"
49#undef LOG_GROUP
50#include "Storage/DevATA.cpp"
51#ifdef VBOX_WITH_USB
52# undef LOG_GROUP
53# include "USB/DevOHCI.cpp"
54# include "USB/DevEHCI.cpp"
55#endif
56#undef LOG_GROUP
57#include "VMMDev/VBoxDev.cpp"
58#undef LOG_GROUP
59#include "Serial/DevSerial.cpp"
60#ifdef VBOX_WITH_AHCI
61# undef LOG_GROUP
62# include "Storage/DevAHCI.cpp"
63#endif
64#ifdef VBOX_WITH_E1000
65# undef LOG_GROUP
66# include "Network/DevE1000.cpp"
67#endif
68
69#include <stdio.h>
70
71
72/*******************************************************************************
73* Defined Constants And Macros *
74*******************************************************************************/
75/**
76 * Checks the offset of a data member.
77 * @param type Type.
78 * @param off Correct offset.
79 * @param m Member name.
80 */
81#define CHECK_OFF(type, off, m) \
82 do { \
83 if (off != RT_OFFSETOF(type, m)) \
84 { \
85 printf("%#010x %s Off by %d!! (off=%#x)\n", RT_OFFSETOF(type, m), #type "." #m, off - RT_OFFSETOF(type, m), off); \
86 rc++; \
87 } \
88 /*else */ \
89 /*printf("%#08x %s\n", RT_OFFSETOF(type, m), #m);*/ \
90 } while (0)
91
92/**
93 * Checks the size of type.
94 * @param type Type.
95 * @param size Correct size.
96 */
97#define CHECK_SIZE(type, size) \
98 do { \
99 if (size != sizeof(type)) \
100 { \
101 printf("sizeof(%s): %#x (%d) Off by %d!!\n", #type, (int)sizeof(type), (int)sizeof(type), (int)(sizeof(type) - size)); \
102 rc++; \
103 } \
104 else \
105 printf("sizeof(%s): %#x (%d)\n", #type, (int)sizeof(type), (int)sizeof(type)); \
106 } while (0)
107
108/**
109 * Checks the alignment of a struct member.
110 */
111#define CHECK_MEMBER_ALIGNMENT(strct, member, align) \
112 do \
113 { \
114 if ( RT_OFFSETOF(strct, member) & ((align) - 1) ) \
115 { \
116 printf("%s::%s offset=%d expected alignment %d, meaning %d off\n", #strct, #member, RT_OFFSETOF(strct, member), \
117 align, RT_OFFSETOF(strct, member) & (align - 1)); \
118 rc++; \
119 } \
120 } while (0)
121
122/**
123 * Checks that the size of a type is aligned correctly.
124 */
125#define CHECK_SIZE_ALIGNMENT(type, align) \
126 do { \
127 if (RT_ALIGN_Z(sizeof(type), (align)) != sizeof(type)) \
128 { \
129 printf("%s size=%#x, align=%#x %#x bytes off\n", #type, (int)sizeof(type), (align), (int)RT_ALIGN_Z(sizeof(type), align) - (int)sizeof(type)); \
130 rc++; \
131 } \
132 } while (0)
133
134/**
135 * Checks that a internal struct padding is big enough.
136 */
137#define CHECK_PADDING(strct, member) \
138 do \
139 { \
140 strct *p; \
141 if (sizeof(p->member.s) > sizeof(p->member.padding)) \
142 { \
143 printf("padding of %s::%s is too small, padding=%d struct=%d correct=%d\n", #strct, #member, \
144 (int)sizeof(p->member.padding), (int)sizeof(p->member.s), (int)RT_ALIGN_Z(sizeof(p->member.s), 32)); \
145 rc++; \
146 } \
147 } while (0)
148
149/**
150 * Checks that a internal struct padding is big enough.
151 */
152#define CHECK_PADDING2(strct) \
153 do \
154 { \
155 strct *p; \
156 if (sizeof(p->s) > sizeof(p->padding)) \
157 { \
158 printf("padding of %s is too small, padding=%d struct=%d correct=%d\n", #strct, \
159 (int)sizeof(p->padding), (int)sizeof(p->s), (int)RT_ALIGN_Z(sizeof(p->s), 32)); \
160 rc++; \
161 } \
162 } while (0)
163
164/**
165 * Checks that a internal struct padding is big enough.
166 */
167#define CHECK_PADDING3(strct, member, pad_member) \
168 do \
169 { \
170 strct *p; \
171 if (sizeof(p->member) > sizeof(p->pad_member)) \
172 { \
173 printf("padding of %s::%s is too small, padding=%d struct=%d\n", #strct, #member, \
174 (int)sizeof(p->pad_member), (int)sizeof(p->member)); \
175 rc++; \
176 } \
177 } while (0)
178
179/**
180 * Prints the offset of a struct member.
181 */
182#define PRINT_OFFSET(strct, member) \
183 do \
184 { \
185 printf("%s::%s offset %d sizeof %d\n", #strct, #member, (int)RT_OFFSETOF(strct, member), (int)RT_SIZEOFMEMB(strct, member)); \
186 } while (0)
187
188
189int main()
190{
191 int rc = 0;
192 printf("tstDeviceStructSize: TESTING\n");
193
194 /* Assert sanity */
195 CHECK_SIZE(uint128_t, 128/8);
196 CHECK_SIZE(int128_t, 128/8);
197 CHECK_SIZE(uint64_t, 64/8);
198 CHECK_SIZE(int64_t, 64/8);
199 CHECK_SIZE(uint32_t, 32/8);
200 CHECK_SIZE(int32_t, 32/8);
201 CHECK_SIZE(uint16_t, 16/8);
202 CHECK_SIZE(int16_t, 16/8);
203 CHECK_SIZE(uint8_t, 8/8);
204 CHECK_SIZE(int8_t, 8/8);
205
206 /*
207 * Misc alignment checks.
208 */
209 CHECK_MEMBER_ALIGNMENT(PDMDEVINS, achInstanceData, 32);
210 CHECK_MEMBER_ALIGNMENT(PCIDEVICE, Int.s, 16);
211 CHECK_MEMBER_ALIGNMENT(PCIDEVICE, Int.s.aIORegions, 16);
212 CHECK_MEMBER_ALIGNMENT(PCIBUS, devices, 16);
213 CHECK_MEMBER_ALIGNMENT(PCIGLOBALS, pci_irq_levels, 16);
214 CHECK_MEMBER_ALIGNMENT(PCNetState, u64LastPoll, 8);
215 CHECK_MEMBER_ALIGNMENT(VGASTATE, Dev, 8);
216 CHECK_MEMBER_ALIGNMENT(VGASTATE, StatGCMemoryRead, 8);
217#ifdef VBOX_WITH_STATISTICS
218// CHECK_MEMBER_ALIGNMENT(PCNetState, StatMMIOReadGC, 8);
219 CHECK_MEMBER_ALIGNMENT(DEVPIC, StatSetIrqGC, 8);
220 CHECK_MEMBER_ALIGNMENT(APICState, StatMMIOReadGC, 8);
221 CHECK_MEMBER_ALIGNMENT(IOAPICState, StatMMIOReadGC, 8);
222 CHECK_MEMBER_ALIGNMENT(IOAPICState, StatMMIOReadGC, 8);
223#endif
224 CHECK_MEMBER_ALIGNMENT(PITState, StatPITIrq, 8);
225 CHECK_MEMBER_ALIGNMENT(ATADevState, cTotalSectors, 8);
226 CHECK_MEMBER_ALIGNMENT(ATADevState, StatATADMA, 8);
227 CHECK_MEMBER_ALIGNMENT(ATADevState, StatReads, 8);
228 CHECK_MEMBER_ALIGNMENT(ATACONTROLLER, StatAsyncOps, 8);
229#ifdef VBOX_WITH_USB
230 CHECK_MEMBER_ALIGNMENT(OHCI, RootHub, 8);
231# ifdef VBOX_WITH_STATISTICS
232 CHECK_MEMBER_ALIGNMENT(OHCI, StatCanceledIsocUrbs, 8);
233# endif
234 CHECK_MEMBER_ALIGNMENT(EHCI, RootHub, 8);
235# ifdef VBOX_WITH_STATISTICS
236 CHECK_MEMBER_ALIGNMENT(EHCI, StatCanceledIsocUrbs, 8);
237# endif
238#endif
239
240
241 /*
242 * Compare HC and GC.
243 */
244 printf("tstDeviceStructSize: Comparing HC and GC...\n");
245#include "tstDeviceStructSizeGC.h"
246
247 /*
248 * Report result.
249 */
250 if (rc)
251 printf("tstDeviceStructSize: FAILURE - %d errors\n", rc);
252 else
253 printf("tstDeviceStructSize: SUCCESS\n");
254 return rc;
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