VirtualBox

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

Last change on this file since 102134 was 102134, checked in by vboxsync, 15 months ago

ValKit/bs3-cpu-basic-3: Simplified the template files. Fixed lea test status. bugref:10371

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 16.4 KB
Line 
1# $Id: Makefile.kmk 102134 2023-11-17 10:16:01Z vboxsync $
2## @file
3# VirtualBox Validation Kit - Bootsector Tests for Test Drivers or standalone testing.
4#
5
6#
7# Copyright (C) 2006-2023 Oracle and/or its affiliates.
8#
9# This file is part of VirtualBox base platform packages, as
10# available from https://www.virtualbox.org.
11#
12# This program is free software; you can redistribute it and/or
13# modify it under the terms of the GNU General Public License
14# as published by the Free Software Foundation, in version 3 of the
15# License.
16#
17# This program is distributed in the hope that it will be useful, but
18# WITHOUT ANY WARRANTY; without even the implied warranty of
19# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20# General Public License for more details.
21#
22# You should have received a copy of the GNU General Public License
23# along with this program; if not, see <https://www.gnu.org/licenses>.
24#
25# The contents of this file may alternatively be used under the terms
26# of the Common Development and Distribution License Version 1.0
27# (CDDL), a copy of it is provided in the "COPYING.CDDL" file included
28# in the VirtualBox distribution, in which case the provisions of the
29# CDDL are applicable instead of those of the GPL.
30#
31# You may elect to license modified versions of this file under the
32# terms and conditions of either the GPL or the CDDL or both.
33#
34# SPDX-License-Identifier: GPL-3.0-only OR CDDL-1.0
35#
36
37SUB_DEPTH = ../../../..
38include $(KBUILD_PATH)/subheader.kmk
39
40
41#
42# Make sure our Config.kmk gets included when kmk is running from a parent directory.
43#
44ifndef VBOX_BOOTSECTORS_CONFIG_KMK_INCLUDED
45 include $(PATH_SUB_CURRENT)/Config.kmk
46endif
47
48
49#
50# Include sub-makefile.
51#
52# The VBOX_WITH_BS3KIT feature requires NASM 2.12 and either MSVC or gcc
53# with ms_abi function attribute (gcc v4.4+, MSVC default).
54# Some 32-bit gcc compilers come without 64-bit support (e.g. EL5).
55#
56if defined(VBOX_WITH_OPEN_WATCOM)
57 if1of ($(KBUILD_TARGET), win)
58 VBOX_WITH_BS3KIT = 1
59 else if $(VBOX_GCC_VERSION_CC) >= 40400 # ms_abi was added in 4.4
60 if1of ($(KBUILD_TARGET), linux)
61 ifneq ($(VBOX_GCC_m64),)
62 VBOX_WITH_BS3KIT = 1
63 endif
64 endif
65 endif
66 ifdef VBOX_WITH_BS3KIT
67 include $(PATH_SUB_CURRENT)/bs3kit/Makefile.kmk
68 endif
69endif
70
71
72#
73# Boot Sector "Linker" tool.
74#
75TOOL_VBoxBootSectorLd = Joins one or more BS2 object files into a floppy img.
76TOOL_VBoxBootSectorLd_LINK_MISCBIN_OUTPUT =
77TOOL_VBoxBootSectorLd_LINK_MISCBIN_DEPEND =
78TOOL_VBoxBootSectorLd_LINK_MISCBIN_DEPORD = $(VBoxBs2Linker_1_TARGET)
79define TOOL_VBoxBootSectorLd_LINK_MISCBIN_CMDS
80 $(VBoxBs2Linker_1_TARGET) -o $(out) $(objs) $(othersrc)
81endef
82
83BLDPROGS += VBoxBs2Linker
84VBoxBs2Linker_TEMPLATE = VBoxBldProg
85VBoxBs2Linker_SOURCES = VBoxBs2Linker.cpp
86
87
88#
89# Makes a boot sector test image.
90#
91TEMPLATE_VBoxBsTestImg = kBuild tool config for building boot sector stuff.
92TEMPLATE_VBoxBsTestImg_INST = $(INST_VALIDATIONKIT)bootsectors/
93TEMPLATE_VBoxBsTestImg_BINSUFF = .img
94TEMPLATE_VBoxBsTestImg_MODE = 0644
95TEMPLATE_VBoxBsTestImg_ASTOOL = YASM
96TEMPLATE_VBoxBsTestImg_ASFLAGS = -f bin -P $(VBOX_PATH_BOOTSECTORS_SRC)/bootsector2-first.mac $(VBOX_YASM_Wno-segreg-in-64bit) --mapfile
97TEMPLATE_VBoxBsTestImg_ASDEFS = ASM_FORMAT_BIN
98TEMPLATE_VBoxBsTestImg_INCS = \
99 . \
100 ../../VMM/testcase/Instructions
101TEMPLATE_VBoxBsTestImg_LDTOOL = VBoxBootSectorLd
102
103
104#
105# The boot sector tests.
106#
107MISCBINS += bootsector-shutdown
108bootsector-shutdown_TEMPLATE = VBoxBsTestImg
109bootsector-shutdown_SOURCES = bootsector-shutdown.asm
110
111MISCBINS += bootsector-pae
112bootsector-pae_TEMPLATE = VBoxBsTestImg
113bootsector-pae_SOURCES = bootsector-pae.asm
114
115MISCBINS += bootsector-empty
116bootsector-empty_TEMPLATE = VBoxBsTestImg
117bootsector-empty_SOURCES = bootsector-empty.asm
118
119MISCBINS += bootsector2-test1
120bootsector2-test1_TEMPLATE = VBoxBsTestImg
121bootsector2-test1_SOURCES = bootsector2-test1.asm
122
123MISCBINS += bootsector2-cpu-hidden-regs-1
124bootsector2-cpu-hidden-regs-1_TEMPLATE = VBoxBsTestImg
125bootsector2-cpu-hidden-regs-1_SOURCES = bootsector2-cpu-hidden-regs-1.asm
126
127MISCBINS += bootsector2-cpu-instr-1
128bootsector2-cpu-instr-1_TEMPLATE = VBoxBsTestImg
129bootsector2-cpu-instr-1_SOURCES = bootsector2-cpu-instr-1.asm
130
131MISCBINS += bootsector2-cpu-pf-1
132bootsector2-cpu-pf-1_TEMPLATE = VBoxBsTestImg
133bootsector2-cpu-pf-1_SOURCES = bootsector2-cpu-pf-1.asm
134
135MISCBINS += bootsector2-cpu-xcpt-1
136bootsector2-cpu-xcpt-1_TEMPLATE = VBoxBsTestImg
137bootsector2-cpu-xcpt-1_SOURCES = bootsector2-cpu-xcpt-1.asm
138
139MISCBINS += bootsector2-cpu-xcpt-2
140bootsector2-cpu-xcpt-2_TEMPLATE = VBoxBsTestImg
141bootsector2-cpu-xcpt-2_SOURCES = bootsector2-cpu-xcpt-2.asm
142
143MISCBINS += bootsector2-cpu-a20-1
144bootsector2-cpu-a20-1_TEMPLATE = VBoxBsTestImg
145bootsector2-cpu-a20-1_SOURCES = bootsector2-cpu-a20-1.asm
146
147MISCBINS += bootsector2-cpu-basic-1
148bootsector2-cpu-basic-1_TEMPLATE = VBoxBsTestImg
149bootsector2-cpu-basic-1_SOURCES = bootsector2-cpu-basic-1.asm
150
151MISCBINS += bootsector2-cpu-ac-loop
152bootsector2-cpu-ac-loop_TEMPLATE = VBoxBsTestImg
153bootsector2-cpu-ac-loop_SOURCES = bootsector2-cpu-ac-loop.asm
154
155MISCBINS += bootsector2-cpu-db-loop
156bootsector2-cpu-db-loop_TEMPLATE = VBoxBsTestImg
157bootsector2-cpu-db-loop_SOURCES = bootsector2-cpu-db-loop.asm
158
159MISCBINS += bootsector2-boot-registers-1
160bootsector2-boot-registers-1_TEMPLATE = VBoxBsTestImg
161bootsector2-boot-registers-1_SOURCES = bootsector2-boot-registers-1.asm
162
163MISCBINS += bootsector2-triple-fault-1
164bootsector2-triple-fault-1_TEMPLATE = VBoxBsTestImg
165bootsector2-triple-fault-1_SOURCES = bootsector2-triple-fault-1.asm
166
167
168ifeq ($(USERNAME),birdxx)
169 if1of ($(KBUILD_HOST).$(KBUILD_HOST_ARCH), win.amd64)
170 #
171 # Generated instruction tests (work in progress).
172 #
173
174 VBOX_PATH_VBINSTST = $(PATH_ROOT)/src/VBox/VMM/testcase/Instructions
175 VBOX_VBINSTST_GEN = $(VBOX_PATH_VBINSTST)/InstructionTestGen.py
176 VBOX_BOOTSECTOR2_VBINSTST_AMD64_GEN = $(VBOX_BLD_PYTHON) $(VBOX_VBINSTST_GEN) \
177 --split 3 --target bs2-r0-64 --output-base $(bootsectors_0_OUTDIR)/VBInsTst-64 --test-size tiny
178 VBOX_BOOTSECTOR2_VBINSTST_AMD64_FILES = $(shell $(VBOX_BOOTSECTOR2_VBINSTST_AMD64_GEN) --makefile-mode)
179
180 #$$(bootsectors_0_OUTDIR)/VBInsTst.ts + $$(VBOX_BOOTSECTOR2_VBINSTST_AMD64_FILES): $(VBOX_VBINSTST_GEN) | $$(dir $$@)
181 # $(VBOX_BOOTSECTOR2_VBINSTST_AMD64_GEN)
182 # $(APPEND) -t $@
183 #
184 #bootsectors_SOURCES += $(bootsectors_0_OUTDIR)/bootsector2-vbinstst-1.img
185 #bootsectors_CLEAN += $(VBOX_BOOTSECTOR2_VBINSTST_AMD64_FILES)
186 #
187 #$$(bootsectors_0_OUTDIR)/bootsector2-vbinstst-1.img: \
188 # $(PATH_SUB_CURRENT)/bootsector2-vbinstst-64-1.asm \
189 # $$(bootsectors_0_OUTDIR)/VBInsTst-64.asm
190 # $(TOOL_$(VBOX_ASTOOL)_AS) -f bin -D ASM_FORMAT_BIN -I $(dir $@) -I $(PATH_ROOT)/include -I $(VBOX_PATH_VBINSTST) -o $@ -L nasm -l [email protected] $<
191
192 MISCBINS += bootsector2-vbinstst-kernel
193 bootsector2-vbinstst-kernel_TEMPLATE = VBoxBsTestImg
194 bootsector2-vbinstst-kernel_SOURCES = \
195 bootsector2-vbinstst-kernel.asm
196
197
198 MISCBINS += bootsector2-vbinstst-64-1
199 bootsector2-vbinstst-64-1_TEMPLATE = VBoxBsTestImg
200 bootsector2-vbinstst-64-1_DEFS = \
201 BS2_BIG_IMAGE_LM64 \
202 BS2_BIG_IMAGE_GEN_SOURCE_FILE=bs2-vbinstst-64-1.asm \
203 BS2_BIG_IMAGE_GEN_TEST_NAME=\"bs2-vbinstst-64-1\"
204 bootsector2-vbinstst-64-1_INCS = $(bootsector2-vbinstst-64-1_0_OUTDIR)/
205 bootsector2-vbinstst-64-1_SOURCES = \
206 bootsector2-vbinstst-kernel.asm \
207 bootsector2-vbinstst-big-template.asm
208 bootsector2-vbinstst-64-1_INTERMEDIATES = \
209 $(bootsector2-vbinstst-64-1_0_OUTDIR)/bs2-vbinstst-64-1.asm
210 bootsector2-vbinstst-64-1_CLEAN = \
211 $(bootsector2-vbinstst-64-1_0_OUTDIR)/bs2-vbinstst-64-1.asm
212
213 $$(bootsector2-vbinstst-64-1_0_OUTDIR)/bs2-vbinstst-64-1.asm: $(VBOX_VBINSTST_GEN) | $$(dir $$@)
214 $(REDIRECT) -0 /dev/null -- $(VBOX_BLD_PYTHON) $(VBOX_VBINSTST_GEN) --target bs2-r0-64-big --output-base $(basename $@) --test-size medium
215
216 MISCBINS += bootsector2-vbinstst-32-1
217 bootsector2-vbinstst-32-1_TEMPLATE = VBoxBsTestImg
218 bootsector2-vbinstst-32-1_DEFS = \
219 BS2_BIG_IMAGE_PP32 \
220 BS2_BIG_IMAGE_GEN_SOURCE_FILE=bs2-vbinstst-32-1.asm \
221 BS2_BIG_IMAGE_GEN_TEST_NAME=\"bs2-vbinstst-32-1\"
222 bootsector2-vbinstst-32-1_INCS = $(bootsector2-vbinstst-32-1_0_OUTDIR)/
223 bootsector2-vbinstst-32-1_SOURCES = \
224 bootsector2-vbinstst-kernel.asm \
225 bootsector2-vbinstst-big-template.asm
226 bootsector2-vbinstst-32-1_INTERMEDIATES = \
227 $(bootsector2-vbinstst-32-1_0_OUTDIR)/bs2-vbinstst-32-1.asm
228 bootsector2-vbinstst-32-1_CLEAN = \
229 $(bootsector2-vbinstst-32-1_0_OUTDIR)/bs2-vbinstst-32-1.asm
230
231 $$(bootsector2-vbinstst-32-1_0_OUTDIR)/bs2-vbinstst-32-1.asm: $(VBOX_VBINSTST_GEN) | $$(dir $$@)
232 $(REDIRECT) -0 /dev/null -- $(VBOX_BLD_PYTHON) $(VBOX_VBINSTST_GEN) --target bs2-r0-32-big --output-base $(basename $@) --test-size medium
233
234 endif
235endif # bird-only
236
237
238ifdef VBOX_WITH_BS3KIT
239 #
240 # Bs3kit
241 #
242
243 #
244 # APIC
245 #
246 MISCBINS += bs3-apic-1
247 bs3-apic-1_TEMPLATE = VBoxBS3KitImg
248 bs3-apic-1_SOURCES = \
249 bs3kit/bs3-first-rm.asm \
250 bs3-apic-1.c \
251 bs3-apic-1-32.c32
252
253
254 # CPU basics #2 (first being bootsector2-cpu-basic-1).
255 MISCBINS += bs3-cpu-basic-2
256 bs3-cpu-basic-2_TEMPLATE = VBoxBS3KitImg
257 bs3-cpu-basic-2_INCS = .
258 bs3-cpu-basic-2_DEFS = BS3_CMN_INSTANTIATE_FILE1=bs3-cpu-basic-2-template.c
259 bs3-cpu-basic-2_DEFS += BS3_MODE_INSTANTIATE_FILE1=bs3-cpu-basic-2-template.c
260 bs3-cpu-basic-2_SOURCES = \
261 bs3kit/bs3-first-rm.asm \
262 bs3-cpu-basic-2.c \
263 bs3-cpu-basic-2-x0.c \
264 bs3-cpu-basic-2-32.c32 \
265 bs3-cpu-basic-2-pf.c32 \
266 bs3kit/bs3-cmn-instantiate-x0.c16 \
267 bs3kit/bs3-cmn-instantiate.c32 \
268 bs3kit/bs3-cmn-instantiate.c64 \
269 bs3-cpu-basic-2-asm.asm
270 bs3-cpu-basic-2-template.o:: \
271 $$(bs3-cpu-basic-2_0_OUTDIR)/bs3kit/bs3-cmn-instantiate-x0.o16 \
272 $$(bs3-cpu-basic-2_0_OUTDIR)/bs3kit/bs3-cmn-instantiate.o32 \
273 $$(bs3-cpu-basic-2_0_OUTDIR)/bs3kit/bs3-cmn-instantiate.o64 \
274 $$(bs3-cpu-basic-2_0_OUTDIR)/bs3-cpu-basic-2-asm.o16
275
276 # CPU basics #3 (first being bootsector2-cpu-basic-1).
277 MISCBINS += bs3-cpu-basic-3
278 bs3-cpu-basic-3_TEMPLATE = VBoxBS3KitImg
279 bs3-cpu-basic-3_INCS = .
280 bs3-cpu-basic-3_DEFS = BS3_CMN_INSTANTIATE_FILE1=bs3-cpu-basic-3-cmn-template.c
281 #bs3-cpu-basic-3_DEFS += BS3_MODE_INSTANTIATE_FILE1=bs3-cpu-basic-3-mode-template.c
282 bs3-cpu-basic-3_SOURCES = \
283 bs3kit/bs3-first-rm.asm \
284 bs3-cpu-basic-3.c \
285 bs3kit/bs3-cmn-instantiate-x0.c16 \
286 bs3kit/bs3-cmn-instantiate.c32 \
287 bs3kit/bs3-cmn-instantiate.c64 \
288 bs3-cpu-basic-3-asm.asm
289 bs3-cpu-basic-3-cmn-template.o:: \
290 $$(bs3-cpu-basic-3_0_OUTDIR)/bs3kit/bs3-cmn-instantiate-x0.o16 \
291 $$(bs3-cpu-basic-3_0_OUTDIR)/bs3kit/bs3-cmn-instantiate.o32 \
292 $$(bs3-cpu-basic-3_0_OUTDIR)/bs3kit/bs3-cmn-instantiate.o64 \
293 $$(bs3-cpu-basic-3_0_OUTDIR)/bs3-cpu-basic-3-asm.o16
294
295 #
296 # CPU weird stuff #1.
297 #
298 MISCBINS += bs3-cpu-weird-1
299 bs3-cpu-weird-1_TEMPLATE = VBoxBS3KitImg
300 bs3-cpu-weird-1_INCS = .
301 bs3-cpu-weird-1_SOURCES = \
302 bs3kit/bs3-first-rm.asm \
303 bs3-cpu-weird-1.c \
304 bs3-cpu-weird-1-x0.c \
305 bs3-cpu-weird-1-asm.asm
306
307 #
308 # 64-bit CPU state #1.
309 #
310 MISCBINS += bs3-cpu-state64-1
311 bs3-cpu-state64-1_TEMPLATE = VBoxBS3KitImg
312 bs3-cpu-state64-1_INCS = .
313 bs3-cpu-state64-1_SOURCES = \
314 bs3kit/bs3-first-init-all-lm64.asm \
315 bs3-cpu-state64-1.c64 \
316 bs3-cpu-state64-1-asm.asm
317
318 #
319 # FPU state corruption checker.
320 #
321 MISCBINS += bs3-fpustate-1
322 bs3-fpustate-1_TEMPLATE = VBoxBS3KitImg
323 bs3-fpustate-1_INCS = .
324 bs3-fpustate-1_DEFS = BS3_CMN_INSTANTIATE_FILE1=bs3-fpustate-1-template.c
325 bs3-fpustate-1_DEFS += BS3_MODE_INSTANTIATE_FILE1=bs3-fpustate-1-template.c
326 bs3-fpustate-1_SOURCES = \
327 bs3kit/bs3-first-rm.asm \
328 bs3-fpustate-1.c \
329 bs3kit/bs3-cmn-instantiate.c16 \
330 bs3kit/bs3-cmn-instantiate.c32 \
331 bs3kit/bs3-cmn-instantiate.c64 \
332 bs3-fpustate-1-asm.asm
333 bs3-fpustate-1-template.o:: \
334 $$(bs3-fpustate-1_0_OUTDIR)/bs3kit/bs3-cmn-instantiate.o16 \
335 $$(bs3-fpustate-1_0_OUTDIR)/bs3kit/bs3-cmn-instantiate.o32 \
336 $$(bs3-fpustate-1_0_OUTDIR)/bs3kit/bs3-cmn-instantiate.o64 \
337 $$(bs3-fpustate-1_0_OUTDIR)/bs3-fpustate-1-asm.o16
338
339 #
340 # CPU instruction decoding experiments.
341 #
342 MISCBINS += bs3-cpu-decoding-1
343 bs3-cpu-decoding-1_TEMPLATE = VBoxBS3KitImg
344 bs3-cpu-decoding-1_INCS = .
345 bs3-cpu-decoding-1_DEFS = BS3_CMN_INSTANTIATE_FILE1=bs3-cpu-decoding-1-template.c
346 bs3-cpu-decoding-1_DEFS += BS3_MODE_INSTANTIATE_FILE1=bs3-cpu-decoding-1-template.c
347 bs3-cpu-decoding-1_SOURCES = \
348 bs3kit/bs3-first-init-all-pp32.asm \
349 bs3-cpu-decoding-1.c32 \
350 bs3-cpu-decoding-1-asm.asm
351 # bs3kit/bs3-cmn-instantiate.c16 \
352 # bs3kit/bs3-cmn-instantiate.c32 \
353 # bs3kit/bs3-cmn-instantiate.c64
354 bs3-cpu-decoding-1-template.o:: \
355 $$(bs3-cpu-decoding-1_0_OUTDIR)/bs3-cpu-decoding-1-asm.o16
356 # $$(bs3-cpu-decoding-1_0_OUTDIR)/bs3kit/bs3-cmn-instantiate.o16 \
357 # $$(bs3-cpu-decoding-1_0_OUTDIR)/bs3kit/bs3-cmn-instantiate.o32 \
358 # $$(bs3-cpu-decoding-1_0_OUTDIR)/bs3kit/bs3-cmn-instantiate.o64 \
359
360
361 #
362 # CPU instructions #2 (first being bootsector2-cpu-instr-1).
363 #
364 MISCBINS += bs3-cpu-instr-2
365 bs3-cpu-instr-2_TEMPLATE = VBoxBS3KitImg
366 bs3-cpu-instr-2_INCS = .
367 bs3-cpu-instr-2_DEFS = BS3_CMN_INSTANTIATE_FILE1=bs3-cpu-instr-2-template.c
368 bs3-cpu-instr-2_DEFS += BS3_MODE_INSTANTIATE_FILE1=bs3-cpu-instr-2-template.c
369 bs3-cpu-instr-2_SOURCES = \
370 bs3kit/bs3-first-rm.asm \
371 bs3-cpu-instr-2.c \
372 bs3-cpu-instr-2-asm.asm \
373 bs3kit/bs3-cmn-instantiate-x0.c16 \
374 bs3kit/bs3-cmn-instantiate.c32 \
375 bs3kit/bs3-cmn-instantiate.c64
376 bs3-cpu-instr-2-template.o:: \
377 $$(bs3-cpu-instr-2_0_OUTDIR)/bs3kit/bs3-cmn-instantiate-x0.o16 \
378 $$(bs3-cpu-instr-2_0_OUTDIR)/bs3kit/bs3-cmn-instantiate.o32 \
379 $$(bs3-cpu-instr-2_0_OUTDIR)/bs3kit/bs3-cmn-instantiate.o64 \
380 $$(bs3-cpu-instr-2_0_OUTDIR)/bs3-cpu-instr-2-asm.o16
381
382 #
383 # CPU instructions #3 - SSE, ++.
384 #
385 MISCBINS += bs3-cpu-instr-3
386 bs3-cpu-instr-3_TEMPLATE = VBoxBS3KitImg
387 bs3-cpu-instr-3_INCS = .
388 bs3-cpu-instr-3_SOURCES = \
389 bs3kit/bs3-first-init-all-pe32.asm \
390 bs3-cpu-instr-3.c32 \
391 bs3-cpu-instr-3-asm.asm
392 bs3-cpu-instr-3-template.o:: \
393 $$(bs3-cpu-instr-3_0_OUTDIR)/bs3-cpu-instr-3-asm.o16
394
395 #
396 # CPU generated instruction tests #1
397 #
398 MISCBINS += bs3-cpu-generated-1
399 bs3-cpu-generated-1_TEMPLATE = VBoxBS3KitImg
400 bs3-cpu-generated-1_INCS = .
401 bs3-cpu-generated-1_DEFS = BS3_CMN_INSTANTIATE_FILE1=bs3-cpu-generated-1-template.c
402 bs3-cpu-generated-1_SOURCES = \
403 bs3kit/bs3-first-rm.asm \
404 bs3-cpu-generated-1.c \
405 bs3-cpu-generated-1-asm.asm \
406 bs3kit/bs3-cmn-instantiate-x0.c16 \
407 bs3kit/bs3-cmn-instantiate.c32 \
408 bs3kit/bs3-cmn-instantiate.c64 \
409 $(bs3-cpu-generated-1_0_OUTDIR)/bs3-cpu-generated-1-data.c16
410 bs3-cpu-generated-1_CLEAN = $(bs3-cpu-generated-1_0_OUTDIR)/bs3-cpu-generated-1-data.c16
411
412 bs3-cpu-generated-1-template.o:: \
413 $$(bs3-cpu-generated-1_0_OUTDIR)/bs3kit/bs3-cmn-instantiate-x0.o16 \
414 $$(bs3-cpu-generated-1_0_OUTDIR)/bs3kit/bs3-cmn-instantiate.o32 \
415 $$(bs3-cpu-generated-1_0_OUTDIR)/bs3kit/bs3-cmn-instantiate.o64 \
416 $$(bs3-cpu-generated-1_0_OUTDIR)/bs3-cpu-generated-1-asm.o16
417
418 $$(bs3-cpu-generated-1_0_OUTDIR)/bs3-cpu-generated-1-data.c16: \
419 $(PATH_SUB_CURRENT)/bs3-cpu-generated-1-data.py \
420 $(PATH_SUB_CURRENT)/../../VMM/VMMAll/IEMAllInstPython.py \
421 $(PATH_SUB_CURRENT)/../../VMM/VMMAll/IEMAllInst*.cpp.h \
422 | $$(dir $$@)
423 $(REDIRECT) -0 /dev/null -- $(VBOX_BLD_PYTHON) $< $@
424
425 #
426 # Memory allocation.
427 #
428 MISCBINS += bs3-memalloc-1
429 bs3-memalloc-1_TEMPLATE = VBoxBS3KitImg
430 bs3-memalloc-1_INCS = .
431 bs3-memalloc-1_SOURCES = \
432 bs3kit/bs3-first-init-all-lm64.asm \
433 bs3-memalloc-1.c64
434
435
436 #
437 # Timer Interrupts
438 #
439 MISCBINS += bs3-timers-1
440 bs3-timers-1_TEMPLATE = VBoxBS3KitImg
441 bs3-timers-1_INCS = .
442 bs3-timers-1_DEFS = BS3_CMN_INSTANTIATE_FILE1=bs3-timers-1-template.c
443 bs3-timers-1_DEFS += BS3_MODE_INSTANTIATE_FILE1=bs3-timers-1-template.c
444 bs3-timers-1_SOURCES = \
445 bs3kit/bs3-first-rm.asm \
446 bs3-timers-1.c \
447 bs3-timers-1-x0.c \
448 bs3-timers-1-asm.asm
449
450 #
451 # Timing
452 #
453 MISCBINS += bs3-timing-1
454 bs3-timing-1_TEMPLATE = VBoxBS3KitImg
455 bs3-timing-1_INCS = .
456 bs3-timing-1_DEFS = BS3_CMN_INSTANTIATE_FILE1=bs3-timing-1-template.c
457 bs3-timing-1_DEFS += BS3_MODE_INSTANTIATE_FILE1=bs3-timing-1-template.c
458 bs3-timing-1_SOURCES = \
459 bs3kit/bs3-first-rm.asm \
460 bs3-timing-1.c \
461 bs3-timing-1-32.c32
462
463 #
464 # Lock contention and interruption.
465 #
466 MISCBINS += bs3-locking-1
467 bs3-locking-1_TEMPLATE = VBoxBS3KitImg
468 bs3-locking-1_INCS = .
469 bs3-locking-1_SOURCES = \
470 bs3kit/bs3-first-rm.asm \
471 bs3-locking-1.c
472
473endif # VBOX_WITH_BS3KIT
474
475
476#
477# Executable version of the bs3-timing-1 bootsector.
478#
479PROGRAMS += bs3-timing-1-exe
480bs3-timing-1-exe_TEMPLATE = VBoxValidationKitR3
481bs3-timing-1-exe_NAME = bs3-timing-1
482bs3-timing-1-exe_SOURCES = bs3-timing-1-exe.c
483
484
485#
486# pylint
487#
488VBOX_VALIDATIONKIT_PYTHON_SOURCES += $(wildcard $(PATH_SUB_CURRENT)/*.py)
489$(evalcall def_vbox_validationkit_process_python_sources)
490
491include $(FILE_KBUILD_SUB_FOOTER)
492
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