Changeset 15272 in vbox for trunk/src/recompiler_new
- Timestamp:
- Dec 10, 2008 6:47:19 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 40690
- Location:
- trunk/src/recompiler_new
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/recompiler_new/Makefile.kmk
r15034 r15272 27 27 # differences) to cross-compile code to Linux/ELF and dynamically generate invocation wrappers. 28 28 if1of (win.amd64, $(KBUILD_TARGET).$(KBUILD_TARGET_ARCH)) 29 REM_MOD += VBoxREM229 REM_MOD = VBoxREM2 30 30 SYSMODS += VBoxREM2 31 31 else 32 REM_MOD += VBoxREM32 REM_MOD = VBoxREM 33 33 endif 34 34 … … 40 40 $(REM_MOD)_SDKS.win.x86 = W32API 41 41 $(REM_MOD)_ASFLAGS = -x assembler-with-cpp 42 $(REM_MOD)_CFLAGS = -Wall -g 42 $(REM_MOD)_CFLAGS = -Wall -g -fno-omit-frame-pointer -fno-strict-aliasing 43 43 $(REM_MOD)_CFLAGS.debug = -O0 44 44 $(REM_MOD)_CFLAGS.release += -fno-gcse -O2 … … 77 77 endif 78 78 79 # For 32-bit targets we build 2 REM DLLs: 80 # with 64-bit support (slow and buggy at the moment) VBOXREM64 81 # only 32-bit support (faster, stable, but not suitable for 64-bit guests) VBOXREM 82 # During the runtime, we load appropriate library, depending on guest settings. 83 if1of (x86, $(KBUILD_TARGET_ARCH)) 84 USE_VBOXREM64 := 1 85 else 86 USE_VBOXREM64 := 87 endif 88 89 # Disable for now, while debugged enough 90 USE_VBOXREM64 = 91 79 92 OTHER_CLEAN += 80 93 … … 178 191 $(REM_MOD)_DEFS.win.x86 += GCC_WITH_BUGGY_REGPARM 179 192 193 ifdef USE_VBOXREM64 194 # Currently we never mix USE_VBOXREM64 and VBoxREM2, so can always use VBoxREM 195 # @todo: assert for that? use $(REM_MOD) instead? 196 # But loading logic got to be updated too. 197 ifeq ($(KBUILD_TARGET), win) 198 DLL += VBoxREM64 199 else 200 IMPORT_LIBS += VBoxREM64 201 endif 202 # Something fishy goes on within kmk's tool selection algorithm/variable evaluation 203 # as for now g++ is always selected to compile VBoxREM64, while VBoxREM compiled with gcc 204 VBoxREM64_TOOL = $(VBoxREM_TOOL) 205 VBoxREM64_TEMPLATE = $(VBoxREM_TEMPLATE) 206 VBoxREM64_CFLAGS += $(VBoxREM_CFLAGS) 207 VBoxREM64_DEFS += $(VBoxREM_DEFS) VBOX_ENABLE_VBOXREM64 208 VBoxREM64_INCS += $(VBoxREM_INCS) 209 VBoxREM64_LIBS += $(VBoxREM_LIBS) 210 VBoxREM64_SOURCES = $(VBoxREM_SOURCES) 211 endif 180 212 181 213 ifdef USE_REM_IMP … … 203 235 VBoxREMImp_SONAME = VBoxREM$(SUFF_DLL) 204 236 endif 205 VBoxREMImp_LDFLAGS.darwin = -install_name $(VBOX_DYLD_EXECUTABLE_PATH)/VBoxREM.dylib206 237 VBoxREMImp_LDFLAGS.l4 = -T$(L4_LIBDIR)/../main_rel.ld -nostdlib 207 238 -
trunk/src/recompiler_new/Sun/config.h
r14277 r15272 27 27 28 28 #ifdef VBOX_WITH_64_BITS_GUESTS 29 #define TARGET_X86_64 29 # if (TCG_TARGET_REG_BITS == 64) || defined (VBOX_ENABLE_VBOXREM64) 30 # define TARGET_X86_64 31 # endif 30 32 #endif 31 33 -
trunk/src/recompiler_new/VBoxRecompiler.c
r15015 r15272 3493 3493 * Disassemble. 3494 3494 */ 3495 off = env->eip - (RTGCUINTPTR) pvPC;3495 off = env->eip - (RTGCUINTPTR)(uintptr_t)pvPC; 3496 3496 Cpu.mode = f32BitCode ? CPUMODE_32BIT : CPUMODE_16BIT; 3497 3497 Cpu.pfnReadBytes = NULL; /** @todo make cs:eip reader for the disassembler. */ … … 3594 3594 * Disassemble. 3595 3595 */ 3596 off = env->eip - (RTGCUINTPTR) pvPC;3596 off = env->eip - (RTGCUINTPTR)(uintptr_t)pvPC; 3597 3597 Cpu.mode = f32BitCode ? CPUMODE_32BIT : CPUMODE_16BIT; 3598 3598 Cpu.pfnReadBytes = NULL; /** @todo make cs:eip reader for the disassembler. */ -
trunk/src/recompiler_new/tcg/tcg.c
r15248 r15272 77 77 #endif 78 78 #endif 79 80 79 81 80 static void patch_reloc(uint8_t *code_ptr, int type,
Note:
See TracChangeset
for help on using the changeset viewer.