VirtualBox

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

Last change on this file since 81278 was 81197, checked in by vboxsync, 5 years ago

IOM: More MMIO code. bugref:9218

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 24.4 KB
Line 
1# $Id: Makefile.kmk 81197 2019-10-09 20:36:46Z vboxsync $
2## @file
3# Top-level makefile for the VMM.
4#
5
6#
7# Copyright (C) 2006-2019 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 our Config.kmk if kmk is invoked from a parent directory.
22ifndef VBOX_VMM_CONFIG_KMK_INCLUDED
23 include $(PATH_SUB_CURRENT)/Config.kmk
24endif
25
26# Include sub-makefiles.
27ifndef VBOX_ONLY_EXTPACKS
28 include $(PATH_SUB_CURRENT)/tools/Makefile.kmk
29 include $(PATH_SUB_CURRENT)/testcase/Makefile.kmk
30endif
31
32
33# Fail on unsupported hosts.
34ifeq ($(KBUILD_TARGET_ARCH),x86)
35 ifeq ($(KBUILD_TARGET),darwin)
36$(error 32-bit darwin is no longer a supported VirtualBox host. Go back to 4.3 or older for 32-bit host support.)
37 else ifeq ($(KBUILD_TARGET),solaris)
38$(error 32-bit solaris is no longer a supported VirtualBox host. Go back to 4.2 or older for 32-bit host support.)
39 else ifn1of ($(KBUILD_TARGET_ARCH), $(VBOX_SUPPORTED_HOST_ARCHS))
40$(error 32-bit builds of the VirtualBox host are no longer supported. Go back to 6.0 or older for 32-bit host support.)
41 endif
42endif
43
44
45#
46# The VMM DLL.
47#
48ifndef VBOX_ONLY_EXTPACKS_USE_IMPLIBS
49 DLLS += VBoxVMM
50endif
51VBoxVMM_TEMPLATE = VBoxR3DllNoPic
52VBoxVMM_SONAME.linux = VBoxVMM.so
53
54VBoxVMM_DEFS = VBOX_IN_VMM IN_VMM_R3 IN_DIS IN_GMM_R3 IN_DBG $(VMM_COMMON_DEFS)
55## @todo eliminate IN_GMM_R3
56ifdef VBOX_WITH_PREALLOC_RAM_BY_DEFAULT
57VBoxVMM_DEFS += VBOX_WITH_PREALLOC_RAM_BY_DEFAULT
58endif
59ifdef VBOX_WITH_VUSB
60VBoxVMM_DEFS += VBOX_WITH_USB
61endif
62ifdef VBOX_WITH_PDM_ASYNC_COMPLETION
63VBoxVMM_DEFS += VBOX_WITH_PDM_ASYNC_COMPLETION
64endif
65ifdef VBOX_WITH_NETSHAPER
66VBoxVMM_DEFS += VBOX_WITH_NETSHAPER
67endif
68ifdef VBOX_WITH_RAW_MODE
69VBoxVMM_DEFS += VBOX_WITH_RAW_MODE VBOX_WITH_RAW_MODE_NOT_R0
70endif
71ifdef VBOX_WITH_VMM_R0_SWITCH_STACK
72VBoxVMM_DEFS += VMM_R0_SWITCH_STACK
73endif
74if "$(KBUILD_TYPE)" == "debug" && "$(USERNAME)" == "bird"
75VBoxVMM_DEFS += RTMEM_WRAP_TO_EF_APIS
76endif
77VBoxVMM_DEFS.darwin = VMM_R0_SWITCH_STACK
78
79VBoxVMM_INCS = \
80 include \
81 $(if-expr defined(VBOX_WITH_RAW_MODE),PATM,) \
82 $(VBoxVMM_0_OUTDIR)/CommonGenIncs
83VBoxVMM_ASINCS = .
84
85VBoxVMM_SOURCES = \
86 VBoxVMM.d \
87 VMMR3/APIC.cpp \
88 VMMR3/CFGM.cpp \
89 VMMR3/CPUM.cpp \
90 VMMR3/CPUMR3CpuId.cpp \
91 VMMR3/CPUMR3Db.cpp \
92 VMMR3/CPUMDbg.cpp \
93 VMMR3/DBGF.cpp \
94 VMMR3/DBGFAddr.cpp \
95 VMMR3/DBGFAddrSpace.cpp \
96 VMMR3/DBGFBp.cpp \
97 VMMR3/DBGFR3BugCheck.cpp \
98 VMMR3/DBGFCoreWrite.cpp \
99 VMMR3/DBGFCpu.cpp \
100 VMMR3/DBGFDisas.cpp \
101 VMMR3/DBGFInfo.cpp \
102 VMMR3/DBGFLog.cpp \
103 VMMR3/DBGFMem.cpp \
104 VMMR3/DBGFR3ModInMem.cpp \
105 VMMR3/DBGFOS.cpp \
106 VMMR3/DBGFR3PlugIn.cpp \
107 VMMR3/DBGFReg.cpp \
108 VMMR3/DBGFStack.cpp \
109 VMMR3/DBGFR3Flow.cpp \
110 VMMR3/DBGFR3Trace.cpp \
111 VMMR3/DBGFR3Type.cpp \
112 VMMR3/EM.cpp \
113 VMMR3/EMR3Dbg.cpp \
114 VMMR3/EMHM.cpp \
115 VMMR3/EMR3Nem.cpp \
116 VMMR3/GIM.cpp \
117 VMMR3/GIMHv.cpp \
118 VMMR3/GIMKvm.cpp \
119 VMMR3/GIMMinimal.cpp \
120 VMMR3/IEMR3.cpp \
121 VMMR3/IOM.cpp \
122 VMMR3/IOMR3IoPort.cpp \
123 VMMR3/IOMR3Mmio.cpp \
124 VMMR3/GMM.cpp \
125 VMMR3/MM.cpp \
126 VMMR3/MMHeap.cpp \
127 VMMR3/MMHyper.cpp \
128 VMMR3/MMPagePool.cpp \
129 VMMR3/MMUkHeap.cpp \
130 VMMR3/NEMR3.cpp \
131 VMMR3/PDM.cpp \
132 VMMR3/PDMBlkCache.cpp \
133 VMMR3/PDMDevice.cpp \
134 VMMR3/PDMDevHlp.cpp \
135 VMMR3/PDMDevMiscHlp.cpp \
136 VMMR3/PDMDriver.cpp \
137 VMMR3/PDMLdr.cpp \
138 VMMR3/PDMCritSect.cpp \
139 VMMR3/PDMQueue.cpp \
140 VMMR3/PDMThread.cpp \
141 VMMR3/PGM.cpp \
142 VMMR3/PGMDbg.cpp \
143 VMMR3/PGMR3DbgA.asm \
144 VMMR3/PGMHandler.cpp \
145 VMMR3/PGMMap.cpp \
146 VMMR3/PGMPhys.cpp \
147 VMMR3/PGMPool.cpp \
148 VMMR3/PGMSavedState.cpp \
149 VMMR3/PGMSharedPage.cpp \
150 VMMR3/SELM.cpp \
151 VMMR3/SSM.cpp \
152 VMMR3/STAM.cpp \
153 VMMR3/TM.cpp \
154 VMMR3/TRPM.cpp \
155 VMMR3/VM.cpp \
156 VMMR3/VMEmt.cpp \
157 VMMR3/VMReq.cpp \
158 VMMR3/VMM.cpp \
159 VMMR3/VMMGuruMeditation.cpp \
160 VMMR3/VMMTests.cpp \
161 VMMR3/HM.cpp \
162 $(if-expr defined(VBOX_WITH_RAW_MODE), \
163 VMMR3/CSAM.cpp \
164 VMMR3/PATM.cpp \
165 VMMR3/PATMPatch.cpp \
166 VMMR3/PATMGuest.cpp \
167 VMMR3/PATMA.asm \
168 VMMR3/PATMSSM.cpp \
169 VMMR3/PATMR3Dbg.cpp \
170 ,) \
171 VMMAll/APICAll.cpp \
172 VMMAll/CPUMAllRegs.cpp \
173 VMMAll/CPUMAllMsrs.cpp \
174 VMMAll/DBGFAll.cpp \
175 VMMAll/HMAll.cpp \
176 VMMAll/HMSVMAll.cpp \
177 VMMAll/HMVMXAll.cpp \
178 VMMAll/IEMAll.cpp \
179 VMMAll/IEMAllAImpl.asm \
180 VMMAll/IEMAllAImplC.cpp \
181 VMMAll/IOMAll.cpp \
182 VMMAll/IOMAllMMIO.cpp \
183 VMMAll/MMAll.cpp \
184 VMMAll/MMAllHyper.cpp \
185 VMMAll/MMAllPagePool.cpp \
186 VMMAll/NEMAll.cpp \
187 VMMAll/PDMAll.cpp \
188 VMMAll/PDMAllCritSect.cpp \
189 VMMAll/PDMAllCritSectRw.cpp \
190 VMMAll/PDMAllCritSectBoth.cpp \
191 VMMAll/PDMAllQueue.cpp \
192 VMMAll/PGMAll.cpp \
193 VMMAll/PGMAllHandler.cpp \
194 VMMAll/PGMAllMap.cpp \
195 VMMAll/PGMAllPhys.cpp \
196 VMMAll/PGMAllPool.cpp \
197 VMMAll/SELMAll.cpp \
198 VMMAll/EMAll.cpp \
199 VMMAll/GIMAll.cpp \
200 VMMAll/GIMAllHv.cpp \
201 VMMAll/GIMAllKvm.cpp \
202 VMMAll/TMAll.cpp \
203 VMMAll/TMAllCpu.cpp \
204 VMMAll/TMAllReal.cpp \
205 VMMAll/TMAllVirtual.cpp \
206 VMMAll/TRPMAll.cpp \
207 VMMAll/VMAll.cpp \
208 VMMAll/VMMAll.cpp \
209 VMMAll/VMMAllA.asm \
210 $(if-expr defined(VBOX_WITH_RAW_MODE), \
211 VMMAll/CSAMAll.cpp \
212 VMMAll/PATMAll.cpp \
213 ,)
214ifdef VBOX_WITH_VUSB
215VBoxVMM_SOURCES += VMMR3/PDMUsb.cpp
216endif
217ifdef VBOX_WITH_PDM_ASYNC_COMPLETION
218VBoxVMM_SOURCES += \
219 VMMR3/PDMAsyncCompletion.cpp \
220 VMMR3/PDMAsyncCompletionFile.cpp \
221 VMMR3/PDMAsyncCompletionFileFailsafe.cpp \
222 VMMR3/PDMAsyncCompletionFileNormal.cpp
223endif
224ifdef VBOX_WITH_NETSHAPER
225VBoxVMM_SOURCES += \
226 VMMR3/PDMNetShaper.cpp \
227 VMMAll/PDMAllNetShaper.cpp
228endif
229
230ifdef VBOX_WITH_NATIVE_NEM
231VBoxVMM_SOURCES.win.amd64 += VMMR3/NEMR3Native-win.cpp
232VBoxVMM_DEFS.win.amd64 += VBOX_WITH_NATIVE_NEM
233VBoxVMM_SDKS.win += VBOX_NTDLL
234VMMR3/NEMR3Native-win.cpp_DEFS.amd64 = _AMD64_
235VMMR3/NEMR3Native-win.cpp_INCS = \
236 $(KBUILD_DEVTOOLS)/win.x86/sdk/v10.0.17134.0/include/10.0.17134.0/um \
237 $(KBUILD_DEVTOOLS)/win.x86/sdk/v10.0.17134.0/include/10.0.17134.0/shared
238endif
239
240VBoxVMM_LIBS = \
241 $(PATH_STAGE_LIB)/DisasmR3$(VBOX_SUFF_LIB)
242ifdef VBOX_WITH_DEBUGGER
243VBoxVMM_LIBS += \
244 $(PATH_STAGE_LIB)/Debugger$(VBOX_SUFF_LIB)
245endif
246VBoxVMM_LIBS += \
247 $(LIB_REM) \
248 $(LIB_RUNTIME)
249
250VBoxVMM_LIBS.win = $(PATH_TOOL_$(VBOX_VCC_TOOL)_LIB)/delayimp.lib
251VBoxVMM_LDFLAGS.linux = $(VBOX_GCC_NO_UNDEFINED)
252VBoxVMM_LDFLAGS.darwin = -install_name $(VBOX_DYLD_EXECUTABLE_PATH)/VBoxVMM.dylib
253VBoxVMM_LDFLAGS.solaris = -mimpure-text
254
255# SSM wish to know the build type, host os and arch.
256VMMR3/SSM.cpp_DEFS += \
257 KBUILD_TYPE=\"$(KBUILD_TYPE)\" \
258 KBUILD_TARGET=\"$(KBUILD_TARGET)\" \
259 KBUILD_TARGET_ARCH=\"$(KBUILD_TARGET_ARCH)\"
260
261ifdef VBOX_WITH_GCC_SANITIZER
262VMMR3/PGMPool.cpp_CXXFLAGS.linux += -fno-sanitize=address
263endif
264
265#ifdef VBOX_WITH_PDM_ASYNC_COMPLETION
266# ifeq ($(KBUILD_HOST), linux)
267#VBoxVMM_LIBS += aio
268# endif
269#endif
270
271if "$(USERNAME)" == "bird" && "$(KBUILD_TARGET)" == "win"
272VBoxVMM_VMMAll/IEMAll.cpp_CXXFLAGS = /FAcs /Fa$(subst /,\\,$(outbase).cod)
273VBoxVMM_VMMAll/IEMAllAImplC.cpp_CXXFLAGS = /FAcs /Fa$(subst /,\\,$(outbase).cod)
274VBoxVMM_VMMAll/PGMAll.cpp_CXXFLAGS = /FAcs /Fa$(subst /,\\,$(outbase).cod)
275VBoxVMM_VMMAll/PDMAllCritSect.cpp_CXXFLAGS = /FAcs /Fa$(subst /,\\,$(outbase).cod)
276endif
277
278$(call VBOX_SET_VER_INFO_DLL,VBoxVMM,VirtualBox VMM) # Version info / description.
279
280
281#
282# Generate macro template for IEM instruction statistics.
283#
284$(call KB_FN_DO_PASS0_ON_TARGET,VBoxVMM) # Set VBoxVMM_0_OUTDIR
285VBoxVMM_INTERMEDIATES += $(VBoxVMM_0_OUTDIR)/CommonGenIncs/IEMInstructionStatisticsTmpl.h
286VBoxVMM_CLEAN += \
287 $(VBoxVMM_0_OUTDIR)/CommonGenIncs/IEMInstructionStatisticsTmpl.h.ts \
288 $(VBoxVMM_0_OUTDIR)/CommonGenIncs/IEMInstructionStatisticsTmpl.h
289$(call KB_FN_AUTO_CMD_DEPS,$(VBoxVMM_0_OUTDIR)/CommonGenIncs/IEMInstructionStatisticsTmpl.h.ts)
290$(VBoxVMM_0_OUTDIR)/CommonGenIncs/IEMInstructionStatisticsTmpl.h.ts \
291+| $(VBoxVMM_0_OUTDIR)/CommonGenIncs/IEMInstructionStatisticsTmpl.h: \
292 $(PATH_SUB_CURRENT)/VMMAll/IEMAllInstructions.cpp.h \
293 $(PATH_SUB_CURRENT)/VMMAll/IEMAllInstructionsOneByte.cpp.h \
294 $(PATH_SUB_CURRENT)/VMMAll/IEMAllInstructionsTwoByte0f.cpp.h \
295 $(PATH_SUB_CURRENT)/VMMAll/IEMAllInstructionsThree0f38.cpp.h \
296 $(PATH_SUB_CURRENT)/VMMAll/IEMAllInstructionsThree0f3a.cpp.h \
297 $(PATH_SUB_CURRENT)/VMMAll/IEMAllInstructionsVexMap1.cpp.h \
298 $(PATH_SUB_CURRENT)/VMMAll/IEMAllInstructionsVexMap2.cpp.h \
299 $(PATH_SUB_CURRENT)/VMMAll/IEMAllInstructionsVexMap3.cpp.h \
300 $(PATH_SUB_CURRENT)/VMMAll/IEMAllInstructions3DNow.cpp.h
301 $(QUIET)$(call MSG_GENERATE,VBoxVMM,$@,VMMAll/IEMAllInstructions*.cpp.h)
302 $(QUIET)$(RM) -f -- "[email protected]" "[email protected]" "[email protected]"
303 $(QUIET)$(MKDIR) -p -- "$(dir $@)"
304 $(call KB_FN_AUTO_CMD_DEPS_COMMANDS)
305 $(QUIET)$(SED) \
306 -e '/IEMOP_MNEMONIC\(\|[01234]\|[01234]EX\)(/!d' \
307 -e ':look-for-end-of-invocation' \
308 -e '/)/bend-of-invocation' \
309 -e 'N' \
310 -e 'blook-for-end-of-invocation' \
311 -e ':end-of-invocation' \
312 -e 's/\n/ /g' \
313 -e 's/ */ /g' \
314 -e 's/^.*IEMOP_MNEMONIC\(\|[01234]\|[01234]EX\)(/IEM_DO_INSTR_STAT\1(/' \
315 -e 's/;.*$(DOLLAR)//' \
316 --output "[email protected]" $(filter %.cpp.h,$^)
317# Windows sort does some kind of seeking. So, we must use a temporary file and kmk_cat to define and undefine our macros.
318 $(QUIET)$(REDIRECT) -wto "[email protected]" -- sort "[email protected]"
319 $(QUIET)$(APPEND) -nt "$@" \
320 '/* Warning autogenerated by VMM/Makefile.kmk. */ ' \
321 '#define IEM_DO_INSTR_STAT0(f,u,l,fd,fi) IEM_DO_INSTR_STAT(l, #l)' \
322 '#define IEM_DO_INSTR_STAT1(f,u,l,o1,fd,fi) IEM_DO_INSTR_STAT(l ## _ ## o1, #l " " #o1)' \
323 '#define IEM_DO_INSTR_STAT2(f,u,l,o1,o2,fd,fi) IEM_DO_INSTR_STAT(l ## _ ## o1 ## _ ## o2, #l " " #o1 "," #o2)' \
324 '#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)' \
325 '#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)' \
326 '#define IEM_DO_INSTR_STAT0EX(s,m,f,u,l,fd,fi) IEM_DO_INSTR_STAT(s,m)' \
327 '#define IEM_DO_INSTR_STAT1EX(s,m,f,u,l,o1,fd,fi) IEM_DO_INSTR_STAT(s,m)' \
328 '#define IEM_DO_INSTR_STAT2EX(s,m,f,u,l,o1,o2,fd,fi) IEM_DO_INSTR_STAT(s,m)' \
329 '#define IEM_DO_INSTR_STAT3EX(s,m,f,u,l,o1,o2,o3,fd,fi) IEM_DO_INSTR_STAT(s,m)' \
330 '#define IEM_DO_INSTR_STAT4EX(s,m,f,u,l,o1,o2,o3,o4,fd,fi) IEM_DO_INSTR_STAT(s,m)' \
331 ''
332 $(QUIET)$(REDIRECT) -ato "$@" -- $(CAT_EXT) "[email protected]"
333 $(QUIET)$(APPEND) -n "$@" \
334 '' \
335 '#undef IEM_DO_INSTR_STAT0' \
336 '#undef IEM_DO_INSTR_STAT1' \
337 '#undef IEM_DO_INSTR_STAT2' \
338 '#undef IEM_DO_INSTR_STAT3' \
339 '#undef IEM_DO_INSTR_STAT4' \
340 '#undef IEM_DO_INSTR_STAT0EX' \
341 '#undef IEM_DO_INSTR_STAT1EX' \
342 '#undef IEM_DO_INSTR_STAT2EX' \
343 '#undef IEM_DO_INSTR_STAT3EX' \
344 '#undef IEM_DO_INSTR_STAT4EX' \
345 ''
346 $(QUIET)$(RM) -f -- "[email protected]" "[email protected]"
347 $(QUIET)$(CP) -v -f --changed -- "$@" "$(patsubst %.ts,%,$@)"
348
349foobar: $(VBoxVMM_0_OUTDIR)/CommonGenIncs/IEMInstructionStatisticsTmpl.h
350
351if "$(KBUILD_TARGET)" == "win" && !defined(VBOX_ONLY_EXTPACKS_USE_IMPLIBS)
352#
353# Debug type info hack for VMCPU, VM and similar.
354#
355# The microsoft linker seems to be using the last occurence of the structures
356# when writing the module PDB file. So, we put the fully complete structures
357# in a library which is at the end of the library list.
358#
359VBoxVMM_LIBS += $(VBoxVMMPdbTypeHack_1_TARGET)
360VBoxVMM_LDFLAGS += /Export:PdbTypeHack
361
362LIBRARIES += VBoxVMMPdbTypeHack
363VBoxVMMPdbTypeHack_TEMPLATE = $(VBoxVMM_TEMPLATE)
364VBoxVMMPdbTypeHack_SOURCES = VMMAll/AllPdbTypeHack.cpp
365VBoxVMMPdbTypeHack_DEFS = $(VBoxVMM_DEFS)
366VBoxVMMPdbTypeHack_DEFS.win = $(VBoxVMM_DEFS.win)
367VBoxVMMPdbTypeHack_DEFS.win.x86 = $(VBoxVMM_DEFS.win.x86)
368VBoxVMMPdbTypeHack_DEFS.win.amd64 = $(VBoxVMM_DEFS.win.amd64)
369VBoxVMMPdbTypeHack_INCS = $(VBoxVMM_INCS)
370VBoxVMMPdbTypeHack_INTERMEDIATES = $(VBoxVMM_INTERMEDIATES)
371endif
372
373
374if1of ($(VBOX_LDR_FMT), pe lx)
375#
376# VMMR0Imp.lib
377#
378LIBRARIES += VMMR0Imp
379VMMR0Imp_TEMPLATE = VBoxR0
380VMMR0Imp_SOURCES = $(VMMR0Imp_0_OUTDIR)/VMMR0.def
381VMMR0Imp_CLEAN = $(VMMR0Imp_0_OUTDIR)/VMMR0.def
382 ifeq ($(KBUILD_TARGET),win) # Experiment: Let's see how blunt the ones messing our NULL_THUNK_DATA entries on W10 are.
383VMMR0Imp_POST_CMDS = $(KLIBTWEAKER_EXT) --clear-timestamps --fill-null_thunk_data $(out)
384 endif
385$(call KB_FN_DO_PASS0_ON_TARGET,VMMR0Imp)
386
387$(call KB_FN_AUTO_CMD_DEPS,$(VMMR0Imp_0_OUTDIR)/VMMR0.def)
388$(VMMR0Imp_0_OUTDIR)/VMMR0.def: $(VMMR0Imp_DEFPATH)/VMMR0/VMMR0.def | $$(dir $$@)
389 $(call KB_FN_AUTO_CMD_DEPS_COMMANDS)
390 ifeq ($(VBOX_LDR_FMT),lx)
391 $(SED) \
392 -e '/not-os2/d' \
393 -e '/not-amd64/d' \
394 -e 's/^[ \t][ \t]*\([a-zA-Z]\)/ _\1/' \
395 -e 's/[ \t]DATA[ \t]*/ /' \
396 --output $@ $(VMMR0Imp_DEFPATH)/VMMR0/VMMR0.def
397 $(APPEND) "$@" ""
398 $(APPEND) "$@" " ___ehInit"
399 else
400 $(SED) \
401 -e '/not-win/d' \
402 -e '/not-$(KBUILD_TARGET_ARCH)/d' \
403 --output $@ $(VMMR0Imp_DEFPATH)/VMMR0/VMMR0.def
404 endif
405endif # R0: pe + lx
406
407
408#
409# VMMR3Imp.lib
410#
411IMPORT_LIBS += VMMR3Imp
412$(call VBOX_GENERATE_IMPORT_TARGET_FN,VMMR3Imp,VBoxVMM,VMMR3/VMMR3.def)
413
414ifneq ($(VBOX_LIB_VMM_LAZY),$(LIB_VMM))
415#
416# VMMR3LazyImp.lib (experimental)
417#
418LIBRARIES += VMMR3LazyImp
419VMMR3LazyImp_TEMPLATE = VBoxR3Dll
420VMMR3LazyImp_INST = $(INST_LIB)
421VMMR3LazyImp_SOURCES = $(VMMR3LazyImp_0_OUTDIR)/VMMR3LazyLoad.asm
422VMMR3LazyImp_CLEAN = $(VMMR3LazyImp_0_OUTDIR)/VMMR3LazyLoad.asm
423$(call KB_FN_DO_PASS0_ON_TARGET,VMMR3LazyImp)
424
425$(call KB_FN_AUTO_CMD_DEPS,$(VMMR3LazyImp_0_OUTDIR)/VMMR3LazyLoad.asm)
426$(VMMR3LazyImp_0_OUTDIR)/VMMR3LazyLoad.asm: $(VMMR3LazyImp_DEFPATH)/VMMR3/VMMR3.def $(VBOX_DEF_2_LAZY_LOAD) | $$(dir $$@)
427 $(call KB_FN_AUTO_CMD_DEPS_COMMANDS)
428 $(VBOX_DEF_2_LAZY_LOAD) --output $@ --library VBoxVMM $(VMMR3LazyImp_DEFPATH)/VMMR3/VMMR3.def
429endif
430
431
432ifndef VBOX_ONLY_EXTPACKS
433#
434# VMMR0.r0
435#
436SYSMODS += VMMR0
437VMMR0_TEMPLATE = VBoxR0
438VMMR0_SYSSUFF = .r0
439
440VMMR0_DEFS = VBOX_IN_VMM IN_VMM_R0 IN_RT_R0 IN_DIS DIS_CORE_ONLY IN_GVMM_R0 IN_GMM_R0 IN_INTNET_R0 \
441 $(VMM_COMMON_DEFS) RTASSERT_HAVE_SHOULD_PANIC
442## @todo eliminate IN_GVMM_R0 IN_GMM_R0
443 ifdef VBOX_WITH_PCI_PASSTHROUGH
444VMMR0_DEFS += IN_PCIRAW_R0
445 endif
446 ifdef VBOX_WITH_TRIPLE_FAULT_HACK
447VMMR0_DEFS += VBOX_WITH_TRIPLE_FAULT_HACK
448 endif
449 ifdef VBOX_WITH_RAW_MODE
450VMMR0_DEFS += VBOX_WITH_RAW_MODE
451 endif
452 ifdef VBOX_WITH_VMM_R0_SWITCH_STACK
453VMMR0_DEFS += VMM_R0_SWITCH_STACK
454 endif
455 if1of ($(KBUILD_TARGET), darwin linux win)
456VMMR0_DEFS += VMM_R0_TOUCH_FPU
457 endif
458VMMR0_DEFS.darwin = VMM_R0_SWITCH_STACK
459VMMR0_DEFS.win.amd64 = VBOX_WITH_KERNEL_USING_XMM
460
461 ifeq ($(VBOX_LDR_FMT),elf)
462VMMR0_CXXFLAGS += -Wunused -Wunused-variable -Wno-unused-parameter
463 endif
464
465VMMR0_INCS = \
466 include \
467 $(if-expr defined(VBOX_WITH_RAW_MODE),PATM,) \
468 $(VBoxVMM_0_OUTDIR)/CommonGenIncs
469
470VMMR0_SOURCES = \
471 VBoxVMM.d \
472 VMMR0/CPUMR0.cpp \
473 VMMR0/CPUMR0A.asm \
474 VMMR0/GIMR0.cpp \
475 VMMR0/GIMR0Hv.cpp \
476 VMMR0/GIMR0Kvm.cpp \
477 VMMR0/GMMR0.cpp \
478 VMMR0/GVMMR0.cpp \
479 VMMR0/EMR0.cpp \
480 VMMR0/HMR0.cpp \
481 VMMR0/HMR0A.asm \
482 VMMR0/HMVMXR0.cpp \
483 VMMR0/HMSVMR0.cpp \
484 VMMR0/IOMR0.cpp \
485 VMMR0/IOMR0IoPort.cpp \
486 VMMR0/IOMR0Mmio.cpp \
487 VMMR0/PDMR0Device.cpp \
488 VMMR0/PDMR0Driver.cpp \
489 VMMR0/PGMR0.cpp \
490 VMMR0/PGMR0SharedPage.cpp \
491 VMMR0/VMMR0.cpp \
492 VMMRZ/CPUMRZ.cpp \
493 VMMRZ/CPUMRZA.asm \
494 VMMRZ/DBGFRZ.cpp \
495 VMMRZ/VMMRZ.cpp \
496 VMMAll/APICAll.cpp \
497 VMMAll/CPUMAllRegs.cpp \
498 VMMAll/CPUMAllMsrs.cpp \
499 VMMAll/DBGFAll.cpp \
500 VMMAll/EMAll.cpp \
501 VMMAll/GIMAll.cpp \
502 VMMAll/GIMAllHv.cpp \
503 VMMAll/GIMAllKvm.cpp \
504 VMMAll/HMAll.cpp \
505 VMMAll/HMSVMAll.cpp \
506 VMMAll/HMVMXAll.cpp \
507 VMMAll/IEMAll.cpp \
508 VMMAll/IEMAllAImpl.asm \
509 VMMAll/IEMAllAImplC.cpp \
510 VMMAll/IOMAll.cpp \
511 VMMAll/IOMAllMMIO.cpp \
512 VMMAll/MMAll.cpp \
513 VMMAll/MMAllHyper.cpp \
514 VMMAll/MMAllPagePool.cpp \
515 VMMAll/NEMAll.cpp \
516 VMMAll/PDMAll.cpp \
517 VMMAll/PDMAllCritSect.cpp \
518 VMMAll/PDMAllCritSectRw.cpp \
519 VMMAll/PDMAllCritSectBoth.cpp \
520 VMMAll/PDMAllQueue.cpp \
521 VMMAll/PGMAll.cpp \
522 VMMAll/PGMAllHandler.cpp \
523 VMMAll/PGMAllMap.cpp \
524 VMMAll/PGMAllPhys.cpp \
525 VMMAll/PGMAllPool.cpp \
526 VMMAll/SELMAll.cpp \
527 VMMAll/TMAll.cpp \
528 VMMAll/TMAllCpu.cpp \
529 VMMAll/TMAllReal.cpp \
530 VMMAll/TMAllVirtual.cpp \
531 VMMAll/TRPMAll.cpp \
532 VMMAll/VMAll.cpp \
533 VMMAll/VMMAll.cpp \
534 VMMAll/VMMAllA.asm
535 if1of ($(VBOX_LDR_FMT), pe lx)
536VMMR0_SOURCES += $(VMMR0Imp_0_OUTDIR)/VMMR0.def
537 endif
538 ifdef VBOX_WITH_TRIPLE_FAULT_HACK
539VMMR0_SOURCES += \
540 VMMR0/VMMR0TripleFaultHack.cpp \
541 VMMR0/VMMR0TripleFaultHackA.asm
542 endif
543 ifdef VBOX_WITH_NETSHAPER
544VMMR0_SOURCES += \
545 VMMAll/PDMAllNetShaper.cpp
546 endif
547VMMR0_SOURCES.amd64 = \
548 VMMR0/VMMR0JmpA-amd64.asm
549VMMR0_SOURCES.x86 = \
550 VMMR0/VMMR0JmpA-x86.asm
551
552VMMR0_LIBS = \
553 $(PATH_STAGE_LIB)/ServicesR0$(VBOX_SUFF_LIB) \
554 $(PATH_STAGE_LIB)/RuntimeR0$(VBOX_SUFF_LIB) \
555 $(PATH_STAGE_LIB)/DisasmR0$(VBOX_SUFF_LIB)
556 ifneq ($(filter pe lx,$(VBOX_LDR_FMT)),)
557VMMR0_LIBS += \
558 $(PATH_STAGE_LIB)/SUPR0$(VBOX_SUFF_LIB)
559 endif
560 ifdef VBOX_WITH_NATIVE_NEM
561VMMR0_SOURCES.win.amd64 += VMMR0/NEMR0Native-win.cpp
562VMMR0_DEFS.win.amd64 += VBOX_WITH_NATIVE_NEM VBOX_WITH_NEM_R0
563VMMR0/NEMR0Native-win.cpp_SDKS.win = ReorderCompilerIncs $(VBOX_WINDDK) $(VBOX_WINPSDK)INCS
564 endif
565
566$(call VBOX_SET_VER_INFO_R0,VMMR0,VirtualBox VMM - ring-0 context parts) # Version info / description.
567
568 if "$(USERNAME)" == "bird" && "$(KBUILD_TARGET)" == "win"
569VMMR0_VMMAll/IEMAll.cpp_CXXFLAGS = /FAcs /Fa$(subst /,\\,$(outbase).cod)
570VMMR0_VMMAll/IEMAllAImplC.cpp_CXXFLAGS = /FAcs /Fa$(subst /,\\,$(outbase).cod)
571VMMR0_VMMAll/PGMAll.cpp_CXXFLAGS = /FAcs /Fa$(subst /,\\,$(outbase).cod)
572 endif
573
574VMMR0_INTERMEDIATES += $(VBoxVMM_0_OUTDIR)/CommonGenIncs/IEMInstructionStatisticsTmpl.h
575
576 if "$(KBUILD_TARGET)" == "win"
577# Debug type info hack for VMCPU, VM and similar. See VBoxVMM for details.
578VMMR0_LIBS += $(VMMR0PdbTypeHack_1_TARGET)
579VMMR0_LDFLAGS += /Export:PdbTypeHack
580
581LIBRARIES += VMMR0PdbTypeHack
582VMMR0PdbTypeHack_TEMPLATE = $(VMMR0_TEMPLATE)
583VMMR0PdbTypeHack_SOURCES = VMMAll/AllPdbTypeHack.cpp
584VMMR0PdbTypeHack_DEFS = $(VMMR0_DEFS)
585VMMR0PdbTypeHack_DEFS.win = $(VMMR0_DEFS.win)
586VMMR0PdbTypeHack_DEFS.win.x86 = $(VMMR0_DEFS.win.x86)
587VMMR0PdbTypeHack_DEFS.win.amd64 = $(VMMR0_DEFS.win.amd64)
588VMMR0PdbTypeHack_INCS = $(VMMR0_INCS)
589VMMR0PdbTypeHack_INTERMEDIATES = $(VMMR0_INTERMEDIATES)
590 endif
591
592endif # !VBOX_ONLY_EXTPACKS
593
594
595
596ifndef VBOX_ONLY_EXTPACKS
597#
598# SSMStandalone.lib/a for linking with VBoxSVC and other executables.
599#
600LIBRARIES += SSMStandalone
601SSMStandalone_TEMPLATE = VBOXR3EXE
602SSMStandalone_DEFS = VBOX_IN_VMM IN_VMM_R3 IN_VMM_STATIC SSM_STANDALONE CPUM_DB_STANDALONE $(VMM_COMMON_DEFS)
603SSMStandalone_INCS = include
604SSMStandalone_SOURCES = \
605 VMMR3/SSM.cpp \
606 VMMR3/CPUMR3Db.cpp
607endif # !VBOX_ONLY_EXTPACKS
608
609
610if !defined(VBOX_ONLY_EXTPACKS) \
611 && ( defined(VBOX_WITH_DTRACE_R3) \
612 || defined(VBOX_WITH_DTRACE_R0) \
613 || defined(VBOX_WITH_DTRACE_RC))
614#
615# Install the dtrace library files.
616#
617INSTALLS += VMMLibDTrace
618VMMLibDTrace_INST = $(VBOX_INST_DTRACE_LIB)$(KBUILD_TARGET_ARCH)/
619VMMLibDTrace_SOURCES = \
620 dtrace/lib/vbox-types.d \
621 dtrace/lib/$(KBUILD_TARGET_ARCH)/vbox-arch-types.d \
622 $(VMMLibDTrace_0_OUTDIR)/vm.d \
623 $(VMMLibDTrace_0_OUTDIR)/cpumctx.d \
624 $(VMMLibDTrace_0_OUTDIR)/cpum.d \
625 $(VMMLibDTrace_0_OUTDIR)/CPUMInternal.d \
626 $(VMMLibDTrace_0_OUTDIR)/x86.d
627$(call KB_FN_DO_PASS0_ON_TARGET,VMMLibDTrace)
628
629
630##
631# Turn the header $2 into the DTrace library script $1.
632#
633 define def_vmm_lib_dtrace_preprocess
634$$(call KB_FN_AUTO_CMD_DEPS,$$(VMMLibDTrace_0_OUTDIR)/$1)
635$$(VMMLibDTrace_0_OUTDIR)/$1: $2 $$(VBOX_VBOXCPP) | $$$$(dir $$$$@)
636 $$(call KB_FN_AUTO_CMD_DEPS_COMMANDS)
637 $$(QUIET)$$(call MSG_GENERATE,VMMLibDTrace,$$@,$2)
638 $$(QUIET)$(VBOX_VBOXCPP) -d \
639 -D VBOX_FOR_DTRACE_LIB \
640 -D VBOX_FOR_DTRACE_LIB_$(toupper $(KBUILD_TARGET_ARCH)) \
641 -D IN_RING0 \
642 -D RT_C_DECLS_BEGIN= \
643 -D RT_C_DECLS_END= \
644 -D RT_GCC_EXTENSION= \
645 -D 'RCPTRTYPE(a_Type)=RTRCPTR' \
646 -D 'R3PTRTYPE(a_Type)=RTR3PTR' \
647 -D 'R0PTRTYPE(a_Type)=a_Type' \
648 -D 'AssertCompile(a_Expr)=' \
649 -D 'AssertCompileSize(a_Stuct, a_Size)=' \
650 -D 'bool=uint8_t' \
651 $$(foreach def,\
652 $$(DEFS) \
653 $$(DEFS.$$(KBUILD_TARGET)) \
654 $$(DEFS.$(KBUILD_TARGET_ARCH)) \
655 $$(VMM_COMMON_DEFS) \
656 $$(ARCH_BITS_DEFS)\
657 ,-D '$$(def)') \
658 $2 \
659 $$@
660 $$(QUIET)$$(CHMOD) 644 $$@
661 endef
662$(evalcall2 def_vmm_lib_dtrace_preprocess,vm.d,$(PATH_ROOT)/include/VBox/vmm/vm.h)
663$(evalcall2 def_vmm_lib_dtrace_preprocess,cpumctx.d,$(PATH_ROOT)/include/VBox/vmm/cpumctx.h)
664$(evalcall2 def_vmm_lib_dtrace_preprocess,cpum.d,$(PATH_ROOT)/include/VBox/vmm/cpum.h)
665$(evalcall2 def_vmm_lib_dtrace_preprocess,CPUMInternal.d,$(PATH_SUB_CURRENT)/include/CPUMInternal.h)
666$(evalcall2 def_vmm_lib_dtrace_preprocess,x86.d,$(PATH_ROOT)/include/iprt/x86.h)
667
668endif
669
670
671
672#
673# For vmmGetSvnRev.
674#
675VMMAll/VMMAll.cpp_DEFS = VBOX_SVN_REV=$(VBOX_SVN_REV)
676
677#
678# Disable annoying warnings about array subscript above array bounds in aPages[]
679#
680ifneq ($(KBUILD_TARGET),win)
681VMMR3/PGMPool.cpp_CXXFLAGS = $(VBOX_GCC_Wno-array_bounds)
682VMMAll/PGMAllPool.cpp_CXXFLAGS = $(VBOX_GCC_Wno-array_bounds)
683VMMAll/PGMAll.cpp_CXXFLAGS = -Wno-unused-function
684VMMAll/IEMAll.cpp_CXXFLAGS = -Wno-unused-function
685VMMR0/GMMR0.cpp_CXXFLAGS = -Wno-unused-value
686endif
687
688#
689# Always optimize the interpreter.
690#
691if $(USERNAME) != "bird" || "$(KBUILD_TYPE)" == "release" #|| "$(KBUILD_TARGET).$(KBUILD_TARGET_ARCH)" == "win.amd64"
692 if1of ($(KBUILD_TARGET), win)
693# -noover is recognized despite the statement saying otherwise. It silences these warnings:
694# cl : Command line warning D9025 : overriding '/Od' with '/O2'
695# cl : Command line warning D9025 : overriding '/Oy-' with '/Oy'
696VMMAll/IEMAll.cpp_CXXFLAGS += -noover -O2xy
697 else
698VMMAll/IEMAll.cpp_CXXFLAGS += -O2
699#VMMAll/IEMAll.cpp_CXXFLAGS += -fno-align-functions -fno-align-jumps -fno-align-loops # Saves a few of percents, not worth it.
700#VMMAll/IEMAll.cpp_CXXFLAGS += -fno-reorder-blocks # Saves one or two percent ... never mind.
701VMMAll/IEMAll.cpp_CXXFLAGS += -fomit-frame-pointer # Omitting the frame pointer results in larger code, but it might be worth it. (esp addressing vs ebp?)
702 endif
703endif # bird wants good stacks
704
705
706# Alias the CPU database entries.
707$(foreach base,$(notdir $(basename $(wildcard $(PATH_SUB_CURRENT)/VMMR3/cpus/*.h))), $(eval $(base).o $(base).obj: CPUMR3Db.o))
708
709
710#
711# Process python source(s).
712#
713BLDDIRS += $(PATH_TARGET)/pylint
714
715define def_vbox_vmm_py_check
716$(eval name:=$(basename $(notdir $(py))))
717
718pylint: $(name)-py-phony.o
719$(name).o: $(name)-py-phony.o
720$(PATH_TARGET)/pylint/$(name).o $(name)-py-phony.o:: $(py) | $(PATH_TARGET)/pylint/
721ifdef VBOX_WITH_PYLINT
722 $(QUIET2)$(call MSG_L1,Subjecting $(py) to pylint...)
723 $(QUIET)$(REDIRECT) -C "$(dir $(py))" -E LC_ALL=C -- \
724 $(VBOX_PYLINT) --rcfile=$(PATH_TARGET)/no-such-pylintrc \
725 $$(VBOX_PYLINT_FLAGS) $$($(py)_VBOX_PYLINT_FLAGS) ./$(notdir $(py))
726endif
727 $(QUIET)$(APPEND) -t "$(PATH_TARGET)/pylint/$(name).o"
728
729TESTING += $(name)-py-phony.o
730endef # def_vbox_vmm_py_check
731
732$(foreach py, $(addprefix $(PATH_SUB_CURRENT)/VMMAll/, IEMAllInstructionsPython.py ) , $(eval $(def_vbox_vmm_py_check)))
733
734
735include $(FILE_KBUILD_SUB_FOOTER)
736
737
738# Alias the PGM templates to the object in which they are defined.
739PGMInternal.o: PGM.o
740
741PGMAllBth.o PGMAllGst.o PGMAllShw.o \
742PGMAllBth.obj PGMAllGst.obj PGMAllShw.obj: PGMAll.o
743
744PGMRCBth.o PGMRCGst.o PGMRCShw.o \
745PGMRCBth.obj PGMRCGst.obj PGMRCShw.obj: PGMRC.o
746
747PGMPhysRWTmpl.o PGMPhysRWTmpl.obj: PGMPhys.o
748
749PGMInline.o PGMInline.obj: PGMDbg.o
750
751# Alias the IEM templates to the object in which they are instantiated.
752IEMInternal.o \
753IEMAllInstructions.cpp.o IEMAllInstructions.cpp.obj \
754IEMAllInstructionsOneByte.cpp.o IEMAllInstructionsOneByte.cpp.obj \
755IEMAllInstructionsTwoByte0f.cpp.o IEMAllInstructionsTwoByte0f.cpp.obj \
756IEMAllInstructionsThree0f38.cpp.o IEMAllInstructionsThree0f38.cpp.obj \
757IEMAllInstructionsThree0f3a.cpp.o IEMAllInstructionsThree0f3a.cpp.obj \
758IEMAllInstructionsVexMap1.cpp.o IEMAllInstructionsVexMap1.cpp.obj \
759IEMAllInstructionsVexMap2.cpp.o IEMAllInstructionsVexMap2.cpp.obj \
760IEMAllInstructionsVexMap3.cpp.o IEMAllInstructionsVexMap3.cpp.obj \
761IEMAllInstructions3DNow.cpp.o IEMAllInstructions3DNow.cpp.obj \
762IEMAllCImpl.cpp.o IEMAllCImpl.cpp.obj \
763IEMAllCImplStrInstr.cpp.o IEMAllCImplStrInstr.cpp.obj \
764IEMAllCImplSvmInstr.cpp.o IEMAllCImplSvmInstr.cpp.obj \
765IEMAllCImplVmxInstr.cpp.o IEMAllCImplVmxInstr.cpp.obj: IEMAll.o
766
767# Alias the NEM template to the objects where it is used:
768NEMAllNativeTemplate-win.cpp.o: NEMR3Native-win.o NEMR0Native-win.o
769
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