Remove old x86_64 JIT compiler

This commit is contained in:
Tim Angus 2013-03-11 22:20:10 +00:00
parent b009528e6a
commit 78132cf829
3 changed files with 12 additions and 2609 deletions

View File

@ -213,10 +213,6 @@ ifndef DEBUG_CFLAGS
DEBUG_CFLAGS=-g -O0
endif
ifndef USE_OLD_VM64
USE_OLD_VM64=0
endif
#############################################################################
BD=$(BUILD_DIR)/debug-$(PLATFORM)-$(ARCH)
@ -1909,34 +1905,16 @@ ifeq ($(HAVE_VM_COMPILED),true)
$(B)/client/vm_x86.o
endif
ifeq ($(ARCH),x86_64)
ifeq ($(USE_OLD_VM64),1)
Q3OBJ += \
$(B)/client/vm_x86_64.o \
$(B)/client/vm_x86_64_assembler.o
else
Q3OBJ += \
$(B)/client/vm_x86.o
endif
Q3OBJ += \
$(B)/client/vm_x86.o
endif
ifeq ($(ARCH),amd64)
ifeq ($(USE_OLD_VM64),1)
Q3OBJ += \
$(B)/client/vm_x86_64.o \
$(B)/client/vm_x86_64_assembler.o
else
Q3OBJ += \
$(B)/client/vm_x86.o
endif
Q3OBJ += \
$(B)/client/vm_x86.o
endif
ifeq ($(ARCH),x64)
ifeq ($(USE_OLD_VM64),1)
Q3OBJ += \
$(B)/client/vm_x86_64.o \
$(B)/client/vm_x86_64_assembler.o
else
Q3OBJ += \
$(B)/client/vm_x86.o
endif
Q3OBJ += \
$(B)/client/vm_x86.o
endif
ifeq ($(ARCH),ppc)
Q3OBJ += $(B)/client/vm_powerpc.o $(B)/client/vm_powerpc_asm.o
@ -2130,34 +2108,16 @@ ifeq ($(HAVE_VM_COMPILED),true)
$(B)/ded/vm_x86.o
endif
ifeq ($(ARCH),x86_64)
ifeq ($(USE_OLD_VM64),1)
Q3DOBJ += \
$(B)/ded/vm_x86_64.o \
$(B)/ded/vm_x86_64_assembler.o
else
Q3DOBJ += \
$(B)/ded/vm_x86.o
endif
Q3DOBJ += \
$(B)/ded/vm_x86.o
endif
ifeq ($(ARCH),amd64)
ifeq ($(USE_OLD_VM64),1)
Q3DOBJ += \
$(B)/ded/vm_x86_64.o \
$(B)/ded/vm_x86_64_assembler.o
else
Q3DOBJ += \
$(B)/ded/vm_x86.o
endif
Q3DOBJ += \
$(B)/ded/vm_x86.o
endif
ifeq ($(ARCH),x64)
ifeq ($(USE_OLD_VM64),1)
Q3DOBJ += \
$(B)/ded/vm_x86_64.o \
$(B)/ded/vm_x86_64_assembler.o
else
Q3DOBJ += \
$(B)/ded/vm_x86.o
endif
Q3DOBJ += \
$(B)/ded/vm_x86.o
endif
ifeq ($(ARCH),ppc)
Q3DOBJ += $(B)/ded/vm_powerpc.o $(B)/ded/vm_powerpc_asm.o

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff