VirtualBox

source: vbox/trunk/src/VBox/VMM/Makefile.kmk@ 69564

Last change on this file since 69564 was 69560, checked in by vboxsync, 7 years ago

VMMR3: force disabling of Address Sanitiser on PGMPool.cpp - fix a burn.
bugref:8192: gcc warnings
r118908/r69559 did not check that the host gcc version supported the
-fno-sanitize=address flag. Fix that.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 32.3 KB
Line 
1# $Id: Makefile.kmk 69560 2017-11-03 11:37:34Z vboxsync $
2## @file
3# Top-level makefile for the VMM.
4#
5
6#
7# Copyright (C) 2006-2017 Oracle Corporation
8#
9# This file is part of VirtualBox Open Source Edition (OSE), as
10# available from http://www.virtualbox.org. This file is free software;
11# you can redistribute it and/or modify it under the terms of the GNU
12# General Public License (GPL) as published by the Free Software
13# Foundation, in version 2 as it comes in the "COPYING" file of the
14# VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15# hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16#
17
18SUB_DEPTH = ../../..
19include $(KBUILD_PATH)/subheader.kmk
20
21# Include sub-makefiles.
22ifndef VBOX_ONLY_EXTPACKS
23 include $(PATH_SUB_CURRENT)/tools/Makefile.kmk
24endif
25include $(PATH_SUB_CURRENT)/testcase/Makefile.kmk
26
27
28# Fail on unsupported hosts.
29ifeq ($(KBUILD_TARGET_ARCH),x86)
30 ifeq ($(KBUILD_TARGET),darwin)
31 $(error 32-bit darwin is no longer a supported VirtualBox host. Go back to 4.3 or older for 32-bit support.)
32 else ifeq ($(KBUILD_TARGET),solaris)
33 $(error 32-bit solaris is no longer a supported VirtualBox host. Go back to 4.2 or older for 32-bit support.)
34 endif
35endif
36
37
38#
39# Globals
40#
41
42## DEFS variable that is picked up by all three VMM targets (R0, R3, RC).
43# Can be prepended to by setting it in LocalConfig.kmk
44VMM_COMMON_DEFS ?= VBOX_IN_VMM
45ifdef VBOX_WITH_2ND_IEM_STEP
46 VMM_COMMON_DEFS += VBOX_WITH_2ND_IEM_STEP
47endif
48ifdef VBOX_WITH_3RD_IEM_STEP
49 VMM_COMMON_DEFS += VBOX_WITH_3RD_IEM_STEP
50endif
51ifdef VBOX_WITH_NESTED_HWVIRT
52 VMM_COMMON_DEFS += VBOX_WITH_NESTED_HWVIRT
53 ifdef VBOX_WITH_NESTED_HWVIRT_ONLY_IN_IEM
54 VMM_COMMON_DEFS += VBOX_WITH_NESTED_HWVIRT_ONLY_IN_IEM
55 endif
56endif
57#ifdef VBOX_WITH_IEM
58# VMM_COMMON_DEFS += VBOX_WITH_IEM
59#endif
60# part of global DEFS
61#ifdef VBOX_WITH_REM
62# VMM_COMMON_DEFS += VBOX_WITH_REM
63#endif
64ifdef VBOX_WITH_MULTI_CORE
65 VMM_COMMON_DEFS += VBOX_WITH_MULTI_CORE
66endif
67ifdef VBOX_WITH_R0_LOGGING
68 VMM_COMMON_DEFS += VBOX_WITH_R0_LOGGING
69endif
70ifdef VBOX_WITH_VMMR0_DISABLE_LAPIC_NMI
71 VMM_COMMON_DEFS += VBOX_WITH_VMMR0_DISABLE_LAPIC_NMI
72endif
73ifdef VBOX_WITH_PCI_PASSTHROUGH
74 VMM_COMMON_DEFS += VBOX_WITH_PCI_PASSTHROUGH
75endif
76ifdef VBOX_WITH_DTRACE_RC
77 VMM_COMMON_DEFS += VBOX_WITH_DTRACE_RC
78endif
79ifdef VBOX_WITH_SAFE_STR
80 VMM_COMMON_DEFS += VBOX_WITH_SAFE_STR
81endif
82ifdef VBOX_WITH_RAW_RING1
83 VMM_COMMON_DEFS += VBOX_WITH_RAW_RING1
84endif
85ifdef VBOX_WITH_64ON32_IDT
86 VMM_COMMON_DEFS += VBOX_WITH_64ON32_IDT
87endif
88ifdef VBOX_WITH_64ON32_CMOS_DEBUG
89 VMM_COMMON_DEFS += VBOX_WITH_64ON32_CMOS_DEBUG
90endif
91ifdef VBOXSTRICTRC_STRICT_ENABLED
92 VMM_COMMON_DEFS += VBOXSTRICTRC_STRICT_ENABLED
93endif
94ifeq ($(KBUILD_TARGET),amd64)
95 VMM_COMMON_DEFS += VBOX_WITH_MORE_RING0_MEM_MAPPINGS
96endif
97
98# VMM_COMMON_DEFS += VBOX_WITH_NS_ACCOUNTING_STATS
99
100# Special IEM debug mode which compares the result with HM/REM
101ifdef IEM_VERIFICATION_MODE
102 VMM_COMMON_DEFS += IEM_VERIFICATION_MODE IEM_VERIFICATION_MODE_FULL IEM_VERIFICATION_MODE_FULL_HM
103endif
104
105
106#
107# The VMM DLL.
108#
109ifndef VBOX_ONLY_EXTPACKS_USE_IMPLIBS
110 DLLS += VBoxVMM
111endif
112VBoxVMM_TEMPLATE = VBoxR3DllNoPic
113VBoxVMM_SONAME.linux = VBoxVMM.so
114
115VBoxVMM_DEFS = IN_VMM_R3 IN_DIS IN_GMM_R3 IN_DBG $(VMM_COMMON_DEFS)
116## @todo eliminate IN_GMM_R3
117ifdef VBOX_WITH_PREALLOC_RAM_BY_DEFAULT
118 VBoxVMM_DEFS += VBOX_WITH_PREALLOC_RAM_BY_DEFAULT
119endif
120ifdef VBOX_WITH_VUSB
121 VBoxVMM_DEFS += VBOX_WITH_USB
122endif
123ifdef VBOX_WITH_PDM_ASYNC_COMPLETION
124 VBoxVMM_DEFS += VBOX_WITH_PDM_ASYNC_COMPLETION
125endif
126ifdef VBOX_WITH_NETSHAPER
127 VBoxVMM_DEFS += VBOX_WITH_NETSHAPER
128endif
129ifdef VBOX_WITH_RAW_MODE
130 VBoxVMM_DEFS += VBOX_WITH_RAW_MODE VBOX_WITH_RAW_MODE_NOT_R0
131endif
132ifdef VBOX_WITH_VMM_R0_SWITCH_STACK
133 VBoxVMM_DEFS += VMM_R0_SWITCH_STACK
134endif
135if "$(KBUILD_TYPE)" == "debug" && "$(USERNAME)" == "bird"
136 VBoxVMM_DEFS += RTMEM_WRAP_TO_EF_APIS
137endif
138VBoxVMM_DEFS.darwin = VMM_R0_SWITCH_STACK
139
140VBoxVMM_INCS = \
141 include \
142 $(if-expr defined(VBOX_WITH_RAW_MODE),PATM,) \
143 $(VBoxVMM_0_OUTDIR)/CommonGenIncs
144VBoxVMM_ASINCS = .
145
146VBoxVMM_SOURCES = \
147 VBoxVMM.d \
148 VMMR3/APIC.cpp \
149 VMMR3/CFGM.cpp \
150 VMMR3/CPUM.cpp \
151 VMMR3/CPUMR3CpuId.cpp \
152 VMMR3/CPUMR3Db.cpp \
153 VMMR3/CPUMDbg.cpp \
154 VMMR3/DBGF.cpp \
155 VMMR3/DBGFAddr.cpp \
156 VMMR3/DBGFAddrSpace.cpp \
157 VMMR3/DBGFBp.cpp \
158 VMMR3/DBGFCoreWrite.cpp \
159 VMMR3/DBGFCpu.cpp \
160 VMMR3/DBGFDisas.cpp \
161 VMMR3/DBGFInfo.cpp \
162 VMMR3/DBGFLog.cpp \
163 VMMR3/DBGFMem.cpp \
164 VMMR3/DBGFOS.cpp \
165 VMMR3/DBGFR3PlugIn.cpp \
166 VMMR3/DBGFReg.cpp \
167 VMMR3/DBGFStack.cpp \
168 VMMR3/DBGFR3Flow.cpp \
169 VMMR3/DBGFR3Trace.cpp \
170 VMMR3/DBGFR3Type.cpp \
171 VMMR3/EM.cpp \
172 VMMR3/EMR3Dbg.cpp \
173 $(if $(VBOX_WITH_RAW_MODE),VMMR3/EMRaw.cpp) \
174 VMMR3/EMHM.cpp \
175 VMMR3/FTM.cpp \
176 VMMR3/GIM.cpp \
177 VMMR3/GIMHv.cpp \
178 VMMR3/GIMKvm.cpp \
179 VMMR3/GIMMinimal.cpp \
180 VMMR3/IEMR3.cpp \
181 VMMR3/IOM.cpp \
182 VMMR3/GMM.cpp \
183 VMMR3/MM.cpp \
184 VMMR3/MMHeap.cpp \
185 VMMR3/MMHyper.cpp \
186 VMMR3/MMPagePool.cpp \
187 VMMR3/MMUkHeap.cpp \
188 VMMR3/PDM.cpp \
189 VMMR3/PDMBlkCache.cpp \
190 VMMR3/PDMDevice.cpp \
191 VMMR3/PDMDevHlp.cpp \
192 VMMR3/PDMDevMiscHlp.cpp \
193 VMMR3/PDMDriver.cpp \
194 VMMR3/PDMLdr.cpp \
195 VMMR3/PDMCritSect.cpp \
196 VMMR3/PDMQueue.cpp \
197 VMMR3/PDMThread.cpp \
198 VMMR3/PGM.cpp \
199 VMMR3/PGMDbg.cpp \
200 VMMR3/PGMR3DbgA.asm \
201 VMMR3/PGMHandler.cpp \
202 VMMR3/PGMMap.cpp \
203 VMMR3/PGMPhys.cpp \
204 VMMR3/PGMPool.cpp \
205 VMMR3/PGMSavedState.cpp \
206 VMMR3/PGMSharedPage.cpp \
207 VMMR3/SELM.cpp \
208 VMMR3/SSM.cpp \
209 VMMR3/STAM.cpp \
210 VMMR3/TM.cpp \
211 VMMR3/TRPM.cpp \
212 VMMR3/VM.cpp \
213 VMMR3/VMEmt.cpp \
214 VMMR3/VMReq.cpp \
215 VMMR3/VMM.cpp \
216 VMMR3/VMMGuruMeditation.cpp \
217 VMMR3/VMMSwitcher.cpp \
218 VMMR3/VMMTests.cpp \
219 VMMR3/HM.cpp \
220 $(if-expr defined(VBOX_WITH_RAW_MODE), \
221 VMMR3/CSAM.cpp \
222 VMMR3/PATM.cpp \
223 VMMR3/PATMPatch.cpp \
224 VMMR3/PATMGuest.cpp \
225 VMMR3/PATMA.asm \
226 VMMR3/PATMSSM.cpp \
227 VMMR3/PATMR3Dbg.cpp \
228 ,) \
229 VMMAll/APICAll.cpp \
230 VMMAll/CPUMAllRegs.cpp \
231 VMMAll/CPUMAllMsrs.cpp \
232 VMMAll/CPUMStack.cpp \
233 VMMAll/DBGFAll.cpp \
234 VMMAll/HMAll.cpp \
235 VMMAll/HMSVMAll.cpp \
236 VMMAll/IEMAll.cpp \
237 VMMAll/IEMAllAImpl.asm \
238 VMMAll/IEMAllAImplC.cpp \
239 VMMAll/IOMAll.cpp \
240 VMMAll/IOMAllMMIO.cpp \
241 VMMAll/MMAll.cpp \
242 VMMAll/MMAllHyper.cpp \
243 VMMAll/MMAllPagePool.cpp \
244 VMMAll/PDMAll.cpp \
245 VMMAll/PDMAllCritSect.cpp \
246 VMMAll/PDMAllCritSectRw.cpp \
247 VMMAll/PDMAllCritSectBoth.cpp \
248 VMMAll/PDMAllQueue.cpp \
249 VMMAll/PGMAll.cpp \
250 VMMAll/PGMAllHandler.cpp \
251 VMMAll/PGMAllMap.cpp \
252 VMMAll/PGMAllPhys.cpp \
253 VMMAll/PGMAllPool.cpp \
254 VMMAll/SELMAll.cpp \
255 VMMAll/EMAll.cpp \
256 VMMAll/EMAllA.asm \
257 VMMAll/FTMAll.cpp \
258 VMMAll/GIMAll.cpp \
259 VMMAll/GIMAllHv.cpp \
260 VMMAll/GIMAllKvm.cpp \
261 VMMAll/TMAll.cpp \
262 VMMAll/TMAllCpu.cpp \
263 VMMAll/TMAllReal.cpp \
264 VMMAll/TMAllVirtual.cpp \
265 VMMAll/TRPMAll.cpp \
266 VMMAll/VMAll.cpp \
267 VMMAll/VMMAll.cpp \
268 VMMAll/VMMAllA.asm \
269 $(if-expr defined(VBOX_WITH_RAW_MODE), \
270 VMMAll/CSAMAll.cpp \
271 VMMAll/PATMAll.cpp \
272 ,)
273ifdef VBOX_WITH_VUSB
274 VBoxVMM_SOURCES += VMMR3/PDMUsb.cpp
275endif
276ifdef VBOX_WITH_PDM_ASYNC_COMPLETION
277 VBoxVMM_SOURCES += \
278 VMMR3/PDMAsyncCompletion.cpp \
279 VMMR3/PDMAsyncCompletionFile.cpp \
280 VMMR3/PDMAsyncCompletionFileFailsafe.cpp \
281 VMMR3/PDMAsyncCompletionFileNormal.cpp
282endif
283ifdef VBOX_WITH_NETSHAPER
284 VBoxVMM_SOURCES += \
285 VMMR3/PDMNetShaper.cpp \
286 VMMAll/PDMAllNetShaper.cpp
287endif
288ifdef VBOX_WITH_REM
289 VBoxVMM_SOURCES += \
290 VMMAll/REMAll.cpp
291endif
292ifdef VBOX_WITH_RAW_MODE
293 VBoxVMM_SOURCES.x86 += \
294 VMMSwitcher/32BitTo32Bit.asm \
295 VMMSwitcher/32BitToPAE.asm \
296 VMMSwitcher/PAETo32Bit.asm \
297 VMMSwitcher/PAEToPAE.asm
298 VBoxVMM_SOURCES.amd64 = \
299 VMMSwitcher/AMD64To32Bit.asm \
300 VMMSwitcher/AMD64ToPAE.asm
301endif
302VBoxVMM_SOURCES.x86 += \
303 VMMSwitcher/32BitToAMD64.asm \
304 VMMSwitcher/PAEToAMD64.asm \
305 VMMSwitcher/X86Stub.asm
306VBoxVMM_SOURCES.amd64 += \
307 VMMSwitcher/AMD64Stub.asm
308
309VBoxVMM_LIBS = \
310 $(PATH_STAGE_LIB)/DisasmR3$(VBOX_SUFF_LIB)
311ifdef VBOX_WITH_DEBUGGER
312 VBoxVMM_LIBS += \
313 $(PATH_STAGE_LIB)/Debugger$(VBOX_SUFF_LIB)
314endif
315VBoxVMM_LIBS += \
316 $(LIB_REM) \
317 $(LIB_RUNTIME)
318
319VBoxVMM_LIBS.win = $(PATH_TOOL_$(VBOX_VCC_TOOL)_LIB)/delayimp.lib
320VBoxVMM_LDFLAGS.linux = $(VBOX_GCC_NO_UNDEFINED)
321VBoxVMM_LDFLAGS.darwin = -install_name $(VBOX_DYLD_EXECUTABLE_PATH)/VBoxVMM.dylib
322VBoxVMM_LDFLAGS.solaris = -mimpure-text
323
324# SSM wish to know the build type, host os and arch.
325VMMR3/SSM.cpp_DEFS += \
326 KBUILD_TYPE=\"$(KBUILD_TYPE)\" \
327 KBUILD_TARGET=\"$(KBUILD_TARGET)\" \
328 KBUILD_TARGET_ARCH=\"$(KBUILD_TARGET_ARCH)\"
329
330ifdef VBOX_WITH_GCC_SANITIZER
331 VMMR3/PGMPool.cpp_CXXFLAGS.linux += -fno-sanitize=address
332endif
333
334#ifdef VBOX_WITH_PDM_ASYNC_COMPLETION
335# ifeq ($(KBUILD_HOST), linux)
336#VBoxVMM_LIBS += aio
337# endif
338#endif
339
340if "$(USERNAME)" == "bird" && "$(KBUILD_TARGET)" == "win"
341 VBoxVMM_VMMAll/IEMAll.cpp_CXXFLAGS = /FAcs /Fa$(subst /,\\,$(outbase).cod)
342 VBoxVMM_VMMAll/IEMAllAImplC.cpp_CXXFLAGS = /FAcs /Fa$(subst /,\\,$(outbase).cod)
343 VBoxVMM_VMMAll/PGMAll.cpp_CXXFLAGS = /FAcs /Fa$(subst /,\\,$(outbase).cod)
344 VBoxVMM_VMMAll/PDMAllCritSect.cpp_CXXFLAGS = /FAcs /Fa$(subst /,\\,$(outbase).cod)
345endif
346
347$(call VBOX_SET_VER_INFO_DLL,VBoxVMM,VirtualBox VMM) # Version info / description.
348
349
350#
351# Generate macro template for IEM instruction statistics.
352#
353$(call KB_FN_DO_PASS0_ON_TARGET,VBoxVMM) # Set VBoxVMM_0_OUTDIR
354VBoxVMM_INTERMEDIATES += $(VBoxVMM_0_OUTDIR)/CommonGenIncs/IEMInstructionStatisticsTmpl.h
355VBoxVMM_CLEAN += \
356 $(VBoxVMM_0_OUTDIR)/CommonGenIncs/IEMInstructionStatisticsTmpl.h.ts \
357 $(VBoxVMM_0_OUTDIR)/CommonGenIncs/IEMInstructionStatisticsTmpl.h
358$(call KB_FN_AUTO_CMD_DEPS,$(VBoxVMM_0_OUTDIR)/CommonGenIncs/IEMInstructionStatisticsTmpl.h.ts)
359$(VBoxVMM_0_OUTDIR)/CommonGenIncs/IEMInstructionStatisticsTmpl.h.ts \
360+| $(VBoxVMM_0_OUTDIR)/CommonGenIncs/IEMInstructionStatisticsTmpl.h: \
361 $(PATH_SUB_CURRENT)/VMMAll/IEMAllInstructions.cpp.h \
362 $(PATH_SUB_CURRENT)/VMMAll/IEMAllInstructionsOneByte.cpp.h \
363 $(PATH_SUB_CURRENT)/VMMAll/IEMAllInstructionsTwoByte0f.cpp.h \
364 $(PATH_SUB_CURRENT)/VMMAll/IEMAllInstructionsThree0f38.cpp.h \
365 $(PATH_SUB_CURRENT)/VMMAll/IEMAllInstructionsThree0f3a.cpp.h \
366 $(PATH_SUB_CURRENT)/VMMAll/IEMAllInstructionsVexMap1.cpp.h \
367 $(PATH_SUB_CURRENT)/VMMAll/IEMAllInstructionsVexMap2.cpp.h \
368 $(PATH_SUB_CURRENT)/VMMAll/IEMAllInstructionsVexMap3.cpp.h \
369 $(PATH_SUB_CURRENT)/VMMAll/IEMAllInstructions3DNow.cpp.h
370 $(QUIET)$(call MSG_GENERATE,VBoxVMM,$@,VMMAll/IEMAllInstructions*.cpp.h)
371 $(QUIET)$(RM) -f -- "$@.tmp" "$@.tmp" "$@.sorted"
372 $(QUIET)$(MKDIR) -p -- "$(dir $@)"
373 $(call KB_FN_AUTO_CMD_DEPS_COMMANDS)
374 $(QUIET)$(SED) \
375 -e '/IEMOP_MNEMONIC\(\|[01234]\|[01234]EX\)(/!d' \
376 -e ':look-for-end-of-invocation' \
377 -e '/)/bend-of-invocation' \
378 -e 'N' \
379 -e 'blook-for-end-of-invocation' \
380 -e ':end-of-invocation' \
381 -e 's/\n/ /g' \
382 -e 's/ */ /g' \
383 -e 's/^.*IEMOP_MNEMONIC\(\|[01234]\|[01234]EX\)(/IEM_DO_INSTR_STAT\1(/' \
384 -e 's/;.*$(DOLLAR)//' \
385 --output "$@.tmp" $(filter %.cpp.h,$^)
386# Windows sort does some kind of seeking. So, we must use a temporary file and kmk_cat to define and undefine our macros.
387 $(QUIET)$(REDIRECT) -wto "$@.sorted" -- sort "$@.tmp"
388 $(QUIET)$(APPEND) -nt "$@" \
389 '/* Warning autogenerated by VMM/Makefile.kmk. */ ' \
390 '#define IEM_DO_INSTR_STAT0(f,u,l,fd,fi) IEM_DO_INSTR_STAT(l, #l)' \
391 '#define IEM_DO_INSTR_STAT1(f,u,l,o1,fd,fi) IEM_DO_INSTR_STAT(l ## _ ## o1, #l " " #o1)' \
392 '#define IEM_DO_INSTR_STAT2(f,u,l,o1,o2,fd,fi) IEM_DO_INSTR_STAT(l ## _ ## o1 ## _ ## o2, #l " " #o1 "," #o2)' \
393 '#define IEM_DO_INSTR_STAT3(f,u,l,o1,o2,o3,fd,fi) IEM_DO_INSTR_STAT(l ## _ ## o1 ## _ ## o2 ## _ ## o3, #l " " #o1 "," #o2 "," #o3)' \
394 '#define IEM_DO_INSTR_STAT4(f,u,l,o1,o2,o3,o4,fd,fi) IEM_DO_INSTR_STAT(l ## _ ## o1 ## _ ## o2 ## _ ## o3 ## _ ## o4, #l " " #o1 "," #o2 "," #o3 "," #o4)' \
395 '#define IEM_DO_INSTR_STAT0EX(s,m,f,u,l,fd,fi) IEM_DO_INSTR_STAT(s,m)' \
396 '#define IEM_DO_INSTR_STAT1EX(s,m,f,u,l,o1,fd,fi) IEM_DO_INSTR_STAT(s,m)' \
397 '#define IEM_DO_INSTR_STAT2EX(s,m,f,u,l,o1,o2,fd,fi) IEM_DO_INSTR_STAT(s,m)' \
398 '#define IEM_DO_INSTR_STAT3EX(s,m,f,u,l,o1,o2,o3,fd,fi) IEM_DO_INSTR_STAT(s,m)' \
399 '#define IEM_DO_INSTR_STAT4EX(s,m,f,u,l,o1,o2,o3,o4,fd,fi) IEM_DO_INSTR_STAT(s,m)' \
400 ''
401 $(QUIET)$(REDIRECT) -ato "$@" -- $(CAT_EXT) "$@.sorted"
402 $(QUIET)$(APPEND) -n "$@" \
403 '' \
404 '#undef IEM_DO_INSTR_STAT0' \
405 '#undef IEM_DO_INSTR_STAT1' \
406 '#undef IEM_DO_INSTR_STAT2' \
407 '#undef IEM_DO_INSTR_STAT3' \
408 '#undef IEM_DO_INSTR_STAT4' \
409 '#undef IEM_DO_INSTR_STAT0EX' \
410 '#undef IEM_DO_INSTR_STAT1EX' \
411 '#undef IEM_DO_INSTR_STAT2EX' \
412 '#undef IEM_DO_INSTR_STAT3EX' \
413 '#undef IEM_DO_INSTR_STAT4EX' \
414 ''
415 $(QUIET)$(RM) -f -- "$@.tmp" "$@.sorted"
416 $(QUIET)$(CP) -v -f --changed -- "$@" "$(patsubst %.ts,%,$@)"
417
418foobar: $(VBoxVMM_0_OUTDIR)/CommonGenIncs/IEMInstructionStatisticsTmpl.h
419
420if "$(KBUILD_TARGET)" == "win" && !defined(VBOX_ONLY_EXTPACKS_USE_IMPLIBS)
421 #
422 # Debug type info hack for VMCPU, VM and similar.
423 #
424 # The microsoft linker seems to be using the last occurence of the structures
425 # when writing the module PDB file. So, we put the fully complete structures
426 # in a library which is at the end of the library list.
427 #
428 VBoxVMM_LIBS += $(VBoxVMMPdbTypeHack_1_TARGET)
429 VBoxVMM_LDFLAGS += /Export:PdbTypeHack
430
431 LIBRARIES += VBoxVMMPdbTypeHack
432 VBoxVMMPdbTypeHack_TEMPLATE = $(VBoxVMM_TEMPLATE)
433 VBoxVMMPdbTypeHack_SOURCES = VMMAll/AllPdbTypeHack.cpp
434 VBoxVMMPdbTypeHack_DEFS = $(VBoxVMM_DEFS)
435 VBoxVMMPdbTypeHack_DEFS.win = $(VBoxVMM_DEFS.win)
436 VBoxVMMPdbTypeHack_DEFS.win.x86 = $(VBoxVMM_DEFS.win.x86)
437 VBoxVMMPdbTypeHack_DEFS.win.amd64 = $(VBoxVMM_DEFS.win.amd64)
438 VBoxVMMPdbTypeHack_INCS = $(VBoxVMM_INCS)
439 VBoxVMMPdbTypeHack_INTERMEDIATES = $(VBoxVMM_INTERMEDIATES)
440endif
441
442
443if defined(VBOX_WITH_RAW_MODE) && $(intersects $(VBOX_LDR_FMT32), pe lx)
444
445 #
446 # VMMRCBuiltin.lib
447 #
448 LIBRARIES += VMMRCBuiltin
449 VMMRCBuiltin_TEMPLATE = VBoxRc
450 ifeq ($(VBOX_LDR_FMT32),pe)
451 VMMRCBuiltin_SOURCES = VMMRC/VMMRCBuiltin.def
452 endif
453 ifeq ($(VBOX_LDR_FMT32),lx)
454 VMMRCBuiltin_SOURCES = $(VMMRCBuiltin_0_OUTDIR)/VMMRCBuiltin.def
455 $$(VMMRCBuiltin_0_OUTDIR)/VMMRCBuiltin.def: $(PATH_SUB_CURRENT)/VMMRC/VMMRCBuiltin.def | $$(dir $$@)
456 $(SED) -e '/not-os2/d' -e 's/^[ \t][ \t]*\([a-zA-Z]\)/ _\1/' -e 's/[ \t]DATA[ \t]*/ /' --output $@ $<
457 endif
458
459
460 #
461 # VMMRCImp.lib
462 #
463 LIBRARIES += VMMRCImp
464 VMMRCImp_TEMPLATE = VBoxRc
465 VMMRCImp_SOURCES = $(VMMRCImp_0_OUTDIR)/VMMRC.def
466 VMMRCImp_CLEAN = $(VMMRCImp_0_OUTDIR)/VMMRC.def
467 $(call KB_FN_DO_PASS0_ON_TARGET,VMMRCImp)
468
469 $(call KB_FN_AUTO_CMD_DEPS,$(VMMRCImp_0_OUTDIR)/VMMRC.def)
470 $(VMMRCImp_0_OUTDIR)/VMMRC.def: $(VMMRCImp_DEFPATH)/VMMRC/VMMRC.def | $$(dir $$@)
471 $(call KB_FN_AUTO_CMD_DEPS_COMMANDS)
472 ifeq ($(VBOX_LDR_FMT32),lx)
473 $(SED) \
474 -e '/not-os2/d' \
475 -e 's/^[ \t][ \t]*\([a-zA-Z]\)/ _\1/' \
476 -e 's/[ \t]DATA[ \t]*/ /' \
477 --output $@ \
478 $(VMMRCImp_DEFPATH)/VMMRC/VMMRC.def
479 $(APPEND) "$@" ""
480 $(APPEND) "$@" " ___ehInit"
481 else
482 $(SED) \
483 -e '/not-win/d' \
484 -e '/not-$(KBUILD_TARGET_ARCH)/d' \
485 --output $@ $(VMMRCImp_DEFPATH)/VMMRC/VMMRC.def
486 endif
487
488endif # RC && (pe || lx)
489
490
491if1of ($(VBOX_LDR_FMT), pe lx)
492 #
493 # VMMR0Imp.lib
494 #
495 LIBRARIES += VMMR0Imp
496 VMMR0Imp_TEMPLATE = VBoxR0
497 VMMR0Imp_SOURCES = $(VMMR0Imp_0_OUTDIR)/VMMR0.def
498 VMMR0Imp_CLEAN = $(VMMR0Imp_0_OUTDIR)/VMMR0.def
499 ifeq ($(KBUILD_TARGET),win) # Experiment: Let's see how blunt the ones messing our NULL_THUNK_DATA entries on W10 are.
500 VMMR0Imp_POST_CMDS = $(KLIBTWEAKER_EXT) --clear-timestamps --fill-null_thunk_data $(out)
501 endif
502 $(call KB_FN_DO_PASS0_ON_TARGET,VMMR0Imp)
503
504 $(call KB_FN_AUTO_CMD_DEPS,$(VMMR0Imp_0_OUTDIR)/VMMR0.def)
505 $(VMMR0Imp_0_OUTDIR)/VMMR0.def: $(VMMR0Imp_DEFPATH)/VMMR0/VMMR0.def | $$(dir $$@)
506 $(call KB_FN_AUTO_CMD_DEPS_COMMANDS)
507 ifeq ($(VBOX_LDR_FMT),lx)
508 $(SED) \
509 -e '/not-os2/d' \
510 -e '/not-amd64/d' \
511 -e 's/^[ \t][ \t]*\([a-zA-Z]\)/ _\1/' \
512 -e 's/[ \t]DATA[ \t]*/ /' \
513 --output $@ $(VMMR0Imp_DEFPATH)/VMMR0/VMMR0.def
514 $(APPEND) "$@" ""
515 $(APPEND) "$@" " ___ehInit"
516 else
517 $(SED) \
518 -e '/not-win/d' \
519 -e '/not-$(KBUILD_TARGET_ARCH)/d' \
520 --output $@ $(VMMR0Imp_DEFPATH)/VMMR0/VMMR0.def
521 endif
522endif # R0: pe + lx
523
524
525#
526# VMMR3Imp.lib
527#
528IMPORT_LIBS += VMMR3Imp
529$(call VBOX_GENERATE_IMPORT_TARGET_FN,VMMR3Imp,VBoxVMM,VMMR3/VMMR3.def)
530
531ifneq ($(VBOX_LIB_VMM_LAZY),$(LIB_VMM))
532 #
533 # VMMR3LazyImp.lib (experimental)
534 #
535 LIBRARIES += VMMR3LazyImp
536 VMMR3LazyImp_TEMPLATE = VBoxR3Dll
537 VMMR3LazyImp_INST = $(INST_LIB)
538 VMMR3LazyImp_SOURCES = $(VMMR3LazyImp_0_OUTDIR)/VMMR3LazyLoad.asm
539 VMMR3LazyImp_CLEAN = $(VMMR3LazyImp_0_OUTDIR)/VMMR3LazyLoad.asm
540 $(call KB_FN_DO_PASS0_ON_TARGET,VMMR3LazyImp)
541
542 $(call KB_FN_AUTO_CMD_DEPS,$(VMMR3LazyImp_0_OUTDIR)/VMMR3LazyLoad.asm)
543 $(VMMR3LazyImp_0_OUTDIR)/VMMR3LazyLoad.asm: $(VMMR3LazyImp_DEFPATH)/VMMR3/VMMR3.def $(VBOX_DEF_2_LAZY_LOAD) | $$(dir $$@)
544 $(call KB_FN_AUTO_CMD_DEPS_COMMANDS)
545 $(VBOX_DEF_2_LAZY_LOAD) --output $@ --library VBoxVMM $(VMMR3LazyImp_DEFPATH)/VMMR3/VMMR3.def
546endif
547
548
549if defined(VBOX_WITH_RAW_MODE) && !defined(VBOX_ONLY_EXTPACKS)
550 #
551 # VMMRC.rc
552 #
553 SYSMODS += VMMRC
554 VMMRC_TEMPLATE = VBoxRc
555 VMMRC_NAME = VMMRC
556
557 VMMRC_DEFS = IN_VMM_RC IN_RT_RC IN_DIS DIS_CORE_ONLY VBOX_WITH_RAW_MODE VBOX_WITH_RAW_MODE_NOT_R0 IN_SUP_RC \
558 $(VMM_COMMON_DEFS)
559 VMMRC_DEFS := $(filter-out VBOX_WITH_NESTED_HWVIRT,$(VMMRC_DEFS))
560 ifdef VBOX_WITH_VMM_R0_SWITCH_STACK
561 VMMRC_DEFS += VMM_R0_SWITCH_STACK
562 endif
563
564 VMMRC_INCS = \
565 include \
566 VMMRC \
567 $(if-expr defined(VBOX_WITH_RAW_MODE),PATM,) \
568 $(VBoxVMM_0_OUTDIR)/CommonGenIncs
569
570 VMMRC_LIBS = \
571 $(PATH_STAGE_LIB)/DisasmRC$(VBOX_SUFF_LIB) \
572 $(PATH_STAGE_LIB)/RuntimeRC$(VBOX_SUFF_LIB) \
573 $(PATH_STAGE_LIB)/SUPRC$(VBOX_SUFF_LIB)
574 ifneq ($(filter pe lx,$(VBOX_LDR_FMT32)),)
575 VMMRC_LIBS += \
576 $(PATH_STAGE_LIB)/VMMRCBuiltin$(VBOX_SUFF_LIB)
577 endif
578
579 VMMRC_SOURCES = \
580 VBoxVMM.d \
581 VMMRC/VMMRC0.asm \
582 VMMRC/VMMRCDeps.cpp \
583 VMMRC/CPUMRC.cpp \
584 VMMRC/CPUMRCA.asm \
585 VMMRC/CPUMRCPatchHlp.asm \
586 VMMRC/EMRCA.asm \
587 VMMRC/IOMRC.cpp \
588 VMMRC/MMRamRC.cpp \
589 VMMRC/MMRamRCA.asm \
590 VMMRC/PDMRCDevice.cpp \
591 VMMRC/PGMRC.cpp \
592 VMMRC/SELMRC.cpp \
593 VMMRC/TRPMRC.cpp \
594 VMMRC/TRPMRCHandlers.cpp \
595 VMMRC/TRPMRCHandlersA.asm \
596 VMMRC/VMMRC.cpp \
597 VMMRC/VMMRCA.asm \
598 $(if-expr defined(VBOX_WITH_RAW_MODE), \
599 VMMRC/CSAMRC.cpp \
600 VMMRC/PATMRC.cpp \
601 ,) \
602 VMMRZ/CPUMRZ.cpp \
603 VMMRZ/CPUMRZA.asm \
604 VMMRZ/DBGFRZ.cpp \
605 VMMRZ/PGMRZDynMap.cpp \
606 VMMRZ/VMMRZ.cpp \
607 VMMAll/APICAll.cpp \
608 VMMAll/CPUMAllRegs.cpp \
609 VMMAll/CPUMAllMsrs.cpp \
610 VMMAll/DBGFAll.cpp \
611 VMMAll/IEMAll.cpp \
612 VMMAll/IEMAllAImpl.asm \
613 VMMAll/IEMAllAImplC.cpp \
614 VMMAll/IOMAll.cpp \
615 VMMAll/IOMAllMMIO.cpp \
616 VMMAll/EMAll.cpp \
617 VMMAll/EMAllA.asm \
618 VMMAll/FTMAll.cpp \
619 VMMAll/GIMAll.cpp \
620 VMMAll/GIMAllHv.cpp \
621 VMMAll/GIMAllKvm.cpp \
622 VMMAll/HMAll.cpp \
623 VMMAll/HMSVMAll.cpp \
624 VMMAll/MMAll.cpp \
625 VMMAll/MMAllHyper.cpp \
626 VMMAll/PDMAll.cpp \
627 VMMAll/PDMAllCritSect.cpp \
628 VMMAll/PDMAllCritSectRw.cpp \
629 VMMAll/PDMAllCritSectBoth.cpp \
630 VMMAll/PDMAllQueue.cpp \
631 VMMAll/PGMAll.cpp \
632 VMMAll/PGMAllHandler.cpp \
633 VMMAll/PGMAllMap.cpp \
634 VMMAll/PGMAllPhys.cpp \
635 VMMAll/PGMAllPool.cpp \
636 VMMAll/SELMAll.cpp \
637 VMMAll/TMAll.cpp \
638 VMMAll/TMAllCpu.cpp \
639 VMMAll/TMAllReal.cpp \
640 VMMAll/TMAllVirtual.cpp \
641 VMMAll/TRPMAll.cpp \
642 VMMAll/VMAll.cpp \
643 VMMAll/VMMAll.cpp \
644 VMMAll/VMMAllA.asm \
645 $(if-expr defined(VBOX_WITH_RAW_MODE), \
646 VMMAll/CSAMAll.cpp \
647 VMMAll/PATMAll.cpp \
648 ,)
649 ifeq ($(VBOX_LDR_FMT32),pe)
650 VMMRC_SOURCES += VMMRC/VMMRC.def
651 endif
652 ifeq ($(VBOX_LDR_FMT32),lx)
653 VMMRC_SOURCES += $(VMMRCImp_0_OUTDIR)/VMMRC.def
654 endif
655 ifdef VBOX_WITH_REM
656 VMMRC_SOURCES += \
657 VMMAll/REMAll.cpp
658 endif
659
660 # The very last one.
661 VMMRC_SOURCES += \
662 VMMRC/VMMRC99.asm
663
664 VMMRC/VMMRCDeps.cpp_CXXFLAGS.win = -Oi- -TC ## @todo rename VMMRCDeps.cpp to .c
665
666 $(call VBOX_SET_VER_INFO_RC,VMMRC,VirtualBox VMM - raw-mode context parts) # Version info / description.
667
668 if "$(USERNAME)" == "bird" && "$(KBUILD_TARGET)" == "win"
669 VMMRC_VMMAll/IEMAll.cpp_CXXFLAGS = /FAcs /Fa$(subst /,\\,$(outbase).cod)
670 VMMRC_VMMAll/IEMAllAImplC.cpp_CXXFLAGS = /FAcs /Fa$(subst /,\\,$(outbase).cod)
671 VMMRC_VMMAll/PGMAll.cpp_CXXFLAGS = /FAcs /Fa$(subst /,\\,$(outbase).cod)
672 endif
673
674 VMMRC_INTERMEDIATES += $(VBoxVMM_0_OUTDIR)/CommonGenIncs/IEMInstructionStatisticsTmpl.h
675
676 if "$(KBUILD_TARGET)" == "win"
677 # Debug type info hack for VMCPU, VM and similar. See VBoxVMM for details.
678 VMMRC_LIBS += $(VMMRCPdbTypeHack_1_TARGET)
679 VMMRC_LDFLAGS += /Export:PdbTypeHack
680
681 LIBRARIES += VMMRCPdbTypeHack
682 VMMRCPdbTypeHack_TEMPLATE = $(VMMRC_TEMPLATE)
683 VMMRCPdbTypeHack_SOURCES = VMMAll/AllPdbTypeHack.cpp
684 VMMRCPdbTypeHack_DEFS = $(VMMRC_DEFS)
685 VMMRCPdbTypeHack_DEFS.win = $(VMMRC_DEFS.win)
686 VMMRCPdbTypeHack_DEFS.win.x86 = $(VMMRC_DEFS.win.x86)
687 VMMRCPdbTypeHack_DEFS.win.amd64 = $(VMMRC_DEFS.win.amd64)
688 VMMRCPdbTypeHack_INCS = $(VMMRC_INCS)
689 VMMRCPdbTypeHack_INTERMEDIATES = $(VMMRC_INTERMEDIATES)
690 endif
691
692endif # VBOX_WITH_RAW_MODE && !VBOX_ONLY_EXTPACKS
693
694
695ifndef VBOX_ONLY_EXTPACKS
696 #
697 # VMMR0.r0
698 #
699 SYSMODS += VMMR0
700 VMMR0_TEMPLATE = VBoxR0
701 VMMR0_SYSSUFF = .r0
702
703 VMMR0_DEFS = IN_VMM_R0 IN_RT_R0 IN_DIS DIS_CORE_ONLY IN_GVMM_R0 IN_GMM_R0 IN_INTNET_R0 \
704 $(VMM_COMMON_DEFS) RTASSERT_HAVE_SHOULD_PANIC
705 ## @todo eliminate IN_GVMM_R0 IN_GMM_R0
706 ifdef VBOX_WITH_PCI_PASSTHROUGH
707 VMMR0_DEFS += IN_PCIRAW_R0
708 endif
709 ifdef VBOX_WITH_TRIPLE_FAULT_HACK
710 VMMR0_DEFS += VBOX_WITH_TRIPLE_FAULT_HACK
711 endif
712 ifdef VBOX_WITH_RAW_MODE
713 VMMR0_DEFS += VBOX_WITH_RAW_MODE
714 endif
715 ifdef VBOX_WITH_VMM_R0_SWITCH_STACK
716 VMMR0_DEFS += VMM_R0_SWITCH_STACK
717 endif
718 if1of ($(KBUILD_TARGET), darwin linux win)
719 VMMR0_DEFS += VMM_R0_TOUCH_FPU
720 endif
721 VMMR0_DEFS.darwin = VMM_R0_SWITCH_STACK
722 VMMR0_DEFS.win.amd64 = VBOX_WITH_KERNEL_USING_XMM
723
724 ifeq ($(VBOX_LDR_FMT),elf)
725 VMMR0_CXXFLAGS += -Wunused -Wunused-variable -Wno-unused-parameter
726 endif
727
728 VMMR0_INCS = \
729 include \
730 $(if-expr defined(VBOX_WITH_RAW_MODE),PATM,) \
731 $(VBoxVMM_0_OUTDIR)/CommonGenIncs
732
733 VMMR0_SOURCES = \
734 VBoxVMM.d \
735 VMMR0/CPUMR0.cpp \
736 VMMR0/CPUMR0A.asm \
737 VMMR0/GIMR0.cpp \
738 VMMR0/GIMR0Hv.cpp \
739 VMMR0/GIMR0Kvm.cpp \
740 VMMR0/GMMR0.cpp \
741 VMMR0/GVMMR0.cpp \
742 VMMR0/HMR0.cpp \
743 VMMR0/HMR0A.asm \
744 VMMR0/HMVMXR0.cpp \
745 VMMR0/HMSVMR0.cpp \
746 VMMR0/PDMR0Device.cpp \
747 VMMR0/PDMR0Driver.cpp \
748 VMMR0/PGMR0.cpp \
749 VMMR0/PGMR0SharedPage.cpp \
750 VMMR0/TRPMR0.cpp \
751 VMMR0/TRPMR0A.asm \
752 VMMR0/VMMR0.cpp \
753 VMMRZ/CPUMRZ.cpp \
754 VMMRZ/CPUMRZA.asm \
755 VMMRZ/DBGFRZ.cpp \
756 VMMRZ/VMMRZ.cpp \
757 VMMAll/APICAll.cpp \
758 VMMAll/CPUMAllRegs.cpp \
759 VMMAll/CPUMAllMsrs.cpp \
760 VMMAll/CPUMStack.cpp \
761 VMMAll/DBGFAll.cpp \
762 VMMAll/EMAll.cpp \
763 VMMAll/EMAllA.asm \
764 VMMAll/FTMAll.cpp \
765 VMMAll/GIMAll.cpp \
766 VMMAll/GIMAllHv.cpp \
767 VMMAll/GIMAllKvm.cpp \
768 VMMAll/HMAll.cpp \
769 VMMAll/HMSVMAll.cpp \
770 VMMAll/IEMAll.cpp \
771 VMMAll/IEMAllAImpl.asm \
772 VMMAll/IEMAllAImplC.cpp \
773 VMMAll/IOMAll.cpp \
774 VMMAll/IOMAllMMIO.cpp \
775 VMMAll/MMAll.cpp \
776 VMMAll/MMAllHyper.cpp \
777 VMMAll/MMAllPagePool.cpp \
778 VMMAll/PDMAll.cpp \
779 VMMAll/PDMAllCritSect.cpp \
780 VMMAll/PDMAllCritSectRw.cpp \
781 VMMAll/PDMAllCritSectBoth.cpp \
782 VMMAll/PDMAllQueue.cpp \
783 VMMAll/PGMAll.cpp \
784 VMMAll/PGMAllHandler.cpp \
785 VMMAll/PGMAllMap.cpp \
786 VMMAll/PGMAllPhys.cpp \
787 VMMAll/PGMAllPool.cpp \
788 VMMAll/SELMAll.cpp \
789 VMMAll/TMAll.cpp \
790 VMMAll/TMAllCpu.cpp \
791 VMMAll/TMAllReal.cpp \
792 VMMAll/TMAllVirtual.cpp \
793 VMMAll/TRPMAll.cpp \
794 VMMAll/VMAll.cpp \
795 VMMAll/VMMAll.cpp \
796 VMMAll/VMMAllA.asm
797 if1of ($(VBOX_LDR_FMT), pe lx)
798 VMMR0_SOURCES += $(VMMR0Imp_0_OUTDIR)/VMMR0.def
799 endif
800 ifdef VBOX_WITH_TRIPLE_FAULT_HACK
801 VMMR0_SOURCES += \
802 VMMR0/VMMR0TripleFaultHack.cpp \
803 VMMR0/VMMR0TripleFaultHackA.asm
804 endif
805 ifdef VBOX_WITH_NETSHAPER
806 VMMR0_SOURCES += \
807 VMMAll/PDMAllNetShaper.cpp
808 endif
809 ifdef VBOX_WITH_REM
810 VMMR0_SOURCES += \
811 VMMAll/REMAll.cpp
812 endif
813 VMMR0_SOURCES.amd64 = \
814 VMMR0/VMMR0JmpA-amd64.asm
815 VMMR0_SOURCES.x86 = \
816 VMMR0/VMMR0JmpA-x86.asm
817
818 VMMR0_LIBS = \
819 $(PATH_STAGE_LIB)/ServicesR0$(VBOX_SUFF_LIB) \
820 $(PATH_STAGE_LIB)/RuntimeR0$(VBOX_SUFF_LIB) \
821 $(PATH_STAGE_LIB)/DisasmR0$(VBOX_SUFF_LIB)
822 ifneq ($(filter pe lx,$(VBOX_LDR_FMT)),)
823 VMMR0_LIBS += \
824 $(PATH_STAGE_LIB)/SUPR0$(VBOX_SUFF_LIB)
825 endif
826
827 $(call VBOX_SET_VER_INFO_R0,VMMR0,VirtualBox VMM - ring-0 context parts) # Version info / description.
828
829 if "$(USERNAME)" == "bird" && "$(KBUILD_TARGET)" == "win"
830 VMMR0_VMMAll/IEMAll.cpp_CXXFLAGS = /FAcs /Fa$(subst /,\\,$(outbase).cod)
831 VMMR0_VMMAll/IEMAllAImplC.cpp_CXXFLAGS = /FAcs /Fa$(subst /,\\,$(outbase).cod)
832 VMMR0_VMMAll/PGMAll.cpp_CXXFLAGS = /FAcs /Fa$(subst /,\\,$(outbase).cod)
833 endif
834
835 VMMR0_INTERMEDIATES += $(VBoxVMM_0_OUTDIR)/CommonGenIncs/IEMInstructionStatisticsTmpl.h
836
837 if "$(KBUILD_TARGET)" == "win"
838 # Debug type info hack for VMCPU, VM and similar. See VBoxVMM for details.
839 VMMR0_LIBS += $(VMMR0PdbTypeHack_1_TARGET)
840 VMMR0_LDFLAGS += /Export:PdbTypeHack
841
842 LIBRARIES += VMMR0PdbTypeHack
843 VMMR0PdbTypeHack_TEMPLATE = $(VMMR0_TEMPLATE)
844 VMMR0PdbTypeHack_SOURCES = VMMAll/AllPdbTypeHack.cpp
845 VMMR0PdbTypeHack_DEFS = $(VMMR0_DEFS)
846 VMMR0PdbTypeHack_DEFS.win = $(VMMR0_DEFS.win)
847 VMMR0PdbTypeHack_DEFS.win.x86 = $(VMMR0_DEFS.win.x86)
848 VMMR0PdbTypeHack_DEFS.win.amd64 = $(VMMR0_DEFS.win.amd64)
849 VMMR0PdbTypeHack_INCS = $(VMMR0_INCS)
850 VMMR0PdbTypeHack_INTERMEDIATES = $(VMMR0_INTERMEDIATES)
851 endif
852
853endif # !VBOX_ONLY_EXTPACKS
854
855
856
857ifndef VBOX_ONLY_EXTPACKS
858 #
859 # SSMStandalone.lib/a for linking with VBoxSVC and other executables.
860 #
861 LIBRARIES += SSMStandalone
862 SSMStandalone_TEMPLATE = VBOXR3EXE
863 SSMStandalone_DEFS = IN_VMM_R3 IN_VMM_STATIC SSM_STANDALONE CPUM_DB_STANDALONE
864 SSMStandalone_INCS = include
865 SSMStandalone_SOURCES = \
866 VMMR3/SSM.cpp \
867 VMMR3/CPUMR3Db.cpp
868endif # !VBOX_ONLY_EXTPACKS
869
870
871if !defined(VBOX_ONLY_EXTPACKS) \
872 && ( defined(VBOX_WITH_DTRACE_R3) \
873 || defined(VBOX_WITH_DTRACE_R0) \
874 || defined(VBOX_WITH_DTRACE_RC))
875 #
876 # Install the dtrace library files.
877 #
878 INSTALLS += VMMLibDTrace
879 VMMLibDTrace_INST = $(VBOX_INST_DTRACE_LIB)$(KBUILD_TARGET_ARCH)/
880 VMMLibDTrace_SOURCES = \
881 dtrace/lib/vbox-types.d \
882 dtrace/lib/$(KBUILD_TARGET_ARCH)/vbox-arch-types.d \
883 $(VMMLibDTrace_0_OUTDIR)/vm.d \
884 $(VMMLibDTrace_0_OUTDIR)/cpumctx.d \
885 $(VMMLibDTrace_0_OUTDIR)/cpum.d \
886 $(VMMLibDTrace_0_OUTDIR)/CPUMInternal.d \
887 $(VMMLibDTrace_0_OUTDIR)/x86.d
888 $(call KB_FN_DO_PASS0_ON_TARGET,VMMLibDTrace)
889
890
891 ##
892 # Turn the header $2 into the DTrace library script $1.
893 #
894 define def_vmm_lib_dtrace_preprocess
895 $$(call KB_FN_AUTO_CMD_DEPS,$$(VMMLibDTrace_0_OUTDIR)/$1)
896 $$(VMMLibDTrace_0_OUTDIR)/$1: $2 $$(VBOX_VBOXCPP) | $$$$(dir $$$$@)
897 $$(call KB_FN_AUTO_CMD_DEPS_COMMANDS)
898 $$(QUIET)$$(call MSG_GENERATE,VMMLibDTrace,$$@,$2)
899 $$(QUIET)$(VBOX_VBOXCPP) -d \
900 -D VBOX_FOR_DTRACE_LIB \
901 -D VBOX_FOR_DTRACE_LIB_$(toupper $(KBUILD_TARGET_ARCH)) \
902 -D IN_RING0 \
903 -D RT_C_DECLS_BEGIN= \
904 -D RT_C_DECLS_END= \
905 -D 'RCPTRTYPE(a_Type)=RTRCPTR' \
906 -D 'R3PTRTYPE(a_Type)=RTR3PTR' \
907 -D 'R0PTRTYPE(a_Type)=a_Type' \
908 -D 'AssertCompile(a_Expr)=' \
909 -D 'AssertCompileSize(a_Stuct, a_Size)=' \
910 -D 'bool=uint8_t' \
911 $$(foreach def,\
912 $$(DEFS) \
913 $$(DEFS.$$(KBUILD_TARGET)) \
914 $$(DEFS.$(KBUILD_TARGET_ARCH)) \
915 $$(VMM_COMMON_DEFS) \
916 $$(ARCH_BITS_DEFS)\
917 ,-D '$$(def)') \
918 $2 \
919 $$@
920 $$(QUIET)$$(CHMOD) 644 $$@
921 endef
922 $(evalcall2 def_vmm_lib_dtrace_preprocess,vm.d,$(PATH_ROOT)/include/VBox/vmm/vm.h)
923 $(evalcall2 def_vmm_lib_dtrace_preprocess,cpumctx.d,$(PATH_ROOT)/include/VBox/vmm/cpumctx.h)
924 $(evalcall2 def_vmm_lib_dtrace_preprocess,cpum.d,$(PATH_ROOT)/include/VBox/vmm/cpum.h)
925 $(evalcall2 def_vmm_lib_dtrace_preprocess,CPUMInternal.d,$(PATH_SUB_CURRENT)/include/CPUMInternal.h)
926 $(evalcall2 def_vmm_lib_dtrace_preprocess,x86.d,$(PATH_ROOT)/include/iprt/x86.h)
927
928endif
929
930
931
932#
933# For vmmGetSvnRev.
934#
935VMMAll/VMMAll.cpp_DEFS = VBOX_SVN_REV=$(VBOX_SVN_REV)
936
937#
938# Disable annoying warnings about array subscript above array bounds in aPages[]
939#
940ifneq ($(KBUILD_TARGET),win)
941 VMMR3/PGMPool.cpp_CXXFLAGS = $(VBOX_GCC_Wno-array_bounds)
942 VMMAll/PGMAllPool.cpp_CXXFLAGS = $(VBOX_GCC_Wno-array_bounds)
943 VMMAll/PGMAll.cpp_CXXFLAGS = -Wno-unused-function
944 VMMAll/IEMAll.cpp_CXXFLAGS = -Wno-unused-function
945 VMMR0/GMMR0.cpp_CXXFLAGS = -Wno-unused-value
946endif
947
948#
949# Always optimize the interpreter.
950#
951if $(USERNAME) != "bird" || "$(KBUILD_TYPE)" == "release" #|| "$(KBUILD_TARGET).$(KBUILD_TARGET_ARCH)" == "win.amd64"
952 if1of ($(KBUILD_TARGET), win)
953 # -noover is recognized despite the statement saying otherwise. It silences these warnings:
954 # cl : Command line warning D9025 : overriding '/Od' with '/O2'
955 # cl : Command line warning D9025 : overriding '/Oy-' with '/Oy'
956 VMMAll/IEMAll.cpp_CXXFLAGS += -noover -O2xy
957 else
958 VMMAll/IEMAll.cpp_CXXFLAGS += -O2
959 #VMMAll/IEMAll.cpp_CXXFLAGS += -fno-align-functions -fno-align-jumps -fno-align-loops # Saves a few of percents, not worth it.
960 #VMMAll/IEMAll.cpp_CXXFLAGS += -fno-reorder-blocks # Saves one or two percent ... never mind.
961 VMMAll/IEMAll.cpp_CXXFLAGS += -fomit-frame-pointer # Omitting the frame pointer results in larger code, but it might be worth it. (esp addressing vs ebp?)
962 endif
963endif # bird wants good stacks
964
965
966# Alias the CPU database entries.
967$(foreach base,$(notdir $(basename $(wildcard $(PATH_SUB_CURRENT)/VMMR3/cpus/*.h))), $(eval $(base).o $(base).obj: CPUMR3Db.o))
968
969
970#
971# Process python source(s).
972#
973BLDDIRS += $(PATH_TARGET)/pylint
974
975define def_vbox_vmm_py_check
976$(eval name:=$(basename $(notdir $(py))))
977
978pylint:: $(name)-py-phony.o
979$(name).o: $(name)-py-phony.o
980$(PATH_TARGET)/pylint/$(name).o $(name)-py-phony.o:: $(py) | $(PATH_TARGET)/pylint/
981ifdef VBOX_WITH_PYLINT
982 $(QUIET2)$(call MSG_L1,Subjecting $(py) to pylint...)
983 $(QUIET)$(REDIRECT) -C "$(dir $(py))" -E LC_ALL=C -- \
984 $(VBOX_PYLINT) --rcfile=$(PATH_TARGET)/no-such-pylintrc \
985 $$(VBOX_PYLINT_FLAGS) $$($(py)_VBOX_PYLINT_FLAGS) ./$(notdir $(py))
986endif
987 $(QUIET)$(APPEND) -t "$(PATH_TARGET)/pylint/$(name).o"
988
989TESTING += $(name)-py-phony.o
990endef # def_vbox_vmm_py_check
991
992$(foreach py, $(addprefix $(PATH_SUB_CURRENT)/VMMAll/, IEMAllInstructionsPython.py ) , $(eval $(def_vbox_vmm_py_check)))
993
994
995#
996# Test for undefined symbols.
997#
998if1of ($(SYSMODS),VMMRC)
999 test-undef-rc:: $(PATH_TARGET)/undef-rc.run
1000 OTHERS += $(PATH_TARGET)/undef-rc.run
1001 CLEANS += $(PATH_TARGET)/undef-rc.run
1002 $(call KB_FN_AUTO_CMD_DEPS,$(PATH_TARGET)/undef-rc.run)
1003 $(PATH_TARGET)/undef-rc.run: $$(VMMRC_1_TARGET)
1004 $(call KB_FN_AUTO_CMD_DEPS_COMMANDS)
1005 ifn1of ($(KBUILD_TARGET), linux solaris)
1006 else
1007 $(call MSG_L1,VMM: Testing for undefined symbols in VMMRC using nm...)
1008 $(QUIET)$(VBOX_NM) $^ 2> /dev/null \
1009 | $(SED) -n \
1010 -e '/^ *U .*/!d' \
1011 -e 's/ *U //' \
1012 \
1013 -e '/^g_VM\>/d'\
1014 -e '/^g_CPUM\>/d'\
1015 -e '/^g_Logger\>/d'\
1016 -e '/^g_RelLogger\>/d'\
1017 -e '/^g_TRPM\>/d'\
1018 -e '/^g_TRPMCPU\>/d'\
1019 -e '/^g_pSUPGlobalInfoPage\>/d'\
1020 -e '/^g_trpmHyperCtxCore\>/d' \
1021 -e '/^g_trpmGuestCtxCore\>/d' \
1022 \
1023 -e 's/\(.*\)$(DOLLAR)/ Undefined symbol: \1/' \
1024 -e 'p' \
1025 -e 'q 1'
1026 endif
1027 $(QUIET)$(APPEND) -t $@
1028endif
1029
1030include $(FILE_KBUILD_SUB_FOOTER)
1031
1032
1033# Alias the PGM templates to the object in which they are defined.
1034PGMInternal.o \
1035PGMBth.o PGMGst.o PGMShw.o \
1036PGMBth.obj PGMGst.obj PGMShw.obj: PGM.o
1037
1038PGMAllBth.o PGMAllGst.o PGMAllShw.o \
1039PGMAllBth.obj PGMAllGst.obj PGMAllShw.obj: PGMAll.o
1040
1041PGMRCBth.o PGMRCGst.o PGMRCShw.o \
1042PGMRCBth.obj PGMRCGst.obj PGMRCShw.obj: PGMRC.o
1043
1044PGMPhysRWTmpl.o PGMPhysRWTmpl.obj: PGMPhys.o
1045
1046PGMInline.o PGMInline.obj: PGMDbg.o
1047
1048# Alias the IEM templates to the object in which they are instantiated.
1049IEMInternal.o \
1050IEMAllInstructions.cpp.o IEMAllInstructions.cpp.obj \
1051IEMAllInstructionsOneByte.cpp.o IEMAllInstructionsOneByte.cpp.obj \
1052IEMAllInstructionsTwoByte0f.cpp.o IEMAllInstructionsTwoByte0f.cpp.obj \
1053IEMAllInstructionsThree0f38.cpp.o IEMAllInstructionsThree0f38.cpp.obj \
1054IEMAllInstructionsThree0f3a.cpp.o IEMAllInstructionsThree0f3a.cpp.obj \
1055IEMAllInstructionsVexMap1.cpp.o IEMAllInstructionsVexMap1.cpp.obj \
1056IEMAllInstructionsVexMap2.cpp.o IEMAllInstructionsVexMap2.cpp.obj \
1057IEMAllInstructionsVexMap3.cpp.o IEMAllInstructionsVexMap3.cpp.obj \
1058IEMAllInstructions3DNow.cpp.o IEMAllInstructions3DNow.cpp.obj \
1059IEMAllCImpl.cpp.o IEMAllCImpl.cpp.obj \
1060IEMAllCImplStrInstr.cpp.o IEMAllCImplStrInstr.cpp.obj: IEMAll.o
1061
1062# Alias the switcher templates.
1063PAEand32Bit.o PAEand32Bit.obj: PAETo32Bit.o PAEToPAE.o 32BitTo32Bit.o PAETo32Bit.o
1064LegacyandAMD64.o LegacyandAMD64.obj: 32BitToAMD64.o PAEToAMD64.o
1065AMD64andLegacy.o AMD64andLegacy.obj: AMD64To32Bit.o AMD64ToPAE.o
1066
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use