VirtualBox

source: vbox/trunk/src/VBox/ValidationKit/bootsectors/bs3kit/bs3-cmn-SwitchTo64Bit.asm@ 59885

Last change on this file since 59885 was 59885, checked in by vboxsync, 9 years ago

bs3kit: updates

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.8 KB
Line 
1; $Id: bs3-cmn-SwitchTo64Bit.asm 59885 2016-03-01 12:13:37Z vboxsync $
2;; @file
3; BS3Kit - Bs3SwitchTo64Bit
4;
5
6;
7; Copyright (C) 2007-2015 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
27%include "bs3kit-template-header.mac"
28
29%if TMPL_BITS != 64
30BS3_EXTERN_DATA16 g_bBs3CurrentMode
31TMPL_BEGIN_TEXT
32%endif
33
34
35;;
36; @cproto BS3_DECL(void) Bs3SwitchTo64Bit(void);
37;
38; @remarks Does not require 20h of parameter scratch space in 64-bit mode.
39;
40BS3_PROC_BEGIN_CMN Bs3SwitchTo64Bit
41%if TMPL_BITS == 64
42 ret
43
44%elif BS3_MODE_IS_RM_OR_V86(TMPL_MODE)
45.again: int3 ; Makes no sense to go to 64-bit mode from real or v8086 mode.
46 jmp .again
47
48%else
49 %if TMPL_BITS == 16
50 sub sp, 6 ; Space for extended return value (corrected in 64-bit mode).
51 %else
52 push xPRE [xSP] ; Duplicate the return address.
53 and dword [xSP + xCB], 0 ; Clear the high dword or it.
54 %endif
55 push dword 0
56 push sAX
57 push dword 0
58 pushfd
59 cli
60
61 ; Calc ring addend.
62 mov ax, cs
63 and xAX, 3
64 shl xAX, BS3_SEL_RING_SHIFT
65 add xAX, BS3_SEL_R0_CS64
66
67 ; setup far return.
68 push sAX
69%if TMPL_BITS == 16
70 push dword .sixty_four_bit
71 o32 retf
72%else
73 push .sixty_four_bit
74 retf
75%endif
76
77BS3_SET_BITS 64
78.sixty_four_bit:
79
80 ; Load 64-bit segment registers (SS64==DS64).
81 add eax, BS3_SEL_R0_DS64 - BS3_SEL_R0_CS64
82 mov ss, ax
83 mov ds, ax
84 mov es, ax
85
86 ; Update globals.
87 and byte [BS3_WRT_RIP(g_bBs3CurrentMode)], ~BS3_MODE_CODE_MASK
88 or byte [BS3_WRT_RIP(g_bBs3CurrentMode)], BS3_MODE_CODE_64
89
90 %if TMPL_BITS == 16
91 movzx eax, word [rsp + 8*2+6]
92 add eax, BS3_ADDR_BS3TEXT16
93 mov [rsp + 8*2], rax
94 %endif
95
96 popfq
97 pop rax
98 ret
99%endif
100BS3_PROC_END_CMN Bs3SwitchTo64Bit
101
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