Changeset 35346 in vbox for trunk/src/recompiler
- Timestamp:
- Dec 27, 2010 4:13:13 PM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 69206
- Location:
- trunk/src/recompiler
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/recompiler/VBoxREMWrapper.cpp
r35191 r35346 197 197 *******************************************************************************/ 198 198 #define LOG_GROUP LOG_GROUP_REM 199 #include <VBox/ rem.h>200 #include <VBox/vmm .h>201 #include <VBox/ dbgf.h>199 #include <VBox/vmm/rem.h> 200 #include <VBox/vmm/vmm.h> 201 #include <VBox/vmm/dbgf.h> 202 202 #include <VBox/dbg.h> 203 #include <VBox/ csam.h>204 #include <VBox/ mm.h>205 #include <VBox/ em.h>206 #include <VBox/ ssm.h>207 #include <VBox/ hwaccm.h>208 #include <VBox/ patm.h>209 #include <VBox/ pdm.h>210 #include <VBox/ pdmcritsect.h>211 #include <VBox/ pgm.h>212 #include <VBox/ iom.h>213 #include <VBox/vm .h>203 #include <VBox/vmm/csam.h> 204 #include <VBox/vmm/mm.h> 205 #include <VBox/vmm/em.h> 206 #include <VBox/vmm/ssm.h> 207 #include <VBox/vmm/hwaccm.h> 208 #include <VBox/vmm/patm.h> 209 #include <VBox/vmm/pdm.h> 210 #include <VBox/vmm/pdmcritsect.h> 211 #include <VBox/vmm/pgm.h> 212 #include <VBox/vmm/iom.h> 213 #include <VBox/vmm/vm.h> 214 214 #include <VBox/err.h> 215 215 #include <VBox/log.h> -
trunk/src/recompiler/VBoxRecompiler.c
r33595 r35346 27 27 #include "cpu-all.h" 28 28 29 #include <VBox/ rem.h>30 #include <VBox/vm api.h>31 #include <VBox/ tm.h>32 #include <VBox/ ssm.h>33 #include <VBox/ em.h>34 #include <VBox/ trpm.h>35 #include <VBox/ iom.h>36 #include <VBox/ mm.h>37 #include <VBox/ pgm.h>38 #include <VBox/ pdm.h>39 #include <VBox/ dbgf.h>29 #include <VBox/vmm/rem.h> 30 #include <VBox/vmm/vmapi.h> 31 #include <VBox/vmm/tm.h> 32 #include <VBox/vmm/ssm.h> 33 #include <VBox/vmm/em.h> 34 #include <VBox/vmm/trpm.h> 35 #include <VBox/vmm/iom.h> 36 #include <VBox/vmm/mm.h> 37 #include <VBox/vmm/pgm.h> 38 #include <VBox/vmm/pdm.h> 39 #include <VBox/vmm/dbgf.h> 40 40 #include <VBox/dbg.h> 41 #include <VBox/ hwaccm.h>42 #include <VBox/ patm.h>43 #include <VBox/ csam.h>41 #include <VBox/vmm/hwaccm.h> 42 #include <VBox/vmm/patm.h> 43 #include <VBox/vmm/csam.h> 44 44 #include "REMInternal.h" 45 #include <VBox/vm .h>45 #include <VBox/vmm/vm.h> 46 46 #include <VBox/param.h> 47 47 #include <VBox/err.h> -
trunk/src/recompiler/cpu-all.h
r33656 r35346 36 36 # endif 37 37 # include <VBox/log.h> 38 # include <VBox/ pgm.h> /* PGM_DYNAMIC_RAM_ALLOC */38 # include <VBox/vmm/pgm.h> /* PGM_DYNAMIC_RAM_ALLOC */ 39 39 #endif 40 40 -
trunk/src/recompiler/exec-all.h
r33656 r35346 34 34 35 35 #ifdef VBOX 36 # include <VBox/ tm.h>37 # include <VBox/ pgm.h> /* PGM_DYNAMIC_RAM_ALLOC */36 # include <VBox/vmm/tm.h> 37 # include <VBox/vmm/pgm.h> /* PGM_DYNAMIC_RAM_ALLOC */ 38 38 # ifndef LOG_GROUP 39 39 # define LOG_GROUP LOG_GROUP_REM … … 41 41 # include <VBox/log.h> 42 42 # include "REMInternal.h" 43 # include <VBox/vm .h>43 # include <VBox/vmm/vm.h> 44 44 #endif /* VBOX */ 45 45 -
trunk/src/recompiler/exec.c
r33656 r35346 49 49 # include <iprt/string.h> 50 50 # include <iprt/param.h> 51 # include <VBox/ pgm.h> /* PGM_DYNAMIC_RAM_ALLOC */51 # include <VBox/vmm/pgm.h> /* PGM_DYNAMIC_RAM_ALLOC */ 52 52 #endif /* VBOX */ 53 53 -
trunk/src/recompiler/target-i386/cpu.h
r33965 r35346 62 62 # include <iprt/assert.h> 63 63 # include <iprt/asm.h> 64 # include <VBox/vmm .h>65 # include <VBox/ stam.h>64 # include <VBox/vmm/vmm.h> 65 # include <VBox/vmm/stam.h> 66 66 #endif /* VBOX */ 67 67
Note:
See TracChangeset
for help on using the changeset viewer.