Changeset 46941 in vbox for trunk/src/VBox/Runtime/common
- Timestamp:
- Jul 3, 2013 2:48:42 PM (12 years ago)
- Location:
- trunk/src/VBox/Runtime/common/asm
- Files:
-
- 2 edited
- 3 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/asm/ASMGetGDTR.asm
-
Property svn:keywords
set to
Author Date Id Revision
r46940 r46941 1 ; $Id$ 1 2 ;; @file 2 3 ; IPRT - ASMGetGDTR(). … … 4 5 5 6 ; 6 ; Copyright (C) 2006-201 0Oracle Corporation7 ; Copyright (C) 2006-2013 Oracle Corporation 7 8 ; 8 9 ; This file is part of VirtualBox Open Source Edition (OSE), as … … 33 34 ;; 34 35 ; Gets the content of the GDTR CPU register. 35 ; @param rcx pGdtr Where to store the GDTR contents. 36 ; @param pGdtr Where to store the GDTR contents. 37 ; msc=rcx, gcc=rdi, x86=[esp+4] 36 38 ; 37 39 BEGINPROC_EXPORTED ASMGetGDTR 38 sgdt [rcx] 40 %ifdef ASM_CALL64_MSC 41 mov rax, rcx 42 %elifdef ASM_CALL64_GCC 43 mov rax, rdi 44 %elifdef RT_ARCH_X86 45 mov eax, [esp + 4] 46 %else 47 %error "Undefined arch?" 48 %endif 49 sgdt [xAX] 39 50 ret 40 51 ENDPROC ASMGetGDTR -
Property svn:keywords
set to
-
trunk/src/VBox/Runtime/common/asm/ASMGetIDTR.asm
-
Property svn:keywords
set to
Author Date Id Revision
r46938 r46941 1 ; $Id$ 1 2 ;; @file 2 3 ; IPRT - ASMGetIDTR(). … … 4 5 5 6 ; 6 ; Copyright (C) 2006-201 0Oracle Corporation7 ; Copyright (C) 2006-2013 Oracle Corporation 7 8 ; 8 9 ; This file is part of VirtualBox Open Source Edition (OSE), as … … 33 34 ;; 34 35 ; Gets the content of the IDTR CPU register. 35 ; @param rcx pIdtr Where to store the IDTR contents. 36 ; @param pIdtr Where to store the IDTR contents. 37 ; msc=rcx, gcc=rdi, x86=[esp+4] 36 38 ; 37 39 BEGINPROC_EXPORTED ASMGetIDTR 38 sidt [rcx] 40 %ifdef ASM_CALL64_MSC 41 mov rax, rcx 42 %elifdef ASM_CALL64_GCC 43 mov rax, rdi 44 %elifdef RT_ARCH_X86 45 mov eax, [esp + 4] 46 %else 47 %error "Undefined arch?" 48 %endif 49 sidt [xAX] 39 50 ret 40 51 ENDPROC ASMGetIDTR 41 52 42 -
Property svn:keywords
set to
-
trunk/src/VBox/Runtime/common/asm/ASMGetLDTR.asm
-
Property svn:keywords
set to
Author Date Id Revision
r46939 r46941 1 ; $Id :$1 ; $Id$ 2 2 ;; @file 3 3 ; IPRT - ASMGetLDTR(). -
Property svn:keywords
set to
-
trunk/src/VBox/Runtime/common/asm/ASMGetTR.asm
-
Property svn:keywords
set to
Author Date Id Revision
r46940 r46941 1 ; $Id$ 1 2 ;; @file 2 3 ; IPRT - ASMGetTR(). … … 4 5 5 6 ; 6 ; Copyright (C) 2006-201 0Oracle Corporation7 ; Copyright (C) 2006-2013 Oracle Corporation 7 8 ; 8 9 ; This file is part of VirtualBox Open Source Edition (OSE), as -
Property svn:keywords
set to
-
trunk/src/VBox/Runtime/common/asm/ASMMultU64ByU32DivByU32.asm
-
Property svn:keywords
changed from
Id
toAuthor Date Id Revision
-
Property svn:keywords
changed from
Note:
See TracChangeset
for help on using the changeset viewer.