VirtualBox

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

Last change on this file since 82968 was 82968, checked in by vboxsync, 5 years ago

Copyright year updates by scm.

  • 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 82968 2020-02-04 10:35:17Z 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-2020 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 "HMInternal.h"
45#include "APICInternal.h"
46#include "VMMInternal.h"
47#include "DBGFInternal.h"
48#include "GIMInternal.h"
49#include "STAMInternal.h"
50#include "EMInternal.h"
51#include "IEMInternal.h"
52#include "NEMInternal.h"
53#ifdef VBOX_WITH_RAW_MODE
54# include "CSAMInternal.h"
55# include "PATMInternal.h"
56#endif
57#include <VBox/vmm/vm.h>
58#include <VBox/param.h>
59#include <iprt/x86.h>
60#include <iprt/assert.h>
61
62/* we don't use iprt here because we wish to run without trouble. */
63#include <stdio.h>
64
65
66int main()
67{
68 /*
69 * File header and pragmas.
70 */
71 printf("#pragma D option quiet\n");
72// printf("#pragma D depends_on library x86.d\n");
73// printf("#pragma D depends_on library cpumctx.d\n");
74// printf("#pragma D depends_on library CPUMInternal.d\n");
75// printf("#pragma D depends_on library vm.d\n");
76
77 printf("int g_cErrors;\n"
78 "\n"
79 "dtrace:::BEGIN\n"
80 "{\n"
81 " g_cErrors = 0;\n"
82 "}\n"
83 "\n"
84 );
85
86 /*
87 * Test generator macros.
88 */
89#define GEN_CHECK_SIZE(s) \
90 printf("dtrace:::BEGIN\n" \
91 "/sizeof(" #s ") != %u/\n" \
92 "{\n" \
93 " printf(\"error: sizeof(" #s ") should be %u, not %%u\\n\", sizeof(" #s "));\n" \
94 " g_cErrors++;\n" \
95 "}\n" \
96 "\n", \
97 (unsigned)sizeof(s), (unsigned)sizeof(s))
98
99#if 1
100# define GEN_CHECK_OFF(s, m) \
101 printf("dtrace:::BEGIN\n" \
102 "/offsetof(" #s ", " #m ") != %u/\n" \
103 "{\n" \
104 " printf(\"error: offsetof(" #s ", " #m ") should be %u, not %%u\\n\", offsetof(" #s ", " #m "));\n" \
105 " g_cErrors++;\n" \
106 "}\n" \
107 "\n", \
108 (unsigned)RT_OFFSETOF(s, m), (unsigned)RT_OFFSETOF(s, m))
109
110#else
111# define GEN_CHECK_OFF(s, m) do { } while (0)
112#endif
113
114#define GEN_CHECK_OFF_DOT(s, m) do { } while (0)
115
116
117 /*
118 * Body.
119 */
120#define VBOX_FOR_DTRACE_LIB
121#include "tstVMStruct.h"
122
123 /*
124 * Footer.
125 */
126 printf("dtrace:::BEGIN\n"
127 "/g_cErrors != 0/\n"
128 "{\n"
129 " printf(\"%%u errors!\\n\", g_cErrors);\n"
130 " exit(1);\n"
131 "}\n"
132 "\n"
133 "dtrace:::BEGIN\n"
134 "{\n"
135 " printf(\"Success!\\n\");\n"
136 " exit(0);\n"
137 "}\n"
138 "\n"
139 );
140
141
142 return (0);
143}
144
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