VirtualBox

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

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

bs3kit: Implemented switching to long mode.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.3 KB
Line 
1; $Id: bs3-cmn-SwitchTo64Bit.asm 59245 2016-01-04 01:57:26Z 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%ifndef TMPL_CMN_LM
30
31;;
32; @cproto BS3_DECL(void) Bs3SwitchTo64Bit(void);
33;
34BS3_PROC_BEGIN_CMN Bs3SwitchTo64Bit
35 %if TMPL_BITS == 64
36 ret
37 %else
38 %if TMPL_BITS == 16
39 sub sp, 6 ; Space for extended return value (corrected in 64-bit mode).
40 %else
41 push xPRE [xSP] ; Duplicate the return address.
42 and dword [xSP + xCB], 0 ; Clear the high dword or it.
43 %endif
44 push dword 0
45 push sAX
46 push dword 0
47 pushfd
48 cli
49
50 ; Calc ring addend.
51 mov ax, cs
52 and xAX, 3
53 shl xAX, BS3_SEL_RING_SHIFT
54 add xAX, BS3_SEL_R0_CS64
55
56 ; setup far return.
57 push sAX
58 %if TMPL_BITS == 16
59 push dword .sixty_four_bit
60 o32 retf
61 %else
62 push .sixty_four_bit
63 retf
64 %endif
65
66BS3_SET_BITS 64
67.sixty_four_bit:
68
69 ; Load 64-bit segment registers (SS64==DS64).
70 add eax, BS3_SEL_R0_DS64 - BS3_SEL_R0_CS64
71 mov ss, ax
72 mov ds, ax
73 mov es, ax
74
75 %if TMPL_BITS == 16
76 movzx eax, word [rsp + 8*2+6]
77 add eax, BS3_ADDR_BS3TEXT16
78 mov [rsp + 8*2], rax
79 %endif
80
81 popfq
82 pop rax
83 ret
84 %endif
85BS3_PROC_END_CMN Bs3SwitchTo64Bit
86
87%endif
88
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