VirtualBox

source: vbox/trunk/src/VBox/VMM/testcase/tstHelp.h@ 62596

Last change on this file since 62596 was 62478, checked in by vboxsync, 8 years ago

(C) 2016

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 5.2 KB
Line 
1/* $Id: tstHelp.h 62478 2016-07-22 18:29:06Z vboxsync $ */
2/** @file
3 * VMM testcase - Helper stuff.
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
18#ifndef ___tstHelp_h
19#define ___tstHelp_h
20
21#include <VBox/cdefs.h>
22#include <VBox/vmm/cpum.h>
23
24RT_C_DECLS_BEGIN
25void tstDumpCtx(PCPUMCTX pCtx, const char *pszComment);
26RT_C_DECLS_END
27
28
29/**
30 * Checks the offset of a data member.
31 * @param type Type.
32 * @param off Correct offset.
33 * @param m Member name.
34 */
35#define CHECK_OFF(type, off, m) \
36 do { \
37 if (off != RT_OFFSETOF(type, m)) \
38 { \
39 printf("error! %#010x %s Off by %d!! (expected off=%#x)\n", \
40 RT_OFFSETOF(type, m), #type "." #m, off - RT_OFFSETOF(type, m), (int)off); \
41 rc++; \
42 } \
43 /*else */ \
44 /*printf("%#08x %s\n", RT_OFFSETOF(type, m), #m);*/ \
45 } while (0)
46
47/**
48 * Checks the size of type.
49 * @param type Type.
50 * @param size Correct size.
51 */
52#define CHECK_SIZE(type, size) \
53 do { \
54 if (size != sizeof(type)) \
55 { \
56 printf("error! sizeof(%s): %#x (%d) Off by %d!! (expected %#x)\n", \
57 #type, (int)sizeof(type), (int)sizeof(type), (int)(sizeof(type) - size), (int)size); \
58 rc++; \
59 } \
60 else \
61 printf("info: sizeof(%s): %#x (%d)\n", #type, (int)sizeof(type), (int)sizeof(type)); \
62 } while (0)
63
64/**
65 * Checks the alignment of a struct member.
66 */
67#define CHECK_MEMBER_ALIGNMENT(strct, member, align) \
68 do \
69 { \
70 if (RT_OFFSETOF(strct, member) & ((align) - 1) ) \
71 { \
72 printf("error! %s::%s offset=%#x (%u) expected alignment %#x, meaning %#x (%u) off\n", \
73 #strct, #member, \
74 (unsigned)RT_OFFSETOF(strct, member), \
75 (unsigned)RT_OFFSETOF(strct, member), \
76 (unsigned)(align), \
77 (unsigned)(((align) - RT_OFFSETOF(strct, member)) & ((align) - 1)), \
78 (unsigned)(((align) - RT_OFFSETOF(strct, member)) & ((align) - 1)) ); \
79 rc++; \
80 } \
81 } while (0)
82
83/**
84 * Checks that the size of a type is aligned correctly.
85 */
86#define CHECK_SIZE_ALIGNMENT(type, align) \
87 do { \
88 if (RT_ALIGN_Z(sizeof(type), (align)) != sizeof(type)) \
89 { \
90 printf("error! %s size=%#x (%u), align=%#x %#x (%u) bytes off\n", \
91 #type, \
92 (unsigned)sizeof(type), \
93 (unsigned)sizeof(type), \
94 (align), \
95 (unsigned)RT_ALIGN_Z(sizeof(type), align) - (unsigned)sizeof(type), \
96 (unsigned)RT_ALIGN_Z(sizeof(type), align) - (unsigned)sizeof(type)); \
97 rc++; \
98 } \
99 } while (0)
100
101/**
102 * Checks that a internal struct padding is big enough.
103 */
104#define CHECK_PADDING(strct, member, align) \
105 do \
106 { \
107 strct *p = NULL; NOREF(p); \
108 if (sizeof(p->member.s) > sizeof(p->member.padding)) \
109 { \
110 printf("error! padding of %s::%s is too small, padding=%d struct=%d correct=%d\n", #strct, #member, \
111 (int)sizeof(p->member.padding), (int)sizeof(p->member.s), (int)RT_ALIGN_Z(sizeof(p->member.s), (align))); \
112 rc++; \
113 } \
114 else if (RT_ALIGN_Z(sizeof(p->member.padding), (align)) != sizeof(p->member.padding)) \
115 { \
116 printf("error! padding of %s::%s is misaligned, padding=%d correct=%d\n", #strct, #member, \
117 (int)sizeof(p->member.padding), (int)RT_ALIGN_Z(sizeof(p->member.s), (align))); \
118 rc++; \
119 } \
120 } while (0)
121
122/**
123 * Checks that a internal struct padding is big enough.
124 */
125#define CHECK_PADDING2(strct) \
126 do \
127 { \
128 strct *p = NULL; NOREF(p); \
129 if (sizeof(p->s) > sizeof(p->padding)) \
130 { \
131 printf("error! padding of %s is too small, padding=%d struct=%d correct=%d\n", #strct, \
132 (int)sizeof(p->padding), (int)sizeof(p->s), (int)RT_ALIGN_Z(sizeof(p->s), 64)); \
133 rc++; \
134 } \
135 } while (0)
136
137/**
138 * Checks that a internal struct padding is big enough.
139 */
140#define CHECK_PADDING3(strct, member, pad_member) \
141 do \
142 { \
143 strct *p = NULL; NOREF(p); \
144 if (sizeof(p->member) > sizeof(p->pad_member)) \
145 { \
146 printf("error! padding of %s::%s is too small, padding=%d struct=%d\n", #strct, #member, \
147 (int)sizeof(p->pad_member), (int)sizeof(p->member)); \
148 rc++; \
149 } \
150 } while (0)
151
152/**
153 * Checks that an expression is true.
154 */
155#define CHECK_EXPR(expr) \
156 do \
157 { \
158 if (!(expr)) \
159 { \
160 printf("error! '%s' failed! (line %d)\n", #expr, __LINE__); \
161 rc++; \
162 } \
163 } while (0)
164
165
166#endif
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