VirtualBox

source: vbox/trunk/src/VBox/ValidationKit/bootsectors/bs3kit/Makefile.kmk@ 89146

Last change on this file since 89146 was 89146, checked in by vboxsync, 4 years ago

ValKit/bs3-kit: Implemented 64-bit multiplication helper for 32-bit watcom. bugref:10009

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 24.7 KB
Line 
1# $Id: Makefile.kmk 89146 2021-05-18 18:21:26Z vboxsync $
2## @file
3# VirtualBox Validation Kit - Bootsector Kit v3
4#
5
6#
7# Copyright (C) 2006-2020 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# The contents of this file may alternatively be used under the terms
18# of the Common Development and Distribution License Version 1.0
19# (CDDL) only, as it comes in the "COPYING.CDDL" file of the
20# VirtualBox OSE distribution, in which case the provisions of the
21# CDDL are applicable instead of those of the GPL.
22#
23# You may elect to license modified versions of this file under the
24# terms and conditions of either the GPL or the CDDL or both.
25#
26
27SUB_DEPTH = ../../../../..
28include $(KBUILD_PATH)/subheader.kmk
29
30
31
32# Boot Sector post-link tool (used via the parent Config.kmk).
33BLDPROGS += VBoxBs3Linker
34VBoxBs3Linker_TEMPLATE = VBoxBldProg
35VBoxBs3Linker_SOURCES = $(VBOX_PATH_BS3KIT_SRC)/VBoxBs3Linker.cpp
36
37
38# 64-bit relocation conversion tool (used via the parent Config.kmk).
39BLDPROGS += VBoxBs3ObjConverter
40VBoxBs3ObjConverter_TEMPLATE = VBoxBldProg
41VBoxBs3ObjConverter_DEFS = BS3KIT_BS3CLASS16CODE=$(BS3KIT_BS3CLASS16CODE) IN_RT_R3
42VBoxBs3ObjConverter_SOURCES = \
43 $(VBOX_PATH_BS3KIT_SRC)/VBoxBs3ObjConverter.cpp \
44 $(PATH_ROOT)/src/VBox/Runtime/common/sort/shellsort.cpp
45
46
47# The boot sector.
48MISCBINS += bs3-bootsector
49bs3-bootsector_TEMPLATE = VBoxBS3KitBS
50bs3-bootsector_SOURCES = bs3-bootsector.asm
51
52
53#
54# Common sources to be compiled into _p16, _p32 and _p64 versions.
55#
56VBOX_BS3KIT_COMMON_SOURCES = \
57 bs3-cmn-A20Disable.asm \
58 bs3-cmn-A20Enable.asm \
59 bs3-cmn-GetCpuVendor.c \
60 bs3-cmn-GetModeName.c \
61 bs3-cmn-GetModeNameShortLower.c \
62 bs3-cmn-KbdRead.asm \
63 bs3-cmn-KbdWait.asm \
64 bs3-cmn-KbdWrite.asm \
65 bs3-cmn-Shutdown.asm \
66 bs3-cmn-Panic.asm \
67 bs3-cmn-PrintChr.asm \
68 bs3-cmn-Printf.c \
69 bs3-cmn-PrintU32.asm \
70 bs3-cmn-PrintX32.asm \
71 bs3-cmn-PrintStr.c \
72 bs3-cmn-PrintStrN.asm \
73 bs3-cmn-StrFormatV.c \
74 bs3-cmn-StrPrintf.c \
75 bs3-cmn-StrLen.c \
76 bs3-cmn-StrNLen.c \
77 bs3-cmn-StrCpy.c \
78 bs3-cmn-MemChr.asm \
79 bs3-cmn-MemCmp.asm \
80 bs3-cmn-MemCpy.c \
81 bs3-cmn-MemPCpy.c \
82 bs3-cmn-MemMove.c \
83 bs3-cmn-MemSet.asm \
84 bs3-cmn-MemZero.asm \
85 bs3-cmn-MemAlloc.c \
86 bs3-cmn-MemAllocZ.c \
87 bs3-cmn-MemFree.c \
88 bs3-cmn-MemGuardedTestPage.c \
89 bs3-cmn-MemPrintInfo.c \
90 bs3-cmn-PagingData.c \
91 bs3-cmn-PagingInitRootForPP.c \
92 bs3-cmn-PagingInitRootForPAE.c \
93 bs3-cmn-PagingInitRootForLM.c \
94 bs3-cmn-PagingAlias.c \
95 bs3-cmn-PagingProtect.c \
96 bs3-cmn-PagingQueryAddressInfo.c \
97 bs3-cmn-PagingSetupCanonicalTraps.c \
98 bs3-cmn-pic-data.c \
99 bs3-cmn-PicMaskAll.c \
100 bs3-cmn-PicUpdateMask.c \
101 bs3-cmn-PicSetup.c \
102 bs3-cmn-pit.c \
103 bs3-cmn-PitIrqHandler.c \
104 bs3-cmn-RegCtxRestore.asm \
105 bs3-cmn-RegCtxConvertToRingX.c \
106 bs3-cmn-RegCtxPrint.c \
107 bs3-cmn-RegCtxSave.asm \
108 bs3-cmn-RegCtxSaveEx.asm \
109 bs3-cmn-RegCtxSetGrpSegFromCurPtr.c \
110 bs3-cmn-RegCtxSetGrpSegFromFlat.c \
111 bs3-cmn-RegCtxSetRipCsFromCurPtr.c \
112 bs3-cmn-RegCtxSetRipCsFromFlat.c \
113 bs3-cmn-RegCtxSetRipCsFromLnkPtr.c \
114 bs3-cmn-RegGetCr0.asm \
115 bs3-cmn-RegGetCr2.asm \
116 bs3-cmn-RegGetCr3.asm \
117 bs3-cmn-RegGetCr4.asm \
118 bs3-cmn-RegSetCr0.asm \
119 bs3-cmn-RegSetCr2.asm \
120 bs3-cmn-RegSetCr3.asm \
121 bs3-cmn-RegSetCr4.asm \
122 bs3-cmn-RegGetDr0.asm \
123 bs3-cmn-RegGetDr1.asm \
124 bs3-cmn-RegGetDr2.asm \
125 bs3-cmn-RegGetDr3.asm \
126 bs3-cmn-RegGetDr6.asm \
127 bs3-cmn-RegGetDr7.asm \
128 bs3-cmn-RegGetDrX.asm \
129 bs3-cmn-RegSetDr0.asm \
130 bs3-cmn-RegSetDr1.asm \
131 bs3-cmn-RegSetDr2.asm \
132 bs3-cmn-RegSetDr3.asm \
133 bs3-cmn-RegSetDr6.asm \
134 bs3-cmn-RegSetDr7.asm \
135 bs3-cmn-RegSetDrX.asm \
136 bs3-cmn-RegGetTr.asm \
137 bs3-cmn-RegSetTr.asm \
138 bs3-cmn-RegGetLdtr.asm \
139 bs3-cmn-RegSetLdtr.asm \
140 bs3-cmn-ExtCtxInit.c \
141 bs3-cmn-ExtCtxSave.asm \
142 bs3-cmn-ExtCtxRestore.asm \
143 bs3-cmn-ExtCtxGetSize.c \
144 bs3-cmn-ExtCtxAlloc.c \
145 bs3-cmn-ExtCtxFree.c \
146 bs3-cmn-ExtCtxCopy.c \
147 bs3-cmn-SelFar32ToFlat32.c \
148 bs3-cmn-SelFar32ToFlat32NoClobber.asm \
149 bs3-cmn-SelProtFar32ToFlat32.c \
150 bs3-cmn-SelProtModeCodeToRealMode.asm \
151 bs3-cmn-SelRealModeCodeToProtMode.asm \
152 bs3-cmn-SelFlatCodeToRealMode.asm \
153 bs3-cmn-SelFlatCodeToProtFar16.asm \
154 bs3-cmn-SelRealModeDataToProtFar16.asm \
155 bs3-cmn-SelProtFar16DataToRealMode.asm \
156 bs3-cmn-SelRealModeDataToFlat.asm \
157 bs3-cmn-SelProtFar16DataToFlat.asm \
158 bs3-cmn-SelFlatDataToProtFar16.asm \
159 bs3-cmn-SelFlatDataToRealMode.asm \
160 bs3-cmn-SelSetup16BitData.c \
161 bs3-cmn-SelSetup16BitCode.c \
162 bs3-cmn-SlabInit.c \
163 bs3-cmn-SlabAlloc.c \
164 bs3-cmn-SlabAllocEx.c \
165 bs3-cmn-SlabFree.c \
166 bs3-cmn-SlabListInit.c \
167 bs3-cmn-SlabListAdd.c \
168 bs3-cmn-SlabListAlloc.c \
169 bs3-cmn-SlabListAllocEx.c \
170 bs3-cmn-SlabListFree.c \
171 bs3-cmn-SwitchHlpConvRealModeRetfPopBpDecBpAndReturn.asm \
172 bs3-cmn-SwitchHlpConvProtModeRetfPopBpDecBpAndReturn.asm \
173 bs3-cmn-SwitchToRing0.asm \
174 bs3-cmn-SwitchToRing1.asm \
175 bs3-cmn-SwitchToRing2.asm \
176 bs3-cmn-SwitchToRing3.asm \
177 bs3-cmn-SwitchToRingX.asm \
178 bs3-cmn-SwitchTo16Bit.asm \
179 bs3-cmn-SwitchTo16BitV86.asm \
180 bs3-cmn-SwitchTo32Bit.asm \
181 bs3-cmn-SwitchTo64Bit.asm \
182 bs3-cmn-Syscall.asm \
183 bs3-cmn-TestData.c \
184 bs3-cmn-TestInit.c \
185 bs3-cmn-TestFailed.c \
186 bs3-cmn-TestNow.asm \
187 bs3-cmn-TestSkipped.c \
188 bs3-cmn-TestSub.c \
189 bs3-cmn-TestSubDone.c \
190 bs3-cmn-TestSubErrorCount.c \
191 bs3-cmn-TestTerm.c \
192 bs3-cmn-TestSendCmdWithStr.asm \
193 bs3-cmn-TestSendCmdWithU32.asm \
194 bs3-cmn-TestIsVmmDevTestingPresent.asm \
195 bs3-cmn-TestCheckRegCtxEx.c \
196 bs3-cmn-TestHostPrintf.c \
197 bs3-cmn-TestPrintf.c \
198 bs3-cmn-TrapReInit.c \
199 bs3-cmn-TrapRmV86Init.c \
200 bs3-cmn-TrapRmV86SetGate.c \
201 bs3-cmn-Trap16Init.c \
202 bs3-cmn-Trap16SetGate.c \
203 bs3-cmn-Trap32Init.c \
204 bs3-cmn-Trap32SetGate.c \
205 bs3-cmn-Trap64Init.c \
206 bs3-cmn-Trap64SetGate.c \
207 bs3-cmn-TrapSetDpl.c \
208 bs3-cmn-TrapDefaultHandler.c \
209 bs3-cmn-TrapHandlersData.asm \
210 bs3-cmn-TrapPrintFrame.c \
211 bs3-cmn-TrapSetHandler.c \
212 bs3-cmn-TrapSetHandlerEx.c \
213 bs3-cmn-TrapSetJmp.asm \
214 bs3-cmn-TrapSetJmpAndRestore.c \
215 bs3-cmn-TrapUnsetJmp.c \
216 bs3-cmn-UtilSetFullGdtr.asm \
217 bs3-cmn-UtilSetFullIdtr.asm \
218 bs3-cmn-TestDoModesByOneHlp.asm \
219 ../../../Runtime/common/asm/ASMBitFirstClear.asm \
220 ../../../Runtime/common/asm/ASMBitFirstSet.asm \
221 ../../../Runtime/common/asm/ASMBitNextClear.asm \
222 ../../../Runtime/common/asm/ASMBitNextSet.asm \
223 ../../../Runtime/common/asm/ASMBitFirstSetU16.asm \
224 ../../../Runtime/common/asm/ASMBitFirstSetU32.asm \
225 ../../../Runtime/common/asm/ASMBitFirstSetU64.asm \
226 ../../../Runtime/common/asm/ASMBitLastSetU16.asm \
227 ../../../Runtime/common/asm/ASMBitLastSetU32.asm \
228 ../../../Runtime/common/asm/ASMBitLastSetU64.asm \
229 ../../../Runtime/common/asm/ASMMemFirstMismatchingU8.asm \
230 ../../../Runtime/common/asm/ASMSerializeInstruction-cpuid.asm \
231 ../../../Runtime/common/asm/ASMSerializeInstruction-iret.asm \
232 ../../../Runtime/common/asm/ASMSerializeInstruction-rdtscp.asm \
233 ../../../Runtime/common/asm/ASMCpuIdExSlow.asm \
234 ../../../Runtime/common/asm/ASMCpuId.asm \
235 ../../../Runtime/common/asm/ASMCpuId_Idx_ECX.asm \
236 ../../../Runtime/common/asm/ASMGetXcr0.asm \
237 ../../../Runtime/common/asm/ASMSetXcr0.asm \
238 ../../../Runtime/common/asm/ASMSetFlags.asm \
239 ../../../Runtime/common/asm/ASMGetFlags.asm \
240
241# The 16-bit BS3Kit library.
242LIBRARIES += bs3kit-common-16
243bs3kit-common-16_TEMPLATE = VBoxBS3KitImg
244bs3kit-common-16_INSTTYPE = none
245bs3kit-common-16_DEFS = TMPL_PE16 BS3_CMN_ONLY
246bs3kit-common-16_ASDEFS = RT_ASMDEFS_INC_FIRST_FILE
247bs3kit-common-16_SOURCES = $(VBOX_BS3KIT_COMMON_SOURCES) \
248 bs3-system-data.asm \
249 bs3-rm-InitAll.c \
250 bs3-rm-InitMemory.c \
251 bs3-rm-InitGdt.c \
252 bs3-cmn-hexdigits.c \
253 bs3-cmn-CpuDetectData.c \
254 bs3-cmn-PerCpuData.c \
255 bs3-cmn-ConvertRMStackToP16UsingCxReturnToAx.asm \
256 bs3-cmn-UInt64Div.c \
257 bs3-cmn-UInt32Div.c \
258 bs3-wc16-U8DR.asm \
259 bs3-wc16-U8DQ.asm \
260 bs3-wc16-I8DR.asm \
261 bs3-wc16-I8DQ.asm \
262 bs3-wc16-I8RS.asm \
263 bs3-wc16-U8RS.asm \
264 bs3-wc16-U8LS.asm \
265 bs3-wc16-U4D.asm \
266 bs3-wc16-I4D.asm \
267 bs3-c16-SwitchFromV86To16BitAndCallC.asm \
268 bs3-c16-Trap16Generic.asm \
269 bs3-c16-TrapRmV86Generic.asm \
270 bs3-c16-TrapRmV86Data.c \
271 bs3-c16-CreateHybridFarRet.asm
272bs3kit-common-16_bs3-cmn-UInt64Div.c_CFLAGS = -oh -d0 # -d1+ vs -d0 saves 0x6a3-0x577 = 0x12C (300)!
273
274$(call BS3KIT_FN_GEN_CMN_FARSTUB,bs3kit-common-16,ASMMemFirstMismatchingU8,8)
275$(call BS3KIT_FN_GEN_CMN_FARSTUB,bs3kit-common-16,ASMMemFirstNonZero,6)
276$(call BS3KIT_FN_GEN_CMN_FARSTUB,bs3kit-common-16,ASMCpuIdExSlow,32)
277$(call BS3KIT_FN_GEN_CMN_FARSTUB,bs3kit-common-16,ASMCpuId,20)
278$(call BS3KIT_FN_GEN_CMN_FARSTUB,bs3kit-common-16,ASMSetXcr0,8)
279$(call BS3KIT_FN_GEN_CMN_FARSTUB,bs3kit-common-16,ASMGetXcr0,0)
280-include $(PATH_SUB_CURRENT)/bs3kit-autostubs.kmk # manually generated from headers, see bottom of this file.
281
282# The 32-bit BS3Kit library.
283LIBRARIES += bs3kit-common-32
284bs3kit-common-32_TEMPLATE = VBoxBS3KitImg32
285bs3kit-common-32_INSTTYPE = none
286bs3kit-common-32_DEFS = TMPL_PE32 BS3_CMN_ONLY
287bs3kit-common-32_ASDEFS = RT_ASMDEFS_INC_FIRST_FILE
288bs3kit-common-32_SOURCES = $(VBOX_BS3KIT_COMMON_SOURCES) \
289 bs3-cmn-SwitchHlpConvFlatRetToRetfProtMode.asm \
290 bs3-cmn-UInt64Div.c \
291 bs3-wc32-U8D.asm \
292 bs3-wc32-I8D.asm \
293 bs3-wc32-I8RS.asm \
294 bs3-wc32-U8RS.asm \
295 bs3-wc32-U8LS.asm \
296 bs3-wc32-U8M.asm \
297 bs3-c32-Trap32Generic.asm
298
299# The 64-bit BS3Kit library.
300LIBRARIES += bs3kit-common-64
301bs3kit-common-64_TEMPLATE = VBoxBS3KitImg64
302bs3kit-common-64_INSTTYPE = none
303bs3kit-common-64_DEFS = TMPL_LM64 BS3_CMN_ONLY
304bs3kit-common-64_ASDEFS = RT_ASMDEFS_INC_FIRST_FILE
305bs3kit-common-64_SOURCES = $(VBOX_BS3KIT_COMMON_SOURCES) \
306 bs3-cmn-SwitchHlpConvFlatRetToRetfProtMode.asm \
307 bs3-c64-Trap64Generic.asm \
308 ../../../Runtime/common/asm/ASMGetIDTR.asm \
309 ../../../Runtime/common/asm/ASMSetIDTR.asm \
310 ../../../Runtime/common/asm/ASMGetGDTR.asm \
311 ../../../Runtime/common/asm/ASMSetGDTR.asm \
312
313
314#
315# Common sources to be compiled for each CPU mode.
316#
317VBOX_BS3KIT_MODE_SOURCES = \
318 bs3-mode-Name.asm \
319 bs3-mode-NameShortLower.asm \
320 bs3-mode-SwitchToRM.asm \
321 bs3-mode-SwitchToPE16.asm \
322 bs3-mode-SwitchToPE16_32.asm \
323 bs3-mode-SwitchToPE16_V86.asm \
324 bs3-mode-SwitchToPE32.asm \
325 bs3-mode-SwitchToPE32_16.asm \
326 bs3-mode-SwitchToPEV86.asm \
327 bs3-mode-SwitchToPP16.asm \
328 bs3-mode-SwitchToPP16_32.asm \
329 bs3-mode-SwitchToPP16_V86.asm \
330 bs3-mode-SwitchToPP32.asm \
331 bs3-mode-SwitchToPP32_16.asm \
332 bs3-mode-SwitchToPPV86.asm \
333 bs3-mode-SwitchToPAE16.asm \
334 bs3-mode-SwitchToPAE16_32.asm \
335 bs3-mode-SwitchToPAE16_V86.asm \
336 bs3-mode-SwitchToPAE32.asm \
337 bs3-mode-SwitchToPAE32_16.asm \
338 bs3-mode-SwitchToPAEV86.asm \
339 bs3-mode-SwitchToLM64.asm \
340 bs3-mode-SwitchToLM32.asm \
341 bs3-mode-SwitchToLM16.asm \
342 bs3-mode-SwitchTo32BitAndCallC.asm \
343 bs3-mode-EnteredMode.asm \
344 bs3-mode-PagingGetRootForPP16.asm \
345 bs3-mode-PagingGetRootForPP32.asm \
346 bs3-mode-PagingGetRootForPAE16.asm \
347 bs3-mode-PagingGetRootForPAE32.asm \
348 bs3-mode-PagingGetRootForLM64.asm \
349 bs3-mode-TrapInit.c \
350 bs3-mode-TrapSystemCallHandler.asm \
351 bs3-mode-TestDoModes.c \
352 bs3-mode-TestDoModesByOne.c \
353 bs3-mode-TestDoModesByMax.c \
354 bs3-mode-TestDoModesHlp.asm \
355
356# The 16-bit real mode BS3Kit library.
357LIBRARIES += bs3kit-rm
358bs3kit-rm_TEMPLATE = VBoxBS3KitImg
359bs3kit-rm_INSTTYPE = none
360bs3kit-rm_DEFS = TMPL_MODE=BS3_MODE_RM
361bs3kit-rm_SOURCES = $(VBOX_BS3KIT_MODE_SOURCES) \
362 bs3-first-rm.asm \
363 bs3-mode-CpuDetect.asm \
364 bs3-mode-TestDoModesStub.asm \
365 bs3-mode-TestDoModesByOneStub.asm \
366 bs3-mode-TestDoModesByMaxStub.asm \
367
368
369# The 16-bit BS3Kit library for 16-bit protected kernel+tss.
370LIBRARIES += bs3kit-pe16
371bs3kit-pe16_TEMPLATE = VBoxBS3KitImg
372bs3kit-pe16_INSTTYPE = none
373bs3kit-pe16_DEFS = TMPL_MODE=BS3_MODE_PE16
374bs3kit-pe16_SOURCES = $(VBOX_BS3KIT_MODE_SOURCES) \
375 bs3-first-pe16.asm \
376 bs3-mode-TestDoModesStub.asm \
377 bs3-mode-TestDoModesByOneStub.asm \
378 bs3-mode-TestDoModesByMaxStub.asm \
379# bs3-mode-CpuDetect.asm
380
381# The 32-bit BS3Kit library for 16-bit protected kernel+tss.
382LIBRARIES += bs3kit-pe16_32
383bs3kit-pe16_32_TEMPLATE = VBoxBS3KitImg32
384bs3kit-pe16_32_INSTTYPE = none
385bs3kit-pe16_32_DEFS = TMPL_MODE=BS3_MODE_PE16_32
386bs3kit-pe16_32_SOURCES = $(VBOX_BS3KIT_MODE_SOURCES) \
387 bs3-mode-TestDoModesStub.asm \
388 bs3-mode-TestDoModesByOneStub.asm \
389 bs3-mode-TestDoModesByMaxStub.asm \
390
391# The v86 BS3Kit library for 16-bit protected kernel+tss.
392LIBRARIES += bs3kit-pe16_v86
393bs3kit-pe16_v86_TEMPLATE = VBoxBS3KitImg
394bs3kit-pe16_v86_INSTTYPE = none
395bs3kit-pe16_v86_DEFS = TMPL_MODE=BS3_MODE_PE16_V86
396bs3kit-pe16_v86_SOURCES = $(VBOX_BS3KIT_MODE_SOURCES) \
397 bs3-mode-TestDoModesStub.asm \
398 bs3-mode-TestDoModesByOneStub.asm \
399 bs3-mode-TestDoModesByMaxStub.asm \
400
401# The 32-bit BS3Kit library for 32-bit protected kernel+tss.
402LIBRARIES += bs3kit-pe32
403bs3kit-pe32_TEMPLATE = VBoxBS3KitImg32
404bs3kit-pe32_INSTTYPE = none
405bs3kit-pe32_DEFS = TMPL_MODE=BS3_MODE_PE32
406bs3kit-pe32_SOURCES = $(VBOX_BS3KIT_MODE_SOURCES) \
407 bs3-first-init-all-pe32.asm
408
409# The 16-bit BS3Kit library for 32-bit protected kernel+tss.
410LIBRARIES += bs3kit-pe32_16
411bs3kit-pe32_16_TEMPLATE = VBoxBS3KitImg
412bs3kit-pe32_16_INSTTYPE = none
413bs3kit-pe32_16_DEFS = TMPL_MODE=BS3_MODE_PE32_16
414bs3kit-pe32_16_SOURCES = $(VBOX_BS3KIT_MODE_SOURCES) \
415 bs3-mode-TestDoModesStub.asm \
416 bs3-mode-TestDoModesByOneStub.asm \
417 bs3-mode-TestDoModesByMaxStub.asm \
418
419# The v8086 BS3Kit library for 32-bit protected kernel+tss.
420LIBRARIES += bs3kit-pev86
421bs3kit-pev86_TEMPLATE = VBoxBS3KitImg
422bs3kit-pev86_INSTTYPE = none
423bs3kit-pev86_DEFS = TMPL_MODE=BS3_MODE_PEV86
424bs3kit-pev86_SOURCES = $(VBOX_BS3KIT_MODE_SOURCES)
425
426# The 16-bit BS3Kit library for 16-bit paged protected kernel+tss.
427LIBRARIES += bs3kit-pp16
428bs3kit-pp16_TEMPLATE = VBoxBS3KitImg
429bs3kit-pp16_INSTTYPE = none
430bs3kit-pp16_DEFS = TMPL_MODE=BS3_MODE_PP16
431bs3kit-pp16_SOURCES = $(VBOX_BS3KIT_MODE_SOURCES) \
432 bs3-mode-CpuDetect.asm \
433 bs3-mode-TestDoModesStub.asm \
434 bs3-mode-TestDoModesByOneStub.asm \
435 bs3-mode-TestDoModesByMaxStub.asm \
436
437# The 32-bit BS3Kit library for 16-bit paged protected kernel+tss.
438LIBRARIES += bs3kit-pp16_32
439bs3kit-pp16_32_TEMPLATE = VBoxBS3KitImg32
440bs3kit-pp16_32_INSTTYPE = none
441bs3kit-pp16_32_DEFS = TMPL_MODE=BS3_MODE_PP16_32
442bs3kit-pp16_32_SOURCES = $(VBOX_BS3KIT_MODE_SOURCES)
443
444# The v8086 BS3Kit library for 16-bit paged protected kernel+tss.
445LIBRARIES += bs3kit-pp16_v86
446bs3kit-pp16_v86_TEMPLATE = VBoxBS3KitImg
447bs3kit-pp16_v86_INSTTYPE = none
448bs3kit-pp16_v86_DEFS = TMPL_MODE=BS3_MODE_PP16_V86
449bs3kit-pp16_v86_SOURCES = $(VBOX_BS3KIT_MODE_SOURCES)
450
451# The 32-bit BS3Kit library for 32-bit paged protected kernel+tss.
452LIBRARIES += bs3kit-pp32
453bs3kit-pp32_TEMPLATE = VBoxBS3KitImg32
454bs3kit-pp32_INSTTYPE = none
455bs3kit-pp32_DEFS = TMPL_MODE=BS3_MODE_PP32
456bs3kit-pp32_SOURCES = $(VBOX_BS3KIT_MODE_SOURCES) \
457 bs3-first-init-all-pp32.asm
458
459# The 16-bit BS3Kit library for 32-bit paged protected kernel+tss.
460LIBRARIES += bs3kit-pp32_16
461bs3kit-pp32_16_TEMPLATE = VBoxBS3KitImg
462bs3kit-pp32_16_INSTTYPE = none
463bs3kit-pp32_16_DEFS = TMPL_MODE=BS3_MODE_PP32_16
464bs3kit-pp32_16_SOURCES = $(VBOX_BS3KIT_MODE_SOURCES) \
465 bs3-mode-TestDoModesStub.asm \
466 bs3-mode-TestDoModesByOneStub.asm \
467 bs3-mode-TestDoModesByMaxStub.asm \
468
469# The v8086 BS3Kit library for 32-bit paged protected kernel+tss.
470LIBRARIES += bs3kit-ppv86
471bs3kit-ppv86_TEMPLATE = VBoxBS3KitImg
472bs3kit-ppv86_INSTTYPE = none
473bs3kit-ppv86_DEFS = TMPL_MODE=BS3_MODE_PPV86
474bs3kit-ppv86_SOURCES = $(VBOX_BS3KIT_MODE_SOURCES)
475
476
477# The 16-bit BS3Kit library for 16-bit PAE paged protected kernel+tss.
478LIBRARIES += bs3kit-pae16
479bs3kit-pae16_TEMPLATE = VBoxBS3KitImg
480bs3kit-pae16_INSTTYPE = none
481bs3kit-pae16_DEFS = TMPL_MODE=BS3_MODE_PAE16
482bs3kit-pae16_SOURCES = $(VBOX_BS3KIT_MODE_SOURCES) \
483 bs3-mode-CpuDetect.asm \
484 bs3-mode-TestDoModesStub.asm \
485 bs3-mode-TestDoModesByOneStub.asm \
486 bs3-mode-TestDoModesByMaxStub.asm \
487
488# The 16-bit BS3Kit library for 16-bit PAE paged protected kernel+tss.
489LIBRARIES += bs3kit-pae16_32
490bs3kit-pae16_32_TEMPLATE = VBoxBS3KitImg32
491bs3kit-pae16_32_INSTTYPE = none
492bs3kit-pae16_32_DEFS = TMPL_MODE=BS3_MODE_PAE16_32
493bs3kit-pae16_32_SOURCES = $(VBOX_BS3KIT_MODE_SOURCES)
494
495# The v8086 BS3Kit library for 16-bit PAE paged protected kernel+tss.
496LIBRARIES += bs3kit-pae16_v86
497bs3kit-pae16_v86_TEMPLATE = VBoxBS3KitImg
498bs3kit-pae16_v86_INSTTYPE = none
499bs3kit-pae16_v86_DEFS = TMPL_MODE=BS3_MODE_PAE16_V86
500bs3kit-pae16_v86_SOURCES = $(VBOX_BS3KIT_MODE_SOURCES)
501
502# The 32-bit BS3Kit library for 32-bit PAE paged protected kernel+tss.
503LIBRARIES += bs3kit-pae32
504bs3kit-pae32_TEMPLATE = VBoxBS3KitImg32
505bs3kit-pae32_INSTTYPE = none
506bs3kit-pae32_DEFS = TMPL_MODE=BS3_MODE_PAE32
507bs3kit-pae32_SOURCES = $(VBOX_BS3KIT_MODE_SOURCES)
508
509# The 16-bit BS3Kit library for 32-bit PAE paged protected kernel+tss.
510LIBRARIES += bs3kit-pae32_16
511bs3kit-pae32_16_TEMPLATE = VBoxBS3KitImg
512bs3kit-pae32_16_INSTTYPE = none
513bs3kit-pae32_16_DEFS = TMPL_MODE=BS3_MODE_PAE32_16
514bs3kit-pae32_16_SOURCES = $(VBOX_BS3KIT_MODE_SOURCES) \
515 bs3-mode-TestDoModesStub.asm \
516 bs3-mode-TestDoModesByOneStub.asm \
517 bs3-mode-TestDoModesByMaxStub.asm \
518
519# The v8086 BS3Kit library for 32-bit PAE paged protected kernel+tss.
520LIBRARIES += bs3kit-paev86
521bs3kit-paev86_TEMPLATE = VBoxBS3KitImg
522bs3kit-paev86_INSTTYPE = none
523bs3kit-paev86_DEFS = TMPL_MODE=BS3_MODE_PAEV86
524bs3kit-paev86_SOURCES = $(VBOX_BS3KIT_MODE_SOURCES)
525
526
527# The 16-bit long mode BS3Kit library.
528LIBRARIES += bs3kit-lm16
529bs3kit-lm16_TEMPLATE = VBoxBS3KitImg
530bs3kit-lm16_INSTTYPE = none
531bs3kit-lm16_DEFS = TMPL_MODE=BS3_MODE_LM16
532bs3kit-lm16_SOURCES = $(VBOX_BS3KIT_MODE_SOURCES) \
533 bs3-mode-TestDoModesStub.asm \
534 bs3-mode-TestDoModesByOneStub.asm \
535 bs3-mode-TestDoModesByMaxStub.asm \
536
537# The 32-bit long mode BS3Kit library.
538LIBRARIES += bs3kit-lm32
539bs3kit-lm32_TEMPLATE = VBoxBS3KitImg32
540bs3kit-lm32_INSTTYPE = none
541bs3kit-lm32_DEFS = TMPL_MODE=BS3_MODE_LM32
542bs3kit-lm32_SOURCES = $(VBOX_BS3KIT_MODE_SOURCES)
543
544# The 64-bit long mode BS3Kit library.
545LIBRARIES += bs3kit-lm64
546bs3kit-lm64_TEMPLATE = VBoxBS3KitImg64
547bs3kit-lm64_INSTTYPE = none
548bs3kit-lm64_DEFS = TMPL_MODE=BS3_MODE_LM64
549bs3kit-lm64_SOURCES = $(VBOX_BS3KIT_MODE_SOURCES) \
550 bs3-first-init-all-lm64.asm
551
552
553#
554# shutdown example.
555#
556MISCBINS += bs3-shutdown
557bs3-shutdown_TEMPLATE = VBoxBS3KitImg
558bs3-shutdown_SOURCES = \
559 bs3-first-pe16.asm \
560 bs3-shutdown.c
561
562
563#
564# DOS Utilities / Testcases.
565#
566MISCBINS += bs3cpudt
567bs3cpudt_TEMPLATE = VBoxBS3KitUtil
568bs3cpudt_SOURCES = \
569 bs3-first-dosexe.asm \
570 bs3cpudt.c
571
572
573#
574# Rule for regenerating bs3kit-mangling-functions-undef.h.
575#
576bs3kit-mangling-code-undef.h: $(PATH_SUB_CURRENT)/bs3kit-mangling-code-define.h $(MAKEFILE)
577 $(SED) \
578 -e 's/#\( *\)define \([a-zA-Z_][a-zA-Z0-9_]*\) .*$(DOLLAR)/#\1undef \2/' \
579 -e 's/Function needing mangling.*$(DOLLAR)/Undefining function mangling - automatically generated by the $@ makefile rule./' \
580 --output $(dir $<)bs3kit-mangling-code-undef.h \
581 $<
582
583#
584# Rule for regenerating bs3kit-mangling-functions-define.h.
585#
586bs3kit-mangling-code-define.h: \
587 $(PATH_SUB_CURRENT)/bs3kit.h \
588 $(PATH_SUB_CURRENT)/bs3-cmn-paging.h \
589 $(PATH_SUB_CURRENT)/bs3-cmn-test.h \
590 $(MAKEFILE)
591 $(APPEND) -tn "$(dir $<)$@" \
592 '/* $(DOLLAR)Id: $(DOLLAR) */' \
593 '/** @file' \
594 ' * BS3Kit - Function needing mangling - generated by the $@ makefile rule.' \
595 ' */' \
596 '' \
597 '/*' \
598 ' * Copyright (C) 2007-2020 Oracle Corporation' \
599 ' *' \
600 ' * This file is part of VirtualBox Open Source Edition (OSE), as' \
601 ' * available from http://www.virtualbox.org. This file is free software;' \
602 ' * you can redistribute it and/or modify it under the terms of the GNU' \
603 ' * General Public License (GPL) as published by the Free Software' \
604 ' * Foundation, in version 2 as it comes in the "COPYING" file of the' \
605 ' * VirtualBox OSE distribution. VirtualBox OSE is distributed in the' \
606 ' * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.' \
607 ' *' \
608 ' * The contents of this file may alternatively be used under the terms' \
609 ' * of the Common Development and Distribution License Version 1.0' \
610 ' * (CDDL) only, as it comes in the "COPYING.CDDL" file of the' \
611 ' * VirtualBox OSE distribution, in which case the provisions of the' \
612 ' * CDDL are applicable instead of those of the GPL.' \
613 ' *' \
614 ' * You may elect to license modified versions of this file under the' \
615 ' * terms and conditions of either the GPL or the CDDL or both.' \
616 ' */' \
617 ''
618 $(SED) -n \
619 -e 's/^ *BS3_CMN_PROTO_STUB([^,]*, *\([a-zA-Z_][a-zA-Z0-9_]*\) *,.*$(DOLLAR)/#define \1 BS3_CMN_MANGLER(\1)/p' \
620 -e 's/^ *BS3_CMN_PROTO_NOSB([^,]*, *\([a-zA-Z_][a-zA-Z0-9_]*\) *,.*$(DOLLAR)/#define \1 BS3_CMN_MANGLER(\1)/p' \
621 -e 's/^ *BS3_CMN_PROTO_FARSTUB([^,]*,[^,]*, *\([a-zA-Z_][a-zA-Z0-9_]*\) *,.*$(DOLLAR)/#define \1 BS3_CMN_MANGLER(\1)/p' \
622 $(filter %.h,$^) | sort >> "$(dir $<)bs3kit-mangling-code-define.h"
623 $(APPEND) -n "$(dir $<)$@" '#ifndef BS3_CMN_ONLY'
624 $(SED) -n \
625 -e 's/^ *BS3_MODE_PROTO_STUB([^,]*, *\([a-zA-Z_][a-zA-Z0-9_]*\) *,.*$(DOLLAR)/# define \1 BS3_MODE_MANGLER(\1)/p' \
626 -e 's/^ *BS3_MODE_PROTO_NOSB([^,]*, *\([a-zA-Z_][a-zA-Z0-9_]*\) *,.*$(DOLLAR)/# define \1 BS3_MODE_MANGLER(\1)/p' \
627 -e 's/^ *BS3_MODE_PROTO_FARSTUB([^,]*,[^,]*, *\([a-zA-Z_][a-zA-Z0-9_]*\) *,.*$(DOLLAR)/# define \1 BS3_MODE_MANGLER(\1)/p' \
628 $(filter %.h,$^) | sort >> "$(dir $<)bs3kit-mangling-code-define.h"
629 $(APPEND) -n "$(dir $<)$@" '#endif /* !BS3_CMN_ONLY */'
630
631#
632# Rule for regenerating bs3kit-autostubs.kmk.
633#
634bs3kit-autostubs.kmk: \
635 $(PATH_SUB_CURRENT)/bs3kit.h \
636 $(PATH_SUB_CURRENT)/bs3-cmn-memory.h \
637 $(PATH_SUB_CURRENT)/bs3-cmn-paging.h \
638 $(PATH_SUB_CURRENT)/bs3-cmn-test.h \
639 $(MAKEFILE)
640 $(APPEND) -tn "$(dir $<)$@" \
641 '# $(DOLLAR)Id: $(DOLLAR)' \
642 '## @file' \
643 '# BS3Kit - Automatic near/far stubs - generated by the $@ makefile rule.' \
644 '#' \
645 '' \
646 '#' \
647 '# Copyright (C) 2007-2020 Oracle Corporation' \
648 '#' \
649 '# This file is part of VirtualBox Open Source Edition (OSE), as' \
650 '# available from http://www.virtualbox.org. This file is free software;' \
651 '# you can redistribute it and/or modify it under the terms of the GNU' \
652 '# General Public License (GPL) as published by the Free Software' \
653 '# Foundation, in version 2 as it comes in the "COPYING" file of the' \
654 '# VirtualBox OSE distribution. VirtualBox OSE is distributed in the' \
655 '# hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.' \
656 '#' \
657 '# The contents of this file may alternatively be used under the terms' \
658 '# of the Common Development and Distribution License Version 1.0' \
659 '# (CDDL) only, as it comes in the "COPYING.CDDL" file of the' \
660 '# VirtualBox OSE distribution, in which case the provisions of the' \
661 '# CDDL are applicable instead of those of the GPL.' \
662 '#' \
663 '# You may elect to license modified versions of this file under the' \
664 '# terms and conditions of either the GPL or the CDDL or both.' \
665 '#' \
666 ''
667 $(SED) -n \
668 -e '/^ *BS3_CMN_PROTO_STUB/p' \
669 -e '/^ *BS3_CMN_PROTO_FARSTUB/p' \
670 -e '/^ *BS3_MODE_PROTO_STUB/p' \
671 -e '/^ *BS3_MODE_PROTO_FARSTUB/p' \
672 $(filter %.h,$^) \
673 | sort \
674 | $(SED) -n \
675 -e 's/^ *BS3_CMN_PROTO_STUB([^,]*, *\([a-zA-Z_][a-zA-Z0-9_]*\) *,.*$(DOLLAR)/\$(DOLLAR)(call BS3KIT_FN_GEN_CMN_NEARSTUB,bs3kit-common-16,\1)/p' \
676 -e 's/^ *BS3_MODE_PROTO_STUB([^,]*, *\([a-zA-Z_][a-zA-Z0-9_]*\) *,.*$(DOLLAR)/\$(DOLLAR)(call BS3KIT_FN_GEN_MODE_NEARSTUB,bs3kit-common-16,\1)/p' \
677 -e 's/^ *BS3_CMN_PROTO_FARSTUB( *\([^,]*\),[^,]*, *\([a-zA-Z_][a-zA-Z0-9_]*\) *,.*$(DOLLAR)/\$(DOLLAR)(call BS3KIT_FN_GEN_CMN_FARSTUB,bs3kit-common-16,\2,\1)/p' \
678 -e 's/^ *BS3_MODE_PROTO_FARSTUB( *\([^,]*\),[^,]*, *\([a-zA-Z_][a-zA-Z0-9_]*\) *,.*$(DOLLAR)/\$(DOLLAR)(call BS3KIT_FN_GEN_MODE_FARSTUB,bs3kit-common-16,\2,\1)/p' \
679 --append "$(dir $<)$@"
680
681bs3kit-update:: bs3kit-autostubs.kmk bs3kit-mangling-code-define.h bs3kit-mangling-code-undef.h
682.NOTPARALLEL: bs3kit-autostubs.kmk bs3kit-mangling-code-define.h bs3kit-mangling-code-undef.h
683
684
685include $(FILE_KBUILD_SUB_FOOTER)
686
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