Changeset 46941 in vbox
- Timestamp:
- Jul 3, 2013 2:48:42 PM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 86946
- Location:
- trunk/src/VBox/Runtime
- Files:
-
- 3 edited
- 3 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/Makefile.kmk
r46939 r46941 179 179 win/amd64/ASMGetFS.asm \ 180 180 win/amd64/ASMGetGS.asm \ 181 win/amd64/ASMGetIDTR.asm \182 win/amd64/ASMGetGDTR.asm \183 win/amd64/ASMGetTR.asm \184 181 win/amd64/ASMGetSS.asm \ 185 182 win/amd64/ASMProbeReadByte.asm \ … … 195 192 common/asm/ASMCpuId_Idx_ECX.asm \ 196 193 common/asm/ASMNopPause.asm \ 197 common/asm/ASMGetLDTR.asm 194 common/asm/ASMGetIDTR.asm \ 195 common/asm/ASMGetGDTR.asm \ 196 common/asm/ASMGetLDTR.asm \ 197 common/asm/ASMGetTR.asm 198 198 199 199 # -
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.