Changeset 13652 in vbox
- Timestamp:
- Oct 29, 2008 2:16:35 PM (16 years ago)
- Location:
- trunk
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vm.h
r13572 r13652 700 700 * Must be multiple of 32 and coherent with REM_ENV_SIZE from REMInternal.h. */ 701 701 #if GC_ARCH_BITS == 32 702 # define VM_REM_SIZE (HC_ARCH_BITS == 32 ? 0x ff00 : 0xff00)702 # define VM_REM_SIZE (HC_ARCH_BITS == 32 ? 0x10800 : 0x10800) 703 703 #else 704 704 # define VM_REM_SIZE (HC_ARCH_BITS == 32 ? 0x10900 : 0x10900) -
trunk/src/recompiler_new/Makefile.kmk
r13649 r13652 65 65 translate-all.c \ 66 66 host-utils.c \ 67 cutils.c \ 67 68 tcg/tcg.c \ 68 69 tcg/tcg-dyngen.c \ -
trunk/src/recompiler_new/VBoxRecompiler.c
r13615 r13652 5045 5045 #endif 5046 5046 5047 void cpu_smm_update(CPUState* env) 5048 { 5049 } -
trunk/src/recompiler_new/exec.c
r13559 r13652 3572 3572 #endif 3573 3573 3574 #ifndef VBOX3575 3574 /* virtual memory access for debug */ 3576 3575 int cpu_memory_rw_debug(CPUState *env, target_ulong addr, … … 3657 3656 } 3658 3657 3658 #ifndef VBOX 3659 3659 void dump_exec_info(FILE *f, 3660 3660 int (*cpu_fprintf)(FILE *f, const char *fmt, ...)) -
trunk/src/recompiler_new/target-i386/helper.c
r13440 r13652 518 518 } 519 519 520 void cpu_x86_close(CPUX86State *env) 521 { 520 522 #ifndef VBOX 521 void cpu_x86_close(CPUX86State *env)522 {523 523 qemu_free(env); 524 } 525 #endif 524 #endif 525 } 526 526 527 527 /***********************************************************/
Note:
See TracChangeset
for help on using the changeset viewer.