summaryrefslogtreecommitdiffstats
path: root/sys/amd64/include/asm.h
diff options
context:
space:
mode:
authorjasone <jasone@FreeBSD.org>2000-01-20 03:15:01 +0000
committerjasone <jasone@FreeBSD.org>2000-01-20 03:15:01 +0000
commit271b33587d1dec543e4b44ec4200f0262b78b981 (patch)
tree4f87b4d6888e7faab379f3821f95587ffc0db1b5 /sys/amd64/include/asm.h
parentfb20480840a20d480ddfac3d78644b58b1d8e5eb (diff)
downloadFreeBSD-src-271b33587d1dec543e4b44ec4200f0262b78b981.zip
FreeBSD-src-271b33587d1dec543e4b44ec4200f0262b78b981.tar.gz
Move ENTRY and ALTENTRY definitions to asm.h where they belong.
Unbreak profiling. Again. Submitted by: bde
Diffstat (limited to 'sys/amd64/include/asm.h')
-rw-r--r--sys/amd64/include/asm.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/amd64/include/asm.h b/sys/amd64/include/asm.h
index 7ac1243..51ec278 100644
--- a/sys/amd64/include/asm.h
+++ b/sys/amd64/include/asm.h
@@ -84,12 +84,15 @@
.globl CNAME(x); .type CNAME(x),@function; CNAME(x):
#ifdef PROF
-#define ENTRY(x) _ENTRY(x); \
+#define ENTRY(x) _ENTRY(x); 9: \
pushl %ebp; movl %esp,%ebp; \
call PIC_PLT(HIDENAME(mcount)); \
popl %ebp
+
+#define ALTENTRY(x) _ENTRY(x) ; call PIC_PLT(HIDENAME(mcount)) ; jmp 9f
#else
#define ENTRY(x) _ENTRY(x)
+#define ALTENTRY(x) _ENTRY(x)
#endif
#define RCSID(x) .text; .asciz x
OpenPOWER on IntegriCloud