VirtualBox

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

Last change on this file since 99132 was 99070, checked in by vboxsync, 2 years ago

VMM/{CPUM,DBGF}: Some basic support to dump register values with DBGF for ARMv8, bugref:10393

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