From f8fe689a81f906d1b91bb3220acde2a4ecb14c5b Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Mon, 6 May 2024 05:01:46 +0200 Subject: Adding upstream version 6.0.4-dfsg. Signed-off-by: Daniel Baumann --- src/VBox/VMM/testcase/tstVMStructRC.cpp | 103 ++++++++++++++++++++++++++++++++ 1 file changed, 103 insertions(+) create mode 100644 src/VBox/VMM/testcase/tstVMStructRC.cpp (limited to 'src/VBox/VMM/testcase/tstVMStructRC.cpp') diff --git a/src/VBox/VMM/testcase/tstVMStructRC.cpp b/src/VBox/VMM/testcase/tstVMStructRC.cpp new file mode 100644 index 00000000..87a5d22b --- /dev/null +++ b/src/VBox/VMM/testcase/tstVMStructRC.cpp @@ -0,0 +1,103 @@ +/* $Id: tstVMStructRC.cpp $ */ +/** @file + * tstVMMStructRC - Generate structure member and size checks from the + * RC perspective. + * + * This is built using the VBOXRC template but linked into a host + * ring-3 executable, rather hacky. + */ + +/* + * Copyright (C) 2006-2019 Oracle Corporation + * + * This file is part of VirtualBox Open Source Edition (OSE), as + * available from http://www.virtualbox.org. This file is free software; + * you can redistribute it and/or modify it under the terms of the GNU + * General Public License (GPL) as published by the Free Software + * Foundation, in version 2 as it comes in the "COPYING" file of the + * VirtualBox OSE distribution. VirtualBox OSE is distributed in the + * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind. + */ + + +/* + * Sanity checks. + */ +#ifndef IN_RC +# error Incorrect template! +#endif +#if defined(IN_RING3) || defined(IN_RING0) +# error Incorrect template! +#endif + +#include +#include +AssertCompileSize(uint8_t, 1); +AssertCompileSize(uint16_t, 2); +AssertCompileSize(uint32_t, 4); +AssertCompileSize(uint64_t, 8); +AssertCompileSize(RTRCPTR, 4); +#ifdef VBOX_WITH_64_BITS_GUESTS +AssertCompileSize(RTGCPTR, 8); +#else +AssertCompileSize(RTGCPTR, 4); +#endif +AssertCompileSize(RTGCPHYS, 8); +AssertCompileSize(RTHCPHYS, 8); + + +/********************************************************************************************************************************* +* Header Files * +*********************************************************************************************************************************/ +#define IN_TSTVMSTRUCT 1 +#define IN_TSTVMSTRUCTGC 1 +#include +#include +#include +#include +#include +#include +#include +#include +#include "PDMInternal.h" +#include +#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 "REMInternal.h" +#include "HMInternal.h" +#include "APICInternal.h" +#include "PATMInternal.h" +#include "VMMInternal.h" +#include "DBGFInternal.h" +#include "GIMInternal.h" +#include "STAMInternal.h" +#include "CSAMInternal.h" +#include "EMInternal.h" +#include "IEMInternal.h" +#include "REMInternal.h" +#include "NEMInternal.h" +#include +#include +#include +#include +#include + +/* we don't use iprt here because we're pretending to be in GC! */ +#include + + +int main() +{ +#define GEN_CHECK_SIZE(s) printf(" CHECK_SIZE(%s, %u);\n", #s, (unsigned)sizeof(s)) +#define GEN_CHECK_OFF(s, m) printf(" CHECK_OFF(%s, %u, %s);\n", #s, (unsigned)RT_OFFSETOF(s, m), #m) +#define GEN_CHECK_OFF_DOT(s, m) printf(" CHECK_OFF(%s, %u, %s);\n", #s, (unsigned)RT_OFFSETOF(s, m), #m) +#include "tstVMStruct.h" + return (0); +} + -- cgit v1.2.3