aboutsummaryrefslogtreecommitdiff
path: root/sys/amd64/amd64/support.S
diff options
context:
space:
mode:
authorDoug Rabson <dfr@FreeBSD.org>2002-05-26 16:03:13 +0000
committerDoug Rabson <dfr@FreeBSD.org>2002-05-26 16:03:13 +0000
commit396a429cfdbb1253f02e212aed4ffde9faef86e6 (patch)
tree747d067ea43b73a9967eed2f57e33a79f442340d /sys/amd64/amd64/support.S
parenta6b82b31b12eabd877dd715398993a5c5549de42 (diff)
downloadsrc-396a429cfdbb1253f02e212aed4ffde9faef86e6.tar.gz
src-396a429cfdbb1253f02e212aed4ffde9faef86e6.zip
Add declarations of suword32 and suword64. Add implementations of one or
the other (or both) to all the platforms. Similar for fuword32 and fuword64.
Notes
Notes: svn path=/head/; revision=97307
Diffstat (limited to 'sys/amd64/amd64/support.S')
-rw-r--r--sys/amd64/amd64/support.S6
1 files changed, 6 insertions, 0 deletions
diff --git a/sys/amd64/amd64/support.S b/sys/amd64/amd64/support.S
index bc586725b3c0..ed699cff39e7 100644
--- a/sys/amd64/amd64/support.S
+++ b/sys/amd64/amd64/support.S
@@ -1189,6 +1189,9 @@ ENTRY(fuword)
movl $0,PCB_ONFAULT(%ecx)
ret
+ENTRY(fuword32)
+ jmp fuword
+
/*
* These two routines are called from the profiling code, potentially
* at interrupt time. If they fail, that's okay, good things will
@@ -1286,6 +1289,9 @@ ENTRY(suword)
movl %eax,PCB_ONFAULT(%ecx)
ret
+ENTRY(suword32)
+ jmp suword
+
/*
* susword - MP SAFE (if not I386_CPU)
*/