Use ASM_PFX to optionnaly set the underscore prefix
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@2179 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
@@ -19,7 +19,7 @@
|
|||||||
#
|
#
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
|
|
||||||
.globl _InternalMathARShiftU64
|
.globl ASM_PFX(InternalMathARShiftU64)
|
||||||
|
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
# UINT64
|
# UINT64
|
||||||
@@ -29,7 +29,7 @@
|
|||||||
# IN UINTN Count
|
# IN UINTN Count
|
||||||
# );
|
# );
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
_InternalMathARShiftU64:
|
ASM_PFX(InternalMathARShiftU64):
|
||||||
movb 12(%esp), %cl
|
movb 12(%esp), %cl
|
||||||
movl 8(%esp), %eax
|
movl 8(%esp), %eax
|
||||||
cltd
|
cltd
|
||||||
|
@@ -20,7 +20,7 @@
|
|||||||
#
|
#
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
|
|
||||||
.globl _CpuBreakpoint
|
.globl ASM_PFX(CpuBreakpoint)
|
||||||
|
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
# VOID
|
# VOID
|
||||||
@@ -29,6 +29,6 @@
|
|||||||
# VOID
|
# VOID
|
||||||
# );
|
# );
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
_CpuBreakpoint:
|
ASM_PFX(CpuBreakpoint):
|
||||||
int $3
|
int $3
|
||||||
ret
|
ret
|
||||||
|
@@ -20,7 +20,7 @@
|
|||||||
#
|
#
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
|
|
||||||
.globl _CpuFlushTlb
|
.globl ASM_PFX(CpuFlushTlb)
|
||||||
|
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
# VOID
|
# VOID
|
||||||
@@ -29,7 +29,7 @@
|
|||||||
# VOID
|
# VOID
|
||||||
# );
|
# );
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
_CpuFlushTlb:
|
ASM_PFX(CpuFlushTlb):
|
||||||
movl %cr3, %eax
|
movl %cr3, %eax
|
||||||
movl %eax, %cr3
|
movl %eax, %cr3
|
||||||
ret
|
ret
|
||||||
|
@@ -21,7 +21,7 @@
|
|||||||
#
|
#
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
|
|
||||||
.globl _AsmCpuid
|
.globl ASM_PFX(AsmCpuid)
|
||||||
|
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
# VOID
|
# VOID
|
||||||
@@ -34,7 +34,7 @@
|
|||||||
# OUT UINT32 *RegisterOutEdx OPTIONAL
|
# OUT UINT32 *RegisterOutEdx OPTIONAL
|
||||||
# )
|
# )
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
_AsmCpuid:
|
ASM_PFX(AsmCpuid):
|
||||||
push %ebx
|
push %ebx
|
||||||
push %ebp
|
push %ebp
|
||||||
movl %esp, %ebp
|
movl %esp, %ebp
|
||||||
|
@@ -36,8 +36,8 @@
|
|||||||
# OUT UINT32 *RegisterOutEdx OPTIONAL
|
# OUT UINT32 *RegisterOutEdx OPTIONAL
|
||||||
# )
|
# )
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
.globl _AsmCpuidEx
|
.globl ASM_PFX(AsmCpuidEx)
|
||||||
_AsmCpuidEx:
|
ASM_PFX(AsmCpuidEx):
|
||||||
push %ebx
|
push %ebx
|
||||||
push %ebp
|
push %ebp
|
||||||
movl %esp, %ebp
|
movl %esp, %ebp
|
||||||
|
@@ -20,7 +20,7 @@
|
|||||||
#
|
#
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
|
|
||||||
.globl _CpuPause
|
.globl ASM_PFX(CpuPause)
|
||||||
|
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
# VOID
|
# VOID
|
||||||
@@ -29,6 +29,6 @@
|
|||||||
# VOID
|
# VOID
|
||||||
# );
|
# );
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
_CpuPause:
|
ASM_PFX(CpuPause):
|
||||||
pause
|
pause
|
||||||
ret
|
ret
|
||||||
|
@@ -20,7 +20,7 @@
|
|||||||
#
|
#
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
|
|
||||||
.globl _CpuSleep
|
.globl ASM_PFX(CpuSleep)
|
||||||
|
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
# VOID
|
# VOID
|
||||||
@@ -29,6 +29,6 @@
|
|||||||
# VOID
|
# VOID
|
||||||
# );
|
# );
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
_CpuSleep:
|
ASM_PFX(CpuSleep):
|
||||||
hlt
|
hlt
|
||||||
ret
|
ret
|
||||||
|
@@ -21,7 +21,7 @@
|
|||||||
#
|
#
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
|
|
||||||
.globl _DisableInterrupts
|
.globl ASM_PFX(DisableInterrupts)
|
||||||
|
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
# VOID
|
# VOID
|
||||||
@@ -30,6 +30,6 @@
|
|||||||
# VOID
|
# VOID
|
||||||
# );
|
# );
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
_DisableInterrupts:
|
ASM_PFX(DisableInterrupts):
|
||||||
cli
|
cli
|
||||||
ret
|
ret
|
||||||
|
@@ -21,7 +21,7 @@
|
|||||||
#
|
#
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
|
|
||||||
.globl _InternalX86DisablePaging32
|
.globl ASM_PFX(InternalX86DisablePaging32)
|
||||||
|
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
# VOID
|
# VOID
|
||||||
@@ -33,7 +33,7 @@
|
|||||||
# IN VOID *NewStack
|
# IN VOID *NewStack
|
||||||
# );
|
# );
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
_InternalX86DisablePaging32:
|
ASM_PFX(InternalX86DisablePaging32):
|
||||||
movl 4(%esp), %ebx
|
movl 4(%esp), %ebx
|
||||||
movl 8(%esp), %ecx
|
movl 8(%esp), %ecx
|
||||||
movl 12(%esp), %edx
|
movl 12(%esp), %edx
|
||||||
|
@@ -19,7 +19,7 @@
|
|||||||
#
|
#
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
|
|
||||||
.globl _InternalMathDivU64x32
|
.globl ASM_PFX(InternalMathDivU64x32)
|
||||||
|
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
# UINT64
|
# UINT64
|
||||||
@@ -29,7 +29,7 @@
|
|||||||
# IN UINT32 Divisor
|
# IN UINT32 Divisor
|
||||||
# );
|
# );
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
_InternalMathDivU64x32:
|
ASM_PFX(InternalMathDivU64x32):
|
||||||
movl 8(%esp), %eax
|
movl 8(%esp), %eax
|
||||||
movl 12(%esp), %ecx
|
movl 12(%esp), %ecx
|
||||||
xorl %edx, %edx
|
xorl %edx, %edx
|
||||||
|
@@ -19,7 +19,7 @@
|
|||||||
#
|
#
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
|
|
||||||
.globl _InternalMathDivRemU64x32
|
.globl ASM_PFX(InternalMathDivRemU64x32)
|
||||||
|
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
# UINT64
|
# UINT64
|
||||||
@@ -30,7 +30,7 @@
|
|||||||
# OUT UINT32 *Remainder
|
# OUT UINT32 *Remainder
|
||||||
# );
|
# );
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
_InternalMathDivRemU64x32:
|
ASM_PFX(InternalMathDivRemU64x32):
|
||||||
movl 12(%esp), %ecx
|
movl 12(%esp), %ecx
|
||||||
movl 8(%esp), %eax
|
movl 8(%esp), %eax
|
||||||
xorl %edx, %edx
|
xorl %edx, %edx
|
||||||
|
@@ -20,7 +20,7 @@
|
|||||||
#
|
#
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
|
|
||||||
.globl _InternalMathDivRemU64x32, _InternalMathDivRemU64x64
|
.globl ASM_PFX(InternalMathDivRemU64x32), ASM_PFX(InternalMathDivRemU64x64)
|
||||||
|
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
# UINT64
|
# UINT64
|
||||||
@@ -31,7 +31,7 @@
|
|||||||
# OUT UINT64 *Remainder OPTIONAL
|
# OUT UINT64 *Remainder OPTIONAL
|
||||||
# );
|
# );
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
_InternalMathDivRemU64x64:
|
ASM_PFX(InternalMathDivRemU64x64):
|
||||||
movl 16(%esp), %ecx
|
movl 16(%esp), %ecx
|
||||||
testl %ecx, %ecx
|
testl %ecx, %ecx
|
||||||
jnz Hard
|
jnz Hard
|
||||||
@@ -40,7 +40,7 @@ _InternalMathDivRemU64x64:
|
|||||||
and $0, 4(%ecx)
|
and $0, 4(%ecx)
|
||||||
movl %ecx, 16(%esp)
|
movl %ecx, 16(%esp)
|
||||||
L1:
|
L1:
|
||||||
jmp _InternalMathDivRemU64x32
|
jmp ASM_PFX(InternalMathDivRemU64x32)
|
||||||
Hard:
|
Hard:
|
||||||
push %ebx
|
push %ebx
|
||||||
push %esi
|
push %esi
|
||||||
|
@@ -21,7 +21,7 @@
|
|||||||
#
|
#
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
|
|
||||||
.globl _EnableDisableInterrupts
|
.globl ASM_PFX(EnableDisableInterrupts)
|
||||||
|
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
# VOID
|
# VOID
|
||||||
@@ -30,7 +30,7 @@
|
|||||||
# VOID
|
# VOID
|
||||||
# );
|
# );
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
_EnableDisableInterrupts:
|
ASM_PFX(EnableDisableInterrupts):
|
||||||
sti
|
sti
|
||||||
cli
|
cli
|
||||||
ret
|
ret
|
||||||
|
@@ -21,7 +21,7 @@
|
|||||||
#
|
#
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
|
|
||||||
.globl _EnableInterrupts
|
.globl ASM_PFX(EnableInterrupts)
|
||||||
|
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
# VOID
|
# VOID
|
||||||
@@ -30,6 +30,6 @@
|
|||||||
# VOID
|
# VOID
|
||||||
# );
|
# );
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
_EnableInterrupts:
|
ASM_PFX(EnableInterrupts):
|
||||||
sti
|
sti
|
||||||
ret
|
ret
|
||||||
|
@@ -21,7 +21,7 @@
|
|||||||
#
|
#
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
|
|
||||||
.globl _InternalX86EnablePaging32
|
.globl ASM_PFX(InternalX86EnablePaging32)
|
||||||
|
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
# VOID
|
# VOID
|
||||||
@@ -33,7 +33,7 @@
|
|||||||
# IN VOID *NewStack
|
# IN VOID *NewStack
|
||||||
# );
|
# );
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
_InternalX86EnablePaging32:
|
ASM_PFX(InternalX86EnablePaging32):
|
||||||
movl 4(%esp), %ebx
|
movl 4(%esp), %ebx
|
||||||
movl 8(%esp), %ecx
|
movl 8(%esp), %ecx
|
||||||
movl 12(%esp), %edx
|
movl 12(%esp), %edx
|
||||||
|
@@ -21,7 +21,7 @@
|
|||||||
#
|
#
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
|
|
||||||
.globl _InternalX86EnablePaging64
|
.globl ASM_PFX(InternalX86EnablePaging64)
|
||||||
|
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
# VOID
|
# VOID
|
||||||
@@ -34,7 +34,7 @@
|
|||||||
# IN UINT64 NewStack
|
# IN UINT64 NewStack
|
||||||
# );
|
# );
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
_InternalX86EnablePaging64:
|
ASM_PFX(InternalX86EnablePaging64):
|
||||||
cli
|
cli
|
||||||
movl $LongStart, (%esp)
|
movl $LongStart, (%esp)
|
||||||
movl %cr4, %eax
|
movl %cr4, %eax
|
||||||
|
@@ -21,7 +21,7 @@
|
|||||||
#
|
#
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
|
|
||||||
.globl _AsmFlushCacheLine
|
.globl ASM_PFX(AsmFlushCacheLine)
|
||||||
|
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
# VOID
|
# VOID
|
||||||
@@ -30,7 +30,7 @@
|
|||||||
# IN VOID *LinearAddress
|
# IN VOID *LinearAddress
|
||||||
# );
|
# );
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
_AsmFlushCacheLine:
|
ASM_PFX(AsmFlushCacheLine):
|
||||||
movl 4(%esp), %eax
|
movl 4(%esp), %eax
|
||||||
clflush (%eax)
|
clflush (%eax)
|
||||||
ret
|
ret
|
||||||
|
@@ -21,7 +21,7 @@
|
|||||||
#
|
#
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
|
|
||||||
.globl _InternalX86FxRestore
|
.globl ASM_PFX(InternalX86FxRestore)
|
||||||
|
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
# VOID
|
# VOID
|
||||||
@@ -30,7 +30,7 @@
|
|||||||
# IN CONST IA32_FX_BUFFER *Buffer
|
# IN CONST IA32_FX_BUFFER *Buffer
|
||||||
# );
|
# );
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
_InternalX86FxRestore:
|
ASM_PFX(InternalX86FxRestore):
|
||||||
movl 4(%esp), %eax
|
movl 4(%esp), %eax
|
||||||
fxrstor (%eax)
|
fxrstor (%eax)
|
||||||
ret
|
ret
|
||||||
|
@@ -21,7 +21,7 @@
|
|||||||
#
|
#
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
|
|
||||||
.globl _InternalX86FxSave
|
.globl ASM_PFX(InternalX86FxSave)
|
||||||
|
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
# VOID
|
# VOID
|
||||||
@@ -30,7 +30,7 @@
|
|||||||
# OUT IA32_FX_BUFFER *Buffer
|
# OUT IA32_FX_BUFFER *Buffer
|
||||||
# );
|
# );
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
_InternalX86FxSave:
|
ASM_PFX(InternalX86FxSave):
|
||||||
movl 4(%esp), %eax
|
movl 4(%esp), %eax
|
||||||
fxsave (%eax)
|
fxsave (%eax)
|
||||||
ret
|
ret
|
||||||
|
@@ -21,7 +21,7 @@
|
|||||||
#
|
#
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
|
|
||||||
.globl _InternalSyncCompareExchange32
|
.globl ASM_PFX(InternalSyncCompareExchange32)
|
||||||
|
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
# UINT32
|
# UINT32
|
||||||
@@ -32,7 +32,7 @@
|
|||||||
# IN UINT32 ExchangeValue
|
# IN UINT32 ExchangeValue
|
||||||
# );
|
# );
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
_InternalSyncCompareExchange32:
|
ASM_PFX(InternalSyncCompareExchange32):
|
||||||
movl 4(%esp), %ecx
|
movl 4(%esp), %ecx
|
||||||
movl 8(%esp), %eax
|
movl 8(%esp), %eax
|
||||||
movl 12(%esp), %edx
|
movl 12(%esp), %edx
|
||||||
|
@@ -21,7 +21,7 @@
|
|||||||
#
|
#
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
|
|
||||||
.globl _InternalSyncCompareExchange64
|
.globl ASM_PFX(InternalSyncCompareExchange64)
|
||||||
|
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
# UINT64
|
# UINT64
|
||||||
@@ -32,7 +32,7 @@
|
|||||||
# IN UINT64 ExchangeValue
|
# IN UINT64 ExchangeValue
|
||||||
# );
|
# );
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
_InternalSyncCompareExchange64:
|
ASM_PFX(InternalSyncCompareExchange64):
|
||||||
push %esi
|
push %esi
|
||||||
push %ebx
|
push %ebx
|
||||||
movl 12(%esp), %esi
|
movl 12(%esp), %esi
|
||||||
|
@@ -21,7 +21,7 @@
|
|||||||
#
|
#
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
|
|
||||||
.globl _InternalSyncDecrement
|
.globl ASM_PFX(InternalSyncDecrement)
|
||||||
|
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
# UINT32
|
# UINT32
|
||||||
@@ -30,7 +30,7 @@
|
|||||||
# IN UINT32 *Value
|
# IN UINT32 *Value
|
||||||
# );
|
# );
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
_InternalSyncDecrement:
|
ASM_PFX(InternalSyncDecrement):
|
||||||
movl 4(%esp), %eax
|
movl 4(%esp), %eax
|
||||||
lock
|
lock
|
||||||
decl (%eax)
|
decl (%eax)
|
||||||
|
@@ -21,7 +21,7 @@
|
|||||||
#
|
#
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
|
|
||||||
.globl _InternalSyncIncrement
|
.globl ASM_PFX(InternalSyncIncrement)
|
||||||
|
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
# UINT32
|
# UINT32
|
||||||
@@ -30,7 +30,7 @@
|
|||||||
# IN UINT32 *Value
|
# IN UINT32 *Value
|
||||||
# );
|
# );
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
_InternalSyncIncrement:
|
ASM_PFX(InternalSyncIncrement):
|
||||||
movl 4(%esp), %eax
|
movl 4(%esp), %eax
|
||||||
lock
|
lock
|
||||||
incl (%eax)
|
incl (%eax)
|
||||||
|
@@ -21,7 +21,7 @@
|
|||||||
#
|
#
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
|
|
||||||
.globl _AsmInvd
|
.globl ASM_PFX(AsmInvd)
|
||||||
|
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
# VOID
|
# VOID
|
||||||
@@ -30,6 +30,6 @@
|
|||||||
# VOID
|
# VOID
|
||||||
# );
|
# );
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
_AsmInvd:
|
ASM_PFX(AsmInvd):
|
||||||
invd
|
invd
|
||||||
ret
|
ret
|
||||||
|
@@ -19,7 +19,7 @@
|
|||||||
#
|
#
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
|
|
||||||
.globl _InternalMathLRotU64
|
.globl ASM_PFX(InternalMathLRotU64)
|
||||||
|
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
# UINT64
|
# UINT64
|
||||||
@@ -29,7 +29,7 @@
|
|||||||
# IN UINTN Count
|
# IN UINTN Count
|
||||||
# );
|
# );
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
_InternalMathLRotU64:
|
ASM_PFX(InternalMathLRotU64):
|
||||||
push %ebx
|
push %ebx
|
||||||
movb 16(%esp), %cl
|
movb 16(%esp), %cl
|
||||||
movl 12(%esp), %edx
|
movl 12(%esp), %edx
|
||||||
|
@@ -19,7 +19,7 @@
|
|||||||
#
|
#
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
|
|
||||||
.globl _InternalMathLShiftU64
|
.globl ASM_PFX(InternalMathLShiftU64)
|
||||||
|
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
# UINT64
|
# UINT64
|
||||||
@@ -29,7 +29,7 @@
|
|||||||
# IN UINTN Count
|
# IN UINTN Count
|
||||||
# );
|
# );
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
_InternalMathLShiftU64:
|
ASM_PFX(InternalMathLShiftU64):
|
||||||
movb 12(%esp), %cl
|
movb 12(%esp), %cl
|
||||||
xorl %eax, %eax
|
xorl %eax, %eax
|
||||||
movl 4(%esp), %edx
|
movl 4(%esp), %edx
|
||||||
|
@@ -19,7 +19,7 @@
|
|||||||
#
|
#
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
|
|
||||||
.globl _InternalLongJump
|
.globl ASM_PFX(InternalLongJump)
|
||||||
|
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
# VOID
|
# VOID
|
||||||
@@ -29,7 +29,7 @@
|
|||||||
# IN UINTN Value
|
# IN UINTN Value
|
||||||
# );
|
# );
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
_InternalLongJump:
|
ASM_PFX(InternalLongJump):
|
||||||
pop %eax
|
pop %eax
|
||||||
pop %edx
|
pop %edx
|
||||||
pop %eax
|
pop %eax
|
||||||
|
@@ -19,7 +19,7 @@
|
|||||||
#
|
#
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
|
|
||||||
.globl _InternalMathModU64x32
|
.globl ASM_PFX(InternalMathModU64x32)
|
||||||
|
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
# UINT32
|
# UINT32
|
||||||
@@ -29,7 +29,7 @@
|
|||||||
# IN UINT32 Divisor
|
# IN UINT32 Divisor
|
||||||
# );
|
# );
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
_InternalMathModU64x32:
|
ASM_PFX(InternalMathModU64x32):
|
||||||
movl 8(%esp), %eax
|
movl 8(%esp), %eax
|
||||||
movl 12(%esp), %ecx
|
movl 12(%esp), %ecx
|
||||||
xorl %edx, %edx
|
xorl %edx, %edx
|
||||||
|
@@ -21,7 +21,7 @@
|
|||||||
#
|
#
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
|
|
||||||
.globl _AsmMonitor
|
.globl ASM_PFX(AsmMonitor)
|
||||||
|
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
# UINT64
|
# UINT64
|
||||||
@@ -32,7 +32,7 @@
|
|||||||
# IN UINTN Edx
|
# IN UINTN Edx
|
||||||
# );
|
# );
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
_AsmMonitor:
|
ASM_PFX(AsmMonitor):
|
||||||
movl 4(%esp), %eax
|
movl 4(%esp), %eax
|
||||||
movl 8(%esp), %ecx
|
movl 8(%esp), %ecx
|
||||||
movl 12(%esp), %edx
|
movl 12(%esp), %edx
|
||||||
|
@@ -22,7 +22,7 @@
|
|||||||
.386:
|
.386:
|
||||||
.code:
|
.code:
|
||||||
|
|
||||||
.globl _InternalMathMultU64x32
|
.globl ASM_PFX(InternalMathMultU64x32)
|
||||||
|
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
# UINT64
|
# UINT64
|
||||||
@@ -32,7 +32,7 @@
|
|||||||
# IN UINT32 Multiplier
|
# IN UINT32 Multiplier
|
||||||
# );
|
# );
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
_InternalMathMultU64x32:
|
ASM_PFX(InternalMathMultU64x32):
|
||||||
movl 12(%esp), %ecx
|
movl 12(%esp), %ecx
|
||||||
movl %ecx, %eax
|
movl %ecx, %eax
|
||||||
imull 8(%esp), %ecx
|
imull 8(%esp), %ecx
|
||||||
|
@@ -19,7 +19,7 @@
|
|||||||
#
|
#
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
|
|
||||||
.globl _InternalMathMultU64x64
|
.globl ASM_PFX(InternalMathMultU64x64)
|
||||||
|
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
# UINT64
|
# UINT64
|
||||||
@@ -29,7 +29,7 @@
|
|||||||
# IN UINT64 Multiplier
|
# IN UINT64 Multiplier
|
||||||
# );
|
# );
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
_InternalMathMultU64x64:
|
ASM_PFX(InternalMathMultU64x64):
|
||||||
push %ebx
|
push %ebx
|
||||||
movl 8(%esp), %ebx
|
movl 8(%esp), %ebx
|
||||||
movl 16(%esp), %edx
|
movl 16(%esp), %edx
|
||||||
|
@@ -21,7 +21,7 @@
|
|||||||
#
|
#
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
|
|
||||||
.globl _AsmMwait
|
.globl ASM_PFX(AsmMwait)
|
||||||
|
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
# UINT64
|
# UINT64
|
||||||
@@ -31,7 +31,7 @@
|
|||||||
# IN UINTN Ecx
|
# IN UINTN Ecx
|
||||||
# );
|
# );
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
_AsmMwait:
|
ASM_PFX(AsmMwait):
|
||||||
movl 4(%esp), %eax
|
movl 4(%esp), %eax
|
||||||
movl 8(%esp), %ecx
|
movl 8(%esp), %ecx
|
||||||
mwait %eax, %ecx
|
mwait %eax, %ecx
|
||||||
|
@@ -19,7 +19,7 @@
|
|||||||
#
|
#
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
|
|
||||||
.globl _InternalMathRRotU64
|
.globl ASM_PFX(InternalMathRRotU64)
|
||||||
|
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
# UINT64
|
# UINT64
|
||||||
@@ -29,7 +29,7 @@
|
|||||||
# IN UINTN Count
|
# IN UINTN Count
|
||||||
# );
|
# );
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
_InternalMathRRotU64:
|
ASM_PFX(InternalMathRRotU64):
|
||||||
push %ebx
|
push %ebx
|
||||||
movb 16(%esp), %cl
|
movb 16(%esp), %cl
|
||||||
movl 8(%esp), %eax
|
movl 8(%esp), %eax
|
||||||
|
@@ -22,7 +22,7 @@
|
|||||||
.686:
|
.686:
|
||||||
.code:
|
.code:
|
||||||
|
|
||||||
.globl _InternalMathRShiftU64
|
.globl ASM_PFX(InternalMathRShiftU64)
|
||||||
|
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
# UINT64
|
# UINT64
|
||||||
@@ -32,7 +32,7 @@
|
|||||||
# IN UINTN Count
|
# IN UINTN Count
|
||||||
# );
|
# );
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
_InternalMathRShiftU64:
|
ASM_PFX(InternalMathRShiftU64):
|
||||||
movb 12(%esp), %cl
|
movb 12(%esp), %cl
|
||||||
xorl %edx, %edx
|
xorl %edx, %edx
|
||||||
movl 8(%esp), %eax
|
movl 8(%esp), %eax
|
||||||
|
@@ -21,7 +21,7 @@
|
|||||||
#
|
#
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
|
|
||||||
.globl _AsmReadCr0
|
.globl ASM_PFX(AsmReadCr0)
|
||||||
|
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
# UINTN
|
# UINTN
|
||||||
@@ -30,6 +30,6 @@
|
|||||||
# VOID
|
# VOID
|
||||||
# );
|
# );
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
_AsmReadCr0:
|
ASM_PFX(AsmReadCr0):
|
||||||
movl %cr0, %eax
|
movl %cr0, %eax
|
||||||
ret
|
ret
|
||||||
|
@@ -21,7 +21,7 @@
|
|||||||
#
|
#
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
|
|
||||||
.globl _AsmReadCr2
|
.globl ASM_PFX(AsmReadCr2)
|
||||||
|
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
# UINTN
|
# UINTN
|
||||||
@@ -30,6 +30,6 @@
|
|||||||
# VOID
|
# VOID
|
||||||
# );
|
# );
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
_AsmReadCr2:
|
ASM_PFX(AsmReadCr2):
|
||||||
movl %cr2, %eax
|
movl %cr2, %eax
|
||||||
ret
|
ret
|
||||||
|
@@ -21,7 +21,7 @@
|
|||||||
#
|
#
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
|
|
||||||
.globl _AsmReadCr3
|
.globl ASM_PFX(AsmReadCr3)
|
||||||
|
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
# UINTN
|
# UINTN
|
||||||
@@ -30,6 +30,6 @@
|
|||||||
# VOID
|
# VOID
|
||||||
# );
|
# );
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
_AsmReadCr3:
|
ASM_PFX(AsmReadCr3):
|
||||||
movl %cr3, %eax
|
movl %cr3, %eax
|
||||||
ret
|
ret
|
||||||
|
@@ -21,7 +21,7 @@
|
|||||||
#
|
#
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
|
|
||||||
.globl _AsmReadCr4
|
.globl ASM_PFX(AsmReadCr4)
|
||||||
|
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
# UINTN
|
# UINTN
|
||||||
@@ -30,6 +30,6 @@
|
|||||||
# VOID
|
# VOID
|
||||||
# );
|
# );
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
_AsmReadCr4:
|
ASM_PFX(AsmReadCr4):
|
||||||
movl %cr4, %eax
|
movl %cr4, %eax
|
||||||
ret
|
ret
|
||||||
|
@@ -21,7 +21,7 @@
|
|||||||
#
|
#
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
|
|
||||||
.globl _AsmReadCs
|
.globl ASM_PFX(AsmReadCs)
|
||||||
|
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
# UINT16
|
# UINT16
|
||||||
@@ -30,6 +30,6 @@
|
|||||||
# VOID
|
# VOID
|
||||||
# );
|
# );
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
_AsmReadCs:
|
ASM_PFX(AsmReadCs):
|
||||||
movl %cs, %eax
|
movl %cs, %eax
|
||||||
ret
|
ret
|
||||||
|
@@ -21,7 +21,7 @@
|
|||||||
#
|
#
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
|
|
||||||
.globl _AsmReadDr0
|
.globl ASM_PFX(AsmReadDr0)
|
||||||
|
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
# UINTN
|
# UINTN
|
||||||
@@ -30,6 +30,6 @@
|
|||||||
# VOID
|
# VOID
|
||||||
# );
|
# );
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
_AsmReadDr0:
|
ASM_PFX(AsmReadDr0):
|
||||||
movl %dr0, %eax
|
movl %dr0, %eax
|
||||||
ret
|
ret
|
||||||
|
@@ -21,7 +21,7 @@
|
|||||||
#
|
#
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
|
|
||||||
.globl _AsmReadDr1
|
.globl ASM_PFX(AsmReadDr1)
|
||||||
|
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
# UINTN
|
# UINTN
|
||||||
@@ -30,6 +30,6 @@
|
|||||||
# VOID
|
# VOID
|
||||||
# );
|
# );
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
_AsmReadDr1:
|
ASM_PFX(AsmReadDr1):
|
||||||
movl %dr1, %eax
|
movl %dr1, %eax
|
||||||
ret
|
ret
|
||||||
|
@@ -21,7 +21,7 @@
|
|||||||
#
|
#
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
|
|
||||||
.globl _AsmReadDr2
|
.globl ASM_PFX(AsmReadDr2)
|
||||||
|
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
# UINTN
|
# UINTN
|
||||||
@@ -30,6 +30,6 @@
|
|||||||
# VOID
|
# VOID
|
||||||
# );
|
# );
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
_AsmReadDr2:
|
ASM_PFX(AsmReadDr2):
|
||||||
movl %dr2, %eax
|
movl %dr2, %eax
|
||||||
ret
|
ret
|
||||||
|
@@ -21,7 +21,7 @@
|
|||||||
#
|
#
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
|
|
||||||
.globl _AsmReadDr3
|
.globl ASM_PFX(AsmReadDr3)
|
||||||
|
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
# UINTN
|
# UINTN
|
||||||
@@ -30,6 +30,6 @@
|
|||||||
# VOID
|
# VOID
|
||||||
# );
|
# );
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
_AsmReadDr3:
|
ASM_PFX(AsmReadDr3):
|
||||||
movl %dr3, %eax
|
movl %dr3, %eax
|
||||||
ret
|
ret
|
||||||
|
@@ -21,7 +21,7 @@
|
|||||||
#
|
#
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
|
|
||||||
.globl _AsmReadDr4
|
.globl ASM_PFX(AsmReadDr4)
|
||||||
|
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
# UINTN
|
# UINTN
|
||||||
@@ -30,6 +30,6 @@
|
|||||||
# VOID
|
# VOID
|
||||||
# );
|
# );
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
_AsmReadDr4:
|
ASM_PFX(AsmReadDr4):
|
||||||
movl %dr4, %eax
|
movl %dr4, %eax
|
||||||
ret
|
ret
|
||||||
|
@@ -21,7 +21,7 @@
|
|||||||
#
|
#
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
|
|
||||||
.globl _AsmReadDr5
|
.globl ASM_PFX(AsmReadDr5)
|
||||||
|
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
# UINTN
|
# UINTN
|
||||||
@@ -30,6 +30,6 @@
|
|||||||
# VOID
|
# VOID
|
||||||
# );
|
# );
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
_AsmReadDr5:
|
ASM_PFX(AsmReadDr5):
|
||||||
movl %dr5, %eax
|
movl %dr5, %eax
|
||||||
ret
|
ret
|
||||||
|
@@ -21,7 +21,7 @@
|
|||||||
#
|
#
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
|
|
||||||
.globl _AsmReadDr6
|
.globl ASM_PFX(AsmReadDr6)
|
||||||
|
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
# UINTN
|
# UINTN
|
||||||
@@ -30,6 +30,6 @@
|
|||||||
# VOID
|
# VOID
|
||||||
# );
|
# );
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
_AsmReadDr6:
|
ASM_PFX(AsmReadDr6):
|
||||||
movl %dr6, %eax
|
movl %dr6, %eax
|
||||||
ret
|
ret
|
||||||
|
@@ -21,7 +21,7 @@
|
|||||||
#
|
#
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
|
|
||||||
.globl _AsmReadDr7
|
.globl ASM_PFX(AsmReadDr7)
|
||||||
|
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
# UINTN
|
# UINTN
|
||||||
@@ -30,6 +30,6 @@
|
|||||||
# VOID
|
# VOID
|
||||||
# );
|
# );
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
_AsmReadDr7:
|
ASM_PFX(AsmReadDr7):
|
||||||
movl %dr7, %eax
|
movl %dr7, %eax
|
||||||
ret
|
ret
|
||||||
|
@@ -21,7 +21,7 @@
|
|||||||
#
|
#
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
|
|
||||||
.globl _AsmReadDs
|
.globl ASM_PFX(AsmReadDs)
|
||||||
|
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
# UINT16
|
# UINT16
|
||||||
@@ -30,6 +30,6 @@
|
|||||||
# VOID
|
# VOID
|
||||||
# );
|
# );
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
_AsmReadDs:
|
ASM_PFX(AsmReadDs):
|
||||||
movl %ds, %eax
|
movl %ds, %eax
|
||||||
ret
|
ret
|
||||||
|
@@ -21,7 +21,7 @@
|
|||||||
#
|
#
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
|
|
||||||
.globl _AsmReadEflags
|
.globl ASM_PFX(AsmReadEflags)
|
||||||
|
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
# UINTN
|
# UINTN
|
||||||
@@ -30,7 +30,7 @@
|
|||||||
# VOID
|
# VOID
|
||||||
# );
|
# );
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
_AsmReadEflags:
|
ASM_PFX(AsmReadEflags):
|
||||||
pushfl
|
pushfl
|
||||||
pop %eax
|
pop %eax
|
||||||
ret
|
ret
|
||||||
|
@@ -21,7 +21,7 @@
|
|||||||
#
|
#
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
|
|
||||||
.globl _AsmReadEs
|
.globl ASM_PFX(AsmReadEs)
|
||||||
|
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
# UINT16
|
# UINT16
|
||||||
@@ -30,6 +30,6 @@
|
|||||||
# VOID
|
# VOID
|
||||||
# );
|
# );
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
_AsmReadEs:
|
ASM_PFX(AsmReadEs):
|
||||||
movl %es, %eax
|
movl %es, %eax
|
||||||
ret
|
ret
|
||||||
|
@@ -21,7 +21,7 @@
|
|||||||
#
|
#
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
|
|
||||||
.globl _AsmReadFs
|
.globl ASM_PFX(AsmReadFs)
|
||||||
|
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
# UINT16
|
# UINT16
|
||||||
@@ -30,6 +30,6 @@
|
|||||||
# VOID
|
# VOID
|
||||||
# );
|
# );
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
_AsmReadFs:
|
ASM_PFX(AsmReadFs):
|
||||||
movl %fs, %eax
|
movl %fs, %eax
|
||||||
ret
|
ret
|
||||||
|
@@ -21,7 +21,7 @@
|
|||||||
#
|
#
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
|
|
||||||
.globl _InternalX86ReadGdtr
|
.globl ASM_PFX(InternalX86ReadGdtr)
|
||||||
|
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
# VOID
|
# VOID
|
||||||
@@ -30,7 +30,7 @@
|
|||||||
# OUT IA32_DESCRIPTOR *Gdtr
|
# OUT IA32_DESCRIPTOR *Gdtr
|
||||||
# );
|
# );
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
_InternalX86ReadGdtr:
|
ASM_PFX(InternalX86ReadGdtr):
|
||||||
movl 4(%esp), %eax
|
movl 4(%esp), %eax
|
||||||
sgdt (%eax)
|
sgdt (%eax)
|
||||||
ret
|
ret
|
||||||
|
@@ -21,7 +21,7 @@
|
|||||||
#
|
#
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
|
|
||||||
.globl _AsmReadGs
|
.globl ASM_PFX(AsmReadGs)
|
||||||
|
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
# UINT16
|
# UINT16
|
||||||
@@ -30,6 +30,6 @@
|
|||||||
# VOID
|
# VOID
|
||||||
# );
|
# );
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
_AsmReadGs:
|
ASM_PFX(AsmReadGs):
|
||||||
movl %gs, %eax
|
movl %gs, %eax
|
||||||
ret
|
ret
|
||||||
|
@@ -21,7 +21,7 @@
|
|||||||
#
|
#
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
|
|
||||||
.globl _InternalX86ReadIdtr
|
.globl ASM_PFX(InternalX86ReadIdtr)
|
||||||
|
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
# VOID
|
# VOID
|
||||||
@@ -30,7 +30,7 @@
|
|||||||
# OUT IA32_DESCRIPTOR *Idtr
|
# OUT IA32_DESCRIPTOR *Idtr
|
||||||
# );
|
# );
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
_InternalX86ReadIdtr:
|
ASM_PFX(InternalX86ReadIdtr):
|
||||||
movl 4(%esp), %eax
|
movl 4(%esp), %eax
|
||||||
sidt (%eax)
|
sidt (%eax)
|
||||||
ret
|
ret
|
||||||
|
@@ -21,7 +21,7 @@
|
|||||||
#
|
#
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
|
|
||||||
.globl _AsmReadLdtr
|
.globl ASM_PFX(AsmReadLdtr)
|
||||||
|
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
# UINT16
|
# UINT16
|
||||||
@@ -30,6 +30,6 @@
|
|||||||
# VOID
|
# VOID
|
||||||
# );
|
# );
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
_AsmReadLdtr:
|
ASM_PFX(AsmReadLdtr):
|
||||||
sldt %eax
|
sldt %eax
|
||||||
ret
|
ret
|
||||||
|
@@ -21,7 +21,7 @@
|
|||||||
#
|
#
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
|
|
||||||
.globl _AsmReadMm0
|
.globl ASM_PFX(AsmReadMm0)
|
||||||
|
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
# UINTN
|
# UINTN
|
||||||
@@ -30,7 +30,7 @@
|
|||||||
# VOID
|
# VOID
|
||||||
# );
|
# );
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
_AsmReadMm0:
|
ASM_PFX(AsmReadMm0):
|
||||||
push %eax
|
push %eax
|
||||||
push %eax
|
push %eax
|
||||||
movq %mm0, (%esp)
|
movq %mm0, (%esp)
|
||||||
|
@@ -21,7 +21,7 @@
|
|||||||
#
|
#
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
|
|
||||||
.globl _AsmReadMm1
|
.globl ASM_PFX(AsmReadMm1)
|
||||||
|
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
# UINTN
|
# UINTN
|
||||||
@@ -30,7 +30,7 @@
|
|||||||
# VOID
|
# VOID
|
||||||
# );
|
# );
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
_AsmReadMm1:
|
ASM_PFX(AsmReadMm1):
|
||||||
push %eax
|
push %eax
|
||||||
push %eax
|
push %eax
|
||||||
movq %mm1, (%esp)
|
movq %mm1, (%esp)
|
||||||
|
@@ -21,7 +21,7 @@
|
|||||||
#
|
#
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
|
|
||||||
.globl _AsmReadMm2
|
.globl ASM_PFX(AsmReadMm2)
|
||||||
|
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
# UINTN
|
# UINTN
|
||||||
@@ -30,7 +30,7 @@
|
|||||||
# VOID
|
# VOID
|
||||||
# );
|
# );
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
_AsmReadMm2:
|
ASM_PFX(AsmReadMm2):
|
||||||
push %eax
|
push %eax
|
||||||
push %eax
|
push %eax
|
||||||
movq %mm2, (%esp)
|
movq %mm2, (%esp)
|
||||||
|
@@ -21,7 +21,7 @@
|
|||||||
#
|
#
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
|
|
||||||
.globl _AsmReadMm3
|
.globl ASM_PFX(AsmReadMm3)
|
||||||
|
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
# UINTN
|
# UINTN
|
||||||
@@ -30,7 +30,7 @@
|
|||||||
# VOID
|
# VOID
|
||||||
# );
|
# );
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
_AsmReadMm3:
|
ASM_PFX(AsmReadMm3):
|
||||||
push %eax
|
push %eax
|
||||||
push %eax
|
push %eax
|
||||||
movq %mm3, (%esp)
|
movq %mm3, (%esp)
|
||||||
|
@@ -21,7 +21,7 @@
|
|||||||
#
|
#
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
|
|
||||||
.globl _AsmReadMm4
|
.globl ASM_PFX(AsmReadMm4)
|
||||||
|
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
# UINTN
|
# UINTN
|
||||||
@@ -30,7 +30,7 @@
|
|||||||
# VOID
|
# VOID
|
||||||
# );
|
# );
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
_AsmReadMm4:
|
ASM_PFX(AsmReadMm4):
|
||||||
push %eax
|
push %eax
|
||||||
push %eax
|
push %eax
|
||||||
movq %mm4, (%esp)
|
movq %mm4, (%esp)
|
||||||
|
@@ -21,7 +21,7 @@
|
|||||||
#
|
#
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
|
|
||||||
.globl _AsmReadMm5
|
.globl ASM_PFX(AsmReadMm5)
|
||||||
|
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
# UINTN
|
# UINTN
|
||||||
@@ -30,7 +30,7 @@
|
|||||||
# VOID
|
# VOID
|
||||||
# );
|
# );
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
_AsmReadMm5:
|
ASM_PFX(AsmReadMm5):
|
||||||
push %eax
|
push %eax
|
||||||
push %eax
|
push %eax
|
||||||
movq %mm5, (%esp)
|
movq %mm5, (%esp)
|
||||||
|
@@ -21,7 +21,7 @@
|
|||||||
#
|
#
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
|
|
||||||
.globl _AsmReadMm6
|
.globl ASM_PFX(AsmReadMm6)
|
||||||
|
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
# UINTN
|
# UINTN
|
||||||
@@ -30,7 +30,7 @@
|
|||||||
# VOID
|
# VOID
|
||||||
# );
|
# );
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
_AsmReadMm6:
|
ASM_PFX(AsmReadMm6):
|
||||||
push %eax
|
push %eax
|
||||||
push %eax
|
push %eax
|
||||||
movq %mm6, (%esp)
|
movq %mm6, (%esp)
|
||||||
|
@@ -21,7 +21,7 @@
|
|||||||
#
|
#
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
|
|
||||||
.globl _AsmReadMm7
|
.globl ASM_PFX(AsmReadMm7)
|
||||||
|
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
# UINTN
|
# UINTN
|
||||||
@@ -30,7 +30,7 @@
|
|||||||
# VOID
|
# VOID
|
||||||
# );
|
# );
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
_AsmReadMm7:
|
ASM_PFX(AsmReadMm7):
|
||||||
push %eax
|
push %eax
|
||||||
push %eax
|
push %eax
|
||||||
movq %mm7, (%esp)
|
movq %mm7, (%esp)
|
||||||
|
@@ -21,7 +21,7 @@
|
|||||||
#
|
#
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
|
|
||||||
.globl _AsmReadMsr64
|
.globl ASM_PFX(AsmReadMsr64)
|
||||||
|
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
# UINT64
|
# UINT64
|
||||||
@@ -30,7 +30,7 @@
|
|||||||
# IN UINT32 Index
|
# IN UINT32 Index
|
||||||
# );
|
# );
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
_AsmReadMsr64:
|
ASM_PFX(AsmReadMsr64):
|
||||||
movl 4(%esp), %ecx
|
movl 4(%esp), %ecx
|
||||||
rdmsr
|
rdmsr
|
||||||
ret
|
ret
|
||||||
|
@@ -21,7 +21,7 @@
|
|||||||
#
|
#
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
|
|
||||||
.globl _AsmReadPmc
|
.globl ASM_PFX(AsmReadPmc)
|
||||||
|
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
# UINT64
|
# UINT64
|
||||||
@@ -30,7 +30,7 @@
|
|||||||
# IN UINT32 PmcIndex
|
# IN UINT32 PmcIndex
|
||||||
# );
|
# );
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
_AsmReadPmc:
|
ASM_PFX(AsmReadPmc):
|
||||||
movl 4(%esp), %ecx
|
movl 4(%esp), %ecx
|
||||||
rdpmc
|
rdpmc
|
||||||
ret
|
ret
|
||||||
|
@@ -21,7 +21,7 @@
|
|||||||
#
|
#
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
|
|
||||||
.globl _AsmReadSs
|
.globl ASM_PFX(AsmReadSs)
|
||||||
|
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
# UINT16
|
# UINT16
|
||||||
@@ -30,6 +30,6 @@
|
|||||||
# VOID
|
# VOID
|
||||||
# );
|
# );
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
_AsmReadSs:
|
ASM_PFX(AsmReadSs):
|
||||||
movl %ss, %eax
|
movl %ss, %eax
|
||||||
ret
|
ret
|
||||||
|
@@ -21,7 +21,7 @@
|
|||||||
#
|
#
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
|
|
||||||
.globl _AsmReadTr
|
.globl ASM_PFX(AsmReadTr)
|
||||||
|
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
# UINT16
|
# UINT16
|
||||||
@@ -30,6 +30,6 @@
|
|||||||
# VOID
|
# VOID
|
||||||
# );
|
# );
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
_AsmReadTr:
|
ASM_PFX(AsmReadTr):
|
||||||
str %eax
|
str %eax
|
||||||
ret
|
ret
|
||||||
|
@@ -21,7 +21,7 @@
|
|||||||
#
|
#
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
|
|
||||||
.globl _AsmReadTsc
|
.globl ASM_PFX(AsmReadTsc)
|
||||||
|
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
# UINT64
|
# UINT64
|
||||||
@@ -30,6 +30,6 @@
|
|||||||
# VOID
|
# VOID
|
||||||
# );
|
# );
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
_AsmReadTsc:
|
ASM_PFX(AsmReadTsc):
|
||||||
rdtsc
|
rdtsc
|
||||||
ret
|
ret
|
||||||
|
@@ -19,7 +19,7 @@
|
|||||||
#
|
#
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
|
|
||||||
.globl _SetJump, _InternalAssertJumpBuffer
|
.globl ASM_PFX(SetJump), ASM_PFX(InternalAssertJumpBuffer)
|
||||||
|
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
# UINTN
|
# UINTN
|
||||||
@@ -28,9 +28,9 @@
|
|||||||
# OUT BASE_LIBRARY_JUMP_BUFFER *JumpBuffer
|
# OUT BASE_LIBRARY_JUMP_BUFFER *JumpBuffer
|
||||||
# );
|
# );
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
_SetJump:
|
ASM_PFX(SetJump):
|
||||||
pushl 0x4(%esp)
|
pushl 0x4(%esp)
|
||||||
call _InternalAssertJumpBuffer
|
call ASM_PFX(InternalAssertJumpBuffer)
|
||||||
pop %ecx
|
pop %ecx
|
||||||
pop %ecx
|
pop %ecx
|
||||||
movl (%esp), %edx
|
movl (%esp), %edx
|
||||||
|
@@ -29,8 +29,8 @@
|
|||||||
# IN UINT64 Operand
|
# IN UINT64 Operand
|
||||||
# );
|
# );
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
.globl _InternalMathSwapBytes64
|
.globl ASM_PFX(InternalMathSwapBytes64)
|
||||||
_InternalMathSwapBytes64:
|
ASM_PFX(InternalMathSwapBytes64):
|
||||||
movl 8(%esp), %eax
|
movl 8(%esp), %eax
|
||||||
movl 4(%esp), %edx
|
movl 4(%esp), %edx
|
||||||
bswapl %eax
|
bswapl %eax
|
||||||
|
@@ -19,14 +19,14 @@
|
|||||||
#
|
#
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
|
|
||||||
.globl _m16Start, _m16Size, _mThunk16Attr, _m16Gdt, _m16GdtrBase, _mTransition
|
.globl ASM_PFX(m16Start), ASM_PFX(m16Size), ASM_PFX(mThunk16Attr), ASM_PFX(m16Gdt), ASM_PFX(m16GdtrBase), ASM_PFX(mTransition)
|
||||||
.globl _InternalAsmThunk16
|
.globl ASM_PFX(InternalAsmThunk16)
|
||||||
|
|
||||||
_m16Start:
|
ASM_PFX(m16Start):
|
||||||
|
|
||||||
SavedGdt: .space 6
|
SavedGdt: .space 6
|
||||||
|
|
||||||
_BackFromUserCode:
|
ASM_PFX(BackFromUserCode):
|
||||||
push %ss
|
push %ss
|
||||||
push %cs
|
push %cs
|
||||||
.byte 0x66
|
.byte 0x66
|
||||||
@@ -40,7 +40,7 @@ L_Base1:
|
|||||||
push %ds
|
push %ds
|
||||||
pushaw # pushad actually
|
pushaw # pushad actually
|
||||||
.byte 0x66, 0xba # mov edx, imm32
|
.byte 0x66, 0xba # mov edx, imm32
|
||||||
_ThunkAttr: .space 4
|
ASM_PFX(ThunkAttr): .space 4
|
||||||
testb $THUNK_ATTRIBUTE_DISABLE_A20_MASK_INT_15, %dl
|
testb $THUNK_ATTRIBUTE_DISABLE_A20_MASK_INT_15, %dl
|
||||||
jz 1f
|
jz 1f
|
||||||
movl $0x15cd2401, %eax # mov ax, 2401h & int 15h
|
movl $0x15cd2401, %eax # mov ax, 2401h & int 15h
|
||||||
@@ -74,14 +74,14 @@ SavedEsp: .space 4
|
|||||||
.byte 0x66
|
.byte 0x66
|
||||||
lret # return to protected mode
|
lret # return to protected mode
|
||||||
|
|
||||||
_EntryPoint: .long _ToUserCode - _m16Start
|
_EntryPoint: .long ASM_PFX(ToUserCode) - ASM_PFX(m16Start)
|
||||||
.word 0x8
|
.word 0x8
|
||||||
_16Idtr: .word 0x3ff
|
_16Idtr: .word 0x3ff
|
||||||
.long 0
|
.long 0
|
||||||
_16Gdtr: .word GdtEnd - _NullSegDesc - 1
|
_16Gdtr: .word GdtEnd - _NullSegDesc - 1
|
||||||
_16GdtrBase: .long _NullSegDesc
|
_16GdtrBase: .long _NullSegDesc
|
||||||
|
|
||||||
_ToUserCode:
|
ASM_PFX(ToUserCode):
|
||||||
movl %ss, %edx
|
movl %ss, %edx
|
||||||
movl %ecx, %ss # set new segment selectors
|
movl %ecx, %ss # set new segment selectors
|
||||||
movl %ecx, %ds
|
movl %ecx, %ds
|
||||||
@@ -136,7 +136,7 @@ GdtEnd:
|
|||||||
# @param Transition Pointer to the transition code
|
# @param Transition Pointer to the transition code
|
||||||
# @return The address of the 16-bit stack after returning from user code
|
# @return The address of the 16-bit stack after returning from user code
|
||||||
#
|
#
|
||||||
_InternalAsmThunk16:
|
ASM_PFX(InternalAsmThunk16):
|
||||||
push %ebp
|
push %ebp
|
||||||
push %ebx
|
push %ebx
|
||||||
push %esi
|
push %esi
|
||||||
@@ -193,8 +193,8 @@ _InternalAsmThunk16:
|
|||||||
|
|
||||||
.const:
|
.const:
|
||||||
|
|
||||||
_m16Size: .word _InternalAsmThunk16 - _m16Start
|
ASM_PFX(m16Size): .word _InternalAsmThunk16 - ASM_PFX(m16Start)
|
||||||
_mThunk16Attr: .word _ThunkAttr - _m16Start
|
ASM_PFX(mThunk16Attr): .word _ThunkAttr - ASM_PFX(m16Start)
|
||||||
_m16Gdt: .word _NullSegDesc - _m16Start
|
ASM_PFX(m16Gdt): .word _NullSegDesc - ASM_PFX(m16Start)
|
||||||
_m16GdtrBase: .word _16GdtrBase - _m16Start
|
ASM_PFX(m16GdtrBase): .word _16GdtrBase - ASM_PFX(m16Start)
|
||||||
_mTransition: .word _EntryPoint - _m16Start
|
ASM_PFX(mTransition): .word _EntryPoint - ASM_PFX(m16Start)
|
||||||
|
@@ -28,7 +28,7 @@
|
|||||||
# VOID
|
# VOID
|
||||||
# );
|
# );
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
.globl _AsmWbinvd
|
.globl ASM_PFX(AsmWbinvd)
|
||||||
_AsmWbinvd:
|
ASM_PFX(AsmWbinvd):
|
||||||
wbinvd
|
wbinvd
|
||||||
ret
|
ret
|
||||||
|
@@ -28,8 +28,8 @@
|
|||||||
# IN UINTN Cr0
|
# IN UINTN Cr0
|
||||||
# );
|
# );
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
.globl _AsmWriteCr0
|
.globl ASM_PFX(AsmWriteCr0)
|
||||||
_AsmWriteCr0:
|
ASM_PFX(AsmWriteCr0):
|
||||||
movl 4(%esp), %eax
|
movl 4(%esp), %eax
|
||||||
movl %eax, %cr0
|
movl %eax, %cr0
|
||||||
ret
|
ret
|
||||||
|
@@ -28,8 +28,8 @@
|
|||||||
# IN UINTN Cr2
|
# IN UINTN Cr2
|
||||||
# );
|
# );
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
.globl _AsmWriteCr2
|
.globl ASM_PFX(AsmWriteCr2)
|
||||||
_AsmWriteCr2:
|
ASM_PFX(AsmWriteCr2):
|
||||||
movl 4(%esp), %eax
|
movl 4(%esp), %eax
|
||||||
movl %eax, %cr2
|
movl %eax, %cr2
|
||||||
ret
|
ret
|
||||||
|
@@ -28,8 +28,8 @@
|
|||||||
# IN UINTN Cr3
|
# IN UINTN Cr3
|
||||||
# );
|
# );
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
.globl _AsmWriteCr3
|
.globl ASM_PFX(AsmWriteCr3)
|
||||||
_AsmWriteCr3:
|
ASM_PFX(AsmWriteCr3):
|
||||||
movl 4(%esp), %eax
|
movl 4(%esp), %eax
|
||||||
movl %eax, %cr3
|
movl %eax, %cr3
|
||||||
ret
|
ret
|
||||||
|
@@ -28,8 +28,8 @@
|
|||||||
# IN UINTN Cr4
|
# IN UINTN Cr4
|
||||||
# );
|
# );
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
.globl _AsmWriteCr4
|
.globl ASM_PFX(AsmWriteCr4)
|
||||||
_AsmWriteCr4:
|
ASM_PFX(AsmWriteCr4):
|
||||||
movl 4(%esp), %eax
|
movl 4(%esp), %eax
|
||||||
movl %eax, %cr4
|
movl %eax, %cr4
|
||||||
ret
|
ret
|
||||||
|
@@ -28,8 +28,8 @@
|
|||||||
# IN UINTN Value
|
# IN UINTN Value
|
||||||
# );
|
# );
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
.globl _AsmWriteDr0
|
.globl ASM_PFX(AsmWriteDr0)
|
||||||
_AsmWriteDr0:
|
ASM_PFX(AsmWriteDr0):
|
||||||
movl 4(%esp), %eax
|
movl 4(%esp), %eax
|
||||||
movl %eax, %dr0
|
movl %eax, %dr0
|
||||||
ret
|
ret
|
||||||
|
@@ -28,8 +28,8 @@
|
|||||||
# IN UINTN Value
|
# IN UINTN Value
|
||||||
# );
|
# );
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
.globl _AsmWriteDr1
|
.globl ASM_PFX(AsmWriteDr1)
|
||||||
_AsmWriteDr1:
|
ASM_PFX(AsmWriteDr1):
|
||||||
movl 4(%esp), %eax
|
movl 4(%esp), %eax
|
||||||
movl %eax, %dr1
|
movl %eax, %dr1
|
||||||
ret
|
ret
|
||||||
|
@@ -28,8 +28,8 @@
|
|||||||
# IN UINTN Value
|
# IN UINTN Value
|
||||||
# );
|
# );
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
.globl _AsmWriteDr2
|
.globl ASM_PFX(AsmWriteDr2)
|
||||||
_AsmWriteDr2:
|
ASM_PFX(AsmWriteDr2):
|
||||||
movl 4(%esp), %eax
|
movl 4(%esp), %eax
|
||||||
movl %eax, %dr2
|
movl %eax, %dr2
|
||||||
ret
|
ret
|
||||||
|
@@ -28,8 +28,8 @@
|
|||||||
# IN UINTN Value
|
# IN UINTN Value
|
||||||
# );
|
# );
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
.globl _AsmWriteDr3
|
.globl ASM_PFX(AsmWriteDr3)
|
||||||
_AsmWriteDr3:
|
ASM_PFX(AsmWriteDr3):
|
||||||
movl 4(%esp), %eax
|
movl 4(%esp), %eax
|
||||||
movl %eax, %dr3
|
movl %eax, %dr3
|
||||||
ret
|
ret
|
||||||
|
@@ -28,8 +28,8 @@
|
|||||||
# IN UINTN Value
|
# IN UINTN Value
|
||||||
# );
|
# );
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
.globl _AsmWriteDr4
|
.globl ASM_PFX(AsmWriteDr4)
|
||||||
_AsmWriteDr4:
|
ASM_PFX(AsmWriteDr4):
|
||||||
movl 4(%esp), %eax
|
movl 4(%esp), %eax
|
||||||
movl %eax, %dr4
|
movl %eax, %dr4
|
||||||
ret
|
ret
|
||||||
|
@@ -28,8 +28,8 @@
|
|||||||
# IN UINTN Value
|
# IN UINTN Value
|
||||||
# );
|
# );
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
.globl _AsmWriteDr5
|
.globl ASM_PFX(AsmWriteDr5)
|
||||||
_AsmWriteDr5:
|
ASM_PFX(AsmWriteDr5):
|
||||||
movl 4(%esp), %eax
|
movl 4(%esp), %eax
|
||||||
movl %eax, %dr5
|
movl %eax, %dr5
|
||||||
ret
|
ret
|
||||||
|
@@ -28,8 +28,8 @@
|
|||||||
# IN UINTN Value
|
# IN UINTN Value
|
||||||
# );
|
# );
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
.globl _AsmWriteDr6
|
.globl ASM_PFX(AsmWriteDr6)
|
||||||
_AsmWriteDr6:
|
ASM_PFX(AsmWriteDr6):
|
||||||
movl 4(%esp), %eax
|
movl 4(%esp), %eax
|
||||||
movl %eax, %dr6
|
movl %eax, %dr6
|
||||||
ret
|
ret
|
||||||
|
@@ -28,8 +28,8 @@
|
|||||||
# IN UINTN Value
|
# IN UINTN Value
|
||||||
# );
|
# );
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
.globl _AsmWriteDr7
|
.globl ASM_PFX(AsmWriteDr7)
|
||||||
_AsmWriteDr7:
|
ASM_PFX(AsmWriteDr7):
|
||||||
movl 4(%esp), %eax
|
movl 4(%esp), %eax
|
||||||
movl %eax, %dr7
|
movl %eax, %dr7
|
||||||
ret
|
ret
|
||||||
|
@@ -28,8 +28,8 @@
|
|||||||
# OUT IA32_DESCRIPTOR *Gdtr
|
# OUT IA32_DESCRIPTOR *Gdtr
|
||||||
# );
|
# );
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
.globl _InternalX86WriteGdtr
|
.globl ASM_PFX(InternalX86WriteGdtr)
|
||||||
_InternalX86WriteGdtr:
|
ASM_PFX(InternalX86WriteGdtr):
|
||||||
movl 4(%esp), %eax
|
movl 4(%esp), %eax
|
||||||
lgdt (%eax)
|
lgdt (%eax)
|
||||||
ret
|
ret
|
||||||
|
@@ -28,8 +28,8 @@
|
|||||||
# OUT IA32_DESCRIPTOR *Idtr
|
# OUT IA32_DESCRIPTOR *Idtr
|
||||||
# );
|
# );
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
.globl _InternalX86WriteIdtr
|
.globl ASM_PFX(InternalX86WriteIdtr)
|
||||||
_InternalX86WriteIdtr:
|
ASM_PFX(InternalX86WriteIdtr):
|
||||||
movl 4(%esp), %eax
|
movl 4(%esp), %eax
|
||||||
lidt (%eax)
|
lidt (%eax)
|
||||||
ret
|
ret
|
||||||
|
@@ -28,8 +28,8 @@
|
|||||||
# IN UINT16 Ldtr
|
# IN UINT16 Ldtr
|
||||||
# );
|
# );
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
.globl _AsmWriteLdtr
|
.globl ASM_PFX(AsmWriteLdtr)
|
||||||
_AsmWriteLdtr:
|
ASM_PFX(AsmWriteLdtr):
|
||||||
movl 4(%esp), %eax
|
movl 4(%esp), %eax
|
||||||
lldtw %ax
|
lldtw %ax
|
||||||
ret
|
ret
|
||||||
|
@@ -28,7 +28,7 @@
|
|||||||
# IN UINT64 Value
|
# IN UINT64 Value
|
||||||
# );
|
# );
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
.globl _AsmWriteMm0
|
.globl ASM_PFX(AsmWriteMm0)
|
||||||
_AsmWriteMm0:
|
ASM_PFX(AsmWriteMm0):
|
||||||
movq 4(%esp), %mm0
|
movq 4(%esp), %mm0
|
||||||
ret
|
ret
|
||||||
|
@@ -28,7 +28,7 @@
|
|||||||
# IN UINT64 Value
|
# IN UINT64 Value
|
||||||
# );
|
# );
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
.globl _AsmWriteMm1
|
.globl ASM_PFX(AsmWriteMm1)
|
||||||
_AsmWriteMm1:
|
ASM_PFX(AsmWriteMm1):
|
||||||
movq 4(%esp), %mm1
|
movq 4(%esp), %mm1
|
||||||
ret
|
ret
|
||||||
|
@@ -28,7 +28,7 @@
|
|||||||
# IN UINT64 Value
|
# IN UINT64 Value
|
||||||
# );
|
# );
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
.globl _AsmWriteMm2
|
.globl ASM_PFX(AsmWriteMm2)
|
||||||
_AsmWriteMm2:
|
ASM_PFX(AsmWriteMm2):
|
||||||
movq 4(%esp), %mm2
|
movq 4(%esp), %mm2
|
||||||
ret
|
ret
|
||||||
|
@@ -28,7 +28,7 @@
|
|||||||
# IN UINT64 Value
|
# IN UINT64 Value
|
||||||
# );
|
# );
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
.globl _AsmWriteMm3
|
.globl ASM_PFX(AsmWriteMm3)
|
||||||
_AsmWriteMm3:
|
ASM_PFX(AsmWriteMm3):
|
||||||
movq 4(%esp), %mm3
|
movq 4(%esp), %mm3
|
||||||
ret
|
ret
|
||||||
|
@@ -28,7 +28,7 @@
|
|||||||
# IN UINT64 Value
|
# IN UINT64 Value
|
||||||
# );
|
# );
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
.globl _AsmWriteMm4
|
.globl ASM_PFX(AsmWriteMm4)
|
||||||
_AsmWriteMm4:
|
ASM_PFX(AsmWriteMm4):
|
||||||
movq 4(%esp), %mm4
|
movq 4(%esp), %mm4
|
||||||
ret
|
ret
|
||||||
|
@@ -28,7 +28,7 @@
|
|||||||
# IN UINT64 Value
|
# IN UINT64 Value
|
||||||
# );
|
# );
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
.globl _AsmWriteMm5
|
.globl ASM_PFX(AsmWriteMm5)
|
||||||
_AsmWriteMm5:
|
ASM_PFX(AsmWriteMm5):
|
||||||
movq 4(%esp), %mm5
|
movq 4(%esp), %mm5
|
||||||
ret
|
ret
|
||||||
|
@@ -28,7 +28,7 @@
|
|||||||
# IN UINT64 Value
|
# IN UINT64 Value
|
||||||
# );
|
# );
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
.globl _AsmWriteMm6
|
.globl ASM_PFX(AsmWriteMm6)
|
||||||
_AsmWriteMm6:
|
ASM_PFX(AsmWriteMm6):
|
||||||
movq 4(%esp), %mm6
|
movq 4(%esp), %mm6
|
||||||
ret
|
ret
|
||||||
|
@@ -28,7 +28,7 @@
|
|||||||
# IN UINT64 Value
|
# IN UINT64 Value
|
||||||
# );
|
# );
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
.globl _AsmWriteMm7
|
.globl ASM_PFX(AsmWriteMm7)
|
||||||
_AsmWriteMm7:
|
ASM_PFX(AsmWriteMm7):
|
||||||
movq 4(%esp), %mm7
|
movq 4(%esp), %mm7
|
||||||
ret
|
ret
|
||||||
|
@@ -29,8 +29,8 @@
|
|||||||
# IN UINT64 Value
|
# IN UINT64 Value
|
||||||
# );
|
# );
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
.globl _AsmWriteMsr64
|
.globl ASM_PFX(AsmWriteMsr64)
|
||||||
_AsmWriteMsr64:
|
ASM_PFX(AsmWriteMsr64):
|
||||||
movl 12(%esp), %edx
|
movl 12(%esp), %edx
|
||||||
movl 8(%esp), %eax
|
movl 8(%esp), %eax
|
||||||
movl 4(%esp), %ecx
|
movl 4(%esp), %ecx
|
||||||
|
Reference in New Issue
Block a user