VirtualBox

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

最後變更 在這個檔案從69559是 69559,由 vboxsync 提交於 7 年 前

VMMR3: force disabling of Address Sanitiser on PGMPool.cpp.
bugref:8192: gcc warnings
There is some strange interplay between Address Sanitiser and the gcc fall-
through detector in PCMPool.cpp. Because I do not have a better work-around
I am forcibly disabling Address Sanitiser on that file. I have filed an
unfortunately slightly confused gcc bug for this:
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=82792

  • 屬性 svn:eol-style 設為 native
  • 屬性 svn:keywords 設為 Author Date Id Revision
檔案大小: 32.3 KB
 
1# $Id: Makefile.kmk 69559 2017-11-03 09:39:55Z 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.alldomusa.eu.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/FTM.cpp \
176 VMMR3/GIM.cpp \
177 VMMR3/GIMHv.cpp \
178 VMMR3/GIMKvm.cpp \
179 VMMR3/GIMMinimal.cpp \
180 VMMR3/IEMR3.cpp \
181 VMMR3/IOM.cpp \
182 VMMR3/GMM.cpp \
183 VMMR3/MM.cpp \
184 VMMR3/MMHeap.cpp \
185 VMMR3/MMHyper.cpp \
186 VMMR3/MMPagePool.cpp \
187 VMMR3/MMUkHeap.cpp \
188 VMMR3/PDM.cpp \
189 VMMR3/PDMBlkCache.cpp \
190 VMMR3/PDMDevice.cpp \
191 VMMR3/PDMDevHlp.cpp \
192 VMMR3/PDMDevMiscHlp.cpp \
193 VMMR3/PDMDriver.cpp \
194 VMMR3/PDMLdr.cpp \
195 VMMR3/PDMCritSect.cpp \
196 VMMR3/PDMQueue.cpp \
197 VMMR3/PDMThread.cpp \
198 VMMR3/PGM.cpp \
199 VMMR3/PGMDbg.cpp \
200 VMMR3/PGMR3DbgA.asm \
201 VMMR3/PGMHandler.cpp \
202 VMMR3/PGMMap.cpp \
203 VMMR3/PGMPhys.cpp \
204 VMMR3/PGMPool.cpp \
205 VMMR3/PGMSavedState.cpp \
206 VMMR3/PGMSharedPage.cpp \
207 VMMR3/SELM.cpp \
208 VMMR3/SSM.cpp \
209 VMMR3/STAM.cpp \
210 VMMR3/TM.cpp \
211 VMMR3/TRPM.cpp \
212 VMMR3/VM.cpp \
213 VMMR3/VMEmt.cpp \
214 VMMR3/VMReq.cpp \
215 VMMR3/VMM.cpp \
216 VMMR3/VMMGuruMeditation.cpp \
217 VMMR3/VMMSwitcher.cpp \
218 VMMR3/VMMTests.cpp \
219 VMMR3/HM.cpp \
220 $(if-expr defined(VBOX_WITH_RAW_MODE), \
221 VMMR3/CSAM.cpp \
222 VMMR3/PATM.cpp \
223 VMMR3/PATMPatch.cpp \
224 VMMR3/PATMGuest.cpp \
225 VMMR3/PATMA.asm \
226 VMMR3/PATMSSM.cpp \
227 VMMR3/PATMR3Dbg.cpp \
228 ,) \
229 VMMAll/APICAll.cpp \
230 VMMAll/CPUMAllRegs.cpp \
231 VMMAll/CPUMAllMsrs.cpp \
232 VMMAll/CPUMStack.cpp \
233 VMMAll/DBGFAll.cpp \
234 VMMAll/HMAll.cpp \
235 VMMAll/HMSVMAll.cpp \
236 VMMAll/IEMAll.cpp \
237 VMMAll/IEMAllAImpl.asm \
238 VMMAll/IEMAllAImplC.cpp \
239 VMMAll/IOMAll.cpp \
240 VMMAll/IOMAllMMIO.cpp \
241 VMMAll/MMAll.cpp \
242 VMMAll/MMAllHyper.cpp \
243 VMMAll/MMAllPagePool.cpp \
244 VMMAll/PDMAll.cpp \
245 VMMAll/PDMAllCritSect.cpp \
246 VMMAll/PDMAllCritSectRw.cpp \
247 VMMAll/PDMAllCritSectBoth.cpp \
248 VMMAll/PDMAllQueue.cpp \
249 VMMAll/PGMAll.cpp \
250 VMMAll/PGMAllHandler.cpp \
251 VMMAll/PGMAllMap.cpp \
252 VMMAll/PGMAllPhys.cpp \
253 VMMAll/PGMAllPool.cpp \
254 VMMAll/SELMAll.cpp \
255 VMMAll/EMAll.cpp \
256 VMMAll/EMAllA.asm \
257 VMMAll/FTMAll.cpp \
258 VMMAll/GIMAll.cpp \
259 VMMAll/GIMAllHv.cpp \
260 VMMAll/GIMAllKvm.cpp \
261 VMMAll/TMAll.cpp \
262 VMMAll/TMAllCpu.cpp \
263 VMMAll/TMAllReal.cpp \
264 VMMAll/TMAllVirtual.cpp \
265 VMMAll/TRPMAll.cpp \
266 VMMAll/VMAll.cpp \
267 VMMAll/VMMAll.cpp \
268 VMMAll/VMMAllA.asm \
269 $(if-expr defined(VBOX_WITH_RAW_MODE), \
270 VMMAll/CSAMAll.cpp \
271 VMMAll/PATMAll.cpp \
272 ,)
273ifdef VBOX_WITH_VUSB
274 VBoxVMM_SOURCES += VMMR3/PDMUsb.cpp
275endif
276ifdef VBOX_WITH_PDM_ASYNC_COMPLETION
277 VBoxVMM_SOURCES += \
278 VMMR3/PDMAsyncCompletion.cpp \
279 VMMR3/PDMAsyncCompletionFile.cpp \
280 VMMR3/PDMAsyncCompletionFileFailsafe.cpp \
281 VMMR3/PDMAsyncCompletionFileNormal.cpp
282endif
283ifdef VBOX_WITH_NETSHAPER
284 VBoxVMM_SOURCES += \
285 VMMR3/PDMNetShaper.cpp \
286 VMMAll/PDMAllNetShaper.cpp
287endif
288ifdef VBOX_WITH_REM
289 VBoxVMM_SOURCES += \
290 VMMAll/REMAll.cpp
291endif
292ifdef VBOX_WITH_RAW_MODE
293 VBoxVMM_SOURCES.x86 += \
294 VMMSwitcher/32BitTo32Bit.asm \
295 VMMSwitcher/32BitToPAE.asm \
296 VMMSwitcher/PAETo32Bit.asm \
297 VMMSwitcher/PAEToPAE.asm
298 VBoxVMM_SOURCES.amd64 = \
299 VMMSwitcher/AMD64To32Bit.asm \
300 VMMSwitcher/AMD64ToPAE.asm
301endif
302VBoxVMM_SOURCES.x86 += \
303 VMMSwitcher/32BitToAMD64.asm \
304 VMMSwitcher/PAEToAMD64.asm \
305 VMMSwitcher/X86Stub.asm
306VBoxVMM_SOURCES.amd64 += \
307 VMMSwitcher/AMD64Stub.asm
308
309VBoxVMM_LIBS = \
310 $(PATH_STAGE_LIB)/DisasmR3$(VBOX_SUFF_LIB)
311ifdef VBOX_WITH_DEBUGGER
312 VBoxVMM_LIBS += \
313 $(PATH_STAGE_LIB)/Debugger$(VBOX_SUFF_LIB)
314endif
315VBoxVMM_LIBS += \
316 $(LIB_REM) \
317 $(LIB_RUNTIME)
318
319VBoxVMM_LIBS.win = $(PATH_TOOL_$(VBOX_VCC_TOOL)_LIB)/delayimp.lib
320VBoxVMM_LDFLAGS.linux = $(VBOX_GCC_NO_UNDEFINED)
321VBoxVMM_LDFLAGS.darwin = -install_name $(VBOX_DYLD_EXECUTABLE_PATH)/VBoxVMM.dylib
322VBoxVMM_LDFLAGS.solaris = -mimpure-text
323
324# SSM wish to know the build type, host os and arch.
325VMMR3/SSM.cpp_DEFS += \
326 KBUILD_TYPE=\"$(KBUILD_TYPE)\" \
327 KBUILD_TARGET=\"$(KBUILD_TARGET)\" \
328 KBUILD_TARGET_ARCH=\"$(KBUILD_TARGET_ARCH)\"
329
330VMMR3/PGMPool.cpp_CXXFLAGS.linux += -fno-sanitize=address
331
332#ifdef VBOX_WITH_PDM_ASYNC_COMPLETION
333# ifeq ($(KBUILD_HOST), linux)
334#VBoxVMM_LIBS += aio
335# endif
336#endif
337
338if "$(USERNAME)" == "bird" && "$(KBUILD_TARGET)" == "win"
339 VBoxVMM_VMMAll/IEMAll.cpp_CXXFLAGS = /FAcs /Fa$(subst /,\\,$(outbase).cod)
340 VBoxVMM_VMMAll/IEMAllAImplC.cpp_CXXFLAGS = /FAcs /Fa$(subst /,\\,$(outbase).cod)
341 VBoxVMM_VMMAll/PGMAll.cpp_CXXFLAGS = /FAcs /Fa$(subst /,\\,$(outbase).cod)
342 VBoxVMM_VMMAll/PDMAllCritSect.cpp_CXXFLAGS = /FAcs /Fa$(subst /,\\,$(outbase).cod)
343endif
344
345$(call VBOX_SET_VER_INFO_DLL,VBoxVMM,VirtualBox VMM) # Version info / description.
346
347
348#
349# Generate macro template for IEM instruction statistics.
350#
351$(call KB_FN_DO_PASS0_ON_TARGET,VBoxVMM) # Set VBoxVMM_0_OUTDIR
352VBoxVMM_INTERMEDIATES += $(VBoxVMM_0_OUTDIR)/CommonGenIncs/IEMInstructionStatisticsTmpl.h
353VBoxVMM_CLEAN += \
354 $(VBoxVMM_0_OUTDIR)/CommonGenIncs/IEMInstructionStatisticsTmpl.h.ts \
355 $(VBoxVMM_0_OUTDIR)/CommonGenIncs/IEMInstructionStatisticsTmpl.h
356$(call KB_FN_AUTO_CMD_DEPS,$(VBoxVMM_0_OUTDIR)/CommonGenIncs/IEMInstructionStatisticsTmpl.h.ts)
357$(VBoxVMM_0_OUTDIR)/CommonGenIncs/IEMInstructionStatisticsTmpl.h.ts \
358+| $(VBoxVMM_0_OUTDIR)/CommonGenIncs/IEMInstructionStatisticsTmpl.h: \
359 $(PATH_SUB_CURRENT)/VMMAll/IEMAllInstructions.cpp.h \
360 $(PATH_SUB_CURRENT)/VMMAll/IEMAllInstructionsOneByte.cpp.h \
361 $(PATH_SUB_CURRENT)/VMMAll/IEMAllInstructionsTwoByte0f.cpp.h \
362 $(PATH_SUB_CURRENT)/VMMAll/IEMAllInstructionsThree0f38.cpp.h \
363 $(PATH_SUB_CURRENT)/VMMAll/IEMAllInstructionsThree0f3a.cpp.h \
364 $(PATH_SUB_CURRENT)/VMMAll/IEMAllInstructionsVexMap1.cpp.h \
365 $(PATH_SUB_CURRENT)/VMMAll/IEMAllInstructionsVexMap2.cpp.h \
366 $(PATH_SUB_CURRENT)/VMMAll/IEMAllInstructionsVexMap3.cpp.h \
367 $(PATH_SUB_CURRENT)/VMMAll/IEMAllInstructions3DNow.cpp.h
368 $(QUIET)$(call MSG_GENERATE,VBoxVMM,$@,VMMAll/IEMAllInstructions*.cpp.h)
369 $(QUIET)$(RM) -f -- "[email protected]" "[email protected]" "[email protected]"
370 $(QUIET)$(MKDIR) -p -- "$(dir $@)"
371 $(call KB_FN_AUTO_CMD_DEPS_COMMANDS)
372 $(QUIET)$(SED) \
373 -e '/IEMOP_MNEMONIC\(\|[01234]\|[01234]EX\)(/!d' \
374 -e ':look-for-end-of-invocation' \
375 -e '/)/bend-of-invocation' \
376 -e 'N' \
377 -e 'blook-for-end-of-invocation' \
378 -e ':end-of-invocation' \
379 -e 's/\n/ /g' \
380 -e 's/ */ /g' \
381 -e 's/^.*IEMOP_MNEMONIC\(\|[01234]\|[01234]EX\)(/IEM_DO_INSTR_STAT\1(/' \
382 -e 's/;.*$(DOLLAR)//' \
383 --output "[email protected]" $(filter %.cpp.h,$^)
384# Windows sort does some kind of seeking. So, we must use a temporary file and kmk_cat to define and undefine our macros.
385 $(QUIET)$(REDIRECT) -wto "[email protected]" -- sort "[email protected]"
386 $(QUIET)$(APPEND) -nt "$@" \
387 '/* Warning autogenerated by VMM/Makefile.kmk. */ ' \
388 '#define IEM_DO_INSTR_STAT0(f,u,l,fd,fi) IEM_DO_INSTR_STAT(l, #l)' \
389 '#define IEM_DO_INSTR_STAT1(f,u,l,o1,fd,fi) IEM_DO_INSTR_STAT(l ## _ ## o1, #l " " #o1)' \
390 '#define IEM_DO_INSTR_STAT2(f,u,l,o1,o2,fd,fi) IEM_DO_INSTR_STAT(l ## _ ## o1 ## _ ## o2, #l " " #o1 "," #o2)' \
391 '#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)' \
392 '#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)' \
393 '#define IEM_DO_INSTR_STAT0EX(s,m,f,u,l,fd,fi) IEM_DO_INSTR_STAT(s,m)' \
394 '#define IEM_DO_INSTR_STAT1EX(s,m,f,u,l,o1,fd,fi) IEM_DO_INSTR_STAT(s,m)' \
395 '#define IEM_DO_INSTR_STAT2EX(s,m,f,u,l,o1,o2,fd,fi) IEM_DO_INSTR_STAT(s,m)' \
396 '#define IEM_DO_INSTR_STAT3EX(s,m,f,u,l,o1,o2,o3,fd,fi) IEM_DO_INSTR_STAT(s,m)' \
397 '#define IEM_DO_INSTR_STAT4EX(s,m,f,u,l,o1,o2,o3,o4,fd,fi) IEM_DO_INSTR_STAT(s,m)' \
398 ''
399 $(QUIET)$(REDIRECT) -ato "$@" -- $(CAT_EXT) "[email protected]"
400 $(QUIET)$(APPEND) -n "$@" \
401 '' \
402 '#undef IEM_DO_INSTR_STAT0' \
403 '#undef IEM_DO_INSTR_STAT1' \
404 '#undef IEM_DO_INSTR_STAT2' \
405 '#undef IEM_DO_INSTR_STAT3' \
406 '#undef IEM_DO_INSTR_STAT4' \
407 '#undef IEM_DO_INSTR_STAT0EX' \
408 '#undef IEM_DO_INSTR_STAT1EX' \
409 '#undef IEM_DO_INSTR_STAT2EX' \
410 '#undef IEM_DO_INSTR_STAT3EX' \
411 '#undef IEM_DO_INSTR_STAT4EX' \
412 ''
413 $(QUIET)$(RM) -f -- "[email protected]" "[email protected]"
414 $(QUIET)$(CP) -v -f --changed -- "$@" "$(patsubst %.ts,%,$@)"
415
416foobar: $(VBoxVMM_0_OUTDIR)/CommonGenIncs/IEMInstructionStatisticsTmpl.h
417
418if "$(KBUILD_TARGET)" == "win" && !defined(VBOX_ONLY_EXTPACKS_USE_IMPLIBS)
419 #
420 # Debug type info hack for VMCPU, VM and similar.
421 #
422 # The microsoft linker seems to be using the last occurence of the structures
423 # when writing the module PDB file. So, we put the fully complete structures
424 # in a library which is at the end of the library list.
425 #
426 VBoxVMM_LIBS += $(VBoxVMMPdbTypeHack_1_TARGET)
427 VBoxVMM_LDFLAGS += /Export:PdbTypeHack
428
429 LIBRARIES += VBoxVMMPdbTypeHack
430 VBoxVMMPdbTypeHack_TEMPLATE = $(VBoxVMM_TEMPLATE)
431 VBoxVMMPdbTypeHack_SOURCES = VMMAll/AllPdbTypeHack.cpp
432 VBoxVMMPdbTypeHack_DEFS = $(VBoxVMM_DEFS)
433 VBoxVMMPdbTypeHack_DEFS.win = $(VBoxVMM_DEFS.win)
434 VBoxVMMPdbTypeHack_DEFS.win.x86 = $(VBoxVMM_DEFS.win.x86)
435 VBoxVMMPdbTypeHack_DEFS.win.amd64 = $(VBoxVMM_DEFS.win.amd64)
436 VBoxVMMPdbTypeHack_INCS = $(VBoxVMM_INCS)
437 VBoxVMMPdbTypeHack_INTERMEDIATES = $(VBoxVMM_INTERMEDIATES)
438endif
439
440
441if defined(VBOX_WITH_RAW_MODE) && $(intersects $(VBOX_LDR_FMT32), pe lx)
442
443 #
444 # VMMRCBuiltin.lib
445 #
446 LIBRARIES += VMMRCBuiltin
447 VMMRCBuiltin_TEMPLATE = VBoxRc
448 ifeq ($(VBOX_LDR_FMT32),pe)
449 VMMRCBuiltin_SOURCES = VMMRC/VMMRCBuiltin.def
450 endif
451 ifeq ($(VBOX_LDR_FMT32),lx)
452 VMMRCBuiltin_SOURCES = $(VMMRCBuiltin_0_OUTDIR)/VMMRCBuiltin.def
453 $$(VMMRCBuiltin_0_OUTDIR)/VMMRCBuiltin.def: $(PATH_SUB_CURRENT)/VMMRC/VMMRCBuiltin.def | $$(dir $$@)
454 $(SED) -e '/not-os2/d' -e 's/^[ \t][ \t]*\([a-zA-Z]\)/ _\1/' -e 's/[ \t]DATA[ \t]*/ /' --output $@ $<
455 endif
456
457
458 #
459 # VMMRCImp.lib
460 #
461 LIBRARIES += VMMRCImp
462 VMMRCImp_TEMPLATE = VBoxRc
463 VMMRCImp_SOURCES = $(VMMRCImp_0_OUTDIR)/VMMRC.def
464 VMMRCImp_CLEAN = $(VMMRCImp_0_OUTDIR)/VMMRC.def
465 $(call KB_FN_DO_PASS0_ON_TARGET,VMMRCImp)
466
467 $(call KB_FN_AUTO_CMD_DEPS,$(VMMRCImp_0_OUTDIR)/VMMRC.def)
468 $(VMMRCImp_0_OUTDIR)/VMMRC.def: $(VMMRCImp_DEFPATH)/VMMRC/VMMRC.def | $$(dir $$@)
469 $(call KB_FN_AUTO_CMD_DEPS_COMMANDS)
470 ifeq ($(VBOX_LDR_FMT32),lx)
471 $(SED) \
472 -e '/not-os2/d' \
473 -e 's/^[ \t][ \t]*\([a-zA-Z]\)/ _\1/' \
474 -e 's/[ \t]DATA[ \t]*/ /' \
475 --output $@ \
476 $(VMMRCImp_DEFPATH)/VMMRC/VMMRC.def
477 $(APPEND) "$@" ""
478 $(APPEND) "$@" " ___ehInit"
479 else
480 $(SED) \
481 -e '/not-win/d' \
482 -e '/not-$(KBUILD_TARGET_ARCH)/d' \
483 --output $@ $(VMMRCImp_DEFPATH)/VMMRC/VMMRC.def
484 endif
485
486endif # RC && (pe || lx)
487
488
489if1of ($(VBOX_LDR_FMT), pe lx)
490 #
491 # VMMR0Imp.lib
492 #
493 LIBRARIES += VMMR0Imp
494 VMMR0Imp_TEMPLATE = VBoxR0
495 VMMR0Imp_SOURCES = $(VMMR0Imp_0_OUTDIR)/VMMR0.def
496 VMMR0Imp_CLEAN = $(VMMR0Imp_0_OUTDIR)/VMMR0.def
497 ifeq ($(KBUILD_TARGET),win) # Experiment: Let's see how blunt the ones messing our NULL_THUNK_DATA entries on W10 are.
498 VMMR0Imp_POST_CMDS = $(KLIBTWEAKER_EXT) --clear-timestamps --fill-null_thunk_data $(out)
499 endif
500 $(call KB_FN_DO_PASS0_ON_TARGET,VMMR0Imp)
501
502 $(call KB_FN_AUTO_CMD_DEPS,$(VMMR0Imp_0_OUTDIR)/VMMR0.def)
503 $(VMMR0Imp_0_OUTDIR)/VMMR0.def: $(VMMR0Imp_DEFPATH)/VMMR0/VMMR0.def | $$(dir $$@)
504 $(call KB_FN_AUTO_CMD_DEPS_COMMANDS)
505 ifeq ($(VBOX_LDR_FMT),lx)
506 $(SED) \
507 -e '/not-os2/d' \
508 -e '/not-amd64/d' \
509 -e 's/^[ \t][ \t]*\([a-zA-Z]\)/ _\1/' \
510 -e 's/[ \t]DATA[ \t]*/ /' \
511 --output $@ $(VMMR0Imp_DEFPATH)/VMMR0/VMMR0.def
512 $(APPEND) "$@" ""
513 $(APPEND) "$@" " ___ehInit"
514 else
515 $(SED) \
516 -e '/not-win/d' \
517 -e '/not-$(KBUILD_TARGET_ARCH)/d' \
518 --output $@ $(VMMR0Imp_DEFPATH)/VMMR0/VMMR0.def
519 endif
520endif # R0: pe + lx
521
522
523#
524# VMMR3Imp.lib
525#
526IMPORT_LIBS += VMMR3Imp
527$(call VBOX_GENERATE_IMPORT_TARGET_FN,VMMR3Imp,VBoxVMM,VMMR3/VMMR3.def)
528
529ifneq ($(VBOX_LIB_VMM_LAZY),$(LIB_VMM))
530 #
531 # VMMR3LazyImp.lib (experimental)
532 #
533 LIBRARIES += VMMR3LazyImp
534 VMMR3LazyImp_TEMPLATE = VBoxR3Dll
535 VMMR3LazyImp_INST = $(INST_LIB)
536 VMMR3LazyImp_SOURCES = $(VMMR3LazyImp_0_OUTDIR)/VMMR3LazyLoad.asm
537 VMMR3LazyImp_CLEAN = $(VMMR3LazyImp_0_OUTDIR)/VMMR3LazyLoad.asm
538 $(call KB_FN_DO_PASS0_ON_TARGET,VMMR3LazyImp)
539
540 $(call KB_FN_AUTO_CMD_DEPS,$(VMMR3LazyImp_0_OUTDIR)/VMMR3LazyLoad.asm)
541 $(VMMR3LazyImp_0_OUTDIR)/VMMR3LazyLoad.asm: $(VMMR3LazyImp_DEFPATH)/VMMR3/VMMR3.def $(VBOX_DEF_2_LAZY_LOAD) | $$(dir $$@)
542 $(call KB_FN_AUTO_CMD_DEPS_COMMANDS)
543 $(VBOX_DEF_2_LAZY_LOAD) --output $@ --library VBoxVMM $(VMMR3LazyImp_DEFPATH)/VMMR3/VMMR3.def
544endif
545
546
547if defined(VBOX_WITH_RAW_MODE) && !defined(VBOX_ONLY_EXTPACKS)
548 #
549 # VMMRC.rc
550 #
551 SYSMODS += VMMRC
552 VMMRC_TEMPLATE = VBoxRc
553 VMMRC_NAME = VMMRC
554
555 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 \
556 $(VMM_COMMON_DEFS)
557 VMMRC_DEFS := $(filter-out VBOX_WITH_NESTED_HWVIRT,$(VMMRC_DEFS))
558 ifdef VBOX_WITH_VMM_R0_SWITCH_STACK
559 VMMRC_DEFS += VMM_R0_SWITCH_STACK
560 endif
561
562 VMMRC_INCS = \
563 include \
564 VMMRC \
565 $(if-expr defined(VBOX_WITH_RAW_MODE),PATM,) \
566 $(VBoxVMM_0_OUTDIR)/CommonGenIncs
567
568 VMMRC_LIBS = \
569 $(PATH_STAGE_LIB)/DisasmRC$(VBOX_SUFF_LIB) \
570 $(PATH_STAGE_LIB)/RuntimeRC$(VBOX_SUFF_LIB) \
571 $(PATH_STAGE_LIB)/SUPRC$(VBOX_SUFF_LIB)
572 ifneq ($(filter pe lx,$(VBOX_LDR_FMT32)),)
573 VMMRC_LIBS += \
574 $(PATH_STAGE_LIB)/VMMRCBuiltin$(VBOX_SUFF_LIB)
575 endif
576
577 VMMRC_SOURCES = \
578 VBoxVMM.d \
579 VMMRC/VMMRC0.asm \
580 VMMRC/VMMRCDeps.cpp \
581 VMMRC/CPUMRC.cpp \
582 VMMRC/CPUMRCA.asm \
583 VMMRC/CPUMRCPatchHlp.asm \
584 VMMRC/EMRCA.asm \
585 VMMRC/IOMRC.cpp \
586 VMMRC/MMRamRC.cpp \
587 VMMRC/MMRamRCA.asm \
588 VMMRC/PDMRCDevice.cpp \
589 VMMRC/PGMRC.cpp \
590 VMMRC/SELMRC.cpp \
591 VMMRC/TRPMRC.cpp \
592 VMMRC/TRPMRCHandlers.cpp \
593 VMMRC/TRPMRCHandlersA.asm \
594 VMMRC/VMMRC.cpp \
595 VMMRC/VMMRCA.asm \
596 $(if-expr defined(VBOX_WITH_RAW_MODE), \
597 VMMRC/CSAMRC.cpp \
598 VMMRC/PATMRC.cpp \
599 ,) \
600 VMMRZ/CPUMRZ.cpp \
601 VMMRZ/CPUMRZA.asm \
602 VMMRZ/DBGFRZ.cpp \
603 VMMRZ/PGMRZDynMap.cpp \
604 VMMRZ/VMMRZ.cpp \
605 VMMAll/APICAll.cpp \
606 VMMAll/CPUMAllRegs.cpp \
607 VMMAll/CPUMAllMsrs.cpp \
608 VMMAll/DBGFAll.cpp \
609 VMMAll/IEMAll.cpp \
610 VMMAll/IEMAllAImpl.asm \
611 VMMAll/IEMAllAImplC.cpp \
612 VMMAll/IOMAll.cpp \
613 VMMAll/IOMAllMMIO.cpp \
614 VMMAll/EMAll.cpp \
615 VMMAll/EMAllA.asm \
616 VMMAll/FTMAll.cpp \
617 VMMAll/GIMAll.cpp \
618 VMMAll/GIMAllHv.cpp \
619 VMMAll/GIMAllKvm.cpp \
620 VMMAll/HMAll.cpp \
621 VMMAll/HMSVMAll.cpp \
622 VMMAll/MMAll.cpp \
623 VMMAll/MMAllHyper.cpp \
624 VMMAll/PDMAll.cpp \
625 VMMAll/PDMAllCritSect.cpp \
626 VMMAll/PDMAllCritSectRw.cpp \
627 VMMAll/PDMAllCritSectBoth.cpp \
628 VMMAll/PDMAllQueue.cpp \
629 VMMAll/PGMAll.cpp \
630 VMMAll/PGMAllHandler.cpp \
631 VMMAll/PGMAllMap.cpp \
632 VMMAll/PGMAllPhys.cpp \
633 VMMAll/PGMAllPool.cpp \
634 VMMAll/SELMAll.cpp \
635 VMMAll/TMAll.cpp \
636 VMMAll/TMAllCpu.cpp \
637 VMMAll/TMAllReal.cpp \
638 VMMAll/TMAllVirtual.cpp \
639 VMMAll/TRPMAll.cpp \
640 VMMAll/VMAll.cpp \
641 VMMAll/VMMAll.cpp \
642 VMMAll/VMMAllA.asm \
643 $(if-expr defined(VBOX_WITH_RAW_MODE), \
644 VMMAll/CSAMAll.cpp \
645 VMMAll/PATMAll.cpp \
646 ,)
647 ifeq ($(VBOX_LDR_FMT32),pe)
648 VMMRC_SOURCES += VMMRC/VMMRC.def
649 endif
650 ifeq ($(VBOX_LDR_FMT32),lx)
651 VMMRC_SOURCES += $(VMMRCImp_0_OUTDIR)/VMMRC.def
652 endif
653 ifdef VBOX_WITH_REM
654 VMMRC_SOURCES += \
655 VMMAll/REMAll.cpp
656 endif
657
658 # The very last one.
659 VMMRC_SOURCES += \
660 VMMRC/VMMRC99.asm
661
662 VMMRC/VMMRCDeps.cpp_CXXFLAGS.win = -Oi- -TC ## @todo rename VMMRCDeps.cpp to .c
663
664 $(call VBOX_SET_VER_INFO_RC,VMMRC,VirtualBox VMM - raw-mode context parts) # Version info / description.
665
666 if "$(USERNAME)" == "bird" && "$(KBUILD_TARGET)" == "win"
667 VMMRC_VMMAll/IEMAll.cpp_CXXFLAGS = /FAcs /Fa$(subst /,\\,$(outbase).cod)
668 VMMRC_VMMAll/IEMAllAImplC.cpp_CXXFLAGS = /FAcs /Fa$(subst /,\\,$(outbase).cod)
669 VMMRC_VMMAll/PGMAll.cpp_CXXFLAGS = /FAcs /Fa$(subst /,\\,$(outbase).cod)
670 endif
671
672 VMMRC_INTERMEDIATES += $(VBoxVMM_0_OUTDIR)/CommonGenIncs/IEMInstructionStatisticsTmpl.h
673
674 if "$(KBUILD_TARGET)" == "win"
675 # Debug type info hack for VMCPU, VM and similar. See VBoxVMM for details.
676 VMMRC_LIBS += $(VMMRCPdbTypeHack_1_TARGET)
677 VMMRC_LDFLAGS += /Export:PdbTypeHack
678
679 LIBRARIES += VMMRCPdbTypeHack
680 VMMRCPdbTypeHack_TEMPLATE = $(VMMRC_TEMPLATE)
681 VMMRCPdbTypeHack_SOURCES = VMMAll/AllPdbTypeHack.cpp
682 VMMRCPdbTypeHack_DEFS = $(VMMRC_DEFS)
683 VMMRCPdbTypeHack_DEFS.win = $(VMMRC_DEFS.win)
684 VMMRCPdbTypeHack_DEFS.win.x86 = $(VMMRC_DEFS.win.x86)
685 VMMRCPdbTypeHack_DEFS.win.amd64 = $(VMMRC_DEFS.win.amd64)
686 VMMRCPdbTypeHack_INCS = $(VMMRC_INCS)
687 VMMRCPdbTypeHack_INTERMEDIATES = $(VMMRC_INTERMEDIATES)
688 endif
689
690endif # VBOX_WITH_RAW_MODE && !VBOX_ONLY_EXTPACKS
691
692
693ifndef VBOX_ONLY_EXTPACKS
694 #
695 # VMMR0.r0
696 #
697 SYSMODS += VMMR0
698 VMMR0_TEMPLATE = VBoxR0
699 VMMR0_SYSSUFF = .r0
700
701 VMMR0_DEFS = IN_VMM_R0 IN_RT_R0 IN_DIS DIS_CORE_ONLY IN_GVMM_R0 IN_GMM_R0 IN_INTNET_R0 \
702 $(VMM_COMMON_DEFS) RTASSERT_HAVE_SHOULD_PANIC
703 ## @todo eliminate IN_GVMM_R0 IN_GMM_R0
704 ifdef VBOX_WITH_PCI_PASSTHROUGH
705 VMMR0_DEFS += IN_PCIRAW_R0
706 endif
707 ifdef VBOX_WITH_TRIPLE_FAULT_HACK
708 VMMR0_DEFS += VBOX_WITH_TRIPLE_FAULT_HACK
709 endif
710 ifdef VBOX_WITH_RAW_MODE
711 VMMR0_DEFS += VBOX_WITH_RAW_MODE
712 endif
713 ifdef VBOX_WITH_VMM_R0_SWITCH_STACK
714 VMMR0_DEFS += VMM_R0_SWITCH_STACK
715 endif
716 if1of ($(KBUILD_TARGET), darwin linux win)
717 VMMR0_DEFS += VMM_R0_TOUCH_FPU
718 endif
719 VMMR0_DEFS.darwin = VMM_R0_SWITCH_STACK
720 VMMR0_DEFS.win.amd64 = VBOX_WITH_KERNEL_USING_XMM
721
722 ifeq ($(VBOX_LDR_FMT),elf)
723 VMMR0_CXXFLAGS += -Wunused -Wunused-variable -Wno-unused-parameter
724 endif
725
726 VMMR0_INCS = \
727 include \
728 $(if-expr defined(VBOX_WITH_RAW_MODE),PATM,) \
729 $(VBoxVMM_0_OUTDIR)/CommonGenIncs
730
731 VMMR0_SOURCES = \
732 VBoxVMM.d \
733 VMMR0/CPUMR0.cpp \
734 VMMR0/CPUMR0A.asm \
735 VMMR0/GIMR0.cpp \
736 VMMR0/GIMR0Hv.cpp \
737 VMMR0/GIMR0Kvm.cpp \
738 VMMR0/GMMR0.cpp \
739 VMMR0/GVMMR0.cpp \
740 VMMR0/HMR0.cpp \
741 VMMR0/HMR0A.asm \
742 VMMR0/HMVMXR0.cpp \
743 VMMR0/HMSVMR0.cpp \
744 VMMR0/PDMR0Device.cpp \
745 VMMR0/PDMR0Driver.cpp \
746 VMMR0/PGMR0.cpp \
747 VMMR0/PGMR0SharedPage.cpp \
748 VMMR0/TRPMR0.cpp \
749 VMMR0/TRPMR0A.asm \
750 VMMR0/VMMR0.cpp \
751 VMMRZ/CPUMRZ.cpp \
752 VMMRZ/CPUMRZA.asm \
753 VMMRZ/DBGFRZ.cpp \
754 VMMRZ/VMMRZ.cpp \
755 VMMAll/APICAll.cpp \
756 VMMAll/CPUMAllRegs.cpp \
757 VMMAll/CPUMAllMsrs.cpp \
758 VMMAll/CPUMStack.cpp \
759 VMMAll/DBGFAll.cpp \
760 VMMAll/EMAll.cpp \
761 VMMAll/EMAllA.asm \
762 VMMAll/FTMAll.cpp \
763 VMMAll/GIMAll.cpp \
764 VMMAll/GIMAllHv.cpp \
765 VMMAll/GIMAllKvm.cpp \
766 VMMAll/HMAll.cpp \
767 VMMAll/HMSVMAll.cpp \
768 VMMAll/IEMAll.cpp \
769 VMMAll/IEMAllAImpl.asm \
770 VMMAll/IEMAllAImplC.cpp \
771 VMMAll/IOMAll.cpp \
772 VMMAll/IOMAllMMIO.cpp \
773 VMMAll/MMAll.cpp \
774 VMMAll/MMAllHyper.cpp \
775 VMMAll/MMAllPagePool.cpp \
776 VMMAll/PDMAll.cpp \
777 VMMAll/PDMAllCritSect.cpp \
778 VMMAll/PDMAllCritSectRw.cpp \
779 VMMAll/PDMAllCritSectBoth.cpp \
780 VMMAll/PDMAllQueue.cpp \
781 VMMAll/PGMAll.cpp \
782 VMMAll/PGMAllHandler.cpp \
783 VMMAll/PGMAllMap.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 ifdef VBOX_WITH_REM
808 VMMR0_SOURCES += \
809 VMMAll/REMAll.cpp
810 endif
811 VMMR0_SOURCES.amd64 = \
812 VMMR0/VMMR0JmpA-amd64.asm
813 VMMR0_SOURCES.x86 = \
814 VMMR0/VMMR0JmpA-x86.asm
815
816 VMMR0_LIBS = \
817 $(PATH_STAGE_LIB)/ServicesR0$(VBOX_SUFF_LIB) \
818 $(PATH_STAGE_LIB)/RuntimeR0$(VBOX_SUFF_LIB) \
819 $(PATH_STAGE_LIB)/DisasmR0$(VBOX_SUFF_LIB)
820 ifneq ($(filter pe lx,$(VBOX_LDR_FMT)),)
821 VMMR0_LIBS += \
822 $(PATH_STAGE_LIB)/SUPR0$(VBOX_SUFF_LIB)
823 endif
824
825 $(call VBOX_SET_VER_INFO_R0,VMMR0,VirtualBox VMM - ring-0 context parts) # Version info / description.
826
827 if "$(USERNAME)" == "bird" && "$(KBUILD_TARGET)" == "win"
828 VMMR0_VMMAll/IEMAll.cpp_CXXFLAGS = /FAcs /Fa$(subst /,\\,$(outbase).cod)
829 VMMR0_VMMAll/IEMAllAImplC.cpp_CXXFLAGS = /FAcs /Fa$(subst /,\\,$(outbase).cod)
830 VMMR0_VMMAll/PGMAll.cpp_CXXFLAGS = /FAcs /Fa$(subst /,\\,$(outbase).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
851endif # !VBOX_ONLY_EXTPACKS
852
853
854
855ifndef VBOX_ONLY_EXTPACKS
856 #
857 # SSMStandalone.lib/a for linking with VBoxSVC and other executables.
858 #
859 LIBRARIES += SSMStandalone
860 SSMStandalone_TEMPLATE = VBOXR3EXE
861 SSMStandalone_DEFS = IN_VMM_R3 IN_VMM_STATIC SSM_STANDALONE CPUM_DB_STANDALONE
862 SSMStandalone_INCS = include
863 SSMStandalone_SOURCES = \
864 VMMR3/SSM.cpp \
865 VMMR3/CPUMR3Db.cpp
866endif # !VBOX_ONLY_EXTPACKS
867
868
869if !defined(VBOX_ONLY_EXTPACKS) \
870 && ( defined(VBOX_WITH_DTRACE_R3) \
871 || defined(VBOX_WITH_DTRACE_R0) \
872 || defined(VBOX_WITH_DTRACE_RC))
873 #
874 # Install the dtrace library files.
875 #
876 INSTALLS += VMMLibDTrace
877 VMMLibDTrace_INST = $(VBOX_INST_DTRACE_LIB)$(KBUILD_TARGET_ARCH)/
878 VMMLibDTrace_SOURCES = \
879 dtrace/lib/vbox-types.d \
880 dtrace/lib/$(KBUILD_TARGET_ARCH)/vbox-arch-types.d \
881 $(VMMLibDTrace_0_OUTDIR)/vm.d \
882 $(VMMLibDTrace_0_OUTDIR)/cpumctx.d \
883 $(VMMLibDTrace_0_OUTDIR)/cpum.d \
884 $(VMMLibDTrace_0_OUTDIR)/CPUMInternal.d \
885 $(VMMLibDTrace_0_OUTDIR)/x86.d
886 $(call KB_FN_DO_PASS0_ON_TARGET,VMMLibDTrace)
887
888
889 ##
890 # Turn the header $2 into the DTrace library script $1.
891 #
892 define def_vmm_lib_dtrace_preprocess
893 $$(call KB_FN_AUTO_CMD_DEPS,$$(VMMLibDTrace_0_OUTDIR)/$1)
894 $$(VMMLibDTrace_0_OUTDIR)/$1: $2 $$(VBOX_VBOXCPP) | $$$$(dir $$$$@)
895 $$(call KB_FN_AUTO_CMD_DEPS_COMMANDS)
896 $$(QUIET)$$(call MSG_GENERATE,VMMLibDTrace,$$@,$2)
897 $$(QUIET)$(VBOX_VBOXCPP) -d \
898 -D VBOX_FOR_DTRACE_LIB \
899 -D VBOX_FOR_DTRACE_LIB_$(toupper $(KBUILD_TARGET_ARCH)) \
900 -D IN_RING0 \
901 -D RT_C_DECLS_BEGIN= \
902 -D RT_C_DECLS_END= \
903 -D 'RCPTRTYPE(a_Type)=RTRCPTR' \
904 -D 'R3PTRTYPE(a_Type)=RTR3PTR' \
905 -D 'R0PTRTYPE(a_Type)=a_Type' \
906 -D 'AssertCompile(a_Expr)=' \
907 -D 'AssertCompileSize(a_Stuct, a_Size)=' \
908 -D 'bool=uint8_t' \
909 $$(foreach def,\
910 $$(DEFS) \
911 $$(DEFS.$$(KBUILD_TARGET)) \
912 $$(DEFS.$(KBUILD_TARGET_ARCH)) \
913 $$(VMM_COMMON_DEFS) \
914 $$(ARCH_BITS_DEFS)\
915 ,-D '$$(def)') \
916 $2 \
917 $$@
918 $$(QUIET)$$(CHMOD) 644 $$@
919 endef
920 $(evalcall2 def_vmm_lib_dtrace_preprocess,vm.d,$(PATH_ROOT)/include/VBox/vmm/vm.h)
921 $(evalcall2 def_vmm_lib_dtrace_preprocess,cpumctx.d,$(PATH_ROOT)/include/VBox/vmm/cpumctx.h)
922 $(evalcall2 def_vmm_lib_dtrace_preprocess,cpum.d,$(PATH_ROOT)/include/VBox/vmm/cpum.h)
923 $(evalcall2 def_vmm_lib_dtrace_preprocess,CPUMInternal.d,$(PATH_SUB_CURRENT)/include/CPUMInternal.h)
924 $(evalcall2 def_vmm_lib_dtrace_preprocess,x86.d,$(PATH_ROOT)/include/iprt/x86.h)
925
926endif
927
928
929
930#
931# For vmmGetSvnRev.
932#
933VMMAll/VMMAll.cpp_DEFS = VBOX_SVN_REV=$(VBOX_SVN_REV)
934
935#
936# Disable annoying warnings about array subscript above array bounds in aPages[]
937#
938ifneq ($(KBUILD_TARGET),win)
939 VMMR3/PGMPool.cpp_CXXFLAGS = $(VBOX_GCC_Wno-array_bounds)
940 VMMAll/PGMAllPool.cpp_CXXFLAGS = $(VBOX_GCC_Wno-array_bounds)
941 VMMAll/PGMAll.cpp_CXXFLAGS = -Wno-unused-function
942 VMMAll/IEMAll.cpp_CXXFLAGS = -Wno-unused-function
943 VMMR0/GMMR0.cpp_CXXFLAGS = -Wno-unused-value
944endif
945
946#
947# Always optimize the interpreter.
948#
949if $(USERNAME) != "bird" || "$(KBUILD_TYPE)" == "release" #|| "$(KBUILD_TARGET).$(KBUILD_TARGET_ARCH)" == "win.amd64"
950 if1of ($(KBUILD_TARGET), win)
951 # -noover is recognized despite the statement saying otherwise. It silences these warnings:
952 # cl : Command line warning D9025 : overriding '/Od' with '/O2'
953 # cl : Command line warning D9025 : overriding '/Oy-' with '/Oy'
954 VMMAll/IEMAll.cpp_CXXFLAGS += -noover -O2xy
955 else
956 VMMAll/IEMAll.cpp_CXXFLAGS += -O2
957 #VMMAll/IEMAll.cpp_CXXFLAGS += -fno-align-functions -fno-align-jumps -fno-align-loops # Saves a few of percents, not worth it.
958 #VMMAll/IEMAll.cpp_CXXFLAGS += -fno-reorder-blocks # Saves one or two percent ... never mind.
959 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?)
960 endif
961endif # bird wants good stacks
962
963
964# Alias the CPU database entries.
965$(foreach base,$(notdir $(basename $(wildcard $(PATH_SUB_CURRENT)/VMMR3/cpus/*.h))), $(eval $(base).o $(base).obj: CPUMR3Db.o))
966
967
968#
969# Process python source(s).
970#
971BLDDIRS += $(PATH_TARGET)/pylint
972
973define def_vbox_vmm_py_check
974$(eval name:=$(basename $(notdir $(py))))
975
976pylint:: $(name)-py-phony.o
977$(name).o: $(name)-py-phony.o
978$(PATH_TARGET)/pylint/$(name).o $(name)-py-phony.o:: $(py) | $(PATH_TARGET)/pylint/
979ifdef VBOX_WITH_PYLINT
980 $(QUIET2)$(call MSG_L1,Subjecting $(py) to pylint...)
981 $(QUIET)$(REDIRECT) -C "$(dir $(py))" -E LC_ALL=C -- \
982 $(VBOX_PYLINT) --rcfile=$(PATH_TARGET)/no-such-pylintrc \
983 $$(VBOX_PYLINT_FLAGS) $$($(py)_VBOX_PYLINT_FLAGS) ./$(notdir $(py))
984endif
985 $(QUIET)$(APPEND) -t "$(PATH_TARGET)/pylint/$(name).o"
986
987TESTING += $(name)-py-phony.o
988endef # def_vbox_vmm_py_check
989
990$(foreach py, $(addprefix $(PATH_SUB_CURRENT)/VMMAll/, IEMAllInstructionsPython.py ) , $(eval $(def_vbox_vmm_py_check)))
991
992
993#
994# Test for undefined symbols.
995#
996if1of ($(SYSMODS),VMMRC)
997 test-undef-rc:: $(PATH_TARGET)/undef-rc.run
998 OTHERS += $(PATH_TARGET)/undef-rc.run
999 CLEANS += $(PATH_TARGET)/undef-rc.run
1000 $(call KB_FN_AUTO_CMD_DEPS,$(PATH_TARGET)/undef-rc.run)
1001 $(PATH_TARGET)/undef-rc.run: $$(VMMRC_1_TARGET)
1002 $(call KB_FN_AUTO_CMD_DEPS_COMMANDS)
1003 ifn1of ($(KBUILD_TARGET), linux solaris)
1004 else
1005 $(call MSG_L1,VMM: Testing for undefined symbols in VMMRC using nm...)
1006 $(QUIET)$(VBOX_NM) $^ 2> /dev/null \
1007 | $(SED) -n \
1008 -e '/^ *U .*/!d' \
1009 -e 's/ *U //' \
1010 \
1011 -e '/^g_VM\>/d'\
1012 -e '/^g_CPUM\>/d'\
1013 -e '/^g_Logger\>/d'\
1014 -e '/^g_RelLogger\>/d'\
1015 -e '/^g_TRPM\>/d'\
1016 -e '/^g_TRPMCPU\>/d'\
1017 -e '/^g_pSUPGlobalInfoPage\>/d'\
1018 -e '/^g_trpmHyperCtxCore\>/d' \
1019 -e '/^g_trpmGuestCtxCore\>/d' \
1020 \
1021 -e 's/\(.*\)$(DOLLAR)/ Undefined symbol: \1/' \
1022 -e 'p' \
1023 -e 'q 1'
1024 endif
1025 $(QUIET)$(APPEND) -t $@
1026endif
1027
1028include $(FILE_KBUILD_SUB_FOOTER)
1029
1030
1031# Alias the PGM templates to the object in which they are defined.
1032PGMInternal.o \
1033PGMBth.o PGMGst.o PGMShw.o \
1034PGMBth.obj PGMGst.obj PGMShw.obj: PGM.o
1035
1036PGMAllBth.o PGMAllGst.o PGMAllShw.o \
1037PGMAllBth.obj PGMAllGst.obj PGMAllShw.obj: PGMAll.o
1038
1039PGMRCBth.o PGMRCGst.o PGMRCShw.o \
1040PGMRCBth.obj PGMRCGst.obj PGMRCShw.obj: PGMRC.o
1041
1042PGMPhysRWTmpl.o PGMPhysRWTmpl.obj: PGMPhys.o
1043
1044PGMInline.o PGMInline.obj: PGMDbg.o
1045
1046# Alias the IEM templates to the object in which they are instantiated.
1047IEMInternal.o \
1048IEMAllInstructions.cpp.o IEMAllInstructions.cpp.obj \
1049IEMAllInstructionsOneByte.cpp.o IEMAllInstructionsOneByte.cpp.obj \
1050IEMAllInstructionsTwoByte0f.cpp.o IEMAllInstructionsTwoByte0f.cpp.obj \
1051IEMAllInstructionsThree0f38.cpp.o IEMAllInstructionsThree0f38.cpp.obj \
1052IEMAllInstructionsThree0f3a.cpp.o IEMAllInstructionsThree0f3a.cpp.obj \
1053IEMAllInstructionsVexMap1.cpp.o IEMAllInstructionsVexMap1.cpp.obj \
1054IEMAllInstructionsVexMap2.cpp.o IEMAllInstructionsVexMap2.cpp.obj \
1055IEMAllInstructionsVexMap3.cpp.o IEMAllInstructionsVexMap3.cpp.obj \
1056IEMAllInstructions3DNow.cpp.o IEMAllInstructions3DNow.cpp.obj \
1057IEMAllCImpl.cpp.o IEMAllCImpl.cpp.obj \
1058IEMAllCImplStrInstr.cpp.o IEMAllCImplStrInstr.cpp.obj: IEMAll.o
1059
1060# Alias the switcher templates.
1061PAEand32Bit.o PAEand32Bit.obj: PAETo32Bit.o PAEToPAE.o 32BitTo32Bit.o PAETo32Bit.o
1062LegacyandAMD64.o LegacyandAMD64.obj: 32BitToAMD64.o PAEToAMD64.o
1063AMD64andLegacy.o AMD64andLegacy.obj: AMD64To32Bit.o AMD64ToPAE.o
1064
注意: 瀏覽 TracBrowser 來幫助您使用儲存庫瀏覽器

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