VirtualBox

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

Last change on this file since 69434 was 69111, checked in by vboxsync, 7 years ago

(C) year

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 32.2 KB
Line 
1# $Id: Makefile.kmk 69111 2017-10-17 14:26:02Z 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
330
331#ifdef VBOX_WITH_PDM_ASYNC_COMPLETION
332# ifeq ($(KBUILD_HOST), linux)
333#VBoxVMM_LIBS += aio
334# endif
335#endif
336
337if "$(USERNAME)" == "bird" && "$(KBUILD_TARGET)" == "win"
338 VBoxVMM_VMMAll/IEMAll.cpp_CXXFLAGS = /FAcs /Fa$(subst /,\\,$(outbase).cod)
339 VBoxVMM_VMMAll/IEMAllAImplC.cpp_CXXFLAGS = /FAcs /Fa$(subst /,\\,$(outbase).cod)
340 VBoxVMM_VMMAll/PGMAll.cpp_CXXFLAGS = /FAcs /Fa$(subst /,\\,$(outbase).cod)
341 VBoxVMM_VMMAll/PDMAllCritSect.cpp_CXXFLAGS = /FAcs /Fa$(subst /,\\,$(outbase).cod)
342endif
343
344$(call VBOX_SET_VER_INFO_DLL,VBoxVMM,VirtualBox VMM) # Version info / description.
345
346
347#
348# Generate macro template for IEM instruction statistics.
349#
350$(call KB_FN_DO_PASS0_ON_TARGET,VBoxVMM) # Set VBoxVMM_0_OUTDIR
351VBoxVMM_INTERMEDIATES += $(VBoxVMM_0_OUTDIR)/CommonGenIncs/IEMInstructionStatisticsTmpl.h
352VBoxVMM_CLEAN += \
353 $(VBoxVMM_0_OUTDIR)/CommonGenIncs/IEMInstructionStatisticsTmpl.h.ts \
354 $(VBoxVMM_0_OUTDIR)/CommonGenIncs/IEMInstructionStatisticsTmpl.h
355$(call KB_FN_AUTO_CMD_DEPS,$(VBoxVMM_0_OUTDIR)/CommonGenIncs/IEMInstructionStatisticsTmpl.h.ts)
356$(VBoxVMM_0_OUTDIR)/CommonGenIncs/IEMInstructionStatisticsTmpl.h.ts \
357+| $(VBoxVMM_0_OUTDIR)/CommonGenIncs/IEMInstructionStatisticsTmpl.h: \
358 $(PATH_SUB_CURRENT)/VMMAll/IEMAllInstructions.cpp.h \
359 $(PATH_SUB_CURRENT)/VMMAll/IEMAllInstructionsOneByte.cpp.h \
360 $(PATH_SUB_CURRENT)/VMMAll/IEMAllInstructionsTwoByte0f.cpp.h \
361 $(PATH_SUB_CURRENT)/VMMAll/IEMAllInstructionsThree0f38.cpp.h \
362 $(PATH_SUB_CURRENT)/VMMAll/IEMAllInstructionsThree0f3a.cpp.h \
363 $(PATH_SUB_CURRENT)/VMMAll/IEMAllInstructionsVexMap1.cpp.h \
364 $(PATH_SUB_CURRENT)/VMMAll/IEMAllInstructionsVexMap2.cpp.h \
365 $(PATH_SUB_CURRENT)/VMMAll/IEMAllInstructionsVexMap3.cpp.h \
366 $(PATH_SUB_CURRENT)/VMMAll/IEMAllInstructions3DNow.cpp.h
367 $(QUIET)$(call MSG_GENERATE,VBoxVMM,$@,VMMAll/IEMAllInstructions*.cpp.h)
368 $(QUIET)$(RM) -f -- "$@.tmp" "$@.tmp" "$@.sorted"
369 $(QUIET)$(MKDIR) -p -- "$(dir $@)"
370 $(call KB_FN_AUTO_CMD_DEPS_COMMANDS)
371 $(QUIET)$(SED) \
372 -e '/IEMOP_MNEMONIC\(\|[01234]\|[01234]EX\)(/!d' \
373 -e ':look-for-end-of-invocation' \
374 -e '/)/bend-of-invocation' \
375 -e 'N' \
376 -e 'blook-for-end-of-invocation' \
377 -e ':end-of-invocation' \
378 -e 's/\n/ /g' \
379 -e 's/ */ /g' \
380 -e 's/^.*IEMOP_MNEMONIC\(\|[01234]\|[01234]EX\)(/IEM_DO_INSTR_STAT\1(/' \
381 -e 's/;.*$(DOLLAR)//' \
382 --output "$@.tmp" $(filter %.cpp.h,$^)
383# Windows sort does some kind of seeking. So, we must use a temporary file and kmk_cat to define and undefine our macros.
384 $(QUIET)$(REDIRECT) -wto "$@.sorted" -- sort "$@.tmp"
385 $(QUIET)$(APPEND) -nt "$@" \
386 '/* Warning autogenerated by VMM/Makefile.kmk. */ ' \
387 '#define IEM_DO_INSTR_STAT0(f,u,l,fd,fi) IEM_DO_INSTR_STAT(l, #l)' \
388 '#define IEM_DO_INSTR_STAT1(f,u,l,o1,fd,fi) IEM_DO_INSTR_STAT(l ## _ ## o1, #l " " #o1)' \
389 '#define IEM_DO_INSTR_STAT2(f,u,l,o1,o2,fd,fi) IEM_DO_INSTR_STAT(l ## _ ## o1 ## _ ## o2, #l " " #o1 "," #o2)' \
390 '#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)' \
391 '#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)' \
392 '#define IEM_DO_INSTR_STAT0EX(s,m,f,u,l,fd,fi) IEM_DO_INSTR_STAT(s,m)' \
393 '#define IEM_DO_INSTR_STAT1EX(s,m,f,u,l,o1,fd,fi) IEM_DO_INSTR_STAT(s,m)' \
394 '#define IEM_DO_INSTR_STAT2EX(s,m,f,u,l,o1,o2,fd,fi) IEM_DO_INSTR_STAT(s,m)' \
395 '#define IEM_DO_INSTR_STAT3EX(s,m,f,u,l,o1,o2,o3,fd,fi) IEM_DO_INSTR_STAT(s,m)' \
396 '#define IEM_DO_INSTR_STAT4EX(s,m,f,u,l,o1,o2,o3,o4,fd,fi) IEM_DO_INSTR_STAT(s,m)' \
397 ''
398 $(QUIET)$(REDIRECT) -ato "$@" -- $(CAT_EXT) "$@.sorted"
399 $(QUIET)$(APPEND) -n "$@" \
400 '' \
401 '#undef IEM_DO_INSTR_STAT0' \
402 '#undef IEM_DO_INSTR_STAT1' \
403 '#undef IEM_DO_INSTR_STAT2' \
404 '#undef IEM_DO_INSTR_STAT3' \
405 '#undef IEM_DO_INSTR_STAT4' \
406 '#undef IEM_DO_INSTR_STAT0EX' \
407 '#undef IEM_DO_INSTR_STAT1EX' \
408 '#undef IEM_DO_INSTR_STAT2EX' \
409 '#undef IEM_DO_INSTR_STAT3EX' \
410 '#undef IEM_DO_INSTR_STAT4EX' \
411 ''
412 $(QUIET)$(RM) -f -- "$@.tmp" "$@.sorted"
413 $(QUIET)$(CP) -v -f --changed -- "$@" "$(patsubst %.ts,%,$@)"
414
415foobar: $(VBoxVMM_0_OUTDIR)/CommonGenIncs/IEMInstructionStatisticsTmpl.h
416
417if "$(KBUILD_TARGET)" == "win" && !defined(VBOX_ONLY_EXTPACKS_USE_IMPLIBS)
418 #
419 # Debug type info hack for VMCPU, VM and similar.
420 #
421 # The microsoft linker seems to be using the last occurence of the structures
422 # when writing the module PDB file. So, we put the fully complete structures
423 # in a library which is at the end of the library list.
424 #
425 VBoxVMM_LIBS += $(VBoxVMMPdbTypeHack_1_TARGET)
426 VBoxVMM_LDFLAGS += /Export:PdbTypeHack
427
428 LIBRARIES += VBoxVMMPdbTypeHack
429 VBoxVMMPdbTypeHack_TEMPLATE = $(VBoxVMM_TEMPLATE)
430 VBoxVMMPdbTypeHack_SOURCES = VMMAll/AllPdbTypeHack.cpp
431 VBoxVMMPdbTypeHack_DEFS = $(VBoxVMM_DEFS)
432 VBoxVMMPdbTypeHack_DEFS.win = $(VBoxVMM_DEFS.win)
433 VBoxVMMPdbTypeHack_DEFS.win.x86 = $(VBoxVMM_DEFS.win.x86)
434 VBoxVMMPdbTypeHack_DEFS.win.amd64 = $(VBoxVMM_DEFS.win.amd64)
435 VBoxVMMPdbTypeHack_INCS = $(VBoxVMM_INCS)
436 VBoxVMMPdbTypeHack_INTERMEDIATES = $(VBoxVMM_INTERMEDIATES)
437endif
438
439
440if defined(VBOX_WITH_RAW_MODE) && $(intersects $(VBOX_LDR_FMT32), pe lx)
441
442 #
443 # VMMRCBuiltin.lib
444 #
445 LIBRARIES += VMMRCBuiltin
446 VMMRCBuiltin_TEMPLATE = VBoxRc
447 ifeq ($(VBOX_LDR_FMT32),pe)
448 VMMRCBuiltin_SOURCES = VMMRC/VMMRCBuiltin.def
449 endif
450 ifeq ($(VBOX_LDR_FMT32),lx)
451 VMMRCBuiltin_SOURCES = $(VMMRCBuiltin_0_OUTDIR)/VMMRCBuiltin.def
452 $$(VMMRCBuiltin_0_OUTDIR)/VMMRCBuiltin.def: $(PATH_SUB_CURRENT)/VMMRC/VMMRCBuiltin.def | $$(dir $$@)
453 $(SED) -e '/not-os2/d' -e 's/^[ \t][ \t]*\([a-zA-Z]\)/ _\1/' -e 's/[ \t]DATA[ \t]*/ /' --output $@ $<
454 endif
455
456
457 #
458 # VMMRCImp.lib
459 #
460 LIBRARIES += VMMRCImp
461 VMMRCImp_TEMPLATE = VBoxRc
462 VMMRCImp_SOURCES = $(VMMRCImp_0_OUTDIR)/VMMRC.def
463 VMMRCImp_CLEAN = $(VMMRCImp_0_OUTDIR)/VMMRC.def
464 $(call KB_FN_DO_PASS0_ON_TARGET,VMMRCImp)
465
466 $(call KB_FN_AUTO_CMD_DEPS,$(VMMRCImp_0_OUTDIR)/VMMRC.def)
467 $(VMMRCImp_0_OUTDIR)/VMMRC.def: $(VMMRCImp_DEFPATH)/VMMRC/VMMRC.def | $$(dir $$@)
468 $(call KB_FN_AUTO_CMD_DEPS_COMMANDS)
469 ifeq ($(VBOX_LDR_FMT32),lx)
470 $(SED) \
471 -e '/not-os2/d' \
472 -e 's/^[ \t][ \t]*\([a-zA-Z]\)/ _\1/' \
473 -e 's/[ \t]DATA[ \t]*/ /' \
474 --output $@ \
475 $(VMMRCImp_DEFPATH)/VMMRC/VMMRC.def
476 $(APPEND) "$@" ""
477 $(APPEND) "$@" " ___ehInit"
478 else
479 $(SED) \
480 -e '/not-win/d' \
481 -e '/not-$(KBUILD_TARGET_ARCH)/d' \
482 --output $@ $(VMMRCImp_DEFPATH)/VMMRC/VMMRC.def
483 endif
484
485endif # RC && (pe || lx)
486
487
488if1of ($(VBOX_LDR_FMT), pe lx)
489 #
490 # VMMR0Imp.lib
491 #
492 LIBRARIES += VMMR0Imp
493 VMMR0Imp_TEMPLATE = VBoxR0
494 VMMR0Imp_SOURCES = $(VMMR0Imp_0_OUTDIR)/VMMR0.def
495 VMMR0Imp_CLEAN = $(VMMR0Imp_0_OUTDIR)/VMMR0.def
496 ifeq ($(KBUILD_TARGET),win) # Experiment: Let's see how blunt the ones messing our NULL_THUNK_DATA entries on W10 are.
497 VMMR0Imp_POST_CMDS = $(KLIBTWEAKER_EXT) --clear-timestamps --fill-null_thunk_data $(out)
498 endif
499 $(call KB_FN_DO_PASS0_ON_TARGET,VMMR0Imp)
500
501 $(call KB_FN_AUTO_CMD_DEPS,$(VMMR0Imp_0_OUTDIR)/VMMR0.def)
502 $(VMMR0Imp_0_OUTDIR)/VMMR0.def: $(VMMR0Imp_DEFPATH)/VMMR0/VMMR0.def | $$(dir $$@)
503 $(call KB_FN_AUTO_CMD_DEPS_COMMANDS)
504 ifeq ($(VBOX_LDR_FMT),lx)
505 $(SED) \
506 -e '/not-os2/d' \
507 -e '/not-amd64/d' \
508 -e 's/^[ \t][ \t]*\([a-zA-Z]\)/ _\1/' \
509 -e 's/[ \t]DATA[ \t]*/ /' \
510 --output $@ $(VMMR0Imp_DEFPATH)/VMMR0/VMMR0.def
511 $(APPEND) "$@" ""
512 $(APPEND) "$@" " ___ehInit"
513 else
514 $(SED) \
515 -e '/not-win/d' \
516 -e '/not-$(KBUILD_TARGET_ARCH)/d' \
517 --output $@ $(VMMR0Imp_DEFPATH)/VMMR0/VMMR0.def
518 endif
519endif # R0: pe + lx
520
521
522#
523# VMMR3Imp.lib
524#
525IMPORT_LIBS += VMMR3Imp
526$(call VBOX_GENERATE_IMPORT_TARGET_FN,VMMR3Imp,VBoxVMM,VMMR3/VMMR3.def)
527
528ifneq ($(VBOX_LIB_VMM_LAZY),$(LIB_VMM))
529 #
530 # VMMR3LazyImp.lib (experimental)
531 #
532 LIBRARIES += VMMR3LazyImp
533 VMMR3LazyImp_TEMPLATE = VBoxR3Dll
534 VMMR3LazyImp_INST = $(INST_LIB)
535 VMMR3LazyImp_SOURCES = $(VMMR3LazyImp_0_OUTDIR)/VMMR3LazyLoad.asm
536 VMMR3LazyImp_CLEAN = $(VMMR3LazyImp_0_OUTDIR)/VMMR3LazyLoad.asm
537 $(call KB_FN_DO_PASS0_ON_TARGET,VMMR3LazyImp)
538
539 $(call KB_FN_AUTO_CMD_DEPS,$(VMMR3LazyImp_0_OUTDIR)/VMMR3LazyLoad.asm)
540 $(VMMR3LazyImp_0_OUTDIR)/VMMR3LazyLoad.asm: $(VMMR3LazyImp_DEFPATH)/VMMR3/VMMR3.def $(VBOX_DEF_2_LAZY_LOAD) | $$(dir $$@)
541 $(call KB_FN_AUTO_CMD_DEPS_COMMANDS)
542 $(VBOX_DEF_2_LAZY_LOAD) --output $@ --library VBoxVMM $(VMMR3LazyImp_DEFPATH)/VMMR3/VMMR3.def
543endif
544
545
546if defined(VBOX_WITH_RAW_MODE) && !defined(VBOX_ONLY_EXTPACKS)
547 #
548 # VMMRC.rc
549 #
550 SYSMODS += VMMRC
551 VMMRC_TEMPLATE = VBoxRc
552 VMMRC_NAME = VMMRC
553
554 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 \
555 $(VMM_COMMON_DEFS)
556 VMMRC_DEFS := $(filter-out VBOX_WITH_NESTED_HWVIRT,$(VMMRC_DEFS))
557 ifdef VBOX_WITH_VMM_R0_SWITCH_STACK
558 VMMRC_DEFS += VMM_R0_SWITCH_STACK
559 endif
560
561 VMMRC_INCS = \
562 include \
563 VMMRC \
564 $(if-expr defined(VBOX_WITH_RAW_MODE),PATM,) \
565 $(VBoxVMM_0_OUTDIR)/CommonGenIncs
566
567 VMMRC_LIBS = \
568 $(PATH_STAGE_LIB)/DisasmRC$(VBOX_SUFF_LIB) \
569 $(PATH_STAGE_LIB)/RuntimeRC$(VBOX_SUFF_LIB) \
570 $(PATH_STAGE_LIB)/SUPRC$(VBOX_SUFF_LIB)
571 ifneq ($(filter pe lx,$(VBOX_LDR_FMT32)),)
572 VMMRC_LIBS += \
573 $(PATH_STAGE_LIB)/VMMRCBuiltin$(VBOX_SUFF_LIB)
574 endif
575
576 VMMRC_SOURCES = \
577 VBoxVMM.d \
578 VMMRC/VMMRC0.asm \
579 VMMRC/VMMRCDeps.cpp \
580 VMMRC/CPUMRC.cpp \
581 VMMRC/CPUMRCA.asm \
582 VMMRC/CPUMRCPatchHlp.asm \
583 VMMRC/EMRCA.asm \
584 VMMRC/IOMRC.cpp \
585 VMMRC/MMRamRC.cpp \
586 VMMRC/MMRamRCA.asm \
587 VMMRC/PDMRCDevice.cpp \
588 VMMRC/PGMRC.cpp \
589 VMMRC/SELMRC.cpp \
590 VMMRC/TRPMRC.cpp \
591 VMMRC/TRPMRCHandlers.cpp \
592 VMMRC/TRPMRCHandlersA.asm \
593 VMMRC/VMMRC.cpp \
594 VMMRC/VMMRCA.asm \
595 $(if-expr defined(VBOX_WITH_RAW_MODE), \
596 VMMRC/CSAMRC.cpp \
597 VMMRC/PATMRC.cpp \
598 ,) \
599 VMMRZ/CPUMRZ.cpp \
600 VMMRZ/CPUMRZA.asm \
601 VMMRZ/DBGFRZ.cpp \
602 VMMRZ/PGMRZDynMap.cpp \
603 VMMRZ/VMMRZ.cpp \
604 VMMAll/APICAll.cpp \
605 VMMAll/CPUMAllRegs.cpp \
606 VMMAll/CPUMAllMsrs.cpp \
607 VMMAll/DBGFAll.cpp \
608 VMMAll/IEMAll.cpp \
609 VMMAll/IEMAllAImpl.asm \
610 VMMAll/IEMAllAImplC.cpp \
611 VMMAll/IOMAll.cpp \
612 VMMAll/IOMAllMMIO.cpp \
613 VMMAll/EMAll.cpp \
614 VMMAll/EMAllA.asm \
615 VMMAll/FTMAll.cpp \
616 VMMAll/GIMAll.cpp \
617 VMMAll/GIMAllHv.cpp \
618 VMMAll/GIMAllKvm.cpp \
619 VMMAll/HMAll.cpp \
620 VMMAll/HMSVMAll.cpp \
621 VMMAll/MMAll.cpp \
622 VMMAll/MMAllHyper.cpp \
623 VMMAll/PDMAll.cpp \
624 VMMAll/PDMAllCritSect.cpp \
625 VMMAll/PDMAllCritSectRw.cpp \
626 VMMAll/PDMAllCritSectBoth.cpp \
627 VMMAll/PDMAllQueue.cpp \
628 VMMAll/PGMAll.cpp \
629 VMMAll/PGMAllHandler.cpp \
630 VMMAll/PGMAllMap.cpp \
631 VMMAll/PGMAllPhys.cpp \
632 VMMAll/PGMAllPool.cpp \
633 VMMAll/SELMAll.cpp \
634 VMMAll/TMAll.cpp \
635 VMMAll/TMAllCpu.cpp \
636 VMMAll/TMAllReal.cpp \
637 VMMAll/TMAllVirtual.cpp \
638 VMMAll/TRPMAll.cpp \
639 VMMAll/VMAll.cpp \
640 VMMAll/VMMAll.cpp \
641 VMMAll/VMMAllA.asm \
642 $(if-expr defined(VBOX_WITH_RAW_MODE), \
643 VMMAll/CSAMAll.cpp \
644 VMMAll/PATMAll.cpp \
645 ,)
646 ifeq ($(VBOX_LDR_FMT32),pe)
647 VMMRC_SOURCES += VMMRC/VMMRC.def
648 endif
649 ifeq ($(VBOX_LDR_FMT32),lx)
650 VMMRC_SOURCES += $(VMMRCImp_0_OUTDIR)/VMMRC.def
651 endif
652 ifdef VBOX_WITH_REM
653 VMMRC_SOURCES += \
654 VMMAll/REMAll.cpp
655 endif
656
657 # The very last one.
658 VMMRC_SOURCES += \
659 VMMRC/VMMRC99.asm
660
661 VMMRC/VMMRCDeps.cpp_CXXFLAGS.win = -Oi- -TC ## @todo rename VMMRCDeps.cpp to .c
662
663 $(call VBOX_SET_VER_INFO_RC,VMMRC,VirtualBox VMM - raw-mode context parts) # Version info / description.
664
665 if "$(USERNAME)" == "bird" && "$(KBUILD_TARGET)" == "win"
666 VMMRC_VMMAll/IEMAll.cpp_CXXFLAGS = /FAcs /Fa$(subst /,\\,$(outbase).cod)
667 VMMRC_VMMAll/IEMAllAImplC.cpp_CXXFLAGS = /FAcs /Fa$(subst /,\\,$(outbase).cod)
668 VMMRC_VMMAll/PGMAll.cpp_CXXFLAGS = /FAcs /Fa$(subst /,\\,$(outbase).cod)
669 endif
670
671 VMMRC_INTERMEDIATES += $(VBoxVMM_0_OUTDIR)/CommonGenIncs/IEMInstructionStatisticsTmpl.h
672
673 if "$(KBUILD_TARGET)" == "win"
674 # Debug type info hack for VMCPU, VM and similar. See VBoxVMM for details.
675 VMMRC_LIBS += $(VMMRCPdbTypeHack_1_TARGET)
676 VMMRC_LDFLAGS += /Export:PdbTypeHack
677
678 LIBRARIES += VMMRCPdbTypeHack
679 VMMRCPdbTypeHack_TEMPLATE = $(VMMRC_TEMPLATE)
680 VMMRCPdbTypeHack_SOURCES = VMMAll/AllPdbTypeHack.cpp
681 VMMRCPdbTypeHack_DEFS = $(VMMRC_DEFS)
682 VMMRCPdbTypeHack_DEFS.win = $(VMMRC_DEFS.win)
683 VMMRCPdbTypeHack_DEFS.win.x86 = $(VMMRC_DEFS.win.x86)
684 VMMRCPdbTypeHack_DEFS.win.amd64 = $(VMMRC_DEFS.win.amd64)
685 VMMRCPdbTypeHack_INCS = $(VMMRC_INCS)
686 VMMRCPdbTypeHack_INTERMEDIATES = $(VMMRC_INTERMEDIATES)
687 endif
688
689endif # VBOX_WITH_RAW_MODE && !VBOX_ONLY_EXTPACKS
690
691
692ifndef VBOX_ONLY_EXTPACKS
693 #
694 # VMMR0.r0
695 #
696 SYSMODS += VMMR0
697 VMMR0_TEMPLATE = VBoxR0
698 VMMR0_SYSSUFF = .r0
699
700 VMMR0_DEFS = IN_VMM_R0 IN_RT_R0 IN_DIS DIS_CORE_ONLY IN_GVMM_R0 IN_GMM_R0 IN_INTNET_R0 \
701 $(VMM_COMMON_DEFS) RTASSERT_HAVE_SHOULD_PANIC
702 ## @todo eliminate IN_GVMM_R0 IN_GMM_R0
703 ifdef VBOX_WITH_PCI_PASSTHROUGH
704 VMMR0_DEFS += IN_PCIRAW_R0
705 endif
706 ifdef VBOX_WITH_TRIPLE_FAULT_HACK
707 VMMR0_DEFS += VBOX_WITH_TRIPLE_FAULT_HACK
708 endif
709 ifdef VBOX_WITH_RAW_MODE
710 VMMR0_DEFS += VBOX_WITH_RAW_MODE
711 endif
712 ifdef VBOX_WITH_VMM_R0_SWITCH_STACK
713 VMMR0_DEFS += VMM_R0_SWITCH_STACK
714 endif
715 if1of ($(KBUILD_TARGET), darwin linux win)
716 VMMR0_DEFS += VMM_R0_TOUCH_FPU
717 endif
718 VMMR0_DEFS.darwin = VMM_R0_SWITCH_STACK
719 VMMR0_DEFS.win.amd64 = VBOX_WITH_KERNEL_USING_XMM
720
721 ifeq ($(VBOX_LDR_FMT),elf)
722 VMMR0_CXXFLAGS += -Wunused -Wunused-variable -Wno-unused-parameter
723 endif
724
725 VMMR0_INCS = \
726 include \
727 $(if-expr defined(VBOX_WITH_RAW_MODE),PATM,) \
728 $(VBoxVMM_0_OUTDIR)/CommonGenIncs
729
730 VMMR0_SOURCES = \
731 VBoxVMM.d \
732 VMMR0/CPUMR0.cpp \
733 VMMR0/CPUMR0A.asm \
734 VMMR0/GIMR0.cpp \
735 VMMR0/GIMR0Hv.cpp \
736 VMMR0/GIMR0Kvm.cpp \
737 VMMR0/GMMR0.cpp \
738 VMMR0/GVMMR0.cpp \
739 VMMR0/HMR0.cpp \
740 VMMR0/HMR0A.asm \
741 VMMR0/HMVMXR0.cpp \
742 VMMR0/HMSVMR0.cpp \
743 VMMR0/PDMR0Device.cpp \
744 VMMR0/PDMR0Driver.cpp \
745 VMMR0/PGMR0.cpp \
746 VMMR0/PGMR0SharedPage.cpp \
747 VMMR0/TRPMR0.cpp \
748 VMMR0/TRPMR0A.asm \
749 VMMR0/VMMR0.cpp \
750 VMMRZ/CPUMRZ.cpp \
751 VMMRZ/CPUMRZA.asm \
752 VMMRZ/DBGFRZ.cpp \
753 VMMRZ/VMMRZ.cpp \
754 VMMAll/APICAll.cpp \
755 VMMAll/CPUMAllRegs.cpp \
756 VMMAll/CPUMAllMsrs.cpp \
757 VMMAll/CPUMStack.cpp \
758 VMMAll/DBGFAll.cpp \
759 VMMAll/EMAll.cpp \
760 VMMAll/EMAllA.asm \
761 VMMAll/FTMAll.cpp \
762 VMMAll/GIMAll.cpp \
763 VMMAll/GIMAllHv.cpp \
764 VMMAll/GIMAllKvm.cpp \
765 VMMAll/HMAll.cpp \
766 VMMAll/HMSVMAll.cpp \
767 VMMAll/IEMAll.cpp \
768 VMMAll/IEMAllAImpl.asm \
769 VMMAll/IEMAllAImplC.cpp \
770 VMMAll/IOMAll.cpp \
771 VMMAll/IOMAllMMIO.cpp \
772 VMMAll/MMAll.cpp \
773 VMMAll/MMAllHyper.cpp \
774 VMMAll/MMAllPagePool.cpp \
775 VMMAll/PDMAll.cpp \
776 VMMAll/PDMAllCritSect.cpp \
777 VMMAll/PDMAllCritSectRw.cpp \
778 VMMAll/PDMAllCritSectBoth.cpp \
779 VMMAll/PDMAllQueue.cpp \
780 VMMAll/PGMAll.cpp \
781 VMMAll/PGMAllHandler.cpp \
782 VMMAll/PGMAllMap.cpp \
783 VMMAll/PGMAllPhys.cpp \
784 VMMAll/PGMAllPool.cpp \
785 VMMAll/SELMAll.cpp \
786 VMMAll/TMAll.cpp \
787 VMMAll/TMAllCpu.cpp \
788 VMMAll/TMAllReal.cpp \
789 VMMAll/TMAllVirtual.cpp \
790 VMMAll/TRPMAll.cpp \
791 VMMAll/VMAll.cpp \
792 VMMAll/VMMAll.cpp \
793 VMMAll/VMMAllA.asm
794 if1of ($(VBOX_LDR_FMT), pe lx)
795 VMMR0_SOURCES += $(VMMR0Imp_0_OUTDIR)/VMMR0.def
796 endif
797 ifdef VBOX_WITH_TRIPLE_FAULT_HACK
798 VMMR0_SOURCES += \
799 VMMR0/VMMR0TripleFaultHack.cpp \
800 VMMR0/VMMR0TripleFaultHackA.asm
801 endif
802 ifdef VBOX_WITH_NETSHAPER
803 VMMR0_SOURCES += \
804 VMMAll/PDMAllNetShaper.cpp
805 endif
806 ifdef VBOX_WITH_REM
807 VMMR0_SOURCES += \
808 VMMAll/REMAll.cpp
809 endif
810 VMMR0_SOURCES.amd64 = \
811 VMMR0/VMMR0JmpA-amd64.asm
812 VMMR0_SOURCES.x86 = \
813 VMMR0/VMMR0JmpA-x86.asm
814
815 VMMR0_LIBS = \
816 $(PATH_STAGE_LIB)/ServicesR0$(VBOX_SUFF_LIB) \
817 $(PATH_STAGE_LIB)/RuntimeR0$(VBOX_SUFF_LIB) \
818 $(PATH_STAGE_LIB)/DisasmR0$(VBOX_SUFF_LIB)
819 ifneq ($(filter pe lx,$(VBOX_LDR_FMT)),)
820 VMMR0_LIBS += \
821 $(PATH_STAGE_LIB)/SUPR0$(VBOX_SUFF_LIB)
822 endif
823
824 $(call VBOX_SET_VER_INFO_R0,VMMR0,VirtualBox VMM - ring-0 context parts) # Version info / description.
825
826 if "$(USERNAME)" == "bird" && "$(KBUILD_TARGET)" == "win"
827 VMMR0_VMMAll/IEMAll.cpp_CXXFLAGS = /FAcs /Fa$(subst /,\\,$(outbase).cod)
828 VMMR0_VMMAll/IEMAllAImplC.cpp_CXXFLAGS = /FAcs /Fa$(subst /,\\,$(outbase).cod)
829 VMMR0_VMMAll/PGMAll.cpp_CXXFLAGS = /FAcs /Fa$(subst /,\\,$(outbase).cod)
830 endif
831
832 VMMR0_INTERMEDIATES += $(VBoxVMM_0_OUTDIR)/CommonGenIncs/IEMInstructionStatisticsTmpl.h
833
834 if "$(KBUILD_TARGET)" == "win"
835 # Debug type info hack for VMCPU, VM and similar. See VBoxVMM for details.
836 VMMR0_LIBS += $(VMMR0PdbTypeHack_1_TARGET)
837 VMMR0_LDFLAGS += /Export:PdbTypeHack
838
839 LIBRARIES += VMMR0PdbTypeHack
840 VMMR0PdbTypeHack_TEMPLATE = $(VMMR0_TEMPLATE)
841 VMMR0PdbTypeHack_SOURCES = VMMAll/AllPdbTypeHack.cpp
842 VMMR0PdbTypeHack_DEFS = $(VMMR0_DEFS)
843 VMMR0PdbTypeHack_DEFS.win = $(VMMR0_DEFS.win)
844 VMMR0PdbTypeHack_DEFS.win.x86 = $(VMMR0_DEFS.win.x86)
845 VMMR0PdbTypeHack_DEFS.win.amd64 = $(VMMR0_DEFS.win.amd64)
846 VMMR0PdbTypeHack_INCS = $(VMMR0_INCS)
847 VMMR0PdbTypeHack_INTERMEDIATES = $(VMMR0_INTERMEDIATES)
848 endif
849
850endif # !VBOX_ONLY_EXTPACKS
851
852
853
854ifndef VBOX_ONLY_EXTPACKS
855 #
856 # SSMStandalone.lib/a for linking with VBoxSVC and other executables.
857 #
858 LIBRARIES += SSMStandalone
859 SSMStandalone_TEMPLATE = VBOXR3EXE
860 SSMStandalone_DEFS = IN_VMM_R3 IN_VMM_STATIC SSM_STANDALONE CPUM_DB_STANDALONE
861 SSMStandalone_INCS = include
862 SSMStandalone_SOURCES = \
863 VMMR3/SSM.cpp \
864 VMMR3/CPUMR3Db.cpp
865endif # !VBOX_ONLY_EXTPACKS
866
867
868if !defined(VBOX_ONLY_EXTPACKS) \
869 && ( defined(VBOX_WITH_DTRACE_R3) \
870 || defined(VBOX_WITH_DTRACE_R0) \
871 || defined(VBOX_WITH_DTRACE_RC))
872 #
873 # Install the dtrace library files.
874 #
875 INSTALLS += VMMLibDTrace
876 VMMLibDTrace_INST = $(VBOX_INST_DTRACE_LIB)$(KBUILD_TARGET_ARCH)/
877 VMMLibDTrace_SOURCES = \
878 dtrace/lib/vbox-types.d \
879 dtrace/lib/$(KBUILD_TARGET_ARCH)/vbox-arch-types.d \
880 $(VMMLibDTrace_0_OUTDIR)/vm.d \
881 $(VMMLibDTrace_0_OUTDIR)/cpumctx.d \
882 $(VMMLibDTrace_0_OUTDIR)/cpum.d \
883 $(VMMLibDTrace_0_OUTDIR)/CPUMInternal.d \
884 $(VMMLibDTrace_0_OUTDIR)/x86.d
885 $(call KB_FN_DO_PASS0_ON_TARGET,VMMLibDTrace)
886
887
888 ##
889 # Turn the header $2 into the DTrace library script $1.
890 #
891 define def_vmm_lib_dtrace_preprocess
892 $$(call KB_FN_AUTO_CMD_DEPS,$$(VMMLibDTrace_0_OUTDIR)/$1)
893 $$(VMMLibDTrace_0_OUTDIR)/$1: $2 $$(VBOX_VBOXCPP) | $$$$(dir $$$$@)
894 $$(call KB_FN_AUTO_CMD_DEPS_COMMANDS)
895 $$(QUIET)$$(call MSG_GENERATE,VMMLibDTrace,$$@,$2)
896 $$(QUIET)$(VBOX_VBOXCPP) -d \
897 -D VBOX_FOR_DTRACE_LIB \
898 -D VBOX_FOR_DTRACE_LIB_$(toupper $(KBUILD_TARGET_ARCH)) \
899 -D IN_RING0 \
900 -D RT_C_DECLS_BEGIN= \
901 -D RT_C_DECLS_END= \
902 -D 'RCPTRTYPE(a_Type)=RTRCPTR' \
903 -D 'R3PTRTYPE(a_Type)=RTR3PTR' \
904 -D 'R0PTRTYPE(a_Type)=a_Type' \
905 -D 'AssertCompile(a_Expr)=' \
906 -D 'AssertCompileSize(a_Stuct, a_Size)=' \
907 -D 'bool=uint8_t' \
908 $$(foreach def,\
909 $$(DEFS) \
910 $$(DEFS.$$(KBUILD_TARGET)) \
911 $$(DEFS.$(KBUILD_TARGET_ARCH)) \
912 $$(VMM_COMMON_DEFS) \
913 $$(ARCH_BITS_DEFS)\
914 ,-D '$$(def)') \
915 $2 \
916 $$@
917 $$(QUIET)$$(CHMOD) 644 $$@
918 endef
919 $(evalcall2 def_vmm_lib_dtrace_preprocess,vm.d,$(PATH_ROOT)/include/VBox/vmm/vm.h)
920 $(evalcall2 def_vmm_lib_dtrace_preprocess,cpumctx.d,$(PATH_ROOT)/include/VBox/vmm/cpumctx.h)
921 $(evalcall2 def_vmm_lib_dtrace_preprocess,cpum.d,$(PATH_ROOT)/include/VBox/vmm/cpum.h)
922 $(evalcall2 def_vmm_lib_dtrace_preprocess,CPUMInternal.d,$(PATH_SUB_CURRENT)/include/CPUMInternal.h)
923 $(evalcall2 def_vmm_lib_dtrace_preprocess,x86.d,$(PATH_ROOT)/include/iprt/x86.h)
924
925endif
926
927
928
929#
930# For vmmGetSvnRev.
931#
932VMMAll/VMMAll.cpp_DEFS = VBOX_SVN_REV=$(VBOX_SVN_REV)
933
934#
935# Disable annoying warnings about array subscript above array bounds in aPages[]
936#
937ifneq ($(KBUILD_TARGET),win)
938 VMMR3/PGMPool.cpp_CXXFLAGS = $(VBOX_GCC_Wno-array_bounds)
939 VMMAll/PGMAllPool.cpp_CXXFLAGS = $(VBOX_GCC_Wno-array_bounds)
940 VMMAll/PGMAll.cpp_CXXFLAGS = -Wno-unused-function
941 VMMAll/IEMAll.cpp_CXXFLAGS = -Wno-unused-function
942 VMMR0/GMMR0.cpp_CXXFLAGS = -Wno-unused-value
943endif
944
945#
946# Always optimize the interpreter.
947#
948if $(USERNAME) != "bird" || "$(KBUILD_TYPE)" == "release" #|| "$(KBUILD_TARGET).$(KBUILD_TARGET_ARCH)" == "win.amd64"
949 if1of ($(KBUILD_TARGET), win)
950 # -noover is recognized despite the statement saying otherwise. It silences these warnings:
951 # cl : Command line warning D9025 : overriding '/Od' with '/O2'
952 # cl : Command line warning D9025 : overriding '/Oy-' with '/Oy'
953 VMMAll/IEMAll.cpp_CXXFLAGS += -noover -O2xy
954 else
955 VMMAll/IEMAll.cpp_CXXFLAGS += -O2
956 #VMMAll/IEMAll.cpp_CXXFLAGS += -fno-align-functions -fno-align-jumps -fno-align-loops # Saves a few of percents, not worth it.
957 #VMMAll/IEMAll.cpp_CXXFLAGS += -fno-reorder-blocks # Saves one or two percent ... never mind.
958 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?)
959 endif
960endif # bird wants good stacks
961
962
963# Alias the CPU database entries.
964$(foreach base,$(notdir $(basename $(wildcard $(PATH_SUB_CURRENT)/VMMR3/cpus/*.h))), $(eval $(base).o $(base).obj: CPUMR3Db.o))
965
966
967#
968# Process python source(s).
969#
970BLDDIRS += $(PATH_TARGET)/pylint
971
972define def_vbox_vmm_py_check
973$(eval name:=$(basename $(notdir $(py))))
974
975pylint:: $(name)-py-phony.o
976$(name).o: $(name)-py-phony.o
977$(PATH_TARGET)/pylint/$(name).o $(name)-py-phony.o:: $(py) | $(PATH_TARGET)/pylint/
978ifdef VBOX_WITH_PYLINT
979 $(QUIET2)$(call MSG_L1,Subjecting $(py) to pylint...)
980 $(QUIET)$(REDIRECT) -C "$(dir $(py))" -E LC_ALL=C -- \
981 $(VBOX_PYLINT) --rcfile=$(PATH_TARGET)/no-such-pylintrc \
982 $$(VBOX_PYLINT_FLAGS) $$($(py)_VBOX_PYLINT_FLAGS) ./$(notdir $(py))
983endif
984 $(QUIET)$(APPEND) -t "$(PATH_TARGET)/pylint/$(name).o"
985
986TESTING += $(name)-py-phony.o
987endef # def_vbox_vmm_py_check
988
989$(foreach py, $(addprefix $(PATH_SUB_CURRENT)/VMMAll/, IEMAllInstructionsPython.py ) , $(eval $(def_vbox_vmm_py_check)))
990
991
992#
993# Test for undefined symbols.
994#
995if1of ($(SYSMODS),VMMRC)
996 test-undef-rc:: $(PATH_TARGET)/undef-rc.run
997 OTHERS += $(PATH_TARGET)/undef-rc.run
998 CLEANS += $(PATH_TARGET)/undef-rc.run
999 $(call KB_FN_AUTO_CMD_DEPS,$(PATH_TARGET)/undef-rc.run)
1000 $(PATH_TARGET)/undef-rc.run: $$(VMMRC_1_TARGET)
1001 $(call KB_FN_AUTO_CMD_DEPS_COMMANDS)
1002 ifn1of ($(KBUILD_TARGET), linux solaris)
1003 else
1004 $(call MSG_L1,VMM: Testing for undefined symbols in VMMRC using nm...)
1005 $(QUIET)$(VBOX_NM) $^ 2> /dev/null \
1006 | $(SED) -n \
1007 -e '/^ *U .*/!d' \
1008 -e 's/ *U //' \
1009 \
1010 -e '/^g_VM\>/d'\
1011 -e '/^g_CPUM\>/d'\
1012 -e '/^g_Logger\>/d'\
1013 -e '/^g_RelLogger\>/d'\
1014 -e '/^g_TRPM\>/d'\
1015 -e '/^g_TRPMCPU\>/d'\
1016 -e '/^g_pSUPGlobalInfoPage\>/d'\
1017 -e '/^g_trpmHyperCtxCore\>/d' \
1018 -e '/^g_trpmGuestCtxCore\>/d' \
1019 \
1020 -e 's/\(.*\)$(DOLLAR)/ Undefined symbol: \1/' \
1021 -e 'p' \
1022 -e 'q 1'
1023 endif
1024 $(QUIET)$(APPEND) -t $@
1025endif
1026
1027include $(FILE_KBUILD_SUB_FOOTER)
1028
1029
1030# Alias the PGM templates to the object in which they are defined.
1031PGMInternal.o \
1032PGMBth.o PGMGst.o PGMShw.o \
1033PGMBth.obj PGMGst.obj PGMShw.obj: PGM.o
1034
1035PGMAllBth.o PGMAllGst.o PGMAllShw.o \
1036PGMAllBth.obj PGMAllGst.obj PGMAllShw.obj: PGMAll.o
1037
1038PGMRCBth.o PGMRCGst.o PGMRCShw.o \
1039PGMRCBth.obj PGMRCGst.obj PGMRCShw.obj: PGMRC.o
1040
1041PGMPhysRWTmpl.o PGMPhysRWTmpl.obj: PGMPhys.o
1042
1043PGMInline.o PGMInline.obj: PGMDbg.o
1044
1045# Alias the IEM templates to the object in which they are instantiated.
1046IEMInternal.o \
1047IEMAllInstructions.cpp.o IEMAllInstructions.cpp.obj \
1048IEMAllInstructionsOneByte.cpp.o IEMAllInstructionsOneByte.cpp.obj \
1049IEMAllInstructionsTwoByte0f.cpp.o IEMAllInstructionsTwoByte0f.cpp.obj \
1050IEMAllInstructionsThree0f38.cpp.o IEMAllInstructionsThree0f38.cpp.obj \
1051IEMAllInstructionsThree0f3a.cpp.o IEMAllInstructionsThree0f3a.cpp.obj \
1052IEMAllInstructionsVexMap1.cpp.o IEMAllInstructionsVexMap1.cpp.obj \
1053IEMAllInstructionsVexMap2.cpp.o IEMAllInstructionsVexMap2.cpp.obj \
1054IEMAllInstructionsVexMap3.cpp.o IEMAllInstructionsVexMap3.cpp.obj \
1055IEMAllInstructions3DNow.cpp.o IEMAllInstructions3DNow.cpp.obj \
1056IEMAllCImpl.cpp.o IEMAllCImpl.cpp.obj \
1057IEMAllCImplStrInstr.cpp.o IEMAllCImplStrInstr.cpp.obj: IEMAll.o
1058
1059# Alias the switcher templates.
1060PAEand32Bit.o PAEand32Bit.obj: PAETo32Bit.o PAEToPAE.o 32BitTo32Bit.o PAETo32Bit.o
1061LegacyandAMD64.o LegacyandAMD64.obj: 32BitToAMD64.o PAEToAMD64.o
1062AMD64andLegacy.o AMD64andLegacy.obj: AMD64To32Bit.o AMD64ToPAE.o
1063
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