VirtualBox

Changeset 81150 in vbox


Ignore:
Timestamp:
Oct 8, 2019 12:53:47 PM (5 years ago)
Author:
vboxsync
Message:

VMM,/Makefile.kmk: Kicked out more recompiler related code. bugref:9576

Location:
trunk
Files:
3 deleted
34 edited

Legend:

Unmodified
Added
Removed
  • trunk/Makefile.kmk

    r80009 r81150  
    485485
    486486#
    487 # The core (VMM+REM+Devices+Main) documentation.
     487# The core (VMM+Devices+Main) documentation.
    488488#
    489489# This includes so much because we wish to have the complete CFGM
     
    777777        $(PATH_ROOT)/include/VBox/vmm/pdmserialifs.h \
    778778        $(PATH_ROOT)/include/VBox/vmm/pdmstorageifs.h \
    779         $(PATH_ROOT)/include/VBox/vmm/rem.h \
    780779        $(PATH_ROOT)/include/VBox/vmm/iom.h \
    781780        $(PATH_ROOT)/include/VBox/vmm/cfgm.h \
     
    796795        $(PATH_ROOT)/src/VBox/VMM/include/PGMInternal.h \
    797796        $(PATH_ROOT)/src/VBox/VMM/include/GIMInternal.h \
    798         $(PATH_ROOT)/src/VBox/VMM/include/REMInternal.h \
    799797        $(PATH_ROOT)/src/VBox/VMM/include/SELMInternal.h \
    800798        $(PATH_ROOT)/src/VBox/VMM/include/SSMInternal.h \
     
    838836        $(VBOX_CORE_DOXYFILE_INPUT_FIRST) \
    839837        $(sort $(filter-out $(VBOX_CORE_DOXYFILE_INPUT_FIRST), $(VBOX_CORE_DOXYFILE_INPUT)))
    840 
    841 # And some some additional stuff.
    842 VBOX_CORE_DOXYFILE_INPUT += \
    843         $(PATH_ROOT)/src/recompiler/VBoxRecompiler.c \
    844         $(PATH_ROOT)/src/recompiler/VBoxREMWrapper.cpp
    845838
    846839includedep $(VBOX_CORE_DOXYFILE_OUTPUT)/Doxyfile.Core.dep
     
    20031996        VBoxSVC \
    20041997        $(if-expr defined(VBOX_WITH_RAW_MODE),VMMRC VBoxDDRC VBoxDD2RC,) \
    2005         $(if-expr defined(VBOX_WITH_REM),VBoxREM,) \
    20061998        $(if-expr defined(VBOX_WITH_MIDL_PROXY_STUB) && "$(KBUILD_TARGET)" == "win",VBoxProxyStub,) \
    20071999        $(if-expr defined(VBOX_WITH_SDS),VBoxSDS,) \
  • trunk/src/VBox/VMM/VMMAll/APICAll.cpp

    r80704 r81150  
    2424#include <VBox/vmm/pdmdev.h>
    2525#include <VBox/vmm/pdmapi.h>
    26 #include <VBox/vmm/rem.h>
    2726#include <VBox/vmm/vmcc.h>
    2827#include <VBox/vmm/vmm.h>
    2928#include <VBox/vmm/vmcpuset.h>
     29#ifdef IN_RING0
     30# include <VBox/vmm/gvmm.h>
     31#endif
    3032
    3133
  • trunk/src/VBox/VMM/VMMAll/AllPdbTypeHack.cpp

    r80531 r81150  
    3838#include "../include/TMInternal.h"
    3939#include "../include/IOMInternal.h"
    40 #include "../include/REMInternal.h"
    4140#ifdef IN_RING3
    4241# include "../include/SSMInternal.h"
     
    5251#include "../include/IEMInternal.h"
    5352#include "../include/NEMInternal.h"
    54 #include "../include/REMInternal.h"
    5553#include "../VMMR0/GMMR0Internal.h"
    5654#include "../VMMR0/GVMMR0Internal.h"
  • trunk/src/VBox/VMM/VMMAll/PDMAllQueue.cpp

    r80333 r81150  
    2424#include <VBox/vmm/pdm.h>
    2525#ifndef IN_RC
    26 # ifdef VBOX_WITH_REM
    27 #  include <VBox/vmm/rem.h>
    28 # endif
    2926# include <VBox/vmm/mm.h>
    3027#endif
  • trunk/src/VBox/VMM/VMMAll/PGMAll.cpp

    r80333 r81150  
    3030#include <VBox/vmm/stam.h>
    3131#include <VBox/vmm/trpm.h>
    32 #ifdef VBOX_WITH_REM
    33 # include <VBox/vmm/rem.h>
    34 #endif
    3532#include <VBox/vmm/em.h>
    3633#include <VBox/vmm/hm.h>
  • trunk/src/VBox/VMM/VMMAll/PGMAllHandler.cpp

    r80531 r81150  
    2828#include <VBox/vmm/nem.h>
    2929#include <VBox/vmm/stam.h>
    30 #ifdef VBOX_WITH_REM
    31 # include <VBox/vmm/rem.h>
    32 #endif
    3330#include <VBox/vmm/dbgf.h>
    3431#include "PGMInternal.h"
  • trunk/src/VBox/VMM/VMMAll/PGMAllPhys.cpp

    r81002 r81150  
    2727#include <VBox/vmm/em.h>
    2828#include <VBox/vmm/nem.h>
    29 #ifdef VBOX_WITH_REM
    30 # include <VBox/vmm/rem.h>
    31 #endif
    3229#include "PGMInternal.h"
    3330#include <VBox/vmm/vmcc.h>
  • trunk/src/VBox/VMM/VMMAll/TMAll.cpp

    r80550 r81150  
    2828#include <VBox/vmm/dbgftrace.h>
    2929#ifdef IN_RING3
    30 # ifdef VBOX_WITH_REM
    31 #  include <VBox/vmm/rem.h>
    32 # endif
    3330#endif
    3431#include <VBox/vmm/pdmdev.h> /* (for TMTIMER_GET_CRITSECT implementation) */
  • trunk/src/VBox/VMM/VMMAll/TMAllVirtual.cpp

    r81071 r81150  
    2424#include <VBox/vmm/dbgftrace.h>
    2525#ifdef IN_RING3
    26 # ifdef VBOX_WITH_REM
    27 #  include <VBox/vmm/rem.h>
    28 # endif
    2926# include <iprt/thread.h>
    3027#endif
  • trunk/src/VBox/VMM/VMMR0/HMVMXR0.cpp

    r81002 r81150  
    3636#include <VBox/vmm/gim.h>
    3737#include <VBox/vmm/apic.h>
    38 #ifdef VBOX_WITH_REM
    39 # include <VBox/vmm/rem.h>
    40 #endif
    4138#include "HMInternal.h"
    4239#include <VBox/vmm/vmcc.h>
  • trunk/src/VBox/VMM/VMMR3/DBGF.cpp

    r80333 r81150  
    7373#include <VBox/vmm/dbgf.h>
    7474#include <VBox/vmm/selm.h>
    75 #ifdef VBOX_WITH_REM
    76 # include <VBox/vmm/rem.h>
    77 #endif
    7875#include <VBox/vmm/em.h>
    7976#include <VBox/vmm/hm.h>
  • trunk/src/VBox/VMM/VMMR3/DBGFBp.cpp

    r80333 r81150  
    2323#include <VBox/vmm/dbgf.h>
    2424#include <VBox/vmm/selm.h>
    25 #ifdef VBOX_WITH_REM
    26 # include <VBox/vmm/rem.h>
    27 #else
    28 # include <VBox/vmm/iem.h>
    29 #endif
     25#include <VBox/vmm/iem.h>
    3026#include <VBox/vmm/mm.h>
    3127#include <VBox/vmm/iom.h>
  • trunk/src/VBox/VMM/VMMR3/EM.cpp

    r80815 r81150  
    4747#include <VBox/vmm/dbgf.h>
    4848#include <VBox/vmm/pgm.h>
    49 #ifdef VBOX_WITH_REM
    50 # include <VBox/vmm/rem.h>
    51 #endif
    5249#include <VBox/vmm/apic.h>
    5350#include <VBox/vmm/tm.h>
  • trunk/src/VBox/VMM/VMMR3/EMHM.cpp

    r80333 r81150  
    3030#include <VBox/vmm/dbgf.h>
    3131#include <VBox/vmm/pgm.h>
    32 #ifdef VBOX_WITH_REM
    33 # include <VBox/vmm/rem.h>
    34 #endif
    3532#include <VBox/vmm/tm.h>
    3633#include <VBox/vmm/mm.h>
  • trunk/src/VBox/VMM/VMMR3/EMR3Nem.cpp

    r80333 r81150  
    3131#include <VBox/vmm/dbgf.h>
    3232#include <VBox/vmm/pgm.h>
    33 #ifdef VBOX_WITH_REM
    34 # include <VBox/vmm/rem.h>
    35 #endif
    3633#include <VBox/vmm/tm.h>
    3734#include <VBox/vmm/mm.h>
  • trunk/src/VBox/VMM/VMMR3/HM.cpp

    r80457 r81150  
    5353#include <VBox/vmm/selm.h>
    5454#include <VBox/vmm/nem.h>
    55 #ifdef VBOX_WITH_REM
    56 # include <VBox/vmm/rem.h>
    57 #endif
    5855#include <VBox/vmm/hm_vmx.h>
    5956#include <VBox/vmm/hm_svm.h>
  • trunk/src/VBox/VMM/VMMR3/PDMAsyncCompletion.cpp

    r80333 r81150  
    2424#include <VBox/vmm/pdm.h>
    2525#include <VBox/vmm/mm.h>
    26 #ifdef VBOX_WITH_REM
    27 # include <VBox/vmm/rem.h>
    28 #endif
    2926#include <VBox/vmm/vm.h>
    3027#include <VBox/vmm/uvm.h>
  • trunk/src/VBox/VMM/VMMR3/PDMDevHlp.cpp

    r81031 r81150  
    2828#include <VBox/vmm/pgm.h>
    2929#include <VBox/vmm/iom.h>
    30 #ifdef VBOX_WITH_REM
    31 # include <VBox/vmm/rem.h>
    32 #endif
    3330#include <VBox/vmm/dbgf.h>
    3431#include <VBox/vmm/ssm.h>
  • trunk/src/VBox/VMM/VMMR3/PDMDevMiscHlp.cpp

    r80960 r81150  
    2626#include <VBox/vmm/hm.h>
    2727#include <VBox/vmm/apic.h>
    28 #ifdef VBOX_WITH_REM
    29 # include <VBox/vmm/rem.h>
    30 #endif
    3128#include <VBox/vmm/vm.h>
    3229#include <VBox/vmm/vmm.h>
  • trunk/src/VBox/VMM/VMMR3/PDMDevice.cpp

    r81031 r81150  
    3131#include <VBox/vmm/iom.h>
    3232#include <VBox/vmm/pgm.h>
    33 #ifdef VBOX_WITH_REM
    34 # include <VBox/vmm/rem.h>
    35 #endif
    3633#include <VBox/vmm/vm.h>
    3734#include <VBox/vmm/uvm.h>
  • trunk/src/VBox/VMM/VMMR3/PDMNetShaper.cpp

    r80333 r81150  
    2424#include <VBox/vmm/pdm.h>
    2525#include <VBox/vmm/mm.h>
    26 #ifdef VBOX_WITH_REM
    27 # include <VBox/vmm/rem.h>
    28 #endif
    2926#include <VBox/vmm/vm.h>
    3027#include <VBox/vmm/uvm.h>
  • trunk/src/VBox/VMM/VMMR3/PDMQueue.cpp

    r80334 r81150  
    2424#include <VBox/vmm/pdm.h>
    2525#include <VBox/vmm/mm.h>
    26 #ifdef VBOX_WITH_REM
    27 # include <VBox/vmm/rem.h>
    28 #endif
    2926#include <VBox/vmm/vm.h>
    3027#include <VBox/vmm/uvm.h>
  • trunk/src/VBox/VMM/VMMR3/PGM.cpp

    r80333 r81150  
    624624#include <VBox/vmm/em.h>
    625625#include <VBox/vmm/stam.h>
    626 #ifdef VBOX_WITH_REM
    627 # include <VBox/vmm/rem.h>
    628 #endif
    629626#include <VBox/vmm/selm.h>
    630627#include <VBox/vmm/ssm.h>
  • trunk/src/VBox/VMM/VMMR3/PGMHandler.cpp

    r80333 r81150  
    2929#include <VBox/vmm/em.h>
    3030#include <VBox/vmm/stam.h>
    31 #ifdef VBOX_WITH_REM
    32 # include <VBox/vmm/rem.h>
    33 #endif
    3431#include <VBox/vmm/dbgf.h>
    35 #ifdef VBOX_WITH_REM
    36 # include <VBox/vmm/rem.h>
    37 #endif
    3832#include <VBox/vmm/selm.h>
    3933#include <VBox/vmm/ssm.h>
  • trunk/src/VBox/VMM/VMMR3/PGMPhys.cpp

    r80333 r81150  
    2727#include <VBox/vmm/nem.h>
    2828#include <VBox/vmm/stam.h>
    29 #ifdef VBOX_WITH_REM
    30 # include <VBox/vmm/rem.h>
    31 #endif
    3229#include <VBox/vmm/pdmdev.h>
    3330#include "PGMInternal.h"
  • trunk/src/VBox/VMM/VMMR3/TM.cpp

    r80334 r81150  
    135135#include <VBox/vmm/dbgf.h>
    136136#include <VBox/vmm/dbgftrace.h>
    137 #ifdef VBOX_WITH_REM
    138 # include <VBox/vmm/rem.h>
    139 #endif
    140137#include <VBox/vmm/pdmapi.h>
    141138#include <VBox/vmm/iom.h>
  • trunk/src/VBox/VMM/VMMR3/TRPM.cpp

    r81002 r81150  
    8989#include <VBox/vmm/vm.h>
    9090#include <VBox/vmm/em.h>
    91 #ifdef VBOX_WITH_REM
    92 # include <VBox/vmm/rem.h>
    93 #endif
    9491#include <VBox/vmm/hm.h>
    9592
  • trunk/src/VBox/VMM/VMMR3/VM.cpp

    r80649 r81150  
    5858#include <VBox/vmm/em.h>
    5959#include <VBox/vmm/iem.h>
    60 #ifdef VBOX_WITH_REM
    61 # include <VBox/vmm/rem.h>
    62 #endif
    6360#include <VBox/vmm/nem.h>
    6461#include <VBox/vmm/apic.h>
  • trunk/src/VBox/VMM/VMMR3/VMEmt.cpp

    r80333 r81150  
    2626#include <VBox/vmm/nem.h>
    2727#include <VBox/vmm/pdmapi.h>
    28 #ifdef VBOX_WITH_REM
    29 # include <VBox/vmm/rem.h>
    30 #endif
    3128#include <VBox/vmm/tm.h>
    3229#include "VMInternal.h"
  • trunk/src/VBox/VMM/VMMR3/VMM.cpp

    r80333 r81150  
    121121#include <VBox/vmm/dbgf.h>
    122122#include <VBox/vmm/apic.h>
    123 #ifdef VBOX_WITH_REM
    124 # include <VBox/vmm/rem.h>
    125 #endif
    126123#include <VBox/vmm/ssm.h>
    127124#include <VBox/vmm/tm.h>
  • trunk/src/VBox/VMM/testcase/tstAnimate.cpp

    r80585 r81150  
    2626#include <VBox/vmm/em.h>
    2727#include <VBox/vmm/pgm.h>
    28 #ifdef VBOX_WITH_REM
    29 # include <VBox/vmm/rem.h>
    30 #endif
    3128#include <VBox/vmm/ssm.h>
    3229#include <VBox/vmm/dbgf.h>
  • trunk/src/VBox/VMM/testcase/tstVMStructDTrace.cpp

    r76553 r81150  
    4242#include "TMInternal.h"
    4343#include "IOMInternal.h"
    44 #include "REMInternal.h"
    4544#include "HMInternal.h"
    4645#include "APICInternal.h"
     
    5150#include "EMInternal.h"
    5251#include "IEMInternal.h"
    53 #include "REMInternal.h"
    5452#include "NEMInternal.h"
    5553#ifdef VBOX_WITH_RAW_MODE
  • trunk/src/VBox/VMM/testcase/tstVMStructRC.cpp

    r80938 r81150  
    6868#include "TMInternal.h"
    6969#include "IOMInternal.h"
    70 #include "REMInternal.h"
    7170#include "HMInternal.h"
    7271#include "APICInternal.h"
     
    7978#include "EMInternal.h"
    8079#include "IEMInternal.h"
    81 #include "REMInternal.h"
    8280#include "NEMInternal.h"
    8381#include <VBox/vmm/vm.h>
  • trunk/src/VBox/VMM/testcase/tstVMStructSize.cpp

    r80531 r81150  
    4141#include "TMInternal.h"
    4242#include "IOMInternal.h"
    43 #include "REMInternal.h"
    4443#include "SSMInternal.h"
    4544#include "HMInternal.h"
     
    5251#include "EMInternal.h"
    5352#include "IEMInternal.h"
    54 #include "REMInternal.h"
    5553#include "NEMInternal.h"
    5654#include "../VMMR0/GMMR0Internal.h"
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette