VirtualBox

source: vbox/trunk/src/VBox/VMM/testcase/tstAsmStructs.cpp@ 80540

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

VMM: Kicking out raw-mode (work in progress). bugref:9517

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id Revision
File size: 1.7 KB
Line 
1/* $Id: tstAsmStructs.cpp 80003 2019-07-26 13:37:47Z vboxsync $ */
2/** @file
3 * Testcase for checking offsets in the assembly structures shared with C/C++.
4 */
5
6/*
7 * Copyright (C) 2006-2019 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
19/*********************************************************************************************************************************
20* Header Files *
21*********************************************************************************************************************************/
22#include <VBox/vmm/cpum.h>
23#include "CPUMInternal.h"
24#include <VBox/vmm/trpm.h>
25#include "TRPMInternal.h"
26#include "HMInternal.h"
27#include "VMMInternal.h"
28#include <VBox/vmm/vm.h>
29#include <VBox/vmm/hm_vmx.h>
30
31#include "tstHelp.h"
32#include <stdio.h>
33
34
35/* For sup.mac simplifications. */
36#define SUPDRVTRACERUSRCTX32 SUPDRVTRACERUSRCTX
37#define SUPDRVTRACERUSRCTX64 SUPDRVTRACERUSRCTX
38
39
40int main()
41{
42 int rc = 0;
43 printf("tstAsmStructs: TESTING\n");
44
45#ifdef IN_RING3
46# include "tstAsmStructsHC.h"
47#else
48# include "tstAsmStructsRC.h"
49#endif
50
51 if (rc)
52 printf("tstAsmStructs: FAILURE - %d errors \n", rc);
53 else
54 printf("tstAsmStructs: SUCCESS\n");
55 return rc;
56}
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