VirtualBox

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

Last change on this file since 84044 was 84007, checked in by vboxsync, 4 years ago

VMMR0: Move the PDM R0 device helper into its own file like it is done in R3, move the PDM R0 driver helpers to PDMR0Driver as it belongs there really

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 25.0 KB
Line 
1# $Id: Makefile.kmk 84007 2020-04-27 13:23:11Z vboxsync $
2## @file
3# Top-level makefile for the VMM.
4#
5
6#
7# Copyright (C) 2006-2020 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 our Config.kmk if kmk is invoked from a parent directory.
22ifndef VBOX_VMM_CONFIG_KMK_INCLUDED
23 include $(PATH_SUB_CURRENT)/Config.kmk
24endif
25
26# Include sub-makefiles.
27ifndef VBOX_ONLY_EXTPACKS
28 include $(PATH_SUB_CURRENT)/tools/Makefile.kmk
29 include $(PATH_SUB_CURRENT)/testcase/Makefile.kmk
30endif
31
32
33# Fail on unsupported hosts.
34ifeq ($(KBUILD_TARGET_ARCH),x86)
35 ifeq ($(KBUILD_TARGET),darwin)
36$(error 32-bit darwin is no longer a supported VirtualBox host. Go back to 4.3 or older for 32-bit host support.)
37 else ifeq ($(KBUILD_TARGET),solaris)
38$(error 32-bit solaris is no longer a supported VirtualBox host. Go back to 4.2 or older for 32-bit host support.)
39 else ifn1of ($(KBUILD_TARGET_ARCH), $(VBOX_SUPPORTED_HOST_ARCHS))
40$(error 32-bit builds of the VirtualBox host are no longer supported. Go back to 6.0 or older for 32-bit host support.)
41 endif
42endif
43
44
45#
46# The VMM DLL.
47#
48ifndef VBOX_ONLY_EXTPACKS_USE_IMPLIBS
49 DLLS += VBoxVMM
50endif
51VBoxVMM_TEMPLATE = VBoxR3DllNoPic
52VBoxVMM_SONAME.linux = VBoxVMM.so
53
54VBoxVMM_DEFS = VBOX_IN_VMM IN_VMM_R3 IN_DIS IN_GMM_R3 IN_DBG $(VMM_COMMON_DEFS)
55## @todo eliminate IN_GMM_R3
56ifdef VBOX_WITH_PREALLOC_RAM_BY_DEFAULT
57VBoxVMM_DEFS += VBOX_WITH_PREALLOC_RAM_BY_DEFAULT
58endif
59ifdef VBOX_WITH_VUSB
60VBoxVMM_DEFS += VBOX_WITH_USB
61endif
62ifdef VBOX_WITH_PDM_ASYNC_COMPLETION
63VBoxVMM_DEFS += VBOX_WITH_PDM_ASYNC_COMPLETION
64endif
65ifdef VBOX_WITH_NETSHAPER
66VBoxVMM_DEFS += VBOX_WITH_NETSHAPER
67endif
68ifdef VBOX_WITH_IOMMU_AMD
69VBoxVMM_DEFS += VBOX_WITH_IOMMU_AMD
70endif
71ifdef VBOX_WITH_RAW_MODE
72VBoxVMM_DEFS += VBOX_WITH_RAW_MODE VBOX_WITH_RAW_MODE_NOT_R0
73endif
74ifdef VBOX_WITH_VMM_R0_SWITCH_STACK
75VBoxVMM_DEFS += VMM_R0_SWITCH_STACK
76endif
77if "$(KBUILD_TYPE)" == "debug" && "$(USERNAME)" == "bird"
78VBoxVMM_DEFS += RTMEM_WRAP_TO_EF_APIS
79endif
80VBoxVMM_DEFS.darwin = VMM_R0_SWITCH_STACK
81
82VBoxVMM_INCS = \
83 include \
84 $(if-expr defined(VBOX_WITH_RAW_MODE),PATM,) \
85 $(VBoxVMM_0_OUTDIR)/CommonGenIncs
86VBoxVMM_ASINCS = .
87
88VBoxVMM_SOURCES = \
89 VBoxVMM.d \
90 VMMR3/APIC.cpp \
91 VMMR3/CFGM.cpp \
92 VMMR3/CPUM.cpp \
93 VMMR3/CPUMR3CpuId.cpp \
94 VMMR3/CPUMR3Db.cpp \
95 VMMR3/CPUMDbg.cpp \
96 VMMR3/DBGF.cpp \
97 VMMR3/DBGFAddr.cpp \
98 VMMR3/DBGFAddrSpace.cpp \
99 VMMR3/DBGFBp.cpp \
100 VMMR3/DBGFR3BugCheck.cpp \
101 VMMR3/DBGFCoreWrite.cpp \
102 VMMR3/DBGFCpu.cpp \
103 VMMR3/DBGFDisas.cpp \
104 VMMR3/DBGFInfo.cpp \
105 VMMR3/DBGFLog.cpp \
106 VMMR3/DBGFMem.cpp \
107 VMMR3/DBGFR3ModInMem.cpp \
108 VMMR3/DBGFOS.cpp \
109 VMMR3/DBGFR3PlugIn.cpp \
110 VMMR3/DBGFReg.cpp \
111 VMMR3/DBGFStack.cpp \
112 VMMR3/DBGFR3Flow.cpp \
113 VMMR3/DBGFR3Trace.cpp \
114 VMMR3/DBGFR3Type.cpp \
115 VMMR3/EM.cpp \
116 VMMR3/EMR3Dbg.cpp \
117 VMMR3/EMHM.cpp \
118 VMMR3/EMR3Nem.cpp \
119 VMMR3/GIM.cpp \
120 VMMR3/GIMHv.cpp \
121 VMMR3/GIMKvm.cpp \
122 VMMR3/GIMMinimal.cpp \
123 VMMR3/IEMR3.cpp \
124 VMMR3/IOM.cpp \
125 VMMR3/IOMR3IoPort.cpp \
126 VMMR3/IOMR3Mmio.cpp \
127 VMMR3/GMM.cpp \
128 VMMR3/MM.cpp \
129 VMMR3/MMHeap.cpp \
130 VMMR3/MMHyper.cpp \
131 VMMR3/MMPagePool.cpp \
132 VMMR3/MMUkHeap.cpp \
133 VMMR3/NEMR3.cpp \
134 VMMR3/PDM.cpp \
135 VMMR3/PDMBlkCache.cpp \
136 VMMR3/PDMDevice.cpp \
137 VMMR3/PDMDevHlp.cpp \
138 VMMR3/PDMDevMiscHlp.cpp \
139 VMMR3/PDMDriver.cpp \
140 VMMR3/PDMLdr.cpp \
141 VMMR3/PDMCritSect.cpp \
142 VMMR3/PDMQueue.cpp \
143 VMMR3/PDMR3Task.cpp \
144 VMMR3/PDMThread.cpp \
145 VMMR3/PGM.cpp \
146 VMMR3/PGMDbg.cpp \
147 VMMR3/PGMR3DbgA.asm \
148 VMMR3/PGMHandler.cpp \
149 VMMR3/PGMMap.cpp \
150 VMMR3/PGMPhys.cpp \
151 VMMR3/PGMPool.cpp \
152 VMMR3/PGMSavedState.cpp \
153 VMMR3/PGMSharedPage.cpp \
154 VMMR3/SELM.cpp \
155 VMMR3/SSM.cpp \
156 VMMR3/STAM.cpp \
157 VMMR3/TM.cpp \
158 VMMR3/TRPM.cpp \
159 VMMR3/VM.cpp \
160 VMMR3/VMEmt.cpp \
161 VMMR3/VMReq.cpp \
162 VMMR3/VMM.cpp \
163 VMMR3/VMMGuruMeditation.cpp \
164 VMMR3/VMMTests.cpp \
165 VMMR3/HM.cpp \
166 $(if-expr defined(VBOX_WITH_RAW_MODE), \
167 VMMR3/CSAM.cpp \
168 VMMR3/PATM.cpp \
169 VMMR3/PATMPatch.cpp \
170 VMMR3/PATMGuest.cpp \
171 VMMR3/PATMA.asm \
172 VMMR3/PATMSSM.cpp \
173 VMMR3/PATMR3Dbg.cpp \
174 ,) \
175 VMMAll/APICAll.cpp \
176 VMMAll/CPUMAllRegs.cpp \
177 VMMAll/CPUMAllMsrs.cpp \
178 VMMAll/DBGFAll.cpp \
179 VMMAll/HMAll.cpp \
180 VMMAll/HMSVMAll.cpp \
181 VMMAll/HMVMXAll.cpp \
182 VMMAll/IEMAll.cpp \
183 VMMAll/IEMAllAImpl.asm \
184 VMMAll/IEMAllAImplC.cpp \
185 VMMAll/IOMAll.cpp \
186 VMMAll/IOMAllMmioNew.cpp \
187 VMMAll/MMAll.cpp \
188 VMMAll/MMAllHyper.cpp \
189 VMMAll/NEMAll.cpp \
190 VMMAll/PDMAll.cpp \
191 VMMAll/PDMAllCritSect.cpp \
192 VMMAll/PDMAllCritSectRw.cpp \
193 VMMAll/PDMAllCritSectBoth.cpp \
194 VMMAll/PDMAllQueue.cpp \
195 VMMAll/PDMAllTask.cpp \
196 VMMAll/PGMAll.cpp \
197 VMMAll/PGMAllHandler.cpp \
198 VMMAll/PGMAllMap.cpp \
199 VMMAll/PGMAllPhys.cpp \
200 VMMAll/PGMAllPool.cpp \
201 VMMAll/SELMAll.cpp \
202 VMMAll/EMAll.cpp \
203 VMMAll/GIMAll.cpp \
204 VMMAll/GIMAllHv.cpp \
205 VMMAll/GIMAllKvm.cpp \
206 VMMAll/TMAll.cpp \
207 VMMAll/TMAllCpu.cpp \
208 VMMAll/TMAllReal.cpp \
209 VMMAll/TMAllVirtual.cpp \
210 VMMAll/TRPMAll.cpp \
211 VMMAll/VMAll.cpp \
212 VMMAll/VMMAll.cpp \
213 VMMAll/VMMAllA.asm \
214 $(if-expr defined(VBOX_WITH_RAW_MODE), \
215 VMMAll/CSAMAll.cpp \
216 VMMAll/PATMAll.cpp \
217 ,)
218ifdef VBOX_WITH_VUSB
219VBoxVMM_SOURCES += VMMR3/PDMUsb.cpp
220endif
221ifdef VBOX_WITH_PDM_ASYNC_COMPLETION
222VBoxVMM_SOURCES += \
223 VMMR3/PDMAsyncCompletion.cpp \
224 VMMR3/PDMAsyncCompletionFile.cpp \
225 VMMR3/PDMAsyncCompletionFileFailsafe.cpp \
226 VMMR3/PDMAsyncCompletionFileNormal.cpp
227endif
228ifdef VBOX_WITH_NETSHAPER
229VBoxVMM_SOURCES += \
230 VMMR3/PDMNetShaper.cpp \
231 VMMAll/PDMAllNetShaper.cpp
232endif
233
234ifdef VBOX_WITH_NATIVE_NEM
235VBoxVMM_SOURCES.win.amd64 += VMMR3/NEMR3Native-win.cpp
236VBoxVMM_DEFS.win.amd64 += VBOX_WITH_NATIVE_NEM
237VBoxVMM_SDKS.win += VBOX_NTDLL
238VMMR3/NEMR3Native-win.cpp_DEFS.amd64 = _AMD64_
239VMMR3/NEMR3Native-win.cpp_INCS = \
240 $(KBUILD_DEVTOOLS)/win.x86/sdk/v10.0.17134.0/include/10.0.17134.0/um \
241 $(KBUILD_DEVTOOLS)/win.x86/sdk/v10.0.17134.0/include/10.0.17134.0/shared
242endif
243
244VBoxVMM_LIBS = \
245 $(PATH_STAGE_LIB)/DisasmR3$(VBOX_SUFF_LIB)
246ifdef VBOX_WITH_DEBUGGER
247VBoxVMM_LIBS += \
248 $(PATH_STAGE_LIB)/Debugger$(VBOX_SUFF_LIB)
249endif
250VBoxVMM_LIBS += \
251 $(LIB_REM) \
252 $(LIB_RUNTIME)
253
254VBoxVMM_LIBS.win = $(PATH_TOOL_$(VBOX_VCC_TOOL)_LIB)/delayimp.lib
255VBoxVMM_LDFLAGS.linux = $(VBOX_GCC_NO_UNDEFINED)
256VBoxVMM_LDFLAGS.darwin = -install_name $(VBOX_DYLD_EXECUTABLE_PATH)/VBoxVMM.dylib
257VBoxVMM_LDFLAGS.solaris = -mimpure-text
258
259# SSM wish to know the build type, host os and arch.
260ifdef VBOX_WITH_AUTOMATIC_DEFS_QUOTING
261VMMR3/SSM.cpp_DEFS +=\
262 KBUILD_TYPE="$(KBUILD_TYPE)" \
263 KBUILD_TARGET="$(KBUILD_TARGET)" \
264 KBUILD_TARGET_ARCH="$(KBUILD_TARGET_ARCH)"
265else
266VMMR3/SSM.cpp_DEFS += \
267 KBUILD_TYPE=\"$(KBUILD_TYPE)\" \
268 KBUILD_TARGET=\"$(KBUILD_TARGET)\" \
269 KBUILD_TARGET_ARCH=\"$(KBUILD_TARGET_ARCH)\"
270endif
271
272ifdef VBOX_WITH_GCC_SANITIZER
273VMMR3/PGMPool.cpp_CXXFLAGS.linux += -fno-sanitize=address
274endif
275
276#ifdef VBOX_WITH_PDM_ASYNC_COMPLETION
277# ifeq ($(KBUILD_HOST), linux)
278#VBoxVMM_LIBS += aio
279# endif
280#endif
281
282if "$(USERNAME)" == "bird" && "$(KBUILD_TARGET)" == "win"
283VBoxVMM_VMMAll/IEMAll.cpp_CXXFLAGS = /FAcs /Fa$(subst /,\\,$(outbase).cod)
284VBoxVMM_VMMAll/IEMAllAImplC.cpp_CXXFLAGS = /FAcs /Fa$(subst /,\\,$(outbase).cod)
285VBoxVMM_VMMAll/PGMAll.cpp_CXXFLAGS = /FAcs /Fa$(subst /,\\,$(outbase).cod)
286VBoxVMM_VMMAll/PDMAllCritSect.cpp_CXXFLAGS = /FAcs /Fa$(subst /,\\,$(outbase).cod)
287VBoxVMM_CLEAN += $(addprefix $(VBoxVMM_0_OUTDIR)/VMMAll/, IEMAll.cod IEMAllAImplC.cod PGMAll.cod PDMAllCritSect.cod)
288endif
289
290$(call VBOX_SET_VER_INFO_DLL,VBoxVMM,VirtualBox VMM) # Version info / description.
291
292
293#
294# Generate macro template for IEM instruction statistics.
295#
296$(call KB_FN_DO_PASS0_ON_TARGET,VBoxVMM) # Set VBoxVMM_0_OUTDIR
297VBoxVMM_INTERMEDIATES += $(VBoxVMM_0_OUTDIR)/CommonGenIncs/IEMInstructionStatisticsTmpl.h
298VBoxVMM_CLEAN += \
299 $(VBoxVMM_0_OUTDIR)/CommonGenIncs/IEMInstructionStatisticsTmpl.h.ts \
300 $(VBoxVMM_0_OUTDIR)/CommonGenIncs/IEMInstructionStatisticsTmpl.h
301$(call KB_FN_AUTO_CMD_DEPS,$(VBoxVMM_0_OUTDIR)/CommonGenIncs/IEMInstructionStatisticsTmpl.h.ts)
302$(VBoxVMM_0_OUTDIR)/CommonGenIncs/IEMInstructionStatisticsTmpl.h.ts \
303+| $(VBoxVMM_0_OUTDIR)/CommonGenIncs/IEMInstructionStatisticsTmpl.h: \
304 $(PATH_SUB_CURRENT)/VMMAll/IEMAllInstructions.cpp.h \
305 $(PATH_SUB_CURRENT)/VMMAll/IEMAllInstructionsOneByte.cpp.h \
306 $(PATH_SUB_CURRENT)/VMMAll/IEMAllInstructionsTwoByte0f.cpp.h \
307 $(PATH_SUB_CURRENT)/VMMAll/IEMAllInstructionsThree0f38.cpp.h \
308 $(PATH_SUB_CURRENT)/VMMAll/IEMAllInstructionsThree0f3a.cpp.h \
309 $(PATH_SUB_CURRENT)/VMMAll/IEMAllInstructionsVexMap1.cpp.h \
310 $(PATH_SUB_CURRENT)/VMMAll/IEMAllInstructionsVexMap2.cpp.h \
311 $(PATH_SUB_CURRENT)/VMMAll/IEMAllInstructionsVexMap3.cpp.h \
312 $(PATH_SUB_CURRENT)/VMMAll/IEMAllInstructions3DNow.cpp.h
313 $(QUIET)$(call MSG_GENERATE,VBoxVMM,$@,VMMAll/IEMAllInstructions*.cpp.h)
314 $(QUIET)$(RM) -f -- "$@.tmp" "$@.tmp" "$@.sorted"
315 $(QUIET)$(MKDIR) -p -- "$(dir $@)"
316 $(call KB_FN_AUTO_CMD_DEPS_COMMANDS)
317 $(QUIET)$(SED) \
318 -e '/IEMOP_MNEMONIC\(\|[01234]\|[01234]EX\)(/!d' \
319 -e ':look-for-end-of-invocation' \
320 -e '/)/bend-of-invocation' \
321 -e 'N' \
322 -e 'blook-for-end-of-invocation' \
323 -e ':end-of-invocation' \
324 -e 's/\n/ /g' \
325 -e 's/ */ /g' \
326 -e 's/^.*IEMOP_MNEMONIC\(\|[01234]\|[01234]EX\)(/IEM_DO_INSTR_STAT\1(/' \
327 -e 's/;.*$(DOLLAR)//' \
328 --output "$@.tmp" $(filter %.cpp.h,$^)
329# Windows sort does some kind of seeking. So, we must use a temporary file and kmk_cat to define and undefine our macros.
330 $(QUIET)$(REDIRECT) -wto "$@.sorted" -- sort "$@.tmp"
331 $(QUIET)$(APPEND) -nt "$@" \
332 '/* Warning autogenerated by VMM/Makefile.kmk. */ ' \
333 '#define IEM_DO_INSTR_STAT0(f,u,l,fd,fi) IEM_DO_INSTR_STAT(l, #l)' \
334 '#define IEM_DO_INSTR_STAT1(f,u,l,o1,fd,fi) IEM_DO_INSTR_STAT(l ## _ ## o1, #l " " #o1)' \
335 '#define IEM_DO_INSTR_STAT2(f,u,l,o1,o2,fd,fi) IEM_DO_INSTR_STAT(l ## _ ## o1 ## _ ## o2, #l " " #o1 "," #o2)' \
336 '#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)' \
337 '#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)' \
338 '#define IEM_DO_INSTR_STAT0EX(s,m,f,u,l,fd,fi) IEM_DO_INSTR_STAT(s,m)' \
339 '#define IEM_DO_INSTR_STAT1EX(s,m,f,u,l,o1,fd,fi) IEM_DO_INSTR_STAT(s,m)' \
340 '#define IEM_DO_INSTR_STAT2EX(s,m,f,u,l,o1,o2,fd,fi) IEM_DO_INSTR_STAT(s,m)' \
341 '#define IEM_DO_INSTR_STAT3EX(s,m,f,u,l,o1,o2,o3,fd,fi) IEM_DO_INSTR_STAT(s,m)' \
342 '#define IEM_DO_INSTR_STAT4EX(s,m,f,u,l,o1,o2,o3,o4,fd,fi) IEM_DO_INSTR_STAT(s,m)' \
343 ''
344 $(QUIET)$(REDIRECT) -ato "$@" -- $(CAT_EXT) "$@.sorted"
345 $(QUIET)$(APPEND) -n "$@" \
346 '' \
347 '#undef IEM_DO_INSTR_STAT0' \
348 '#undef IEM_DO_INSTR_STAT1' \
349 '#undef IEM_DO_INSTR_STAT2' \
350 '#undef IEM_DO_INSTR_STAT3' \
351 '#undef IEM_DO_INSTR_STAT4' \
352 '#undef IEM_DO_INSTR_STAT0EX' \
353 '#undef IEM_DO_INSTR_STAT1EX' \
354 '#undef IEM_DO_INSTR_STAT2EX' \
355 '#undef IEM_DO_INSTR_STAT3EX' \
356 '#undef IEM_DO_INSTR_STAT4EX' \
357 ''
358 $(QUIET)$(RM) -f -- "$@.tmp" "$@.sorted"
359 $(QUIET)$(CP) -v -f --changed -- "$@" "$(patsubst %.ts,%,$@)"
360
361foobar: $(VBoxVMM_0_OUTDIR)/CommonGenIncs/IEMInstructionStatisticsTmpl.h
362
363if "$(KBUILD_TARGET)" == "win" && !defined(VBOX_ONLY_EXTPACKS_USE_IMPLIBS)
364#
365# Debug type info hack for VMCPU, VM and similar.
366#
367# The microsoft linker seems to be using the last occurence of the structures
368# when writing the module PDB file. So, we put the fully complete structures
369# in a library which is at the end of the library list.
370#
371VBoxVMM_LIBS += $(VBoxVMMPdbTypeHack_1_TARGET)
372VBoxVMM_LDFLAGS += /Export:PdbTypeHack
373
374LIBRARIES += VBoxVMMPdbTypeHack
375VBoxVMMPdbTypeHack_TEMPLATE = $(VBoxVMM_TEMPLATE)
376VBoxVMMPdbTypeHack_SOURCES = VMMAll/AllPdbTypeHack.cpp
377VBoxVMMPdbTypeHack_DEFS = $(VBoxVMM_DEFS)
378VBoxVMMPdbTypeHack_DEFS.win = $(VBoxVMM_DEFS.win)
379VBoxVMMPdbTypeHack_DEFS.win.x86 = $(VBoxVMM_DEFS.win.x86)
380VBoxVMMPdbTypeHack_DEFS.win.amd64 = $(VBoxVMM_DEFS.win.amd64)
381VBoxVMMPdbTypeHack_INCS = $(VBoxVMM_INCS)
382VBoxVMMPdbTypeHack_INTERMEDIATES = $(VBoxVMM_INTERMEDIATES)
383endif
384
385
386if1of ($(VBOX_LDR_FMT), pe lx)
387#
388# VMMR0Imp.lib
389#
390LIBRARIES += VMMR0Imp
391VMMR0Imp_TEMPLATE = VBoxR0
392VMMR0Imp_SOURCES = $(VMMR0Imp_0_OUTDIR)/VMMR0.def
393VMMR0Imp_CLEAN = $(VMMR0Imp_0_OUTDIR)/VMMR0.def
394 ifeq ($(KBUILD_TARGET),win) # Experiment: Let's see how blunt the ones messing our NULL_THUNK_DATA entries on W10 are.
395VMMR0Imp_POST_CMDS = $(KLIBTWEAKER_EXT) --clear-timestamps --fill-null_thunk_data $(out)
396 endif
397$(call KB_FN_DO_PASS0_ON_TARGET,VMMR0Imp)
398
399$(call KB_FN_AUTO_CMD_DEPS,$(VMMR0Imp_0_OUTDIR)/VMMR0.def)
400$(VMMR0Imp_0_OUTDIR)/VMMR0.def: $(VMMR0Imp_DEFPATH)/VMMR0/VMMR0.def | $$(dir $$@)
401 $(call KB_FN_AUTO_CMD_DEPS_COMMANDS)
402 ifeq ($(VBOX_LDR_FMT),lx)
403 $(SED) \
404 -e '/not-os2/d' \
405 -e '/not-amd64/d' \
406 -e 's/^[ \t][ \t]*\([a-zA-Z]\)/ _\1/' \
407 -e 's/[ \t]DATA[ \t]*/ /' \
408 --output $@ $(VMMR0Imp_DEFPATH)/VMMR0/VMMR0.def
409 $(APPEND) "$@" ""
410 $(APPEND) "$@" " ___ehInit"
411 else
412 $(SED) \
413 -e '/not-win/d' \
414 -e '/not-$(KBUILD_TARGET_ARCH)/d' \
415 --output $@ $(VMMR0Imp_DEFPATH)/VMMR0/VMMR0.def
416 endif
417endif # R0: pe + lx
418
419
420#
421# VMMR3Imp.lib
422#
423IMPORT_LIBS += VMMR3Imp
424$(call VBOX_GENERATE_IMPORT_TARGET_FN,VMMR3Imp,VBoxVMM,VMMR3/VMMR3.def)
425
426ifneq ($(VBOX_LIB_VMM_LAZY),$(LIB_VMM))
427#
428# VMMR3LazyImp.lib (experimental)
429#
430LIBRARIES += VMMR3LazyImp
431VMMR3LazyImp_TEMPLATE = VBoxR3Dll
432VMMR3LazyImp_INST = $(INST_LIB)
433VMMR3LazyImp_SOURCES = $(VMMR3LazyImp_0_OUTDIR)/VMMR3LazyLoad.asm
434VMMR3LazyImp_CLEAN = $(VMMR3LazyImp_0_OUTDIR)/VMMR3LazyLoad.asm
435$(call KB_FN_DO_PASS0_ON_TARGET,VMMR3LazyImp)
436
437$(call KB_FN_AUTO_CMD_DEPS,$(VMMR3LazyImp_0_OUTDIR)/VMMR3LazyLoad.asm)
438$(VMMR3LazyImp_0_OUTDIR)/VMMR3LazyLoad.asm: $(VMMR3LazyImp_DEFPATH)/VMMR3/VMMR3.def $(VBOX_DEF_2_LAZY_LOAD) | $$(dir $$@)
439 $(call KB_FN_AUTO_CMD_DEPS_COMMANDS)
440 $(VBOX_DEF_2_LAZY_LOAD) --output $@ --library VBoxVMM $(VMMR3LazyImp_DEFPATH)/VMMR3/VMMR3.def
441endif
442
443
444ifndef VBOX_ONLY_EXTPACKS
445#
446# VMMR0.r0
447#
448SYSMODS += VMMR0
449VMMR0_TEMPLATE = VBoxR0
450VMMR0_SYSSUFF = .r0
451
452VMMR0_DEFS = VBOX_IN_VMM IN_VMM_R0 IN_RT_R0 IN_DIS DIS_CORE_ONLY IN_GVMM_R0 IN_GMM_R0 IN_INTNET_R0 \
453 $(VMM_COMMON_DEFS) RTASSERT_HAVE_SHOULD_PANIC
454## @todo eliminate IN_GVMM_R0 IN_GMM_R0
455 ifdef VBOX_WITH_PCI_PASSTHROUGH
456VMMR0_DEFS += IN_PCIRAW_R0
457 endif
458 ifdef VBOX_WITH_TRIPLE_FAULT_HACK
459VMMR0_DEFS += VBOX_WITH_TRIPLE_FAULT_HACK
460 endif
461 ifdef VBOX_WITH_IOMMU_AMD
462VMMR0_DEFS += VBOX_WITH_IOMMU_AMD
463 endif
464 ifdef VBOX_WITH_RAW_MODE
465VMMR0_DEFS += VBOX_WITH_RAW_MODE
466 endif
467 ifdef VBOX_WITH_VMM_R0_SWITCH_STACK
468VMMR0_DEFS += VMM_R0_SWITCH_STACK
469 endif
470 if1of ($(KBUILD_TARGET), darwin linux win)
471VMMR0_DEFS += VMM_R0_TOUCH_FPU
472 endif
473VMMR0_DEFS.darwin = VMM_R0_SWITCH_STACK
474VMMR0_DEFS.win.amd64 = VBOX_WITH_KERNEL_USING_XMM
475
476 ifeq ($(VBOX_LDR_FMT),elf)
477VMMR0_CXXFLAGS += -Wunused -Wunused-variable -Wno-unused-parameter
478 endif
479
480VMMR0_INCS = \
481 include \
482 $(if-expr defined(VBOX_WITH_RAW_MODE),PATM,) \
483 $(VBoxVMM_0_OUTDIR)/CommonGenIncs
484
485VMMR0_SOURCES = \
486 VBoxVMM.d \
487 VMMR0/CPUMR0.cpp \
488 VMMR0/CPUMR0A.asm \
489 VMMR0/GIMR0.cpp \
490 VMMR0/GIMR0Hv.cpp \
491 VMMR0/GIMR0Kvm.cpp \
492 VMMR0/GMMR0.cpp \
493 VMMR0/GVMMR0.cpp \
494 VMMR0/EMR0.cpp \
495 VMMR0/HMR0.cpp \
496 VMMR0/HMR0A.asm \
497 VMMR0/HMVMXR0.cpp \
498 VMMR0/HMSVMR0.cpp \
499 VMMR0/IOMR0.cpp \
500 VMMR0/IOMR0IoPort.cpp \
501 VMMR0/IOMR0Mmio.cpp \
502 VMMR0/PDMR0Device.cpp \
503 VMMR0/PDMR0DevHlp.cpp \
504 VMMR0/PDMR0Driver.cpp \
505 VMMR0/PGMR0.cpp \
506 VMMR0/PGMR0Pool.cpp \
507 VMMR0/PGMR0SharedPage.cpp \
508 VMMR0/VMMR0.cpp \
509 VMMRZ/CPUMRZ.cpp \
510 VMMRZ/CPUMRZA.asm \
511 VMMRZ/DBGFRZ.cpp \
512 VMMRZ/VMMRZ.cpp \
513 VMMAll/APICAll.cpp \
514 VMMAll/CPUMAllRegs.cpp \
515 VMMAll/CPUMAllMsrs.cpp \
516 VMMAll/DBGFAll.cpp \
517 VMMAll/EMAll.cpp \
518 VMMAll/GIMAll.cpp \
519 VMMAll/GIMAllHv.cpp \
520 VMMAll/GIMAllKvm.cpp \
521 VMMAll/HMAll.cpp \
522 VMMAll/HMSVMAll.cpp \
523 VMMAll/HMVMXAll.cpp \
524 VMMAll/IEMAll.cpp \
525 VMMAll/IEMAllAImpl.asm \
526 VMMAll/IEMAllAImplC.cpp \
527 VMMAll/IOMAll.cpp \
528 VMMAll/IOMAllMmioNew.cpp \
529 VMMAll/MMAll.cpp \
530 VMMAll/MMAllHyper.cpp \
531 VMMAll/NEMAll.cpp \
532 VMMAll/PDMAll.cpp \
533 VMMAll/PDMAllCritSect.cpp \
534 VMMAll/PDMAllCritSectRw.cpp \
535 VMMAll/PDMAllCritSectBoth.cpp \
536 VMMAll/PDMAllQueue.cpp \
537 VMMAll/PDMAllTask.cpp \
538 VMMAll/PGMAll.cpp \
539 VMMAll/PGMAllHandler.cpp \
540 VMMAll/PGMAllMap.cpp \
541 VMMAll/PGMAllPhys.cpp \
542 VMMAll/PGMAllPool.cpp \
543 VMMAll/SELMAll.cpp \
544 VMMAll/TMAll.cpp \
545 VMMAll/TMAllCpu.cpp \
546 VMMAll/TMAllReal.cpp \
547 VMMAll/TMAllVirtual.cpp \
548 VMMAll/TRPMAll.cpp \
549 VMMAll/VMAll.cpp \
550 VMMAll/VMMAll.cpp \
551 VMMAll/VMMAllA.asm
552 if1of ($(VBOX_LDR_FMT), pe lx)
553VMMR0_SOURCES += $(VMMR0Imp_0_OUTDIR)/VMMR0.def
554 endif
555 ifdef VBOX_WITH_TRIPLE_FAULT_HACK
556VMMR0_SOURCES += \
557 VMMR0/VMMR0TripleFaultHack.cpp \
558 VMMR0/VMMR0TripleFaultHackA.asm
559 endif
560 ifdef VBOX_WITH_NETSHAPER
561VMMR0_SOURCES += \
562 VMMAll/PDMAllNetShaper.cpp
563 endif
564VMMR0_SOURCES.amd64 = \
565 VMMR0/VMMR0JmpA-amd64.asm
566VMMR0_SOURCES.x86 = \
567 VMMR0/VMMR0JmpA-x86.asm
568
569VMMR0_LIBS = \
570 $(PATH_STAGE_LIB)/ServicesR0$(VBOX_SUFF_LIB) \
571 $(PATH_STAGE_LIB)/RuntimeR0$(VBOX_SUFF_LIB) \
572 $(PATH_STAGE_LIB)/DisasmR0$(VBOX_SUFF_LIB)
573 ifneq ($(filter pe lx,$(VBOX_LDR_FMT)),)
574VMMR0_LIBS += \
575 $(PATH_STAGE_LIB)/SUPR0$(VBOX_SUFF_LIB)
576 endif
577 ifdef VBOX_WITH_NATIVE_NEM
578VMMR0_SOURCES.win.amd64 += VMMR0/NEMR0Native-win.cpp
579VMMR0_DEFS.win.amd64 += VBOX_WITH_NATIVE_NEM VBOX_WITH_NEM_R0
580VMMR0/NEMR0Native-win.cpp_SDKS.win = ReorderCompilerIncs $(VBOX_WINDDK) $(VBOX_WINPSDK)INCS
581 endif
582
583$(call VBOX_SET_VER_INFO_R0,VMMR0,VirtualBox VMM - ring-0 context parts) # Version info / description.
584
585 if "$(USERNAME)" == "bird" && "$(KBUILD_TARGET)" == "win"
586VMMR0_VMMAll/IEMAll.cpp_CXXFLAGS = /FAcs /Fa$(subst /,\\,$(outbase).cod)
587VMMR0_VMMAll/IEMAllAImplC.cpp_CXXFLAGS = /FAcs /Fa$(subst /,\\,$(outbase).cod)
588VMMR0_VMMAll/PGMAll.cpp_CXXFLAGS = /FAcs /Fa$(subst /,\\,$(outbase).cod)
589VMMR0_CLEAN += $(addprefix $(VMMR0_0_OUTDIR)/VMMAll/, IEMAll.cod IEMAllAImplC.cod PGMAll.cod)
590 endif
591
592VMMR0_INTERMEDIATES += $(VBoxVMM_0_OUTDIR)/CommonGenIncs/IEMInstructionStatisticsTmpl.h
593
594 if "$(KBUILD_TARGET)" == "win"
595# Debug type info hack for VMCPU, VM and similar. See VBoxVMM for details.
596VMMR0_LIBS += $(VMMR0PdbTypeHack_1_TARGET)
597VMMR0_LDFLAGS += /Export:PdbTypeHack
598
599LIBRARIES += VMMR0PdbTypeHack
600VMMR0PdbTypeHack_TEMPLATE = $(VMMR0_TEMPLATE)
601VMMR0PdbTypeHack_SOURCES = VMMAll/AllPdbTypeHack.cpp
602VMMR0PdbTypeHack_DEFS = $(VMMR0_DEFS)
603VMMR0PdbTypeHack_DEFS.win = $(VMMR0_DEFS.win)
604VMMR0PdbTypeHack_DEFS.win.x86 = $(VMMR0_DEFS.win.x86)
605VMMR0PdbTypeHack_DEFS.win.amd64 = $(VMMR0_DEFS.win.amd64)
606VMMR0PdbTypeHack_INCS = $(VMMR0_INCS)
607VMMR0PdbTypeHack_INTERMEDIATES = $(VMMR0_INTERMEDIATES)
608 endif
609
610endif # !VBOX_ONLY_EXTPACKS
611
612
613
614ifndef VBOX_ONLY_EXTPACKS
615#
616# SSMStandalone.lib/a for linking with VBoxSVC and other executables.
617#
618LIBRARIES += SSMStandalone
619SSMStandalone_TEMPLATE = VBOXR3EXE
620SSMStandalone_DEFS = VBOX_IN_VMM IN_VMM_R3 IN_VMM_STATIC SSM_STANDALONE CPUM_DB_STANDALONE $(VMM_COMMON_DEFS)
621SSMStandalone_INCS = include
622SSMStandalone_SOURCES = \
623 VMMR3/SSM.cpp \
624 VMMR3/CPUMR3Db.cpp
625endif # !VBOX_ONLY_EXTPACKS
626
627
628if !defined(VBOX_ONLY_EXTPACKS) \
629 && ( defined(VBOX_WITH_DTRACE_R3) \
630 || defined(VBOX_WITH_DTRACE_R0) \
631 || defined(VBOX_WITH_DTRACE_RC))
632#
633# Install the dtrace library files.
634#
635INSTALLS += VMMLibDTrace
636VMMLibDTrace_INST = $(VBOX_INST_DTRACE_LIB)$(KBUILD_TARGET_ARCH)/
637VMMLibDTrace_SOURCES = \
638 dtrace/lib/vbox-types.d \
639 dtrace/lib/$(KBUILD_TARGET_ARCH)/vbox-arch-types.d \
640 $(VMMLibDTrace_0_OUTDIR)/vm.d \
641 $(VMMLibDTrace_0_OUTDIR)/cpumctx.d \
642 $(VMMLibDTrace_0_OUTDIR)/cpum.d \
643 $(VMMLibDTrace_0_OUTDIR)/CPUMInternal.d \
644 $(VMMLibDTrace_0_OUTDIR)/x86.d
645$(call KB_FN_DO_PASS0_ON_TARGET,VMMLibDTrace)
646
647
648##
649# Turn the header $2 into the DTrace library script $1.
650#
651 define def_vmm_lib_dtrace_preprocess
652$$(call KB_FN_AUTO_CMD_DEPS,$$(VMMLibDTrace_0_OUTDIR)/$1)
653$$(VMMLibDTrace_0_OUTDIR)/$1: $2 $$(VBOX_VBOXCPP) | $$$$(dir $$$$@)
654 $$(call KB_FN_AUTO_CMD_DEPS_COMMANDS)
655 $$(QUIET)$$(call MSG_GENERATE,VMMLibDTrace,$$@,$2)
656 $$(QUIET)$(VBOX_VBOXCPP) -d \
657 -D VBOX_FOR_DTRACE_LIB \
658 -D VBOX_FOR_DTRACE_LIB_$(toupper $(KBUILD_TARGET_ARCH)) \
659 -D IN_RING0 \
660 -D RT_C_DECLS_BEGIN= \
661 -D RT_C_DECLS_END= \
662 -D RT_GCC_EXTENSION= \
663 -D 'RCPTRTYPE(a_Type)=RTRCPTR' \
664 -D 'R3PTRTYPE(a_Type)=RTR3PTR' \
665 -D 'R0PTRTYPE(a_Type)=a_Type' \
666 -D 'AssertCompile(a_Expr)=' \
667 -D 'AssertCompileSize(a_Stuct, a_Size)=' \
668 -D 'bool=uint8_t' \
669 $$(foreach def,\
670 $$(DEFS) \
671 $$(DEFS.$$(KBUILD_TARGET)) \
672 $$(DEFS.$(KBUILD_TARGET_ARCH)) \
673 $$(VMM_COMMON_DEFS) \
674 $$(ARCH_BITS_DEFS)\
675 ,-D '$$(def)') \
676 $2 \
677 $$@
678 $$(QUIET)$$(CHMOD) 644 $$@
679
680 VMMLibDTrace_CLEAN += $(VMMLibDTrace_0_OUTDIR)/$1
681 endef
682$(evalcall2 def_vmm_lib_dtrace_preprocess,vm.d,$(PATH_ROOT)/include/VBox/vmm/vm.h)
683$(evalcall2 def_vmm_lib_dtrace_preprocess,cpumctx.d,$(PATH_ROOT)/include/VBox/vmm/cpumctx.h)
684$(evalcall2 def_vmm_lib_dtrace_preprocess,cpum.d,$(PATH_ROOT)/include/VBox/vmm/cpum.h)
685$(evalcall2 def_vmm_lib_dtrace_preprocess,CPUMInternal.d,$(PATH_SUB_CURRENT)/include/CPUMInternal.h)
686$(evalcall2 def_vmm_lib_dtrace_preprocess,x86.d,$(PATH_ROOT)/include/iprt/x86.h)
687
688endif
689
690
691
692#
693# For vmmGetSvnRev.
694#
695VMMAll/VMMAll.cpp_DEFS = VBOX_SVN_REV=$(VBOX_SVN_REV)
696
697#
698# Disable annoying warnings about array subscript above array bounds in aPages[]
699#
700ifneq ($(KBUILD_TARGET),win)
701VMMR3/PGMPool.cpp_CXXFLAGS = $(VBOX_GCC_Wno-array_bounds)
702VMMAll/PGMAllPool.cpp_CXXFLAGS = $(VBOX_GCC_Wno-array_bounds)
703VMMAll/PGMAll.cpp_CXXFLAGS = -Wno-unused-function
704VMMAll/IEMAll.cpp_CXXFLAGS = -Wno-unused-function
705VMMR0/GMMR0.cpp_CXXFLAGS = -Wno-unused-value
706endif
707
708#
709# Always optimize the interpreter.
710#
711if $(USERNAME) != "bird" || "$(KBUILD_TYPE)" == "release" #|| "$(KBUILD_TARGET).$(KBUILD_TARGET_ARCH)" == "win.amd64"
712 if1of ($(KBUILD_TARGET), win)
713# -noover is recognized despite the statement saying otherwise. It silences these warnings:
714# cl : Command line warning D9025 : overriding '/Od' with '/O2'
715# cl : Command line warning D9025 : overriding '/Oy-' with '/Oy'
716VMMAll/IEMAll.cpp_CXXFLAGS += -noover -O2xy
717 else
718VMMAll/IEMAll.cpp_CXXFLAGS += -O2
719#VMMAll/IEMAll.cpp_CXXFLAGS += -fno-align-functions -fno-align-jumps -fno-align-loops # Saves a few of percents, not worth it.
720#VMMAll/IEMAll.cpp_CXXFLAGS += -fno-reorder-blocks # Saves one or two percent ... never mind.
721VMMAll/IEMAll.cpp_CXXFLAGS += -fomit-frame-pointer # Omitting the frame pointer results in larger code, but it might be worth it. (esp addressing vs ebp?)
722 endif
723endif # bird wants good stacks
724
725
726# Alias the CPU database entries.
727$(foreach base,$(notdir $(basename $(wildcard $(PATH_SUB_CURRENT)/VMMR3/cpus/*.h))), $(eval $(base).o $(base).obj: CPUMR3Db.o))
728
729
730#
731# Process python source(s).
732#
733BLDDIRS += $(PATH_TARGET)/pylint
734
735define def_vbox_vmm_py_check
736$(eval name:=$(basename $(notdir $(py))))
737
738pylint: $(name)-py-phony.o
739$(name).o: $(name)-py-phony.o
740$(PATH_TARGET)/pylint/$(name).o $(name)-py-phony.o:: $(py) | $(PATH_TARGET)/pylint/
741ifdef VBOX_WITH_PYLINT
742 $(QUIET2)$(call MSG_L1,Subjecting $(py) to pylint...)
743 $(QUIET)$(REDIRECT) -C "$(dir $(py))" -E LC_ALL=C -- \
744 $(VBOX_PYLINT) --rcfile=$(PATH_TARGET)/no-such-pylintrc \
745 $$(VBOX_PYLINT_FLAGS) $$($(py)_VBOX_PYLINT_FLAGS) ./$(notdir $(py))
746endif
747 $(QUIET)$(APPEND) -t "$(PATH_TARGET)/pylint/$(name).o"
748
749TESTING += $(name)-py-phony.o
750endef # def_vbox_vmm_py_check
751
752$(foreach py, $(addprefix $(PATH_SUB_CURRENT)/VMMAll/, IEMAllInstructionsPython.py ) , $(eval $(def_vbox_vmm_py_check)))
753
754
755include $(FILE_KBUILD_SUB_FOOTER)
756
757
758# Alias the PGM templates to the object in which they are defined.
759PGMInternal.o: PGM.o
760
761PGMAllBth.o PGMAllGst.o PGMAllShw.o \
762PGMAllBth.obj PGMAllGst.obj PGMAllShw.obj: PGMAll.o
763
764PGMRCBth.o PGMRCGst.o PGMRCShw.o \
765PGMRCBth.obj PGMRCGst.obj PGMRCShw.obj: PGMRC.o
766
767PGMPhysRWTmpl.o PGMPhysRWTmpl.obj: PGMPhys.o
768
769PGMInline.o PGMInline.obj: PGMDbg.o
770
771# Alias the IEM templates to the object in which they are instantiated.
772IEMInternal.o \
773IEMAllInstructions.cpp.o IEMAllInstructions.cpp.obj \
774IEMAllInstructionsOneByte.cpp.o IEMAllInstructionsOneByte.cpp.obj \
775IEMAllInstructionsTwoByte0f.cpp.o IEMAllInstructionsTwoByte0f.cpp.obj \
776IEMAllInstructionsThree0f38.cpp.o IEMAllInstructionsThree0f38.cpp.obj \
777IEMAllInstructionsThree0f3a.cpp.o IEMAllInstructionsThree0f3a.cpp.obj \
778IEMAllInstructionsVexMap1.cpp.o IEMAllInstructionsVexMap1.cpp.obj \
779IEMAllInstructionsVexMap2.cpp.o IEMAllInstructionsVexMap2.cpp.obj \
780IEMAllInstructionsVexMap3.cpp.o IEMAllInstructionsVexMap3.cpp.obj \
781IEMAllInstructions3DNow.cpp.o IEMAllInstructions3DNow.cpp.obj \
782IEMAllCImpl.cpp.o IEMAllCImpl.cpp.obj \
783IEMAllCImplStrInstr.cpp.o IEMAllCImplStrInstr.cpp.obj \
784IEMAllCImplSvmInstr.cpp.o IEMAllCImplSvmInstr.cpp.obj \
785IEMAllCImplVmxInstr.cpp.o IEMAllCImplVmxInstr.cpp.obj: IEMAll.o
786
787# Alias the NEM template to the objects where it is used:
788NEMAllNativeTemplate-win.cpp.o: NEMR3Native-win.o NEMR0Native-win.o
789
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use