VirtualBox

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

Last change on this file since 99775 was 99743, checked in by vboxsync, 18 months ago

VMM: Add full support for reading/writing I/O ports on ARMv8 in order to emulate PIO accesses to PCI devices through a dedicated MMIO region by the host to PCI bridge, bugref:10445

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