diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-11 08:17:27 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-11 08:17:27 +0000 |
commit | f215e02bf85f68d3a6106c2a1f4f7f063f819064 (patch) | |
tree | 6bb5b92c046312c4e95ac2620b10ddf482d3fa8b /src/VBox/VMM/testcase/tstVMStructDTrace.cpp | |
parent | Initial commit. (diff) | |
download | virtualbox-f215e02bf85f68d3a6106c2a1f4f7f063f819064.tar.xz virtualbox-f215e02bf85f68d3a6106c2a1f4f7f063f819064.zip |
Adding upstream version 7.0.14-dfsg.upstream/7.0.14-dfsg
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/VBox/VMM/testcase/tstVMStructDTrace.cpp')
-rw-r--r-- | src/VBox/VMM/testcase/tstVMStructDTrace.cpp | 152 |
1 files changed, 152 insertions, 0 deletions
diff --git a/src/VBox/VMM/testcase/tstVMStructDTrace.cpp b/src/VBox/VMM/testcase/tstVMStructDTrace.cpp new file mode 100644 index 00000000..272a798c --- /dev/null +++ b/src/VBox/VMM/testcase/tstVMStructDTrace.cpp @@ -0,0 +1,152 @@ +/* $Id: tstVMStructDTrace.cpp $ */ +/** @file + * tstVMMStructDTrace - Generates the DTrace test scripts for check that C/C++ + * and DTrace has the same understand of the VM, VMCPU and + * other structures. + */ + +/* + * Copyright (C) 2006-2023 Oracle and/or its affiliates. + * + * This file is part of VirtualBox base platform packages, as + * available from https://www.virtualbox.org. + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation, in version 3 of the + * License. + * + * This program is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, see <https://www.gnu.org/licenses>. + * + * SPDX-License-Identifier: GPL-3.0-only + */ + + +/********************************************************************************************************************************* +* Header Files * +*********************************************************************************************************************************/ +#define IN_TSTVMSTRUCT 1 +#define IN_TSTVMSTRUCTGC 1 +#include <VBox/vmm/cfgm.h> +#include <VBox/vmm/cpum.h> +#include <VBox/vmm/mm.h> +#include <VBox/vmm/pgm.h> +#include <VBox/vmm/selm.h> +#include <VBox/vmm/trpm.h> +#include <VBox/vmm/vmm.h> +#include <VBox/vmm/stam.h> +#include "PDMInternal.h" +#include <VBox/vmm/pdm.h> +#include "CFGMInternal.h" +#include "CPUMInternal.h" +#include "MMInternal.h" +#include "PGMInternal.h" +#include "SELMInternal.h" +#include "TRPMInternal.h" +#include "TMInternal.h" +#include "IOMInternal.h" +#include "HMInternal.h" +#include "APICInternal.h" +#include "VMMInternal.h" +#include "DBGFInternal.h" +#include "GIMInternal.h" +#include "STAMInternal.h" +#include "EMInternal.h" +#include "IEMInternal.h" +#include "NEMInternal.h" +#ifdef VBOX_WITH_RAW_MODE +# include "CSAMInternal.h" +# include "PATMInternal.h" +#endif +#include <VBox/vmm/vm.h> +#include <VBox/param.h> +#include <iprt/x86.h> +#include <iprt/assert.h> +#include <iprt/stream.h> + + +int main() +{ + /* + * File header and pragmas. + */ + RTPrintf("#pragma D option quiet\n"); +// RTPrintf("#pragma D depends_on library x86.d\n"); +// RTPrintf("#pragma D depends_on library cpumctx.d\n"); +// RTPrintf("#pragma D depends_on library CPUMInternal.d\n"); +// RTPrintf("#pragma D depends_on library vm.d\n"); + + RTPrintf("int g_cErrors;\n" + "\n" + "dtrace:::BEGIN\n" + "{\n" + " g_cErrors = 0;\n" + "}\n" + "\n" + ); + + /* + * Test generator macros. + */ +#define GEN_CHECK_SIZE(s) \ + RTPrintf("dtrace:::BEGIN\n" \ + "/sizeof(" #s ") != %u/\n" \ + "{\n" \ + " printf(\"error: sizeof(" #s ") should be %u, not %%u\\n\", sizeof(" #s "));\n" \ + " g_cErrors++;\n" \ + "}\n" \ + "\n", \ + (unsigned)sizeof(s), (unsigned)sizeof(s)) + +#if 1 +# define GEN_CHECK_OFF(s, m) \ + RTPrintf("dtrace:::BEGIN\n" \ + "/offsetof(" #s ", " #m ") != %u/\n" \ + "{\n" \ + " printf(\"error: offsetof(" #s ", " #m ") should be %u, not %%u\\n\", offsetof(" #s ", " #m "));\n" \ + " g_cErrors++;\n" \ + "}\n" \ + "\n", \ + (unsigned)RT_OFFSETOF(s, m), (unsigned)RT_OFFSETOF(s, m)) + +#else +# define GEN_CHECK_OFF(s, m) do { } while (0) +#endif + +#define GEN_CHECK_OFF_DOT(s, m) do { } while (0) + + + /* + * Body. + */ +#define VBOX_FOR_DTRACE_LIB +#include "tstVMStruct.h" + + /* + * Footer. + */ + RTPrintf("dtrace:::BEGIN\n" + "/g_cErrors != 0/\n" + "{\n" + " printf(\"%%u errors!\\n\", g_cErrors);\n" + " exit(1);\n" + "}\n" + "\n" + "dtrace:::BEGIN\n" + "{\n" + " printf(\"Success!\\n\");\n" + " exit(0);\n" + "}\n" + "\n" + ); + + + return (0); +} + |