VirtualBox

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

Last change on this file since 60674 was 60657, 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: 3.4 KB
Line 
1; $Id: bs3-cmn-SelFlatDataToProtFar16.asm 60657 2016-04-22 15:57:22Z vboxsync $
2;; @file
3; BS3Kit - Bs3SelFlatDataToProtFar16.
4;
5
6;
7; Copyright (C) 2007-2016 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
28;*********************************************************************************************************************************
29;* Header Files *
30;*********************************************************************************************************************************
31%include "bs3kit-template-header.mac"
32
33
34;*********************************************************************************************************************************
35;* External Symbols *
36;*********************************************************************************************************************************
37%ifdef BS3_STRICT
38BS3_EXTERN_CMN Bs3Panic
39%endif
40
41TMPL_BEGIN_TEXT
42%if TMPL_BITS == 16
43CPU 8086
44%endif
45
46
47;;
48; @cproto BS3_CMN_PROTO_NOSB(uint32_t, Bs3SelFlatDataToProtFar16,(uint32_t uFlatAddr));
49;
50; @uses Only return registers (ax:dx, eax, eax)
51; @remarks No 20h scratch area requirements.
52;
53BS3_PROC_BEGIN_CMN Bs3SelFlatDataToProtFar16, BS3_PBC_NEAR ; Far stub generated by the makefile/bs3kit.h.
54 push xBP
55 mov xBP, xSP
56
57 ;
58 ; Just translate the address to tiled.
59 ;
60%if TMPL_BITS == 16
61 ; Convert upper 16-bit to a tiled selector.
62 mov ax, cx ; save cx
63 mov dx, [xBP + xCB + cbCurRetAddr + 2]
64 %ifdef BS3_STRICT
65 cmp dx, BS3_SEL_TILED_AREA_SIZE >> 16
66 jb .address_ok
67 call Bs3Panic
68.address_ok:
69 %endif
70 mov cl, X86_SEL_SHIFT
71 shl dx, cl
72 add dx, BS3_SEL_TILED
73 mov cx, ax ; restore cx
74
75 ; Load segment offset and return.
76 mov ax, [xBP + xCB + cbCurRetAddr]
77
78%else
79 ; Convert upper 16-bit to tiled selector.
80 %if TMPL_BITS == 32
81 mov eax, [xBP + xCB + cbCurRetAddr]
82 %else
83 mov rax, rcx
84 %endif
85 %ifdef BS3_STRICT
86 cmp xAX, BS3_SEL_TILED_AREA_SIZE
87 jb .address_ok
88 call Bs3Panic
89.address_ok:
90 %endif
91 ror eax, 16
92 shl ax, X86_SEL_SHIFT
93 add ax, BS3_SEL_TILED
94 rol eax, 16
95%endif
96
97 pop xBP
98 BS3_HYBRID_RET
99BS3_PROC_END_CMN Bs3SelFlatDataToProtFar16
100
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