/* $Id: bs3-cmn-instantiate-common.h 60609 2016-04-20 17:21:19Z vboxsync $ */ /** @file * BS3Kit - Common template instantiator body. */ /* * Copyright (C) 2007-2016 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. * * The contents of this file may alternatively be used under the terms * of the Common Development and Distribution License Version 1.0 * (CDDL) only, as it comes in the "COPYING.CDDL" file of the * VirtualBox OSE distribution, in which case the provisions of the * CDDL are applicable instead of those of the GPL. * * You may elect to license modified versions of this file under the * terms and conditions of either the GPL or the CDDL or both. */ /* * Instantiating common code (c16, c32, c64). * This must be done first. */ /** @def BS3_INSTANTIATING_CMN * @ingroup grp_bs3kit_tmpl * Indicates that we're instantiating common code (c16, c32, c64). */ #define BS3_INSTANTIATING_CMN #ifdef BS3_CMN_INSTANTIATE_FILE1 # define BS3_CMN_INSTANTIATE_FILE1_B # if ARCH_BITS == 16 /* 16-bit - real mode. */ # define TMPL_MODE BS3_MODE_RM # include # include BS3_CMN_INSTANTIATE_FILE1_B # include # endif # if ARCH_BITS == 32 /* 32-bit - paged protected mode. */ # define TMPL_MODE BS3_MODE_PP32 # include # include BS3_CMN_INSTANTIATE_FILE1_B # include # endif # if ARCH_BITS == 64 /* 64-bit. */ # define TMPL_MODE BS3_MODE_LM64 # include # include BS3_CMN_INSTANTIATE_FILE1_B # include # endif #endif #undef BS3_INSTANTIATING_CMN /* * Instantiating code for each individual mode (rm, pe16, pe16_32, ...). */ /** @def BS3_INSTANTIATING_MODE * @ingroup grp_bs3kit_tmpl * Indicates that we're instantiating mode specific code (rm, pe16, ...). */ #define BS3_INSTANTIATING_MODE #ifdef BS3_MODE_INSTANTIATE_FILE1 # define BS3_MODE_INSTANTIATE_FILE1_B # if ARCH_BITS == 16 /* 16-bit */ # define TMPL_MODE BS3_MODE_RM # include # include BS3_MODE_INSTANTIATE_FILE1_B # include # define TMPL_MODE BS3_MODE_PE16 # include # include BS3_MODE_INSTANTIATE_FILE1_B # include # define TMPL_MODE BS3_MODE_PE16_V86 # include # include BS3_MODE_INSTANTIATE_FILE1_B # include # define TMPL_MODE BS3_MODE_PE32_16 # include # include BS3_MODE_INSTANTIATE_FILE1_B # include # define TMPL_MODE BS3_MODE_PEV86 # include # include BS3_MODE_INSTANTIATE_FILE1_B # include # define TMPL_MODE BS3_MODE_PP16 # include # include BS3_MODE_INSTANTIATE_FILE1_B # include # define TMPL_MODE BS3_MODE_PP16_V86 # include # include BS3_MODE_INSTANTIATE_FILE1_B # include # define TMPL_MODE BS3_MODE_PP32_16 # include # include BS3_MODE_INSTANTIATE_FILE1_B # include # define TMPL_MODE BS3_MODE_PPV86 # include # include BS3_MODE_INSTANTIATE_FILE1_B # include # define TMPL_MODE BS3_MODE_PAE16 # include # include BS3_MODE_INSTANTIATE_FILE1_B # include # define TMPL_MODE BS3_MODE_PAE16_V86 # include # include BS3_MODE_INSTANTIATE_FILE1_B # include # define TMPL_MODE BS3_MODE_PAE32_16 # include # include BS3_MODE_INSTANTIATE_FILE1_B # include # define TMPL_MODE BS3_MODE_PAEV86 # include # include BS3_MODE_INSTANTIATE_FILE1_B # include # define TMPL_MODE BS3_MODE_LM16 # include # include BS3_MODE_INSTANTIATE_FILE1_B # include # endif # if ARCH_BITS == 32 /* 32-bit */ # define TMPL_MODE BS3_MODE_PE16_32 # include # include BS3_MODE_INSTANTIATE_FILE1_B # include # define TMPL_MODE BS3_MODE_PE32 # include # include BS3_MODE_INSTANTIATE_FILE1_B # include # define TMPL_MODE BS3_MODE_PP16_32 # include # include BS3_MODE_INSTANTIATE_FILE1_B # include # define TMPL_MODE BS3_MODE_PP32 # include # include BS3_MODE_INSTANTIATE_FILE1_B # include # define TMPL_MODE BS3_MODE_PAE16_32 # include # include BS3_MODE_INSTANTIATE_FILE1_B # include # define TMPL_MODE BS3_MODE_PAE32 # include # include BS3_MODE_INSTANTIATE_FILE1_B # include # define TMPL_MODE BS3_MODE_LM32 # include # include BS3_MODE_INSTANTIATE_FILE1_B # include # endif # if ARCH_BITS == 64 /* 64-bit. */ # define TMPL_MODE BS3_MODE_LM64 # include # include BS3_MODE_INSTANTIATE_FILE1_B # include # endif #endif