aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Turner <andrew@FreeBSD.org>2023-03-31 12:34:51 +0000
committerAndrew Turner <andrew@FreeBSD.org>2023-09-25 08:41:15 +0000
commit27ceb260a1c189b0aa0ea59be8ab6b924f7f6a40 (patch)
tree11e615a777c8f839c686b3ecfec3de6866e8c145
parent9cab59fe05b492b23e10ff9c507511cdaa97bae4 (diff)
downloadsrc-27ceb260a1c189b0aa0ea59be8ab6b924f7f6a40.tar.gz
src-27ceb260a1c189b0aa0ea59be8ab6b924f7f6a40.zip
Move arm64 EENTRY uses before ENTRY
The ENTRY macro adds instructions to the start of a function but not EENTRY. To use these instructions in both functions move the EENTRY use before the ENTRY use. Sponsored by: Arm Ltd (cherry picked from commit 47ff149afaea6a403b8d044e26673bc3cd605fe4)
-rw-r--r--sys/arm64/arm64/memcpy.S4
-rw-r--r--sys/arm64/arm64/support.S8
2 files changed, 6 insertions, 6 deletions
diff --git a/sys/arm64/arm64/memcpy.S b/sys/arm64/arm64/memcpy.S
index d5fbfa64e0fa..b394d6c1d30a 100644
--- a/sys/arm64/arm64/memcpy.S
+++ b/sys/arm64/arm64/memcpy.S
@@ -55,8 +55,8 @@
The loop tail is handled by always copying 64 bytes from the end.
*/
-ENTRY(memcpy)
EENTRY(memmove)
+ENTRY(memcpy)
add srcend, src, count
add dstend, dstin, count
cmp count, 128
@@ -237,6 +237,6 @@ L(copy64_from_start):
stp B_l, B_h, [dstin, 16]
stp C_l, C_h, [dstin]
ret
-EEND(memmove)
END(memcpy)
+EEND(memmove)
diff --git a/sys/arm64/arm64/support.S b/sys/arm64/arm64/support.S
index eb2976ee8ce7..805867fd5d17 100644
--- a/sys/arm64/arm64/support.S
+++ b/sys/arm64/arm64/support.S
@@ -173,15 +173,15 @@ END(fueword32)
* long fueword(volatile const void *, int64_t *)
* int64_t fueword64(volatile const void *, int64_t *)
*/
-ENTRY(fueword)
EENTRY(fueword64)
+ENTRY(fueword)
check_user_access 0, (VM_MAXUSER_ADDRESS-7), fsu_fault_nopcb
fsudata ldtr, x0, 0
str x0, [x1] /* Save the data in kernel space */
mov x0, #0 /* Success */
ret /* Return */
-EEND(fueword64)
END(fueword)
+EEND(fueword64)
/*
* int subyte(volatile void *, int)
@@ -216,14 +216,14 @@ END(suword32)
/*
* int suword(volatile void *, long)
*/
-ENTRY(suword)
EENTRY(suword64)
+ENTRY(suword)
check_user_access 0, (VM_MAXUSER_ADDRESS-7), fsu_fault_nopcb
fsudata sttr, x1, 0
mov x0, #0 /* Success */
ret /* Return */
-EEND(suword64)
END(suword)
+EEND(suword64)
ENTRY(setjmp)
/* Store the stack pointer */