VirtualBox

Changeset 15272 in vbox for trunk/src/recompiler_new


Ignore:
Timestamp:
Dec 10, 2008 6:47:19 PM (16 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
40690
Message:

recompiler: support for 64-bit enabled REM library on 32-bit hosts (disabled by USE_VBOXREM64 in Makefile.kmk now)

Location:
trunk/src/recompiler_new
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/recompiler_new/Makefile.kmk

    r15034 r15272  
    2727# differences) to cross-compile code to Linux/ELF and dynamically generate invocation wrappers.
    2828if1of (win.amd64, $(KBUILD_TARGET).$(KBUILD_TARGET_ARCH))
    29  REM_MOD              += VBoxREM2
     29 REM_MOD              = VBoxREM2
    3030 SYSMODS              += VBoxREM2
    3131else
    32  REM_MOD              += VBoxREM
     32 REM_MOD              = VBoxREM
    3333endif
    3434
     
    4040 $(REM_MOD)_SDKS.win.x86    = W32API
    4141 $(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
    4343 $(REM_MOD)_CFLAGS.debug    = -O0
    4444 $(REM_MOD)_CFLAGS.release += -fno-gcse -O2
     
    7777endif
    7878
     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.
     83if1of (x86, $(KBUILD_TARGET_ARCH))
     84 USE_VBOXREM64 := 1
     85else
     86 USE_VBOXREM64 :=
     87endif
     88
     89# Disable for now, while debugged enough
     90USE_VBOXREM64 =
     91
    7992OTHER_CLEAN          +=
    8093
     
    178191$(REM_MOD)_DEFS.win.x86   += GCC_WITH_BUGGY_REGPARM
    179192
     193ifdef 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)
     211endif
    180212
    181213ifdef USE_REM_IMP
     
    203235VBoxREMImp_SONAME           = VBoxREM$(SUFF_DLL)
    204236 endif
    205 VBoxREMImp_LDFLAGS.darwin   = -install_name $(VBOX_DYLD_EXECUTABLE_PATH)/VBoxREM.dylib
    206237VBoxREMImp_LDFLAGS.l4       = -T$(L4_LIBDIR)/../main_rel.ld -nostdlib
    207238
  • trunk/src/recompiler_new/Sun/config.h

    r14277 r15272  
    2727
    2828#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
    3032#endif
    3133
  • trunk/src/recompiler_new/VBoxRecompiler.c

    r15015 r15272  
    34933493     * Disassemble.
    34943494     */
    3495     off = env->eip - (RTGCUINTPTR)pvPC;
     3495    off = env->eip - (RTGCUINTPTR)(uintptr_t)pvPC;
    34963496    Cpu.mode = f32BitCode ? CPUMODE_32BIT : CPUMODE_16BIT;
    34973497    Cpu.pfnReadBytes = NULL;            /** @todo make cs:eip reader for the disassembler. */
     
    35943594     * Disassemble.
    35953595     */
    3596     off = env->eip - (RTGCUINTPTR)pvPC;
     3596    off = env->eip - (RTGCUINTPTR)(uintptr_t)pvPC;
    35973597    Cpu.mode = f32BitCode ? CPUMODE_32BIT : CPUMODE_16BIT;
    35983598    Cpu.pfnReadBytes = NULL;            /** @todo make cs:eip reader for the disassembler. */
  • trunk/src/recompiler_new/tcg/tcg.c

    r15248 r15272  
    7777#endif
    7878#endif
    79 
    8079
    8180static void patch_reloc(uint8_t *code_ptr, int type,
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette