VirtualBox

source: vbox/trunk/src/VBox/VMM/testcase/tstVMStructDTrace.cpp@ 69221

Last change on this file since 69221 was 69111, checked in by vboxsync, 7 years ago

(C) year

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 4.0 KB
Line 
1/* $Id: tstVMStructDTrace.cpp 69111 2017-10-17 14:26:02Z vboxsync $ */
2/** @file
3 * tstVMMStructDTrace - Generates the DTrace test scripts for check that C/C++
4 * and DTrace has the same understand of the VM, VMCPU and
5 * other structures.
6 */
7
8/*
9 * Copyright (C) 2006-2017 Oracle Corporation
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
20
21/*********************************************************************************************************************************
22* Header Files *
23*********************************************************************************************************************************/
24#define IN_TSTVMSTRUCT 1
25#define IN_TSTVMSTRUCTGC 1
26#include <VBox/vmm/cfgm.h>
27#include <VBox/vmm/cpum.h>
28#include <VBox/vmm/mm.h>
29#include <VBox/vmm/pgm.h>
30#include <VBox/vmm/selm.h>
31#include <VBox/vmm/trpm.h>
32#include <VBox/vmm/vmm.h>
33#include <VBox/vmm/stam.h>
34#include "PDMInternal.h"
35#include <VBox/vmm/pdm.h>
36#include "CFGMInternal.h"
37#include "CPUMInternal.h"
38#include "MMInternal.h"
39#include "PGMInternal.h"
40#include "SELMInternal.h"
41#include "TRPMInternal.h"
42#include "TMInternal.h"
43#include "IOMInternal.h"
44#include "REMInternal.h"
45#include "HMInternal.h"
46#include "APICInternal.h"
47#include "VMMInternal.h"
48#include "DBGFInternal.h"
49#include "GIMInternal.h"
50#include "STAMInternal.h"
51#include "EMInternal.h"
52#include "IEMInternal.h"
53#include "REMInternal.h"
54#ifdef VBOX_WITH_RAW_MODE
55# include "CSAMInternal.h"
56# include "PATMInternal.h"
57#endif
58#include <VBox/vmm/vm.h>
59#include <VBox/param.h>
60#include <iprt/x86.h>
61#include <iprt/assert.h>
62
63/* we don't use iprt here because we wish to run without trouble. */
64#include <stdio.h>
65
66
67int main()
68{
69 /*
70 * File header and pragmas.
71 */
72 printf("#pragma D option quiet\n");
73// printf("#pragma D depends_on library x86.d\n");
74// printf("#pragma D depends_on library cpumctx.d\n");
75// printf("#pragma D depends_on library CPUMInternal.d\n");
76// printf("#pragma D depends_on library vm.d\n");
77
78 printf("int g_cErrors;\n"
79 "\n"
80 "dtrace:::BEGIN\n"
81 "{\n"
82 " g_cErrors = 0;\n"
83 "}\n"
84 "\n"
85 );
86
87 /*
88 * Test generator macros.
89 */
90#define GEN_CHECK_SIZE(s) \
91 printf("dtrace:::BEGIN\n" \
92 "/sizeof(" #s ") != %u/\n" \
93 "{\n" \
94 " printf(\"error: sizeof(" #s ") should be %u, not %%u\\n\", sizeof(" #s "));\n" \
95 " g_cErrors++;\n" \
96 "}\n" \
97 "\n", \
98 (unsigned)sizeof(s), (unsigned)sizeof(s))
99
100#if 1
101# define GEN_CHECK_OFF(s, m) \
102 printf("dtrace:::BEGIN\n" \
103 "/offsetof(" #s ", " #m ") != %u/\n" \
104 "{\n" \
105 " printf(\"error: offsetof(" #s ", " #m ") should be %u, not %%u\\n\", offsetof(" #s ", " #m "));\n" \
106 " g_cErrors++;\n" \
107 "}\n" \
108 "\n", \
109 (unsigned)RT_OFFSETOF(s, m), (unsigned)RT_OFFSETOF(s, m))
110
111#else
112# define GEN_CHECK_OFF(s, m) do { } while (0)
113#endif
114
115#define GEN_CHECK_OFF_DOT(s, m) do { } while (0)
116
117
118 /*
119 * Body.
120 */
121#define VBOX_FOR_DTRACE_LIB
122#include "tstVMStruct.h"
123
124 /*
125 * Footer.
126 */
127 printf("dtrace:::BEGIN\n"
128 "/g_cErrors != 0/\n"
129 "{\n"
130 " printf(\"%%u errors!\\n\", g_cErrors);\n"
131 " exit(1);\n"
132 "}\n"
133 "\n"
134 "dtrace:::BEGIN\n"
135 "{\n"
136 " printf(\"Success!\\n\");\n"
137 " exit(0);\n"
138 "}\n"
139 "\n"
140 );
141
142
143 return (0);
144}
145
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