- Timestamp:
- Jun 9, 2016 6:06:26 PM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 107980
- Location:
- trunk/src/VBox/VMM
- Files:
-
- 10 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/GIMAll.cpp
r61559 r61632 21 21 *********************************************************************************************************************************/ 22 22 #define LOG_GROUP LOG_GROUP_GIM 23 #include <VBox/vmm/gim.h> 24 #include <VBox/vmm/em.h> /* For EMInterpretDisasCurrent */ 23 25 #include "GIMInternal.h" 26 #include <VBox/vmm/vm.h> 27 28 #include <VBox/dis.h> /* For DISCPUSTATE */ 24 29 #include <VBox/err.h> 25 #include <VBox/dis.h> /* For DISCPUSTATE */26 #include <VBox/vmm/em.h> /* For EMInterpretDisasCurrent */27 #include <VBox/vmm/vm.h>28 30 29 31 /* Include all the providers. */ -
trunk/src/VBox/VMM/VMMAll/GIMAllHv.cpp
r61631 r61632 21 21 *********************************************************************************************************************************/ 22 22 #define LOG_GROUP LOG_GROUP_GIM 23 #include <VBox/vmm/gim.h> 23 24 #include <VBox/vmm/em.h> 24 25 #include <VBox/vmm/hm.h> 25 26 #include <VBox/vmm/tm.h> 26 27 #include <VBox/vmm/dbgf.h> 28 #include <VBox/vmm/pdmdev.h> 29 #include <VBox/vmm/pdmapi.h> 27 30 #include <VBox/vmm/pgm.h> 28 31 #include "GIMHvInternal.h" … … 30 33 #include <VBox/vmm/vm.h> 31 34 32 #include <VBox/vmm/pdmdev.h>33 #include <VBox/vmm/pdmapi.h>34 35 #include <VBox/err.h> 35 36 -
trunk/src/VBox/VMM/VMMAll/GIMAllKvm.cpp
r61559 r61632 21 21 *********************************************************************************************************************************/ 22 22 #define LOG_GROUP LOG_GROUP_GIM 23 #include "GIMKvmInternal.h" 24 #include "GIMInternal.h" 25 26 #include <VBox/err.h> 27 #include <VBox/dis.h> 23 #include <VBox/vmm/gim.h> 28 24 #include <VBox/vmm/hm.h> 29 25 #include <VBox/vmm/em.h> 30 26 #include <VBox/vmm/tm.h> 31 #include <VBox/vmm/vm.h>32 27 #include <VBox/vmm/pgm.h> 33 28 #include <VBox/vmm/pdmdev.h> 34 29 #include <VBox/vmm/pdmapi.h> 30 #include "GIMKvmInternal.h" 31 #include "GIMInternal.h" 32 #include <VBox/vmm/vm.h> 33 34 #include <VBox/dis.h> 35 #include <VBox/err.h> 35 36 #include <VBox/sup.h> 36 37 -
trunk/src/VBox/VMM/VMMR0/GIMR0.cpp
r58122 r61632 21 21 *********************************************************************************************************************************/ 22 22 #define LOG_GROUP LOG_GROUP_GIM 23 #include <VBox/vmm/gim.h> 23 24 #include "GIMInternal.h" 24 25 #include "GIMHvInternal.h" 26 #include <VBox/vmm/vm.h> 25 27 26 28 #include <VBox/err.h> 27 #include <VBox/vmm/vm.h>28 29 29 30 -
trunk/src/VBox/VMM/VMMR0/GIMR0Hv.cpp
r58122 r61632 21 21 *********************************************************************************************************************************/ 22 22 #define LOG_GROUP LOG_GROUP_GIM 23 #include <VBox/vmm/gim.h> 24 #include <VBox/vmm/tm.h> 23 25 #include "GIMInternal.h" 24 26 #include "GIMHvInternal.h" 27 #include <VBox/vmm/vm.h> 25 28 26 29 #include <VBox/err.h> 27 #include <VBox/vmm/gim.h>28 #include <VBox/vmm/tm.h>29 #include <VBox/vmm/vm.h>30 30 31 31 #include <iprt/spinlock.h> -
trunk/src/VBox/VMM/VMMR0/GIMR0Kvm.cpp
r58126 r61632 21 21 *********************************************************************************************************************************/ 22 22 #define LOG_GROUP LOG_GROUP_GIM 23 #include <VBox/vmm/gim.h> 24 #include <VBox/vmm/tm.h> 23 25 #include "GIMInternal.h" 24 26 #include "GIMKvmInternal.h" 27 #include <VBox/vmm/vm.h> 25 28 26 29 #include <VBox/err.h> 27 #include <VBox/vmm/gim.h>28 #include <VBox/vmm/tm.h>29 #include <VBox/vmm/vm.h>30 30 31 31 #include <iprt/spinlock.h> -
trunk/src/VBox/VMM/VMMR3/GIM.cpp
r61544 r61632 51 51 *********************************************************************************************************************************/ 52 52 #define LOG_GROUP LOG_GROUP_GIM 53 #include <VBox/log.h> 54 #include "GIMInternal.h" 55 #include <VBox/vmm/vm.h> 53 #include <VBox/vmm/gim.h> 56 54 #include <VBox/vmm/hm.h> 57 55 #include <VBox/vmm/ssm.h> 58 56 #include <VBox/vmm/pdmdev.h> 57 #include "GIMInternal.h" 58 #include <VBox/vmm/vm.h> 59 60 #include <VBox/log.h> 59 61 60 62 #include <iprt/err.h> -
trunk/src/VBox/VMM/VMMR3/GIMHv.cpp
r61559 r61632 21 21 *********************************************************************************************************************************/ 22 22 #define LOG_GROUP LOG_GROUP_GIM 23 #include <VBox/vmm/gim.h> 24 #include <VBox/vmm/cpum.h> 25 #include <VBox/vmm/mm.h> 26 #include <VBox/vmm/ssm.h> 27 #include <VBox/vmm/hm.h> 28 #include <VBox/vmm/pdmapi.h> 23 29 #include "GIMInternal.h" 30 #include <VBox/vmm/vm.h> 31 32 #include <VBox/version.h> 24 33 25 34 #include <iprt/assert.h> … … 29 38 #include <iprt/semaphore.h> 30 39 #include <iprt/spinlock.h> 31 32 #include <VBox/vmm/cpum.h>33 #include <VBox/vmm/mm.h>34 #include <VBox/vmm/ssm.h>35 #include <VBox/vmm/vm.h>36 #include <VBox/vmm/hm.h>37 #include <VBox/vmm/pdmapi.h>38 #include <VBox/version.h>39 40 #ifdef DEBUG_ramshankar 40 41 # include <iprt/udp.h> -
trunk/src/VBox/VMM/VMMR3/GIMKvm.cpp
r58564 r61632 21 21 *********************************************************************************************************************************/ 22 22 #define LOG_GROUP LOG_GROUP_GIM 23 #include <VBox/vmm/gim.h> 24 #include <VBox/vmm/cpum.h> 25 #include <VBox/vmm/hm.h> 26 #include <VBox/vmm/pdmapi.h> 27 #include <VBox/vmm/ssm.h> 23 28 #include "GIMInternal.h" 29 #include <VBox/vmm/vm.h> 30 31 #include <VBox/disopcode.h> 32 #include <VBox/version.h> 24 33 25 34 #include <iprt/asm-math.h> … … 30 39 #include <iprt/spinlock.h> 31 40 32 #include <VBox/vmm/cpum.h>33 #include <VBox/disopcode.h>34 #include <VBox/vmm/ssm.h>35 #include <VBox/vmm/vm.h>36 #include <VBox/vmm/hm.h>37 #include <VBox/vmm/pdmapi.h>38 #include <VBox/version.h>39 41 40 42 -
trunk/src/VBox/VMM/VMMR3/GIMMinimal.cpp
r58564 r61632 21 21 *********************************************************************************************************************************/ 22 22 #define LOG_GROUP LOG_GROUP_GIM 23 #include <VBox/vmm/gim.h> 24 #include <VBox/vmm/cpum.h> 25 #include <VBox/vmm/tm.h> 26 #include <VBox/vmm/pdmapi.h> 23 27 #include "GIMInternal.h" 28 #include <VBox/vmm/vm.h> 24 29 25 30 #include <iprt/assert.h> … … 27 32 #include <iprt/asm-amd64-x86.h> 28 33 #include <iprt/string.h> 29 30 #include <VBox/vmm/cpum.h>31 #include <VBox/vmm/vm.h>32 #include <VBox/vmm/tm.h>33 #include <VBox/vmm/pdmapi.h>34 34 35 35
Note:
See TracChangeset
for help on using the changeset viewer.