VirtualBox

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

Last change on this file since 100695 was 100694, checked in by vboxsync, 20 months ago

IEM/VMM: Deal with opcode checking cross page boundraries and tentativiely for branches. bugref:10369

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