Changeset 81150 in vbox
- Timestamp:
- Oct 8, 2019 12:53:47 PM (5 years ago)
- Location:
- trunk
- Files:
-
- 3 deleted
- 34 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Makefile.kmk
r80009 r81150 485 485 486 486 # 487 # The core (VMM+ REM+Devices+Main) documentation.487 # The core (VMM+Devices+Main) documentation. 488 488 # 489 489 # This includes so much because we wish to have the complete CFGM … … 777 777 $(PATH_ROOT)/include/VBox/vmm/pdmserialifs.h \ 778 778 $(PATH_ROOT)/include/VBox/vmm/pdmstorageifs.h \ 779 $(PATH_ROOT)/include/VBox/vmm/rem.h \780 779 $(PATH_ROOT)/include/VBox/vmm/iom.h \ 781 780 $(PATH_ROOT)/include/VBox/vmm/cfgm.h \ … … 796 795 $(PATH_ROOT)/src/VBox/VMM/include/PGMInternal.h \ 797 796 $(PATH_ROOT)/src/VBox/VMM/include/GIMInternal.h \ 798 $(PATH_ROOT)/src/VBox/VMM/include/REMInternal.h \799 797 $(PATH_ROOT)/src/VBox/VMM/include/SELMInternal.h \ 800 798 $(PATH_ROOT)/src/VBox/VMM/include/SSMInternal.h \ … … 838 836 $(VBOX_CORE_DOXYFILE_INPUT_FIRST) \ 839 837 $(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.cpp845 838 846 839 includedep $(VBOX_CORE_DOXYFILE_OUTPUT)/Doxyfile.Core.dep … … 2003 1996 VBoxSVC \ 2004 1997 $(if-expr defined(VBOX_WITH_RAW_MODE),VMMRC VBoxDDRC VBoxDD2RC,) \ 2005 $(if-expr defined(VBOX_WITH_REM),VBoxREM,) \2006 1998 $(if-expr defined(VBOX_WITH_MIDL_PROXY_STUB) && "$(KBUILD_TARGET)" == "win",VBoxProxyStub,) \ 2007 1999 $(if-expr defined(VBOX_WITH_SDS),VBoxSDS,) \ -
trunk/src/VBox/VMM/VMMAll/APICAll.cpp
r80704 r81150 24 24 #include <VBox/vmm/pdmdev.h> 25 25 #include <VBox/vmm/pdmapi.h> 26 #include <VBox/vmm/rem.h>27 26 #include <VBox/vmm/vmcc.h> 28 27 #include <VBox/vmm/vmm.h> 29 28 #include <VBox/vmm/vmcpuset.h> 29 #ifdef IN_RING0 30 # include <VBox/vmm/gvmm.h> 31 #endif 30 32 31 33 -
trunk/src/VBox/VMM/VMMAll/AllPdbTypeHack.cpp
r80531 r81150 38 38 #include "../include/TMInternal.h" 39 39 #include "../include/IOMInternal.h" 40 #include "../include/REMInternal.h"41 40 #ifdef IN_RING3 42 41 # include "../include/SSMInternal.h" … … 52 51 #include "../include/IEMInternal.h" 53 52 #include "../include/NEMInternal.h" 54 #include "../include/REMInternal.h"55 53 #include "../VMMR0/GMMR0Internal.h" 56 54 #include "../VMMR0/GVMMR0Internal.h" -
trunk/src/VBox/VMM/VMMAll/PDMAllQueue.cpp
r80333 r81150 24 24 #include <VBox/vmm/pdm.h> 25 25 #ifndef IN_RC 26 # ifdef VBOX_WITH_REM27 # include <VBox/vmm/rem.h>28 # endif29 26 # include <VBox/vmm/mm.h> 30 27 #endif -
trunk/src/VBox/VMM/VMMAll/PGMAll.cpp
r80333 r81150 30 30 #include <VBox/vmm/stam.h> 31 31 #include <VBox/vmm/trpm.h> 32 #ifdef VBOX_WITH_REM33 # include <VBox/vmm/rem.h>34 #endif35 32 #include <VBox/vmm/em.h> 36 33 #include <VBox/vmm/hm.h> -
trunk/src/VBox/VMM/VMMAll/PGMAllHandler.cpp
r80531 r81150 28 28 #include <VBox/vmm/nem.h> 29 29 #include <VBox/vmm/stam.h> 30 #ifdef VBOX_WITH_REM31 # include <VBox/vmm/rem.h>32 #endif33 30 #include <VBox/vmm/dbgf.h> 34 31 #include "PGMInternal.h" -
trunk/src/VBox/VMM/VMMAll/PGMAllPhys.cpp
r81002 r81150 27 27 #include <VBox/vmm/em.h> 28 28 #include <VBox/vmm/nem.h> 29 #ifdef VBOX_WITH_REM30 # include <VBox/vmm/rem.h>31 #endif32 29 #include "PGMInternal.h" 33 30 #include <VBox/vmm/vmcc.h> -
trunk/src/VBox/VMM/VMMAll/TMAll.cpp
r80550 r81150 28 28 #include <VBox/vmm/dbgftrace.h> 29 29 #ifdef IN_RING3 30 # ifdef VBOX_WITH_REM31 # include <VBox/vmm/rem.h>32 # endif33 30 #endif 34 31 #include <VBox/vmm/pdmdev.h> /* (for TMTIMER_GET_CRITSECT implementation) */ -
trunk/src/VBox/VMM/VMMAll/TMAllVirtual.cpp
r81071 r81150 24 24 #include <VBox/vmm/dbgftrace.h> 25 25 #ifdef IN_RING3 26 # ifdef VBOX_WITH_REM27 # include <VBox/vmm/rem.h>28 # endif29 26 # include <iprt/thread.h> 30 27 #endif -
trunk/src/VBox/VMM/VMMR0/HMVMXR0.cpp
r81002 r81150 36 36 #include <VBox/vmm/gim.h> 37 37 #include <VBox/vmm/apic.h> 38 #ifdef VBOX_WITH_REM39 # include <VBox/vmm/rem.h>40 #endif41 38 #include "HMInternal.h" 42 39 #include <VBox/vmm/vmcc.h> -
trunk/src/VBox/VMM/VMMR3/DBGF.cpp
r80333 r81150 73 73 #include <VBox/vmm/dbgf.h> 74 74 #include <VBox/vmm/selm.h> 75 #ifdef VBOX_WITH_REM76 # include <VBox/vmm/rem.h>77 #endif78 75 #include <VBox/vmm/em.h> 79 76 #include <VBox/vmm/hm.h> -
trunk/src/VBox/VMM/VMMR3/DBGFBp.cpp
r80333 r81150 23 23 #include <VBox/vmm/dbgf.h> 24 24 #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> 30 26 #include <VBox/vmm/mm.h> 31 27 #include <VBox/vmm/iom.h> -
trunk/src/VBox/VMM/VMMR3/EM.cpp
r80815 r81150 47 47 #include <VBox/vmm/dbgf.h> 48 48 #include <VBox/vmm/pgm.h> 49 #ifdef VBOX_WITH_REM50 # include <VBox/vmm/rem.h>51 #endif52 49 #include <VBox/vmm/apic.h> 53 50 #include <VBox/vmm/tm.h> -
trunk/src/VBox/VMM/VMMR3/EMHM.cpp
r80333 r81150 30 30 #include <VBox/vmm/dbgf.h> 31 31 #include <VBox/vmm/pgm.h> 32 #ifdef VBOX_WITH_REM33 # include <VBox/vmm/rem.h>34 #endif35 32 #include <VBox/vmm/tm.h> 36 33 #include <VBox/vmm/mm.h> -
trunk/src/VBox/VMM/VMMR3/EMR3Nem.cpp
r80333 r81150 31 31 #include <VBox/vmm/dbgf.h> 32 32 #include <VBox/vmm/pgm.h> 33 #ifdef VBOX_WITH_REM34 # include <VBox/vmm/rem.h>35 #endif36 33 #include <VBox/vmm/tm.h> 37 34 #include <VBox/vmm/mm.h> -
trunk/src/VBox/VMM/VMMR3/HM.cpp
r80457 r81150 53 53 #include <VBox/vmm/selm.h> 54 54 #include <VBox/vmm/nem.h> 55 #ifdef VBOX_WITH_REM56 # include <VBox/vmm/rem.h>57 #endif58 55 #include <VBox/vmm/hm_vmx.h> 59 56 #include <VBox/vmm/hm_svm.h> -
trunk/src/VBox/VMM/VMMR3/PDMAsyncCompletion.cpp
r80333 r81150 24 24 #include <VBox/vmm/pdm.h> 25 25 #include <VBox/vmm/mm.h> 26 #ifdef VBOX_WITH_REM27 # include <VBox/vmm/rem.h>28 #endif29 26 #include <VBox/vmm/vm.h> 30 27 #include <VBox/vmm/uvm.h> -
trunk/src/VBox/VMM/VMMR3/PDMDevHlp.cpp
r81031 r81150 28 28 #include <VBox/vmm/pgm.h> 29 29 #include <VBox/vmm/iom.h> 30 #ifdef VBOX_WITH_REM31 # include <VBox/vmm/rem.h>32 #endif33 30 #include <VBox/vmm/dbgf.h> 34 31 #include <VBox/vmm/ssm.h> -
trunk/src/VBox/VMM/VMMR3/PDMDevMiscHlp.cpp
r80960 r81150 26 26 #include <VBox/vmm/hm.h> 27 27 #include <VBox/vmm/apic.h> 28 #ifdef VBOX_WITH_REM29 # include <VBox/vmm/rem.h>30 #endif31 28 #include <VBox/vmm/vm.h> 32 29 #include <VBox/vmm/vmm.h> -
trunk/src/VBox/VMM/VMMR3/PDMDevice.cpp
r81031 r81150 31 31 #include <VBox/vmm/iom.h> 32 32 #include <VBox/vmm/pgm.h> 33 #ifdef VBOX_WITH_REM34 # include <VBox/vmm/rem.h>35 #endif36 33 #include <VBox/vmm/vm.h> 37 34 #include <VBox/vmm/uvm.h> -
trunk/src/VBox/VMM/VMMR3/PDMNetShaper.cpp
r80333 r81150 24 24 #include <VBox/vmm/pdm.h> 25 25 #include <VBox/vmm/mm.h> 26 #ifdef VBOX_WITH_REM27 # include <VBox/vmm/rem.h>28 #endif29 26 #include <VBox/vmm/vm.h> 30 27 #include <VBox/vmm/uvm.h> -
trunk/src/VBox/VMM/VMMR3/PDMQueue.cpp
r80334 r81150 24 24 #include <VBox/vmm/pdm.h> 25 25 #include <VBox/vmm/mm.h> 26 #ifdef VBOX_WITH_REM27 # include <VBox/vmm/rem.h>28 #endif29 26 #include <VBox/vmm/vm.h> 30 27 #include <VBox/vmm/uvm.h> -
trunk/src/VBox/VMM/VMMR3/PGM.cpp
r80333 r81150 624 624 #include <VBox/vmm/em.h> 625 625 #include <VBox/vmm/stam.h> 626 #ifdef VBOX_WITH_REM627 # include <VBox/vmm/rem.h>628 #endif629 626 #include <VBox/vmm/selm.h> 630 627 #include <VBox/vmm/ssm.h> -
trunk/src/VBox/VMM/VMMR3/PGMHandler.cpp
r80333 r81150 29 29 #include <VBox/vmm/em.h> 30 30 #include <VBox/vmm/stam.h> 31 #ifdef VBOX_WITH_REM32 # include <VBox/vmm/rem.h>33 #endif34 31 #include <VBox/vmm/dbgf.h> 35 #ifdef VBOX_WITH_REM36 # include <VBox/vmm/rem.h>37 #endif38 32 #include <VBox/vmm/selm.h> 39 33 #include <VBox/vmm/ssm.h> -
trunk/src/VBox/VMM/VMMR3/PGMPhys.cpp
r80333 r81150 27 27 #include <VBox/vmm/nem.h> 28 28 #include <VBox/vmm/stam.h> 29 #ifdef VBOX_WITH_REM30 # include <VBox/vmm/rem.h>31 #endif32 29 #include <VBox/vmm/pdmdev.h> 33 30 #include "PGMInternal.h" -
trunk/src/VBox/VMM/VMMR3/TM.cpp
r80334 r81150 135 135 #include <VBox/vmm/dbgf.h> 136 136 #include <VBox/vmm/dbgftrace.h> 137 #ifdef VBOX_WITH_REM138 # include <VBox/vmm/rem.h>139 #endif140 137 #include <VBox/vmm/pdmapi.h> 141 138 #include <VBox/vmm/iom.h> -
trunk/src/VBox/VMM/VMMR3/TRPM.cpp
r81002 r81150 89 89 #include <VBox/vmm/vm.h> 90 90 #include <VBox/vmm/em.h> 91 #ifdef VBOX_WITH_REM92 # include <VBox/vmm/rem.h>93 #endif94 91 #include <VBox/vmm/hm.h> 95 92 -
trunk/src/VBox/VMM/VMMR3/VM.cpp
r80649 r81150 58 58 #include <VBox/vmm/em.h> 59 59 #include <VBox/vmm/iem.h> 60 #ifdef VBOX_WITH_REM61 # include <VBox/vmm/rem.h>62 #endif63 60 #include <VBox/vmm/nem.h> 64 61 #include <VBox/vmm/apic.h> -
trunk/src/VBox/VMM/VMMR3/VMEmt.cpp
r80333 r81150 26 26 #include <VBox/vmm/nem.h> 27 27 #include <VBox/vmm/pdmapi.h> 28 #ifdef VBOX_WITH_REM29 # include <VBox/vmm/rem.h>30 #endif31 28 #include <VBox/vmm/tm.h> 32 29 #include "VMInternal.h" -
trunk/src/VBox/VMM/VMMR3/VMM.cpp
r80333 r81150 121 121 #include <VBox/vmm/dbgf.h> 122 122 #include <VBox/vmm/apic.h> 123 #ifdef VBOX_WITH_REM124 # include <VBox/vmm/rem.h>125 #endif126 123 #include <VBox/vmm/ssm.h> 127 124 #include <VBox/vmm/tm.h> -
trunk/src/VBox/VMM/testcase/tstAnimate.cpp
r80585 r81150 26 26 #include <VBox/vmm/em.h> 27 27 #include <VBox/vmm/pgm.h> 28 #ifdef VBOX_WITH_REM29 # include <VBox/vmm/rem.h>30 #endif31 28 #include <VBox/vmm/ssm.h> 32 29 #include <VBox/vmm/dbgf.h> -
trunk/src/VBox/VMM/testcase/tstVMStructDTrace.cpp
r76553 r81150 42 42 #include "TMInternal.h" 43 43 #include "IOMInternal.h" 44 #include "REMInternal.h"45 44 #include "HMInternal.h" 46 45 #include "APICInternal.h" … … 51 50 #include "EMInternal.h" 52 51 #include "IEMInternal.h" 53 #include "REMInternal.h"54 52 #include "NEMInternal.h" 55 53 #ifdef VBOX_WITH_RAW_MODE -
trunk/src/VBox/VMM/testcase/tstVMStructRC.cpp
r80938 r81150 68 68 #include "TMInternal.h" 69 69 #include "IOMInternal.h" 70 #include "REMInternal.h"71 70 #include "HMInternal.h" 72 71 #include "APICInternal.h" … … 79 78 #include "EMInternal.h" 80 79 #include "IEMInternal.h" 81 #include "REMInternal.h"82 80 #include "NEMInternal.h" 83 81 #include <VBox/vmm/vm.h> -
trunk/src/VBox/VMM/testcase/tstVMStructSize.cpp
r80531 r81150 41 41 #include "TMInternal.h" 42 42 #include "IOMInternal.h" 43 #include "REMInternal.h"44 43 #include "SSMInternal.h" 45 44 #include "HMInternal.h" … … 52 51 #include "EMInternal.h" 53 52 #include "IEMInternal.h" 54 #include "REMInternal.h"55 53 #include "NEMInternal.h" 56 54 #include "../VMMR0/GMMR0Internal.h"
Note:
See TracChangeset
for help on using the changeset viewer.