1 | ; $Id: bootsector2-vbinstst-64-1.asm 62484 2016-07-22 18:35:33Z vboxsync $
|
---|
2 | ;; @file
|
---|
3 | ; Bootsector tests instructions in 64-bit mode.
|
---|
4 | ; VBoxManage setextradata bs-vbinstst-64-1 VBoxInternal/Devices/VMMDev/0/Config/TestingEnabled 1
|
---|
5 | ;
|
---|
6 |
|
---|
7 | ;
|
---|
8 | ; Copyright (C) 2007-2016 Oracle Corporation
|
---|
9 | ;
|
---|
10 | ; This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
11 | ; available from http://www.virtualbox.org. This file is free software;
|
---|
12 | ; you can redistribute it and/or modify it under the terms of the GNU
|
---|
13 | ; General Public License (GPL) as published by the Free Software
|
---|
14 | ; Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
15 | ; VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
16 | ; hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
17 | ;
|
---|
18 | ; The contents of this file may alternatively be used under the terms
|
---|
19 | ; of the Common Development and Distribution License Version 1.0
|
---|
20 | ; (CDDL) only, as it comes in the "COPYING.CDDL" file of the
|
---|
21 | ; VirtualBox OSE distribution, in which case the provisions of the
|
---|
22 | ; CDDL are applicable instead of those of the GPL.
|
---|
23 | ;
|
---|
24 | ; You may elect to license modified versions of this file under the
|
---|
25 | ; terms and conditions of either the GPL or the CDDL or both.
|
---|
26 | ;
|
---|
27 |
|
---|
28 |
|
---|
29 | %include "iprt/asmdefs.mac"
|
---|
30 | %include "iprt/x86.mac"
|
---|
31 | %include "VBox/VMMDevTesting.mac"
|
---|
32 |
|
---|
33 | ;
|
---|
34 | ; Include and execute the init code.
|
---|
35 | ;
|
---|
36 | %define BS2_INIT_RM
|
---|
37 | %define BS2_INC_LM64
|
---|
38 | %define BS2_WITH_TRAPS
|
---|
39 | %include "bootsector2-common-init-code.mac"
|
---|
40 |
|
---|
41 |
|
---|
42 | ;
|
---|
43 | ; The benchmark driver
|
---|
44 | ;
|
---|
45 | BEGINPROC main
|
---|
46 | ;
|
---|
47 | ; Test prologue.
|
---|
48 | ;
|
---|
49 | cli
|
---|
50 | mov ax, .s_szTstName
|
---|
51 | call TestInit_r86
|
---|
52 | call Bs2EnableA20_r86
|
---|
53 | call Bs2PanicIfVMMDevTestingIsMissing_r86
|
---|
54 | lea eax, [dword the_end]
|
---|
55 | cmp eax, dword 80000h
|
---|
56 | jae .size_nok
|
---|
57 |
|
---|
58 |
|
---|
59 | ;
|
---|
60 | ; Do the testing.
|
---|
61 | ;
|
---|
62 | call Bs2IsModeSupported_rm_lm64
|
---|
63 | jz .done
|
---|
64 | call Bs2EnterMode_rm_lm64
|
---|
65 | BITS 64
|
---|
66 |
|
---|
67 | call TestInstrMain_lm64
|
---|
68 |
|
---|
69 | call TestSubDone_p64
|
---|
70 | call Bs2ExitMode_lm64
|
---|
71 | BITS 16
|
---|
72 | .done:
|
---|
73 |
|
---|
74 | ;
|
---|
75 | ; We're done.
|
---|
76 | ;
|
---|
77 | call TestTerm_r86
|
---|
78 | call Bs2Panic
|
---|
79 | jmp .done
|
---|
80 |
|
---|
81 | .size_nok:
|
---|
82 | push eax
|
---|
83 | push word ds
|
---|
84 | push .s_szSizeNok
|
---|
85 | call TestFailedF_r86
|
---|
86 | jmp .done
|
---|
87 |
|
---|
88 | .s_szSizeNok:
|
---|
89 | db 'Test is too big (%RX32)', 0
|
---|
90 | .s_szTstName:
|
---|
91 | db 'VBInsTst-64-1', 0
|
---|
92 | ENDPROC main
|
---|
93 |
|
---|
94 |
|
---|
95 | ;
|
---|
96 | ; Instantiate the template code.
|
---|
97 | ;
|
---|
98 | %include "bootsector2-template-footer.mac" ; reset the initial environemnt.
|
---|
99 |
|
---|
100 | %define TMPL_LM64
|
---|
101 | %include "bootsector2-template-header.mac"
|
---|
102 | BITS 64
|
---|
103 | %include "VBInsTst-64.asm"
|
---|
104 | %include "bootsector2-template-footer.mac"
|
---|
105 |
|
---|
106 |
|
---|
107 | ;
|
---|
108 | ; End sections and image.
|
---|
109 | ;
|
---|
110 | %include "bootsector2-common-end.mac"
|
---|
111 |
|
---|