mirror of https://github.com/acidanthera/audk.git
Prepend underscores to procedure identifiers.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@501 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
09e91c8e30
commit
3786747740
|
@ -30,8 +30,8 @@
|
||||||
.686:
|
.686:
|
||||||
.code:
|
.code:
|
||||||
|
|
||||||
.global InternalMemCompareMem
|
.global _InternalMemCompareMem
|
||||||
InternalMemCompareMem:
|
_InternalMemCompareMem:
|
||||||
push %esi
|
push %esi
|
||||||
push %edi
|
push %edi
|
||||||
movl 12(%esp),%esi
|
movl 12(%esp),%esi
|
||||||
|
|
|
@ -24,8 +24,8 @@
|
||||||
.386:
|
.386:
|
||||||
.code:
|
.code:
|
||||||
|
|
||||||
.global InternalMemCopyMem
|
.global _InternalMemCopyMem
|
||||||
InternalMemCopyMem:
|
_InternalMemCopyMem:
|
||||||
push %esi
|
push %esi
|
||||||
push %edi
|
push %edi
|
||||||
movl 16(%esp),%esi # esi <- Source
|
movl 16(%esp),%esi # esi <- Source
|
||||||
|
|
|
@ -30,8 +30,8 @@
|
||||||
.686:
|
.686:
|
||||||
.code:
|
.code:
|
||||||
|
|
||||||
.global InternalMemScanMem16
|
.global _InternalMemScanMem16
|
||||||
InternalMemScanMem16:
|
_InternalMemScanMem16:
|
||||||
push %edi
|
push %edi
|
||||||
movl 12(%esp),%ecx
|
movl 12(%esp),%ecx
|
||||||
movl 8(%esp),%edi
|
movl 8(%esp),%edi
|
||||||
|
|
|
@ -30,8 +30,8 @@
|
||||||
.686:
|
.686:
|
||||||
.code:
|
.code:
|
||||||
|
|
||||||
.global InternalMemScanMem32
|
.global _InternalMemScanMem32
|
||||||
InternalMemScanMem32:
|
_InternalMemScanMem32:
|
||||||
push %edi
|
push %edi
|
||||||
movl 12(%esp),%ecx
|
movl 12(%esp),%ecx
|
||||||
movl 8(%esp),%edi
|
movl 8(%esp),%edi
|
||||||
|
|
|
@ -30,7 +30,8 @@
|
||||||
.686:
|
.686:
|
||||||
.code:
|
.code:
|
||||||
|
|
||||||
InternalMemScanMem64:
|
.global _InternalMemScanMem64
|
||||||
|
_InternalMemScanMem64:
|
||||||
push %edi
|
push %edi
|
||||||
movl 12(%esp),%ecx
|
movl 12(%esp),%ecx
|
||||||
movl 16(%esp),%eax
|
movl 16(%esp),%eax
|
||||||
|
|
|
@ -30,8 +30,8 @@
|
||||||
.686:
|
.686:
|
||||||
.code:
|
.code:
|
||||||
|
|
||||||
.global InternalMemScanMem8
|
.global _InternalMemScanMem8
|
||||||
InternalMemScanMem8:
|
_InternalMemScanMem8:
|
||||||
push %edi
|
push %edi
|
||||||
movl 12(%esp),%ecx
|
movl 12(%esp),%ecx
|
||||||
movl 8(%esp),%edi
|
movl 8(%esp),%edi
|
||||||
|
|
|
@ -24,8 +24,8 @@
|
||||||
.386:
|
.386:
|
||||||
.code:
|
.code:
|
||||||
|
|
||||||
.global InternalMemSetMem
|
.global _InternalMemSetMem
|
||||||
InternalMemSetMem:
|
_InternalMemSetMem:
|
||||||
push %edi
|
push %edi
|
||||||
movl 16(%esp),%eax
|
movl 16(%esp),%eax
|
||||||
movl 8(%esp),%edi
|
movl 8(%esp),%edi
|
||||||
|
|
|
@ -24,8 +24,8 @@
|
||||||
.386:
|
.386:
|
||||||
.code:
|
.code:
|
||||||
|
|
||||||
.global InternalMemSetMem16
|
.global _InternalMemSetMem16
|
||||||
InternalMemSetMem16:
|
_InternalMemSetMem16:
|
||||||
push %edi
|
push %edi
|
||||||
movl 16(%esp),%eax
|
movl 16(%esp),%eax
|
||||||
movl 8(%esp),%edi
|
movl 8(%esp),%edi
|
||||||
|
|
|
@ -24,8 +24,8 @@
|
||||||
.386:
|
.386:
|
||||||
.code:
|
.code:
|
||||||
|
|
||||||
.global InternalMemSetMem32
|
.global _InternalMemSetMem32
|
||||||
InternalMemSetMem32:
|
_InternalMemSetMem32:
|
||||||
push %edi
|
push %edi
|
||||||
movl 16(%esp),%eax
|
movl 16(%esp),%eax
|
||||||
movl 8(%esp),%edi
|
movl 8(%esp),%edi
|
||||||
|
|
|
@ -24,8 +24,8 @@
|
||||||
.386:
|
.386:
|
||||||
.code:
|
.code:
|
||||||
|
|
||||||
.global InternalMemZeroMem
|
.global _InternalMemZeroMem
|
||||||
InternalMemZeroMem:
|
_InternalMemZeroMem:
|
||||||
push %edi
|
push %edi
|
||||||
xorl %eax,%eax
|
xorl %eax,%eax
|
||||||
movl 8(%esp),%edi
|
movl 8(%esp),%edi
|
||||||
|
|
Loading…
Reference in New Issue