VirtualBox

source: vbox/trunk/src/recompiler/Makefile.kmk@ 11856

Last change on this file since 11856 was 11805, checked in by vboxsync, 16 years ago
  • rearranged SDK-only stuff in makefiles per Knut advise
  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 18.0 KB
Line 
1# $Id: Makefile.kmk 11805 2008-08-29 10:17:27Z vboxsync $
2## @file
3# The Recompiler Sub-Makefile.
4#
5# There are a few of complicating factors here, esp. on AMD64 systems:
6#
7# * op.c doesn't compile work correctly with gcc 4. For this we've
8# checked in op.S, which is the reason why we don't compile op.c
9# directly but always compile via the assembly file.s
10# * On 64-bit Windows we lack a compiler and have to resort to a
11# linux cross compiler building an ELF relocatable module which
12# we then load using a wrapper module. Thus the REM_MOD mess.
13# * On platforms using the 64-bit GCC ABI, we're not allowed to
14# generate non-PIC shared objects, and op.c requires the code
15# to be non-PIC. We apply the same trick as we developed for
16# 64-bit windows.
17#
18
19#
20# Copyright (C) 2006-2007 Sun Microsystems, Inc.
21#
22# This file is part of VirtualBox Open Source Edition (OSE), as
23# available from http://www.virtualbox.org. This file is free software;
24# you can redistribute it and/or modify it under the terms of the GNU
25# General Public License (GPL) as published by the Free Software
26# Foundation, in version 2 as it comes in the "COPYING" file of the
27# VirtualBox OSE distribution. VirtualBox OSE is distributed in the
28# hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
29#
30# Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
31# Clara, CA 95054 USA or visit http://www.sun.com if you need
32# additional information or have any questions.
33#
34
35
36SUB_DEPTH = ../..
37include $(KBUILD_PATH)/subheader.kmk
38
39BLDPROGS += dyngen
40ifneq ($(or $(eq $(KBUILD_TARGET_ARCH),amd64) , $(VBOX_TARGET_MAC_OS_X_VERSION_10_5)),)
41 SYSMODS += VBoxREM2
42 REM_MOD += VBoxREM2
43else
44 REM_MOD += VBoxREM
45endif
46DLLS += VBoxREM
47IMPORT_LIBS += VBoxREMImp
48
49OTHER_CLEAN += \
50 $(PATH_$(REM_MOD))/op.h \
51 $(PATH_$(REM_MOD))/opc.h \
52 $(PATH_$(REM_MOD))/gen-op.h \
53 $(PATH_$(REM_MOD))/opc.h
54
55#
56# Globals
57#
58VBOX_PATH_RECOMPILER_SRC := $(PATH_SUB_CURRENT)
59TEMPLATE_DUMMY = dummy template (move to kBuild)
60
61
62#
63# L4 must use the no-crt path because it's lacking math stuff it seems...
64# Darwin must use the non-crt path because it can't compile op.c nativly.
65# All the AMD64 target must use the no-crt path because ELF doesn't like op.c
66# when stuffed into a shared library and windows doesn't have 64-bit gcc (yet).
67#
68ifeq ($(filter-out l4 darwin freebsd,$(KBUILD_TARGET)),)
69 REM_USE_NOCRT := 1
70endif
71ifeq ($(REM_MOD),VBoxREM2)
72 REM_USE_NOCRT := 1
73endif
74
75
76#
77# The dyngen build tool.
78#
79ifeq ($(KBUILD_HOST),win)
80 dyngen_TOOL = MINGW32
81 dyngen_SDKS = W32API
82 # On 64-bit Windows we pretend to be 32-bit.
83 dyngen_BLD_TRG_ARCH = x86
84 dyngen_BLD_TRG_CPU = i386
85 dyngen_CFLAGS = -Wall -g -fno-strict-aliasing
86 dyngen_TEMPLATE = DUMMY
87else
88 dyngen_TEMPLATE = VBOXBLDPROG
89endif
90dyngen_DEFS += REM_PHYS_ADDR_IN_TLB
91ifeq ($(KBUILD_TARGET_ARCH),amd64)
92 dyngen_DEFS += HOST_X86_64=1
93endif
94dyngen_CFLAGS += -Wno-missing-prototypes -Wno-missing-declarations
95dyngen_INCS = \
96 Sun \
97 target-i386 \
98 fpu \
99 .
100dyngen_SOURCES = dyngen.c
101
102
103#
104# The VBoxREM.[dll|so|..] or VBoxREM2.rel.
105#
106$(REM_MOD)_DEFS = IN_REM_R3 REM_INCLUDE_CPU_H
107$(REM_MOD)_DEFS += REM_PHYS_ADDR_IN_TLB
108#$(REM_MOD)_DEFS += DEBUG_ALL_LOGGING DEBUG_DISAS DEBUG_PCALL DEBUG_EXEC DEBUG_FLUSH DEBUG_IOPORT DEBUG_SIGNAL DEBUG_TLB_CHECK DEBUG_TB_INVALIDATE DEBUG_TLB # Enables huge amounts of debug logging.
109
110$(REM_MOD)_INCS = \
111 Sun \
112 Sun/crt\
113 target-i386 \
114 fpu \
115 $(PATH_$(REM_MOD)) \
116 $(PATH_ROOT)/src/VBox/VMM \
117 .
118
119$(REM_MOD)_SOURCES = \
120 VBoxRecompiler.c \
121 cpu-exec.c \
122 exec.c \
123 translate-all.c \
124 translate-op.c \
125 fpu/softfloat-native.c \
126 target-i386/helper.c \
127 target-i386/helper2.c \
128 target-i386/translate.c
129$(REM_MOD)_SOURCES.debug = \
130 Sun/testmath.c
131ifeq ($(filter-out win os2,$(KBUILD_TARGET)),)
132 $(REM_MOD)_SOURCES += target-i386/op.c
133 FILE_OP_OBJ = $(PATH_$(REM_MOD))/target-i386/op.o
134else # The remaining targets can be using gcc-4 and needs checking.
135 $(REM_MOD)_SOURCES += $(PATH_$(REM_MOD))/op.S
136 FILE_OP_OBJ = $(PATH_$(REM_MOD))/gen/op.o
137 $(REM_MOD)_CLEAN = $(FILE_OP_OBJ) $(PATH_$(REM_MOD))/op.S.dep
138endif
139$(REM_MOD)_SOURCES.win.x86 = $(REM_MOD).def
140ifneq ($(REM_MOD),VBoxREM2)
141 $(REM_MOD)_POST_CMDS = $(VBOX_SIGN_IMAGE_CMDS)
142endif
143
144
145ifdef REM_USE_NOCRT
146 $(REM_MOD)_TEMPLATE = VBOXNOCRTGAS
147 $(REM_MOD)_DEFS += LOG_USE_C99 $(ARCH_BITS_DEFS)
148 $(REM_MOD)_CFLAGS.amd64 = -O2
149 $(REM_MOD)_CFLAGS.debug = -O0
150 ifdef ($(KBUILD_TARGET_ARCH),x86)
151 $(REM_MOD)_CFLAGS.release+= -fomit-frame-pointer -fno-gcse
152 endif
153
154 # This doesn't fit in IPRT because it requires GAS and is LGPL.
155 $(REM_MOD)_SOURCES += \
156 Sun/e_powl-$(KBUILD_TARGET_ARCH).S
157
158 ifeq ($(REM_MOD),VBoxREM)
159 $(REM_MOD)_LIBS = \
160 $(PATH_LIB)/RuntimeR3NoCRTGCC$(VBOX_SUFF_LIB) \
161 $(LIB_VMM) \
162 $(LIB_RUNTIME)
163 ifeq ($(KBUILD_TARGET),l4)
164 $(REM_MOD)_LIBS += \
165 $(L4_LIBDIR)/libuc.0.s.so
166 endif
167 $(REM_MOD)_LIBS.darwin = \
168 $(TARGET_VBoxREMImp)
169 $(REM_MOD)_LDFLAGS.darwin = -read_only_relocs suppress -multiply_defined warning # -install_name $(VBOX_DYLD_EXECUTABLE_PATH)/$(REM_MOD).dylib
170 $(REM_MOD)_POST_CMDS.darwin = install_name_tool -id $(VBOX_DYLD_EXECUTABLE_PATH)/$(REM_MOD).dylib $(out)
171 $(REM_MOD)_CFLAGS.darwin = -fno-common -mdynamic-no-pic
172 else
173 $(REM_MOD)_LIBS = \
174 $(PATH_LIB)/RuntimeR3NoCRTGCC$(VBOX_SUFF_LIB)
175 $(REM_MOD)_SYSSUFF = .rel
176 $(REM_MOD)_LDFLAGS.darwin = -nostdlib -static
177 $(REM_MOD)_CFLAGS.darwin = -fno-common -static -mno-dynamic-no-pic
178 endif
179
180else # !REM_USE_NOCRT
181
182 $(REM_MOD)_TOOL = GXX3
183 $(REM_MOD)_TOOL.solaris = GXX3PLAIN
184 $(REM_MOD)_TOOL.win.x86 = MINGW32
185 $(REM_MOD)_TOOL.win.amd64 = XGCCAMD64LINUX
186 $(REM_MOD)_TEMPLATE = DUMMY
187 $(REM_MOD)_SDKS.win.x86 = W32API ## @todo do we really need this now?
188 $(REM_MOD)_ASFLAGS = -x assembler-with-cpp ## @todo didn't I make this default already?
189 $(REM_MOD)_CFLAGS = -Wall -g
190 $(REM_MOD)_CFLAGS.debug = -O0
191 $(REM_MOD)_CFLAGS.release += -fomit-frame-pointer -fno-gcse
192 $(REM_MOD)_CFLAGS.profile = $($(REM_MOD)_CFLAGS.release)
193 $(REM_MOD)_CFLAGS.kprofile = $($(REM_MOD)_CFLAGS.release)
194 $(REM_MOD)_CFLAGS.l4 = -nostdinc
195 ifeq ($(KBUILD_TARGET),l4)
196 $(REM_MOD)_INCS += $(VBOX_L4_GCC3_INCS) $(L4_INCDIR)
197 endif
198
199 $(REM_MOD)_DEFS += IN_RING3 LOG_USE_C99 $(ARCH_BITS_DEFS)
200 #$(REM_MOD)_DEFS += DEBUG_DISAS DEBUG_PCALL DEBUG_EXEC DEBUG_FLUSH DEBUG_IOPORT DEBUG_SIGNAL DEBUG_TLB_CHECK DEBUG_TB_INVALIDATE DEBUG_TLB # Enables huge amounts of debug logging.
201 # these defines are probably all irrelevant now:
202 $(REM_MOD)_DEFS += _GNU_SOURCE _FILE_OFFSET_BITS=64 _LARGEFILE_SOURCE _REENTRANT
203
204 $(REM_MOD)_LDFLAGS.darwin = -read_only_relocs suppress -install_name $(VBOX_DYLD_EXECUTABLE_PATH)/$(REM_MOD).dylib -multiple_defined warning
205 $(REM_MOD)_LDFLAGS.l4 = -T$(L4_LIBDIR)/../main_rel.ld -nostdlib -Wl,--no-undefined
206 $(REM_MOD)_LDFLAGS.linux = $(VBOX_LD_as_needed)
207 $(REM_MOD)_LDFLAGS.os2 = -Zomf
208 $(REM_MOD)_LDFLAGS.debug = -g
209 $(REM_MOD)_LDFLAGS.solaris = -mimpure-text
210 ifdef VBOX_SOLARIS_10
211 $(REM_MOD)_DEFS.solaris += HOST_SOLARIS=10
212 else # solaris 11
213 $(REM_MOD)_DEFS.solaris += HOST_SOLARIS=11
214 endif
215 ifeq ($(KBUILD_TARGET_ARCH),amd64)
216 $(REM_MOD)_LIBS = $(FILE_TOOL_GCC3_LIBGCC)
217 else # x86
218 $(REM_MOD)_LIBS = \
219 $(LIB_VMM) \
220 $(LIB_RUNTIME)
221 $(REM_MOD)_LIBS.win.x86 = \
222 mingw32 \
223 user32 gdi32 winmm ws2_32 iphlpapi dxguid
224 $(REM_MOD)_LIBS.linux = \
225 $(LIB_UUID) \
226 m \
227 util \
228 rt \
229 $(LIB_PTHREAD)
230 $(REM_MOD)_LIBS.l4 = \
231 gcc \
232 $(L4_LIBDIR)/libvboxserver.s.so \
233 $(L4_LIBDIR)/libdl.s.so \
234 $(L4_LIBDIR)/libuc.0.s.so
235 endif # x86
236
237endif # !REM_USE_NOCRT
238
239# Extra flags for these source modules.
240target-i386/op.c_CFLAGS = -O2 -fno-strict-aliasing -fomit-frame-pointer -falign-functions=0 -fno-reorder-blocks -fno-optimize-sibling-calls
241target-i386/op.c_CFLAGS.x86 = -fno-gcse -fno-instrument-functions -mpreferred-stack-boundary=2
242target-i386/op.c_CFLAGS.darwin.x86 = -m128bit-long-double -mpreferred-stack-boundary=4
243target-i386/helper.c_CFLAGS.x86 = -O2 -fomit-frame-pointer -fno-strict-aliasing -fno-gcse
244cpu-exec.c_CFLAGS.x86 = -O2 -fomit-frame-pointer -fno-strict-aliasing -fno-gcse
245cpu-exec.c_CFLAGS.solaris.amd64 = -O2 -fomit-frame-pointer -fno-strict-aliasing
246
247
248translate-all.c_DEPS = \
249 $(PATH_$(REM_MOD))/op.h \
250 $(PATH_$(REM_MOD))/opc.h \
251 $(PATH_$(REM_MOD))/gen-op.h
252translate-op.c_DEPS = $(translate-all.c_DEPS)
253target-i386/translate.c_DEPS = $(translate-all.c_DEPS)
254
255
256#
257# The math testcase as a standalone program for testing and debugging purposes.
258#
259## @todo This is a bit messy because of MINGW32.
260#BLDPROGS += testmath
261testmath_TOOL = GXX3
262testmath_TOOL.win.x86 = MINGW32
263testmath_SDKS.win.x86 = W32API
264ifeq ($(KBUILD_HOST).$(KBUILD_HOST_ARCH),win.amd64)
265 # 64-bit windows: Pretend to be 32-bit.
266 testmath_BLD_TRG = win32
267 testmath_BLD_TRG_ARCH = x86
268 testmath_BLD_TRG_CPU = i386
269endif
270testmath_ASTOOL = $(VBOX_ASTOOL)
271ifeq ($(filter-out win32 win64,$(KBUILD_HOST)),)
272 testmath_ASFLAGS = -f win32 -DNASM_FORMAT_PE $(VBOX_ASFLAGS) -w+orphan-labels
273else
274 testmath_ASFLAGS = -f elf -DNASM_FORMAT_ELF $(VBOX_ASFLAGS) -w+orphan-labels
275endif
276testmath_ASFLAGS.amd64 = -m amd64
277testmath_CFLAGS = -Wall -g
278testmath_CFLAGS.release = -O3
279testmath_LDFLAGS = -g
280testmath_DEFS = MATHTEST_STANDALONE
281testmath_SOURCES = Sun/testmath.c
282#testmath_SOURCES += $(PATH_LIB)/RuntimeR3NoCRTGCC$(VBOX_SUFF_LIB)
283
284
285ifeq ($(REM_MOD),VBoxREM2)
286#
287# The VBoxREM2 wrapper.
288#
289VBoxREM_TEMPLATE = VBOXR3
290VBoxREM_DEFS = IN_REM_R3
291VBoxREM_SOURCES = \
292 VBoxREMWrapper.cpp \
293 VBoxREMWrapperA.asm
294VBoxREM_LDFLAGS.darwin = -install_name $(VBOX_DYLD_EXECUTABLE_PATH)/VBoxREM.dylib
295VBoxREM_LIBS = \
296 $(LIB_VMM) \
297 $(LIB_RUNTIME)
298endif
299
300
301#
302# The VBoxREM import library.
303#
304VBoxREMImp_TEMPLATE = VBOXR3
305ifeq ($(KBUILD_TARGET),darwin)
306VBoxREMImp_INST = $(INST_LIB)
307endif
308VBoxREMImp_SOURCES.win = VBoxREM.def
309VBoxREMImp_SOURCES.os2 = $(PATH_TARGET)/VBoxREMOS2.def
310ifeq ($(filter win os2,$(KBUILD_TARGET)),)
311VBoxREMImp_SOURCES = $(PATH_TARGET)/VBoxREMImp.c
312VBoxREMImp_CLEAN = $(PATH_TARGET)/VBoxREMImp.c
313endif
314ifneq ($(filter-out darwin os2 win,$(KBUILD_TARGET)),)
315VBoxREMImp_SONAME = VBoxREM$(SUFF_DLL)
316endif
317VBoxREMImp_LDFLAGS.darwin = -install_name $(VBOX_DYLD_EXECUTABLE_PATH)/VBoxREM.dylib
318VBoxREMImp_LDFLAGS.l4 = -T$(L4_LIBDIR)/../main_rel.ld -nostdlib
319
320$(PATH_TARGET)/VBoxREMImp.c: $(VBOX_PATH_RECOMPILER_SRC)/VBoxREM.def $(VBOX_PATH_RECOMPILER_SRC)/Sun/deftoimp.sed $(MAKEFILE_CURRENT) | $(call DIRDEP,$(PATH_TARGET))
321 $(call MSG_GENERATE,,$@)
322 $(QUIET)$(MKDIR) -p $(PATH_TARGET)
323 $(QUIET)$(APPEND) $@.tmp '#ifdef VBOX_HAVE_VISIBILITY_HIDDEN'
324 $(QUIET)$(APPEND) $@.tmp '# define EXPORT __attribute__((visibility("default")))'
325 $(QUIET)$(APPEND) $@.tmp '#else'
326 $(QUIET)$(APPEND) $@.tmp '# define EXPORT'
327 $(QUIET)$(APPEND) $@.tmp '#endif'
328 $(QUIET)$(APPEND) $@.tmp ''
329 $(QUIET)$(SED) -f $(VBOX_PATH_RECOMPILER_SRC)/Sun/deftoimp.sed $< >> $@.tmp
330 $(QUIET)$(MV) -f $@.tmp $@
331
332$(VBoxREMImp_SOURCES.os2): $(VBOX_PATH_RECOMPILER_SRC)/VBoxREM.def $(MAKEFILE_CURRENT) | $(call DIRDEP,$(PATH_TARGET))
333 $(SED) \
334 -e 's/^[ \t][ \t]*REMR3/ _REMR3/' \
335 -e 's/\.[Dd][Ll][Ll]//' \
336 -e 's/^LIBRARY .*/LIBRARY VBoxREM INITINSTANCE TERMINSTANCE\nDATA MULTIPLE\n/' \
337 $< > $@.tmp
338 $(MV) -f $@.tmp $@
339
340include $(KBUILD_PATH)/subfooter.kmk
341
342
343#
344# Generate the op.S file somehow...
345#
346# Gathering the flags, defines and include dirs for the command is a lot
347# of work. Unfortunately, there is only a highly specialized kBuild function
348# for doing this, so we're currently left to our own devices here.
349#
350# Add something like VBOX_RECOMPILER_OP_GCC = gcc-3.4.6 to LocalConfig.kmk
351# to be 100% sure that you get a working op.S. My gcc 4.1.1 seems to work
352# fine, so feel free to try VBOX_RECOMPILER_OP_GCC = gcc.
353#
354# The op-undefined.lst is generated by finding all the undefined symbols
355# in one (or more) ELF op.o files using nm.
356#
357ifndef VBOX_RECOMPILER_OP_GCC
358 ifeq ($(KBUILD_TARGET).$(KBUILD_TARGET_ARCH),darwin.x86)
359 VBOX_RECOMPILER_OP_GCC ?= $(notdir $(firstword $(which i386-elf-gcc-3.4 i386-elf-gcc-3.4.6 i386-elf-gcc-3.4.3 i386-elf-gcc) i386-elf-gcc)) # (port install i386-gcc-elf)
360 VBOX_RECOMPILER_OP_GCC_OK := yes
361 VBOX_RECOMPILER_OP_GCC_INCS ?= $(abspath $(dir $(shell LC_ALL=C $(VBOX_RECOMPILER_OP_GCC) -print-libgcc-file-name)))/include
362 endif
363 ifndef VBOX_RECOMPILER_OP_GCC
364 VBOX_RECOMPILER_OP_GCC := $(TOOL_$(VBOX_GCC_TOOL)_CC)
365 VBOX_RECOMPILER_OP_GCC_OK := dunno
366 endif
367else
368 # If set, assume it's an OK compiler.
369 VBOX_RECOMPILER_OP_GCC_OK := yes
370endif
371
372
373# The command sans -o op.S.tmp.
374COMPILE_OP_CMDS_3 = $(VBOX_RECOMPILER_OP_GCC) \
375 -S -s \
376 $(filter-out -g -O0, \
377 $($(REM_MOD)_CFLAGS) $($(REM_MOD)_CFLAGS.$(KBUILD_TYPE)) $($(REM_MOD)_CFLAGS.$(KBUILD_TARGET)) $($(REM_MOD)_CFLAGS.$(KBUILD_TARGET_ARCH)) $($(REM_MOD)_CFLAGS.$(KBUILD_TARGET).$(KBUILD_TARGET_ARCH)) \
378 $(target-i386/op.c_CFLAGS) $(target-i386/op.c_CFLAGS.$(KBUILD_TARGET)) $(target-i386/op.c_CFLAGS.$(KBUILD_TARGET_ARCH)) $(target-i386/op.c_CFLAGS.$(KBUILD_TARGET).$(KBUILD_TARGET_ARCH)) \
379 ) \
380 $(addprefix -I, $(abspathex \
381 $($(REM_MOD)_CINCS.$(KBUILD_TARGET_ARCH)) $($(REM_MOD)_CINCS.$(KBUILD_TARGET)) $($(REM_MOD)_CINCS) $(CINCS) \
382 $($(REM_MOD)_INCS.$(KBUILD_TARGET_ARCH)) $($(REM_MOD)_INCS.$(KBUILD_TARGET)) $($(REM_MOD)_INCS) $(INCS) \
383 , $($(REM_MOD)_PATH))) \
384 $(addprefix -D, \
385 $($(REM_MOD)_CDEFS.$(KBUILD_TARGET_ARCH)) $($(REM_MOD)_CDEFS.$(KBUILD_TARGET)) $($(REM_MOD)_CDEFS) $(CDEFS.$(KBUILD_TARGET)) $(CDEFS.$(KBUILD_TARGET_ARCH)) $(CDEFS.$(KBUILD_TYPE)) $(CDEFS) \
386 $($(REM_MOD)_DEFS.$(KBUILD_TARGET_ARCH)) $($(REM_MOD)_DEFS.$(KBUILD_TARGET)) $($(REM_MOD)_DEFS) $(DEFS.$(KBUILD_TARGET)) $(DEFS.$(KBUILD_TARGET_ARCH)) $(DEFS.$(KBUILD_TYPE)) $(DEFS) \
387 ) \
388 -Wp,-MD,$(PATH_$(REM_MOD))/op.S.dep \
389 -Wp,-MT,$(PATH_$(REM_MOD))/op.S \
390 -Wp,-MP \
391 $(VBOX_PATH_RECOMPILER_SRC)/target-i386/op.c
392
393# Use the right GCC includes.
394ifdef VBOX_RECOMPILER_OP_GCC_INCS
395COMPILE_OP_CMDS_2 = $(subst $(VBOX_PATH_GCC_INCS),$(VBOX_RECOMPILER_OP_GCC_INCS),$(COMPILE_OP_CMDS_3))
396else
397COMPILE_OP_CMDS_2 = $(COMPILE_OP_CMDS_3)
398endif
399
400# Drop incompatible options when using the cross-compiler on darwin.
401ifeq ($(KBUILD_TARGET),darwin)
402 ifeq ($(filter-out i386-elf-gcc%, $(VBOX_RECOMPILER_OP_GCC)),)
403 COMPILE_OP_CMDS = $(filter-out -mdynamic-no-pic -mno-dynamic-no-pic -fno-stack-protector, $(COMPILE_OP_CMDS_2))
404 endif
405else if1of ($(KBUILD_TARGET),linux)
406 ifneq ($(TOOL_$(VBOX_GCC_TOOL)_CC),$(VBOX_RECOMPILER_OP_GCC))
407 VBOX_RECOMPILER_OP_CHECK_CC_GCC = $(shell \
408 if $(VBOX_RECOMPILER_OP_GCC) $(1) -S -o /dev/null -xc /dev/null > /dev/null 2>&1; \
409 then echo "$(1)"; \
410 else echo "$(2)"; fi; )
411 COMPILE_OP_CMDS = \
412 $(filter-out -fno-stack-protector, $(COMPILE_OP_CMDS_2)) \
413 $(call VBOX_RECOMPILER_OP_CHECK_CC_GCC,-fno-stack-protector)
414 endif
415endif
416COMPILE_OP_CMDS ?= $(COMPILE_OP_CMDS_2)
417
418# include the dependencies
419-include $(PATH_$(REM_MOD))/op.S.dep
420
421# The rule.
422$(PATH_$(REM_MOD))/op.S: \
423 $(VBOX_PATH_RECOMPILER_SRC)/target-i386/op.c \
424 $(VBOX_PATH_RECOMPILER_SRC)/Sun/staged-op-elf-$(KBUILD_TARGET_ARCH).S \
425 $(VBOX_PATH_RECOMPILER_SRC)/Sun/op-validate.sed \
426 $(VBOX_PATH_RECOMPILER_SRC)/Sun/op-darwin.sed \
427 $(VBOX_PATH_RECOMPILER_SRC)/Sun/op-undefined.lst \
428 $(VBOX_PATH_RECOMPILER_SRC)/Makefile.kmk \
429 $$(comp-cmds COMPILE_OP_CMDS,COMPILE_OP_CMDS_PREV,FORCE) \
430 | $(call DIRDEP,$(PATH_$(REM_MOD)))
431 $(RM) -f $@ $@.tmp $@.tmp2 $@.dep
432ifeq ($(VBOX_RECOMPILER_OP_GCC_OK),yes)
433 $(call MSG_COMPILE,VBoxREM,$<,$@,AS)
434 $(addsuffix $(SP)\$(NL)$(TAB) ,$(COMPILE_OP_CMDS)) -o $@.tmp
435else ifeq ($(VBOX_RECOMPILER_OP_GCC_OK),dunno) # (permit 3.x.x and 4.1.x+ for now)
436 major_ver=`$(VBOX_RECOMPILER_OP_GCC) -dumpversion | $(SED) -e 's/^\([2-9]\)\..*$$/\1/'`; \
437 minor_ver=`$(VBOX_RECOMPILER_OP_GCC) -dumpversion | $(SED) -e 's/^[2-9]\.\([0-9]\)\..*$$/\1/'`; \
438 bugfix_ver=`$(VBOX_RECOMPILER_OP_GCC) -dumpversion | $(SED) -e 's/^[2-9]\.[0-9]\.\([0-9]\).*$$/\1/'`; \
439 if test "$$major_ver" = "3" -o "(" "$$major_ver" = "4" -a "$$minor_ver" != "0" ")"; then \
440 $(ECHO_EXT) "Compiling $< => $@ [gcc v$${major_ver}.$${minor_ver}.$${bugfix_ver}]" && \
441 $(addsuffix $(SP)\$(NL)$(TAB)$(TAB) ,$(COMPILE_OP_CMDS)) -o $@.tmp; \
442 else \
443 $(ECHO_EXT) "Using staged op.S [gcc v$${major_ver}.$${minor_ver}.$${bugfix_ver}]" && \
444 $(CP_EXT) -f $(VBOX_PATH_RECOMPILER_SRC)/Sun/staged-op-elf-$(KBUILD_TARGET_ARCH).S $@.tmp; \
445 fi
446else
447 $(CP) $(VBOX_PATH_RECOMPILER_SRC)/Sun/staged-op-elf-$(KBUILD_TARGET_ARCH).S $@.tmp
448endif
449 $(SED) -f $(VBOX_PATH_RECOMPILER_SRC)/Sun/op-validate.sed $@.tmp
450ifeq ($(KBUILD_TARGET),darwin)
451 $(SED) -f $(VBOX_PATH_RECOMPILER_SRC)/Sun/op-darwin.sed $@.tmp > $@.tmp2
452 $(SED) -e 's/^\(.*\)$$/#define \1 _\1/' $(VBOX_PATH_RECOMPILER_SRC)/Sun/op-undefined.lst > $@.tmp
453 $(CAT_EXT) $@.tmp2 >> $@.tmp
454endif
455 $(MV) -f $@.tmp $@
456 $(QUIET2)$(APPEND) "$@.dep"
457 $(QUIET2)$(APPEND) "$@.dep" 'define COMPILE_OP_CMDS_PREV'
458 $(QUIET2)$(APPEND) "$@.dep" '$(subst $(NL),'$(NL)$(TAB)@$(APPEND) "$@.dep" ',$(COMPILE_OP_CMDS))'
459 $(QUIET2)$(APPEND) "$@.dep" 'endef'
460
461
462# Hack for crosscompiling.
463DYNGEN = $(PATH_dyngen)/dyngen$(HOSTSUFF_EXE)
464DYNGEN_EXEC = $(DYNGEN)
465ifneq ($(KBUILD_HOST),$(KBUILD_TARGET)) # hack for crosscompiling.
466 ifeq ($(KBUILD_TARGET),win)
467 DYNGEN = $(PATH_dyngen)/dyngen.exe
468 DYNGEN_EXEC := $(EXEC_X86_WIN32) $(DYNGEN_EXEC)
469 endif
470endif
471
472# The dyngen rules.
473$(PATH_$(REM_MOD))/op.h: $(FILE_OP_OBJ) $(DYNGEN)
474 $(call MSG_TOOL,dyngen,VBoxREM,$<,$@)
475 $(QUIET)$(DYNGEN_EXEC) -o $@ $<
476
477$(PATH_$(REM_MOD))/opc.h: $(FILE_OP_OBJ) $(DYNGEN)
478 $(call MSG_TOOL,dyngen,VBoxREM,$<,$@)
479 $(QUIET)$(DYNGEN_EXEC) -c -o $@ $<
480
481$(PATH_$(REM_MOD))/gen-op.h: $(FILE_OP_OBJ) $(DYNGEN)
482 $(call MSG_TOOL,dyngen,VBoxREM,$<,$@)
483 $(QUIET)$(DYNGEN_EXEC) -g -o $@ $<
484
485
486# Some aliases
487do_dyngen: $(PATH_$(REM_MOD))/gen-op.h $(PATH_$(REM_MOD))/opc.h $(PATH_$(REM_MOD))/op.h
488importlib: $(LIB_REM)
489op.S: $(PATH_$(REM_MOD))/op.S
490
Note: See TracBrowser for help on using the repository browser.

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