date and time created 88/12/16 11:12:32 by bostic
[unix-history] / usr / src / lib / libc / tahoe / DEFS.h
index ba3dc95..2d71647 100644 (file)
@@ -1,4 +1,21 @@
-/*     DEFS.h  5.2     86/08/01        */
+/*
+ * Copyright (c) 1988 The Regents of the University of California.
+ * All rights reserved.
+ *
+ * Redistribution and use in source and binary forms are permitted
+ * provided that the above copyright notice and this paragraph are
+ * duplicated in all such forms and that any documentation,
+ * advertising materials, and other materials related to such
+ * distribution and use acknowledge that the software was developed
+ * by the University of California, Berkeley.  The name of the
+ * University may not be used to endorse or promote products derived
+ * from this software without specific prior written permission.
+ * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
+ * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
+ * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
+ *
+ *     @(#)DEFS.h      5.4 (Berkeley) %G%
+ */
 
 /*
  * Macros used to define entry points
 
 /*
  * Macros used to define entry points
  */
 #if defined(GPROF) || defined(PROF)
 #define        ENTRY(name, regs) \
  */
 #if defined(GPROF) || defined(PROF)
 #define        ENTRY(name, regs) \
-       .globl _/**/name; .align 2; _/**/name: .word regs; callf $4,mcount
+       .globl _/**/name; .align 2; _/**/name: .word regs; \
+       .data; .align 2; 1: .long 0; .text; \
+       pushal 1b; callf $8,mcount;
 #define        ASENTRY(name, regs) \
 #define        ASENTRY(name, regs) \
-       .globl name; .align 2; name: .word regs; callf $4,mcount
+       .globl name; .align 2; name: .word regs; \
+       .data; .align 2; 1: .long 0; .text; \
+       pushal 1b; callf $8,mcount;
 #define        XENTRY(name, regs) \
        .globl _/**/name; .globl X/**/name; .align 2; \
 #define        XENTRY(name, regs) \
        .globl _/**/name; .globl X/**/name; .align 2; \
-       _/**/name: X/**/name: .word regs; callf $4,mcount
+       _/**/name: X/**/name: .word regs; \
+       .data; .align 2; 1: .long 0; .text; \
+       pushal 1b; callf $8,mcount
 #else
 #define        ENTRY(name, regs) \
        .globl _/**/name; .align 2; _/**/name: .word regs
 #else
 #define        ENTRY(name, regs) \
        .globl _/**/name; .align 2; _/**/name: .word regs