VirtualBox

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

Last change on this file since 71040 was 70979, checked in by vboxsync, 7 years ago

NEM: Working on the EM loops. bugref:9044

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

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette